Merge branch 'master' of ssh://apples.lambdacomplex.org/git/contractdashboard
Merge branch 'master' of ssh://apples.lambdacomplex.org/git/contractdashboard

--- /dev/null
+++ b/admin/neo4jimporter/.classpath
@@ -1,1 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>
 

--- /dev/null
+++ b/admin/neo4jimporter/.project
@@ -1,1 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>neo4jimporter</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
+	</natures>
+</projectDescription>
 

--- /dev/null
+++ b/admin/neo4jimporter/.settings/org.eclipse.jdt.core.prefs
@@ -1,1 +1,7 @@
+#Sun Aug 07 18:15:32 EST 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.5
 

--- /dev/null
+++ b/admin/neo4jimporter/.settings/org.eclipse.m2e.core.prefs
@@ -1,1 +1,6 @@
+#Sun Aug 07 18:14:30 EST 2011
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
 

--- /dev/null
+++ b/admin/neo4jimporter/pom.xml
@@ -1,1 +1,18 @@
-
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.lambdacomplex.contractdashboard</groupId>
+  <artifactId>neo4jimporter</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+  <dependencies>
+  	<dependency>
+  		<groupId>org.neo4j</groupId>
+  		<artifactId>neo4j-kernel</artifactId>
+  		<version>1.4</version>
+  	</dependency>
+  	<dependency>
+    <groupId>postgresql</groupId>
+    <artifactId>postgresql</artifactId>
+    <version>9.0-801.jdbc4</version>
+</dependency>
+  </dependencies>
+</project>

--- /dev/null
+++ b/admin/neo4jimporter/src/main/java/Importer.java
@@ -1,1 +1,155 @@
+import java.io.ObjectInputStream.GetField;
+import java.math.BigInteger;
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.sql.SQLWarning;
+import java.sql.Statement;
+import java.util.HashMap;
+import java.util.Map;
 
+import org.neo4j.graphdb.DynamicRelationshipType;
+import org.neo4j.kernel.impl.batchinsert.BatchInserter;
+import org.neo4j.kernel.impl.batchinsert.BatchInserterImpl;
+
+public class Importer {
+
+	public static void main(String[] argv) {
+		
+		 Map<String,String> props = new HashMap<String, String>();
+		 props.put("neostore.nodestore.db.mapped_memory", "22000000"); // <expected number of nodes * 9 bytes>
+		 props.put("neostore.relationshipstore.db.mapped_memory", "22000000"); // <expected number of relationships * 33 bytes>
+		  // create the batch inserter 
+		BatchInserter inserter = new
+		  BatchInserterImpl("neo4j-db/",props
+		 );
+		  
+
+
+		 
+		
+		System.out.println("-------- PostgreSQL "
+				+ "JDBC Connection Testing ------------");
+
+		try {
+
+			Class.forName("org.postgresql.Driver");
+
+		} catch (ClassNotFoundException e) {
+
+			System.out.println("Where is your PostgreSQL JDBC Driver? "
+					+ "Include in your library path!");
+			e.printStackTrace();
+
+		}
+
+		System.out.println("PostgreSQL JDBC Driver Registered!");
+
+		Connection conn = null;
+
+		try {
+
+			conn = DriverManager.getConnection(
+					"jdbc:postgresql://127.0.0.1:5432/contractDashboard",
+					"postgres", "snmc");
+
+		} catch (SQLException e) {
+
+			System.out.println("Connection Failed! Check output console");
+			e.printStackTrace();
+
+		}
+
+		if (conn != null) {
+			System.out.println("You made it, take control your database now!");
+		} else {
+			System.out.println("Failed to make connection!");
+		}
+		try {
+			// Print all warnings
+			for (SQLWarning warn = conn.getWarnings(); warn != null; warn = warn
+					.getNextWarning()) {
+				System.out.println("SQL Warning:");
+				System.out.println("State  : " + warn.getSQLState());
+				System.out.println("Message: " + warn.getMessage());
+				System.out.println("Error  : " + warn.getErrorCode());
+			}
+
+			// Get a statement from the connection
+			Statement stmt = conn.createStatement();
+
+			// Execute the query
+			ResultSet rs = stmt.executeQuery("SELECT distinct contractnotice.\"agencyName\",   contractnotice.\"supplierABN\",   contractnotice.\"supplierName\" FROM  public.contractnotice limit 300;");
+String previousAgency = "";
+
+			// Loop through the result set
+			while (rs.next()) {
+				long supplier,agency;
+				agency = doHash(rs.getString("agencyName"));
+				if (rs.getString("agencyName") != previousAgency) {
+					if (!inserter.nodeExists(agency)) {
+					Map<String, Object> properties = new HashMap<String, Object>();
+					  properties.put("Label", rs.getString("agencyName"));
+					  inserter.createNode(agency, properties);
+					}
+				}
+				if (rs.getString("supplierABN") != "0") {
+					supplier = doHash(rs.getString("supplierABN"));
+				} else {
+				supplier = doHash(rs.getString("supplierName"));
+				}
+				  // inject some data 
+			if (!inserter.nodeExists(supplier)) {
+				Map<String, Object> properties = new HashMap<String, Object>();
+			
+				  properties.put("Label", rs.getString("supplierName"));
+				  inserter.createNode(supplier, properties);
+			}
+				  
+				  inserter.createRelationship(agency, supplier,
+				  DynamicRelationshipType.withName("KNOWS"), null);
+				  
+			}
+			// Close the result set, statement and the connection
+			rs.close();
+			stmt.close();
+			conn.close();
+		} catch (SQLException se) {
+			System.out.println("SQL Exception:");
+
+			// Loop through the SQL Exceptions
+			while (se != null) {
+				System.out.println("State  : " + se.getSQLState());
+				System.out.println("Message: " + se.getMessage());
+				System.out.println("Error  : " + se.getErrorCode());
+
+				se = se.getNextException();
+			}
+		} catch (Exception e) {
+			System.out.println(e);
+		}
+		  // shutdown, makes sure all changes are written to disk
+		  inserter.shutdown();
+	}
+
+	static long doHash(String input) {
+		MessageDigest m;
+		try {
+			m = MessageDigest.getInstance("MD5");
+			m.reset();
+			m.update(input.getBytes());
+			byte[] digest = m.digest();
+			return new BigInteger(1, digest).longValue();
+		} catch (NoSuchAlgorithmException e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+		return 0;
+
+	}
+
+
+}

--- /dev/null
+++ b/admin/neo4jimporter/src/main/java/JDBCExample.java
@@ -1,1 +1,50 @@
-
+import java.sql.DriverManager;
+import java.sql.Connection;
+import java.sql.SQLException;
+ 
+public class JDBCExample {
+ 
+	public static void main(String[] argv) {
+ 
+		System.out.println("-------- PostgreSQL "
+				+ "JDBC Connection Testing ------------");
+ 
+		try {
+ 
+			Class.forName("org.postgresql.Driver");
+ 
+		} catch (ClassNotFoundException e) {
+ 
+			System.out.println("Where is your PostgreSQL JDBC Driver? "
+					+ "Include in your library path!");
+			e.printStackTrace();
+			return;
+ 
+		}
+ 
+		System.out.println("PostgreSQL JDBC Driver Registered!");
+ 
+		Connection connection = null;
+ 
+		try {
+ 
+			connection = DriverManager.getConnection(
+					"jdbc:postgresql://127.0.0.1:5432/contractDashboard", "postgres",
+					"snmc");
+ 
+		} catch (SQLException e) {
+ 
+			System.out.println("Connection Failed! Check output console");
+			e.printStackTrace();
+			return;
+ 
+		}
+ 
+		if (connection != null) {
+			System.out.println("You made it, take control your database now!");
+		} else {
+			System.out.println("Failed to make connection!");
+		}
+	}
+ 
+}

 Binary files /dev/null and b/admin/neo4jimporter/target/classes/Importer.class differ
 Binary files /dev/null and b/admin/neo4jimporter/target/classes/JDBCExample.class differ
--- /dev/null
+++ b/admin/partialdata/01Jan2008to05Jan2008valto.xls
@@ -1,1 +1,773 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN52633"	"Sharepoint Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	31-Mar-08	95000.00	="TRS06/017"	="SME GATEWAY LTD"	02-Jan-08 08:58 AM	

+="CN52634"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	02-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	19664.70	="TRS06/175"	="Clayton Utz Canberra"	02-Jan-08 08:58 AM	

+="CN52635"	"Aviation and Airports Funding Review"	="Department of Transport and Regional Services"	02-Jan-08	="Accounting and auditing"	01-Sep-07	30-Nov-07	102922.47	="TRS06/037"	="ERNST & YOUNG"	02-Jan-08 08:59 AM	

+="CN52636"	"Server Engineer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Jan-08	31-Jan-08	17600.00	="TRS06/017"	="DATA#3 LTD"	02-Jan-08 08:59 AM	

+="CN52637"	"Legal Services Expenditure 6826"	="Department of Transport and Regional Services"	02-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	148795.59	="TRS06/175"	="MINTER ELLISON LAWYERS"	02-Jan-08 08:59 AM	

+="CN52638"	"Contract Staff"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Jan-08	30-Jun-08	135300.00	="T2004/0699"	="Frontier Group"	02-Jan-08 08:59 AM	

+="CN52639"	"2009 Grad recruit advertising"	="Department of Transport and Regional Services"	02-Jan-08	="Advertising"	31-Oct-07	14-Feb-08	13062.50	="TRS07/396"	="GRADUATE CAREERS AUSTRALIA LIMITED"	02-Jan-08 08:59 AM	

+="CN52640"	"Contract Admin. & Design Services"	="Department of Transport and Regional Services"	02-Jan-08	="Environmental management"	23-Nov-07	30-Sep-10	1624740.00	="TRS06/090"	="GHD Pty Ltd"	02-Jan-08 08:59 AM	

+="CN52641"	"employment for contractor for drafting"	="Department of Transport and Regional Services"	02-Jan-08	="Graphic design"	03-Dec-07	25-Dec-07	20000.00	="TRS06/036"	="Morris Walker"	02-Jan-08 08:59 AM	

+="CN52642"	"employment of contractor for editing"	="Department of Transport and Regional Services"	02-Jan-08	="Graphic design"	03-Dec-07	25-Dec-07	10560.00	="TRS06/036"	="Cinden Lester Communications"	02-Jan-08 09:00 AM	

+="CN52643"	"Quarterly Airfreight Data Reports"	="Department of Transport and Regional Services"	02-Jan-08	="Statistics"	18-Dec-07	30-Jun-08	40000.00	="TRS07/374"	="MARITRADE"	02-Jan-08 09:00 AM	

+="CN52644"	"Cliftons Seminar Arangement"	="Department of Transport and Regional Services"	02-Jan-08	="Educational facilities"	23-Nov-07	24-Dec-07	11944.90	="TRS07/107"	="CLIFTONS OPERATIONS PTY LTD"	02-Jan-08 09:00 AM	

+="CN52645"	"Legal Services Expenditure 6887"	="Department of Transport and Regional Services"	02-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	25740.00	="TRS06/175"	="PHILLIPS FOX"	02-Jan-08 09:00 AM	

+="CN52646"	"*MARINE - CI DEEP SEA MOORING SYSTEM"	="Department of Transport and Regional Services"	02-Jan-08	="Prefabricated structures"	18-Dec-07	30-Jun-08	1200000.00	="TRS07/023"	="THE TRUSTEE FOR BEAVER INDUSTRYUNIT"	02-Jan-08 09:00 AM	

+="CN52647"	"The provision of historic freight rate data to support a review of Tasmanian freight schemes"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Oct-07	28-Feb-08	60995.00	="TRS07/321"	="Sinclair Knight Merz"	02-Jan-08 09:00 AM	

+="CN52648"	"Software Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	115000.00	="T2004/0699"	="Frontier Group"	02-Jan-08 09:00 AM	

+="CN52649"	"Attendendance at  Course 15,  Australian Rural Leadership Program for sponsored applicant"	="Department of Transport and Regional Services"	02-Jan-08	="Specialised educational services"	18-Dec-07	31-Dec-09	50600.00	="TRS06/525"	="Australian Rural Leadership"	02-Jan-08 09:00 AM	

+="CN52650"	"Legal Service Expenditure LG 6340"	="Department of Transport and Regional Services"	02-Jan-08	="Legal services"	20-Dec-07	30-Jun-09	26586.45	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	02-Jan-08 09:01 AM	

+="CN52651"	"Contract Staff"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Jan-08	30-Jun-08	135300.00	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:01 AM	

+="CN52652"	"PROJECT MANAGER"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Jan-08	30-Jun-08	104999.99	="TRS06/017"	="SME GATEWAY LTD"	02-Jan-08 09:01 AM	

+="CN52653"	".Net Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	150000.00	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:01 AM	

+="CN52654"	".Net Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	90000.00	="T2004/0699"	="DIALOG INFORMATION SERVICES"	02-Jan-08 09:01 AM	

+="CN52655"	".Net Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	115000.00	="T2004/0699"	="Rosslogic Pty Ltd"	02-Jan-08 09:01 AM	

+="CN52656"	"Computer based train dynamics simulation"	="Department of Transport and Regional Services"	02-Jan-08	="Professional engineering services"	01-Jan-08	29-Feb-08	25410.00	="TRS07/364"	="INTERFLEET TECHNOLOGY PTY LTD"	02-Jan-08 09:01 AM	

+="CN52657"	"Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	01-Jan-08	31-Mar-08	90000.00	="T2004/0699"	="UNIQUE WORLD PTY LTD"	02-Jan-08 09:02 AM	

+="CN52658"	".NET DEVELOPER"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	110000.00	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:02 AM	

+="CN52659"	".NET DEVELOPER"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	149999.99	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	02-Jan-08 09:02 AM	

+="CN52660"	"Application Developer"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	30-Jun-08	120000.00	="T2004/0699"	="Frontier Group"	02-Jan-08 09:02 AM	

+="CN52661"	"Tester"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	31-Jan-08	20000.00	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:02 AM	

+="CN52662"	"TESTER"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	31-Mar-08	49999.99	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:02 AM	

+="CN52663"	"System Analyst"	="Department of Transport and Regional Services"	02-Jan-08	="Management advisory services"	02-Jan-08	31-Mar-08	70000.00	="T2004/0699"	="SMS Management & Technology"	02-Jan-08 09:02 AM	

+="CN52665"	"Provision of IT service contractor"	="Civil Aviation Safety Authority"	02-Jan-08	="Temporary information technology systems or database administrators"	02-Jan-08	30-Jun-08	117796.00	="06/068-03"	="Peoplebank Australia Ltd (ACT)"	02-Jan-08 09:17 AM	

+="CN52666"	"Project Manager Video Conferencing"	="Civil Aviation Safety Authority"	02-Jan-08	="Recruitment services"	02-Jan-08	31-Jan-08	26400.00	="06/114-03"	="Verossity Pty Ltd"	02-Jan-08 09:25 AM	

+="CN52667"	" BATTERY, STORAGE, 12V 12AH SEALED ACID LEAD "	="Defence Materiel Organisation"	02-Jan-08	="Dry or storage battery manufacture services"	21-Dec-07	04-Apr-08	276430.00	="J8005"	="HBL POWER SYSTEMS"	02-Jan-08 09:28 AM	

+="CN52668"	"Change Management - Non Technical Skills Briefing In a Box"	="Civil Aviation Safety Authority"	02-Jan-08	="Non technical writing"	02-Dec-07	02-Sep-08	88000.00	="07/012"	="Safety Wise Solutions Pty Ltd"	02-Jan-08 09:46 AM	

+="CN52669"	"Cost of Maintenance Licence International comparison project"	="Civil Aviation Safety Authority"	02-Jan-08	="Financial accounting"	02-Oct-07	01-Nov-07	31920.00	="07/063"	="Apis Consulting Group Pty Ltd"	02-Jan-08 10:13 AM	

+="CN52670"	"Temporary Staff Siebel Architect"	="Civil Aviation Safety Authority"	02-Jan-08	="Temporary information technology systems or database administrators"	01-Oct-07	01-Apr-08	180000.00	="07/085"	="Cogent Recruitment"	02-Jan-08 10:27 AM	

+="CN52672"	"Peoplesoft Developer - Reports"	="Civil Aviation Safety Authority"	02-Jan-08	="Temporary information technology software developers"	10-Dec-07	30-Jun-08	150000.00	="07/091"	="Oracle Systems (Australia) Pty Ltd"	02-Jan-08 10:33 AM	

+="CN52673"	"Desktop Video Coferencing Solution"	="Civil Aviation Safety Authority"	02-Jan-08	="Temporary personnel services"	12-Dec-07	01-Dec-08	73669.00	="07/115"	="Telstra"	02-Jan-08 10:43 AM	

+="CN52674"	"Recruitment Services - Business Intelligence Developer"	="Civil Aviation Safety Authority"	02-Jan-08	="Recruitment services"	10-Dec-07	10-Apr-08	150000.00	="07/116"	="Leo Microsystems"	02-Jan-08 10:51 AM	

+="CN52675"	"Audit and Risk Committee member"	="Civil Aviation Safety Authority"	02-Jan-08	="Legal services"	12-Nov-07	11-Nov-10	30000.00	="07/121"	="Dale Boucher Solictor & Consultant"	02-Jan-08 11:10 AM	

+="CN52677"	"Development and Support of AOC Survey"	="Civil Aviation Safety Authority"	02-Jan-08	="Legal services"	29-Nov-07	30-Mar-08	22838.00	="07/122"	="AussieHQ Pty Ltd"	02-Jan-08 11:28 AM	

+="CN52678"	"Costing Model - Maintenance and analysis"	="Civil Aviation Safety Authority"	02-Jan-08	="Financial accounting"	01-Oct-07	31-Mar-08	34320.00	="07/134"	="Total Decision Support Pty Ltd"	02-Jan-08 11:33 AM	

+="CN52679"	"TOP Rates"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Utilities"	14-Dec-07	31-Dec-08	70583.00	=""	="Tuggeranong Office Park Pty Ltd"	02-Jan-08 11:35 AM	

+="CN52680"	"TOP Land Tax"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Taxation"	14-Dec-07	31-Dec-08	63583.00	=""	="Tuggeranong Office Park Pty Ltd"	02-Jan-08 11:35 AM	

+="CN52681"	"Development of material and curriculum for Diploma"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	14-Dec-07	14-Dec-07	54602.00	=""	="Swinburne University of Technology"	02-Jan-08 11:35 AM	

+="CN52682"	"Develpoment of a local answers database"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Business administration services"	14-Dec-07	15-Mar-08	14042.00	=""	="Mirandow Pty Ltd"	02-Jan-08 11:36 AM	

+="CN52683"	"Data Entry Contrcat Staff"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Advertising"	14-Dec-07	28-Feb-08	22000.00	=""	="Hays Personnel Services"	02-Jan-08 11:36 AM	

+="CN52684"	"Contribution to Reconciliation Place for Paving Work Design"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Public Utilities and Public Sector Related Services"	17-Dec-07	30-Jun-08	165000.00	=""	="NATIONAL CAPITAL AUTHORITY"	02-Jan-08 11:36 AM	

+="CN52685"	"Fee for selection of NCAC Board members"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Human resources services"	17-Dec-07	17-Dec-07	22500.00	=""	="HUDSON GLOBAL RESOURCES"	02-Jan-08 11:36 AM	

+="CN52686"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer Equipment and Accessories"	17-Dec-07	31-Jan-08	33999.45	=""	="DELL AUSTRALIA PTY LIMITED"	02-Jan-08 11:36 AM	

+="CN52687"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer Equipment and Accessories"	13-Dec-07	31-Jan-08	46610.00	=""	="TIG International Pty Ltd"	02-Jan-08 11:36 AM	

+="CN52688"	"National Accommodation for NTER Darwin"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	31-Dec-08	1419864.60	=""	="Cullen Bay Holiday Apartments"	02-Jan-08 11:36 AM	

+="CN52689"	"National Accommodation for NTER Darwin"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	31-Dec-08	85228.00	=""	="MARRAKAI LUXURY ALL SUITES"	02-Jan-08 11:36 AM	

+="CN52690"	"Water & Sewerage Supply"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Water and wastewater treatment supply and disposal"	12-Dec-07	31-Dec-08	137958.00	=""	="ACTEW Corporation Ltd"	02-Jan-08 11:37 AM	

+="CN52691"	"TOP Electrical Supply"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	12-Dec-07	31-Dec-08	1540000.00	=""	="ACTEWAGL RETAIL"	02-Jan-08 11:37 AM	

+="CN52692"	"ADHOC Painting Services"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Building and Construction and Maintenance Services"	12-Dec-07	31-Dec-08	25667.00	=""	="Anasson Painting & Maintenance Pty"	02-Jan-08 11:37 AM	

+="CN52693"	"Relocation Services for Moves"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Transportation components and systems"	12-Dec-07	31-Dec-08	32404.00	=""	="Balfran Removals"	02-Jan-08 11:37 AM	

+="CN52694"	"Plumbing Services"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Building and Construction and Maintenance Services"	12-Dec-07	31-Dec-08	38500.00	=""	="Macquarie Plumbing Service"	02-Jan-08 11:37 AM	

+="CN52695"	"Technical assessments creche upgrades"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Management advisory services"	13-Dec-07	30-Dec-08	38500.00	=""	="Th'nc Projects Australia Pty. Ltd"	02-Jan-08 11:37 AM	

+="CN52696"	"IT Contractor"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	108680.00	=""	="ENCORE IT SERVICES PTY LTD"	02-Jan-08 11:37 AM	

+="CN52697"	"Provision of Financial Services for Activities in the Housing and Disability Group"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Financial and Insurance Services"	21-Dec-07	07-Mar-08	64713.00	=""	="WALTERTURNBULL"	02-Jan-08 11:37 AM	

+="CN52698"	"Future Planning Provisions Product Testing"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Human resources services"	21-Dec-07	25-Mar-08	170390.00	=""	="Worthington Di Marzio Pty Ltd"	02-Jan-08 11:38 AM	

+="CN52699"	"Dell OptiPlex 755 Desktop (XP) - no Monitor"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Business administration services"	21-Dec-07	31-Jan-08	27531.00	=""	="DELL AUSTRALIA PTY LIMITED"	02-Jan-08 11:38 AM	

+="CN52700"	"Steel Head Appliances and 3 Years Support"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Business administration services"	21-Dec-07	31-Jan-08	290052.00	=""	="Dataflex Pty Ltd"	02-Jan-08 11:38 AM	

+="CN52701"	"Preparation and Delivery of Mentoring Program"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	21-Dec-07	30-Jan-08	10010.00	=""	="THE WORKWISE GROUP PTY. LTD."	02-Jan-08 11:38 AM	

+="CN52702"	"Executive Coaching for staff members"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	21-Dec-07	21-Dec-07	28600.00	=""	="THE WORKWISE GROUP PTY. LTD."	02-Jan-08 11:38 AM	

+="CN52703"	"Implementation of 4 day Personal Efficiency Program"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Vocational training"	24-Dec-07	31-Dec-07	13200.00	=""	="D'Arcy Consulting Group Pty Ltd"	02-Jan-08 11:38 AM	

+="CN52704"	"Payment of apartment accommodation for members of the Indigenous Programs Investigations Branch"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Hotels and lodging and meeting facilities"	20-Dec-07	30-Apr-08	15000.00	=""	="ApartmentsPlus.com.au"	02-Jan-08 11:38 AM	

+="CN52705"	"Community Stores Program - IT"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Management advisory services"	18-Dec-07	30-Jun-08	324000.00	=""	="Deloitte NT"	02-Jan-08 11:38 AM	

+="CN52706"	"Advertising consultations on Disability Supported Accomodation Program for public meetings."	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Advertising"	18-Dec-07	18-Dec-07	79799.13	=""	="HMA Blaze Pty Limited"	02-Jan-08 11:39 AM	

+="CN52707"	"Fitout of FaCSIA Office Accommodation - Lvls 1 & 2 Corinna Chambers Woden ACT"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="General building construction"	18-Dec-07	25-Dec-07	343156.44	=""	="ISIS Projects Pty Ltd"	02-Jan-08 11:39 AM	

+="CN52708"	"Cross Cultural Awareness Tranining"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	19-Dec-07	30-Jun-08	58960.00	=""	="Jajirdi Consultants"	02-Jan-08 11:39 AM	

+="CN52709"	"Research assistance 'From birth to first years of school transitionsin early childhood'"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Engineering and Research and Technology Based Services"	19-Dec-07	30-Jun-08	33501.00	=""	="UNIVERSITY OF NEW BRUNSWICK"	02-Jan-08 11:39 AM	

+="CN52710"	"Perpetual Licence fbi Software"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Software"	20-Dec-07	30-Jan-08	30470.00	=""	="Nuix Pty Ltd"	02-Jan-08 11:39 AM	

+="CN52711"	"BIA 4.0 + LDRPS 10 Enterprise Package"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Software"	20-Dec-07	31-Jan-08	58538.70	=""	="Strohl Systems Australia"	02-Jan-08 11:39 AM	

+="CN52712"	"CISCO Routes and maintenance. Replace out of life routes at all SSAT offices & FACSIA Canberra."	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer Equipment and Accessories"	20-Dec-07	20-Dec-07	137246.69	=""	="Getronics (Australia) Pty Ltd"	02-Jan-08 11:39 AM	

+="CN52713"	"Consultancy Services for Property&Secyrity Change Management Project"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Management advisory services"	12-Dec-07	31-Mar-08	72050.00	=""	="Templeton Galt Pty Ltd"	02-Jan-08 11:39 AM	

+="CN52714"	"Fitout ICC Queanbeyan - Lvls 1 & 2 1 Monaro Street Queanbeyan NSW 2620"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="General building construction"	03-Dec-07	07-Dec-07	314107.09	=""	="ISIS Projects Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52715"	"Construction Management"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Building and Construction and Maintenance Services"	03-Dec-07	03-Dec-07	1095210.50	=""	="ISIS Projects Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52716"	"Supply & intallation of workstaitions and loose furniture FaCSIA office - Lvls 1&2, building"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Building construction and support and maintenance and repair services"	03-Dec-07	15-Mar-08	508135.90	=""	="Cite Office Design Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52717"	"Supply of Workstations & Loose Furniture ICC Queanbeyan"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Furniture and Furnishings"	03-Dec-07	07-Dec-07	53007.29	=""	="Cite Office Design Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52718"	"Construction Management for the fitout of FaCSIA Ground floor. Lvl 1&2 Biulding 2&5 Darwin N"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Building and Construction and Maintenance Services"	03-Dec-07	14-Feb-08	956777.70	=""	="ISIS Projects Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52719"	"Construction Management Services for ICC South Hedland WA"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="General building construction"	03-Dec-07	28-Mar-08	1128012.60	=""	="ISIS Projects Pty Ltd"	02-Jan-08 11:40 AM	

+="CN52720"	"Early General News NTER Communications"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Advertising"	03-Dec-07	07-Dec-07	37133.56	=""	="HMA Blaze Pty Limited"	02-Jan-08 11:40 AM	

+="CN52721"	"Supply of Temproary Staff"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	21-Mar-08	50000.00	=""	="Wizard Personnel & Office Services"	02-Jan-08 11:40 AM	

+="CN52722"	"IT leasing"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	30-Dec-08	246756.72	=""	="C'WEALTH BANK - COMPUTER FLEET"	02-Jan-08 11:41 AM	

+="CN52723"	"FACSIA National Office Stores Nov 07"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Office supplies"	03-Dec-07	31-Dec-07	29062.32	=""	="Corporate Express Australia"	02-Jan-08 11:41 AM	

+="CN52724"	"FACSIA National Office Stores Nov 07"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Office supplies"	03-Dec-07	31-Dec-07	20627.56	=""	="Corporate Express Australia"	02-Jan-08 11:41 AM	

+="CN52725"	"FACSIA National Office Stores Nov 07"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Office supplies"	03-Dec-07	31-Dec-07	19624.16	=""	="Corporate Express Australia"	02-Jan-08 11:41 AM	

+="CN52726"	"Invoice 398 Project No.458"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Real estate services"	31-Oct-07	03-Dec-07	31450.16	=""	="MPA Construction Group Pty Ltd"	02-Jan-08 11:41 AM	

+="CN52727"	"Lafia 2007 Les Blacklow"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Aircraft"	13-Nov-07	06-Dec-07	23100.00	=""	="AUST PUBLIC SERVICE COMMISSION"	02-Jan-08 11:41 AM	

+="CN52728"	"Monthly Statement 376059690931003 National Office"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Aircraft"	29-Nov-07	17-Dec-07	12523.42	=""	="American Express"	02-Jan-08 11:41 AM	

+="CN52729"	"Reimbursment to UGS December 2007"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Real estate services"	19-Dec-07	19-Dec-07	92254.85	=""	="United Group Services"	02-Jan-08 11:41 AM	

+="CN52730"	"Property Lease: QUE02\SOC0 Jan 08"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Real estate services"	01-Jan-07	20-Dec-07	35134.47	=""	="ARIA Property Group"	02-Jan-08 11:42 AM	

+="CN52731"	"Probity audit of project processes"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	18590.00	=""	="SPARKE HELMORE SOLICITORS"	02-Jan-08 11:42 AM	

+="CN52732"	"Pruchase of 15 Davis Court Katerine NT"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Housings and cabinets and casings"	10-Dec-07	10-Dec-07	426310.03	=""	="Aust Government Solicitor"	02-Jan-08 11:42 AM	

+="CN52733"	"Fee for Permanent lacement of Contrctor"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Accommodation furniture"	10-Dec-07	31-Dec-07	10627.50	=""	="Adecco Australia Pty Ltd"	02-Jan-08 11:42 AM	

+="CN52734"	"Contract Services for Business Analysis and Project Management"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Business administration services"	10-Dec-07	31-Oct-08	263780.00	=""	="Inner North Consulting Pty Ltd"	02-Jan-08 11:42 AM	

+="CN52735"	"LAFIA 2007 Asia Programme Fee - Simon Rosenberg"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	10-Dec-07	10-Dec-07	26508.69	=""	="AUST PUBLIC SERVICE COMMISSION"	02-Jan-08 11:42 AM	

+="CN52736"	"Provision of Riverbed WAN Accelerators Hardware, Maintenance and Support"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer Equipment and Accessories"	11-Dec-07	09-Dec-08	457503.75	=""	="Dataflex Pty Ltd"	02-Jan-08 11:42 AM	

+="CN52737"	"Remote Introductory Corporate Governance Workshops"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	11-Dec-07	31-Mar-08	16200.00	=""	="DEBORAH DURNAN"	02-Jan-08 11:42 AM	

+="CN52738"	"Software"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Software"	11-Dec-07	31-Jan-08	16911.30	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Jan-08 11:43 AM	

+="CN52739"	"Learning & Delevopement Program"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Dec-07	14-Dec-07	22000.00	=""	="Directions for Change"	02-Jan-08 11:43 AM	

+="CN52740"	"Julianna House ground floor refurbishment - electrical and data"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Electrical equipment and components and supplies"	04-Dec-07	04-Dec-07	10208.00	=""	="P&D Building Maintenance Pty Ltd"	02-Jan-08 11:43 AM	

+="CN52741"	"Printing of ICC wall and desk calendar"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Printing and publishing equipment"	04-Dec-07	14-Dec-07	20172.96	=""	="Pirion Pty Limited"	02-Jan-08 11:43 AM	

+="CN52742"	"Advertising Programme Funding Submissions - Funding for services for Indigenous Australians"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Advertising"	04-Dec-07	04-Dec-07	83384.09	=""	="HMA Blaze Pty Limited"	02-Jan-08 11:43 AM	

+="CN52743"	"Advertising for Tenders"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Advertising"	04-Dec-07	04-Dec-07	46706.76	=""	="HMA Blaze Pty Limited"	02-Jan-08 11:43 AM	

+="CN52744"	"Member of the Carer Adjustment Payment Expert Pane"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	20008.00	=""	="Louise Denley & Paul Tuffin"	02-Jan-08 11:43 AM	

+="CN52745"	"Member of the Carer Adjustment Payment Expert Pane"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	20008.00	=""	="MS JUNE MCLOUGHLIN"	02-Jan-08 11:43 AM	

+="CN52746"	"Hyperion Developer"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Computer services"	06-Dec-07	30-Jun-08	73920.00	=""	="Forge Data Solutions"	02-Jan-08 11:44 AM	

+="CN52747"	"Learning & Development"	="Department of Families, Community Services & Indigenous Affairs"	02-Jan-08	="Education and Training Services"	07-Dec-07	10-Dec-07	18000.00	=""	="Interaction Consulting Group PtyLtd"	02-Jan-08 11:44 AM	

+="CN52748"	"Federal Register of Legislative Instruments fees"	="Civil Aviation Safety Authority"	02-Jan-08	="Financial accounting"	04-Dec-07	31-Dec-07	31137.00	="07/145"	="Attorney General's Department (ACT)"	02-Jan-08 11:53 AM	

+="CN52749"	"ICON fiber relocation"	="Civil Aviation Safety Authority"	02-Jan-08	="Fibre optic cable"	05-Dec-07	31-Jan-08	20000.00	="07/147"	="ICON Management Office - DoFA"	02-Jan-08 12:00 PM	

+="CN52750"	"Temporary Staff - IT Tester"	="Civil Aviation Safety Authority"	02-Jan-08	="Temporary information technology systems or database administrators"	10-Dec-07	29-Feb-08	44722.00	="07/149"	="Oakton AA Services Pty Ltd"	02-Jan-08 12:04 PM	

+="CN49690"	"Service contractor - ICAO audit - Training Framework"	="Civil Aviation Safety Authority"	02-Jan-08	="Business and corporate management consultation services"	12-Nov-07	11-Jan-08	47250.00	="07/089-01"	="Han-Bry Pty Ltd"	02-Jan-08 12:07 PM	

+="CN45537"	"Additional ICT Cabling Fitout of Head Office"	="Civil Aviation Safety Authority"	02-Jan-08	="Network cable"	18-Oct-07	18-Nov-07	16500.00	="07/104"	="Multisystem Communications"	02-Jan-08 12:10 PM	

+="CN52752"	" Threat and Error Management Training courses "	="Civil Aviation Safety Authority"	02-Jan-08	="Business and corporate management consultation services"	07-Dec-07	07-Feb-08	15000.00	="07/151"	="Aviation Projects Pty Ltd"	02-Jan-08 12:20 PM	

+="CN52753"	"Threat and Error Management  Training Courses"	="Civil Aviation Safety Authority"	02-Jan-08	="Business and corporate management consultation services"	07-Dec-07	07-Feb-08	15000.00	="07/152"	="Tanner Menzies Pty Ltd (Brisbane)"	02-Jan-08 12:31 PM	

+="CN52755"	"Review and assessment operations manual"	="Civil Aviation Safety Authority"	02-Jan-08	="Business and corporate management consultation services"	09-Jul-07	31-Jul-07	50000.00	="07/153"	="Altara Group Pty Ltd"	02-Jan-08 12:35 PM	

+="CN52756"	"Review and assess foreign operators manuals"	="Civil Aviation Safety Authority"	02-Jan-08	="Business and corporate management consultation services"	30-Nov-07	30-Nov-09	30000.00	="07/153-01"	="Altara Group Pty Ltd"	02-Jan-08 12:39 PM	

+="CN52757"	"Post-election Conference"	="Australian Electoral Commission"	02-Jan-08	="Hotels and lodging and meeting facilities"	11-Mar-08	12-Mar-08	13140.00	=""	="Hyatt Regency Adelaide"	02-Jan-08 02:22 PM	

+="CN52758-A1"	"Temporary Personnel"	="Australian Electoral Commission"	02-Jan-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	59279.09	="AEC06/019"	="Hays Personnel Services"	02-Jan-08 02:37 PM	

+="CN52759"	"Employment Offerings Consultancy"	="Comsuper"	02-Jan-08	="Human resources services"	02-Oct-07	31-Dec-07	36450.00	=""	="Mercer (Australia) Pty Ltd"	02-Jan-08 02:39 PM	

+="CN52762"	"Printing"	="Australian Electoral Commission"	02-Jan-08	="Industrial printing services"	06-Dec-07	06-Jan-08	10406.00	=""	="Australian Envelopes"	02-Jan-08 02:49 PM	

+="CN52763-A1"	"Probity Order for Administration Platform Modernisation Project"	="Comsuper"	02-Jan-08	="Human resources services"	01-Oct-07	30-Jun-08	48452.00	=""	="Australian Government Solicitors"	02-Jan-08 02:55 PM	

+="CN52764"	"Needs and gaps analysis of on-farm irrigation  - delivery of National Water Plan for Security"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	07-Nov-07	28-Feb-08	79190.00	="0708-410"	="Rural Plan Pty Ltd"	02-Jan-08 02:57 PM	

+="CN52765"	"Contribute Economic advice to the Disclosure of Commercial Building Energy Efficiency report"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	31-Dec-07	61380.00	="0708-422"	="ACCESS ECONOMICS"	02-Jan-08 02:57 PM	

+="CN52766"	"SAP ERP STAGE 3 IMPLEMENTATION"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	15-Feb-08	1735415.00	="0708-697"	="SAP Australia"	02-Jan-08 02:58 PM	

+="CN52767"	"PROVISION OF PEP TRAINING FOR JOINT TEAM STAFF"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	03-Dec-07	03-Dec-07	29700.00	="0708-643"	="D'Arcy Consulting Group Pty Ltd"	02-Jan-08 02:58 PM	

+="CN52769"	"SAP HR Support Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	22-Nov-07	31-Dec-07	17820.00	="0708-630"	="Presence of IT"	02-Jan-08 02:59 PM	

+="CN52770"	"Science Writer to Support the Preparation of the National Synthesis Report"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	04-Dec-07	30-Apr-08	55000.00	="0708-691"	="SHIRLEY AND WERNER ASSOCIATES PTY L"	02-Jan-08 03:00 PM	

+="CN52772"	"The provision of services relating to the validation of Australian Dung beetle data"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	04-Dec-07	05-Dec-07	13200.00	="0708-463"	="Queensland Museum"	02-Jan-08 03:00 PM	

+="CN52771-A2"	"Temporary Personnel"	="Australian Electoral Commission"	02-Jan-08	="Temporary personnel services"	01-Aug-06	30-Jun-09	150823.64	="AEC06/019"	="Tarakan Consulting"	02-Jan-08 03:00 PM	

+="CN52773"	"Venue, accom, meals and assoc services AELERT course"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	05-Dec-07	31-Dec-07	32740.00	="0708-663"	="Belconnen Hotel/Motel"	02-Jan-08 03:02 PM	

+="CN52774"	"Printing annual reports 06/07 for Heritage"	="Department of the Environment and Water Resources"	02-Jan-08	="Printed media"	05-Dec-07	15-Dec-07	24035.00	="0708-670"	="Canprint Communications P/L"	02-Jan-08 03:02 PM	

+="CN52775"	"Delivery of Course Material and Subsequent Assessment - Diploma in Gov. investigation"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	05-Dec-07	31-Dec-07	16000.00	="0708-664"	="Investigation Compliance and Enforcem"	02-Jan-08 03:02 PM	

+="CN52776"	"Secretariat services for Australian Environmental  Law Enforcement Regulators Network"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	31-Dec-07	12500.00	="0708-665"	="Brisbane City Council"	02-Jan-08 03:03 PM	

+="CN52777"	"To scope the requirements and needs of DEW in relation to data on agricultural pesticides usage"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	05-Dec-07	18-Jan-08	27500.00	="0708-025"	="Solutions Marketing and Research Pty"	02-Jan-08 03:03 PM	

+="CN52778"	"Provision of removals service for new employee to the Department"	="Department of the Environment and Water Resources"	02-Jan-08	="Mail and cargo transport"	05-Dec-07	17-Dec-07	12240.03	="0708-669"	="Grace Removals Group"	02-Jan-08 03:03 PM	

+="CN52779"	"Course Services - Good Health - Great Future Progr"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	06-Dec-07	31-Dec-07	45105.50	="0708-687"	="Health Futures Pty Ltd"	02-Jan-08 03:03 PM	

+="CN52780"	"Whales think tank conference Expenses"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	17-Dec-07	15517.57	="0708-680"	="Dr Richard Beamish"	02-Jan-08 03:03 PM	

+="CN52781"	"Measurement Assurance Infrastructure for Non-Urban Water Metering."	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	06-Dec-07	30-Jun-08	12500.00	="0708-682"	="Department Of Industry, Tourism and"	02-Jan-08 03:03 PM	

+="CN52782"	"RECRUITMENT SERVICES"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	03-Dec-07	28-Dec-07	11518.10	="0708-708"	="Professional Careers Australia"	02-Jan-08 03:03 PM	

+="CN52783"	"Supply and Placement of Temporary Administrative Staff"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	04-Dec-07	25-Jan-08	30000.00	="0708-673"	="Vedior Asia Pacific Pty Ltd"	02-Jan-08 03:03 PM	

+="CN52784"	"Red Algae study Great Barrier Reef"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	03-Dec-07	30-May-08	52365.00	="0708-620"	="MurdochLINK Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52785-A1"	"Audit Services Relating to Community Water Grants"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	03-Jun-08	21255.10	="0708/692"	="Protiviti Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52786"	"Solar Hot Water Rebate Online Application Form Development"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	21-Dec-07	33000.00	="0708-745"	="Toldark Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52787"	"Blackberry Charges Nov 07"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	04-Dec-07	14-Dec-07	24066.76	="0708-659"	="Telstra Corporation Limited"	02-Jan-08 03:04 PM	

+="CN52788"	"Generator Efficiency Standards and Greenhouse Challenge Plus Independent Verification"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	29-Mar-08	42821.00	="0708-612"	="Denis Cooke and Associates Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52789"	"Greenhouse Challenge Plus Independent Verification of Telstra Corporation Australia"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	14-Feb-08	14866.00	="0708-538"	="DNV Certification Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52790"	"Bathymetric mapping of Australia's nearshore coastal waters"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	17-Dec-07	44330.00	="0708-132"	="CRC-SI"	02-Jan-08 03:04 PM	

+="CN52791"	"Newspaper advertisments"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	04-Dec-07	04-Dec-07	10071.07	="0708-701"	="HMA Blaze Pty Ltd"	02-Jan-08 03:04 PM	

+="CN52792"	"Thresholding Update 2006-Thresholding analysis of mapsheets"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	14-Dec-07	43505.00	="0708-667"	="Sinclair Knight Merz"	02-Jan-08 03:05 PM	

+="CN52793"	"maintinance of Photocopier"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	08-Aug-07	30-Jun-08	16180.00	=""	="SBA Distributors PTY LTD"	02-Jan-08 03:06 PM	

+="CN52794"	"project management training"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	19-Nov-07	30-Nov-07	10725.00	=""	="Innovation Partners Australia"	02-Jan-08 03:06 PM	

+="CN52795"	"Lease Cars"	="Department of the Environment and Water Resources"	02-Jan-08	="Motor vehicles"	20-Jul-07	30-Jun-08	21600.00	=""	="Lease Plan Australia Limited"	02-Jan-08 03:06 PM	

+="CN52796"	"Relocation"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation services equipment"	28-Nov-07	30-Dec-07	20478.00	="0708-721"	="Zentner Shipping"	02-Jan-08 03:07 PM	

+="CN52797"	"finalisation of the upgrade of the ERISS Gamma Spectrometry Facilities"	="Department of the Environment and Water Resources"	02-Jan-08	="Electrical equipment and components and supplies"	21-Nov-07	30-Nov-07	18000.00	=""	="ICES"	02-Jan-08 03:07 PM	

+="CN52798"	"Phone usage landline and mobile"	="Department of the Environment and Water Resources"	02-Jan-08	="Telecommunications media services"	18-Jul-07	30-Jun-08	45500.00	=""	="Telstra Corporation Limited"	02-Jan-08 03:07 PM	

+="CN52799"	"Phone usage landline"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	18-Jul-07	30-Jun-08	30000.00	=""	="AAPT"	02-Jan-08 03:07 PM	

+="CN52800"	"Recruitment Newspaper and web advertisements"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	23-Jul-07	31-Jul-07	25493.23	=""	="HMA Blaze Pty Ltd"	02-Jan-08 03:07 PM	

+="CN52801"	"Store and office requisites"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	18-Jul-07	30-Jun-08	30000.00	=""	="Corporate Express"	02-Jan-08 03:07 PM	

+="CN52802"	"refurbishment"	="Department of the Environment and Water Resources"	02-Jan-08	="Building construction and support and maintenance and repair services"	23-Aug-07	17-Sep-07	54041.00	=""	="Kyoto Contracting"	02-Jan-08 03:07 PM	

+="CN52803-A1"	"Leased Cars"	="Department of the Environment and Water Resources"	02-Jan-08	="Motor vehicles"	18-Jul-07	30-Jun-08	180750.00	=""	="Lease Plan Australia Limited"	02-Jan-08 03:07 PM	

+="CN52804"	"Leased Cars"	="Department of the Environment and Water Resources"	02-Jan-08	="Motor vehicles"	18-Jul-07	30-Jun-08	21600.00	=""	="Lease Plan Australia Limited"	02-Jan-08 03:08 PM	

+="CN52805"	"Provide training for PDFC's in Media Communication"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	20-Nov-07	30-Jun-08	13996.00	="0708-676"	="Kennedy Communications"	02-Jan-08 03:08 PM	

+="CN52806"	"Leased Cars"	="Department of the Environment and Water Resources"	02-Jan-08	="Motor vehicles"	18-Jul-07	30-Jun-08	21600.00	=""	="Lease Plan Australia Limited"	02-Jan-08 03:08 PM	

+="CN52807"	"Leased Cars"	="Department of the Environment and Water Resources"	02-Jan-08	="Passenger transport"	18-Jul-07	30-Jun-08	21900.00	="LEASE CARS"	="Lease Plan Australia Limited"	02-Jan-08 03:08 PM	

+="CN52808"	"Landscaping"	="Department of the Environment and Water Resources"	02-Jan-08	="Roads and landscape"	17-Sep-07	31-Dec-07	13107.11	=""	="West Arnhem Mowing"	02-Jan-08 03:08 PM	

+="CN52809"	"XHTML mark up services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	27-Jun-08	20000.00	=""	="Ocean Recording and"	02-Jan-08 03:13 PM	

+="CN52810"	"Information Technology System Analysis"	="Department of the Environment and Water Resources"	02-Jan-08	="Information services"	26-Nov-07	31-Jan-08	44000.00	="0708-519"	="Hoffmann Donohue Pty Ltd"	02-Jan-08 03:14 PM	

+="CN52811"	"Web content  review and rewrite services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	27-Jun-08	50000.00	=""	="Maadmob Pty Limited"	02-Jan-08 03:14 PM	

+="CN52812"	"Web site coding and development services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	27-Jun-08	20000.00	=""	="Unique Ideas Australia Pty Ltd"	02-Jan-08 03:14 PM	

+="CN52813-A1"	"Provison of Remote Monitoring and Maintenance for Information and Technology Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	27-Sep-07	28-Feb-08	185346.75	="0708-496"	="Phase III Solutions Pty Ltd"	02-Jan-08 03:14 PM	

+="CN52814"	"Temporary Employment Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	28-Sep-07	31-Dec-07	30000.00	="0708-319"	="Staffing and Office Solutions"	02-Jan-08 03:14 PM	

+="CN52815"	"Power and Data Cabling at the Uni"	="Department of the Environment and Water Resources"	02-Jan-08	="Electrical equipment and components and supplies"	08-Aug-07	22-Aug-07	40389.27	="0708-091"	="Intravision Pty Ltd"	02-Jan-08 03:14 PM	

+="CN52816"	"Internal courier October"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	23-Nov-07	30-Jun-08	58500.00	="0607-018"	="Australia Post"	02-Jan-08 03:14 PM	

+="CN52817"	"Call Centre Services for AGO"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	28-Sep-07	28-Jan-08	1250000.00	="0708-222"	="Datacom Connect P/L"	02-Jan-08 03:14 PM	

+="CN52818-A2"	"Design and Architectural Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	21-Mar-07	30-Oct-07	373322.72	="0607-117"	="Willemsen Group"	02-Jan-08 03:14 PM	

+="CN52819"	"License for competitive web site analysis services"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	06-Aug-07	31-Aug-07	29700.00	=""	="Hitwise"	02-Jan-08 03:15 PM	

+="CN52820"	"Great Artesian Basin Coord Committee expenses"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	02-Aug-07	31-Jan-08	20000.00	="0405-197"	="The Trustee for Secretariat Austral"	02-Jan-08 03:15 PM	

+="CN52821"	"Blackberry Charges 2007/08 REF 0708-128"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	16-Aug-07	31-Aug-07	33596.45	="0708-128"	="Telstra Corporation Limited"	02-Jan-08 03:15 PM	

+="CN52822"	"Building Access cards and pass holders"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	12-Sep-07	17-Sep-07	10586.51	="0708-229"	="ID Supplies Pty Ltd"	02-Jan-08 03:15 PM	

+="CN52823"	"Ash Handrails with s/steel for JGB"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	08-Aug-07	15-Aug-07	30394.00	=""	="RT and EM Sutton"	02-Jan-08 03:15 PM	

+="CN52824-A2"	"Integrated Fit-out of Office Accommodation"	="Department of the Environment and Water Resources"	02-Jan-08	="General building construction"	22-Mar-07	30-Oct-07	10389649.01	="06/07-116"	="Hindmarsh"	02-Jan-08 03:15 PM	

+="CN52825"	"Rent - car accomodation"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation services equipment"	08-Aug-07	14-Dec-07	31935.49	="0607-555"	="Colliers International (ACT)Pty Ltd"	02-Jan-08 03:15 PM	

+="CN52826"	"Profiles of Irrigation Stakeholders Outside the Murray-Darling Basin"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	27-Nov-07	20-Dec-07	39462.50	="0708-548"	="Hassall and Associates Pty Ltd"	02-Jan-08 03:16 PM	

+="CN52827-A2"	"Laboratory testing of fuel samples"	="Department of the Environment and Water Resources"	02-Jan-08	="Professional engineering services"	26-Nov-07	31-Dec-10	3370000.00	="0607-457"	="Intertek Testing Services"	02-Jan-08 03:16 PM	

+="CN52828"	"2007 PDS Training Seminars"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	13-Aug-07	17-Aug-07	18155.00	="0708-109"	="Interaction Consulting Group"	02-Jan-08 03:16 PM	

+="CN52829"	"60 Clerical chairs for JGB"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	13-Aug-07	17-Aug-07	10032.00	="0708-110"	="Complete Office Supplies Pty Ltd"	02-Jan-08 03:16 PM	

+="CN52830"	"Fuel Sampling under the Fuel Quality Standards Act 2000 (the Act)."	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	08-Aug-07	15-Jun-08	17952.00	=""	="Attorney General's Department"	02-Jan-08 03:16 PM	

+="CN52831"	"Australia Post Account for October"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	26-Nov-07	30-Nov-07	17165.37	="0708-549"	="Australia Post"	02-Jan-08 03:16 PM	

+="CN52832"	"200 Visitors chairs"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	13-Aug-07	30-Aug-07	31680.00	="0708-111"	="Cube Furniture"	02-Jan-08 03:16 PM	

+="CN52833"	"Design and Facilitation of AGNRM Joint Team Day"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	14-Aug-07	30-Aug-07	21197.00	=""	="Now for Future Pty Ltd"	02-Jan-08 03:16 PM	

+="CN52834"	"Development of an irrigation engagement plan for delivery through the National Plan Water Security"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	14-Aug-07	30-Sep-07	72600.00	=""	="Hassall and Associates Pty Ltd"	02-Jan-08 03:17 PM	

+="CN52835"	"Security Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Security and personal safety"	26-Nov-07	19-Sep-08	218254.56	="0506-155"	="SNP Security"	02-Jan-08 03:17 PM	

+="CN52836"	"x2 photocopiers for minister's office"	="Department of the Environment and Water Resources"	02-Jan-08	="Office machines and their supplies and accessories"	08-Aug-07	17-Aug-07	35434.62	="0607-489"	="Konica Minolta Business Solutions"	02-Jan-08 03:17 PM	

+="CN52837"	"Transport services for Minister Turnbull"	="Department of the Environment and Water Resources"	02-Jan-08	="Transport operations"	15-Aug-07	17-Aug-07	10287.93	="0708-121"	="Dofa Comcar"	02-Jan-08 03:17 PM	

+="CN52838"	"Science Writer Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	28-Sep-07	30-May-08	49500.00	="0607-413"	="Personnel and Financial Services"	02-Jan-08 03:17 PM	

+="CN52839"	"Author in Chief-Great Artesian Basin Resource Study Update"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	19-Nov-07	30-Apr-08	78485.00	="0708-113"	="John R Hillier"	02-Jan-08 03:17 PM	

+="CN52840"	"Cleaning Services for ANU Building"	="Department of the Environment and Water Resources"	02-Jan-08	="Cleaning Equipment and Supplies"	11-Sep-07	31-Jan-08	12100.00	="0708-192"	="City Group Pty Ltd"	02-Jan-08 03:17 PM	

+="CN52842-A1"	"Preliminary testing of gas instantaneous water heaters for water wastage"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	08-Nov-07	30-Jun-08	53834.00	="0708-485"	="Access Product Information Consulta"	02-Jan-08 03:18 PM	

+="CN52843-A1"	"Infrastructure Upgrade"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	24-Oct-07	31-Mar-08	19999.65	="0708-507"	="Toldark Pty Ltd"	02-Jan-08 03:18 PM	

+="CN52844"	"Provision of  facilitation services for the delivery of National Water Plan for Security"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	15-Nov-07	30-Jun-08	237600.00	="0708-400"	="Innovation Delivery Partners Pty Lt"	02-Jan-08 03:18 PM	

+="CN52845"	"Accountancy Recruitment Initiative"	="Department of the Environment and Water Resources"	02-Jan-08	="Accounting and auditing"	10-Sep-07	14-Sep-07	11000.00	="0708/227"	="Aust Public Service Commission"	02-Jan-08 03:18 PM	

+="CN52841"	"Provision for Business Analyst"	="Comsuper"	02-Jan-08	="Human resources services"	02-Jan-08	30-Jun-08	94952.00	=""	="Cordelta Pty Limited"	02-Jan-08 03:18 PM	

+="CN52846"	"Training for Clarity Grants Management System"	="Department of the Environment and Water Resources"	02-Jan-08	="Specialised educational services"	09-Nov-07	14-Dec-07	55440.00	="0708-580"	="COMPUTER ASSOCIATES PTY LTD"	02-Jan-08 03:18 PM	

+="CN52847"	"Printing the National Water Quality Management Strategy"	="Department of the Environment and Water Resources"	02-Jan-08	="Printing and publishing equipment"	03-Sep-07	30-Sep-07	37015.00	="0708-204"	="Canprint Communications P/L"	02-Jan-08 03:18 PM	

+="CN52848"	"Lite-Pro Projectors and Electronic Whiteboards"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	03-Sep-07	13-Sep-07	39226.00	="0708-182"	="Zenith Custom Installation Pty Ltd"	02-Jan-08 03:18 PM	

+="CN52849"	"Australian Government Reception at 31st session of World Heritage Committee meeting, Christchurch."	="Department of the Environment and Water Resources"	02-Jan-08	="Restaurants and catering"	04-Sep-07	30-Sep-07	20777.40	="0607-509"	="Vbase Venue Management Group Ltd"	02-Jan-08 03:19 PM	

+="CN52850"	"Enhancements to reporting features of the SPRAT database"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	05-Sep-07	30-Jun-08	110000.00	="0708-231"	="Toldark Pty Ltd"	02-Jan-08 03:19 PM	

+="CN52851"	"REPORT ON HIGH CONSERVATION VALUE AQUATIC ECOSYSTEMS"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	30-Sep-07	10000.00	=""	="JON NEVILL"	02-Jan-08 03:19 PM	

+="CN52852-A1"	"Leasing of Office Accomodation - ACT"	="Department of the Environment and Water Resources"	02-Jan-08	="Real estate services"	12-Nov-07	30-Jun-09	5921183.59	="0607-556"	="Willemsen Property Corporation"	02-Jan-08 03:19 PM	

+="CN52853"	"Fuel sampling"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	15-Jun-08	10972.50	="0708-190"	="Department  Of Justice"	02-Jan-08 03:19 PM	

+="CN52854"	"Production of booklet for National Wetlands Update Issue 16, 2008"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	12-Nov-07	31-Jan-08	27000.00	="0708-577"	="Wilton Hanford Hanover Pty Ltd"	02-Jan-08 03:19 PM	

+="CN52855"	"Advice metering elements of the National Plan for Water Securityand advice on accrual of water savings"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	13-Nov-07	31-Jan-08	74650.00	="0708-237"	="Nayar Consulting"	02-Jan-08 03:19 PM	

+="CN52856"	"Cost effectivenss of the Water Efficiency Labelling Standards Scheme"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	12-Nov-07	31-Jan-08	66000.00	="0708-042"	="University of Technology Sydney"	02-Jan-08 03:20 PM	

+="CN52857"	"Next G cards - Remote connection service"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	16-Aug-07	31-Aug-07	10229.13	="0708-131"	="Telstra Corporation Limited"	02-Jan-08 03:20 PM	

+="CN52858"	"Scribe Services for 2008 GraduateInterviews"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	17-Aug-07	30-Aug-07	12325.00	="0708-140"	="Goodall, Roderick James"	02-Jan-08 03:20 PM	

+="CN52859"	"Courier services for fuel samples"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	23-Nov-07	31-Dec-10	76500.00	="0708-006"	="DGM Australia Pty Ltd"	02-Jan-08 03:20 PM	

+="CN52860"	"Engineering advice on irrigation delivery systems"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	22-Nov-07	31-Jan-08	74883.00	="0708-273"	="GHD Pty Ltd"	02-Jan-08 03:20 PM	

+="CN52861"	"EASY development Work Service order"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	22-Nov-07	30-Jun-08	13375.44	="0708-320"	="Dialog Information Technology"	02-Jan-08 03:20 PM	

+="CN52862"	"Executive Coaching"	="Department of the Environment and Water Resources"	02-Jan-08	="Specialised educational services"	21-Nov-07	21-Nov-07	16500.00	="0708-618"	="Executive Central Group Pty Ltd"	02-Jan-08 03:20 PM	

+="CN52863"	"Fuel sampling"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	24-Aug-07	15-Jun-08	75000.00	="0708-160"	="Department of Consumer and Employment"	02-Jan-08 03:20 PM	

+="CN52864"	"The Australian Way avertisement 08/07"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	20-Nov-07	20-Nov-07	11742.50	="0607-258"	="ACP Magazines LTd"	02-Jan-08 03:21 PM	

+="CN52865"	"Waste Management for Government Buildings"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	08-Nov-07	14-Mar-08	40256.00	="0708-526"	="Thiess Services Pty Ltd"	02-Jan-08 03:21 PM	

+="CN52866"	"Accreditation as NRM ILMF professionals"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	24-Aug-07	31-Dec-07	39000.00	=""	="NSW Department of Primary"	02-Jan-08 03:21 PM	

+="CN52867"	"Professional service for temporary assistance for the Lower Murray Section"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	20-Nov-07	31-Jan-08	25560.00	="0708-606"	="Hays Personnel"	02-Jan-08 03:21 PM	

+="CN52868"	"Define and Design phases for an Internet chemicals monitoring database - 2007/147-03(02)"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental protection"	27-Aug-07	31-Dec-07	40000.00	="0607-548"	="SRA Information Technology"	02-Jan-08 03:21 PM	

+="CN52869"	"Advertising position 23305 - APS 6"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	27-Aug-07	13-Sep-07	11493.21	="0708-186"	="HMA Blaze Pty Ltd"	02-Jan-08 03:21 PM	

+="CN52871"	"Painting Services ANU Building"	="Department of the Environment and Water Resources"	02-Jan-08	="Prefabricated structures"	11-Sep-07	14-Sep-07	12650.00	="0708-215"	="Anasson Painting and"	02-Jan-08 03:21 PM	

+="CN52872"	"Office fit out Services"	="Department of the Environment and Water Resources"	02-Jan-08	="General building construction"	20-Nov-07	23-Nov-07	12050.50	="0708-574"	="Affinity Construction Management"	02-Jan-08 03:22 PM	

+="CN52873"	"Purchase of Photocopiers"	="Department of the Environment and Water Resources"	02-Jan-08	="Office machines and their supplies and accessories"	27-Aug-07	31-Aug-07	36814.56	="0708-151"	="Konica Minolta Business Solutions"	02-Jan-08 03:22 PM	

+="CN52874"	"EASY development Work"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	19-Nov-07	30-Jun-08	13090.00	="0708-320"	="Dialog Information Technology"	02-Jan-08 03:22 PM	

+="CN52870-A1"	"Provision for System Tester"	="Comsuper"	02-Jan-08	="Human resources services"	22-Dec-07	21-Jun-08	88088.00	=""	="Human Touch resources Pty Limited"	02-Jan-08 03:22 PM	

+="CN52875"	"Health Futures - Employee Program"	="Department of the Environment and Water Resources"	02-Jan-08	="Patient exam and monitoring products"	27-Sep-07	30-Sep-07	11137.50	="0708-318"	="Health Futures Pty Ltd"	02-Jan-08 03:22 PM	

+="CN52876"	"Office Furniture"	="Department of the Environment and Water Resources"	02-Jan-08	="Furniture and Furnishings"	16-Jul-07	27-Jul-07	11880.00	=""	="Workspace Commercial Furniture"	02-Jan-08 03:22 PM	

+="CN52877"	"Standard Workstations"	="Department of the Environment and Water Resources"	02-Jan-08	="Accommodation furniture"	16-Jul-07	26-Jul-07	52734.00	=""	="Workspace Commercial Furniture"	02-Jan-08 03:22 PM	

+="CN52878"	"Disposal of waste ozone depleting Substances"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	17-Jul-07	31-Jul-07	16615.50	=""	="BCD Technologies Pty Ltd"	02-Jan-08 03:22 PM	

+="CN52879-A1"	"Maintenance of Water Group Database"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	13-Dec-07	28-Feb-08	49200.00	="0708-650"	="Atri Solis Imagineering"	02-Jan-08 03:22 PM	

+="CN52880"	"Software Licensing"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	11-Jul-07	16-Jul-07	16500.00	=""	="Funnelback Pty Ltd"	02-Jan-08 03:23 PM	

+="CN52881"	"Software Licensing"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	11-Jul-07	16-Jul-07	27500.00	=""	="Funnelback Pty Ltd"	02-Jan-08 03:23 PM	

+="CN52882"	"Great Artesian Basin Coord Committee expenses"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	26-Sep-07	31-Jan-08	63037.50	="0405-197"	="The Trustee for Secretariat Austral"	02-Jan-08 03:23 PM	

+="CN52883"	"Promotional Materials for Water Effficiency Labelling and Standards (WELS) Scheme"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	09-Jul-07	10-Jul-07	10455.50	=""	="Avant Card"	02-Jan-08 03:23 PM	

+="CN52884"	"Heritage Google Maps"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	18-Jul-07	29-Jun-08	25000.00	=""	="Toldark Pty Ltd"	02-Jan-08 03:23 PM	

+="CN52885"	"Professional Services - Scoping Study"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	06-Jul-07	06-Jul-07	25988.00	=""	="KPMG"	02-Jan-08 03:23 PM	

+="CN52887"	"Legal advice"	="Department of the Environment and Water Resources"	02-Jan-08	="Legal services"	19-Jul-07	31-Jul-07	12286.78	=""	="Minter Ellison"	02-Jan-08 03:24 PM	

+="CN52888"	"frosting on office window ANU"	="Department of the Environment and Water Resources"	02-Jan-08	="Office supplies"	19-Sep-07	28-Sep-07	14286.80	="0708-257"	="Vital Signs Australia Pty Ltd"	02-Jan-08 03:24 PM	

+="CN52889"	"Upgrade lighting system in JGB (C-Bus)"	="Department of the Environment and Water Resources"	02-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	19-Sep-07	25-Sep-07	11225.50	="0708-263"	="Martin Donnelly"	02-Jan-08 03:24 PM	

+="CN52890"	"Venue Hire and Catering"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	19-Jul-07	19-Jul-07	10931.10	=""	="National Press Club"	02-Jan-08 03:24 PM	

+="CN52891"	"Program management Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	20-Sep-07	31-Oct-07	35887.50	="0708-271"	="Tanner James Management Consultants"	02-Jan-08 03:24 PM	

+="CN52892"	"Lease Payments for Kingston Laboratory"	="Department of the Environment and Water Resources"	02-Jan-08	="Real estate services"	24-Sep-07	28-Sep-07	68180.28	="07/08-299"	="Dept. Agriculture, Fisheries and"	02-Jan-08 03:24 PM	

+="CN52893-A3"	"Provision of Telecommunication Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	12-Jul-07	30-Jun-10	3076550.00	="0708-325"	="AAPT"	02-Jan-08 03:24 PM	

+="CN52894-A1"	"Switchboard Operator Services 2007/08"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	12-Jul-07	30-Jun-08	138995.51	=""	="Sirius Telecommunications Ltd"	02-Jan-08 03:24 PM	

+="CN52895-A2"	"Project Tracking Database - Service order for the development and deployment"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	12-Jul-07	30-Nov-07	121471.80	="0708-982"	="SRA Information Technology"	02-Jan-08 03:25 PM	

+="CN52896"	"Velocity Internet provision for home broadband"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Jul-07	30-Jun-08	80000.00	=""	="Velocity Internet Pty Ltd"	02-Jan-08 03:25 PM	

+="CN52897"	"Data Evaluation Reports"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental protection"	20-Sep-07	30-Sep-07	18744.00	="0708-279"	="Australian Environment"	02-Jan-08 03:25 PM	

+="CN52898"	"Revision of Environmental Risk Management Report"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental protection"	20-Sep-07	30-Sep-07	16390.18	="0708-280"	="Australian Environment"	02-Jan-08 03:25 PM	

+="CN52899-A1"	"Lease for National Oceans Office in Kingston Tasmania"	="Department of the Environment and Water Resources"	02-Jan-08	="Real estate services"	20-Sep-07	08-Jul-08	385978.29	="0708-274"	="AAD Nominees P/L"	02-Jan-08 03:25 PM	

+="CN52900"	"Australia's National Heritage Book"	="Department of the Environment and Water Resources"	02-Jan-08	="Printing and publishing equipment"	25-Sep-07	28-Sep-07	20832.90	="0708-363"	="Paragon Printers Australasia"	02-Jan-08 03:25 PM	

+="CN52901"	"Oracle Annual Software Maintenance for the period 31/10/2007 - 30/10/2008"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	17-Dec-07	30-Oct-08	227240.31	=""	="Oracle Corp Aust P/L"	02-Jan-08 03:25 PM	

+="CN52902-A1"	"Review and Gap Analysis of information on environmental water requirements in the MDB"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	10-Dec-07	31-May-08	284557.90	="0708-046"	="GHD Pty Ltd"	02-Jan-08 03:26 PM	

+="CN52903"	"Monitoring,reporting on and implementing the delivery of National Water Plan for Security"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	20-Sep-07	31-Jan-08	66000.00	="0708-139"	="Innovation Delivery Partners Pty Lt"	02-Jan-08 03:26 PM	

+="CN52905"	"Office Furniture"	="Department of the Environment and Water Resources"	02-Jan-08	="Furniture and Furnishings"	16-Jul-07	03-Aug-07	27060.00	=""	="Cube Furniture"	02-Jan-08 03:26 PM	

+="CN52906"	"Electrical facility works in JGB"	="Department of the Environment and Water Resources"	02-Jan-08	="Electrical wire and cable and harness"	19-Sep-07	26-Sep-07	11734.80	="0708-264"	="Integrated Technical Management"	02-Jan-08 03:26 PM	

+="CN52909"	"Mail Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	25-Jul-07	30-Aug-07	13425.50	=""	="Australia Post"	02-Jan-08 03:26 PM	

+="CN52910"	"Office furniture and workstations"	="Department of the Environment and Water Resources"	02-Jan-08	="Accommodation furniture"	31-Jul-07	30-Aug-07	169906.00	=""	="IKEN Commercial Intereriors"	02-Jan-08 03:27 PM	

+="CN52911"	"Feasibility study into the acquisition of WELS product retail sales data"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	30-Nov-07	31-Dec-07	55000.00	="0708-425"	="GFK Marketing Services Aust. P/L"	02-Jan-08 03:27 PM	

+="CN52912"	"Marketing Material"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	26-Jul-07	27-Jul-07	12000.00	=""	="Engelman STUDIOS"	02-Jan-08 03:27 PM	

+="CN52913"	"Recruitment Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	27-Sep-07	28-Feb-08	10968.10	="0708-311"	="Hays Personnel"	02-Jan-08 03:27 PM	

+="CN52914"	"Services-Strategic Planning for the Murray Darling Basin"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Jul-07	30-Sep-07	39600.00	=""	="Innovation Partners Australia"	02-Jan-08 03:27 PM	

+="CN52915"	"Provide technical expertise and advice to the Wate Efficiency and Labelling Standards Team"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	27-Jul-07	31-Aug-09	70000.00	="0607-192"	="Access Product Information Consulta"	02-Jan-08 03:27 PM	

+="CN52916"	"Seminar Series - Environmental Economics for Non Economists"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	27-Jul-07	16-Aug-07	36300.00	=""	="Australian National University"	02-Jan-08 03:27 PM	

+="CN52917"	"Lease of vehicles"	="Department of the Environment and Water Resources"	02-Jan-08	="Motor vehicles"	30-Jul-07	15-Jun-08	46000.00	=""	="Lease Plan Australia Limited"	02-Jan-08 03:27 PM	

+="CN52918"	"Advice on procedures for executing permanent water entitlement purchases and transferring ownership"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	27-Nov-07	20-Dec-07	63202.11	="0708-446"	="Lawlab Pty Limited"	02-Jan-08 03:28 PM	

+="CN52919"	"Supply of Industrial Gas"	="Department of the Environment and Water Resources"	02-Jan-08	="Chemicals including Bio Chemicals and Gas Materials"	30-Jul-07	30-Jul-07	25000.00	="0708-146"	="Air Liquide"	02-Jan-08 03:28 PM	

+="CN52921"	"Gas analysis"	="Department of the Environment and Water Resources"	02-Jan-08	="Elements and gases"	17-Sep-07	30-Jun-08	28000.00	="0708-254"	="CSIRO Accounts Receivable"	02-Jan-08 03:28 PM	

+="CN52922"	"Preparation of draft Bill National Water Plan"	="Department of the Environment and Water Resources"	02-Jan-08	="Legal services"	06-Jul-07	31-Jul-07	60059.97	="DS-170"	="Megan Dyson"	02-Jan-08 03:28 PM	

+="CN52923"	"Fuel sampling"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	15-Jun-08	14630.00	="0708-190"	="Department  Of Justice"	02-Jan-08 03:28 PM	

+="CN52924"	"Office Furniture"	="Department of the Environment and Water Resources"	02-Jan-08	="Office Equipment and Accessories and Supplies"	19-Jul-07	16-Aug-07	15917.00	=""	="ILEA Holdings"	02-Jan-08 03:28 PM	

+="CN52925"	"Participation in Career Development Assessment Centre"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	20-Jul-07	25-Jul-07	23650.00	="07/08-057"	="Aust Public Service Commission"	02-Jan-08 03:28 PM	

+="CN52926"	"Internet Service Provider Fees 0708"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Jul-07	30-Jun-08	18000.00	=""	="Christmas Island Internet"	02-Jan-08 03:29 PM	

+="CN52927"	"BH C550 Photocopier - Water division"	="Department of the Environment and Water Resources"	02-Jan-08	="Office machines and their supplies and accessories"	21-Sep-07	28-Sep-07	18754.40	="0708-089"	="Konica Minolta Business Solutions"	02-Jan-08 03:29 PM	

+="CN52928"	"Waste Disposal"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	23-Jul-07	30-Jun-08	25000.00	=""	="City West Water"	02-Jan-08 03:29 PM	

+="CN52929"	"Research into Social Resilience and Human Values for Water"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	11-Dec-07	31-May-08	104941.00	="0708-303"	="Dept. Agriculture, Fisheries and"	02-Jan-08 03:29 PM	

+="CN52930"	"Advertising recruitment Services for Chair and Chief Executive Murray Darling Basin Authority"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	27-Sep-07	30-Oct-07	21941.92	="0708-309"	="HMA Blaze Pty Ltd"	02-Jan-08 03:29 PM	

+="CN52931"	"Environmental Compliance Audit"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	25-Jul-07	32340.00	=""	="Protiviti Pty Ltd"	02-Jan-08 03:29 PM	

+="CN52932"	"Workstations"	="Department of the Environment and Water Resources"	02-Jan-08	="Accommodation furniture"	23-Jul-07	09-Aug-07	23595.00	=""	="Schiavello (ACT) Pty Ltd"	02-Jan-08 03:29 PM	

+="CN52933"	"refrigerant demand study"	="Department of the Environment and Water Resources"	02-Jan-08	="Industrial refrigeration"	03-Jul-07	31-Aug-07	39875.00	="0708-012"	="Energy Partners"	02-Jan-08 03:29 PM	

+="CN52934"	"Research Projects for Marine Mammals"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	20-Dec-07	28550.00	="0607-012"	="Eubalaena Pty Ltd"	02-Jan-08 03:30 PM	

+="CN52935"	"Short term employment through Recruitment Agency"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	13-Nov-07	30-Jan-08	43712.16	="0708-598"	="Hays Personnel"	02-Jan-08 03:30 PM	

+="CN52936"	"DBA Support"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	12-Nov-07	30-Jun-08	27000.00	="0708-508"	="SRA Information Technology"	02-Jan-08 03:30 PM	

+="CN52937"	"Short term temporary administrative Staff for support of program administrator application"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	24-Sep-07	30-Jun-08	60568.20	="0708-321"	="Kowalski Recruitment"	02-Jan-08 03:30 PM	

+="CN52938"	"Australian Faunal Directory Upgrade"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	24-Sep-07	30-Jun-08	122389.00	="0708-294"	="Peoplebank Australia Ltd"	02-Jan-08 03:30 PM	

+="CN52939"	"Contract development of Trematoda checklist"	="Department of the Environment and Water Resources"	02-Jan-08	="Information services"	27-Sep-07	30-May-08	27500.00	="0708-161"	="Uniquest Ltd"	02-Jan-08 03:30 PM	

+="CN52940"	"EMPLOYEE TRAINING SERVICES"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	27-Sep-07	12-Dec-07	13200.00	="0708-256"	="D'Arcy Consulting Group Pty Ltd"	02-Jan-08 03:31 PM	

+="CN52941"	"Event Management for Place Manager's Forum"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	05-Oct-07	64541.89	="0708-018"	="Waldronsmith Management Pty Ltd"	02-Jan-08 03:31 PM	

+="CN52942"	"Snapshot of Used Oil Recycling Industry"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	27-Sep-07	30-Nov-07	83040.00	="030-0607"	="McLennan Magasanik Associates P/L"	02-Jan-08 03:31 PM	

+="CN52943"	"Research and Economic Modelling into Establishment of National Biological Resource Centre"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	26-Sep-07	26-May-08	74860.00	="0708-217"	="Jeff Bennett"	02-Jan-08 03:31 PM	

+="CN52944"	"Development and implementation of ongoing communications activities"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	26-Sep-07	30-Jun-08	55000.00	="0708-316"	="Spinifex Communications Pty Ltd"	02-Jan-08 03:31 PM	

+="CN52945"	"Advertising for Recruitment of Senior Executives"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	28-Sep-07	30-Oct-07	27209.86	="0708-355"	="HMA Blaze Pty Ltd"	02-Jan-08 03:31 PM	

+="CN52946"	"Provision of Training and Technical writing Services to National Pollutant Inventory"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	08-Nov-07	31-Mar-08	78000.00	="PRN 0708-451"	="Pacific Air and Environment Pty Ltd"	02-Jan-08 03:31 PM	

+="CN52947"	"Museum Victoria Professional services for Post Doc"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	08-Nov-07	30-May-08	73333.70	="0708-358"	="Museum Victoria"	02-Jan-08 03:31 PM	

+="CN52948"	"Function and catering services"	="Department of the Environment and Water Resources"	02-Jan-08	="Restaurants and catering"	26-Sep-07	05-Oct-07	23275.24	="0708-288"	="Spotless Services Australia Ltd"	02-Jan-08 03:32 PM	

+="CN52949"	"Accommodation for delegates attending Place Manager's Forum"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	26-Sep-07	05-Oct-07	18000.00	="0708-323"	="Mercure Hotel Melbourne"	02-Jan-08 03:32 PM	

+="CN52950"	"PROVISON OF IMAGES FOR  LIBRARY AND  WEB SITE"	="Department of the Environment and Water Resources"	02-Jan-08	="Photographic and recording media"	23-Nov-07	26-Jun-08	28600.00	="0708-624"	="At A Glance Pty Ltd"	02-Jan-08 03:32 PM	

+="CN52951-A1"	"Climate Clever Project"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	08-Nov-07	30-Jun-08	8562208.13	="0708-545"	="Universal McCann"	02-Jan-08 03:32 PM	

+="CN52952"	"THE FILMING AND PRODUCTION OF TWO DVD'S AND 6 WEB Vignettes"	="Department of the Environment and Water Resources"	02-Jan-08	="Photographic and recording media"	22-Nov-07	30-Jun-08	50000.00	="0708-617"	="The Production Hub"	02-Jan-08 03:32 PM	

+="CN52953"	"Support and advice for the Gloabal Initiative on Forests and Climate"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	25-Sep-07	20-Jun-08	60000.00	="0708-136"	="Australian National University"	02-Jan-08 03:32 PM	

+="CN52954"	"THE PROVISION OF SERVICES RELATING TO THE DEVELOPM OF THE NRS WEBSITE."	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	23-Nov-07	30-May-08	22368.50	="0708-633"	="Spice and Co. Design Pty Ltd"	02-Jan-08 03:32 PM	

+="CN52955"	"Greenhouse Challenge Plus Verification of Alcoa"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	12-Mar-08	31427.00	="0708-552"	="Gutteridge Haskins and Davey pty ltd"	02-Jan-08 03:32 PM	

+="CN52956"	"Investigation on the economic and social impacts of protected areas in Australia"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	11-Sep-07	30-Oct-07	44390.50	="0708453"	="BDA Group"	02-Jan-08 03:32 PM	

+="CN52957"	"Update and Facts Sheet for Your Home 4th Edition"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	14-Dec-07	10390.00	="0708-249"	="University of Technology Sydney"	02-Jan-08 03:32 PM	

+="CN52958"	"Learning and Development"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	08-Aug-07	30-Oct-07	13200.00	=""	="D'Arcy Consulting Group Pty Ltd"	02-Jan-08 03:32 PM	

+="CN52959"	"Software and Support maintenance"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	12-Dec-07	30-Nov-08	10636.80	="0708-613"	="Leica Geosystems GIS and"	02-Jan-08 03:32 PM	

+="CN52960"	"Investigate environmental performance of buildings using Mobile Architectual Built Environ Laborator"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	07-Jan-08	15000.00	="0708-206"	="DEAKIN UNIVERSITY - BURWOOD CAMPUS"	02-Jan-08 03:33 PM	

+="CN52961"	"Independent Review of Hydrological Modelling"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	11-Dec-07	31-Mar-08	22638.00	="0708-501"	="Heritage Computing"	02-Jan-08 03:33 PM	

+="CN52962"	"Consultancy services for managing the testing of washer dryers."	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	11-Dec-07	18-Jan-08	55440.00	="0708-528"	="Access Product Information Consulta"	02-Jan-08 03:33 PM	

+="CN52963"	"Advertising in all major state papers for ICCB recruitment round"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	11-Dec-07	20-Dec-07	55327.15	="0708-723"	="HMA Blaze Pty Ltd"	02-Jan-08 03:33 PM	

+="CN52964"	"Services for the provision of weed species profile information"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	91080.00	="0708-471"	="CSIRO Corporate Finance"	02-Jan-08 03:33 PM	

+="CN52965"	"Provision of Professional Services Relating to the Department's Procurement Framework"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	24-Aug-07	30-Sep-07	20000.00	="0708-069"	="Ernst and Young"	02-Jan-08 03:33 PM	

+="CN52966"	"Development of a Programme Management Database  for the Green Vouchers for Schools Programme"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Dec-07	77500.00	="0708-177"	="EGOV Pty Ltd"	02-Jan-08 03:33 PM	

+="CN52967"	"Review of Genetic Methods as a tool for Identification of Introduced Marine Pests"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	43894.50	="0708-698"	="AccessUTS Pty Ltd"	02-Jan-08 03:33 PM	

+="CN52968"	"International Whaling Commission Conference Large-scale whale/dolphin watching research"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	05-Apr-08	30000.00	="0708-486"	="Murdoch University"	02-Jan-08 03:34 PM	

+="CN52969"	"Editing and data manipulation skills"	="Department of the Environment and Water Resources"	02-Jan-08	="Information services"	28-Nov-07	30-May-08	16500.00	="0708-637"	="Eclipse Systems Pty Ltd"	02-Jan-08 03:34 PM	

+="CN52970"	"TRIM ANNUAL LICENSE 01/10/2007 - 30/09/2008"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	27-Nov-07	14-Dec-07	24377.88	="0708-165"	="Tower Software"	02-Jan-08 03:34 PM	

+="CN52971"	"Purchase of census data"	="Department of the Environment and Water Resources"	02-Jan-08	="Statistics"	13-Dec-07	30-Jun-08	27000.00	="0708-647"	="Australian Bureau of Statistics"	02-Jan-08 03:34 PM	

+="CN52972-A1"	"Staff training in governance and supervision"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	18-Jun-08	36218.09	="0708-421"	="Interaction Consulting Group"	02-Jan-08 03:34 PM	

+="CN52973"	"Survey of vegetation clearing and potential impact in far north Queensland"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	21-Dec-07	29-Feb-08	21000.00	="0708-640"	="Natural Resource Assessments"	02-Jan-08 03:34 PM	

+="CN52974"	"Provide Training in erosion and sediment control"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	20-Dec-07	31-Mar-08	13750.00	="0708-666"	="Muddy Boots Workforce"	02-Jan-08 03:34 PM	

+="CN52975"	"Completion of conservation addvices for EPBC for act-listed threatened species"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	54810.80	="0708-727"	="Biosis Research Pty Ltd"	02-Jan-08 03:34 PM	

+="CN52976"	"Research Fellowship Australian Museum"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	23-Nov-07	30-Jun-08	73334.00	="PR 0708595"	="Australian Museum"	02-Jan-08 03:34 PM	

+="CN52977"	"To determine national research priorities for ocean acidification"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	21-Dec-07	55000.00	="0708-685"	="University of Tasmania"	02-Jan-08 03:35 PM	

+="CN52978"	"Development of Training Package"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Mar-08	23969.00	="0708-517"	="Eco Logical Australia"	02-Jan-08 03:35 PM	

+="CN52979"	"review and restructure of water resources webpage"	="Department of the Environment and Water Resources"	02-Jan-08	="Published Products"	18-Dec-07	28-Mar-08	67760.00	="0708-748"	="Red Square Productions Pty Ltd"	02-Jan-08 03:35 PM	

+="CN52980"	"Design NRM Website"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	27-Nov-07	31-May-08	44000.00	="0708-618"	="Toldark Pty Ltd"	02-Jan-08 03:35 PM	

+="CN52981"	"Research Services to update the online ABRS check list of the three orders of Australian Peracaridan"	="Department of the Environment and Water Resources"	02-Jan-08	="Wildlife and flora"	17-Dec-07	30-May-08	11000.00	="0708-460"	="Australian Museum"	02-Jan-08 03:35 PM	

+="CN52982"	"Change of Government Material - Platinum Support Pack"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer Equipment and Accessories"	17-Dec-07	31-Mar-08	22000.00	="0708-746"	="Squiz Pty Ltd"	02-Jan-08 03:35 PM	

+="CN52983"	"Conservation advice for threatened species listed under the EPBC Act"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	17-Dec-07	31-Mar-08	24134.00	="0708-581"	="Eco Logical Australia"	02-Jan-08 03:35 PM	

+="CN52984"	"Reimbursment of costs relating to chief scientist's panel of experts"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	17-Dec-07	31-Dec-07	24472.56	="0708-297"	="Dept of Education, Science and"	02-Jan-08 03:35 PM	

+="CN52985"	"Review and research nature and outcome of heritage grant programme"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Nov-07	75000.00	=""	="KPMG"	02-Jan-08 03:35 PM	

+="CN52986"	"Evaluat of the exotic birds record keeping scheme"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	01-Mar-09	59900.00	="0708-556"	="PETER STROUD SERVICES"	02-Jan-08 03:35 PM	

+="CN52987"	"Australia Post Account for November 2007"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	13-Dec-07	13-Dec-07	18826.87	="0708-730"	="Australia Post"	02-Jan-08 03:36 PM	

+="CN52988"	"Recovery of Costs National Parks Annual Report 06-07"	="Department of the Environment and Water Resources"	02-Jan-08	="Published Products"	20-Nov-07	30-Nov-07	30475.00	="0708-604"	="Australian National Parks Fund"	02-Jan-08 03:36 PM	

+="CN52989"	"*Dew Fuel payments for October 07"	="Department of the Environment and Water Resources"	02-Jan-08	="Fuels"	20-Nov-07	17-Dec-07	10372.06	=""	="Lease Plan Australia Limited"	02-Jan-08 03:36 PM	

+="CN52990"	"Video Conferencing charges for Sept 2007"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Nov-07	23-Nov-07	14224.40	="0708/473"	="Telstra Corporation Limited"	02-Jan-08 03:36 PM	

+="CN52991"	"Supply of bird and bat bands for use by ABBBS"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Apr-08	23000.00	="0708-535"	="I.O. Mekaniska AB"	02-Jan-08 03:36 PM	

+="CN52992"	"Supply of bird and bat bands for use by ABBBS for use on EPBC listed migratory birds"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	28-Feb-08	13000.00	="0708-529"	="Porzana Limited"	02-Jan-08 03:36 PM	

+="CN52993"	"Health Futures Program"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	15-Nov-07	12-Dec-07	36426.50	="0708-585"	="Health Futures Pty Ltd"	02-Jan-08 03:36 PM	

+="CN52994"	"Provision of services relating to existing chemical review of diquat"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	15-Nov-07	30-Apr-08	107811.00	="0708-476"	="Australian Environment"	02-Jan-08 03:36 PM	

+="CN52995"	"CONFERENCE COORDINATION OF THE TOWNSVILLE FORUM ON SUSTAINABLE DEVELOPMENT OF PACIFIC COASTAL RESOUR"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	28-Aug-07	15-Sep-07	78003.00	="0708-156"	="Reef and Rainforest Research Centre"	02-Jan-08 03:36 PM	

+="CN52996"	"Advertisment for Water Communications"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	15-Nov-07	30-Nov-07	232683.68	="0708-67"	="HMA Blaze Pty Ltd"	02-Jan-08 03:37 PM	

+="CN52997"	"Recruitment Services payment"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	14-Nov-07	30-Nov-07	12546.33	="0708-573"	="Hays Personnel"	02-Jan-08 03:37 PM	

+="CN52998"	"To give a suggestion and opinion on "Phase ou Incandescent Lamps in China""	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Mar-08	60000.00	="0708-207"	="China Association of Lighting Indus"	02-Jan-08 03:37 PM	

+="CN52999"	"Printing of the 4th Edition Your Home Technical Manual"	="Department of the Environment and Water Resources"	02-Jan-08	="Printing and publishing equipment"	14-Nov-07	01-Mar-08	72490.00	="0708-212"	="Giraffe Visual Communication"	02-Jan-08 03:37 PM	

+="CN53000"	"Independent Verification of Greenhouse Challenge  Plus Member"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	17-Dec-07	19544.00	="0708-0489"	="URS Australia Pty Ltd"	02-Jan-08 03:37 PM	

+="CN53001"	"Good Health - Great Futures program"	="Department of the Environment and Water Resources"	02-Jan-08	="Education and Training Services"	13-Nov-07	15-Nov-07	13640.00	="0708-168"	="Health Futures Pty Ltd"	02-Jan-08 03:37 PM	

+="CN53002"	"Climate Change Adap-printing and binding"	="Department of the Environment and Water Resources"	02-Jan-08	="Printing and publishing equipment"	13-Nov-07	27-Nov-07	14823.60	="0708-631"	="Canprint Communications P/L"	02-Jan-08 03:37 PM	

+="CN53003"	"Sponsorship for Land and Sea Management Conference"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	20-Nov-07	30-Nov-07	16500.00	="0708-608"	="Girringun Aboriginal Corporation"	02-Jan-08 03:37 PM	

+="CN53004"	"Provision of Specialist Support Regarding Modification"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	26-Jun-08	60000.00	="0708-137"	="The Trustee for Reddin Family Trust"	02-Jan-08 03:38 PM	

+="CN53005"	"Accommodation for R10 Envirofund Panel Meeting"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	24-Sep-07	25-Sep-07	11384.00	="0708-292"	="Rydges Canberra - Capital Hill"	02-Jan-08 03:38 PM	

+="CN53006"	"Thresholding 2006 Update - Thresholdibg analysis of Mapsheets"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	07-Dec-07	34826.00	="0708-601"	="Sinclair Knight Merz"	02-Jan-08 03:38 PM	

+="CN53007"	"Energy Star Testing for Compact Flourescent Lamps"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Apr-08	60000.00	="0708-578"	="National Lighting Test Center"	02-Jan-08 03:38 PM	

+="CN53008"	"assessment of the terrestrial vegetation Coringa-Herald National Nature Reserve"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	31-May-08	77000.00	="0708-326"	="Queensland Environmental"	02-Jan-08 03:38 PM	

+="CN53009"	"Risk assessment for CWG round3"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-May-08	85428.20	="0607-554"	="Earth Tech Engineering Pty Ltd"	02-Jan-08 03:38 PM	

+="CN53010"	"Supply and Install of Icon Cabling"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	30-Aug-07	26-Oct-07	15146.71	="0708-167"	="MRB Communications Pty Ltd"	02-Jan-08 03:38 PM	

+="CN53011"	"Develop IT Database for the National System for the Prevention and Management of Marine Pests"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Jun-08	74910.00	="0708-675"	="Peoplebank Australia Ltd"	02-Jan-08 03:38 PM	

+="CN53012"	"Research Fellowship SA Museum"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	23-Nov-07	30-Jun-08	73334.00	="0708-593"	="South Australian Museum"	02-Jan-08 03:38 PM	

+="CN53013"	"Research Fellowship Royal Botanic Gardens Sydney"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	23-Nov-07	30-Jun-08	73334.00	="0708-592"	="Botanic Gardens Trust Sydney"	02-Jan-08 03:39 PM	

+="CN53014"	"Sponsorship of the WA NRM Conference, 2008"	="Department of the Environment and Water Resources"	02-Jan-08	="Entertainment services"	17-Jul-07	14-Aug-07	10000.00	=""	="Blackwood Basin Group (Inc)"	02-Jan-08 03:39 PM	

+="CN53015"	"Research Fellowship Uni New England"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	23-Nov-07	30-Jun-08	73334.00	="0708-594"	="University of New England"	02-Jan-08 03:39 PM	

+="CN53016"	"Sponsorship of the 4th WA Coastal Conference"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental management"	24-Aug-07	28-Oct-07	11000.00	="0708-187"	="Shire of Denmark"	02-Jan-08 03:39 PM	

+="CN53017"	"Research Fellowship Uni Melbourne"	="Department of the Environment and Water Resources"	02-Jan-08	="Engineering and Research and Technology Based Services"	23-Nov-07	30-Jun-08	73334.00	="0708-591"	="University of Melbourne"	02-Jan-08 03:39 PM	

+="CN53018"	"Purchase of Digitral Elevation Modelling Data"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Mar-08	1045000.00	=""	="Spot Imaging Services"	02-Jan-08 03:39 PM	

+="CN53019"	"Review and advice on hydrological reports"	="Department of the Environment and Water Resources"	02-Jan-08	="Professional engineering services"	23-Nov-07	31-Jan-08	14344.00	="0708-514"	="WBM Pty Ltd"	02-Jan-08 03:39 PM	

+="CN53020"	"Publication and Printing of the South-east Commonwealth Marine Reserve Network"	="Department of the Environment and Water Resources"	02-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	23-Jul-07	10-Aug-07	53390.57	="0708-062"	="Digital Ink Tasmania"	02-Jan-08 03:39 PM	

+="CN53021"	"REPRINT OF AUSTRALIA'S HERITAGE BOOK"	="Department of the Environment and Water Resources"	02-Jan-08	="Printing and publishing equipment"	21-Nov-07	23-Nov-07	20832.90	="0708-599"	="Paragon Printers Australasia"	02-Jan-08 03:39 PM	

+="CN53022"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	24-Sep-07	30-Jun-08	75000.00	="0708-397"	="Roger Fryer"	02-Jan-08 03:39 PM	

+="CN53023"	"Provision of 600 delegate compendiums for High-Lev Meeting on Forests and Climate"	="Department of the Environment and Water Resources"	02-Jan-08	="Work related organisations"	16-Aug-07	17-Aug-07	20548.00	="0607-456"	="Eloquence Corporate Gifts"	02-Jan-08 03:40 PM	

+="CN53024"	"Conference for Indigenous Land Management Facilita"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	16-Aug-07	30-Sep-07	10563.00	="0708119"	="The Doncaster"	02-Jan-08 03:40 PM	

+="CN53025"	"Contract for secretariat services"	="Department of the Environment and Water Resources"	02-Jan-08	="Public administration and finance services"	15-Aug-07	01-Jan-08	28600.00	="0708-147"	="Adecco Australia P/L"	02-Jan-08 03:40 PM	

+="CN53026"	"Printing of Climate Change Booklet and Fact Sheets"	="Department of the Environment and Water Resources"	02-Jan-08	="Published Products"	13-Aug-07	24-Aug-07	23271.28	="0708-118"	="Zoo Communications Pty Ltd"	02-Jan-08 03:40 PM	

+="CN53027"	"Canon Camera Body and Flash Units"	="Department of the Environment and Water Resources"	02-Jan-08	="Photographic or filming or video equipment"	13-Aug-07	30-Aug-07	14115.00	="0708-108"	="Ted's Camera Store"	02-Jan-08 03:40 PM	

+="CN53028-A1"	"Data entry services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	04-Dec-07	30-Jun-08	13095.34	="0708-0079"	="Recall Information Management Pty L"	02-Jan-08 03:40 PM	

+="CN53029"	"Advertising for the Defeating the Weed Menace Campaign for 2007"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	08-Aug-07	30-Mar-08	1616282.80	=""	="Universal McCann"	02-Jan-08 03:40 PM	

+="CN53030-A1"	"Hosting of online greenhouse gas emissions calculators for household and SMEs"	="Department of the Environment and Water Resources"	02-Jan-08	="Information Technology Broadcasting and Telecommunications"	02-Aug-07	20-Jun-08	347969.80	=""	="Strategic Data Management PTY LTD"	02-Jan-08 03:40 PM	

+="CN53031"	"Quanty Survey Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Jul-07	03-Aug-07	11550.00	=""	="WILDE AND WOOLARD"	02-Jan-08 03:41 PM	

+="CN53032"	"Reports Impacts of Climate Change Marine #2"	="Department of the Environment and Water Resources"	02-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	30-Jul-07	06-Aug-07	18885.00	=""	="CPP Instant Printing"	02-Jan-08 03:41 PM	

+="CN53033"	"Development creative strategy and campaign materials"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	27-Jul-07	30-Jun-08	200000.00	=""	="Peach Advertising Pty Ltd"	02-Jan-08 03:41 PM	

+="CN53034"	"Advertising recruitment"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	27-Jul-07	22-Aug-08	11338.00	=""	="HMA Blaze Pty Ltd"	02-Jan-08 03:41 PM	

+="CN53035"	"Recruitment of temporary staff member"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Jul-07	02-May-08	88000.00	=""	="Atech Group Pty Ltd"	02-Jan-08 03:41 PM	

+="CN53036"	"GBRMP SAP Market Valuation for client"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental protection"	27-Jul-07	22-Aug-07	10216.25	=""	="Queensland Rural Adjustment"	02-Jan-08 03:41 PM	

+="CN53037"	"Advertising for Climate Change Project"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	27-Aug-07	30-Jun-08	1353153.99	="0607-524"	="M and C SAATCHI"	02-Jan-08 03:41 PM	

+="CN53038-A1"	"Environmental Scientific Research Institute Australia Maintenance agreement for software"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	24-Aug-07	30-Jun-09	608253.35	="0607-024"	="ESRI Australia Pty Ltd"	02-Jan-08 03:41 PM	

+="CN53039"	"To Nationally advertise the WELS Scheme"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	23-Aug-07	30-Jun-08	57884.37	="0708-166"	="HMA Blaze Pty Ltd"	02-Jan-08 03:42 PM	

+="CN53040"	"Production of DVDs to support Performance Story Report development"	="Department of the Environment and Water Resources"	02-Jan-08	="Photographic services"	23-Aug-07	20-Jun-08	20000.00	="0607-015"	="The Production Hub"	02-Jan-08 03:42 PM	

+="CN53041"	"Independent verification and testing"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	30-Sep-07	110000.00	="0708-386"	="Strategic Data Management PTY LTD"	02-Jan-08 03:42 PM	

+="CN53042"	"Printing of Coastal and Marine Ktis"	="Department of the Environment and Water Resources"	02-Jan-08	="Reproduction services"	22-Aug-07	23-Aug-07	16005.00	="0708-159"	="Union Offset Printers"	02-Jan-08 03:42 PM	

+="CN53043"	"To provide technical assessment of project proposa and ad hoc tech advice on various matters"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	22-Aug-07	24-Aug-07	79998.60	="0708-230"	="Parsons Brinkerhoff Australia Pty L"	02-Jan-08 03:42 PM	

+="CN53044"	"Data Consolidation for National Pollutant Inventory Database"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	21-Aug-07	28-Feb-08	154500.00	="0708-030"	="Frontier Group Australia Pty Ltd"	02-Jan-08 03:42 PM	

+="CN53045"	"Delivery, Distribution and Promotion of Irrigator Communication Products"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	16-Aug-07	30-Sep-07	64841.00	="0708-138"	="Cox Inall Communications"	02-Jan-08 03:42 PM	

+="CN53046"	"Documentary Production"	="Department of the Environment and Water Resources"	02-Jan-08	="Audio and visual presentation and composing equipment"	16-Aug-07	31-Aug-07	21569.90	="0708-037"	="Bearcage Productions"	02-Jan-08 03:42 PM	

+="CN53047"	"Talent Management for documentary"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Aug-07	31-Aug-07	13497.00	="0708-038"	="Bearcage Productions"	02-Jan-08 03:43 PM	

+="CN53048"	"Placement Fee"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	16-Aug-07	23-Aug-07	15504.50	="80110000"	="Cordelta P/L"	02-Jan-08 03:43 PM	

+="CN53049"	"Charter Flight for Taskforce Meeting"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	16-Aug-07	31-Aug-07	24050.00	="0708-125"	="Air Charter Network"	02-Jan-08 03:43 PM	

+="CN53050"	"Risk Assessment Services for Community Water Grant Projects"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	16-Aug-07	16-Aug-07	212203.75	="0708-142"	="GHD Pty Ltd"	02-Jan-08 03:43 PM	

+="CN53051"	"Annual Software Maintenance for Horizon Software"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	16-Jul-07	30-Jun-08	27765.00	=""	="SirsiDynix Pty Ltd"	02-Jan-08 03:43 PM	

+="CN53052"	"Remote sensing threshold services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	28-Jul-07	28710.00	=""	="Sinclair Knight Merz"	02-Jan-08 03:43 PM	

+="CN53053"	"Usability testing of online greenhouse gas emissions calculators and website."	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	01-Aug-07	15000.00	="0607-491"	="The Performance Technologies Group"	02-Jan-08 03:43 PM	

+="CN53054"	"Cities for Climate Protection Australia  ICLEI Contract 2007-08"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	15-Jun-08	1501754.10	=""	="ICLEI Australia /New Zealand"	02-Jan-08 03:44 PM	

+="CN53055"	"Development of Programms"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	24-Sep-07	46035.00	=""	="Tanner James Management Consultants"	02-Jan-08 03:44 PM	

+="CN53056-A1"	"Professional Services - Policy development"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	30-Jun-08	587770.70	=""	="Tasmanian Land Conservancy"	02-Jan-08 03:44 PM	

+="CN53057"	"Annual Licence Fee"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	13-Jul-07	15-Aug-07	20900.00	=""	="Funnelback Pty Ltd"	02-Jan-08 03:44 PM	

+="CN53058-A1"	"Public Relations Services for the Defeating the Weed Menace Campaign"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	13-Jul-07	30-Apr-08	280500.00	=""	="SEFTON and ASSOCIATES"	02-Jan-08 03:44 PM	

+="CN53059"	"Short Term Temporary Support for Program Administrator Application"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	11-Jul-07	30-Jun-08	68028.93	="0708-757"	="Staffing and Office Solutions"	02-Jan-08 03:44 PM	

+="CN53060"	"Contract for Program Administrator"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	11-Jul-07	20-Aug-07	12500.00	=""	="Staffing and Office Solutions"	02-Jan-08 03:44 PM	

+="CN53061"	"Postal Materials"	="Department of the Environment and Water Resources"	02-Jan-08	="Material packing and handling"	11-Jul-07	27-Jul-07	68760.00	=""	="Australia Post"	02-Jan-08 03:44 PM	

+="CN53062"	"Event Mangement Services FOR GLOBAL FORESTS AND CLIMATE CHANGE CONFERENCE"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jul-07	22-Jul-07	231670.88	="0708-449"	="Julia Ann Barnard"	02-Jan-08 03:45 PM	

+="CN53063"	"Provision of accommodation and conference rooms"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jul-07	22-Jul-07	409105.31	="0607-456"	="Hilton Sydney"	02-Jan-08 03:45 PM	

+="CN53064"	"Accommodation costs for Australian Pacific Delegation to attend World Heritage Conference"	="Department of the Environment and Water Resources"	02-Jan-08	="Hotels and lodging and meeting facilities"	02-Jul-07	04-Jul-07	12000.00	=""	="Copthorne Hotel"	02-Jan-08 03:45 PM	

+="CN53065"	"Promotional material for 'Your Home, Your Building and Your Development production"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	26-Jul-07	17-Aug-07	49499.67	=""	="Images  online"	02-Jan-08 03:45 PM	

+="CN53066"	"Distribution of publications"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	24-Jul-07	31-Jul-07	23531.40	=""	="Canberra Mailing and Envelopes"	02-Jan-08 03:45 PM	

+="CN53067"	"Printing Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Printed media"	24-Jul-07	30-Jul-07	10649.10	=""	="Paragon Printers Australasia"	02-Jan-08 03:45 PM	

+="CN53068"	"Equipment Energy Efficiency Projects relating to lighting, technical and strategic advice,"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	24-Jul-07	24-Jul-07	46820.40	=""	="Steven Beletich Associates"	02-Jan-08 03:45 PM	

+="CN53069"	"Equipment Energy Efficiency Projects relating to lighting, technical and strategic advice,"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	24-Jul-07	20-Jun-08	49500.00	=""	="Steven Beletich Associates"	02-Jan-08 03:45 PM	

+="CN53070"	"Production of NHT Annual Report"	="Department of the Environment and Water Resources"	02-Jan-08	="Published Products"	23-Jul-07	31-Oct-07	40271.84	="0708-059"	="Adcorp Austrlia (ACT)"	02-Jan-08 03:46 PM	

+="CN53071-A1"	"Development of the National Pollutant Inventory System"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	20-Jul-07	28-Feb-08	320477.37	="0607-527"	="Dialog Information Technology"	02-Jan-08 03:46 PM	

+="CN53072"	"Provision of business analysis, system analysis testing and release management services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	17-Aug-07	33000.00	=""	="Dialog Information Technology"	02-Jan-08 03:46 PM	

+="CN53073"	"Temporary employment of Executive Assitant"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	17-Aug-07	10500.00	=""	="Vedior Asia Pacific Pty Ltd"	02-Jan-08 03:46 PM	

+="CN53074"	"Analysis and Upgrade of Mapsheets"	="Department of the Environment and Water Resources"	02-Jan-08	="Environmental Services"	19-Jul-07	06-Aug-07	21500.00	=""	="GEOIMAGE (QLD)"	02-Jan-08 03:46 PM	

+="CN53075"	"Recruitment services for human resource staff"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	19-Jul-07	31-Aug-07	25000.00	=""	="Hays Personnel"	02-Jan-08 03:46 PM	

+="CN53076-A1"	"Policy advice and management of trials for alternative fuels"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	01-Jan-08	128064.66	=""	="Rare Consulting Pty Ltd"	02-Jan-08 03:46 PM	

+="CN53077"	"satellite imagery"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	31-Jul-07	27500.00	=""	="Sinclair Knight Merz"	02-Jan-08 03:46 PM	

+="CN53078-A1"	"Update of AGEIS functionality"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	30-Jun-08	413622.00	="093/0607"	="E C and V Pty Ltd"	02-Jan-08 03:47 PM	

+="CN53079"	"Oracle DBA Support Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Software"	27-Aug-07	30-Jun-08	27000.00	="0708-171"	="SRA Information Technology"	02-Jan-08 03:47 PM	

+="CN53080"	"Prof services for temporary contractor"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	13-Sep-07	30-Dec-07	23331.10	="0708-246"	="Staffing and Office Solutions"	02-Jan-08 03:47 PM	

+="CN53081"	"Provision of Executive Recruitment Services for position of chairman, Murray Darling Basin Authori"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	20-Sep-07	30-Oct-07	44000.00	="0708-170"	="Paper Shuffle Pty Ltd"	02-Jan-08 03:47 PM	

+="CN53082"	"Prof services for temporary contractor"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	13-Sep-07	21-Jan-08	49259.60	="0708-245"	="Hays Personnel"	02-Jan-08 03:47 PM	

+="CN53083"	"Prof services for temporary contractor"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	12-Sep-07	30-Dec-07	30607.36	="0708-243"	="Staffing and Office Solutions"	02-Jan-08 03:47 PM	

+="CN53084"	"Prof services for temporary contractor"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	12-Sep-07	21-Jan-08	37840.40	="0708-244"	="Staffing and Office Solutions"	02-Jan-08 03:47 PM	

+="CN53085"	"Greenhouse Challenge Plus Awards Dinner"	="Department of the Environment and Water Resources"	02-Jan-08	="Entertainment services"	11-Sep-07	11-Sep-07	50000.00	="0607-375"	="Hyatt Hotel Canberra"	02-Jan-08 03:47 PM	

+="CN53086"	"Aust Gov. Water grants Dept - Aqua Clickers"	="Department of the Environment and Water Resources"	02-Jan-08	="Water and wastewater treatment supply and disposal"	11-Sep-07	02-Oct-07	22000.00	="0708-191"	="Aqua Magic"	02-Jan-08 03:48 PM	

+="CN53087"	"Printing of Global Warming Cool It booklet"	="Department of the Environment and Water Resources"	02-Jan-08	="Reproduction services"	11-Sep-07	02-Oct-07	32329.00	="0708-225"	="Pirion  Pty Ltd"	02-Jan-08 03:48 PM	

+="CN53088"	"Good Health-Great Future Program for Environment Research and Infomation Branch"	="Department of the Environment and Water Resources"	02-Jan-08	="Healthcare Services"	11-Sep-07	30-Sep-07	17952.00	="0708-224"	="Health Futures Pty Ltd"	02-Jan-08 03:48 PM	

+="CN53089"	"Farm Guide- Info pages for land and water management"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	20-Sep-07	30-Sep-07	23997.00	="0708-267"	="Farm Guide Pty Ltd"	02-Jan-08 03:48 PM	

+="CN53090"	"Scope requirments Mosaic Map Website"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	10-Sep-07	30-Dec-07	60000.00	="0708-283"	="Toldark Pty Ltd"	02-Jan-08 03:48 PM	

+="CN53092"	"Placement Fee of Contractor"	="Department of the Environment and Water Resources"	02-Jan-08	="Human resources services"	18-Sep-07	21-Sep-07	13289.66	="0708-276"	="Professional Careers Australia"	02-Jan-08 03:48 PM	

+="CN53093"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	10-Sep-07	30-Jun-08	78000.00	="0708-199"	="Steven Fear"	02-Jan-08 03:48 PM	

+="CN53094"	"Natural Resource Management market research data"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	13-Sep-07	02-Oct-07	47520.00	="0607-340"	="Solutions Marketing and Research Pty"	02-Jan-08 03:49 PM	

+="CN53095"	"Coordination of the International CFL Initiative"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	19-Sep-07	30-Jun-08	75000.00	="0708-048"	="Jeffcott Associates"	02-Jan-08 03:49 PM	

+="CN53096"	"Audit and Management Advisory Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	19-Sep-07	30-Oct-08	12000.00	="0708-293"	="Rod Shogren Consulting"	02-Jan-08 03:49 PM	

+="CN53097"	"Audit and Management Advisory Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	19-Sep-07	30-Oct-08	23774.00	="0708-286"	="Morison Consulting Pty Ltd"	02-Jan-08 03:49 PM	

+="CN53098"	"Recruitment staff services"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	19-Sep-07	31-Dec-07	21130.08	="0708-266"	="Staffing and Office Solutions"	02-Jan-08 03:49 PM	

+="CN53099"	"Contractor support for reporting"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	19-Sep-07	20-Jun-08	75000.00	="0708-312"	="Staffing and Office Solutions"	02-Jan-08 03:49 PM	

+="CN53100"	"Thresholding of Landsat satellite images for National Greenhouse Gas Inventory."	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	18-Sep-07	28-Sep-07	26565.00	="0708-259"	="Sinclair Knight Merz"	02-Jan-08 03:49 PM	

+="CN53101"	"Power and Data Cabling"	="Department of the Environment and Water Resources"	02-Jan-08	="Electronic hardware and component parts and accessories"	20-Sep-07	04-Oct-07	17932.01	="0708-302"	="Intravision Pty Ltd"	02-Jan-08 03:50 PM	

+="CN53102"	"QMDC Performance Story Report"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	17-Sep-07	20-Jun-08	78101.00	="0607-518"	="Hassall and Associates Pty Ltd"	02-Jan-08 03:50 PM	

+="CN53103"	"Advertising of Executive Level 2 positions for ICED and ILAD"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	17-Sep-07	30-Sep-07	20697.05	="0708-383"	="HMA Blaze Pty Ltd"	02-Jan-08 03:50 PM	

+="CN53104"	"Advertising Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Advertising"	17-Sep-07	30-Sep-07	20697.05	="0708-255"	="HMA Blaze Pty Ltd"	02-Jan-08 03:50 PM	

+="CN53105"	"OSCAR programme integration testing"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	17-Sep-07	30-Sep-07	134005.67	="0708-385"	="Strategic Data Management PTY LTD"	02-Jan-08 03:50 PM	

+="CN53106"	"National Audit Services - National Plan for Water Security"	="Department of the Environment and Water Resources"	02-Jan-08	="Water resources development and oversight"	13-Sep-07	12-Nov-07	79390.00	="0708-247"	="Rural Plan Pty Ltd"	02-Jan-08 03:50 PM	

+="CN53107"	"Environmental Research Services"	="Department of the Environment and Water Resources"	02-Jan-08	="Reproduction services"	13-Sep-07	30-May-08	134970.00	="0607-112"	="Taylor Nelson Sofres Australia Pty"	02-Jan-08 03:50 PM	

+="CN53108"	"Provision of Tepm Staff- Public Affairs"	="Department of the Environment and Water Resources"	02-Jan-08	="Public Utilities and Public Sector Related Services"	13-Sep-07	02-Oct-07	10357.60	="0708-235"	="Staffing and Office Solutions"	02-Jan-08 03:50 PM	

+="CN53109"	"Printing of Booklet for Climate Change Project"	="Department of the Environment and Water Resources"	02-Jan-08	="Reproduction services"	31-Aug-07	31-Dec-07	746179.00	="0708-185"	="PMP Print"	02-Jan-08 03:51 PM	

+="CN53110"	"Seabird monitoring study at Coringa Herald National Nature Reserve"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	15-Dec-07	33000.00	=""	="Latitude 42 Environmental"	02-Jan-08 03:51 PM	

+="CN53111"	"Research National Plan for Water Security Study"	="Department of the Environment and Water Resources"	02-Jan-08	="Water and wastewater treatment supply and disposal"	31-Aug-07	31-Oct-07	77770.00	="0708-364"	="Open Mind Research Group Pty Ltd"	02-Jan-08 03:51 PM	

+="CN53112"	"Online Emission Reporting Database Hosting and Support Services for August 07"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	12155.01	="0708-183"	="Strategic Data Management PTY LTD"	02-Jan-08 03:51 PM	

+="CN53113"	"Online Reporting, Analysis and Database Maintenance"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	30-Sep-07	26400.00	="0708-265"	="Strategic Data Management PTY LTD"	02-Jan-08 03:51 PM	

+="CN53114"	"OSCAR Batement - Vision SCope"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	12000.00	="0708-262"	="Strategic Data Management PTY LTD"	02-Jan-08 03:51 PM	

+="CN53115"	"Provision of Probity Advice for the Australian Greenhouse"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	30-May-08	50000.00	="0607-169"	="Walter and Turnbull"	02-Jan-08 03:51 PM	

+="CN53116"	"Museum Checklist of Monogenea"	="Department of the Environment and Water Resources"	02-Jan-08	="Information services"	21-Sep-07	30-May-08	16500.00	="0708-163"	="South Australian Museum"	02-Jan-08 03:52 PM	

+="CN53117"	"Community Water Grants Promotional Materials"	="Department of the Environment and Water Resources"	02-Jan-08	="Marketing and distribution"	29-Aug-07	10-Sep-07	10230.00	="0708-189"	="Corporate Express"	02-Jan-08 03:52 PM	

+="CN53118-A1"	"Wildlife Data Entry"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	21-Sep-07	30-Jun-08	70863.47	="0708-289"	="ALLSTAFF Australia"	02-Jan-08 03:52 PM	

+="CN53119"	"Contract for data entry - wildlife trade database"	="Department of the Environment and Water Resources"	02-Jan-08	="Computer services"	21-Sep-07	02-Jun-08	60500.00	="0708-290"	="ALLSTAFF Australia"	02-Jan-08 03:52 PM	

+="CN53120"	"PROVISON OF SERVICES RELATING TO THE SAP CAPITAL INFRASTUCTURE PLAN - PROCEDURAL DOCUMENTATION"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	07-Sep-07	12100.00	="0708-169"	="Phase III Solutions Pty Ltd"	02-Jan-08 03:52 PM	

+="CN53121"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	05-Sep-07	30-Jun-08	60000.00	="0708-195"	="Georgia Curry"	02-Jan-08 03:52 PM	

+="CN53122"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	07-Sep-07	30-Jun-08	65000.00	="0708-198"	="Allan Sharp"	02-Jan-08 03:52 PM	

+="CN53123"	"Postage Cost for August"	="Department of the Environment and Water Resources"	02-Jan-08	="Transportation and Storage and Mail Services"	07-Sep-07	07-Sep-07	17301.57	="0708214"	="Australia Post"	02-Jan-08 03:53 PM	

+="CN53124"	"Australian Emission Trading Scheme Design"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Sep-07	31-Oct-07	59800.00	=""	="ABATEMENT SOLUTIONS - ASIA PACIFIC"	02-Jan-08 03:53 PM	

+="CN53125"	"Support and Advicefor the Global Initiative on Forests and Climate"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Sep-07	26-Jun-08	60000.00	="0708-135"	="Gutteridge Haskins and Davey pty ltd"	02-Jan-08 03:53 PM	

+="CN53126"	"Thresholdong 2006 Upgrade"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	07-Sep-07	30-Sep-07	24145.00	="0708-223"	="Sinclair Knight Merz"	02-Jan-08 03:53 PM	

+="CN53127"	"Workshop on oceans governance"	="Department of the Environment and Water Resources"	02-Jan-08	="Management and Business Professionals and Administrative Services"	06-Sep-07	19-Dec-07	46200.00	="0708-017"	="University of Wollongong"	02-Jan-08 03:53 PM	

+="CN53128"	"Business Analysis for WELS Database"	="Department of the Environment and Water Resources"	02-Jan-08	="Management advisory services"	06-Sep-07	30-Jun-08	30000.00	="0708-075"	="Oakton AA Services Pty Limited"	02-Jan-08 03:53 PM	

+="CN53129"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	05-Sep-07	30-Jun-08	75000.00	="0708-197"	="Edit Sense"	02-Jan-08 03:53 PM	

+="CN53130"	"Natural Resource Management Mosaic Map Writer"	="Department of the Environment and Water Resources"	02-Jan-08	="Writing and translations"	05-Sep-07	30-Jun-08	72000.00	="0708-196"	="Pryor Knowledge (ACT) Pty Ltd"	02-Jan-08 03:54 PM	

+="CN53131"	"Environment Assurance Audit"	="Department of the Environment and Water Resources"	02-Jan-08	="Business administration services"	05-Sep-07	30-Oct-07	36400.00	="0708-181"	="Net Balance Management Group"	02-Jan-08 03:54 PM	

+="CN53132"	"HD Video Conferencing endpoint"	="Civil Aviation Safety Authority"	03-Jan-08	="Video and combination video and audio presentation equipment and hardware and controllers"	02-Jan-08	01-Jan-09	18289.00	="07/154"	="Integrated Vision"	03-Jan-08 08:40 AM	

+="CN53133"	"Funding to assist with Self Administration"	="Civil Aviation Safety Authority"	03-Jan-08	="Financial accounting"	10-Dec-07	30-Jun-08	117985.00	="07/155"	="Gliding Federation of Australia (GFA)"	03-Jan-08 08:53 AM	

+="CN53134"	"Supply and install carpet - Western Regional Office"	="Civil Aviation Safety Authority"	03-Jan-08	="Carpeting"	12-Dec-07	28-Feb-08	76450.00	="07/158"	="PNM Superior Floor"	03-Jan-08 08:58 AM	

+="CN53135"	"Development and Maintenance of CASA Manuals"	="Civil Aviation Safety Authority"	03-Jan-08	="Publishing"	01-Jul-07	30-Dec-07	79200.00	="07/159"	="Wordware Pty Ltd"	03-Jan-08 09:09 AM	

+="CN53136"	"Investigations - Whistleblower"	="Civil Aviation Safety Authority"	03-Jan-08	="Private investigation services"	11-Dec-07	10-Dec-08	34956.00	="07/163"	="Signet Group International Pty Ltd"	03-Jan-08 09:18 AM	

+="CN53137"	"Installation of AAPT ISDN PRA Services"	="Civil Aviation Safety Authority"	03-Jan-08	="Network cable"	19-Dec-07	31-Jan-08	12430.00	="07/165"	="AAPT Telecommunications"	03-Jan-08 09:25 AM	

+="CN53138"	"6 months property lease"	="Civil Aviation Safety Authority"	03-Jan-08	="Lease and rental of property or building"	02-Jan-08	30-Jun-08	13000.00	="07/167"	="En Vogue Property Management"	03-Jan-08 09:28 AM	

+="CN53139"	"CPU basis licence upgrade"	="Civil Aviation Safety Authority"	03-Jan-08	="Financial accounting"	20-Dec-07	20-Dec-08	171656.00	="07/168"	="Business Objects Australia Pty Ltd"	03-Jan-08 09:37 AM	

+="CN53140"	"Freight Election Material"	="Australian Electoral Commission"	03-Jan-08	="Freight loading or unloading"	12-Dec-07	12-Jan-08	11495.00	=""	="Grangers Freight Lines"	03-Jan-08 09:42 AM	

+="CN53141"	"Delivery and Storage of Cardboard"	="Australian Electoral Commission"	03-Jan-08	="Freight loading or unloading"	12-Dec-07	12-Jan-08	17083.00	=""	="Jumbo Group Pty Ltd"	03-Jan-08 09:53 AM	

+="CN53142"	"TEST EQPT, COPPER CORROSION AND TRAINING - QTY 1"	="Defence Materiel Organisation"	03-Jan-08	="Completion test equipment"	14-Dec-06	06-Mar-07	20036.50	=""	="A I SCIENTIFIC PTY LTD"	03-Jan-08 09:55 AM	

+="CN53143"	"Federal Election Premises Hire"	="Australian Electoral Commission"	03-Jan-08	="Lease and rental of property or building"	12-Nov-07	24-Nov-07	14640.00	=""	="Brisbane City Council"	03-Jan-08 10:00 AM	

+="CN53145"	"Monthly access charges of AAPT ISDN PRA Services"	="Civil Aviation Safety Authority"	03-Jan-08	="Network cable"	02-Jan-08	02-Jan-10	308888.00	="07/169"	="AAPT Telecommunications"	03-Jan-08 10:26 AM	

+="CN53146"	"Recruitment services - Operations Offices  International"	="Civil Aviation Safety Authority"	03-Jan-08	="Personnel recruitment"	02-Jan-08	31-Mar-08	25000.00	="07/170"	="Tanner Menzies Pty Ltd"	03-Jan-08 10:30 AM	

+="CN53147"	"Temporary Staff - Admin Assistant"	="Civil Aviation Safety Authority"	03-Jan-08	="Recruitment services"	08-Jan-08	31-Dec-08	16000.00	="07/171"	="Vedior Asia Pacific (Select Australasia)"	03-Jan-08 10:35 AM	

+="CN53148"	"Delivery and Storage of Election Material"	="Australian Electoral Commission"	03-Jan-08	="Freight loading or unloading"	26-Nov-07	26-Dec-07	11522.02	=""	="Chess J Wilson Removals"	03-Jan-08 10:47 AM	

+="CN53149-A2"	"Temporary Personnel"	="Australian Electoral Commission"	03-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	103870.80	="AEC06/019"	="Peoplebank Recruitment Ltd"	03-Jan-08 11:35 AM	

+="CN53150"	"Supply of workstations"	="Australian Taxation Office"	03-Jan-08	="Workstations and office packages"	17-Dec-07	17-Mar-08	333647.00	=""	="Schiavello (Vic) Pty Ltd"	03-Jan-08 11:47 AM	

+="CN53151"	"Provision for PPPap Access Online Hydalem letterhead stationary"	="Comsuper"	03-Jan-08	="Printing accessories"	05-Dec-07	04-Jan-08	10115.00	=""	="HPA"	03-Jan-08 12:21 PM	

+="CN53152"	"Advertising Supplements"	="Australian Electoral Commission"	03-Jan-08	="Print advertising"	19-Oct-07	23-Nov-07	14711.93	=""	="HMA Blaze"	03-Jan-08 12:51 PM	

+="CN53153"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	29-Nov-07	19-Dec-07	13860.00	=""	="HAYS METIER PERSONNEL"	03-Jan-08 01:48 PM	

+="CN53154"	"Software & Maintenance"	="Child Support Agency"	03-Jan-08	="Software"	29-Nov-07	31-Dec-07	86652.00	=""	="INFORMATION ENGINEERING TECHNOLOGY"	03-Jan-08 01:48 PM	

+="CN53155"	"Short Term Vehicle Hire"	="Child Support Agency"	03-Jan-08	="Travel facilitation"	28-Nov-07	30-Jun-08	27500.00	=""	="AVIS AUSTRALIA"	03-Jan-08 01:48 PM	

+="CN53156"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	28-Nov-07	30-Nov-07	34870.00	=""	="IPA PERSONNEL"	03-Jan-08 01:48 PM	

+="CN53157"	"Rehabilitation Services"	="Child Support Agency"	03-Jan-08	="Environmental Services"	28-Nov-07	30-Jun-08	22000.00	=""	="CRS AUSTRALIA"	03-Jan-08 01:48 PM	

+="CN53158"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	125840.00	=""	="PAXUS AUSTRALIA PTY LTD"	03-Jan-08 01:48 PM	

+="CN53159"	"Non-Campaign Media Placement -07/08 Financial Year"	="Child Support Agency"	03-Jan-08	="Advertising"	04-Dec-07	30-Jun-08	500000.00	=""	="HMA BLAZE PTY LIMITED"	03-Jan-08 01:48 PM	

+="CN53160"	"Printing Services"	="Child Support Agency"	03-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	30-Dec-07	15763.65	=""	="ROTHFIELD PRINT MANAGEMENT"	03-Jan-08 01:49 PM	

+="CN53161"	"Legal Advice"	="Child Support Agency"	03-Jan-08	="Legal services"	03-Dec-07	25-Nov-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Jan-08 01:49 PM	

+="CN53162"	"Contractor Services"	="Child Support Agency"	03-Jan-08	="Information services"	03-Dec-07	20-Dec-07	14200.00	=""	="AUSTRALIAN ELECTORAL COMMISSION"	03-Jan-08 01:49 PM	

+="CN53163"	"Leased Office Equipment"	="Child Support Agency"	03-Jan-08	="Office machines and their supplies and accessories"	23-Nov-07	03-Dec-10	51968.40	=""	="FUJI XEROX AUSTRALIA PTY LTD"	03-Jan-08 01:49 PM	

+="CN53164"	"Service Management Audit"	="Child Support Agency"	03-Jan-08	="Information services"	19-Nov-07	30-Jun-08	49500.00	=""	="OAKTON AA SERVICES PTY LTD"	03-Jan-08 01:49 PM	

+="CN53165"	"Infrastructure Report"	="Child Support Agency"	03-Jan-08	="Information services"	19-Nov-07	30-Jun-08	16500.00	=""	="OAKTON AA SERVICES PTY LTD"	03-Jan-08 01:49 PM	

+="CN53166"	"Professional & Negotiation Services"	="Child Support Agency"	03-Jan-08	="Management advisory services"	15-Nov-07	30-Apr-08	275000.00	=""	="PRICEWATERHOUSE COOPERS"	03-Jan-08 01:49 PM	

+="CN53167"	"Software & Maintenance"	="Child Support Agency"	03-Jan-08	="Software"	14-Nov-07	30-Nov-07	15622.97	=""	="DIGITAL NETWORKS AUSTRALIA PTY LTD"	03-Jan-08 01:50 PM	

+="CN53168"	"Fitout Services"	="Child Support Agency"	03-Jan-08	="Building and Construction Machinery and Accessories"	14-Nov-07	30-Jun-09	110000.00	=""	="JAMES MILLAR ARCHITECTS"	03-Jan-08 01:50 PM	

+="CN53169"	"Market Research"	="Child Support Agency"	03-Jan-08	="Business administration services"	23-Nov-07	29-Feb-08	70598.00	=""	="THE ROTHCORP GROUP"	03-Jan-08 01:50 PM	

+="CN53170"	"Temporary Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	21-Nov-07	14-Dec-07	16000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	03-Jan-08 01:50 PM	

+="CN53171"	"External Training"	="Child Support Agency"	03-Jan-08	="Business administration services"	20-Nov-07	30-Nov-07	231970.75	=""	="CLIFTONS"	03-Jan-08 01:50 PM	

+="CN53172"	"Design of Reporting Tool"	="Child Support Agency"	03-Jan-08	="Business administration services"	19-Nov-07	30-Nov-07	46200.00	=""	="XGLOBAL"	03-Jan-08 01:50 PM	

+="CN53173"	"SAP Controls System Audit"	="Child Support Agency"	03-Jan-08	="Information services"	19-Nov-07	31-Dec-07	28100.00	=""	="OAKTON AA SERVICES PTY LTD"	03-Jan-08 01:50 PM	

+="CN53174"	"Actuarial Services"	="Child Support Agency"	03-Jan-08	="Accounting and auditing"	06-Dec-07	31-Mar-08	12000.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	03-Jan-08 01:50 PM	

+="CN53175"	"Copier/Printer Services"	="Child Support Agency"	03-Jan-08	="Office machines and their supplies and accessories"	18-Dec-07	20-Mar-08	26040.16	=""	="KONICA"	03-Jan-08 01:51 PM	

+="CN53176-A2"	"Fitout Works"	="Child Support Agency"	03-Jan-08	="Building and Construction Machinery and Accessories"	18-Dec-07	01-Mar-08	3892442.40	=""	="JAMES MILLAR ARCHITECTS"	03-Jan-08 01:51 PM	

+="CN53177"	"Security Works"	="Child Support Agency"	03-Jan-08	="Security surveillance and detection"	14-Dec-07	29-Feb-08	17747.40	=""	="IAIN POWELL"	03-Jan-08 01:51 PM	

+="CN53178"	"Development of Measuring Tool"	="Child Support Agency"	03-Jan-08	="Computer services"	13-Dec-07	29-Feb-08	109879.00	=""	="HINDS WORKFORCE RESEARCH PTY LTD"	03-Jan-08 01:51 PM	

+="CN53179"	"Workstation Assessments"	="Child Support Agency"	03-Jan-08	="Environmental Services"	13-Dec-07	30-Jun-08	22000.00	=""	="INJURY PREVENTION & MANAGEMENT"	03-Jan-08 01:51 PM	

+="CN53180"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	21-Dec-07	07-Aug-08	120120.00	=""	="TARAKAN CONSULTING PTY LTD"	03-Jan-08 01:51 PM	

+="CN53181"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	21-Dec-07	07-Apr-08	85800.00	=""	="TARAKAN CONSULTING PTY LTD"	03-Jan-08 01:51 PM	

+="CN53182"	"Radio for Communications Campaign"	="Child Support Agency"	03-Jan-08	="Advertising"	20-Dec-07	21-Dec-07	29948.80	=""	="EARDRUM PTY LTD"	03-Jan-08 01:51 PM	

+="CN53183"	"Access to Dept of Immigration and Citizenship On-Line"	="Child Support Agency"	03-Jan-08	="Educational facilities"	20-Dec-07	21-Dec-07	40000.00	=""	="DEPARTMENT OF IMMIGRATION AND"	03-Jan-08 01:52 PM	

+="CN53184"	"Telephony Services"	="Child Support Agency"	03-Jan-08	="Utilities"	20-Dec-07	21-Dec-07	76831.70	=""	="NEC AUSTRALIA PTY LTD"	03-Jan-08 01:52 PM	

+="CN53185"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	13-Dec-07	08-Jan-08	11859.50	=""	="PROFESSIONAL CAREERS AUSTRALIA"	03-Jan-08 01:52 PM	

+="CN53186"	"Business Continuity Planning"	="Child Support Agency"	03-Jan-08	="Business administration services"	10-Dec-07	30-Jun-08	196999.99	=""	="KPMG"	03-Jan-08 01:52 PM	

+="CN53187"	"Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	10-Dec-07	24-Dec-07	34200.00	=""	="CHARTER MASON ATF ANTZ SERVICES TRU"	03-Jan-08 01:52 PM	

+="CN53188"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	07-Dec-07	24-Dec-07	21186.00	=""	="CHANGEDRIVERS PTY LTD"	03-Jan-08 01:52 PM	

+="CN53189"	"Cleaning Services"	="Child Support Agency"	03-Jan-08	="Cleaning Equipment and Supplies"	06-Dec-07	30-Jun-08	27527.50	=""	="BUILDING & INDUSTRIAL CLEANING"	03-Jan-08 01:52 PM	

+="CN53190"	"Rehabilitation Services"	="Child Support Agency"	03-Jan-08	="Environmental Services"	06-Dec-07	30-Jun-08	11000.00	=""	="WORK FOCUS AUSTRALIA PTY LTD"	03-Jan-08 01:52 PM	

+="CN53191"	"Government Searches"	="Child Support Agency"	03-Jan-08	="Information services"	13-Dec-07	30-Jun-08	27000.00	=""	="CITEC"	03-Jan-08 01:53 PM	

+="CN53192"	"External Training"	="Child Support Agency"	03-Jan-08	="Educational facilities"	12-Dec-07	20-Dec-07	41230.00	=""	="JASPER HOTEL"	03-Jan-08 01:53 PM	

+="CN53193"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	12-Dec-07	31-Dec-07	26563.27	=""	="PAXUS AUSTRALIA PTY LTD"	03-Jan-08 01:53 PM	

+="CN53194"	"Translating and Interpreting Services"	="Child Support Agency"	03-Jan-08	="Writing and translations"	12-Dec-07	30-Jun-08	45348.28	=""	="DEPARTMENT OF IMMIGRATION AND"	03-Jan-08 01:53 PM	

+="CN53195"	"Provision of Call Recording Maintenance"	="Child Support Agency"	03-Jan-08	="Business administration services"	11-Dec-07	30-Jun-09	411336.20	=""	="NEC AUSTRALIA PTY LTD"	03-Jan-08 01:53 PM	

+="CN53196"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	21-Apr-08	25740.00	=""	="PAXUS AUSTRALIA PTY LTD"	03-Jan-08 01:53 PM	

+="CN53197"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	30-Jun-08	40238.00	=""	="PEOPLEBANK"	03-Jan-08 01:53 PM	

+="CN53198"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	30-Jun-08	97240.00	=""	="CLICKS IT RECRUITMENT"	03-Jan-08 01:53 PM	

+="CN53199"	"Legal Advice"	="Child Support Agency"	03-Jan-08	="Legal services"	23-Nov-07	20-Apr-08	20000.00	=""	="BLAKE DAWSON"	03-Jan-08 01:54 PM	

+="CN53200"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	30-Jun-08	50600.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	03-Jan-08 01:54 PM	

+="CN53201"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	12-Nov-07	28-Feb-08	10054.88	=""	="PEOPLEBANK"	03-Jan-08 01:54 PM	

+="CN53202"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	07-Dec-07	30-Jun-08	102960.00	=""	="THE FRAME GROUP"	03-Jan-08 01:54 PM	

+="CN53203"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	27-Nov-07	10-Dec-07	77191.26	=""	="IPA PERSONNEL"	03-Jan-08 01:54 PM	

+="CN53204"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	26-Jun-07	31-Mar-08	18256.51	=""	="TERRA FIRMA PTY LTD"	03-Jan-08 01:54 PM	

+="CN53205"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	01-Jan-08	68640.00	=""	="E-CONNECT SOLUTIONS PTY LTD"	03-Jan-08 01:54 PM	

+="CN53206"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	58558.50	=""	="EDS (AUSTRALIA) PTY LTD"	03-Jan-08 01:54 PM	

+="CN53207"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	10-Jul-07	30-Jun-08	32818.50	=""	="CANDLE AUSTRALIA LTD"	03-Jan-08 01:54 PM	

+="CN53208"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	30-Jun-08	37540.80	=""	="PAXUS AUSTRALIA PTY LTD"	03-Jan-08 01:55 PM	

+="CN53209"	"UPS & Airconditioning Maintenance"	="Child Support Agency"	03-Jan-08	="Building and Construction Machinery and Accessories"	13-Dec-07	30-Jun-08	22940.51	=""	="EMERSON NETWORK POWER"	03-Jan-08 01:55 PM	

+="CN53210"	"*INCOMING PAYMENT"	="Child Support Agency"	03-Jan-08	="Business administration services"	02-Oct-07	03-Jan-08	54204.81	=""	="CLIFTON SUITES ON NORTHBOURNE"	03-Jan-08 01:55 PM	

+="CN53211"	"FBT INSTALLMENT"	="Child Support Agency"	03-Jan-08	="Public administration and finance services"	04-Dec-07	31-Dec-07	157758.00	=""	="HUMAN SERVICES, DEPT OF"	03-Jan-08 01:55 PM	

+="CN53212"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	27-Sep-07	30-Nov-07	138824.71	=""	="PEOPLEBANK"	03-Jan-08 01:55 PM	

+="CN53213"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	07-Dec-07	22-May-08	101816.00	=""	="ENCORE IT SERVICES PTY LTD"	03-Jan-08 01:55 PM	

+="CN53214"	"External Training"	="Child Support Agency"	03-Jan-08	="Educational facilities"	07-Nov-07	30-Nov-07	11759.00	=""	="SAP AUSTRALIA PTY LTD"	03-Jan-08 01:55 PM	

+="CN53215"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	25-Mar-08	68376.00	=""	="MOSAIC RECRUITMENT (FORMERLY"	03-Jan-08 01:55 PM	

+="CN53216"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	17-Aug-07	31-Dec-07	12398.10	=""	="COMPAS PTY LTD"	03-Jan-08 01:56 PM	

+="CN53217"	"External Workshop"	="Child Support Agency"	03-Jan-08	="Educational facilities"	16-Nov-07	23-Nov-07	30500.00	=""	="HILTON HOTEL (SYDNEY)"	03-Jan-08 01:56 PM	

+="CN53218"	"Financial Information Searches"	="Child Support Agency"	03-Jan-08	="Business administration services"	07-Nov-07	30-Nov-07	17600.00	=""	="CITEC"	03-Jan-08 01:56 PM	

+="CN53219"	"Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	01-Nov-07	31-Dec-07	14619.90	=""	="PROFESSIONAL CAREERS AUSTRALIA"	03-Jan-08 01:56 PM	

+="CN53220"	"Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	21-Dec-07	30-Jan-08	18000.00	=""	="REGENT RECRUITMENT"	03-Jan-08 01:56 PM	

+="CN53221"	"FITOUT SERVICES"	="Child Support Agency"	03-Jan-08	="Building and Construction Machinery and Accessories"	14-Nov-07	01-Mar-08	60000.00	=""	="JAMES MILLAR ARCHITECTS"	03-Jan-08 01:56 PM	

+="CN53222"	"Recruitment Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	26-Sep-07	28-Nov-07	11924.00	=""	="AUSTRALIAN PUBLIC SERVICE"	03-Jan-08 01:56 PM	

+="CN53223"	"Software Licence"	="Child Support Agency"	03-Jan-08	="Software"	09-Nov-07	30-Nov-07	18345.71	=""	="DIMENSION DATA AUSTRALIA P/L"	03-Jan-08 01:57 PM	

+="CN53224"	"Security Services"	="Child Support Agency"	03-Jan-08	="Security surveillance and detection"	08-Nov-07	30-Jun-08	53422.43	=""	="MIRVAC REAL ESTATE PTY LTD"	03-Jan-08 01:57 PM	

+="CN53225"	"Audit Services"	="Child Support Agency"	03-Jan-08	="Business administration services"	08-Nov-07	30-Mar-08	17600.00	=""	="AXIOM ASSOCIATES PTY LTD"	03-Jan-08 01:57 PM	

+="CN53226"	"Legal Advice"	="Child Support Agency"	03-Jan-08	="Legal services"	08-Nov-07	30-Jun-08	11000.00	=""	="SPARKE HELMORE SOLICITORS"	03-Jan-08 01:57 PM	

+="CN53227"	"Financial Information Searches"	="Child Support Agency"	03-Jan-08	="Business administration services"	07-Nov-07	30-Nov-07	24200.00	=""	="VEDA ADVANTAGE"	03-Jan-08 01:57 PM	

+="CN53228"	"Wireless Broadband Usage"	="Child Support Agency"	03-Jan-08	="Computer services"	25-Sep-07	31-Dec-07	10450.00	=""	="TELSTRA BUSINESS SERVICES"	03-Jan-08 01:57 PM	

+="CN53229"	"Car Rental 07/08"	="Child Support Agency"	03-Jan-08	="Travel facilitation"	10-Dec-07	30-Jun-08	402998.99	=""	="THRIFTY CAR RENTAL"	03-Jan-08 01:57 PM	

+="CN53230"	"Temporary Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	31-Jul-07	23-Jan-08	42240.00	=""	="ICON RECRUITMENT"	03-Jan-08 01:57 PM	

+="CN53231"	"Taxi Fares"	="Child Support Agency"	03-Jan-08	="Travel facilitation"	31-Jul-07	30-Jun-08	21153.13	=""	="CABCHARGE AUSTRALIA PTY LTD"	03-Jan-08 01:58 PM	

+="CN53232"	"Temporary Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	14-Nov-07	21-Dec-07	26100.00	=""	="PEOPLEBANK"	03-Jan-08 01:58 PM	

+="CN53233"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	07-Dec-07	31-Dec-07	100374.56	=""	="E-CONNECT SOLUTIONS PTY LTD"	03-Jan-08 01:58 PM	

+="CN53234"	"Fitout Services"	="Child Support Agency"	03-Jan-08	="Building and Construction Machinery and Accessories"	10-Dec-07	30-Jun-08	1830658.50	=""	="UNIPORT CONSTRUCTIONS"	03-Jan-08 01:58 PM	

+="CN53235"	"ICT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	102960.00	=""	="CANDLE AUSTRALIA LTD"	03-Jan-08 01:58 PM	

+="CN53236"	"IT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	06-Dec-07	30-Jun-08	126984.00	=""	="CANDLE AUSTRALIA LTD"	03-Jan-08 01:58 PM	

+="CN53237"	"IT Contractor Services"	="Child Support Agency"	03-Jan-08	="Human resources services"	08-Oct-07	20-Aug-08	992230.00	=""	="FUJITSU AUSTRALIA LIMITED"	03-Jan-08 01:58 PM	

+="CN53238"	"Software Licensing and Support"	="Child Support Agency"	03-Jan-08	="Software"	12-Nov-07	31-Jul-08	20111.13	=""	="DIMENSION DATA AUSTRALIA P/L"	03-Jan-08 01:58 PM	

+="CN53239"	"Computer Software Support"	="Australian Electoral Commission"	03-Jan-08	="Software maintenance and support"	12-Dec-07	12-Jan-08	25000.00	=""	="Oakton AA Services Pty Ltd"	03-Jan-08 02:14 PM	

+="CN53242"	"Various Electronic components for control of systems extant in Titan Fire Trucks"	="Defence Materiel Organisation"	03-Jan-08	="Electrical components"	19-Dec-07	31-Mar-08	54418.82	=""	="Festo Pty Ltd"	03-Jan-08 03:20 PM	

+="CN53244"	"Temporary Personnel"	="Australian Electoral Commission"	03-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	38192.00	=""	="CCS Technology Recruiters"	03-Jan-08 04:13 PM	

+="CN53245"	"Advertisement Supplement"	="Australian Electoral Commission"	03-Jan-08	="Print advertising"	01-Oct-02	30-Jun-08	85351.20	=""	="HMA Blaze"	03-Jan-08 04:25 PM	

+="CN53246"	"Delivery of Election Material"	="Australian Electoral Commission"	04-Jan-08	="Freight loading or unloading"	19-Nov-07	14-Dec-07	11532.40	=""	="Chess J Wilson Removals"	04-Jan-08 09:45 AM	

+="CN53248"	"Provision of cultural awareness training to the AFP"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	27-Nov-07	27-Nov-07	12045.00	="AFP RFT 65-2006"	="Australian Volunteers International"	04-Jan-08 10:28 AM	

+="CN53250-A2"	"Maintenance and development of open systems applications integration solutions for the AFP"	="Australian Federal Police"	04-Jan-08	="Information Technology Broadcasting and Telecommunications"	07-Jan-08	26-May-08	104700.00	=""	="Icon Recruitment Pty Ltd"	04-Jan-08 11:54 AM	

+="CN53254-A1"	"Provision of services in relation to project management"	="Australian Federal Police"	04-Jan-08	="Project management"	07-Jan-08	31-Mar-08	48289.56	=""	="Paxus Australia Pty Limited"	04-Jan-08 12:51 PM	

+="CN53255-A1"	"Provision of corporate information, research/reference and library services for the AFP"	="Australian Federal Police"	04-Jan-08	="Library or documentation services"	14-Nov-07	31-Aug-08	86240.00	=""	="Informed Sources Pty Limited"	04-Jan-08 12:55 PM	

+="CN53256"	"2x diagnostic pack Processors"	="CRS Australia"	04-Jan-08	="Computer Equipment and Accessories"	11-Nov-07	31-Dec-07	32086.33	=""	="ORACLE System (AUST) P/L"	04-Jan-08 12:58 PM	

+="CN53247-A3"	" Provision of Cleaning services - National Office "	="CRS Australia"	04-Jan-08	="General building and office cleaning and maintenance services"	10-Jan-08	09-Jan-11	102054.44	=""	="Morgans Group Pty Ltd"	04-Jan-08 01:00 PM	

+="CN53257"	"IT Hardware replacement"	="CRS Australia"	04-Jan-08	="Computer Equipment and Accessories"	03-Dec-07	18-Jan-08	23789.00	=""	="Total Risc Technology p/l"	04-Jan-08 01:08 PM	

+="CN53259"	"IT hardware replacement - CYBERTRUST WEB SERVER - ASSOCIATED WITH 'JCA POD'"	="CRS Australia"	04-Jan-08	="Computer Equipment and Accessories"	10-Dec-07	31-Jan-08	12211.64	=""	="Verizon Business Security"	04-Jan-08 01:12 PM	

+="CN53260"	" Gold Sponsorship - ARPA Conference 2008 "	="CRS Australia"	04-Jan-08	="Sponsorship of event or celebrity"	21-Jan-08	31-Jan-08	14363.64	=""	="Australian Rehabilitation Providers"	04-Jan-08 01:17 PM	

+="CN53261-A1"	"Provision for Release Manager"	="Comsuper"	04-Jan-08	="Human resources services"	05-Jan-08	30-Jun-08	105600.00	=""	="Icon recruitment"	04-Jan-08 01:49 PM	

+="CN53263-A1"	"Provision for Application Developer"	="Comsuper"	04-Jan-08	="Human resources services"	30-Dec-07	30-Jun-08	111200.00	=""	="Peoplebank Australia"	04-Jan-08 01:51 PM	

+="CN53264"	"Provision for loose furniture in the Wing 3 fitout of Cameron Office, Chandler Street, Belconnen"	="Comsuper"	04-Jan-08	="Furniture"	24-Sep-07	05-Nov-07	69113.00	=""	="UCI Canberra"	04-Jan-08 02:27 PM	

+="CN53266"	"Vehicle lease"	="Department of Human Services"	04-Jan-08	="Motor vehicles"	03-Mar-08	30-Sep-09	37125.36	=""	="LeasePlan Australia Limited"	04-Jan-08 02:32 PM	

+="CN53267"	"Delivery and Storage of Election Material"	="Australian Electoral Commission"	04-Jan-08	="Freight loading or unloading"	11-Dec-07	11-Jan-08	10310.00	=""	="Chess J Wilson Removals"	04-Jan-08 02:33 PM	

+="CN53268"	"Legal advice"	="Department of Human Services"	04-Jan-08	="Legal services"	15-Jan-08	15-Jan-08	22000.00	=""	="Blake Dawson Waldron"	04-Jan-08 02:37 PM	

+="CN53269-A1"	"Feasibility study for income management solutions"	="Department of Human Services"	04-Jan-08	="Feasibility studies or screening of project ideas"	03-Jan-08	14-Jan-08	77000.00	=""	="TransAction Resources Pty Ltd"	04-Jan-08 02:46 PM	

+="CN53270"	"Internal audit services"	="Department of Human Services"	04-Jan-08	="Internal audits"	01-Jan-08	30-Jun-08	165000.00	=""	="Ascent Accounting and IT Solutions"	04-Jan-08 02:52 PM	

+="CN53272"	"Oracle database standard edition"	="Department of Human Services"	04-Jan-08	="Software"	20-Dec-07	20-Dec-07	36354.76	=""	="ASG Group Limited"	04-Jan-08 03:00 PM	

+="CN53273"	"DLA Training and assessment"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	16-Jul-07	30-Jun-08	95000.00	=""	="WORKERS EDUCATIONAL ASSOCIATION"	04-Jan-08 03:38 PM	

+="CN53274"	"Optiplex 745USFF Desktop and 24" Monitors"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	13-Jul-07	13-Aug-07	16830.00	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:38 PM	

+="CN53275"	"Provision of independent selection advisory panel for recruitment process"	="Australian Federal Police"	04-Jan-08	="Human resources services"	13-Jul-07	24-Aug-07	17380.00	=""	="AUSTRALIAN PUBLIC SERVICE"	04-Jan-08 03:38 PM	

+="CN53276"	"Supply & installation of data cabling and computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	12-Jul-07	09-Aug-07	12734.16	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:38 PM	

+="CN53277"	"Cinema Advertising - "Our Community Too" Campaign"	="Australian Federal Police"	04-Jan-08	="Marketing and distribution"	12-Jul-07	31-Jul-07	13018.50	=""	="VAL MORGAN & CO (AUST) PTY LTD"	04-Jan-08 03:38 PM	

+="CN53278"	"SAFLOK MKIV HANDCUFFS"	="Australian Federal Police"	04-Jan-08	="Law enforcement"	12-Jul-07	30-Aug-07	27007.20	=""	="ADI Limited"	04-Jan-08 03:38 PM	

+="CN53279"	"FB21 ASP BATONS"	="Australian Federal Police"	04-Jan-08	="Light weapons and ammunition"	12-Jul-07	09-Aug-07	16445.00	=""	="ASP (AUST) PTY LTD"	04-Jan-08 03:38 PM	

+="CN53280"	"OPERATIONAL COSTS"	="Australian Federal Police"	04-Jan-08	="Human resources services"	12-Jul-07	17-Jul-07	17477.96	=""	="PATRIOT ALLIANCE PTY LTD"	04-Jan-08 03:38 PM	

+="CN53281"	"Training - project management"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	12-Jul-07	08-Aug-07	150000.00	=""	="AUSTRALIAN INSTITUTE OF COMPETENCY"	04-Jan-08 03:38 PM	

+="CN53282"	"Computers-Maintenance"	="Australian Federal Police"	04-Jan-08	="Computer services"	16-Jul-07	19-May-08	63071.80	=""	="CommVault Systems Australia Pty Ltd"	04-Jan-08 03:39 PM	

+="CN53283"	"Training"	="Australian Federal Police"	04-Jan-08	="Public administration and finance services"	19-Jul-07	19-Aug-07	23364.00	=""	="ALC TRAINING PTY LTD"	04-Jan-08 03:39 PM	

+="CN53285"	"Placement costs"	="Australian Federal Police"	04-Jan-08	="Legal services"	18-Jul-07	19-Jul-07	19100.24	=""	="GILLIAN BEAUMONT RECRUITMENT P/L"	04-Jan-08 03:39 PM	

+="CN53286"	"Anzac Park West Contract"	="Australian Federal Police"	04-Jan-08	="Legal services"	18-Jul-07	19-Jul-07	13479.55	="35-2005"	="DLA PHILLIPS FOX"	04-Jan-08 03:39 PM	

+="CN53287"	"Psychological Reports"	="Australian Federal Police"	04-Jan-08	="Work related organisations"	18-Jul-07	19-Jul-07	20625.00	=""	="WORK SOLUTIONS AUSTRALIA"	04-Jan-08 03:39 PM	

+="CN53284"	"Hire of Election Premises"	="Australian Electoral Commission"	04-Jan-08	="Lease and rental of property or building"	01-Nov-07	31-Dec-07	27500.00	=""	="Willoughby City Council"	04-Jan-08 03:39 PM	

+="CN53288"	"training for afp officers"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	18-Jul-07	08-Aug-07	17518.00	="65/2006"	="AUSTRALIAN NATIONAL UNIVERSITY"	04-Jan-08 03:39 PM	

+="CN53289"	"electronic whiteboards"	="Australian Federal Police"	04-Jan-08	="Office machines and their supplies and accessories"	18-Jul-07	08-Aug-07	11081.40	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	04-Jan-08 03:39 PM	

+="CN53291"	"Projector Lease Payments"	="Australian Federal Police"	04-Jan-08	="Audio and visual presentation and composing equipment"	17-Jul-07	17-Jul-07	19380.58	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	04-Jan-08 03:40 PM	

+="CN53292"	"Latitude D620 (Standard Laptop)"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	16-Jul-07	16-Aug-07	10279.50	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:40 PM	

+="CN53293"	"Newspaper advertisment"	="Australian Federal Police"	04-Jan-08	="Advertising"	10-Jul-07	07-Aug-07	22340.74	=""	="ADCORP AUSTRALIA LIMITED"	04-Jan-08 03:40 PM	

+="CN53294"	"Newspaper advertisment for DC"	="Australian Federal Police"	04-Jan-08	="Advertising"	10-Jul-07	07-Aug-07	22395.74	=""	="ADCORP AUSTRALIA LIMITED"	04-Jan-08 03:40 PM	

+="CN53295"	"security works at Hobart Jupiter site"	="Australian Federal Police"	04-Jan-08	="Building and Construction and Maintenance Services"	31-Jul-07	31-Jul-07	10754.70	=""	="Chubb Electronic Security"	04-Jan-08 03:40 PM	

+="CN53296"	"Job Advertising"	="Australian Federal Police"	04-Jan-08	="Advertising"	09-Jul-07	06-Aug-07	22379.24	=""	="ADCORP AUSTRALIA LIMITED"	04-Jan-08 03:40 PM	

+="CN53298"	"Financial Reporting Services"	="Australian Federal Police"	04-Jan-08	="Management advisory services"	09-Apr-07	31-Dec-07	77000.00	=""	="NORTHSTAR CONSULTING PTY LTD"	04-Jan-08 03:40 PM	

+="CN53299"	"Surveillance equipment"	="Australian Federal Police"	04-Jan-08	="Public safety and control"	09-Jul-07	26-Jul-07	48004.00	=""	="MSS Fibre Systems Pty Ltd"	04-Jan-08 03:40 PM	

+="CN53300"	"Taser X26's"	="Australian Federal Police"	04-Jan-08	="Law enforcement"	06-Jul-07	31-Dec-07	142450.00	=""	="BREON ENTERPRISES PTY LTD"	04-Jan-08 03:40 PM	

+="CN53301"	"building works at Hobart airport - Jupiter projec"	="Australian Federal Police"	04-Jan-08	="Building and Construction and Maintenance Services"	06-Jul-07	31-Jul-07	31974.80	=""	="HANSEN YUNCKEN PTY LTD"	04-Jan-08 03:40 PM	

+="CN53302"	"placement fee"	="Australian Federal Police"	04-Jan-08	="Human resources services"	10-Jul-07	26-Jul-07	11531.30	=""	="Hudson Global Resources(Aust) P/L"	04-Jan-08 03:41 PM	

+="CN53303"	"Manfrotto Consumables"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	11-Jul-07	10-Aug-07	20290.00	=""	="Photo Continental Pty Ltd"	04-Jan-08 03:41 PM	

+="CN53304"	"Accommodation Catering & Conference Facilities"	="Australian Federal Police"	04-Jan-08	="Hotels and lodging and meeting facilities"	11-Jul-07	13-Dec-07	70478.05	=""	="AUSTRALIAN INSTITUTE OF POLICE"	04-Jan-08 03:41 PM	

+="CN53305"	"Supply & installation of data cabling & computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	11-Jul-07	08-Aug-07	138510.00	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:41 PM	

+="CN53306"	"telecommunications Services"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	11-Jul-07	08-Aug-07	100000.00	=""	="TC COMMUNICATIONS PTY LTD"	04-Jan-08 03:41 PM	

+="CN53307"	"training program"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	11-Jul-07	08-Aug-07	14492.50	=""	="REXEL AUSTRALIA VIDEO"	04-Jan-08 03:41 PM	

+="CN53308"	"Lease of 6 Toshiba black & white copiers"	="Australian Federal Police"	04-Jan-08	="Printing and publishing equipment"	11-Jul-07	03-Sep-09	52592.10	=""	="TOSHIBA AUSTRALIA FINANCE"	04-Jan-08 03:41 PM	

+="CN53309"	"fibre optic cabling"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	10-Jul-07	26-Jul-07	78143.00	=""	="Ecowise Service (Aust) Pty Ltd"	04-Jan-08 03:41 PM	

+="CN53310"	"computer accessories"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	06-Aug-07	26-Sep-07	44071.50	=""	="SENETAS SECURITY PTY LTD"	04-Jan-08 03:41 PM	

+="CN53311"	"Delivery of  Interview Training"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	10-Jul-07	10-Jul-07	10725.00	=""	="INTELLIGENCE DYNAMICS"	04-Jan-08 03:41 PM	

+="CN53312-A1"	"Language Tuition"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	19-Jul-07	20-Jul-07	29985.30	="JUN-06"	="CIT SOLUTIONS PTY LTD"	04-Jan-08 03:41 PM	

+="CN53313"	"Removalist"	="Australian Federal Police"	04-Jan-08	="Transport operations"	25-Jul-07	22-Aug-07	10000.00	=""	="Grace Removals"	04-Jan-08 03:42 PM	

+="CN53314"	"Advertising - Recruitment"	="Australian Federal Police"	04-Jan-08	="Advertising"	25-Jul-07	22-Aug-07	13733.70	=""	="CANBERRA FM RADIO PTY LTD"	04-Jan-08 03:42 PM	

+="CN53315"	"International Project Management"	="Australian Federal Police"	04-Jan-08	="Management advisory services"	25-Jul-07	27-Aug-07	25162.50	=""	="TURNER & TOWNSEND PTY LTD"	04-Jan-08 03:42 PM	

+="CN53316"	"Radio Advertisement"	="Australian Federal Police"	04-Jan-08	="Writing and translations"	24-Jul-07	25-Aug-07	12379.59	=""	="CANBERRA FM RADIO PTY LTD"	04-Jan-08 03:42 PM	

+="CN53317"	"In car navigation unit"	="Australian Federal Police"	04-Jan-08	="Sports and Recreational Equipment and Supplies and Accessories"	24-Jul-07	31-Jul-07	10335.00	=""	="BING LEE BELCONNEN"	04-Jan-08 03:42 PM	

+="CN53318"	"Supply of computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	24-Jul-07	24-Aug-07	18796.80	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:42 PM	

+="CN53319"	"International Network Vacancies"	="Australian Federal Police"	04-Jan-08	="Human resources services"	23-Jul-07	20-Aug-07	26494.51	=""	="RecruitPlus ACT"	04-Jan-08 03:42 PM	

+="CN53320"	"Professional Services -Legal"	="Australian Federal Police"	04-Jan-08	="Legal services"	23-Jul-07	24-Aug-07	24859.90	="35-2005"	="CLAYTON UTZ"	04-Jan-08 03:42 PM	

+="CN53321"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	31-Jul-07	58002.78	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:42 PM	

+="CN53322"	"Daikin Air Conditioners"	="Australian Federal Police"	04-Jan-08	="Building and Construction and Maintenance Services"	25-Jul-07	29-Aug-07	20130.00	=""	="SPOTLESS P&F PTY LTD"	04-Jan-08 03:42 PM	

+="CN53323"	"Office Supplies"	="Australian Federal Police"	04-Jan-08	="Office supplies"	30-Jul-07	13-Aug-07	22766.48	=""	="REFLEX PTY LTD"	04-Jan-08 03:43 PM	

+="CN53324"	"Financial services contractor"	="Australian Federal Police"	04-Jan-08	="Accounting and auditing"	30-Jul-07	30-Sep-07	29502.00	=""	="EDEN RITCHIE RECRUITMENT P/L"	04-Jan-08 03:43 PM	

+="CN53325"	"Equipment pouches"	="Australian Federal Police"	04-Jan-08	="Sports and Recreational Equipment and Supplies and Accessories"	27-Jul-07	28-Aug-07	11880.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	04-Jan-08 03:43 PM	

+="CN53326"	"back packs"	="Australian Federal Police"	04-Jan-08	="Sports and Recreational Equipment and Supplies and Accessories"	27-Jul-07	28-Aug-07	24640.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	04-Jan-08 03:43 PM	

+="CN53327"	"Conference"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	27-Jul-07	27-Aug-07	60500.00	=""	="MICROSOFT PTY LTD"	04-Jan-08 03:43 PM	

+="CN53328"	"Microspectrophotometer accessories"	="Australian Federal Police"	04-Jan-08	="Laboratory and scientific equipment"	27-Jul-07	27-Aug-07	21686.18	=""	="XTEK LTD"	04-Jan-08 03:43 PM	

+="CN53329"	"Install and supply Security Cage"	="Australian Federal Police"	04-Jan-08	="Prefabricated structures"	27-Jul-07	31-Jul-07	53612.00	=""	="A.D.I.T. SERVICES PTY LTD"	04-Jan-08 03:43 PM	

+="CN53330"	"IT Maintenance"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	27-Jul-07	27-Aug-07	25393.97	=""	="PROMPTUS COMMUNICATIONS P/L"	04-Jan-08 03:43 PM	

+="CN53331"	"Office Machines"	="Australian Federal Police"	04-Jan-08	="Office machines and their supplies and accessories"	26-Jul-07	11-Aug-07	20427.00	=""	="GBC Western Australia Pty Ltd"	04-Jan-08 03:43 PM	

+="CN53332"	"Network Infrastructure"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	20-Aug-07	67091.20	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:43 PM	

+="CN53333"	"Extension cables & interface box"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	20-Jul-07	14-Aug-07	30294.90	=""	="Lincast Australia Pty Ltd"	04-Jan-08 03:43 PM	

+="CN53334"	"Network Infrastructure"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	19-Jul-07	20-Aug-07	19580.00	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:44 PM	

+="CN53335"	"Router, licences and maintenance"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	19-Jul-07	31-Jul-07	14325.23	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:44 PM	

+="CN53336"	"Cabling"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	19-Jul-07	31-Jul-07	12155.83	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:44 PM	

+="CN53337"	"Internet protocol phone hardware & licences"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	19-Jul-07	31-Jul-07	48883.48	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	04-Jan-08 03:44 PM	

+="CN53338"	"Computers Equipment"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	19-Jul-07	16-Aug-07	42647.00	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:44 PM	

+="CN53339"	"Software-Maintenance Renewal"	="Australian Federal Police"	04-Jan-08	="Computer services"	19-Jul-07	16-Aug-07	116528.50	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	04-Jan-08 03:44 PM	

+="CN53340"	"Internet protocol phone hardware and licences"	="Australian Federal Police"	04-Jan-08	="Software"	19-Jul-07	20-Jul-07	24201.10	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	04-Jan-08 03:44 PM	

+="CN53341"	"Network Infrastructure"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	21-Aug-07	12823.80	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:44 PM	

+="CN53342"	"Installation and supply of comuter cabling"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	16-Aug-07	25406.35	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:44 PM	

+="CN53343"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	31-Jul-07	68200.00	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:44 PM	

+="CN53344"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	31-Jul-07	51557.55	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:45 PM	

+="CN53345"	"Supply & installation of data cabling & computer"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	31-Jul-07	99687.50	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:45 PM	

+="CN53346"	"Supply & installation of data cabling & computer"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	31-Jul-07	80258.53	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:45 PM	

+="CN53347"	"Repairs to CCTV system"	="Australian Federal Police"	04-Jan-08	="National Defence and Public Order and Security and Safety Services"	20-Jul-07	30-Sep-07	16452.70	=""	="CRIMEWATCH VIDEO PTY LTD"	04-Jan-08 03:45 PM	

+="CN53348"	"Mental Health Training Course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	20-Jul-07	21-Aug-07	11033.00	=""	="O2C PTY LTD"	04-Jan-08 03:45 PM	

+="CN53349"	"Advertising - Recruitment"	="Australian Federal Police"	04-Jan-08	="Advertising"	20-Jul-07	17-Aug-07	13539.06	=""	="HMA BLAZE PTY LTD"	04-Jan-08 03:45 PM	

+="CN53350"	"Computers Equipment"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jul-07	17-Aug-07	20721.80	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:45 PM	

+="CN53351"	"Computer management switch"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	06-Jul-07	26-Jul-07	14920.40	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:45 PM	

+="CN53352"	"Miscellanious Items for Nauru Mission"	="Australian Federal Police"	04-Jan-08	="Work related organisations"	23-Oct-07	30-Jun-08	56000.00	=""	="CAPELLE & PARTNER"	04-Jan-08 03:45 PM	

+="CN53353"	"Custom wideband radio training course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	02-Jul-07	31-Jul-07	29699.99	=""	="ERICSSON AUSTRALIA"	04-Jan-08 03:45 PM	

+="CN53354"	"Accomodation and Meals for IDG Training Courses"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	21-Nov-07	30-Dec-07	956151.35	=""	="RYDGES EAGLE HAWK"	04-Jan-08 03:46 PM	

+="CN53355"	"Contractors"	="Australian Federal Police"	04-Jan-08	="Human resources services"	25-Oct-07	31-Jan-08	66860.13	=""	="SELECT APPOINTMENTS"	04-Jan-08 03:46 PM	

+="CN53356"	"Supply and installation data cabling"	="Australian Federal Police"	04-Jan-08	="Computer services"	17-Jul-07	31-Jul-07	34084.93	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:46 PM	

+="CN53357"	"Scribe Services for Recruitment Support"	="Australian Federal Police"	04-Jan-08	="Human resources services"	20-Feb-07	20-Mar-07	300000.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	04-Jan-08 03:46 PM	

+="CN53358"	"Recruitment Training"	="Australian Federal Police"	04-Jan-08	="Public Utilities and Public Sector Related Services"	16-Feb-07	16-Feb-07	14406.19	=""	="CORPORATE LEARNING SYSTEMS"	04-Jan-08 03:46 PM	

+="CN53359"	"internet protocol phone"	="Australian Federal Police"	04-Jan-08	="Components for information technology or broadcasting or telecommunications"	02-Jul-07	31-Jul-07	10533.60	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	04-Jan-08 03:46 PM	

+="CN53360"	"IDG Pre Deployment Training Course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	02-Feb-07	19-Feb-07	44667.02	=""	="Stolmack Group Pty Ltd"	04-Jan-08 03:46 PM	

+="CN53361"	"Recruitment Services"	="Australian Federal Police"	04-Jan-08	="Human resources services"	03-Oct-07	23-Oct-07	12309.02	=""	="THE GREEN & GREEN GROUP PTY LTD"	04-Jan-08 03:46 PM	

+="CN53362"	"Cert IV training and assessment"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	02-Jul-07	26-Jul-07	22260.00	=""	="McMillan Staff Development"	04-Jan-08 03:46 PM	

+="CN53363"	"domehawk rapid deployment camera"	="Australian Federal Police"	04-Jan-08	="Photographic and recording media"	02-Jul-07	26-Jul-07	45750.10	=""	="COMVISION PTY LTD"	04-Jan-08 03:46 PM	

+="CN53364"	"A Class Floorless Armourys"	="Australian Federal Police"	04-Jan-08	="Light weapons and ammunition"	10-Dec-07	10-Dec-07	372900.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	04-Jan-08 03:46 PM	

+="CN53365"	"media monitoring"	="Australian Federal Police"	04-Jan-08	="Published Products"	15-Aug-07	30-Aug-07	35340.95	=""	="MEDIA MONITORS AUSTRALIA PTY LTD"	04-Jan-08 03:47 PM	

+="CN53366"	"Conference"	="Australian Federal Police"	04-Jan-08	="Management advisory services"	06-Dec-07	08-Jan-08	18716.54	=""	="DPM CONFERENCING PTY LTD"	04-Jan-08 03:47 PM	

+="CN53367"	"supply & install office furniture"	="Australian Federal Police"	04-Jan-08	="Office and desk accessories"	13-Jul-07	13-Jul-07	16325.23	=""	="IKEN COMMERCIAL INTERIORS"	04-Jan-08 03:47 PM	

+="CN53368-A1"	"Supply 2 8.5m rigid hull inflatable boats"	="Australian Federal Police"	04-Jan-08	="Passenger transport"	04-May-07	04-Dec-07	22000.00	="RFT 78-2006"	="BRITTON MARINE AUST PTY LTD"	04-Jan-08 03:47 PM	

+="CN53369"	"Wharfage for vessels R&M & cleaning hulls"	="Australian Federal Police"	04-Jan-08	="Marine transport"	18-Jul-07	08-Aug-07	12108.00	=""	="GEORGES BAY MARINE PTY LTD"	04-Jan-08 03:47 PM	

+="CN53370"	"Progress fee for Exhibit & Property Stocktate"	="Australian Federal Police"	04-Jan-08	="Engineering and Research and Technology Based Services"	11-Jul-07	26-Nov-07	16953.00	=""	="ACUMEN ALLIANCE (ACT) PTY LTD"	04-Jan-08 03:47 PM	

+="CN53371"	"TELSTRA CALL SEARCHES MAY 2007"	="Australian Federal Police"	04-Jan-08	="Components for information technology or broadcasting or telecommunications"	31-May-07	16-Jul-07	11807.07	=""	="TELSTRA CORPORATION LTD"	04-Jan-08 03:47 PM	

+="CN53372"	"Scientific Research Database"	="Australian Federal Police"	04-Jan-08	="Engineering and Research and Technology Based Services"	26-Apr-07	12-Jul-07	21237.79	=""	="CHEMCIAL ABSTRACTS SERVICE"	04-Jan-08 03:47 PM	

+="CN53373"	"Dell Powervault (Thailand)"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	20-Jun-07	30-Jun-07	31905.31	=""	="DELL CORPORATION (THAILAND) CO LTD"	04-Jan-08 03:47 PM	

+="CN53374"	"INTERNATIONAL COMMUNICATIONS SERVICES"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	07-Jun-07	12-Jul-07	47038.00	=""	="DOMO"	04-Jan-08 03:48 PM	

+="CN53375"	"INTERNATIONAL COMMUNICATIONS SERVICES"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	07-Jun-07	12-Jul-07	52253.95	=""	="DOMO"	04-Jan-08 03:48 PM	

+="CN53376"	"SUPPLY KIWISAT 101 NCMT UNITS"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	30-May-07	05-Jul-07	27727.94	=""	="SIRTRACK LIMITED"	04-Jan-08 03:48 PM	

+="CN53377"	"PERSONAL RADIATION DETECTOR"	="Australian Federal Police"	04-Jan-08	="Personal safety and protection"	30-May-07	04-Jul-07	17058.80	=""	="POTOMAC RIVER GROUP LLC"	04-Jan-08 03:48 PM	

+="CN53378"	"TRAINING, LIVE AGENT"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	12-Jun-07	04-Jul-07	13053.00	=""	="ALLEN-VANGUARD LTD"	04-Jan-08 03:48 PM	

+="CN53379"	"Disaster Victim Identification  April 07"	="Australian Federal Police"	04-Jan-08	="Humanitarian aid and relief"	14-Jun-07	02-Jul-07	21988.80	=""	="PLASSDATA"	04-Jan-08 03:48 PM	

+="CN53380"	"Medical supplies"	="Australian Federal Police"	04-Jan-08	="Medical Equipment and Accessories and Supplies"	15-Jun-07	18-Jul-07	11535.50	=""	="GEARSHOP NZ"	04-Jan-08 03:48 PM	

+="CN53381-A6"	" Architect services  for the redevelopment of the  Australian Institute of Police Management (AIPM), Manly "	="Australian Federal Police"	04-Jan-08	="Building support services"	15-May-06	15-Aug-12	3217390.46	="61-2006"	="Trustee for Brewster Hjorth Unit Trust (Trading as: Brewster Hjorth Architects)"	04-Jan-08 03:48 PM	

+="CN53382"	"Criminal History checking services"	="Australian Federal Police"	04-Jan-08	="Management advisory services"	14-Aug-07	30-Jun-08	2425865.43	=""	="CRIMTRAC"	04-Jan-08 03:48 PM	

+="CN53383"	"Courier costs 2006-07"	="Australian Federal Police"	04-Jan-08	="Mail and cargo transport"	30-Jun-07	30-Jun-07	107050.07	=""	="TNT EXPRESS"	04-Jan-08 03:48 PM	

+="CN53384"	"JOKEF09535 - Sched 14 Apr-Jun2006 3 months paymts @$13,616.52 (GST inc)."	="Australian Federal Police"	04-Jan-08	="Components for information technology or broadcasting or telecommunications"	18-Oct-07	31-Mar-10	139195.20	=""	="KEY EQUIPMENT FINANCE"	04-Jan-08 03:48 PM	

+="CN53386"	"Employee Psych testing"	="Australian Federal Police"	04-Jan-08	="Healthcare Services"	28-Feb-07	23-Jul-07	10415.35	=""	="HEALTH FOR INDUSTRY"	04-Jan-08 03:49 PM	

+="CN53387"	"ALARM MONITORING"	="Australian Federal Police"	04-Jan-08	="National Defence and Public Order and Security and Safety Services"	18-May-07	19-Jul-07	11072.60	=""	="NSW FIRE BRIGADES"	04-Jan-08 03:49 PM	

+="CN53388"	"Recruitment advertising"	="Australian Federal Police"	04-Jan-08	="Advertising"	15-Jun-07	19-Jul-07	14967.92	=""	="HMA BLAZE PTY LTD"	04-Jan-08 03:49 PM	

+="CN53389"	"INSURANCE PREMIUM"	="Australian Federal Police"	04-Jan-08	="Insurance and retirement services"	04-Jul-07	18-Jul-07	18038036.00	=""	="COMCARE"	04-Jan-08 03:49 PM	

+="CN53390"	"training program"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	29-Aug-07	31-Aug-07	22291.00	=""	="RUSHWORTH CONSULTANCY PTY LTD"	04-Jan-08 03:49 PM	

+="CN53391"	"Remington MCS Kits"	="Australian Federal Police"	04-Jan-08	="Law enforcement"	04-Jul-07	31-Dec-07	124300.00	=""	="Raytrade Distributors"	04-Jan-08 03:49 PM	

+="CN53392"	"ORGANISATION PSYCHOLOGIST SERVICES FOR COURSES"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	06-Aug-07	30-Aug-07	10185.51	=""	="Aspect Organisational Psychologists"	04-Jan-08 03:49 PM	

+="CN53393"	"TRAINING DELVIERY BY ASPECT"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	04-Jul-07	06-Jul-07	21937.16	=""	="Aspect Organisational Psychologists"	04-Jan-08 03:49 PM	

+="CN53394"	"Presenters for training course in March 07"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	04-Jul-07	31-Aug-07	14002.44	=""	="CHARLES STURT UNIVERSITY"	04-Jan-08 03:49 PM	

+="CN53395"	"Cabling Services"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	04-Jul-07	04-Jul-07	17306.96	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:49 PM	

+="CN53396"	"Cabling Services"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	04-Jul-07	04-Jul-07	56105.32	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:50 PM	

+="CN53397"	"Driver Training Course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	04-Jul-07	01-Aug-07	16640.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	04-Jan-08 03:50 PM	

+="CN53398"	"FKT Subscription Renewals"	="Australian Federal Police"	04-Jan-08	="Work related organisations"	04-Jul-07	25-Jul-07	44740.85	=""	="FULCRUM MANAGEMENT PTY LTD"	04-Jan-08 03:50 PM	

+="CN53399"	"MRSS Police response kits"	="Australian Federal Police"	04-Jan-08	="Public safety and control"	04-Jul-07	26-Jul-07	47384.00	=""	="PARAMAX INTERGRATED SYSTEMS"	04-Jan-08 03:50 PM	

+="CN53400"	"Photocopier lease"	="Australian Federal Police"	04-Jan-08	="Office machines and their supplies and accessories"	04-Jul-07	31-May-09	11017.52	=""	="KONICA FINANCE"	04-Jan-08 03:50 PM	

+="CN53401"	"Camera fitted into Truck"	="Australian Federal Police"	04-Jan-08	="Photographic or filming or video equipment"	01-Aug-07	26-Aug-07	16722.20	=""	="VARLEY SPECIALISED VEHICLES PTY LTD"	04-Jan-08 03:50 PM	

+="CN53402"	"Horse Training"	="Australian Federal Police"	04-Jan-08	="Live animals"	06-Jul-07	06-Jul-07	24000.00	=""	="FOREST PARK RIDING & EQUITATION"	04-Jan-08 03:50 PM	

+="CN53403"	"fibre/copper backbones"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	06-Jul-07	26-Jul-07	206118.66	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:50 PM	

+="CN53404"	"Internet protocol phone licences"	="Australian Federal Police"	04-Jan-08	="Communications Devices and Accessories"	06-Jul-07	31-Jul-07	54892.20	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	04-Jan-08 03:51 PM	

+="CN53405"	"Training Course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	06-Jul-07	03-Aug-07	16500.00	=""	="MAWUL ROM PROJECT"	04-Jan-08 03:51 PM	

+="CN53406"	"UGS contractor for AIPM/Majura"	="Australian Federal Police"	04-Jan-08	="Management advisory services"	05-Jul-07	09-Jul-07	42282.23	=""	="UNITED GROUP SERVICES PTY LTD"	04-Jan-08 03:51 PM	

+="CN53407"	"Lightbars"	="Australian Federal Police"	04-Jan-08	="Motor vehicles"	13-Aug-07	31-Aug-07	12137.09	=""	="HAZARD SYSTEMS PTY LTD"	04-Jan-08 03:51 PM	

+="CN53408"	"Cabling ground floor HQ refurb"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	05-Jul-07	05-Aug-07	36905.55	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	04-Jan-08 03:51 PM	

+="CN53409"	"Dell laptop D620"	="Australian Federal Police"	04-Jan-08	="Computer Equipment and Accessories"	05-Jul-07	31-Jul-07	41118.00	=""	="Dell Australia Pty Ltd"	04-Jan-08 03:51 PM	

+="CN53410"	"Professional Legal Fees"	="Australian Federal Police"	04-Jan-08	="Legal services"	03-Jul-07	31-Jul-07	24859.90	="35-2005"	="CLAYTON UTZ"	04-Jan-08 03:51 PM	

+="CN53411"	"Safe handling - explosive course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	03-Jul-07	31-Jul-07	12150.00	=""	="TERROCK CONSULTING ENGINEERS"	04-Jan-08 03:51 PM	

+="CN53412"	"office equipment"	="Australian Federal Police"	04-Jan-08	="Office supplies"	14-Aug-07	31-Aug-07	11893.65	=""	="Bunnings Warehouse"	04-Jan-08 03:51 PM	

+="CN53413"	"Engraver"	="Australian Federal Police"	04-Jan-08	="Office and desk accessories"	02-Jul-07	26-Jul-07	10000.00	=""	="PROJECT ENGRAVING & DIGITAL"	04-Jan-08 03:51 PM	

+="CN53414"	"snugpak special forces complete system"	="Australian Federal Police"	04-Jan-08	="Personal safety and protection"	02-Jul-07	26-Jul-07	42900.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	04-Jan-08 03:52 PM	

+="CN53415"	"supply & install audio visual equipment"	="Australian Federal Police"	04-Jan-08	="Audio and visual presentation and composing equipment"	02-Jul-07	26-Jul-07	50782.92	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	04-Jan-08 03:52 PM	

+="CN53416"	"Firearms ultrasonic cleaning kits"	="Australian Federal Police"	04-Jan-08	="Law enforcement"	02-Jul-07	31-Dec-07	72815.60	=""	="FIRESTORM HOLDINGS PTY LTD"	04-Jan-08 03:52 PM	

+="CN53417"	"Rescue Equipment"	="Australian Federal Police"	04-Jan-08	="Personal safety and protection"	02-Jul-07	26-Jul-07	87164.00	=""	="ERIPIO -SMART RESCUE GEAR"	04-Jan-08 03:52 PM	

+="CN53418"	"make and supply of antennas"	="Australian Federal Police"	04-Jan-08	="Transportation services equipment"	02-Jul-07	26-Jul-07	37295.00	=""	="STONE P.J."	04-Jan-08 03:52 PM	

+="CN53419"	"Professional psychology fees"	="Australian Federal Police"	04-Jan-08	="Healthcare Services"	03-Jul-07	31-Jul-07	26021.11	=""	="DAVIDSON TRAHAIRE CORPSYCH P/L"	04-Jan-08 03:52 PM	

+="CN53420"	"Gen 3 owl pocket scope"	="Australian Federal Police"	04-Jan-08	="Photographic and recording media"	01-Aug-07	26-Aug-07	13491.20	=""	="York Optical Company"	04-Jan-08 03:52 PM	

+="CN53421"	"camera equipment"	="Australian Federal Police"	04-Jan-08	="Photographic or filming or video equipment"	01-Aug-07	26-Aug-07	43890.00	=""	="York Optical Company"	04-Jan-08 03:52 PM	

+="CN53422"	"rapid deployment camera"	="Australian Federal Police"	04-Jan-08	="Photographic or filming or video equipment"	04-Jul-07	26-Jul-07	45750.10	=""	="COMVISION PTY LTD"	04-Jan-08 03:52 PM	

+="CN53423"	"fibre mil spec cable"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	04-Jul-07	26-Jul-07	16203.00	=""	="AFC Group Pty Ltd"	04-Jan-08 03:52 PM	

+="CN53424"	"fibre mil spec cable"	="Australian Federal Police"	04-Jan-08	="Electrical wire and cable and harness"	04-Jul-07	26-Jul-07	39633.00	=""	="AFC Group Pty Ltd"	04-Jan-08 03:53 PM	

+="CN53425"	"Transport Services"	="Australian Federal Police"	04-Jan-08	="Transport operations"	04-Jul-07	04-Jul-07	13904.83	=""	="COMCAR"	04-Jan-08 03:53 PM	

+="CN53426"	"Engagement of Human Resource Consulting Services"	="Australian Federal Police"	04-Jan-08	="Human resources services"	10-Jul-07	10-Jul-07	15332.01	=""	="ZENERGY RECRUITMENT PTY LTD"	04-Jan-08 03:53 PM	

+="CN53427"	"Recruitment advertising costs"	="Australian Federal Police"	04-Jan-08	="Advertising"	03-Jul-07	31-Jul-07	10173.02	=""	="HMA BLAZE PTY LTD"	04-Jan-08 03:53 PM	

+="CN53428"	"Driver Training Course"	="Australian Federal Police"	04-Jan-08	="Education and Training Services"	03-Jul-07	03-Jul-07	58880.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	04-Jan-08 03:53 PM	

+="CN53430"	"Legal services"	="Australian Competition and Consumer Commission"	04-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	18295.20	=""	="Baker & McKenzie"	04-Jan-08 04:18 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val0to12000.xls
@@ -1,1 +1,343 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95619"	"Printing - Marine Report 243"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Office supplies"	15-May-08	15-Jun-08	10225.60	=""	="Pirion Logistics Pty Ltd"	01-Jul-08 10:07 AM	

+="CN95674"	"Selection Process"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	23-Jun-08	23-Jun-08	11870.84	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	01-Jul-08 11:10 AM	

+="CN95687"	"Konica Colour Photocopier - BizHub c451"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Office Equipment and Accessories and Supplies"	27-Jun-08	04-Jul-08	11475.39	="ATM08/1090"	="KONICA AUSTRALIA PTY LTD"	01-Jul-08 11:14 AM	

+="CN95695-A1"	"Licence condition or legislative amendment requiring provision of network information"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	09-Jan-08	30-Jun-09	10310.85	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:16 AM	

+="CN95707"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	11108.04	="ATM08/1075"	="Cantlie Recruitment Services"	01-Jul-08 11:18 AM	

+="CN95731"	"carpentry"	="Royal Australian Mint"	01-Jul-08	="Carpentry"	04-Jun-08	04-Jun-08	10714.00	=""	="B. A. LENTFER BUILDING CONTRACTOR"	01-Jul-08 12:52 PM	

+="CN95745"	"consulting IT bussiness system"	="Royal Australian Mint"	01-Jul-08	="Information technology consultation services"	12-Jun-08	12-Jun-08	11000.00	=""	="LANGE CONSULTING AND SOFTWARE"	01-Jul-08 01:30 PM	

+="CN95750"	"Provision of carpet laying and floor covering services"	="Department of Parliamentary Services"	01-Jul-08	="Carpeting"	19-Jun-08	30-Jun-08	10804.20	=""	="Chesta's Floors"	01-Jul-08 01:40 PM	

+="CN95754"	"Purchase of electrial test equipment"	="Department of Parliamentary Services"	01-Jul-08	="Tools and General Machinery"	11-Jun-08	27-Jun-08	10450.00	=""	="RS Components Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95815"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	11789.36	=""	="TOLL TRANSITIONS"	01-Jul-08 02:55 PM	

+="CN95829"	"Firewall Support & Maintenance"	="Australian Crime Commission"	01-Jul-08	="Computer or network or internet security"	11-Apr-07	10-Apr-09	10966.70	=""	="Cybertrust"	01-Jul-08 03:38 PM	

+="CN95836"	"Personal Development"	="Australian Crime Commission"	01-Jul-08	="Career development services"	26-May-08	26-May-08	10170.00	=""	="Red Carpet Ltd"	01-Jul-08 03:56 PM	

+="CN95355"	" IPSOS - Mackay Report Subscription. "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Data base reporting software"	24-Jun-08	24-Jun-09	11990.00	=""	="IPSOS Australia Pty Ltd"	01-Jul-08 04:07 PM	

+="CN95858-A1"	"Provide 2nd and 3rd Level Spt for Asset Management and Planning System (AMPS) programming issues"	="Defence Materiel Organisation"	02-Jul-08	="Software or hardware engineering"	13-Jun-08	31-Jul-08	10266.52	=""	="EDEN TECHNOLOGY PTY LTD"	02-Jul-08 08:35 AM	

+="CN95863"	"Office Supplies"	="Defence Materiel Organisation"	02-Jul-08	="Office Equipment and Accessories and Supplies"	13-Jun-08	30-Jun-08	10865.99	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 08:36 AM	

+="CN95892"	"LRV Oversized Signs"	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	16-Jun-08	18-Jun-08	10725.00	=""	="RPC TECHNOLOGIES PTY LTD"	02-Jul-08 08:43 AM	

+="CN95893"	"Cobra Scheduling Training Course"	="Defence Materiel Organisation"	02-Jul-08	="Education and Training Services"	16-Jun-08	30-Jun-08	11495.00	=""	="DELTEK AUSTRALIA PTY LTD"	02-Jul-08 08:43 AM	

+="CN95897"	"CROP AND REVIEW J/W PIPEWORK"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	16-Jun-08	20-Aug-08	10008.10	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 08:44 AM	

+="CN95901"	"CENTRIFUGE REFRIGERATED"	="Defence Materiel Organisation"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	13-Jun-08	17-Jun-08	11000.00	=""	="BECKMAN COULTER AUSTRALIA PTY LTD"	02-Jul-08 08:45 AM	

+="CN95911"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Jun-08	10000.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	02-Jul-08 08:47 AM	

+="CN95912"	"Repair of HSD S/No 1067"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	16-Jun-08	14-Oct-08	11051.16	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 08:47 AM	

+="CN95936"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE."	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	11-Jun-08	30-Jun-08	11990.00	=""	="HILL & CO"	02-Jul-08 08:52 AM	

+="CN95938"	"Repair to Aircraft Door"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	11-Jun-08	30-Jun-08	10505.00	=""	="HAWKER DE HAVILLAND"	02-Jul-08 08:52 AM	

+="CN95946"	"Use of Exisitng ASP Contract  - Oily Waste Removal from HMAS Sirius EMA 04"	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	11-Jun-08	11-Jun-08	10666.43	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 08:54 AM	

+="CN95958"	"BAC STORAGE MODULES AND TOOL TROLLEY'S"	="Defence Materiel Organisation"	02-Jul-08	="Containers and storage"	12-Jun-08	24-Jun-08	10747.00	=""	="BAC SYSTEMS PTY LTD"	02-Jul-08 08:56 AM	

+="CN95961"	"PATHOLOGY  CONSUMABLES FOR 2007/08. STANDING ORDER 4500619160 ORIGINALLY PLACED ON PAN"	="Defence Materiel Organisation"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	12-Jun-08	30-Jun-08	11857.45	=""	="INVERNESS MEDICAL"	02-Jul-08 08:57 AM	

+="CN96006"	"DB2 SQL Workshop"	="Defence Materiel Organisation"	02-Jul-08	="Education and Training Services"	18-Jun-08	15-Jul-08	11704.00	=""	="IBM AUSTRALIA LTD"	02-Jul-08 09:05 AM	

+="CN96037"	"This order is raised to pay for the testing  &<) Strops in accordance with the Qualit"	="Defence Materiel Organisation"	02-Jul-08	="Rope and chain and cable and wire and strap"	19-Jun-08	19-Jun-08	10274.64	=""	="AERO SAFETY EQUIPMENT PTY LTD"	02-Jul-08 09:13 AM	

+="CN96063"	"TRAVEL REIMBURSEMENT"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	17-Jun-08	10083.94	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	02-Jul-08 09:19 AM	

+="CN96064"	"HIRE OF REFRIGERATED CONTAINERS FOR HMAS KANIMBLA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	17-Jun-08	11-Jul-08	10074.68	=""	="PDL TOLL"	02-Jul-08 09:19 AM	

+="CN96082"	"Pilot flying training"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	24-Jun-08	11664.00	=""	="ADELAIDE BIPLANES"	02-Jul-08 09:23 AM	

+="CN96121"	"Repair F/A-18 Horent, F404 Engine Electrical Control Assy."	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	18-Jun-08	29-Sep-08	10513.16	=""	="BAE SYSTEMS CONTROLS INC."	02-Jul-08 09:32 AM	

+="CN96122"	"Repair F/A-18 Horent, F404 Engine Electrical Control Assy."	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	18-Jun-08	26-Aug-08	10513.16	=""	="BAE SYSTEMS CONTROLS INC."	02-Jul-08 09:32 AM	

+="CN96124"	"Repair F/A-18 Horent, F404 Engine Electrical Control Assy."	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	18-Jun-08	26-Mar-09	10513.16	=""	="BAE SYSTEMS CONTROLS INC."	02-Jul-08 09:33 AM	

+="CN96126"	"Qualification of the Basic Helmets Management Hours  - AA"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	30-Jun-08	10167.30	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:33 AM	

+="CN96143"	"Block 2 Project Management & Support ATD11B ATD9 Radar Processor Upgrade (RP-A)"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Nov-07	19-Jun-08	10474.98	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:35 AM	

+="CN96180"	"Repair of stairs"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	01-Oct-07	30-Aug-08	10147.53	=""	="ABBEY INDUSTRIES PTY LTD"	02-Jul-08 09:41 AM	

+="CN96210"	"ESM ATE Replacement support"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	06-Jun-08	30-Jun-08	11705.85	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:46 AM	

+="CN96221-A1"	"PT 4 TK 103 GST ON USD INV 71020 - Copper Chromite & Copper Chelate Studies"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	27-May-08	06-Jul-08	11469.27	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:47 AM	

+="CN96230"	"recovery of travel costs for Dunstone to attend"	="Defence Materiel Organisation"	02-Jul-08	="Travel facilitation"	11-Jun-08	30-Jun-08	10512.74	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:50 AM	

+="CN96243"	"FIBREBOARD BOXES"	="Defence Materiel Organisation"	02-Jul-08	="Containers and storage"	25-Jun-08	30-Sep-08	10091.73	=""	="E E CARTONS PTY LTD"	02-Jul-08 09:52 AM	

+="CN96269"	"maritime equipment specialist"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	13-May-09	11000.00	=""	="PROFESSIONAL SERVICES & ENGINEERING"	02-Jul-08 09:56 AM	

+="CN96277"	"HP DRYER SPARES KIT HMAS SUCCESS"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	24-Apr-08	30-Jul-08	11920.07	=""	="MANUKA ENT PTY LTD"	02-Jul-08 09:57 AM	

+="CN96297-A1"	"F111 Maintenance"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	06-Mar-08	30-Aug-08	10560.00	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 10:01 AM	

+="CN96302"	"Darwin TACAN Gantry refurbishment"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	09-May-08	26-May-08	11106.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 10:02 AM	

+="CN96314"	"Detailed Installation design Package- Reolacement of HMAS Newcastle ELLISON Doors Installation"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	10-Jun-08	29-Aug-08	10482.00	=""	="THALES AUSTRALIA"	02-Jul-08 10:03 AM	

+="CN96332"	"BOW THRUSTER HMAS TOBRUK"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	27-May-08	04-Jul-08	11245.31	=""	="HYDRAULIC DISTRIBUTORS PTY LTD"	02-Jul-08 10:06 AM	

+="CN96338"	"This order is for the Level 4(5 yearly) servicing carried out to ADF Chubb Swordsman, 2.25 Kg Halon"	="Defence Materiel Organisation"	02-Jul-08	="Fire fighting equipment"	04-Jun-08	01-Jul-08	11608.52	=""	="KIDDE AEROSPACE & DEFENCE"	02-Jul-08 10:07 AM	

+="CN96346"	"SUPPLY OF GROUNDA FUELS"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	24-Jun-08	30-Jun-08	11662.58	=""	="WHYALLA FUEL SERVICES"	02-Jul-08 10:08 AM	

+="CN96375"	"REPAIR AND MAINTENANCE OF BUTTERWORTH FLEET"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	24-Jun-08	30-Jun-08	11400.26	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 10:12 AM	

+="CN96376"	"Professional Legal Fees"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	27-Jun-08	30-Jun-08	11107.00	=""	="BLAKE DAWSON WALDRON"	02-Jul-08 10:12 AM	

+="CN96380"	"6 Months hire of Furniture for FFGSPO leased Tender Evaluation office"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	24-Jun-08	31-Jul-08	11618.20	=""	="EMERALD HILL ABSOLUTE OFFICE CENTRE"	02-Jul-08 10:13 AM	

+="CN96387"	"BLANKET ORDER RAISED FOR THE SUPPLY OF MARINE DISTILLATE FUEL TO THE DEPARTMENT"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	13-Feb-08	30-Jun-09	11825.00	=""	="D'ALBORA MARINAS"	02-Jul-08 10:13 AM	

+="CN96392"	"ACPB10-ADHOC"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	20-Feb-08	01-Dec-22	10956.23	=""	="DEFENCE MARITIME SERVICES PTY"	02-Jul-08 10:14 AM	

+="CN96405"	"REPAIR NO.1 FREEZER UNIT HMAS KANIMBLA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	26-Jun-08	11-Jul-08	10883.61	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:16 AM	

+="CN96411"	"REPAIR FLIGHT DECK NET FRAME HMAS MANOORA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	17-Jan-08	10-Feb-08	10073.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:17 AM	

+="CN96458"	"Online searches"	="Centrelink"	02-Jul-08	="Business administration services"	23-Nov-07	30-Jun-08	10000.00	=""	="Lawpoint Pty Ltd"	02-Jul-08 12:17 PM	

+="CN96460-A1"	"Recruitment Services"	="Centrelink"	02-Jul-08	="Human resources services"	25-Jun-08	29-Aug-08	10157.40	=""	="Chandler Macleod Group"	02-Jul-08 12:18 PM	

+="CN96469-A1"	"Recruitment Services"	="Centrelink"	02-Jul-08	="Human resources services"	25-Jun-08	29-Aug-08	10156.74	="RFT07/0021"	="Chandler Macleod Group"	02-Jul-08 12:19 PM	

+="CN96473"	"Conference vendue hire"	="Centrelink"	02-Jul-08	="Hotels and lodging and meeting facilities"	08-May-08	30-Jun-08	11000.00	=""	="De Vine Function Centre"	02-Jul-08 12:20 PM	

+="CN96480"	"Advertising"	="Centrelink"	02-Jul-08	="Advertising"	16-Jun-08	30-Jun-08	11000.00	=""	="HMA Blaze Pty Ltd"	02-Jul-08 12:21 PM	

+="CN96481"	"Healthcare Services"	="Centrelink"	02-Jul-08	="Healthcare Services"	11-Jun-08	30-Jun-08	10320.60	=""	="OTR Consultants"	02-Jul-08 12:22 PM	

+="CN96483"	"Schematic design and construction documentation"	="Centrelink"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	09-Jun-08	28-Jun-08	10688.88	=""	="IA Group Pty Ltd (Interiors Australia)"	02-Jul-08 12:22 PM	

+="CN96487"	" Fitout Management Services "	="Centrelink"	02-Jul-08	="Professional engineering services"	16-Jun-08	30-Jun-08	10114.20	=""	="GHD Pty Ltd"	02-Jul-08 12:23 PM	

+="CN96520"	"Toners"	="Australian Public Service Commission"	02-Jul-08	="Office machines and their supplies and accessories"	21-May-08	21-May-08	11284.90	=""	="Office Print Pty Ltd"	02-Jul-08 12:38 PM	

+="CN96521"	"Training delivery"	="Australian Public Service Commission"	02-Jul-08	="Business administration services"	27-May-08	27-May-08	10076.77	="APS COMMISSION 2005/014"	="Chris Adams & Associates"	02-Jul-08 12:38 PM	

+="CN96527"	"Preparation documentation for ACTARC RTO audit"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	06-Jun-08	06-Jun-08	11885.45	=""	="Performance First P/L"	02-Jul-08 12:39 PM	

+="CN96528"	"System License"	="Australian Public Service Commission"	02-Jul-08	="Software"	23-Jun-08	30-Jun-09	11996.96	=""	="Aurion Corporation Pty Ltd"	02-Jul-08 12:39 PM	

+="CN96532"	"Printing Indigenous Getting a Job Booklet"	="Australian Public Service Commission"	02-Jul-08	="Published Products"	23-Jun-08	30-Dec-08	11968.00	=""	="Paragon Printers"	02-Jul-08 12:39 PM	

+="CN96535"	"Toners"	="Australian Public Service Commission"	02-Jul-08	="Office machines and their supplies and accessories"	24-Jun-08	24-Jun-08	11924.00	=""	="Office Print Pty Ltd"	02-Jul-08 12:40 PM	

+="CN96540"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	03-Mar-08	08-May-08	10395.00	="APS COMMISSION 2005/014"	="Laurie Wilson & Associates Pty Ltd"	02-Jul-08 12:41 PM	

+="CN96547"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	30-May-08	30-Jun-08	11709.97	="APS COMMISSION 2005/014"	="Professional Facilitators Int'l P/L"	02-Jul-08 12:42 PM	

+="CN96554"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	22-Apr-08	22-Apr-08	11970.00	=""	="The BoatHouse on Blackwattle Bay"	02-Jul-08 12:44 PM	

+="CN96557"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	08-May-08	27-May-08	10596.60	="APS COMMISSION 2005/014"	="ICMI Speakers and Entertainers"	02-Jul-08 12:44 PM	

+="CN96560"	"Accommodation"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	13-May-08	02-Jun-08	11000.00	=""	="Quality Hotel Woden"	02-Jul-08 12:45 PM	

+="CN96588"	"Training"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	12-Feb-09	11358.30	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:29 PM	

+="CN96590"	"Safety Coordinator Course - Pearce - 01-05 Apr 09"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	05-Apr-09	11995.20	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:30 PM	

+="CN96602"	"Safety Coordinator Course - Edinburgh 12-17 Aug 08"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	17-Aug-08	10557.75	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:31 PM	

+="CN96603"	"ENGAGEMENT OF CONTRACTOR"	="Department of Defence"	02-Jul-08	="Personnel recruitment"	16-Jun-08	12-Sep-08	10643.40	=""	="HAYS SPECIALIST RECRUITMENT"	02-Jul-08 01:31 PM	

+="CN96605"	"Avid Liquid 7 Software"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	30-Jun-08	10422.50	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 01:31 PM	

+="CN96608"	"VEHICLE LEASE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	18-Jun-08	18-Jun-08	10163.87	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 01:31 PM	

+="CN96609"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Motor vehicles"	17-Jun-08	01-Aug-08	10860.64	=""	="DRAKE INTERNATIONAL"	02-Jul-08 01:31 PM	

+="CN96614"	"NEWS ARTICLES FOR DEFENCE NEWSPAPERS"	="Department of Defence"	02-Jul-08	="Printed media"	18-Jun-08	30-Jun-09	12000.00	=""	="BILL CUNNEEN"	02-Jul-08 01:32 PM	

+="CN96567"	"Direct Mail company for distribution of Public Affairs Media and Newsletter."	="National Native Title Tribunal"	02-Jul-08	="Mail sorters or organisers"	29-Oct-07	18-Jun-08	10511.59	=""	="Lasermail"	02-Jul-08 01:32 PM	

+="CN96617"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	10450.00	=""	="TLE ELECTRICAL"	02-Jul-08 01:32 PM	

+="CN96637"	"SAFETY COURSES AND TRAVEL"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	13-Mar-09	11419.90	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:34 PM	

+="CN96645"	"Relocation of Class "C" cabinet as per Quote 11981"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	10017.04	=""	="INTERACTIVE CABLING PTY LTD"	02-Jul-08 01:35 PM	

+="CN96656"	" ELECTRONIC EQUIPMENT "	="Department of Defence"	02-Jul-08	="Electrical equipment and components and supplies"	16-Jun-08	30-Jun-08	10193.01	=""	="ELECTROBOARD PTY LTD"	02-Jul-08 01:36 PM	

+="CN96658"	"4 LG Plasma TVs"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Jun-08	30-Jun-08	11308.00	=""	="ELECTROBOARD PTY LTD"	02-Jul-08 01:36 PM	

+="CN96661"	"ACCOUNT NO. 8875437 - POSTAL SERVICES FOR RAAF BASE TOWNSVILLE"	="Department of Defence"	02-Jul-08	="Mailing services"	18-Jun-08	30-Jun-09	10700.00	=""	="AUSTRALIA POST"	02-Jul-08 01:36 PM	

+="CN96681"	"TV & DVD players"	="Department of Defence"	02-Jul-08	="Consumer electronics"	16-Jun-08	17-Jun-08	10395.00	=""	="WHITEHOUSE FURNISHERS"	02-Jul-08 01:38 PM	

+="CN96687"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	10218.34	=""	="OUR LADY OF THE ASSUMPTION SCHOOL"	02-Jul-08 01:38 PM	

+="CN96704"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION MENTOR POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	10445.42	=""	="VIEWBANK PRIMARY SCHOOL"	02-Jul-08 01:40 PM	

+="CN96706"	"CUSTOMER NO.6275776 - LEASE VEHICLE 342JSV FOR PSS-NQ"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	18-Jun-08	30-Jun-09	11219.00	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 01:40 PM	

+="CN96719"	"Electrical works"	="Department of Defence"	02-Jul-08	="Electronic Components and Supplies"	17-Jun-08	27-Jun-08	10120.00	=""	="M & P BUILDERS PTY LTD"	02-Jul-08 01:42 PM	

+="CN96721"	"VY COMMODORE - TRAINING AID"	="Department of Defence"	02-Jul-08	="Motor vehicles"	17-Jun-08	30-Jun-08	11880.00	=""	="BLACKLOCKS ALBURY-WODONGA"	02-Jul-08 01:42 PM	

+="CN96726"	"RECYCLING SERVICES"	="Department of Defence"	02-Jul-08	="Environmental Services"	09-Jul-07	30-Jun-09	11000.00	=""	="WESTERN RECYCLING PTY LTD"	02-Jul-08 01:42 PM	

+="CN96737"	"HACTS ACCREDITATION TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	30-Jun-08	11000.00	=""	="MILSKIL PTY LTD"	02-Jul-08 01:43 PM	

+="CN96744"	"OPERATIONAL FREIGHT & CARTAGE 81WG CRIS"	="Department of Defence"	02-Jul-08	="Railroad support equipment and systems"	19-Jun-08	30-Jun-08	11000.00	=""	="STAR TRACK EXPRESS"	02-Jul-08 01:44 PM	

+="CN96746"	"OPERATIONAL FREIGHT & CARTAGE FOR 77SQN AVMF AT RAAF BASE WILLIAMTOWN"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	19-Jun-08	30-Jun-08	11000.00	=""	="STAR TRACK EXPRESS"	02-Jul-08 01:44 PM	

+="CN96750"	"CONSULTANCY"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	21-Apr-08	30-Jun-08	11893.09	=""	="HUTCHINSON COMMUNICATIONS"	02-Jul-08 01:44 PM	

+="CN96752"	"DEFENCE INFRASTRUCTURE INFORMATION ENVIRONMENT."	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	11000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	02-Jul-08 01:44 PM	

+="CN96765"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10884.96	=""	="CRIB POINT PRIMARY SCHOOL"	02-Jul-08 01:45 PM	

+="CN96768"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	10-Jun-08	10-Jun-08	10445.42	=""	="BANDIANA PRIMARY SCHOOL COUNCIL"	02-Jul-08 01:45 PM	

+="CN96790"	"FFS PAYMENTS"	="Department of Defence"	02-Jul-08	="Medical facility products"	24-Jun-08	30-Jun-08	10000.00	=""	="DAVID MCNICOL"	02-Jul-08 01:46 PM	

+="CN96793"	"FFS PAYMENTS"	="Department of Defence"	02-Jul-08	="Medical facility products"	24-Jun-08	30-Jun-08	10500.00	=""	="KATHERINE GORDIEV"	02-Jul-08 01:46 PM	

+="CN96805"	"MEDICAL/DENTAL SERVICES"	="Department of Defence"	02-Jul-08	="Patient care and treatment products and supplies"	27-Jun-08	30-Jun-08	11000.00	=""	="DR JANET SCOTT"	02-Jul-08 01:47 PM	

+="CN96807"	"INSTALL PIPE UP ONE CORNER OF 10 STOREY FIRING POI"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	24-Jun-08	30-Jun-08	11199.50	=""	="MULTITECH ENGINEERING"	02-Jul-08 01:48 PM	

+="CN96808"	"HEALTH SERVICE - FBEMC"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	27-Jun-08	30-Jun-08	11384.66	=""	="DR ANTHONY J DELANEY"	02-Jul-08 01:48 PM	

+="CN96810"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	04-Mar-08	30-Jun-08	11885.00	=""	="SPARKE HELMORE LAWYERS"	02-Jul-08 01:48 PM	

+="CN96816"	"SA2230 - Regional Asbestos Audit"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	10367.46	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:48 PM	

+="CN96825"	"SECURITY UPGRADE"	="Department of Defence"	02-Jul-08	="Security and control equipment"	27-May-08	06-Jun-08	10186.00	=""	="HONEYWELL LTD"	02-Jul-08 01:49 PM	

+="CN96826"	"PATHOLOGY COURIER SERVICE"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	13-Feb-08	30-Jun-08	11000.00	=""	="TOLL PRIORITY"	02-Jul-08 01:49 PM	

+="CN96828"	"HMAS Waterhen - Seal Top Compound & provide drainage"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Jun-08	11940.03	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:49 PM	

+="CN96830"	"LCD MONITORS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	10571.00	=""	="DELL COMPUTER PTY LTD"	02-Jul-08 01:49 PM	

+="CN96838"	"REQUIRED FOR 2 WEEKS DURATION FROM 14 APRIL 2008 ( APRIL 2008 (BEFORE 0900)."	="Department of Defence"	02-Jul-08	="Lighting and fixtures and accessories"	11-Apr-08	09-May-08	10633.81	=""	="AGGREKO GENERATOR RENTALS"	02-Jul-08 01:49 PM	

+="CN96844"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	18-Jun-08	10000.00	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 01:50 PM	

+="CN96847"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	18-Jun-08	10000.00	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 01:50 PM	

+="CN96880"	"Surge Manning for 1 BDE, Robertson Barracks"	="Department of Defence"	02-Jul-08	="Motor vehicles"	24-Jun-08	30-Jun-08	10210.20	=""	="MANPOWER SERVICES (AUST) PTY LTD"	02-Jul-08 01:52 PM	

+="CN96885"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Dec-08	11000.00	=""	="LACEY PERSONNEL CONSULTING"	02-Jul-08 01:52 PM	

+="CN96895"	"BULK GROCERY SUPPLIES FOR HMAS CAIRNS BASED VESSEL FOR THIS FINANCIAL YEAR (07/08)"	="Department of Defence"	02-Jul-08	="Food and beverage industries"	13-May-08	30-Jun-08	11981.28	=""	="BID VEST"	02-Jul-08 01:52 PM	

+="CN96907"	"Asbestos Remeditaion"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	10375.20	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:53 PM	

+="CN96909"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	27-Jun-08	30-Jun-08	10946.78	=""	="DR E RUSSELL VICKERS"	02-Jul-08 01:54 PM	

+="CN96920"	"VR-Forces Runtime License 12 Mths Support"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	20-Jun-08	11880.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:54 PM	

+="CN96921"	"PSP support - Miranda Reay @ $51.28 per hr"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	11921.13	=""	="ICON RECRUITMENT"	02-Jul-08 01:54 PM	

+="CN96925"	"AUDIT OF TELECOMMUNICATIONS"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	26-Jun-08	30-Jun-08	10835.00	=""	="ALLIED TECHNOLOGIES"	02-Jul-08 01:55 PM	

+="CN96954"	"FEE FOR SERVICE"	="Department of Defence"	02-Jul-08	="Patient care and treatment products and supplies"	12-Nov-07	30-Jun-08	11000.00	=""	="ST JOHN OF GOD HOSPITALS"	02-Jul-08 01:56 PM	

+="CN96973"	"S5180, WR's 300051546, 300051545, 300051541, 30005 300071215, 300051539. Sydney Central Infrast"	="Department of Defence"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	17-Jun-08	30-Jun-08	10041.62	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:57 PM	

+="CN96979"	"FURNITURE REQUIRED FOR 2ATHS DENTAL"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	31-Jan-08	31-Mar-08	10202.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	02-Jul-08 01:58 PM	

+="CN96984"	"LIA SMOKE DETECTION & EMERGENCY LIGHTING - FIRE COMMUNICATIONS CONSULANT"	="Department of Defence"	02-Jul-08	="Fire protection"	05-Dec-07	30-Jun-08	10983.51	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 01:58 PM	

+="CN96989"	"HMAS STIRLING - NAVY PERSONNEL  &  TRAINING CE SSS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-09	11000.00	=""	="SPOTLESS SERVICES AUST LTD"	02-Jul-08 01:58 PM	

+="CN96991"	"GROCERIES"	="Department of Defence"	02-Jul-08	="Prepared and preserved foods"	25-Jun-08	30-Jul-08	10208.44	=""	="BID VEST BURLEIGH MARR"	02-Jul-08 01:59 PM	

+="CN97008"	"FREIGHT COSTS FOR THE DISTRIBUTION GST INCLUSIVE AND GST2 OF PUBLICATIONS FOR THE F/Y 2007/2008"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	27-Jun-08	31-Jul-08	11000.00	=""	="TOLL PRIORITY"	02-Jul-08 02:01 PM	

+="CN97015"	"poultry brisbane"	="Department of Defence"	02-Jul-08	="Meat and poultry"	20-May-08	30-Jun-08	11022.00	=""	="A B D POULTRY"	02-Jul-08 02:02 PM	

+="CN97018"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	30-Jun-08	30-Jun-08	11000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 02:02 PM	

+="CN97044"	"TRANSCRIPTION SERVICE"	="Department of Defence"	02-Jul-08	="Writing and translations"	12-Nov-07	30-Jun-09	10750.01	=""	="NATIONAL TRANSCRIPTION SERVICES"	02-Jul-08 02:03 PM	

+="CN97046"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	12-Jun-08	12-Jun-08	10445.42	=""	="CARRANBALLAC P-9 COLLEGE"	02-Jul-08 02:03 PM	

+="CN97061"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	12-Jun-08	12-Jun-08	11580.80	=""	="PALMERSTON CHRISTIAN SCHOOL"	02-Jul-08 02:04 PM	

+="CN97063"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	02-Jul-08	="Fruits and vegetables and nuts and seeds"	24-Jun-08	30-Jun-08	10000.00	=""	="SIMON GEORGE &"	02-Jul-08 02:04 PM	

+="CN97056"	"Various Server Llicences and upgrades"	="Family Court of Australia"	02-Jul-08	="Computer servers"	30-Jun-08	30-Jul-09	10824.00	=""	="Integ Communications Solutions Pty Ltd"	02-Jul-08 02:05 PM	

+="CN97073"	"PSP SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	10816.74	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:05 PM	

+="CN97077"	"Audit of Existing Electrical Reticulation System"	="Department of Defence"	02-Jul-08	="Electronic Components and Supplies"	12-Jun-08	30-Jun-08	10975.80	=""	="STOWE AUSTRALIA PTY LTD"	02-Jul-08 02:06 PM	

+="CN97082"	"PROVISION OF MOBILE HANDSETS TO REPLACE TELSTRA CDMA"	="Department of Defence"	02-Jul-08	="Electronic hardware and component parts and accessories"	12-Nov-07	30-Jun-08	11778.42	=""	="TELSTRA"	02-Jul-08 02:07 PM	

+="CN97086"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	19-Jun-08	10043.86	=""	="DICK SMITH POWERHOUSE"	02-Jul-08 02:07 PM	

+="CN97090"	"FACOPS"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	24-Jun-08	30-Jun-08	11209.56	=""	="WOODPEND HARDWARE"	02-Jul-08 02:07 PM	

+="CN97095"	"UPGRADE TO WIRING"	="Department of Defence"	02-Jul-08	="Power sources"	12-Jun-08	30-Jul-08	11125.75	=""	="HAMMETT TECHNOLOGIES"	02-Jul-08 02:07 PM	

+="CN97097"	"BULK LIQUID NITROGEN FOR FY07/08"	="Department of Defence"	02-Jul-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	12-Nov-07	30-Jun-08	10303.04	=""	="AIR LIQUIDE AUSTRALIA LTD"	02-Jul-08 02:07 PM	

+="CN97099"	"Short term lease for existing HMAS Cairns Gym equipment until new gym completion."	="Department of Defence"	02-Jul-08	="Sports and Recreational Equipment and Supplies and Accessories"	29-Apr-08	30-Jun-08	11563.38	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	02-Jul-08 02:08 PM	

+="CN97101"	"SERVICE ORDER 010P1-08 DSVE SERVICE DESK ANALYSIS."	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	12-Jun-08	30-Jun-08	10347.98	=""	="CONNELL WAGNER PTY LTD"	02-Jul-08 02:08 PM	

+="CN97116"	"SERVICE ORDER 010P2-08 DSVE SERVICE DESK ANALYSIS."	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	12-Jun-08	30-Jun-08	10347.98	=""	="CONNELL WAGNER PTY LTD"	02-Jul-08 02:08 PM	

+="CN97141"	"HMAS Gascoyne port visit Port Kembla 24-26Apr08"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	17-Jun-08	11467.24	=""	="PDL TOLL"	02-Jul-08 02:10 PM	

+="CN97147"	"REEFER CONTAINER LEASE - SECDET"	="Department of Defence"	02-Jul-08	="Industrial refrigeration"	07-Jun-08	16-Jun-08	10998.41	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:10 PM	

+="CN97149"	"REEFER CONTAINER LEASE - SECDET"	="Department of Defence"	02-Jul-08	="Industrial refrigeration"	07-Jun-08	16-Jun-08	11837.24	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97161"	"ACTROSS TRUCK LEASE JUN 08 - FLLA B"	="Department of Defence"	02-Jul-08	="Product and material transport vehicles"	07-Jun-08	16-Jun-08	10112.75	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97164"	"Area Managers Leadership training 2 x days"	="Department of Defence"	02-Jul-08	="Vocational training"	22-May-08	16-Jun-08	11000.00	=""	="EXECUTIVE LEADERSHIP AUSTRALIA P/L"	02-Jul-08 02:11 PM	

+="CN97167"	"TELSTRA DIRECTORY CHARGES"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	03-May-08	30-Jun-08	10737.10	=""	="TELSTRA CORPORATION LTD"	02-Jul-08 02:11 PM	

+="CN97169"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	06-May-08	30-May-08	11435.09	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:11 PM	

+="CN97174"	"CHAIRS"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	13-Jun-08	30-Jul-08	10230.00	=""	="INTERWORX PTY LTD"	02-Jul-08 02:12 PM	

+="CN97180"	"NATIONAL SCHEDULED FINANCIAL MANAGEMENT TRAINING JAN-JUN 08"	="Department of Defence"	02-Jul-08	="Education and Training Services"	13-Jun-08	30-Jun-08	11035.80	=""	="DEAKINPRIME"	02-Jul-08 02:12 PM	

+="CN97195"	"Ski jackets from Future Sport and Sord Australia"	="Department of Defence"	02-Jul-08	="Sports and Recreational Equipment and Supplies and Accessories"	18-Jun-08	18-Jun-08	11500.00	=""	="AUSTRALIAN ARMY ALPINE"	02-Jul-08 02:14 PM	

+="CN97209"	"ADF IRS CONFERENCE 3-5 JUNE 2008. COSTS INCLUDE ACCOMMODATION, MEALS AND CONFERENCE"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	11504.49	=""	="VOYAGES HOTELS & RESORTS PTY LTD"	02-Jul-08 02:14 PM	

+="CN97212"	"PROVISION OF PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	20-May-08	30-Jun-08	11857.90	=""	="TNT AUSTRALIA"	02-Jul-08 02:15 PM	

+="CN97221"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	11650.00	=""	="TASKEY PTY LTD"	02-Jul-08 02:15 PM	

+="CN97234"	"HERTZ BILL DOD 322ECSS MAY 2008"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	11-Jun-08	31-Dec-08	10980.32	=""	="HERTZ AUSTRALIA PTY LTD"	02-Jul-08 02:16 PM	

+="CN97236"	"DCOHQ adv JRN 26478 SW Wtown April08"	="Department of Defence"	02-Jul-08	="Advertising"	30-Apr-08	11-Jun-08	11967.01	=""	="HMA BLAZE PTY LTD"	02-Jul-08 02:17 PM	

+="CN97239"	"ASI P-3"	="Department of Defence"	02-Jul-08	="Aircraft equipment"	13-Jun-08	30-Jun-09	11083.05	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	02-Jul-08 02:17 PM	

+="CN97241"	"PETROL HYDROBLASTER"	="Department of Defence"	02-Jul-08	="Agricultural and forestry and landscape machinery and equipment"	13-Jun-08	30-Jun-08	10375.20	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	02-Jul-08 02:17 PM	

+="CN97242"	"MEDICAL OFFICER FY07/08-10/11"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	26-May-08	31-Dec-10	11466.50	=""	="J STEPHENSON"	02-Jul-08 02:17 PM	

+="CN97246"	"Senior Dentist fy 07/08-fy10/11"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	19-May-08	31-Dec-10	11633.79	=""	="DAVID M HARMATA"	02-Jul-08 02:17 PM	

+="CN97250"	"REPAIRS AND MAINTENANCE OF UPARMOURED VEHICLE, KAB KABUL."	="Department of Defence"	02-Jul-08	="Motor vehicles"	02-Jun-08	10-Jun-08	10943.21	=""	="IM JENSEN"	02-Jul-08 02:18 PM	

+="CN97252"	"LEASE OF VEHICLES"	="Department of Defence"	02-Jul-08	="Motor vehicles"	10-Jun-08	30-Jun-08	10774.80	=""	="FUTURE SERVICES GENERAL TRADING CO."	02-Jul-08 02:18 PM	

+="CN97258"	"REEFER CONTAINER LEASE - SECDET"	="Department of Defence"	02-Jul-08	="Industrial refrigeration"	02-Jun-08	08-Jun-08	11539.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:18 PM	

+="CN97262"	"Transportation of vehicles Sydney to Townsville"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	02-Jun-08	09-Jun-08	11000.00	=""	="MINERAL & MINE MOVERS"	02-Jul-08 02:18 PM	

+="CN97268"	"SMALL ARMS BALLISTICS LASER SIMULATION CONTRACT"	="Department of Defence"	02-Jul-08	="Arms and ammunition accessories"	23-Apr-08	23-Apr-08	11370.81	=""	="SYDAC PTY LTD"	02-Jul-08 02:19 PM	

+="CN97270"	"recruitment services for APS6SW Tindal DCO"	="Department of Defence"	02-Jul-08	="Human resources services"	23-May-08	13-Jun-08	11315.37	=""	="REED PERSONNEL SERVICES PT LTD"	02-Jul-08 02:19 PM	

+="CN97284"	"HERTZ BILL MAY 08 - MR2/C2 DRIVERS COURSE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	24-May-08	30-May-08	10187.88	=""	="HERTZ AUSTRALIA PTY LTD"	02-Jul-08 02:20 PM	

+="CN97285"	"Research Agreement"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	13-Jun-08	30-Jun-08	11000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	02-Jul-08 02:20 PM	

+="CN97286"	"MSL TRAVEL BILLS"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	29-May-08	12-Jun-08	11449.09	=""	="MSL TRAVEL DN BHD"	02-Jul-08 02:20 PM	

+="CN97303"	"HASP PRO ENCRYPTION KEY"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	30-Jun-08	10337.25	=""	="BOHEMIA INTERACTIVE SOFTWARE"	02-Jul-08 02:21 PM	

+="CN97333"	"SUPER FOR DOCTOR"	="Department of Defence"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	18-Jun-08	31-Dec-08	11000.00	=""	="AMP FLEXIBLE LIFETIME LIMITED"	02-Jul-08 02:24 PM	

+="CN97346"	"lease transportable Bldg"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	06-Jun-08	30-Jun-08	10728.12	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:24 PM	

+="CN97365"	"ADMINISTRATION OF HARDCOPY LICENCE"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	01-Jul-08	10462.16	=""	="COPYRIGHT AGENCY LTD"	02-Jul-08 02:26 PM	

+="CN97382"	"Research Agreement"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	30-Jun-08	11000.00	=""	="THE UNIVERSITY OF ADELAIDE"	02-Jul-08 02:27 PM	

+="CN97399-A1"	"GST FOR PF 5002252855"	="Department of Defence"	02-Jul-08	="Satellites"	09-Jun-08	30-Jun-09	11125.34	=""	="STRATOS"	02-Jul-08 02:28 PM	

+="CN97412"	"RECANT AND DECANT OF FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	12-Nov-07	30-Jun-08	10576.50	=""	="BRENDON J FRITZ"	02-Jul-08 02:30 PM	

+="CN97421"	"Mathsworks software Licenses"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	23-Jun-08	10939.50	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	02-Jul-08 02:30 PM	

+="CN97407"	"W/O-36104 SCANIA FIRE TRUCK ARN-201685"	="Department of Defence"	02-Jul-08	="Motor vehicles"	24-Jun-08	25-Jul-08	11824.90	=""	="RGM MAINTENANCE"	02-Jul-08 02:32 PM	

+="CN97470"	"High grade Cryptographic Equipment DIER 0506-1625"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	31-Oct-08	11798.40	=""	="DEFENCE MATERIEL ORGANISATION -"	02-Jul-08 02:35 PM	

+="CN97475"	"Provision of Telephony Services for the Lavarack B (Stage 4) Project - CIOG 324/08."	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	06-Sep-08	11345.40	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	02-Jul-08 02:35 PM	

+="CN97480"	"Switch connectors"	="Department of Defence"	02-Jul-08	="Hardware"	11-Jun-08	30-Jun-08	11990.00	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 02:36 PM	

+="CN97504"	"LCD MONITORS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	11935.00	=""	="DELL COMPUTER PTY LTD"	02-Jul-08 02:37 PM	

+="CN97505"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	27-Jun-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:37 PM	

+="CN97530"	"CUSTOM SUPERCHARGER KIT FOR 532 FORD FOR PROJECT DIGGER"	="Department of Defence"	02-Jul-08	="Professional engineering services"	10-Jun-08	30-Jun-08	11548.90	=""	="BOB FISHER AUTOMOTIVE PTY LTD"	02-Jul-08 02:40 PM	

+="CN97538"	"MEDALS"	="Department of Defence"	02-Jul-08	="Collectibles and awards"	10-Jun-08	30-Jun-08	10875.40	=""	="CARY CORPORATION PTY LTD"	02-Jul-08 02:41 PM	

+="CN97546"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	10-Jun-08	10-Jun-08	10858.29	=""	="ARALUEN PRIMARY SCHOOL"	02-Jul-08 02:42 PM	

+="CN97556"	"Computer Equipment and Scanner"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	24-Jun-08	11798.96	=""	="CORPORATE EXPRESS AUSTRALIA"	02-Jul-08 02:43 PM	

+="CN97647"	"Preliminary design configuartion scope"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	11-Jun-08	20-Jun-08	10572.57	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	02-Jul-08 02:52 PM	

+="CN97655"	"Software Maintenance Licence"	="Department of Defence"	02-Jul-08	="Software"	11-Jun-08	16-Jun-08	10780.00	=""	="K2"	02-Jul-08 02:52 PM	

+="CN97664"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10445.42	=""	="POINT COOK PRIMARY SCHOOL"	02-Jul-08 02:53 PM	

+="CN97671"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10445.42	=""	="SALE PRIMARY SCHOOL"	02-Jul-08 02:54 PM	

+="CN97675"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10445.42	=""	="WODONGA WEST PRIMARY"	02-Jul-08 02:54 PM	

+="CN97677"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10445.44	=""	="STREETON PRIMARY SCHOOL"	02-Jul-08 02:55 PM	

+="CN97683"	"Required for DRN encryption for DIER 0506-1625"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	11-Jun-08	23-Jun-08	10475.30	=""	="ASI SOLUTIONS PTY LTD"	02-Jul-08 02:55 PM	

+="CN97700"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	10445.42	=""	="MELROSE PRIMARY SCHOOL - WODONGA"	02-Jul-08 02:56 PM	

+="CN97726"	"DEMAND NO.SGID-7EK9U3"	="Department of Defence"	02-Jul-08	="Electrical components"	11-Jun-08	30-Aug-08	10711.51	=""	="ABLEC TRADING ELECTRICAL WHOLESALE"	02-Jul-08 02:58 PM	

+="CN97749"	"Cert IV Palm Is Block 4: venue,catering & accom and breakfast charges"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	19-Jun-08	30-Jun-08	11300.00	=""	="Mercure Inn  Townsville"	02-Jul-08 04:42 PM	

+="CN97751"	"Convert four research reports to HTML."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	20-Jun-08	27-Jun-08	10000.00	=""	="Link Web Services"	02-Jul-08 04:42 PM	

+="CN97755"	"Locksmith services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	10000.00	=""	="CLASS  Complete Lock & Safe Service"	02-Jul-08 04:42 PM	

+="CN97757"	"Office Equipment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	10000.00	=""	="Jardem Pty Ltd t/as Southern Shop"	02-Jul-08 04:43 PM	

+="CN97760"	"supply of parlimentary TV"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	20-Jun-08	30-Jun-09	10000.00	=""	="DEPARTMENT OF PARLIAMENTARY"	02-Jul-08 04:43 PM	

+="CN97786"	"Whole of Gov: Evaluating frameworks for intregatin policy development, implementation & delivery"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	10-Jul-08	11000.00	=""	="University of Canberra"	02-Jul-08 04:48 PM	

+="CN97803"	"Advertising"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	26-Jun-08	10547.91	=""	="DC Workplace Consulting"	02-Jul-08 04:50 PM	

+="CN97811"	"Formaldahyde Recall for GBM's"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	23-Jun-08	11180.00	=""	="Darwin Airport Resort"	02-Jul-08 04:51 PM	

+="CN97825"	"Sponsorship - Community  Resilience Roundtable"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	10000.00	=""	="St John Ambulance Australia"	02-Jul-08 04:53 PM	

+="CN97832"	"Secretariat evaluation review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	05-Jun-08	05-Jun-08	11000.00	=""	="YWCA Australia"	02-Jul-08 04:54 PM	

+="CN97848"	"Minor new works for property/accommodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Mar-08	13-Mar-08	10151.90	=""	="NYIRRANGGULUNG MARDRULK NGADBERRE"	02-Jul-08 04:56 PM	

+="CN97849"	"Law Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	23-Jun-08	30-Jun-08	10437.25	=""	="Aust Government Solicitor"	02-Jul-08 04:56 PM	

+="CN97869"	"Disability and Carers Group Planning Process."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	16-Jun-08	20-Jun-08	11220.00	=""	="Team Systems Pty Ltd"	02-Jul-08 05:00 PM	

+="CN97868"	" EXCOM Education offers World Class PRINCE2 training. "	="National Native Title Tribunal"	02-Jul-08	="Permanent information technology staffing needs"	23-Jan-08	26-May-08	10270.00	=""	="Excom Education"	02-Jul-08 05:00 PM	

+="CN97882"	"Office Furniture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Furniture and Furnishings"	18-Jun-08	30-Jun-09	10000.00	=""	="Aurora Office Furniture"	02-Jul-08 05:02 PM	

+="CN97883"	"SMS Reporting for the BMS at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	18-Jun-08	30-Jun-09	10000.00	=""	="Hutchinson Telecommunications"	02-Jul-08 05:02 PM	

+="CN97887"	"Process developement, facilitation of workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Education and Training Services"	18-Jun-08	27-Jun-08	12000.00	=""	="Team Systems Pty Ltd"	02-Jul-08 05:03 PM	

+="CN97899"	"3000 footprints in time custom made caps."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	30-Jun-08	10890.00	=""	="Corporate Express Australia"	02-Jul-08 05:05 PM	

+="CN97902"	"Provision of onsite support sevices to IPIB staff undertaking risk/compliance audit"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	13-Jun-08	13-Jun-08	10000.00	=""	="Change Management Group"	02-Jul-08 05:05 PM	

+="CN97904"	"ORIC Constitution Redesign Workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	28-Jun-08	11400.00	="SON: 34585"	="Business & Community P/L"	02-Jul-08 05:05 PM	

+="CN97914"	"Legal Fees and services for conference and directions hearing Qld"	="National Native Title Tribunal"	02-Jul-08	="Legal services"	12-Nov-07	13-Nov-07	10536.50	=""	="Nicholas Ferrett"	02-Jul-08 06:16 PM	

+="CN97923-A1"	"Rural Agent - Centrelink Agent Services"	="Centrelink"	03-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	11041.87	=""	="Greater Hume Shire council"	03-Jul-08 08:45 AM	

+="CN97932"	"Production of BCA Beijing video program"	="Austrade"	03-Jul-08	="Marketing and distribution"	19-May-08	30-May-08	10700.00	=""	="Converse Media Pty Ltd"	03-Jul-08 09:32 AM	

+="CN97957"	" INSTALL PWS ON BUSHMASTERS  LABOUR & TRAVEL COSTS FOR TWO TECHNICIANS FROM BRISBANE "	="Department of Defence"	03-Jul-08	="Armoured fighting vehicles"	02-Jul-08	30-Jul-08	10339.48	=""	="THALES AUSTRALIA"	03-Jul-08 10:22 AM	

+="CN98001-A1"	" Panel transaction fee for APS Panel Arrangement for 2008 courses "	="Australian National Audit Office (ANAO)"	03-Jul-08	="Adult education"	26-May-08	30-Jun-08	12000.00	=""	="Aust Public Service Commission"	03-Jul-08 10:53 AM	

+="CN95418"	"Sydney ASIC Function"	="Australian Securities and Investments Commission"	03-Jul-08	="Eating and drinking establishments"	14-Dec-07	15-Dec-07	11480.00	=""	="St James Hotel"	03-Jul-08 12:51 PM	

+="CN98024"	"TDUL-0022/2008 06.04.2008 US TRIP  Andy Morehouse"	="Defence Materiel Organisation"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	09-Apr-08	17-Apr-08	10154.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98025"	"TDTL-0050/2008 OVA 06APR08TO REVIEW ILS FOR COLDCREEK"	="Defence Materiel Organisation"	03-Jul-08	="Travel facilitation"	09-Apr-08	14-Apr-08	10154.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98026"	"Overseas airfares"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	11-Apr-08	11-Apr-08	10011.26	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98030"	"Training development throughout May 2008"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	06-May-08	06-May-08	10165.40	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:39 PM	

+="CN98036"	"airfares RPT TRAVEL REFERENCE ARR103"	="Defence Materiel Organisation"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	17-Apr-08	30-Apr-08	11127.63	=""	="BRITISH AIRW1255720652334"	03-Jul-08 01:40 PM	

+="CN98037"	"airfares - RPT travel reference AAR104"	="Defence Materiel Organisation"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	17-Apr-08	22-Apr-08	11127.63	=""	="BRITISH AIRW1255720652336"	03-Jul-08 01:40 PM	

+="CN98038"	"Training Course by Scotwork for RPT Seattle Negotiating skills course held at Port Ludlow in Washington, USA"	="Defence Materiel Organisation"	03-Jul-08	="Education and Training Services"	19-May-08	19-May-08	11472.98	=""	="RESORT AT LUDLOW BAY"	03-Jul-08 01:40 PM	

+="CN98043"	"Acoommodation incl breakfast for RESD staff and DRS State Chairs whilst attending Pacific 2008 and Naval Symposium"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	02-Feb-08	02-Feb-08	11049.95	=""	="STAR CITY"	03-Jul-08 02:07 PM	

+="CN98042"	"Repair of shackles"	="Defence Materiel Organisation"	03-Jul-08	="Military rotary wing aircraft"	04-Jun-08	03-Jul-09	10400.00	=""	="ROSEBANK ENGINEERING P/L"	03-Jul-08 02:07 PM	

+="CN98052"	"NATO AMLIP Working Group Meeting - Istanbul, Turkey. Flight BRIS - SIN - IST, IST-SIN-BRIS"	="Department of Defence"	03-Jul-08	="Passenger transport"	08-Apr-08	08-Apr-08	10209.84	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98066"	"Airfares"	="Department of Defence"	03-Jul-08	="Transportation repair or maintenance services"	25-Apr-08	25-Apr-08	11596.76	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98068"	"P/N: EVERETTJOHNMR TKT: 08147026445780 R/N: Not Supplied EMIRATES ONO: 332281-21300 GWT: 10292  10854"	="Department of Defence"	03-Jul-08	="Travel facilitation"	01-May-08	01-May-08	10854.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:10 PM	

+="CN98070"	"Wright - BRIGHT Autumn Fest accommodation for group"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	05-May-08	05-May-08	10560.00	=""	="BRIGHT CHALET"	03-Jul-08 02:10 PM	

+="CN98071"	"Airfares for Pitch Black 08"	="Department of Defence"	03-Jul-08	="Travel facilitation"	30-Apr-08	28-Jun-08	10681.20	=""	="VIRGIN BLUE"	03-Jul-08 02:10 PM	

+="CN98072"	"International Airfare"	="Department of Defence"	03-Jul-08	="Passenger transport"	02-May-08	02-May-08	10841.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:10 PM	

+="CN98075"	"Flights, aeromedical evacuation"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	06-May-08	06-May-08	10038.25	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:11 PM	

+="CN98076"	"P/N: KERR/JANELLE MS TKT: 08124698303250 R/N: Not Supplied BA: J SYD/LHR - BA: J LHR/TLV DATE TRAVEL: 28/04/08 REF:ZOQUKD"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	06-May-08	06-May-08	10038.25	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:11 PM	

+="CN98083"	"P/N: PENGROUP TKT: 08147026449080 R/N: Not Supplied SINGAPORE AIRL ONO: 152137-21300 GWT: 10186-0867"	="Department of Defence"	03-Jul-08	="Aircraft"	07-May-08	05-Jun-08	11835.72	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98084"	"P/N: JAGERSHARONWITHERSSUSAN TKT: 08147026607070 R/N: Not Supplied EMIRATES"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	07-May-08	07-May-08	11938.68	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98085"	"LTCOL Sharp GIPC USA 4-8 May 08"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	07-May-08	07-May-08	10011.80	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98091"	"USA Visit 17-31 May 08"	="Department of Defence"	03-Jul-08	="Passenger transport"	14-May-08	31-May-08	10245.80	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:14 PM	

+="CN98095"	"2008/6387 MAJGEN Tim McOwan OSFares ACMS-1313101"	="Department of Defence"	03-Jul-08	="Travel facilitation"	21-May-08	21-May-08	10170.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:14 PM	

+="CN98096"	"AUSDIL 90 - PTE HAVEN"	="Department of Defence"	03-Jul-08	="Travel facilitation"	25-May-08	25-May-08	10213.39	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98097"	"AUSDIL 90 - PTE HAVEN"	="Department of Defence"	03-Jul-08	="Travel facilitation"	25-May-08	25-May-08	10213.39	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98098"	"AUSDIL 90 - PTE HAVEN"	="Department of Defence"	03-Jul-08	="Travel facilitation"	25-May-08	25-May-08	10213.39	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98099"	"P/N: WEIRGLTCOL TKT: 08140417760160 R/N: Not Supplied EXCESS BAGGAGE ONO: 332281-21300 GWT: 921-16000"	="Department of Defence"	03-Jul-08	="Air transportation support systems and equipment"	27-May-08	06-Jun-08	10230.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98102"	"RANBAND airfares TONGA Jul-Aug 08"	="Department of Defence"	03-Jul-08	="Travel facilitation"	27-May-08	27-May-08	10195.08	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98104"	"CDSS Small Group Tour Thai/Cambodia"	="Department of Defence"	03-Jul-08	="Travel facilitation"	30-May-08	30-May-08	11967.20	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:16 PM	

+="CN98105"	"BROWN/JAMES MR TKT: 08124706553570 R/N: Not Supplied QF: J SYD/LAX - DL: D LAX/ATL DATE TRAVEL: 02/06/08 REF:YJKTYK ONO: 352472-21303 GWT: 8192444"	="Department of Defence"	03-Jul-08	="Passenger transport"	01-Jun-08	01-Jun-08	10066.28	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:16 PM	

+="CN98107"	"AFHQ-DGAFSP-Brown-OVA003/08"	="Department of Defence"	03-Jul-08	="Travel facilitation"	01-Jun-08	01-Jun-08	10144.40	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:16 PM	

+="CN98111"	"Chris Forbes-Ewan attended two meetings in Florida in early June 2008, including the spring meeting of NATO RTG 154"	="Department of Defence"	03-Jul-08	="Transport operations"	03-Jun-08	03-Jun-08	10352.71	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98112"	"VISIT USAJFKSWCS ARSOFLO"	="Department of Defence"	03-Jul-08	="Passenger transport"	03-Jun-08	03-Jun-08	10437.55	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98113"	"BATES/STEPHEN CAPT TKT: 08124708200960 R/N: Not Supplied QF: J DRW/SYD - QF: J SYD/LAX DATE TRAVEL: 31/05/08 REF:3GDUVB ONO: 352472-21303 GWT: 8491260"	="Department of Defence"	03-Jul-08	="Passenger transport"	04-Jun-08	04-Jun-08	11421.84	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98114"	"FOWLER/JOSHUA LT TKT: 08124708200980 R/N: Not Supplied QF: J DRW/SYD - QF: J SYD/LAX DATE TRAVEL: 31/05/08 REF:3GDUVB ONO: 352472-21303 GWT: 8491260"	="Department of Defence"	03-Jul-08	="Passenger transport"	04-Jun-08	04-Jun-08	11421.84	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98120"	"LJD80152 SSEE-E Course USA"	="Department of Defence"	03-Jul-08	="Passenger transport"	10-Jun-08	24-Jun-08	10839.08	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:18 PM	

+="CN98121"	"3/07 & 1/08 ALSFITT AVMED Crse RAAF EDINBURGH 9-16 Jun 08."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	15-Jun-08	16-Jun-08	11039.00	=""	="MAWSON LAKES HOTEL"	03-Jul-08 02:18 PM	

+="CN98123"	"Accomodation for a Boss Lift to Malaysia"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	10-Dec-06	16-Dec-06	11100.99	=""	="MUTIARA JOHOR BAHRU"	03-Jul-08 02:18 PM	

+="CN98124"	"Deposit for Hotel for Staff Training 07"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	13-Feb-07	28-Feb-07	10000.00	=""	="Novotel Brighton Beach"	03-Jul-08 02:18 PM	

+="CN98126"	"to pay png soldiers"	="Department of Defence"	03-Jul-08	="Banking and investment"	09-Nov-07	09-Nov-07	11197.90	=""	="NATIONAL AUST BANK"	03-Jul-08 02:19 PM	

+="CN98127"	"pay the png soldiers from op anode"	="Department of Defence"	03-Jul-08	="Banking and investment"	16-Nov-07	16-Nov-07	11197.90	=""	="NATIONAL AUST BANK"	03-Jul-08 02:19 PM	

+="CN98128"	"Accommodation and transport for Phase 3 Gillespie recovery"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	04-Dec-07	04-Dec-07	11108.57	=""	="PALACE HOTEL USD"	03-Jul-08 02:19 PM	

+="CN98131"	"Conference Accommodation"	="Department of Defence"	03-Jul-08	="Accommodation furniture"	20-Mar-08	20-Mar-08	11048.80	=""	="THE BRASSEY OF CANBERR"	03-Jul-08 02:19 PM	

+="CN98132"	"Outlook training forHQ 16 Avn Bde members. Training conducted by Management Effectiveness  Pty Ltd Brisbane."	="Department of Defence"	03-Jul-08	="Computer services"	27-Mar-08	27-Mar-08	10615.00	=""	="PRIORITY MGMT TOOWONG"	03-Jul-08 02:19 PM	

+="CN98133"	"GYM EQUIP FOR NTH GYM ROBERTSON BARRACKS REF 1263/07-08MM INVOICES: 133530,133530A,133530B"	="Department of Defence"	03-Jul-08	="Gymnastics and boxing equipment"	09-Apr-08	02-Jun-08	10897.90	=""	="HART SPORT PTY LTD"	03-Jul-08 02:20 PM	

+="CN98135"	"Training Accommodation"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	12-Apr-08	17-Apr-08	10000.00	=""	="TWIN LAKES HOTEL"	03-Jul-08 02:20 PM	

+="CN98137"	"HERITAGE INN AND SUITES  RIDGECREST CA ACCOMMODATION EX BLACKWOOD III 08 CHINA LAKE 7-13 APR 08 1SQN"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	16-Apr-08	16-Apr-08	11770.38	=""	="RIDGECREST INN"	03-Jul-08 02:20 PM	

+="CN98139"	"Incorrect amount was paid credit was raised.March statement"	="Department of Defence"	03-Jul-08	="Office supplies"	21-Apr-08	21-Apr-08	10981.57	=""	="NATIONAL OFFICE PRODUC"	03-Jul-08 02:20 PM	

+="CN98143"	"SILVERWOOD 08 - ACCOMMODATION AT HERITAGE INN & SUITES 14 - 20 APR 08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	21-Apr-08	13-May-08	11207.82	=""	="RIDGECREST INN"	03-Jul-08 02:22 PM	

+="CN98148"	"EX BLACKWOOD 08 ACCOMMODATION AT HAWAII FOR TRANSIT TO CHINA LAKE 04-06 MAY 08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	24-Apr-08	24-Apr-08	10540.59	=""	="OHANA WAIKIKI BCHCOMBER A"	03-Jul-08 02:22 PM	

+="CN98149"	"JEFX Accommodation"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	26-Apr-08	26-Apr-08	11030.58	=""	="HAMPTON MARINA HOTEL"	03-Jul-08 02:23 PM	

+="CN98156"	"LSE 540 - 07/08 LSE - ME UNIFORMS, PRESENTO, PR ITEMS"	="Department of Defence"	03-Jul-08	="Office supplies"	29-Apr-08	01-Jan-09	10624.19	=""	="ANTIQUE MUSEUM HANDICRAFT"	03-Jul-08 02:23 PM	

+="CN98159"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	29-Apr-08	29-Apr-08	11550.00	=""	="PFT 2005 PTY LIMITED"	03-Jul-08 02:24 PM	

+="CN98161"	"JEFX Accommodation"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	30-Apr-08	30-Apr-08	10175.64	=""	="HAMPTON MARINA HOTEL"	03-Jul-08 02:24 PM	

+="CN98162"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	30-Apr-08	15-May-08	10175.58	=""	="ST VINCENTS PRV HOSP"	03-Jul-08 02:24 PM	

+="CN98167"	" IT Hardware "	="Department of Defence"	03-Jul-08	="Computers"	01-May-08	30-Jun-08	11341.53	=""	="TNT AUSTRALIA PTY LTD"	03-Jul-08 02:25 PM	

+="CN98168"	"40 x small bookcases for LHQ & Vic Bks units"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	01-May-08	01-May-08	10780.00	=""	="DIRECT ERGONOMICS"	03-Jul-08 02:25 PM	

+="CN98170"	"Ethical Leadership and Governance in the Public Sector"	="Department of Defence"	03-Jul-08	="Education and Training Services"	01-May-08	01-May-08	11068.20	=""	="LIQUID LEARNING GROUP"	03-Jul-08 02:25 PM	

+="CN98173"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	02-May-08	02-May-08	10650.00	=""	="PFT 2005 PTY LIMITED"	03-Jul-08 02:26 PM	

+="CN98175"	"12/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	06-May-08	31-May-08	11721.90	=""	="DR BENJAMIN ERZETIC"	03-Jul-08 02:26 PM	

+="CN98186"	"HERITAGE INN AND SUITES  RIDGECREST CA ACCOMMODATION EX BLACKWOOD III 08 CHINA LAKE 28 APR - 7 MAY 08 1SQN"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	07-May-08	07-May-08	11830.01	=""	="RIDGECREST INN"	03-Jul-08 02:27 PM	

+="CN98188"	"1 CER Stationary break 02/08 ACMS 1167011"	="Department of Defence"	03-Jul-08	="Office supplies"	12-May-08	12-May-08	11388.04	=""	="CORPORATE EXPRESS"	03-Jul-08 02:27 PM	

+="CN98190"	"172/0708  Dimensions Data Grosser & Bennett"	="Department of Defence"	03-Jul-08	="Vocational training"	09-May-08	09-May-08	11909.00	=""	="DIMENSIONS DATA LEARNING"	03-Jul-08 02:28 PM	

+="CN98191"	"172/0708  Dimensions Data Grosser & Bennett"	="Department of Defence"	03-Jul-08	="Vocational training"	09-May-08	09-May-08	11909.00	=""	="DIMENSIONS DATA LEARNING"	03-Jul-08 02:28 PM	

+="CN98192"	"172/0708  Dimensions Data Grosser & Bennett"	="Department of Defence"	03-Jul-08	="Vocational training"	09-May-08	09-May-08	11909.00	=""	="DIMENSIONS DATA LEARNING"	03-Jul-08 02:28 PM	

+="CN98195"	"Batch 19/05/08"	="Department of Defence"	03-Jul-08	="Healthcare Services"	09-May-08	23-May-08	11402.81	=""	="NOWRA CMNTY HSPTL NO7"	03-Jul-08 02:28 PM	

+="CN98198"	"Dell vostro notebook computers"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	13-May-08	13-May-08	10995.60	=""	="DELL COMPUTER P/L SYDN"	03-Jul-08 02:29 PM	

+="CN98199"	"MSA Wallaroo accommodation Brisbane 03-12 May 08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	11-May-08	15-May-08	11000.00	=""	="DOCKSIDE CENTRAL APART"	03-Jul-08 02:29 PM	

+="CN98200"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	09-May-08	23-May-08	11900.00	=""	="SYDNEY CT AND MR"	03-Jul-08 02:29 PM	

+="CN98201"	"CTT FLTLT R. ALLISON 8159998"	="Department of Defence"	03-Jul-08	="Vocational training"	12-May-08	12-May-08	10000.00	=""	="ALTEON TRAINING AUST"	03-Jul-08 02:29 PM	

+="CN98202"	"CTT FLTLT R. ALLISON 8159998"	="Department of Defence"	03-Jul-08	="Vocational training"	12-May-08	12-May-08	10000.00	=""	="ALTEON TRAINING AUST"	03-Jul-08 02:29 PM	

+="CN98217"	"Medical Appointments"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	20-May-08	20-May-08	10753.33	=""	="C/GIPPSLAND HLTH"	03-Jul-08 02:31 PM	

+="CN98218"	"CTT FLTLT R. ALLISON 8159998"	="Department of Defence"	03-Jul-08	="Vocational training"	16-May-08	16-May-08	10623.50	=""	="ALTEON TRAINING AUST"	03-Jul-08 02:31 PM	

+="CN98224"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	21-May-08	03-Jun-08	10233.00	=""	="AN ANANDA P/L"	03-Jul-08 02:32 PM	

+="CN98225"	"Payment of HMA Blaze Invoices CM08040054, CM08040027, CC804/0085, CM08040033"	="Department of Defence"	03-Jul-08	="Advertising"	21-May-08	21-May-08	11581.64	=""	="HMA BLAZE"	03-Jul-08 02:32 PM	

+="CN98228"	"29/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	21-May-08	31-May-08	10000.00	=""	="QML PATHOLOGY"	03-Jul-08 02:33 PM	

+="CN98229"	"29/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	21-May-08	31-May-08	10000.00	=""	="QML PATHOLOGY"	03-Jul-08 02:33 PM	

+="CN98230"	"29/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	21-May-08	31-May-08	10000.00	=""	="QML PATHOLOGY"	03-Jul-08 02:33 PM	

+="CN98238"	"Accommodation"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	26-May-08	26-May-08	10000.00	=""	="CROWNEPLAZACOOGEE"	03-Jul-08 02:34 PM	

+="CN98243"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	23-May-08	06-Jun-08	11700.80	=""	="NOWRA CMNTY HSPTL NO7"	03-Jul-08 02:35 PM	

+="CN98246"	"BMM0208 - BUSINESS MANAGERS MEETING"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	28-May-08	28-May-08	10907.00	=""	="Mercure Hotel"	03-Jul-08 02:35 PM	

+="CN98247"	"Kokoda expedition for SE QLD AAC on 27/06-09/07/08 RE: CIA BID 07/08- International flight no GST"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	27-May-08	09-Jul-08	12000.00	=""	="TEAM KOKODA AUSTRALIA"	03-Jul-08 02:35 PM	

+="CN98255"	"08/050 -  6x Fujitsu FI-5020-VP Scanners"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	11630.40	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:36 PM	

+="CN98257"	"Accomodation Deposit required for booking and holding 75 rooms for Avalon Air Show 21-27 March 2009."	="Department of Defence"	03-Jul-08	="Accommodation furniture"	05-May-08	30-Mar-09	10000.00	=""	="Novotel Melbourne on Coll"	03-Jul-08 02:37 PM	

+="CN98261"	"11/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	28-May-08	30-Jun-08	10896.26	=""	="THE WESLEY HOSPITAL"	03-Jul-08 02:37 PM	

+="CN98266"	"Health Expenses"	="Department of Defence"	03-Jul-08	="Healthcare Services"	29-May-08	11-Jun-08	11180.00	=""	="ACUTE HEALTHCARE PTY L"	03-Jul-08 02:38 PM	

+="CN98268"	"SIMTECT REGISTRATIONS - ASW"	="Department of Defence"	03-Jul-08	="Education and Training Services"	02-Jun-08	02-Jun-08	11390.00	=""	="CONSEC SUPPORT SRV"	03-Jul-08 02:38 PM	

+="CN98274"	"AUDIT RBMC"	="Department of Defence"	03-Jul-08	="Accounting and auditing"	03-Jun-08	03-Jun-08	10859.75	=""	="SAI GLOBAL LIMITED"	03-Jul-08 02:39 PM	

+="CN98278"	"Boss Lift to the Solomon Islands"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	15-Mar-08	18-Mar-08	11248.80	=""	="SOLOMON KITANO HOTEL LTD"	03-Jul-08 02:40 PM	

+="CN98280"	"Maritime Wing audio system for cinema at Cerberus"	="Department of Defence"	03-Jul-08	="Audio and visual presentation and composing equipment"	04-Jun-08	04-Jun-08	10018.00	=""	="FACTORY SOUND SALES P/"	03-Jul-08 02:40 PM	

+="CN98282"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	03-Jun-08	17-Jun-08	10435.00	=""	="DR MICHAEL C OCONNOR"	03-Jul-08 02:41 PM	

+="CN98283"	"Projector and Whiteboard for ACPB Crew Facility"	="Department of Defence"	03-Jul-08	="Electronic hardware and component parts and accessories"	03-Jun-08	03-Jun-08	11396.00	=""	="PROJECTION PLUS"	03-Jul-08 02:41 PM	

+="CN98285"	"Programming Perl Course Crothers, Fox, Strecker, Hainey, Ackroyd"	="Department of Defence"	03-Jul-08	="Education and Training Services"	05-Jun-08	05-Jun-08	11193.60	=""	="PERL TRAINING AUSTRALIA"	03-Jul-08 02:41 PM	

+="CN98290"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	06-Jun-08	06-Jun-08	10362.50	=""	="DR A G MILLER"	03-Jul-08 02:42 PM	

+="CN98293"	"Training fees"	="Department of Defence"	03-Jul-08	="Human resource development"	05-Jun-08	13-Jun-08	10278.37	=""	="PRIORITY MANAGEMENT"	03-Jul-08 02:42 PM	

+="CN98303"	"617/0708SRG Governance and Risk Workshop, RAAF Williamtown"	="Department of Defence"	03-Jul-08	="Education and Training Services"	16-May-08	16-May-08	10142.18	=""	="AUS INST CO DRCTRS"	03-Jul-08 02:43 PM	

+="CN98308"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	16-Jun-08	30-Jun-08	10425.00	=""	="CTR FOR POD MEDICINE"	03-Jul-08 02:44 PM	

+="CN98309"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	16-Jun-08	30-Jun-08	10649.00	=""	="DR SAWJIN TEW"	03-Jul-08 02:44 PM	

+="CN98323"	"STATIONERY ITEMS"	="Department of Defence"	03-Jul-08	="Office supplies"	19-Jun-08	19-Jun-08	11096.68	=""	="CORPORATE EXPRESS"	03-Jul-08 02:46 PM	

+="CN98338"	"SMFEG043 - C.MEADOWCROFT.ROYAL ADEL HOSPITAL ."	="Department of Defence"	03-Jul-08	="Education and Training Services"	20-Jun-08	30-Jun-08	11700.00	=""	="ROYAL ADEL HOSPITAL"	03-Jul-08 02:48 PM	

+="CN98340"	"transport ACSC NZ OST"	="Department of Defence"	03-Jul-08	="Passenger transport"	19-Jun-08	19-Jun-08	10809.69	=""	="MANA COACH SERVICES"	03-Jul-08 02:49 PM	

+="CN98341"	"26/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	19-Jun-08	30-Jun-08	10050.00	=""	="DR DG MORGAN"	03-Jul-08 02:49 PM	

+="CN98343"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	23-Jun-08	07-Jul-08	11059.80	=""	="NEWSCASTLE PRIVATE HOSP"	03-Jul-08 02:49 PM	

+="CN98344"	"SMART BOARD SB680I -ELECTROBOARDInteractive Whiteboard system"	="Department of Defence"	03-Jul-08	="Audio and visual presentation and composing equipment"	20-Jun-08	24-Jun-08	10904.72	=""	="ELECTROBOARD SOLUTIONS"	03-Jul-08 02:50 PM	

+="CN98351"	"MEDICAL SERVICES FOR FINN8115250,ALLEN8252335,BANKS8203486,LOCKER8266296,JAGERS8099151,LUCAS8510772,STAIT8506737,PONTIFEX8521592,CARMICHAEL8519221,GODFREY8525463,BENINI8526217,DUNLOP8528967"	="Department of Defence"	03-Jul-08	="Medical practice"	24-Jun-08	24-Jun-08	11361.00	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:51 PM	

+="CN98352"	"Purchase camera equipment"	="Department of Defence"	03-Jul-08	="Photographic or filming or video equipment"	24-Jun-08	24-Jun-08	11760.00	=""	="TEDS CAM 26"	03-Jul-08 02:51 PM	

+="CN98357"	"29/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	25-Jun-08	30-Jun-08	10000.00	=""	="QML PATHOLOGY"	03-Jul-08 02:52 PM	

+="CN98360"	"29/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	25-Jun-08	30-Jun-08	10303.49	=""	="SYMBION IMAGING"	03-Jul-08 02:52 PM	

+="CN98361"	"244/0708 FLTENG recruiting Videos"	="Department of Defence"	03-Jul-08	="Printed media"	25-Jun-08	25-Jun-08	11715.00	=""	="DYNAMIC MEDIA"	03-Jul-08 02:52 PM	

+="CN98362"	" Subscription costs "	="Department of Defence"	03-Jul-08	="Printed publications"	25-Jun-08	30-May-09	11000.00	=""	="ASSN MARITME AFFAIRS"	03-Jul-08 02:52 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val12000to16000.xls
@@ -1,1 +1,367 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95613"	"HAYES -Temporary staffing services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	31-Jul-08	15500.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:06 AM	

+="CN95618"	"Recruitment Services SES Band 1 General"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	30-May-08	30-Jun-08	12160.50	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:07 AM	

+="CN95620"	"FME for ESRI"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="NAVIGATE PTY LTD"	01-Jul-08 10:07 AM	

+="CN95624"	"Fees for attendance at AC meetings"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Accounting and auditing"	31-Jul-07	31-Jul-08	14999.99	="TRS08/207"	="Paul McGrath"	01-Jul-08 10:08 AM	

+="CN95635"	"Legal Service Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	24-Jun-08	30-Jun-09	13165.90	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:09 AM	

+="CN95641"	"Legal Services Expenditure 6791"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	30-Jun-08	02-Jul-08	14832.01	="TRS06/175"	="DLA PHILLIPS FOX"	01-Jul-08 10:10 AM	

+="CN95655"	"ArcCensus 2006 - 1996 Add on"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="NAVIGATE PTY LTD"	01-Jul-08 10:15 AM	

+="CN95657"	"APSC Panel Access Fee for 2008-09"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Specialised educational services"	01-Jul-08	30-Jun-09	15000.00	="APS COMMISSION 2005/014"	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:15 AM	

+="CN95659"	"FME ESRI Software 1 User licence"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="ESRI Australia Pty Ltd"	01-Jul-08 10:16 AM	

+="CN95670"	"Citrix Presentation Server Enterprise Subscription Renewal and Maintenance"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	23-Jun-08	30-Jun-08	13192.85	="ATM08/1077"	="ZALLCOM PTY LTD"	01-Jul-08 11:10 AM	

+="CN95736"	"coin set"	="Royal Australian Mint"	01-Jul-08	="Mint coin collections"	05-Jun-08	05-Jun-08	14593.70	=""	="ROYAL MINT"	01-Jul-08 01:02 PM	

+="CN95753"	"Consultancy on Library collection shelving."	="Department of Parliamentary Services"	01-Jul-08	="Remedy consultations"	16-Jun-08	31-Dec-08	15950.00	=""	="MoveCorp Australia Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95757"	"Provision of support services for PeopleSoft HRMS"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	30-Jun-08	14031.60	=""	="Oracle Corporation Australia P/L"	01-Jul-08 01:41 PM	

+="CN95760"	"Software licence and maintenance (DPS08054)"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-09	15884.00	=""	="JobFit Systems International P/L"	01-Jul-08 01:42 PM	

+="CN95763"	"Motor vehicles lease June 2008"	="Department of Parliamentary Services"	01-Jul-08	="Motor vehicles"	01-Jun-08	30-Jun-08	12894.11	=""	="LeasePlan"	01-Jul-08 01:43 PM	

+="CN95768-A1"	"Provision of Cleaning Services to the Marion Premises of CRS Australia."	="CRS Australia"	01-Jul-08	="General building and office cleaning and maintenance services"	24-Jul-06	23-Jul-09	15438.40	=""	="Zippy Cleaning & Maintenance"	01-Jul-08 02:00 PM	

+="CN95809"	"placement fee"	="Royal Australian Mint"	01-Jul-08	="Personnel recruitment"	23-Jun-08	23-Jun-08	13723.28	=""	="HAYS PERSONNEL SERVICES P/L"	01-Jul-08 02:42 PM	

+="CN95818"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	12611.54	=""	="TOLL TRANSITIONS"	01-Jul-08 02:59 PM	

+="CN67468"	"Engage contractor to conduct time and management training, Melbourne office."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	29-Apr-08	29-Apr-08	13000.00	=""	="Priority Management"	01-Jul-08 03:35 PM	

+="CN95166"	"Creating a Brand Corporate Identity"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business and corporate management consultation services"	08-Nov-07	07-Aug-08	15840.00	="07/ACMA003"	="Yello Enterprise IG Pty Ltd"	01-Jul-08 04:19 PM	

+="CN95167"	"Peer Review of Economic Modelling Report"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Economic analysis"	26-Jun-08	10-Jul-08	14300.00	="07/ACMA092"	="Frontier Economics Pty Ltd"	01-Jul-08 04:23 PM	

+="CN95846"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft spars"	01-Jul-08	14-Dec-09	14875.18	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	02-Jul-08 08:16 AM	

+="CN95851"	"FUNDING FOR THE INSPECTION OF RADAR 3 BEACON ANTENNA"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	13-Jun-08	30-Jun-08	15808.65	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 08:33 AM	

+="CN95864"	"Cell Assy"	="Defence Materiel Organisation"	02-Jul-08	="Vision protection and accessories"	13-Jun-08	15-Nov-08	13608.31	=""	="ITT CORPORATION DBA I T T NIGHT VIS"	02-Jul-08 08:37 AM	

+="CN95871"	"WP074 IT Installations into RAN Vessels"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	13-Jun-08	31-Dec-08	14080.00	=""	="KAZ GROUP PTY LTD"	02-Jul-08 08:39 AM	

+="CN95894"	"EMERGENCY FIRE PUMP HMAS TOBRUK"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	16-Jun-08	01-Aug-08	12683.00	=""	="WEIR SERVICES AUSTRALIA PTY LTD"	02-Jul-08 08:44 AM	

+="CN95900"	"Professional Legal Fees"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	13-Jun-08	30-Jun-08	12746.80	=""	="BLAKE DAWSON WALDRON"	02-Jul-08 08:45 AM	

+="CN95903"	"STRAP ASSEMBLY"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	14-Jun-08	05-Nov-08	14855.56	=""	="PACIFIC SCIENTIFIC COMPANY DBA HTL/"	02-Jul-08 08:45 AM	

+="CN95913"	"BLANKET ORDER RAISED FOR THE SUPPLY OF MARINE DISTILLATE FUEL TO THE DEPARTMENT"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	16-Jun-08	30-Jun-09	13634.16	=""	="NORTH HAVEN MARINE & FUEL SUPPLIES"	02-Jul-08 08:47 AM	

+="CN95922"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	12360.35	=""	="PREMIER AUTO GROUP"	02-Jul-08 08:50 AM	

+="CN95933"	"SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	01-Jun-09	12154.22	=""	="AGUSTAWESTLAND LTD"	02-Jul-08 08:51 AM	

+="CN95934"	"Testing comp MEAO lifing review activities (2)"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	11-Jun-08	30-Jun-08	12552.10	=""	="QINETIQ NOVARE PTY LTD"	02-Jul-08 08:51 AM	

+="CN95935"	"PORT MAIN AIR COMPRESSOR HMAS TOBRUK"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	11-Jun-08	01-Aug-08	13042.88	=""	="RFD TECHNOLOGIES PTY LTD"	02-Jul-08 08:51 AM	

+="CN95956"	"General audits and biennial ISO 9001:2000 Re-certification of NASPO QMS FY 08/09"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	12-Jun-08	30-Jun-09	14300.00	=""	="SAI GLOBAL LTD"	02-Jul-08 08:56 AM	

+="CN95965"	"TUBE,LOWER"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	01-Jun-09	15088.36	=""	="AGUSTAWESTLAND LTD"	02-Jul-08 08:58 AM	

+="CN95966"	"Power Supply"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	13-Jun-08	29-Nov-08	13923.74	=""	="GENERAL DYNAMICS CANADA LTD"	02-Jul-08 08:58 AM	

+="CN95979"	"Renew Cable Glands on HMAS Brunei"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Jun-08	31-Dec-08	13883.43	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:00 AM	

+="CN95980"	"S&Q02/058 REP test set FLCOS"	="Defence Materiel Organisation"	02-Jul-08	="Measuring and observing and testing instruments"	12-Jun-08	24-Jun-08	14282.72	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:01 AM	

+="CN95981"	"S&Q 02/087 TPT of Engine 7520 & SPT equip"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	17-Jun-08	13954.60	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:01 AM	

+="CN95998"	"Supply electrode for Hamann Sewage Treatment Plant"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	19-Jun-08	31-Dec-08	13838.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:04 AM	

+="CN95999"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	12100.00	=""	="DEFENCE SA"	02-Jul-08 09:04 AM	

+="CN96015"	"Engagement of Mr Ralph Snape to attend iSMART"	="Defence Materiel Organisation"	02-Jul-08	="Trade facilitation"	18-Jun-08	30-Sep-08	12650.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	02-Jul-08 09:08 AM	

+="CN96025"	"replace damaged seat pan"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	04-Sep-08	15496.80	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:10 AM	

+="CN96026"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	14657.45	=""	="PREMIER AUTO GROUP"	02-Jul-08 09:11 AM	

+="CN96050-A1"	"ENGAGE 4D TO ASSIST ICT WITH IT RELOCATIONS"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	15721.09	=""	="4D IT TRAINING"	02-Jul-08 09:17 AM	

+="CN96058"	"WTSS HDGS MAG58 Umbilical Cord Relocation"	="Defence Materiel Organisation"	02-Jul-08	="Gun systems"	17-Jun-08	31-Dec-08	13120.68	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	02-Jul-08 09:18 AM	

+="CN96075"	"Renewal of Sun Microsystems Services for the period 30 Jun 08 - 29 Jun 09."	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	16-Jun-08	29-Jun-09	15500.33	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 09:22 AM	

+="CN96078"	"LEVER MANUAL CONTROL"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	17-Jun-08	20-Dec-08	15752.33	=""	="LCF SYSTEMS INC"	02-Jul-08 09:22 AM	

+="CN96092"	"Cables to interconnect laboratory equipment at JEWOSU in support of HUGPH2.3"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	17-Jun-08	05-Aug-08	13880.68	=""	="ROJONE PTY LTD"	02-Jul-08 09:26 AM	

+="CN96109"	"Training Vouchers"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	18-Jun-08	30-Jun-08	14500.00	=""	="FORREST TRAINING PTY LTD"	02-Jul-08 09:30 AM	

+="CN96110"	"OVEHAUL & MODIFICATION OF EXHAUST CASING"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	31-Dec-08	14451.32	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	02-Jul-08 09:31 AM	

+="CN96111"	"OVERHAUL OF STAGE 2 NOZZLE"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	21-Nov-08	14451.32	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	02-Jul-08 09:31 AM	

+="CN96112"	"OVERHAUL OF STAGE 2 NOZZLE"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	31-Dec-08	14451.32	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	02-Jul-08 09:31 AM	

+="CN96114"	"FILTER CHIP DETECTOR"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	15-Jun-09	14534.01	=""	="AGUSTAWESTLAND LTD"	02-Jul-08 09:31 AM	

+="CN96123"	"LCH Class Test of Capstans & Kedge Winch"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	18-Jun-08	31-Dec-08	12516.11	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:32 AM	

+="CN96144"	"Logistics Flight Supplementation AA"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	01-May-08	30-Jun-08	14270.42	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:35 AM	

+="CN96158"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	30-Apr-08	30-Jun-08	13538.68	=""	="RAYTHEON AUSTRALIA"	02-Jul-08 09:38 AM	

+="CN96163"	"Aircraft Support"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	15400.00	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:39 AM	

+="CN96175"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	12-Nov-07	30-Jun-08	14318.00	=""	="MINTER ELLISON"	02-Jul-08 09:41 AM	

+="CN96176"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	15137.34	=""	="RAYTHEON AUSTRALIA"	02-Jul-08 09:41 AM	

+="CN96211"	"CARIBOU REPAIRABLE ITEMS"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	26-Jun-08	31-Dec-08	15881.90	=""	="SAFE AIR LTD"	02-Jul-08 09:46 AM	

+="CN96217-A2"	"Opt 17 GST on USD Inv: 71038 - Nulka H-Ware USN & RAN"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	28-May-08	30-Jun-10	13028.65	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:47 AM	

+="CN96223"	"LIMB 3 2004-05"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	07-Dec-07	30-Jun-08	13311.61	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 09:48 AM	

+="CN96224"	"REIM OVERSEAS TRAVEL"	="Defence Materiel Organisation"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	27-May-08	17-Jun-08	13196.96	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:48 AM	

+="CN96236-A1"	"Part 4 Task 84 - IMU Flight Vehicle"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	12-Nov-07	30-Jun-08	14353.90	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:51 AM	

+="CN96256"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS PARRAMATTA DURING DSRA02/IMAV02"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	05-Jun-08	11-Nov-08	12899.90	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:54 AM	

+="CN96261"	"TASK 64-4 Provision of extra Ship's attitude and positional data outputs"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	07-Aug-06	30-Dec-08	15945.72	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 09:55 AM	

+="CN96262"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	14731.38	=""	="PREMIER AUTO GROUP"	02-Jul-08 09:56 AM	

+="CN96273"	"HUON FAMP 01/08 CONDUCTED JUN/JUL 08"	="Defence Materiel Organisation"	02-Jul-08	="Marine craft systems and subassemblies"	18-Jun-08	31-Jul-08	15643.96	=""	="THALES AUSTRALIA"	02-Jul-08 09:57 AM	

+="CN96275"	"Professional Legal Fees"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	24-Jun-08	30-Jun-08	13938.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 09:57 AM	

+="CN96286"	"Davit Air Motor Service"	="Defence Materiel Organisation"	02-Jul-08	="Transportation services equipment"	12-May-08	30-Jun-08	14973.33	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 09:59 AM	

+="CN96307"	"BOOM ASSY, TPL COVER, GASKET (SPARES FOR HELMET)"	="Defence Materiel Organisation"	02-Jul-08	="Face and head protection"	07-Jun-08	10-Nov-08	15603.62	=""	="TRANSAERO INC."	02-Jul-08 10:03 AM	

+="CN96318"	"DELIVER OF TECHNICAL DATA PACK PART OF CCP022"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	10-Jun-08	30-Jun-08	12740.20	=""	="THALES AUSTRALIA"	02-Jul-08 10:04 AM	

+="CN96335"	"Use of Exisitng ASP Contract  - York Refrigeration Spares"	="Defence Materiel Organisation"	02-Jul-08	="Industrial refrigeration"	30-May-08	03-Jul-08	12318.69	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 10:06 AM	

+="CN96336"	"CUFFS & ACCESSORIES FOR MONITOR, PATIENT VITAL SIG"	="Defence Materiel Organisation"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	30-May-08	30-Jun-08	12259.24	=""	="WELCH ALLYN AUSTRALIA PTY LTD"	02-Jul-08 10:06 AM	

+="CN96344"	"CHANGES TO THE TECHNICAL RISK MANAGEMENT SYSTEM"	="Defence Materiel Organisation"	02-Jul-08	="Software"	13-May-08	31-Jul-08	12507.00	=""	="EPPS SOFTWARE PTY LTD"	02-Jul-08 10:08 AM	

+="CN96348"	"MANOORA GYRO UPS URDEF"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	29-Nov-07	21-Dec-07	14644.34	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:08 AM	

+="CN96342"	"blackhawk engine spares: 5310-01-102-8856 nut qty 280. 5310-01-090-3076 washer qty 211. 2840-01-249-1069 seal qty 1."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	18-Jun-08	23-Jul-08	15580.50	=""	="asia pacific aerospace"	02-Jul-08 10:08 AM	

+="CN96353"	"Contact Dave Baker 8924 2200"	="Defence Materiel Organisation"	02-Jul-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	29-May-08	30-Jun-08	12070.00	=""	="OILCHECK PTY LTD"	02-Jul-08 10:09 AM	

+="CN96354"	"Provision of HMAS Sydney Long Lead Time Contractor Furnished Material for IMAV-24"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	18-Jun-08	30-Jun-08	15617.37	=""	="THALES AUSTRALIA"	02-Jul-08 10:09 AM	

+="CN96359"	"Task backlog"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	29-Jun-08	13360.46	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:10 AM	

+="CN96377"	"pc9 aircraft spares - Supply of PC9 Spares Standing Offer 0802-243-37"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	29-May-08	30-May-08	15085.81	=""	="PILATUS AIRCRAFT LTD"	02-Jul-08 10:12 AM	

+="CN96397"	"HMAS YARRA REFIT DOCKING 2008"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	06-May-08	31-May-08	15000.37	=""	="THALES AUSTRALIA"	02-Jul-08 10:15 AM	

+="CN96370"	"Design Exhibit"	="Department of the House of Representatives"	02-Jul-08	="Exhibitions"	21-May-08	05-Jun-08	13940.30	=""	="Andrew Rankin Design Assoc Pty Ltd"	02-Jul-08 10:15 AM	

+="CN96404"	"Ration Pack Component"	="Defence Materiel Organisation"	02-Jul-08	="Dairy products and eggs"	26-Jun-08	31-Oct-08	13247.86	=""	="BONLAC FOODS LIMITED"	02-Jul-08 10:16 AM	

+="CN96423"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	12022.96	=""	="PREMIER AUTO GROUP"	02-Jul-08 10:41 AM	

+="CN96433"	"Internet usage"	="Department of the House of Representatives"	02-Jul-08	="Internet services"	01-Apr-08	30-Apr-08	13652.51	=""	="Dept Parliamentary Services"	02-Jul-08 11:33 AM	

+="CN96475"	"Audit Services"	="Centrelink"	02-Jul-08	="Accounting and auditing"	24-Jun-08	30-Jun-08	13665.00	=""	="Walterturnbull"	02-Jul-08 12:20 PM	

+="CN96485"	"Natural Gas"	="Centrelink"	02-Jul-08	="Utilities"	16-Jun-08	30-Jun-08	15400.00	=""	="AGL Energy Sales and Marketing Ltd"	02-Jul-08 12:22 PM	

+="CN96538"	"Temporary employment"	="Australian Public Service Commission"	02-Jul-08	="Human resources services"	25-Jun-08	27-Jun-08	13750.00	=""	="Hudson Global Resources (Aust) P/L"	02-Jul-08 12:40 PM	

+="CN96549"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	19-Mar-08	23-Apr-08	13200.00	="APS COMMISSION 2005/014"	="Anne Jenkin & Associates Pty Ltd"	02-Jul-08 12:43 PM	

+="CN96577"	"PEP Training"	="Department of Defence"	02-Jul-08	="Education and Training Services"	16-Jun-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	02-Jul-08 01:29 PM	

+="CN96582"	"Safety Coordinator & Advisor  Course - Darwin 10-19Sept08"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	19-Sep-08	15628.84	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:29 PM	

+="CN96584"	"Safety Coordinator & Advisor  Course - Darwin 27May - 5 Jun 09"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	05-Jun-09	15628.80	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:29 PM	

+="CN96610"	"GYM EQUIPMENT"	="Department of Defence"	02-Jul-08	="Fitness equipment"	18-Jun-08	20-Jun-08	15218.50	=""	="BLISS FITNESS SYSTEMS"	02-Jul-08 01:31 PM	

+="CN96614"	"NEWS ARTICLES FOR DEFENCE NEWSPAPERS"	="Department of Defence"	02-Jul-08	="Printed media"	18-Jun-08	30-Jun-09	12000.00	=""	="BILL CUNNEEN"	02-Jul-08 01:32 PM	

+="CN96615"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	14137.20	=""	="MCR COMPUTER RESOURCES PTY LTD"	02-Jul-08 01:32 PM	

+="CN96620"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	13066.32	=""	="MIDDLE RIDGE STATE SCHOOL"	02-Jul-08 01:32 PM	

+="CN96632"	"safety courses and travel"	="Department of Defence"	02-Jul-08	="Travel facilitation"	18-Jun-08	07-Sep-08	15932.05	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:34 PM	

+="CN96639"	"WORK PLACE ASSESSORS COURSE"	="Department of Defence"	02-Jul-08	="Human resources services"	18-Jun-08	27-Jun-08	13608.00	=""	="STRATEGIC MINING"	02-Jul-08 01:35 PM	

+="CN96643"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	13600.40	=""	="ST ANDREW'S CATHOLIC SCHOOL"	02-Jul-08 01:35 PM	

+="CN96663"	"Asbestos removal"	="Department of Defence"	02-Jul-08	="Environmental control systems"	18-Jun-08	30-Jun-08	14191.65	=""	="RESOLVE FM"	02-Jul-08 01:36 PM	

+="CN96668"	"PRIORITY COURIER SERVICES FOR RAAF BASE TOWNSVILLE"	="Department of Defence"	02-Jul-08	="Mailing services"	18-Jun-08	30-Jun-09	13200.00	=""	="TOLL PRIORITY"	02-Jul-08 01:37 PM	

+="CN96689"	"PRINTING"	="Department of Defence"	02-Jul-08	="Printed media"	18-Jun-08	30-Jun-08	12397.72	=""	="NATIONAL CAPITAL PRINTING"	02-Jul-08 01:38 PM	

+="CN96690"	"PRICING AS PER QUOTE AND INVOICE 55497"	="Department of Defence"	02-Jul-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	16-Jun-08	16-Jun-08	14796.10	=""	="BAC SYSTEMS PTY LTD"	02-Jul-08 01:38 PM	

+="CN96700"	"Various audio visual equipment"	="Family Court of Australia"	02-Jul-08	="Audio visual equipment accessories"	01-Jul-08	01-Aug-08	14335.86	=""	="NoiseBox"	02-Jul-08 01:41 PM	

+="CN96717"	"MULTI ROLE HELICOPTER FACILITIES. GML:DEHP ENGAGEMENT FOR G HANGAR HERITAGE ASSESSME"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	12342.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	02-Jul-08 01:41 PM	

+="CN96727"	"PLASMA TV"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	24-Jun-08	14117.20	=""	="VIVID TECHNOLOGIES AUSTRALIA"	02-Jul-08 01:42 PM	

+="CN96730"	"ROUTINE VETERINARY SERVICES"	="Department of Defence"	02-Jul-08	="Veterinary nutritional supplement"	18-Jun-08	30-Jun-08	14300.00	=""	="TANILBA BAY VETERINARY"	02-Jul-08 01:43 PM	

+="CN96731"	"FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	17-Jun-08	25-Jun-08	12226.50	=""	="DIRECT ERGONOMICS PTY LTD"	02-Jul-08 01:43 PM	

+="CN96741"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	12605.84	=""	="ST THOMAS MORE'S PRIMARY SCHOOL"	02-Jul-08 01:43 PM	

+="CN96742"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	11-Jun-08	30-Jun-08	15409.00	=""	="TNT EXPRESS"	02-Jul-08 01:43 PM	

+="CN96743"	"For ICT Installation for F3-G"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	27-Jun-08	13420.55	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	02-Jul-08 01:44 PM	

+="CN96747"	"Lexmark Toner Cartridges"	="Department of Defence"	02-Jul-08	="Office machines and their supplies and accessories"	17-Jun-08	25-Jun-08	13554.86	=""	="CORPORATE EXPRESS"	02-Jul-08 01:44 PM	

+="CN96777"	"HMAS STIRLING REDEVELOPMENT STAGE 3A."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	15072.20	=""	="SPARKE HELMORE LAWYERS"	02-Jul-08 01:45 PM	

+="CN96787"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	07-Feb-08	30-Jun-08	12147.72	=""	="ROSS"	02-Jul-08 01:46 PM	

+="CN96789"	"DSTO is undertaking R & D and client sponsored activities that require experimental studies"	="Department of Defence"	02-Jul-08	="Adhesives and sealants"	17-Jun-08	30-Jun-08	15400.00	=""	="FORTBURN PTY LTD"	02-Jul-08 01:46 PM	

+="CN96797"	"Project Management for Task MSTC4"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	10-Jun-08	30-Jun-08	15899.40	=""	="BLUE SWIMMER CONSULTING"	02-Jul-08 01:47 PM	

+="CN96804"	"TELSTRA VIDCON LINE FEES"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	24-Jun-08	14585.59	=""	="TELSTRA CORPORATION (ACCOUNTS)"	02-Jul-08 01:47 PM	

+="CN96824"	"GL 2.1 - back maintenance for development license"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	20-Jun-08	13530.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:48 PM	

+="CN96833"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	30-Jun-08	14634.40	=""	="AXIOM DATA LOGGING SYSTEMS PTY LTD"	02-Jul-08 01:49 PM	

+="CN96835"	"POC: MICHAEL SULLIVAN CONTACT: 02 626 50662"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	13195.99	=""	="LUCID IT PTY LTD"	02-Jul-08 01:49 PM	

+="CN96851"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Human resources services"	17-Jun-08	01-Aug-08	15214.53	=""	="DRAKE INTERNATIONAL"	02-Jul-08 01:50 PM	

+="CN96860"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	12605.84	=""	="ST BENEDICTS CATHOLIC PRIMARY"	02-Jul-08 01:51 PM	

+="CN96862"	"Services Network and IT Engineers and Technicians"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	12-May-08	13-Jun-08	14627.69	=""	="4D IT TRAINING"	02-Jul-08 01:51 PM	

+="CN96871"	"SUPPLY OF A/C UNITS"	="Department of Defence"	02-Jul-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	24-Jun-08	30-Jun-08	12430.00	=""	="TEMPERZONE AUSTRALIA"	02-Jul-08 01:51 PM	

+="CN96881"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:52 PM	

+="CN96883"	"PSP:STEPHEN BERGMAN PERIOD:04/02/08 - 11/07/08"	="Department of Defence"	02-Jul-08	="Project management"	13-Jun-08	31-Aug-08	13114.38	=""	="BOOZ & COMPANY (AUSTRALIA) LTD"	02-Jul-08 01:52 PM	

+="CN96892"	"SA2480 - Asbestos Removal - DSTO EDN Technical Authority: Fess Parker"	="Department of Defence"	02-Jul-08	="Environmental management"	24-Jun-08	30-Jun-08	13750.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:52 PM	

+="CN96896"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:52 PM	

+="CN96905"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:53 PM	

+="CN96912"	"DISPOSAL OF FORTUNA, BENDIGO, VICTORIA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	13530.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	02-Jul-08 01:54 PM	

+="CN96923"	"Computer goods"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	20-Jun-08	14300.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:54 PM	

+="CN96933"	"Riverina Murray Valley - KMA Environmental Management System"	="Department of Defence"	02-Jul-08	="Project management"	12-Nov-07	30-Jun-09	13105.70	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 01:55 PM	

+="CN96949"	"ISO 9001:2001 CERTIFICATION OF THE IM."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-09	15400.00	=""	="DLIQ"	02-Jul-08 01:56 PM	

+="CN96950"	"VR Link Run Time Licence 12 months support"	="Department of Defence"	02-Jul-08	="Computer services"	12-Jun-08	20-Jun-08	13200.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:56 PM	

+="CN96953"	"Perforator Machines"	="Department of Defence"	02-Jul-08	="Electronic manufacturing machinery and equipment and accessories"	12-Jun-08	25-Jul-08	13134.00	=""	="ADAMS RUBBER STAMP CO"	02-Jul-08 01:56 PM	

+="CN96958"	"DeBI Integration Team for MLFF Interfaces"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	15-May-08	29-Aug-08	13728.88	=""	="IBM AUSTRALIA LTD"	02-Jul-08 01:57 PM	

+="CN96983"	"Fibers"	="Department of Defence"	02-Jul-08	="Fibres and threads and yarns"	13-Jun-08	18-Sep-08	13898.40	=""	="NUFERN DBA NUFERN INC."	02-Jul-08 01:58 PM	

+="CN96988"	"AACAP - ION 18063"	="Department of Defence"	02-Jul-08	="Fluid and gas distribution"	29-May-08	30-Jun-08	13200.00	=""	="BOC LIMITED"	02-Jul-08 01:58 PM	

+="CN96993"	"Plan for historic gun collection"	="Department of Defence"	02-Jul-08	="Environmental control systems"	30-Nov-07	30-Jun-08	15950.00	=""	="RESOLVE FM"	02-Jul-08 01:59 PM	

+="CN96995"	"SINGLELEAP. BOXES2MOVE."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-08	13837.25	=""	="BOXES 2 MOVE PTY LTD"	02-Jul-08 01:59 PM	

+="CN96997"	"AUDIO VISUAL EQUIPMENT AND INSTALLATION"	="Department of Defence"	02-Jul-08	="Audio and visual presentation and composing equipment"	27-May-08	30-Jun-08	15667.10	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 01:59 PM	

+="CN97019"	"CONTACT NEV IRISH 08 8935  4468."	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	12-Jun-08	30-Jun-08	12756.56	=""	="SERCO SODEXHO DEFENCE SERVICES"	02-Jul-08 02:02 PM	

+="CN97029"	" Project support costs "	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Nov-07	30-Jun-08	15400.00	=""	="INTEGRAL CONSULTING SERVICES"	02-Jul-08 02:02 PM	

+="CN97031"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:02 PM	

+="CN97033"	"ROAD CHTR OP SLIPPER MRE 4RAR"	="Department of Defence"	02-Jul-08	="Railway and tramway cars"	24-Jun-08	30-Jun-08	14609.32	=""	="ROD PILON TRANSPORT"	02-Jul-08 02:02 PM	

+="CN97036"	"ANALYSIS, DESIGN, BUILD, TESTING AND IMPLEMENTATIO UNDERGRADUATE PAGE IN THE EDUCATION SECTION OF TH"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	13695.00	=""	="VISUAL JAZZ PTY LTD"	02-Jul-08 02:03 PM	

+="CN97039"	"GROCERIES / FISH FOR EXERCISE ACCOUNT TSV 05/07"	="Department of Defence"	02-Jul-08	="Confectionary products"	17-Jun-08	30-Jun-08	13937.94	=""	="BID VEST BURLEIGH MARR"	02-Jul-08 02:03 PM	

+="CN97040"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	26-Jun-08	13377.24	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:03 PM	

+="CN97065"	"BOOKSHLEVES - NEW FACILITY"	="Department of Defence"	02-Jul-08	="Office and desk accessories"	24-Jun-08	30-Jun-08	13283.85	=""	="COLIN JOSS & CO PTY LTD"	02-Jul-08 02:05 PM	

+="CN97089"	"LIGHTING EQUIPMENT"	="Department of Defence"	02-Jul-08	="Lighting and fixtures and accessories"	12-Jun-08	30-Jun-08	14253.80	=""	="AIRPORT LIGHTING SPECIALISTS"	02-Jul-08 02:07 PM	

+="CN97094"	"MEDIA EDUCATION TRAINING"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	14181.75	=""	="UNIVERSAL MCCANN"	02-Jul-08 02:07 PM	

+="CN97111"	"VEGETATION MNGT - WEEDS & REHABILITATION ECTA, GBTA, WBTA AND PURGA"	="Department of Defence"	02-Jul-08	="Environmental management"	12-Nov-07	30-Jun-08	13173.78	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 02:08 PM	

+="CN97121"	"HIRE OF CONTAINERS IN SUPPORT OF AACAP"	="Department of Defence"	02-Jul-08	="Containers and storage"	22-Apr-08	30-Sep-08	12155.00	=""	="ROYAL WOLF TRADING AUSTRALIA"	02-Jul-08 02:09 PM	

+="CN97128"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Jun-08	13200.00	=""	="PROGRAM IT PTY LTD"	02-Jul-08 02:09 PM	

+="CN97134"	"Network Equipment"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	13-Jun-08	01-Jul-08	13530.90	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	02-Jul-08 02:09 PM	

+="CN97135"	"Parthenium Control"	="Department of Defence"	02-Jul-08	="Environmental Services"	12-Jun-08	27-Jun-08	15975.96	=""	="GREENING AUSTRALIA (QLD)"	02-Jul-08 02:10 PM	

+="CN97138"	"SWBTA Infrastructure Weed Control"	="Department of Defence"	02-Jul-08	="Environmental Services"	12-Jun-08	27-Jun-08	12183.96	=""	="GREENING AUSTRALIA (QLD)"	02-Jul-08 02:10 PM	

+="CN97143"	"COURSE ACCOMODATION - HOLSWORTHY"	="Department of Defence"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	13-Jun-08	30-Jun-08	12348.49	=""	="COMFORT INN HUNTS LIVERPOOL"	02-Jul-08 02:10 PM	

+="CN97146"	"NQ2235 - LAV - Regional Manager Office Refit."	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	15167.19	=""	="SPOTLESS"	02-Jul-08 02:10 PM	

+="CN97148"	"PROVISION OF ELECTRICAL WORKS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	24-Jun-08	30-Jun-08	15259.20	=""	="DIVERSE DATA COMMUNICATIONS"	02-Jul-08 02:10 PM	

+="CN97156"	"LIGHTING EQUIPMENT"	="Department of Defence"	02-Jul-08	="Lamps and lightbulbs and lamp components"	13-Jun-08	31-Jul-08	14112.12	=""	="TLE ELECTRICAL"	02-Jul-08 02:11 PM	

+="CN97160"	"Cables"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	06-May-08	30-May-08	12232.37	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	02-Jul-08 02:11 PM	

+="CN97163"	"MATTRESS"	="Department of Defence"	02-Jul-08	="Accommodation furniture"	30-Jun-08	30-Jun-08	12870.00	=""	="SLEEP FIRM  AUSTRALIA"	02-Jul-08 02:11 PM	

+="CN97172"	"Electronic Devices"	="Department of Defence"	02-Jul-08	="Office supplies"	06-May-08	20-May-08	14000.00	=""	="DEFCOMSEC EA"	02-Jul-08 02:11 PM	

+="CN97173"	"VEHICLE LEASE - FLLA B"	="Department of Defence"	02-Jul-08	="Motor vehicles"	07-Jun-08	15-Jun-08	12482.41	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97176"	"VEHICLE LEASE - FLLA K"	="Department of Defence"	02-Jul-08	="Motor vehicles"	07-Jun-08	15-Jun-08	13890.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:12 PM	

+="CN97182"	"HERTZ DOMESTIC TRAVEL ACCT 0002950346 24-5-08"	="Department of Defence"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	24-May-08	03-Jul-08	13071.73	=""	="HERTZ AUSTRALIA PTY LTD"	02-Jul-08 02:12 PM	

+="CN97188"	"driver"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	20-Jun-08	15147.00	=""	="ROJONE PTY LTD"	02-Jul-08 02:12 PM	

+="CN97189"	"Provision of services of medical officer to AWHC"	="Department of Defence"	02-Jul-08	="Physical and occupational therapy and rehabilitation products"	05-May-08	30-Jun-08	12715.65	="931"	="CHANDLER MACLEOD GROUP"	02-Jul-08 02:13 PM	

+="CN97206"	"PROVISION OF PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	30-Jun-08	12387.32	=""	="ANITECH"	02-Jul-08 02:14 PM	

+="CN97217"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	31-Jul-09	14912.05	=""	="PATHWAY CONSULTANTS PTY LTD"	02-Jul-08 02:15 PM	

+="CN97228"	"Aircraft Charter IPP Camp"	="Department of Defence"	02-Jul-08	="Aircraft"	28-May-08	28-May-08	13780.00	=""	="HARDY AVIATION (NT) PTY LTD"	02-Jul-08 02:16 PM	

+="CN97230"	"installation of office furniture"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	27-May-08	27-May-08	15248.20	=""	="CAM SHELVING OFFICE INTERIORS"	02-Jul-08 02:16 PM	

+="CN97238"	"senior mo raaf base williamtown"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	02-Jun-08	31-Dec-10	12375.00	=""	="DR MICHAEL O'DONOGHUE"	02-Jul-08 02:17 PM	

+="CN97240"	"senior mo raaf base williamtown"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	19-May-08	31-Dec-10	12375.00	=""	="DR MICHAEL O'DONOGHUE"	02-Jul-08 02:17 PM	

+="CN97244"	"MEDICAL OFFICER FY07/08-10/11"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	12-May-08	31-Dec-10	14497.44	=""	="J STEPHENSON"	02-Jul-08 02:17 PM	

+="CN97245"	"Bunk Beds required in support of Ex. Pitch Black."	="Department of Defence"	02-Jul-08	="Accommodation furniture"	13-Jun-08	30-Jun-08	14162.50	=""	="BEDPOST"	02-Jul-08 02:17 PM	

+="CN97248"	"Senior Medical Officer FY 07/08 - FY10/11"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	08-May-08	31-Dec-10	13282.50	=""	="DARRELL J DUNCAN"	02-Jul-08 02:17 PM	

+="CN97264"	"TOOLS AND CONSUMABLES FOR WORKSHOPS - FLLA A"	="Department of Defence"	02-Jul-08	="Tools and General Machinery"	27-May-08	14-Jun-08	13073.77	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:19 PM	

+="CN97265"	"RIFLE ACCESSORY KITS"	="Department of Defence"	02-Jul-08	="Arms and ammunition accessories"	13-Jun-08	16-Jun-08	13703.00	=""	="MACKAY SHOOTERS SUPPLIES"	02-Jul-08 02:19 PM	

+="CN97287"	"Farnell Parts"	="Department of Defence"	02-Jul-08	="Tools and General Machinery"	13-Jun-08	18-Jun-08	13146.65	=""	="FARNELL IN ONE"	02-Jul-08 02:20 PM	

+="CN97288"	"ADDP3.11-CIMIC - ADF Joint Doctrine Publication Publication Development & Authoring"	="Department of Defence"	02-Jul-08	="Manufacturing support services"	03-Jun-08	31-Aug-08	15242.00	=""	="NOETIC SOLUTIONS PTY LTD"	02-Jul-08 02:20 PM	

+="CN97290"	"Personnel efficiency program with Outlook"	="Department of Defence"	02-Jul-08	="Medical training and education supplies"	30-Apr-08	08-Jun-08	15400.00	=""	="D'ARCY CONSULTING GROUP"	02-Jul-08 02:20 PM	

+="CN97296"	"Panasonic Ruggedised Laptops, Optical Drives, Case"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	28-May-08	27-Jun-08	15721.00	=""	="DEFENCE MATERIEL ORGANISATION -"	02-Jul-08 02:21 PM	

+="CN97301"	"EXTERNAL HARD DRIVES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	12100.00	=""	="CHUBB SECURITY AUST PTY LTD"	02-Jul-08 02:21 PM	

+="CN97317"	"Provide a report on the integrity of buildings to the NT Code for buildings in cyclone areas"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	30-Jun-07	30-Jun-07	13395.80	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 02:22 PM	

+="CN97341"	"MISC. ASLAV REFRIGERATION COMPONENTS"	="Department of Defence"	02-Jul-08	="Electronic hardware and component parts and accessories"	19-Jun-08	30-Jun-08	12958.00	=""	="NORCOAST REFRIGERATION COMPANY"	02-Jul-08 02:24 PM	

+="CN97356"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	19-Jun-08	12271.60	=""	="ST JOSEPH'S SCHOOL"	02-Jul-08 02:25 PM	

+="CN97386"	"WORKSTATION LICENSE"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	19-Jun-08	14520.00	=""	="CAYLX SOFTWARE PACIFIC PTY LTD"	02-Jul-08 02:27 PM	

+="CN97387"	"Design Consultant for the Special Operations Working Accommodation Project"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	12688.50	=""	="GROUP GSA PTY LTD"	02-Jul-08 02:27 PM	

+="CN97390"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	28-Mar-09	12552.64	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 02:27 PM	

+="CN97394"	"Industrial Gas"	="Department of Defence"	02-Jul-08	="Elements and gases"	18-Jun-08	25-Jun-08	15396.45	=""	="BOC GASES AUSTRALIA LTD"	02-Jul-08 02:28 PM	

+="CN97403"	"Annual support and warranty agreement"	="Department of Defence"	02-Jul-08	="Specialised educational services"	26-May-08	30-Jun-09	14282.40	=""	="KEEPAD INTERACTIVE"	02-Jul-08 02:28 PM	

+="CN97405"	"Provision of services of medical officer to AWHC"	="Department of Defence"	02-Jul-08	="Physical and occupational therapy and rehabilitation products"	05-May-08	30-Jun-08	12944.19	="931"	="CHANDLER MACLEOD GROUP"	02-Jul-08 02:29 PM	

+="CN97409"	"PHYSICAL RF SURVEY BLD C6 BULIMBA BKS"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	18-Jun-08	30-Jun-08	13988.89	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:29 PM	

+="CN97410"	"TECHNICAL ADVISER FOR MARRANGAROO ARMY DEPOT STAGE 3 REMEDIATION AND AVLIDATION WORKS, NSW"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	14566.20	=""	="ENSR AUSTRALIA PTY LTD"	02-Jul-08 02:29 PM	

+="CN97414"	"LAVERTON STAGE 2 TECHNICAL ADVISER 2006-07"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	14571.70	=""	="GUTTERIDGE HASKINS AND DAVEY PTY LT"	02-Jul-08 02:30 PM	

+="CN97422"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management advisory services"	28-Feb-08	30-Jun-09	14533.41	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	02-Jul-08 02:30 PM	

+="CN97424"	"CHP"	="Department of Defence"	02-Jul-08	="Patient care and treatment products and supplies"	12-Nov-07	30-Jul-08	14000.00	=""	="DR MALCOLM WALLACE"	02-Jul-08 02:31 PM	

+="CN97432"	"CONSTRUCTION & MAINTENANCE WORKS"	="Department of Defence"	02-Jul-08	="Environmental Services"	28-Apr-08	30-Jun-08	15282.30	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:31 PM	

+="CN97439"	"Telecommunication Equipment"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	26-Sep-08	13477.20	=""	="THE GOOD GUYS"	02-Jul-08 02:32 PM	

+="CN97448"	"14 FRONT PAGE RECRUITING EDITORIALS ACROSS REGIONA NSW. ADSIZE 12 X 8 + LOADING IS BEING EXCLUDED."	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	12558.03	=""	="APN NEWS AND MEDIA"	02-Jul-08 02:33 PM	

+="CN97453"	"Recruitment services"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	19-Jun-08	29-Aug-08	14019.72	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 02:33 PM	

+="CN97463"	"TRAINING"	="Department of Defence"	02-Jul-08	="Industrial Production and Manufacturing Services"	19-Jun-08	19-Jul-08	14461.34	=""	="TENIX TOLL DEFENCE LOGISTICS"	02-Jul-08 02:34 PM	

+="CN97497"	"Project Management software"	="Department of Defence"	02-Jul-08	="Software"	10-Jun-08	30-Jun-08	12793.00	=""	="FORTES SOLUTIONS AUSTRALIA PTY LTD"	02-Jul-08 02:37 PM	

+="CN97501"	"Accomodation for Resman course"	="Department of Defence"	02-Jul-08	="Hotels and lodging and meeting facilities"	10-Jun-08	11-Jun-08	12120.01	=""	="TOP CHOICE TRAVEL BOOKING CENTRE"	02-Jul-08 02:37 PM	

+="CN97509"	"NQ1535 - Roads of Access."	="Department of Defence"	02-Jul-08	="Roads and landscape"	10-Jun-08	18-Jun-08	13200.00	=""	="CHARTERS TOWERS REGIONAL COUNCIL"	02-Jul-08 02:38 PM	

+="CN97511"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	24-Jun-08	12394.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:38 PM	

+="CN97521"	"TONERS FOR PRINTERS - LEXMARK, EPSON, KYOCERA, TALLY"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Jun-08	30-Jun-08	13227.83	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	02-Jul-08 02:39 PM	

+="CN97524"	"ANNUAL  HARDWARE MAINTENANCE RENEWAL FOR HQTTC"	="Department of Defence"	02-Jul-08	="Computer services"	19-Jun-08	30-Jun-09	14485.90	=""	="XSI DATA SOLUTIONS PTY LTD"	02-Jul-08 02:40 PM	

+="CN97540"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	10-Jun-08	10-Jun-08	12779.11	=""	="AITKENVALE STATE PRIMARY SCHOOL"	02-Jul-08 02:41 PM	

+="CN97544"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	10-Jun-08	10-Jun-08	12779.11	=""	="HEATLEY STATE PRIMARY SCHOOL"	02-Jul-08 02:42 PM	

+="CN97545"	"Aircraft Technical Support"	="Department of Defence"	02-Jul-08	="Aircraft equipment"	19-Jun-08	30-Jun-08	15770.40	=""	="COMPUTER MANUFACTURING & INTERGRATI"	02-Jul-08 02:42 PM	

+="CN97570"	"SUPPLY & FIT GATES"	="Department of Defence"	02-Jul-08	="General building construction"	10-Jun-08	01-Jul-08	13832.50	=""	="D&B ZAKNIC CONSTRUCTIONS"	02-Jul-08 02:45 PM	

+="CN97593"	"PUBLISHING OF AUTOBIOGRAPHY"	="Department of Defence"	02-Jul-08	="Printing and publishing equipment"	11-Jun-08	29-Jun-08	12934.82	=""	="NATIONAL CAPITAL PRINTING"	02-Jul-08 02:47 PM	

+="CN97594"	"STORAGE AND BACKUP SOLUTION"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	12472.90	=""	="UNITECH IT SOLUTIONS"	02-Jul-08 02:47 PM	

+="CN97601"	"Replacing existing items in R3 all ranks mess (Las"	="Department of Defence"	02-Jul-08	="Domestic kitchenware"	11-Jun-08	30-Jun-08	12144.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:48 PM	

+="CN97605"	"supply of sra groceries brisbane"	="Department of Defence"	02-Jul-08	="Processed and prepared meats"	30-Jun-08	30-Jun-08	15950.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	02-Jul-08 02:48 PM	

+="CN97619"	"TRANSITION ENTITILEMENT-AVM JOHN BLACKBURN 8022726"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	11-Jun-08	13750.00	=""	="DBM AUSTRALIA"	02-Jul-08 02:49 PM	

+="CN97622"	"Office Machines"	="Department of Defence"	02-Jul-08	="Office machines and their supplies and accessories"	17-Jun-08	30-Jun-08	12038.40	=""	="KONICA MINOLTA BUSINESS SOLUTIONS"	02-Jul-08 02:49 PM	

+="CN97623"	"FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	11-Jun-08	30-Jun-08	15790.01	=""	="SLEEP DOCTOR"	02-Jul-08 02:49 PM	

+="CN97631"	"Score Helpdesk and Support - for use of CJLOG and Approval to pay M. Dewaard 10 Jun 08"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	30-Jun-09	14300.00	=""	="OCEAN SOFTWARE PTY LTD"	02-Jul-08 02:50 PM	

+="CN97666"	" Reimbersable Costs - assosiated with consultancy services "	="Family Court of Australia"	02-Jul-08	="Strategic planning consultation services"	26-Jun-08	31-Jul-08	14159.89	=""	="Jones Lang Lasalle"	02-Jul-08 02:54 PM	

+="CN97676"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	14398.03	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:54 PM	

+="CN97678"	"ATSOC TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	30-Jun-08	13200.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	02-Jul-08 02:55 PM	

+="CN97680"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	12605.84	=""	="HOLY SPIRIT & GOOD SHEPHERD"	02-Jul-08 02:55 PM	

+="CN97692"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	14290.10	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	02-Jul-08 02:56 PM	

+="CN97698"	"TIED WORK"	="Department of Defence"	02-Jul-08	="Legal services"	11-Jun-08	30-Jun-09	12008.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 02:56 PM	

+="CN97699"	"HOLSWORTHY - SPECIAL OPERATIONS WORKING ACCOMODATI REDEVELOPMENT STAGE 1"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	15130.79	=""	="ACC TECHNOLOGIES"	02-Jul-08 02:56 PM	

+="CN97701"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	12605.84	=""	="HOLY SPIRIT & GOOD SHEPHERD"	02-Jul-08 02:56 PM	

+="CN97702"	"PROVIDE ADI FOR HR2 DRIVERS COURSE 5-27 JUNE 2008"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	30-Jun-08	12105.00	=""	="WODONGA INSTITUTE OF TAFE"	02-Jul-08 02:56 PM	

+="CN97713"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	13256.10	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97722"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	13256.10	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:58 PM	

+="CN97727"	"HP xw8600 Xeon 5260 (3.33), 4Gb, 5x300Gb, DVDROM, XP and Delivery"	="Department of Defence"	02-Jul-08	="Hardware"	17-Jun-08	20-Jun-08	12105.50	=""	="BUSINESS COMPUTERS OF AUST PTY LTD"	02-Jul-08 02:58 PM	

+="CN97731"	"S5101, WR 300084240. Consultancy for Victoria Barr Conditioning Upgrade."	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Jun-08	13035.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:59 PM	

+="CN97740"	"ICT Strategic Professional Services"	="National Native Title Tribunal"	02-Jul-08	="Business and corporate management consultation services"	03-Aug-07	30-Oct-07	14439.15	=""	="Fujitsu Australia Ltd"	02-Jul-08 03:30 PM	

+="CN97742"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	13540.21	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	02-Jul-08 03:37 PM	

+="CN97747-A1"	"Provision of cleaning services to the Strathpine and Redcliffe premises of CRS Australia."	="CRS Australia"	02-Jul-08	="General building and office cleaning and maintenance services"	01-Jul-08	30-Jun-09	13095.50	=""	="Stefan Lawrence Cleaning Co Pty Ltd"	02-Jul-08 04:40 PM	

+="CN97748"	"Professional Contractor Services"	="National Native Title Tribunal"	02-Jul-08	="Recruitment services"	01-Jul-07	09-Nov-07	13482.18	=""	="Hay Information Technology"	02-Jul-08 04:42 PM	

+="CN97761"	"lighting & electrical supplies for top."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	20-Jun-08	30-Jun-09	15000.00	=""	="Project Lighting Pty Ltd"	02-Jul-08 04:43 PM	

+="CN97768"	"Executive attending Leadership Across Borders/APSC Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	18-Jun-08	30-Jun-08	13400.00	=""	="AUST PUBLIC SERVICE COMMISSION"	02-Jul-08 04:44 PM	

+="CN97770"	"Painting NTER Training Room"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Paints and primers and finishes"	19-Jun-08	30-Jun-08	14250.00	=""	="Ingkerreke Outstations Resources"	02-Jul-08 04:44 PM	

+="CN97779"	"AIFS 2008 Conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Jul-08	12500.00	=""	="AUSTRALIAN INSTITUTE OF FAMILY"	02-Jul-08 04:47 PM	

+="CN97794"	"Provision of Interview Skill Training Services"	="Department of Immigration and Citizenship"	02-Jul-08	="Interview skills instructional materials"	18-Apr-08	12-Aug-08	15290.00	=""	="Intelligence Pty Ltd"	02-Jul-08 04:51 PM	

+="CN97810"	"National Mailing & Marketing will provide Call Centre Services week commencing 23 June"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	23-Jun-08	12343.97	=""	="National Mailing & Marketing P/L"	02-Jul-08 04:51 PM	

+="CN97817"	"Cairns, Mareebe and Tarrabah Workshops"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Education and Training Services"	24-Jun-08	18-Jul-08	15400.00	="SON: 215"	="IntentMC Pty Ltd"	02-Jul-08 04:52 PM	

+="CN97824"	"National Policy Implementation Conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	15452.80	=""	="LIQUID LEARNING"	02-Jul-08 04:53 PM	

+="CN97836"	"Editing for CEDAW Report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	05-Jun-08	27-Aug-08	15000.00	=""	="Acme Consulting Pty Ltd"	02-Jul-08 04:54 PM	

+="CN97860"	"Annual fee to APSC"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	20-Jun-08	15000.00	=""	="AUST PUBLIC SERVICE COMMISSION"	02-Jul-08 04:58 PM	

+="CN97874"	"Colour bond super dek fencing fro Government business managers"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	17-Jun-08	30-Jun-08	12977.50	=""	="Anmatjere Community Govt Council"	02-Jul-08 05:01 PM	

+="CN97877"	"Milestone payment for Indigenous library photo shoot"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Photographic and recording media"	18-Jun-08	18-Jun-08	12510.91	=""	="LORRIE GRAHAM PHOTOGRAPHY PTY LTD"	02-Jul-08 05:01 PM	

+="CN97881"	"Glazing Services at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-09	14300.00	=""	="ACT GLASS & GLAZING PTY LTD"	02-Jul-08 05:02 PM	

+="CN97887"	"Process developement, facilitation of workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Education and Training Services"	18-Jun-08	27-Jun-08	12000.00	=""	="Team Systems Pty Ltd"	02-Jul-08 05:03 PM	

+="CN97889"	"cert IV catch up. venue and Accom"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	11-Jun-08	27-Jun-08	12500.00	=""	="MERCURE HARBOURSIDE HOTEL CAIRNS"	02-Jul-08 05:03 PM	

+="CN97907"	"Contracted Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	14850.00	=""	="TECHNIWORKS ACTION LEARNING PTY. LT"	02-Jul-08 05:06 PM	

+="CN97913"	" Total Inter Action is Asia Pacific's leading persuasive business communication training specialist.       "	="National Native Title Tribunal"	02-Jul-08	="Audio presentation and composing equipment and hardware and controllers"	10-Nov-07	15-Nov-07	15360.62	=""	="Total Inter Action (Australia)"	02-Jul-08 06:03 PM	

+="CN97916"	"Registration Fees Corpoate Members - Giving Up on Reconciliation"	="National Native Title Tribunal"	02-Jul-08	="Business and corporate management consultation services"	28-May-08	02-Jun-08	12120.00	=""	="IPAA National Conference"	02-Jul-08 06:46 PM	

+="CN97917"	"Pin, Housing, Hook and Nut"	="Defence Materiel Organisation"	03-Jul-08	="Parts of guns or pistols"	02-Jul-08	12-Sep-08	13846.80	=""	="G A Hanrahan Pty Ltd"	03-Jul-08 07:42 AM	

+="CN97922-A1"	"Rural Agent - Centrelink Agent Services"	="Centrelink"	03-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	15425.47	=""	="Greater Hume Shire Council"	03-Jul-08 08:40 AM	

+="CN97930"	"Support for Security Upgrade Project"	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	27-Sep-07	09-Mar-08	14300.00	=""	="Garry Ryle & Associates Pty Ltd"	03-Jul-08 09:32 AM	

+="CN97933"	"Telstra service charges - March, Sydney Office"	="Austrade"	03-Jul-08	="Telecommunications media services"	29-Mar-08	29-Mar-08	12394.47	=""	="Telstra (Head Office)"	03-Jul-08 09:33 AM	

+="CN97934"	"Telstra switchboard services - March 2008"	="Austrade"	03-Jul-08	="Telecommunications media services"	03-Mar-08	03-Mar-08	12680.75	=""	="Telstra (Head Office)"	03-Jul-08 09:33 AM	

+="CN97943"	"Sander Belt Combination Vertical and Horizontal"	="Defence Materiel Organisation"	03-Jul-08	="Workshop machinery and equipment and supplies"	30-Jun-08	30-Jul-08	14289.00	=""	="Gabbett Machinery Pty Ltd"	03-Jul-08 09:39 AM	

+="CN97944"	"Repair of Black Hawk R/H engine cowl."	="Defence Materiel Organisation"	03-Jul-08	="Military rotary wing aircraft"	03-Jul-08	31-Jul-08	13003.85	=""	="Sikorsky Aircraft Austalia Limited"	03-Jul-08 09:39 AM	

+="CN97947"	" S70B Aircraft Spares "	="Defence Materiel Organisation"	03-Jul-08	="Aircraft"	03-Jul-08	04-May-09	13388.08	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	03-Jul-08 09:46 AM	

+="CN97956"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	03-Jul-08	="Motor vehicles"	03-Jul-08	17-Jul-08	14189.04	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	03-Jul-08 10:19 AM	

+="CN97969"	"Supply &installation of x20 underfloor pwer points"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	23-Jun-08	30-Jun-09	13076.80	=""	="MRB COMMUNICATIONS PTY LTD"	03-Jul-08 10:31 AM	

+="CN97974"	"Contract APCM 71.04-92 Translation of Tax Time Media kit 2008"	="Australian Taxation Office"	03-Jul-08	="Editorial and Design and Graphic and Fine Art Services"	24-Jun-08	30-Jun-08	12532.30	=""	="GLOBAL VILLAGE TRANSLATIONS"	03-Jul-08 10:32 AM	

+="CN97975"	"x6 Mac Laptops for Forensics & investigations Tm."	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	25-Jun-08	30-Jun-08	15288.60	=""	="APPLECENTRE MAC 1"	03-Jul-08 10:32 AM	

+="CN97995"	"Stand Vehicle Support 3 Tonne"	="Defence Materiel Organisation"	03-Jul-08	="Workshop machinery and equipment and supplies"	01-Jul-08	30-Oct-08	15059.00	=""	="SPX Australia Pty Ltd"	03-Jul-08 10:46 AM	

+="CN98001-A1"	" Panel transaction fee for APS Panel Arrangement for 2008 courses "	="Australian National Audit Office (ANAO)"	03-Jul-08	="Adult education"	26-May-08	30-Jun-08	12000.00	=""	="Aust Public Service Commission"	03-Jul-08 10:53 AM	

+="CN98023"	"airfare"	="Defence Materiel Organisation"	03-Jul-08	="Travel facilitation"	06-Apr-08	31-May-10	12478.47	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98029"	"Qantas flights Can-Syd-San Francisco/Ottawa-London-Syd-Can"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	22-Apr-08	22-Apr-08	13724.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:39 PM	

+="CN98031"	"Helicopter charge to Bathurst Island"	="Defence Materiel Organisation"	03-Jul-08	="Surveillance and detection equipment"	11-Apr-08	11-Apr-08	12469.05	=""	="JAYROW HELICOPTERS PL"	03-Jul-08 01:39 PM	

+="CN98034"	"20-22 April Conference in Mandurah"	="Defence Materiel Organisation"	03-Jul-08	="Military watercraft"	07-Apr-08	22-Apr-08	13900.00	=""	="ACCOMMODATION WEST PTY"	03-Jul-08 01:39 PM	

+="CN98039"	"2008/092 & 140 & 58 - Aircraft Structural Repair Trg for 3 Members: Separate Invoices but Put Through in One DPC Transaction"	="Defence Materiel Organisation"	03-Jul-08	="Education and Training Services"	03-Jun-08	30-Jun-08	15381.80	=""	="QINETIQ TECH TRAINING"	03-Jul-08 01:40 PM	

+="CN98040"	"SR-C5547 QFIN (SOFTWARE) STANDARD 12 MONTH LEASE 25-JUN-08 TO 24-JUN 09"	="Defence Materiel Organisation"	03-Jul-08	="Computer services"	25-Jun-08	24-Jun-09	12210.00	=""	="LEAP AUSTRALIA PTY LTD"	03-Jul-08 01:40 PM	

+="CN98044"	"US & UK TDY for WWSTO Conference & Discussions"	="Department of Defence"	03-Jul-08	="Passenger transport"	04-Mar-08	04-Mar-08	13715.70	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98045"	"P/N: JMCODARWIN TKT: 08147026374340 R/N: Not Supplied MISCELLANEOUS ONO: 332281-21309 GWT: 15800.AAE FREIGHT REQ:642"	="Department of Defence"	03-Jul-08	="Transportation services equipment"	06-Mar-08	16-Jun-08	15796.39	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98047"	"OS 021/07/08 - Airfares (Israel 27 March - 5 April 08)"	="Department of Defence"	03-Jul-08	="Passenger transport"	30-Mar-08	30-Mar-08	13239.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98048"	"Airfares"	="Department of Defence"	03-Jul-08	="Passenger transport"	30-Mar-08	30-Mar-08	13239.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98053"	"JP129 IAI Audit"	="Department of Defence"	03-Jul-08	="Aircraft equipment"	10-Apr-08	19-Apr-08	12809.61	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98054"	"EX GRIFFONS APPROACH - WOOMERA OP-08-2-73ACMS - 1600790"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	13-Apr-08	13-Apr-08	12100.00	=""	="EUREST NO 4"	03-Jul-08 02:08 PM	

+="CN98055"	"Binskin - Visit DC & San Diego, USA: Airfare"	="Department of Defence"	03-Jul-08	="Passenger transport"	11-Apr-08	11-Apr-08	13375.68	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98056"	"P/N: PTELEITHSZYMONSKI TKT: 08147026584080 R/N: Not Supplied MISCELLANEOUS ONO: 332281-21309 GWT: IO18191. REF:Y4OCTZ. REQ:619"	="Department of Defence"	03-Jul-08	="Transportation services equipment"	18-Apr-08	16-Jun-08	12913.02	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98057"	"P/N: GREEN/TOMMY TKT: 9990057555 R/N: KMRPBC DJ: Y DRW/MEL - : MEL/ DATE TRAVEL: 27/04/08 REF:KMRPBC"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	22-Apr-08	11-Jun-08	12183.00	=""	="VIRGIN BLUE"	03-Jul-08 02:08 PM	

+="CN98062"	"AIRFARES P/N: MURTAGHPLUSSIXTEENPAX TKT: 08147026444760 R/N: Not Supplied OTHER AIRLINE ONO: 315670-21300 GWT: 18941"	="Department of Defence"	03-Jul-08	="Aircraft"	25-Apr-08	30-Jun-08	12268.39	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98063"	"Accompany Minister for Defence to Gallipoli for ANZAC Day Commemorations"	="Department of Defence"	03-Jul-08	="Passenger transport"	25-Apr-08	25-Apr-08	14875.88	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98065"	"Travel with Minister for Veterans Affairs WW1 and ANZAC day commemoration ceremonies"	="Department of Defence"	03-Jul-08	="Passenger transport"	25-Apr-08	25-Apr-08	15225.68	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98073"	"Accommodation - ARH Woomera Trial - Entire Detachment"	="Department of Defence"	03-Jul-08	="Accommodation furniture"	05-May-08	09-May-08	12790.00	=""	="EUREST NO 1"	03-Jul-08 02:10 PM	

+="CN98078"	"Flights to Ottawa and UK to attend meetings on Afghanistan and Iraq"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	06-May-08	06-May-08	13083.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:11 PM	

+="CN98080"	"SDCF (Hawaii) & CDSS Study visit (Japan)"	="Department of Defence"	03-Jul-08	="Passenger transport"	06-May-08	06-May-08	12755.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:12 PM	

+="CN98086"	"Flights to Middle East booked by Qantas Defence Travel"	="Department of Defence"	03-Jul-08	="Travel facilitation"	05-May-08	13-May-08	15098.70	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98087"	"DAGG/SCOTT SQNLDR TKT: 08124699831040 R/N: Not Supplied QF: Y CBR/SYD - QF: J SYD/LHR DATE TRAVEL: 09/05/08 REF:3PY2CH ONO: 441193-21302 GWT: 8164783"	="Department of Defence"	03-Jul-08	="Passenger transport"	09-May-08	09-May-08	13944.28	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98094"	"Travel - Jacob Ramey - 9/5-18/05/08"	="Department of Defence"	03-Jul-08	="Travel facilitation"	16-May-08	18-May-08	13487.38	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:14 PM	

+="CN98109"	"P/N: DAELMAN/TIMOTHY MR TKT: 08124706552750 R/N: Not Supplied EK: J BNE/DXB - EK: J DXB/FRA DATE TRAVEL: 28/05/08 REF:2HSFE6"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	03-Jun-08	03-Jun-08	13064.54	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:16 PM	

+="CN98110"	"P/N: GUNN/MICHAEL MR TKT: 08124706552760 R/N: Not Supplied EK: J BNE/DXB - EK: J DXB/FRA DATE TRAVEL: 28/05/08 REF:2HSFE6"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	03-Jun-08	03-Jun-08	13064.54	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98118"	"ACCOMMODATION AND GROUND TRANSPORT COSTS DELHI"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	10-Jun-08	10-Jun-08	14628.33	=""	="WELCOMGROUP MAURYA SHERATON,NEW"	03-Jul-08 02:17 PM	

+="CN98129"	"Boss Lift to Malaysia"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	15-Dec-07	15-Dec-07	13723.23	=""	="PUTERI PAN PACIFIC HOTEL"	03-Jul-08 02:19 PM	

+="CN98134"	"BUSINESS PLAN"	="Department of Defence"	03-Jul-08	="Storage"	10-Apr-08	25-May-08	12771.00	=""	="WESFARMERS INDST SFTY"	03-Jul-08 02:20 PM	

+="CN98136"	"SILVERWOOD 08 - ACCOMMODATION AT HERITAGE INN & SUITES 07 - 13 APR 08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	15-Apr-08	13-May-08	12110.63	=""	="RIDGECREST INN"	03-Jul-08 02:20 PM	

+="CN98138"	"photo edit work stations HP xw8600"	="Department of Defence"	03-Jul-08	="Components for information technology or broadcasting or telecommunications"	22-Apr-08	22-Apr-08	13802.25	=""	="HEWLETT-PACKARD P/L TSG"	03-Jul-08 02:20 PM	

+="CN98150"	"General - Deposit for speakers on workshop"	="Department of Defence"	03-Jul-08	="Education and Training Services"	24-Apr-08	31-Jul-09	15899.94	=""	="Saxton Management Grp"	03-Jul-08 02:23 PM	

+="CN98151"	"7AST125 & 126 - Mt Eliza courses, D Hartlett & S Beath"	="Department of Defence"	03-Jul-08	="Education and Training Services"	29-Apr-08	29-Apr-08	12380.00	=""	="MT ELIZA BUS SCHL"	03-Jul-08 02:23 PM	

+="CN98155"	"Diploma of Project Management at CDU, Semester 3 - 4 for B. Jones, R. Luke, J. Pretlove, J. Kosic, D. Wynne & J. Green"	="Department of Defence"	03-Jul-08	="Education and Training Services"	28-Apr-08	28-Apr-08	12474.00	=""	="CHARLES DARWIN UNI"	03-Jul-08 02:23 PM	

+="CN98160"	"USC ENOG & DWN 31/3-2/4"	="Department of Defence"	03-Jul-08	="Education and Training Services"	26-Apr-08	26-Apr-08	13342.14	=""	="HEALTH SVCS INT P/L"	03-Jul-08 02:24 PM	

+="CN98164"	"medical appointment"	="Department of Defence"	03-Jul-08	="Medical practice"	02-May-08	02-May-08	14892.00	=""	="EPWORTH FOUNDATION"	03-Jul-08 02:24 PM	

+="CN98165"	"Coaching and Mentoring"	="Department of Defence"	03-Jul-08	="Education and Training Services"	03-Apr-08	08-May-08	12350.00	=""	="INST OF MANAGEMENT"	03-Jul-08 02:25 PM	

+="CN98169"	"114/0708 Ex Maple Guardian / Fincastle"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	02-May-08	02-May-08	12812.61	=""	="PORT AUGUSTA MOTEL"	03-Jul-08 02:25 PM	

+="CN98174"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	05-May-08	30-May-08	14238.00	=""	="THE GRAND APARTMENTS"	03-Jul-08 02:26 PM	

+="CN98178"	"26/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	08-May-08	31-May-08	13983.26	=""	="OPSM 8921"	03-Jul-08 02:26 PM	

+="CN98179"	"TR 136/07-08 EX EMU MOON 08"	="Department of Defence"	03-Jul-08	="Accommodation furniture"	06-May-08	06-May-08	12480.00	=""	="QUEST ASCOT VILLAGE"	03-Jul-08 02:26 PM	

+="CN98182"	"FEE FOR SERVICE - MEDICAL"	="Department of Defence"	03-Jul-08	="Medical facility products"	08-May-08	08-May-08	15000.00	=""	="M O F S PTY LTD"	03-Jul-08 02:27 PM	

+="CN98183"	"22/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	08-May-08	31-May-08	13866.45	=""	="SYMBION IMAGING"	03-Jul-08 02:27 PM	

+="CN98184"	"Hire cars for Exercise Bersama Shield 2008 Malaysia"	="Department of Defence"	03-Jul-08	="Passenger motor vehicles"	08-May-08	08-May-08	13898.15	=""	="KASINA BARU (M) S/B - PG"	03-Jul-08 02:27 PM	

+="CN98196"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	09-May-08	30-May-08	13284.00	=""	="THE GRAND APARTMENTS"	03-Jul-08 02:29 PM	

+="CN98197"	"Aircraft charter (Range Control) Charter - Darwin - Kununurra - Kimbolton - Darwin 14, 17/18 May 2008."	="Department of Defence"	03-Jul-08	="Passenger transport"	13-May-08	15-May-08	12188.00	=""	="AUSTRASIAN JET DAR"	03-Jul-08 02:29 PM	

+="CN98205"	"HSFWAG MEDICAL APPTS"	="Department of Defence"	03-Jul-08	="Healthcare Services"	13-May-08	13-May-08	12138.90	=""	="CALVARY HEALTH CARE"	03-Jul-08 02:30 PM	

+="CN98208"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	14-May-08	28-May-08	14791.45	=""	="RALPH STANFORD"	03-Jul-08 02:30 PM	

+="CN98211"	"36SQN Accommodation Singapore 3135 May 2008 OP Nargis Assist"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	14-May-08	14-May-08	12149.81	=""	="AMARA SINGAPORE"	03-Jul-08 02:31 PM	

+="CN98212"	"VARIOUS PATIENTS5x DHC INVOICES ALREADY PAIN IN ROMAN. UNABLE TO REFUND TRANSACTION ON CARD, VENDOR HAS RECIEVED INVOICE FROM DEFENCE TO REPAY MONEY FOR DUPLICATE PAYMENT"	="Department of Defence"	03-Jul-08	="Medical facility products"	15-May-08	15-May-08	14594.15	=""	="DR ANDREW THOMSON"	03-Jul-08 02:31 PM	

+="CN98213"	"MEDICAL EXPENCES OCCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	15-May-08	14-Jun-08	14878.69	=""	="HEALTH CORPORATE NETWO"	03-Jul-08 02:31 PM	

+="CN98215"	"phone up grade"	="Department of Defence"	03-Jul-08	="Communications Devices and Accessories"	16-May-08	16-May-08	13791.33	=""	="COMMANDER  VIC"	03-Jul-08 02:31 PM	

+="CN98219"	"27/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	19-May-08	31-May-08	15675.37	=""	="SYMBION IMAGING"	03-Jul-08 02:32 PM	

+="CN98220"	"26/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	20-May-08	31-May-08	14583.00	=""	="BRISBANE PRIVATE HOSPITAL"	03-Jul-08 02:32 PM	

+="CN98222"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	19-May-08	02-Jun-08	15935.50	=""	="DR GREG BURROW"	03-Jul-08 02:32 PM	

+="CN98223"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	21-May-08	04-Jun-08	15132.58	=""	="MARK LONG"	03-Jul-08 02:32 PM	

+="CN98231"	"SSI membership"	="Department of Defence"	03-Jul-08	="Management support services"	20-May-08	20-May-08	15000.00	=""	="SPATIAL SCIENCES INSTI"	03-Jul-08 02:33 PM	

+="CN98235"	"DPC 2008"	="Department of Defence"	03-Jul-08	="Software"	23-May-08	23-May-08	13510.75	=""	="THE MATHWORKS AUST"	03-Jul-08 02:34 PM	

+="CN98239"	"Print Production LWD 1 x 4,000 Copies"	="Department of Defence"	03-Jul-08	="Published Products"	22-May-08	22-May-08	14190.00	=""	="PRINT MINT PTY LTD"	03-Jul-08 02:34 PM	

+="CN98240"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	23-May-08	30-May-08	13590.00	=""	="THE GRAND APARTMENTS"	03-Jul-08 02:34 PM	

+="CN98242"	"Incorrect charge from Blackwoods POC from Blackwoods Lisa 07 37126251 not related to any SA405's AC977's or EPROC orders."	="Department of Defence"	03-Jul-08	="Business administration services"	26-May-08	26-May-08	13412.14	=""	="J BLACKWOOD & SON (CAR"	03-Jul-08 02:35 PM	

+="CN98244"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	26-May-08	26-May-08	14856.00	=""	="DARWIN CONSULTANT"	03-Jul-08 02:35 PM	

+="CN98247"	"Kokoda expedition for SE QLD AAC on 27/06-09/07/08 RE: CIA BID 07/08- International flight no GST"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	27-May-08	09-Jul-08	12000.00	=""	="TEAM KOKODA AUSTRALIA"	03-Jul-08 02:35 PM	

+="CN98251"	"End of month bill for April"	="Department of Defence"	03-Jul-08	="Office supplies"	27-May-08	27-May-08	15063.26	=""	="NATIONAL OFFICE PRODUC"	03-Jul-08 02:36 PM	

+="CN98254"	"08/049 -  2x Fujitsu FI-5530-VP Scanners"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	14939.50	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:36 PM	

+="CN98259"	"10/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	28-May-08	30-Jun-08	12998.85	=""	="THE WESLEY HOSPITAL"	03-Jul-08 02:37 PM	

+="CN98260"	"10/0608 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	29-May-08	30-Jun-08	12282.00	=""	="QUEENSLAND FERTILITY"	03-Jul-08 02:37 PM	

+="CN98270"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	30-May-08	13-Jun-08	15270.00	=""	="DR JOHN ANTHONY CHU"	03-Jul-08 02:38 PM	

+="CN98272"	"DS-TAS Rations"	="Department of Defence"	03-Jul-08	="Food and beverage industries"	02-Jun-08	02-Jun-08	14408.83	=""	="RICHARD FADER PTY LTD"	03-Jul-08 02:39 PM	

+="CN98275"	"OPSTSR 97 Expenses"	="Department of Defence"	03-Jul-08	="Military science and research"	02-Jun-08	02-Jun-08	15548.49	=""	="USSC GROUP INC"	03-Jul-08 02:39 PM	

+="CN98277"	"MEDICAL SERVICES FOR:8533999,8197550"	="Department of Defence"	03-Jul-08	="Medical practice"	02-Jun-08	02-Jun-08	13200.00	=""	="JANAK A. MEHTA"	03-Jul-08 02:39 PM	

+="CN98281"	"REFLEX A4 COPY PAPER GREEN - LAVERTON"	="Department of Defence"	03-Jul-08	="Paper materials"	05-Jun-08	05-Jun-08	13926.33	=""	="CORPORATE EXPRESS"	03-Jul-08 02:40 PM	

+="CN98286"	"Pitch Black 08 - Overhead projectors"	="Department of Defence"	03-Jul-08	="Office Equipment and Accessories and Supplies"	03-Jun-08	03-Jun-08	15831.20	=""	="PROJECTION PLUS"	03-Jul-08 02:41 PM	

+="CN98288"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	04-Jun-08	30-Jun-08	15460.00	=""	="THE MACLEAY HOTEL"	03-Jul-08 02:41 PM	

+="CN98289"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	04-Jun-08	04-Jun-08	14135.80	=""	="HEALTH & COMM SERVS"	03-Jul-08 02:41 PM	

+="CN98292"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	06-Jun-08	06-Jul-08	13540.60	=""	="PIVET MEDICAL CENTRE"	03-Jul-08 02:42 PM	

+="CN98295"	"PR Stickers NATHQ AAFC"	="Department of Defence"	03-Jul-08	="Printed media"	10-Jun-08	10-Jun-08	13288.00	=""	="SIGN A RAMA"	03-Jul-08 02:42 PM	

+="CN98297"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	11-Jun-08	25-Jun-08	14236.92	=""	="ST VINCENTS PRV HOSP"	03-Jul-08 02:42 PM	

+="CN98299"	"MEDICAL SERVICES FOR 8203430,8235474,8496944,8212903"	="Department of Defence"	03-Jul-08	="Medical practice"	11-Jun-08	11-Jun-08	15150.00	=""	="JANAK A. MEHTA"	03-Jul-08 02:43 PM	

+="CN98300"	"08/056 -  5x Fujitsu FI-5750-VP Scanner"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	12-Jun-08	15113.12	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:43 PM	

+="CN98304"	"Construction of Flight simulator chair bases for National AAFC recruiting campaign.  Also Bank cheque for payment"	="Department of Defence"	03-Jul-08	="Advertising"	13-Jun-08	13-Jun-08	12933.00	=""	="NATIONAL AUST BANK"	03-Jul-08 02:43 PM	

+="CN98313"	"DPC 105 PB08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	13-Jun-08	13-Jun-08	13936.00	=""	="MANTRA PANDANAS"	03-Jul-08 02:45 PM	

+="CN98318"	"16 large banner bugs and 14 small banner bugs"	="Department of Defence"	03-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	15988.50	=""	="THE EXHIBITION CEN"	03-Jul-08 02:45 PM	

+="CN98319"	"CN Medallions purchase (funded by HMAS PENGUIN) Jun 08"	="Department of Defence"	03-Jul-08	="Collectibles and awards"	16-Jun-08	16-Jun-08	14812.71	=""	="SALT SHOP"	03-Jul-08 02:46 PM	

+="CN98320"	"Facilitator for Team Building Workshop in Bowral"	="Department of Defence"	03-Jul-08	="Education and Training Services"	04-Jun-08	05-Jun-08	12100.00	=""	="W AND S BELLIN ASSOC"	03-Jul-08 02:46 PM	

+="CN98324"	"WTI Team (MRTF-1) Equipment"	="Department of Defence"	03-Jul-08	="Forensic equipment and supplies and accessories"	19-Jun-08	27-Jun-08	14912.25	=""	="AUSSIE DREAM P/L"	03-Jul-08 02:46 PM	

+="CN98329"	"payment of monthly statement"	="Department of Defence"	03-Jul-08	="Office supplies"	18-Jun-08	18-Jun-08	15377.55	=""	="NATIONAL OFFICE PRODUC"	03-Jul-08 02:47 PM	

+="CN98330"	"OTS 057 - PDRS-201 Portable Digital Audio Video Interview Recording System with display, camera and carry case"	="Department of Defence"	03-Jul-08	="Communications Devices and Accessories"	18-Jun-08	18-Jun-08	12045.00	=""	="TAPE PRODUCTS RSEARCH"	03-Jul-08 02:47 PM	

+="CN98332"	"Field equipment for 1WG AAFC"	="Department of Defence"	03-Jul-08	="Camping and outdoor equipment and accessories"	18-Jun-08	18-Jun-08	14331.00	=""	="RYLAND PLACE"	03-Jul-08 02:48 PM	

+="CN98339"	"2ND EQUIP FEE, MEMBERSHIP 26/6/08-25/06/09"	="Department of Defence"	03-Jul-08	="Medical facility products"	20-Jun-08	30-Jun-08	15414.26	=""	="THE AUST COUNCL ON HLT"	03-Jul-08 02:49 PM	

+="CN98346"	"ANC86/08 Wide brimmed hats x 2500 for sun protection for water and other activities as identified under OH&S for Navy cadets"	="Department of Defence"	03-Jul-08	="Personal safety and protection"	23-Jun-08	23-Jun-08	15323.00	=""	="SALT SHOP"	03-Jul-08 02:50 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val150000to300000.xls
@@ -1,1 +1,213 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95638"	"Consultancy Services to Assist in design of ITSAP"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	26-Jun-08	30-Sep-08	218000.00	="TRS07/209"	="SMEC INTERNATIONALPTY LIMITED"	01-Jul-08 10:10 AM	

+="CN95665"	"Call Centre Services"	="Civil Aviation Safety Authority"	01-Jul-08	="Call centre bureau services"	01-Jul-08	30-Jun-09	224400.00	="00/033-03"	="Sirius Telecommunications Ltd - ACT"	01-Jul-08 10:46 AM	

+="CN95693-A2"	"FOI requests with the AAT"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	25-Jun-07	30-Jun-09	190000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:15 AM	

+="CN95728"	"Software Applications Developer"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Jun-09	180048.00	="06/065-03"	="Kellaway Pty Ltd"	01-Jul-08 12:42 PM	

+="CN95730"	"Business Analyst Financial Systems"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Jun-09	255552.00	="06/103-02"	="Peoplebank Australia Ltd (ACT)"	01-Jul-08 12:49 PM	

+="CN95781"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	181186.50	="DFAT07-DID-004"	="CLICKS RECRUIT PTY LTD"	01-Jul-08 02:33 PM	

+="CN95782"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	168190.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:34 PM	

+="CN95799"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	152900.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:38 PM	

+="CN95801"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	152900.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95805"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	168190.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95806"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	172012.50	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:40 PM	

+="CN95744-A1"	"Provision of Centrelink agent services in Service Tasmania shops"	="Centrelink"	01-Jul-08	="Business administration services"	02-Jul-07	30-Jun-08	201395.09	=""	="DEPT OF PREMIER & CABINET TASMANIA"	01-Jul-08 02:48 PM	

+="CN95824-A2"	"Provision of services relating to application development"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	30-Jun-09	191276.80	=""	="Compas Pty. Ltd."	01-Jul-08 03:21 PM	

+="CN67375-A3"	" Variation to existing ACMA Contract, Provision of and Online Safety Program for Schools and Associated Issues. This notice amends previous notice by increasing funds by $16,080.00 "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Education and Training Services"	01-Aug-07	01-Sep-08	170315.00	="06/ACMA157"	="IT Vision"	01-Jul-08 03:39 PM	

+="CN68730"	"Hosting Services for Anti-SPAM software - consultancy. Contract amended to increase funds by $20,000.00 and extend by 2 months."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Internet services"	12-Sep-05	31-Mar-08	182000.00	="05/ACMA027"	="Macquarie Telecom Pty Ltd"	01-Jul-08 04:00 PM	

+="CN95842"	"BELTS CEREMONIAL"	="Defence Materiel Organisation"	01-Jul-08	="Flat belts"	06-Jun-08	02-Nov-08	241601.25	=""	="LAROSA LEATHERGOODS"	01-Jul-08 04:34 PM	

+="CN94261"	"Provision of Online Safety Program for Schools & Associated Issues."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Internet services"	01-Jun-08	01-Sep-08	153760.00	="06/ACMA157"	="IT Vision"	01-Jul-08 04:49 PM	

+="CN95855"	"Expenditure / Travel"	="Defence Materiel Organisation"	02-Jul-08	="Audio and visual presentation and composing equipment"	13-Jun-08	28-Nov-08	190302.30	=""	="FAST NETWORKS PTY LTD"	02-Jul-08 08:34 AM	

+="CN95856"	"Toyota Tarago Wagon (BS) Qty 4"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	19-Dec-08	166464.11	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:34 AM	

+="CN95860"	"Toyota Hilux 4x2 D/C UTE (UM2) Qty12"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	16-Jan-09	284267.11	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:36 AM	

+="CN95875"	"Compunetix Communications system elements replace ment activity"	="Defence Materiel Organisation"	02-Jul-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Jun-08	30-Jun-09	242943.38	=""	="COMPUNETIX INC"	02-Jul-08 08:39 AM	

+="CN95877"	"Test & Trials and Acceptance"	="Defence Materiel Organisation"	02-Jul-08	="Naval weapons"	13-Jun-08	05-Dec-08	175500.00	=""	="SYPAQ SYSTEMS PTY LTD"	02-Jul-08 08:40 AM	

+="CN95884"	"Holden Statesman Sedan (SI) Qty 7"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	12-Dec-08	281562.28	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:41 AM	

+="CN95887-A2"	"     PURCHASE OF QTY 3 AIRCRAFT PROPELLERS NSN 01-475-5641     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	16-Jun-08	18-Feb-09	242333.00	=""	="STANDARD AERO AUSTRALIA"	02-Jul-08 08:42 AM	

+="CN95890"	"Training"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	16-Jun-08	17-Jun-08	219175.00	=""	="MICROFLITE HELICOPTER SERVICES"	02-Jul-08 08:43 AM	

+="CN95898"	"Help Desk Service for the Level 3 DTP  Help Desk"	="Defence Materiel Organisation"	02-Jul-08	="Business administration services"	13-Jun-08	30-Jun-09	191211.46	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 08:44 AM	

+="CN95904-A2"	"Qty 20 - Solenoid Assemblies"	="Defence Materiel Organisation"	02-Jul-08	="War vehicles"	14-Jun-08	30-Jun-10	204225.23	=""	="ALLIANT TECHSYSTEMS INC"	02-Jul-08 08:45 AM	

+="CN95905"	"ESS NVG & ESS ICE GOGGLES"	="Defence Materiel Organisation"	02-Jul-08	="Vision protection and accessories"	14-Jun-08	20-Jun-08	243898.60	=""	="ATLANTIC DIVING SUPPLY INC DBA ADS"	02-Jul-08 08:45 AM	

+="CN95924"	"Tandberg MXP V.35 Teleconference System"	="Defence Materiel Organisation"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	11-Jun-08	23-Jun-08	151877.29	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	02-Jul-08 08:49 AM	

+="CN95926"	"SEA KING TOOLING"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	01-Nov-08	159480.86	=""	="AGUSTAWESTLAND LTD"	02-Jul-08 08:50 AM	

+="CN95952"	"PURCHASE OF ONE TOW CABLE"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Jun-08	30-Nov-08	273916.14	=""	="THALES AUSTRALIA"	02-Jul-08 08:55 AM	

+="CN95955"	"Installation of Sentinel Software"	="Defence Materiel Organisation"	02-Jul-08	="Software"	12-Jun-08	31-Jan-09	234300.00	=""	="TENFOLD NETWORK SOLUTIONS"	02-Jul-08 08:56 AM	

+="CN95977"	"Operations Personnel Tracking Build 3 Changes"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	12-Jun-08	30-Sep-08	190000.00	=""	="QINETIQ CONSULTING PTY LTD"	02-Jul-08 09:00 AM	

+="CN96013-A1"	"URS No. 090 - Development of Configuration Tracking - Software Upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Software"	18-Jun-08	01-Oct-08	201656.00	=""	="FUJITSU AUSTRALIA LIMITED"	02-Jul-08 09:06 AM	

+="CN96019"	"PROCESSING UNIT"	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	19-Jun-08	30-Apr-09	234696.00	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:08 AM	

+="CN96044"	"CIRCUIT CARD ASSEMBLEY MILESTONE PAYMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	19-Jun-08	30-Nov-09	294324.80	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:15 AM	

+="CN96042"	"Blackhawk a/c engine spares: 2840-01-241-7467 shroud qty 4. 2840-01-443-6874 vane qty 50. 2840-01-087-4207 shroud qty 8. 2840-01-121-0800 vane qty 15. 2840-01-443-6873 vane qty 80. 2840-01-089-4128 tie rod qty 1. 2840-01-200-9760 disk qty 3."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	16-Jun-08	20-Jun-08	283061.36	=""	="asia pacific aerospace"	02-Jul-08 09:16 AM	

+="CN96054"	"CIRCUIT CARD ASSEMBLEY MILESTONE PAYMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	19-Jun-08	30-Dec-09	253607.20	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:17 AM	

+="CN96059"	"High Power Amps , HPA Mounts and Transceiver Mount required for ARC210 Project"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	01-Oct-08	208942.80	=""	="ROCKWELL COLLINS AUST PTY LTD"	02-Jul-08 09:18 AM	

+="CN96062"	"Tail Plane Fatigue Testing"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	30-Jun-08	207039.00	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:19 AM	

+="CN96083"	"A/C T700 ENG SPARES"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	20-Jun-08	183569.48	=""	="ASIA PACIFIC AEROSPACE"	02-Jul-08 09:23 AM	

+="CN96089"	"PILOT FLYING TRAINING"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	23-Jun-08	201600.00	=""	="THE HELICOPTER GROUP AUST"	02-Jul-08 09:25 AM	

+="CN96090-A1"	"Business Intelligence Tool for NIC - Software Development"	="Defence Materiel Organisation"	02-Jul-08	="Software or hardware engineering"	17-Jun-08	30-Jun-08	292875.00	=""	="SOFTWARE AG AUSTRALIA PTY LTD"	02-Jul-08 09:25 AM	

+="CN96098-A1"	"ITIL Level 3 & 4 Support - Implementation of DTP V6.0"	="Defence Materiel Organisation"	02-Jul-08	="Business administration services"	18-Jun-08	30-Jun-09	253946.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 09:27 AM	

+="CN96129"	"CCP Requirements anagement"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	31-Aug-08	258857.30	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:33 AM	

+="CN96131"	"Aircraft Maintenance Support"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	170016.79	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:34 AM	

+="CN96132-A1"	"PSP J Heron - Engagement of a PSP as ILSM TCP for the period of July 2008 to July 2009."	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	03-Sep-09	229981.19	=""	="ROSSLOGIC PTY LTD"	02-Jul-08 09:34 AM	

+="CN96135-A1"	"APLCRATES Software Support"	="Defence Materiel Organisation"	02-Jul-08	="Software maintenance and support"	12-Nov-07	30-Jun-09	166870.00	=""	="MWA SYSTEMS PTY LTD"	02-Jul-08 09:34 AM	

+="CN96137"	"Provision of Cleaning to Surface and Air Weapons Complexes financial year 07/08 to FY 08/09"	="Defence Materiel Organisation"	02-Jul-08	="Cleaning and janitorial services"	27-Jun-07	30-Jun-08	208746.43	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:34 AM	

+="CN96147-A1"	"CDRMS Software Maintenance and Support"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	12-Nov-07	30-Jun-09	249334.81	=""	="COMPUTER SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 09:36 AM	

+="CN96153"	"PROFESSIONAL ENGINEERING SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	232320.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	02-Jul-08 09:37 AM	

+="CN96155"	"Professional engineering services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	259200.00	=""	="SEAL SOLUTIONS PTY LTD"	02-Jul-08 09:37 AM	

+="CN96156"	"Professional engineering services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	242880.00	=""	="INTERNATIONAL INDUSTRY CONSULTANTS"	02-Jul-08 09:38 AM	

+="CN96157"	"Professional engineering services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	268224.00	=""	="JACOBS AUSTRALIA"	02-Jul-08 09:38 AM	

+="CN96161-A2"	"INSTALLATION OF FOLLOW-ON (FON) TASKS TO WARRAMUNGA"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	31-Jan-08	280052.30	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:39 AM	

+="CN96171"	"Acquiring 16 new vehicles to replace the current in service Trident fire trucks"	="Defence Materiel Organisation"	02-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Jun-08	20-Nov-09	228038.16	=""	="ROSENBAUER INTERNATIONAL AG"	02-Jul-08 09:40 AM	

+="CN96182"	"A04 CARIBOU SURVEY & QUOTES AGAINST CONTRACT"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	18-Apr-08	30-Jun-08	209737.15	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:42 AM	

+="CN96200"	"PRICE VARIATION"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	24-Jun-08	30-Jun-08	200384.11	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:44 AM	

+="CN96203-A1"	"C+M Monitor SICARD Replacement"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	18-Jun-08	30-Apr-10	276536.71	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:45 AM	

+="CN96204-A1"	" Provision of Technical Support Engineer "	="Family Court of Australia"	02-Jul-08	="Engineering and Research and Technology Based Services"	30-Jun-08	30-Jun-09	175296.00	=""	="Finite IT Recruuitment"	02-Jul-08 09:46 AM	

+="CN96231"	"Periscope system integrated materiel support Contract"	="Defence Materiel Organisation"	02-Jul-08	="Construction and maintenance support equipment"	23-May-08	30-Oct-09	206639.95	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:50 AM	

+="CN96239"	"For Extra Hornet Fuel Cell Storage (Over 60)"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft fuel tanks and systems"	15-Jan-07	30-Jun-08	170892.50	=""	="AUSTRALIAN FUEL CELLS PTY LTD"	02-Jul-08 09:51 AM	

+="CN96248"	"Professional engineering services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	259200.00	=""	="SEAL SOLUTIONS PTY LTD"	02-Jul-08 09:53 AM	

+="CN96249"	"Professional logistics services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	267955.20	=""	="CODARRA ADVANCED SYSTEMS PTY LTD"	02-Jul-08 09:53 AM	

+="CN96260-A1"	"TS064-4 PROVISION OF EXTRA SHIPS ATTITUDE AND POSITIONAL DATA OUTPUTS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	30-Apr-10	286111.00	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 09:55 AM	

+="CN96271-A2"	" Requirements Analysis for USQ-125 "	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	27-Jun-08	30-Jun-09	249790.63	=""	="CSC AUSTRALIA PTY LTD"	02-Jul-08 09:57 AM	

+="CN96272"	"hmas leeuwin maintenance period 29"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	18-Apr-08	02-May-08	186091.06	=""	="AIMTEK PTY LTD"	02-Jul-08 09:57 AM	

+="CN96284"	"BLANKET ORDER RAISED FOR THE SUPPLY OF DIESEL FUEL **"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	08-May-08	30-Jun-08	192321.27	=""	="CGL FUEL PTY LTD"	02-Jul-08 09:59 AM	

+="CN96287"	"HMAS Kanimbla Major Docking 08"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	24-Jun-08	25-Sep-08	165694.81	=""	="FORGACS ENGINEERING PTY LTD"	02-Jul-08 09:59 AM	

+="CN96319"	"Stand Power Pack Field maintenance - M113"	="Department of Defence"	02-Jul-08	="Armoured fighting vehicles"	27-Jun-08	26-Aug-08	156795.21	=""	="TENIX DEFENCE PTY LTD LAND DIV"	02-Jul-08 10:05 AM	

+="CN96326-A1"	"Provide MSA review and development of KPI's"	="Defence Materiel Organisation"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	24-Jun-08	30-Jun-08	200399.30	=""	="QINETIQ NOVARE PTY LTD"	02-Jul-08 10:05 AM	

+="CN96343"	"CONVERSION FACILITY 622 TO WORKSHOP ACCOM  (ACMI)"	="Defence Materiel Organisation"	02-Jul-08	="Postmortem and mortuary equipment and supplies"	25-Jun-08	30-Jun-08	237150.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 10:07 AM	

+="CN96347"	"Analyzer Set Vehicular Diagnostic - M113"	="Department of Defence"	02-Jul-08	="Armoured fighting vehicles"	27-Jun-08	26-Aug-08	199628.00	=""	="TENIX DEFENCE PTY LTD LAND DIV"	02-Jul-08 10:09 AM	

+="CN96363"	"FACILITY UPGRADE & SUPPORT EQUIPMENT"	="Defence Materiel Organisation"	02-Jul-08	="Building and Construction and Maintenance Services"	12-Nov-07	31-Dec-08	292722.70	=""	="STANDARD AERO AUSTRALIA"	02-Jul-08 10:10 AM	

+="CN96368"	"AMC Training Contract"	="Defence Materiel Organisation"	02-Jul-08	="Commercial marine craft"	12-Nov-07	31-Dec-10	295862.31	=""	="AMC SEARCH LIMITED"	02-Jul-08 10:11 AM	

+="CN96371"	"Engineering Services"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	24-Jun-08	30-Jun-09	167282.22	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 10:11 AM	

+="CN96385"	"Made to Measure RAN Uniforms,as follows: Winter and Summer Coat and Trousers"	="Defence Materiel Organisation"	02-Jul-08	="Clothing"	05-Feb-08	30-Jun-08	245701.58	=""	="V & F TAILORING"	02-Jul-08 10:13 AM	

+="CN96388"	"TD187 DMS17.1  Software upgrades Vendor Quote: ES-TXA-MPS-1079 dated 05Feb08TD Numb"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	28-Jun-08	20-Feb-09	157798.23	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 10:14 AM	

+="CN96393"	"ARMY UTILITY WORKBOAT TRAILERS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	19-Jun-08	30-Jun-08	161596.38	=""	="HAULMARK TRAILERS AUST"	02-Jul-08 10:14 AM	

+="CN96409"	"FTR OF AUSTEYR RIFLE VARIANTS"	="Defence Materiel Organisation"	02-Jul-08	="Gun systems"	18-Jun-08	15-Oct-08	201620.25	=""	="THALES AUSTRALIA"	02-Jul-08 10:16 AM	

+="CN96414"	"blackhawk engine spares:5365-01-089-0794 plug qty10. 2840-01-087-1687 lever qty 63, 5365-01-089-4114 spacer qty 3, 2840-01-089-4123 spoiler qty 4, 5310-01-280-9848 nut qty 1, 5306-01-137-5733 bolt qty 24, 3020-01-095-7460 gear qty 4."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	30-Jun-08	22-Sep-08	279487.26	=""	="asia pacific aerospace"	02-Jul-08 10:18 AM	

+="CN96416"	"Computers"	="Department of the House of Representatives"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	165733.92	=""	="Dell Australia P/L"	02-Jul-08 10:25 AM	

+="CN96439"	"Repair of Black Hawk helicopter Actuator trim tab"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	20-Jun-08	31-Jul-08	221605.51	=""	="Sikorsky Aircraft Austalia Limited"	02-Jul-08 11:51 AM	

+="CN96440"	"Microsoft Licencing Trueup 06/07"	="Australian Crime Commission"	02-Jul-08	="License management software"	01-Jul-06	31-Jul-07	296948.20	=""	="KAZ Group Pty Ltd"	02-Jul-08 11:52 AM	

+="CN96461"	"Workstations and storage units, Mornington, VIC"	="Centrelink"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Apr-08	29-Jun-08	270157.25	=""	="Schiavello (Vic) Pty  Ltd"	02-Jul-08 12:18 PM	

+="CN96486"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	31-Dec-08	150150.00	="RFTS07/0129"	="Acumen Contracting and Recruitment Pty Ltd"	02-Jul-08 12:23 PM	

+="CN96488"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	31-Dec-08	156156.00	="RFTS07/0129"	="Integrating Software"	02-Jul-08 12:23 PM	

+="CN96491"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	23-Jun-08	30-Jun-08	235435.20	="RFTS07/0129"	="Quality Contracts Australia"	02-Jul-08 12:24 PM	

+="CN96495"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	16-May-08	02-Jul-08	295495.20	=""	="Verossity Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96502"	"IT Specialist Services for Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	30-Jun-09	199399.20	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96504"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	18-Jun-08	30-Jun-09	224624.40	=""	="Peoplebank Australia Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96505"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	24-Jun-08	30-Jun-09	216216.00	="RFTS07/0129"	="Diversiti Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96507"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	30-Jun-09	206606.40	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	02-Jul-08 12:26 PM	

+="CN96511"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	26-Jun-08	30-Apr-09	184338.00	="RFTS07/0129"	="Frontier IT Recruitment Consult Pty Ltd"	02-Jul-08 12:27 PM	

+="CN96513"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	26-Jun-08	31-Mar-09	160776.00	="RFTS07/0129"	="Collective Resources IT Recruitment"	02-Jul-08 12:27 PM	

+="CN96514"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	26-Jun-08	30-Jun-09	211411.20	="RFTS07/0129"	="Aurec Pty Ltd"	02-Jul-08 12:27 PM	

+="CN96515"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	25-Jun-08	28-Jun-09	264264.00	="RFTS07/0129"	="Peoplebank Australia Pty Ltd"	02-Jul-08 12:27 PM	

+="CN96536"	"One-off share of capital costs for shared facilities"	="Australian Public Service Commission"	02-Jul-08	="Building construction and support and maintenance and repair services"	25-Jun-08	25-Jun-08	226438.30	=""	="Civil Aviation Safety Authority"	02-Jul-08 12:40 PM	

+="CN96543"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	29-Apr-08	30-Jun-08	198773.60	="APS COMMISSION 2005/014"	="Saville and Holdsworth Australia"	02-Jul-08 12:42 PM	

+="CN96448"	"Purchase of quantity 3 Black Hawk helicopter Main Rotor spindle assemblies to replace retired items."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	20-Jun-08	31-Jul-08	165337.52	=""	="Sikorsky Aircraft Austalia Limited"	02-Jul-08 12:53 PM	

+="CN96607"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Motor vehicles"	17-Jun-08	01-Aug-08	269939.01	=""	="DRAKE INTERNATIONAL"	02-Jul-08 01:31 PM	

+="CN96642"	"Contractor  Support to HQJOC Battlelab"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-09	190080.00	="2007-1104360"	="KARU IT PTY LTD"	02-Jul-08 01:35 PM	

+="CN96652"	"GB & FM Routine Maintenance (LIA) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	283631.67	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:35 PM	

+="CN96655"	"Asbestos removal"	="Department of Defence"	02-Jul-08	="Environmental control systems"	18-Jun-08	31-Aug-08	249871.91	=""	="RESOLVE FM"	02-Jul-08 01:36 PM	

+="CN96657"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	190466.65	=""	="ACT DEPT OF EDUCATION YOUTH &"	02-Jul-08 01:36 PM	

+="CN96664"	"GB & FM Reactive Maintenance (LIA) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	248921.69	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:36 PM	

+="CN96674"	"NQ2085 - RAAF Base Townsville - Frontline Canteen 082."	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Aug-08	217807.70	=""	="THOMAS & COFFEY LIMITED"	02-Jul-08 01:37 PM	

+="CN96675"	"FP & EM Routine Works work directions for CNNSW for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	220000.00	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:37 PM	

+="CN96680"	"SOFTWARE LICENCE"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	20-Jun-08	190850.00	=""	="TIER-3 PTY LTD"	02-Jul-08 01:37 PM	

+="CN96699"	"Software and Support"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	30-Jun-11	158129.00	=""	="COMMVAULT SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 01:39 PM	

+="CN96707"	"FP & EM Fire Reactives (Non-LIA) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	203498.91	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:41 PM	

+="CN96732"	"Routine GEW Reactive Maintenance Western Region"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	22-May-08	30-Jun-08	258192.83	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	02-Jul-08 01:43 PM	

+="CN96774"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	209000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:45 PM	

+="CN96776"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	187000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:45 PM	

+="CN96779"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	220000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96782"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	275000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96794"	"MAINTENANCE SERVICES FEE ISO DCC SUPPORT CONTRACT CIOG 335/07"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	24-Jun-08	31-Jan-09	151046.50	=""	="AVAYA AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96827"	"HQJOC PROJECT-COMMONWEALTH BUREAU OF METEOROLOGY."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-09	253770.00	=""	="BUREAU OF METEOROLOGY"	02-Jul-08 01:49 PM	

+="CN96832"	"Computer Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	30-Jun-08	30-Apr-12	236500.00	=""	="SGI AUSTRALIA PTY LTD"	02-Jul-08 01:49 PM	

+="CN96865"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	261250.00	=""	="ICON RECRUITMENT"	02-Jul-08 01:51 PM	

+="CN96868"	"Consultancy services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	246097.50	=""	="ICON RECRUITMENT"	02-Jul-08 01:51 PM	

+="CN96870"	"CMC ALLOCATIONS & COMMITMENT - FP&EM REACTIVE MAINTENANCE WORKS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	283228.34	=""	="ASSET SERVICES"	02-Jul-08 01:51 PM	

+="CN96876"	"FACOPS - SA2374 MAINT TO DEFENCE HOUSING WOOM"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	30-Jun-08	243000.01	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 01:51 PM	

+="CN96894"	"Provison of Wharf Services"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	171869.01	=""	="SPOTLESS"	02-Jul-08 01:52 PM	

+="CN96915"	"external service provider"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	169460.28	=""	="ICON RECRUITMENT"	02-Jul-08 01:54 PM	

+="CN96960"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	196255.55	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	02-Jul-08 01:57 PM	

+="CN96970"	"WATSONIA: DEFENCE FORCE SCHOOL OF SIGNALS(DFSS). DSC-SKM."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-10	198976.80	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	02-Jul-08 01:57 PM	

+="CN97032"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management support services"	17-Jun-08	30-Jun-08	225181.56	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	02-Jul-08 02:02 PM	

+="CN97050"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	22-Jan-08	30-Jun-08	264319.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	02-Jul-08 02:03 PM	

+="CN97060"	"Facilities upgrade services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jun-08	263818.23	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:04 PM	

+="CN97066"	"PROJ ID 4131 WILR: CONSTRUCT CLASSROOMS ADF SCHOOL OF LANGUAGES"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	05-Jun-08	30-Jun-08	161700.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	02-Jul-08 02:05 PM	

+="CN97084"	"MEMBERSHIP FEES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	195000.00	=""	="ENGINEERS AUSTRALIA"	02-Jul-08 02:07 PM	

+="CN97091-A1"	" PROCESS RE-DEVELOPMENT AND BUSINESS/ADMINISTRTIVE SUPPORT PROJECT OFFICE "	="Department of Defence"	02-Jul-08	="Business administration services"	12-Nov-07	30-Jun-08	277000.00	=""	="KPMG"	02-Jul-08 02:07 PM	

+="CN97129"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Mar-08	31-May-08	246008.40	=""	="CONQUEST ENTERPRISE"	02-Jul-08 02:09 PM	

+="CN97151"	"NT1959 GEW Reactive Maintenance (Immediate / Urgent) Period 1/5/08 0 30/6/08"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	155850.15	=""	="ASSET SERVICES"	02-Jul-08 02:11 PM	

+="CN97175"	"facilities operations"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	05-May-08	30-Jun-08	239663.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:12 PM	

+="CN97186"	"GSS CUSTOMER PAYS INVOICES MAY 08"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	214088.71	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	02-Jul-08 02:12 PM	

+="CN97231"	"S5231, WR 300079636, 300079637, 300079640. Sydney installation of rainwater tanks and other associat"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	168902.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:16 PM	

+="CN97257"	"Repair to Conditioning Chamber 148"	="Department of Defence"	02-Jul-08	="Workshop machinery and equipment and supplies"	13-Jun-08	27-Jun-08	173800.00	=""	="GORDON BROTHERS INDUSTRIES PTY LTD"	02-Jul-08 02:18 PM	

+="CN97271"	"Communication equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	29-Sep-08	210562.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:19 PM	

+="CN97274"	"GSS CUSTOMER PAYS INVOICES APR 08"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	199566.12	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	02-Jul-08 02:19 PM	

+="CN97293"	"S5267, WR 300079646, 300079647, 300079648. Instal associated water saving plumbing to Pymble, Suther"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	172771.99	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:20 PM	

+="CN97308"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jun-08	198000.00	=""	="KPMG"	02-Jul-08 02:22 PM	

+="CN97311"	"INSTALLATION SECURITY ALARM"	="Department of Defence"	02-Jul-08	="Surveillance and detection equipment"	19-Jun-08	30-Jun-09	165000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 02:22 PM	

+="CN97316"	"HQJOC PROJECT - RITECH"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-08	202874.80	=""	="RITECH"	02-Jul-08 02:22 PM	

+="CN97319"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Professional engineering services"	30-May-08	30-Jun-09	209102.63	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:22 PM	

+="CN97323"	"DEVELOPMENT ENGINEERING SERVICES"	="Department of Defence"	02-Jul-08	="Management advisory services"	10-Dec-07	30-Jun-08	180599.94	=""	="ROSS HUMAN DIRECTIONS"	02-Jul-08 02:23 PM	

+="CN97334"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Management advisory services"	12-Nov-07	30-Jun-08	185215.14	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:24 PM	

+="CN97342"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	153781.07	=""	="BARRINGTON PERSONNEL SECURITY"	02-Jul-08 02:24 PM	

+="CN97344"	"VETTING SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	184323.57	=""	="KEY VETTING SERVICES PTY LTD"	02-Jul-08 02:24 PM	

+="CN97348"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	26-Feb-08	30-Jun-09	216810.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:25 PM	

+="CN97361"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	26-Nov-07	154000.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	02-Jul-08 02:26 PM	

+="CN97366"	"Research Agreement Uni SA"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	30-Oct-09	176000.00	=""	="UNI OF SA - FINANCIAL SERVICES"	02-Jul-08 02:26 PM	

+="CN97370"	"Maritime Systems Division Materiel Logistics Devel opment as per Research Agreement HD505"	="Department of Defence"	02-Jul-08	="Military science and research"	19-Jun-08	28-Nov-08	237600.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	02-Jul-08 02:26 PM	

+="CN97388"	"IT Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jun-08	206262.35	=""	="FUJITSU AUSTRALIA LTD"	02-Jul-08 02:27 PM	

+="CN97397"	"Principal Environmental Adviser required for disposal of Defence site Maribyrnong,Vic."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	204245.24	=""	="URS AUSTRALIA PTY LTD"	02-Jul-08 02:28 PM	

+="CN97401-A1"	"GST FOR PF DOC 5002259897"	="Department of Defence"	02-Jul-08	="Satellites"	09-Jun-08	30-Jun-09	152071.28	=""	="STRATOS"	02-Jul-08 02:28 PM	

+="CN97418"	"WATER QUALITY MONITORING"	="Department of Defence"	02-Jul-08	="Environmental management"	07-Aug-06	30-Jun-10	211585.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:30 PM	

+="CN97420"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-09	279094.53	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:30 PM	

+="CN97423"	"HQJOC C41 PROJECT - 6.74 AND 6.51 HMAS HARMAN"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-08	153738.20	=""	="SPIRIT RIVER PTY LTD"	02-Jul-08 02:30 PM	

+="CN97434"	"SINGLE LEAP - PROBITY ADVICE & SERVICES FOR PHASE 2 PROJECT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-08	209825.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 02:31 PM	

+="CN97447"	"Phase 2  0f  Model development Swat Models"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	30-Jun-09	175680.00	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 02:33 PM	

+="CN97462"	"ENGAGEMENT OF PSP'S"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	10-Jun-08	01-Jul-08	200000.00	=""	="HAYS SPECIALIST RECRUITMENT"	02-Jul-08 02:34 PM	

+="CN97465"	"681910 (NT1722) RAAF Base Tindal Termite Proofing"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-09	177477.00	=""	="ASSET SERVICES"	02-Jul-08 02:34 PM	

+="CN97472"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	31-Jan-09	173800.00	=""	="RECOVRE"	02-Jul-08 02:35 PM	

+="CN97479"	"GATEWAY ENGINEER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-09	275000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:35 PM	

+="CN97492"	"FIBRE WORKS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Sep-08	151250.00	=""	="DEPARTMENT OF FINANCE AND"	02-Jul-08 02:36 PM	

+="CN97535"	"gateway engineer"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	31-Aug-09	220000.00	=""	="CANDLE CORPORATION LTD"	02-Jul-08 02:41 PM	

+="CN97541"	"gateway engineer"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-09	264000.00	=""	="CANDLE CORPORATION LTD"	02-Jul-08 02:41 PM	

+="CN97555"	"SYSTEMS SECURITY ENGINEER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-09	297000.00	=""	="PEOPLEBANK"	02-Jul-08 02:43 PM	

+="CN97563"	"SYSTEMS ADMINISTRATOR"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-09	198000.00	=""	="ICON RECRUITMENT"	02-Jul-08 02:44 PM	

+="CN97569"	"Supply a NEC IPS Upgrade and PABX System and Syste Irwin Barracks."	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	29-Aug-08	169377.02	=""	="NEC AUSTRALIA PTY LTD"	02-Jul-08 02:45 PM	

+="CN97585"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	30-Sep-08	188980.00	=""	="IDEATION PTY LTD"	02-Jul-08 02:46 PM	

+="CN97586"	"HQJOC C41 PROCUREMENT OF SYSTEM PRINTERS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	257200.86	=""	="THALES AUSTRALIA"	02-Jul-08 02:46 PM	

+="CN97587"	"WORKSTATIONS"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	30-Jun-08	159063.52	=""	="SEYMOUR COMPUTERS"	02-Jul-08 02:47 PM	

+="CN97600"	"DISPOSAL-JENNINGS RAILWAY SIDING-ASBESTOS REMEDIAL ENVIRONMENTAL MANAGEMENT PLAN."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	164927.40	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	02-Jul-08 02:48 PM	

+="CN97602"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	31-Jan-09	220000.00	=""	="CRS AUSTRALIA"	02-Jul-08 02:48 PM	

+="CN97625"	"AERONAUTICAL ENGINEER"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	12-Jun-08	30-Jun-09	244172.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	02-Jul-08 02:49 PM	

+="CN97633"	"PROVISION OF TONER"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	12-Jun-08	30-Jun-09	269500.00	=""	="OFFICEMAX AUSTRALIA LTD"	02-Jul-08 02:50 PM	

+="CN97659"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	10-Feb-09	275796.01	=""	="SIR LAURENCE STREET"	02-Jul-08 02:53 PM	

+="CN97670"	"Professional People and Technology Services."	="National Native Title Tribunal"	02-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	203026.20	=""	="Dialog Information Technology"	02-Jul-08 02:55 PM	

+="CN97694"	"ROAD CHTR AACAP"	="Department of Defence"	02-Jul-08	="Product and material transport vehicles"	17-Jun-08	31-Jul-08	296450.00	=""	="SIMON NATIONAL CARRIERS"	02-Jul-08 02:56 PM	

+="CN97765"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	23-Jun-08	20-Jul-09	252384.00	=""	="Frontier Group Australia Pty Ltd"	02-Jul-08 04:44 PM	

+="CN97769"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	18-Jun-08	31-Dec-08	160160.00	=""	="REDBACK CONSULTING PTY LTD"	02-Jul-08 04:44 PM	

+="CN97793"	"DVA Processing of Age Pension 08/09"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	01-Jul-09	220000.00	=""	="Dept of Veterans Affairs        CPM"	02-Jul-08 04:49 PM	

+="CN97801"	"TRSA Ward and Office Holder Elections May to June 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	26-Jun-08	21-Jul-08	162726.01	=""	="AUSTRALIAN ELECTORAL COMMISSION"	02-Jul-08 04:50 PM	

+="CN97846"	"Event Mng and Payment of vendor for National Rural Women's Summit"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	152359.35	=""	="Red Agency"	02-Jul-08 04:56 PM	

+="CN97859"	"Development work associated with the expansion of the 2008 NATSISS"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Published Products"	03-Jun-08	03-Jun-08	220000.00	=""	="Aust Bureau of Statistics"	02-Jul-08 04:57 PM	

+="CN97861"	"Contracted Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Oct-08	165000.00	=""	="Bureau Veritas HSE Pty Ltd"	02-Jul-08 04:58 PM	

+="CN97865"	"Supply of Workstations and Losse Furniture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Office supplies"	04-Jun-08	13-Jun-08	197594.26	="34257"	="Cite Office Design Pty Ltd"	02-Jul-08 04:59 PM	

+="CN97867"	"it leasing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Office machines and their supplies and accessories"	11-Jun-08	30-Jun-09	240289.79	=""	="Commonwealth Bank of Australia -"	02-Jul-08 05:00 PM	

+="CN97890"	"Provide for the community profiles tool-Maintenanc &develpoment documentation & training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	11-Jun-08	30-Jun-08	156510.20	=""	="Forge Data Solutions"	02-Jul-08 05:03 PM	

+="CN97893"	"Development of Baseline Community Profiles in the East Kimberley Region"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jun-08	19-Dec-08	247002.00	=""	="SOCIAL COMPASS PTY LTD"	02-Jul-08 05:04 PM	

+="CN97906"	"Reimbursement of costs incurred in providing death  registration information to the Commonwealth"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Statistics"	16-Jun-08	30-Jun-10	200000.00	=""	="Department of Justice - Registry of"	02-Jul-08 05:06 PM	

+="CN97909-A2"	"Provision of Workforce Management Services"	="Department of Immigration and Citizenship"	02-Jul-08	="Software"	18-Jun-08	30-Jun-09	181591.00	=""	="Zallcom Pty Limited"	02-Jul-08 05:10 PM	

+="CN97938-A2"	" Development and implementation of web platform to support new strategy of Journey to Export.  Variation 1: Increase in contract value by $199490, extension of contract end date to 17/8/08.    "	="Austrade"	03-Jul-08	="Computer services"	22-Jun-08	17-Aug-08	262850.00	=""	="Accenture Australia Holdings Pty Ltd"	03-Jul-08 09:33 AM	

+="CN97941-A1"	"  Short Term Employment: Development, Maintenance of EMDG IT Business Systems: John Barrett.     "	="Austrade"	03-Jul-08	="Employment"	01-Jul-08	30-Jun-10	280000.00	=""	="Collective Resources IT Recruitment Pty Ltd"	03-Jul-08 09:35 AM	

+="CN97954"	"Secure Internet Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Computer or network or internet security"	01-Jul-08	30-Jun-09	264000.00	="06/239-01"	="Macquarie Telecom"	03-Jul-08 10:10 AM	

+="CN97958"	"Voice Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Jul-08	30-Jun-09	202000.00	="06/241-01"	="Telestra Corporation"	03-Jul-08 10:23 AM	

+="CN97965"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	30-Jun-08	30-Jun-09	192931.20	="RFT 028-2008"	="MOSAIC RECRUITMENT PTY LTD"	03-Jul-08 10:30 AM	

+="CN97967"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	30-Jun-08	30-Jun-08	242000.00	="RFT 022-2008"	="COMPAS PTY LTD"	03-Jul-08 10:31 AM	

+="CN97970"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	23-Jun-08	01-Jan-09	164400.00	="RFT 019-2008"	="BUSINESS REVIEW GROUP PTY LTD"	03-Jul-08 10:31 AM	

+="CN97972"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	23-Jun-08	13-Jul-08	183744.00	="RFT 005-2008"	="INFOSYS SOLUTIONS PTY LTD"	03-Jul-08 10:31 AM	

+="CN97973"	"Nortel IP Telephony Critical Spares"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	24-Jun-08	30-Jun-10	164705.06	=""	="Telstra Business Systems"	03-Jul-08 10:32 AM	

+="CN97979"	"IT Contractor Extension"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	276938.40	="RFT 026-2007"	="FREELANCE GLOBAL LTD"	03-Jul-08 10:34 AM	

+="CN97980"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	07-Dec-07	30-Jun-08	234273.60	="RFT047-2007"	="COMPAS PTY LTD"	03-Jul-08 10:34 AM	

+="CN97986"	"IT Contractor Extension"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Jun-09	220704.00	="RFT 037-2007"	="DEGISOFT CONSULTING PTY LTD"	03-Jul-08 10:36 AM	

+="CN97990"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	173600.00	="RFT 103-2008"	="COMPAS PTY LTD"	03-Jul-08 10:37 AM	

+="CN98004"	"Fixed Line Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Telephone line sharing devices"	01-Jul-08	30-Jun-09	238000.00	="06/247-01"	="Optus Billing Sevices Pty Ltd"	03-Jul-08 11:03 AM	

+="CN98015-A1"	"Focus Group Research (Accommodation and Community Services)"	="Australian Fair Pay Commission"	03-Jul-08	="Market research"	01-May-08	11-Aug-08	154611.00	=""	="Colmar Brunton Social Research"	03-Jul-08 11:45 AM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val16000to20000.xls
@@ -1,1 +1,242 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95599"	" MOTOR VEHICLE PARTS "	="Department of Defence"	01-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Jul-08	31-Jul-08	16025.56	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	01-Jul-08 08:17 AM	

+="CN95601"	" MOTOR VEHICLE PARTS "	="Department of Defence"	01-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Jun-08	31-Jul-08	16982.46	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	01-Jul-08 08:21 AM	

+="CN95610"	"SPSS Annual Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	01-Jul-08	30-Jun-09	19899.72	=""	="SPSS AUSTRALASIA Pty Ltd"	01-Jul-08 10:05 AM	

+="CN95627"	"Consultancy Services of Professor Paul 't Hart to complete discussion exercise with TSWG."	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Passenger transport"	09-Jun-08	30-Jun-08	17600.00	=""	="Australian National University"	01-Jul-08 10:08 AM	

+="CN95644"	"Legal Services Expenditure 7003 Legal Services Expenditure 7003"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	19005.80	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	01-Jul-08 10:12 AM	

+="CN95672-A1"	"Advertising for 15 year license consultancy (RFT) GCUADV2002/03"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	22-May-08	23-Jun-08	19968.26	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:10 AM	

+="CN95684"	"Franking Machine for Facilities"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	25-Jun-08	30-Jun-09	18656.00	="ATM08/1087"	="Pitney Bowes Postage by Phone"	01-Jul-08 11:13 AM	

+="CN95685"	"Establishment, hosting and decommissioning of interactive deal room"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	27-Jun-08	30-Jun-08	16500.00	="ATM08/1088"	="CORRS CHAMBERS WESTGARTH"	01-Jul-08 11:13 AM	

+="CN72187"	"Purchase of research documents to be used in ACMA research project."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	14-Apr-08	07-May-08	18453.00	=""	="E Translate"	01-Jul-08 11:14 AM	

+="CN95690"	"National E-security seminar for High School students in Brisbane"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	27-May-08	23-Jun-08	18521.45	="ATM08/1072"	="Information Integrity Solutions Pty"	01-Jul-08 11:14 AM	

+="CN95697"	"SAP Productivity and workshops"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	19331.52	="CCR/07/100"	="SAP AUSTRALIA PTY LTD"	01-Jul-08 11:16 AM	

+="CN95699"	"IBISWorld Classic Direct License Spectrum Project"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	01-Jun-09	19250.00	="ATM08/1057"	="IBIS WORLD"	01-Jul-08 11:16 AM	

+="CN95706-A1"	"Probity checks -Australia Post Board of Directors"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	20-Jun-08	30-Jun-09	20000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:17 AM	

+="CN95712"	"painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	02-Jun-08	02-Jun-08	16170.00	=""	="NICK DOBSON PAINTING"	01-Jul-08 11:31 AM	

+="CN95718"	" Centrelink Agent - Parnngurr, WA    "	="Centrelink"	01-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	19905.07	=""	="Parnngurr Aboriginal Community"	01-Jul-08 12:01 PM	

+="CN95739"	"cabinets"	="Royal Australian Mint"	01-Jul-08	="Cabinets"	10-Jun-08	10-Jun-08	18147.82	=""	="BLACKWOOD J & SON LTD"	01-Jul-08 01:10 PM	

+="CN95766"	"PN: ZI-400 Qty 128"	="Defence Materiel Organisation"	01-Jul-08	="Compounds and mixtures"	30-Jun-08	30-Aug-08	19782.40	=""	="ECO 2000 PTY LTD"	01-Jul-08 02:05 PM	

+="CN95813"	"relocation moves"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	18482.48	=""	="TOLL TRANSITIONS"	01-Jul-08 02:52 PM	

+="CN95819"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	19580.00	=""	="TOLL TRANSITIONS"	01-Jul-08 03:02 PM	

+="CN95852"	"Attendance at HCA Leadership Program for Ms Michel Uzzell, held at Terrigal during 27 July to 1 Augu"	="Defence Materiel Organisation"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Jun-08	30-Aug-08	17996.00	=""	="HCA LEADERSHIP PROGRAMS PTY LTD"	02-Jul-08 08:33 AM	

+="CN95868-A2"	"     BUILDING OF QTY 6 T56 PROPELLERS AS PER STANDING OFFER 9212-042-52     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	13-Jun-08	09-Jun-09	19789.54	=""	="SAFE AIR LTD"	02-Jul-08 08:37 AM	

+="CN95880"	"Shredder"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	25-Jun-08	19453.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	02-Jul-08 08:40 AM	

+="CN95939"	"REDEVELOP OPP COURSE AS PER SOR #69"	="Defence Materiel Organisation"	02-Jul-08	="Medical training and education supplies"	11-Jun-08	30-Jun-08	17270.00	=""	="DEAKINPRIME"	02-Jul-08 08:52 AM	

+="CN95941-A1"	"Protective Equipment"	="Defence Materiel Organisation"	02-Jul-08	="Batteries and generators and kinetic power transmission"	11-Jun-08	17-Jun-08	16039.10	=""	="AIR-MET SCIENTIFIC PTY LTD"	02-Jul-08 08:53 AM	

+="CN95953"	"Firing Post Assemblies"	="Defence Materiel Organisation"	02-Jul-08	="Structural materials and basic shapes"	12-Jun-08	30-Jun-08	16286.29	=""	="MILSPEC MANUFACTURING PTY LTD"	02-Jul-08 08:55 AM	

+="CN95957"	"Technical Support for Repair Parts Scale/Complete Equipment Schedule Information System"	="Defence Materiel Organisation"	02-Jul-08	="Software"	12-Jun-08	30-Jun-09	18359.00	=""	="EVENTRA PTY LTD"	02-Jul-08 08:56 AM	

+="CN95960"	"Intro to MIDS/Link 16 Network Design Training"	="Defence Materiel Organisation"	02-Jul-08	="Human resource development"	12-Jun-08	15-Aug-08	18633.51	=""	="3S DATA LINKS"	02-Jul-08 08:57 AM	

+="CN95962"	"Socket, Handle for Hook I"	="Defence Materiel Organisation"	02-Jul-08	="Marine craft systems and subassemblies"	12-Jun-08	11-Aug-08	17547.80	=""	="LEAFIELD LOGISTICS & TECHNICAL SERV"	02-Jul-08 08:57 AM	

+="CN96001"	"Rip top tarpaulin and seat cushions"	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	18-Jun-08	30-Jun-08	18772.71	=""	="SCANIA AUSTRALIA PTY LTD"	02-Jul-08 09:04 AM	

+="CN96052"	"Various Parts - M113 Upgrade"	="Department of Defence"	02-Jul-08	="Armoured fighting vehicles"	30-Jun-08	26-Aug-08	18789.19	=""	="TENIX DEFENCE PTY LTD LAND DIV"	02-Jul-08 09:18 AM	

+="CN96073"	"Install a Video Spliter and Associated Cables on HMAS Newcastle to distribute the FDC video signal"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	17-Jun-08	29-Sep-08	18961.80	=""	="WESTERN ADVANCE PTY LTD"	02-Jul-08 09:21 AM	

+="CN96097"	"1 yrs Premier Equipment Maintenance Services"	="Defence Materiel Organisation"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Jun-08	23-Jun-08	18054.63	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	02-Jul-08 09:27 AM	

+="CN96104"	"Repair of damaged windscreen, S&Q02/081"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	24-Jun-08	16516.50	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:28 AM	

+="CN96106"	"Repair of damaged windscreen, S&Q02/083"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	24-Jun-08	16761.80	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:29 AM	

+="CN96113"	"Program test Set"	="Defence Materiel Organisation"	02-Jul-08	="Marine craft systems and subassemblies"	27-Jun-08	15-Sep-08	17786.96	=""	="THALES COMMUNICATIONS"	02-Jul-08 09:31 AM	

+="CN96145"	"JMO  Services  for Financial year 2007/2008"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Nov-07	30-Jun-08	17478.91	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:36 AM	

+="CN96146"	"Netwars Project Officer"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	04-May-07	30-Jun-10	17494.40	=""	="JACOBS AUSTRALIA"	02-Jul-08 09:36 AM	

+="CN96179"	"EWSP - Install Stage 3 modifications into OMS"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	11-Nov-07	28-Feb-08	17274.18	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:41 AM	

+="CN96218-A1"	"Pt 4 Tsk 99 - GST on USD INV 70245 - Payload PCB Assembly"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	21-Apr-08	30-Jun-08	17596.65	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:47 AM	

+="CN96228"	"HMAS SUCCESS POST REFIT CLEAN MAR 2008"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	28-May-08	03-Jul-08	17039.54	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:49 AM	

+="CN96238"	"Support for implementation of COBRA"	="Defence Materiel Organisation"	02-Jul-08	="Software"	20-Dec-06	30-Jun-09	19250.00	=""	="DELTEK AUSTRALIA PTY LTD"	02-Jul-08 09:51 AM	

+="CN96251"	"gas bottle stowage on hydrographic ships"	="Defence Materiel Organisation"	02-Jul-08	="Fabricated structural assemblies"	12-May-08	06-Aug-08	16392.86	=""	="AIMTEK PTY LTD"	02-Jul-08 09:53 AM	

+="CN96270"	"MANUFACTURE NEW POKER GAUGES"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	18-Jun-08	19-Jun-08	17542.39	=""	="MADCO"	02-Jul-08 09:57 AM	

+="CN96279"	"Use of Exisitng ASP Contract  - Overhaul No 3 Main Salt Water Pump"	="Defence Materiel Organisation"	02-Jul-08	="Industrial pumps and compressors"	25-Jun-08	11-Jul-08	16470.30	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 09:58 AM	

+="CN96280"	"HMAS Betano 2008 EMA (ID)"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	18-Jun-08	30-Aug-08	16142.77	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:58 AM	

+="CN96303-A1"	"MAINTENANCE OF FIRE EXTINGUISHERS"	="Defence Materiel Organisation"	02-Jul-08	="Fire fighting equipment"	30-May-08	30-Jun-08	19000.00	="CONL074"	="CHUBB FIRE SAFETY LTD"	02-Jul-08 10:02 AM	

+="CN96322"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	16720.00	=""	="IBISWORLD PTY LTD"	02-Jul-08 10:05 AM	

+="CN96327"	"INVESTIGATE MK39 GYRO HMAS MANOORA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	19110.43	=""	="ELECTROTECH AUSTRALIA PTY LTD"	02-Jul-08 10:05 AM	

+="CN96383"	"REPAIR AC PIPEWORK HMAS MANOORA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	29-Jan-08	20-Feb-08	19146.95	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:13 AM	

+="CN96396"	"Task backlog"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	04-Jun-08	18956.02	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:15 AM	

+="CN96410"	"REPAIR FIREMAIN HMAS MANOORA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	16-Jan-08	10-Feb-08	19695.39	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:17 AM	

+="CN96427"	"Back up media"	="Australian Crime Commission"	02-Jul-08	="Computer Equipment and Accessories"	26-May-08	26-May-08	18062.00	=""	="Advantage IT Solutions"	02-Jul-08 10:59 AM	

+="CN96430"	"Office Supplies"	="Department of the House of Representatives"	02-Jul-08	="Office supplies"	01-May-08	30-May-08	16260.27	=""	="Corporate Express Aust Ltd"	02-Jul-08 11:19 AM	

+="CN96441"	" Advertising "	="Department of the House of Representatives"	02-Jul-08	="Advertising"	06-Jun-08	30-Jun-08	16190.00	=""	="HMA Blaze Pty Ltd"	02-Jul-08 11:52 AM	

+="CN96449"	" airfares & Insurance "	="Department of the House of Representatives"	02-Jul-08	="Passenger transport"	01-Jun-08	30-Jun-08	16341.60	=""	="Ministerial & Parliamentary Services"	02-Jul-08 12:05 PM	

+="CN96450"	"Printing of ASIC Summer School 2008 conference program and speaker profiles"	="Australian Securities and Investments Commission"	02-Jul-08	="Printing"	01-Jan-08	29-Feb-08	16310.80	=""	="Paragon Printing Australia"	02-Jul-08 12:11 PM	

+="CN96457"	"Producer, script writer"	="Centrelink"	02-Jul-08	="Telecommunications media services"	07-Nov-07	30-Jun-08	18109.41	=""	="Words Alive"	02-Jul-08 12:17 PM	

+="CN96459"	"Interstate courier services"	="Centrelink"	02-Jul-08	="Mail and cargo transport"	07-Aug-07	30-Apr-08	16800.00	=""	="Toll Priority"	02-Jul-08 12:17 PM	

+="CN96476"	"Computer Equipment"	="Centrelink"	02-Jul-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	19793.40	=""	="Hewlett Packard Australia Pty Ltd"	02-Jul-08 12:21 PM	

+="CN96482"	"Optical Surveillance"	="Centrelink"	02-Jul-08	="Security surveillance and detection"	20-Jun-08	30-Jun-08	20000.00	="RFTS06/0560"	="Maurice J Kerrigan and Associates Pty Ltd"	02-Jul-08 12:22 PM	

+="CN96484"	"Worksite Assessment and Rehabilitation Cases"	="Centrelink"	02-Jul-08	="Human resources services"	18-Mar-08	30-Jun-08	19800.00	=""	="Bridge Rehabilitation"	02-Jul-08 12:22 PM	

+="CN96500"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	01-Jul-06	31-Jan-09	19485.40	=""	="Patriot Alliance Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96523"	"Advertising"	="Australian Public Service Commission"	02-Jul-08	="Advertising"	29-May-08	30-Jul-08	17380.00	=""	="ACP Magazines Limited"	02-Jul-08 12:38 PM	

+="CN96524"	"Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	04-Jun-08	22-Sep-08	19580.00	=""	="CIT Solutions"	02-Jul-08 12:38 PM	

+="CN96525"	"Public Policy Breakfast Series"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	05-Jun-08	05-Jun-08	16500.00	=""	="Australian National University"	02-Jul-08 12:38 PM	

+="CN96530"	"Indigenous cadets  2009 intake - adverts"	="Australian Public Service Commission"	02-Jul-08	="Advertising"	23-Jun-08	30-Dec-08	19996.90	=""	="HMA Blaze Pty Ltd"	02-Jul-08 12:39 PM	

+="CN96555"	"Accommodation"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	10-Apr-08	30-Apr-08	16178.49	=""	="Quality Hotel Woden"	02-Jul-08 12:44 PM	

+="CN96558"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	12-May-08	12-May-08	19455.70	=""	="The Trustee for Gillespie Trust"	02-Jul-08 12:45 PM	

+="CN96565"	"Teleconference Services"	="National Native Title Tribunal"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	16-Oct-07	30-Jun-08	16321.89	=""	="Genysis Conferencing Pty Ltd"	02-Jul-08 01:06 PM	

+="CN96566"	"    Cisco Smartnet - Routers & switches maintenance    "	="National Native Title Tribunal"	02-Jul-08	="Client or server programming services"	01-Jul-07	30-Jun-08	16661.64	=""	="Kinetic IT"	02-Jul-08 01:21 PM	

+="CN96598"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	18431.29	=""	="HOLY SPIRIT SCHOOL"	02-Jul-08 01:30 PM	

+="CN96616"	"UNIVAC  &  UNIGRAD 2 PAGE SPREAD + SMS 6000 PA UNDERGRADUATE STUDENTS AND GRADUA"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	19827.50	=""	="UNIMAIL PTY LTD"	02-Jul-08 01:32 PM	

+="CN96622"	"HIRE OF SPORTING FACILITIES FOR HMAS CAIRNS FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Other sports"	18-Jun-08	30-Jun-09	16500.00	=""	="CAIRNS INDOOR SPORTS"	02-Jul-08 01:32 PM	

+="CN96624"	"MAINTENANCE"	="Department of Defence"	02-Jul-08	="Electrical equipment and components and supplies"	18-Jun-08	30-Jun-08	17889.30	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 01:32 PM	

+="CN96627"	"Proventia GX4004C Maintenance"	="Department of Defence"	02-Jul-08	="Software"	16-Jun-08	30-Jun-08	17418.56	=""	="IBM AUSTRALIA LTD"	02-Jul-08 01:33 PM	

+="CN96629"	"ANNUAL CAMP REIMBURSENT SCHOOL BASED CADETS"	="Department of Defence"	02-Jul-08	="Education and Training Services"	16-Jun-08	16-Jun-08	16912.50	=""	="MONIVAE COLLEGE"	02-Jul-08 01:33 PM	

+="CN96630"	"Training"	="Department of Defence"	02-Jul-08	="Specialised educational services"	18-Jun-08	12-Aug-09	16252.15	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:33 PM	

+="CN96631"	"5 Intel desktop computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	20-Jun-08	19112.50	=""	="DIGISQUARE COMPUTERS"	02-Jul-08 01:34 PM	

+="CN96636"	"STORAGE & ARCHIVE SERVICES FOR HMAS CAIRNS FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Storage"	18-Jun-08	30-Jun-09	19800.00	=""	="TOTAL RECORDS MANAGEMENT CAIRNS"	02-Jul-08 01:34 PM	

+="CN96650"	"Medical Supplies"	="Department of Defence"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	16-Jun-08	20-Jun-08	16327.35	=""	="ACCIDENTAL FIRST AID SUPPLIES"	02-Jul-08 01:35 PM	

+="CN96653"	"Asbestos removal"	="Department of Defence"	02-Jul-08	="Environmental control systems"	18-Jun-08	30-Jun-08	16500.00	=""	="RESOLVE FM"	02-Jul-08 01:36 PM	

+="CN96659"	"S5214, WR 300080533. HMAS Penguin - Project Manage implementation of water and energy conservation m"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:36 PM	

+="CN96665"	"S5264, WR 300084305. Sydney Central Region - Proje conduct Level 2 energy audits for KUTT/GI, WATS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:36 PM	

+="CN96669"	"MONTHLY HIRE OF IS SYSTEM"	="Department of Defence"	02-Jul-08	="Location and navigation systems and components"	16-Jun-08	30-Jun-08	17600.00	=""	="ULTIMATE POSITIONING"	02-Jul-08 01:37 PM	

+="CN96677"	"TOOLS"	="Department of Defence"	02-Jul-08	="Tools and General Machinery"	16-Jun-08	30-Jun-08	19092.30	=""	="FX LARKIN PTY LTD"	02-Jul-08 01:37 PM	

+="CN96685"	"KA300/350 INITIAL PILOT TRG"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	30-Jun-08	18543.47	=""	="FLIGHTSAFETY INTERNATIONAL INC."	02-Jul-08 01:38 PM	

+="CN96686"	"AMX Presentation system"	="Department of Defence"	02-Jul-08	="Audio and visual presentation and composing equipment"	16-Jun-08	18-Jul-08	19229.00	=""	="VIDEOPRO BUSINESS CENTRE"	02-Jul-08 01:38 PM	

+="CN96693"	"Provide an audit of tender evaluation model"	="Department of Defence"	02-Jul-08	="Accounting and auditing"	18-Jun-08	30-Jun-09	16500.00	=""	="PROVIDENCE CONSULTING GROUP PL"	02-Jul-08 01:39 PM	

+="CN96702"	"PORTABLE COMPUTER AND ACCESSORIES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	27-Jun-08	18404.00	=""	="PORTABLE COMPUTER SYSTEMS"	02-Jul-08 01:39 PM	

+="CN96709"	"Item required for altitude training"	="Department of Defence"	02-Jul-08	="Electronic hardware and component parts and accessories"	16-Jun-08	18-Jun-08	16403.30	=""	="ALTITUDE TECHNOLOGY SYSTEMS"	02-Jul-08 01:41 PM	

+="CN96710"	" As per quote 10 June 2008 - Licence to commence 01 "	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	19-Jun-08	16500.00	=""	="CYON KNOWLEDGE COMPUTING"	02-Jul-08 01:41 PM	

+="CN96711"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	07-Jul-08	19624.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:41 PM	

+="CN96713"	"SOFTWARE DESIGN"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	17-Jun-08	18480.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	02-Jul-08 01:41 PM	

+="CN96718"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	30-Jun-08	17879.40	=""	="CODARRA ADVANCED SYSTEMS"	02-Jul-08 01:42 PM	

+="CN96734"	"LPG - PEARCE FY 07/08"	="Department of Defence"	02-Jul-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	08-May-08	30-Jun-08	16500.00	=""	="KLEANHEAT GAS"	02-Jul-08 01:43 PM	

+="CN96748"	"CONSULTANCY"	="Department of Defence"	02-Jul-08	="Published Products"	28-May-08	30-Jun-08	19171.85	=""	="INFOFOCUS AUSTRALIA"	02-Jul-08 01:44 PM	

+="CN96756"	"Office equipment"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	11-Jun-08	30-Jun-08	18500.90	=""	="SERVITEL COMMUNICATIONS PTY LTD"	02-Jul-08 01:44 PM	

+="CN96758"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	17559.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:44 PM	

+="CN96772"	"FOOD SERVICES"	="Department of Defence"	02-Jul-08	="Bread and bakery products"	24-Jun-08	30-Jun-08	18082.26	=""	="PDL TOLL"	02-Jul-08 01:45 PM	

+="CN96786"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	17559.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96788"	"PSP Fees/travel"	="Department of Defence"	02-Jul-08	="Professional engineering services"	26-May-08	30-Jun-08	16594.60	=""	="PROJECT OUTCOMES PTY LTD"	02-Jul-08 01:46 PM	

+="CN96821"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	16381.20	=""	="SOUTHERN CROSS CATHOLIC SCHOOL"	02-Jul-08 01:48 PM	

+="CN96831"	"EXTENTION OF OSR1QLD CONTRACT FOR ICT"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	27-Jun-08	30-Jun-08	18935.48	=""	="ICON RECRUITMENT"	02-Jul-08 01:49 PM	

+="CN96841"	"S5261, WR's Rockdale - 300074177, Dee Why - 300074 300074179, Banksmeadow - 300074180. Upgrade"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	19547.77	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:49 PM	

+="CN96857"	"Commission Custodial - Peppimenarti"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	17-Jun-08	17-Jun-08	16654.00	=""	="PATTEMORE CONSTRUCTIONS"	02-Jul-08 01:50 PM	

+="CN96858"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	19800.00	=""	="ROSS HUMAN DIRECTIONS"	02-Jul-08 01:50 PM	

+="CN96906"	"ORTHOPAEDIC SURGEON - RICHMOND"	="Department of Defence"	02-Jul-08	="Emergency and field medical services products"	17-Jan-08	30-Jun-08	19631.19	=""	="MICHAEL WALSH"	02-Jul-08 01:53 PM	

+="CN96919"	"S5091, WR 300075939. Asbestos Removal Program - HM 801"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	17331.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:54 PM	

+="CN96959"	"ViSaGe Visual Generator, CB6-V Response Box, CT6-V  Response Box, Cedrus RB-503 Response Box, Bits++"	="Department of Defence"	02-Jul-08	="Machinery and transport equipment manufacture"	12-Jun-08	18-Jun-08	18302.25	=""	="CAMBRIDGE RESEARCH SYSTEMS LTD"	02-Jul-08 01:57 PM	

+="CN96974"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	27-Jun-08	17600.00	=""	="ISM GROUP"	02-Jul-08 01:57 PM	

+="CN96975"	"Services against Standing Offer 26835"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	24-Jun-08	27-Jun-08	19644.35	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	02-Jul-08 01:58 PM	

+="CN96977"	"Polycom Multi-User Licences"	="Department of Defence"	02-Jul-08	="Software"	13-Jun-08	30-Jun-08	17682.50	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 01:58 PM	

+="CN96992"	"UPGRADE/CHANGE OUT OF MOORING BUOYS"	="Department of Defence"	02-Jul-08	="Water safety"	12-Jun-08	30-Jun-08	18029.00	=""	="DEFENCE MARITIME SERVICES"	02-Jul-08 01:59 PM	

+="CN97003"	"TS VIDCON INSTALLATION"	="Department of Defence"	02-Jul-08	="Electronic Components and Supplies"	19-Jun-08	30-Jun-08	17655.00	=""	="AVPRO"	02-Jul-08 02:00 PM	

+="CN97021"	"Supply and Install of Optical Fibre in BLDG 10"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-May-08	30-Jun-08	18348.00	=""	="BSH ELECTRICAL"	02-Jul-08 02:02 PM	

+="CN97034"	"Software maintenance"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	20-Jun-08	16601.20	=""	="GROUPUTER SOLUTIONS PTY LTD"	02-Jul-08 02:02 PM	

+="CN97052"	"CONSULTANCY FOR SECURITY UPGRADE WORKS OAKEY"	="Department of Defence"	02-Jul-08	="Security and control equipment"	12-Jun-08	30-Jun-08	19633.12	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 02:03 PM	

+="CN96451"	"Software users"	="Department of the House of Representatives"	02-Jul-08	="License management software"	01-Feb-08	31-Jan-09	19514.00	=""	="Alphawest Services Pty Ltd"	02-Jul-08 02:04 PM	

+="CN97074"	"Transportation of units"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	12-Jun-08	13-Jun-08	19720.80	=""	="PDL TOLL"	02-Jul-08 02:05 PM	

+="CN97103"	"DAMAGE TO RHIB EMBARKED TO HMAS CRESWELL"	="Department of Defence"	02-Jul-08	="Military watercraft"	12-Jun-08	30-Jun-08	18133.50	=""	="DEFENCE MARITIME SERVICES"	02-Jul-08 02:08 PM	

+="CN97112"	"GROCERIES FOR MONTH OF MAY CNS 01/07"	="Department of Defence"	02-Jul-08	="Food and Beverage Products"	05-Jun-08	30-Jun-08	17737.62	=""	="GAROZZOS AGENCIES PTY LTD"	02-Jul-08 02:08 PM	

+="CN97115"	"GROCERIES"	="Department of Defence"	02-Jul-08	="Prepared and preserved foods"	10-Jun-08	30-Jun-08	16190.68	=""	="BID VEST BURLEIGH MARR"	02-Jul-08 02:08 PM	

+="CN97127"	"REPLACE UNDERGROUND WATER RETICULATION - WATER TANK - CABARLAH"	="Department of Defence"	02-Jul-08	="Water resources development and oversight"	27-Jun-08	30-Jun-08	17600.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 02:09 PM	

+="CN97130"	"HQJOC PROJECT - THALES - CISCO EQUIPMENT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	26-Jun-08	30-Jun-08	16853.20	=""	="THALES AUSTRALIA"	02-Jul-08 02:09 PM	

+="CN97150"	"Computer Accessories"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	20-Jun-08	18773.70	=""	="GENCOM TECHNOLOGY PTY LTD"	02-Jul-08 02:11 PM	

+="CN97158"	"VEHICLE LEASE - HQJTF 633"	="Department of Defence"	02-Jul-08	="Motor vehicles"	07-Jun-08	16-Jun-08	18266.82	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97159"	"Dell 3008WFP Ultrasharp Flat Panel Monitor"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	23-Jun-08	17160.00	=""	="DELL AUSTRALIA PTY LTD"	02-Jul-08 02:11 PM	

+="CN97179"	"JUN 08 TELEHANDLER LEASE - FLLA K"	="Department of Defence"	02-Jul-08	="Material handling machinery and equipment"	07-Jun-08	15-Jun-08	16060.36	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:12 PM	

+="CN97187"	"S5091, WR 300081330. DSG-SC Asbestos removal progr asbestos containing external facade panels as per"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	17191.35	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:12 PM	

+="CN97192"	"Provision of services of medical officer to AWHC"	="Department of Defence"	02-Jul-08	="Physical and occupational therapy and rehabilitation products"	05-May-08	30-Jun-08	16039.06	="931"	="CHANDLER MACLEOD GROUP"	02-Jul-08 02:13 PM	

+="CN97194"	"DEFENCE SCHOOL MENTOR PROGRAM-PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	16-Jun-08	16-Jun-08	18321.60	=""	="ST MARY'S COLLEGE"	02-Jul-08 02:13 PM	

+="CN97199"	"Hygiene services quoted on 31/03/08 & equipment hire and laboratory cost incurred by ESP"	="Department of Defence"	02-Jul-08	="Personal safety and protection"	30-Apr-08	31-Jul-08	18684.60	=""	="COAST TO COAST SAFETY SOLUTIONS"	02-Jul-08 02:14 PM	

+="CN97205"	"FIELD RATIONS - ION 17864 FRESH RATIONS"	="Department of Defence"	02-Jul-08	="Food and Beverage Products"	16-Jun-08	19-Jun-08	18759.27	=""	="ASIAN IMPORTERS EXPORTERS CO"	02-Jul-08 02:14 PM	

+="CN97213"	"Computer Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	01-Jul-08	19700.72	=""	="ASI SOLUTIONS PTY LTD"	02-Jul-08 02:15 PM	

+="CN97214"	"PROVISION OF PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	20-May-08	30-Jun-08	16017.55	=""	="TNT AUSTRALIA"	02-Jul-08 02:15 PM	

+="CN97185"	"Magazine"	="Department of the House of Representatives"	02-Jul-08	="Magazine advertising"	24-Jun-08	31-Jul-08	18958.50	=""	="PBMC"	02-Jul-08 02:15 PM	

+="CN97225"	"DISPLAY BANNERS"	="Department of Defence"	02-Jul-08	="Graphic design"	16-Jun-08	30-Jun-08	19382.00	=""	="HI-RES SOLUTIONS"	02-Jul-08 02:16 PM	

+="CN97226"	"ADMINISTRATION COST JUNE 2008 - FLLA B"	="Department of Defence"	02-Jul-08	="Cleaning and janitorial services"	07-Jun-08	15-Jun-08	17017.60	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:16 PM	

+="CN97232"	"FORKLIFT TRAINING AND ASSESSMENTS 36SQN"	="Department of Defence"	02-Jul-08	="Material handling machinery and equipment"	27-May-08	27-Jun-08	16400.00	=""	="COMPETENT SUPPORT SERVICES PTY LTD"	02-Jul-08 02:16 PM	

+="CN97254"	"Accommodation and Meals"	="Department of Defence"	02-Jul-08	="Cleaning and janitorial services"	04-Apr-08	06-Apr-08	17496.53	=""	="COMPASS GROUP (AUSTRALIA) PTY LTD"	02-Jul-08 02:18 PM	

+="CN97266"	"MINOR EXPENSES - FLLA A"	="Department of Defence"	02-Jul-08	="Tools and General Machinery"	27-May-08	14-Jun-08	16932.85	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:19 PM	

+="CN97289"	"Replace all faulty and suspect hydraulic hoses for hydraulic test stands 234617/234159/238529"	="Department of Defence"	02-Jul-08	="Hydraulic systems and components"	13-Jun-08	11-Jul-08	16500.00	=""	="KATHERINE MACHINING PTY LTD"	02-Jul-08 02:20 PM	

+="CN97294"	"Supply & installation of electrical works as per quote"	="Department of Defence"	02-Jul-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	31-May-08	30-Jun-08	16014.95	=""	="MJ ELECTRICAL (PNG)"	02-Jul-08 02:20 PM	

+="CN97298"	"SAPPER RING ROAD BASE"	="Department of Defence"	02-Jul-08	="Roads and landscape"	19-Jun-08	19-Jun-08	19176.58	=""	="DIAL A DUMP INDUSTRIES TRUST"	02-Jul-08 02:21 PM	

+="CN97315"	" TADANO ARN-46751 WALLY W/O-38183 "	="Department of Defence"	02-Jul-08	="Motor vehicles"	02-Jul-08	21-Aug-08	18471.75	=""	="MC IMPORTS"	02-Jul-08 02:23 PM	

+="CN97324"	" IT service and support "	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jun-08	16610.00	=""	="AWA LIMITED"	02-Jul-08 02:23 PM	

+="CN97336"	"Consultancy Services"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	03-Mar-08	30-Jun-08	17083.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 02:24 PM	

+="CN97363"	"PROBITY ADVICE"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Jun-08	18459.38	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	02-Jul-08 02:26 PM	

+="CN97364"	"Secondhand Vehicles for Vehicle Trade Training Army Logistic Training Centre, Bandiana"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	19-Jun-08	30-Jun-08	20000.00	=""	="WOTHERSPOON MOTORS"	02-Jul-08 02:26 PM	

+="CN97376"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	01-Mar-09	19231.59	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 02:27 PM	

+="CN97381"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	16271.54	=""	="PEOPLEBANK"	02-Jul-08 02:27 PM	

+="CN97400"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	01-Jul-09	17600.00	=""	="CYBERTRUST AUSTRALIA PTY LTD"	02-Jul-08 02:28 PM	

+="CN97417"	"POC: ANDREW TRACKSON CONTACT: 02 626 50502"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jun-08	18694.50	=""	="SUN MICROSYSTEMS"	02-Jul-08 02:30 PM	

+="CN97429"	"SAFETY COURSES AND TRAVEL"	="Department of Defence"	02-Jul-08	="Travel facilitation"	18-Jun-08	22-May-09	18774.00	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 02:31 PM	

+="CN97433"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	08-May-09	18457.23	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 02:31 PM	

+="CN97442"	"Supply & installation of electrical works as per quote"	="Department of Defence"	02-Jul-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	10-Jun-08	30-Jun-08	17743.45	=""	="MJ ELECTRICAL (PNG)"	02-Jul-08 02:32 PM	

+="CN97444"	"EQUIPTMENT TO ESTABLISH A FITNESS ROOM AT DFRC-MEL INCLUDES A PRESS STATION AND SEMI-COMMERCIAL TREA"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	16395.00	=""	="FITNESS CHOICE"	02-Jul-08 02:33 PM	

+="CN97455"	"BULK GAS FOR MINOR CAIRNS UNITS, AEROGLEN & T.ISLAND, MAREEBA & MT ISA"	="Department of Defence"	02-Jul-08	="Utilities"	19-Jun-08	30-Jun-09	17679.20	=""	="ORIGIN ENERGY PTY LTD"	02-Jul-08 02:33 PM	

+="CN97518"	"HQJOCP- ALLIED TECHNOLOGIES - CABLING WORKS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	19118.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	02-Jul-08 02:39 PM	

+="CN97527"	"EO Trials Dta Recorder Enhancements"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	27-Jun-08	16190.90	=""	="TENIX SYSTEMS PTY LTD"	02-Jul-08 02:40 PM	

+="CN97572"	"Training program"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Jun-08	30-Sep-08	18425.00	=""	="UNI OF NSW"	02-Jul-08 02:45 PM	

+="CN97590"	"ACCOUNT NO.10516 - POSTAL SERVICES FOR HMAS CAIRNS"	="Department of Defence"	02-Jul-08	="Mailing services"	18-Jun-08	30-Jun-09	18500.00	=""	="AUSTRALIA POST"	02-Jul-08 02:47 PM	

+="CN97608"	"ITEMS REQUIRED FOR BRF INSTAL"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	20-Jun-08	17509.36	=""	="OPTICAL SOLUTIONS AUSTRALIA"	02-Jul-08 02:48 PM	

+="CN97610"	"Installation of Shade Sail"	="Department of Defence"	02-Jul-08	="Permanent structures"	17-Jun-08	17-Jul-08	18528.40	=""	="KATHERINE CANVAS AND UPHOLSTERY"	02-Jul-08 02:48 PM	

+="CN97626"	"For DISIP Stage 1"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	16905.50	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:49 PM	

+="CN97638"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	19800.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:50 PM	

+="CN97639"	"STATIONARY  REQ'D BY RFLMN WING FOR IET COURSES"	="Department of Defence"	02-Jul-08	="Office supplies"	12-Jun-08	20-Jun-08	16935.84	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	02-Jul-08 02:51 PM	

+="CN97648"	"IT Equipment"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	17-Sep-08	19118.00	=""	="TC COMMUNICATIONS PTY LTD"	02-Jul-08 02:52 PM	

+="CN97650"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	16500.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:52 PM	

+="CN97672"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	19058.49	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:54 PM	

+="CN97719"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	19147.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97766"	"Accomodation - National Disability Award"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Travel facilitation"	23-Jun-08	03-Dec-08	18220.00	=""	="Hotel Realm"	02-Jul-08 04:44 PM	

+="CN97774"	"Online Abilities Testing."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	19-Jun-08	30-Jun-08	19904.50	=""	="Lynne Hoban Personnel Systems P/L"	02-Jul-08 04:46 PM	

+="CN97781"	"Development of strategies to increase private investment in employment of people with disability"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	19-Jun-08	31-Jul-08	19250.00	=""	="ADC Associates"	02-Jul-08 04:47 PM	

+="CN97804"	"Convening the second national MAN conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Marketing and distribution"	26-Jun-08	31-Jan-09	16500.00	=""	="The Men's Advisory Network Inc."	02-Jul-08 04:50 PM	

+="CN97814"	"Money Business T shirts singlets and caps"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Marketing and distribution"	24-Jun-08	30-Jun-08	17912.95	=""	="Corporate Innovations"	02-Jul-08 04:52 PM	

+="CN97847"	"Survey - Review of Aust Gov Use of ICT Financial Data Colleciton"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Lubricants and oils and greases and anti corrosives"	11-Jun-08	30-Jun-08	16610.00	=""	="KPMG"	02-Jul-08 04:56 PM	

+="CN97897"	"Regional Newspaper adverts"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	12-Jun-08	16511.18	=""	="HMA Blaze Pty Limited"	02-Jul-08 05:04 PM	

+="CN97900"	"sponsorship of 2009 australian disasters conferenc"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	30-Jun-08	20000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-Jul-08 05:05 PM	

+="CN97908"	"Annual Payment - Office accommodation & support facilities for Nguiu community Liaison Officer"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Accommodation furniture"	16-Jun-08	30-Jun-08	20000.00	=""	="Tiwi Land Council"	02-Jul-08 05:06 PM	

+="CN97929"	"JTE - Facilitation of BluePrint and development of Communications Plan"	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	29-Feb-08	18700.00	=""	="Impact Employee Communications Pty Limited"	03-Jul-08 09:32 AM	

+="CN97953-A1"	" S70B Aircraft Spares "	="Defence Materiel Organisation"	03-Jul-08	="Aircraft"	03-Jul-08	14-May-09	19857.73	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	03-Jul-08 10:04 AM	

+="CN97978"	"PROVISION OF PROJECT MANAGEMENT ADVISORY SERVICES"	="Australian Taxation Office"	03-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	26-Jun-08	18150.00	=""	="KEPNER-TREGOE AUSTRALASIA PTY"	03-Jul-08 10:32 AM	

+="CN97991"	"Aircraft Spares 661569195"	="Defence Materiel Organisation"	03-Jul-08	="Military rotary wing aircraft"	25-Jun-08	21-Jan-09	16346.66	=""	="Sikorsky Aircraft Australia Ltd"	03-Jul-08 10:39 AM	

+="CN97999-A1"	"Provision of Actuarial Services"	="Australian National Audit Office (ANAO)"	03-Jul-08	="Audit services"	13-Jun-08	31-Aug-08	18200.00	=""	="Russell Employee Benefits"	03-Jul-08 10:53 AM	

+="CN98012-A1"	"Stakeholder Survey Research Services"	="Australian Fair Pay Commission"	03-Jul-08	="Market research"	19-May-08	15-Jul-08	16401.00	=""	="Ipsos-Eureka"	03-Jul-08 11:25 AM	

+="CN98032"	"Airfares"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	21-May-08	21-May-08	16748.41	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:39 PM	

+="CN98049"	"Airfares"	="Department of Defence"	03-Jul-08	="Travel facilitation"	02-Apr-08	02-Apr-08	16400.13	=""	="QANTAS,415-7425222"	03-Jul-08 02:07 PM	

+="CN98058"	"Airfares to Turkey / MEAO / UK"	="Department of Defence"	03-Jul-08	="Passenger transport"	22-Apr-08	22-Apr-08	16632.78	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98059"	"OCAF-SHEPHERD-33-07/08-ANZAC-MEAO-UK"	="Department of Defence"	03-Jul-08	="Passenger transport"	22-Apr-08	22-Apr-08	17124.14	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98060"	"OCAF-KRETSCHMANN-33-07/08-ANZAC-MEAO-UK"	="Department of Defence"	03-Jul-08	="Passenger transport"	22-Apr-08	22-Apr-08	16632.78	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98061"	"P/N: DEMPSTERALLISONMS TKT: 08147026595140 R/N: Not Supplied DOM ACCOM/TOUR ONO: 332281-21319 GWT: 18500"	="Department of Defence"	03-Jul-08	="Aircraft"	25-Apr-08	11-Jun-08	16231.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:09 PM	

+="CN98074"	"ACCOMODATION DEPOSIT FOR EX VITAL PROSPECT 08 ACMS-1043201"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	08-May-08	08-May-08	20000.00	=""	="BARDON"	03-Jul-08 02:11 PM	

+="CN98077"	"Microcombat team experiment 3 RAR accomodation for 14 personnel"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	09-May-08	09-May-08	16138.00	=""	="QUEST TOWNSVILLE"	03-Jul-08 02:11 PM	

+="CN98079"	"OCAF-SHEPHERD-33-07/08-ANZAC-MEAO-UK"	="Department of Defence"	03-Jul-08	="Passenger transport"	06-May-08	06-May-08	19719.84	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:11 PM	

+="CN98103"	"O/S Flights 000054"	="Department of Defence"	03-Jul-08	="Passenger transport"	27-May-08	27-May-08	17605.28	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98116"	"P/N: BLACK/DANIEL DR TKT: 08124706552770 R/N: Not Supplied EK: F BNE/DXB - EK: A DXB/FRA DATE TRAVEL: 29/05/08 REF:2IQ3F5"	="Department of Defence"	03-Jul-08	="Emergency and field medical services products"	08-Jun-08	08-Jun-08	16019.54	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98117"	"Group travel for cadets from LST to MEL and return"	="Department of Defence"	03-Jul-08	="Travel facilitation"	06-Jun-08	13-Sep-08	18300.00	=""	="VIRGIN BLUE"	03-Jul-08 02:17 PM	

+="CN98122"	"DAVIS/FORD MIDN TKT: 08124710156350 R/N: Not Supplied AA: J POS/MIA - AA: Y MIA/LAX DATE TRAVEL: 04/06/08 REF:ZLSOCP ONO: 241440-21303 GWT: 8530967"	="Department of Defence"	03-Jul-08	="Passenger transport"	15-Jun-08	15-Jun-08	16551.92	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:18 PM	

+="CN98125"	"Holding deposit for Hyatt hotel for DRSC International Conference"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	13-Feb-07	13-Feb-07	20000.00	=""	="HYATT CANBERRA"	03-Jul-08 02:19 PM	

+="CN98140"	"Dept requirement"	="Department of Defence"	03-Jul-08	="Audio and visual presentation and composing equipment"	22-Apr-08	22-Apr-08	16721.79	=""	="ELECTROBOARD SOLUTIO"	03-Jul-08 02:21 PM	

+="CN98144"	"Registrations for SIA Conference - MEL"	="Department of Defence"	03-Jul-08	="Business administration services"	23-Apr-08	01-May-08	16112.00	=""	="SAFETY INST OF AUST"	03-Jul-08 02:22 PM	

+="CN98145"	"22/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	23-Apr-08	31-May-08	19476.11	=""	="SYMBION IMAGING"	03-Jul-08 02:22 PM	

+="CN98147"	"HERITAGE INN AND SUITES  RIDGECREST CA ACCOMMODATION EX BLACKWOOD III 08 CHINA LAKE 14-20 APR 08 1SQN"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	23-Apr-08	23-Apr-08	18316.53	=""	="RIDGECREST INN"	03-Jul-08 02:22 PM	

+="CN98153"	"SOHQ SMARTBOARDACMS-1063510"	="Department of Defence"	03-Jul-08	="Audio and visual presentation and composing equipment"	29-Apr-08	29-Apr-08	17428.05	=""	="ELECTROBOARD SOLUTIO"	03-Jul-08 02:23 PM	

+="CN98158"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	01-May-08	01-May-08	16553.00	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:24 PM	

+="CN98163"	"HERITAGE INN AND SUITES  RIDGECREST CA ACCOMMODATION EX BLACKWOOD III 08 CHINA LAKE 21-27 APR 08 1SQN"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	30-Apr-08	30-Apr-08	17201.38	=""	="RIDGECREST INN"	03-Jul-08 02:24 PM	

+="CN98189"	"114/0708 Ex Maple Guardian / Fincastle"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	09-May-08	09-May-08	18460.59	=""	="PORT AUGUSTA MOTEL"	03-Jul-08 02:28 PM	

+="CN98194"	"FREIGHT"	="Department of Defence"	03-Jul-08	="Transportation and Storage and Mail Services"	09-May-08	09-May-08	18230.37	=""	="ROSETRUNK.COM"	03-Jul-08 02:28 PM	

+="CN98209"	"Dept requirement"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	13-May-08	13-May-08	16516.50	=""	="DIRECT ERGONOMICS"	03-Jul-08 02:30 PM	

+="CN98221"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	16-May-08	16-May-08	16442.40	=""	="HEALTH & COMM SERVS"	03-Jul-08 02:32 PM	

+="CN98234"	"BULK MONTHLY PAYMENT FOR UNITS, 5 BDE, 5 CSSB, 23 FD REG, 1/19 RNAWR, 1/15 RNSWL, AND 21 CON REG."	="Department of Defence"	03-Jul-08	="Construction and maintenance support equipment"	22-May-08	22-May-08	16870.38	=""	="J BLACKWOOD & SON LTD"	03-Jul-08 02:33 PM	

+="CN98237"	"Accommodation"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	26-May-08	26-May-08	16975.56	=""	="CROWNEPLAZACOOGEE"	03-Jul-08 02:34 PM	

+="CN98241"	"Conference fees 8 attendees at Annual Performance Based Maintenance Contract Conference 2008 on 28-29 July 2008."	="Department of Defence"	03-Jul-08	="Education and Training Services"	23-May-08	06-Jun-08	16156.80	=""	="LIQUID LEARNING GROUP"	03-Jul-08 02:34 PM	

+="CN98248"	"02/0608 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	27-May-08	30-Jun-08	16848.12	=""	="ST ANDREWS HOSPITAL"	03-Jul-08 02:36 PM	

+="CN98249"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	28-May-08	28-May-08	16016.00	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:36 PM	

+="CN98250"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	28-May-08	11-Jun-08	16468.31	=""	="FURNIX MAROUBRA"	03-Jul-08 02:36 PM	

+="CN98258"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	28-May-08	28-May-08	16693.98	=""	="ST VINCENTS PRV HOSP"	03-Jul-08 02:37 PM	

+="CN98262"	"General - Maura Fay Workshop - Comms in Leadership"	="Department of Defence"	03-Jul-08	="Education and Training Services"	27-May-08	27-May-08	18700.00	=""	="MAURA FAY WORKSHOPS"	03-Jul-08 02:37 PM	

+="CN98267"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	29-May-08	28-Jun-08	17403.00	=""	="HEALTH CORPORATE NETWO"	03-Jul-08 02:38 PM	

+="CN98271"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	29-May-08	28-Jun-08	16274.75	=""	="ST JOHN OF GOD SU"	03-Jul-08 02:39 PM	

+="CN98276"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	02-Jun-08	16-Jun-08	16669.25	=""	="DR SAWJIN TEW"	03-Jul-08 02:39 PM	

+="CN98284"	"SIMTECT BOOTH HIRE"	="Department of Defence"	03-Jul-08	="Education and Training Services"	06-Jun-08	06-Jun-08	18750.00	=""	="CONSEC SUPPORT SRV"	03-Jul-08 02:41 PM	

+="CN98287"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	05-Jun-08	30-Jun-08	18073.69	=""	="HOLDYINNPOTTSPOINT"	03-Jul-08 02:41 PM	

+="CN98296"	"Equipment for casulity risk modelling and image analysis"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	11-Jun-08	16-Jun-08	16223.80	=""	="HARRIS TECHNOLOGY"	03-Jul-08 02:42 PM	

+="CN98298"	"MEDICAL SERVICES FOR 8249900,8443032,8522351,8271846,8488907,8226588,8502751,8230871,8216693,8509702,8272045,8215169"	="Department of Defence"	03-Jul-08	="Medical practice"	12-Jun-08	12-Jun-08	17899.28	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:43 PM	

+="CN98302"	"Accom - Shangri La Manila SGT CDSS"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	12-Jun-08	12-Jun-08	16280.70	=""	="SHANGRI-LA HOTEL MAKATI"	03-Jul-08 02:43 PM	

+="CN98305"	"Role players Account"	="Department of Defence"	03-Jul-08	="Temporary personnel services"	13-Jun-08	13-Jun-08	18366.66	=""	="INTEGRACOM MANAGEMEN"	03-Jul-08 02:43 PM	

+="CN98306"	"Gym Equiment"	="Department of Defence"	03-Jul-08	="Fitness equipment"	12-May-08	01-Jun-08	16486.48	=""	="ROCKINGHAM FITNESS CT"	03-Jul-08 02:44 PM	

+="CN98316"	"Shipping containers for storage for 2WG AAFC SQNs"	="Department of Defence"	03-Jul-08	="Storage"	18-Jun-08	18-Jun-08	18896.90	=""	="CONTAINER WORKS"	03-Jul-08 02:45 PM	

+="CN98317"	"monitors"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	17-Jun-08	16112.80	=""	="DELL COMPUTER P/L SYDN"	03-Jul-08 02:45 PM	

+="CN98328"	"PURCHASE FURNITURE FOR FLSE OFFICES."	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	17-Jun-08	23-Jun-08	17596.70	=""	="TOSCO OFFICE"	03-Jul-08 02:47 PM	

+="CN98334"	"PCA0708-099 ALB Chapel and Ministry Resourses - Jun 2008 - Religious Ceremonial and Ecclesisatical Equip"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	18-Jun-08	18-Jun-08	16682.55	=""	="CHURCH STORES PTY LTD"	03-Jul-08 02:48 PM	

+="CN98336"	"Ex Wallaby 08 Mid Planning Conferece"	="Department of Defence"	03-Jul-08	="Travel facilitation"	20-Jun-08	20-Jun-08	17797.56	=""	="THE REGENT SINGAPORE"	03-Jul-08 02:48 PM	

+="CN98342"	"2 invoices paid for Kadina office furnitureHampstead Barracks trestle tables"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	20-Jun-08	30-Jun-08	19140.40	=""	="MILE END OFFICE FURN"	03-Jul-08 02:49 PM	

+="CN98353"	"85 bar code scanners for ADFIS HQ and regions"	="Department of Defence"	03-Jul-08	="Information services"	23-Jun-08	30-Jun-08	16874.00	=""	="UNIQUE MICRO DESIGN PT"	03-Jul-08 02:51 PM	

+="CN98354"	"PO08096"	="Department of Defence"	03-Jul-08	="Domestic appliances"	24-Jun-08	24-Jun-08	18285.00	=""	="THE GOOD GUYS OSBORNE PRK"	03-Jul-08 02:52 PM	

+="CN98356"	"ASPI - Global Forces (10 Tickets)"	="Department of Defence"	03-Jul-08	="Education and Training Services"	25-Jun-08	03-Jul-08	16800.00	=""	="CONFERENCE ONLINE"	03-Jul-08 02:52 PM	

+="CN98359"	"29/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	26-Jun-08	30-Jun-08	19370.50	=""	="BRISBANE PRIVATE HOSPITAL"	03-Jul-08 02:52 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val20000to30000.xls
@@ -1,1 +1,382 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95617"	"Lease motor vehicle Running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	11-Oct-06	11-Oct-08	20324.70	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:06 AM	

+="CN95625"	"Audio visual requirements for Transport Colloquium Audio visual requirements for Regional Perspectiv"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	17-Jun-08	27-Jun-08	23314.50	=""	="One Vision Pty Ltd"	01-Jul-08 10:08 AM	

+="CN95631"	"Service Agreement for the Supply of ID plates"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Transportation components and systems"	24-May-08	24-May-09	29999.99	=""	="NIDDRIE NAMEPLATES PTY LTD"	01-Jul-08 10:09 AM	

+="CN95639"	"Lease of vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	27-Jun-08	27-Jun-10	29364.46	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:10 AM	

+="CN95648"	"Leased vehicle Vehicle running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	26-Mar-07	25-Mar-09	23222.42	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:12 AM	

+="CN95650"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Jul-08	22000.00	="TRS06/017"	="Hyro Solutions Pty Ltd"	01-Jul-08 10:14 AM	

+="CN95647"	" CUMMERBUND WOMAN'S/MAN'S AIRFORCE BLUE "	="Defence Materiel Organisation"	01-Jul-08	="Clothing accessories"	18-Jun-08	19-Sep-08	29887.00	=""	="JOMAC Australia Pty Ltd"	01-Jul-08 10:14 AM	

+="CN95662"	" PROVISION OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	01-Jul-08	="Motor vehicles"	01-Jul-08	15-Jul-08	22531.81	=""	="LAND ROVER AUSTRALIA"	01-Jul-08 10:32 AM	

+="CN95673"	"Review Finance area structure and numbers"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-08	25000.00	="DCON/05/53"	="ERNST & YOUNG"	01-Jul-08 11:10 AM	

+="CN95680"	"Advertising - National E-security Awareness Week & Stay Smart Online website (GCUADV2002/03)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	07-Jun-08	24-Jun-08	22472.34	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:12 AM	

+="CN95682-A1"	"Advice & other legal services-FOI matters before AAT"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	25-Jun-08	30-Jun-09	25408.35	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:12 AM	

+="CN95683"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	22880.00	="ATM08/1079"	="Cordelta Pty Ltd"	01-Jul-08 11:13 AM	

+="CN95701"	"Development of Selected Documents into Exari"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	16-Jun-08	22000.00	="DCON/08/44"	="Exari Systems Pty Ltd"	01-Jul-08 11:17 AM	

+="CN95703"	"Focus Groups and Usability testing"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	18-Oct-08	24640.00	="DCON/07/65"	="Usability One"	01-Jul-08 11:17 AM	

+="CN95706-A1"	"Probity checks -Australia Post Board of Directors"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	20-Jun-08	30-Jun-09	20000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:17 AM	

+="CN95715"	"Painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	02-Jun-08	02-Jun-08	22770.00	=""	="NICK DOBSON PAINTING"	01-Jul-08 11:59 AM	

+="CN95719"	"Lease for premises at 76 Rossmoya Rd, The Caves QLD 4702"	="Department of Defence"	01-Jul-08	="Lease and rental of property or building"	28-May-07	14-Jul-08	25000.00	=""	="The Caves Showgrounds Society"	01-Jul-08 12:07 PM	

+="CN95720"	" Centrelink Agent - Jigalong, WA "	="Centrelink"	01-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Jigalong Community"	01-Jul-08 12:09 PM	

+="CN95734"	"TRIM - Project Manager Business Intelligence Implementation"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	31-Jul-08	29040.00	="06/170-05"	="Oakton AA Services Pty Ltd"	01-Jul-08 01:01 PM	

+="CN95737"	"coin set"	="Royal Australian Mint"	01-Jul-08	="Mint coin collections"	05-Jun-08	10-Jun-08	20301.60	=""	="ROYAL MINT"	01-Jul-08 01:06 PM	

+="CN95742-A1"	"REPAIR STABLIZER"	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	26-Aug-08	25300.00	=""	="BOEING COMPONENT"	01-Jul-08 01:19 PM	

+="CN95751"	"Supply of covered boom sprayer"	="Department of Parliamentary Services"	01-Jul-08	="Agricultural and forestry and landscape machinery and equipment"	17-Jun-08	30-Jun-08	23721.75	=""	="J & V Jauncey Farm Contracting"	01-Jul-08 01:41 PM	

+="CN95765"	"tuition"	="Royal Australian Mint"	01-Jul-08	="Polytechnic"	16-Jun-08	16-Jun-08	22000.00	=""	="CIT SOLUTIONS"	01-Jul-08 02:09 PM	

+="CN95774"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	17-Jun-08	30-Sep-08	27417.50	=""	="FORM-RITE AUSTRALIA PTY LTD"	01-Jul-08 02:16 PM	

+="CN95779"	"painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	18-Jun-08	18-Jun-08	25232.99	=""	="NICK DOBSON PAINTING"	01-Jul-08 02:33 PM	

+="CN95822"	"water and sewarge"	="Royal Australian Mint"	01-Jul-08	="Sewage treatment services"	27-Jun-08	27-Jun-08	21720.60	=""	="ACTEWAGL WATER AND SEWERAGE"	01-Jul-08 03:07 PM	

+="CN72166-A1"	"Provision of temporary personnel to admin support for Investigations Section during TRIM Implementation"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	18-Mar-08	18-May-08	26105.67	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 03:25 PM	

+="CN95827"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	01-Jul-08	="Motor vehicles"	01-Jul-08	15-Jul-08	21317.72	=""	="PREMIER AUTO GROUP"	01-Jul-08 03:29 PM	

+="CN95346"	"Upgrade SPB Software, enhance capabilities."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software patches or upgrades"	25-Jun-08	30-Jun-08	28187.50	=""	="The MathWorks Australia Pty Ltd"	01-Jul-08 04:13 PM	

+="CN95840"	"    Intra Maps Annual Maintenance - geospatial Software    "	="National Native Title Tribunal"	01-Jul-08	="Map creation software"	10-Aug-07	31-Dec-08	27048.45	=""	="Digital Mapping solutions"	01-Jul-08 04:20 PM	

+="CN95841"	"    Electroboard Video Conferencing & Maintenance    "	="National Native Title Tribunal"	01-Jul-08	="Video conferencing software"	15-Nov-07	14-Nov-08	29991.21	=""	="Electroboard Solutions Pty Ltd"	01-Jul-08 04:33 PM	

+="CN95861"	"Installation Design- Replacement Weapons storage Racks- Armoury and Breezeway"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	13-Jun-08	07-Jul-08	22124.30	=""	="ADVITECH PTY LTD"	02-Jul-08 08:36 AM	

+="CN95872"	"Laptop Replacement .12"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	13-Jun-08	30-Sep-08	27500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 08:39 AM	

+="CN95896"	"Safety Assessment for Mini-Typhoon Installation on HMAS Sydney"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	16-Jun-08	13-Aug-08	27289.90	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	02-Jul-08 08:44 AM	

+="CN95906"	"Professional Legal Fees"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	16-Jun-08	30-Jun-08	26675.00	=""	="CLAYTON UTZ"	02-Jul-08 08:45 AM	

+="CN95918"	"Complex Procurement Training for ASD AMS Branch"	="Defence Materiel Organisation"	02-Jul-08	="Education and Training Services"	11-Jun-08	19-Aug-08	28296.40	=""	="MAJOR TRAINING SERVICES PTY LTD"	02-Jul-08 08:48 AM	

+="CN95921"	"Prepare warehouse, arrange cranage & incidentals to unload LARS & ASRV"	="Defence Materiel Organisation"	02-Jul-08	="Safety and rescue water craft"	11-Jun-08	30-Jun-08	28121.50	=""	="OCEAN TECHNIX"	02-Jul-08 08:48 AM	

+="CN95923"	"Travel and Contingency Costs for Flight testing"	="Defence Materiel Organisation"	02-Jul-08	="Spacecraft"	11-Jun-08	11-Jul-08	22227.69	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 08:49 AM	

+="CN95925"	"RING, SEAL"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	01-Apr-09	28180.91	=""	="ROLLS - ROYCE PLC"	02-Jul-08 08:49 AM	

+="CN95927"	"SHAFT, SHOULDERED"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	11-Jun-08	15-Feb-09	20182.89	=""	="AERO INTERNATIONAL INCORPORATED"	02-Jul-08 08:50 AM	

+="CN95942"	"Diploma in Government - Contracting"	="Defence Materiel Organisation"	02-Jul-08	="Education and Training Services"	11-Jun-08	31-Jul-08	23424.50	=""	="MAJOR TRAINING SERVICES PTY LTD"	02-Jul-08 08:53 AM	

+="CN95951-A1"	" Contract finalised early. Revised Category entered "	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	12-Jun-08	12-Jul-08	24112.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	02-Jul-08 08:55 AM	

+="CN95964"	"Army Spares"	="Defence Materiel Organisation"	02-Jul-08	="Arms and ammunition accessories"	12-Jun-08	01-Sep-08	23023.92	=""	="HECKLER & KOCH GMBH"	02-Jul-08 08:58 AM	

+="CN95971"	"LinkOne Media Viewer Licence"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	12-Jun-08	01-Jul-08	26928.00	=""	="MINCOM LTD"	02-Jul-08 08:59 AM	

+="CN95982"	"Engineering Assessment for LCH Hydraulic System"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Jun-08	30-Sep-08	29042.81	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:01 AM	

+="CN95986"	"DOCUMENT SCANNER AVISION AV220C2"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	26-Jun-08	29770.13	=""	="DATAFLEX PTY LTD"	02-Jul-08 09:02 AM	

+="CN95990"	"NUT"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	01-Dec-09	21904.73	=""	="ROLLS - ROYCE PLC"	02-Jul-08 09:03 AM	

+="CN96014"	"P3 Accord Web Services (PAWS) Upgrade Server"	="Defence Materiel Organisation"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	18-Jun-08	27-Jun-08	25717.34	=""	="DATA 3 GROUP"	02-Jul-08 09:07 AM	

+="CN96028"	"Server 1 for MPSPO LSA Cell"	="Defence Materiel Organisation"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	19-Jun-08	27-Jun-08	20957.20	=""	="DATA 3 GROUP"	02-Jul-08 09:11 AM	

+="CN96031-A1"	"     Purchase of QTY 8 Laptop Restraint Assy P/N AM08002-1, QTY 30 Insert Joint Precision Air Drop System (JPADS) Laptop Instal AM08031-1        "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	19-Jun-08	11-Sep-08	28143.47	=""	="AMCE PTY LTD"	02-Jul-08 09:12 AM	

+="CN96048"	"IMAGINE Software - Renewal of Maintenance"	="Defence Materiel Organisation"	02-Jul-08	="Software"	19-Jun-08	30-Jun-09	21364.20	=""	="LEICA GEOSYSTEMS GEOSPATIAL IMAGING"	02-Jul-08 09:16 AM	

+="CN96056"	"Repair and Transport cost of Trailers"	="Defence Materiel Organisation"	02-Jul-08	="Product and material trailers"	19-Jun-08	30-Jun-08	22055.00	=""	="HAULMARK TRAILERS AUST"	02-Jul-08 09:18 AM	

+="CN96060"	"REFER TO DEFGRAM 600/2007  &  RECRUITMENT SERV PANEL"	="Defence Materiel Organisation"	02-Jul-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jun-08	30-Jun-08	21780.00	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 09:19 AM	

+="CN96074"	"OVEHAUL & MODIFICATION OF EXHAUST CASING"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	31-Oct-08	28285.67	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	02-Jul-08 09:22 AM	

+="CN96077"	"FLAME ARRESTOR"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	16-Jun-08	15-Jan-10	27399.44	=""	="SHAW AERO DEVICES INC"	02-Jul-08 09:22 AM	

+="CN96088"	"Balun Boards"	="Defence Materiel Organisation"	02-Jul-08	="Electrical equipment and components and supplies"	17-Jun-08	18-Jun-08	26368.32	=""	="AIRSERVICES AUSTRALIA"	02-Jul-08 09:25 AM	

+="CN96094"	"HP compac"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	04-Jul-08	21868.00	=""	="COMPUTERCORP (LOGISTICS)"	02-Jul-08 09:26 AM	

+="CN96101"	"TNT Invoices week 21 8748522 $12651.08 INC GST TNT Invoice week 22 8820484 $7925.20 INC GST"	="Defence Materiel Organisation"	02-Jul-08	="Office Equipment and Accessories and Supplies"	18-Jun-08	27-Jun-08	20576.11	=""	="TNT AUSTRALIA"	02-Jul-08 09:28 AM	

+="CN96133"	"OVERHAUL OF NOZZLE, FUEL SPRAY"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Nov-07	30-Jun-08	24142.80	=""	="QANTAS AIRWAYS LTD"	02-Jul-08 09:34 AM	

+="CN96178"	"CONTRACTOR SUPPORT FOR NROC SITE PREPARATION"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	24-Jun-08	31-Aug-08	28932.21	=""	="DARONMONT TECHNOLOGIES PTY LTD"	02-Jul-08 09:41 AM	

+="CN96185"	"INDUCTION OF CARIBOU REPAIRABLE ITEMS"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	12-Nov-07	30-Jun-09	27862.80	=""	="GOODYEAR AVIATION TYRES"	02-Jul-08 09:42 AM	

+="CN96187"	"Installation Design Package for Replacement of Distilling Plants with RO units"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	29-Aug-08	22287.00	=""	="THALES AUSTRALIA"	02-Jul-08 09:42 AM	

+="CN96191"	"Freight Charges for Consignment Costs"	="Defence Materiel Organisation"	02-Jul-08	="Office supplies"	19-Jul-07	30-Aug-09	22000.00	=""	="TOLL IPEC"	02-Jul-08 09:43 AM	

+="CN96192-A2"	"     EMERGENCY FREIGHT FOR PRIORITY REPAIRABLE ITEM / BDS SUPPLY     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	20-Jul-07	05-Aug-08	28878.33	=""	="SAFE AIR LTD"	02-Jul-08 09:43 AM	

+="CN96202-A1"	"Installation of Remote C+M Monitor on the Gangway"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	26-Jun-08	30-Apr-10	22308.35	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:45 AM	

+="CN96229-A1"	"PT 4 TsK 101 GST ON USD INV 71432 - RAN ORDALT EDC Disassembly & Reassembly FVM Midlife Reburbishment"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	17-Jun-08	30-Jun-08	24751.99	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:49 AM	

+="CN96240"	"WORK PACKAGE 6 SOFTWARE DEVELOPMENT ENVIROMENT - PROCEDURE DEVELOPMENT"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	17-Jun-08	30-Jun-08	25986.06	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:51 AM	

+="CN96242"	"Install Night Flying Capability HMAS SIRIUS"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	21-May-08	11-Jul-08	23404.15	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:52 AM	

+="CN96250"	"INVENTORY & SUPPLY CHAIN REIEW"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	26-Jun-08	30-Jun-08	26465.95	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	02-Jul-08 09:53 AM	

+="CN96258"	"REPLACEMENT OF CHEMICAL DOSING PUMP"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	04-Aug-06	13-Jun-08	20772.14	=""	="FORGACS SHIP REPAIR"	02-Jul-08 09:54 AM	

+="CN96274"	"Implementation Of Team Centre (Overlander PROG)"	="Defence Materiel Organisation"	02-Jul-08	="Software"	19-Jun-08	30-Jun-09	22000.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	02-Jul-08 09:57 AM	

+="CN96276"	"CONDUCT HULL CROP & RENEW REPAIRS HMAS KANIMBLA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	26-Jun-08	11-Jul-08	29159.70	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 09:57 AM	

+="CN96282"	"pc9 aircraft spares - Supply of PC9 Spares Standing Offer 0802-243-37"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	05-May-08	30-Jun-08	22492.44	="9511-627/628"	="PILATUS AIRCRAFT LTD"	02-Jul-08 09:58 AM	

+="CN96283"	"Technical and Executive Course"	="Defence Materiel Organisation"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	18-Jun-08	20350.46	=""	="INNOVATIVE CONCEPTS INC"	02-Jul-08 09:59 AM	

+="CN94832"	"Purchase of data for use of different media in Australia and attitudes to technology."	="Australian Communications and Media Authority (ACMA)"	02-Jul-08	="Market research"	20-Jun-08	25-Jun-08	23776.50	=""	="ACNielsen Australia Pty Ltd"	02-Jul-08 10:01 AM	

+="CN96298"	"Provision of Probity Advise"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-May-08	30-Jun-08	22814.00	=""	="TRESSCOX"	02-Jul-08 10:01 AM	

+="CN96305"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	08-Apr-08	02-May-08	21450.00	=""	="QINETIQ CONSULTING PTY LTD"	02-Jul-08 10:02 AM	

+="CN96308"	"Battery Storage"	="Defence Materiel Organisation"	02-Jul-08	="Power sources"	07-Jun-08	30-Sep-08	29015.08	=""	="AERO HARDWARE & PARTS CO INC"	02-Jul-08 10:03 AM	

+="CN96311"	"Manufacture Mini-Typoon Console for HMAS Sydney"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	10-Jun-08	29-Aug-08	21931.80	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 10:03 AM	

+="CN96317-A1"	"Middle management team leadership training for SPO"	="Defence Materiel Organisation"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jan-08	30-Jul-08	25875.00	=""	="ANECDOTE PTY LTD"	02-Jul-08 10:04 AM	

+="CN96320"	"berthage for HMAS MELVILLE maintenance period"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	04-Jun-08	30-Jun-08	21152.07	=""	="AIMTEK PTY LTD"	02-Jul-08 10:04 AM	

+="CN96334-A1"	"DISPOSAL OF BATTERIES AS PER STANDING OFFER EWSD/024 - VARIOUS"	="Defence Materiel Organisation"	02-Jul-08	="Batteries and generators and kinetic power transmission"	19-Jun-08	26-Jun-08	22255.99	=""	="THIESS SERVICES"	02-Jul-08 10:06 AM	

+="CN96339"	"Support Services  from Tenix to DHDB"	="Defence Materiel Organisation"	02-Jul-08	="Software"	04-Jun-08	29-Jun-08	27491.31	=""	="TENIX SYSTEMS PTY LTD"	02-Jul-08 10:07 AM	

+="CN96341"	"Repair of Aileron RH NSN 01-459-8414 SDSS PO OA41AZ"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	23-Nov-07	07-Aug-08	20127.88	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 10:07 AM	

+="CN96350"	"Task backlog close out"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	26-May-08	30-Jun-08	25625.08	=""	="C4I PTY LTD"	02-Jul-08 10:09 AM	

+="CN96355"	"Task backlog"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	06-Jun-08	26580.12	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:09 AM	

+="CN96358"	"Task backlog"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	28-May-08	26373.28	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:10 AM	

+="CN96381"	"Task backlog close out"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	26-May-08	30-Jun-08	22451.00	=""	="C4I PTY LTD"	02-Jul-08 10:13 AM	

+="CN96384"	"Documentation of Fuel Trial ACPB"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	31-Jan-08	19-Jun-08	25044.75	=""	="AMOG CONSULTING"	02-Jul-08 10:13 AM	

+="CN96391"	"ACPB08-ADHOC"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	20-Feb-08	01-Dec-22	26199.06	=""	="DEFENCE MARITIME SERVICES PTY"	02-Jul-08 10:14 AM	

+="CN96394-A1"	"Install the Defence Transactor Processor at HMAS Cairns - Software Upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Software or hardware engineering"	09-May-08	30-Jun-08	23050.05	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 10:14 AM	

+="CN96400-A1"	" Develop User Requirement Specifications for the Web enabled URDEF database. "	="Defence Materiel Organisation"	02-Jul-08	="Software"	11-Jun-08	24-Jun-08	22375.01	=""	="SYPAQ SYSTEMS PTY LTD"	02-Jul-08 10:15 AM	

+="CN96413"	"INSTALL DUPLEX STRAINER IN SEAWATER INLET TO THE GENSET"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-Jun-08	02-Jul-08	21560.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	02-Jul-08 10:17 AM	

+="CN96419"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	20658.63	=""	="PREMIER AUTO GROUP"	02-Jul-08 10:34 AM	

+="CN96421"	"Provision of Temporary Employee"	="Questacon"	02-Jul-08	="Temporary personnel services"	20-May-08	31-Oct-08	30000.00	=""	="Frontier Group Australia Pty Ltd"	02-Jul-08 10:35 AM	

+="CN96429"	"Centrelink Agent - Mugarinya, WA"	="Centrelink"	02-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Mugarinya Community Association INC"	02-Jul-08 11:11 AM	

+="CN96436"	"Centrelink Agent - Toomelah - Boggabilla, QLD"	="Centrelink"	02-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Toomelah Co-operative LTD"	02-Jul-08 11:38 AM	

+="CN96437"	"Memorandum of Fees for Profesional Services (Border Security)"	="Australian Crime Commission"	02-Jul-08	="Temporary research and development services"	17-Apr-08	17-Jul-08	20625.00	=""	="Knowledge Pond Pty Ltd"	02-Jul-08 11:44 AM	

+="CN96442"	"Supply of conference management services for the ASIC Summer School 2008 including, development and management of an on-line registrationsfacility, collection and banking of conference revenue, and payment of bank fees on ASICs behalf."	="Australian Securities and Investments Commission"	02-Jul-08	="Events management"	31-Oct-07	31-Mar-08	25103.28	=""	="Venue Marketing Service Pty Ltd"	02-Jul-08 11:53 AM	

+="CN96443"	"Paper for printing"	="Department of the House of Representatives"	02-Jul-08	="Paper products"	18-Jun-08	30-Jun-08	21208.00	=""	="Paperlinx Office"	02-Jul-08 12:00 PM	

+="CN96446"	"Provision of a panel moderator to the ASIC Summer School 2008"	="Australian Securities and Investments Commission"	02-Jul-08	="Events management"	14-Dec-07	20-Mar-08	22775.00	=""	="Saxton Speaker Bureau Sydney"	02-Jul-08 12:01 PM	

+="CN96456"	"Searches"	="Centrelink"	02-Jul-08	="Business administration services"	22-Apr-08	30-Jun-08	22000.00	=""	="Australian Business Research"	02-Jul-08 12:17 PM	

+="CN96471-A1"	"Recruitment Services"	="Centrelink"	02-Jul-08	="Human resources services"	26-Jun-08	30-Jun-08	29500.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	02-Jul-08 12:20 PM	

+="CN96477"	"External Training"	="Centrelink"	02-Jul-08	="Vocational training"	12-May-08	30-Jun-08	27999.99	=""	="SMART - NT"	02-Jul-08 12:21 PM	

+="CN96482"	"Optical Surveillance"	="Centrelink"	02-Jul-08	="Security surveillance and detection"	20-Jun-08	30-Jun-08	20000.00	="RFTS06/0560"	="Maurice J Kerrigan and Associates Pty Ltd"	02-Jul-08 12:22 PM	

+="CN96489"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Human resources services"	19-Jun-08	30-Jun-08	27912.48	=""	="Kaz Group Pty Ltd"	02-Jul-08 12:23 PM	

+="CN96506"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	23-Jun-08	30-Jun-08	23100.00	="RFTS07/0129"	="GMT Canberra Pty Ltd"	02-Jul-08 12:26 PM	

+="CN96519"	"licence renewal for SAS"	="Australian Public Service Commission"	02-Jul-08	="Computer services"	16-May-08	30-May-09	22550.00	=""	="SAS Institute Australia Pty Ltd"	02-Jul-08 12:37 PM	

+="CN96522"	"PSM Program Management"	="Australian Public Service Commission"	02-Jul-08	="Human resources services"	27-May-08	27-May-08	21642.28	=""	="ACT PSM Program"	02-Jul-08 12:38 PM	

+="CN96531"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	23-Jun-08	23-Jun-08	26000.00	="APS COMMISSSION 2005/014"	="Australian National University"	02-Jul-08 12:39 PM	

+="CN96542"	"Establishing a RTO within the APSC"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	06-Jun-08	11-Jun-08	24001.55	=""	="Performance First P/L"	02-Jul-08 12:42 PM	

+="CN96546"	"National Indigenous APS Employees Conference"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	27-May-08	27-May-08	26763.57	=""	="The Grace Hotel"	02-Jul-08 12:42 PM	

+="CN96553"	"Fit out Minor Works"	="Australian Public Service Commission"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Apr-08	30-Jun-08	20057.40	=""	="CBD Projects"	02-Jul-08 12:44 PM	

+="CN96556"	"Temporary employees"	="Australian Public Service Commission"	02-Jul-08	="Human resources services"	02-Jun-08	30-Jun-08	23595.00	=""	="Kowalski Recruitment Pty Ltd"	02-Jul-08 12:44 PM	

+="CN96569"	"TOOLS"	="Department of Defence"	02-Jul-08	="Hand tools"	16-Jun-08	30-Jun-08	28489.56	=""	="TOOLS AND TRADE PTY LTD"	02-Jul-08 01:28 PM	

+="CN96583"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	16-Jun-08	25401.11	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:29 PM	

+="CN96612"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jul-08	20361.17	=""	="HEALTH SERVICES INTERNATIONAL P/L"	02-Jul-08 01:32 PM	

+="CN96626"	"SHELVING"	="Department of Defence"	02-Jul-08	="Industrial Production and Manufacturing Services"	18-Jun-08	25-Sep-08	20690.23	=""	="AUSSIE STORAGE CENTRE PTY LTD"	02-Jul-08 01:33 PM	

+="CN96633"	"CADET INITIATED ACTIVITY EXERCISE"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Jun-08	27500.00	=""	="TRAVELWORLD WILLETTON"	02-Jul-08 01:34 PM	

+="CN96640"	"Research Agreement"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	16-Jun-08	15-Aug-08	22000.00	=""	="MELBOURNE UNIVERSITY PRIVATE LTD"	02-Jul-08 01:35 PM	

+="CN96646"	"UPS power supplies"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	07-Jul-08	23009.82	=""	="ASI SOLUTIONS"	02-Jul-08 01:35 PM	

+="CN96648"	"Native Linux (32bit) Annual Subscription"	="Department of Defence"	02-Jul-08	="Software"	16-Jun-08	27-Jun-08	22330.00	=""	="DEDICATED SYSTEMS AUSTRALIA"	02-Jul-08 01:35 PM	

+="CN96651"	"Asbestos removal"	="Department of Defence"	02-Jul-08	="Environmental control systems"	18-Jun-08	31-Jul-08	24286.35	=""	="RESOLVE FM"	02-Jul-08 01:35 PM	

+="CN96654"	"DESIGN AND PRINTING OF POSTERS"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-Jun-08	30-Jun-08	21811.02	=""	="SWELL DESIGN GROUP"	02-Jul-08 01:36 PM	

+="CN96662"	"SOFTWARE TO IMPLEMENT IMANGE MANAGEMENT SYSTEM TO COMPLY WITH DIMPI NO 2/2003"	="Department of Defence"	02-Jul-08	="Software"	16-Jun-08	18-Jun-08	29700.00	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	02-Jul-08 01:36 PM	

+="CN96666"	"DEFENCE SCHOOL MENTOR PROGRAM-PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Jun-08	28088.90	=""	="VIEWBANK COLLEGE"	02-Jul-08 01:36 PM	

+="CN96673"	"DEFENCE SCHOOL MENTOR PROGRAM-PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Jun-08	28089.09	=""	="CARRANBALLAC P-9 COLLEGE"	02-Jul-08 01:37 PM	

+="CN96695"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	24750.00	=""	="CHISHOLM INSTITUTE OF TAFE"	02-Jul-08 01:39 PM	

+="CN96696"	"5X SHREDDERS"	="Department of Defence"	02-Jul-08	="Office machines and their supplies and accessories"	16-Jun-08	30-Jun-08	21481.65	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	02-Jul-08 01:39 PM	

+="CN96708"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	21450.00	=""	="CHISHOLM INSTITUTE OF TAFE"	02-Jul-08 01:41 PM	

+="CN96712"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-08	29985.00	=""	="HISTORIA PRODUCTIONS"	02-Jul-08 01:41 PM	

+="CN96720"	"SUPPLY OF GROCERIES TO RAAF DARWIN"	="Department of Defence"	02-Jul-08	="Food and Beverage Products"	10-Dec-07	30-Jun-08	21000.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	02-Jul-08 01:42 PM	

+="CN96725"	"Scanners"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	26084.30	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 01:42 PM	

+="CN96735"	"OFFICE FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	17-Jun-08	30-Jun-08	28371.20	=""	="DIRECT ERGONOMICS PTY LTD"	02-Jul-08 01:43 PM	

+="CN96749"	"LCD MONITORS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	20119.00	=""	="DELL COMPUTER PTY LTD"	02-Jul-08 01:44 PM	

+="CN96751"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	25822.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:44 PM	

+="CN96759"	"REF:1534/07-08 BUILDING WORKS FOR BLD 102 ROBERTSON BARRACKS"	="Department of Defence"	02-Jul-08	="General building construction"	11-Jun-08	30-Jun-08	20394.00	=""	="M & P BUILDERS PTY LTD"	02-Jul-08 01:44 PM	

+="CN96761"	" BUILDING REFURBISHMENT  "	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jul-08	23554.30	=""	="BAC SYSTEMS PTY LTD"	02-Jul-08 01:44 PM	

+="CN96762"	"DATA ACCESS POINTS"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	11-Jun-08	30-Jun-08	22118.21	=""	="OPTUS BILLING SERVICES PTY LTD"	02-Jul-08 01:44 PM	

+="CN96766"	"SERVICE RAMP OIL/WATER SEPERATOR MT ISA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Aug-08	24042.04	=""	="SPOTLESS"	02-Jul-08 01:45 PM	

+="CN96771"	"Terminal"	="Department of Defence"	02-Jul-08	="Office supplies"	22-Jun-08	22-Jun-08	27280.00	=""	="DEFENCE MATERIEL ORGANISATION -"	02-Jul-08 01:45 PM	

+="CN96773"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	27888.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:45 PM	

+="CN96780"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	29954.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96785"	"ENGAGE APS4/5 NON-PERMANENT LIBRARIAN"	="Department of Defence"	02-Jul-08	="Manufacturing support services"	24-Jun-08	31-Dec-08	29378.07	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 01:46 PM	

+="CN96792"	"CHILD SAFETY HANDBOOK"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	27977.40	=""	="WALSH MEDIA"	02-Jul-08 01:46 PM	

+="CN96801"	"Contract 0708-246 under Standing Offer 0506-271-27 Contractor: Jovan Talevski, Professional Material"	="Department of Defence"	02-Jul-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Jun-08	30-Jun-08	20345.00	=""	="FORTBURN PTY LTD"	02-Jul-08 01:47 PM	

+="CN96806"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	25300.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:48 PM	

+="CN96836"	"HQJOC-C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	24200.00	=""	="IBM AUSTRALIA LIMITED"	02-Jul-08 01:49 PM	

+="CN96843"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	26155.67	=""	="SIRRAS CONSULTANTS"	02-Jul-08 01:50 PM	

+="CN96850"	"S5091. DS-SC Asbestos removal program 07/08. Phase Asbestoscontaining material from various minor un"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	25347.22	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:50 PM	

+="CN96854"	"4 Port Avocent computer switch + Cables"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	30-Jun-08	22544.94	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Jul-08 01:50 PM	

+="CN96861"	"MEDICAL/DENTAL SERVICES"	="Department of Defence"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	24-Jun-08	30-Jun-08	20900.00	=""	="DR DAVID NEMETH"	02-Jul-08 01:51 PM	

+="CN96869"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT."	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	17-Jun-08	21-Jun-08	25190.00	=""	="BLACK BOX NETWORK SERVICES"	02-Jul-08 01:51 PM	

+="CN96877"	"Analysis SO 45190"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	23795.89	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 01:51 PM	

+="CN96887"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	20592.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:52 PM	

+="CN96893"	"CHAIR TENDER EVALUATION"	="Department of Defence"	02-Jul-08	="Project management"	17-Jun-08	30-Jun-09	22000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 01:52 PM	

+="CN96910-A1"	" "DEFENCE HEALTH SERVICES CONTRACT NO: DHS VIC 1/2 "	="Department of Defence"	02-Jul-08	="Patient care and treatment products and supplies"	01-Jan-08	01-Jan-11	20020.00	=""	="CLEMENTS RECRUITMENT PTY LTD"	02-Jul-08 01:54 PM	

+="CN96913"	"ADVERTISING"	="Department of Defence"	02-Jul-08	="Photographic and recording media"	24-Jun-08	30-Jun-08	22000.00	=""	="GEORGE PATTERSON Y & R"	02-Jul-08 01:54 PM	

+="CN96917"	"HQJOC-C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-08	24288.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	02-Jul-08 01:54 PM	

+="CN96918"	"Offr Mess Svcs"	="Department of Defence"	02-Jul-08	="Fruits and vegetables and nuts and seeds"	30-Jun-08	30-Jun-08	23100.00	=""	="ANGLESEA BARRACKS OFFICERS MESS"	02-Jul-08 01:54 PM	

+="CN96928"	"FACOPS - SA2228"	="Department of Defence"	02-Jul-08	="Environmental Services"	19-Jun-08	30-Jun-08	20564.50	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:55 PM	

+="CN96929"	"Computer goods"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	20-Jun-08	28600.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:55 PM	

+="CN96934"	"Analysis SO 45190"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	25249.62	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 01:55 PM	

+="CN96937"	"PSP Contractor - ICT Support Officer"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	27-May-08	27-Jun-08	20855.24	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 01:55 PM	

+="CN96939"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	24407.01	=""	="THE NOUS GROUP"	02-Jul-08 01:56 PM	

+="CN96946"	"COMPARISON OF TENDERED CONTRACTS WITH LATEST CMS T"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	22000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	02-Jul-08 01:56 PM	

+="CN96948"	"Support to ASD&T Wing Task E2845"	="Department of Defence"	02-Jul-08	="Professional engineering services"	16-Jun-08	30-Jun-08	27851.14	=""	="NOVA DEFENCE"	02-Jul-08 01:56 PM	

+="CN96955"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-May-08	31-Dec-08	22000.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	02-Jul-08 01:56 PM	

+="CN96964"	"BANDIANA:JLU (V) WAREHOUSING FACILITIES. JLU(V) SITE CONTAMINATION SURVEYS."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	25965.50	=""	="ENSR AUSTRALIA PTY LIMITED"	02-Jul-08 01:57 PM	

+="CN96972"	"FACOPS - SA2229"	="Department of Defence"	02-Jul-08	="Environmental Services"	23-May-08	30-Jun-08	26400.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:57 PM	

+="CN96998"	"A4412P-WESTERN AUSTRALIA UNIVERSITY REGIMENT (WAUR"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-09	27500.00	=""	="COFFEY PROJECTS PTY LTD"	02-Jul-08 01:59 PM	

+="CN97000"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	31-May-09	23391.50	=""	="CONQUEST ENTERPRISE"	02-Jul-08 02:00 PM	

+="CN97005"	"TRAINING"	="Department of Defence"	02-Jul-08	="Medical training and education supplies"	17-Jun-08	30-Jun-08	22808.59	=""	="MAJOR TRAINING SERVICES PTY LTD"	02-Jul-08 02:00 PM	

+="CN97009"	"PSP required to conduct Infrastructure Appraisal period 14MAY-27JUN08"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	26-Jun-08	30-Jun-08	29898.99	=""	="HAYS PERSONNEL SERVICES"	02-Jul-08 02:01 PM	

+="CN97012"	"MEDICAL SERVICES"	="Department of Defence"	02-Jul-08	="Patient care and treatment products and supplies"	21-May-08	31-Jul-09	22550.00	=""	="MATTHEW SHARLAND"	02-Jul-08 02:01 PM	

+="CN97016"	"Standing Offer 45190"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	12-Jun-08	30-Jun-09	22000.00	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 02:02 PM	

+="CN97022"	"Computer goods"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	20-Jun-08	29700.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 02:02 PM	

+="CN97035"	"Value based Purchase Order"	="Department of Defence"	02-Jul-08	="Meat and poultry products"	16-Jun-08	30-Jun-08	30000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	02-Jul-08 02:02 PM	

+="CN97037"	"Annual Netezza NPS 5200 Maintenance Renewal"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	30-Jun-08	28875.00	=""	="NETEZZA PTY LTD"	02-Jul-08 02:03 PM	

+="CN97043"	"Software Licence PH: 08 8259 6990"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	18-Jun-08	25668.02	=""	="LOGITECH PTY LTD"	02-Jul-08 02:03 PM	

+="CN97048"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	27928.21	=""	="KATHERINE STATE HIGH"	02-Jul-08 02:03 PM	

+="CN97049"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	25822.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:03 PM	

+="CN97053"	" MONTHLY STANDING CHARGES FOR PEL AIR CONTRACT "	="Department of Defence"	02-Jul-08	="Air transportation support systems and equipment"	18-Jun-08	30-Jun-08	25584.02	=""	="PEL-AIR AVIATION"	02-Jul-08 02:03 PM	

+="CN97062"	"Software Support"	="Department of Defence"	02-Jul-08	="Software"	07-Jun-08	01-Sep-08	25036.29	=""	="SUNDANCE ASIA LTD"	02-Jul-08 02:04 PM	

+="CN97067"	"Civil Engineering Design of Concrete Foo ting"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	12-Jun-08	20-Jun-08	29700.00	=""	="LELIO BIBBO TRUST"	02-Jul-08 02:05 PM	

+="CN97070"	"MEDALS"	="Department of Defence"	02-Jul-08	="Collectibles and awards"	04-Jun-08	30-Jun-08	22567.25	=""	="THE ROYAL MINT"	02-Jul-08 02:05 PM	

+="CN97092"	"Remote station & Transmitter unit"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	27-Jun-08	20749.30	=""	="ZANTECH CONSULTING"	02-Jul-08 02:07 PM	

+="CN97105"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	12-Nov-07	30-Jun-09	22252.86	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 02:08 PM	

+="CN97110"	"Install custodial blocks - Alpurrurulam"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	12-Jun-08	12-Jun-08	27933.13	=""	="PATTEMORE CONSTRUCTIONS"	02-Jul-08 02:08 PM	

+="CN97117"	"REPRODUCTION OF THE ONLINE SPACE"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	06-Jun-08	30-Jun-08	22000.00	=""	="HMA BLAZE PTY LIMITED"	02-Jul-08 02:09 PM	

+="CN97119"	"Consolidation of Stores- southern region"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	12-Jun-08	12-Jun-08	20697.05	=""	="PDL TOLL"	02-Jul-08 02:09 PM	

+="CN97123"	"ARMY PRODUCTION  DURING FY07/08"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	04-Jun-08	30-Jun-08	26037.80	=""	="GEORGE PATTERSON Y & R"	02-Jul-08 02:09 PM	

+="CN97126"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	24-Dec-08	26691.50	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:09 PM	

+="CN97131"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	01-Jul-08	27888.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:09 PM	

+="CN97144"	"Electrical Work for New Building"	="Department of Defence"	02-Jul-08	="Electronic hardware and component parts and accessories"	15-Apr-08	31-Aug-08	22000.00	=""	="WATTERS ELECTRICAL PTY LTD"	02-Jul-08 02:10 PM	

+="CN97145"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	02-Jul-08	="Project management"	17-Jun-08	30-Jun-10	26612.50	=""	="MSA CONTINGENT ACCOUNT"	02-Jul-08 02:10 PM	

+="CN97155"	"VEHICLE LEASE - FLLA B"	="Department of Defence"	02-Jul-08	="Motor vehicles"	07-Jun-08	16-Jun-08	20885.49	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97177"	"Computer Equiptment"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	13-Jun-08	19-Jun-08	26268.00	=""	="DATACOM SYSTEMS SA PTY LTD"	02-Jul-08 02:12 PM	

+="CN97178"	"Equipment"	="Department of Defence"	02-Jul-08	="Office supplies"	05-May-08	20-May-08	22000.00	=""	="DEFCOMSEC EA"	02-Jul-08 02:12 PM	

+="CN97184"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	09-May-08	21-Apr-09	29148.63	=""	="RPV CONSULTANTS"	02-Jul-08 02:12 PM	

+="CN97200"	"DEFENCE SCHOOL MENTOR PROGRAM-PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	16-Jun-08	16-Jun-08	28088.90	=""	="SEYMOUR TECHNICAL HIGH SCHOOL"	02-Jul-08 02:14 PM	

+="CN97203"	" SOFTWARE UPGRADE & MAINTENANCE "	="Department of Defence"	02-Jul-08	="Software maintenance and support"	16-Jun-08	30-Jun-08	22388.66	=""	="STORM FX PTY LTD"	02-Jul-08 02:14 PM	

+="CN97204"	"PROVISION OF PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Location and navigation systems and components"	15-May-08	30-Jun-08	28891.50	=""	="ULTIMATE POSITIONING"	02-Jul-08 02:14 PM	

+="CN97207"	"DEFENCE SCHOOL MENTOR PROGRAM-PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	16-Jun-08	16-Jun-08	28088.90	=""	="WESTERN PORT SECONDARY COLLEGE"	02-Jul-08 02:14 PM	

+="CN97208"	"PROVISION OF PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	20680.00	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	02-Jul-08 02:14 PM	

+="CN97210"	" OFFICE FURNITURE AND FITTINGS "	="Department of Defence"	02-Jul-08	="Office furniture"	09-May-08	22-May-08	21868.00	=""	="DEXION LIVERPOOL"	02-Jul-08 02:14 PM	

+="CN97218"	"VEHICLE LEASE - FET"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	09-Jun-08	17-Jun-08	26955.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:15 PM	

+="CN97220"	"VEHICLE LEASE - FET"	="Department of Defence"	02-Jul-08	="Motor vehicles"	24-May-08	17-Jun-08	24636.79	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:15 PM	

+="CN97233"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Motor vehicles"	13-Jun-08	01-Aug-08	26749.33	=""	="DRAKE INTERNATIONAL"	02-Jul-08 02:16 PM	

+="CN97237"	"Continuation of Hire of Staff for 3RAR as per Stan"	="Department of Defence"	02-Jul-08	="Motor vehicles"	13-Jun-08	01-Aug-08	23173.91	=""	="DRAKE INTERNATIONAL"	02-Jul-08 02:17 PM	

+="CN97253"	"ITEMS REQUIRED FOR BRF INSTAL"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	13-Jun-08	16-Jun-08	25396.53	=""	="TURK R JOHN & SONS PTY LTD"	02-Jul-08 02:18 PM	

+="CN97260"	"INSTALLATION COSTS 3 NEW BUILDINGS - FLLA K"	="Department of Defence"	02-Jul-08	="General building construction"	27-May-08	07-Jun-08	20455.41	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:18 PM	

+="CN97267"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	20-Jun-08	24970.00	=""	="HUMPHREYS COMMUNICATION GROUP"	02-Jul-08 02:19 PM	

+="CN97281"	"supply of fresh milk brisbane"	="Department of Defence"	02-Jul-08	="Milk and butter products"	13-Jun-08	30-Jun-08	22000.00	=""	="PAULS LIMITED"	02-Jul-08 02:20 PM	

+="CN97302"	"4041 - PSAR Weed management"	="Department of Defence"	02-Jul-08	="Live Plant and Animal Material and Accessories and Supplies"	22-Feb-08	30-Jun-08	26735.50	=""	="RESOLVE FM"	02-Jul-08 02:21 PM	

+="CN97305"	"PERIPHERALS - ASW"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	30-Jun-08	26039.39	=""	="SEYMOUR COMPUTERS"	02-Jul-08 02:21 PM	

+="CN97310"	"GSS Contract Hospitality and Catering"	="Department of Defence"	02-Jul-08	="Saddlery and harness goods"	24-Jun-08	30-Jun-08	26249.98	=""	="SEARSON BUCK PTY LTD"	02-Jul-08 02:22 PM	

+="CN97312"	"GSS Contract Grounds Maintenance"	="Department of Defence"	02-Jul-08	="Seeds and bulbs and seedlings and cuttings"	17-Jun-08	15-Dec-08	27326.71	=""	="CORPORATE MAINTENANCE SOLUTIONS"	02-Jul-08 02:22 PM	

+="CN97314"	"FIRE SAFETY SURVEYS"	="Department of Defence"	02-Jul-08	="Fire services"	29-Jan-08	30-Jun-09	20585.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	02-Jul-08 02:22 PM	

+="CN97320"	"Headphones"	="Department of Defence"	02-Jul-08	="Office supplies"	18-Jun-08	30-Jun-08	24156.00	=""	="LIVING AUDIO"	02-Jul-08 02:23 PM	

+="CN97330"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	22000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 02:23 PM	

+="CN97335"	"ORGANISATIONAL EFFECTIVENESS PROGRAM"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	21120.00	=""	="ORIGIN CONSULTING GROUP PTY LTD"	02-Jul-08 02:24 PM	

+="CN97339"	"Accommodation and venue hire for ELDP conference"	="Department of Defence"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	19-Jun-08	08-Sep-08	25825.00	=""	="FLOWERDALE CONFERENCES PTY LTD"	02-Jul-08 02:24 PM	

+="CN97347"	"Conference - RESMAN"	="Department of Defence"	02-Jul-08	="Restaurants and catering"	19-Jun-08	05-Sep-08	26320.50	=""	="WHALERS INN RESORT"	02-Jul-08 02:24 PM	

+="CN97351"	"Frontend loader/ backhoe/ bobcat course"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-Jun-08	14-Jul-08	26078.50	=""	="MORGAN & SONS"	02-Jul-08 02:25 PM	

+="CN97364"	"Secondhand Vehicles for Vehicle Trade Training Army Logistic Training Centre, Bandiana"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	19-Jun-08	30-Jun-08	20000.00	=""	="WOTHERSPOON MOTORS"	02-Jul-08 02:26 PM	

+="CN97367"	"681914 (NT0088) Larrakeyah Barracks Refurb Various LIA. Conduct consult, design & Management Pro"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	26-Jun-08	30-Jun-09	20011.42	=""	="ASSET SERVICES"	02-Jul-08 02:26 PM	

+="CN97374"	"Mathworks software"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jun-08	21879.01	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	02-Jul-08 02:27 PM	

+="CN97385"	"MARTIME SERVICES"	="Department of Defence"	02-Jul-08	="Security surveillance and detection"	26-Jun-08	29-Jun-08	20944.00	=""	="DEFENCE MARITIME SERVICES PTY"	02-Jul-08 02:27 PM	

+="CN97392"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	01-Jul-09	26400.00	=""	="REALVIEW TECHNOLOGIES PTY LTD"	02-Jul-08 02:28 PM	

+="CN97398"	"VIDEO CONFERENCING SYSTEM, MAINTENANCE & TRAINING"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	18-Jun-08	30-Jun-08	29586.02	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 02:28 PM	

+="CN97402"	"TADRS TRAINING COURSE"	="Department of Defence"	02-Jul-08	="Specialty aircraft"	18-Jun-08	19-Jun-08	28904.44	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 02:28 PM	

+="CN97428"	"Provision of Optical services Puckapunyal"	="Department of Defence"	02-Jul-08	="Education and Training Services"	30-Jun-07	30-Jun-07	21610.50	=""	="MARK LETTS & ASSOCIATES"	02-Jul-08 02:31 PM	

+="CN97449"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	22367.95	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	02-Jul-08 02:33 PM	

+="CN97450"	"SOFTWARE MAINTENACE FOR VARIOUS NOVELL APPLICATION"	="Department of Defence"	02-Jul-08	="Software"	10-Jun-08	10-Jun-08	28933.30	=""	="NOVELL PTY LTD"	02-Jul-08 02:33 PM	

+="CN97456"	"PABX Equipment"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	10-Jun-08	19-Jun-08	25350.77	=""	="FUJITSU AUSTRALIA LTD"	02-Jul-08 02:34 PM	

+="CN97459"	"FURNITURE"	="Department of Defence"	02-Jul-08	="Accommodation furniture"	19-Jun-08	30-Jun-08	24501.93	=""	="HUNTER DOUGLAS SINGAPORE PTE LTD"	02-Jul-08 02:34 PM	

+="CN97485"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	10-Jun-08	30-Jun-09	29689.00	=""	="BLAKE DAWSON WALDRON"	02-Jul-08 02:36 PM	

+="CN97500"	"Cisco Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	20857.10	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 02:37 PM	

+="CN97502"	"USE WITH RADIATION DETECTION EQUIPMENT"	="Department of Defence"	02-Jul-08	="Measuring and observing and testing instruments"	19-Jun-08	30-Jul-08	20126.70	=""	="TOUGH CORP PTY LTD"	02-Jul-08 02:37 PM	

+="CN97503"	"REF:1524/07-08"	="Department of Defence"	02-Jul-08	="Transport operations"	10-Jun-08	30-Jun-08	27225.00	=""	="BROOME HELICOPTER SERVICE"	02-Jul-08 02:37 PM	

+="CN97507"	"Installation of communications cabinets"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	10-Jun-08	30-Jun-08	26257.00	=""	="QLD DATA N ELECTRICAL SERVICES"	02-Jul-08 02:38 PM	

+="CN97514"	"alloy products"	="Department of Defence"	02-Jul-08	="Industrial Production and Manufacturing Services"	10-Jun-08	26-Jun-08	28822.20	=""	="APOLLO METALS PTY LTD"	02-Jul-08 02:39 PM	

+="CN97516"	"Required for CIOG task 0506-1625, A"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	16-Jun-08	23925.00	=""	="COMSYS NETWORK GROUP"	02-Jul-08 02:39 PM	

+="CN97513"	"Security CCTV upgrades"	="Family Court of Australia"	02-Jul-08	="Closed circuit television services"	27-Jun-08	31-Jul-08	29114.43	=""	="ADT Security"	02-Jul-08 02:39 PM	

+="CN97523"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	22030.47	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	02-Jul-08 02:40 PM	

+="CN97525"	" COMPUTER EQUIP UPGRADE "	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	30-Jun-08	28305.20	=""	="XSI DATA SOLUTIONS PTY LTD"	02-Jul-08 02:40 PM	

+="CN97529"	"Software"	="Department of Defence"	02-Jul-08	="Software"	19-Jun-08	26-Jun-08	20257.58	=""	="GFORGE GROUP LLC"	02-Jul-08 02:40 PM	

+="CN97547"	"WHITEBOARD SYSTEM"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	19-Jun-08	26-Jun-08	29077.95	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 02:42 PM	

+="CN97550"	"LIQUID HELIUM"	="Department of Defence"	02-Jul-08	="Gaseous fuels and additives"	10-Jun-08	16-Jun-08	27544.00	=""	="MONASH UNI - SCHOOL OF PHYSICS &"	02-Jul-08 02:42 PM	

+="CN97578"	"ANNUAL CAMP REIMBURSEMENT SCHOOL BASED CADETS"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	26537.50	=""	="KINROSS WOLAROI SCHOOL"	02-Jul-08 02:46 PM	

+="CN97583"	"TRANSPORTATION OF ABLUTIONS TO COMMUNITIES"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	10-Jun-08	10-Jun-08	20798.80	=""	="PDL TOLL"	02-Jul-08 02:46 PM	

+="CN97604"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	27888.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:48 PM	

+="CN97607"	"Software Maintenance Licence"	="Department of Defence"	02-Jul-08	="Software"	11-Jun-08	30-Jun-09	25929.69	=""	="ANSOFT CORPORATION (SINGAPORE BRANC"	02-Jul-08 02:48 PM	

+="CN97612"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	24776.04	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:48 PM	

+="CN97617"	"ENGRAVING OF MEDALS FOR DISPATCH AREA FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Collectibles and awards"	11-Jun-08	30-Jun-08	27500.00	=""	="WESTON TROPHIES PTY LTD"	02-Jul-08 02:49 PM	

+="CN97624"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	20964.34	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:49 PM	

+="CN97636"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	24750.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:50 PM	

+="CN97652"	"IT Training"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	17-Sep-08	25200.00	=""	="FAST LANE (AUSTRALIA) INSTITUTE"	02-Jul-08 02:52 PM	

+="CN97657"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	24420.00	=""	="STRATSEC.NET"	02-Jul-08 02:53 PM	

+="CN97658"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	20-Jun-08	21064.97	=""	="HARVEY NORMAN COMPUTER SUPERSTORE"	02-Jul-08 02:53 PM	

+="CN97686"	"VEHICLE LEASE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	17-Jun-08	30-Nov-09	28678.66	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 02:55 PM	

+="CN97688"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	31-Aug-08	21600.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	02-Jul-08 02:55 PM	

+="CN97696"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	11-Jun-08	30-Jun-09	24982.00	=""	="PHILLIPS FOX SYDNEY"	02-Jul-08 02:56 PM	

+="CN97716"	"PRINTING OF MAPS AS PER GAC 33/2008"	="Department of Defence"	02-Jul-08	="Paper Materials and Products"	11-Jun-08	09-Jul-08	28100.01	=""	="PERKICH & ASSOCIATES"	02-Jul-08 02:57 PM	

+="CN97724"	"DEMAND NO.RSTM-7EY3V6"	="Department of Defence"	02-Jul-08	="Electrical components"	11-Jun-08	19-Jun-08	24008.72	=""	="GO ELECTRICAL PTY LTD"	02-Jul-08 02:58 PM	

+="CN97725"	"MaxPax8230XL1"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	20-Jun-08	28024.04	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	02-Jul-08 02:58 PM	

+="CN97729"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	23566.40	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:59 PM	

+="CN97723"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	25364.45	=""	="PREMIER AUTO GROUP"	02-Jul-08 02:59 PM	

+="CN97721"	"LABOUR AND PARTS COST AND REPAIR"	="Department of Defence"	02-Jul-08	="Diving instruments or accessories"	30-Jun-08	07-Oct-08	29896.01	=""	="PACIFIC COMMERCIAL DIVING SUPPLIES"	02-Jul-08 02:59 PM	

+="CN97732"	"modifications to front counter"	="Family Court of Australia"	02-Jul-08	="Finish carpentry or cabinetry"	02-Jul-08	04-Aug-08	25311.00	=""	="R.C. Harder & Co."	02-Jul-08 03:00 PM	

+="CN97736"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	26735.20	=""	="PREMIER AUTO GROUP"	02-Jul-08 03:08 PM	

+="CN97739"	"Transcript Services various National Native Title Matters"	="National Native Title Tribunal"	02-Jul-08	="Copywriting"	01-Jul-07	30-Jun-08	21522.21	=""	="Auscript Australasia Pty Ltd"	02-Jul-08 03:17 PM	

+="CN97750"	"ER Volunteers Forum"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	21500.00	=""	="JASPER HOTEL"	02-Jul-08 04:42 PM	

+="CN97753-A1"	"Repairs and Maintenance for cafe at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Building construction and support and maintenance and repair services"	20-Jun-08	28-Feb-10	21200.00	=""	="Norfolk Maintenance Holdings Pty Lt"	02-Jul-08 04:42 PM	

+="CN97754"	"Boiler service & maintenance at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Capital Boiler and Burner Services"	02-Jul-08 04:42 PM	

+="CN97756"	"Painting Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Anasson Painting & Maintenance Pty"	02-Jul-08 04:43 PM	

+="CN97758"	"Property & Facilities Maintenance for TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Right Now Office Renovation &"	02-Jul-08 04:43 PM	

+="CN97759"	"Minor office renovations and maintenance"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="P&D Building Maintenance Pty Ltd"	02-Jul-08 04:43 PM	

+="CN97764"	"plumbing services for top fm"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	20-Jun-08	30-Jun-09	30000.00	=""	="Macquarie Plumbing Service"	02-Jul-08 04:44 PM	

+="CN97772"	"Provison of tailored accredited mediation training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Vocational training"	19-Jun-08	30-Sep-08	21120.00	=""	="Conflict Resolution Service Inc"	02-Jul-08 04:45 PM	

+="CN97773"	"Conference/Recall for GBM's"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	30000.00	=""	="Crowne Plaza Darwin"	02-Jul-08 04:45 PM	

+="CN97778"	"Supply of Loose Furniture - Dubbo ICC"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Furniture and Furnishings"	19-Jun-08	30-Jun-08	29401.13	="SON: 34257"	="ILEA Holdings Pty Ltd T/as"	02-Jul-08 04:46 PM	

+="CN97782"	"Household Organisational Management Expenses"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Jul-09	26452.00	=""	="Datatime Services Pty Ltd"	02-Jul-08 04:48 PM	

+="CN97783"	"Blue and White  In-Confidence File Covers x 40,000"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Paper Materials and Products"	19-Jun-08	30-Sep-08	24090.00	=""	="ROLLS FILING SYSTEMS"	02-Jul-08 04:48 PM	

+="CN97788"	"NTER performance measurment /reporting examination"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	25-Jun-08	30-Jun-08	24310.00	=""	="Ernst & Young"	02-Jul-08 04:48 PM	

+="CN97790"	"Security Awareness Presentations"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	25-Jun-08	30-Jun-08	20150.50	=""	="Creative Powerpoint.com"	02-Jul-08 04:48 PM	

+="CN97795"	"Provision of Printing Services as a member of the print panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	22935.00	=""	="Stratify Pty Ltd"	02-Jul-08 04:49 PM	

+="CN97799"	"Outposted officer - May 12 - June 27 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	27-Jun-08	25352.01	=""	="Aust Bureau of Statistics"	02-Jul-08 04:50 PM	

+="CN97815"	"Review of FaHCSIA Process of Ministerial Correspon"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	31-Jul-08	29700.00	="SON: 209"	="DELOITTE TOUCHE TOHMATSU"	02-Jul-08 04:52 PM	

+="CN97816"	"Funding to HREOC for African Australians Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	24-Jun-08	22000.00	=""	="HUMAN RIGHTS & EQUAL OPPORTUNITY"	02-Jul-08 04:52 PM	

+="CN97819"	"Provision of Printing Services as a member of the print panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Printed media"	24-Jun-08	15-Jul-08	26240.50	=""	="Pirion Pty Limited"	02-Jul-08 04:52 PM	

+="CN97834"	"Purchase of Gym Equipment for FaHCSIA National Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Fitness equipment"	05-Jun-08	30-Jun-08	25036.00	=""	="Life Fitness Australia P/L"	02-Jul-08 04:54 PM	

+="CN97835"	"Safety support services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	05-Jun-08	18-Jul-08	28125.00	=""	="Ablaze Total Solutions"	02-Jul-08 04:54 PM	

+="CN97838"	"Catering and Accommodation costs for Action Plan Leadership workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	06-Jun-08	06-Jun-08	22736.50	=""	="THE MARQUE HOTEL CANBERRA"	02-Jul-08 04:55 PM	

+="CN97843"	"Develope and refine performance framework for ment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Jun-08	30-Jun-08	29000.00	="SON:189"	="ARTD Pty Ltd"	02-Jul-08 04:55 PM	

+="CN97850"	"Provision of Consultancy Services in Finalising Acquittal Procedures for CDEP in NSW"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Development finance"	02-Jun-08	01-Sep-08	25300.00	=""	="RSM Bird Cameron"	02-Jul-08 04:56 PM	

+="CN97855"	"Review of JAS Procedure 18"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	22759.30	=""	="Joint Accreditation System of Austr"	02-Jul-08 04:57 PM	

+="CN97856"	"Funds controller"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	02-Jun-08	02-Jun-08	29776.09	=""	="Enmark Business Advisors Pty Ltd"	02-Jul-08 04:57 PM	

+="CN97863"	"Certificate IV in Business (Governement) Catch-up Block Cairns 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Education and Training Services"	04-Jun-08	23-Jun-08	24551.00	="306"	="Horizons Education & Development"	02-Jul-08 04:59 PM	

+="CN97864"	"Supply of workstations and Loose Furniture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	04-Jun-08	13-Jun-08	24897.40	="34257"	="ILEA Holdings Pty Ltd T/as"	02-Jul-08 04:59 PM	

+="CN97870"	"Porcurement Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	28100.00	=""	="Bayley & Associates Pty Ltd"	02-Jul-08 05:00 PM	

+="CN97875"	"Accommodation for GBM in Mutijulu Community"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Accommodation furniture"	17-Jun-08	30-Jun-08	27500.00	=""	="Mutitjulu Community Aboriginal Corp"	02-Jul-08 05:01 PM	

+="CN97876"	"Usability Review of Existing and New www.fahcsia.gov.au Website"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	18-Jun-08	30-Jun-08	29393.00	=""	="Serco Australia Pty Ltd  T/as The H"	02-Jul-08 05:01 PM	

+="CN97878"	"Wges for 2 mailroom staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	18-Jun-08	31-Aug-08	29000.00	=""	="PCA PEOPLE PTY LTD"	02-Jul-08 05:01 PM	

+="CN97880"	"Update Internal Budgeting Database Contrcator - Gary Dale"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	16-Sep-08	25000.00	="SON: 68225"	="SOS RECRUITMENT"	02-Jul-08 05:01 PM	

+="CN97898"	"Women, Domestic Violence and Homelessness Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	12-Jun-08	11-Aug-08	29755.00	=""	="Flinders University of South Aust."	02-Jul-08 05:04 PM	

+="CN97900"	"sponsorship of 2009 australian disasters conferenc"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	30-Jun-08	20000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-Jul-08 05:05 PM	

+="CN97901"	"Consultancy services to develop a NDAP Handbook"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Aug-08	28250.00	="SON: 189"	="ARTD MANAGEMENT AND RESEARCH"	02-Jul-08 05:05 PM	

+="CN97903"	"Kakadu, Yuendumu & Kununurra corporation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	27-Jun-08	29357.55	="SON: 34585"	="BURDON TORZILLO"	02-Jul-08 05:05 PM	

+="CN97908"	"Annual Payment - Office accommodation & support facilities for Nguiu community Liaison Officer"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Accommodation furniture"	16-Jun-08	30-Jun-08	20000.00	=""	="Tiwi Land Council"	02-Jul-08 05:06 PM	

+="CN97918-A1"	"Rural Agent - Centrelink Agent Services"	="Centrelink"	03-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	25167.73	=""	="Kyabram Community Learning Centre Inc"	03-Jul-08 08:29 AM	

+="CN97921-A1"	"Rural Agent - Centrelink Agents Services"	="Centrelink"	03-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	28771.33	=""	="Cobram Community House Inc"	03-Jul-08 08:37 AM	

+="CN97926"	"W/O-38137 WALLY S'LINER ARN-51252"	="Department of Defence"	03-Jul-08	="Motor vehicles"	03-Jul-08	25-Sep-08	23262.23	=""	="RGM MAINTENANCE"	03-Jul-08 09:13 AM	

+="CN97940-A1"	"Build awareness & support implementation of uniform knowledge and information management practices"	="Austrade"	03-Jul-08	="Online database information retrieval systems"	01-Jul-08	31-Dec-08	27500.00	=""	="Overton Clarke Australia"	03-Jul-08 09:34 AM	

+="CN97945"	"Annual PTMS service contract"	="Civil Aviation Safety Authority"	03-Jul-08	="Information technology consultation services"	30-Apr-08	29-Apr-09	24046.00	="06/203-01"	="CVT (Global) Pty Ltd"	03-Jul-08 09:43 AM	

+="CN97948"	"Annual Maintenance for Adobe licensing renewal"	="Civil Aviation Safety Authority"	03-Jul-08	="License management software"	01-Jun-08	31-May-09	25652.00	="06/205-01"	="Indigo Pacific Pty Ltd"	03-Jul-08 09:49 AM	

+="CN97949"	"English Language Program Consultancy"	="Civil Aviation Safety Authority"	03-Jul-08	="Business and corporate management consultation services"	01-Apr-08	30-Jun-08	20500.00	="06/226-02"	="Dr Patricia Denham"	03-Jul-08 09:54 AM	

+="CN97959"	"Internet Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Internet services"	01-Jul-08	30-Jun-09	22000.00	="06/242-01"	="Telestra Corporation"	03-Jul-08 10:26 AM	

+="CN97961"	"Webhosting of self help tool for E-TAX"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	26-Jun-08	30-Jun-10	29925.00	=""	="Web Central"	03-Jul-08 10:30 AM	

+="CN97962"	"Project Management Workshop - for Client Contact"	="Australian Taxation Office"	03-Jul-08	="Education and Training Services"	26-Jun-08	30-Jun-08	30000.00	=""	="KEPNER-TREGOE AUSTRALASIA PTY"	03-Jul-08 10:30 AM	

+="CN97964"	"25 X POLYCOM SOUNDSTATION W'LESS CONFERENCE PHON 25 X POLYCOM SOUNDSTATION 2W EXTENSION MICS"	="Australian Taxation Office"	03-Jul-08	="Office Equipment and Accessories and Supplies"	30-Jun-08	31-Jul-08	28143.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Jul-08 10:30 AM	

+="CN97976"	"EXECUTIVE DEVELOPMENT"	="Australian Taxation Office"	03-Jul-08	="Education and Training Services"	10-Jun-08	23-Jun-08	20680.00	=""	="EMOTIONAL INTELLIGENCE WORLDWIDE"	03-Jul-08 10:32 AM	

+="CN97977"	"PROGRAMME"	="Australian Taxation Office"	03-Jul-08	="Management and Business Professionals and Administrative Services"	05-May-08	26-Jun-08	27800.00	=""	="Australian Public Service"	03-Jul-08 10:32 AM	

+="CN97981"	"Printing of Promotional Post Cards - Lost Super Bin - Lost Super Nest"	="Australian Taxation Office"	03-Jul-08	="Published Products"	20-Jun-08	31-Jul-08	28006.00	=""	="AVANT CARD PTY LTD"	03-Jul-08 10:34 AM	

+="CN97982"	"Printing and distribute Promotional Post Cards - 'Lost & Found' & 'Clothes Li"	="Australian Taxation Office"	03-Jul-08	="Published Products"	20-Jun-08	31-Jul-08	28006.00	=""	="AVANT CARD PTY LTD"	03-Jul-08 10:35 AM	

+="CN97992-A1"	"S70B Aircraft Spares"	="Defence Materiel Organisation"	03-Jul-08	="Aircraft"	03-Jul-08	18-Feb-09	26794.74	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	03-Jul-08 10:39 AM	

+="CN97994"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	03-Jul-08	="Motor vehicles"	03-Jul-08	17-Jul-08	20238.00	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	03-Jul-08 10:47 AM	

+="CN97998"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	03-Jul-08	="Motor vehicles"	03-Jul-08	17-Jul-08	21013.35	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	03-Jul-08 10:55 AM	

+="CN98009"	"Fringe Benefits Tax (FBT) preparation services 2007/2008"	="Civil Aviation Safety Authority"	03-Jul-08	="Tax advisory services"	01-Jul-08	30-Jun-09	25000.00	="07/001-00"	="KPMG"	03-Jul-08 11:18 AM	

+="CN98017-A1"	"Temporary IT Staffing"	="Australian Electoral Commission"	03-Jul-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	24279.20	="AEC06/019"	="Tarakan Consulting Pty Ltd"	03-Jul-08 11:35 AM	

+="CN98022-A1"	"STAR Programme Plan Additioinal Work and Business Case"	="Australian Securities and Investments Commission"	03-Jul-08	="Information technology consultation services"	28-Feb-08	16-Apr-08	20460.00	=""	="Doll Martin Associates Pty Ltd"	03-Jul-08 11:58 AM	

+="CN98027"	"Visit to TACOM, BAE Systems (Detroit and Sealy), NATC, Centigon"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	16-Apr-08	16-Apr-08	21219.81	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98028"	"MHC ODRP Trip 13-29 Apr 2008"	="Defence Materiel Organisation"	03-Jul-08	="Passenger transport"	13-Apr-08	29-Apr-08	21219.81	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 01:38 PM	

+="CN98035"	"Supply of diesel fuel to HMAS Armidale at Gove"	="Defence Materiel Organisation"	03-Jul-08	="Fuels"	16-Apr-08	16-Apr-08	22097.63	="001/08"	="PERKINS SHIPPING P/L"	03-Jul-08 01:39 PM	

+="CN98046"	"CDSS Visiting Fellow - Dr Alan Gropman"	="Department of Defence"	03-Jul-08	="Travel facilitation"	16-Mar-08	16-Mar-08	22049.18	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98074"	"ACCOMODATION DEPOSIT FOR EX VITAL PROSPECT 08 ACMS-1043201"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	08-May-08	08-May-08	20000.00	=""	="BARDON"	03-Jul-08 02:11 PM	

+="CN98090"	"EX VITAL PROSPECT COALITION AUGMENTEE PAID FOR BY RAAF - LTCOL MERTENS"	="Department of Defence"	03-Jul-08	="Passenger transport"	13-May-08	13-May-08	22019.86	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:14 PM	

+="CN98093"	"Travel from washington to sydney for regional ICT staff to attend Netbackup 6.5 training"	="Department of Defence"	03-Jul-08	="Travel facilitation"	14-May-08	26-May-08	24059.48	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:14 PM	

+="CN98108"	"Airfares"	="Department of Defence"	03-Jul-08	="Passenger transport"	03-Jun-08	24-Jun-08	27327.40	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:16 PM	

+="CN98125"	"Holding deposit for Hyatt hotel for DRSC International Conference"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	13-Feb-07	13-Feb-07	20000.00	=""	="HYATT CANBERRA"	03-Jul-08 02:19 PM	

+="CN98154"	"Accom - Korea - OST CDSS"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	25-Apr-08	25-Apr-08	27631.02	=""	="SIN-YOUNG SPS     3191330"	03-Jul-08 02:23 PM	

+="CN98166"	"12/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	02-May-08	31-May-08	26674.26	=""	="BRISBANE NTH PODIATRY P/L"	03-Jul-08 02:25 PM	

+="CN98172"	"Furniture - Naval Apartments Nth Strathfield"	="Department of Defence"	03-Jul-08	="Accommodation furniture"	02-May-08	02-May-08	20355.50	=""	="DIRECT ERGONOMICS"	03-Jul-08 02:25 PM	

+="CN98176"	"MEDICAL SERVICES"	="Department of Defence"	03-Jul-08	="Medical practice"	07-May-08	07-May-08	29414.18	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:26 PM	

+="CN98177"	"12/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	07-May-08	31-May-08	21500.79	=""	="ST VINCENTS HOSPITAL"	03-Jul-08 02:26 PM	

+="CN98181"	"HSFWAG MEDICAL APPT"	="Department of Defence"	03-Jul-08	="Healthcare Services"	08-May-08	08-May-08	26547.30	=""	="M O F S PTY LTD"	03-Jul-08 02:26 PM	

+="CN98185"	"SEWAGE AND OILY WASTE REMOVAL FOR HMAS KANIMBLA."	="Department of Defence"	03-Jul-08	="Toxic and hazardous waste cleanup"	08-May-08	09-May-08	23314.04	=""	="NQ RESOURCE RECOVERY"	03-Jul-08 02:27 PM	

+="CN98203"	"CDSS Study Tour to Japan - Accom"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	25-Apr-08	25-Apr-08	26932.68	=""	="SHIERATONMIYAKOHOTERUTOKY"	03-Jul-08 02:30 PM	

+="CN98204"	"HSFWAG MEDICAL APPTS"	="Department of Defence"	03-Jul-08	="Healthcare Services"	06-May-08	06-May-08	28558.73	=""	="NATIONAL CAPITAL PRIVATE"	03-Jul-08 02:30 PM	

+="CN98206"	"MEDICAL SERVICES FOR:8526276,8379448,8260274,8440328,8265480,8440696,8212854,8256609,8489827"	="Department of Defence"	03-Jul-08	="Medical practice"	14-May-08	14-May-08	22512.00	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:30 PM	

+="CN98207"	"MEDICAL EXPENCES OCCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	13-May-08	13-Jun-08	29542.66	=""	="ST JOHN OF GOD HOSPIT"	03-Jul-08 02:30 PM	

+="CN98216"	"114/0708 Ex Maple Guardian / Fincastle"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	17-May-08	17-May-08	22393.69	=""	="PORT AUGUSTA MOTEL"	03-Jul-08 02:31 PM	

+="CN98226"	"Medical Appointments"	="Department of Defence"	03-Jul-08	="Comprehensive health services"	20-May-08	20-May-08	25447.31	=""	="LEVERETT/KINDLER P/L"	03-Jul-08 02:32 PM	

+="CN98227"	"25/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	19-May-08	30-Jun-08	20283.56	=""	="THE WESLEY HOSPITAL"	03-Jul-08 02:33 PM	

+="CN98233"	"PDL - MANAGEMENT FEES, REFUSE REMOVAL, BERTHAGE, BROW AND FENDER HIRE, PORT SECURITY COSTS AND CAR HIRE.  GLADSTONE JUN 07."	="Department of Defence"	03-Jul-08	="Project management"	22-May-08	22-May-08	20895.08	=""	="PATRICKDEFENCELOGI"	03-Jul-08 02:33 PM	

+="CN98236"	"Accommodation at Cullen Bay apartments NT for Study Tour- 40 graduates and staff. May 18-24. 22 Rooms."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	24-May-08	24-May-08	21060.00	=""	="WHITSIDE BROWNMILL"	03-Jul-08 02:34 PM	

+="CN98245"	"maintenance support"	="Department of Defence"	03-Jul-08	="Computer services"	27-May-08	27-May-08	20659.71	=""	="ASPECT COMPUTING P/L"	03-Jul-08 02:35 PM	

+="CN98256"	"Camping Equipment 2WG AAFC"	="Department of Defence"	03-Jul-08	="Camping and outdoor equipment and accessories"	29-May-08	29-May-08	27891.80	=""	="CAMPERLAND OF IPSWIC"	03-Jul-08 02:37 PM	

+="CN98264"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	28-May-08	11-Jun-08	28915.25	=""	="SYMBION IMAGING"	03-Jul-08 02:38 PM	

+="CN98265"	"Health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	28-May-08	11-Jun-08	21517.23	=""	="ST GEORGE PRVT  HSPTL"	03-Jul-08 02:38 PM	

+="CN98269"	"11/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	02-Jun-08	30-Jun-08	20967.61	=""	="BRISBANE NTH PODIATRY P/L"	03-Jul-08 02:38 PM	

+="CN98291"	"RHQ8-TSD1-230, Celcat, 3 yr software license for DFSS staff use. Value for money"	="Department of Defence"	03-Jul-08	="Software"	06-Jun-08	06-Jun-08	24750.00	=""	="CDS AUSTRALASIA"	03-Jul-08 02:42 PM	

+="CN98307"	"ES-C3750-48PS-S Cisco catalyst and other equipment"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	13-Jun-08	22893.91	=""	="VIRTUAL GRAFFITI, COMPUTE"	03-Jul-08 02:44 PM	

+="CN98310"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	23-Jun-08	23-Jun-08	25588.26	=""	="ST JOHN OF GOD HOSPIT"	03-Jul-08 02:44 PM	

+="CN98311"	"Supply of Fieldcraft Equipment to 4WG AAFC from Ray's Outdoors Geelong North"	="Department of Defence"	03-Jul-08	="Camping and outdoor equipment and accessories"	17-Jun-08	17-Jun-08	22775.01	=""	="RAYS OUTDOORS"	03-Jul-08 02:44 PM	

+="CN98312"	"Books for ACSC strategy and stability operations"	="Department of Defence"	03-Jul-08	="Textile and fabric machinery and accessories"	16-Jun-08	16-Jun-08	25913.95	=""	="UNI COOP 520"	03-Jul-08 02:44 PM	

+="CN98314"	"Required for ICT - Enogggera."	="Department of Defence"	03-Jul-08	="Software"	17-Jun-08	24-Jun-08	25190.00	=""	="ASVIC ENGINEERING"	03-Jul-08 02:45 PM	

+="CN98321"	"IAW security requirements, B class safes were serviced, repaired & re-keyed.  C Class Container bi-locks were replaced to comply with security requirements."	="Department of Defence"	03-Jul-08	="Locks and security hardware and accessories"	18-Jun-08	18-Jun-08	27210.65	=""	="A S I LOCKSMITHS"	03-Jul-08 02:46 PM	

+="CN98331"	"S.Parrington 22.04.08"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	19-Jun-08	30-Jun-08	21600.00	=""	="M O F S PTY LTD"	03-Jul-08 02:48 PM	

+="CN98333"	"Required Foro 23 Support SQN Deployment stores"	="Department of Defence"	03-Jul-08	="Hardware"	19-Jun-08	19-Jun-08	21725.85	=""	="NORTRUSS BUILD SUPPL"	03-Jul-08 02:48 PM	

+="CN98335"	"Fieldcraft Equipment 7WG AAFC"	="Department of Defence"	03-Jul-08	="Camping and outdoor equipment and accessories"	18-Jun-08	18-Jun-08	23594.18	=""	="WELLINGTON SURPLUS"	03-Jul-08 02:48 PM	

+="CN98345"	"Accommodation - Exercise Pitch Black 08"	="Department of Defence"	03-Jul-08	="Accommodation furniture"	19-Jun-08	19-Jun-08	23920.00	=""	="MANTRA PANDANAS"	03-Jul-08 02:50 PM	

+="CN98347"	"MEDICAL SERVICES FOR GRIFFITHS8197557,DOWNIE8208367,PREWETT8159631,WOOD8203526,RUBIE8267537,BURKE8207871,BRAY8505002,NEALE8216524,DARMANIN8502658,DUNN8243464,PILLINGTON8490909,HOOD8500270"	="Department of Defence"	03-Jul-08	="Medical practice"	24-Jun-08	24-Jun-08	27725.10	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:50 PM	

+="CN98348"	"MEDICAL SERVICES FOR FARRANDS8259963,FORSYTHE8506767,HOOD8500270,GREGORY8517493,VAN DER HEIDE8491791,RITCHIE8213060,CLARK8520415,MILNARIC851484,BROOKS853399,REDDEN8437834,PRICKETT8254843,CASH8311624"	="Department of Defence"	03-Jul-08	="Medical practice"	24-Jun-08	24-Jun-08	22570.85	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:51 PM	

+="CN98350"	"MEDICAL SERVICES FOR GARDINER8528833,MURRAY8501838,KENNEDY8107365,ROBINSON8492060,NORRIS8118705,ROTHWELL8064574,MCKENZIE8165184,BUSCHMANN8160594,MURPHY8160745,NOYCE8161605,BUCKLEY8211480,JESS8517411"	="Department of Defence"	03-Jul-08	="Medical practice"	24-Jun-08	24-Jun-08	20545.59	=""	="DARWIN PRIVATE HOSPITAL"	03-Jul-08 02:51 PM	

+="CN98355"	"HMAS ARARAT (ASS 5) OS DEPLOYMENT -GUAM 12-16JUN08 INV 20584,20612,20613,20622,20623,20624,20625"	="Department of Defence"	03-Jul-08	="Business administration services"	25-Jun-08	25-Jun-08	23185.27	=""	="USS/UBS AUST"	03-Jul-08 02:52 PM	

+="CN98358"	"29/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	26-Jun-08	30-Jun-08	20642.93	=""	="GREENSLOPES PRIV H"	03-Jul-08 02:52 PM	

+="CN98364"	" Temporary Service Contractor "	="Civil Aviation Safety Authority"	03-Jul-08	="Recruitment services"	10-Apr-08	30-Jun-09	23400.00	="07/105-01"	="Regulatory Consulting Pty Ltd"	03-Jul-08 02:56 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val300000to999999999.xls
@@ -1,1 +1,259 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95622"	"Services location and salvage"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Marine transport"	24-Jun-08	25-Jul-08	495000.00	=""	="Svitzer Salvage Australasia P/L"	01-Jul-08 10:07 AM	

+="CN95658"	"Office Accommodation Fitout"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="General building construction"	01-Jul-08	30-Aug-08	7385631.00	=""	="ISIS PROJECTS PTY LTD"	01-Jul-08 10:15 AM	

+="CN95668-A2"	" 08/2547 - Provision of Helicopter Services at Mackay "	="Australian Customs and Border Protection Service"	01-Jul-08	="Civilian and commercial rotary wing aircraft"	01-Jul-08	30-Jun-12	1047450.00	=""	="Whitsunday Helicopter Group Pty Ltd"	01-Jul-08 11:03 AM	

+="CN95671"	"AIRS Development & Support"	="Civil Aviation Safety Authority"	01-Jul-08	="Development software"	01-Jul-08	30-Jun-09	3801600.00	="06/010-01"	="Accentrue Australia Holdings Pty Ltd"	01-Jul-08 11:14 AM	

+="CN95708-A1"	"NetApp upgrade hardware"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	13-Sep-03	13-Apr-09	414104.78	="DCON/03/63"	="KAZ Group"	01-Jul-08 11:18 AM	

+="CN72180"	"Provision of a new internal telephoney system for ACMA"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Telephony equipment"	02-Apr-08	31-Mar-11	1141000.53	="06ACMA075"	="Optus Networks Pty Ltd"	01-Jul-08 11:19 AM	

+="CN95711-A2"	" Showcase fabrication and installation for  Australian Journeys  Gallery "	="National Museum of Australia"	01-Jul-08	="Furniture"	24-Jun-08	20-Mar-09	627282.00	=""	="Click Systems"	01-Jul-08 11:31 AM	

+="CN95727"	"Supply of Cleaning and Washroom Services Nationally"	="Civil Aviation Safety Authority"	01-Jul-08	="Washroom sanitation services"	13-Jun-08	30-Jun-09	550000.00	="06/057-01"	="Cloverdale Commercial Cleaning"	01-Jul-08 12:39 PM	

+="CN95759"	"Supply and maintenance of x-ray machines (DPS07043)"	="Department of Parliamentary Services"	01-Jul-08	="Security and control equipment"	12-Jun-08	28-Oct-13	1267574.00	="DPS07043"	="Smiths Detection Australia P/L"	01-Jul-08 01:42 PM	

+="CN95761-A1"	"Provision of catering services at Parliament House Catering contract one"	="Department of Parliamentary Services"	01-Jul-08	="Banquet and catering services"	11-Jun-08	30-Jun-13	750000.00	="DPS07091"	="Hanz (Canberra) Pty Ltd"	01-Jul-08 01:42 PM	

+="CN95804-A3"	"Provision of services in relation to IT Security architecture"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	30-Jun-10	561726.00	=""	="Greythorn Pty Ltd"	01-Jul-08 02:44 PM	

+="CN95843-A2"	" Call Center workforce management system software "	="Department of Human Services"	01-Jul-08	="Software"	19-Jun-03	30-Jun-12	20745437.00	=""	="Matrium Technologies Pty Ltd"	01-Jul-08 04:50 PM	

+="CN95845-A2"	" Cleaning Services "	="Department of the Prime Minister and Cabinet"	01-Jul-08	="General building and office cleaning and maintenance services"	19-Feb-07	19-Feb-12	1273685.00	="2006/1844"	="Ultracare Cleaning Services"	01-Jul-08 04:59 PM	

+="CN95847-A1"	"Defence Transaction Processor (DTP) Hardware Equipment Support"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	13-Jun-08	30-Jun-09	385000.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 08:32 AM	

+="CN95849-A1"	"In Country Storage & Lay-up Maintenance Services for the Aust Submarine Rescue Service"	="Defence Materiel Organisation"	02-Jul-08	="Water safety"	13-Jun-08	30-Jun-09	495504.93	=""	="OCEANWORKS INTERNATIONAL PTY LTD"	02-Jul-08 08:33 AM	

+="CN95854"	"Cloth, Disruptive Pattern Naval Printed"	="Defence Materiel Organisation"	02-Jul-08	="Fabrics and leather materials"	13-Jun-08	25-Jul-08	1298000.00	=""	="BRUCK TEXTILES PTY LTD"	02-Jul-08 08:34 AM	

+="CN95862"	"Toyota Hiace Van (VCM) Qty 21"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	19-Dec-08	593878.13	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:36 AM	

+="CN95866"	"Fuel for Orion Aircraft which is undergoing servicing at L3"	="Defence Materiel Organisation"	02-Jul-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	13-Jun-08	30-Jun-09	415538.78	=""	="L-3 COMMUNICATIONS INTEGRATED!SYSTE"	02-Jul-08 08:37 AM	

+="CN95873-A2"	"     PROVISION OF C130 TYRE SUPPORT     "	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	13-Jun-08	30-Mar-10	462991.41	=""	="GOODYEAR AVIATION TYRES"	02-Jul-08 08:39 AM	

+="CN95874"	"Extension of INMARSAT Support to Project 1840"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	13-Jun-08	30-Jun-09	451254.38	=""	="TC COMMUNICATIONS PTY LTD"	02-Jul-08 08:39 AM	

+="CN95876-A2"	"     REPAIR AND OVERHAUL PC3 & C130H PROPS AND COMPONENTS UNDER STANDING OFFER 9212-042-52     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	13-Jun-08	30-Jun-09	938580.53	=""	="SAFE AIR LTD"	02-Jul-08 08:39 AM	

+="CN95879"	"HUGPH3.2 - C338529 - SURVEY & QUOTE 25 - CAD"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	13-Jun-08	30-Jun-09	4155485.10	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	02-Jul-08 08:40 AM	

+="CN95883"	"Ford Falcon Wagon (WM) Qty 24"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	07-Nov-08	609907.98	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:41 AM	

+="CN95886"	"Ford Ranger XL DC 4x4 Pick Up (UM4)  Qty 56"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	18-Dec-08	1403671.28	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:42 AM	

+="CN95891"	"BEARING SLEEVE"	="Defence Materiel Organisation"	02-Jul-08	="Bearings and bushings and wheels and gears"	16-Jun-08	30-Oct-08	637238.84	=""	="IKAD ENGINEERING"	02-Jul-08 08:43 AM	

+="CN95907"	"SAAL RI Management Fee for the period 10 Feb 2008  - 9 Feb 2009"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	16-Jun-08	30-Jan-09	1216050.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	02-Jul-08 08:46 AM	

+="CN95908-A2"	"GROUP TASK 1475 JCSS AND CMFP DEVELOPMENT AND INSTALLATION"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	16-Jun-08	08-Dec-10	305412.23	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 08:46 AM	

+="CN95910"	"BAE Systems Australia Black Hawk Deep Maintenance"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	16-Jun-08	31-Dec-08	726050.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 08:46 AM	

+="CN95914"	"Procure FFG Fuel System Nu-Torque Actuators, Contr ollers"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	16-Jun-08	27-Jul-08	949278.00	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	02-Jul-08 08:47 AM	

+="CN95930"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	12-Jun-08	30-Jun-10	677336.00	=""	="QINETIQ CONSULTING PTY LTD"	02-Jul-08 08:50 AM	

+="CN95937"	"VoP For AUD ISS contract C388561, Inv 71057"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	11-Jun-08	1103251.01	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 08:52 AM	

+="CN95943"	"Supply of Naval Distillate to HeH Communication Station Exmouth WA"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	11-Jun-08	14-Oct-08	18232846.21	=""	="BP AUSTRALIA LTD"	02-Jul-08 08:53 AM	

+="CN95950"	"BARCO ISIS MONITORS"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	12-Jun-08	30-Jun-08	420010.27	=""	="RAYTHEON AUSTRALIA PTY LTD"	02-Jul-08 08:55 AM	

+="CN95954"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE - ARMY."	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	12-Jun-08	30-Jun-08	768507.94	=""	="CALTEX AUSTRALIA PETROLEUM P / L"	02-Jul-08 08:55 AM	

+="CN95984-A1"	"URS No. 085 - Development of UoM - Software Upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Software"	18-Jun-08	14-Feb-09	713130.00	=""	="FUJITSU AUSTRALIA LIMITED"	02-Jul-08 09:01 AM	

+="CN95985"	"ADS40 AIRBORNE DIGITAL SENSOR UPGRADE"	="Defence Materiel Organisation"	02-Jul-08	="Location and navigation systems and components"	18-Jun-08	27-Jun-08	706327.96	="E1-203913"	="LH SYSTEMS GMBH HEERBRUGG"	02-Jul-08 09:01 AM	

+="CN95991"	"ANTENNA SPIRAL ELEMENT X 1EA"	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	19-Jun-08	30-Sep-10	1430921.80	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:03 AM	

+="CN95993-A2"	"     Performance of C-130J FULL SCALE FATIGUE TESTING     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	30-Jun-10	981000.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:03 AM	

+="CN95995-A2"	"     Technical assistance in the development of the C-130H AIRCRAFT STRUCTURAL INTEGRITY PRGRAM     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	30-Jun-10	710959.42	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:03 AM	

+="CN96000"	"ANTENNA CONTROL SUBASSEMBLY MILESTONE PAYMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	19-Jun-08	31-Mar-09	307597.40	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:04 AM	

+="CN96008"	"ANTENNA SUB ASSEMBLY"	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	18-Jun-08	30-Jun-09	1662974.50	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:06 AM	

+="CN96010"	"DSTO Support for 08/09"	="Defence Materiel Organisation"	02-Jul-08	="Guided missiles"	18-Jun-08	30-Jun-09	2084800.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:06 AM	

+="CN96029"	"JP 2072 RADIO FREQUENCY COMMUNICATIONS ENGINEER"	="Defence Materiel Organisation"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	30-Jun-10	399080.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	02-Jul-08 09:11 AM	

+="CN96035"	"Procurement of C17 Parts and Repair and overhaul"	="Defence Materiel Organisation"	02-Jul-08	="Industrial Manufacturing and Processing Machinery and Accessories"	13-May-08	30-Jun-16	7047093.00	=""	="FMS Account"	02-Jul-08 09:12 AM	

+="CN96038"	"DISPLAY UNIT MILESTONE PAYMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	19-Jun-08	30-Dec-09	310926.00	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:13 AM	

+="CN96045"	"* ORDER RAISED IN ACCORDANCE WITH THE TERMS AND"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	19-Jun-08	30-Jun-09	1116763.38	=""	="SHELL CO OF AUSTRALIA LTD"	02-Jul-08 09:16 AM	

+="CN96046"	"Teamcenter software maintenance & support"	="Defence Materiel Organisation"	02-Jul-08	="Software"	19-Jun-08	30-Jun-09	1018879.30	=""	="PRODUCT LIFECYCLE MANAGEMENT"	02-Jul-08 09:16 AM	

+="CN96053"	"Emerald Maintenance Support Services"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	19-Jun-08	30-Jun-11	698139.99	=""	="APT BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 09:17 AM	

+="CN96057"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND COND ORDER JFLA AVN 002.02."	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	17-Jun-08	30-Jun-09	3577658.79	=""	="CALTEX AUSTRALIA LTD"	02-Jul-08 09:18 AM	

+="CN96061-A1"	"Upgrade of DSN Nodes on HMAS Kanimbla & Manoora"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	19-May-09	1487886.21	=""	="THALES AUSTRALIA"	02-Jul-08 09:19 AM	

+="CN96065"	"DMO @ AVALON AIRSHOW 09"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	17-Jun-08	384321.44	=""	="PICO AUSTRALIA PTY LTD"	02-Jul-08 09:20 AM	

+="CN96066"	"Eradication of asbestos - Non Reocuring Engineering (NRE) Proposal"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	24-Jun-08	330000.00	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:20 AM	

+="CN96080"	"FRAME ASSEMBLY"	="Defence Materiel Organisation"	02-Jul-08	="Hardware"	17-Jun-08	30-Apr-09	808692.55	=""	="BEAK RAST ENGINEERING"	02-Jul-08 09:23 AM	

+="CN96087"	"*** Required for ARC210 Project *** Diplexers Qty 30"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	02-Mar-09	379038.00	=""	="ROCKWELL COLLINS AUST PTY LTD"	02-Jul-08 09:25 AM	

+="CN96091-A1"	"Office Space"	="Defence Materiel Organisation"	02-Jul-08	="Lease and rental of property or building"	17-Jun-08	31-Mar-10	512057.74	=""	="CSC AUSTRALIA PTY LTD"	02-Jul-08 09:25 AM	

+="CN96099"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	18-Jun-08	30-Jun-10	569143.20	=""	="JACOBS AUSTRALIA"	02-Jul-08 09:27 AM	

+="CN96103"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	18-Jun-08	30-Jun-10	732536.00	=""	="QINETIQ CONSULTING PTY LTD"	02-Jul-08 09:28 AM	

+="CN96117"	"A/C T700 ENG SPARES"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	18-Jun-08	23-Jun-08	758877.65	=""	="ASIA PACIFIC AEROSPACE"	02-Jul-08 09:32 AM	

+="CN96118"	"Settlement of the Mulwala Cooperation Deed Dispute between Thales and the Commonwealth"	="Defence Materiel Organisation"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	31-Jul-08	500000.00	=""	="THALES AUSTRALIA"	02-Jul-08 09:32 AM	

+="CN96130"	"Aircraft Sustainment Support"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	566846.50	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:34 AM	

+="CN96136"	"DMO Press Advertising for FY 2007-08"	="Defence Materiel Organisation"	02-Jul-08	="Medical training and education supplies"	19-Jun-07	30-Jun-08	1177000.00	=""	="HMA BLAZE PTY LTD"	02-Jul-08 09:34 AM	

+="CN96138"	"IQ Task 05-203; Review od Defence Equipment Governance requirements for the WS Business Unit."	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Jun-09	422986.67	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:35 AM	

+="CN96139"	"ESP Technical Writing"	="Defence Materiel Organisation"	02-Jul-08	="Packing supplies"	27-Jun-09	09-Jul-09	443432.00	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	02-Jul-08 09:35 AM	

+="CN96141"	"Equipment Governance required at AVBU"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Jun-09	514861.90	=""	="RAYTHEON AUSTRALIA"	02-Jul-08 09:35 AM	

+="CN96142"	"ACCORD SUPPORT PH8B"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	30-May-08	30-Jun-08	303497.47	=""	="AUSTRALIAN AEROSPACE PTY LTD"	02-Jul-08 09:35 AM	

+="CN96152"	"Systems Engineer for the Overlander Program"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	323136.00	=""	="BOOZ & COMPANY (AUSTRALIA) LTD"	02-Jul-08 09:37 AM	

+="CN96162"	"Risk Management & Analysis S/ware, training & tech support"	="Defence Materiel Organisation"	02-Jul-08	="Business administration services"	07-May-08	30-Jun-08	836515.90	=""	="RISK DECISIONS PTY LTD"	02-Jul-08 09:39 AM	

+="CN96154"	"blackhawk engine spares:2840-01-473-3556 shaft qty2. 2840-01-200-9744 rotor qty 3. 2840-01-200-9745 rotor qty 2. 2840-01-087-4084 synchronizing ring qty4. 2840-01-143-9995 frame qty 1. 2840-01-239-2231 plate qty 2. 2840-01-280-9324 rotor qty 2."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	16-Jun-08	20-Jun-08	543051.07	=""	="asia pacific aerospace"	02-Jul-08 09:39 AM	

+="CN96165"	"CORRECTIVE MAINTENANCE ON MHC COMBAT & PLATFORM SYSTEM ITEMS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	18-Jun-08	30-Jun-08	357500.00	=""	="THALES AUSTRALIA"	02-Jul-08 09:39 AM	

+="CN96173"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	27-Jun-08	30-Jun-08	9320785.73	=""	="THALES AUSTRALIA"	02-Jul-08 09:40 AM	

+="CN96174"	"REPAIR & MAINTENANCE FOR COMMERCIAL VEHICLE FLEET"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	12-Nov-07	30-Jun-08	336443.02	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 09:40 AM	

+="CN96177-A1"	"HMAS TOOWOOMBA SRA1/IMAV02"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	11-Nov-07	30-Aug-08	2627593.67	=""	="THALES AUSTRALIA"	02-Jul-08 09:41 AM	

+="CN96184-A1"	" Project Integrated Service Support - Integrated Logistic support (ILS) "	="Defence Materiel Organisation"	02-Jul-08	="Communications Devices and Accessories"	04-Jul-07	29-Oct-09	550822.09	=""	="KELLOGG BROWN & ROOT PTY LTD"	02-Jul-08 09:42 AM	

+="CN96188"	"Non Specific maint at Bae T'ville under Standing Offer: 9507-466-62"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	12-Nov-07	30-Jun-08	402193.50	=""	="BAE SYSTEMS(AUSTRALIA)"	02-Jul-08 09:43 AM	

+="CN96189-A1"	"JP2077 PH2B - ARCHITECTURE SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	27-Jun-08	31-Oct-08	1084602.03	=""	="DELOITTE TOUCHE TOHMATSU"	02-Jul-08 09:43 AM	

+="CN96190-A1"	"Independant Verification and Validation - Capability Establishment Support"	="Defence Materiel Organisation"	02-Jul-08	="Business administration services"	01-Jul-08	30-Jun-09	738703.24	=""	="BALL SOLUTIONS GROUP"	02-Jul-08 09:43 AM	

+="CN96198"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUEL TO ADF UNITS"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	30-Jul-07	27-Jun-08	1136657.39	=""	="AUSTRALIAN FUEL DISTRIBUTORS"	02-Jul-08 09:44 AM	

+="CN96201"	"PURCHASE OF GENERATORS"	="Defence Materiel Organisation"	02-Jul-08	="Batteries and generators and kinetic power transmission"	25-Jun-08	31-Jul-08	1305150.06	=""	="CUMMINS SOUTH PACIFIC PTY LTD"	02-Jul-08 09:45 AM	

+="CN96206-A1"	"HABITABILITY Partial Installation on HMAS Ships 05 08 and 09 Adv Procurement"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	01-Feb-11	1466255.37	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:45 AM	

+="CN96208"	"Monthly standing fee for provision of Towed Targets IAW CAPO C338514"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Nov-07	30-Jun-09	888467.51	=""	="AIR TARGET SERVICES PTY LTD"	02-Jul-08 09:46 AM	

+="CN96213"	"Cart 0.50 cal 4 Ball/1 Tra"	="Defence Materiel Organisation"	02-Jul-08	="Explosive materials"	26-Jun-08	30-Dec-08	829074.18	=""	="THALES AUSTRALIA"	02-Jul-08 09:46 AM	

+="CN96216"	"BAE SYSTEMS COMBAT SYSTEM ROUTINE SERVICES"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	29-May-08	31-Dec-08	1334003.75	=""	="THALES AUSTRALIA"	02-Jul-08 09:47 AM	

+="CN96233"	"Provision of Technical Support Services"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	21-Apr-08	21-Jan-10	2200000.00	=""	="INNOVASYS"	02-Jul-08 09:50 AM	

+="CN96234-A1"	" Group TCE Development FY 2004/05 "	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	16-Mar-11	3556352.42	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:51 AM	

+="CN96244"	"P3 Accord MRAM-R Project Agreement PA-2006-001 Limbs 1 and 2"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Nov-07	28-Feb-10	322448.78	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:52 AM	

+="CN96247"	"Professional engineering services"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	30-Jun-09	518400.00	=""	="SEAL SOLUTIONS PTY LTD"	02-Jul-08 09:52 AM	

+="CN96259"	"M2A1 BOX RENTAL AGREEMENT"	="Defence Materiel Organisation"	02-Jul-08	="Packaging materials"	24-Jun-08	30-Jun-08	1167845.41	=""	="PENTARCH PTY LTD"	02-Jul-08 09:54 AM	

+="CN96268-A1"	"TS 4017-4 HMAS STUART DSRA03/IMAV04 - SITE AMENITIES AND INFRASTRUCTURE"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-06	08-Dec-10	1391271.98	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:56 AM	

+="CN96290"	"Repair of Leica Vector IV H/Held Laser Rangefinder"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	25-Feb-08	02-Dec-08	314641.00	=""	="HALL & WATTS AUSTRALIA PTY LTD"	02-Jul-08 10:00 AM	

+="CN96292-A1"	"Impact assessment of upgradeing from Ingres R3 to Ingres 2006 on the CAMM2 application"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	380625.35	=""	="ACCENTURE AUSTRALIA LTD"	02-Jul-08 10:00 AM	

+="CN96294"	"Disruptive Pattern Camouflage Coats and Trousers purchased against Standing Offer 1001-154-25"	="Defence Materiel Organisation"	02-Jul-08	="Military uniforms"	07-Jun-08	26-Sep-08	1422962.29	="2480095"	="Can't Tear Em Pty Ltd"	02-Jul-08 10:01 AM	

+="CN96300-A1"	" Break Down spares, consumables and repairable items "	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	30-Jun-08	30-Jun-08	589885.34	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 10:01 AM	

+="CN96301"	"FUNDING FOR PLANNING TEAMS RESPONSIBLE FOR PLANNING THE MAJORITY OF OTHR PROJECTS"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	17-Jun-08	30-Jun-09	317284.36	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 10:02 AM	

+="CN96304-A1"	"AIR BLOWERS ASSEMBLIES"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	04-Apr-08	29-Aug-08	603729.06	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	02-Jul-08 10:02 AM	

+="CN96309-A2"	" TASK 1477-4 COMBAT OPERATIONAL SNC "	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	09-Jun-08	15-Sep-10	479840.38	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 10:03 AM	

+="CN96310"	"Demolition Stores Tech Recovery Ph2 - Milestone 4- Demolition Stores Tech Recovery Ph2 - Milestone 8"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	10-Jun-08	30-Jan-09	645730.99	=""	="JACOBS AUSTRALIA"	02-Jul-08 10:03 AM	

+="CN96313"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 001.01"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	10-Jun-08	30-Jun-08	7000000.00	=""	="BP AIR - DIVISION OF BP"	02-Jul-08 10:03 AM	

+="CN96316"	"VoP For GBP ISS contract C388561, Inv 71056"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	10-Jun-08	10-Jun-08	356060.84	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 10:04 AM	

+="CN96330"	"Virtual Reality Parachute Simulator"	="Defence Materiel Organisation"	02-Jul-08	="Electronic Components and Supplies"	22-May-08	30-Jun-09	1614927.52	=""	="DEFCON TECHNOLOGIES PTY LTD"	02-Jul-08 10:06 AM	

+="CN96331"	"Virtual Reality Parachute Simulator (AUD Component"	="Defence Materiel Organisation"	02-Jul-08	="Electronic Components and Supplies"	22-May-08	30-Jun-09	417454.92	=""	="DEFCON TECHNOLOGIES PTY LTD"	02-Jul-08 10:06 AM	

+="CN96337"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	03-Jun-08	30-Jun-10	10839731.20	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	02-Jul-08 10:06 AM	

+="CN96351"	"Project LAND 146 Phase 2"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	05-Dec-07	30-Jun-10	307560.00	=""	="JACOBS AUSTRALIA"	02-Jul-08 10:09 AM	

+="CN96356"	"Protected Weapon Stations for Bushmaster IMV"	="Defence Materiel Organisation"	02-Jul-08	="Fire protection"	16-Jun-08	30-Jun-08	1694399.91	=""	="THALES AUSTRALIA - BENDIGO"	02-Jul-08 10:09 AM	

+="CN96357"	"follow on support of hydrographic ships"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	26-Jun-08	30-Jun-08	419361.03	=""	="AIMTEK PTY LTD"	02-Jul-08 10:09 AM	

+="CN96360"	"Truck Explosive Ordance Disposal Sprinter Qty12"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	09-Oct-07	28-Feb-09	505705.20	=""	="EMERGENCY TRANSPORT TECHNOLOGY"	02-Jul-08 10:10 AM	

+="CN96361"	"AIR5400 NPOC Funds for ASRAAM FY 07-08"	="Defence Materiel Organisation"	02-Jul-08	="Guided missiles"	12-Nov-07	30-Jun-08	804515.29	=""	="MBDA MISSILE SYSTEMS"	02-Jul-08 10:10 AM	

+="CN96364"	"Supply of Qty 38 AC Ground Power Units, including technical data, training & delivery."	="Defence Materiel Organisation"	02-Jul-08	="Power Generation and Distribution Machinery and Accessories"	23-Apr-08	15-Jan-10	441045.00	=""	="ADVANCED POWER MACHINERY"	02-Jul-08 10:10 AM	

+="CN96366-A2"	"     Repair & Overhaul Qty 1 T56-A-15 Reduction gearbox     "	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	23-Oct-07	18-May-09	517225.54	=""	="SAFE AIR LTD"	02-Jul-08 10:11 AM	

+="CN96382-A1"	"Develop & Implement Portfolio Governance Framework"	="Defence Materiel Organisation"	02-Jul-08	="Management advisory services"	25-Jun-08	31-Dec-08	873280.00	=""	="KPMG"	02-Jul-08 10:13 AM	

+="CN96386"	"MADE TO MEASURE UNIFORMS TRI-SERVICE"	="Defence Materiel Organisation"	02-Jul-08	="Clothing"	12-Feb-08	30-Jun-08	820000.00	=""	="AUSTRALIAN DEFENCE APPAREL"	02-Jul-08 10:13 AM	

+="CN96389"	"Extension of Milspec Preferred Supplier Arrangment February 08 - 30 June 08"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	30-Jun-08	30-Jun-08	376080.10	=""	="MILSPEC SERVICES PTY LTD"	02-Jul-08 10:14 AM	

+="CN96418-A1"	" Managed Investment and Shares (Securities) Product Updates and DataA "	="Department of Human Services"	02-Jul-08	="Information services"	30-Jun-08	30-Jun-12	427680.00	="RFTS07/0059"	="Morningstar Australasia Pty Ltd"	02-Jul-08 10:32 AM	

+="CN96420-A3"	"  Tax Office Staff Engagement Diagnostic and Improvement   Methodology  "	="Australian Taxation Office"	02-Jul-08	="Strategic planning consultation services"	30-Jun-08	30-Jun-12	1918853.00	=""	="Towers Watson International Survey Research P/L"	02-Jul-08 10:36 AM	

+="CN96444"	"Purchase of qty three Black Hawk helicopter Main Rotor hubs."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	20-Jun-08	31-Jul-08	554353.96	=""	="Sikorsky Aircraft Austalia Limited"	02-Jul-08 11:58 AM	

+="CN96445"	"Fitout and Refurbishment Works"	="Workplace Ombudsman"	02-Jul-08	="Building and Construction and Maintenance Services"	25-Oct-07	22-Feb-08	1754698.00	="WO2007/06"	="Renascent Victoria Pty Ltd"	02-Jul-08 12:00 PM	

+="CN96492"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	30-Jun-09	360360.00	="RFTS07/0129"	="Venntrack"	02-Jul-08 12:24 PM	

+="CN96494"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	26-Jun-08	30-Jun-09	357957.60	=""	="Patriot Alliance Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96573"	"FP & EM RWL Reactives (incl. force majeure) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	440000.01	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:28 PM	

+="CN96576"	"SERVER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jul-08	339858.73	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:29 PM	

+="CN96586"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-09	1965040.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	02-Jul-08 01:29 PM	

+="CN96594"	"COMPUTER SERVERS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jul-08	303721.00	=""	="IBM AUSTRALIA PTY LTD"	02-Jul-08 01:30 PM	

+="CN96597"	"Aircraft Technical Support Inter- Agency Agreement"	="Department of Defence"	02-Jul-08	="Aircraft equipment"	16-Jun-08	30-Jun-08	850000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	02-Jul-08 01:30 PM	

+="CN96634"	"ENTERPRISE STORAGE"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Jul-08	543361.35	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	02-Jul-08 01:34 PM	

+="CN96644"	"GB & FM Routine Maintenance (Non-LIA) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	1564799.00	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:35 PM	

+="CN96670"	"IT Services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-10	532400.00	=""	="PROGRAM PLANNING PROFESSIONALS PTY"	02-Jul-08 01:37 PM	

+="CN96697"	"PAYMENT OF FUNDS TO SUPPORT THE DEFENCE SHCOOL TRANSITION AIDE POSITION"	="Department of Defence"	02-Jul-08	="Education and Training Services"	18-Jun-08	18-Jun-08	901894.75	=""	="NSW DEPART OF EDUCATION &"	02-Jul-08 01:39 PM	

+="CN96703"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-09	347920.00	=""	="PROVIDENCE CONSULTING GROUP PL"	02-Jul-08 01:40 PM	

+="CN96715"	"PROVISION OF AERIAL TARGET SYSTEMS IN SUPPORT OF FCI COURSE MISSILE SHOOT"	="Department of Defence"	02-Jul-08	="Military fixed wing aircraft"	17-Jun-08	30-Jun-09	3418600.10	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	02-Jul-08 01:41 PM	

+="CN96739"	"Deed of Standing Offer JLUSQ-0406 to support Labou Jul to 28 Sep 08."	="Department of Defence"	02-Jul-08	="Transportation repair or maintenance services"	17-Jun-08	28-Sep-08	609237.78	=""	="DRAKE AUSTRALIA PTY LTD"	02-Jul-08 01:43 PM	

+="CN96754"	"PROVISION OF SERVICES AT 44WG AND 92WG"	="Department of Defence"	02-Jul-08	="Environmental management"	06-May-08	30-Jun-08	302500.00	=""	="SERCO MAPS PTY LTD"	02-Jul-08 01:44 PM	

+="CN96760"	"HOME OWNER SUBSIDY SCHEME"	="Department of Defence"	02-Jul-08	="Sale of property and building"	12-Nov-07	30-Jun-08	301591.78	=""	="DHA - CENTRAL OFFICE"	02-Jul-08 01:44 PM	

+="CN96781"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-09	328785.00	=""	="KAZ GROUP PTY LTD"	02-Jul-08 01:46 PM	

+="CN96784-A1"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	608473.05	=""	="INFORMATION IDENTITY PTY LTD"	02-Jul-08 01:46 PM	

+="CN96796"	"Reactive Maintenance"	="Department of Defence"	02-Jul-08	="General building construction"	03-Dec-07	30-Jun-08	881100.09	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	02-Jul-08 01:47 PM	

+="CN96811"	"CNOA Software Team"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	10-Jan-08	31-Mar-08	334000.00	=""	="SIGNAL PROCESSING KNOW-HOW PTY LTD"	02-Jul-08 01:48 PM	

+="CN96817"	"CONSULTANCY & REPORTS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	16-Jun-08	30-Jun-08	49444299.31	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:48 PM	

+="CN96820"	"UPGRADE OF COMPUTER SYSTEM"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	408888.91	=""	="JACOBS AUSTRALIA"	02-Jul-08 01:48 PM	

+="CN96822"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	25-Jun-08	30-Jun-08	2104821.40	=""	="JOHN HOLLAND BENEFICIARIES TRUST"	02-Jul-08 01:48 PM	

+="CN96834"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	20-May-09	300696.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:49 PM	

+="CN96846"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-May-09	311916.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:50 PM	

+="CN96849"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-May-09	341088.00	=""	="PEOPLEBANK"	02-Jul-08 01:50 PM	

+="CN96852"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-May-09	374748.00	=""	="CLARIUS GROUP LIMITED"	02-Jul-08 01:50 PM	

+="CN96863"	"Delivery of CTD 2007-3 project"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	30-Jun-09	3643200.00	=""	="THALES AUSTRALIA"	02-Jul-08 01:51 PM	

+="CN96864"	"CMC ALLOCATIONS & COMMITMENT -GB&FM ROUTINE MAINTENANCE WORKS"	="Department of Defence"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Jun-08	30-Jun-08	433562.58	=""	="ASSET SERVICES"	02-Jul-08 01:51 PM	

+="CN96866"	"Material for Southern Police Stations"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	17-Jun-08	17-Jun-08	1389801.60	=""	="PATTEMORE CONSTRUCTIONS"	02-Jul-08 01:51 PM	

+="CN96873"	"Albury Wodonga Military Area - GEW Routine Maintenance"	="Department of Defence"	02-Jul-08	="Project management"	19-Jun-08	30-Jun-08	572407.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 01:51 PM	

+="CN96882"	"Kapooka Military Area - GEW Routine Maintenance"	="Department of Defence"	02-Jul-08	="Project management"	19-Jun-08	30-Jun-08	368890.01	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 01:52 PM	

+="CN96884"	"Install police compound - Willowra"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	17-Jun-08	17-Jun-08	624250.00	=""	="PATTEMORE CONSTRUCTIONS"	02-Jul-08 01:52 PM	

+="CN96888"	"GBW REACTIVE MAINTENANCE ROUTINE WORKS"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	11-Jun-08	30-Jun-08	517000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 01:52 PM	

+="CN96900"	"TSS CONTRACT EXTENSION"	="Department of Defence"	02-Jul-08	="Computer services"	24-Jun-08	30-Jun-08	493600.01	=""	="IOCANE PTY LTD"	02-Jul-08 01:52 PM	

+="CN96901"	"Security Clearance Costs"	="Department of Defence"	02-Jul-08	="Security surveillance and detection"	24-Jun-08	30-Jun-08	585000.00	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 01:52 PM	

+="CN96904"	"hangar Works"	="Department of Defence"	02-Jul-08	="Transportation services equipment"	17-Jun-08	30-Jun-08	536137.42	=""	="PA & CI MARTIN PTY LTD"	02-Jul-08 01:52 PM	

+="CN96908"	"GB & FM Reactive Maintenance (non-lia) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	1039500.00	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:54 PM	

+="CN96944-A1"	" SOFTWARE LICENCE AND MAINTENANCE "	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	12-Jun-08	483210.98	=""	="IBM AUSTRALIA PTY LTD"	02-Jul-08 01:56 PM	

+="CN96945"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	30-Jun-08	329405.98	=""	="QP3 CONSULTING"	02-Jul-08 01:56 PM	

+="CN96951"	"HEALTH/MEDICAL SERVICES"	="Department of Defence"	02-Jul-08	="Healthcare Services"	12-Nov-07	30-Jun-10	1529196.41	=""	="ASPEN MEDICAL PTY LTD"	02-Jul-08 01:56 PM	

+="CN96976"	"MY HQ MAINTENANCE COSTS FOR JULY TO DECEMBER 2007. MAINTENANCE AND HELPDESK SUPPORT OF MYHQ AND DEFE"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	29-Feb-08	330000.00	=""	="MANPOWER DEFENCE FORCE RECRUITING"	02-Jul-08 01:58 PM	

+="CN96990"	"FINANCE ESTIMATES"	="Department of Defence"	02-Jul-08	="Naval weapons"	30-Jun-08	30-Jun-08	463463.00	=""	="KAZ GROUP PTY LTD"	02-Jul-08 01:58 PM	

+="CN97002"	"Accomodation works Campbell Park & Brindabella Par"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Jun-08	1526324.01	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:00 PM	

+="CN97004"	"HQJOC-C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-09	1215500.00	=""	="THALES AUSTRALIA"	02-Jul-08 02:00 PM	

+="CN97014"	"Design & doc Russell carpark"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	1253941.58	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:01 PM	

+="CN97025"	" DL0162/2008 - Legal Services "	="Department of Defence"	02-Jul-08	="Legal services"	12-Jun-08	30-Jun-09	368842.20	=""	="BLAKE DAWSON WALDRON"	02-Jul-08 02:02 PM	

+="CN97027"	"MARKETING FOR DEFENCE TECHNICAL SCHOLARSHIPS."	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	648516.00	=""	="GEORGE PATTERSON Y & R"	02-Jul-08 02:02 PM	

+="CN97028"	" professional valuation services and travel related expenses "	="Department of Defence"	02-Jul-08	="Property management services"	12-Jun-08	30-Jun-11	2249999.99	=""	="AUSTRALIAN VALUATION OFFICE"	02-Jul-08 02:02 PM	

+="CN97038"	"Software"	="Department of Defence"	02-Jul-08	="Software"	27-Jun-08	30-Jun-08	558005.64	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	02-Jul-08 02:03 PM	

+="CN97047"	"Sustainment Services for the Master Supplier Register and DeBI"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	28-Nov-07	30-Jun-08	1286407.51	=""	="KAZ GROUP PTY LTD"	02-Jul-08 02:03 PM	

+="CN97069"	"Fuel Farm Refurbishment"	="Department of Defence"	02-Jul-08	="Fuel tanks and systems"	18-Jun-08	30-Jun-08	608738.90	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	02-Jul-08 02:05 PM	

+="CN97071"	"AERONAUTICAL ENGINEER"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	12-Jun-08	30-Jun-09	323318.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	02-Jul-08 02:05 PM	

+="CN97072"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	30-Jun-08	327241.43	=""	="INFORMATION IDENTITY PTY LTD"	02-Jul-08 02:05 PM	

+="CN97078"	"FACOPS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Jun-08	822046.78	=""	="MCMAHON SERVICES AUSTRALIA PTY LTD"	02-Jul-08 02:06 PM	

+="CN97083"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	12-Jun-08	560010.00	=""	="SMS CONSULTING GROUP PTY LTD"	02-Jul-08 02:07 PM	

+="CN97096"	"NT1960 GEW Routine Maintenance Period 1/5/2008 to 30/6/2008"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	530845.16	=""	="ASSET SERVICES"	02-Jul-08 02:07 PM	

+="CN97114"	"ONLINE PRODUCTION"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	23-Aug-07	30-Jun-08	770284.80	=""	="VISUAL JAZZ PTY LTD"	02-Jul-08 02:08 PM	

+="CN97118"	"facilities operations"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	22-Apr-08	30-Jun-08	597162.27	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:09 PM	

+="CN97120"	"Software"	="Department of Defence"	02-Jul-08	="Software"	19-Jun-08	30-Jun-09	595069.20	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	02-Jul-08 02:09 PM	

+="CN97125"	"Reference No:AB836484 Contractor Provide DLTCP"	="Department of Defence"	02-Jul-08	="Project management"	12-Jun-08	31-Aug-08	410400.10	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	02-Jul-08 02:09 PM	

+="CN97153"	"Digital Printer"	="Department of Defence"	02-Jul-08	="Office supplies"	13-Jun-08	30-Jun-08	410080.00	=""	="FUJI XEROX"	02-Jul-08 02:11 PM	

+="CN97196"	"R5 PROJECT TRAVELLER SN02753 SN02798 SN02802"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-08	440477.51	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:14 PM	

+="CN97202"	"CMS Mangaement Fees"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-08	86229867.11	=""	="ASSET SERVICES"	02-Jul-08 02:14 PM	

+="CN97223"	"Development and Demonstration of a Capability Demonstrator with CSIRO"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	16-Jun-08	22-Jul-11	4833950.00	=""	="CSIRO ENERGY TECHNOLOGY"	02-Jul-08 02:15 PM	

+="CN97261"	"PURCHASE FROM CAIRNS PORTS LAND, AT DRAPER STREET CAIRNS."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	967670.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 02:18 PM	

+="CN97269"	"CTD -Carbon Nanotubes for Ballistic Protection"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	13-Jun-08	13-Jun-11	2200000.00	=""	="CSIRO DIVISION OF FIBRE TECHNOLOGY"	02-Jul-08 02:19 PM	

+="CN97299"	"CONTRACTING SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Dec-09	511500.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	02-Jul-08 02:21 PM	

+="CN97307"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Dec-09	536250.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	02-Jul-08 02:21 PM	

+="CN97321"	"ASBESTOS RECTIFICATION"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	19-Jun-08	30-Jun-08	385505.68	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:23 PM	

+="CN97326"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	04-Dec-07	30-Jun-09	345430.39	=""	="ROSSLOGIC PTY LTD"	02-Jul-08 02:23 PM	

+="CN97331"	"AIR 8000 PHASE 3- HEAVY AIR LIFT (HAL) FACILITIES HEAD CONTRACT WITH BARDAVCOL"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-09	21779376.30	=""	="BARDAVCOL PTY LTD"	02-Jul-08 02:23 PM	

+="CN97355"	"SN02428 Design & Doc WR270137291"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	526473.32	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:25 PM	

+="CN97357"	"Construction of Carpart and Storage Facilities at LIA"	="Department of Defence"	02-Jul-08	="Project management"	18-Jun-08	30-Jun-09	325761.78	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 02:25 PM	

+="CN97360"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jul-10	456720.53	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:26 PM	

+="CN97368"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jul-10	537504.53	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:26 PM	

+="CN97369"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	9718956.47	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 02:26 PM	

+="CN97372"	"Personnel Services"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Jun-08	30-Jun-09	328680.00	=""	="CAREERS MULTILIST LIMITED"	02-Jul-08 02:26 PM	

+="CN97375"	"TRANSMISSION CHARGES"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-09	2167069.10	=""	="TELSTRA"	02-Jul-08 02:27 PM	

+="CN97379"	"HQJOC PROJECT C4I PROJECT MANAGEMENT & SYSTEMS ENGINEERING SERVICES"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-09	1628520.00	=""	="CODARRA ADVANCED SYSTEMS"	02-Jul-08 02:27 PM	

+="CN97383"	"MANAGING CONTRACTOR FOR RAAF COLLEGE RELOCATION PROJECT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	24-Jun-08	30-Jun-08	710379.90	=""	="THIESS PTY LTD"	02-Jul-08 02:27 PM	

+="CN97415"	"12 Months Cisco-Network Service FY 2008/2009"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	18-Jun-08	30-Jun-09	459800.00	=""	="TELSTRA BUSINESS & GOVERNMENT"	02-Jul-08 02:30 PM	

+="CN97425"	"Supply of fresh fruit & vegetables"	="Department of Defence"	02-Jul-08	="Fruits and vegetables and nuts and seeds"	18-Jun-08	30-Jun-09	410000.00	=""	="SOLOMON FOOD GROUP"	02-Jul-08 02:31 PM	

+="CN97430"	"AWMA - EB FIRST FLUSH UPGRADE"	="Department of Defence"	02-Jul-08	="Project management"	19-Jun-08	31-Jul-08	588632.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 02:31 PM	

+="CN97431"	"SUPPLY OF AIT HARDWARE"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	18-Jun-08	30-Jun-08	501032.40	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:31 PM	

+="CN97436"	"HOLSWORTHY SPECIAL OPERATIONS WORKING ACCOMODATION & BASE REDEVELOPMENT STAGE 1"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	25-Jun-08	30-Jun-10	489899.67	=""	="JOHN HOLLAND PTY LTD"	02-Jul-08 02:31 PM	

+="CN97457"	"** CONTACT TONY BUTLER 08 8935 4622 **"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	19-Jun-08	30-Jun-09	660000.00	=""	="WOLPERS GRAHL PTY LTD"	02-Jul-08 02:34 PM	

+="CN97460"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	31-Jan-09	412500.00	=""	="KONEKT AUSTRALIA PTY LTD"	02-Jul-08 02:34 PM	

+="CN97461"	"NQ2181 - FP & EM Reactive Maintenance North Qu"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Sep-08	440003.58	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:34 PM	

+="CN97466"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH MANAGING CONTRACT AUSTRALIAN TRUST ACCOUNT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-10	1774000.00	=""	="KANE PARAMOUNT SDN BHD (TRUST)"	02-Jul-08 02:34 PM	

+="CN97468"	"THIS IS A RENEWAL OF THE EXISTING DEFENCE FORMAL M CONTRACT AS PROVIDED IN THE DEED OF AGREEMENT.  T"	="Department of Defence"	02-Jul-08	="Electronic hardware and component parts and accessories"	10-Jun-08	30-Apr-09	3421438.72	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	02-Jul-08 02:34 PM	

+="CN97469"	"ENHANCED LANDFORCE-STAGE 1. MAUNSELL-DESIGN SERVICES WP2B."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-09	2231847.20	=""	="MAUNSELL AUSTRALIA PTY LTD"	02-Jul-08 02:34 PM	

+="CN97471"	"NQ2179 - Routine and Reactive Maintenance North Qu"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Sep-08	727089.23	=""	="SPOTLESS"	02-Jul-08 02:35 PM	

+="CN97473"	"ENHANCED LANDFORCE-STAGE 1. MAUNSELL-WP 2C-DETAILED DESIGN PHASE."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-09	3201707.30	=""	="MAUNSELL AUSTRALIA PTY LTD"	02-Jul-08 02:35 PM	

+="CN97474"	"ENHANCED LANDFORCE - STAGE 1"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-09	8627300.00	=""	="BLIGH VOLLER NIELD PTY LTD"	02-Jul-08 02:35 PM	

+="CN97481"	"GHD wp1 adelaide - design service consultant"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-09	622600.00	=""	="GHD PTY LTD"	02-Jul-08 02:36 PM	

+="CN97483"	"ONESAF FMS CASE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	30-Jun-08	560979.00	=""	="FMS ACCOUNT"	02-Jul-08 02:36 PM	

+="CN97488"	"LCD MONITORS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Sep-08	476718.00	=""	="DELL COMPUTER PTY LTD"	02-Jul-08 02:36 PM	

+="CN97490"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Sep-08	2065800.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:36 PM	

+="CN97496"	"GATEWAY"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	633069.14	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	02-Jul-08 02:37 PM	

+="CN97517"	"NQ2180 - General Estate Works Reactive Maintenance"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Sep-08	309253.16	=""	="SPOTLESS"	02-Jul-08 02:39 PM	

+="CN97519"	"CIOGCON DNSA 023/06 - TELECOMMUNICATION (CARRIAGE)"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-Jun-08	21-May-14	126738089.24	=""	="TELSTRA"	02-Jul-08 02:39 PM	

+="CN97520"	"Audio Visual upgrades"	="Department of Defence"	02-Jul-08	="Electron tube devices and accessories"	10-Jun-08	30-Jun-08	430333.28	=""	="ELECTROBOARD"	02-Jul-08 02:39 PM	

+="CN97531"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jul-10	568920.53	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:40 PM	

+="CN97533"	"PAPER AND INKS FOR THE ANAPURNAS"	="Department of Defence"	02-Jul-08	="Paper Materials and Products"	19-Jun-08	30-Jun-09	482724.20	=""	="AGFA-GEVAERT LTD"	02-Jul-08 02:40 PM	

+="CN97537"	"CIOGCON DNSA 023/06 - TELECOMMUNICATION (CARRIAGE)"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	21-May-14	3699960.00	=""	="TELSTRA"	02-Jul-08 02:41 PM	

+="CN97539"	"HQJOC C7018 - MCF FUNDING"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	6552768.20	=""	="PRAECO PTY LTD"	02-Jul-08 02:41 PM	

+="CN97549"	"NQ1329 - CMC North Queensland Management Fees."	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	19-Jun-08	30-Sep-08	3308412.90	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:42 PM	

+="CN97552"	"MAIL SERVICES"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	10-Jun-08	30-Jun-09	1100000.00	=""	="AUSTRALIA POST"	02-Jul-08 02:43 PM	

+="CN97559"	"CIOGCON DNSA 023/06 - TELECOMMUNICATION (CARRIAGE)"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-Jun-08	21-May-14	4595101.06	=""	="TELSTRA"	02-Jul-08 02:43 PM	

+="CN97568"	"MAIL SERVICES"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	10-Jun-08	01-Jul-08	549000.00	=""	="TOLL PRIORITY"	02-Jul-08 02:45 PM	

+="CN97573"	"HQJOC PROJECT - SECURITY CONTAINERS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-09	1129364.50	=""	="PLANEX SALES PTY LTDLTD"	02-Jul-08 02:45 PM	

+="CN97575"	"CIOGCON DNSA 023/06 - TELECOMMUNICATION (CARRIAGE)"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-Jun-08	21-May-14	42066849.70	=""	="TELSTRA"	02-Jul-08 02:45 PM	

+="CN97577"	"REQUIREMENTS ENGINEER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-09	308000.00	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:46 PM	

+="CN97584"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-09	329120.00	=""	="JACOBS AUSTRALIA"	02-Jul-08 02:46 PM	

+="CN97591"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	19-Nov-08	385000.00	=""	="EDS (AUSTRALIA) PTY LTD"	02-Jul-08 02:47 PM	

+="CN97609"	"ADF HEADQUARTERS RETIONALISATION BUTTERWORTH MANAGING CONTRACT AUSTRALIAN TRADING ACCOUNT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	11-Jun-08	30-Jun-11	4920000.00	=""	="KANE PARAMOUNT SDN BHD (PAYMENTS)"	02-Jul-08 02:48 PM	

+="CN97611"	"S4875, WR's 300074944  &  300083530. Refurbish Hospital to comply with BCR"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-09	1797906.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:48 PM	

+="CN97629"	"SWBTA Asset Road Maintenance"	="Department of Defence"	02-Jul-08	="Roads and landscape"	12-Jun-08	30-Jun-08	750000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 02:49 PM	

+="CN97637"	"PROVISION OF TONER"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	12-Jun-08	30-Jun-09	880000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	02-Jul-08 02:50 PM	

+="CN97661"	"S4875, WR 300074943. Refurbish Bldg 8 Balmoral Nav to comply with BCR  &  Health"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-09	679734.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:53 PM	

+="CN97668"	"AIR CHTR - PM&C"	="Department of Defence"	02-Jul-08	="Aircraft"	17-Jun-08	17-Jun-08	482521.15	=""	="HEAVYLIFT CARGO AIRLINES"	02-Jul-08 02:53 PM	

+="CN97681"	"EROSION & CONTAMINATION REMEDIATION"	="Department of Defence"	02-Jul-08	="Environmental management"	11-Jun-08	30-Jun-09	339350.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:55 PM	

+="CN97695"	" ARCHAEOLOGICAL SERVICES "	="Department of Defence"	02-Jul-08	="Research programs"	17-Jun-08	17-Jun-08	414009.68	=""	="THE UNIVERSITY OF GLASGOW"	02-Jul-08 02:56 PM	

+="CN97718"	"SOFTWARE PROGRAM"	="Department of Defence"	02-Jul-08	="Software"	11-Jun-08	30-Jun-08	591980.40	=""	="FUJITSU AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97735"	"Software support Services contract 273700"	="Family Court of Australia"	02-Jul-08	="License management software"	01-Jun-08	30-Jun-09	442993.85	=""	="ORACLE CORPORATION AUSTRALIA"	02-Jul-08 03:07 PM	

+="CN97776"	"Construction Management Cairns ICC Office fitout - 38 Sheridan St Cairns"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	2009689.05	="SON: 34253"	="ISIS Projects Pty Ltd"	02-Jul-08 04:46 PM	

+="CN97784-A1"	"Aerial photography of 73 NTER communities."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	19-Jun-08	30-Jun-12	2807414.00	=""	="Dept of Planning and Infrastructure"	02-Jul-08 04:48 PM	

+="CN97873"	"Provision of demountable accommodation in support NTER staff accommodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	17-Jun-08	31-Dec-08	3499999.92	=""	="Ausco Modular Pty Limited"	02-Jul-08 05:01 PM	

+="CN97884-A1"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	18-Jun-08	30-Jun-09	788920.00	=""	="AVIKO PTY LTD"	02-Jul-08 05:02 PM	

+="CN97935-A2"	" Provide high-level services at BCA Beijing 2008 venue.  Variation 1: Services revised to include gala dinners. Contract value increased by $95000. "	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	26-Nov-08	345000.00	=""	="ABT Creative (Beijing) Consulting Company Ltd"	03-Jul-08 09:33 AM	

+="CN97952"	"Library Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Library"	01-Jul-08	30-Jun-09	396000.00	="06/236-01"	="Airservices Australia"	03-Jul-08 10:03 AM	

+="CN97984"	"Capacity Planning and Assurance Expertise"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	02-May-08	30-Jun-08	574900.00	=""	="CPT GLOBAL LTD"	03-Jul-08 10:36 AM	

+="CN97987"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	11-Jan-08	25-Jun-09	309919.50	="RFT"	="REDBACK CONSULTING PTY LTD"	03-Jul-08 10:36 AM	

+="CN97988"	"Mobile voice services"	="Civil Aviation Safety Authority"	03-Jul-08	="Mobile phones"	01-Jul-08	30-Jun-09	330000.00	="06/244-01"	="Optus Billing Services Pty Ltd"	03-Jul-08 10:37 AM	

+="CN98000-A8"	" Peoplesoft Maintenance "	="Australian National Audit Office (ANAO)"	03-Jul-08	="Information technology consultation services"	14-Mar-08	14-Jan-13	475000.00	=""	="Oakton AA Services Pty Ltd"	03-Jul-08 10:53 AM	

+="CN98002"	"WAN Acceleration Equipment Acquisition"	="Austrade"	03-Jul-08	="Computer Equipment and Accessories"	19-Dec-07	19-Jan-08	1077067.00	=""	="Dimension Data Australia Pty Ltd"	03-Jul-08 10:57 AM	

+="CN98016"	"IP Trunking Rollout"	="Civil Aviation Safety Authority"	03-Jul-08	="Software"	01-Jul-08	30-Jun-09	567700.00	="07/035-01"	="AAPT Telecommunications"	03-Jul-08 11:32 AM	

+="CN98014"	"Contract for the provision of a national assessment of people's experience with and perceptions of cancer care delivery."	="Cancer Australia"	03-Jul-08	="Healthcare Services"	13-Jun-08	30-Jun-09	330569.00	="RFT CA03/0708"	="Campbell Research and Consulting"	03-Jul-08 11:36 AM	

+="CN98187-A1"	"Refurbishment Level 14, Melbourne Registry"	="Family Court of Australia"	03-Jul-08	="Refurbishing services"	16-Jun-08	18-Aug-08	690448.00	=""	="United Commercial Projects Pty Ltd"	03-Jul-08 02:28 PM	

+="CN98337"	"STAR Programme solution architect"	="Australian Securities and Investments Commission"	03-Jul-08	="Information technology consultation services"	26-May-08	25-May-09	392040.00	=""	="Class Solutions Pty Ltd"	03-Jul-08 02:52 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val30000to40000.xls
@@ -1,1 +1,227 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95623"	"Report on Future Fuels and Vehicles"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	12-Jun-08	30-Jun-08	39308.50	=""	="CSIRO"	01-Jul-08 10:08 AM	

+="CN95628"	"Engagement of contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	23-Jun-08	24-Oct-08	34980.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:08 AM	

+="CN95634"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	23-Jun-08	30-Jun-09	31289.50	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:09 AM	

+="CN95637-A1"	"ECM Software Licenses (Windows, VMWARE, SQL)"	="Australian Securities and Investments Commission"	01-Jul-08	="Software"	03-Mar-08	01-Apr-08	34868.84	=""	="Fujitsu Australia Limited"	01-Jul-08 10:10 AM	

+="CN95667-A1"	"IBM DB2 Enterprise Server Edition Value Unit License + SW Maintenance (12 months) for Names Re-Engineering Project"	="Australian Securities and Investments Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Feb-08	28-Feb-08	39976.20	=""	="IBM Australia Limited"	01-Jul-08 10:57 AM	

+="CN95669"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	02-Jun-08	15-Sep-08	31618.07	=""	="CHIPPENDALE PRINTING COMPANY P/L"	01-Jul-08 11:07 AM	

+="CN95675"	"Supplementary air conditioning unit to Executive Conference Room"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Distribution and Conditioning Systems and Equipment and Components"	13-Jun-08	30-Aug-08	30272.00	="ATM08/1086"	="Dalkia Technical Services"	01-Jul-08 11:11 AM	

+="CN95679-A1"	"Advertising - National E-security Awareness Week & Stay Smart Online website (GCUADV2002/03)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	24-Jun-08	30033.81	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:11 AM	

+="CN95709-A2"	"REPAIR FLAP"	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	08-Aug-08	38500.00	=""	="Boeing Australia"	01-Jul-08 11:21 AM	

+="CN95716"	"Review of business processes and organisational structure"	="Professional Services Review"	01-Jul-08	="Organisational structure consultation"	11-Mar-08	31-Jul-08	38610.00	=""	="Courage Partners"	01-Jul-08 11:47 AM	

+="CN68700"	"Data purchase for SME Telecommunications Consumer Research."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	04-Apr-08	30-Jun-08	32175.00	=""	="Sensis Pty Ltd"	01-Jul-08 11:54 AM	

+="CN95740"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	12-Jun-08	25-Sep-08	32231.86	=""	="RODENPRINT P/ L"	01-Jul-08 01:15 PM	

+="CN95743-A1"	"Annual maintenance of Leaders4 Software- 1/07/2008-30/06/2009"	="Australian Taxation Office"	01-Jul-08	="License management software"	01-Jul-08	30-Jun-09	38006.85	=""	="SAI GLOBAL"	01-Jul-08 01:19 PM	

+="CN95747"	"consulting circ coin blank project"	="Royal Australian Mint"	01-Jul-08	="Information technology consultation services"	12-Jun-08	12-Jun-08	34375.00	=""	="LANGE CONSULTING AND SOFTWARE"	01-Jul-08 01:34 PM	

+="CN95749"	"Supply of portable radio tranceivers and other associated communication equipment"	="Australian Federal Police"	01-Jul-08	="Communications Devices and Accessories"	01-Jul-08	01-Sep-08	37411.00	=""	="Motorola Australia Pty Limited"	01-Jul-08 01:41 PM	

+="CN95762"	"Provision of  telephone calls"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	38077.07	=""	="Telstra Corporation Ltd"	01-Jul-08 01:43 PM	

+="CN95764"	"AIRFARES APR-08"	="Department of Parliamentary Services"	01-Jul-08	="Commercial passenger jet aircraft"	29-May-08	30-May-08	34365.13	=""	="Qantas Amex Business Travel A/C"	01-Jul-08 01:43 PM	

+="CN95772-A1"	"Provision of JobReady + V8 Software - Support Services"	="CRS Australia"	01-Jul-08	="Software"	09-Jun-08	08-Dec-08	38007.42	=""	="Pet Tech Pty Ltd"	01-Jul-08 02:10 PM	

+="CN95776"	"steamline quartarly modifications"	="Royal Australian Mint"	01-Jul-08	="Inventory management software"	18-Jun-08	18-Jun-08	37063.42	=""	="GEAC AUSTRALIA P/L"	01-Jul-08 02:25 PM	

+="CN67408"	"TM1 Software maintenance."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software maintenance and support"	23-Mar-08	22-Mar-09	38901.06	="06/ACMA101"	="Excelerated Consulting Pty Ltd"	01-Jul-08 02:42 PM	

+="CN95811"	"Guarding for ACC Sydney Office"	="Australian Crime Commission"	01-Jul-08	="National Defence and Public Order and Security and Safety Services"	01-Jun-08	30-Jun-08	32257.14	=""	="Chubb Security Aust P/L"	01-Jul-08 02:47 PM	

+="CN67363"	"Supply and install 10 workstations for ACMA Regional Office, Parramatta."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Workstations and office packages"	27-Mar-08	14-May-08	30899.00	=""	="Zenith Interiors (NSW) Pty Ltd"	01-Jul-08 03:46 PM	

+="CN95838"	"Supply of flat screen monitors"	="National Native Title Tribunal"	01-Jul-08	="Computer Equipment and Accessories"	31-Jul-07	12-May-08	30714.42	=""	="Dell Computer Ltd"	01-Jul-08 04:03 PM	

+="CN95865"	"UPPER ELEMENT, EYE PROTECTOR, EARTH STRAP"	="Defence Materiel Organisation"	02-Jul-08	="Electronic manufacturing machinery and equipment and accessories"	13-Jun-08	10-Jul-08	32471.36	=""	="SHAKESPEARE COMPANY LLC DBA SHAKESP"	02-Jul-08 08:37 AM	

+="CN95867"	"Produce DVD showing combat boots fitting (1 origin al + 500 copies)"	="Defence Materiel Organisation"	02-Jul-08	="Photographic services"	13-Jun-08	28-Jun-08	33550.00	=""	="SHERIDAN HOUSE AUSTRALIA PTY LTD"	02-Jul-08 08:37 AM	

+="CN95870"	"Uni-Directional Link Routing Study"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	13-Jun-08	31-Dec-08	37111.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 08:38 AM	

+="CN95928"	"GPS & NAVIGATION DISPLAY"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	12-Jun-08	15-Sep-08	36884.37	=""	="AERO DYNAMIX INC"	02-Jul-08 08:50 AM	

+="CN95931"	"Repair HUD S/N: 030 S&Q02/075"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	17-Jun-08	31175.10	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 08:51 AM	

+="CN95944"	"REPAIR ORDER FOR ACCESS DOOR"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	11-Jun-08	30-Jun-08	30915.00	=""	="HAWKER DE HAVILLAND"	02-Jul-08 08:53 AM	

+="CN95947"	"Overhaul BDS Cost Adjustment - PC9 RI Deeper Maintenance Contract No. 310148"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft master control systems"	11-Jun-08	30-Jun-08	31776.77	=""	="AIRFLITE PTY LTD"	02-Jul-08 08:54 AM	

+="CN95963"	"Valve Assembly"	="Defence Materiel Organisation"	02-Jul-08	="Military fixed wing aircraft"	12-Jun-08	02-Sep-08	36357.52	=""	="ADAMS RITE AEROSPACE INC"	02-Jul-08 08:57 AM	

+="CN95969"	"PROVIDE IT HARDWARE FOR ANZAC SPO FITOUT"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Jun-08	30-Sep-08	31262.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	02-Jul-08 08:59 AM	

+="CN95973-A1"	"Modifications to Launch Recovery Vehicle."	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	12-Jun-08	30-Jun-08	36580.26	=""	="RPC TECHNOLOGIES PTY LTD"	02-Jul-08 08:59 AM	

+="CN95974-A1"	"Modifications to Launch Recovery Vehicle."	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	12-Jun-08	30-Jun-08	33536.04	=""	="RPC TECHNOLOGIES PTY LTD"	02-Jul-08 08:59 AM	

+="CN95978"	"DIAMANTINA FAMP 02/08 CONDUCTED 1 - 19 SEPT 08"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Jun-08	30-Sep-08	38811.98	=""	="THALES AUSTRALIA"	02-Jul-08 09:00 AM	

+="CN95989"	"FITTING ASSY"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	01-Jun-09	35268.27	=""	="AGUSTAWESTLAND LTD"	02-Jul-08 09:02 AM	

+="CN96018"	"Data Dimension contract extension."	="Defence Materiel Organisation"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	31-Jul-08	35000.00	=""	="AIR FORCE HEADQUATERS"	02-Jul-08 09:08 AM	

+="CN96022"	"Replacement HP xw6600 Workstations"	="Defence Materiel Organisation"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	19-Jun-08	27-Jun-08	32637.00	=""	="DATA 3 GROUP"	02-Jul-08 09:09 AM	

+="CN96043-A1"	"Renewal of ESRI Software Maintenance"	="Defence Materiel Organisation"	02-Jul-08	="Software"	19-Jun-08	04-Jul-08	30647.10	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	02-Jul-08 09:14 AM	

+="CN96068"	"DMO STORAGE AND DISPOSAL FOR DEFENCE STAND"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	17-Jun-08	39131.42	=""	="PICO AUSTRALIA PTY LTD"	02-Jul-08 09:20 AM	

+="CN96070"	"Automatic Identification System for HMAS Sydney Rotation 20 (IMAV 24- July 2008)"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	17-Jun-08	30-Sep-08	37502.29	=""	="THALES AUSTRALIA"	02-Jul-08 09:20 AM	

+="CN96079"	"PILOT Training"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	23-Jun-08	30525.00	=""	="HELI CHARTERS AUSTRALIA"	02-Jul-08 09:23 AM	

+="CN96081"	"LCH Sewage Treatment Plant amendments to include Galley Grease Trap & Vent Line"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	17-Jun-08	30-Sep-08	30016.69	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:23 AM	

+="CN96086"	"PILOT FLYING TRAINING"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	23-Jun-08	30525.00	=""	="HELI CHARTERS AUSTRALIA"	02-Jul-08 09:24 AM	

+="CN96095"	"SPONSORSHIP FOR DMO TASK- 07-113"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	18-Jun-08	30-Jun-09	40000.00	=""	="DSTO"	02-Jul-08 09:26 AM	

+="CN96128"	"Supply of 5 CISCO Catalyst 3750 series switches"	="Defence Materiel Organisation"	02-Jul-08	="Electrical wire and cable and harness"	10-Jun-08	13-Jun-08	36448.50	=""	="KAZ GROUP PTY LTD"	02-Jul-08 09:33 AM	

+="CN96164"	"CSOT/PSOT CORRECTIVE MAINTENANCE"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-Jul-07	30-Jun-08	34728.05	=""	="THALES AUSTRALIA"	02-Jul-08 09:39 AM	

+="CN96199"	"MOAS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	30-Jun-10	32241.27	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 09:44 AM	

+="CN96219"	"REF PAYMENTS - EXTERNAL REPAIRS"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	06-Jun-08	30-Jun-16	39436.60	=""	="RAYTHEON AUSTRALIA PTY LTD"	02-Jul-08 09:47 AM	

+="CN96235"	"RESTRICTED HIGH - FLEET INFORMATION ENVIRONMENT - UPGRADE"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	30-Jun-09	31565.60	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:51 AM	

+="CN96237-A1"	"PROVISION OF EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	19-Dec-06	30-Jul-08	32935.09	=""	="NOVA DEFENCE"	02-Jul-08 09:51 AM	

+="CN96241"	"TD145 Rev2 & TD159 Rev1 - Continued Analysis & Upgrades to AP3C Data Management System"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	12-Nov-07	19-Jun-08	33177.50	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:51 AM	

+="CN96245"	"Technical Assistance with Design, Development and Delivery of a Simulation Device Facility"	="Defence Materiel Organisation"	02-Jul-08	="Building and Construction and Maintenance Services"	21-Mar-07	30-Dec-08	33814.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	02-Jul-08 09:52 AM	

+="CN96263-A2"	"MAINTENANCE SUPPORT CONTRACT - SITAWARE Software"	="Defence Materiel Organisation"	02-Jul-08	="Management support services"	01-Jul-06	26-Jun-09	30866.00	=""	="COMPUCAT RESEARCH PTY LTD"	02-Jul-08 09:55 AM	

+="CN96278"	"RECTIFY FWD & AFT MAN OVERBOARD DAVITS HMAS KANIMBLA"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	20-May-08	20-Jun-08	31675.06	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 09:58 AM	

+="CN96281"	"Printing"	="Department of the House of Representatives"	02-Jul-08	="Printed publications"	15-May-08	30-Jun-08	34914.00	=""	="Canprint Communications Pty Ltd"	02-Jul-08 09:59 AM	

+="CN96289"	"DIAMANTINA FAMP 01/08 (10-28 MARCH 2008)"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	25-Feb-08	28-Apr-08	32961.78	=""	="THALES AUSTRALIA"	02-Jul-08 10:00 AM	

+="CN96293"	"AMACCS Task backlog 05-0273"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	06-Jun-08	39356.96	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:00 AM	

+="CN96323"	"TOB SPRING CLEAN AND ZINC CHROMATE"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	10-Jun-08	10-Jun-08	33341.00	=""	="BLIGH APPOINTMENTS PTY LTD"	02-Jul-08 10:05 AM	

+="CN96325"	"Survey Motor Launch galley fire fighting system"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	18-Jun-08	30-Jun-08	35855.60	=""	="G A GLANVILLE & CO"	02-Jul-08 10:05 AM	

+="CN96340"	"CABLE ASSY"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	25-Jun-08	29-Dec-08	34679.14	=""	="LCF SYSTEMS INC"	02-Jul-08 10:07 AM	

+="CN96401"	"SEL Maintenance and Development Project Vendor Quote: ES-TXE-DMO-1002 dated 26Oct07"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	20-Jun-08	20-Jun-08	39706.22	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 10:15 AM	

+="CN96421"	"Provision of Temporary Employee"	="Questacon"	02-Jul-08	="Temporary personnel services"	20-May-08	31-Oct-08	30000.00	=""	="Frontier Group Australia Pty Ltd"	02-Jul-08 10:35 AM	

+="CN96426"	"Software procurement"	="Australian Securities and Investments Commission"	02-Jul-08	="Software"	06-Jun-08	06-Jun-08	36161.18	=""	="SouthTech Systems Pty Ltd"	02-Jul-08 10:56 AM	

+="CN96434"	"Repair of Black Hawk helicopter HydroMechanical Unit."	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	13-May-08	30-Jun-08	36795.94	=""	="Asia Pacific Aerospace"	02-Jul-08 11:37 AM	

+="CN96447"	"SAN Extended Maintenance 1/6/08 to 31/08/08"	="Australian Crime Commission"	02-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Jun-08	31-Aug-08	34716.00	=""	="EMC"	02-Jul-08 12:03 PM	

+="CN96472-A1"	"Recruitment Services"	="Centrelink"	02-Jul-08	="Human resources services"	26-Jun-08	30-Jun-08	35000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	02-Jul-08 12:20 PM	

+="CN96474"	"Courier services"	="Centrelink"	02-Jul-08	="Mail and cargo transport"	23-Jun-08	30-Jun-08	38999.98	=""	="Courier Australia"	02-Jul-08 12:20 PM	

+="CN96478"	"Computer Cabling"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	30-Jun-08	36436.40	=""	="Integrated Cabling Solutions Pty Ltd"	02-Jul-08 12:21 PM	

+="CN96493"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	25-Jun-08	30-Jun-09	35620.20	=""	="Stratsec.Net Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96526"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	06-Jun-08	06-Jun-08	30673.01	="APS COMMISSION 2005/014"	="CIT Solutions"	02-Jul-08 12:39 PM	

+="CN96529"	"Printing of ILS Books - EL-SES"	="Australian Public Service Commission"	02-Jul-08	="Published Products"	23-Jun-08	23-Jun-08	32131.00	=""	="Union Offset Co Pty Ltd"	02-Jul-08 12:39 PM	

+="CN96537"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	25-Jun-08	25-Jun-08	37070.00	="APS COMMISSION 2005/014"	="People and Strategy (ACT) Pty Ltd"	02-Jul-08 12:40 PM	

+="CN96544"	"IT Services"	="Australian Public Service Commission"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	24-Jun-08	30-Jun-08	34100.00	=""	="IPEX Information Tech. Group"	02-Jul-08 12:42 PM	

+="CN96551"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	10-Apr-08	21-Apr-08	31262.40	=""	="Peppers Manor House"	02-Jul-08 12:43 PM	

+="CN96568"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	35349.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:28 PM	

+="CN96578"	"supply of groceries brisbane"	="Department of Defence"	02-Jul-08	="Processed and prepared meats"	18-Jun-08	30-Jun-08	33000.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	02-Jul-08 01:29 PM	

+="CN96619"	"Undertake Fire Safety Surveys to various LIA facilities within the CNNSW Region for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	31239.85	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:32 PM	

+="CN96623"	"Computerized material cutter"	="Department of Defence"	02-Jul-08	="Industrial process machinery and equipment and supplies"	16-Jun-08	25-Jun-08	36300.00	=""	="ANTONS MOULDINGS PTY LTD"	02-Jul-08 01:32 PM	

+="CN96625"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	30470.00	=""	="OFFICEMAX AUSTRALIA LTD"	02-Jul-08 01:32 PM	

+="CN96647"	"FILTERING OF CADETNET BROADBAND SERVICE"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	20-Jun-08	35660.54	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Jul-08 01:35 PM	

+="CN96671"	"Antenna"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	20-Jun-08	30536.00	=""	="ROJONE PTY LTD"	02-Jul-08 01:37 PM	

+="CN96679"	"IBM SV Decider Server + Warrenty + Installation"	="Department of Defence"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	38269.00	=""	="IBM AUSTRALIA LTD"	02-Jul-08 01:37 PM	

+="CN96684"	"REASERVE QUESTIONNAIRE"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Jun-08	25-Jun-08	32483.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	02-Jul-08 01:38 PM	

+="CN96701"	"TOOLS"	="Department of Defence"	02-Jul-08	="Tools and General Machinery"	16-Jun-08	30-Jun-08	38592.93	=""	="SNAP ON TOOLS (AUST) PTY LTD"	02-Jul-08 01:39 PM	

+="CN96705"	"Cisco Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	01-Jul-08	37101.07	=""	="CERULEAN SOLUTIONS LTD"	02-Jul-08 01:40 PM	

+="CN96733"	"ACQUISITION - THE SPRINGS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-09	33000.00	=""	="UNITED GROUP SERVICES"	02-Jul-08 01:43 PM	

+="CN96738"	"Recruitment services"	="Department of Defence"	02-Jul-08	="Personnel recruitment"	25-Jun-08	30-Jun-08	32500.00	=""	="EFFECTIVE PEOPLE PTY LTD"	02-Jul-08 01:43 PM	

+="CN96753"	"Trialing a new approach for prioritisation of Capa bility Develepment DSTO requirements"	="Department of Defence"	02-Jul-08	="Laboratory and scientific equipment"	17-Jun-08	19-Jun-08	32298.08	=""	="CATALYZE LTD"	02-Jul-08 01:44 PM	

+="CN96763"	"Cyclone Larry Rectification Works TTA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	37696.45	=""	="SPOTLESS"	02-Jul-08 01:44 PM	

+="CN96767"	"2008-09 NATIONAL AIRFIELDS PROJECTS-PROBITY SERVIC"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	37000.00	=""	="SPARKE HELMORE SOLICITORS"	02-Jul-08 01:45 PM	

+="CN96769"	"MAINTENANCE OF MARRIED QUARTERS RANLO SINGAPORE FY2007/2008"	="Department of Defence"	02-Jul-08	="General building construction"	25-Jun-08	30-Jun-08	38750.50	=""	="BRIGHTWAY ENGINEERING"	02-Jul-08 01:45 PM	

+="CN96775"	"FFS PAYMENTS"	="Department of Defence"	02-Jul-08	="Medical facility products"	22-May-08	30-Jun-08	33000.00	=""	="NATIONAL CAPITAL DIAGNOSTIC"	02-Jul-08 01:45 PM	

+="CN96795"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	36151.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:46 PM	

+="CN96798"	"LCD MONITORS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	33023.76	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	02-Jul-08 01:47 PM	

+="CN96802"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	24-Jun-08	31-Jul-08	38720.00	=""	="ENVISTA PTY LTD"	02-Jul-08 01:47 PM	

+="CN96819"	"NQ1842 - CSI NQ Reticulate Irrigation System to 2"	="Department of Defence"	02-Jul-08	="Project management"	28-Jun-08	30-Jun-08	39061.55	=""	="SPOTLESS"	02-Jul-08 01:48 PM	

+="CN96839"	"Diploma of Business HR"	="Department of Defence"	02-Jul-08	="Office supplies"	17-Jun-08	17-Jun-08	32750.00	=""	="SWINBURNE UNIVERSITY OF"	02-Jul-08 01:49 PM	

+="CN96875"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	36036.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:51 PM	

+="CN96878"	"HP Design Jet Z6100 60" 8 Color Printer, Extended Warranty, Installation & Training, Color Ink C"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jun-08	20-Jun-08	39283.20	=""	="ULTIMATE DESIGN GRAPHICS PTY LTD"	02-Jul-08 01:51 PM	

+="CN96890"	"Telephone handsets"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	17-Jun-08	30-Jun-08	37730.00	=""	="INTERQUARTZ (A'ASIA) PTY LTD"	02-Jul-08 01:52 PM	

+="CN96931"	"NQ2015 - Construction of a new Workshop / Vehicle Store  &  Cylone Shelter at CB"	="Department of Defence"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Jun-08	30-Jun-08	34784.69	=""	="SPOTLESS"	02-Jul-08 01:55 PM	

+="CN96932"	"Vega to Vega Prime upgrade"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	20-Jun-08	36300.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:55 PM	

+="CN96938"	"Computer goods"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	20-Jun-08	36300.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:55 PM	

+="CN96967"	"Professional Service Provider"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	33000.01	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 01:57 PM	

+="CN96971"	"VEHICLE LEASE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	13-Jun-08	30-Jun-11	35661.39	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 01:57 PM	

+="CN96981"	"Web Host Media Monitoring Service"	="National Native Title Tribunal"	02-Jul-08	="Electronic newspapers"	01-Sep-07	25-Jun-08	33191.83	=""	="Media Monitors"	02-Jul-08 01:59 PM	

+="CN96994"	"DSTO EDINBURGH : COMBAT MISSION SYSTEMS RESEARCH C"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-09	37374.15	=""	="THINC PROJECTS (SA/NT) PTY LTD"	02-Jul-08 01:59 PM	

+="CN97007"	"Cisco Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	22-Jun-08	33966.29	=""	="CERULEAN SOLUTIONS LTD"	02-Jul-08 02:01 PM	

+="CN97035"	"Value based Purchase Order"	="Department of Defence"	02-Jul-08	="Meat and poultry products"	16-Jun-08	30-Jun-08	30000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	02-Jul-08 02:02 PM	

+="CN97042"	"Sharepoint Architect Services"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	10-Jun-08	30-Jun-08	35000.00	=""	="UNIQUE WORLD PTY LTD"	02-Jul-08 02:03 PM	

+="CN97055"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	31882.53	=""	="ST JOHNS COLLEGE"	02-Jul-08 02:04 PM	

+="CN97064"	"Cisco Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	31123.00	=""	="CERULEAN SOLUTIONS LTD"	02-Jul-08 02:04 PM	

+="CN97075"	"FP&E REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	06-Jun-08	30-Jun-08	32136.56	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:06 PM	

+="CN97079"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	24-Dec-08	31601.80	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:06 PM	

+="CN97085"	"STARSN PROJECT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	31694.07	=""	="PS MANAGEMENT CONSULTANTS"	02-Jul-08 02:07 PM	

+="CN97100"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Project management"	12-Nov-07	30-Jun-09	36826.97	=""	="FORTBURN PTY LTD"	02-Jul-08 02:08 PM	

+="CN97102"	"PROVISION OF MAINTENANCE SUPPORT FOR DEPARTMENT OF DEFENCE VOICEMAIL."	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	39139.12	=""	="ACTIVE VOICE LLC"	02-Jul-08 02:08 PM	

+="CN97107"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	12-Jun-08	30-Jun-09	33714.99	=""	="PHILLIPS FOX SYDNEY"	02-Jul-08 02:08 PM	

+="CN97124"	"Continuation of Systems Engineering Support to DSTO, MTL, HWIL Facility"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	27-Jun-08	30-Jun-08	39446.86	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 02:09 PM	

+="CN97132"	"TAXI FARES"	="Department of Defence"	02-Jul-08	="Passenger motor vehicles"	02-Jun-08	02-Jun-08	34343.90	=""	="CAB CHARGE AUST PTY LTD"	02-Jul-08 02:09 PM	

+="CN97136"	"PROVIDE PROFESSIONAL ADVICE & DELIVERY OF STABILISATION WORKS."	="Department of Defence"	02-Jul-08	="Environmental Services"	25-Jun-08	16-Jul-08	35615.00	=""	="GREENING AUSTRALIA NT INCORPORATED"	02-Jul-08 02:10 PM	

+="CN97137"	"The Procurement of Instructor Orientation course < Instructor course  ( SOPVET 2008-18)"	="Department of Defence"	02-Jul-08	="Medical training and education supplies"	13-Jun-08	31-Aug-08	32564.95	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	02-Jul-08 02:10 PM	

+="CN97139"	"Infrastructure Appraisal 07/08"	="Department of Defence"	02-Jul-08	="General building construction"	13-Jun-08	30-Jun-08	34661.00	=""	="RESOLVE FM"	02-Jul-08 02:10 PM	

+="CN97166"	"Printers"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	06-May-08	30-May-08	34650.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:11 PM	

+="CN97170"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	02-Jul-08	="Project management"	03-Jun-08	30-Jun-10	31908.00	=""	="MSA CONTINGENT ACCOUNT"	02-Jul-08 02:11 PM	

+="CN97171"	"CONSUMABLES FOR THE ANAPURNAS"	="Department of Defence"	02-Jul-08	="Paper Materials and Products"	13-Jun-08	16-Jun-08	34990.74	=""	="AGFA-GEVAERT LTD"	02-Jul-08 02:11 PM	

+="CN97181"	"Cables"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	02-May-08	29-May-08	33907.50	=""	="FLUKE AUSTRALIA PTY LTD"	02-Jul-08 02:12 PM	

+="CN97191"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Human resources services"	16-Jun-08	01-Aug-08	33169.80	=""	="DRAKE INTERNATIONAL"	02-Jul-08 02:13 PM	

+="CN97198"	"HUET TRG"	="Department of Defence"	02-Jul-08	="Air transportation support systems and equipment"	18-Jun-08	18-Jun-08	36521.10	=""	="CAREFLIGHT QUEENSLAND"	02-Jul-08 02:14 PM	

+="CN97222"	" Air ambulance transfer of patient from Honiara to Brisbane "	="Department of Defence"	02-Jul-08	="Air transportation support systems and equipment"	04-Jun-08	30-Jun-08	33350.00	=""	="CAREFLIGHT MEDICAL SERVICES LTD"	02-Jul-08 02:15 PM	

+="CN97235"	"Records Management support for WSD"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Jun-09	35189.15	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 02:16 PM	

+="CN97255"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Aug-08	33660.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	02-Jul-08 02:18 PM	

+="CN97263"	"SUSTAINABILITY - WATER EFFICIENCY"	="Department of Defence"	02-Jul-08	="Environmental management"	13-Jun-08	30-Jun-08	30245.60	=""	="PRIDE PLUMBING & GAS"	02-Jul-08 02:19 PM	

+="CN97272"	" Construction Stores "	="Department of Defence"	02-Jul-08	="Structural building products"	21-May-08	30-Jun-08	31243.20	=""	="BERRIMAH HARDWARE"	02-Jul-08 02:19 PM	

+="CN97279"	"COFFEE MACHINES AND CONSUMABLES SECTION 1 DFRC'S"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	13-Jun-08	30-Jun-08	31501.55	=""	="PERFECT COFFEE AT WORK"	02-Jul-08 02:20 PM	

+="CN97304"	"4040 - Fort Direction Weed management"	="Department of Defence"	02-Jul-08	="Fertilisers and plant nutrients and herbicides"	22-Feb-08	30-Jun-08	33000.00	=""	="RESOLVE FM"	02-Jul-08 02:21 PM	

+="CN97306"	"4039 - Derwent Barracks Weed management"	="Department of Defence"	02-Jul-08	="Earth and stone"	22-Feb-08	30-Jun-08	33000.00	=""	="RESOLVE FM"	02-Jul-08 02:21 PM	

+="CN97338"	"REGIONAL DEFCOMMSTA LEGISLATIVE REQUIREMENTS TO IMPLEMENT RECOVERY PLAN"	="Department of Defence"	02-Jul-08	="Project management"	17-Mar-08	30-Jun-09	35486.59	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	02-Jul-08 02:24 PM	

+="CN97353"	"REIMBURSEMENT camp costs"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	19-Jun-08	31831.25	=""	="BARKER COLLEGE"	02-Jul-08 02:25 PM	

+="CN97362"	"OFFICE FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	19-Jun-08	15-Jul-08	34811.70	=""	="WORKSPACE COMMERCIAL FURNITURE"	02-Jul-08 02:26 PM	

+="CN97391"	"Telecommunication Support Services"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	38647.28	=""	="TELSTRA BUSINESS SERVS & SOLUTIONS"	02-Jul-08 02:28 PM	

+="CN97395"	"RAAF Base WLM Redevelopment"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	34711.60	=""	="CARSON GROUP PTY LTD"	02-Jul-08 02:28 PM	

+="CN97396"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	01-Jul-09	39600.00	=""	="INFRONT SYSTEMS"	02-Jul-08 02:28 PM	

+="CN97404"	"THE ENABLING OF THE DFR MODEL IN ALBURY INCLUDES T AND ASSESS CANDIDATES. THE PURCHASE OF DCATS SYST"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	39160.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	02-Jul-08 02:28 PM	

+="CN97406"	"AN EIGHT PAGE FULL COLOUR INSERT FOR THE WEST AUST SHOWCASES DFR-PRODUCED CONTENT, WHICH WILL APPEAR"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	36355.00	=""	="WEST AUSTRALIAN NEWSPAPERS LTD"	02-Jul-08 02:29 PM	

+="CN97408"	"INDIGENOUS SITE PROTECTION WORKS"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	18-Dec-07	30-Jun-08	32450.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:29 PM	

+="CN97419"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-08	30571.20	=""	="WILDCARD INFORMATION SYSTEMS"	02-Jul-08 02:30 PM	

+="CN97476"	"Supply of Edak ruggerized transit case and cover for CIS Base-X lightweight accomodation"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	10-Jun-08	30-Jun-08	35321.00	=""	="ANITCOM"	02-Jul-08 02:35 PM	

+="CN97522"	"CERT IV IN INFORMATION TECHNOLOGY FOR 20 STAFF"	="Department of Defence"	02-Jul-08	="Educational institutions"	16-Jun-08	30-Jun-09	35000.02	=""	="BLENDED LEARNING INTERNATIONAL"	02-Jul-08 02:40 PM	

+="CN97542"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	11-Jul-08	36419.85	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:41 PM	

+="CN97548"	"Training Courses"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Jun-08	30-Jun-09	32230.00	=""	="RESULTS CONSULTING (AUSTRALIA)"	02-Jul-08 02:42 PM	

+="CN97553"	"Items for bundle Several DIERS - Site Integration"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	11-Jul-08	35835.80	=""	="COMPUTERCORP (LOGISTICS)"	02-Jul-08 02:43 PM	

+="CN97560"	"FAIRBAIRN-MAJURA LEASES - LAND SURVEY/CONFIRM LEAS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	33000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 02:43 PM	

+="CN97565"	"HQJOC C41 PROJECT - ELECTROMAGNETIC TESTING"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	33797.50	=""	="COMPUCAT RESEARCH PTY LTD"	02-Jul-08 02:44 PM	

+="CN97566"	"R&D OF C-BAND MAGNATRON TRANSMITTER"	="Department of Defence"	02-Jul-08	="Professional engineering services"	10-Jun-08	29-Aug-08	32600.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 02:44 PM	

+="CN97581"	"ALTIRIS SERVER"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	30-Jun-08	38914.57	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:46 PM	

+="CN97582"	"Design, Production, printing services"	="National Native Title Tribunal"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Aug-07	30-Jun-08	33462.00	=""	="Vanderveen Design Artwork Multimedia"	02-Jul-08 02:47 PM	

+="CN97589"	"INDUSTRY SAFETY BOAT"	="Department of Defence"	02-Jul-08	="Recreational watercraft"	11-Jun-08	30-Jun-08	32013.96	=""	="TOWNSVILLE MARINE"	02-Jul-08 02:47 PM	

+="CN97599"	"RACK MOUNTED DATACOMMS SYSTEM"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	11-Jun-08	30-Jun-09	39358.91	=""	="SERVER RACKS AUSTRALIA"	02-Jul-08 02:48 PM	

+="CN97606"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	38116.98	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:48 PM	

+="CN97620"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	32399.43	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:49 PM	

+="CN97640"	"Provide Support to the Operations Support Centre DSTO Edinburgh SA"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Dec-08	37333.45	=""	="ICON RECRUITMENT"	02-Jul-08 02:51 PM	

+="CN97642"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	39600.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:51 PM	

+="CN97649"	"Sun Ultra blades GB memory expansion"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	11-Jun-08	27-Jun-08	34970.98	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 02:52 PM	

+="CN97662"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	36211.13	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:53 PM	

+="CN97667"	"TRANSITION AIDE"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	11-Jun-08	30566.27	=""	="PUCKAPUNYAL PRIMARY SCHOOL"	02-Jul-08 02:53 PM	

+="CN97674"	"VEHICLE LEASE"	="Department of Defence"	02-Jul-08	="Motor vehicles"	17-Jun-08	30-Apr-10	34339.49	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 02:54 PM	

+="CN97679"	"Tandberg Edge95 HD 2Mbps IP"	="Department of Defence"	02-Jul-08	="Hardware"	11-Jun-08	30-Jun-08	38803.60	=""	="INTEGRATED VISION PTY LTD"	02-Jul-08 02:55 PM	

+="CN97685"	"supply of fresh meat brisbane"	="Department of Defence"	02-Jul-08	="Meat and poultry"	11-Jun-08	30-Jun-08	33000.00	=""	="TENDER PLUS PTY LTD"	02-Jul-08 02:55 PM	

+="CN97687"	"MEMBERSHIP FEES"	="Department of Defence"	02-Jul-08	="Organisations and Clubs"	11-Jun-08	30-Jun-08	33000.00	=""	="ENGINEERS AUSTRALIA"	02-Jul-08 02:55 PM	

+="CN97691"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	30-Jun-08	31000.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	02-Jul-08 02:56 PM	

+="CN97709"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	36822.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97733"	"PROVISION OF VEHUICLE REPAIR PARTS"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	02-Jul-08	16-Jul-08	35995.36	=""	="PREMIER AUTO GROUP"	02-Jul-08 03:03 PM	

+="CN97744"	"Monthly offsite ICT Security Tape Storage"	="National Native Title Tribunal"	02-Jul-08	="Automated storage or retrieval systems"	01-Jul-07	30-Jun-08	30739.61	=""	="Security Tape Management"	02-Jul-08 04:03 PM	

+="CN97745"	"Printed Promotional Products for NNTT"	="National Native Title Tribunal"	02-Jul-08	="Promotional merchandise"	01-Jul-07	30-Jun-08	30332.50	=""	="Proton Promotional Advertising"	02-Jul-08 04:11 PM	

+="CN97746"	"Artwork, Design and printing"	="National Native Title Tribunal"	02-Jul-08	="Printed publications"	01-Jul-07	30-Jun-08	39907.93	=""	="Marketforce"	02-Jul-08 04:25 PM	

+="CN97752"	"Indigenous Leadership Art Printing - Pencil Cases and Carrier-Sling Back"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	16-Jul-08	31713.00	=""	="National Promotions Australia Pty L"	02-Jul-08 04:42 PM	

+="CN97754"	"Boiler service & maintenance at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Capital Boiler and Burner Services"	02-Jul-08 04:42 PM	

+="CN97756"	"Painting Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Anasson Painting & Maintenance Pty"	02-Jul-08 04:43 PM	

+="CN97758"	"Property & Facilities Maintenance for TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="Right Now Office Renovation &"	02-Jul-08 04:43 PM	

+="CN97759"	"Minor office renovations and maintenance"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	30-Jun-09	30000.00	=""	="P&D Building Maintenance Pty Ltd"	02-Jul-08 04:43 PM	

+="CN97763"	"SM7 Initial Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	20-Jun-08	30-Jun-08	33770.00	=""	="Anadex Pty Ltd"	02-Jul-08 04:44 PM	

+="CN97764"	"plumbing services for top fm"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	20-Jun-08	30-Jun-09	30000.00	=""	="Macquarie Plumbing Service"	02-Jul-08 04:44 PM	

+="CN97773"	"Conference/Recall for GBM's"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	30000.00	=""	="Crowne Plaza Darwin"	02-Jul-08 04:45 PM	

+="CN97791"	"Accomodation for Chief of Staff NTER"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	25-Jun-08	05-Jan-09	30800.00	=""	="Darwin Rental Specialists"	02-Jul-08 04:49 PM	

+="CN97796"	"Supply, install and commission audio  visual equipment to Centraplaza Conference rooms"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Jun-08	08-Aug-08	30318.00	=""	="ServicePoint Australia Pty Ltd"	02-Jul-08 04:49 PM	

+="CN97798"	"consultation process advertising in rural & metrop olitan newspaper"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	26-Jun-08	30-Jun-08	36000.00	=""	="HMA Blaze Pty Limited"	02-Jul-08 04:50 PM	

+="CN97807"	"Consultantcy Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	31-Jul-08	40000.00	="SON: 189"	="Access Economics"	02-Jul-08 04:51 PM	

+="CN97809"	"NAIDOC Website"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	23-Jun-08	33000.00	=""	="MA@D COMMUNICATION"	02-Jul-08 04:51 PM	

+="CN97812"	"Final payment NTER initiatives &services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	23-Jun-08	30-Jun-08	38000.00	=""	="Centrelink"	02-Jul-08 04:51 PM	

+="CN97813"	"2008 Good Health - Good future program for families group."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	23-Jun-08	30-Jun-08	38445.00	=""	="Health Futures Pty Ltd"	02-Jul-08 04:52 PM	

+="CN97823"	"Senior Executive Leadership Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	38775.00	=""	="AUST PUBLIC SERVICE COMMISSION"	02-Jul-08 04:53 PM	

+="CN97837"	"Good Health-Good Furture Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	06-Jun-08	06-Jun-08	37801.50	=""	="Health Futures Pty Ltd"	02-Jul-08 04:55 PM	

+="CN97853"	"Compiling Publishing Material and Support Resource Disability Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Published Products"	02-Jun-08	30-Jun-08	33209.00	=""	="INPRINT DESIGN"	02-Jul-08 04:57 PM	

+="CN97862"	"Facilitation of group training course"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	03-Jun-08	06-Jun-08	30500.00	=""	="West Wood Spice"	02-Jul-08 04:59 PM	

+="CN97872"	"Recruitment of  APS5 Contract Manager"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Human resources services"	17-Jun-08	26-Sep-08	39979.00	="SON: 72874"	="Hays Specialist Recruitment"	02-Jul-08 05:00 PM	

+="CN97885"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Software"	18-Jun-08	30-Jun-09	35517.78	=""	="KAZ GROUP PTY LTD"	02-Jul-08 05:02 PM	

+="CN97888"	"Children's books for distribution to participants Longitudinal Survey of Indigenous Children"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Paper materials"	18-Jun-08	31-Jul-08	35000.00	=""	="Gleebooks bookshop"	02-Jul-08 05:03 PM	

+="CN97895"	"CCU data development fee/expenses."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	12-Jun-08	31600.00	=""	="PEOPLEBANK"	02-Jul-08 05:04 PM	

+="CN97910"	"Printing and Project management fact sheets, envelopes, brochures and Mediation Fact sheets"	="National Native Title Tribunal"	02-Jul-08	="Printed publications"	13-Aug-07	27-May-08	39871.59	=""	="Breakthrough Corporation"	02-Jul-08 05:18 PM	

+="CN97920-A1"	"Rural Agent - Centrelink Agent Services"	="Centrelink"	03-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	37365.20	=""	="YNH Services Inc"	03-Jul-08 08:33 AM	

+="CN97937"	"Undertake research relating to the review of the EMDG Scheme"	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	30-May-08	36400.00	=""	="Silkmont Pty Ltd"	03-Jul-08 09:33 AM	

+="CN97939"	"Provision of online recordkeeping program."	="Austrade"	03-Jul-08	="Online database information retrieval systems"	14-Apr-08	31-Dec-08	33000.00	=""	="Evolve Studios Pty Ltd"	03-Jul-08 09:34 AM	

+="CN97951"	"W/O-36777 WALLY FIRE TRUCK ARN-990553"	="Department of Defence"	03-Jul-08	="Motor vehicles"	03-Jul-08	26-Sep-08	35411.45	=""	="RGM MAINTENANCE"	03-Jul-08 09:59 AM	

+="CN97962"	"Project Management Workshop - for Client Contact"	="Australian Taxation Office"	03-Jul-08	="Education and Training Services"	26-Jun-08	30-Jun-08	30000.00	=""	="KEPNER-TREGOE AUSTRALASIA PTY"	03-Jul-08 10:30 AM	

+="CN97968"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	25-Jun-08	03-Jul-08	35200.00	=""	="SPECTRUMTECH PTY LTD"	03-Jul-08 10:31 AM	

+="CN97971"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	23-Jun-08	22-Sep-08	35904.00	="RFT 018-2008"	="TALENT INTERNATIONAL"	03-Jul-08 10:31 AM	

+="CN98010-A1"	"Stakeholder Survey Research Services"	="Australian Fair Pay Commission"	03-Jul-08	="Market research"	14-May-08	15-Aug-08	33990.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	03-Jul-08 11:19 AM	

+="CN98067"	"P/N: BEAMS TKT: 08140417760120 R/N: Not Supplied EXCESS BAGGAGE ONO: 332281-21300 GWT: 0793-16860"	="Department of Defence"	03-Jul-08	="Aircraft"	01-May-08	01-May-08	39832.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:10 PM	

+="CN98088"	"AIR TRANSPORT IN SUPPORT OF OPERATION AZURE"	="Department of Defence"	03-Jul-08	="Aircraft"	13-May-08	11-Jun-08	34020.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98101"	"STUBBINGS - 50TH ANNIVERSARY RAAF BUTTERWORTH"	="Department of Defence"	03-Jul-08	="Travel and Food and Lodging and Entertainment Services"	27-May-08	27-May-08	31142.65	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:15 PM	

+="CN98115"	"RAN BAND airfares TONGA 21 Jul - 04 Aug 08"	="Department of Defence"	03-Jul-08	="Travel facilitation"	05-Jun-08	05-Jun-08	36828.00	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:17 PM	

+="CN98130"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	04-Mar-08	30-May-08	33156.61	=""	="THE NAUTILUS"	03-Jul-08 02:19 PM	

+="CN98141"	"26/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	22-Apr-08	31-May-08	36171.31	=""	="HOLY SPIRIT NORTHSIDE"	03-Jul-08 02:21 PM	

+="CN98142"	"22/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	23-Apr-08	31-May-08	35990.00	=""	="SOUTHERNEX IMAGING GROUP"	03-Jul-08 02:21 PM	

+="CN98157"	"08/044 - 15x Toshiba Tecra A9 Laptops"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	30-Apr-08	30-Apr-08	31499.99	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:24 PM	

+="CN98193"	"OBG(W)-4 PURCHASE OF BAGS FOR DIIAC"	="Department of Defence"	03-Jul-08	="Fabrics and leather materials"	09-May-08	09-May-08	37008.96	=""	="ROSETRUNK.COM"	03-Jul-08 02:28 PM	

+="CN98232"	"Accom ACSC OST Singapore 2008"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	18-May-08	18-May-08	31061.18	=""	="THE REGENT SINGAPORE"	03-Jul-08 02:33 PM	

+="CN98253"	"08/048 -  20x Fujitsu FI-5020-VP Scanners"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	34258.00	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:36 PM	

+="CN98315"	"Fieldcraft Equipment 3WG AAFC"	="Department of Defence"	03-Jul-08	="Camping and outdoor equipment and accessories"	17-Jun-08	17-Jun-08	38429.64	=""	="NE GREAT OUTDOORS CT"	03-Jul-08 02:45 PM	

+="CN98322"	"25 Laptop Computers for Australian Air Force Cadets"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	19-Jun-08	32685.00	=""	="THE GOOD GUYS TUGGERANONG"	03-Jul-08 02:46 PM	

+="CN98325"	"Engineers cse 5 2008 Prin of Surveillance & Tech"	="Department of Defence"	03-Jul-08	="Educational institutions"	19-Jun-08	19-Jun-08	38001.60	=""	="UNSW ADFA"	03-Jul-08 02:46 PM	

+="CN98363"	"HOSTELS. CREW ACCOMMODOATION."	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	26-Jun-08	04-Jul-08	39235.00	=""	="THE GRAND APARTMENTS"	03-Jul-08 02:53 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val40000to60000.xls
@@ -1,1 +1,280 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95611"	"LAGs hotline staffing"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	07-Jan-08	30-Jun-08	40770.99	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	01-Jul-08 10:05 AM	

+="CN95614"	"Collective Resources - IT staffing services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	30-Sep-08	48642.00	="TRS06/017"	="Collective Resources IT Recruitment"	01-Jul-08 10:06 AM	

+="CN95615"	"Provision of analysis of specified fuel"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Professional engineering services"	28-May-08	30-Jun-08	57805.00	=""	="Orbital Australia Pty Ltd"	01-Jul-08 10:06 AM	

+="CN95629"	"Contractor Services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	30-Sep-08	44017.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:08 AM	

+="CN95630"	"Contractor Services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	31-Oct-08	58823.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:09 AM	

+="CN95636"	"Landside vehicle parking - Hobart Landside vehicle parking - Hobart"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Transport operations"	01-Jul-06	30-Jun-08	40538.30	=""	="Hobart International Airport P/L"	01-Jul-08 10:09 AM	

+="CN95649"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	55000.00	="T2004/0699"	="SMS Consulting Group Ltd"	01-Jul-08 10:13 AM	

+="CN95652"	"SHAREPOINT DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	55000.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:14 AM	

+="CN95654"	"ESRI Software Annual maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	57337.50	=""	="ESRI Australia Pty Ltd"	01-Jul-08 10:15 AM	

+="CN95656"	"Rent of office space Jakarta"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Public administration and finance services"	01-Jul-08	30-Jun-09	40591.21	=""	="UNITED GROUP PROCESS SOLUTIONS PTY"	01-Jul-08 10:15 AM	

+="CN95666-A2"	"IT Specialist - ECM VMWARE Consultant"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary information technology software developers"	10-Mar-08	01-Jun-08	56595.00	=""	="Fujitsu Australia Limited"	01-Jul-08 10:47 AM	

+="CN95686"	"Remedial Work on the analogue retransmission facility in Wye River (vic)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	31-Aug-08	53958.30	="ATM08/01089"	="Broadcast Australia"	01-Jul-08 11:14 AM	

+="CN95689"	"printing"	="Royal Australian Mint"	01-Jul-08	="Printed media"	02-Jun-08	15-Sep-08	42132.20	=""	="RODENPRINT P/ L"	01-Jul-08 11:15 AM	

+="CN95702-A1"	"Microsoft Project Licenses"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	02-Jul-08	30-Jun-09	55688.28	="ATM08/1069"	="DATA#3 Limited"	01-Jul-08 11:17 AM	

+="CN95710"	"DocImage Disaster Recovery Detailed Design Support Services"	="Australian Securities and Investments Commission"	01-Jul-08	="Computer services"	19-Feb-08	27-May-08	44000.00	=""	="Global 360 Pty Ltd"	01-Jul-08 11:23 AM	

+="CN95713-A1"	"IT Specialist - Senior DB2 Database Administrator professional services"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary information technology systems or database administrators"	26-Nov-07	29-Feb-08	59818.00	=""	="CPT Global Limited"	01-Jul-08 11:44 AM	

+="CN95723-A1"	"IT Specialist"	="Australian Securities and Investments Commission"	01-Jul-08	="Personnel recruitment"	26-Nov-07	29-Feb-08	52272.00	=""	="Oakton Services Pty Ltd"	01-Jul-08 12:30 PM	

+="CN95732"	"Project Manager Video conferencing"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Sep-08	58080.00	="06/114-05"	="Versossity Pty Ltd"	01-Jul-08 12:54 PM	

+="CN95735"	" REPAIR FLAP "	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	29-Oct-08	55000.00	=""	="Boeing Australia"	01-Jul-08 01:02 PM	

+="CN95755"	"Provision of on line data access licence"	="Department of Parliamentary Services"	01-Jul-08	="Remote database information retrieval services"	10-Jun-08	30-Jun-08	49500.00	=""	="Macmillan Distribution Services"	01-Jul-08 01:41 PM	

+="CN95785"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	45870.00	="DFAT07-DID-004"	="ICON RECRUITMENT PTY LTD"	01-Jul-08 02:35 PM	

+="CN67406"	"Extension of Contractor for Do Not Call Service. Contract extended to 12 March 2008 , additional funding of $5000.00"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	17-Dec-07	12-Mar-08	45000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	01-Jul-08 02:44 PM	

+="CN67357"	"Quarterly maintainence support for CHIRPLUS Broadcast Planning System"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business function specific software"	23-Mar-08	22-Jun-08	43455.00	=""	="Rhode and Schwartz (Aust) Pty Ltd"	01-Jul-08 03:03 PM	

+="CN95817"	"AFP Training Courses Jul08 - Jun09"	="Australian Crime Commission"	01-Jul-08	="Vocational training"	01-Jul-08	30-Jun-09	50000.01	=""	="Australian Federal Police"	01-Jul-08 03:05 PM	

+="CN95823"	"Antenna Site Rental"	="Australian Crime Commission"	01-Jul-08	="Commercial or industrial facility rental"	01-Jul-08	30-Jun-09	45013.06	=""	="Vertical Telecoms P/L"	01-Jul-08 03:14 PM	

+="CN95173"	"Contractor"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	07-May-08	11-Sep-08	47000.00	="05/ACMA"	="Hays Personnel Services (Australai) Pty Ltd"	01-Jul-08 04:29 PM	

+="CN95153-A1"	"Contractor"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	25-Feb-08	16-Nov-08	52109.40	="BSB2006-11"	="Zenith Management Services Group Pty Ltd"	01-Jul-08 04:35 PM	

+="CN94834"	"Renewal of Trim Software License"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software"	01-Jul-08	30-Jun-09	59516.36	=""	="Alphawest Services Pty Ltd"	01-Jul-08 04:40 PM	

+="CN95882"	"Ford Falcon XL Ute (US) Qty 2"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	05-Dec-08	46621.06	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:41 AM	

+="CN95895-A2"	"    Engineering support for C130    "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	16-Jun-08	15-Jun-09	50145.02	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 08:44 AM	

+="CN95902"	"FUNDING FOR THE SUPPLY OF LABOUR AND SUPPLIES ASSCOCIATED WITH THE ALTERATION OF ROOM 73 AT OTHRSPO"	="Defence Materiel Organisation"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	31-Oct-08	43609.50	=""	="COMPUTER SITE SOLUTIONS PTY LTD"	02-Jul-08 08:45 AM	

+="CN95916"	"BAE Quotation L08-009a:dja 18/4/08 Spares for ATE"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	30-Oct-08	49505.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 08:48 AM	

+="CN95929"	"Army Spares"	="Defence Materiel Organisation"	02-Jul-08	="Arms and ammunition accessories"	12-Jun-08	01-Oct-08	42095.72	=""	="HECKLER & KOCH GMBH"	02-Jul-08 08:50 AM	

+="CN95932"	"Repair HUD S/N: 030 S&Q02/082"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	17-Jun-08	46426.60	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 08:51 AM	

+="CN95940"	"REDEVELOP DAY 3 OF OPP COURSE"	="Defence Materiel Organisation"	02-Jul-08	="Medical training and education supplies"	11-Jun-08	30-Jun-08	47465.00	=""	="DEAKINPRIME"	02-Jul-08 08:52 AM	

+="CN95967"	"HMAS MANOORA - INSTALL ENGINEROOM CCTV"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	12-Jun-08	26-Jun-08	57763.46	=""	="WESTERN ADVANCE PTY LTD"	02-Jul-08 08:58 AM	

+="CN95972"	"Repair HUD S/N: 035 S&Q02/086"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	17-Jun-08	43500.60	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 08:59 AM	

+="CN95975-A1"	"Modifications to Launch Recovery Vehicle."	="Defence Materiel Organisation"	02-Jul-08	="Truck tractors"	12-Jun-08	30-Jun-08	43624.79	=""	="RPC TECHNOLOGIES PTY LTD"	02-Jul-08 09:00 AM	

+="CN95987"	"CLUTCH"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	01-Nov-08	40936.51	=""	="GOODRICH ENGINE CONTROL SYSTEMS"	02-Jul-08 09:02 AM	

+="CN96004"	"ENGAGE UNDERWATER VIDEO SYSTEMS TO PROVIDE SUPPORT FOR THE INSTALLATION OF THE RON CAMERA SYSTEM INT"	="Defence Materiel Organisation"	02-Jul-08	="Tools and General Machinery"	18-Jun-08	30-Jun-08	40789.93	=""	="RAYTHEON AUSTRALIA PTY LTD"	02-Jul-08 09:05 AM	

+="CN96009"	"P3 Accord Web Services (PAWS) Upgrade Gateway & Scaler"	="Defence Materiel Organisation"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	18-Jun-08	27-Jun-08	40934.30	=""	="DATA 3 GROUP"	02-Jul-08 09:06 AM	

+="CN96016"	"SDSS IT Controls Framework testing"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	18-Jun-08	30-Jun-08	47767.50	=""	="ERNST & YOUNG"	02-Jul-08 09:08 AM	

+="CN96023"	"Repair of damaged Engine sn: 7511"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	24-Jun-08	44858.00	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:09 AM	

+="CN96033-A1"	"     Purchase of QTY 12 Bracket,JPADS PN AM08005-1, QTY 24 of 25000lb Rack Shelf    PN AM08033-1, QTY 8 Shelf Assy PN AM08035-1, QTY 6 Shelf Assy PN AM08004-1 plus freight for JPADS.     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	19-Jun-08	11-Sep-09	54770.41	=""	="AMCE PTY LTD"	02-Jul-08 09:12 AM	

+="CN96034"	"Engineering Framework Creation for Sustainment of Ap-3C Orion High Capacity Cargo Panniers"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	19-Jun-08	31-Aug-08	55152.96	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:12 AM	

+="CN96040"	"PIRR LIGHTNING DEVICES"	="Defence Materiel Organisation"	02-Jul-08	="Electrical equipment and components and supplies"	19-Jun-08	19-Jun-08	52074.74	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 09:14 AM	

+="CN96047"	"Computer equipment"	="Defence Materiel Organisation"	02-Jul-08	="Electrical equipment and components and supplies"	19-Jun-08	30-Jun-08	50465.73	=""	="ARION SYSTEMS PTY LTD"	02-Jul-08 09:16 AM	

+="CN96049"	"DSTO Overseas Officer"	="Defence Materiel Organisation"	02-Jul-08	="Material handling machinery and equipment"	19-Jun-08	30-Jun-09	55250.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:16 AM	

+="CN96055"	"Travel and associated costs for Technical Advisors Recall 2008 held 23-24 June 2008 at the Australia"	="Defence Materiel Organisation"	02-Jul-08	="Commercial marine craft"	19-Jun-08	30-Jun-08	54000.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:18 AM	

+="CN96069"	"Test Analyst"	="Australian Securities and Investments Commission"	02-Jul-08	="Information technology consultation services"	14-Feb-08	16-May-08	41536.00	=""	="Rubio Recruitment"	02-Jul-08 09:21 AM	

+="CN96076"	"Provision of Contract change"	="Defence Materiel Organisation"	02-Jul-08	="Audio and visual presentation and composing equipment"	16-Jun-08	12-Dec-08	46538.94	=""	="ROSS HUMAN DIRECTIONS"	02-Jul-08 09:22 AM	

+="CN96085"	"Test Analyst"	="Australian Securities and Investments Commission"	02-Jul-08	="Information technology consultation services"	03-Mar-08	13-Jun-08	45936.00	=""	="Candle Australia"	02-Jul-08 09:25 AM	

+="CN96095"	"SPONSORSHIP FOR DMO TASK- 07-113"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	18-Jun-08	30-Jun-09	40000.00	=""	="DSTO"	02-Jul-08 09:26 AM	

+="CN96096-A1"	"Asset Management and Planning System (AMPS) software upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Software or hardware engineering"	18-Jun-08	31-Jul-08	54565.50	=""	="EDEN TECHNOLOGY PTY LTD"	02-Jul-08 09:26 AM	

+="CN96102"	"Interactive whiteboards"	="Defence Materiel Organisation"	02-Jul-08	="Office machines and their supplies and accessories"	18-Jun-08	23-Jun-08	49837.83	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	02-Jul-08 09:28 AM	

+="CN96105"	"Repair of damaged windscreen, S&Q02/081"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	24-Jun-08	58505.30	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:29 AM	

+="CN96107"	"Repair of damaged windscreen, S&Q02/083"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	24-Jun-08	59866.10	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:29 AM	

+="CN96115"	"Radio, Remote Communication System Components"	="Defence Materiel Organisation"	02-Jul-08	="Electronic manufacturing machinery and equipment and accessories"	18-Jun-08	31-Jan-09	54466.33	=""	="HARRIS CORPORATION DBA HARRIS RF CO"	02-Jul-08 09:31 AM	

+="CN96120"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	02-Jul-08	="Computer services"	03-Mar-08	27-Jun-08	48906.00	=""	="Candle Australia"	02-Jul-08 09:33 AM	

+="CN96127"	"Integration of NDS into Landing Craft Heavy (LCH)"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	18-Jun-08	30-Jun-08	55722.43	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:33 AM	

+="CN96150"	"compressed air system condensate drain system"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	19-Dec-07	19-Dec-07	57211.62	=""	="AIMTEK PTY LTD"	02-Jul-08 09:36 AM	

+="CN96151"	"Contract for the provision of Information Technology Services"	="Australian Securities and Investments Commission"	02-Jul-08	="Computer services"	19-Nov-07	29-Feb-08	44402.00	=""	="Candle Australia"	02-Jul-08 09:38 AM	

+="CN96160"	"COMMS Switching & Routing Network Support Services"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	30-May-07	31-Jul-09	44962.50	=""	="PS MANAGEMENT CONSULTANTS"	02-Jul-08 09:38 AM	

+="CN96168"	"Provision of software support services to the Air Warfare Systems Centre"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	26-Jun-08	30-Jun-08	57806.03	=""	="CSC AUSTRALIA PTY LTD"	02-Jul-08 09:40 AM	

+="CN96196"	"Administrative and Freight Costs for AAS"	="Defence Materiel Organisation"	02-Jul-08	="Transportation components and systems"	12-Nov-07	30-Jun-09	56278.45	=""	="DEFENCE LIAISON SERVICES PTY LTD"	02-Jul-08 09:44 AM	

+="CN96197"	"Requirements Development Services"	="Defence Materiel Organisation"	02-Jul-08	="Building and Construction and Maintenance Services"	27-Jul-07	18-Dec-08	49584.85	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 09:44 AM	

+="CN96194"	"Test Analyst"	="Australian Securities and Investments Commission"	02-Jul-08	="Information technology consultation services"	03-Dec-07	28-Mar-08	49720.00	=""	="Talent2 Pty Ltd"	02-Jul-08 09:44 AM	

+="CN96205"	"BALLISTIC TESTING OF BODY ARMOUR"	="Defence Materiel Organisation"	02-Jul-08	="Clothing"	15-Jul-05	29-Oct-08	49500.00	=""	="BALLISTIC AND MECHANICAL TESTING"	02-Jul-08 09:45 AM	

+="CN96207"	"TACAN DM LOGISITICS SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	02-Jun-08	30-Jun-09	49568.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:45 AM	

+="CN96222"	"GST on Foreign Exchange Payment"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	30-May-08	30-Jun-08	56444.99	=""	="MATHER ROACH CONSULTING PTY LTD"	02-Jul-08 09:48 AM	

+="CN96232"	"OAKEY AIR TRAFFIC CONTROL TOWER MAINTENANCE CONTRA"	="Defence Materiel Organisation"	02-Jul-08	="Surveillance and detection equipment"	29-May-08	21-Jul-08	42395.08	=""	="AIRSERVICES AUSTRALIA"	02-Jul-08 09:50 AM	

+="CN96246"	"Leased line"	="Defence Materiel Organisation"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	12-Apr-07	22-Sep-08	50784.08	=""	="TELSTRA BILLING"	02-Jul-08 09:52 AM	

+="CN96253"	"COMMUNICATION REFERENCE SET"	="Defence Materiel Organisation"	02-Jul-08	="Spaceships"	12-Nov-07	30-Dec-08	43640.18	=""	="THALES AUSTRALIA"	02-Jul-08 09:54 AM	

+="CN96254"	"Engineering and Tooling"	="Defence Materiel Organisation"	02-Jul-08	="Flight communications related systems"	12-Nov-07	31-Aug-08	54516.00	=""	="THOMAS ELECTRONICS OF"	02-Jul-08 09:54 AM	

+="CN96296"	"AMACCS Task backlog 02-2650"	="Defence Materiel Organisation"	02-Jul-08	="Air transportation support systems and equipment"	08-May-08	06-Jun-08	44805.94	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:01 AM	

+="CN96299"	"Echo sounder and heave compensator"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	18-Jun-08	30-Jun-08	56428.35	=""	="G A GLANVILLE & CO"	02-Jul-08 10:01 AM	

+="CN96321"	"phone and electricity during hmas melville maintenance period 29"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	04-Jun-08	30-Jun-08	41800.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	02-Jul-08 10:04 AM	

+="CN96352"	"PROCUREMENT OF QUANTITY 39 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	09-May-08	09-May-08	42130.78	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 10:09 AM	

+="CN96365"	"PROFESSIONAL FEES"	="Defence Materiel Organisation"	02-Jul-08	="Legal services"	25-Jun-08	30-Jun-08	53942.65	=""	="BLAKE DAWSON WALDRON"	02-Jul-08 10:10 AM	

+="CN96369"	"RP-A Upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	31-Oct-07	31-Mar-08	41904.73	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 10:11 AM	

+="CN96379"	"PsP support for the management of Asbestos items"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	01-Jun-08	31-Aug-08	59928.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	02-Jul-08 10:12 AM	

+="CN96402"	"KANIMBLA PURIFIER URDEF"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	04-Jan-08	04-Feb-08	50980.07	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	02-Jul-08 10:15 AM	

+="CN96406"	"Use of Exisitng ASP Contract.5 Year Spares"	="Defence Materiel Organisation"	02-Jul-08	="Safety and rescue vehicles"	30-May-08	10-Nov-08	55196.78	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 10:16 AM	

+="CN96407"	"Professional Service Provider"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	24-Jun-08	30-Jun-08	59850.01	=""	="KPMG"	02-Jul-08 10:16 AM	

+="CN96428"	"Comms Licence Renewal"	="Australian Crime Commission"	02-Jul-08	="Proprietary or licensed systems maintenance or support"	08-Jun-08	07-Jun-09	45057.00	=""	="Australian Comms & Media Authority"	02-Jul-08 11:07 AM	

+="CN96432"	"Centrelink Agent - St George, QLD"	="Centrelink"	02-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	46492.78	=""	="St George Aboriginal Housing Company Limited"	02-Jul-08 11:24 AM	

+="CN96455"	"Supply of venue, food and beverages for 350 paying guests to the ASIC Summer School 2008 on 19 February 2008 at the National Gallery of Victoria Great Hall"	="Australian Securities and Investments Commission"	02-Jul-08	="Catering services"	19-Feb-08	19-Feb-08	56165.00	=""	="Peter Rowland Catering at NGVI St Kilda"	02-Jul-08 12:17 PM	

+="CN96462"	"Fitout Construction - Launceston, TAS"	="Centrelink"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-May-08	06-Jun-08	40874.90	=""	="Vos Construction and Joinery"	02-Jul-08 12:18 PM	

+="CN96463"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	19-May-08	05-Sep-08	48048.00	="RFTS07/0129"	="HiTech Personnel"	02-Jul-08 12:18 PM	

+="CN96470"	"Optical surveillance services"	="Centrelink"	02-Jul-08	="Security surveillance and detection"	05-Jun-08	30-Jun-08	41000.00	="RFTS06/0560"	="M and A Investigations"	02-Jul-08 12:19 PM	

+="CN96479"	"Surveillance services, Western Australia"	="Centrelink"	02-Jul-08	="Security surveillance and detection"	12-May-08	30-Jun-08	49262.75	=""	="Verifact (WA) Pty Ltd"	02-Jul-08 12:21 PM	

+="CN96533-A1"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	24-Jun-08	24-Jun-08	44000.00	="APS COMMISSION 2005/014"	="LECG LTD"	02-Jul-08 12:40 PM	

+="CN96534"	"Venue Hire and accommodation for 2008 GBC"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	24-Jun-08	24-Jun-08	42172.90	=""	="Gold Coast International Hotel"	02-Jul-08 12:40 PM	

+="CN96541"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	10-Jun-08	30-Jun-08	47997.77	="APS COMMISSION 2005/014"	="People and Strategy (ACT) Pty Ltd"	02-Jul-08 12:41 PM	

+="CN96548"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	28-Apr-08	30-Jun-08	53130.00	="APS COMMISSION 2005/014"	="Results Consulting (Aust) Pty Ltd"	02-Jul-08 12:43 PM	

+="CN96550"	"Training delivery"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	03-Mar-08	17-Oct-08	57257.22	="APS COMMISSION 2005/014"	="Dominic Downie & Associates"	02-Jul-08 12:43 PM	

+="CN96552"	"Delivery of Training"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	16-Apr-08	30-Jun-08	57040.01	="APS COMMISSION 2005/014"	="PALM Consulting Group Pty Ltd"	02-Jul-08 12:44 PM	

+="CN96572"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	56100.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:28 PM	

+="CN96575"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	40851.03	=""	="FRONTLINE SYSTEMS AUSTRALIA"	02-Jul-08 01:28 PM	

+="CN96587"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	40851.03	=""	="FRONTLINE SYSTEMS AUSTRALIA"	02-Jul-08 01:29 PM	

+="CN96591"	"FP & EM Replacement of Airfield Lighting Spares at RAAF Base Williamtown for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	44999.90	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:30 PM	

+="CN96599"	"Red Hat Management Module"	="Department of Defence"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	55866.56	=""	="RED HAT ASIA-PACIFIC PTY LTD"	02-Jul-08 01:30 PM	

+="CN96600"	"PROVISION OF MEALS FOR NEWLY ENLISTED ADF RECRUITS TRAVELLING BETWEEN DFR & INITIAL RTC"	="Department of Defence"	02-Jul-08	="Food and Beverage Products"	18-Jun-08	30-Jun-09	49500.00	=""	="CALTEX  AVENEL"	02-Jul-08 01:30 PM	

+="CN96601"	"TRAINING"	="Department of Defence"	02-Jul-08	="Medical training and education supplies"	16-Jun-08	03-Sep-08	53742.40	=""	="BAYLEY AND ASSOCIATES PTY LTD"	02-Jul-08 01:31 PM	

+="CN96606"	"Review fresh rations function"	="Department of Defence"	02-Jul-08	="Management support services"	18-Jun-08	30-Jun-09	49500.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	02-Jul-08 01:31 PM	

+="CN96611"	"DOSC support under standing offer"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	31-Mar-09	54465.84	=""	="BLUE SWIMMER CONSULTING"	02-Jul-08 01:32 PM	

+="CN96613"	"ACCOUNT NO.8268008 - REGISTRY POSTAL SERVICES FOR LAVARACK BARRACKS"	="Department of Defence"	02-Jul-08	="Mailing services"	16-Jun-08	30-Jun-09	47500.00	=""	="AUSTRALIA POST"	02-Jul-08 01:32 PM	

+="CN96676"	"Scanners"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	42449.17	=""	="CORPORATE EXPRESS AUSTRALIA"	02-Jul-08 01:37 PM	

+="CN96682"	"Evaluation of GEWM for NQld Base Service tender"	="Department of Defence"	02-Jul-08	="Management support services"	18-Jun-08	30-Jun-09	41500.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	02-Jul-08 01:38 PM	

+="CN96691"	"Support for Air Operations Simulation Centre data collection and analysis"	="Department of Defence"	02-Jul-08	="Statistics"	18-Jun-08	24-Jun-08	49500.00	=""	="DELOITTE TOUCHE TOHMATSU"	02-Jul-08 01:38 PM	

+="CN96692"	"REPAIR AND RECONSTRUCTION OF DECOYS"	="Department of Defence"	02-Jul-08	="Electrical components"	16-Jun-08	30-Jun-08	48219.60	=""	="JACG PTY LTD"	02-Jul-08 01:39 PM	

+="CN96694"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	07-Jul-08	51645.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:39 PM	

+="CN96714"	"HIRE, SUPPLY, INSTALLATION & TRAINING FOR 3 X 20FT ISO TANK TAINERS"	="Department of Defence"	02-Jul-08	="Aircraft fuel tanks and systems"	18-Jun-08	30-Jun-08	40128.00	=""	="TANK CONTAINERS AUSTRALIA"	02-Jul-08 01:41 PM	

+="CN96716"	"MEDALS"	="Department of Defence"	02-Jul-08	="Collectibles and awards"	18-Jun-08	30-Sep-08	55440.00	=""	="CASHS AUSTRALIA PTY LTD"	02-Jul-08 01:41 PM	

+="CN96722"	"CONTRACTOR SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	30-Jun-08	50600.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	02-Jul-08 01:42 PM	

+="CN96729"	"UXO ASSESSMENT - CHIDLOW WA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	55669.30	=""	="BACTEC SE ASIA PTY LTD"	02-Jul-08 01:43 PM	

+="CN96736"	"BLIND MAINTENANCE & NEW CURTAINS FOR LIA ACCOMMODATION LAVARACK BARRACKS"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	05-Jul-07	30-Jun-08	57240.87	=""	="AMAZING CLEAN TOWNSVILLE"	02-Jul-08 01:43 PM	

+="CN96740"	"GB/FM ROUTINE"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	04-Jun-08	31-Jul-08	48949.80	=""	="RESOLVE FM"	02-Jul-08 01:43 PM	

+="CN96755"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	47513.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:44 PM	

+="CN96757"	"IM STAGE 4 DEVELOPMENT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-08	49500.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	02-Jul-08 01:44 PM	

+="CN96764"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	56809.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:45 PM	

+="CN96778"	"Provide Technical services for LIF Project"	="Department of Defence"	02-Jul-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jun-08	30-Jun-08	49805.39	=""	="FORTBURN PTY LTD"	02-Jul-08 01:45 PM	

+="CN96783"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	01-Jan-09	48510.00	=""	="CLASS TRAINING"	02-Jul-08 01:46 PM	

+="CN96813"	"ASBESTOS REMEDIATION WORKS - BULIMBA NAD"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	54107.54	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 01:48 PM	

+="CN96815"	"THIS PURCHASE TO COVER YEAR 6 TO 10 YEAR MAINTENCE SOFTWARE MAINTENCE FOR THE CAAB TIMS SYSTEM WHICH"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	30-Jun-09	47419.67	=""	="TSA SOFTWARE SOLUTIONS PTY LTD"	02-Jul-08 01:48 PM	

+="CN96837"	"ROMAN STORE & FORWARD"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	29-Feb-08	52624.00	=""	="JOB COMMUNICATIONS"	02-Jul-08 01:49 PM	

+="CN96842"	"Red Hat Ent Linux 5 Desktop"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	30-Jun-08	42350.00	=""	="RED HAT ASIA-PACIFIC PTY LTD"	02-Jul-08 01:49 PM	

+="CN96859"	"contract under standing offer"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	20-Jun-08	20-Jun-08	49445.00	=""	="TENIX SYSTEMS PTY LTD"	02-Jul-08 01:50 PM	

+="CN96872"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	51150.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 01:51 PM	

+="CN96874"	"SA2485 Demolition of Derelict Structures WPA"	="Department of Defence"	02-Jul-08	="Structural materials and basic shapes"	24-Jun-08	30-Jun-08	43752.50	=""	="MCMAHON SERVICES AUSTRALIA PTY LTD"	02-Jul-08 01:51 PM	

+="CN96897"	"ENHANCED LANDFORCE - STAGE 1"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	25-Jun-08	30-Jun-08	42106.90	=""	="PARSONS BRINCKERHOFF"	02-Jul-08 01:52 PM	

+="CN96911"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	12-Jun-08	41679.66	=""	="PARSONS BRINCKERHOFF AUSTRALIA P/L"	02-Jul-08 01:54 PM	

+="CN96914"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	48889.56	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 01:54 PM	

+="CN96916"	"Software maintenance services"	="Department of Defence"	02-Jul-08	="Software"	29-May-08	30-Jun-08	48631.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	02-Jul-08 01:54 PM	

+="CN96924"	"SASR CT Refurbish Target Sysytems Campbell"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	24-Jun-08	30-Jun-08	57550.35	=""	="POLYTRONIC INTERNATIONAL LTD"	02-Jul-08 01:54 PM	

+="CN96926"	"VR Link Run Time Licence"	="Department of Defence"	02-Jul-08	="Computer services"	12-Jun-08	20-Jun-08	49280.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:55 PM	

+="CN96927"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Project management"	12-Nov-07	30-Jun-08	41810.49	=""	="PROJECT OUTCOMES PTY LTD"	02-Jul-08 01:55 PM	

+="CN96941"	"Computer Goods"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	20-Jun-08	59400.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	02-Jul-08 01:56 PM	

+="CN96942"	"QUARANTINE FEES"	="Department of Defence"	02-Jul-08	="Environmental protection"	25-Jun-08	30-Jun-08	50000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	02-Jul-08 01:56 PM	

+="CN96943"	"AIRFIELD LIGHTING SERVICES AND REVIEW OF PROJECT D"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	25-Jun-08	30-Jun-08	44000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 01:56 PM	

+="CN96962"	"HQJOC-C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-08	50881.62	=""	="THALES AUSTRALIA"	02-Jul-08 01:57 PM	

+="CN96968"	"AIRFIELD LIGHTING ADVANCED COURSE & REGULATOR CSE"	="Department of Defence"	02-Jul-08	="Firearms"	13-Jun-08	26-Jun-08	51000.01	=""	="AIRWAYS TRAINING SERVICES"	02-Jul-08 01:57 PM	

+="CN96978"	"TS PIONEER RELOCATION TO KOMIATUM BARRACKS MACKAY"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	24-Jun-08	30-Jun-08	51144.30	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 01:58 PM	

+="CN96985"	"This service is for a period of approx 8 months. A raised for the new F/Y. Current incumbent on Mat"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	30-Jun-08	47643.20	=""	="ZENITH MANAGEMENT SERVICES"	02-Jul-08 01:58 PM	

+="CN96987"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-09	43000.00	=""	="IDENTITY PR PTY LTD"	02-Jul-08 01:58 PM	

+="CN96996"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	24-Dec-08	43956.00	=""	="ICON RECRUITMENT"	02-Jul-08 01:59 PM	

+="CN96999"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	24-Dec-08	45278.75	=""	="ICON RECRUITMENT"	02-Jul-08 01:59 PM	

+="CN97010"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	54165.61	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 02:01 PM	

+="CN97011"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	24-Dec-08	57172.76	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:01 PM	

+="CN97045"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	10-Jun-08	10-Jun-08	42025.98	=""	="DARWIN HIGH SCHOOL COUNCIL INC."	02-Jul-08 02:03 PM	

+="CN97058"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	12-Jun-08	44000.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	02-Jul-08 02:04 PM	

+="CN97059"	"DEFENCE SCHOOL TRAINSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	51440.26	=""	="THE WILLOWS STATE SCHOOL"	02-Jul-08 02:04 PM	

+="CN97076"	"YANMAR POWER SYSTEM FOR NAVAL MT TRAINEES"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jun-08	23-Jun-08	46305.47	=""	="MARITIME MECHANICS PTY LTD"	02-Jul-08 02:06 PM	

+="CN97081"	"Capillary Genetic Analyser"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	26-Jun-08	27-Jun-08	43509.58	=""	="APPLIED BIOSYSTEMS"	02-Jul-08 02:07 PM	

+="CN97087"	"WEBREP TRANSITION INTO SERVICE PROJECT REF0607-P05"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	24-Jun-08	30-Sep-08	45507.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	02-Jul-08 02:07 PM	

+="CN97104"	"Contractor Support for Analytical Framework for JASSM-ASuW System Analysis"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	23-May-08	30-Jun-08	50000.01	=""	="AEROSPACE CONCEPTS PTY LTD"	02-Jul-08 02:08 PM	

+="CN97108"	"Vegetation Management"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	31-Aug-08	55000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	02-Jul-08 02:08 PM	

+="CN97109"	"UPGRADE & REFURBISH BUILDING"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	19-Jun-08	30-Jun-08	43030.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:08 PM	

+="CN97133"	"SKYCOOL (MULTI-REGIONAL) ROOF PAINTING ENERGY REDU"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	30-Jun-08	30-Jun-08	55000.00	=""	="SKYCOOL"	02-Jul-08 02:09 PM	

+="CN97140"	"NQ2232 Business Centre refurb / DS-TS relocation f"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	42698.43	=""	="SPOTLESS"	02-Jul-08 02:10 PM	

+="CN97152"	"VEHICLE LEASE - FLLA K"	="Department of Defence"	02-Jul-08	="Motor vehicles"	07-Jun-08	16-Jun-08	45035.80	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:11 PM	

+="CN97168"	"Services of apprentice for SES"	="Department of Defence"	02-Jul-08	="Professional engineering services"	13-Jun-08	26-Jun-09	40556.87	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	02-Jul-08 02:11 PM	

+="CN97197"	"BAC high-density storage modules"	="Department of Defence"	02-Jul-08	="Office Equipment and Accessories and Supplies"	16-Jun-08	30-Jul-08	51832.00	=""	="BAC SYSTEMS PTY LTD"	02-Jul-08 02:14 PM	

+="CN97211"	"MEDIA ADVERTISING"	="Department of Defence"	02-Jul-08	="Advertising"	16-Jun-08	30-Jun-08	46128.33	=""	="HMA BLAZE PTY LTD"	02-Jul-08 02:14 PM	

+="CN97216"	"PURCHASE OF GYMNASIUM EQUIPMENT FOR USE BY HQJTF633 PERSONNEL"	="Department of Defence"	02-Jul-08	="Fitness equipment"	14-Jun-08	17-Jun-08	59546.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:15 PM	

+="CN97229"	"Lease charges"	="Department of Defence"	02-Jul-08	="Motor vehicles"	13-Jun-08	30-Jun-10	56997.34	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 02:16 PM	

+="CN97243"	"AGGREGATION TAPS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	30-Jun-08	50909.10	=""	="MATRIUM TECHNOLOGIES PTY LTD"	02-Jul-08 02:17 PM	

+="CN97247"	"S4875, WR 3000798836. Fitout works to Navy Ward at Conversion of ward spaces by STV's own nomin"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	57114.55	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:17 PM	

+="CN97251"	"LIF project Mainenance and repair for future arisings during Test Running Phases"	="Department of Defence"	02-Jul-08	="Specialty aircraft"	13-Jun-08	29-May-09	44000.00	=""	="BOEING AEROSPACE SUPPORT"	02-Jul-08 02:18 PM	

+="CN97275"	"Fujitsu Fi5900C Scanner, 3 Years Extended Warranty  & Freight"	="Department of Defence"	02-Jul-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Jun-08	19-Jun-08	51039.00	=""	="SCORPION TECHNOLOGY COMPUTERS P/L"	02-Jul-08 02:19 PM	

+="CN97276"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	13-Jun-08	31-Dec-09	48917.71	=""	="HARVARD LAW SCHOOL"	02-Jul-08 02:19 PM	

+="CN97278"	"LIFE FITNESS GYMNASIUM EQUIPMENT FOR AUSTRALIAN GYM AT HQJTF633, BAGHDAD"	="Department of Defence"	02-Jul-08	="Fitness equipment"	18-May-08	12-Jun-08	53070.60	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:20 PM	

+="CN97292"	"HQIADS CJOC C2 ENHANCEMENT PROJECT"	="Department of Defence"	02-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	12-Jun-08	45687.40	=""	="BOEING AUSTRALIA LTD"	02-Jul-08 02:20 PM	

+="CN97295"	"WORKSTATIONS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	31-Jul-08	44253.92	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:21 PM	

+="CN97313"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	43120.00	=""	="SMS CONSULTING GROUP PTY LTD"	02-Jul-08 02:22 PM	

+="CN97327"	"Services of apprentices for SES"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	26-Jun-09	44580.80	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	02-Jul-08 02:23 PM	

+="CN97328"	"CONTRACT C010-HQ06 PROVISION OF SIMULATION SUPPORT"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	30-Sep-08	43263.00	=""	="KRIEGSPIEL DEVELOPMENTS PTY LTD"	02-Jul-08 02:23 PM	

+="CN97329"	"Services of Trainee"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	26-Jun-09	43208.00	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	02-Jul-08 02:23 PM	

+="CN97332"	"NQ - TA - ST 2 INVESTIGATIONS AT LAVARACK BKS, RAA RAAF TOWNSVILLE & COWLEY BEACH TRAINING AREA."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	59349.69	=""	="ENVIRONMENTAL RESOURCES"	02-Jul-08 02:24 PM	

+="CN97337"	"New Analytic and Synthetic Techniques Applicable to Capability Planning and Decision Making"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	29-Jun-09	49500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	02-Jul-08 02:24 PM	

+="CN97345"	"SN00999 - ACT/SNSW EMS Development"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	43670.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:24 PM	

+="CN97350"	"SN02274 Ergonomic assesments for ADF Staff across the ACT/SNSW Region"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Jun-08	30-Jun-08	44000.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:25 PM	

+="CN97359"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	30-Apr-08	11-Mar-09	49114.48	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:26 PM	

+="CN97373"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	52764.76	=""	="APIS CONSULTING GROUP"	02-Jul-08 02:27 PM	

+="CN97377"	"HEADQUARTERS JOINT OPERATIONS COMMAND"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	26-Jun-08	30-Jun-08	44000.00	=""	="URS AUSTRALIA PTY LTD"	02-Jul-08 02:27 PM	

+="CN97378"	"Research Study"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Jun-08	30-Jun-09	44000.00	=""	="AUSPACE LIMITED"	02-Jul-08 02:27 PM	

+="CN97393"	"Provide project management/contract administration services for the DBC phase of project R7044 RAAF"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	55000.00	=""	="THINC PROJECTS (SA/NT) PTY LTD"	02-Jul-08 02:28 PM	

+="CN97411"	"Supply of meat  for dogs"	="Department of Defence"	02-Jul-08	="Meat and poultry products"	18-Jun-08	30-Jun-09	48000.00	=""	="G E MALLAN BULK MEATS"	02-Jul-08 02:29 PM	

+="CN97427"	"RAAF EAST SALE CABLING PROJECT AS PER ATTACHED SCOPE OF WORK"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	18-Jun-08	31-Jul-08	41200.50	=""	="RIVERCORP PTY LTD"	02-Jul-08 02:31 PM	

+="CN97435"	"Web Development Services"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	29-Aug-08	46915.00	=""	="ZOOZ"	02-Jul-08 02:31 PM	

+="CN97443"	"WA - AACAP08 - ION 16468 FRESH RATIONS"	="Department of Defence"	02-Jul-08	="Food and Beverage Products"	18-Jun-08	20-Jun-08	57763.84	=""	="URARO COMMUNITY STORE PTY LTD"	02-Jul-08 02:32 PM	

+="CN97446"	"POLICE CHECKS"	="Department of Defence"	02-Jul-08	="Police services"	10-Jun-08	30-Jun-09	42200.00	=""	="AUSTRALIAN FEDERAL POLICE"	02-Jul-08 02:33 PM	

+="CN97454"	"Apprentice Training"	="Department of Defence"	02-Jul-08	="Trade policy and services"	10-Jun-08	30-Jun-09	40556.87	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	02-Jul-08 02:33 PM	

+="CN97458"	"COMPUTER ACCESSORIES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	10-Jun-08	30-Jun-08	48137.57	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:34 PM	

+="CN97467"	"PMCA - A4482 JCTC ENHANCEMENT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	42290.00	=""	="PS MANAGEMENT CONSULTANTS"	02-Jul-08 02:34 PM	

+="CN97478"	"PWO COURSE 43"	="Department of Defence"	02-Jul-08	="Classroom and instructional and institutional furniture and fixtures"	11-Jun-08	20-Jun-08	57344.95	=""	="AUSTRALIAN DEFENCE FORCE ACADEMY"	02-Jul-08 02:35 PM	

+="CN97482"	"LMINSYS/SSSC/ST/016/2 Agreement."	="Department of Defence"	02-Jul-08	="Software"	11-Jun-08	01-May-09	52416.06	=""	="LOCKHEED MARTIN UK INSYS LTD"	02-Jul-08 02:36 PM	

+="CN97486"	"VCT"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	19-Jun-08	30-Jun-08	41593.20	=""	="EVIDEO COMMUNICATIONS"	02-Jul-08 02:36 PM	

+="CN97489"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	10-Jun-08	30-Jun-09	49300.00	=""	="CLAYTON UTZ"	02-Jul-08 02:36 PM	

+="CN97494"	"Cisco Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	43949.14	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	02-Jul-08 02:37 PM	

+="CN97495"	"iNSTALLATION OF DSN AND DRN INFRASTRUCTURE"	="Department of Defence"	02-Jul-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Jun-08	30-Jun-08	54846.00	=""	="QLD DATA N ELECTRICAL SERVICES"	02-Jul-08 02:37 PM	

+="CN97498"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Jul-08	55045.10	=""	="CUSTOMER SERVICE INSTITUTE OF AUST"	02-Jul-08 02:37 PM	

+="CN97499"	"Employment of Technical Writer"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	31-Dec-08	48048.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	02-Jul-08 02:37 PM	

+="CN97532"	"REVIEW OF ADF DOCTINE AND POLICY PUBLICATIONS"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	20-Jun-08	55000.00	=""	="CENTRE FOR MILITARY AND VETERANS"	02-Jul-08 02:40 PM	

+="CN97558"	"ADFA: FEDERATION GUARD GARRISON ACCOMODATION"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	47242.80	=""	="ALTO INDUSTRIAL AGENCIES"	02-Jul-08 02:43 PM	

+="CN97564"	"FACOPS"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	10-Jun-08	30-Jun-09	55000.00	=""	="BORGAS REMOVALS & STORAGE"	02-Jul-08 02:44 PM	

+="CN97567"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	27-Jun-08	55124.13	=""	="RPC TELECOMMUNICATIONS LTD"	02-Jul-08 02:44 PM	

+="CN97571"	"ENGINEERING SCHOLARSHIP"	="Department of Defence"	02-Jul-08	="Education and Training Services"	19-Jun-08	30-Jul-10	59400.00	=""	="THE UNIVERSITY OF NEW SOUTH WALES"	02-Jul-08 02:45 PM	

+="CN97574"	"SUPPLY A HYBIRD RENEWABLE ENERGY SUPPLY SYSTEM FOR AT THE MT PUCKAPUNYAL RADIO SITE, VICTORIA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	49835.50	=""	="CONERGY PTY LTD"	02-Jul-08 02:45 PM	

+="CN97576"	"FREIGHT FOR VISUAL AUDIO ITEMS FROM FRANCE"	="Department of Defence"	02-Jul-08	="Electron tube devices and accessories"	10-Jun-08	30-Jun-08	42000.00	=""	="ELECTROBOARD"	02-Jul-08 02:46 PM	

+="CN97580"	"POC: Brett Manning IBM Rep: Kellie Ninness"	="Department of Defence"	02-Jul-08	="Hardware"	10-Jun-08	20-Jun-08	41552.50	=""	="IBM AUSTRALIA LTD"	02-Jul-08 02:46 PM	

+="CN97588-A1"	"SOPVET Project 2008-003 & 2008-004 - Training Needs Ananlysis and Design."	="Department of Defence"	02-Jul-08	="Specialised educational services"	19-Jun-08	30-Jun-08	43800.00	="RFSOP013-HQ06"	="ROYAL MELBOURNE INSTITUTE OF"	02-Jul-08 02:47 PM	

+="CN97592"	"Software Licences"	="Department of Defence"	02-Jul-08	="Office supplies"	22-Jun-08	22-Jun-08	55880.00	=""	="AUTHOR-IT SOFTWARE CORPORATION"	02-Jul-08 02:47 PM	

+="CN97596"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	56809.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:47 PM	

+="CN97597"	"VARIOUS COURSES"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	20-Aug-08	54370.00	=""	="STRATEGIC MINING"	02-Jul-08 02:47 PM	

+="CN97603"	"S5021, WR 300084075. Fire implementation works in Fort Bush fire management plan approved 07/08 FACO"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-08	47062.22	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:48 PM	

+="CN97616"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	58916.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:49 PM	

+="CN97618"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	42714.10	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:49 PM	

+="CN97621"	"WAREHOUSING FOR NON ADM MEDALS FY 08/09"	="Department of Defence"	02-Jul-08	="Containers and storage"	11-Jun-08	30-Jun-09	44000.00	=""	="YALLOURN STREET STORAGE"	02-Jul-08 02:49 PM	

+="CN97628"	"SYDNEY CENTRAL - RECYCLING BINS AT DPS AND ATS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	40680.20	=""	="SERCO SODEXHO DEFENCE SERVICES"	02-Jul-08 02:49 PM	

+="CN97630"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	57750.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:49 PM	

+="CN97643"	" SOFTWARE  "	="Department of Defence"	02-Jul-08	="Software or hardware engineering"	12-Jun-08	12-Jun-08	60000.00	=""	="INNOVATIVE PROCESS GROUP"	02-Jul-08 02:51 PM	

+="CN97645"	"Software Maintenance Licence"	="Department of Defence"	02-Jul-08	="Software"	11-Jun-08	30-Jun-09	45976.62	=""	="MENTOR TECHNOLOGIES"	02-Jul-08 02:51 PM	

+="CN97646"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	59400.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:51 PM	

+="CN97653"	"FACOPS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	11-Jun-08	30-Jun-09	44220.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:52 PM	

+="CN97673"	" CANOES FOR NAVY CADET DRILLS "	="Department of Defence"	02-Jul-08	="Marine transport"	11-Jun-08	30-Jun-08	41160.04	=""	="CAPACITY SPORTS"	02-Jul-08 02:54 PM	

+="CN97689"	"BEREAVEMENT PINS"	="Department of Defence"	02-Jul-08	="Collectibles and awards"	11-Jun-08	30-Jun-08	46029.50	=""	="SALT"	02-Jul-08 02:56 PM	

+="CN97697"	"SAFETY CASE FOR JET RHIBS FOR OPERATIONAL DEPLOYMENT"	="Department of Defence"	02-Jul-08	="Military watercraft"	17-Jun-08	30-Jun-08	51040.00	=""	="DEFENCE MARITIME SERVICES"	02-Jul-08 02:56 PM	

+="CN97704"	"Annual EA membership and NPER registration fees - LEPDP FY 0809"	="Department of Defence"	02-Jul-08	="Education and Training Services"	11-Jun-08	30-Jun-08	48649.22	=""	="ENGINEERS AUSTRALIA"	02-Jul-08 02:56 PM	

+="CN97706"	"Provision of video editing units for LWC units to replace old equipment."	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	11-Jun-08	30-Jun-08	53438.06	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	02-Jul-08 02:57 PM	

+="CN97717"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	43834.53	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:57 PM	

+="CN97720"	"SA2338 WOOM Sewer Reticulation Consultancy"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-08	43010.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97728"	"Training Courses"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jun-08	30-Jun-08	40051.00	=""	="PLUS PLUS PTY LTD"	02-Jul-08 02:59 PM	

+="CN97762"	"Australian Business Case for Including people with a disability"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	20-Jun-08	31-Dec-08	44000.00	=""	="The Australian Employers' Network o"	02-Jul-08 04:43 PM	

+="CN97767"	"Additional contribution for Indigenous International Engagement for 2007-2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	05-Jul-08	55000.00	=""	="HUMAN RIGHTS & EQUAL OPPORTUNITY"	02-Jul-08 04:44 PM	

+="CN97771"	"Good Health - Great Future Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Medical Equipment and Accessories and Supplies"	19-Jun-08	27-Jun-08	43109.00	=""	="Health Futures Pty Ltd"	02-Jul-08 04:45 PM	

+="CN97777"	"Provision of Information Management and Statistical Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	17-Dec-08	55000.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH"	02-Jul-08 04:46 PM	

+="CN97780"	"The provision of contract services  in relation to online content editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	19-Jun-08	30-Sep-08	48456.80	=""	="Hays Specialist Recruitment"	02-Jul-08 04:47 PM	

+="CN97785"	"Language tranlated radio announcements"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	51140.93	=""	="Spots and Space P/L"	02-Jul-08 04:48 PM	

+="CN97787"	"Review of content published to FaHCSIA website"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Software"	23-Jun-08	30-Sep-08	50052.00	=""	="Frontier Group Australia Pty Ltd"	02-Jul-08 04:48 PM	

+="CN97789"	"National Advertising Campaign CDEP Consultation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Advertising"	25-Jun-08	25-Jun-08	46952.40	=""	="HMA Blaze Pty Limited"	02-Jul-08 04:48 PM	

+="CN97802"	"Funds Controller SA CDEP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	02-Jul-08	40537.50	=""	="WALTERTURNBULL"	02-Jul-08 04:50 PM	

+="CN97807"	"Consultantcy Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	31-Jul-08	40000.00	="SON: 189"	="Access Economics"	02-Jul-08 04:51 PM	

+="CN97808"	"Residential Land Market outlook"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	27-Jun-08	30-Jun-08	44165.00	=""	="BIS Shrapnel Pty Ltd"	02-Jul-08 04:51 PM	

+="CN97818"	"Provision of Risk Review Audits"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	24-Jun-08	26-Dec-08	44000.00	=""	="Change Management Group"	02-Jul-08 04:52 PM	

+="CN97828-A1"	"Development - National Child Protection Framework"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	11-Jul-08	42155.00	=""	="RPR Consulting Pty Ltd"	02-Jul-08 04:53 PM	

+="CN97831"	"Develop a Baseline Community Profile of the community of Mornington Shire (Including Morningto"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Human resources services"	04-Jun-08	04-Jun-08	48600.00	=""	="THE CULTURAL & INDIGENOUS"	02-Jul-08 04:54 PM	

+="CN97839"	"1 Jayco Sterling Outback Caravan/GBM"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Motor vehicles"	06-Jun-08	06-Jun-08	51520.00	=""	="Fozzys Caravans"	02-Jul-08 04:55 PM	

+="CN97842"	"Development of a best practice strategy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	41260.00	="SON: 189"	="RPR Consulting Pty Ltd"	02-Jul-08 04:55 PM	

+="CN97844"	"Provision of Project Management Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	10-Jun-08	23-Jul-08	50000.00	=""	="WALTERTURNBULL"	02-Jul-08 04:55 PM	

+="CN97845"	"Consult Contract, on behalf of the National Afford Housing Summit"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	31-Mar-09	50000.00	=""	="Shelter SA Incorporated"	02-Jul-08 04:56 PM	

+="CN97851"	"Printing the quality strategy toolkit and couriering it to National Mailing & Marketing."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Printing and publishing equipment"	02-Jun-08	30-Jun-08	51584.50	=""	="INPRINT DESIGN"	02-Jul-08 04:56 PM	

+="CN97854"	"MINOR CABLING WORK FOR THE TOP DATA CENTRE"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	02-Jun-08	20-Jun-08	45705.00	=""	="Intravision - The Cabling Specialis"	02-Jul-08 04:57 PM	

+="CN97857"	"To provide Microsoft 2003 Training - Word, Excel, Power Point and Outlook to FaHCSIA staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	02-Jun-08	30-Jun-08	55440.00	=""	="KAZ GROUP PTY LTD"	02-Jul-08 04:57 PM	

+="CN97858"	"Facilitation of group training course"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	03-Jun-08	06-Jun-08	41847.22	=""	="YELLOW EDGE PTY LTD"	02-Jul-08 04:57 PM	

+="CN97886"	"Photographic Services - Housing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Photographic services"	18-Jun-08	30-Jun-08	41252.00	=""	="MARCUS FILLINGER"	02-Jul-08 05:03 PM	

+="CN97896"	"07-08 Funding for SRI Project 'Mandurah Peel'"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	12-Jun-08	27-Jun-08	55000.00	=""	="MURDOCH UNIVERSITY - PERTH"	02-Jul-08 05:04 PM	

+="CN97905"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	45542.20	=""	="SPSS Australasia Pty Ltd"	02-Jul-08 05:05 PM	

+="CN97912"	"Recruitment company for temporary staff."	="National Native Title Tribunal"	02-Jul-08	="Personnel recruitment"	01-Jul-07	30-Jun-08	45134.65	=""	="Temp Team Pty Ltd"	02-Jul-08 05:39 PM	

+="CN97924"	" W/O-36003 WALLY 10VEH4 S'LINER ARN-51252 "	="Department of Defence"	03-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jul-08	25-Sep-08	57182.73	=""	="RGM MAINTENANCE"	03-Jul-08 09:10 AM	

+="CN97928"	"ITS review of operating structure, project resource costing, sourcing strategy & benchmarking"	="Austrade"	03-Jul-08	="Computer services"	19-May-08	30-Jun-08	49665.00	=""	="Acumen Alliance Investments Pty Ltd"	03-Jul-08 09:31 AM	

+="CN98019"	"IT Tester"	="Civil Aviation Safety Authority"	03-Jul-08	="Recruitment services"	30-Jun-08	30-Aug-08	54467.00	="07/054-02"	="Oakton AA Services Pty Ltd"	03-Jul-08 11:43 AM	

+="CN98069"	"ACSC OST 2008 - Vietnam Airlines Flights"	="Department of Defence"	03-Jul-08	="Travel facilitation"	01-May-08	01-May-08	56686.04	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:10 PM	

+="CN98081"	"P/N: PENGROUP TKT: 08147026448920 R/N: Not Supplied AIR-QANTAS INTL ONO: 152137-21300 GWT: 10186-0867"	="Department of Defence"	03-Jul-08	="Aircraft"	07-May-08	05-Jun-08	41164.92	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:12 PM	

+="CN98089"	"ACSC OST Sing/Mal"	="Department of Defence"	03-Jul-08	="Travel facilitation"	13-May-08	13-May-08	52370.40	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:13 PM	

+="CN98146"	"Furniture -"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	28-Apr-08	28-Apr-08	41338.00	=""	="COMP OFFICE SUPPLIES"	03-Jul-08 02:22 PM	

+="CN98171"	"health Expenditure"	="Department of Defence"	03-Jul-08	="Healthcare Services"	02-May-08	16-May-08	43910.21	=""	="CASTLECRAG PRIVATE"	03-Jul-08 02:25 PM	

+="CN98180"	"Furniture -"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	08-May-08	08-May-08	43982.40	=""	="CAM INTERIORS"	03-Jul-08 02:26 PM	

+="CN98252"	"08/047 - 13x Toshiba M700 Laptops"	="Department of Defence"	03-Jul-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	49494.30	=""	="DATA FLEX PTY LTD"	03-Jul-08 02:36 PM	

+="CN98263"	"Furniture -"	="Department of Defence"	03-Jul-08	="Furniture and Furnishings"	30-May-08	30-May-08	44811.80	=""	="COMP OFFICE SUPPLY"	03-Jul-08 02:38 PM	

+="CN98273"	"11/06/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	30-May-08	30-Jun-08	46179.69	=""	="ST ANDREWS WAR MEM HO"	03-Jul-08 02:39 PM	

+="CN98279"	"Expert Witness"	="Australian Securities and Investments Commission"	03-Jul-08	="Legal services"	09-Sep-07	30-Jun-09	60000.00	=""	="GCA Gower & Co."	03-Jul-08 02:42 PM	

+="CN98301"	"76SQN Accommodation for exercise Bersama Shield Singapore"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	12-Jun-08	12-Jun-08	43713.50	=""	="AMARA SINGAPORE"	03-Jul-08 02:43 PM	

+="CN98327"	"SUPPLY PROVISIONS FOR HMAS MERMAID"	="Department of Defence"	03-Jul-08	="Prepared and preserved foods"	19-Jun-08	30-Jun-08	42703.16	=""	="PATRICKDEFENCELOGI"	03-Jul-08 02:47 PM	

+="CN98365"	" Contract for Project Delivery Manager, Project Managers and Business Analysts "	="Australian Securities and Investments Commission"	03-Jul-08	="Information technology consultation services"	23-Jun-08	05-Sep-08	44275.00	=""	="Madfish Solutions"	03-Jul-08 03:20 PM	

+="CN98366"	"Extension to contract for Project Manager"	="Australian Securities and Investments Commission"	03-Jul-08	="Information technology consultation services"	23-Jun-08	19-Sep-08	42075.00	=""	="Kaptiva Pty Ltd"	03-Jul-08 03:36 PM	

+="CN98368"	"Service Contractor"	="Civil Aviation Safety Authority"	03-Jul-08	="Recruitment services"	01-Jul-08	10-Oct-08	48750.00	="07/105-02"	="Regulatory Consulting Pty Ltd"	03-Jul-08 03:56 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val60000to80000.xls
@@ -1,1 +1,177 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95612"	"Career Transition and Support Centre"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Human resources services"	25-Jun-08	25-Jun-08	61600.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:06 AM	

+="CN95621"	"Review of Airports Branch"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Accounting and auditing"	24-Jun-08	31-Jul-08	71500.00	="TRS06/037"	="PRICEWATERHOUSECOOPERS"	01-Jul-08 10:07 AM	

+="CN95626"	"Autoliv sled tests"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Professional engineering services"	25-Jun-08	30-Jun-08	64130.00	=""	="AUTOLIV AUSTRALIA PTY LTD"	01-Jul-08 10:08 AM	

+="CN95643"	"LAFIA FOR SES officers"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Specialised educational services"	01-Jul-08	30-Nov-08	79500.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:11 AM	

+="CN95651"	"Sharepoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	71500.00	="TRS06/017"	="SME GATEWAY LTD"	01-Jul-08 10:14 AM	

+="CN95653"	"SharePoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	71500.00	="TRS06/017"	="SME GATEWAY LTD"	01-Jul-08 10:14 AM	

+="CN95660"	"Legal Services Expenditure 6737 Legal Services Expenditure 6737"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	77000.00	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:16 AM	

+="CN95676"	"Stay Smart online Demostration Videos"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	14-May-08	24-Jun-08	76381.25	="DCON/08/27"	="Eye Candy Animation"	01-Jul-08 11:11 AM	

+="CN95681-A1"	"SES Leaders Training Program"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Education and Training Services"	23-Jun-08	30-Sep-08	60896.00	="05/014"	="Yellow Edge Pty Ltd"	01-Jul-08 11:12 AM	

+="CN95700-A1"	"review of Australias E-Security Research & Development Environment"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jul-08	22-Aug-08	67500.00	="ATM08/970"	="QUEENSLAND UNIVERSITY OF TECHNOLOGY"	01-Jul-08 11:16 AM	

+="CN95704"	"Service Level Agreements"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	18-Jun-09	60500.00	="DCON/07/65"	="Squiz Pty Ltd"	01-Jul-08 11:17 AM	

+="CN95705"	"Minor Works - 38 Sydney Avenue Level 2"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Building and Construction and Maintenance Services"	21-Jun-08	30-Jun-08	70620.00	="DCON/05/225"	="ISIS INTERIORS"	01-Jul-08 11:17 AM	

+="CN95717-A1"	"IBM DB2 Enterprise Server Edition Value Unit License + SW Maintenance (12 months)"	="Australian Securities and Investments Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Feb-08	28-Feb-08	79952.40	=""	="IBM Australia Limited"	01-Jul-08 11:49 AM	

+="CN68704"	"Telecommunications consumer survey for the MAS consumer research programme."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	04-Apr-08	31-May-08	75871.00	="06/ACMA129"	="Roy Morgan Research"	01-Jul-08 11:49 AM	

+="CN95758"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	01-Jul-08	="Printing"	16-Jun-08	30-Jun-08	77000.00	=""	="Canprint Communications Pty Ltd"	01-Jul-08 01:42 PM	

+="CN95771"	"Cab Charge - only company providing this service."	="National Native Title Tribunal"	01-Jul-08	="Taxicab services"	01-Jul-07	30-Jun-08	62756.00	=""	="Cabcharge Australia"	01-Jul-08 02:08 PM	

+="CN95775"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	18-Jun-08	01-Oct-08	71082.00	=""	="PLATYPUS GRAPHICS PTY LTD"	01-Jul-08 02:20 PM	

+="CN67405"	" Purchase of telecommunications consumer research data for MAS Consumer Research Program "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Data services"	28-Feb-08	27-Jun-08	61053.30	="07/ACMA055"	="Roy Morgan Research"	01-Jul-08 02:48 PM	

+="CN67359"	"Engagement of Business Analyst"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Computer services"	20-Mar-08	20-Jun-08	70200.00	="06ACMA109"	="Ajilon Australia Pty Ltd"	01-Jul-08 02:56 PM	

+="CN95821"	" Analysis, policy and facilitation services "	="Centrelink"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	74800.00	=""	="Smartnet Pty Ltd"	01-Jul-08 03:09 PM	

+="CN68738"	"Mmembership to Gartner Executive Premier service."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business and corporate management consultation services"	01-May-08	30-Apr-09	71390.00	=""	="Gartner Australasia Pty Ltd"	01-Jul-08 03:27 PM	

+="CN95831"	"Various Stationery purchases"	="National Native Title Tribunal"	01-Jul-08	="Stationery"	01-Jul-07	30-Jun-08	73829.21	=""	="Corporate Express"	01-Jul-08 03:42 PM	

+="CN95832"	"Computer Licences and Maintenance"	="Australian Crime Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Sep-07	31-Aug-08	76110.32	=""	="Novell Pty Ltd"	01-Jul-08 03:45 PM	

+="CN95839"	"Recruitment Services"	="Australian Crime Commission"	01-Jul-08	="Temporary personnel services"	16-May-08	30-Jun-08	70730.00	=""	="Icon recruitment"	01-Jul-08 04:11 PM	

+="CN95251-A1"	"Revision of Cybernetrix Education Resource"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Teacher resource materials"	24-Jun-08	23-Nov-08	60280.00	="07/ACMA071"	="Holmesglen Institute of TAFE"	01-Jul-08 04:16 PM	

+="CN95848-A1"	" Removal of Trade Waste Water from RAAF Richmond. "	="Defence Materiel Organisation"	02-Jul-08	="Water and wastewater treatment supply and disposal"	13-Jun-08	20-Jun-08	79552.17	=""	="TASMAN AVIATION ENTERPRISES"	02-Jul-08 08:33 AM	

+="CN95853"	"40 x printers"	="Defence Materiel Organisation"	02-Jul-08	="Chicken processing machinery and equipment"	13-Jun-08	20-Jun-08	62480.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	02-Jul-08 08:33 AM	

+="CN95881"	"IMV Driver Training Course"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	13-Jun-08	14-Jul-08	71434.00	=""	="SCIENTIFIC MANAGEMENT ASSOCIATES"	02-Jul-08 08:40 AM	

+="CN95888"	"Toyota Hilux 4x2 D/C UTE B/B(UM5) Qty 2"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	26-Dec-08	72674.43	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:42 AM	

+="CN95917"	"RAYTHEON LETTER DATED 4 JUNE 2008 DEBBIE MEDLEN CALIBRATION OF SPARES FOR ATE"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	11-Jun-08	18-Dec-08	76089.05	=""	="RAYTHEON AUSTRALIA PTY LTD"	02-Jul-08 08:48 AM	

+="CN95959"	"pc9 aircraft spares - Supply of PC9 Spares Standing Offer 0802-243-37"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	12-Jun-08	30-Jul-08	66431.36	=""	="PILATUS AIRCRAFT LTD"	02-Jul-08 08:57 AM	

+="CN95968"	"HMAS KANIMBLA - FLIGHT DECK CCTV UPGRADE"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	12-Jun-08	26-Jun-08	79157.45	=""	="WESTERN ADVANCE PTY LTD"	02-Jul-08 08:58 AM	

+="CN95970"	"HMAS KANIMBLA - ENGINEROOM"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	12-Jun-08	26-Jun-08	77343.46	=""	="WESTERN ADVANCE PTY LTD"	02-Jul-08 08:59 AM	

+="CN95983"	"S&Q02/064 Scoping study for ASRADS redeployment"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	12-Jun-08	04-Jul-08	60657.30	=""	="BAE SYSTEMS AUSTRALIA"	02-Jul-08 09:01 AM	

+="CN96007"	"ATD Number: 54-A  Crash Data recorder (CDR) Intega (ILS) Support."	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	18-Jun-08	31-Jan-09	60533.00	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:05 AM	

+="CN96021"	"EO Division Compliance and Assurance Review"	="Defence Materiel Organisation"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-Jun-08	31-Dec-08	63048.47	=""	="QINETIQ NOVARE PTY LTD"	02-Jul-08 09:09 AM	

+="CN96032-A1"	"Joint Electronic Fuel Management (JEFM) Project Communication Management Services"	="Defence Materiel Organisation"	02-Jul-08	="Management support services"	19-Jun-08	12-Sep-08	76250.00	=""	="KPMG"	02-Jul-08 09:12 AM	

+="CN96012"	"Provision of writing and editing services within the online publishing system"	="Australian Taxation Office"	02-Jul-08	="Technical writing"	01-Jul-08	30-Jun-09	70820.00	=""	="McLeod Marketing & Management Pty Ltd"	02-Jul-08 09:16 AM	

+="CN96084"	"FLYING TRAINING"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	17-Jun-08	17-Jun-08	66693.00	=""	="NIMVALE PTY LTD"	02-Jul-08 09:24 AM	

+="CN96108"	"Provision of Personnnel and Change Management Supp"	="Defence Materiel Organisation"	02-Jul-08	="Business and corporate management consultation services"	18-Jun-08	30-Nov-08	75000.00	=""	="WINNING ATTITUDES & SOLUTIONS"	02-Jul-08 09:30 AM	

+="CN96140"	"R3 Scheduling Support"	="Defence Materiel Organisation"	02-Jul-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	71908.10	=""	="BOEING AUSTRALIA LIMITED"	02-Jul-08 09:35 AM	

+="CN96148"	"10 MAN RCC REPLACEMENT FILTRATION SYSTEM FOR HPAC"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	09-May-07	30-Jun-08	62740.05	=""	="H I FRASER PTY LTD"	02-Jul-08 09:36 AM	

+="CN96172"	"Scientific Advisor for NACC Industry"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	12-Nov-07	30-Jun-08	68231.66	=""	="JACOBS AUSTRALIA"	02-Jul-08 09:40 AM	

+="CN96193"	"REPAIR OF REPAIRABLE ITEMS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	29-May-08	30-Jun-08	62409.93	=""	="THALES AUSTRALIA"	02-Jul-08 09:43 AM	

+="CN96209"	"Research and Development"	="Defence Materiel Organisation"	02-Jul-08	="Motor vehicles"	30-May-07	22-Mar-08	67475.20	=""	="SEAL SOLUTIONS PTY LTD"	02-Jul-08 09:46 AM	

+="CN96220"	"Test Analyst"	="Australian Securities and Investments Commission"	02-Jul-08	="Information technology consultation services"	19-Nov-07	16-May-08	67980.00	=""	="David L Turner Pty Ltd"	02-Jul-08 09:48 AM	

+="CN96252"	"Business support for Small Business Accountant"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	12-Nov-07	17-Dec-08	75200.00	=""	="FORMULA ONE SOFTWARE PTY LTD"	02-Jul-08 09:54 AM	

+="CN96257"	"GLX-1049 ENGINEERING SUPPORT FOR C130H"	="Defence Materiel Organisation"	02-Jul-08	="Office and desk accessories"	06-May-08	30-Jun-08	78628.66	=""	="LOCKHEED MARTIN CORPORATION"	02-Jul-08 09:54 AM	

+="CN96267"	"Safety by Inspection Program."	="Defence Materiel Organisation"	02-Jul-08	="Aircraft fuselage and components"	12-Nov-07	30-Jun-09	78405.20	=""	="AIRFLITE PTY LTD"	02-Jul-08 09:56 AM	

+="CN96315"	"VoP For Euro ISS contract C388561, Inv 71055"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	10-Jun-08	11-Jun-08	71257.48	=""	="BAE SYSTEMS AUSTRALIA - EUR"	02-Jul-08 10:04 AM	

+="CN96324"	"Engagement of PSP Contractors to provide Financial Management Assistance to LSA-N"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	30-Jun-08	30-Jun-09	77000.00	=""	="ASCENT GOVERNANCE PTY LTD"	02-Jul-08 10:05 AM	

+="CN96367"	"INSTALLATION OF PROTOTYPE GPS MODIFICATION INTO QTY 2 BLACK HAWK HELICOPTERS"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	12-Nov-07	31-Jul-08	77000.00	=""	="BAE SYSTEMS(AUSTRALIA)"	02-Jul-08 10:11 AM	

+="CN96373"	"Spare Parts Electic Turret Drive System"	="Defence Materiel Organisation"	02-Jul-08	="War vehicles"	25-Jun-08	31-Mar-09	65497.13	=""	="MOOG AUSTRALIA PTY LTD"	02-Jul-08 10:12 AM	

+="CN96374"	"PROFESSIONAL FEES"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	02-Nov-07	31-Dec-08	76638.20	=""	="ALLENS ARTHUR ROBINSON"	02-Jul-08 10:12 AM	

+="CN96378"	"Hire of Facility"	="Defence Materiel Organisation"	02-Jul-08	="Lease and rental of property or building"	25-Jun-08	30-Sep-08	75900.00	=""	="ASIAN PACIFIC BUSINESS CENTERS"	02-Jul-08 10:12 AM	

+="CN96266"	"Enterprise Data Modelling - Project Initiation, Management and Governance (Variation)"	="Australian Securities and Investments Commission"	02-Jul-08	="Information technology consultation services"	06-Oct-07	21-Oct-07	62067.50	=""	="Ajilon Australia Pty Ltd"	02-Jul-08 10:14 AM	

+="CN96403"	"EVM Support from 01 Jan 2008 to 30 June 2008"	="Defence Materiel Organisation"	02-Jul-08	="Management support services"	01-Jul-08	31-Dec-09	76322.40	=""	="TERRA FIRMA PTY LTD"	02-Jul-08 10:15 AM	

+="CN96412"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	02-Jul-08	="Fuels"	26-Jun-08	30-Jun-08	63336.87	=""	="UNIVERSAL WEATHER AND AVIATION INC"	02-Jul-08 10:17 AM	

+="CN96417"	"Recruitment od Business Analyst for Names Re-Engineering project"	="Australian Securities and Investments Commission"	02-Jul-08	="Business and corporate management consultation services"	24-Oct-07	31-Jan-08	62067.50	=""	="Ajilon Australia Pty Ltd"	02-Jul-08 10:26 AM	

+="CN96424"	"Business Analyst"	="Australian Securities and Investments Commission"	02-Jul-08	="Business and corporate management consultation services"	13-Jul-07	14-Dec-07	77000.00	=""	="Aurec Pty Ltd"	02-Jul-08 10:52 AM	

+="CN96465"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	24-Jun-08	30-Sep-08	70270.20	="RFT07/0451-0003"	="Encore It Services Pty Ltd"	02-Jul-08 12:18 PM	

+="CN96517"	"Organisational Development Services"	="Australian Fair Pay Commission"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Mar-08	31-Dec-09	79000.00	=""	="Yellow Edge (Vic) Pty Ltd"	02-Jul-08 12:29 PM	

+="CN96559"	"Conference"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	13-May-08	23-Aug-08	66124.98	=""	="Peppers The Sands Resort"	02-Jul-08 12:45 PM	

+="CN96579"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	19-Dec-08	68640.00	=""	="ICON RECRUITMENT PTY LTD"	02-Jul-08 01:29 PM	

+="CN96581"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	01-Jul-08	73645.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:29 PM	

+="CN96585"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	01-Jul-08	79189.19	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:29 PM	

+="CN96589"	"Information Storage."	="Department of Defence"	02-Jul-08	="Information services"	16-Jun-08	27-Jun-08	61351.88	=""	="SILICON GRAPHICS PTY LTD"	02-Jul-08 01:30 PM	

+="CN96592"	"PROVISION OF PROFESSIONAL SERVICE PROVIDERS FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-09	69550.80	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 01:30 PM	

+="CN96596"	"Review of Project Managenent Fees SWS"	="Department of Defence"	02-Jul-08	="Management support services"	18-Jun-08	30-Jun-09	71500.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	02-Jul-08 01:30 PM	

+="CN96618"	"DIGITAL AUDIO LABORATORY KIT"	="Department of Defence"	02-Jul-08	="Laboratory supplies and fixtures"	18-Jun-08	30-Jul-08	60784.90	=""	="BROADCAST WORKSHOP"	02-Jul-08 01:32 PM	

+="CN96621"	"IL-DDG Data Diode Hardware + Maintenance + Support"	="Department of Defence"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	61143.50	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 01:32 PM	

+="CN96635"	"A76-PPZ2-16-SMH SUNFIRE X 4500 SERVER AMD OPTERON"	="Department of Defence"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	70877.15	=""	="SUN MICROSYSTEMS"	02-Jul-08 01:34 PM	

+="CN96649"	"CAMERA"	="Department of Defence"	02-Jul-08	="Security surveillance and detection"	18-Jun-08	30-Jun-08	68758.80	=""	="SSE INSTALLATIONS PTY LTD"	02-Jul-08 01:35 PM	

+="CN96660"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	07-Jul-08	77467.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 01:36 PM	

+="CN96678"	"Transmission Services"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	29-Aug-11	71493.00	=""	="VERIZON AUSTRALIA PTY LTD"	02-Jul-08 01:37 PM	

+="CN96688"	"IT EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	63940.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:38 PM	

+="CN96698"	"RATES AND WATER METERS FOR PROPERTY NO.253600, 38-40 HOWITT ST, NORTH WARD"	="Department of Defence"	02-Jul-08	="Utilities"	16-Jun-08	30-Jun-09	60550.00	=""	="TOWNSVILLE CITY COUNCIL"	02-Jul-08 01:39 PM	

+="CN96745"	"Scanners"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	65771.36	=""	="CORPORATE EXPRESS AUSTRALIA"	02-Jul-08 01:44 PM	

+="CN96791"	"PSP Fees (time and materials)"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jun-08	30-Jun-08	60060.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	02-Jul-08 01:46 PM	

+="CN96800"	"Sun Microsystems Annual Maintenance/Support"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	30-Jun-08	65031.36	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 01:47 PM	

+="CN96803"	"Deed of Standing Offer JLUSQ-0406 to support Labou from 1 Jul to 28 Sep 2008."	="Department of Defence"	02-Jul-08	="Transportation repair or maintenance services"	17-Jun-08	28-Sep-08	63370.14	=""	="DRAKE AUSTRALIA PTY LTD"	02-Jul-08 01:47 PM	

+="CN96812"	"Deed of Standing Offer JLUSQ-0406 to support Labou 1 Jul to 28 Sep 08."	="Department of Defence"	02-Jul-08	="Transportation repair or maintenance services"	17-Jun-08	28-Sep-08	72587.04	=""	="DRAKE AUSTRALIA PTY LTD"	02-Jul-08 01:48 PM	

+="CN96814"	"REACTIVE BUILDING MAINTENANCE"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	14-Nov-07	30-Jun-08	74242.43	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:48 PM	

+="CN96829"	"contract under standing offer"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	30-Jun-08	62696.87	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 01:49 PM	

+="CN96848"	"Red Hat Ent Linux 5server 24/7"	="Department of Defence"	02-Jul-08	="Software"	17-Jun-08	30-Jun-08	74800.00	=""	="RED HAT ASIA-PACIFIC PTY LTD"	02-Jul-08 01:50 PM	

+="CN96853"	"REPAIRS TO HANGAR ROOF"	="Department of Defence"	02-Jul-08	="Structural building products"	19-May-08	30-Jun-08	70242.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 01:50 PM	

+="CN96891"	"FP&E REACTIVE MAINTENANCE REIMBURSEABLES"	="Department of Defence"	02-Jul-08	="Construction and maintenance support equipment"	18-Jun-08	30-Jun-08	68141.86	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	02-Jul-08 01:52 PM	

+="CN96898"	"ADFA 62 & 63 LIA  CADET UPGRADE"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	63849.98	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 01:52 PM	

+="CN96899"	"8 Digital users, 1 local user, 16 System KVM"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	17-Jun-08	30-Jun-08	67355.54	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Jul-08 01:52 PM	

+="CN96902"	"Project Management, Cutover and Training Services Defence Contact Centres (DRN, DSN and DNOC)."	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	77440.00	=""	="AVAYA AUSTRALIA PTY LTD"	02-Jul-08 01:52 PM	

+="CN96903"	"HMAS CERBERUS : SMALL ARMS TRAINING SECTION REDEVELOPMENT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	24-Jun-08	30-Jun-08	63431.50	=""	="POLYTRONIC INTERNATIONAL LTD"	02-Jul-08 01:52 PM	

+="CN96935"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Sep-08	74000.00	=""	="VEDIOR AISA PACIFIC PTY LTD"	02-Jul-08 01:55 PM	

+="CN96940"	"SON 45190 - RSTT Modelling & Software Support"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	27-May-08	30-Jun-08	61985.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	02-Jul-08 01:56 PM	

+="CN96947"	"Services as per RFT 0708-266"	="Department of Defence"	02-Jul-08	="Laboratory and scientific equipment"	12-Jun-08	30-Jun-09	65348.71	=""	="CHEMSKILL"	02-Jul-08 01:56 PM	

+="CN96956"	"VIDEOCONFERENCE EQUIPMENT"	="Department of Defence"	02-Jul-08	="Audio and visual presentation and composing equipment"	30-May-08	30-Sep-08	73578.24	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	02-Jul-08 01:57 PM	

+="CN96965"	"SAFE FOR 81WG"	="Department of Defence"	02-Jul-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	13-Jun-08	27-Jun-08	74800.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	02-Jul-08 01:57 PM	

+="CN96969"	"Software maintenance services"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	31-Mar-09	74448.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 01:57 PM	

+="CN97023"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	02-Jul-08	="Legal services"	25-Jun-08	30-Jun-09	67000.15	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	02-Jul-08 02:02 PM	

+="CN97026"	"CONSUMPTION COSTS FOR DREAMS FY 07-08"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	18-Jun-08	30-Jun-08	63487.82	=""	="TELSTRA"	02-Jul-08 02:02 PM	

+="CN97051"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	10-Jun-08	60086.18	=""	="PALMERSTON HIGH SCHOOL"	02-Jul-08 02:03 PM	

+="CN97057"	"Aircraft Technical Support"	="Department of Defence"	02-Jul-08	="Aircraft equipment"	18-Jun-08	30-Jun-08	66000.00	=""	="PUBLICATION PERSPECTIVES PTY LTD"	02-Jul-08 02:04 PM	

+="CN97080"	"Computer Equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Jun-08	26-Jun-08	63710.94	=""	="MCR COMPUTER RESOURCES PTY LTD"	02-Jul-08 02:06 PM	

+="CN97106"	"SEA CHTR OP OUTREACH"	="Department of Defence"	02-Jul-08	="Marine transport"	26-Jun-08	30-Jun-08	62000.00	=""	="PDL TOLL"	02-Jul-08 02:08 PM	

+="CN97113"	"Standing Offer 45190"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	12-Jun-08	30-Jun-09	66724.30	=""	="DAINTREE SYSTEMS PTY LTD"	02-Jul-08 02:08 PM	

+="CN97154"	"GLASS DIVIDING WALL, CANUNGRA"	="Department of Defence"	02-Jul-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Jun-08	30-Jun-08	63650.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	02-Jul-08 02:11 PM	

+="CN97183"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Jun-08	77825.55	=""	="PATHWAY CONSULTANTS PTY LTD"	02-Jul-08 02:12 PM	

+="CN97193"	"VIDEO/AUDIO EQUIPMENT"	="Department of Defence"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	30-Apr-08	13-Jun-08	62582.65	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	02-Jul-08 02:13 PM	

+="CN97227"	"LIGHTS"	="Department of Defence"	02-Jul-08	="Lighting and fixtures and accessories"	13-Jun-08	26-Jun-08	72099.50	=""	="ROFIN AUSTRALIA PTY LTD"	02-Jul-08 02:16 PM	

+="CN97259"	"STORAGR FOR 81 WG"	="Department of Defence"	02-Jul-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	13-Jun-08	27-Jun-08	79200.00	=""	="HEADLAND MACHINERY PTY LTD"	02-Jul-08 02:18 PM	

+="CN97273"	"REPLACEMENT OF AIR CONDITIONING"	="Department of Defence"	02-Jul-08	="Building and Construction Machinery and Accessories"	13-Jun-08	30-Jun-08	72800.00	=""	="COCOS MANPOWER"	02-Jul-08 02:19 PM	

+="CN97309"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	11-Sep-08	65340.00	=""	="COMPLEXIA PTY LTD"	02-Jul-08 02:22 PM	

+="CN97318"	"Notebook Computers, Light weight"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	01-Jul-08	69590.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:22 PM	

+="CN97349"	"IT HARDWARE"	="Department of Defence"	02-Jul-08	="Hardware"	27-Jun-08	27-Jun-08	76571.00	=""	="XENON PTY LTD"	02-Jul-08 02:25 PM	

+="CN97352"	"TRAVEL EXPENSES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	70224.11	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 02:25 PM	

+="CN97354"	"Fire Extinguishers and Valve Assemblies"	="Defence Materiel Organisation"	02-Jul-08	="Fire extinguishers"	18-Jun-08	12-Aug-08	63680.83	=""	="CHUBB FIRE SAFETY LTD"	02-Jul-08 02:26 PM	

+="CN97380"	"MAINTENANCE, UPGRADE AND IMPLEMENTATION OF COMPUTER SYSTEM FOR DEFENCE LIBRARY"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	01-Jul-09	73000.40	=""	="CSC AUSTRALIA PTY LTD"	02-Jul-08 02:27 PM	

+="CN97413"	"Provision of Professional Services for the Functio Support to the CDS"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	31-Jul-08	78899.99	=""	="SCHOFIELD SCIENCE AND TECHNOLOGY"	02-Jul-08 02:30 PM	

+="CN97437"	"SON 26014- Library and Information Services"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	18-Jun-08	30-Jun-09	71432.50	=""	="ZENITH MANAGEMENT SERVICES"	02-Jul-08 02:31 PM	

+="CN97487"	"softwaree Maintenance Licence"	="Department of Defence"	02-Jul-08	="Software"	10-Jun-08	11-Jun-08	72873.46	=""	="MENTOR TECHNOLOGIES"	02-Jul-08 02:36 PM	

+="CN97515"	"Work Station bundle"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	62073.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:39 PM	

+="CN97528"	"SOFTWARE"	="Department of Defence"	02-Jul-08	="Software"	10-Jun-08	16-Jun-08	68982.65	=""	="MAPINFO AUSTRALIA PTY LTD"	02-Jul-08 02:40 PM	

+="CN97534"	"SN01942 - Land Remediation - MTA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	63218.00	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:41 PM	

+="CN97536"	"DEMAND AND REMUNERATION PROJECTION STUDY"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jul-08	74800.00	=""	="MONASH UNI - FACULY OF ED"	02-Jul-08 02:41 PM	

+="CN97543"	"Items for bundle Several DIERS"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	11-Jul-08	66628.23	=""	="GETRONICS (AUSTRALIA) PTY LTD"	02-Jul-08 02:41 PM	

+="CN97551"	"Notebook Computers, Light weight"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	01-Jul-08	79189.19	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:42 PM	

+="CN97557"	"HQJOC - C41 PROJECT DRN (6.10) DSN (6.13) TACTICAL SUBCOMCEN (6.98)"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	72411.33	=""	="THALES AUSTRALIA"	02-Jul-08 02:43 PM	

+="CN97561"	"HEALTH COVER COSTS"	="Department of Defence"	02-Jul-08	="Financial and Insurance Services"	19-Jun-08	19-Jun-08	65500.00	=""	="MEDIBANK PRIVATE"	02-Jul-08 02:43 PM	

+="CN97562"	"WELLINGTON AHC FITOUT"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-08	72167.34	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	02-Jul-08 02:44 PM	

+="CN97579"	"Standing Offer 45190- Provision of Services for Engineering Support"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Jun-08	30-Jun-09	70200.90	=""	="BLUE SWIMMER CONSULTING"	02-Jul-08 02:46 PM	

+="CN97595"	"Areditation and Registration Council Annual Regist"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jun-08	30-Jun-08	74000.00	=""	="ACT DEPT OF EDUCATION YOUTH &"	02-Jul-08 02:47 PM	

+="CN97598"	"Notebook Computers, Light weight"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	79189.19	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:47 PM	

+="CN97613"	" Study into the loss of knowledge as a result of lack of retention "	="Department of Defence"	02-Jul-08	="Personnel recruitment"	11-Jun-08	30-Jun-11	66000.00	=""	="UNIVERSITY OF WOLLONGONG"	02-Jul-08 02:48 PM	

+="CN97614"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	75117.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:48 PM	

+="CN97627"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	64900.00	=""	="DELOITTE TOUCHE TOHMATSU"	02-Jul-08 02:49 PM	

+="CN97643"	" SOFTWARE  "	="Department of Defence"	02-Jul-08	="Software or hardware engineering"	12-Jun-08	12-Jun-08	60000.00	=""	="INNOVATIVE PROCESS GROUP"	02-Jul-08 02:51 PM	

+="CN97656"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	70237.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:52 PM	

+="CN97660"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	70237.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:53 PM	

+="CN97682"	"TRAINING"	="Department of Defence"	02-Jul-08	="Education and Training Services"	17-Jun-08	17-Jun-08	66291.25	=""	="C I T SOLUTIONS PTY LTD"	02-Jul-08 02:55 PM	

+="CN97690"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	70237.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:56 PM	

+="CN97693"	"Electrical Testing"	="Department of Defence"	02-Jul-08	="Electrical equipment and components and supplies"	11-Jun-08	30-Sep-08	66000.00	=""	="TESTEL AUSTRALIA PTY LTD"	02-Jul-08 02:56 PM	

+="CN97703"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	75117.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:56 PM	

+="CN97705"	"Laptops Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	76590.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97707"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	78063.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97711"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	62893.02	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:57 PM	

+="CN97715"	"Notebook Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	63334.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97743"	"ICT contractor"	="National Native Title Tribunal"	02-Jul-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	79926.00	=""	="Candle Australia"	02-Jul-08 03:45 PM	

+="CN97800"	"Annual Maintenance fee - recordkeeping system"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Trade policy and services"	26-Jun-08	30-Jun-09	64592.39	=""	="Tower Software"	02-Jul-08 04:50 PM	

+="CN97822"	"Cape York Devemoplment and Evaluation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	20-Dec-08	77000.00	="SON: 189"	="COURAGE PARTNERS PTY LTD"	02-Jul-08 04:53 PM	

+="CN97826"	"Money management Resource tool - Facilitators community education workshop kit."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Printing and publishing equipment"	25-Jun-08	30-Jun-08	73148.92	=""	="Marcus Lee Design"	02-Jul-08 04:53 PM	

+="CN97827"	"Department copyright"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	25-Jun-08	30-Jun-09	65000.00	=""	="COPYRIGHT AGENCY LIMITED"	02-Jul-08 04:53 PM	

+="CN97829"	"Medical Assessment and Specialist Service for NTER"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Emergency and field medical services products"	04-Jun-08	30-Jun-08	64020.00	=""	="Jobfit Health Group Pty ltd"	02-Jul-08 04:54 PM	

+="CN97830"	"Provision of services in relation to the supply of  an e recruitment solution"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Human resources services"	04-Jun-08	15-Jun-09	60284.00	=""	="Nga.net Pty Ltd"	02-Jul-08 04:54 PM	

+="CN97841"	"Carpet replacement  for Exec entry area, main foye Auditorium and Library in B Block at TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Building and Construction and Maintenance Services"	06-Jun-08	28-Jul-08	79860.00	=""	="Carpet One Canberra"	02-Jul-08 04:55 PM	

+="CN97866"	"Development of CMS database and website to replace redundant Bizability Website"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	04-Jun-08	10-Sep-00	77700.00	=""	="eServices Interactive"	02-Jul-08 04:59 PM	

+="CN97871"	"Contracted Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	77812.90	=""	="T.A.C. PACIFIC PTY LTD"	02-Jul-08 05:00 PM	

+="CN97879-A1"	"Design and Typesetting"	="Australian Electoral Commission"	02-Jul-08	="Industrial printing services"	03-Aug-06	03-Aug-09	75834.00	="AEC06/026"	="Union Offset Printers"	02-Jul-08 05:02 PM	

+="CN97891"	"Upgrade signage around TOP"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Signage and accessories"	11-Jun-08	11-Jul-08	79374.20	=""	="The Exhibition Centre"	02-Jul-08 05:03 PM	

+="CN97915"	"Supply toshiba Portege R55 Laptops (As per Quote)"	="National Native Title Tribunal"	02-Jul-08	="Computers"	18-Apr-08	27-Jun-08	69585.24	=""	="Computer Expo"	02-Jul-08 06:27 PM	

+="CN97927"	"Develop project plans, and other as required, for Web Manager.  Including strategic, operational & technical design on IA and MOSS"	="Austrade"	03-Jul-08	="Marketing analysis"	14-Apr-08	30-Jun-08	61600.00	=""	="Different Solutions Pty Ltd"	03-Jul-08 09:31 AM	

+="CN97931"	"Connect Project - coordination & implementation of layer enhancements; document & ensure design integrity; and EMDG Library"	="Austrade"	03-Jul-08	="Computer services"	01-May-08	15-Nov-08	61600.00	=""	="Chandler Macleod Limited"	03-Jul-08 09:32 AM	

+="CN97936"	"Advice and support for the development/implementation of ASEAN industry team arrangements."	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Jun-09	80000.00	=""	="CBA Consulting Group Ltd"	03-Jul-08 09:33 AM	

+="CN97960"	"Number Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Telephone entry systems"	01-Jul-08	30-Jun-09	73000.00	="06/243-01"	="Optus Billing Services Pty Ltd"	03-Jul-08 10:30 AM	

+="CN97983"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	28-Apr-08	17-Jul-08	70422.19	=""	="DIVERSITI PTY LTD"	03-Jul-08 10:36 AM	

+="CN97989"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	01-Jul-08	31-Oct-08	70224.00	="RFT 021-2007"	="COMPAS PTY LTD"	03-Jul-08 10:37 AM	

+="CN98007"	"PABX Maintenace"	="Civil Aviation Safety Authority"	03-Jul-08	="Telephone aids for the physically challenged"	01-Jul-08	30-Jun-09	69000.00	="06/900-01"	="Telstra Business"	03-Jul-08 11:09 AM	

+="CN98013"	"Provision of IT Business Analyst Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Temporary information technology software developers"	01-Aug-08	30-Aug-08	80000.00	="07/026-00"	="Hudson Global Resources"	03-Jul-08 11:27 AM	

+="CN98021"	"IT Testing Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Recruitment services"	01-Jul-08	30-Aug-08	72623.00	="07/082-03"	="Oakton AA Services Pty Ltd"	03-Jul-08 11:48 AM	

+="CN98050"	"Airfares to Israel and France"	="Department of Defence"	03-Jul-08	="Air transportation support systems and equipment"	08-Apr-08	08-Apr-08	70394.75	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:07 PM	

+="CN98051"	"Airfares to Israel and France"	="Department of Defence"	03-Jul-08	="Air transportation support systems and equipment"	08-Apr-08	08-Apr-08	70394.75	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:08 PM	

+="CN98082"	"P/N: PENGROUP TKT: 08147026449040 R/N: Not Supplied SINGAPORE AIRL ONO: 152137-21300 GWT: 10186-0867"	="Department of Defence"	03-Jul-08	="Aircraft"	07-May-08	07-May-08	66715.56	=""	="QANTAS AIRWAYS LIMITED"	03-Jul-08 02:12 PM	

+="CN98106"	" STRETCHER, ADF MODIFIED, PARAGUARD MODEL "	="Defence Materiel Organisation"	03-Jul-08	="Emergency response litters or stretchers or accessories"	02-Nov-07	07-Mar-08	62955.09	="809996"	="Ferno Australia Pty Ltd"	03-Jul-08 02:17 PM	

+="CN98152"	"12/05/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	24-Apr-08	31-May-08	68832.00	=""	="THE JOHN FLYNN HOSPTL"	03-Jul-08 02:23 PM	

+="CN98279"	"Expert Witness"	="Australian Securities and Investments Commission"	03-Jul-08	="Legal services"	09-Sep-07	30-Jun-09	60000.00	=""	="GCA Gower & Co."	03-Jul-08 02:42 PM	

+="CN98294"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	03-Jul-08	="Patient care and treatment products and supplies"	06-Jun-08	05-Jul-08	66969.45	=""	="ST JOHN OF GOD SU"	03-Jul-08 02:42 PM 

--- /dev/null
+++ b/admin/partialdata/01Jul2008to03Jul2008val80000to150000.xls
@@ -1,1 +1,254 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95616"	" Cloth knitted "	="Defence Materiel Organisation"	01-Jul-08	="Specialty fabrics or cloth"	27-Jun-08	10-Mar-09	149380.00	=""	="Melba Industries"	01-Jul-08 10:07 AM	

+="CN95632"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	82368.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:09 AM	

+="CN95633"	"Senior Engineer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	95251.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:09 AM	

+="CN95645-A1"	"InfoHRM contract"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Information services"	01-Jul-08	30-Jun-09	83270.00	=""	="InfoHRM Pty Ltd"	01-Jul-08 10:12 AM	

+="CN95646-A1"	"Legal Services Expenditure 6377 Legal Services Expenditure 6377"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	120000.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	01-Jul-08 10:12 AM	

+="CN72184-A4"	"Temporary personnel for Finance Section"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	21-Apr-08	31-Dec-09	119800.00	="05ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	01-Jul-08 11:16 AM	

+="CN72176"	" Temporary Contract Staff &ndash; Communications & Publishing Section. Addition of $21,750 to existing PO (Ref CN63724 "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	02-Jul-07	30-Jun-08	80950.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 11:22 AM	

+="CN72167-A1"	"Consultancy Services for Application Architecture."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Information technology consultation services"	14-Apr-08	30-Jun-08	110000.00	="06/ACMA107"	="SMS Management and Technology Ltd"	01-Jul-08 11:24 AM	

+="CN68716-A1"	"Engagement of temporary personnel. Contract amended to increase term by 8 months and increase funds by $47,300.00"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	16-Oct-07	31-Aug-08	97527.56	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 11:31 AM	

+="CN67461"	"Provision of an online safety program for schools and associated issues. Contract amended to add two additional months and increase of funds by $16,080.00."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Education and Training Services"	01-Dec-07	30-Jun-08	130000.00	="06/ACMA157"	="IT Vision"	01-Jul-08 12:15 PM	

+="CN95729"	"Provision of IT contractors services"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	31-Dec-08	86669.00	="06/089-02"	="GMT People Pty Ltd"	01-Jul-08 12:45 PM	

+="CN95733"	"IT Infrastructure Project Manager"	="Civil Aviation Safety Authority"	01-Jul-08	="Information technology consultation services"	01-Jul-08	30-Sep-08	84216.00	="06/157-04"	="Opcomm Pty Ltd"	01-Jul-08 12:57 PM	

+="CN95752"	"Provision of ICT Services"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	88000.00	=""	="Greythorn Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95756"	"IT Project Management Services"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary personnel services"	07-Jan-08	30-Jun-08	113100.00	=""	="Dyntal Pty Ltd"	01-Jul-08 01:43 PM	

+="CN95777"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:32 PM	

+="CN95778"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	120026.50	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:33 PM	

+="CN95780"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	146019.50	="DFAT07-DID-004"	="ICON RECRUITMENT PTY LTD"	01-Jul-08 02:33 PM	

+="CN95783"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	109043.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:34 PM	

+="CN95784"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	111617.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:34 PM	

+="CN95786"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:35 PM	

+="CN95787"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:35 PM	

+="CN95788"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	111617.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:35 PM	

+="CN95789"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	107030.00	="DFAT07-DID-004"	="CLICKS RECRUIT PTY LTD"	01-Jul-08 02:35 PM	

+="CN95790"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	128436.00	="DFAT07-DID-004"	="AFFINITY IT RECRUITMENT PTY LIMITED"	01-Jul-08 02:36 PM	

+="CN95791"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="ACUMEN CONTRACTING AND RECRUITMENT PTY LTD"	01-Jul-08 02:36 PM	

+="CN95792"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	120791.00	="DFAT07-DID-004"	="ACUMEN CONTRACTING AND RECRUITMENT PTY LTD"	01-Jul-08 02:36 PM	

+="CN95793"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	84095.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:36 PM	

+="CN95794"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	97856.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95795"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	110088.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95796"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	97856.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95797"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	114675.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:38 PM	

+="CN95798"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	107030.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:38 PM	

+="CN95800"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	103972.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:39 PM	

+="CN95802"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	99385.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95807"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	114675.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:40 PM	

+="CN95808"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	122320.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:41 PM	

+="CN95820-A1"	"Provision of services in relation to business analysis activities"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	31-Dec-08	111724.80	=""	="Oakton AA Services Pty Ltd"	01-Jul-08 03:03 PM	

+="CN95826"	"Legal Advice & Representation"	="Australian Crime Commission"	01-Jul-08	="Legal services"	06-Dec-07	09-Apr-08	83417.96	=""	="Australian Government Solicitor"	01-Jul-08 03:24 PM	

+="CN95850"	"Toyota Hiace 14 Seat Bus(BC) Qty 2"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	19-Dec-08	83325.77	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:33 AM	

+="CN95857"	"Toyota Corolla sedan ( SS) Qty 4"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	21-Nov-08	91857.79	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:35 AM	

+="CN95859"	"Toyota Hilux 4x2 Tray (UM1) Qty 8"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	13-Jun-08	23-Jan-09	134106.64	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:36 AM	

+="CN95878"	"LAPTOP D830"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	13-Jun-08	25-Jun-08	101332.00	=""	="DELL AUSTRALIA PTY LTD"	02-Jul-08 08:40 AM	

+="CN95885"	"Nissan Patrol 4x4 L/S Tray UL1 Qty 2"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	12-Dec-08	82390.31	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:41 AM	

+="CN95889"	"Holden Caprice Sedan (SL) Qty 3"	="Defence Materiel Organisation"	02-Jul-08	="Passenger motor vehicles"	16-Jun-08	04-Dec-08	138330.32	=""	="LEASEPLAN AUSTRALIA LTD"	02-Jul-08 08:43 AM	

+="CN95899"	"CUSTOMS IMPORT CHARGES FOR EQUIPMENT FOR THE SEA TRIALS (TORPEDO FIRINGS)"	="Defence Materiel Organisation"	02-Jul-08	="Guided missiles"	13-Jun-08	30-Apr-09	82241.67	=""	="UPS SUPPLY CHAIN SOLUTIONS"	02-Jul-08 08:44 AM	

+="CN95909"	"MV Kimbla Maintenance"	="Defence Materiel Organisation"	02-Jul-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jun-08	30-Jun-09	125469.68	=""	="HELSCO PTY LTD"	02-Jul-08 08:46 AM	

+="CN95915"	"3057 HMAS ARUNTA DSRA06/IMAV07 PROVISION OF IT SUPPORT AND INFRASTRUCTURE"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	11-Jun-08	30-Sep-08	95885.39	=""	="CSC AUSTRALIA PTY LTD"	02-Jul-08 08:47 AM	

+="CN95919"	"Provision of Avionics Logistics Engineer Seahawk Capability Assurance Program 1"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	11-Jun-08	12-Dec-08	143968.50	=""	="SME GATEWAY LIMITED"	02-Jul-08 08:48 AM	

+="CN95920"	"Provision of Avionics Logistics Engineer Seahawk Capability Assurance Program 1"	="Defence Materiel Organisation"	02-Jul-08	="Professional engineering services"	11-Jun-08	09-Oct-09	132704.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	02-Jul-08 08:48 AM	

+="CN95945-A1"	"DMO RELOCATIONS 6-23 JUNE 08  ASSIST WITH MOVING OF COMPUTER EQUIPMENT"	="Defence Materiel Organisation"	02-Jul-08	="Relocation services"	11-Jun-08	30-Jun-08	88000.00	=""	="RELOCATION LAWS PTY LTD"	02-Jul-08 08:53 AM	

+="CN95948"	"ISR 1704 Support"	="Defence Materiel Organisation"	02-Jul-08	="Satellites"	17-Jun-08	30-Jun-08	128066.40	=""	="KAZ GROUP PTY LTD"	02-Jul-08 08:54 AM	

+="CN95949-A1"	"BUSINESS SUITE FOR AUSA 2008 AND ASSOCIATED COSTS"	="Defence Materiel Organisation"	02-Jul-08	="Trade shows and exhibits"	30-Jun-08	31-Dec-08	88302.25	=""	="GES EXPOSITION SERVICES"	02-Jul-08 08:54 AM	

+="CN95988"	"CONDITIONS OF CONTRACT: Attached Standard Conditio Supplementary Conditions. Note: In accordance wit"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	18-Jun-08	30-Sep-08	84551.39	=""	="ZF LUFTFAHRTTECHNIK GMBH"	02-Jul-08 09:02 AM	

+="CN95992-A2"	"     Techanical assistance in the development C-130J AIRCRAFT STRUCTURAL INTEGRITY PRoGRAM FY08/09 AND 09/10     "	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	30-Jun-09	123000.00	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 09:03 AM	

+="CN95996"	"PRINTER MILESTONE PAYMENTS"	="Defence Materiel Organisation"	02-Jul-08	="Office machines and their supplies and accessories"	19-Jun-08	30-Sep-09	109022.10	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:04 AM	

+="CN96003"	"Amend and update Australian Book of References for Integrated Logistic Systems"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	18-Jun-08	18-Jun-08	108790.00	=""	="AIMTEK PTY LTD"	02-Jul-08 09:05 AM	

+="CN96011"	"PC9 Aircraft Spares - PC9 RO Deeper Maintenance Contract No. V310148"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	18-Jun-08	30-Jun-08	147861.81	=""	="AIRFLITE PTY LTD"	02-Jul-08 09:06 AM	

+="CN96017"	"P3 Accord Web Services (PAWS) Upgrade Laptops"	="Defence Materiel Organisation"	02-Jul-08	="Components for information technology or broadcasting or telecommunications"	18-Jun-08	27-Jun-08	96347.10	=""	="DATA 3 GROUP"	02-Jul-08 09:08 AM	

+="CN96024"	"REP Engine sn: 7511"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	25-Jul-08	111358.78	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:09 AM	

+="CN96027"	"replace seat pan assembly"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	19-Jun-08	25-Jun-08	83703.16	=""	="BAE SYSTEMS AUSTRALIA - GBP"	02-Jul-08 09:11 AM	

+="CN96030"	"CADAS SERVER SIDE MODULES AND LICENSES"	="Defence Materiel Organisation"	02-Jul-08	="Electrical equipment and components and supplies"	19-Jun-08	19-Jun-08	98184.57	=""	="AIRSERVICES AUSTRALIA"	02-Jul-08 09:12 AM	

+="CN96041"	"DMS Priority Change Manger"	="Defence Materiel Organisation"	02-Jul-08	="Audio and visual presentation and composing equipment"	19-Jun-08	30-Jun-08	137390.00	=""	="DEFENCE MARITIME SERVICES PTY"	02-Jul-08 09:14 AM	

+="CN96051"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	19-Jun-08	30-Sep-09	109828.40	=""	="THALES AUSTRALIA LIMITED"	02-Jul-08 09:17 AM	

+="CN96067"	"Qualification of the Basic Helmets Configuration MRHPO"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft equipment"	17-Jun-08	30-Jun-09	130917.95	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 09:20 AM	

+="CN96071"	"Provision of Assistant Configuration Manager"	="Defence Materiel Organisation"	02-Jul-08	="Audio and visual presentation and composing equipment"	17-Jun-08	19-Dec-08	93086.40	=""	="SKILLED GROUP LTD"	02-Jul-08 09:21 AM	

+="CN96093"	"PSP in Support of the AMES RF Simulators"	="Defence Materiel Organisation"	02-Jul-08	="Aircraft"	18-Jun-08	30-Jan-09	115000.00	=""	="JENKINS ENGINEERING DEFENCE"	02-Jul-08 09:26 AM	

+="CN96116"	"Data processing hardware and software"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	30-Sep-08	93685.15	=""	="DETICA LTD"	02-Jul-08 09:31 AM	

+="CN96119"	"ATD Number: 54-A  Crash Data recorder (CDR) Intega (ILS) Management & Support."	="Defence Materiel Organisation"	02-Jul-08	="Manufacturing support services"	18-Jun-08	31-Jan-09	89081.30	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:32 AM	

+="CN96125"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	18-Jun-08	31-Jul-08	89575.32	=""	="STROUD CONSULTING AUSTRALIA PTY LTD"	02-Jul-08 09:33 AM	

+="CN96134"	"Contract C338542 - Non-Recurring Setup Costs"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	26-Jun-08	30-Jun-08	144942.11	=""	="AUSTRALIAN AEROSPACE PTY LTD"	02-Jul-08 09:34 AM	

+="CN96159-A1"	"PROVISION OF AIRCREW HELMETS"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	12-Nov-07	31-Dec-08	133779.54	=""	="THALES AUSTRALIA"	02-Jul-08 09:38 AM	

+="CN96166"	"CORRECTIVE MAINTENANCE ON MHC URDEF"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	03-Aug-07	28-Aug-07	103745.52	=""	="THALES UNDERWATER SYSTEMS P/L"	02-Jul-08 09:39 AM	

+="CN96167"	"Professional Service Provider - Scheduling"	="Defence Materiel Organisation"	02-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Dec-08	107800.00	=""	="SYPAQ SYSTEMS PTY LTD"	02-Jul-08 09:39 AM	

+="CN96169"	"Software development"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	20-Aug-07	12-Jan-09	109875.96	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 09:40 AM	

+="CN96170"	"Support Services for FFG Integrated Material Support (IMS) Contract"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-May-08	28-Jun-08	104500.00	=""	="TILFORTH CONSULTING SERVICES"	02-Jul-08 09:40 AM	

+="CN96181"	"Interim In-Service Support to the Deployable Mine Clearance Diving Headquarters"	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	31-Dec-08	97724.66	=""	="COMPUCAT RESEARCH PTY LTD"	02-Jul-08 09:41 AM	

+="CN96186"	"procurement training"	="Defence Materiel Organisation"	02-Jul-08	="Office supplies"	01-Jul-07	31-Dec-07	85000.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	02-Jul-08 09:42 AM	

+="CN96195"	"REPAIR OF REPAIRABLES UNDER $10K BULK ORDER"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-Jun-08	30-Jun-08	122901.66	=""	="THALES AUSTRALIA"	02-Jul-08 09:43 AM	

+="CN96212"	"TS0082-3 INSTALLATION OF LINK 16 AND VMF"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	22-Feb-06	30-Jun-06	87319.76	=""	="SAAB SYSTEMS PTY LTD"	02-Jul-08 09:46 AM	

+="CN96214"	"INTERIM SUPPORT ARRANGEMENTS FOR EPPS SOFTWARE DEVELOPED APPLICATIONS"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	30-Jun-08	31-Dec-08	114924.00	=""	="EPPS SOFTWARE PTY LTD"	02-Jul-08 09:46 AM	

+="CN96215-A1"	"In Service Support Contract Price Escalation"	="Defence Materiel Organisation"	02-Jul-08	="Launchers"	19-Jun-08	30-Jun-08	80859.90	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 09:47 AM	

+="CN96226"	"Hydrographic survey system upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	30-May-08	30-May-08	148963.73	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	02-Jul-08 09:49 AM	

+="CN96255"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS TOOWOOMBA DURING IMAV01/PSA"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	12-Nov-07	30-Apr-08	98946.10	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:54 AM	

+="CN96264"	"UNIT LEVEL TOOL - RESOURCE ALLOCATION (ULTRA) CAPABILITY FOR AIR COMMAND SUPPORT SYSTEMS (ACSS)"	="Defence Materiel Organisation"	02-Jul-08	="Computer services"	12-Nov-07	30-Jun-08	102000.00	=""	="OCEAN SOFTWARE PTY LTD"	02-Jul-08 09:55 AM	

+="CN96285-A1"	"TS 4188 - IMS GENERAL SUPPORT"	="Defence Materiel Organisation"	02-Jul-08	="Military watercraft"	25-Jun-08	30-Apr-10	140936.50	=""	="TENIX DEFENCE PTY LTD"	02-Jul-08 09:59 AM	

+="CN96291"	"Task backlog close out Task Groups 1A, 1B and 1C"	="Defence Materiel Organisation"	02-Jul-08	="Electrical components"	19-Jun-08	20-Jun-08	135058.96	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	02-Jul-08 10:00 AM	

+="CN96295"	"Maintenance Management for STS YOUNG ENDEAVOUR"	="Defence Materiel Organisation"	02-Jul-08	="Service Industry Machinery and Equipment and Supplies"	30-May-08	30-Nov-08	90085.39	=""	="SME GATEWAY LIMITED"	02-Jul-08 10:01 AM	

+="CN96312"	"Development of training course packages for C-17"	="Defence Materiel Organisation"	02-Jul-08	="Classroom and instructional and institutional furniture and fixtures"	10-Jun-08	30-Sep-08	101028.95	=""	="DEPARTMENT OF DEFENCE"	02-Jul-08 10:03 AM	

+="CN96328-A1"	"Joint Electronic Fuel Management (JEFM) Project Software ILS/Transition Support"	="Defence Materiel Organisation"	02-Jul-08	="Management support services"	30-Jun-08	30-Jun-08	101750.00	=""	="KPMG"	02-Jul-08 10:05 AM	

+="CN96329"	"Survey Motor Launch switchboard upgrade"	="Defence Materiel Organisation"	02-Jul-08	="Marine transport"	22-May-08	28-May-08	88000.00	=""	="G A GLANVILLE & CO"	02-Jul-08 10:05 AM	

+="CN96333"	"Use of Exisitng ASP Contract  - Tank Feed Water Clean Up"	="Defence Materiel Organisation"	02-Jul-08	="Cleaning Equipment and Supplies"	29-May-08	06-Aug-08	89068.10	=""	="ASP SHIP MANAGEMENT PTY LTD"	02-Jul-08 10:06 AM	

+="CN96345"	"Perform R5 Service on Navy AS350BA Squirrel Helico N22-017 (864)"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	29-May-08	31-May-08	110066.82	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 10:08 AM	

+="CN96349-A2"	" Quantiry of 16 x DLAN Hands on Technology Racks.       "	="Defence Materiel Organisation"	02-Jul-08	="Computer Equipment and Accessories"	30-Nov-07	25-Jun-08	82511.97	=""	="THALES AUSTRALIA"	02-Jul-08 10:09 AM	

+="CN96362"	"Professional scheduling services - Ph3"	="Defence Materiel Organisation"	02-Jul-08	="Temporary personnel services"	01-Jul-08	31-Dec-08	122515.26	=""	="JACOBS AUSTRALIA"	02-Jul-08 10:10 AM	

+="CN96372"	"Stand assembly Lifting & Blocking - M113"	="Department of Defence"	02-Jul-08	="Armoured fighting vehicles"	27-Jun-08	23-Sep-08	126222.67	=""	="TENIX DEFENCE PTY LTD LAND DIV"	02-Jul-08 10:12 AM	

+="CN96390"	"Services of AIR05276PH8A ESM ATE Project Engineering Manager"	="Defence Materiel Organisation"	02-Jul-08	="Aerospace systems and components and equipment"	12-May-08	30-Jun-08	114112.53	=""	="AUSTRALIAN AEROSPACE LTD"	02-Jul-08 10:14 AM	

+="CN96408-A1"	" Provision of temporary employee "	="Questacon"	02-Jul-08	="Temporary personnel services"	31-Mar-08	31-Jul-08	129853.00	=""	="Adecco Australia Pty Ltd"	02-Jul-08 10:17 AM	

+="CN94820"	"Contractor for Communications & Publishing Section"	="Australian Communications and Media Authority (ACMA)"	02-Jul-08	="Temporary personnel services"	09-Jan-08	24-Sep-08	90000.00	="05/ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	02-Jul-08 10:32 AM	

+="CN96425-A1"	"Provision of System Support Services"	="Family Court of Australia"	02-Jul-08	="Engineering and Research and Technology Based Services"	07-Jul-08	09-Jan-09	115200.00	=""	="Clicks I.T. Recruitment"	02-Jul-08 10:49 AM	

+="CN96435-A1"	"Provision of System Support Officer Services"	="Family Court of Australia"	02-Jul-08	="Engineering and Research and Technology Based Services"	01-Jul-08	28-Feb-09	82423.00	=""	="Stratagem Computer Contractors Pty Ltd"	02-Jul-08 11:37 AM	

+="CN96464-A1"	" Copyright fees and royalties "	="Centrelink"	02-Jul-08	="Office supplies"	13-Mar-08	30-Jun-08	112448.37	=""	="Copyright Agency Ltd"	02-Jul-08 12:18 PM	

+="CN96466"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	24-Jun-08	31-Dec-08	90090.00	="RFTS07/0129"	="Stratagem"	02-Jul-08 12:19 PM	

+="CN96468"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	27-Feb-08	31-Dec-08	138138.00	="RFTS07/0129"	="Diversiti Pty Ltd"	02-Jul-08 12:19 PM	

+="CN96490"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	30-Sep-08	90090.00	="RFTS07/0129"	="CSC Australia Pty Ltd"	02-Jul-08 12:23 PM	

+="CN96496"	"IT Specialist Services Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	28-Apr-08	31-Dec-08	121321.20	=""	="Verossity Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96497"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	19-Feb-08	31-Dec-08	99699.60	="SON50822"	="Verossity Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96498"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	15-Apr-08	31-Dec-08	118918.80	="RFTS07/0129"	="Compas Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96499"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	16-May-08	31-Dec-08	116820.00	="RFTS07/0129"	="Rosslogic Pty Ltd"	02-Jul-08 12:24 PM	

+="CN96501"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	18-Jun-08	12-Dec-08	91476.00	="SON50822"	="Omaha IT Services Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96503"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	17-Jun-08	31-Dec-08	121321.20	=""	="Peoplebank Australia Pty Ltd"	02-Jul-08 12:25 PM	

+="CN96508"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	18-Jun-08	31-Dec-08	114114.00	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	02-Jul-08 12:26 PM	

+="CN96509"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	26-Jun-08	31-Jan-09	98463.75	="SON50822"	="OOSW Consulting Pty Ltd"	02-Jul-08 12:26 PM	

+="CN96510"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	18-Jun-08	31-Dec-08	120120.00	="RFTS07/0129"	="Candle IT and T Recruitment"	02-Jul-08 12:26 PM	

+="CN96512"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	23-Jun-08	30-Jun-08	120120.00	="RFTS07/0129"	="Tarakan Consulting Pty Ltd"	02-Jul-08 12:27 PM	

+="CN96516"	"IT Specialist Services by Specified Personnel"	="Centrelink"	02-Jul-08	="Computer services"	20-Feb-08	31-Dec-08	103903.80	="RFTS07/0129"	="Nova IT"	02-Jul-08 12:27 PM	

+="CN96539"	"Development of facilitators kits"	="Australian Public Service Commission"	02-Jul-08	="Education and Training Services"	26-Jun-08	30-Dec-08	83160.00	=""	="Talkforce Consultants & Trainers"	02-Jul-08 12:41 PM	

+="CN96561"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	02-Jul-08	="Travel and Food and Lodging and Entertainment Services"	14-May-08	14-May-08	144210.24	=""	="The Westin - Sydney"	02-Jul-08 12:45 PM	

+="CN96570"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	80045.66	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 01:28 PM	

+="CN96571"	"Rates and Water Meters for various Defence properties around Cairns"	="Department of Defence"	02-Jul-08	="Utilities"	16-Jun-08	30-Jun-09	136224.00	=""	="CAIRNS CITY COUNCIL"	02-Jul-08 01:28 PM	

+="CN96574"	"PROVISION OF PROFESSIONAL SERVICE PROVIDERS FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-09	87120.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	02-Jul-08 01:28 PM	

+="CN96580"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-09	87120.00	=""	="ROSS"	02-Jul-08 01:29 PM	

+="CN96593"	"Dual Socket, quad core Intel x3650-1TB"	="Department of Defence"	02-Jul-08	="Hardware"	16-Jun-08	30-Jun-08	87565.50	=""	="IBM AUSTRALIA LTD"	02-Jul-08 01:30 PM	

+="CN96595"	"FP & EM Fire Reactives (LIA) work directions for CNNSW for FY08/09"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-09	87935.64	=""	="SSL ASSET SERVICES PTY LTD"	02-Jul-08 01:30 PM	

+="CN96604"	"C17A LAIRCM TRAINING DEVELOPMENT"	="Department of Defence"	02-Jul-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Jun-08	30-Sep-08	89094.50	=""	="JACOBS AUSTRALIA"	02-Jul-08 01:31 PM	

+="CN96628"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	01-May-09	82567.32	=""	="GEORGE PATTERSON Y & R"	02-Jul-08 01:33 PM	

+="CN96638"	"Computer equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	108147.93	=""	="HEWLETT PACKARD AUSTRALIA LTD"	02-Jul-08 01:34 PM	

+="CN96641"	"PROVISION OF PROFESSIONAL SERVICE PROVIDERS FOR FY 08/09"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-08	85800.00	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	02-Jul-08 01:35 PM	

+="CN96667"	" PROFESSIONAL Memberships "	="Department of Defence"	02-Jul-08	="Professional associations"	16-Jun-08	22-Jun-08	98392.80	=""	="MARIN"	02-Jul-08 01:37 PM	

+="CN96672"	"Transmission Services"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	03-Oct-12	135277.00	=""	="VERIZON AUSTRALIA PTY LTD"	02-Jul-08 01:37 PM	

+="CN96723"	"HQJOC- C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	80622.63	=""	="THALES AUSTRALIA"	02-Jul-08 01:42 PM	

+="CN96724"	"IT user applications"	="Department of Defence"	02-Jul-08	="Published Products"	26-Jun-08	30-Jun-08	145308.90	=""	="INFOHRM PTY LTD"	02-Jul-08 01:42 PM	

+="CN96770"	"PN-13356- FRONTLINE LICENCE IMPLEMENTATION"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-09	115500.00	=""	="UNITED GROUP SERVICES"	02-Jul-08 01:45 PM	

+="CN96799"	"GI Significant Repairs & Maintenance to Buildings 07/08"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	89230.04	=""	="THALES AUSTRALIA"	02-Jul-08 01:47 PM	

+="CN96809"	"FIRE SERVICES"	="Department of Defence"	02-Jul-08	="Fire services"	17-Jun-08	30-Jun-09	88000.00	=""	="INTERNATIONAL FIRE PROTECTION P/L"	02-Jul-08 01:48 PM	

+="CN96818"	"HQJOC-C41 PROJECT."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	17-Jun-08	30-Jun-08	96493.05	=""	="THALES AUSTRALIA"	02-Jul-08 01:48 PM	

+="CN96823"	"AIRFIELD MAINTENANCE"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-08	96123.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 01:48 PM	

+="CN96840"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	137301.99	=""	="PEAK SECURITY"	02-Jul-08 01:49 PM	

+="CN96845"	"BUSINESS COSTS"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Sep-08	110000.00	=""	="BANISTER CONSULTING SOLUTIONS P/L"	02-Jul-08 01:50 PM	

+="CN96855"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	130551.38	=""	="STAFF CHECK PTY LTD"	02-Jul-08 01:50 PM	

+="CN96856"	"furniture"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	08-Apr-08	30-Jun-08	99914.90	=""	="THE GOOD GUYS EDWARDSTOWN"	02-Jul-08 01:50 PM	

+="CN96867"	"CMC ALLOCATIONS & COMMITMENT -GB&FM ROUTINE MAINTENANCE WORKS"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	17-Jun-08	30-Jun-08	120270.91	=""	="ASSET SERVICES"	02-Jul-08 01:51 PM	

+="CN96879"	"FACOPS - SA2345 WOOM RANGE REACTIVE MAINT"	="Department of Defence"	02-Jul-08	="Environmental management"	19-Jun-08	30-Jun-08	110000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 01:51 PM	

+="CN96886"	"ELECTRICITY SUPPLY"	="Department of Defence"	02-Jul-08	="Utilities"	19-Jun-08	30-Jun-08	100000.00	=""	="ACTEWAGL RETAIL LTD"	02-Jul-08 01:52 PM	

+="CN96889"	"JP2048 PH4A/B-AMPHIBIOUS SHIPS,INFRASTRUCTURE AT G SBC CONSULTANT FOR THE ADAS INFRASTRUCTURE PROJEC"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	24-Jun-08	30-Jun-08	122859.00	=""	="WORLEY PARSONS SERVICES PTY LTD"	02-Jul-08 01:52 PM	

+="CN96922"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	31-Mar-09	88000.00	=""	="APIS CONSULTING GROUP"	02-Jul-08 01:54 PM	

+="CN96930"	"PSP SUPPORT SERVICES - TASK PLAN LAND PHASE3"	="Department of Defence"	02-Jul-08	="Project management"	18-Jun-08	30-Jun-08	81503.00	=""	="PROJECT OUTCOMES PTY LTD"	02-Jul-08 01:55 PM	

+="CN96936"	"Provision of Radio Frequency Technical Advice in Design, Manufacture & Testing for DSTO"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	86940.00	=""	="GADZOOKS PTY LTD"	02-Jul-08 01:55 PM	

+="CN96952"	"Model and Software Development in Support of Moving Target Assessment for AIR 5418"	="Department of Defence"	02-Jul-08	="Professional engineering services"	24-Jun-08	30-Jun-08	80960.00	=""	="ASSOCIATED ELECTRONIC SERVICES"	02-Jul-08 01:56 PM	

+="CN96957"	"PSP support for JP2098PH2 Project Management"	="Department of Defence"	02-Jul-08	="Project management"	12-Nov-07	30-Jun-08	123200.00	=""	="ATACS - CONSULTING PTY LTD"	02-Jul-08 01:57 PM	

+="CN96961"	"PROVISION OF PHYSIOTHERAPY SERVICES - HSF EDN RAAF 1/1/08 - 1/1/09"	="Department of Defence"	02-Jul-08	="Healthcare Services"	18-Jun-08	01-Jan-09	118800.00	=""	="NASANSB"	02-Jul-08 01:57 PM	

+="CN96963"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	118902.82	=""	="PEOPLEBANK"	02-Jul-08 01:57 PM	

+="CN96966"	"external service provider"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	133140.41	=""	="ICON RECRUITMENT"	02-Jul-08 01:57 PM	

+="CN96980"	"Professional Services - In house - ERM"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	134062.50	=""	="ENVIRONMENTAL RESOURCES"	02-Jul-08 01:58 PM	

+="CN96982"	"NQ1721 - Lavarack Bks - CSI NQ - Surge Mess Refurb"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	110523.41	=""	="SPOTLESS"	02-Jul-08 01:58 PM	

+="CN96986"	"Software Maintenance Unigraphics/Solid Edge"	="Department of Defence"	02-Jul-08	="Software"	12-Jun-08	27-Jun-08	91492.50	=""	="PRODUCT LIFECYCLE MANAGEMENT"	02-Jul-08 01:58 PM	

+="CN97001"	"AIR 5418: FOLLOW-ON STAND OFF WEAPON FCY TINDAL - CW - PM/CA"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Jun-08	30-Jun-10	120626.00	=""	="CONNELL WAGNER PTY LTD"	02-Jul-08 02:00 PM	

+="CN97006"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	21-May-08	21-May-08	122110.36	=""	="GETRONICS (AUSTRALIA) PTY LTD"	02-Jul-08 02:01 PM	

+="CN97013"	"Services as per RFT 0708-272"	="Department of Defence"	02-Jul-08	="Laboratory and scientific equipment"	12-Jun-08	30-Jun-09	106985.04	=""	="CHEMSKILL"	02-Jul-08 02:01 PM	

+="CN97017"	"PROVISION OF ADDITIONAL SERVICES PROVIDED OUTSIDE PSSC CONTRACT N260264"	="Department of Defence"	02-Jul-08	="Military watercraft"	27-Jun-08	30-Jun-08	110000.00	=""	="DEFENCE MARITIME SERVICES"	02-Jul-08 02:02 PM	

+="CN97020"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	82500.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	02-Jul-08 02:02 PM	

+="CN97024"	"COST FOR ADDITIOAL STUDIO OVERAGES FOR THE PERIOD DECEMBER 2007, AS PER LETTER ATTACHED TO PURCHASE"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	30-Jun-08	95221.50	=""	="GEORGE PATTERSON Y & R"	02-Jul-08 02:02 PM	

+="CN97030"	"Defence Desktop Support Role"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	30-Jun-08	30-Jun-08	130075.50	=""	="LOGITECH PTY LTD"	02-Jul-08 02:02 PM	

+="CN97041"	"GAS SUPPLY"	="Department of Defence"	02-Jul-08	="Utilities"	07-May-08	30-Sep-08	125747.60	=""	="ENERGY AUSTRALIA"	02-Jul-08 02:03 PM	

+="CN97068"	"ARMOURED FIGHTING VEHICLE FIELD FIRING TRAINING SI DSC-A4473 FIELD FIRING TRAINING SYSTEM."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-09	145379.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	02-Jul-08 02:05 PM	

+="CN97088"	"Project Management"	="Department of Defence"	02-Jul-08	="Hardware"	12-Nov-07	10-Sep-09	112359.50	=""	="LOCKHEED MARTIN AUSTRALIA P / L"	02-Jul-08 02:07 PM	

+="CN97093"	"CONTRACT SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	30-Jun-08	30-Jun-08	108882.40	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	02-Jul-08 02:07 PM	

+="CN97098"	"Software Engineer support"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	12-Jun-08	12-Dec-08	95700.00	=""	="SMS DEFENCE SOLUTIONS PTY LTD"	02-Jul-08 02:07 PM	

+="CN97122"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Nov-08	117000.00	=""	="ACUMEN ALLIANCE"	02-Jul-08 02:09 PM	

+="CN97157"	"NQ1736 NQ Termite and Pest Control."	="Department of Defence"	02-Jul-08	="Environmental management"	16-Jun-08	30-Jun-09	139140.61	=""	="SPOTLESS"	02-Jul-08 02:11 PM	

+="CN97162"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	31-Jan-09	99000.00	=""	="EFFECTIVE CONSULTING AND"	02-Jul-08 02:11 PM	

+="CN97165"	"Services of apprentices for SES"	="Department of Defence"	02-Jul-08	="Professional engineering services"	13-Jun-08	26-Jun-09	85513.74	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	02-Jul-08 02:11 PM	

+="CN97190"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	84700.00	=""	="CORDELTA PTY LTD"	02-Jul-08 02:13 PM	

+="CN97201"	"SECURITY WORKS"	="Department of Defence"	02-Jul-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	16-Jun-08	16-Jun-08	146018.00	=""	="CHUBB ELECTRONIC SECURITY"	02-Jul-08 02:14 PM	

+="CN97215"	"PROCUREMENT ASSISTANCE FOR THE GEMS PROJECT"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	16-Mar-09	119681.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	02-Jul-08 02:15 PM	

+="CN97219"	"Computer equipment"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	82959.27	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Jul-08 02:15 PM	

+="CN97249"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Sep-08	108900.00	=""	="TOTAL DECISION SUPPORT PTY LTD"	02-Jul-08 02:18 PM	

+="CN97256"	"REPAIR TO LEASED VEHICLES OBG(W)-4"	="Department of Defence"	02-Jul-08	="Motor vehicles"	09-Jun-08	09-Jun-08	81888.26	=""	="FUTURE SERVICES GENERAL TRADING CO."	02-Jul-08 02:18 PM	

+="CN97277"	"RUSSELL-R5-PROJECT TRAVELLER-MANAGEMENT FEES"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	124405.14	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:19 PM	

+="CN97280"	"SUPPLY AND DELIVERY OF BUILDINGS - FLLA B"	="Department of Defence"	02-Jul-08	="Prefabricated structures"	11-Jun-08	12-Jun-08	122374.25	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:20 PM	

+="CN97282"	"SUPPLY AND INSTALLATION 3 X BUILDINGS - FLLA K"	="Department of Defence"	02-Jul-08	="Prefabricated structures"	24-May-08	12-Jun-08	110038.20	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	02-Jul-08 02:20 PM	

+="CN97283"	"WHN - ESD works Water efficent urinal trial"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	13-Jun-08	30-Jun-08	120648.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:20 PM	

+="CN97291"	"Aircraft Technical Support"	="Department of Defence"	02-Jul-08	="Aircraft equipment"	13-Jun-08	30-Jun-09	148455.12	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	02-Jul-08 02:20 PM	

+="CN97297"	"Continuation of Hire of Staff as per Standing Offe"	="Department of Defence"	02-Jul-08	="Motor vehicles"	13-Jun-08	30-Jun-08	90418.39	=""	="DRAKE INTERNATIONAL"	02-Jul-08 02:21 PM	

+="CN97300"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	83405.35	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:21 PM	

+="CN97322"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	18-Jun-08	31-Jul-08	103290.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:23 PM	

+="CN97325"	"FORT DIRECTION: EXPLOSIVE STORAGE UPGRADE HLA ENSR (ENVIRONMENTAL/HERITAGE  &  I"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	18-Jun-08	30-Jun-09	138050.00	=""	="ENSR AUSTRALIA PTY LIMITED"	02-Jul-08 02:23 PM	

+="CN97340"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	128365.61	=""	="PERSEC SOLUTIONS PTY LTD"	02-Jul-08 02:24 PM	

+="CN97343"	"COMPUTER EQUIPMENT"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	19-Jun-08	101992.91	=""	="GETRONICS (AUSTRALIA) PTY LTD"	02-Jul-08 02:24 PM	

+="CN97358"	"SN02715- Works for Russell R4-3-104 - New Band"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-08	105913.50	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:25 PM	

+="CN97371"	"Network and data links"	="Department of Defence"	02-Jul-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	104500.00	=""	="TELSTRA"	02-Jul-08 02:26 PM	

+="CN97384"	"0506-211 CASUAL STAFF"	="Department of Defence"	02-Jul-08	="Temporary personnel services"	18-Jun-08	30-Jun-09	110110.00	=""	="SEARSON BUCK PTY LTD"	02-Jul-08 02:27 PM	

+="CN97389"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	29-Nov-07	31-Oct-08	82309.93	=""	="ICON RECRUITMENT"	02-Jul-08 02:27 PM	

+="CN97416"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-09	124892.64	=""	="PAXUS AUSTRALIA PTY LTD"	02-Jul-08 02:30 PM	

+="CN97426"	"HMAS STIRLING - GUIDED WEAPONS IN SERVICE SUPPORT FACILITY (GWISS)"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	96954.00	=""	="PERTH BUILDING COMPANY PTY LTD"	02-Jul-08 02:31 PM	

+="CN97438"	"Routine General Building Works"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	18-Apr-08	30-Jun-08	147644.20	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:32 PM	

+="CN97440"	"Mapping Services"	="Department of Defence"	02-Jul-08	="Electronic reference material"	24-Jun-08	30-Jun-08	97825.00	=""	="EARTHDATA INTERNATIONAL LLC"	02-Jul-08 02:32 PM	

+="CN97441"	"software Licence"	="Department of Defence"	02-Jul-08	="Software"	18-Jun-08	30-Jun-08	133166.47	=""	="MENTOR TECHNOLOGIES"	02-Jul-08 02:32 PM	

+="CN97445"	"Duramin 500-Z25 Hardness Tester, Vickers Indenter,  Lens, LED Lighting, Dust Cover, Software Tool"	="Department of Defence"	02-Jul-08	="Industrial pumps and compressors"	19-Jun-08	01-Aug-08	108467.70	=""	="INTELLECTION PTY LTD"	02-Jul-08 02:33 PM	

+="CN97451"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	99158.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:33 PM	

+="CN97452"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-10	99000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	02-Jul-08 02:33 PM	

+="CN97464"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	31-Jan-09	132000.00	=""	="WORK SOLUTIONS AUSTRALIA"	02-Jul-08 02:34 PM	

+="CN97477"	"AIR 8000 PHASE 3-HEAVY AIR LIFT(HAL)FACILITIES."	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	19-Jun-08	30-Jun-09	94600.00	=""	="SERCO SODEXHO DEFENCE SERVICES"	02-Jul-08 02:35 PM	

+="CN97484"	"Software Development Support for Liverspaces Related Development"	="Department of Defence"	02-Jul-08	="Engineering and Research and Technology Based Services"	19-Dec-07	30-Oct-08	115449.66	=""	="KARU IT PTY LTD"	02-Jul-08 02:36 PM	

+="CN97491"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	02-Jul-08	="Legal services"	10-Jun-08	30-Jun-09	143260.00	=""	="CLAYTON UTZ"	02-Jul-08 02:36 PM	

+="CN97493"	"INMARSAT TT3080A Satellite Terminals"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	10-Jun-08	30-Jun-08	137280.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	02-Jul-08 02:37 PM	

+="CN97508"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	01-Aug-08	131363.43	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:38 PM	

+="CN97510"	"Desktop Computers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	19-Jun-08	07-Jul-08	117460.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	02-Jul-08 02:38 PM	

+="CN97512"	"POLOMASTER PM1401K AND PM1703GNB RADIONUCLIDE INDE  &  SOFTAWRE."	="Department of Defence"	02-Jul-08	="Measuring and observing and testing instruments"	19-Jun-08	30-Jul-08	98340.00	=""	="INDERLEC MEDICAL SYSTEMS PTY LTD"	02-Jul-08 02:38 PM	

+="CN97526"	"DEVELOPMENT OF A DRAFT SAFETY CASE"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	119988.00	=""	="COFFEY CORPORATE"	02-Jul-08 02:40 PM	

+="CN97554"	"MAIL SERVICES"	="Department of Defence"	02-Jul-08	="Transportation and Storage and Mail Services"	10-Jun-08	01-Jul-08	110000.00	=""	="DHL INTERNATIONAL"	02-Jul-08 02:43 PM	

+="CN97615"	"POLLUTION PREVENTION & CVONTAMINATION MANAGEMENT"	="Department of Defence"	02-Jul-08	="Environmental management"	11-Jun-08	30-Jun-09	140700.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	02-Jul-08 02:49 PM	

+="CN97632"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	95700.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:50 PM	

+="CN97634"	"Printers"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	07-Jul-08	92400.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	02-Jul-08 02:50 PM	

+="CN97635"	"PROFESSIONAL SERVICES"	="Department of Defence"	02-Jul-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	95400.00	=""	="BOOZ & COMPANY (AUSTRALIA) LTD"	02-Jul-08 02:50 PM	

+="CN97641"	"Media converters"	="Department of Defence"	02-Jul-08	="Hardware"	12-Jun-08	30-Jun-08	82296.50	=""	="COMPUTERCORP PTY LTD"	02-Jul-08 02:51 PM	

+="CN97644"	"LICENSE -"	="Department of Defence"	02-Jul-08	="Communications Devices and Accessories"	17-Jun-08	26-Jun-08	113471.60	=""	="AUSPACE LIMITED"	02-Jul-08 02:51 PM	

+="CN97651"	"FACOPS"	="Department of Defence"	02-Jul-08	="Building construction and support and maintenance and repair services"	11-Jun-08	30-Jun-09	131267.40	=""	="SPOTLESS P & F PTY LTD"	02-Jul-08 02:52 PM	

+="CN97654"	"AIR CHTR EX WANTOK WARRIOR"	="Department of Defence"	02-Jul-08	="Aircraft"	17-Jun-08	29-Jun-08	120000.00	=""	="INDEPENDENT AVIATION PTY LTD"	02-Jul-08 02:52 PM	

+="CN97665"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	80045.66	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:53 PM	

+="CN97684"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	80045.66	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:55 PM	

+="CN97708"	"SA2719 WOOM Electrical Reticulation Storm Damage"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-08	99810.36	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97710"	"Contract Services MEAO"	="Department of Defence"	02-Jul-08	="Business and corporate management consultation services"	11-Jun-08	30-Jun-08	126750.05	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	02-Jul-08 02:57 PM	

+="CN97712"	"SA2265 WOOM Hangar 2 Refurbishment of Office Spaces"	="Department of Defence"	02-Jul-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-09	149307.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97714"	"OFFICE FURNITURE"	="Department of Defence"	02-Jul-08	="Furniture and Furnishings"	11-Jun-08	30-Jun-08	99057.20	=""	="OFFICEMAX AUSTRALIA LTD"	02-Jul-08 02:57 PM	

+="CN97730"	"Multi Computer Switch"	="Department of Defence"	02-Jul-08	="Computer Equipment and Accessories"	17-Jun-08	01-Jul-08	80045.66	=""	="TENIX DATAGATE PTY LTD"	02-Jul-08 02:59 PM	

+="CN97737"	"Mailhouse Services"	="Workplace Ombudsman"	02-Jul-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-09	81604.69	=""	="Salmat Pty Ltd"	02-Jul-08 03:09 PM	

+="CN97741"	"Repair Aircraft Components, NSN 99-608-4868, Ignition Unit, High Energy, Qty 1"	="Defence Materiel Organisation"	02-Jul-08	="Military rotary wing aircraft"	13-Nov-06	30-Mar-08	116051.20	=""	="GOODRICH CONTROL SYSTEMS"	02-Jul-08 03:34 PM	

+="CN97775"	"FaHCSIA lease contribution Dubbo ACC"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Business administration services"	19-Jun-08	30-Jun-08	123340.20	=""	="MC & JN Perring"	02-Jul-08 04:46 PM	

+="CN97805"	"Sponsorship of the first national Family Relations  Australia conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Marketing and distribution"	27-Jun-08	31-Jan-09	88000.00	=""	="Family Relationship Services Austra"	02-Jul-08 04:51 PM	

+="CN97806-A1"	"Review of Business Govwernment Qualification"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management advisory services"	27-Jun-08	31-Dec-10	85460.00	=""	="Innovation and Business Skills Aust"	02-Jul-08 04:51 PM	

+="CN97820"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	24-Jun-08	30-Sep-08	129360.00	=""	="Avanade Australia Pty Ltd"	02-Jul-08 04:52 PM	

+="CN97821"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	25-Jun-08	03-Oct-08	120120.00	="RFT613"	="Avanade Australia Pty Ltd"	02-Jul-08 04:53 PM	

+="CN97833"	"Evaluation of Family Law Reforms"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	05-Jun-08	127500.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-Jul-08 04:54 PM	

+="CN97840"	"1 Jayco Sterling Outback Caravan/GBM"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Motor vehicles"	06-Jun-08	06-Jun-08	107966.00	=""	="Coromal Caravans NT"	02-Jul-08 04:55 PM	

+="CN97852"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Computer services"	02-Jun-08	28-Nov-08	114400.00	=""	="CAPSE Pty Ltd"	02-Jul-08 04:56 PM	

+="CN97892-A2"	"Executive Search for multiple SES B1 position"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Jul-08	="Human resources services"	11-Jun-08	30-Sep-08	94600.00	=""	="PAPER SHUFFLE PTY LTD"	02-Jul-08 05:03 PM	

+="CN97911"	"Web Redevelopment"	="National Native Title Tribunal"	02-Jul-08	="World wide web WWW site design services"	06-Dec-07	23-Jun-08	142793.50	=""	="Vivid Group"	02-Jul-08 05:29 PM	

+="CN97925"	"COVER, WATER CANTEEN, CLOTH, DUCK, POLYESTER / COTTON CORESPUN, INC STRAP, AUSTRALIAN DP."	="Defence Materiel Organisation"	03-Jul-08	="Harnesses or its accessories"	01-Jul-08	01-Oct-08	95810.00	="CC1VAF"	="Trade Partners International Pty Ltd"	03-Jul-08 09:11 AM	

+="CN97936"	"Advice and support for the development/implementation of ASEAN industry team arrangements."	="Austrade"	03-Jul-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Jun-09	80000.00	=""	="CBA Consulting Group Ltd"	03-Jul-08 09:33 AM	

+="CN97942"	"Parcel Post agreement"	="Civil Aviation Safety Authority"	03-Jul-08	="Postal and small parcel and courier services"	01-Jul-08	30-Jun-09	118000.00	="06/191-01"	="Australia Post"	03-Jul-08 09:35 AM	

+="CN97950"	"Photocopy charges"	="Civil Aviation Safety Authority"	03-Jul-08	="Photocopying"	01-Jul-08	30-Jun-09	132000.00	="06/235-01"	="Ricoh Australia Pty Ltd"	03-Jul-08 09:58 AM	

+="CN97963"	"IT Contractor"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	27-Jun-08	31-Dec-08	116160.00	="RFT 085-2007"	="CONSULTING INSIGHTS PTY LTD"	03-Jul-08 10:30 AM	

+="CN97966"	"Direct Source 6 month contract"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	30-Jun-08	31-Jan-09	110246.40	=""	="ROSS HUMAN DIRECTIONS LTD"	03-Jul-08 10:31 AM	

+="CN97985"	"Specialist Omegamon Services"	="Australian Taxation Office"	03-Jul-08	="Engineering and Research and Technology Based Services"	02-May-08	30-Jun-08	103419.80	=""	="CPT GLOBAL LTD"	03-Jul-08 10:36 AM	

+="CN97993"	"Mobile hardware"	="Civil Aviation Safety Authority"	03-Jul-08	="Phone and video conference equipment and hardware and controllers"	01-Jul-08	30-Jun-09	132000.00	="06/245-01"	="Optus Billing Services Pty Ltd"	03-Jul-08 10:41 AM	

+="CN97997"	"Business Talk"	="Civil Aviation Safety Authority"	03-Jul-08	="Mobile phones"	01-Jul-08	30-Jun-09	132000.00	="06/241-01"	="Optus Billing Services Pty Ltd"	03-Jul-08 10:52 AM	

+="CN98003"	" Audio Counter Measure Services "	="Australian Securities and Investments Commission"	03-Jul-08	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	141384.00	=""	="Howard Rowland Consulting"	03-Jul-08 11:11 AM	

+="CN98013"	"Provision of IT Business Analyst Services"	="Civil Aviation Safety Authority"	03-Jul-08	="Temporary information technology software developers"	01-Aug-08	30-Aug-08	80000.00	="07/026-00"	="Hudson Global Resources"	03-Jul-08 11:27 AM	

+="CN98018"	" IT Business Analyst Services "	="Civil Aviation Safety Authority"	03-Jul-08	="Recruitment services"	01-Jul-08	31-Dec-08	84480.00	="07/049-02"	="Ross Human Directions Group"	03-Jul-08 11:37 AM	

+="CN98214"	"Exercise Bersama Shield 08 76SQN Accomodation Charges 28Apr08-17May08"	="Department of Defence"	03-Jul-08	="Hotels and lodging and meeting facilities"	17-May-08	17-May-08	114603.42	=""	="AMARA SINGAPORE"	03-Jul-08 02:31 PM	

+="CN98375"	" Antiflash Tactile Gloves for Royal Australian Navy "	="Defence Materiel Organisation"	03-Jul-08	="Protective gloves"	17-Apr-08	19-Aug-08	97620.05	="2480041"	="Cooneen Watts and Stone Ltd"	03-Jul-08 08:00 PM 

--- /dev/null
+++ b/admin/partialdata/01Jun2008to03Jun2008valto.xls
@@ -1,1 +1,280 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87266"	" Bras "	="Department of Defence"	02-Jun-08	="Brassieres"	30-May-08	20-Jun-08	10500.00	=""	="SPORTSPOWER"	02-Jun-08 08:05 AM	

+="CN87267-A1"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	02-Jun-08	="Aircraft"	26-May-08	26-Jul-08	38028.69	=""	="Sikorsky Aircraft Australia LTD"	02-Jun-08 08:47 AM	

+="CN87268"	"NSN 3120-00-813-7349 Bearing Plain Rod End"	="Defence Materiel Organisation"	02-Jun-08	="Aerospace systems and components and equipment"	30-May-08	06-Mar-09	19363.41	=""	="Milspec Services Pty Ltd"	02-Jun-08 08:57 AM	

+="CN87270"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	02-Jun-08	="Aircraft"	27-May-08	27-Jul-08	23848.28	=""	="Sikorsky Aircraft Australia LTD"	02-Jun-08 09:02 AM	

+="CN87269"	"SUPPLY OF LARYNGOSCOPES, FIBRE OPTIC SET"	="Defence Materiel Organisation"	02-Jun-08	="Medical Equipment and Accessories and Supplies"	23-Jun-08	30-Jun-08	15345.00	=""	="PROACT MEDICAL SYSTEMS (AUST) P/L"	02-Jun-08 09:04 AM	

+="CN87272"	"Main rotor Blade, P/N 70150-09100-043, S/N A007-06524."	="Defence Materiel Organisation"	02-Jun-08	="Military rotary wing aircraft"	30-May-08	30-Jun-08	70350.79	=""	="Sikorsky Aircraft Australia Limited"	02-Jun-08 09:06 AM	

+="CN87273"	" Various Fire Extinguishers and Brackets :   Dry Chemical 4.5 kg Capacity, Dry Chemical 2.5 kg Capacity, Dry Chemical 9.0 kg Capacity, Foam 90 L Capacity and Brackets to fit 3.0 kg BCF or 2.5 kg DCP extinguishers.    "	="Defence Materiel Organisation"	02-Jun-08	="Fire extinguishers"	28-Apr-08	14-Jun-08	50214.01	=""	="CHUBB FIRE SAFETY LTD"	02-Jun-08 09:11 AM	

+="CN87274"	"Main Rotor Blade, P/N 70150-09100-043, S/N A007-06531."	="Defence Materiel Organisation"	02-Jun-08	="Military rotary wing aircraft"	30-May-08	30-Jun-08	56322.99	=""	="Sikorsky Aircraft Austalia Limited"	02-Jun-08 09:27 AM	

+="CN87277"	"IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	31-Mar-09	192500.00	="RFT 010-2007"	="COLLECTIVE RESOURCES IT RECRUITMENT"	02-Jun-08 09:27 AM	

+="CN87278"	"IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	31-Mar-09	160600.00	="RFT 010-2007"	="COLLECTIVE RESOURCES IT RECRUITMENT"	02-Jun-08 09:27 AM	

+="CN87279"	"Course:MQ05BAU WebSphere MQ Application Programmin"	="Australian Taxation Office"	02-Jun-08	="Education and Training Services"	28-May-08	25-Jun-08	10560.00	=""	="IBM AUSTRALIA LIMITED"	02-Jun-08 09:27 AM	

+="CN87280"	"CHAIRS"	="Australian Taxation Office"	02-Jun-08	="Furniture and Furnishings"	28-May-08	23-Jun-08	20293.68	=""	="STURDY COMPONENTS PTY LTD"	02-Jun-08 09:28 AM	

+="CN87281"	"Web hosting and Maintenance and database redesign and enhancement"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	31-Jul-08	20000.00	=""	="WYS GROUP PTY LTD"	02-Jun-08 09:28 AM	

+="CN87283"	"6 MONTHS RENT FOR UNIT 84 THE FORUM 66 ALLARA ST CANBERRA 30/6-29/12/08"	="Australian Taxation Office"	02-Jun-08	="Travel and Food and Lodging and Entertainment Services"	26-May-08	29-May-08	12350.00	=""	="L J HOOKER CANBERRA CITY"	02-Jun-08 09:32 AM	

+="CN87284"	"RENT"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	29-May-08	13364.35	=""	="BLUE PROPERTY MARKETING"	02-Jun-08 09:33 AM	

+="CN87285"	"HYPOTHESIS DEVELOPMENT & ARGUMENT MAPPING 2-DAY TRAINING FOR 13 PARTICIPANTS"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	28-May-08	22093.50	=""	="AUSTHINK CONSULTING PTY LTD"	02-Jun-08 09:33 AM	

+="CN87286"	"CAREER DEVELOPMENT ASSESSMENT CTR 95 19-21MAY08"	="Australian Taxation Office"	02-Jun-08	="Public Utilities and Public Sector Related Services"	22-May-08	28-May-08	11825.00	=""	="Australian Public Service"	02-Jun-08 09:33 AM	

+="CN87287"	"DEBT LITIGATION CONFERENCE FOR LSB & OPERATIONS STAFF"	="Australian Taxation Office"	02-Jun-08	="Organisations and Clubs"	21-May-08	28-May-08	26291.98	=""	="RACV CLUB LTD"	02-Jun-08 09:33 AM	

+="CN87288"	"MANAGING SUCCESSFUL PROGRAMMES FOUNDATION COURSE 21-24APR08"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-May-08	25669.60	=""	="TANNER JAMES MANAGEMENT"	02-Jun-08 09:33 AM	

+="CN87289"	"5000 MOUSE MATS REQUIRED FOR ICP PROMOTION"	="Australian Taxation Office"	02-Jun-08	="Industrial Production and Manufacturing Services"	19-May-08	27-May-08	12863.40	=""	="GREENFROG PROMOTIONS"	02-Jun-08 09:33 AM	

+="CN87290"	"REPLACEMENT OF PERMANENT TEMP EMPLOYEE WHO IS TRANSFERRING TO ANOTHER AREA FOR 12 MONTHS"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	27-May-08	10000.00	=""	="Hays Personnel Services"	02-Jun-08 09:33 AM	

+="CN87291"	"TRAINING"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	27-May-08	14783.60	=""	="ATAX UNSW"	02-Jun-08 09:34 AM	

+="CN87292"	"COMPUTER MAINTENANCE"	="Australian Taxation Office"	02-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	29-May-08	27500.00	=""	="Lightsource Technologies Aust P/L"	02-Jun-08 09:34 AM	

+="CN87293"	"RECRUITMENT"	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-May-08	75111.70	=""	="Hudson Global Resources (Aust) P/L"	02-Jun-08 09:34 AM	

+="CN87294"	"RFT 044-2007 IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	30-Jun-09	223940.40	=""	="COMPAS PTY LTD"	02-Jun-08 09:35 AM	

+="CN87295"	"IT Contractor"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	23-May-09	201344.00	=""	="COMPAS PTY LTD"	02-Jun-08 09:35 AM	

+="CN87296"	"LoadRunner for the Web"	="Australian Taxation Office"	02-Jun-08	="Education and Training Services"	20-May-08	19-Jun-08	20020.00	=""	="REVOLUTION IT"	02-Jun-08 09:36 AM	

+="CN87297"	"RFT 042-2007 IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	11-Jul-09	194480.00	=""	="DEGISOFT CONSULTING PTY LTD"	02-Jun-08 09:37 AM	

+="CN87298"	"RFT 028-2007 IT Contractor"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	15-Jul-09	195800.00	=""	="ICON RECRUITMENT"	02-Jun-08 09:37 AM	

+="CN87299"	"IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	11-Apr-08	30-Jun-08	250560.00	="RFT 034-2007"	="STRATAGEM COMPUTER CONTRACTORS"	02-Jun-08 09:37 AM	

+="CN87300"	"IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	01-Jun-09	234830.00	=""	="ADEPT KM P/L"	02-Jun-08 09:37 AM	

+="CN87301"	"IT Contractor"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	11-Jun-09	175296.00	="RFT 007-2007"	="PEOPLEBANK AUSTRALIA PTY LTD"	02-Jun-08 09:37 AM	

+="CN87302"	"IT Contractor Extension"	="Australian Taxation Office"	02-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	01-Jun-08	204200.00	=""	="SOUTHERN CROSS COMPUTING"	02-Jun-08 09:37 AM	

+="CN87303"	"Printing of NAT4637 PATG insert."	="Australian Taxation Office"	02-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jun-08	02-Jul-08	29370.00	=""	="Canprint Communications"	02-Jun-08 10:04 AM	

+="CN87304-A2"	"Provion of advice to the Records Management Team on an ad hoc basis"	="CRS Australia"	02-Jun-08	="Business administration services"	28-May-08	30-Nov-09	4577.26	=""	="Solved at McConchie"	02-Jun-08 10:13 AM	

+="CN87306"	" Provision of Centrelink Agent services at Nepabunna. "	="Centrelink"	02-Jun-08	="Government information services"	01-Jul-07	30-Jun-08	18003.53	=""	="Nepabunna Comunity Council"	02-Jun-08 10:21 AM	

+="CN87307"	" Taxation of Trusts & Principles of Taxation of                        Superannuation Entities   "	="Australian Taxation Office"	02-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	94232.00	="08/5767"	="University of New South Wales"	02-Jun-08 10:24 AM	

+="CN87245-A4"	"Lease at St Marys NSW"	="Department of Human Services"	02-Jun-08	="Real estate services"	25-May-06	24-May-13	3029654.00	=""	="Estate of Cecil Green"	02-Jun-08 10:32 AM	

+="CN87310"	" Annual Maintenance of Analysis Notebook and IBase software.  Ongoing maintenance of this software is essential to ATO operations "	="Australian Taxation Office"	02-Jun-08	="Software maintenance and support"	01-Jul-08	30-Jun-09	101322.71	=""	="Visual Analysis"	02-Jun-08 10:33 AM	

+="CN87309"	"HOSE ASSEMBLY , NON METALLIC - NSN 66-147-6595"	="Defence Materiel Organisation"	02-Jun-08	="Hose fitting"	29-May-08	06-Jun-08	13365.00	=""	="PLASTICOAT PTY LTD"	02-Jun-08 10:36 AM	

+="CN87313"	"Promotional Venue Hire"	="Department of the Environment Water Heritage and the Arts"	02-Jun-08	="Promotional services"	13-May-08	13-May-08	16800.00	="0708-1510"	="Melbourne Art Fair Foundation"	02-Jun-08 11:01 AM	

+="CN87314"	"Forensic IT Services"	="Australian Securities and Investments Commission"	02-Jun-08	="Information technology consultation services"	01-Feb-08	30-Jun-08	50000.00	=""	="Deloitte"	02-Jun-08 11:02 AM	

+="CN87315"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	02-Jun-08	="Legal services"	16-May-08	30-Jun-08	10000.00	=""	="Young, Neil"	02-Jun-08 11:06 AM	

+="CN87316-A1"	"Recruitment"	="Australian Securities and Investments Commission"	02-Jun-08	="Personnel recruitment"	01-May-08	31-Jul-08	29794.00	=""	="Alliance Recruitment"	02-Jun-08 11:12 AM	

+="CN87317"	"Provision of Artworks"	="Department of the Environment Water Heritage and the Arts"	02-Jun-08	="Socio cultural services"	28-May-08	28-May-08	12800.00	="0708-1637"	="Neon Parc"	02-Jun-08 11:13 AM	

+="CN87318-A1"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	02-Jun-08	="Legal services"	25-Jul-07	30-Jun-09	70000.00	=""	="Barnett, Darrell"	02-Jun-08 11:19 AM	

+="CN85465"	"Website Development Services"	="Department of the Prime Minister and Cabinet"	02-Jun-08	="World wide web WWW site design services"	13-May-08	30-Jun-08	19800.00	=""	="Reading Room Australia Pty Ltd"	02-Jun-08 11:19 AM	

+="CN87319-A1"	"Implementation of messaging infrastructure work packages"	="Australian Securities and Investments Commission"	02-Jun-08	="Information technology consultation services"	20-Mar-08	19-May-08	426031.10	=""	="IBM Australia Limited"	02-Jun-08 11:28 AM	

+="CN87320"	"ComputerCORP Pty Ltd"	="Department of the Senate"	02-Jun-08	="Computer Equipment and Accessories"	07-May-08	07-May-09	13542.10	=""	="ComputerCORP Pty Ltd"	02-Jun-08 11:28 AM	

+="CN87321"	"Data#3 Limited - software licenses"	="Department of the Senate"	02-Jun-08	="Software"	16-May-08	16-May-13	623121.84	=""	="Data#3 Limited"	02-Jun-08 11:28 AM	

+="CN87322"	"Konica Minolta - purchase one KM C451 Digital Colour MDF"	="Department of the Senate"	02-Jun-08	="Office machines and their supplies and accessories"	26-May-08	26-May-09	10404.79	=""	="Konica Minolta Pty Ltd"	02-Jun-08 11:28 AM	

+="CN87323"	"ASLAV PARTS - RING RETAINGING"	="Department of Defence"	02-Jun-08	="Armoured fighting vehicles"	30-May-08	30-Oct-08	14767.50	=""	="General Dynamics Land Systems"	02-Jun-08 11:31 AM	

+="CN87326"	"ASLAV PARTS - ELECTRONIC COMPONENTS ASSEMBLY"	="Department of Defence"	02-Jun-08	="Armoured fighting vehicles"	30-May-08	11-Nov-08	16485.48	=""	="General Dynamics Land Systems"	02-Jun-08 11:40 AM	

+="CN87327"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Jun-08	02-Jul-08	11011.00	=""	="LAND ROVER AUSTRALIA"	02-Jun-08 11:48 AM	

+="CN87328"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	02-Jun-08	="Temporary personnel services"	21-May-08	29-Aug-08	24800.00	=""	="Adecco"	02-Jun-08 11:51 AM	

+="CN87329"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	02-Jun-08	="Information technology consultation services"	28-Apr-08	28-Jul-08	56342.00	=""	="Interpro Australia Pty Ltd"	02-Jun-08 12:07 PM	

+="CN87330-A1"	"Contract for the Provision of Consultancy Services"	="Australian Securities and Investments Commission"	02-Jun-08	="Temporary personnel services"	04-Dec-07	03-Dec-09	120000.00	=""	="International Psychological Services Pty Ltd"	02-Jun-08 12:20 PM	

+="CN86704"	" Legal Advice - RFT for Electricity Provider for Sites in Melbourne "	="Australian Securities and Investments Commission"	02-Jun-08	="Legal services"	18-Dec-07	29-Feb-08	10243.31	=""	="Minter Ellison"	02-Jun-08 12:47 PM	

+="CN87325-A4"	"Provision of Computer Hardware - Desktops & Laptops"	="Department of the Prime Minister and Cabinet"	02-Jun-08	="Computer Equipment and Accessories"	27-May-08	26-May-11	7396521.64	=""	="Dell Australia Pty Ltd"	02-Jun-08 01:15 PM	

+="CN87332"	"Extension of Surveillance Analysis Work"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	01-Oct-07	30-Jun-08	222200.00	="06/150-01"	="Accenture Australia Holdings Pty Ltd"	02-Jun-08 01:33 PM	

+="CN87333"	"FMIS Budget Module Maintenace support agreement renewal"	="Civil Aviation Safety Authority"	02-Jun-08	="Accounting software"	01-Jul-08	30-Jun-09	99534.00	="06/160-02"	="Oracle Systems (Australia) Pty Ltd"	02-Jun-08 01:39 PM	

+="CN87334-A1"	"Provision of IT Training for Vista & Office."	="Department of the Prime Minister and Cabinet"	02-Jun-08	="Computer vocational training services"	19-May-08	30-Jun-08	15697.00	=""	="Australian Management Control"	02-Jun-08 01:41 PM	

+="CN87336-A1"	" AIRCRAFT SPARES  NSN: 4010-01-323-2410  QTY: 10 "	="Defence Materiel Organisation"	02-Jun-08	="Military transport helicopters"	02-Jun-08	07-Mar-09	10429.20	=""	="AIRNSEA SAFETY PTY LTD"	02-Jun-08 01:49 PM	

+="CN87338"	" Provision of IT Business Analyst Services "	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	03-Mar-08	30-Jun-08	67584.00	="07/049-01"	="Ross Human Directions Group (Julia Ross)"	02-Jun-08 01:53 PM	

+="CN87339"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	02-Jun-08	="Information technology consultation services"	02-Jun-08	29-Aug-08	43520.00	=""	="G Kula Computing Pty Ltd"	02-Jun-08 01:55 PM	

+="CN87342"	"Online Document Authoring & Assessment Tool"	="Civil Aviation Safety Authority"	02-Jun-08	="Content authoring and editing software"	01-Mar-08	26-Dec-08	348220.00	="07/101-01"	="Ice Media Pty Ltd"	02-Jun-08 02:04 PM	

+="CN87344"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	02-Jun-08	="Temporary personnel services"	01-Oct-07	31-Jan-08	16000.00	=""	="Julia Ross - Ross Human Directions Limited"	02-Jun-08 02:14 PM	

+="CN87345"	"Polyurethane Lung Phantom"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Laboratory supplies and fixtures"	04-Apr-08	04-Apr-08	13348.85	=""	="University of Cinncinnati"	02-Jun-08 02:18 PM	

+="CN87349"	"Development & support of AOC Survey"	="Civil Aviation Safety Authority"	02-Jun-08	="Information technology consultation services"	22-Apr-08	26-Sep-08	60000.00	="07/122-01"	="AussieHQ Pty Ltd"	02-Jun-08 02:30 PM	

+="CN87347-A3"	"Assist in the development of the Child and Family Services Outcomes Survey"	="Australian Institute of Family Studies"	02-Jun-08	="Research programs"	14-Jan-08	16-Jun-08	32168.40	=""	="Adelaide Research & Innovation P/L"	02-Jun-08 02:31 PM	

+="CN87350"	"BPay Biller Agreement"	="Civil Aviation Safety Authority"	02-Jun-08	="Banking institutions"	02-Jun-08	30-Jun-11	126000.00	="07/136-00"	="Commonwealth Bank of Australia"	02-Jun-08 02:33 PM	

+="CN87351"	"Develop & run leadership courses in Canberra and Brisbane"	="Civil Aviation Safety Authority"	02-Jun-08	="Conference or non modular room packages"	07-May-08	30-Jun-10	490000.00	="07/146-00"	="Nous Group Pty Ltd"	02-Jun-08 02:37 PM	

+="CN87353"	"Cleaning Services"	="Australian Crime Commission"	02-Jun-08	="Cleaning and janitorial services"	15-Apr-08	14-Apr-09	46446.00	=""	="Stefan Lawrence Cleaning Co P/L"	02-Jun-08 02:39 PM	

+="CN87356"	"Cisco Maintenance Agreeement"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Digital telephones"	16-Apr-08	16-Apr-08	23657.48	=""	="Cerulean Solutions"	02-Jun-08 02:41 PM	

+="CN87355"	"Team Leader - Internal Budgeting and Reporting Team"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	30-Jun-08	31-Jul-08	21000.00	="07/212-02"	="Total Decision Support Pty Ltd"	02-Jun-08 02:42 PM	

+="CN87361"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	02-Jun-08	="Temporary personnel services"	01-Feb-08	31-May-08	21065.00	=""	="Boston Kennedy"	02-Jun-08 02:46 PM	

+="CN87357"	"mail distribution services"	="Australian Institute of Family Studies"	02-Jun-08	="Addressing or mailing labels"	01-May-08	01-May-08	12492.42	=""	="Mailcare Systems Pty Ltd"	02-Jun-08 02:46 PM	

+="CN87362"	"HelpDesk Support May 08 20 days"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Helpdesk or call centre software"	01-May-08	31-May-08	40425.00	=""	="TLC IT Group"	02-Jun-08 02:47 PM	

+="CN87363"	" Removalist Services - Brisbane "	="Civil Aviation Safety Authority"	02-Jun-08	="Removal services or ornamental plant or bush or tree"	26-May-08	01-Jul-08	16357.00	="07/237-00"	="Goals Office Solutions Pty Ltd"	02-Jun-08 02:49 PM	

+="CN87366"	"Security and CCTV Systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Security cameras"	23-Jan-08	23-Jan-08	18430.50	=""	="Wormald"	02-Jun-08 02:52 PM	

+="CN87369"	"Engagement of EAS temp staff with view to contract being offered"	="Australian Securities and Investments Commission"	02-Jun-08	="Temporary personnel services"	16-Jul-07	12-Oct-07	17253.18	=""	="Julia Ross Recruitment"	02-Jun-08 02:52 PM	

+="CN87367"	"Guarding Services"	="Australian Crime Commission"	02-Jun-08	="National Defence and Public Order and Security and Safety Services"	01-Mar-08	30-Apr-08	17585.99	=""	="Chubb Electronic Security ACT"	02-Jun-08 02:52 PM	

+="CN87365"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Jun-08	02-Jul-08	11469.68	=""	="MERCEDES BENZ AUST"	02-Jun-08 02:53 PM	

+="CN87370"	"Library Sytems Software Maintenance"	="Australian Institute of Family Studies"	02-Jun-08	="Library software"	09-Apr-08	09-Apr-08	15950.00	=""	="SirsiDynix Pty Ltd"	02-Jun-08 02:58 PM	

+="CN87372"	"Upgrade of Windows Active Directory"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Expert system software"	31-Jan-08	31-Jan-08	20240.00	=""	="Corporate Network Integration"	02-Jun-08 03:03 PM	

+="CN87373"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-May-08	28-Jun-08	18094.75	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	02-Jun-08 03:04 PM	

+="CN87374"	"Guarding Services"	="Australian Crime Commission"	02-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-May-08	30-Jun-08	11289.59	=""	="Scope Protective Services"	02-Jun-08 03:04 PM	

+="CN87375"	"National Subscription for Information Resource Centres to Factiva Electronic Research Service"	="Australian Securities and Investments Commission"	02-Jun-08	="Electronic reference material"	01-Jun-08	31-May-09	76956.00	=""	="Factiva Limited"	02-Jun-08 03:08 PM	

+="CN87376"	"Guarding Services"	="Australian Crime Commission"	02-Jun-08	="National Defence and Public Order and Security and Safety Services"	01-Apr-08	30-Apr-08	11289.59	=""	="Scope Protective Services"	02-Jun-08 03:09 PM	

+="CN87371"	"2008 Industry Partners Contribution"	="Australian Institute of Family Studies"	02-Jun-08	="Research programs"	01-May-08	01-May-08	11000.00	=""	="The Australian National University"	02-Jun-08 03:10 PM	

+="CN87378"	"Germanium Detector"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Detectors"	03-Oct-07	30-Oct-08	49989.50	=""	="Nuscientific"	02-Jun-08 03:15 PM	

+="CN87380"	"People Capability & Needs Analysis"	="Australian Crime Commission"	02-Jun-08	="Organisational structure consultation"	12-May-08	30-Jun-08	24200.00	=""	="Yellow Edge Pty Ltd"	02-Jun-08 03:16 PM	

+="CN87381"	"Implementtion for PeopleSoft Asset Management module"	="Civil Aviation Safety Authority"	02-Jun-08	="Software"	20-Apr-08	30-Jun-08	88000.00	="07/272-00"	="Hexaware Technologies Limited"	02-Jun-08 03:18 PM	

+="CN87382"	"Market research on CASA website"	="Civil Aviation Safety Authority"	02-Jun-08	="Market research"	29-Apr-08	01-Jun-08	33000.00	="07/283-00"	="Colmar Brunton Social Research Pty Ltd"	02-Jun-08 03:22 PM	

+="CN87386"	"Labels"	="Australian Electoral Commission"	02-Jun-08	="Labels"	03-Mar-08	06-Mar-08	16929.00	=""	="Corporate Express (Alexandria)"	02-Jun-08 03:28 PM	

+="CN87388"	"ARGOS Consortium Fee"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Research or testing facilities"	16-Apr-08	16-Apr-08	60840.20	=""	="Prolog Development Centre"	02-Jun-08 03:29 PM	

+="CN87393"	"Purchase of Qty 5 NSN 5998-66-156-1454 Extender Card"	="Defence Materiel Organisation"	02-Jun-08	="Surveillance and detection equipment"	10-Oct-07	06-Jun-08	17535.27	=""	="BAE SYSTEMS"	02-Jun-08 03:31 PM	

+="CN87390-A1"	"Valuation Services in relation to Tax Client"	="Australian Taxation Office"	02-Jun-08	="Management advisory services"	02-Jun-08	30-Jun-08	1.00	=""	="Capital Value"	02-Jun-08 03:37 PM	

+="CN87395"	"Media Monitoring"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Electronic media or data duplicating equipment"	16-Apr-08	20-Apr-10	21753.00	=""	="Meltwater News Australia Pty Ltd"	02-Jun-08 03:39 PM	

+="CN87396"	"Advertising"	="Australian Crime Commission"	02-Jun-08	="Newspaper advertising"	02-May-08	30-May-08	22728.38	=""	="Ford Kelly Executive Connection P/L"	02-Jun-08 03:40 PM	

+="CN87389"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	02-Jun-08	="Military fixed wing aircraft"	02-Jun-08	12-Jun-08	35522.74	=""	="MILSPEC"	02-Jun-08 03:42 PM	

+="CN87397"	"Project Coordinator (BSTB)"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	07-May-08	30-Oct-08	121000.00	="07/292-00"	="Ross Human Directions Group"	02-Jun-08 03:45 PM	

+="CN87398"	"Desktop and Laptop Computers"	="Australian Electoral Commission"	02-Jun-08	="Computers"	21-Jun-07	20-Jun-10	16251.32	="AEC06/50"	="Dell Computer Pty Ltd"	02-Jun-08 03:48 PM	

+="CN87399"	"Temp Staff - File Sentencing Officer"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	30-Apr-08	30-Jun-08	11856.00	="07/315-00"	="GMT People Pty Ltd"	02-Jun-08 03:49 PM	

+="CN87400"	"Dell Optiplex 755nSF"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Computers"	23-Jul-07	30-Jun-08	15483.60	=""	="Dell Computer"	02-Jun-08 03:49 PM	

+="CN87401"	"File Sentencing Records Officer"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	01-May-08	30-Jun-08	14676.00	="07/326-00"	="Hays Personnel Services"	02-Jun-08 03:52 PM	

+="CN87402"	"Section Head for Budgeting Team"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	12-May-08	30-Jun-08	53900.00	="07/328-00"	="Total Decision Support Pty Ltd"	02-Jun-08 03:55 PM	

+="CN87385"	"Provision of Internal Audit Services"	="Royal Australian Mint"	02-Jun-08	="Internal audits"	14-Apr-08	13-Apr-11	158400.00	="RAM2007-011"	="Walter Turnbull Pty Limited"	02-Jun-08 03:58 PM	

+="CN87403"	"Airspace review - Broome and Kununurra"	="Civil Aviation Safety Authority"	02-Jun-08	="Aircraft"	14-May-08	13-Jul-08	76200.00	="07/329-00"	="Strategic Airspace Pty Ltd"	02-Jun-08 03:59 PM	

+="CN87404"	"Deposit for Medical Standards Linear Accelerator"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Medical linear accelerator intensity modulated radiation therapy IMRT products"	01-May-08	29-May-08	2254151.90	=""	="Elekta"	02-Jun-08 04:00 PM	

+="CN87405"	"Unix Server replacement Project Manager"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	05-May-08	30-Jun-08	28864.00	="07/345-00"	="Cordelta Pty Ltd"	02-Jun-08 04:02 PM	

+="CN87406"	"ISG Continous Improvement Coordinator"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	10-May-08	09-May-09	79500.00	="07/347-00"	="Bevington Group Pty Ltd"	02-Jun-08 04:06 PM	

+="CN87407"	"Voicemail system for Northern Region Office"	="Civil Aviation Safety Authority"	02-Jun-08	="Voice mail systems"	30-Apr-08	30-May-08	17435.00	="07/348-00"	="CVT ( Global) Pty Ltd"	02-Jun-08 04:11 PM	

+="CN87408"	"Provide Product Costing Model for Manufacturing and Production"	="Royal Australian Mint"	02-Jun-08	="Concept model"	01-May-08	30-Apr-09	64900.00	=""	="Business Software Distribution Pty Ltd trading as ALG Software Australia"	02-Jun-08 04:12 PM	

+="CN87409"	"Sponsorship - ALAR toolkit workshop"	="Civil Aviation Safety Authority"	02-Jun-08	="Sponsorship of event or celebrity"	27-May-08	30-May-08	20000.00	="07/351-00"	="Aviation Safety Foundation of Australia"	02-Jun-08 04:15 PM	

+="CN87410"	"Mapinfo Software"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Map creation software"	18-Apr-08	18-Apr-09	30099.30	=""	="Pitney Bowes"	02-Jun-08 04:16 PM	

+="CN87411"	"ASICS for April"	="Civil Aviation Safety Authority"	02-Jun-08	="Financial accounting"	05-May-08	30-Jun-08	155700.00	="07/353-00"	="Aviation ID Australia Pty Ltd"	02-Jun-08 04:17 PM	

+="CN87412"	"ASICS for April - Additional spend"	="Civil Aviation Safety Authority"	02-Jun-08	="Financial accounting"	30-Apr-08	02-May-08	40231.00	="07/353-01"	="Aviation ID Australia Pty Ltd"	02-Jun-08 04:20 PM	

+="CN87413"	" Secure Containers "	="Australian Electoral Commission"	02-Jun-08	="Safes"	02-May-08	28-Jun-08	12463.00	=""	="Planex"	02-Jun-08 04:21 PM	

+="CN87414"	"ORTEC Scintibloc LaBr Detector"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Detectors"	28-Mar-08	28-Mar-09	71942.20	=""	="Nucletron"	02-Jun-08 04:21 PM	

+="CN87415"	"System Dependency Mapping Consultancy"	="Civil Aviation Safety Authority"	02-Jun-08	="Business and corporate management consultation services"	12-May-08	12-May-09	84494.00	="07/354-00"	="WDScott Asia Pty Ltd"	02-Jun-08 04:26 PM	

+="CN87416"	"Gamma Monitor"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Gamma counters"	15-Apr-08	15-Apr-08	38555.00	=""	="Berthold Australia"	02-Jun-08 04:29 PM	

+="CN87417"	"Ricoh Colour MFD C4500 for Perth Office"	="Civil Aviation Safety Authority"	02-Jun-08	="Photocopiers"	06-May-08	06-Jun-08	10661.00	="07/355-00"	="Ricoh Australia Pty Ltd"	02-Jun-08 04:30 PM	

+="CN87418"	"Recruitment fees - Accounts Receivable"	="Civil Aviation Safety Authority"	02-Jun-08	="Recruitment services"	06-May-08	15-May-08	10563.00	="07/358-00"	="Hays Personnel Services"	02-Jun-08 04:33 PM	

+="CN87419"	"Development of 2008/09 Internal Audit Plan."	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	02-Jun-08	="Audit services"	22-May-08	22-May-08	10802.00	=""	="Protiviti"	02-Jun-08 04:35 PM	

+="CN87421"	"Secure Containers"	="Australian Electoral Commission"	02-Jun-08	="Safes"	02-May-08	06-Jun-08	17897.00	=""	="Fileguard"	02-Jun-08 04:43 PM	

+="CN87426"	"Production of Non Technical Skills DVD"	="Civil Aviation Safety Authority"	03-Jun-08	="Modular technical office packages"	12-May-08	30-Jun-08	80000.00	="07/359-00"	="Bearcage Pty Ltd"	03-Jun-08 09:03 AM	

+="CN87427"	"Temporary Staff - Admin Assistant"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	12-May-08	15-Aug-08	18000.00	="07/360-00"	="Vedior Asia Pacific Pty Ltd"	03-Jun-08 09:07 AM	

+="CN87428"	" Temporary Staff - Administration Assistant "	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	20-Feb-08	30-Jun-08	20000.00	="07/362-00"	="Vedior Asia Pacific Pty Ltd"	03-Jun-08 09:21 AM	

+="CN87429"	"Recruitment services - Eastern & Southern FO Manager Position"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	12-May-08	30-Jun-08	80000.00	="07/365-00"	="Tanner Menzies Pty Ltd"	03-Jun-08 09:26 AM	

+="CN87431"	" Supply of Polaris kit bags, NSN 8105-01-551-9598, 8105-01-551-9600 & 8105-01-551-96010, 3 x 65 qty. "	="Defence Materiel Organisation"	03-Jun-08	="War vehicles"	30-May-08	26-Jun-08	43097.34	=""	="Polaris Sales Aust & NZ"	03-Jun-08 09:29 AM	

+="CN87432"	"Video conferencing units"	="Civil Aviation Safety Authority"	03-Jun-08	="Videoconferencing systems"	13-May-08	12-Jun-08	24000.00	="07/368-00"	="Dimension Data"	03-Jun-08 09:29 AM	

+="CN87434"	"Recruitment Services - Manager, Property & Security"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	14-May-08	30-Jun-08	40000.00	="07/369-00"	="Hays Personnel Services (Australia) Pty ltd"	03-Jun-08 09:33 AM	

+="CN87435"	"Threat & Error Management Training courses for CASA ITSAP"	="Civil Aviation Safety Authority"	03-Jun-08	="Business and corporate management consultation services"	15-May-08	16-Jun-08	22000.00	="07/372-00"	="AsiaPacific Aviation Consultants"	03-Jun-08 09:38 AM	

+="CN87436"	"Video Streaming amendments"	="Department of the House of Representatives"	03-Jun-08	="Software"	05-May-08	14-May-08	13090.00	=""	="Different Solutions"	03-Jun-08 09:40 AM	

+="CN87438"	"Initial verification testing of the industrial Lion Intoxilyser 8000"	="Civil Aviation Safety Authority"	03-Jun-08	="Research or testing facilities"	20-May-08	20-Jun-08	16000.00	="07/377-00"	="Pacific Data Systems Pty Ltd"	03-Jun-08 09:42 AM	

+="CN87441"	"Recruitment fees"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	20-May-08	20-Jun-08	14559.00	="07/382-00"	="Hudson"	03-Jun-08 09:48 AM	

+="CN87440"	"Office Fitout"	="Australian Electoral Commission"	03-Jun-08	="Building and Construction and Maintenance Services"	22-Apr-08	30-Apr-08	123816.00	=""	="Complete Design Interiors Pty Ltd"	03-Jun-08 09:49 AM	

+="CN87439"	"software for 3 years"	="Department of the House of Representatives"	03-Jun-08	="Software"	30-Apr-08	30-Apr-11	894849.99	=""	="Data#3 Ltd"	03-Jun-08 09:52 AM	

+="CN87442"	"Software"	="Department of the House of Representatives"	03-Jun-08	="Software"	01-Jan-08	01-Jan-10	51314.78	=""	="Zallcom Pty Ltd"	03-Jun-08 09:56 AM	

+="CN87443"	"Hire Audio Visual"	="Department of the House of Representatives"	03-Jun-08	="Audio presentation and composing equipment and hardware and controllers"	01-May-08	20-May-08	13500.00	=""	="Audio Solutions"	03-Jun-08 10:03 AM	

+="CN87444"	" ASICs for May "	="Civil Aviation Safety Authority"	03-Jun-08	="Financial accounting"	01-May-08	30-May-08	15000.00	="07/387-00"	="Aviation ID Australia Pty Ltd"	03-Jun-08 10:04 AM	

+="CN87446"	"Security training for CASA Admin Staff"	="Civil Aviation Safety Authority"	03-Jun-08	="Security and protection software"	28-May-08	28-May-08	13350.00	="07/390-00"	="Attorney General's Department (ACT)"	03-Jun-08 10:09 AM	

+="CN87445"	"Reception"	="Department of the House of Representatives"	03-Jun-08	="Catering services"	01-May-08	27-May-08	14550.00	=""	="Hyatt Hotel Canberra"	03-Jun-08 10:09 AM	

+="CN87447"	"Annual mainenance HR system"	="Department of the House of Representatives"	03-Jun-08	="Human resources software"	01-Jun-08	31-May-09	12624.70	=""	="Frontier Software"	03-Jun-08 10:16 AM	

+="CN87448"	"Barrister fees"	="Civil Aviation Safety Authority"	03-Jun-08	="Financial accounting"	26-May-08	30-Jun-08	27000.00	="07/391-00"	="Andrew Luchich"	03-Jun-08 10:19 AM	

+="CN87449"	"mailing"	="Department of the House of Representatives"	03-Jun-08	="Mailing services"	01-May-08	30-May-08	39050.00	=""	="Canprint Communications Pty Ltd"	03-Jun-08 10:26 AM	

+="CN87450-A1"	"Laser printers"	="Australian Electoral Commission"	03-Jun-08	="Laser printers"	15-May-08	14-Apr-11	114294.41	="AEC06/044"	="Ricoh Australia Pty Ltd"	03-Jun-08 10:29 AM	

+="CN69424"	" Financial Planning Analysis "	="Australian Securities and Investments Commission"	03-Jun-08	="Strategic planning consultation services"	04-Dec-07	03-Apr-08	16318.50	=""	="Seacab Pty Ltd t/a Endeavour Strategic Financial"	03-Jun-08 10:33 AM	

+="CN87451"	"Air fares"	="Department of the House of Representatives"	03-Jun-08	="Passenger transport"	01-Apr-08	28-Apr-08	90607.77	=""	="American Express"	03-Jun-08 10:35 AM	

+="CN69423"	" Financial Planning Analysis "	="Australian Securities and Investments Commission"	03-Jun-08	="Strategic planning consultation services"	04-Dec-07	19-Feb-08	14850.00	=""	="Seacab Pty Ltd t/a Endeavour Strategic Financial"	03-Jun-08 10:37 AM	

+="CN87453"	"Rent Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Oct-09	86000.00	="N/A"	="UGS-AUSTRALIAN PACIFIC AIRPORTS (MELB)"	03-Jun-08 10:40 AM	

+="CN87454"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	03-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Jun-08	30-Jun-08	122848.92	="RFT FIN07/Fes001"	="ISIS PROJECTS PTY LTD"	03-Jun-08 10:40 AM	

+="CN87455"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	12-Jun-08	37300.98	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	03-Jun-08 10:41 AM	

+="CN87456"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-09	273042.00	="RMS06/05752-02"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:41 AM	

+="CN87457"	"Training & Education Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Education and Training Services"	27-May-08	05-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP"	03-Jun-08 10:41 AM	

+="CN87458"	"Consultancy Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-Mar-08	08-Mar-09	13221.60	="Support Agreement 184005708023"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	03-Jun-08 10:41 AM	

+="CN87459"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	17-May-08	26-Jun-09	235000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	03-Jun-08 10:41 AM	

+="CN87460"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	347776.00	="FIN05CRP004-41"	="ICON RECRUITMENT PTY LTD"	03-Jun-08 10:41 AM	

+="CN87461"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	243443.20	="FIN05CRP004-33"	="VEROSSITY"	03-Jun-08 10:41 AM	

+="CN87462"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	27-Jun-08	22982.40	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	03-Jun-08 10:42 AM	

+="CN87463"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-May-08	19-Jun-08	16500.00	=""	="JIM HENDRICKSON AND ASSOCIATES"	03-Jun-08 10:42 AM	

+="CN87464"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	33594.00	="nil"	="AFW TECHNOLOGIES PTY LTD"	03-Jun-08 10:42 AM	

+="CN87465"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	13-Jun-08	16761.80	="PO5119"	="DELL COMPUTER PTY LIMITED"	03-Jun-08 10:42 AM	

+="CN87466"	"Documentation Services"	="Department of Finance and Deregulation"	03-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	16-May-08	30-Jun-08	70000.00	="nil"	="STRATSEC.NET PTY LTD"	03-Jun-08 10:42 AM	

+="CN87467"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Dec-08	131562.50	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87468"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jul-08	30-Jun-09	223731.20	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87469"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	176654.40	="FIN05CRP004-31"	="STRATAGEM"	03-Jun-08 10:43 AM	

+="CN87470"	"IT System Development Services"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-Nov-08	235392.00	="TBA"	="ICE MEDIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87471"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-Sep-08	35000.00	="."	="CHANDLER MACLEOD CONSULTANTS LTD"	03-Jun-08 10:43 AM	

+="CN87472"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	27-Jun-08	25000.00	="FIN 05 CRP 004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	03-Jun-08 10:43 AM	

+="CN87473"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	10-Apr-09	96625.00	="."	="OAKTON AA SERVICES PTY LTD"	03-Jun-08 10:43 AM	

+="CN87474"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	02-Dec-08	45000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	03-Jun-08 10:44 AM	

+="CN87475"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	05-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87476"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-Jun-08	07-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87478"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-May-08	30-Jun-08	58157.00	=""	="MCPHERSON'S PRINTING GROUP"	03-Jun-08 10:44 AM	

+="CN87479"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	60000.00	="N/A"	="COLLECTIVE RESOURCES IT RECRUITMENT"	03-Jun-08 10:44 AM	

+="CN87480"	"Business Advisory Services"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	50000.00	="N/A"	="OAKTON AA SERVICES PTY LTD"	03-Jun-08 10:44 AM	

+="CN87481"	"Legal Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-09	715000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	03-Jun-08 10:45 AM	

+="CN87482"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	14500.00	="N/A"	="SWEENEY BUSINESS GROUP"	03-Jun-08 10:45 AM	

+="CN87483"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	40000.00	="N/A"	="PROTIVITI PTY LTD"	03-Jun-08 10:45 AM	

+="CN87484"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	26500.00	="N/A"	="CAPSE PTY LTD"	03-Jun-08 10:45 AM	

+="CN87485"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	10500.00	="N/A"	="CORDELTA PTY LTD"	03-Jun-08 10:45 AM	

+="CN87486"	"Consultancy Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-May-08	48161.65	="0000000000000000"	="CENTRELINK"	03-Jun-08 10:45 AM	

+="CN87487"	"Legal Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-09	85000.00	="RFTLSB/01/2005"	="DLA PHILLIPS FOX LAWYERS"	03-Jun-08 10:45 AM	

+="CN87489"	"Acoustic Services Engineering, consultancy services"	="Australian Securities and Investments Commission"	03-Jun-08	="Professional engineering services"	01-Feb-08	30-Jun-10	65000.00	=""	="WE Bassett and Partners Pty Ltd"	03-Jun-08 10:54 AM	

+="CN87490"	" REFRIGERATORS, MECHANICAL, BIOLOGICALS, BLOOD STORAGE, 300 LT "	="Defence Materiel Organisation"	03-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	30-Sep-08	13175.80	=""	="QUANTUM SCIENTIFIC PTY LTD"	03-Jun-08 11:00 AM	

+="CN87491"	"VEHICLE PARTS"	="Department of Defence"	03-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-May-08	23-Jul-08	16085.34	=""	="TENIX DEFENCE PTY LTD LAND DIV"	03-Jun-08 11:02 AM	

+="CN87494"	" Fitout "	="Department of Human Services"	03-Jun-08	="Workstations and office packages"	15-May-08	30-Jun-08	143784.45	=""	="Rork Designs Pty Ltd t/a Rork Interiors"	03-Jun-08 11:12 AM	

+="CN87495"	"Software Development"	="Child Support Agency"	03-Jun-08	="Software"	02-Jun-08	30-Jun-08	52907.36	=""	="EDS (AUSTRALIA) PTY LTD"	03-Jun-08 11:15 AM	

+="CN87496"	"Property Lease"	="Child Support Agency"	03-Jun-08	="Building and Construction Machinery and Accessories"	03-Jun-08	31-Dec-15	8922739.10	=""	="RYRIE CENTRE DEVELOPMENT UNIT TRUST"	03-Jun-08 11:15 AM	

+="CN87502"	"Provision of Training Courses for Administrative Service Officers."	="CRS Australia"	03-Jun-08	="Education and Training Services"	14-May-08	13-May-11	305000.00	=""	="Deakin Prime"	03-Jun-08 11:22 AM	

+="CN87503"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	03-Jun-08	="Legal services"	16-May-08	30-Jun-09	25000.00	=""	="Niall, Richard"	03-Jun-08 11:26 AM	

+="CN87498"	"Variation to original contract: IT consultants"	="Australian Securities and Investments Commission"	03-Jun-08	="Information technology consultation services"	16-Jun-08	16-Jun-08	50000.00	=""	="Strohl Systems Australia Pty Ltd"	03-Jun-08 11:32 AM	

+="CN87477"	" CHAIR DENTAL "	="Defence Materiel Organisation"	03-Jun-08	="Medical Equipment and Accessories and Supplies"	01-May-08	06-Jun-08	28169.72	="778409"	="ADEC AUSTRALIA"	03-Jun-08 11:43 AM	

+="CN87501"	"Staff Redeployment Services"	="Department of Human Services"	03-Jun-08	="Employee assistance programs"	19-May-08	30-Jun-08	33000.00	=""	="Australian Public Service Commission"	03-Jun-08 11:48 AM	

+="CN87504"	"Business Intelligence"	="Department of Human Services"	03-Jun-08	="Software"	23-May-08	30-Jun-09	23379.40	=""	="SAS Institute Australia Pty Ltd"	03-Jun-08 11:50 AM	

+="CN87505"	"Public relations services for the electronic Medicare claiming campaign"	="Department of Human Services"	03-Jun-08	="Public relation services"	26-May-08	20-Jun-09	300000.00	=""	="Royce (Vic) Pty Ltd"	03-Jun-08 11:52 AM	

+="CN87506"	"Creative advertising services for the Medicare Claiming Communication Campaign"	="Department of Human Services"	03-Jun-08	="Advertising"	26-May-08	30-Jun-09	500000.00	=""	="Grey Worldwide Canberra Pty Ltd"	03-Jun-08 11:52 AM	

+="CN87507"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	03-Jun-08	="Legal services"	01-Feb-08	30-Jun-09	10000.00	=""	="Pilkinton, Stuart H."	03-Jun-08 11:55 AM	

+="CN87508"	" NSN 1730-66-147-8413  MAINTENANCE PLATFORM, AIRCRAFT "	="Defence Materiel Organisation"	03-Jun-08	="Elevating platform vehicles or scissor lifts"	22-Apr-08	27-May-08	44880.00	=""	="HAULOTTE GROUP AUSTRALIA"	03-Jun-08 11:56 AM	

+="CN87509"	"hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	03-Jun-08	="Hotels and lodging and meeting facilities"	03-May-08	08-May-08	38498.46	=""	="The Sebel Manly Beach"	03-Jun-08 11:59 AM	

+="CN87510"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	11-Apr-08	05-Aug-08	51480.00	=""	="SMS Consulting Group"	03-Jun-08 11:59 AM	

+="CN87511"	"Communications devices and accessories"	="Australian Competition and Consumer Commission"	03-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	13420.00	=""	="Optus Billing Services"	03-Jun-08 11:59 AM	

+="CN87512"	"Computer equipment and accessories"	="Australian Competition and Consumer Commission"	03-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	25025.00	=""	="Dell Australia"	03-Jun-08 12:00 PM	

+="CN87513"	"hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	03-Jun-08	="Hotels and lodging and meeting facilities"	24-May-08	16-Aug-08	12180.00	=""	="M-Power Accommodation Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87514"	"Audio and visual presentation and compos"	="Australian Competition and Consumer Commission"	03-Jun-08	="Audio and visual presentation and composing equipment"	27-May-08	30-Jun-08	55867.22	=""	="Vantage Systems Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87515"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	12320.00	=""	="Total Decision Support Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87516"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	25-Jun-08	15840.00	=""	="Energy and Management Services Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87517"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	30-Apr-09	79016.25	=""	="McGrath Nicol Corporate Advisory"	03-Jun-08 12:00 PM	

+="CN87518"	"Legal services"	="National Competition Council"	03-Jun-08	="Legal services"	29-Apr-08	30-May-08	13048.32	=""	="Clayton Utz"	03-Jun-08 12:00 PM	

+="CN87519"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	30-Jun-08	11616.00	=""	="Energy and Management Services Pty Ltd"	03-Jun-08 12:01 PM	

+="CN87520"	"Computer Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Computer services"	29-May-08	30-Jun-08	45671.00	=""	="Getronics Australia"	03-Jun-08 12:01 PM	

+="CN87522-A1"	"Provision of Vocational Rehabilitation Services."	="CRS Australia"	03-Jun-08	="Vocational rehabilitation services"	26-May-08	22-Apr-09	73275.85	=""	="Teresa McLuckie"	03-Jun-08 01:21 PM	

+="CN87523"	"ICT Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	22-May-08	29-Aug-08	49692.50	=""	="PEOPLEBANK"	03-Jun-08 02:33 PM	

+="CN87524"	"Contractor Services"	="Child Support Agency"	03-Jun-08	="Business administration services"	22-May-08	14-Aug-08	10250.00	=""	="CITEC"	03-Jun-08 02:33 PM	

+="CN87525"	"CSA Campaign Media Placements"	="Child Support Agency"	03-Jun-08	="Advertising"	21-May-08	30-Jun-08	3275000.00	=""	="UNIVERSAL MCCANN"	03-Jun-08 02:33 PM	

+="CN87526"	"Advertising Services"	="Child Support Agency"	03-Jun-08	="Advertising"	21-May-08	21-May-08	18701.00	=""	="EARDRUM PTY LTD"	03-Jun-08 02:33 PM	

+="CN87527"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	20-May-08	30-Jun-08	18166.50	=""	="MERCER (AUSTRALIA) PTY LTD"	03-Jun-08 02:33 PM	

+="CN87528"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	16-May-08	30-Sep-08	87400.01	=""	="BAYLEY & ASSOCIATES PTY LTD"	03-Jun-08 02:33 PM	

+="CN87529"	"Translating and Interpreting Services"	="Child Support Agency"	03-Jun-08	="Writing and translations"	30-May-08	30-Sep-09	15400.00	=""	="KLIM TRANSLATION SERVICES"	03-Jun-08 02:33 PM	

+="CN87530"	"Recruitment Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	28-May-08	20-Dec-08	34259.35	=""	="DFP RECRUITMENT SERVICES"	03-Jun-08 02:34 PM	

+="CN87531"	"Architectural Services"	="Child Support Agency"	03-Jun-08	="Building and Construction Machinery and Accessories"	28-May-08	30-Dec-08	398750.00	=""	="INTERIORS AUSTRALIA PTY LTD"	03-Jun-08 02:34 PM	

+="CN87532"	"Research and Advisory Services"	="Child Support Agency"	03-Jun-08	="Business administration services"	28-May-08	30-Jun-09	41910.00	=""	="GARTNER AUSTRALASIA PTY LTD"	03-Jun-08 02:34 PM	

+="CN87533"	"Security Services"	="Child Support Agency"	03-Jun-08	="Security surveillance and detection"	27-May-08	30-Jun-09	18077.80	=""	="CHUBB PROTECTIVE SERVICES (NSW)"	03-Jun-08 02:34 PM	

+="CN87534"	"ICT Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	22-May-08	04-Jun-09	273130.00	=""	="COLLECTIVE RESOURCES (OXFORD"	03-Jun-08 02:34 PM	

+="CN87535"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	16-May-08	30-Jun-08	22000.00	=""	="AUSTRALIAN SPORTS COMMISSION"	03-Jun-08 02:34 PM	

+="CN87536"	"Temporary Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	12-May-08	30-Jun-08	18000.00	=""	="PEOPLEBANK"	03-Jun-08 02:34 PM	

+="CN87537"	"Leased Office Equipment"	="Child Support Agency"	03-Jun-08	="Office machines and their supplies and accessories"	06-May-08	14-May-11	65590.80	=""	="FUJI XEROX AUSTRALIA PTY LTD"	03-Jun-08 02:35 PM	

+="CN87538"	"Software Licence, Maintenance & Support"	="Child Support Agency"	03-Jun-08	="Software"	05-May-08	30-Jun-09	25000.00	=""	="MICRO DYNAMICS TRAINING"	03-Jun-08 02:35 PM	

+="CN87539"	"Software Licence and Maintenance"	="Child Support Agency"	03-Jun-08	="Software"	05-May-08	30-May-08	19285.20	=""	="ZALLCOM PTY LTD"	03-Jun-08 02:35 PM	

+="CN87540"	"Advertising Services"	="Child Support Agency"	03-Jun-08	="Advertising"	02-May-08	01-Oct-10	119999.99	=""	="MEDIA MONITORS AUSTRALIA PTY LTD"	03-Jun-08 02:35 PM	

+="CN87541"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational institutions"	02-May-08	30-Jun-08	64990.00	=""	="CIT SOLUTIONS PTY LTD"	03-Jun-08 02:35 PM	

+="CN87542"	"Medical Assessments"	="Child Support Agency"	03-Jun-08	="Healthcare Services"	15-May-08	30-Jun-08	10000.00	=""	="UNIFIED HEALTHCARE GROUP"	03-Jun-08 02:35 PM	

+="CN87543"	"Accommodation Services"	="Child Support Agency"	03-Jun-08	="Educational facilities"	15-May-08	29-May-08	24178.00	=""	="BELCONNEN PREMIER INN"	03-Jun-08 02:35 PM	

+="CN87544"	"Information Services"	="Child Support Agency"	03-Jun-08	="Information services"	15-May-08	15-Jul-08	33000.00	=""	="REGISTRIES LIMITED"	03-Jun-08 02:36 PM	

+="CN87545"	"Audio Visual Equipment"	="Child Support Agency"	03-Jun-08	="Office supplies"	15-May-08	30-Jun-08	70142.11	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Jun-08 02:36 PM	

+="CN87546"	"Professional & Negotiation Services"	="Child Support Agency"	03-Jun-08	="Management advisory services"	15-May-08	30-Jun-08	88000.00	=""	="PRICEWATERHOUSE COOPERS"	03-Jun-08 02:36 PM	

+="CN87547"	"Security Services"	="Child Support Agency"	03-Jun-08	="Security and personal safety"	14-May-08	30-Jun-09	19250.00	=""	="CHUBB PROTECTIVE SERVICES (NSW)"	03-Jun-08 02:36 PM	

+="CN87548"	"NSN 1560-00-806-6062, Window Assemblies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	17727.07	=""	="Milspec Services Pty Ltd"	03-Jun-08 02:49 PM	

+="CN87549-A1"	"Economic research to improve natural resource management in the Great Barrier Reef Marine Park"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Engineering and Research and Technology Based Services"	01-Apr-08	28-Sep-08	53600.00	=""	="MARSDEN JACOB & ASSOCIATES"	03-Jun-08 02:53 PM	

+="CN87550"	"sponsorship EA climate change certificationmodule - development, trial & release"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	31-May-08	16500.00	=""	="ECO TOURISM AUSTRALIA"	03-Jun-08 02:53 PM	

+="CN87551"	"develop compliance policy,statement and plan"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Jun-08	26400.00	=""	="KPS & ASSOCIATES Pty Ltd"	03-Jun-08 02:53 PM	

+="CN87552"	"Tank stand, ladder, cage & rails"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	29042.68	=""	="MCCRACKENS WATER SERVICES"	03-Jun-08 02:53 PM	

+="CN87553"	"hybrid power system extension on Low Island"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	17-Apr-08	27-Jun-08	64090.40	=""	="TROPICAL ENERGY SOLUTIONS Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87554"	"ABGR energy assessment March 2008"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	01-May-08	27683.91	=""	="INTERGRATED ENERGY SERVICES"	03-Jun-08 02:54 PM	

+="CN87555"	"New chilling system for Reef HQ Ancillary Tanks(Power minimisation project)"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	18-Apr-08	30-Jun-08	10900.00	=""	="DALKIA TECHNICAL SERVICES"	03-Jun-08 02:54 PM	

+="CN87556"	"Smart Electroboard overlay LG50PM4M"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	11838.99	=""	="ELECTROBOARD SOLUTIONS Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87557"	"Production of 6 x TVC's Water Quality & advertising"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	17056.00	=""	="SEVEN NETWORK (OPERATIONS) Ltd"	03-Jun-08 02:54 PM	

+="CN87558"	"Transportation of c'wealth island team"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Transportation and Storage and Mail Services"	28-Apr-08	07-May-08	21999.00	=""	="WHITSUNDAY HELICOPTER GROUP"	03-Jun-08 02:54 PM	

+="CN87559"	"Concourse refurbishment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	28-Apr-08	31-May-08	24305.00	=""	="MIGNON PHILPOT"	03-Jun-08 02:54 PM	

+="CN87560"	"Strandnet database redevelopment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	06-Jun-08	25311.00	=""	="ENVIRONMENTAL PROTECTION AGENCY"	03-Jun-08 02:54 PM	

+="CN87561"	"Interior design brief"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-May-08	21648.00	=""	="INTERIORS AUSTRALIA Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87562"	"Sunfire X4200 x64 server"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Telecommunications media services"	01-May-08	30-Jun-08	14900.60	=""	="AGIRE Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87563"	"Fibre Channel disc storage array"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Telecommunications media services"	01-May-08	30-Jun-08	19926.50	=""	="AGIRE Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87564"	"9 new computers for Finance section"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	10518.75	=""	="DELL COMPUTER Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87565"	"Wuthathi TUMRA project 2008"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	12315.00	=""	="WUTHATHI LAND TRUST"	03-Jun-08 02:55 PM	

+="CN87566"	"Status of Seabirds & Shore Birds in the Great Barrier Reef World Heritage Area"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	11220.00	=""	="C & R CONSULTING (GEOCHEMICAL AND HYDROB"	03-Jun-08 02:55 PM	

+="CN87567"	"Tourism Industry Engagement Strategy"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management advisory services"	12-May-08	09-Jun-08	12881.00	=""	="TONY CHARTERS & ASSOCIATES"	03-Jun-08 02:55 PM	

+="CN87568"	"The Great Barrier Reef Marine Park Authority Climate Positive Strategy Options Report"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	14-May-08	27-Jun-08	29920.00	=""	="HEGGIES Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87569"	"HP Design Jet 4500PS printer"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	27104.00	=""	="PSM COMPUCAD"	03-Jun-08 02:55 PM	

+="CN87570"	"Reef Water Quality Protection Plan Marine Water Quality Monitoring Programme"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	20-May-08	31-Dec-08	1132842.70	=""	="REEF & RAINFOREST RESEARCH CENTRE"	03-Jun-08 02:55 PM	

+="CN87571"	"Raine Island Climate Change Risk Assessment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	20-May-08	29-Aug-08	21400.00	=""	="PROFESSOR DAVID HOPLEY"	03-Jun-08 02:56 PM	

+="CN87572"	"Actalyst interactive overlay & plasma"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	10693.16	=""	="ELECTROBOARD SOLUTIONS Pty Ltd"	03-Jun-08 02:56 PM	

+="CN87573"	"VM Ware software"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	10575.40	=""	="AGIRE Pty Ltd"	03-Jun-08 02:56 PM	

+="CN87574"	"NSN 1630-01-162-3199, Swivel Joint Bodies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	11079.42	=""	="Milspec Services Pty Ltd"	03-Jun-08 02:59 PM	

+="CN87575-A1"	"Justice Trax Software"	="Australian Taxation Office"	03-Jun-08	="Software"	09-Jun-08	08-Jun-09	126753.00	=""	="Axion Control Systems Pty Ltd"	03-Jun-08 03:02 PM	

+="CN87575-A2"	"Justice Trax Software"	="Australian Taxation Office"	03-Jun-08	="Software"	09-Jun-08	01-Jul-11	151305.00	=""	="Axion Control Systems Pty Ltd"	03-Jun-08 03:02 PM	

+="CN87576"	"NSN 1620-00-821-5223, Str Piston Assemblies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	303892.86	=""	="Milspec Services Pty Ltd"	03-Jun-08 03:03 PM	

+="CN87577"	" Education program - guest presenter anti-doping presentation "	="Australian Sports Anti-Doping Authority (ASADA)"	03-Jun-08	="Education and Training Services"	22-Apr-08	01-Dec-08	10000.00	=""	="Rebekah Keat"	03-Jun-08 03:13 PM	

+="CN87580"	"Education program - Guest Presenter- Anti-doping program"	="Australian Sports Anti-Doping Authority (ASADA)"	03-Jun-08	="Educational incentives"	21-Apr-08	04-Jun-08	30000.00	=""	="Point 1 Pty Ltd"	03-Jun-08 03:20 PM	

+="CN87583-A1"	"08.091 Internal Coaching Program"	="Australian Taxation Office"	03-Jun-08	="Vocational training"	03-Jun-08	30-Dec-08	190160.00	=""	="Workplace Coaching Pty Ltd"	03-Jun-08 04:37 PM	

+="CN87584"	"Software devlopment contractor"	="Australian Crime Commission"	03-Jun-08	="Personnel recruitment"	28-Apr-08	31-Jul-08	73920.00	=""	="Longley Stapleton"	03-Jun-08 04:50 PM	

+="CN87585"	" 9150 66-020-2811  Aircraft Piston Lubricating Oil   OMD-370 Aeroshell W120   30x205L Drums    "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	23-Apr-08	30-Apr-08	21955.50	=""	="SHELL"	03-Jun-08 05:01 PM	

+="CN87586-A1"	" 9150 66-086-8598  Gear Lubricating Oil OEP-220  38x205L BP Hypogear 80W-90    "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	30-Apr-08	07-May-08	28980.32	=""	="BP Australia Ltd"	03-Jun-08 05:11 PM	

+="CN87588"	" 9150 66-017-3041  Engine Lubricating Oil  25 Drums OMD 115 in 205L "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	01-May-08	08-May-08	14262.88	=""	="Caltex"	03-Jun-08 05:23 PM	

+="CN87589"	"Recruitment of graduates for the Department of Broadband, Communications and the Digital Economy's 2009 graduate Program"	="Department of Broadband Communications and the Digital Economy"	03-Jun-08	="Recruitment services"	26-May-08	26-Sep-08	48400.00	="ATM08/1028"	="Hoban Recruitment"	03-Jun-08 06:09 PM 

--- /dev/null
+++ b/admin/partialdata/01Mar2008to05Mar2008valto.xls
@@ -1,1 +1,550 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN63814"	"ASIC renewals for January 2008"	="Civil Aviation Safety Authority"	03-Mar-08	="Security surveillance and detection"	01-Jan-08	08-Feb-08	41485.00	="07/225-00"	="Aviation ID Australia Pty Ltd"	03-Mar-08 08:56 AM	

+="CN63815"	"Promotional products for AOD campaign"	="Civil Aviation Safety Authority"	03-Mar-08	="Promotional material or annual reports"	08-Feb-08	07-Mar-08	76120.00	="07/227-00"	="The Promotional Shoh"	03-Mar-08 09:00 AM	

+="CN63816"	" Finance - Recruitment and placement fees "	="Civil Aviation Safety Authority"	03-Mar-08	="Recruitment services"	18-Feb-08	30-Apr-08	18191.00	="07/228-00"	="Hays Personnel Services (Australia) Pty Ltd"	03-Mar-08 09:03 AM	

+="CN63817"	" System Safety Specialist - Bowtie Training Course "	="Civil Aviation Safety Authority"	03-Mar-08	="Aircraft"	14-Apr-08	16-Apr-08	38500.00	="07/232-00"	="RPS Safety & Risk"	03-Mar-08 09:12 AM	

+="CN63819"	"Temporary Staff - Communication Officer"	="Civil Aviation Safety Authority"	03-Mar-08	="Recruitment services"	11-Feb-08	16-May-08	20286.00	="07/235-00"	="Ambit Recruitment Group"	03-Mar-08 09:18 AM	

+="CN63820"	"Small Team Leader Course"	="Civil Aviation Safety Authority"	03-Mar-08	="Development"	25-Mar-08	17-Jun-08	19058.00	="07/238-00"	="Software Education Associates Ltd"	03-Mar-08 09:25 AM	

+="CN63822"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Community and social services"	03-Mar-08	11-Apr-08	14000.01	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	03-Mar-08 09:27 AM	

+="CN63823"	"Development of Best Practice Project Cost Estimation Standards Workshop"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Hotels and lodging and meeting facilities"	27-Feb-08	28-Aug-08	15000.00	=""	="FSASER HOTEL PTY LTD"	03-Mar-08 09:27 AM	

+="CN63824"	"SERVICES TO AUDIT COMMITTEE"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Accounting and auditing"	21-Feb-08	21-Feb-10	33000.00	=""	="Morison Consulting Pty Ltd"	03-Mar-08 09:28 AM	

+="CN63825"	"Contract Staff - APS 4"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Community and social services"	25-Feb-08	30-Jun-08	31500.04	="TRS05/251"	="Allstaff Australia P/L"	03-Mar-08 09:28 AM	

+="CN63826"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Community and social services"	03-Mar-08	30-May-08	20000.00	="TRS05/251"	="AMBIT GROUP PTY LTD"	03-Mar-08 09:28 AM	

+="CN63821"	"Sponsorship to the Helicopter Association of Australia"	="Civil Aviation Safety Authority"	03-Mar-08	="Sponsorship of event or celebrity"	11-Mar-08	13-Mar-08	15000.00	="07/239-00"	="Helicopter Assocaiton of Australia"	03-Mar-08 09:28 AM	

+="CN63827"	"SSL Certificate Renewal"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Software"	01-Mar-08	01-Mar-10	45283.21	=""	="VERISIGN AUSTRALIA PTY LTD"	03-Mar-08 09:28 AM	

+="CN63828"	"Contracted staff services"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Community and social services"	03-Jan-08	29-Feb-08	20790.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	03-Mar-08 09:28 AM	

+="CN63829"	"Provision of specialised training services Provision of specialised training services"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Specialised educational services"	27-Feb-08	30-Jun-08	33000.00	="APS COMMISSION 2005/014"	="D'ARCY CONSULTING GROUP PTY LTD"	03-Mar-08 09:28 AM	

+="CN63830"	"Reporting system maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Management advisory services"	22-Feb-08	30-Apr-08	22000.00	="T2004/0699"	="Rosslogic Pty Ltd"	03-Mar-08 09:28 AM	

+="CN63831"	"Financial Analysis"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Accounting and auditing"	25-Feb-08	07-Mar-08	50000.01	="TRS06/037"	="PRICEWATERHOUSECOOPERS"	03-Mar-08 09:29 AM	

+="CN63832"	"Dept non-campaign press advertising"	="Department of Infrastructure Transport Regional Development and Local Government"	03-Mar-08	="Human resources services"	01-Feb-08	30-Jun-08	550000.00	="TRS08/050"	="HMA Blaze Pty Ltd"	03-Mar-08 09:29 AM	

+="CN63833"	"Registration to the Australian Pacific Aviation Outlook Summit 2008"	="Civil Aviation Safety Authority"	03-Mar-08	="Aircraft"	29-Jul-08	30-Jul-08	12380.00	="07/240-00"	="Terrapinn (Austalia) Pty Ltd"	03-Mar-08 09:36 AM	

+="CN63834"	"Temporary Admin Staff"	="Civil Aviation Safety Authority"	03-Mar-08	="Recruitment services"	01-Nov-07	30-Jun-08	40000.00	="07/241-00"	="Vedior Asia Pacific Pty Ltd"	03-Mar-08 09:39 AM	

+="CN63835"	"Purchase of MFD"	="Civil Aviation Safety Authority"	03-Mar-08	="Multifunction machines"	22-Feb-08	21-Mar-08	10155.00	="07/242-00"	="Ricoh Australia Pty Ltd - ACT"	03-Mar-08 09:45 AM	

+="CN63836"	"Development of interactive game for AOD website"	="Civil Aviation Safety Authority"	03-Mar-08	="World wide web WWW site design services"	14-Feb-08	14-Mar-08	23100.00	="07/243-00"	="Visual Jazz Pty Ltd"	03-Mar-08 09:48 AM	

+="CN63837"	"ASIC renewals for February 2008"	="Civil Aviation Safety Authority"	03-Mar-08	="Security surveillance and detection"	01-Feb-08	29-Feb-08	60722.00	="07/244-00"	="Aviation ID Australia Pty Ltd"	03-Mar-08 09:52 AM	

+="CN63838"	"Temporary Staff - FOI"	="Civil Aviation Safety Authority"	03-Mar-08	="Recruitment services"	08-Jan-08	01-Feb-08	30000.00	="07/245-00"	="Tanner Menzies Pty Ltd"	03-Mar-08 09:54 AM	

+="CN63839"	"The maintenance contract for the Protectdrive encryption software"	="Civil Aviation Safety Authority"	03-Mar-08	="Software"	10-Mar-08	09-Mar-09	15785.00	="07/246-00"	="Lightsource Technologies Australia Pty Ltd"	03-Mar-08 09:59 AM	

+="CN63840"	"Software renewal - content keeper"	="Civil Aviation Safety Authority"	03-Mar-08	="Software"	28-Feb-08	27-Feb-09	12320.00	="07/247-00"	="Open Systems Australia"	03-Mar-08 10:03 AM	

+="CN63842"	"Tambour door units and shelves for Perth Accommodation"	="Civil Aviation Safety Authority"	03-Mar-08	="Office Equipment and Accessories and Supplies"	28-Feb-08	28-Mar-08	23771.00	="07/249-00"	="Planex Sales"	03-Mar-08 10:06 AM	

+="CN63843-A1"	"Evaluatuion of the Community Transition Strategy for Release 3 of the Change Program."	="Australian Taxation Office"	03-Mar-08	="Market research"	04-Dec-07	30-Jun-10	340000.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	03-Mar-08 10:09 AM	

+="CN63853"	"Supply of 20 radios and accessories"	="Australian Federal Police"	03-Mar-08	="Two way radios"	21-Feb-08	30-Mar-08	88444.40	=""	="Motorola Australia Pty Limited"	03-Mar-08 11:19 AM	

+="CN63857"	" Repair Aircraft Parts "	="Defence Materiel Organisation"	03-Mar-08	="Aircraft"	03-Mar-08	03-Apr-08	48272.80	=""	="sikorsky aircraft australia ltd"	03-Mar-08 11:33 AM	

+="CN63858"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	03-Mar-08	="Aircraft"	03-Mar-08	18-Mar-08	56737.52	=""	="sikorsky aircraft australia ltd"	03-Mar-08 11:41 AM	

+="CN63860"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	03-Mar-08	="Aircraft"	03-Mar-08	18-Mar-08	11640.64	=""	="sikorsky aircraft australia ltd"	03-Mar-08 11:46 AM	

+="CN63861"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	03-Mar-08	="Aircraft"	03-Mar-08	18-Mar-08	11640.64	=""	="sikorsky aircraft australia ltd"	03-Mar-08 11:50 AM	

+="CN63862"	" Repair of Aircraft parts "	="Defence Materiel Organisation"	03-Mar-08	="Aircraft"	03-Mar-08	18-Mar-08	57534.14	=""	="sikorsky aircraft australia ltd"	03-Mar-08 11:54 AM	

+="CN63864"	"Earthmoving equipment parts"	="Department of Defence"	03-Mar-08	="Earthmoving buckets or its parts or accessories"	03-Mar-08	12-May-08	17800.42	=""	="Palfinger Australia Pty Ltd"	03-Mar-08 11:59 AM	

+="CN63868"	" BAND HEADWEAR, SEVENFOLD, HEAD-DRESS KHAKI PUGGAREES "	="Defence Materiel Organisation"	03-Mar-08	="Clothing accessories"	15-Feb-08	30-May-08	24904.00	=""	="MOUNTCASTLE PTY LTD"	03-Mar-08 12:16 PM	

+="CN63870"	"Supply of Helmet, Safety, Various Colours, Plastic, with Chinstrap and Visor"	="Defence Materiel Organisation"	03-Mar-08	="Safety helmets"	25-Feb-08	28-Mar-08	52539.30	=""	="Amare Safety Pty Ltd"	03-Mar-08 12:21 PM	

+="CN63871-A1"	" Centrelink Agent Program - Area North Australia "	="Centrelink"	03-Mar-08	="Community and social services"	01-Jul-07	30-Jun-08	39682.15	=""	="Tiwi Island Local Government"	03-Mar-08 12:26 PM	

+="CN63873"	"Office Manager - Hobart"	="Office of the Director of Public Prosecutions"	03-Mar-08	="Personnel recruitment"	01-Jul-98	29-Feb-08	358002.97	=""	="Australian Government Solicitor"	03-Mar-08 12:48 PM	

+="CN63875"	" Temporary accommodation for staff member "	="Office of the Director of Public Prosecutions"	03-Mar-08	="Hotel rooms"	25-Feb-08	16-May-08	10773.00	=""	="Quest on James"	03-Mar-08 01:08 PM	

+="CN63877"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	03-Mar-08	="Drugs and Pharmaceutical Products"	17-Jan-08	31-Mar-08	17280.00	=""	="Sanofi Pasteur Pty Ltd"	03-Mar-08 02:23 PM	

+="CN63882-A1"	"Super Choice - update to the production of the 'Super & Us Mob' Booklet"	="Australian Taxation Office"	03-Mar-08	="Brand marketing or advertising instructional materials"	01-Mar-08	31-Mar-08	38500.00	=""	="Austrialian Securities and Investments Commission"	03-Mar-08 03:18 PM	

+="CN63881"	"Project maintenence"	="Australian Centre for International Agricultural Research"	03-Mar-08	="Agricultural research services"	01-Jul-07	30-Jun-12	13750.00	=""	="University of Queensland"	03-Mar-08 03:21 PM	

+="CN63883"	"Audit Services"	="Child Support Agency"	03-Mar-08	="Accounting and auditing"	25-Feb-08	31-Mar-08	39930.00	=""	="ASCENT"	03-Mar-08 03:21 PM	

+="CN63884"	"Telephony Services"	="Child Support Agency"	03-Mar-08	="Utilities"	20-Feb-08	29-Feb-08	23266.10	=""	="NEC AUSTRALIA PTY LTD"	03-Mar-08 03:21 PM	

+="CN63885"	"Printing Services"	="Child Support Agency"	03-Mar-08	="Printed media"	18-Feb-08	19-Feb-08	10287.20	=""	="NEW MILLENNIUM"	03-Mar-08 03:22 PM	

+="CN63886"	"Government Searches"	="Child Support Agency"	03-Mar-08	="Information services"	14-Feb-08	30-Jun-08	25000.00	=""	="CITEC"	03-Mar-08 03:22 PM	

+="CN63887"	"Removalist Services"	="Child Support Agency"	03-Mar-08	="Material packing and handling"	13-Feb-08	30-Jun-08	38583.60	=""	="MOVERS AND SHAKERS BUSINESS"	03-Mar-08 03:22 PM	

+="CN63888"	"External Training"	="Child Support Agency"	03-Mar-08	="Information services"	11-Feb-08	20-Feb-08	12000.00	=""	="THE TRUSTEE FOR SUCCESS VENTURE (WA"	03-Mar-08 03:22 PM	

+="CN63889"	"Communication Devices"	="Child Support Agency"	03-Mar-08	="Communications Devices and Accessories"	07-Feb-08	30-Jun-08	16530.27	=""	="TELSTRA BUSINESS SERVICES"	03-Mar-08 03:22 PM	

+="CN63890"	"ICT Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	29-Feb-08	30-Jun-08	78839.20	=""	="PEOPLEBANK"	03-Mar-08 03:22 PM	

+="CN63891"	"Provision of computers, monitors, and relocation works"	="Child Support Agency"	03-Mar-08	="Computer Equipment and Accessories"	29-Feb-08	30-Jun-08	21988.29	=""	="EDS (AUSTRALIA) PTY LTD"	03-Mar-08 03:22 PM	

+="CN63892"	"Telephony Services"	="Child Support Agency"	03-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Feb-08	30-Jan-10	7568000.00	=""	="TELSTRA BUSINESS SERVICES"	03-Mar-08 03:22 PM	

+="CN63893"	"External Training"	="Child Support Agency"	03-Mar-08	="Information services"	28-Feb-08	31-Dec-08	15400.00	=""	="BULL & BEAR SPECIAL"	03-Mar-08 03:22 PM	

+="CN63894"	"External Training"	="Child Support Agency"	03-Mar-08	="Information services"	26-Feb-08	19-Apr-08	11000.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	03-Mar-08 03:23 PM	

+="CN63895"	"Printing Services"	="Child Support Agency"	03-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Feb-08	30-Jun-08	229999.99	=""	="ROTHFIELD PRINT MANAGEMENT"	03-Mar-08 03:23 PM	

+="CN63896"	"Audit Services"	="Child Support Agency"	03-Mar-08	="Accounting and auditing"	25-Feb-08	31-Mar-08	35200.00	=""	="ASCENT"	03-Mar-08 03:23 PM	

+="CN63897"	"ICT Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	07-Feb-08	30-Jul-08	102960.00	=""	="CANDLE AUSTRALIA LTD"	03-Mar-08 03:23 PM	

+="CN63898"	"External Training"	="Child Support Agency"	03-Mar-08	="Information services"	15-Jan-08	28-Feb-08	10000.00	=""	="ADELAIDE CONVENTION CENTRE"	03-Mar-08 03:23 PM	

+="CN63899"	"Security Services"	="Child Support Agency"	03-Mar-08	="Security surveillance and detection"	22-Nov-07	30-Jun-08	12100.00	=""	="CHUBB ELECTRONIC SECURITY (VIC)"	03-Mar-08 03:23 PM	

+="CN63900"	"Temporary Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	07-Dec-07	30-Jan-09	27500.00	=""	="MS GLENYS ROPER"	03-Mar-08 03:23 PM	

+="CN63901"	"ICT Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	04-Dec-07	30-Sep-08	105820.00	=""	="COMPAS PTY LTD"	03-Mar-08 03:23 PM	

+="CN63902"	"ICT Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	17-Aug-07	31-Aug-08	32472.00	=""	="ENCORE IT SERVICES PTY LTD"	03-Mar-08 03:24 PM	

+="CN63903"	"IT Contractor Services"	="Child Support Agency"	03-Mar-08	="Human resources services"	03-Dec-07	31-Mar-08	105820.00	=""	="SOUTHERN CROSS COMPUTING"	03-Mar-08 03:24 PM	

+="CN63904"	"Printing Services"	="Child Support Agency"	03-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Feb-08	03-Nov-08	5838261.24	=""	="SALMAT DOCUMENT"	03-Mar-08 03:24 PM	

+="CN63905"	"Leased Office Equipment"	="Child Support Agency"	03-Mar-08	="Office machines and their supplies and accessories"	07-Feb-08	29-Jan-11	33206.80	=""	="FUJI XEROX AUSTRALIA PTY LTD"	03-Mar-08 03:24 PM	

+="CN63906"	"Medical Assessments"	="Child Support Agency"	03-Mar-08	="Business administration services"	06-Feb-08	30-Jun-08	16500.00	=""	="HEALTH FOR INDUSTRY"	03-Mar-08 03:24 PM	

+="CN63907"	"Leased Vehicles"	="Child Support Agency"	03-Mar-08	="Travel facilitation"	04-Feb-08	30-Jan-10	96696.05	=""	="LEASEPLAN AUSTRALIA LIMITED"	03-Mar-08 03:24 PM	

+="CN63908"	"Government Searches"	="Child Support Agency"	03-Mar-08	="Work related organisations"	04-Feb-08	15-Feb-08	17600.00	=""	="CITEC"	03-Mar-08 03:24 PM	

+="CN63909"	"Government Searches"	="Child Support Agency"	03-Mar-08	="Work related organisations"	04-Feb-08	15-Feb-08	17600.00	=""	="CITEC"	03-Mar-08 03:24 PM	

+="CN63910"	"Interpreting Services"	="Child Support Agency"	03-Mar-08	="Writing and translations"	04-Feb-08	15-Feb-08	23100.00	=""	="DEPARTMENT OF IMMIGRATION AND"	03-Mar-08 03:25 PM	

+="CN63911"	"Credit Searches"	="Child Support Agency"	03-Mar-08	="Credit agencies"	04-Feb-08	15-Feb-08	24200.00	=""	="VEDA ADVANTAGE"	03-Mar-08 03:25 PM	

+="CN63915"	" Animal research "	="Australian Centre for International Agricultural Research"	03-Mar-08	="Agricultural research services"	11-Feb-08	30-Apr-08	15510.00	=""	="AusVet Animal Health Services"	03-Mar-08 03:36 PM	

+="CN63916"	" Name and Address annual maintenance fee for period 01/01/2008-31/12/2008 "	="Australian Taxation Office"	03-Mar-08	="License management software"	01-Jan-08	31-Dec-08	22000.00	=""	="Dimension Data Australia Pty Ltd"	03-Mar-08 03:36 PM	

+="CN63917-A1"	"Fitout construction for Coffs Harbour Customer Service Centre refit."	="Centrelink"	03-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Mar-08	30-Jun-08	470437.00	=""	="David J Smith Building Pty Ltd"	03-Mar-08 03:43 PM	

+="CN63918"	"Education management"	="Australian Centre for International Agricultural Research"	03-Mar-08	="Educational and research structures"	20-Mar-08	31-Dec-11	451141.00	=""	="University of South Pacific"	03-Mar-08 03:49 PM	

+="CN63919"	"motor vehicle spare parts"	="Department of Defence"	03-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	13035.00	=""	="general bearings"	03-Mar-08 03:50 PM	

+="CN63920"	" ROLLERISED FORKLIFT SLIPPER, AIRCRAFT  AND LASHING MODIFICATION KIT "	="Defence Materiel Organisation"	03-Mar-08	="Forklift or elevator accessories or supplies"	17-Dec-07	17-Dec-07	29993.92	=""	="NTP FORKLIFTS PTY LTD"	03-Mar-08 03:50 PM	

+="CN63914"	" Animal research "	="Australian Centre for International Agricultural Research"	03-Mar-08	="Agricultural research services"	11-Feb-08	30-Apr-08	15510.00	=""	="AusVet Animal Health Services"	03-Mar-08 03:53 PM	

+="CN63921"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	03-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	22221.96	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	03-Mar-08 03:58 PM	

+="CN63922"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	03-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	35642.82	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	03-Mar-08 04:03 PM	

+="CN63924"	"COVER STOLE COMPLETE"	="Defence Materiel Organisation"	03-Mar-08	="Life vests or preservers"	26-Feb-08	27-May-08	49852.00	=""	="LIGHT AIRCRAFT"	03-Mar-08 04:15 PM	

+="CN63925"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	03-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	25246.08	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	03-Mar-08 04:16 PM	

+="CN63926"	" Radars Support "	="Australian Crime Commission"	03-Mar-08	="Radarbased surveillance systems"	19-Dec-07	19-Dec-08	282758.30	=""	="Magenta Technologies"	03-Mar-08 04:23 PM	

+="CN63927"	"Staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	19-Dec-08	10544.00	=""	="VEDIOR ASIA PACIFIC PTY LIMITED"	03-Mar-08 04:26 PM	

+="CN63928"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	19-Feb-08	19-Mar-08	12050.00	=""	="Dataflex Pty Ltd"	03-Mar-08 04:26 PM	

+="CN63929"	"Venue cost for FaHSCIA Leadership Program Residential component"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	31-Jul-08	50000.00	=""	="GOOLABRI COUNTRY RESORT"	03-Mar-08 04:26 PM	

+="CN63930"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	19-Feb-08	30-Jun-08	45370.66	=""	="DELL AUSTRALIA PTY LIMITED"	03-Mar-08 04:26 PM	

+="CN63931"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	19-Feb-08	30-Jun-08	68904.00	=""	="Paxus Australia Pty Ltd"	03-Mar-08 04:26 PM	

+="CN63932"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	19-Feb-08	19-Mar-08	37999.93	=""	="DELL AUSTRALIA PTY LIMITED"	03-Mar-08 04:26 PM	

+="CN63933"	"Provision of Executive Search & Recruitment Servic"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Human resources services"	21-Feb-08	30-Jun-08	293000.00	=""	="Hamilton James and Bruce Pty Ltd"	03-Mar-08 04:26 PM	

+="CN63934"	"Written acceptance of conditions of work"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	11000.00	=""	="GEOSCIENCE AUSTRALIA"	03-Mar-08 04:26 PM	

+="CN63935"	"Catering, Venue Hire, Accommodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	14919.00	=""	="Voyages Hotels and Resort"	03-Mar-08 04:27 PM	

+="CN63936"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	20-Feb-08	30-Mar-08	64638.80	=""	="KAZ GROUP PTY LTD"	03-Mar-08 04:27 PM	

+="CN63937"	"Financial Statements"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	46200.00	=""	="Australian Government Actuary"	03-Mar-08 04:27 PM	

+="CN63938"	"Printing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	04-Apr-08	50151.20	=""	="Pirion Pty Limited"	03-Mar-08 04:27 PM	

+="CN63939"	"Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	28-Feb-08	40425.00	=""	="Interaction Consulting Group PtyLtd"	03-Mar-08 04:27 PM	

+="CN63940"	"Corinna Street Relocation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	30-Jun-08	14300.00	=""	="DEPARTMENT OF FINANCE"	03-Mar-08 04:27 PM	

+="CN63941"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	31-Mar-08	12870.00	=""	="Korda Mentha"	03-Mar-08 04:27 PM	

+="CN63943"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	31-Mar-08	13476.00	=""	="Langford"	03-Mar-08 04:28 PM	

+="CN63944"	"Accomodation Move to Corina Street"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Financial and Insurance Services"	15-Feb-08	30-Jun-08	32230.74	=""	="Getronics Australia Pty Limited"	03-Mar-08 04:28 PM	

+="CN63945"	"Prepare, deliver & evaluate the delivery of the ICGW Alice Springs 19-21 Feb 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Work related organisations"	15-Feb-08	21-Feb-08	10296.00	="225"	="Swinburne University of Technology"	03-Mar-08 04:28 PM	

+="CN63946-A1"	"Autism Specetrum Disorders Expert Reference Group"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Human resources services"	18-Feb-08	30-Jun-08	30000.00	=""	="Professor Bruce Tonge"	03-Mar-08 04:28 PM	

+="CN63947"	"Accomodation Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	15063.00	=""	="Getronics Australia Pty Limited"	03-Mar-08 04:28 PM	

+="CN63948"	"Hyatt Catering at Parliament House"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	50000.00	=""	="Belconnen Premier Inn Pty Ltd"	03-Mar-08 04:28 PM	

+="CN63949"	"Email archiving solution"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	18700.00	=""	="Business Aspect Pty Ltd"	03-Mar-08 04:28 PM	

+="CN63950"	"NT STO ICC Darwin Phase 2"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Financial and Insurance Services"	15-Feb-08	30-Jun-08	10330.10	=""	="Getronics Australia Pty Limited"	03-Mar-08 04:28 PM	

+="CN63951"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	21-Feb-08	30-Jun-08	76296.00	=""	="Paxus Australia Pty Ltd"	03-Mar-08 04:29 PM	

+="CN63952"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	96800.00	=""	="ASCENT GOVERNANCE PTY LIMITED"	03-Mar-08 04:29 PM	

+="CN63953"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	31-Mar-08	27390.00	=""	="YELLOW EDGE"	03-Mar-08 04:29 PM	

+="CN63954"	"Finding for Northern Territory Response (NTER) Mat"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	55000.00	=""	="Blake Dawson Waldron"	03-Mar-08 04:29 PM	

+="CN63955"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	26-Feb-08	26-Mar-08	90912.93	=""	="COMPUTERCORP (OPERATIONS)"	03-Mar-08 04:29 PM	

+="CN63956"	"IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	22220.00	=""	="AUSTRALIAN FORENSIC SERVICES P/L"	03-Mar-08 04:29 PM	

+="CN63957"	"Tech Infrastructure Specialist Team Lead"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	28-Feb-08	30-Jun-08	158004.00	=""	="Avanade Australia Pty Ltd"	03-Mar-08 04:29 PM	

+="CN63958"	"Specialised Taxation Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Business administration services"	29-Feb-08	27-Apr-08	57110.00	=""	="Cordelta"	03-Mar-08 04:29 PM	

+="CN63959"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	29-Feb-08	20-Mar-08	105615.92	=""	="COMPUTERCORP (OPERATIONS)"	03-Mar-08 04:30 PM	

+="CN63960"	"Map Intelligence Maintenance Renewal"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	18038.80	=""	="Forge Data Solutions"	03-Mar-08 04:30 PM	

+="CN63961"	"Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	15840.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	03-Mar-08 04:30 PM	

+="CN63962"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	28-Feb-08	30-Jun-08	67320.00	=""	="CLICKS IT RECRUITMENT"	03-Mar-08 04:30 PM	

+="CN63963"	"Purchase of AArtwork for SA State Office - Re-location"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Arts and crafts equipment and accessories and supplies"	26-Feb-08	21-Mar-08	11566.00	=""	="SMART ART GALLERY PTY LTD"	03-Mar-08 04:30 PM	

+="CN63964"	"Creative & PR Panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	14-Feb-09	67500.00	=""	="MORRIS WALKER PTY. LIMITED"	03-Mar-08 04:30 PM	

+="CN63965"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Software"	22-Feb-08	30-Mar-08	47114.40	=""	="HEWLETT PACKARD AUST LTD"	03-Mar-08 04:30 PM	

+="CN63966"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	22-Feb-08	23-Mar-08	16760.00	=""	="Dataflex Pty Ltd"	03-Mar-08 04:31 PM	

+="CN63967"	"Development of TV, Radio & Newspaper ads for IDPwD & Naitonal Disability Awards"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Printed media"	22-Feb-08	31-Oct-08	77600.00	=""	="SMART Sydney Pty Ltd"	03-Mar-08 04:31 PM	

+="CN63968"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	21-Feb-08	30-Jun-08	55512.76	=""	="DELL AUSTRALIA PTY LIMITED"	03-Mar-08 04:31 PM	

+="CN63969"	"Baron high back executive, black leather chair (21 fitted with castors & 23 fitted with glides)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	25-Feb-08	22990.00	=""	="OFFICEMAX AUSTRALIA LIMITED"	03-Mar-08 04:31 PM	

+="CN63970"	"Report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	12440.00	=""	="Coffey Environment Specialist"	03-Mar-08 04:31 PM	

+="CN63971"	"Technical Infrastructure Specialist"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	26-Feb-08	30-Jun-08	84216.00	=""	="AMBIT GROUP PTY LIMITED"	03-Mar-08 04:31 PM	

+="CN63972"	"Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	25-Jun-08	15400.00	=""	="Acme Consulting Pty Ltd"	03-Mar-08 04:31 PM	

+="CN63973"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Jun-08	76953.00	=""	="Wallis Consulting Group Pty Ltd"	03-Mar-08 04:31 PM	

+="CN63974"	"Library Material"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	30-Jun-08	55328.81	=""	="COPYRIGHT AGENCY LIMITED"	03-Mar-08 04:32 PM	

+="CN63975"	"S453-1 Exams (3) Redfern, South, National, Sydney"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	28-Mar-08	15000.00	="220"	="Senatore Brennan Rashid"	03-Mar-08 04:32 PM	

+="CN63976"	"Admin fees for five (5) IACMDP Participants"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	27500.00	=""	="DEPARTMENT OF EDUCATION"	03-Mar-08 04:32 PM	

+="CN63977"	"Refresh Regional Introduction to Corporate Government Workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	31-May-08	36000.00	=""	="DEBORAH DURNAN"	03-Mar-08 04:32 PM	

+="CN63978"	"Reimbursement to UGS February 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Real estate services"	28-Feb-08	28-Feb-08	97945.23	=""	="United Group Services"	03-Mar-08 04:32 PM	

+="CN63979"	"Project SSAT Project No.458 Progress Claim 4"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Real estate services"	31-Dec-07	27-Feb-08	18423.13	=""	="MPA Construction Group Pty Ltd"	03-Mar-08 04:32 PM	

+="CN63980"	"S453-1 Exams (3) Bulabula, Yuyung, Yilli"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	04-Apr-08	39693.00	="220"	="Enmark Business Advisors Pty Ltd"	03-Mar-08 04:32 PM	

+="CN63981"	"Shiavello Workstations & Partitions"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	30-Jun-08	135850.00	=""	="Schiavello (ACT) Pty Ltd"	03-Mar-08 04:32 PM	

+="CN63982"	"Short Term Contract for Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Human resources services"	04-Feb-08	31-Mar-08	32000.00	=""	="CAPITOL CHILLED FOODS AUST. PTY LTD"	03-Mar-08 04:33 PM	

+="CN63983"	"Community consultation, recruitment, research facilitation and preparation of two key milestone"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management advisory services"	04-Feb-08	30-Jun-08	95000.00	=""	="Centrelink - Departmental"	03-Mar-08 04:33 PM	

+="CN63984"	"Senior Software Tester"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	04-Feb-08	30-Jun-08	59840.00	=""	="Talent International (ACT)"	03-Mar-08 04:33 PM	

+="CN63985"	"Conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	04-Feb-08	40000.00	=""	="Holiday Inn Esplanade Darwin"	03-Mar-08 04:33 PM	

+="CN63986"	"Inv. COL0500/20401-2 march 08 Rental L24,500 Collins St Mel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Real estate services"	22-Feb-08	01-Mar-08	29320.20	=""	="ECS Property Group"	03-Mar-08 04:33 PM	

+="CN63987"	"FACSIA National Office Stores Jan 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	01-Feb-08	29-Feb-08	20303.97	=""	="Corporate Express Australia"	03-Mar-08 04:33 PM	

+="CN63988"	"FACSIA National Office Stores Jan 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	01-Feb-08	29-Feb-08	26412.82	=""	="Corporate Express Australia"	03-Mar-08 04:33 PM	

+="CN63989"	"FACSIA ICC Offices Stores Jan 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	01-Feb-08	29-Feb-08	17512.37	=""	="Corporate Express Australia"	03-Mar-08 04:33 PM	

+="CN63990"	"FACSIA National Office Stores Dec 07"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	02-Jan-08	29-Feb-08	26390.07	=""	="Corporate Express Australia"	03-Mar-08 04:34 PM	

+="CN63991"	"FACSIA ICC Offices Stores Dec 07"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	02-Jan-08	29-Feb-08	15196.46	=""	="Corporate Express Australia"	03-Mar-08 04:34 PM	

+="CN63992"	"FACSIA Qld Office Stores Jan 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office supplies"	01-Feb-08	29-Feb-08	10144.39	=""	="Corporate Express Australia"	03-Mar-08 04:34 PM	

+="CN63993"	"SSAT Review of Child Support Case management"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Business administration services"	21-Dec-07	21-Feb-08	64087.65	=""	="Blake Dawson"	03-Mar-08 04:34 PM	

+="CN63995"	"As per contract 2007/2"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Information services"	12-Feb-08	20-Feb-08	39600.00	=""	="Hyperware Consulting Pty Ltd"	03-Mar-08 04:34 PM	

+="CN63996"	"Rental 380 Queens St BNE"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Real estate services"	01-Mar-08	01-Mar-08	35134.47	=""	="ARIA Property International"	03-Mar-08 04:34 PM	

+="CN63997"	"SSAT Appeal Forms Mailout"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Public Utilities and Public Sector Related Services"	29-Jan-08	07-Feb-08	11627.00	=""	="Blue Print"	03-Mar-08 04:34 PM	

+="CN63998"	"Employment Advertising Inv.CM08010128"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Advertising"	25-Jan-08	01-Feb-08	30926.76	=""	="HMA Blaze Pty Limited"	03-Mar-08 04:35 PM	

+="CN63999"	"Contracted Research - Milstone 1 Project Commencement"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	05-Feb-08	33000.00	=""	="AUSTRALIAN INSTITUTE OF FAMILY"	03-Mar-08 04:35 PM	

+="CN64000"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	31-Mar-08	32340.00	=""	="DE CASTRO & SULLIVAN"	03-Mar-08 04:35 PM	

+="CN64001"	"Automated Testing Framework"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Business administration services"	14-Feb-08	01-May-08	44000.00	=""	="KJ ROSS & ASSOCIATES"	03-Mar-08 04:35 PM	

+="CN64002"	"WhereScape Red - part-time contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	14-Feb-08	30-Jun-08	59400.00	=""	="Management Information Principles"	03-Mar-08 04:35 PM	

+="CN64003"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Hardware"	12-Feb-08	12-Mar-08	16445.00	=""	="DELL AUSTRALIA PTY LIMITED"	03-Mar-08 04:35 PM	

+="CN64004"	"Printing-Indigenous Affairs Annual Reports 2006-07"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	30-Jun-08	11715.00	=""	="Swell Design Group Pty Ltd"	03-Mar-08 04:35 PM	

+="CN64005"	"Purchase of data"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	15-Feb-08	15-Feb-08	100000.00	=""	="Insolvency & Trustee Services Austr"	03-Mar-08 04:35 PM	

+="CN64006"	"ACT STO Relocation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	30-Jun-08	21897.54	=""	="Getronics Australia Pty Limited"	03-Mar-08 04:36 PM	

+="CN64007"	"Hyatt Catering at Parliament House"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Beverages"	15-Feb-08	30-Jun-08	13000.00	=""	="Hyatt Hotel Canberra"	03-Mar-08 04:36 PM	

+="CN64008"	"Temporary Employment-Shari Ariffin"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Financial and Insurance Services"	15-Feb-08	30-Jun-08	20000.00	=""	="VEDIOR ASIA PACIFIC PTY LIMITED"	03-Mar-08 04:36 PM	

+="CN64009"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	02-May-08	26125.00	=""	="LINDSAY J. ROBERTS. FCA"	03-Mar-08 04:36 PM	

+="CN64010"	"Placement fee for hrs worked"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Human resources services"	15-Feb-08	30-Jun-08	16900.00	=""	="THE PUBLIC AFFAIRS RECRUITMENT"	03-Mar-08 04:36 PM	

+="CN64011"	"S453-1 Exams"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	21-Mar-08	15400.00	=""	="HOHOLT FINANCIAL CONSULTING P/L"	03-Mar-08 04:36 PM	

+="CN64012"	"Provision of Printing Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Printed media"	08-Feb-08	30-Jun-08	15162.40	=""	="NEW MILLENNIUM PRINT"	03-Mar-08 04:36 PM	

+="CN64013"	"Venue & Conference Hire"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Financial and Insurance Services"	07-Feb-08	30-Jun-08	10961.50	=""	="Mercure Inn  Townsville"	03-Mar-08 04:37 PM	

+="CN64015"	".Net Developer"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Telecommunications media services"	07-Feb-08	30-Jun-08	73260.00	=""	="CLICKS IT RECRUITMENT"	03-Mar-08 04:37 PM	

+="CN64016"	"Communication with families and services about child care and early childhood services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	15-Apr-08	159500.00	="213"	="Orima Research Pty Ltd"	03-Mar-08 04:37 PM	

+="CN64017"	"Provision of Privacy Material for NTRE Legal Services Panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Legal services"	06-Feb-08	30-Jun-08	20000.00	=""	="Australian Government - Office of t"	03-Mar-08 04:37 PM	

+="CN64018"	"Conference costs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	25000.00	=""	="DIPLOMAT ALICE SPRINGS"	03-Mar-08 04:37 PM	

+="CN64019"	"Workstation assessement and equipment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Office and desk accessories"	11-Feb-08	11-Feb-08	10124.08	=""	="ISIS Projects Pty Ltd"	03-Mar-08 04:37 PM	

+="CN64020"	"Provision of Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	11-Feb-08	30-Jun-08	113960.00	=""	="Avanade Australia Pty Ltd"	03-Mar-08 04:37 PM	

+="CN64021"	"S453-1 Exams"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	21-Mar-08	16500.00	=""	="TNR Financial Services Pty Ltd"	03-Mar-08 04:37 PM	

+="CN64022"	"Performance Testing of FOFMS/CCMS Enhancement ER6"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Business administration services"	08-Feb-08	30-Apr-08	49170.00	=""	="RPM SOLUTIONS PTY LTD"	03-Mar-08 04:38 PM	

+="CN64023"	"Provision of Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	03-Mar-08	="Computer services"	08-Feb-08	30-Jun-08	69696.00	=""	="COLLECTIVE RESOURCES IT"	03-Mar-08 04:38 PM	

+="CN64024-A1"	"Variation to the contract for the Provision for an Application Developer"	="Comsuper"	03-Mar-08	="Human resources services"	25-Jun-07	30-Jun-08	191048.00	=""	="Icon Recruitment"	03-Mar-08 04:40 PM	

+="CN64025"	"Provision for maintenance Support for HP ProCurve Routing Switch and Associated Equipment"	="Comsuper"	03-Mar-08	="Software"	01-Nov-07	28-Feb-09	22884.00	=""	="Hewlett-Packard Australia Limited"	03-Mar-08 04:47 PM	

+="CN64026-A1"	"Provision for Business Analyst"	="Comsuper"	03-Mar-08	="Human resources services"	06-Mar-08	30-Jun-08	63580.00	=""	="Diversity Pty Ltd"	03-Mar-08 04:50 PM	

+="CN64027-A2"	"Provision for a System Tester"	="Comsuper"	03-Mar-08	="Human resources services"	23-Aug-07	23-May-08	111540.00	=""	="Eurolink Consulting Australia"	03-Mar-08 04:53 PM	

+="CN64028"	"Type 1 Alarm System Upgrade"	="Department of the Treasury"	03-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Jan-08	30-Jun-09	19712.00	=""	="Honeywell"	03-Mar-08 04:54 PM	

+="CN64029"	"Purchase of the RSA Authentication Infrastructure"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	02-Jan-08	11-Jan-08	23874.68	=""	="Delv Pty Ltd"	03-Mar-08 04:54 PM	

+="CN64030"	"Purchase of VMWARE Licences"	="Department of the Treasury"	03-Mar-08	="Electronic Components and Supplies"	02-Jan-08	11-Jan-08	17079.78	=""	="Kaz Technology Services Pty"	03-Mar-08 04:54 PM	

+="CN64031"	"Copyright fees from 1/7/06 to 30/6/07"	="Department of the Treasury"	03-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Jan-08	04-Jan-08	16877.27	=""	="Copyright Agency Pty Ltd"	03-Mar-08 04:54 PM	

+="CN64032"	"Repairs and maintenance to B Class security cabints"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	16-Jan-08	18-Jan-08	19200.00	=""	="ASI Locksmiths"	03-Mar-08 04:54 PM	

+="CN64033"	"Rack Mount Server for Enterprise Discovery Project"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	22-Jan-08	01-Feb-08	56193.50	=""	="Dell Australia"	03-Mar-08 04:54 PM	

+="CN64034"	"Services for the catalogue of policy experience an"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	31-Jan-11	275000.00	=""	="Monash University"	03-Mar-08 04:54 PM	

+="CN64035"	"Professional conference organisation services for"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	31-Dec-08	2070000.00	=""	="Tour Hosts Pty Ltd"	03-Mar-08 04:55 PM	

+="CN64036"	"Taxi Fares and service Fees"	="Department of the Treasury"	03-Mar-08	="Transportation and Storage and Mail Services"	19-Oct-07	30-Jun-08	13000.00	=""	="Cabcharge Australia Pty Ltd"	03-Mar-08 04:55 PM	

+="CN64037"	"Mobile Phone costs"	="Department of the Treasury"	03-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	30-Jun-08	20000.00	=""	="Telstra Corporation Limited"	03-Mar-08 04:55 PM	

+="CN64038"	"Gazette- APS Jobs Subscription"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	10162.99	=""	="Australian Public Service"	03-Mar-08 04:55 PM	

+="CN64039"	"Comcar costs"	="Department of the Treasury"	03-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	30-Jun-08	25000.00	=""	="ComCar"	03-Mar-08 04:55 PM	

+="CN64040"	"Annual Renewal of Eviews version6.00 standard edition 80 seat govt. volume licence"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	09-Jan-09	11770.00	=""	="MathStat Software"	03-Mar-08 04:55 PM	

+="CN64042"	"Commvault licensing maintenance renewal"	="Department of the Treasury"	03-Mar-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	06-Jan-09	19886.81	=""	="Dell Computer"	03-Mar-08 04:55 PM	

+="CN64043"	"Advertisement for Executive Director - Feb 2008"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	22-Feb-08	20465.26	=""	="HMA Blaze Pty Limited"	03-Mar-08 04:56 PM	

+="CN64044"	"Supply & fit new locks to B class Cabinets"	="Department of the Treasury"	03-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Feb-08	12-Feb-08	19200.01	=""	="ASI Locksmiths"	03-Mar-08 04:56 PM	

+="CN64045"	"Lease of motor vehicle YFH46Z"	="Department of the Treasury"	03-Mar-08	="Transportation and Storage and Mail Services"	12-Feb-08	30-Jun-08	15500.00	=""	="LeasePlan Australia"	03-Mar-08 04:56 PM	

+="CN64041-A1"	" Variation to the contract for the Provision for a System Tester "	="Comsuper"	03-Mar-08	="Human resources services"	23-Aug-07	23-May-08	34360.00	=""	="Macro Recruitment"	03-Mar-08 04:56 PM	

+="CN64046"	"Conference Management Services"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	18-Feb-08	10363485.00	=""	="Tour Hosts Pty Ltd"	03-Mar-08 04:56 PM	

+="CN64047"	"SAS programming training"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	29-Feb-08	27500.00	=""	="SAS Institute Australia Pty Ltd"	03-Mar-08 04:56 PM	

+="CN64048"	"40 940B 19" TFT Bezel Black Monitors"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	25-Jan-08	01-Feb-08	13640.00	=""	="Dataflex Pty Ltd"	03-Mar-08 04:56 PM	

+="CN64049"	"Nortel Switches"	="Department of the Treasury"	03-Mar-08	="Information Technology Broadcasting and Telecommunications"	25-Jan-08	30-Jan-08	26670.21	=""	="OPTUS Billing Services Pty Ltd"	03-Mar-08 04:56 PM	

+="CN64050"	"Nortel Handsets"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	25-Jan-08	30-Jan-08	19056.74	=""	="OPTUS Billing Services Pty Ltd"	03-Mar-08 04:57 PM	

+="CN64051"	"Kleenmaid Dishwashers"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	30-Jan-08	08-Feb-08	14394.00	=""	="Kleenmaid"	03-Mar-08 04:57 PM	

+="CN64052"	"Quantity Surveyor for Technical Design and Construction of New Computer Room"	="Department of the Treasury"	03-Mar-08	="Building and Construction and Maintenance Services"	30-Jan-08	31-Mar-08	11000.00	=""	="Donald Cant Watts Corker (A.C.T) Pt"	03-Mar-08 04:57 PM	

+="CN64053"	"Sub Lease agreament 2008-2012"	="Department of the Treasury"	03-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-12	1394837.00	=""	="National Capital Authority"	03-Mar-08 04:57 PM	

+="CN64054"	"Climate Change Impacts and Risks - Science Study"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	44000.00	=""	="Graeme Pearman Consulting Pty Ltd"	03-Mar-08 04:57 PM	

+="CN64055"	"Services relating to maintaining and improving the"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	21-Mar-08	53790.00	="07.005"	="Ernst & Young"	03-Mar-08 04:57 PM	

+="CN64056"	"Services relating to maintaining and improving the"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-May-08	203610.00	="07.005-13-2"	="Ernst & Young"	03-Mar-08 04:57 PM	

+="CN64057"	"Services relating to maintaining and improving int"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	212960.00	="07.005.013-3"	="Ernst & Young"	03-Mar-08 04:57 PM	

+="CN64058"	"Provision of Tax Economics Research Services"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-10	300000.00	=""	="Monash University, Cashier"	03-Mar-08 04:58 PM	

+="CN64059"	"Supply of clientwise Expect-Technology Service Per"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	15-Feb-10	30030.00	=""	="Clientwise Pty Ltd"	03-Mar-08 04:58 PM	

+="CN64060"	"Airfares"	="Department of the Treasury"	03-Mar-08	="Travel and Food and Lodging and Entertainment Services"	02-Jan-08	30-Jun-08	234860.82	=""	="American Express International"	03-Mar-08 04:58 PM	

+="CN64061"	"Airfares"	="Department of the Treasury"	03-Mar-08	="Travel and Food and Lodging and Entertainment Services"	03-Feb-08	30-Jun-08	87057.61	=""	="American Express International"	03-Mar-08 04:58 PM	

+="CN64062"	"Scoping and design consultancy for the proposed ne"	="Department of the Treasury"	03-Mar-08	="Education and Training Services"	22-Jan-08	23-Jul-08	24700.50	="TSYRFT007/07"	="Eclipse Group Pty Ltd"	03-Mar-08 04:58 PM	

+="CN64063"	"Provision of programme and project management cons"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	48000.00	=""	="Tanner James Management"	03-Mar-08 04:58 PM	

+="CN64064"	"Provision of professional IT security consultancy"	="Department of the Treasury"	03-Mar-08	="Information Technology Broadcasting and Telecommunications"	18-Jan-08	30-Jun-08	25000.00	=""	="Cybertrust"	03-Mar-08 04:58 PM	

+="CN64065"	"CCMU Project - changes to GCUBED"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	08-Feb-08	49500.00	=""	="ANU"	03-Mar-08 04:58 PM	

+="CN64066"	"Services related to membership of the Tax Law Desi"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	23-May-08	10000.00	=""	="F John Morgan, Barrister at Law"	03-Mar-08 04:59 PM	

+="CN64067"	"Stationery - Ministers State Office"	="Department of the Treasury"	03-Mar-08	="Paper Materials and Products"	10-Jan-08	30-Apr-08	10000.00	=""	="Corporate Express Australia Limited"	03-Mar-08 04:59 PM	

+="CN64068"	"Stationery costs - Ministers State Office"	="Department of the Treasury"	03-Mar-08	="Paper Materials and Products"	10-Jan-08	30-Apr-08	15000.00	=""	="Corporate Express Australia Limited"	03-Mar-08 04:59 PM	

+="CN64069"	"Building Services Panel"	="Department of the Treasury"	03-Mar-08	="Building and Construction and Maintenance Services"	17-Jan-08	29-Feb-08	50000.00	=""	="G E Shaw & Associates (ACT) Pty Ltd"	03-Mar-08 04:59 PM	

+="CN64070"	"Optus - upgrade of local area network switching in"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	13-Feb-08	30-Jun-08	83163.55	="TSYRFT01307"	="Optus Billing Services Pty Ltd"	03-Mar-08 04:59 PM	

+="CN64071"	"Treasury in-house Lawyer - Mark Molloy - Australia"	="Department of the Treasury"	03-Mar-08	="Public Utilities and Public Sector Related Services"	19-Sep-07	31-Dec-07	15000.00	="TSY"	="Aust Government Solicitor  ACT"	03-Mar-08 04:59 PM	

+="CN64072"	"Request to design brands/logos & templatesfor prog material & assist w cross agency implemen"	="Department of the Treasury"	03-Mar-08	="Paper Materials and Products"	03-Jan-08	04-Apr-08	27648.00	=""	="Cre8ive"	03-Mar-08 04:59 PM	

+="CN64073"	"Services related to membership of the Tax Law Desi"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	23-May-08	10000.00	=""	="Price Waterhouse Coopers"	03-Mar-08 05:00 PM	

+="CN64074"	"Services related to membership of the Tax Law Desi"	="Department of the Treasury"	03-Mar-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	23-May-08	10000.00	=""	="Blake Dawson"	03-Mar-08 05:00 PM	

+="CN64075"	"Type 1 Intruder Alarm System Maintenance"	="Department of the Treasury"	03-Mar-08	="National Defence and Public Order and Security and Safety Services"	02-Jan-08	21-Nov-09	64345.26	=""	="Honeywell"	03-Mar-08 05:00 PM	

+="CN64076"	"Provide stores and stationery services to the Trea"	="Department of the Treasury"	03-Mar-08	="Office Equipment and Accessories and Supplies"	01-Jul-07	30-Apr-08	10617.00	=""	="Corporate Express Australia Limited"	03-Mar-08 05:00 PM	

+="CN64077"	"Treasurer's Office - Corporate Express"	="Department of the Treasury"	03-Mar-08	="Paper Materials and Products"	09-Jan-08	30-Mar-08	10000.00	=""	="Corporate Express Australia Limited"	03-Mar-08 05:00 PM	

+="CN64078"	"Stationery - Ministers State Office"	="Department of the Treasury"	03-Mar-08	="Paper Materials and Products"	10-Jan-08	30-Apr-08	10000.00	=""	="Corporate Express Australia Limited"	03-Mar-08 05:00 PM	

+="CN64079"	"annual Maintenance and support for the period 1 march 2008 to Feb 2009Secure Password AdminExchange Admin"	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	01-Mar-08	28-Feb-09	20753.00	=""	="Net IQ Corp"	03-Mar-08 05:23 PM	

+="CN64080"	"Packaged Modules Pro-Rated to TRIM Context Annual Maintenance Period: 01/03/2008 - 30/06/2008"	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	01-Mar-08	30-Jun-08	139627.00	=""	="Tower Software"	03-Mar-08 05:23 PM	

+="CN64081"	"Hedge trimming at Springvale War Cemetery & Victoria Garden of Remembrance"	="Department of Veterans' Affairs"	03-Mar-08	="Building construction and support and maintenance and repair services"	01-Mar-08	28-Feb-10	63000.00	=""	="Kevin J Woof"	03-Mar-08 05:23 PM	

+="CN64082"	"Serena License and Support Version Manager Support Version Manager Named LicenseSupportNet"	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	18-Jan-08	24-Dec-08	15902.00	=""	="Serena Software Pty Ltd"	03-Mar-08 05:23 PM	

+="CN64083-A1"	"Internal Audit Services (extension of CaIRO 106605)"	="Department of Veterans' Affairs"	03-Mar-08	="Accounting and auditing"	04-Jan-05	31-Dec-09	3500000.00	=""	="KPMG Australia"	03-Mar-08 05:23 PM	

+="CN64084"	"Provision of design and project management services further to the 2004/05 upgrade of Hellfire Pass Memorial museum, Thailand (107132)"	="Department of Veterans' Affairs"	03-Mar-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	155201.00	=""	="Hewitt Pender Associates Pty Ltd"	03-Mar-08 05:23 PM	

+="CN64085-A2"	"Accounts Payable Prioject contractor"	="Department of Veterans' Affairs"	03-Mar-08	="Software"	13-Oct-07	10-Oct-08	163800.00	=""	="Paxus Australia Pty Ltd"	03-Mar-08 05:24 PM	

+="CN64086"	"TRIM Upgreade ProRata Maint.TRIM Context 6R2 Licence UpgradeTRIM Annual MaintenacePro Rata 4 Months ONLY for this Upgrade ONLY to align with orginal annual maintenance due 1 July each year."	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	05-Feb-08	30-Jun-08	139627.00	=""	="Tower Software Engineering"	03-Mar-08 05:24 PM	

+="CN64087"	"SAS 50 to 100 Workstation"	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	01-Feb-08	30-Nov-08	30624.00	=""	="SAS Institute Australia Pty Ltd"	03-Mar-08 05:24 PM	

+="CN64088-A1"	"Citrix Sub Adv Jan 08 to Dec 08."	="Department of Veterans' Affairs"	03-Mar-08	="Computer services"	01-Jan-08	31-Dec-08	83208.00	=""	="Citrix Systems Asia Pacific Pty Ltd"	03-Mar-08 05:24 PM	

+="CN64089"	"Contractor for clerical work"	="Department of Veterans' Affairs"	03-Mar-08	="Human resources services"	01-Nov-07	30-Apr-08	15210.00	=""	="Effective People Recruitment and HR Specialists"	03-Mar-08 05:24 PM	

+="CN64090"	"Contractors for clerical work"	="Department of Veterans' Affairs"	03-Mar-08	="Human resources services"	01-Mar-08	31-Aug-08	50400.00	=""	="Effective People Recruitment and HR Specialists"	03-Mar-08 05:24 PM	

+="CN64092"	"Security Services - Security Guard Services 280 Elizabeth St Surry Hills NSW. Alarm Monitoring and Emergency Onsite Attendance to 280 Elizabeth St Surry Hills NSW & 6 Epic Pl Chester Hill NSW"	="Department of Veterans' Affairs"	03-Mar-08	="Security and personal safety"	21-Feb-08	30-Jun-09	97000.00	=""	="Fogl Knight Security Resources Pty Ltd"	03-Mar-08 05:24 PM	

+="CN64094"	" Support, Structual Component Aircraft. NSN 1560-01-501-6180.  Wing section, Inner  Qty 8 "	="Defence Materiel Organisation"	04-Mar-08	="Aircraft wings"	03-Mar-08	10-Jul-08	10232.00	=""	="Associated Aircraft Manufacturing and Sales Australia Pty Ltd"	04-Mar-08 07:04 AM	

+="CN64095"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	04-Mar-08	="Medical Equipment and Accessories and Supplies"	29-Feb-08	31-Mar-08	14387.12	=""	="Aaxis Pacific Pty Ltd"	04-Mar-08 08:11 AM	

+="CN64096"	"     SUN Annual Maintenance     "	="Therapeutic Goods Administration"	04-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	04-Mar-09	21001.09	=""	="Alpha West Services Pty Ltd"	04-Mar-08 08:15 AM	

+="CN64097"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	04-Mar-08	="Medical Equipment and Accessories and Supplies"	03-Mar-08	02-Apr-08	29257.58	=""	="Laerdal Pty Ltd"	04-Mar-08 08:16 AM	

+="CN64098"	"Airway Masks For ADF"	="Defence Materiel Organisation"	04-Mar-08	="Resuscitation masks or accessories"	29-Feb-08	02-Apr-08	10010.00	=""	="LMA Pacmed Pty Ltd"	04-Mar-08 08:21 AM	

+="CN64099"	"National Manager recruitment fee"	="Therapeutic Goods Administration"	04-Mar-08	="Personnel recruitment"	01-Jul-07	30-Jun-08	30432.60	=""	="Boyden International"	04-Mar-08 08:33 AM	

+="CN64100"	"Management Consulting Expenses"	="Therapeutic Goods Administration"	04-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Mar-08	62533.00	=""	="Agility Consulting Pty Ltd"	04-Mar-08 08:41 AM	

+="CN64101"	"ABC Work Management Consulting"	="Therapeutic Goods Administration"	04-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-May-08	14080.00	=""	="Cordelta Pty Ltd"	04-Mar-08 08:59 AM	

+="CN64107"	"Contractor Fee for Service"	="Therapeutic Goods Administration"	04-Mar-08	="Recruitment services"	01-Nov-07	29-Feb-08	13200.00	=""	="Cordelta Pty Ltd"	04-Mar-08 09:13 AM	

+="CN64109"	"Computer & notepack"	="Department of the House of Representatives"	04-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	113032.00	=""	="Toshiba Aust P/L"	04-Mar-08 09:16 AM	

+="CN64110"	"    Adaprive Training Implementation    "	="Therapeutic Goods Administration"	04-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15400.00	=""	="Kleinhardt Business Consultant"	04-Mar-08 09:19 AM	

+="CN64113"	"Computers & accessories"	="Department of the House of Representatives"	04-Mar-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	139625.00	=""	="Toshiba Aust P/L"	04-Mar-08 09:20 AM	

+="CN64114"	"Employment of temps for census"	="Therapeutic Goods Administration"	04-Mar-08	="Recruitment services"	04-Feb-08	29-Feb-08	11000.00	=""	="Effective People Pty Ltd"	04-Mar-08 09:22 AM	

+="CN64115"	"    Annual Maintenance AllFusion Erwin Data Modeler    "	="Therapeutic Goods Administration"	04-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Mar-08	18-Mar-09	11739.20	=""	="Computer Associates Pty Ltd"	04-Mar-08 09:29 AM	

+="CN64116"	"Computer software"	="Department of the House of Representatives"	04-Mar-08	="Software"	14-Feb-08	29-Feb-08	31154.75	=""	="Technology One Ltd"	04-Mar-08 09:32 AM	

+="CN64117"	"    Temporary Accommodation of National Manager    "	="Therapeutic Goods Administration"	04-Mar-08	="Personal and Domestic Services"	01-Jan-08	31-Mar-08	11000.00	=""	="Pinnacle Apartments Hotel"	04-Mar-08 09:32 AM	

+="CN64120"	"    Consumer Named Application Server Licences and Support    "	="Therapeutic Goods Administration"	04-Mar-08	="Information Technology Broadcasting and Telecommunications"	28-Feb-08	28-Feb-09	177787.50	=""	="Cognos Pty Ltd"	04-Mar-08 09:36 AM	

+="CN64119"	"Computer software"	="Department of the House of Representatives"	04-Mar-08	="Software"	18-Feb-08	31-Mar-08	20337.90	=""	="Zallcom Pty Ltd"	04-Mar-08 09:36 AM	

+="CN64121"	"Supply of laboratory machinery"	="Therapeutic Goods Administration"	04-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Mar-08	01-Mar-10	55063.80	=""	="Applied Bio Systems"	04-Mar-08 09:39 AM	

+="CN64123"	"Supply and installation of automatic doors"	="Therapeutic Goods Administration"	04-Mar-08	="Building and Construction and Maintenance Services"	01-Mar-08	30-May-08	66289.30	=""	="Kone Elevators Pty Ltd"	04-Mar-08 09:47 AM	

+="CN64128-A1"	"Provision for Probity Advisor"	="Comsuper"	04-Mar-08	="Business and corporate management consultation services"	27-Feb-08	30-Jun-08	40000.00	=""	="Walterturnbull"	04-Mar-08 10:03 AM	

+="CN64129"	"Provision for the supply of Servers"	="Comsuper"	04-Mar-08	="Hardware"	28-Feb-08	20-Mar-08	39370.00	=""	="Dataflex Pty Ltd"	04-Mar-08 10:07 AM	

+="CN64134"	" SUPPLY OF DENTAL SURGICAL UNIT, MOTOR & HANDPIECES "	="Defence Materiel Organisation"	04-Mar-08	="Medical Equipment and Accessories and Supplies"	29-Feb-08	28-Mar-08	19184.82	=""	="ADEC AUSTRALIA PTY LTD"	04-Mar-08 10:20 AM	

+="CN64138"	"Provision of Site Safety and Asbestos Mitigation"	="Department of Immigration and Citizenship"	04-Mar-08	="Project administration or planning"	11-Feb-08	07-Jul-08	1500000.00	=""	="Heymann-Cohen Pty Limited"	04-Mar-08 10:43 AM	

+="CN64139"	"Computer software"	="Australian Bureau of Statistics"	04-Mar-08	="Computer services"	28-Dec-06	28-Dec-09	143467.50	=""	="Officemax Australia Ltd"	04-Mar-08 10:51 AM	

+="CN64140"	"Relocation costs"	="Australian Bureau of Statistics"	04-Mar-08	="Transportation and Storage and Mail Services"	31-May-07	30-Jun-08	10070.34	=""	="Toll Transitions"	04-Mar-08 10:51 AM	

+="CN64141"	" Applications Development (Phase 3) "	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	02-Jan-08	31-Mar-08	60984.00	=""	="APA Management"	04-Mar-08 11:06 AM	

+="CN64142"	"Applications Development (Phase 1)"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	02-Jul-07	26-Oct-07	71808.00	=""	="APA Management"	04-Mar-08 11:14 AM	

+="CN64143"	"Various Printed Matter"	="Australian Taxation Office"	04-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Feb-08	26-Mar-08	12082.40	=""	="PHOENIX SOCIETY INC"	04-Mar-08 11:19 AM	

+="CN64144"	"6 X CLASS B 3 DRAWER CABINETS"	="Australian Taxation Office"	04-Mar-08	="Furniture and Furnishings"	29-Feb-08	29-Feb-08	16234.68	=""	="PLANEX SALES PTY LTD"	04-Mar-08 11:19 AM	

+="CN64145"	"IT Contractor"	="Australian Taxation Office"	04-Mar-08	="Engineering and Research and Technology Based Services"	29-Feb-08	02-Sep-08	155034.00	=""	="TECHWRITER PLACEMENTS PTY LTD"	04-Mar-08 11:19 AM	

+="CN64146"	"Recruitment process advertised in the Gazette"	="Australian Taxation Office"	04-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	12000.00	=""	="Hays Personnel Services"	04-Mar-08 11:19 AM	

+="CN64147"	"IT Hardware"	="Australian Taxation Office"	04-Mar-08	="Engineering and Research and Technology Based Services"	28-Feb-08	30-Jun-08	13398.00	=""	="COMSEC ENTERPRISES PTY LTD"	04-Mar-08 11:19 AM	

+="CN64148"	"Telephony Hardware"	="Australian Taxation Office"	04-Mar-08	="Engineering and Research and Technology Based Services"	27-Feb-08	30-Jun-08	56672.00	=""	="NEC AUSTRALIA PTY LTD"	04-Mar-08 11:20 AM	

+="CN64149"	"IT Contractor"	="Australian Taxation Office"	04-Mar-08	="Engineering and Research and Technology Based Services"	27-Feb-08	31-Dec-08	201850.00	=""	="Greythorn Pty Ltd"	04-Mar-08 11:20 AM	

+="CN64151"	"COURSE"	="Australian Taxation Office"	04-Mar-08	="Education and Training Services"	28-Feb-08	03-Mar-08	15749.80	=""	="Visual Analysis Pty Ltd"	04-Mar-08 11:21 AM	

+="CN64152"	"COURSE"	="Australian Taxation Office"	04-Mar-08	="Education and Training Services"	21-Feb-08	03-Mar-08	26800.00	=""	="Australian Public Service"	04-Mar-08 11:21 AM	

+="CN64153"	"CONTRACTORS"	="Australian Taxation Office"	04-Mar-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	29-Feb-08	13998.60	=""	="Hays Personnel Services"	04-Mar-08 11:22 AM	

+="CN64154"	"HECS EXPENSES 2007 CADETS"	="Australian Taxation Office"	04-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	29-Feb-08	48104.00	=""	="UNIVERSITY OF CANBERRA UNION"	04-Mar-08 11:22 AM	

+="CN64155"	"TRAINING INTERNAL AUDIT"	="Australian Taxation Office"	04-Mar-08	="Education and Training Services"	29-Feb-08	29-Feb-08	13295.00	=""	="THE INSTITUTE OF INTERNAL AUDITORS"	04-Mar-08 11:22 AM	

+="CN64150"	"Applications Development (Phase 2)"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	01-Nov-07	21-Dec-07	32100.00	=""	="APA Management"	04-Mar-08 11:25 AM	

+="CN64156"	"CONTRACT STAFF"	="Australian Taxation Office"	04-Mar-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	29-Feb-08	33310.76	=""	="Hudson Global Resources (Aust) P/L"	04-Mar-08 11:39 AM	

+="CN64157"	"Applications Development - (Sharepoint Concept)"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	02-Jul-07	28-Sep-07	49500.00	=""	="APA Management"	04-Mar-08 11:46 AM	

+="CN64158"	"MAINTENANCE OF FRIDGES"	="Australian Taxation Office"	04-Mar-08	="Domestic Appliances and Supplies and Consumer Electronic Products"	06-Jul-07	27-Feb-08	10000.00	=""	="COMMERCIAL AND INDUSTRIAL REFRI"	04-Mar-08 11:49 AM	

+="CN64159"	" modifications to the M113 A1 family of vehicles  contract no: 1105192 "	="Defence Materiel Organisation"	04-Mar-08	="Armoured fighting vehicles"	16-Dec-07	30-Apr-08	171560.81	=""	="GENERAL DYNAMICS LAND SYSTEMS"	04-Mar-08 11:51 AM	

+="CN64160"	"IT Contractor"	="Australian Taxation Office"	04-Mar-08	="Engineering and Research and Technology Based Services"	03-Mar-08	19-Apr-09	200200.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	04-Mar-08 11:52 AM	

+="CN64161"	"Extension to Contract CN64157. Development of Sharepoint"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	07-Nov-07	30-Nov-07	13200.00	=""	="APA Management Systems"	04-Mar-08 11:54 AM	

+="CN55669"	"Refurbishment- Admiralty House"	="Office of the Official Secretary to the Governor-General"	04-Mar-08	="Renovation of buildings or landmarks or monuments"	06-Dec-07	14-Mar-08	50202.00	=""	="Sydney Building Projects"	04-Mar-08 12:56 PM	

+="CN64164-A3"	"Application Support & Development Work Order No. 1"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	02-Jul-07	28-Sep-07	51766.00	=""	="CAPSTONE BLACK"	04-Mar-08 12:56 PM	

+="CN64165-A2"	"Application Support & Development -Work Order No. 2"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	02-Oct-07	02-Nov-07	19113.00	=""	="CAPSTONE BLACK"	04-Mar-08 01:04 PM	

+="CN55661"	"Water Tank Paving"	="Office of the Official Secretary to the Governor-General"	04-Mar-08	="Building construction and support and maintenance and repair services"	28-Sep-07	31-Jan-08	121847.00	=""	="Rowlands Landscapes"	04-Mar-08 01:06 PM	

+="CN38194"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	04-Mar-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	13492.20	=""	="CARLSON WAGONLIT TRAVEL"	04-Mar-08 01:10 PM	

+="CN64166-A2"	"Provision of Interpreter and Job Seeking Support Services."	="CRS Australia"	04-Mar-08	="Interpreters"	15-Feb-08	30-Sep-08	7985.00	=""	="Nawal Nadar"	04-Mar-08 01:21 PM	

+="CN64168"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	04-Mar-08	="Community and social services"	01-Jul-07	30-Jun-08	41819.53	=""	="Pukatja Community Inc"	04-Mar-08 01:22 PM	

+="CN64169-A1"	"Amendment to CN64165. Extended date and increase in value"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	07-Nov-07	30-Nov-07	14335.00	=""	="CAPSTONE BLACK"	04-Mar-08 01:55 PM	

+="CN64170-A2"	"Application Support & Development (Access - MOSS).  Work Order No. 3"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	03-Dec-07	29-Feb-08	39023.00	=""	="CAPSTONE BLACK"	04-Mar-08 02:09 PM	

+="CN64171"	"Recruitment - Accounts Payable Officer"	="Australian Crime Commission"	04-Mar-08	="Personnel recruitment"	11-Oct-07	22-Nov-07	11626.15	=""	="hays Personnel Services"	04-Mar-08 02:13 PM	

+="CN64172-A1"	"Applications Development Services.  Work Order 4"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	03-Mar-08	27-Jun-08	63712.00	=""	="CAPSTONE BLACK"	04-Mar-08 02:21 PM	

+="CN64162"	"Outposting of Lawyers to Provide Legal Advice to the Department and a Number of Portfolio Agencies"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-03	30-Jun-08	3353055.00	="0304-0001"	="Australian Government Solicitor"	04-Mar-08 02:23 PM	

+="CN64174-A2"	"Accounts Payable Officer"	="Australian Crime Commission"	04-Mar-08	="Personnel recruitment"	07-Dec-07	31-Jul-08	53255.37	=""	="Hudson Global Resources"	04-Mar-08 02:23 PM	

+="CN64178"	"Account management Fees"	="Australian Crime Commission"	04-Mar-08	="Financial accounting"	18-Dec-07	30-Jun-08	50000.00	=""	="ComSuper"	04-Mar-08 02:30 PM	

+="CN64183"	"Website Development Services"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="World wide web WWW site design services"	15-Aug-07	30-Sep-07	18975.00	=""	="OPC Pty Ltd"	04-Mar-08 02:48 PM	

+="CN64184"	" REPAIR AND OH OF BLACK HAWK MAIN LANDING GEAR ASSY. "	="Defence Materiel Organisation"	04-Mar-08	="Military rotary wing aircraft"	04-Mar-08	30-Jun-08	10732.30	=""	="SAAL"	04-Mar-08 02:50 PM	

+="CN64186"	"Best Practice Management Guidlines Software"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Software"	31-Oct-07	31-Oct-07	64684.39	=""	="Tower Software"	04-Mar-08 03:14 PM	

+="CN64189"	"Best Practice Management Guidelines for the Australian faunal Directory"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Management advisory services"	02-Oct-07	30-Jun-08	33000.00	="0708-359"	="URS Australia Pty Ltd"	04-Mar-08 03:18 PM	

+="CN64190"	"Media Monitoring"	="Australian Crime Commission"	04-Mar-08	="Print advertising"	12-Dec-07	30-Dec-07	21180.32	=""	="Media Monitors"	04-Mar-08 03:19 PM	

+="CN64194"	"Supply of Darkblue Suitcases"	="Defence Materiel Organisation"	04-Mar-08	="Leather luggage or handbags manufacturing services"	04-Mar-08	23-May-08	85074.00	=""	="Larosa Leathergoods"	04-Mar-08 03:26 PM	

+="CN64193"	"Software"	="Australian Crime Commission"	04-Mar-08	="Software"	21-Dec-07	09-Jan-08	257125.00	=""	="Pitney Bowes mapinfo P/L"	04-Mar-08 03:26 PM	

+="CN64195-A1"	"Provision of services in relation to systems integration and project management services for major infrastructure changes to the AFP Weston computer centre"	="Australian Federal Police"	04-Mar-08	="Project management software"	26-Nov-07	30-Sep-08	59439.60	=""	="Dimension Data Australia Pty Limited"	04-Mar-08 03:28 PM	

+="CN64196-A1"	"Planning Workshop"	="Australian Crime Commission"	04-Mar-08	="Education and Training Services"	30-Jan-08	01-Feb-08	11519.20	=""	="Goolabri Country Resort P/L"	04-Mar-08 03:32 PM	

+="CN64197"	" MANUFACTURE OF QTY 40 VALISE HULLS    "	="Department of Defence"	04-Mar-08	="Warehouse casers"	21-Jun-07	22-Feb-08	23685.64	=""	="ZODIAC GROUP AUSTRALIA"	04-Mar-08 03:33 PM	

+="CN64198"	"Upgrading Services for the Australian Faunal Directory"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Software"	02-Oct-07	29-Feb-08	70400.00	="0708-252"	="Peoplebank Australia Ltd"	04-Mar-08 03:36 PM	

+="CN64199"	"Gaurding Services"	="Australian Crime Commission"	04-Mar-08	="Security guard services"	07-Sep-07	31-Mar-08	273044.83	=""	="Chubb Security Aust P/L"	04-Mar-08 03:37 PM	

+="CN64202"	" Contractor - Comms Servs "	="Australian Crime Commission"	04-Mar-08	="Personnel recruitment"	11-Oct-07	30-Jun-08	94263.50	=""	="Icon Recruitmenmt P/L"	04-Mar-08 03:41 PM	

+="CN64201"	"Australian Biodiversity Information Facility Quantity Surveyor Services"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Software"	02-Oct-07	30-May-08	57000.00	="0708-242"	="Peoplebank Australia Ltd"	04-Mar-08 03:42 PM	

+="CN64204"	"SUPPLY OF CASE, FIELD PACK"	="Defence Materiel Organisation"	04-Mar-08	="Medical Equipment and Accessories and Supplies"	04-Mar-08	28-Mar-08	16979.16	=""	="THE ENERGY NETWORK"	04-Mar-08 03:45 PM	

+="CN64205"	"NetworkFees"	="Australian Crime Commission"	04-Mar-08	="Fixed network equipment and components"	01-Jul-07	30-Jun-08	1190193.00	=""	="Australian Federal Police"	04-Mar-08 03:46 PM	

+="CN64206"	"Quantity Surveyor Services"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="General building construction"	17-Oct-07	29-Feb-08	36850.00	="0607-401"	="Donald Cant Watts Corke"	04-Mar-08 03:51 PM	

+="CN64210"	"Software Systems"	="Australian Crime Commission"	04-Mar-08	="Software"	08-Feb-08	08-Feb-09	52135.00	=""	="Netwok General"	04-Mar-08 04:05 PM	

+="CN64211"	"Provision of Financial Advice for an Air Monitoring Study."	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Environmental protection"	03-Oct-07	31-Oct-07	15175.82	="0708-362"	="Australian Environment Agency Pty Ltd"	04-Mar-08 04:07 PM	

+="CN64214"	"Annual Levy Administered"	="Australian Crime Commission"	04-Mar-08	="Promotional material or annual reports"	19-Oct-07	21-Dec-07	16500.00	=""	="Finance & Administration"	04-Mar-08 04:10 PM	

+="CN64217"	"Surveillance"	="Australian Crime Commission"	04-Mar-08	="Security surveillance and detection"	01-Jan-08	25-Jan-08	40582.91	=""	="Leaseplan"	04-Mar-08 04:15 PM	

+="CN64216"	"Provision of financial advice on proposals for Climate Change Adaptation Research Facility"	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Management and Business Professionals and Administrative Services"	03-Oct-07	31-Oct-07	12210.00	="0708-382"	="Sinclair Knight Merz"	04-Mar-08 04:15 PM	

+="CN64219"	"Software Licenses, Products and Maintenance."	="Department of the Environment Water Heritage and the Arts"	04-Mar-08	="Management and Business Professionals and Administrative Services"	04-Oct-07	05-Oct-07	16016.00	="0708-203"	="ESRI Australia Pty Ltd"	04-Mar-08 04:21 PM	

+="CN64221"	"Equipment Hire"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Marquees"	14-Feb-08	21-Feb-08	15760.10	=""	="Kennards Hire Pty Ltd"	04-Mar-08 04:22 PM	

+="CN64220"	"Gaurding Services"	="Australian Crime Commission"	04-Mar-08	="Security and control equipment"	01-Jan-08	31-Jan-08	11289.59	=""	="Scope Protevtive Services P/L"	04-Mar-08 04:22 PM	

+="CN64222"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Grounds maintenance services"	26-Dec-07	25-Jan-08	11881.68	=""	="Trim Lawns & Complete Garden Services"	04-Mar-08 04:26 PM	

+="CN64223-A1"	"Software Tester"	="Australian Crime Commission"	04-Mar-08	="Personnel recruitment"	05-Feb-08	30-Jun-08	94265.60	=""	="Icon Recruitment P/L"	04-Mar-08 04:27 PM	

+="CN64227-A1"	" Labour Hire "	="Department of the Prime Minister and Cabinet"	04-Mar-08	="Application programming services"	01-Jul-07	31-Dec-07	70000.00	=""	="One Planet Solutions"	04-Mar-08 04:48 PM	

+="CN64228"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	04-Mar-08	="Commercial marine craft"	03-Mar-08	30-Jun-08	25681.92	=""	="SKILLED ENGINEERING LTD"	04-Mar-08 04:58 PM	

+="CN64229"	" AIRCRAFT SPARES  NSN 1680-01-158-5713 , ROD END ASSY , QTY 4 "	="Defence Materiel Organisation"	04-Mar-08	="Military transport helicopters"	04-Mar-08	12-Feb-09	12371.66	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	04-Mar-08 05:02 PM	

+="CN64230"	"Provision of Consultancy Services"	="Australian Securities and Investments Commission"	04-Mar-08	="Business and corporate management consultation services"	23-Jan-08	30-Jun-08	2500000.00	=""	="McKinsey Pacific Rim Inc"	04-Mar-08 05:19 PM	

+="CN64231"	" AIRCRAFT SPARES  NSN 1650-01-089-0444 , HEAD LINEAR ACTUATING , FEP , QTY 20 "	="Defence Materiel Organisation"	04-Mar-08	="Military transport helicopters"	04-Mar-08	13-May-09	37465.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	04-Mar-08 05:27 PM	

+="CN64232"	" AIRCRAFT SPARES  NSN 5340-01-105-3633 , HANDLE DOOR , QTY 40 "	="Defence Materiel Organisation"	04-Mar-08	="Military transport helicopters"	04-Mar-08	03-Jan-09	14236.20	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	04-Mar-08 05:43 PM	

+="CN64233"	"Wet Weather Ensemble"	="Defence Materiel Organisation"	05-Mar-08	="Clothing"	22-Jan-08	02-May-08	1847503.35	="RFT 2480027"	="Global Safety Solutions Management"	05-Mar-08 08:08 AM	

+="CN64234"	" 9150 99-458-6311   Engine Lubricating Oil 50 Drums *205L  Energol HPDX 40 "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	29-Feb-08	10-Mar-08	40719.00	=""	="BP Australia Ltd"	05-Mar-08 08:45 AM	

+="CN64235"	"Property Lease Darwin NT"	="Australian Federal Police"	05-Mar-08	="Lease and rental of property or building"	17-Jan-08	16-Jan-09	27132.84	=""	="HomeHunters Darwin"	05-Mar-08 09:15 AM	

+="CN64237-A1"	"Provision for Business Analyst"	="Comsuper"	05-Mar-08	="Human resources services"	06-Mar-08	30-Jun-08	71060.00	=""	="face2face Recruitment"	05-Mar-08 09:54 AM	

+="CN64238-A1"	"Variation to the contract for a System Tester"	="Comsuper"	05-Mar-08	="Human resources services"	06-Sep-07	06-Jun-08	47544.00	=""	="M&T Resources"	05-Mar-08 09:57 AM	

+="CN64239-A1"	"Provision for Fedlink Services"	="Comsuper"	05-Mar-08	="Software"	20-Feb-08	06-Sep-08	23815.00	=""	="Cybertrust Australia"	05-Mar-08 10:00 AM	

+="CN64241"	"Provision for Hewlett Packard Procurve switches and related services"	="Comsuper"	05-Mar-08	="Hardware"	06-Jun-07	30-Jun-07	23882.00	=""	="Commander Pty Ltd"	05-Mar-08 10:06 AM	

+="CN64242"	"Property Lease Darwin NT"	="Australian Federal Police"	05-Mar-08	="Lease and rental of property or building"	11-Oct-07	10-Oct-08	30002.64	=""	="HomeHunters Darwin"	05-Mar-08 10:08 AM	

+="CN64240"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Grounds maintenance services"	26-Jan-08	25-Feb-08	12528.68	=""	="Trim Lawns & Complete Garden Services"	05-Mar-08 10:12 AM	

+="CN64245"	" Aviation Spares , repair of Rotor Shaft Unit "	="Defence Materiel Organisation"	05-Mar-08	="Military rotary wing aircraft"	04-Mar-08	30-Apr-08	38776.85	=""	="Australian Aerospace"	05-Mar-08 10:22 AM	

+="CN64246"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft"	05-Mar-08	26-Mar-08	42204.47	=""	="sikorsky aircraft australia ltd"	05-Mar-08 10:28 AM	

+="CN64248-A2"	"Culture Awareness Training"	="Australian Federal Police"	05-Mar-08	="Work ethics or attitude training instructional materials"	05-Feb-08	08-Feb-08	31875.00	=""	="Asian Law Group Pty Ltd"	05-Mar-08 10:37 AM	

+="CN64251"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Mar-08	="Drugs and Pharmaceutical Products"	25-Feb-08	28-Mar-08	41093.60	=""	="Symbion Pharmacy Services"	05-Mar-08 10:57 AM	

+="CN64252"	"SUPPLY LARCV WHEEL RIM ASSEMBLIES"	="Department of Defence"	05-Mar-08	="Commercial marine craft"	22-Feb-08	30-Jun-08	18259.56	=""	="TITAN WHEELS AUSTRALIA"	05-Mar-08 10:58 AM	

+="CN64253-A3"	" SAP HR functional development services "	="Australian Federal Police"	05-Mar-08	="Human resources software"	12-Feb-08	30-Jun-09	590865.00	=""	="Oxygen Business Solutions Pty Ltd"	05-Mar-08 11:06 AM	

+="CN64254"	"Conference facilities"	="Australian Electoral Commission"	05-Mar-08	="Hotels and lodging and meeting facilities"	20-Feb-08	22-Feb-08	12062.50	=""	="The Sebel Launceston"	05-Mar-08 11:10 AM	

+="CN64255"	"Supply of Embroirdered Personalised Name Badges"	="Defence Materiel Organisation"	05-Mar-08	="Badges"	05-Mar-08	30-Jun-08	54450.00	=""	="Apparel Additions"	05-Mar-08 11:15 AM	

+="CN64256"	"Conduct of one off staff survey project"	="Australian Federal Police"	05-Mar-08	="Directional survey services"	03-Mar-08	30-Jun-08	19294.00	=""	="Onetest Pty Ltd"	05-Mar-08 11:21 AM	

+="CN64258"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Grounds maintenance services"	01-Jan-08	31-Jan-08	10727.90	=""	="Ian Spencer - VIP Home Services"	05-Mar-08 11:23 AM	

+="CN64259"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Material handling services"	27-Nov-07	31-Dec-07	17730.00	=""	="Oldfields Removals & Storage"	05-Mar-08 11:28 AM	

+="CN64260"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Freight loading or unloading"	27-Nov-07	31-Dec-07	15726.00	=""	="Oldfield Removals & Storage"	05-Mar-08 11:34 AM	

+="CN64257"	"Return of ballot materials from overseas"	="Australian Electoral Commission"	05-Mar-08	="International vessel transport services"	10-May-07	30-Sep-08	312119.59	=""	="McMillan Print Group Pty Ltd"	05-Mar-08 11:35 AM	

+="CN64262"	"Provision of Archiving Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	21-Feb-08	31-Dec-08	25383.60	=""	="ROLLS FILING SYSTEMS"	05-Mar-08 11:37 AM	

+="CN64263"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11847.44	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64264"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11058.17	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64265"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11311.38	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64266"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printed media"	22-Feb-08	30-Jun-08	15743.20	=""	="PIRION PTY LTD"	05-Mar-08 11:37 AM	

+="CN64267"	"Provision of Graphic Design Services"	="Medicare Australia"	05-Mar-08	="Graphic design"	22-Feb-08	30-Jun-08	42515.00	=""	="Couch Creative"	05-Mar-08 11:37 AM	

+="CN64268"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	28-Mar-08	10232.64	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:37 AM	

+="CN64269"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	28-Mar-08	19356.97	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:37 AM	

+="CN64270"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	22-Feb-08	22-Feb-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	05-Mar-08 11:38 AM	

+="CN64271"	"Provision of Customer Service Research"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	30-Apr-08	49500.00	=""	="Instinct and Reason Pty Ltd"	05-Mar-08 11:38 AM	

+="CN64272"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	22-Feb-08	17906.32	=""	="COMMAND RECRUITMENT GROUP"	05-Mar-08 11:38 AM	

+="CN64273"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	25-Feb-08	12-May-08	49543.20	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:38 AM	

+="CN64274"	"Provision of Customer Service Research"	="Medicare Australia"	05-Mar-08	="Marketing and distribution"	25-Feb-08	30-Jun-08	139920.00	=""	="Instinct and Reason Pty Ltd"	05-Mar-08 11:38 AM	

+="CN64275"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	217800.00	=""	="FINITE RECRUITMENT"	05-Mar-08 11:38 AM	

+="CN64276"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	15345.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:38 AM	

+="CN64277"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	10791.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:38 AM	

+="CN64279"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	14212.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:39 AM	

+="CN64280"	"Provision of Queue Management Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	111111.00	=""	="Nexa Group Pty Ltd"	05-Mar-08 11:39 AM	

+="CN64281"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Human resources services"	19-Feb-08	19-Feb-08	40689.00	=""	="AMBIT GROUP PTY LTD"	05-Mar-08 11:39 AM	

+="CN64282"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printed media"	19-Feb-08	19-Feb-08	59999.99	=""	="BHB PRINTING PTY LTD"	05-Mar-08 11:39 AM	

+="CN64278"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Freight loading or unloading"	27-Nov-07	31-Dec-07	16539.00	=""	="Oldfield Removals & Storage"	05-Mar-08 11:39 AM	

+="CN64283"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Human resources services"	19-Feb-08	19-Feb-08	71434.00	=""	="Mosaic Recruitment Pty Ltd"	05-Mar-08 11:39 AM	

+="CN64284"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	20-Feb-08	20-Feb-08	10032.00	=""	="1Staff Services Pty Limited"	05-Mar-08 11:39 AM	

+="CN64285"	"Provision of IT Training"	="Medicare Australia"	05-Mar-08	="Specialised educational services"	21-Feb-08	21-Feb-08	28600.00	=""	="IBM AUSTRALIA LIMITED"	05-Mar-08 11:39 AM	

+="CN64286"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	21-Feb-08	21-Feb-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	05-Mar-08 11:40 AM	

+="CN64288"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	21-Feb-08	21-Feb-08	20985.80	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:40 AM	

+="CN64289"	"Provision of Envelope Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	21-Feb-08	26-Feb-08	28979.72	=""	="AUSTRALIAN ENVELOPES"	05-Mar-08 11:40 AM	

+="CN64290"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	21-Feb-08	21-Feb-08	1259820.68	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:40 AM	

+="CN64291"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	66425.15	=""	="WESTFIELD SHOPPING CENTRE"	05-Mar-08 11:40 AM	

+="CN64292"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	28-Feb-08	16500.00	=""	="IBM AUSTRALIA LIMITED"	05-Mar-08 11:40 AM	

+="CN64294-A1"	"Provision of Advisory Services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	28-Feb-08	28-Feb-08	262987.18	=""	="PRICE WATERHOUSE COOPERS"	05-Mar-08 11:40 AM	

+="CN64295"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	30-Jun-08	477070.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:41 AM	

+="CN64296"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	28-Feb-08	29-Feb-08	11050.87	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	05-Mar-08 11:41 AM	

+="CN64297"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	28-Feb-08	11550.00	=""	="HERMES PRECISA PTY LTD"	05-Mar-08 11:41 AM	

+="CN64298"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	28-Feb-08	28-Feb-08	3457119.76	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:41 AM	

+="CN64299"	"Provision of Presentation Services"	="Medicare Australia"	05-Mar-08	="Personal appearance"	28-Feb-08	15-Aug-08	10670.00	=""	="Directions for Change"	05-Mar-08 11:41 AM	

+="CN64300"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	28-Feb-08	28-Feb-08	375433.30	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:41 AM	

+="CN64301"	"Provision of Business and Administration Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	28-Feb-08	28-Feb-08	130000.00	=""	="OFFICE OF THE PRIVACY COMMISSIONER"	05-Mar-08 11:42 AM	

+="CN64302"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	29-Feb-08	29-Feb-08	36366.00	=""	="Schiavello Project Interiors"	05-Mar-08 11:42 AM	

+="CN64303"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	29-Feb-08	29-Feb-08	39517.50	=""	="Schiavello Project Interiors"	05-Mar-08 11:42 AM	

+="CN64304"	"Provision of Advertising Services"	="Medicare Australia"	05-Mar-08	="Advertising"	29-Feb-08	30-Jun-08	16500.00	=""	="HMA BLAZE PTY LTD"	05-Mar-08 11:42 AM	

+="CN64305"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Software"	29-Feb-08	31-Mar-09	17325.00	=""	="Telelogic Australia Pty Ltd"	05-Mar-08 11:42 AM	

+="CN64306"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	26-Feb-08	30-Dec-09	11880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	05-Mar-08 11:42 AM	

+="CN64307"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Doors and windows and glass"	26-Feb-08	26-Feb-08	10867.01	=""	="DORMA BWN AUTOMATICS PTY LTD"	05-Mar-08 11:43 AM	

+="CN64308"	"Provision of Consultancy Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	26-Feb-08	30-Jun-08	54999.56	=""	="Margie Luke Consulting"	05-Mar-08 11:43 AM	

+="CN64310"	"Provision of mail house services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	27-Feb-08	27-Feb-08	25754.92	=""	="QM Technologies Pty Limited"	05-Mar-08 11:43 AM	

+="CN64311"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	27-Feb-08	30-Jun-08	17360.20	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	05-Mar-08 11:44 AM	

+="CN64312"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	19250.00	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64313"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	57171.40	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64314"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	92730.00	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64309"	"Equipment Hire - Marquee"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Marquees"	01-Jan-08	31-Mar-08	15647.90	=""	="Kennards Events Pty Ltd"	05-Mar-08 11:44 AM	

+="CN64315"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	15670.60	=""	="OPTUS NETWORKS PTY LIMITED"	05-Mar-08 11:44 AM	

+="CN64316"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	27-Feb-08	27-Feb-08	11078.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:45 AM	

+="CN64317"	"Provision of Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	24134.00	=""	="Schiavello (VIC) P/L"	05-Mar-08 11:45 AM	

+="CN64318"	"Provision of Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	102139.40	=""	="SCHIAVELLO (ACT) PTY LTD"	05-Mar-08 11:45 AM	

+="CN64319"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	241530.99	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:45 AM	

+="CN64320"	"Provision of Software Licences"	="Medicare Australia"	05-Mar-08	="Public administration and finance services"	27-Feb-08	30-Jun-08	13622.40	=""	="Holocentric Pty Ltd"	05-Mar-08 11:45 AM	

+="CN64321"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	85536.00	=""	="ICON RECRUITMENT PTY LTD"	05-Mar-08 11:45 AM	

+="CN64322"	"Provision of Archiving/Storage Services"	="Medicare Australia"	05-Mar-08	="Storage"	04-Feb-08	04-Feb-08	12001.67	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:45 AM	

+="CN64323"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	82500.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:45 AM	

+="CN64324"	"Provision of Promotional Products"	="Medicare Australia"	05-Mar-08	="Human resources services"	04-Feb-08	04-Feb-08	10725.00	=""	="GREEN FROG PROMOTIONS"	05-Mar-08 11:46 AM	

+="CN64325"	"Provision of Construction Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	04-Feb-08	04-Feb-08	31955.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	05-Mar-08 11:46 AM	

+="CN64326"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	05-Feb-08	05-Feb-08	473665.50	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:46 AM	

+="CN64327"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	05-Feb-08	05-Feb-08	27113.19	=""	="MasterSoft Systems Pty Ltd"	05-Mar-08 11:46 AM	

+="CN64328"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	06-Feb-08	06-Feb-08	23312.86	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	05-Mar-08 11:46 AM	

+="CN64329"	"Provision of Envelope Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	06-Feb-08	08-Feb-08	15620.00	=""	="AUSTRALIAN ENVELOPES"	05-Mar-08 11:46 AM	

+="CN64330"	"Provision of Graphic Design Services"	="Medicare Australia"	05-Mar-08	="Graphic design"	07-Feb-08	07-Feb-08	13458.50	=""	="SPECTRUM GRAPHICS"	05-Mar-08 11:46 AM	

+="CN64331"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Commercial and industrial furniture"	07-Feb-08	07-Feb-08	12293.02	=""	="James Richardson Corporation"	05-Mar-08 11:47 AM	

+="CN64332"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	08-Feb-08	08-Feb-08	330000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:47 AM	

+="CN64333"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	08-Feb-08	08-Feb-08	79101.00	=""	="PEOPLE IN COMPUTERS PTY LTD"	05-Mar-08 11:47 AM	

+="CN64334"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	08-Feb-08	12-Feb-08	40442.24	=""	="AUSTRALIA POST"	05-Mar-08 11:47 AM	

+="CN64335"	"WA Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	16488.03	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64336"	"VIC Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	45181.55	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64337"	"QLD Arnaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	34141.13	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64338"	"NSW Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	18-Feb-08	52310.33	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:48 AM	

+="CN64339"	"CABCHRG 050108-010208"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	04-Feb-08	27-Feb-08	13939.20	=""	="CABCHARGE AUSTRALIA LIMITED"	05-Mar-08 11:48 AM	

+="CN64340"	"AMEX TRAVEL JAN'08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	28-Jan-08	27-Feb-08	68921.88	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	05-Mar-08 11:48 AM	

+="CN64341"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	01-Feb-08	27-Feb-08	12154.29	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	05-Mar-08 11:48 AM	

+="CN64261"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-08	04-Apr-08	28928.65	=""	="SYMBION PHARMACY SERVICES"	05-Mar-08 11:48 AM	

+="CN64342"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	01-Feb-08	01-Feb-08	11852.45	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:48 AM	

+="CN64343"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	30-Jun-08	84548.20	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:48 AM	

+="CN64344"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	01-Feb-08	29-Feb-08	15383.80	=""	="SKILLED GROUP LIMITED"	05-Mar-08 11:48 AM	

+="CN64345"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Software"	01-Feb-08	28-Feb-09	16959.80	=""	="CINCOM SYSTEMS OF AUSTRALIA PTY LTD"	05-Mar-08 11:48 AM	

+="CN64346"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	04-Feb-08	29-Feb-08	14212.00	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:49 AM	

+="CN64347"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	04-Feb-08	29-Feb-08	18353.28	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:49 AM	

+="CN64348"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	136309.80	=""	="COMPAS PTY LTD"	05-Mar-08 11:49 AM	

+="CN64349"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Commercial and industrial furniture"	13-Feb-08	13-Feb-08	10910.02	=""	="James Richardson Corporation"	05-Mar-08 11:49 AM	

+="CN64350"	"Provision of Consultancy Services"	="Medicare Australia"	05-Mar-08	="Security surveillance and detection"	13-Feb-08	31-Mar-08	16335.00	=""	="Securelink"	05-Mar-08 11:49 AM	

+="CN64351"	"Provision of Office Machines"	="Medicare Australia"	05-Mar-08	="Office machines and their supplies and accessories"	14-Feb-08	14-Feb-08	15804.94	=""	="RICOH AUSTRALIA PTY LTD"	05-Mar-08 11:49 AM	

+="CN64352"	"Provision of Office Machines"	="Medicare Australia"	05-Mar-08	="Office machines and their supplies and accessories"	14-Feb-08	14-Feb-08	15469.26	=""	="RICOH AUSTRALIA PTY LTD"	05-Mar-08 11:49 AM	

+="CN64353"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	14-Feb-08	30-Jun-08	65147.50	=""	="M&T RESOURCES"	05-Mar-08 11:49 AM	

+="CN64354"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	14-Feb-08	14-Feb-08	14951.23	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:50 AM	

+="CN64355"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	14-Feb-08	14-Feb-08	17829.88	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:50 AM	

+="CN64356"	"Provision of Telephony Relocation Services"	="Medicare Australia"	05-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Feb-08	15-Feb-08	21593.00	=""	="OPTUS NETWORKS PTY LIMITED"	05-Mar-08 11:50 AM	

+="CN64357"	"Provision of Software Licences"	="Medicare Australia"	05-Mar-08	="Software"	15-Feb-08	15-Dec-08	22946.00	=""	="DATATASK PTY LTD"	05-Mar-08 11:50 AM	

+="CN64358"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printing and publishing equipment"	18-Feb-08	18-Feb-08	88832.34	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	05-Mar-08 11:50 AM	

+="CN64359"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	18-Feb-08	18-Feb-08	34794.10	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:50 AM	

+="CN64360"	"Provision of mail house services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	18-Feb-08	18-Feb-08	12197.17	=""	="QM Technologies Pty Limited"	05-Mar-08 11:50 AM	

+="CN64361"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	18-Feb-08	18-Feb-08	38064.40	=""	="OAKTON AA SERVICES PTY LTD"	05-Mar-08 11:50 AM	

+="CN64362"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	18-Feb-08	18-Feb-08	36671.80	=""	="OAKTON AA SERVICES PTY LTD"	05-Mar-08 11:51 AM	

+="CN64363"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	11-Feb-08	11-Feb-08	2165895.86	=""	="Schiavello Project Interiors"	05-Mar-08 11:51 AM	

+="CN64364"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer services"	11-Feb-08	30-Jun-08	114950.00	=""	="ITERATIVE CONSULTING PTY LTD"	05-Mar-08 11:51 AM	

+="CN64365"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	11-Feb-08	11-Feb-08	330000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:51 AM	

+="CN64366"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	05-Mar-08	="Paper products"	12-Feb-08	12-Feb-08	11000.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Mar-08 11:51 AM	

+="CN64367"	"Provision of Graduate Recruitment Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	12-Feb-08	12-Feb-08	29040.00	=""	="ONETEST PTY LTD"	05-Mar-08 11:51 AM	

+="CN64368"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Software"	12-Feb-08	12-Feb-08	13480.83	=""	="COMPAS PTY LTD"	05-Mar-08 11:51 AM	

+="CN64369"	"Provision of Postal Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	12-Feb-08	31-Dec-08	95324.05	=""	="AUSTRALIA POST"	05-Mar-08 11:51 AM	

+="CN64370"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	13-Feb-08	30-Jun-08	71500.00	=""	="CANDLE AUSTRALIA LIMITED"	05-Mar-08 11:52 AM	

+="CN64371-A1"	"PROVISION OF CONSULTANCY SERVICES"	="Medicare Australia"	05-Mar-08	="Business administration services"	13-Feb-08	13-Feb-08	349800.00	=""	="THE BOSTON CONSULTING GROUP PTY LTD"	05-Mar-08 11:52 AM	

+="CN64372"	"Provision of Employee Assistance Services"	="Medicare Australia"	05-Mar-08	="Work related organisations"	13-Feb-08	31-Jul-08	24310.00	=""	="OSA GROUP PTY LTD"	05-Mar-08 11:52 AM	

+="CN64373"	"Provision of Postal Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	13-Feb-08	13-Feb-08	18880.02	=""	="AUSTRALIA POST"	05-Mar-08 11:52 AM	

+="CN64374"	"Provision of National Staff Survey Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	13-Feb-08	31-Dec-08	143000.00	=""	="Measured Insights Pty Ltd"	05-Mar-08 11:52 AM	

+="CN64375"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	13-Feb-08	13-Feb-08	29671.70	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:52 AM	

+="CN64376"	"Provision of Relocation Services"	="Medicare Australia"	05-Mar-08	="Containers and storage"	13-Feb-08	13-Feb-08	14190.00	=""	="CHESS PRICE'S REMOVALS"	05-Mar-08 11:52 AM	

+="CN64377"	"Plastic Tubs"	="Defence Materiel Organisation"	05-Mar-08	="Containers and storage"	18-Feb-08	05-Mar-08	24134.00	=""	="Viscount Plastics (NSW) Ltd"	05-Mar-08 11:54 AM	

+="CN64378"	"Provision of Duct work maintenance and rehabilitation services (Contract JH00057M)"	="Department of Parliamentary Services"	05-Mar-08	="Air conditioning installation or maintenance or repair services"	20-Feb-08	30-Jun-08	16500.00	=""	="Chubb Fire Safety Limited"	05-Mar-08 11:59 AM	

+="CN64379"	"PABX Supply and implementation team services (Contract DPS04082)"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	29-Feb-08	188275.36	=""	="Telstra Corporation Ltd"	05-Mar-08 11:59 AM	

+="CN64380"	"Supply of  Televisions"	="Department of Parliamentary Services"	05-Mar-08	="Radio or television manufacture services"	19-Feb-08	31-Mar-08	17930.00	=""	="Sony Australia Ltd"	05-Mar-08 11:59 AM	

+="CN64381"	"Provision of ICT services"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	01-Aug-08	117150.00	=""	="GMT Canberra Pty Ltd"	05-Mar-08 11:59 AM	

+="CN64382"	"Supply of  Agricultural tractor"	="Department of Parliamentary Services"	05-Mar-08	="Agricultural tractors"	14-Feb-08	31-Mar-08	42548.00	=""	="RC & JI White Agricultural"	05-Mar-08 11:59 AM	

+="CN64383"	"DPS Store Relocations"	="Department of Parliamentary Services"	05-Mar-08	="Warehousing equipment and supplies"	14-Feb-08	03-Mar-08	10976.24	=""	="1st Fleet Warehousing & Dist"	05-Mar-08 12:00 PM	

+="CN64384"	"Hardware and software maintenance of CISCO equipment Contract (DPS06103)"	="Department of Parliamentary Services"	05-Mar-08	="Computer servers"	13-Feb-08	03-Mar-08	63722.75	=""	="Cerulean Solutions Ltd"	05-Mar-08 12:00 PM	

+="CN64385"	"Provision of IT design services (DPS07095)"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	07-Mar-08	35176.90	=""	="EMC Global Holdings Company"	05-Mar-08 12:00 PM	

+="CN64386"	"Provision of  telephone calls"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	30-Jun-08	49014.78	=""	="Telstra Corporation Ltd"	05-Mar-08 12:00 PM	

+="CN64387"	"Annual FileNet Software Maintenance"	="Department of Parliamentary Services"	05-Mar-08	="Software maintenance and support"	19-Feb-08	31-Jan-09	33741.40	=""	="Kaz Group Pty Ltd"	05-Mar-08 12:00 PM	

+="CN64388"	"Provision of Project Management Services"	="Department of Parliamentary Services"	05-Mar-08	="Project management"	21-Feb-08	30-Jun-08	15400.00	=""	="Manteena Pty Ltd"	05-Mar-08 12:00 PM	

+="CN64389"	"EIU.COM 1/1/-31/12/08 DATABASE SERVICES SUBSCRIPTI"	="Department of Parliamentary Services"	05-Mar-08	="On line database information retrieval"	25-Jan-08	31-Dec-08	55605.28	=""	="EIU AUSTRALIA"	05-Mar-08 12:00 PM	

+="CN64391-A1"	"Provision of Cleaning Services to the Bathurst premises of CRS Australia."	="CRS Australia"	05-Mar-08	="General building and office cleaning and maintenance services"	01-Mar-06	28-Feb-09	13157.92	=""	="Barlow Property Services trading as Barlow Cleaning Pty Ltd"	05-Mar-08 12:12 PM	

+="CN64395-A2"	"Provision of cleaning services to the Dubbo premises of CRS Australia."	="CRS Australia"	05-Mar-08	="General building and office cleaning and maintenance services"	01-Mar-06	05-Dec-08	10665.61	=""	="Barlow Property Services trading as Barlow Cleaning Pty Ltd"	05-Mar-08 12:19 PM	

+="CN64392"	"Steel Storage Cabinets"	="Defence Materiel Organisation"	05-Mar-08	="Containers and storage"	26-Feb-08	08-Apr-08	24453.00	=""	="FGP Company Pty Ltd"	05-Mar-08 12:35 PM	

+="CN64397"	"The delivery of Centrelink agent servics at Surat QLD."	="Centrelink"	05-Mar-08	="Administrative agencies services"	01-Jul-07	30-Jun-08	10063.65	=""	="Warroo Shire Council"	05-Mar-08 12:55 PM	

+="CN64398"	"Use of force Database project management"	="Australian Federal Police"	05-Mar-08	="Project management"	17-Dec-07	31-Mar-08	27500.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	05-Mar-08 12:56 PM	

+="CN64399"	"Review of applicabillity of CO3 to offshore activities"	="Australian Federal Police"	05-Mar-08	="Project management"	27-Jul-07	27-Nov-07	15000.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	05-Mar-08 01:16 PM	

+="CN64401"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft spars"	05-Mar-08	28-Jul-08	17472.40	=""	="MILSPEC SERVICES PTY LTD"	05-Mar-08 01:39 PM	

+="CN64403"	"COMCAR"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Passenger transport"	30-Nov-07	12-Mar-08	64456.44	=""	="COMCAR"	05-Mar-08 01:48 PM	

+="CN64404"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft spars"	05-Mar-08	26-Sep-08	11517.66	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	05-Mar-08 01:49 PM	

+="CN64406"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-07	09-Mar-08	15833.35	=""	="3M AUSTRALIA P/L"	05-Mar-08 02:05 PM	

+="CN64407"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-08	10-Apr-08	17298.27	=""	="BECTON DICKINSON PTY LTD"	05-Mar-08 02:12 PM	

+="CN64409"	"NSN 5320-01-077-7193, Pin-Rivets"	="Defence Materiel Organisation"	05-Mar-08	="Aerospace systems and components and equipment"	04-Mar-08	26-Mar-08	17820.00	=""	="Milspec Services Pty Ltd"	05-Mar-08 02:12 PM	

+="CN64410-A1"	" Audit of Uniformed Protection  Officer Health Check "	="Australian Federal Police"	05-Mar-08	="Audit services"	03-Mar-08	30-Sep-08	33000.00	="Jan-05"	="KPMG"	05-Mar-08 02:12 PM	

+="CN64412"	"NSN 1560-00-088-5914, Engine Air Inlet Lips"	="Defence Materiel Organisation"	05-Mar-08	="Aerospace systems and components and equipment"	05-Mar-08	27-Mar-08	445090.80	=""	="ben.groenen-DMO"	05-Mar-08 02:16 PM	

+="CN64413-A1"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	100000.00	=""	="AAC Process Servers & Investigations"	05-Mar-08 02:18 PM	

+="CN64411"	" Economic - Electronic Subscriptions "	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Electronic reference material"	01-Jul-07	31-Jan-08	25961.73	=""	="AAP Information Services Australian Associated Press Pty Ltd"	05-Mar-08 02:20 PM	

+="CN64415-A1"	" Destruction of Paper Waste "	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Document destruction services"	20-Dec-07	19-Jan-08	10329.00	=""	="Recall Information Management Pty Ltd"	05-Mar-08 02:25 PM	

+="CN64419"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	15000.00	=""	="Express Mercantile"	05-Mar-08 02:33 PM	

+="CN64418"	"Window Tinting"	="National Capital Authority"	05-Mar-08	="Windows"	31-Jan-08	31-Jan-08	10590.00	=""	="Any Window Tinting Pty Ltd"	05-Mar-08 02:34 PM	

+="CN64421"	"Legislative Compliance Matrix Project - Phase 3"	="Australian Federal Police"	05-Mar-08	="Legislative bodies and practice"	30-Oct-07	30-Mar-08	24959.00	="Jan-05"	="PricewaterhouseCoopers"	05-Mar-08 02:44 PM	

+="CN64422"	"Process server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	260000.00	=""	="International Detection Services"	05-Mar-08 02:45 PM	

+="CN64423"	" AIRCRAFT SPARES  NSN 1615-01-086-1498, BEAM, ASSY, TAIL, FEP, QTY 14 "	="Defence Materiel Organisation"	05-Mar-08	="Military transport helicopters"	31-Oct-06	08-May-07	99729.48	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	05-Mar-08 02:53 PM	

+="CN64424-A1"	" Process Server services "	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	87000.00	=""	="Network Process Service"	05-Mar-08 03:00 PM	

+="CN64425-A1"	"Provision of services in relation to help desk analysis"	="Australian Federal Police"	05-Mar-08	="Technical support or help desk services"	07-Jan-08	31-Mar-08	14765.44	=""	="Aurec Pty Ltd"	05-Mar-08 03:00 PM	

+="CN64426"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	10000.00	=""	="Panther Investigations"	05-Mar-08 03:08 PM	

+="CN64427"	"Printing and publishing"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Printed publications"	17-Jan-08	20-Feb-08	12900.00	=""	="ZOO Communications Pty Ltd"	05-Mar-08 03:12 PM	

+="CN64428"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	480000.00	=""	="Probe Group Pty Ltd"	05-Mar-08 03:16 PM	

+="CN64429"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	25000.00	=""	="REP Commercial Consultants"	05-Mar-08 03:19 PM	

+="CN64431"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	250000.00	=""	="Statewide Mercantile Services Pty Ltd"	05-Mar-08 03:23 PM	

+="CN64430-A1"	"IT Equipment"	="National Capital Authority"	05-Mar-08	="Computers"	13-Dec-07	19-Dec-07	74115.13	=""	="Getronics Australia Pty Ltd"	05-Mar-08 03:24 PM	

+="CN64434"	"SUBSCRIPTIONS JANUARY 2008"	="Administrative Appeals Tribunal"	05-Mar-08	="Printed media"	17-Jan-08	31-Jan-09	16526.68	=""	="THOMSON LEGAL & REGULATORY"	05-Mar-08 03:30 PM	

+="CN64435-A2"	" 9150 99-458-6311   Engine Lubricating Oil  16 drums Energol HPDX 40 in 205L    "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	27-Feb-08	12-Mar-09	11648.73	=""	="BP Australia Ltd"	05-Mar-08 03:36 PM	

+="CN64433"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	45000.00	=""	="Top End Bailiff and Collection Services"	05-Mar-08 03:37 PM	

+="CN64437"	" INDICATOR, DIFF PRES  PART No RC855UL06C; MC 18350  QUANTITY 2 "	="Defence Materiel Organisation"	05-Mar-08	="Military rotary wing aircraft"	12-Jul-07	03-Jan-08	10362.00	=""	="PALL AUSTRALIA"	05-Mar-08 03:38 PM	

+="CN64438"	"Ball Joint - ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	19-Aug-08	27322.90	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:38 PM	

+="CN64439-A2"	"Provision of services in relation to high level technical support and management of the AFP's corporate IT environment hosted by systems operations."	="Australian Federal Police"	05-Mar-08	="Technical support or help desk services"	17-Dec-07	30-Sep-08	130416.00	=""	="Diversiti Pty Ltd"	05-Mar-08 03:40 PM	

+="CN64440"	"Griffin Legacy - Legal Services"	="National Capital Authority"	05-Mar-08	="Legal services"	17-Oct-07	01-Jan-11	30770.30	=""	="Minter Ellison Lawyers"	05-Mar-08 03:41 PM	

+="CN64441"	"Air Valve ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	29-Aug-08	54898.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:44 PM	

+="CN64444"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	405000.00	=""	="Wise McGrath"	05-Mar-08 03:45 PM	

+="CN64443"	" 9150 66-017-3041  Engine Lubricating Oil    26 DRUMS OMD 115 in 205L       "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Feb-08	12-Mar-08	15598.87	=""	="CALTEX"	05-Mar-08 03:48 PM	

+="CN64445"	"CCA Power Supply - ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	20-Jun-09	88184.91	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:50 PM	

+="CN64447"	" 9150 01-131-3324  Fire Resistant Hydraulic Fluid  160 Cans   H-544 in 1 US GAL (HYDRANYCOIL FH3) "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Feb-08	29-Mar-08	14069.44	=""	="Interchem"	05-Mar-08 04:03 PM	

+="CN64448"	"Guarding Services"	="Australian Crime Commission"	05-Mar-08	="Guard services"	01-Feb-08	29-Mar-08	32257.14	=""	="Chubb Electronic Security"	05-Mar-08 04:06 PM	

+="CN64450"	"Air express Freight"	="Australian Crime Commission"	05-Mar-08	="Freight forwarders services"	01-Jun-07	01-Jun-08	85000.00	=""	="Australian Air Express P/L"	05-Mar-08 04:13 PM	

+="CN64451"	" 9150 99-458-6311  Engine Lubricating Oil  16*205L drums Energol HPDX in 205L "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	31-Jan-08	08-Feb-08	11648.73	=""	="BP Australia Ltd"	05-Mar-08 04:17 PM	

+="CN64452"	"Network Software"	="Australian Crime Commission"	05-Mar-08	="Software"	01-Dec-07	24-Mar-08	78941.24	=""	="Optus Networks P/L"	05-Mar-08 04:18 PM	

+="CN64453"	"Recruitment - Personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	11-Nov-07	16-May-08	48213.00	=""	="Hays Personnel Services"	05-Mar-08 04:21 PM	

+="CN64454-A4"	"Recruitment personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	26-Apr-06	26-Sep-08	398652.10	=""	="Hurtile P/L"	05-Mar-08 04:25 PM	

+="CN64455-A3"	"Recruitment Personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	01-Jan-08	31-Mar-09	417815.10	=""	="Icon Recruitment P/L"	05-Mar-08 04:28 PM	

+="CN64456"	" Leaseing vehicles "	="Australian Crime Commission"	05-Mar-08	="Product and material transport vehicles"	18-Jan-08	24-Jan-08	11384.44	=""	="Leaseplan"	05-Mar-08 04:32 PM	

+="CN64457"	"Investigaors"	="Australian Crime Commission"	05-Mar-08	="Private investigation services"	02-Jan-08	25-Jan-08	21640.93	=""	="Leaseplan"	05-Mar-08 04:36 PM	

+="CN64458"	"Video Software"	="Australian Crime Commission"	05-Mar-08	="Videoconferencing systems"	03-Dec-07	03-Dec-08	50358.00	=""	="Atek P/L"	05-Mar-08 04:40 PM	

+="CN64459"	"Maintenance for Hardware & Software"	="Australian Crime Commission"	05-Mar-08	="Ground support test or maintenance systems"	04-Mar-08	03-Jun-08	38039.56	=""	="EMC Global Holdings Co"	05-Mar-08 04:46 PM	

+="CN64460"	"Removal and Storage"	="Australian Crime Commission"	05-Mar-08	="Containers and storage"	31-Oct-07	18-Feb-08	12276.77	=""	="Toll Transitions"	05-Mar-08 04:51 PM	

+="CN64461"	"Annual Report"	="Australian Crime Commission"	05-Mar-08	="Promotional material or annual reports"	01-Jan-06	01-Jan-07	13931.80	=""	="Pirion Printing P/L"	05-Mar-08 04:54 PM	

+="CN64462"	" Armoury"	="Australian Crime Commission"	05-Mar-08	="Body armour"	04-Feb-08	04-Feb-09	48050.20	=""	="Ratner Australasia Safe Co P/L"	05-Mar-08 04:59 PM	

+="CN64463-A1"	" Site Lease "	="Australian Crime Commission"	05-Mar-08	="Lease and rental of property or building"	01-Mar-08	14-May-12	2806347.00	=""	="Canberra Data Centres"	05-Mar-08 05:04 PM	

+="CN64464"	"Guarding Services"	="Australian Crime Commission"	05-Mar-08	="Security and control equipment"	01-Sep-07	30-Sep-07	11014.23	=""	="Scope Protective Services P/L"	05-Mar-08 05:11 PM 

--- /dev/null
+++ b/admin/partialdata/02Apr2008to06Apr2008valto.xls
@@ -1,1 +1,559 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN67501"	" Provision of Courier Services to the Australian Antarctic Division "	="Australian Antarctic Division"	02-Apr-08	="Postal and small parcel and courier services"	01-Jul-08	30-Jun-11	125000.00	="RFT 08/98"	="Jet Couriers"	02-Apr-08 08:51 AM	

+="CN67507"	"research project"	="Australian Office of Financial Management"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Aug-08	25000.00	=""	="Finance & Statistical Consultants P/L"	02-Apr-08 09:22 AM	

+="CN67508"	"HARDWARE"	="Australian Office of Financial Management"	02-Apr-08	="Software or hardware engineering"	01-Mar-08	31-Mar-08	11114.40	=""	="DELL"	02-Apr-08 09:26 AM	

+="CN67514"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	41123.83	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 09:51 AM	

+="CN67515"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	36904.78	=""	="Rover Australia"	02-Apr-08 09:56 AM	

+="CN67516-A2"	"Business analysis services for Debt process review"	="Australian Taxation Office"	02-Apr-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	31-Oct-08	79999.00	=""	="PM Business Consulting Pty Ltd"	02-Apr-08 09:57 AM	

+="CN67517-A3"	" Lease at 200 St Georges Tce Perth "	="Department of Human Services"	02-Apr-08	="Lease and rental of property or building"	01-Sep-03	31-Aug-15	20526538.70	=""	="The Perth Diocesan Trustees"	02-Apr-08 09:57 AM	

+="CN67518"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	46331.18	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 09:59 AM	

+="CN67519"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	18603.75	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 10:07 AM	

+="CN67520"	" REPAIR MACK ARN-3632 "	="Department of Defence"	02-Apr-08	="Motor vehicles"	02-Apr-08	30-May-08	25795.00	=""	="SCRATCH IT I FIX IT"	02-Apr-08 10:22 AM	

+="CN67521"	"motor vehicle spare parts"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	42974.80	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 10:36 AM	

+="CN67522"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	46648.80	=""	="LANDROVER"	02-Apr-08 10:43 AM	

+="CN67524"	"Motor Vehicle Parts"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Apr-08	02-May-08	17727.68	=""	="Mercedes Benz Aust"	02-Apr-08 10:53 AM	

+="CN67526-A1"	" Aircraft Spares for SeaHawk Aircraft. "	="Defence Materiel Organisation"	02-Apr-08	="Aircraft"	04-Mar-08	22-Feb-09	16215.16	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	02-Apr-08 10:58 AM	

+="CN67525"	" AIRCRAFT SPARES  NSN 5340-66-151-1967 , STOP TRACK, UNTHREADED , QTY 60.  NSN 5340-66-151-1969 , STOP TRACK, THREADED PILOT SEAT LH , QTY 40.  NSN 5340-66-151-1970 , STOP TRACK, THREADED PILOT SEAT RH , QTY 30. "	="Defence Materiel Organisation"	02-Apr-08	="Military transport helicopters"	02-Apr-08	17-May-08	10570.99	=""	="TASMAN AVIATION ENTERPRISES"	02-Apr-08 11:00 AM	

+="CN67528"	"Provision of Relocation Services"	="Medicare Australia"	02-Apr-08	="Human resources services"	20-Mar-08	20-Mar-08	13999.99	=""	="Colquhoun Murphy"	02-Apr-08 11:51 AM	

+="CN67529"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	20-Mar-08	31-Mar-08	48950.00	=""	="Iron Mountain Australia Pty Ltd"	02-Apr-08 11:52 AM	

+="CN67530"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	20-Mar-08	20-Mar-08	10923.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	02-Apr-08 11:52 AM	

+="CN67531"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	20-Mar-08	20-Mar-08	70224.00	=""	="AMBIT IT & T RECRUITMENT SPECIALIST"	02-Apr-08 11:52 AM	

+="CN67532"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	20-Mar-08	25-Mar-08	20031.00	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:52 AM	

+="CN67533"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	20-Mar-08	25-Mar-08	20031.00	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:52 AM	

+="CN67534"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	20-Mar-08	31-Mar-11	1742400.00	=""	="COMPUWARE ASIA PACIFIC P/L"	02-Apr-08 11:52 AM	

+="CN67535"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	19-Mar-08	30-Jun-08	32563.98	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:52 AM	

+="CN67536"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Real estate services"	19-Mar-08	19-Mar-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	02-Apr-08 11:52 AM	

+="CN67537"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	19-Mar-08	19-Mar-08	675871.67	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:53 AM	

+="CN67538"	"Provision of Sign Design and Construction"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	18-Mar-08	18-Mar-08	10142.00	=""	="S & K Harvey"	02-Apr-08 11:53 AM	

+="CN67539"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	13728.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67540"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	12870.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67541"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	15928.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67542"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	16192.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67543"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	20064.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67544"	"Provision of Telephony Services"	="Medicare Australia"	02-Apr-08	="Electrical equipment and components and supplies"	18-Mar-08	30-Jun-08	422400.00	=""	="OPTUS NETWORKS PTY LIMITED"	02-Apr-08 11:53 AM	

+="CN67545"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	18-Mar-08	15840.00	=""	="COMPAS PTY LTD"	02-Apr-08 11:53 AM	

+="CN67546"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	17-Mar-08	17-Mar-08	18830.18	=""	="COMMAND RECRUITMENT GROUP"	02-Apr-08 11:54 AM	

+="CN67547"	"Provision of Mailhouse Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	17-Mar-08	17-Mar-08	20455.99	=""	="QM Technologies Pty Limited"	02-Apr-08 11:54 AM	

+="CN67548"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	17-Mar-08	31-Dec-08	86290.71	=""	="AUSTRALIA POST"	02-Apr-08 11:54 AM	

+="CN67549"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	14-Mar-08	14-Mar-08	189951.30	=""	="INTERIORS AUSTRALIA"	02-Apr-08 11:54 AM	

+="CN67550"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	14-Mar-08	14-Mar-08	45983.34	=""	="AUSTRALIA POST"	02-Apr-08 11:54 AM	

+="CN67551-A1"	"Provision of HR Services"	="Medicare Australia"	02-Apr-08	="Human resources services"	31-Mar-08	31-Mar-08	16164.48	=""	="QMS"	02-Apr-08 11:54 AM	

+="CN67552"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	31-Mar-08	136950.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:54 AM	

+="CN67553"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	31-Mar-08	30-Jun-08	110110.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	02-Apr-08 11:54 AM	

+="CN67554"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	31-Mar-08	31-Mar-09	1598176.79	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 11:54 AM	

+="CN67555"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	31-Mar-08	31-Mar-08	335857.47	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:55 AM	

+="CN67556"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	31-Mar-08	31-Mar-08	16233.40	=""	="Data#3 Limited"	02-Apr-08 11:55 AM	

+="CN67557"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	31-Mar-08	31-Mar-08	12165.12	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:55 AM	

+="CN67558"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	31-Mar-08	30-Apr-08	25809.30	=""	="RECRUITMENT SOLUTIONS LIMITED"	02-Apr-08 11:55 AM	

+="CN67559"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	31-Mar-08	30-Apr-08	13501.40	=""	="RECRUITMENT SOLUTIONS LIMITED"	02-Apr-08 11:55 AM	

+="CN67560"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Statistics"	28-Mar-08	28-Mar-08	20482.82	=""	="OAKTON AA SERVICES PTY LTD"	02-Apr-08 11:55 AM	

+="CN67561"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Paper products"	28-Mar-08	30-Jun-08	16959.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:55 AM	

+="CN67562"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	28-Mar-08	28-Mar-08	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	02-Apr-08 11:55 AM	

+="CN67563"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	28-Mar-08	30-Jun-08	182547.81	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:55 AM	

+="CN67564"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Real estate services"	28-Mar-08	28-Mar-08	3479140.46	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:56 AM	

+="CN67565"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	27-Mar-08	30-Jun-08	242247.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:56 AM	

+="CN67566"	"Provision of IT Relocation Services"	="Medicare Australia"	02-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Mar-08	11-May-08	21056.26	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67567"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	26-Mar-08	26-Mar-08	11413.93	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67568"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	25-Mar-08	25-Mar-08	14250.00	=""	="PLANPOWER PTY LTD"	02-Apr-08 11:56 AM	

+="CN67569"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	25-Mar-08	11-Apr-08	16434.00	=""	="Schiavello (VIC) P/L"	02-Apr-08 11:56 AM	

+="CN67570"	"Provision of Telephony Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	25-Mar-08	30-Jun-08	18508.71	=""	="OPTUS BILLING SERVICES"	02-Apr-08 11:56 AM	

+="CN67571"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	25-Mar-08	30-Jun-08	52580.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67572"	"Provision of Software Licences"	="Medicare Australia"	02-Apr-08	="Software"	25-Mar-08	30-Mar-10	770000.00	=""	="COMPUTER ASSOCIATES PTY LTD"	02-Apr-08 11:56 AM	

+="CN67573"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Commercial and industrial furniture"	25-Mar-08	31-Mar-08	18499.99	=""	="WILLIAM WATERS PTY LTD"	02-Apr-08 11:57 AM	

+="CN67574"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	14-Mar-08	14-Mar-08	19190.77	=""	="AUSTRALIA POST"	02-Apr-08 11:57 AM	

+="CN67575"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	06-Mar-08	06-Mar-08	22564.31	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	02-Apr-08 11:57 AM	

+="CN67576"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	21584.40	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67577"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	37892.55	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67578"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	28545.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67579"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	16742.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67580"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	15100.25	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67581-A1"	"Provision of Legal Services"	="Medicare Australia"	02-Apr-08	="Legal services"	06-Mar-08	30-Jul-10	370049.00	=""	="MINTER ELLISON LAWYERS"	02-Apr-08 11:58 AM	

+="CN67582"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	06-Mar-08	06-Mar-08	411983.00	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 11:58 AM	

+="CN67583"	"Provision of Archiving and Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	04-Mar-08	11-Mar-08	48259.80	=""	="Iron Mountain Australia Pty Ltd"	02-Apr-08 11:58 AM	

+="CN67584"	"Provision of Mailing Products"	="Medicare Australia"	02-Apr-08	="Transport operations"	04-Mar-08	28-Mar-08	36190.00	=""	="DX MAIL"	02-Apr-08 11:58 AM	

+="CN67585"	"Provision of Catering Services"	="Medicare Australia"	02-Apr-08	="Restaurants and catering"	03-Mar-08	04-Mar-08	17199.99	=""	="Gema Group Holdings"	02-Apr-08 11:58 AM	

+="CN67586"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	03-Mar-08	03-Mar-08	20714.92	=""	="OAKTON AA SERVICES PTY LTD"	02-Apr-08 11:58 AM	

+="CN67587"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	03-Mar-08	31-Mar-09	501632.29	=""	="WEBMETHODS AUSTRALIA PTY LTD"	02-Apr-08 11:58 AM	

+="CN67588"	"Provision of IT Refurbishment Services"	="Medicare Australia"	02-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Mar-08	03-Mar-08	24631.10	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:58 AM	

+="CN67589"	"CABCHRG 0202-070308"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	10-Mar-08	31-Mar-08	29855.50	=""	="CABCHARGE AUSTRALIA LIMITED"	02-Apr-08 11:59 AM	

+="CN67590"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	24450.28	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67591"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	28893.55	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67592"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	11584.41	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67593"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	170194.45	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67594"	"QLD Arnaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	17-Mar-08	47087.04	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67595"	"WA Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	17-Mar-08	21341.51	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67596"	"NSW Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	14-Mar-08	72528.13	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67597"	"VIC Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	14-Mar-08	59893.12	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 12:00 PM	

+="CN67598"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Computer services"	14-Mar-08	14-Mar-08	11880.00	=""	="HERMES PRECISA PTY LTD"	02-Apr-08 12:00 PM	

+="CN67599"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	14-Mar-08	14-Mar-08	25818.93	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:00 PM	

+="CN67600"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	14-Mar-08	14-Mar-08	10944.60	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 12:00 PM	

+="CN67601"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	13-Mar-08	13-Mar-08	12356.48	=""	="DESKON INTERIORS PTY LTD"	02-Apr-08 12:00 PM	

+="CN67602-A1"	"Provision of Financial Services"	="Medicare Australia"	02-Apr-08	="Public administration and finance services"	13-Mar-08	30-Jul-08	51168.34	=""	="KAROLINA KALANJ"	02-Apr-08 12:00 PM	

+="CN67603-A1"	"Provision of Financial Services"	="Medicare Australia"	02-Apr-08	="Public administration and finance services"	13-Mar-08	31-Jul-08	11027.56	=""	="KAROLINA KALANJ"	02-Apr-08 12:00 PM	

+="CN67604"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jan-10	17176.50	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 12:00 PM	

+="CN67605"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15666.75	=""	="COMPAS PTY LTD"	02-Apr-08 12:00 PM	

+="CN67606"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15419.25	=""	="COMPAS PTY LTD"	02-Apr-08 12:01 PM	

+="CN67607"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15779.50	=""	="COMPAS PTY LTD"	02-Apr-08 12:01 PM	

+="CN67608"	"Provision of transport tickets"	="Medicare Australia"	02-Apr-08	="Passenger transport"	11-Mar-08	01-Apr-08	188281.78	=""	="METLINK VICTORIA PTY LTD"	02-Apr-08 12:01 PM	

+="CN67609"	"Provision of Secure Courier Services"	="Medicare Australia"	02-Apr-08	="Transport operations"	11-Mar-08	11-Mar-08	297000.00	=""	="METROSTATE SECURITY COURIER PTY LTD"	02-Apr-08 12:01 PM	

+="CN67611"	"Provision of Fit Out Works"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	28-Mar-08	46331.71	=""	="Colonial First State Asset Manageme"	02-Apr-08 12:01 PM	

+="CN67612"	"Provision of IT Refurbishment Services"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	31-Mar-08	10392.45	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 12:01 PM	

+="CN67613"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	11-Mar-08	839608.77	=""	="Schiavello Project Interiors"	02-Apr-08 12:01 PM	

+="CN67614"	"Provision of Mailhouse Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	11-Mar-08	11-Mar-08	136029.03	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	02-Apr-08 12:02 PM	

+="CN67615"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	11-Mar-08	11-Mar-08	14646.42	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:02 PM	

+="CN67616"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	11-Mar-08	11-Mar-08	19880.19	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:02 PM	

+="CN67610"	"Supply, installation and maintenance of one microspectrophotometer"	="Australian Federal Police"	02-Apr-08	="Laboratory and scientific equipment"	29-Jan-07	29-Jan-12	339190.00	=""	="XTEK Limited"	02-Apr-08 12:02 PM	

+="CN67617"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Computer Equipment and Accessories"	07-Mar-08	30-Jun-08	18447.00	=""	="Nexa Group Pty Ltd"	02-Apr-08 12:02 PM	

+="CN67618"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	07-Mar-08	30-Jun-08	134596.00	=""	="VEROSSITY PTY LTD"	02-Apr-08 12:02 PM	

+="CN67619"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	07-Mar-08	31-Aug-08	112112.00	=""	="AMBIT IT & T RECRUITMENT SPECIALIST"	02-Apr-08 12:02 PM	

+="CN67620"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	07-Mar-08	07-Mar-08	90217.60	=""	="CMB"	02-Apr-08 12:02 PM	

+="CN67621"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	06-Mar-08	30-Jun-08	227947.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 12:02 PM	

+="CN67624-A1"	" Printing of: NAT3388-3.2008 - How to complete the PAYG payment summary  Qty: 800,000 "	="Australian Taxation Office"	02-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Apr-08	30-Apr-08	70125.00	=""	="Blue Star Print Group t/a National Capital Printing"	02-Apr-08 12:45 PM	

+="CN67631"	"Provision for consultancy services of the Strategic FinanciaPlan for ComSuper"	="Comsuper"	02-Apr-08	="Strategic planning consultation services"	01-Apr-08	30-Jun-08	40000.00	=""	="Analytics Group Pty Ltd"	02-Apr-08 01:25 PM	

+="CN67632"	"Provision for Legal Counsel"	="Comsuper"	02-Apr-08	="Legal services"	31-Mar-08	30-Jun-08	40000.00	=""	="Australian Government Solicitors"	02-Apr-08 01:28 PM	

+="CN67633"	"Provision for Legal Counsel"	="Comsuper"	02-Apr-08	="Legal services"	31-Mar-08	30-Jun-08	60000.00	=""	="Australian Government Solicitors"	02-Apr-08 01:30 PM	

+="CN67634"	"Genetic Analyzer service Agreement"	="Australian Federal Police"	02-Apr-08	="Biotechnology and bio chemistry and genetics and microbiology and related materials"	01-Apr-08	28-Jul-09	68381.26	=""	="Applied Biosystems"	02-Apr-08 01:44 PM	

+="CN67635"	"required repair of aircraft parts"	="Defence Materiel Organisation"	02-Apr-08	="Aircraft"	27-Mar-08	01-Apr-08	129086.51	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	02-Apr-08 02:27 PM	

+="CN67636"	"PURCHASE OF SAFE"	="Defence Materiel Organisation"	02-Apr-08	="Containers and storage"	26-Feb-08	31-Mar-08	15064.26	=""	="CMI SAFE CO"	02-Apr-08 02:28 PM	

+="CN67638"	"Treasury-ICON Annual Levy Operational"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	33000.00	=""	="Dept of Finance & Deregulation"	02-Apr-08 02:32 PM	

+="CN67639"	"Procurement of maintenance for Cyberguard"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	26-Feb-08	31-Mar-08	15128.30	=""	="CommsNet Group Pty Ltd"	02-Apr-08 02:32 PM	

+="CN67640"	"advertising for positions available"	="Department of the Treasury"	02-Apr-08	="Paper Materials and Products"	15-Jan-08	25-Jan-08	23622.26	=""	="HMA Blaze Pty Limited"	02-Apr-08 02:33 PM	

+="CN67641"	"Contractor wages"	="Department of the Treasury"	02-Apr-08	="Personal and Domestic Services"	18-Mar-08	30-Jun-08	20000.00	="M.SKINNER"	="Westaff"	02-Apr-08 02:33 PM	

+="CN67642"	"Reuters & Ecowin Subscriptions 2007/08"	="Department of the Treasury"	02-Apr-08	="Published Products"	20-Mar-08	30-Jun-08	15000.00	=""	="Reuters Aust Pty Ltd"	02-Apr-08 02:33 PM	

+="CN67643"	"Provision of consumer and financial literacy profe"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Dec-08	95974.00	="OPEN SOURCE"	="Department of Education & Children'"	02-Apr-08 02:33 PM	

+="CN67644"	"Provision of consumer and financial literacy profe"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Dec-08	48277.00	="OPEN SOURCE"	="Association of independent Schools"	02-Apr-08 02:33 PM	

+="CN67645"	"Translation of  Docs from Dutch to English"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	61160.00	=""	="Australian Taxation Office"	02-Apr-08 02:33 PM	

+="CN67646"	"Advertising for CFO Position"	="Department of the Treasury"	02-Apr-08	="Published Products"	20-Mar-08	31-Mar-08	15955.90	=""	="HMA Blaze Pty Limited"	02-Apr-08 02:33 PM	

+="CN67647"	"GAP regulatory affairs congress"	="Department of the Treasury"	02-Apr-08	="Education and Training Services"	18-Mar-08	31-Mar-08	11000.00	=""	="Global Access Partners"	02-Apr-08 02:33 PM	

+="CN67648"	"Airfares"	="Department of the Treasury"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	03-Mar-08	30-Jun-08	37695.13	=""	="American Express International"	02-Apr-08 02:33 PM	

+="CN67649"	"Placement fees"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	12012.00	=""	="Professional Careers Australia P/L"	02-Apr-08 02:34 PM	

+="CN67650"	"Legal Advice"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Jun-08	15000.00	=""	="Australian Government Solicitor"	02-Apr-08 02:34 PM	

+="CN67651"	"Secondment"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	66750.64	=""	="CP&S Chang, Pistilli & Simmons Corp"	02-Apr-08 02:34 PM	

+="CN67652"	"Development of Integrated System"	="Department of the Treasury"	02-Apr-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	05-Mar-08	11165.00	=""	="Axe Group Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67653"	"20 Blackberry Devices"	="Department of the Treasury"	02-Apr-08	="Office Equipment and Accessories and Supplies"	11-Mar-08	14-Mar-08	13420.00	=""	="Optus Billing Services Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67654"	"Treasury-ICON Annual Levy Administered"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	16500.00	=""	="Dept of Finance & Deregulation"	02-Apr-08 02:34 PM	

+="CN67655"	"CAMA to undertake a scenario analysis in the GCUBE"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	01-May-08	66000.00	=""	="Australian National University"	02-Apr-08 02:34 PM	

+="CN67656"	"Provision of research and a report into legel and"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	40300.00	=""	="Rice Warner Actuaries Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67658"	"Provision of design, writing and research to devel"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	54253.70	=""	="Famous 5 Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67659"	"Provision of cost planning and quantity surveying of a new computer room to the Department of the Tr"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	01-May-08	10335.00	=""	="Donald Cant Watts Corker (A.C.T) Pt"	02-Apr-08 02:35 PM	

+="CN67660"	"To provide specific legal advice"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	10956.00	=""	="Aust Government Solicitor  ACT"	02-Apr-08 02:35 PM	

+="CN67661"	"Provision of cnsultancy services for the Treasury"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	08-Feb-08	28-Mar-08	17600.00	=""	="Cybertrust"	02-Apr-08 02:35 PM	

+="CN67662"	"Airfares"	="Department of the Treasury"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	03-Mar-08	30-Jun-08	268636.08	=""	="American Express International"	02-Apr-08 02:35 PM	

+="CN67663"	"Provision of contractor to undertake the role of P"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	27-Jun-08	80000.00	=""	="ICON Recruitment Pty Ltd"	02-Apr-08 02:35 PM	

+="CN67664"	"Treasury in-house Lawyer - Tara McNeilly - Austral"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	415000.00	=""	="Aust Government Solicitor  ACT"	02-Apr-08 02:35 PM	

+="CN67665"	"Request to design brands/logos & templatesfor prog material & assist w cross agency implemen"	="Department of the Treasury"	02-Apr-08	="Paper Materials and Products"	19-Mar-08	30-Jun-08	20000.00	=""	="Cre8ive"	02-Apr-08 02:36 PM	

+="CN67666"	"Financial Advice and Support for the Standard Busi"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	200000.00	=""	="Acumen Alliance"	02-Apr-08 02:36 PM	

+="CN67657"	"safety footwear"	="Department of Defence"	02-Apr-08	="Safety footwear"	06-Nov-07	14-Mar-08	18810.00	=""	="MAINPEAK"	02-Apr-08 02:36 PM	

+="CN67667"	"Provision of services for the ICT Sourcing Support"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Apr-08	50000.00	=""	="Broadleaf Capital International Pty"	02-Apr-08 02:36 PM	

+="CN67668"	"Provision of emissions response functions for sele"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	04-Apr-08	24000.00	=""	="McLennan Magasanik Associates Pearc"	02-Apr-08 02:36 PM	

+="CN67669"	"Bottom-up modelling of the agriculture and forestr"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	14-Apr-08	35000.00	=""	="ABARE"	02-Apr-08 02:36 PM	

+="CN67670"	"Supply of 6 VHF Radios"	="Australian Federal Police"	02-Apr-08	="Two way radios"	01-Apr-08	30-Jun-08	20625.00	=""	="Motorola Australia Pty Limited"	02-Apr-08 02:40 PM	

+="CN67671"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	17-Mar-08	17-Apr-08	24932.93	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:45 PM	

+="CN67672"	"Online content conversion and HTML editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	17-Mar-08	30-Jun-08	34707.20	=""	="AMBIT GROUP PTY LIMITED"	02-Apr-08 02:45 PM	

+="CN67673"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	44660.00	=""	="Chris Adams & Associates"	02-Apr-08 02:45 PM	

+="CN67674"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	54000.00	=""	="Directions for Change"	02-Apr-08 02:45 PM	

+="CN67675"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	17-Mar-08	30-Jun-08	87300.00	=""	="Interaction Consulting Group PtyLtd"	02-Apr-08 02:45 PM	

+="CN67676"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	62400.00	=""	="SHANE CARROLL & ASSOCIATES"	02-Apr-08 02:46 PM	

+="CN67677"	"Printing 600,000 CCMS parents booklets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	17-Mar-08	28-Mar-08	40045.50	=""	="PARAGON PRINTERS AUSTRALASIA GROUP"	02-Apr-08 02:46 PM	

+="CN67678"	"Aust/Aboriginal and Torres Strait Islander Flags"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	19800.00	=""	="Corporate Express Australia"	02-Apr-08 02:46 PM	

+="CN67679"	"Software Tester"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	18-Mar-08	30-Jun-08	33176.00	=""	="Talent International (ACT)"	02-Apr-08 02:46 PM	

+="CN67680"	"The provision of contract services in relation to online content conservation and HTML editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	30-Jun-08	41888.00	=""	="GREYTHORN PTY LTD"	02-Apr-08 02:46 PM	

+="CN67681"	"SES Planning Conference on the 3-4 April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accommodation furniture"	13-Mar-08	11-Apr-08	11000.00	=""	="PALM Consulting Group Pty Ltd"	02-Apr-08 02:46 PM	

+="CN67682"	"Business Analyst"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	13-Mar-08	30-Jun-08	71808.00	=""	="Paxus Australia Pty Ltd"	02-Apr-08 02:46 PM	

+="CN67683"	"Printing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Mar-08	30-Jun-08	15600.20	=""	="Image Offset"	02-Apr-08 02:46 PM	

+="CN67684"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	14-Mar-08	30-Jun-08	77440.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:47 PM	

+="CN67685"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	14-Mar-08	30-Jun-08	59752.00	=""	="CLICKS IT RECRUITMENT"	02-Apr-08 02:47 PM	

+="CN67686"	"Emergency Relief Program privacy training in South Australia"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	14-Mar-08	30-Jun-08	23200.00	=""	="LUTHERAN COMMUNITY CARE"	02-Apr-08 02:47 PM	

+="CN67687"	"Emergency Relief Program privacy training in South Australia"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	14-Mar-08	30-Jun-08	12831.00	=""	="TAFE SA"	02-Apr-08 02:47 PM	

+="CN67688-A2"	"Software Licence/Maintenance"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Software maintenance and support"	14-Mar-08	30-Sep-11	176983.25	=""	="CITRIX SYSTEMS ASIA PACIFIC PTY LTD"	02-Apr-08 02:47 PM	

+="CN67689"	"Facilitation  Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	17-Mar-08	30-Jun-08	11441.76	=""	="AUST INDIGENOUS LEADERSHIP CENTRE"	02-Apr-08 02:47 PM	

+="CN67690"	"Developmental research to test social & community messages amoung the Australian community"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	27-Mar-08	26-May-08	170830.00	=""	="BLUE MOON RESEARCH & PLANNING"	02-Apr-08 02:47 PM	

+="CN67691"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-May-08	29050.00	=""	="ARTD Pty Ltd"	02-Apr-08 02:47 PM	

+="CN67692"	"Employment of Lynn Zheng"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	27-Mar-08	30-Jun-08	40000.00	=""	="Hays Specialist Recruitment"	02-Apr-08 02:48 PM	

+="CN67693"	"ADE Logo, Brand and Style Guide"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	16-May-08	54851.50	=""	="SMART Sydney Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67694"	"Technical Analyst/Assistant Project Manager"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	28-Mar-08	23-May-08	35200.00	=""	="REDBACK CONSULTING PTY LTD"	02-Apr-08 02:48 PM	

+="CN67695"	"Design build and document MOSS Server"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Apr-08	38640.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67696"	"Introductory Corporate Governance Workshop EK1 & 2"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Vocational training"	28-Mar-08	30-Jun-08	48240.00	=""	="DEBORAH DURNAN"	02-Apr-08 02:48 PM	

+="CN67697"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	31-Mar-08	30-Jun-08	64626.88	=""	="PHASE III SOLUTIONS PTY LTD"	02-Apr-08 02:48 PM	

+="CN67698"	"Contractor to review the MaPS application & infra."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	31-Mar-08	30-Apr-08	36960.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67699"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	26-Mar-08	26-Apr-08	58616.50	=""	="COMPUTERCORP (OPERATIONS)"	02-Apr-08 02:48 PM	

+="CN67700"	"Software Tester"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	18-Mar-08	30-Jun-08	39600.00	=""	="AUREC PTY LTD"	02-Apr-08 02:49 PM	

+="CN67701-A5"	" Provision of EAP Services "	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	19-Mar-08	30-Sep-11	575100.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	02-Apr-08 02:49 PM	

+="CN67702"	"6 x Electronic whiteboards for Centreplaza"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office and desk accessories"	20-Mar-08	30-Mar-08	14358.00	=""	="ESC TECHNOLOGY PTY LTD"	02-Apr-08 02:49 PM	

+="CN67703"	"Replication/Printing/Testing/Packing CDS"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	20-Mar-08	30-Jun-08	20581.00	=""	="DOGMA"	02-Apr-08 02:49 PM	

+="CN67704"	"provision of financial services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	25-Mar-08	30-Jun-08	25000.00	=""	="WALTERTURNBULL"	02-Apr-08 02:49 PM	

+="CN67705"	"Development of Training Workbook"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	08-Apr-08	23760.00	=""	="Yellow Edge Victoria Pty Ltd"	02-Apr-08 02:49 PM	

+="CN67706"	"NAYSS Good Practise forum May 2008 - Venue, conference package and accommodation."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	26-Mar-08	02-May-08	24300.00	=""	="CITIGATE SEBEL - SYDNEY"	02-Apr-08 02:49 PM	

+="CN67707"	"Review of the "Information Kit For Disability Empl"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	26-Mar-08	14-Jun-08	25080.00	=""	="Disability Studies and Research"	02-Apr-08 02:49 PM	

+="CN67708"	"Chartered Flights for Former minister Mal Brough visiting - Alice Springs, Santa Teresa, Eridunda"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel facilitation"	26-Mar-08	26-Mar-08	45410.00	=""	="Corporate Air"	02-Apr-08 02:50 PM	

+="CN67709"	"Inv.CG560009 Acc No.222668"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office Equipment and Accessories and Supplies"	29-Feb-08	27-Mar-08	19002.30	=""	="FUJI XEROX AUSTRALIA PTY LTD"	02-Apr-08 02:50 PM	

+="CN67710"	"Lease Pymnt COL0500/2401-02 Ref 6186"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	26-Mar-08	28-Mar-08	29320.20	=""	="ECS Property Group"	02-Apr-08 02:50 PM	

+="CN67711-A4"	" Use, amendment and scoring of ACER child assessment instruments, including training. "	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information services"	03-Mar-08	30-Jun-11	90955.00	=""	="Aust Council for Educational"	02-Apr-08 02:50 PM	

+="CN67712"	"Delivery of Compass Graduate Program training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	03-Mar-08	30-Jun-08	41992.50	=""	="Interaction Consulting Group PtyLtd"	02-Apr-08 02:50 PM	

+="CN67713"	"Conference Facilitation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	07-Mar-08	12800.00	=""	="Yellow Edge Victoria Pty Ltd"	02-Apr-08 02:50 PM	

+="CN67714"	"Catering"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Dec-08	29450.00	=""	="Hyatt Hotel Canberra"	02-Apr-08 02:50 PM	

+="CN67715"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	05-Mar-08	30-Jun-08	63118.00	=""	="GREYTHORN PTY LTD"	02-Apr-08 02:50 PM	

+="CN67716"	"Repairs to House - Mutitjulu Community"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accommodation furniture"	05-Mar-08	30-May-08	31150.00	=""	="Alice T & C Maintenance & Construct"	02-Apr-08 02:51 PM	

+="CN67717"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Software"	05-Mar-08	05-Apr-08	22976.80	=""	="KAZ GROUP PTY LTD"	02-Apr-08 02:51 PM	

+="CN67718"	"Reimbursement to UGS March 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	27-Mar-07	27-Mar-08	96272.52	=""	="United Group Services"	02-Apr-08 02:51 PM	

+="CN67719"	"FACSIA ICC Offices Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	21381.56	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67720"	"FACSIA National Office Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	39115.51	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67721"	"FACSIA National Office Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	29730.38	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67722"	"Financial Management Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accounting and auditing"	14-Mar-08	15-Mar-08	24115.28	=""	="WALTERTURNBULL"	02-Apr-08 02:51 PM	

+="CN67723"	"AMEX invoice Acc No.376059690931003 Feb 08 National Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	06-Mar-08	18773.47	=""	="American Express"	02-Apr-08 02:51 PM	

+="CN67724"	"SSAT Review of Child Support Case management"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information services"	28-Feb-08	07-Mar-08	139586.10	=""	="Blake Dawson"	02-Apr-08 02:51 PM	

+="CN67725"	"Pymnt Inv/Acc.PBD1206-080228 Project. SSAT"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	15-Feb-08	14-Mar-08	19278.60	=""	="Hassell Ltd"	02-Apr-08 02:52 PM	

+="CN67726"	"Mth of April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	19-Mar-08	26-Mar-08	21149.34	=""	="Jones Lang La Salle (VIC)"	02-Apr-08 02:52 PM	

+="CN67727"	"Rental April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	01-Apr-08	01-Apr-08	35134.47	=""	="ARIA Property International"	02-Apr-08 02:52 PM	

+="CN67728"	"Pandemic Influenza Booklet"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	11-Mar-08	07-Apr-08	15678.30	=""	="Pirion Pty Limited"	02-Apr-08 02:52 PM	

+="CN67729"	"AGG Travel and education expenses 07/08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Financial and Insurance Services"	12-Mar-08	30-Jun-08	15000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-Apr-08 02:52 PM	

+="CN67730"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	15-May-08	46200.00	=""	="PERKS AUDIT & ASSURANCE"	02-Apr-08 02:52 PM	

+="CN67731"	"Conduct a threat risk assessment for the grants management system."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	12-Mar-08	09-May-08	69375.00	=""	="KPMG"	02-Apr-08 02:52 PM	

+="CN67732"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	12-Mar-08	12-Apr-08	14464.89	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Apr-08 02:52 PM	

+="CN67733"	"lease of it equipment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Telecommunications media services"	12-Mar-08	30-Jun-09	244776.68	=""	="Commonwealth Bank of Australia -"	02-Apr-08 02:52 PM	

+="CN67734"	"Parent 1 and 2 Consent Books"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printed media"	13-Mar-08	15-Apr-08	12964.27	="190"	="Ducor Australia Pty Ltd"	02-Apr-08 02:53 PM	

+="CN67735"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	13-Mar-08	13-Apr-08	41112.50	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:53 PM	

+="CN67736"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	13-Mar-08	14-Apr-08	33999.45	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:53 PM	

+="CN67737"	"Internal audit services for FOFMS  November 07 to January 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accounting and auditing"	11-Mar-08	11-Mar-08	24566.85	=""	="Ernst & Young"	02-Apr-08 02:53 PM	

+="CN67738"	"Provision of SAS programming for the Australian Government Census of child care services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	31-Mar-08	18500.00	=""	="PEOPLEBANK"	02-Apr-08 02:53 PM	

+="CN67739"	"Programme management arrangements"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	06-Mar-08	30-Apr-08	13200.00	=""	="HannahFyre Enterprises"	02-Apr-08 02:53 PM	

+="CN67740"	"Provision of Influenza Vaccinations"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	06-Mar-08	31-May-08	19000.00	=""	="Corporate Medical Options (CMO)"	02-Apr-08 02:53 PM	

+="CN67741"	"Case Management and Intelligence System"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	07-Mar-08	30-Jun-08	32450.00	=""	="Jade Direct Australia Pty Ltd"	02-Apr-08 02:53 PM	

+="CN67742"	"Hearing Loop System-Centraplaza"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	11303.00	=""	="PRINTACALL"	02-Apr-08 02:54 PM	

+="CN67743"	"Transition Project Manager"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	07-Mar-08	30-Jun-08	78540.00	=""	="PEOPLEBANK"	02-Apr-08 02:54 PM	

+="CN67744"	"SharePoint Developer for Lotus Notes Re-developmen"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	11-Mar-08	30-Jun-08	36300.00	=""	="Compas Pty Ltd"	02-Apr-08 02:54 PM	

+="CN67745"	"Headsets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	14000.00	=""	="Telstra Corporation"	02-Apr-08 02:54 PM	

+="CN67746"	"Accommodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	26-Jun-08	36995.76	=""	="DEPARTMENT OF COMMUNITIES (QLD)"	02-Apr-08 02:54 PM	

+="CN67281-A3"	"2020 Summitt Collateral"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="World wide web WWW site design services"	03-Feb-08	30-Apr-08	44481.00	=""	="ZOO COMMUNICATIONS"	02-Apr-08 03:57 PM	

+="CN67282-A1"	"Broadcast Management Services - 2020 Summitt"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="Television broadcasting station management"	17-Mar-08	24-Apr-08	40000.00	=""	="Stephenie Werrett"	02-Apr-08 03:58 PM	

+="CN67279"	"Media Management - 2020 Summit"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="Telecommunications media services"	03-Mar-08	30-May-08	60000.00	=""	="CMAX Communications"	02-Apr-08 03:59 PM	

+="CN67280-A1"	"Logo Development Services - 2020 Summitt"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="World wide web WWW site design services"	17-Mar-08	24-Apr-08	15000.00	=""	="ZOO COMMUNICATIONS PTY LTD"	02-Apr-08 04:00 PM	

+="CN67749"	"Online Survey - Canberra Central Parklands"	="National Capital Authority"	02-Apr-08	="Business and corporate management consultation services"	20-Nov-07	11-Jan-08	12375.00	=""	="StollzNow Research"	02-Apr-08 04:25 PM	

+="CN67751"	"ASLAV PARTS - BAR ARMOUR & MOUNTING BRACKETS"	="Department of Defence"	03-Apr-08	="Armoured fighting vehicles"	01-Apr-08	12-Aug-08	19145.60	=""	="GENERAL DYNAMICS LAND SYSTEMS"	03-Apr-08 08:51 AM	

+="CN67752"	"Packaging"	="Royal Australian Mint"	03-Apr-08	="Packaging materials"	03-Mar-08	16-Jun-08	19074.00	=""	="DAVIES FERGUSON PTY LTD"	03-Apr-08 08:56 AM	

+="CN67753"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0878 IAW standing Offer PN7785"	="Defence Materiel Organisation"	03-Apr-08	="Aerospace systems and components and equipment"	02-Apr-08	30-May-08	54633.17	=""	="Goodrich Control Systems PTY LTD"	03-Apr-08 09:01 AM	

+="CN67754"	"Packaging"	="Royal Australian Mint"	03-Apr-08	="Packaging materials"	05-Mar-08	05-Mar-08	14898.40	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	03-Apr-08 09:02 AM	

+="CN67755"	"Laptops"	="Department of the House of Representatives"	03-Apr-08	="Computers"	25-Mar-08	25-Apr-08	34838.80	=""	="Toshiba Aust P/L"	03-Apr-08 09:05 AM	

+="CN67757"	"Packaging"	="Royal Australian Mint"	03-Apr-08	="Packaging materials"	07-Mar-08	07-Mar-08	12314.50	=""	="VISY BOARD PTY LTD (SMITHFIELD)"	03-Apr-08 09:07 AM	

+="CN67756"	"Repair / Modification of F/A-18 Generator Converter Unit S/No 1191 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	03-Apr-08	="Aerospace systems and components and equipment"	02-Apr-08	30-May-08	15601.60	=""	="Goddrich Control Systems PTY LTD"	03-Apr-08 09:08 AM	

+="CN67758"	"Entertainment Open Day Parliament House"	="Department of the House of Representatives"	03-Apr-08	="Entertainment services"	07-Mar-08	10-May-08	16500.00	=""	="Dein Perry Productions Pty Ltd"	03-Apr-08 09:10 AM	

+="CN67759"	"Consulting"	="Royal Australian Mint"	03-Apr-08	="Business and corporate management consultation services"	07-Mar-08	07-Mar-08	11000.00	=""	="VISY BOARD PTY LTD (SMITHFIELD)"	03-Apr-08 09:13 AM	

+="CN67760"	"Packaging"	="Royal Australian Mint"	03-Apr-08	="Packaging materials"	03-Mar-08	03-Mar-08	19250.00	=""	="NELSON JOYCE & CO PTY LTD"	03-Apr-08 09:17 AM	

+="CN67762"	"coin collection"	="Royal Australian Mint"	03-Apr-08	="Mint coin collections"	12-Mar-08	12-Mar-08	59799.85	=""	="AUSTRALIA POST"	03-Apr-08 09:23 AM	

+="CN67761"	"Office storage"	="Department of the House of Representatives"	03-Apr-08	="Furniture storage"	17-Mar-08	31-Dec-08	12800.00	=""	="1st Fleet Warehousing & Distribution"	03-Apr-08 09:26 AM	

+="CN67765"	" PURCHASE OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	03-Apr-08	="Motor vehicles"	03-Apr-08	17-Apr-08	10997.00	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	03-Apr-08 10:45 AM	

+="CN67766"	"2008 Review of National Counter-Terrorism Arrangements"	="Department of the Prime Minister and Cabinet"	03-Apr-08	="National planning services"	19-Mar-08	18-Jun-08	156000.00	="PMC2008:P0003"	="GHD Pty Ltd"	03-Apr-08 11:03 AM	

+="CN67767"	"Delivery of ISAC Training"	="Australian Taxation Office"	03-Apr-08	="Education and Training Services"	11-Feb-08	29-Feb-08	17000.00	=""	="Australian Public Service Commission"	03-Apr-08 11:06 AM	

+="CN67769"	"Advertising for National Recruitment Campaign"	="Office of the Director of Public Prosecutions"	03-Apr-08	="Human resources services"	19-Mar-08	30-Apr-08	18000.00	=""	="HAYS"	03-Apr-08 11:27 AM	

+="CN67771"	"REPAIR 20' ISO FRIDGE SER#LPIU5602738 T&G"	="Department of Defence"	03-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Apr-08	30-Apr-08	14985.30	=""	="NORTHERN HARD SURFACES"	03-Apr-08 11:39 AM	

+="CN67772-A1"	"Temporary Staff - WA"	="Office of the Director of Public Prosecutions"	03-Apr-08	="Human resources services"	04-Mar-08	29-Aug-08	44880.00	=""	="Hays"	03-Apr-08 11:43 AM	

+="CN67774-A4"	" BP 07324 PAYG 2008 stationery mailout print services "	="Australian Taxation Office"	03-Apr-08	="Printing"	01-Apr-08	31-Oct-11	1815615.00	=""	="Salmat BusinessForce Pty Ltd"	03-Apr-08 12:02 PM	

+="CN67777-A1"	"Provision for System Tester"	="Comsuper"	03-Apr-08	="Human resources services"	23-Aug-07	06-Jun-08	111540.00	=""	="Eurolink Consulting Services Pty Ltd Trading as Aristotle"	03-Apr-08 12:08 PM	

+="CN67776"	"REPAIR AND OH OF BLACK HAWK LANDING GEAR ASSY."	="Defence Materiel Organisation"	03-Apr-08	="Military rotary wing aircraft"	03-Apr-08	30-Jun-08	14179.53	=""	="SAAL"	03-Apr-08 12:10 PM	

+="CN67778"	" MACK MAJOR ALTERNATE SERVICE INCLUDING CRANE   WHEEL STUD MODIFICATION  & ADDITIONAL REPAIRS "	="Department of Defence"	03-Apr-08	="Truck tractors"	14-Feb-08	28-Mar-08	10377.36	=""	="MACK AUSTRALIA"	03-Apr-08 12:21 PM	

+="CN67779"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE"	="Defence Materiel Organisation"	03-Apr-08	="Military rotary wing aircraft"	03-Apr-08	30-Jun-08	19243.66	=""	="SAAL"	03-Apr-08 12:23 PM	

+="CN67781"	"SCEC Security Consultancy for Office Fitout for Canberra"	="Office of the Director of Public Prosecutions"	03-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-May-08	17182.00	=""	="Bassett Consulting Engineers"	03-Apr-08 12:24 PM	

+="CN67782"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Spectrometers"	03-Oct-07	30-Oct-08	67680.00	="NA"	="Nu Scientific P/L"	03-Apr-08 01:17 PM	

+="CN67783"	"BASE 10 COMMUNICATIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Network security or virtual private network VPN management software"	20-Feb-08	20-Feb-09	26094.56	="OPEN"	="BASE 10 COMMUNICATION"	03-Apr-08 01:17 PM	

+="CN67784"	"Survival Supplies Various"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Camping and outdoor equipment"	22-Feb-08	22-Feb-08	17843.45	="NA"	="Platypus Outdoors Group"	03-Apr-08 01:17 PM	

+="CN67785"	"AIR-MET SCIENTIFIC"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Scanning probe microscopes"	28-Feb-08	28-Feb-09	15926.90	="OPEN"	="AIR MET SCIENTIFIC"	03-Apr-08 01:18 PM	

+="CN67786"	"RJB CONSTRUCTION"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	11-Jan-09	22628.10	="OPEN"	="RJB CONSTRUCTION"	03-Apr-08 01:18 PM	

+="CN67787"	"BENTHAM INSTRUMENTS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Monochromators"	15-Feb-08	15-Feb-09	33965.20	="OPEN"	="Bentham Instruments Ltd"	03-Apr-08 01:18 PM	

+="CN67788"	"Technology One Ltd"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Software maintenance and support"	01-Dec-07	30-Nov-08	79013.00	=""	="Technology One"	03-Apr-08 01:18 PM	

+="CN67789"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Renovation of buildings or landmarks or monuments"	01-Jul-07	30-Jun-08	104388.00	=""	="Honeywell"	03-Apr-08 01:18 PM	

+="CN67790"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Medical radioisotope scanners"	03-Oct-07	30-Oct-08	29690.00	="NA"	="Nu Scientific P/L"	03-Apr-08 01:18 PM	

+="CN67791"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Pump integrity monitors"	03-Oct-07	30-Oct-08	46337.50	="NA"	="Nu Scientific P/L"	03-Apr-08 01:18 PM	

+="CN67793"	"Conference Management Services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Conference centres"	21-Aug-07	30-Nov-07	160858.00	=""	="Tour Hosts Pty Ltd"	03-Apr-08 01:18 PM	

+="CN67794"	"Commercial Office Lease"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	03-Apr-08 01:19 PM	

+="CN67795"	"Services for Nov 07 Audit Committee Mtg"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Accounting and auditing"	17-Jan-08	17-Jan-08	10626.42	=""	="Protiviti Pty Ltd"	03-Apr-08 01:19 PM	

+="CN67796"	"RATNER AUSTRALASIA SAFE CO."	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Tamper proof or security seals"	19-Feb-08	19-Feb-09	26094.56	="DIRECT"	="Ratner Australasia Safe P/L"	03-Apr-08 01:19 PM	

+="CN67797"	"Computers"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Computer servers"	23-Jul-07	30-Jun-08	10032.00	=""	="DELL COMPUTER P/L"	03-Apr-08 01:19 PM	

+="CN67798"	"AIR-MET SCIENTIFIC"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	03-Apr-08	="Environmental monitoring"	28-Feb-08	28-Feb-09	52891.30	="OPEN"	="AIR MET SCIENTIFIC"	03-Apr-08 01:19 PM	

+="CN67799"	"CPO020287 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Jan-08	18812.00	=""	="Auscheck"	03-Apr-08 01:28 PM	

+="CN67800-A1"	"07/2319 - Architectural Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Architectural services"	14-Jan-08	30-Jun-10	513739.10	=""	="Group GSA Pty Ltd"	03-Apr-08 01:28 PM	

+="CN67801"	"07/2384 - Supply Software"	="Australian Customs and Border Protection Service"	03-Apr-08	="Computer services"	17-Dec-07	16-Dec-08	33529.10	=""	="IBM Global Services Australia Ltd"	03-Apr-08 01:28 PM	

+="CN67802"	"CPO020291 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	39620.00	=""	="AusCheck"	03-Apr-08 01:28 PM	

+="CN67803"	"CPE004622-1 - Office Refurbishment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Building and Construction and Maintenance Services"	14-Mar-08	31-Mar-08	23111.00	=""	="Interiors Australia"	03-Apr-08 01:29 PM	

+="CN67804"	"CPO019475 - Supply of Telecommunications Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Telecommunications media services"	17-Jan-08	29-Feb-08	14580.90	=""	="Camera Action Camera House"	03-Apr-08 01:29 PM	

+="CN67805"	"CPO020535 - Training Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	07-Apr-08	09-Apr-08	11025.00	=""	="Planit Test Management Solutions Pty Ltd"	03-Apr-08 01:29 PM	

+="CN67806"	"CPO020110 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	29-Feb-08	60502.00	=""	="Militry & Law Enrocement Technologies"	03-Apr-08 01:29 PM	

+="CN67807"	"CPO020112 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	29-Feb-08	23608.85	=""	="Ted's Camera Store"	03-Apr-08 01:29 PM	

+="CN67808"	"CPO020384 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	59987.22	=""	="Michaels Camera Video Digital Store"	03-Apr-08 01:29 PM	

+="CN67809"	"CPO019476 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	05-Mar-08	11047.23	=""	="Camera Action Camera House"	03-Apr-08 01:29 PM	

+="CN67810"	"07/2427 - Gas Cylinder Refilling"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	18-Feb-11	145200.00	=""	="Faxtech Pty Ltd trading as Point Trading"	03-Apr-08 01:29 PM	

+="CN67811"	"CPE004641-1 - Data Warehousing"	="Australian Customs and Border Protection Service"	03-Apr-08	="Computer services"	28-Feb-08	30-Apr-08	65000.00	=""	="E Fab Pty Ltd"	03-Apr-08 01:29 PM	

+="CN67823"	"CPE004635-1 - Telecommunications Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Telecommunications media services"	07-Mar-08	07-Mar-08	23006.50	=""	="Standard Communnications Pty Ltd"	03-Apr-08 01:31 PM	

+="CN67824"	"07/2304 - Telecommunications Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Telecommunications media services"	22-Feb-08	22-Feb-09	135388.00	=""	="Electrotech Australia Pty Ltd"	03-Apr-08 01:31 PM	

+="CN67825"	"07/2329 - Finance Contractor"	="Australian Customs and Border Protection Service"	03-Apr-08	="Human resources services"	30-Oct-07	30-Apr-08	85000.00	=""	="Professional Careers Australia"	03-Apr-08 01:31 PM	

+="CN67826"	"CPO020546 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	15-Mar-08	30-Jun-08	11332.00	=""	="Rosewarne Installations Service"	03-Apr-08 01:31 PM	

+="CN67827"	"CPO020547 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	30-Jun-08	40359.40	=""	="Rosewarne Installations Service"	03-Apr-08 01:32 PM	

+="CN67828"	"CPO020559 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	02-Feb-08	30-Jun-08	11590.50	=""	="Rosewarne Installations Service"	03-Apr-08 01:32 PM	

+="CN67829"	"CPO020561 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	02-Feb-08	30-Jun-08	26332.70	=""	="Rosewarne Installations Service"	03-Apr-08 01:32 PM	

+="CN67830"	"CPO020568 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	20-Mar-08	30-Jun-08	15833.40	=""	="Direct Alarm Supplies"	03-Apr-08 01:32 PM	

+="CN67831"	"CPO020550 - Training Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	18-Mar-08	19-Mar-08	38745.00	=""	="University of Canberra"	03-Apr-08 01:32 PM	

+="CN67832-A1"	"08/2632 - Provision of Equipment Maintenance and Support"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-09	200000.00	=""	="NSC Enterprise Solutions"	03-Apr-08 01:32 PM	

+="CN67833"	"CPE002969-7 - Legislative Instruments"	="Australian Customs and Border Protection Service"	03-Apr-08	="Legal services"	01-Jan-08	31-Jan-08	12319.61	=""	="Attorney Generals Department"	03-Apr-08 01:32 PM	

+="CN67834"	"CPO020688 - Management Program"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	01-Apr-08	30-Apr-08	14000.00	=""	="Public Sector Management Programme"	03-Apr-08 01:33 PM	

+="CN67835"	"CPO020671 - Office Refurbishment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Building and Construction and Maintenance Services"	17-Dec-07	29-Feb-08	10120.00	=""	="Maico Pty Ltd"	03-Apr-08 01:33 PM	

+="CN67836-A4"	"07/2358 - Analysis and Design"	="Australian Customs and Border Protection Service"	03-Apr-08	="Computer services"	25-Mar-08	30-Nov-09	3997680.00	=""	="Accenture Australia  Ltd"	03-Apr-08 01:33 PM	

+="CN67837"	"CPO020697 - Telecommunication Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	29-Feb-08	37315.62	=""	="Electrotech Australia"	03-Apr-08 01:33 PM	

+="CN67838"	"CPO020708 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Jun-08	18903.50	=""	="LAN 1 Pty Ltd"	03-Apr-08 01:33 PM	

+="CN67839"	"CPO020716 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	03-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Jun-08	23525.04	=""	="Prestige Electronics Canberra"	03-Apr-08 01:33 PM	

+="CN67840"	"CPE002796-8 -  Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	16331.70	=""	="CRIMTRAC"	03-Apr-08 01:33 PM	

+="CN67841"	"CPE002796-9 -  Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10314.15	=""	="CRIMTRAC"	03-Apr-08 01:33 PM	

+="CN67842"	"CPE002796-10 -  Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17090.15	=""	="CRIMTRAC"	03-Apr-08 01:33 PM	

+="CN67843"	"CPO020755 - Training Program"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	17-Mar-08	13-May-08	13200.00	=""	="D'Arcy Consulting Group T/A PEP Worldwide"	03-Apr-08 01:34 PM	

+="CN67844"	"CPE004621-1 - Cable Extension"	="Australian Customs and Border Protection Service"	03-Apr-08	="Electrical wire and cable and harness"	11-Mar-08	18-Mar-08	14806.00	=""	="Crimetech Security"	03-Apr-08 01:34 PM	

+="CN67845"	"CPE002796-11 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	03-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14807.10	=""	="CRIMTRAC"	03-Apr-08 01:34 PM	

+="CN67846"	"CPO020837 - Training Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	22-Apr-08	24-Apr-08	14786.20	=""	="Oracle University"	03-Apr-08 01:34 PM	

+="CN67847"	"CPO020895 - Training Services"	="Australian Customs and Border Protection Service"	03-Apr-08	="Education and Training Services"	27-Mar-08	28-Mar-08	12100.00	=""	="Maura Fay Productions Pty Ltd"	03-Apr-08 01:34 PM	

+="CN67862"	"Provision of Vehicle Rental Services"	="Civil Aviation Safety Authority"	03-Apr-08	="Motor vehicles"	25-Feb-08	31-Dec-09	350000.00	="06/001-01"	="Thrify Australia Pty Ltd"	03-Apr-08 02:08 PM	

+="CN67863-A1"	" REPAIR TO MACK TTW ARN-36700  amended from $17270.00 to 18345.90-14/04/08 "	="Department of Defence"	03-Apr-08	="Motor vehicles"	03-Apr-08	13-Jun-08	18345.90	=""	="MACK VOLVO AUSTRALIA"	03-Apr-08 02:17 PM	

+="CN67868"	"Kiowa R2 Service"	="Defence Materiel Organisation"	03-Apr-08	="Aircraft"	29-Jan-08	03-Apr-08	196388.27	=""	="Helitech Pty Ltd"	03-Apr-08 02:34 PM	

+="CN67866"	"Additional 100 TRIM Context Licences"	="Civil Aviation Safety Authority"	03-Apr-08	="License management software"	01-Mar-08	30-Jun-08	51879.00	="06/169-03"	="Alphawest Pty Ltd"	03-Apr-08 02:36 PM	

+="CN67869"	"REPAIR MACK WRECKER ARN-205254"	="Department of Defence"	03-Apr-08	="Motor vehicles"	03-Apr-08	20-Jun-08	13640.00	=""	="MACK VOLVO AUSTRALIA"	03-Apr-08 02:37 PM	

+="CN67867"	"Threat and Risk Assessment on eTax Pre-Filling 2008."	="Australian Taxation Office"	03-Apr-08	="Information technology consultation services"	25-Mar-08	24-Apr-08	31310.00	="RFQ01-2008"	="KPMG"	03-Apr-08 02:38 PM	

+="CN67873"	"Stand, Maintenance, Automotive Power Train and Maintenance Kit, Vehicular"	="Defence Materiel Organisation"	03-Apr-08	="Vehicle bodies and trailers"	13-Feb-08	26-Apr-08	38117.23	=""	="Hitachi Construction Machinery"	03-Apr-08 02:50 PM	

+="CN67874"	"Prepare report on the status of collaborative national land management practices activities - as a component of the Aust Collaborative Land Use Mapping Program."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	17-Mar-08	30-Jun-08	11000.00	=""	="GeoRIA Pty Ltd"	03-Apr-08 02:55 PM	

+="CN67876"	"Contribute to the development of the NRM spatial system includeing the preparation of the final report. Assist, and where necessary, supervise the NRMSIS project development team to undertake the project workplan."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Education and Training Services"	01-Apr-08	30-Jun-08	44000.00	=""	="Graham Yapp"	03-Apr-08 02:55 PM	

+="CN67877"	"Consult/supply of data - Palynostratigraphic analysis of 35 core & cutting samples from LMQ drillholes, Lower Macquarie Valley, northwest NSW."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	26-Mar-08	30-Jun-08	13731.00	=""	="Consultant Palynological Services"	03-Apr-08 02:55 PM	

+="CN67878-A1"	"BRS Rrecruitment advertising for the remaining months of 07-08."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	26-Mar-08	30-Jun-08	38500.00	=""	="HMA Blaze"	03-Apr-08 02:55 PM	

+="CN67879"	"Services agreement for the provision of a Business Requirement Specification for the redevelopment of the NRS database."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	26400.00	=""	="Dialog Pty Ltd"	03-Apr-08 02:56 PM	

+="CN67871"	" Alarm, Personal, Firefighter, Audible, Key Operated, Tally Yellow Waterproof Plastic Case, 3 1/4 in L x 2 in W, x 1 1/8 in. TKPower by a 9 Volt Battery  Part No. Super Pass 2 - 4055970  "	="Defence Materiel Organisation"	03-Apr-08	="Fire alarm systems"	03-Apr-08	30-Jun-08	16390.00	=""	="DRAEGER SAFETY PACIFIC PTY LTD"	03-Apr-08 02:56 PM	

+="CN67880-A1"	"Animal Welfare Survey"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	26-Mar-08	30-Jun-08	13682.90	=""	="Newspoll Market Research"	03-Apr-08 02:56 PM	

+="CN67881-A1"	"Temporary employee via temp agency for the period 17 March 2008 to 30 June 2008"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	17-Mar-08	30-Jun-08	20879.00	=""	="Careers Unlimited"	03-Apr-08 02:56 PM	

+="CN67882"	"Purchase of 2007 AAGIS ground control data."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Computer services"	19-Mar-08	30-Jun-08	35000.00	=""	="Australian Bureau of Agricultural and Resource Economics"	03-Apr-08 02:56 PM	

+="CN67883"	"Preparation and delivery of a campaign to raise public awareness of Indonesian quarantine requirements"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	25-Mar-08	31-Jul-08	120000.00	=""	="PT IndoPacific Edelman"	03-Apr-08 02:56 PM	

+="CN67884"	"Electronic Whiteboards"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Computer services"	12-Mar-08	30-Apr-08	13269.00	=""	="GPT Designs"	03-Apr-08 02:56 PM	

+="CN67885"	"Provision of an executive officer for the Aquatic Animal Health Committee Working Group on Emergency Disease Response Agreements"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	20-Feb-08	30-Jun-08	38500.00	=""	="Minister for Agriculture, Food and Fisheries, acting through SARDI"	03-Apr-08 02:56 PM	

+="CN67886-A1"	"Contractor - for approx 2 months."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	14-Mar-08	30-Jun-08	25000.00	=""	="Hays"	03-Apr-08 02:57 PM	

+="CN67888-A1"	"Transportation of x-rays to owner upon expiry of lease."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Tools and General Machinery"	30-Nov-07	30-Jun-08	10755.00	=""	="Rapiscan Systems Australia"	03-Apr-08 02:57 PM	

+="CN67889"	"Provide specialist facilitation and risk management services for the Practical Management Strategies for Avian Influenza AusAID/OCVO Project as specified in Schedule 2 of the contract."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	07-Feb-08	31-Dec-08	34650.00	=""	="Facilitation Pty Ltd"	03-Apr-08 02:57 PM	

+="CN67890"	"Segmentation analysis - Nature Consult: Survey, workshop and review"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	26-Mar-08	30-Jun-08	22000.00	=""	="Nature Pty Ltd"	03-Apr-08 02:57 PM	

+="CN67891"	"Accounting advice relating to lease incentives and related transactions"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	01-Nov-07	15-Apr-08	15000.00	=""	="Ernst & Young"	03-Apr-08 02:57 PM	

+="CN67892"	"Providing conference and accomodation facilities for Rapid Deployment Training course."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management and Business Professionals and Administrative Services"	28-May-08	29-May-08	15000.00	=""	="Citigate Sebel"	03-Apr-08 02:57 PM	

+="CN67893"	"Annual maintenance for ICMS system 6/5/08 to 6/5/09"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Computer services"	06-May-08	06-May-09	31157.50	=""	="Business Information Services NSW PTY LTD"	03-Apr-08 02:58 PM	

+="CN67894"	"legal services"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Legal services"	02-Apr-08	30-Sep-08	65455.55	=""	="Australian Government Solicitor"	03-Apr-08 02:58 PM	

+="CN67895"	"Study of Locust Population Gentics & Migratory Behaviour"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	01-Jul-07	30-Jun-08	28160.00	=""	="The University Of Sydney"	03-Apr-08 02:58 PM	

+="CN67897"	"NRAC EC Tour Brisbane to Warwick QLD April 08"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Passenger transport"	07-Apr-08	18-Apr-08	12000.00	=""	="Corporate Air"	03-Apr-08 02:58 PM	

+="CN67898"	"Segmentation Study - Cegedim climate survey, workshop, review"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	26-Mar-08	30-Jun-08	16500.00	=""	="Cegedim Strategic Data"	03-Apr-08 02:58 PM	

+="CN67899"	"Supply of 300 IMIDOX injections (100ml)"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	07-Apr-08	33000.00	=""	="PARNELL LABORATORIES"	03-Apr-08 02:58 PM	

+="CN67900"	"Services in relation to the Examination of the Department's Portfolio Additional Estimates Statements."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	03-Mar-08	07-Apr-08	18934.30	=""	="Ernst & Young"	03-Apr-08 02:58 PM	

+="CN67901"	"Temporary employment contract"	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Human resources services"	13-Mar-08	09-May-08	22000.00	=""	="Hays"	03-Apr-08 02:59 PM	

+="CN67902"	"Economic analysis of potential volume of trade in New Zealand apples to Australia under the final import risk analysis for NZ apples, in the context of the World Trade Organization (WTO) dispute Australia  measures affecting the importation of New Zealand apples."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	04-Apr-08	25-Apr-08	11100.00	=""	="Roger Rose"	03-Apr-08 02:59 PM	

+="CN67904-A1"	"Data fiber links for Fisherman Islands premises."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Real estate services"	01-Jul-07	30-Jun-13	319984.00	=""	="Port of Brisbane Corporation"	03-Apr-08 02:59 PM	

+="CN67905-A1"	"Assessment of Eritrean Fisheries Capability for the Hamelmalo College of Agriculture."	="Department of Agriculture Fisheries and Forestry"	03-Apr-08	="Management advisory services"	21-Jan-08	28-Mar-08	20000.00	=""	="Department of Primary Industries and Resources SA"	03-Apr-08 02:59 PM	

+="CN67908"	"REFURBISH SEA HAWK HMU FOR ARMY USE."	="Defence Materiel Organisation"	03-Apr-08	="Military rotary wing aircraft"	03-Apr-08	30-Jun-08	57591.64	=""	="APA"	03-Apr-08 03:17 PM	

+="CN67910"	"Temporary labour hire"	="Therapeutic Goods Administration"	03-Apr-08	="Recruitment services"	25-Feb-08	11-Apr-08	13750.00	=""	="Zenith Management Services Group Pty Ltd"	03-Apr-08 03:22 PM	

+="CN67913"	"    Provision of translation services    "	="Therapeutic Goods Administration"	03-Apr-08	="Written translation services"	27-Feb-08	27-Mar-08	115816.91	=""	="CMC Educational Coaching Services"	03-Apr-08 03:30 PM	

+="CN67920"	" AIRCRAFT SPARES  NSN 5315-01-537-4652 , BLADE PIN , FSCAP , QTY 330 "	="Defence Materiel Organisation"	03-Apr-08	="Military transport helicopters"	03-Apr-08	01-Sep-09	502352.07	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	03-Apr-08 03:47 PM	

+="CN67922"	"    Inventory Project    "	="Therapeutic Goods Administration"	03-Apr-08	="Financial and Insurance Services"	01-Feb-08	31-Jan-11	14828.00	="08/0607"	="Dynamic Edge Pty Ltd"	03-Apr-08 03:50 PM	

+="CN67925"	"    Medical Devices Business Process Review    "	="Therapeutic Goods Administration"	03-Apr-08	="Medical Equipment and Accessories and Supplies"	25-Feb-08	14-Mar-08	26026.00	=""	="Inside Story knowledge Management Pty Ltd"	03-Apr-08 03:56 PM	

+="CN67930"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	03-Apr-08	="Aircraft"	03-Apr-08	03-Jun-08	18905.83	=""	="Sikorsky Aircraft Australia LTD"	03-Apr-08 04:13 PM	

+="CN67932"	"Airfare"	="Department of Defence"	03-Apr-08	="Passenger transport"	24-Aug-07	24-Aug-07	16710.78	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67933"	"Accompany MINDEF, The Hon Joel Fitzgibbon to Edinburgh (UK) for Regional Defence Minister's Meeting 14 December 2008"	="Department of Defence"	03-Apr-08	="Passenger transport"	12-Dec-07	18-Dec-07	12329.40	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67934"	"Qantas International Route for US / UK Trip"	="Department of Defence"	03-Apr-08	="Travel and Food and Lodging and Entertainment Services"	09-Jan-08	19-Jan-08	14908.08	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67935"	"MAS induction training 2008, Melbourne ACMS 1280271DTR-A TR 07/08 178"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	24-Jan-08	24-Jan-08	13365.28	=""	="QUEST HERO ON RUSSELL"	03-Apr-08 04:49 PM	

+="CN67936"	"Julie Roberts - Vilnius 05 to 10 Feb 08 (120/0708) Flights"	="Department of Defence"	03-Apr-08	="Passenger transport"	05-Feb-08	10-Feb-08	15809.23	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67937"	"Secretary Vilnius 05 to 10 February (120/0708)  Flights"	="Department of Defence"	03-Apr-08	="Passenger transport"	05-Feb-08	10-Feb-08	17357.23	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67938"	"QANTAS AIR FARES FOR SEVEN ADF MEMBERS"	="Department of Defence"	03-Apr-08	="Aircraft"	06-Feb-08	28-Mar-08	21327.20	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67939"	"Visting lecturer"	="Department of Defence"	03-Apr-08	="Travel facilitation"	14-Feb-08	14-Feb-08	13393.86	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:49 PM	

+="CN67940"	"JOPS Cap Tour"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	29-Feb-08	29-Feb-08	10000.00	=""	="HOLIDAY INN DARWIN"	03-Apr-08 04:49 PM	

+="CN67941"	"DUNBAR/ADAM MR TKT: 08124678383820 R/N: Not Supplied TG: J SYD/BKK - RJ: J BKK/AMM DATE TRAVEL: 06/03/08 REF:YDZPP6 ONO: 21303-352472 GWT: 8259930"	="Department of Defence"	03-Apr-08	="Passenger transport"	09-Mar-08	09-Mar-08	12158.22	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:50 PM	

+="CN67942"	"PER036 - OP SLIPPER - JAMES CRVELIN"	="Department of Defence"	03-Apr-08	="Air transportation support systems and equipment"	11-Mar-08	11-Mar-08	10268.67	=""	="QANTAS AIRWAYS LIMITED"	03-Apr-08 04:50 PM	

+="CN67943"	"Heaters for Q Store, 1RTF"	="Department of Defence"	03-Apr-08	="Domestic appliances"	12-Mar-07	12-Mar-07	11940.06	=""	="SYDNEY CLEANING EQP"	03-Apr-08 04:50 PM	

+="CN67944"	"Generator Service"	="Department of Defence"	03-Apr-08	="Power Generation and Distribution Machinery and Accessories"	09-Oct-07	09-Oct-07	10348.29	=""	="QUALITY LIGHT & HEAVY"	03-Apr-08 04:50 PM	

+="CN67945"	"Data loggers for Army Museums Network"	="Department of Defence"	03-Apr-08	="Electronic Components and Supplies"	30-Oct-07	30-Oct-07	10632.60	=""	="HASTINGS DATA LOGGER"	03-Apr-08 04:50 PM	

+="CN67946"	"Freight for OWBG(W)"	="Department of Defence"	03-Apr-08	="Transportation and Storage and Mail Services"	18-Nov-07	18-Nov-07	14087.36	=""	="D H L INTL"	03-Apr-08 04:50 PM	

+="CN67947"	"OT&E Course"	="Department of Defence"	03-Apr-08	="Education and Training Services"	23-Nov-07	23-Nov-07	15000.00	=""	="NOVA DEFENCE"	03-Apr-08 04:50 PM	

+="CN67948"	"Meals supplied for ships crew DSRA TENIX"	="Department of Defence"	03-Apr-08	="Restaurants and catering"	27-Nov-07	27-Dec-07	17184.00	=""	="HOBSONS CHOICE CAF"	03-Apr-08 04:50 PM	

+="CN67949"	"BBQs FOR RMC-D COMPANIES"	="Department of Defence"	03-Apr-08	="Domestic kitchenware"	14-Dec-07	14-Dec-07	11014.30	=""	="HEATLIE ENGINING"	03-Apr-08 04:50 PM	

+="CN67950"	"Attendance at Executive Women's Leadership Symposium"	="Department of Defence"	03-Apr-08	="Vocational training"	14-Dec-07	14-Dec-07	23000.00	=""	="WORKPLACE TRAINING A"	03-Apr-08 04:50 PM	

+="CN67951"	"REPLENISHMENT OF CLEANING GEAR STORE"	="Department of Defence"	03-Apr-08	="Cleaning Equipment and Supplies"	15-Jan-08	15-Jan-08	18641.49	=""	="JASOL AUSTRALIA"	03-Apr-08 04:51 PM	

+="CN67952"	"05/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	17-Jan-08	31-Mar-08	18348.23	=""	="SYMBION IMAGING"	03-Apr-08 04:51 PM	

+="CN67953"	"Air Drop Course 15-29 Jan 08 Accom"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	21-Jan-08	21-Jan-08	12652.96	=""	="LIBERTY INN"	03-Apr-08 04:51 PM	

+="CN67954"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	23-Jan-08	22-Feb-08	23406.94	=""	="ST JOHN OF GOD HOSPIT"	03-Apr-08 04:51 PM	

+="CN67955"	"Air Drop Course 15-29Jan08 accommodation"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	25-Jan-08	25-Jan-08	11967.68	=""	="LIBERTY INN"	03-Apr-08 04:51 PM	

+="CN67956"	"Air Drop Course 15-29Jan08 accommodation"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	30-Jan-08	30-Jan-08	11793.87	=""	="LIBERTY INN"	03-Apr-08 04:51 PM	

+="CN67957"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	01-Feb-08	02-Mar-08	20000.00	=""	="HOLLYWOOD PRIV HOSP"	03-Apr-08 04:51 PM	

+="CN67958"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	01-Feb-08	02-Mar-08	14890.70	=""	="HOLLYWOOD PRIV HOSP"	03-Apr-08 04:51 PM	

+="CN67959"	"06/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	01-Feb-08	31-Mar-08	17307.23	=""	="GREENSLOPES PRIV H"	03-Apr-08 04:51 PM	

+="CN67960"	"Freight"	="Department of Defence"	03-Apr-08	="Transportation and Storage and Mail Services"	01-Jan-08	01-Jan-08	12290.74	=""	="TNT AUSTRALIA PTY LTD"	03-Apr-08 04:52 PM	

+="CN67961"	"BARNES TG158 ACCOM FOR 18 PERS RTA"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	30-Jan-08	30-Jan-08	21009.30	=""	="RADISSON SAS HOTEL DUBAI"	03-Apr-08 04:52 PM	

+="CN67962"	"HOSTELS.  HMAS RANKIN- MCLEAY APRT- SYDNEY."	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	04-Feb-08	07-Mar-08	25650.00	=""	="THE MACLEAY HOTEL"	03-Apr-08 04:52 PM	

+="CN67963"	"HOSTELS.  HMAS COLLINS - HOLIDAY INN  - SYDNEY."	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	04-Feb-08	04-Feb-08	28732.00	=""	="HOLDYINNPOTTSPOINT"	03-Apr-08 04:52 PM	

+="CN67964"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	01-Feb-08	02-Mar-08	13652.35	=""	="ST JOHN OF GOD HOSPIT"	03-Apr-08 04:52 PM	

+="CN67965"	"07082173LB- Air Cond"	="Department of Defence"	03-Apr-08	="Heating and ventilation and air circulation"	04-Feb-08	19-Feb-08	10406.00	=""	="ACTIVE AIR CONDITIONIN"	03-Apr-08 04:52 PM	

+="CN67966"	"THIN CLIENT TERNINAL"	="Department of Defence"	03-Apr-08	="Electronic Components and Supplies"	15-Feb-08	15-Feb-08	24693.66	=""	="FIND IT HERE PTY LTD"	03-Apr-08 04:52 PM	

+="CN67967"	"RANLO Bahrain Logistic Running Costs"	="Department of Defence"	03-Apr-08	="Transport operations"	05-Feb-08	05-Feb-08	27545.90	=""	="INCHAPE SHIPPING SERVICES"	03-Apr-08 04:52 PM	

+="CN67968"	"Print Production MLW 2-9-2 x 1,000 Copies"	="Department of Defence"	03-Apr-08	="Published Products"	05-Feb-08	05-Feb-08	27142.50	=""	="PUBLICATION PERS"	03-Apr-08 04:52 PM	

+="CN67969"	"HOSTELS.  HMAS COLLINS - LEISURE INN  - HOBART."	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	07-Feb-08	11-Feb-08	17058.00	=""	="HOBART MACQUARIE"	03-Apr-08 04:53 PM	

+="CN67970"	"Single leap project"	="Department of Defence"	03-Apr-08	="Domestic appliances"	12-Feb-08	12-Feb-08	13915.00	=""	="EDU QUIP GOV QUIP"	03-Apr-08 04:53 PM	

+="CN67971"	"ACMS-1376681"	="Department of Defence"	03-Apr-08	="Travel facilitation"	14-Feb-08	20-Feb-08	12029.70	=""	="TAS REDLINE COACHES"	03-Apr-08 04:53 PM	

+="CN67972"	"Furniture"	="Department of Defence"	03-Apr-08	="Furniture and Furnishings"	13-Feb-08	13-Feb-08	24975.50	=""	="BED POST"	03-Apr-08 04:53 PM	

+="CN67973"	"Fee for service payment"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	15-Feb-08	30-Jun-08	10880.00	=""	="DR JUSTIN PIK"	03-Apr-08 04:53 PM	

+="CN67974"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	13-Feb-08	12-Mar-08	12621.35	=""	="ST JOHN OF GOD HOSPIT"	03-Apr-08 04:53 PM	

+="CN67975"	"CTF158 Staff Accommodation / Laundry / Internet / A/P Transfers / Rm Svc"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	14-Feb-08	14-Feb-08	21322.52	=""	="THE DIPLOMAT RADISSON"	03-Apr-08 04:53 PM	

+="CN67976"	"ADE0398 Junior sailor accomodation POA"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	15-Feb-08	15-Feb-08	12240.00	=""	="MARINERS COURT"	03-Apr-08 04:53 PM	

+="CN67977"	"06/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	19-Feb-08	31-Mar-08	12057.60	=""	="GREENSLOPES PRIV H"	03-Apr-08 04:54 PM	

+="CN67978"	"05/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	20-Feb-08	31-Mar-08	18619.80	=""	="BRISBANE PRIVATE HOSP"	03-Apr-08 04:54 PM	

+="CN67979"	"Temporary fencing Hire"	="Department of Defence"	03-Apr-08	="Building construction and support and maintenance and repair services"	19-Feb-08	20-Feb-08	14388.00	=""	="TFH TEMP FENCE HIRE"	03-Apr-08 04:54 PM	

+="CN67980"	"accommodation"	="Department of Defence"	03-Apr-08	="Accommodation furniture"	19-Feb-08	19-Feb-08	18760.62	=""	="GRAND MERCURE ROXY HTL"	03-Apr-08 04:54 PM	

+="CN67981"	"04/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	20-Feb-08	31-Mar-08	14989.56	=""	="ST ANDREWS WAR MEM HO"	03-Apr-08 04:54 PM	

+="CN67982"	"Accommodation - Settling in/Settling out 2007/08"	="Department of Defence"	03-Apr-08	="Accommodation furniture"	19-Feb-08	19-Feb-08	16438.71	=""	="GHOTEL-B/O"	03-Apr-08 04:54 PM	

+="CN67983"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	23-Feb-08	25-Feb-08	16109.60	=""	="SKY CITY AK LTD"	03-Apr-08 04:54 PM	

+="CN67984"	"Payment of HMA Blaze press advertising Invoices CM08010153, CM08020003, CC08020407, CC08020345"	="Department of Defence"	03-Apr-08	="Advertising"	25-Feb-08	25-Feb-08	29332.03	=""	="HMA BLAZE"	03-Apr-08 04:54 PM	

+="CN67985"	"BUSINESS PROCESS WORKSHOP FEB 08"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	12-Feb-08	14-Feb-08	23617.50	="3 VERBAL QUOTES"	="RYDGES CAPITAL HILL"	03-Apr-08 04:54 PM	

+="CN67986"	"Payment for HMA Blaze Press advertising for Invoices, CM08010124, CM08020004, CC08020563, Cm080010125"	="Department of Defence"	03-Apr-08	="Advertising"	25-Feb-08	25-Feb-08	13520.05	=""	="HMA BLAZE"	03-Apr-08 04:55 PM	

+="CN67987"	"Administration Fees DEWR for EACMDP 2007"	="Department of Defence"	03-Apr-08	="Human resources services"	22-Feb-08	22-Feb-08	11000.00	=""	="D E W R"	03-Apr-08 04:55 PM	

+="CN67988"	"ACCOMMODATION FOR SQNLDR PETER SAMMONS - 8158000CHECK IN 10/12/2007 CHECK OUT 20/01/2008"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	10-Dec-07	20-Jan-08	10567.50	=""	="BEACHSIDE ROCKINGHAM"	03-Apr-08 04:55 PM	

+="CN67989"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	24-Feb-08	24-Feb-08	31103.21	=""	="COPTHORNE HRBR CITY"	03-Apr-08 04:55 PM	

+="CN67990"	"MEDICAL / DENTAL SERVICES"	="Department of Defence"	03-Apr-08	="Medical practice"	26-Feb-08	03-Mar-08	11406.70	=""	="CENTRAL PSYCH SERVICES"	03-Apr-08 04:55 PM	

+="CN67991"	"AIPM Reg PM assessment for 16 ATSOC Students"	="Department of Defence"	03-Apr-08	="Education and Training Services"	27-Feb-08	07-Mar-08	11000.00	=""	="CIDARA P/L"	03-Apr-08 04:55 PM	

+="CN67992"	"accommodation"	="Department of Defence"	03-Apr-08	="Accommodation furniture"	27-Feb-08	27-Feb-08	28253.00	=""	="GRAND MERCURE ROXY HTL"	03-Apr-08 04:55 PM	

+="CN67993"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	27-Feb-08	28-Mar-08	11770.00	=""	="DR MARIO ALBERGHINI"	03-Apr-08 04:55 PM	

+="CN67994"	"05/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	29-Feb-08	31-Mar-08	27333.16	=""	="BRISBANE NTH PODIATRY P/L"	03-Apr-08 04:55 PM	

+="CN67995"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	29-Feb-08	30-Mar-08	14557.75	=""	="ST JOHN OF GOD HOSPIT"	03-Apr-08 04:56 PM	

+="CN67996"	"06/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	03-Mar-08	31-Mar-08	12712.70	=""	="DR BENJAMIN ERZETIC"	03-Apr-08 04:56 PM	

+="CN67997"	"Inusrance and Registration for ADFA Soccer Club - Womens, Non PL & National for ADFA FC and ADFA Womens FC"	="Department of Defence"	03-Apr-08	="Other sports"	12-Feb-07	12-Feb-08	11052.00	=""	="CAPITAL FOOTBALL"	03-Apr-08 04:56 PM	

+="CN67998"	"Dell 24inch Monitors"	="Department of Defence"	03-Apr-08	="Computer Equipment and Accessories"	04-Mar-08	04-Mar-08	10414.80	=""	="DELL COMPUTER P/L SYDN"	03-Apr-08 04:56 PM	

+="CN67999"	"07/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	03-Mar-08	31-Mar-08	13763.50	=""	="NORTH WEST PRVT HSPTL"	03-Apr-08 04:56 PM	

+="CN68000"	"07/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	05-Mar-08	31-Mar-08	28985.64	=""	="GREENSLOPES PRIV H"	03-Apr-08 04:56 PM	

+="CN68001"	"Books - VTW"	="Department of Defence"	03-Apr-08	="Paper products"	04-Mar-08	04-Mar-08	11253.91	=""	="DYMOCKS"	03-Apr-08 04:56 PM	

+="CN68002"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	04-Mar-08	18-Mar-08	11040.00	=""	="COMFORT INN SUITES"	03-Apr-08 04:56 PM	

+="CN68004"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	04-Mar-08	04-Mar-08	15390.00	=""	="THE MACLEAY HOTEL"	03-Apr-08 04:56 PM	

+="CN68005"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	04-Mar-08	04-Mar-08	12505.50	=""	="HOLDYINNPOTTSPOINT"	03-Apr-08 04:57 PM	

+="CN68006"	"MSA Bandicoot refit Port Macquaire accommodation"	="Department of Defence"	03-Apr-08	="Travel and Food and Lodging and Entertainment Services"	04-Mar-08	11-Mar-08	13020.00	=""	="RYDGESPORTMACQ"	03-Apr-08 04:57 PM	

+="CN68007"	"End of month bill ending 31-Jan-08OFFICE MAX"	="Department of Defence"	03-Apr-08	="Office supplies"	06-Mar-08	06-Mar-08	12322.51	=""	="NATIONAL OFFICE PRODUC"	03-Apr-08 04:57 PM	

+="CN68010"	"Health Costs"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	07-Mar-08	06-Apr-08	13529.70	=""	="HOLLYWOOD PRIV HOSP"	03-Apr-08 04:57 PM	

+="CN68011"	"13/03/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	03-Apr-08	="Patient care and treatment products and supplies"	07-Mar-08	31-Mar-08	22468.58	=""	="SYMBION IMAGING"	03-Apr-08 04:57 PM	

+="CN68012"	"Deposit for accn reservation services/room bookings"	="Department of Defence"	03-Apr-08	="Accommodation furniture"	07-Mar-08	07-Mar-08	20200.00	=""	="HARVEST AUSTRALIA P/L"	03-Apr-08 04:58 PM	

+="CN68013"	"Printing and Publications. This is for services supplied under original contract of Nov 06 C1110219"	="Department of Defence"	03-Apr-08	="Printing and publishing equipment"	11-Mar-08	31-Mar-08	11518.50	=""	="CONFERENCE BY THPL"	03-Apr-08 04:58 PM	

+="CN68014"	"Accommodation for crew"	="Department of Defence"	03-Apr-08	="Hotels and lodging and meeting facilities"	18-Mar-08	26-Mar-08	18920.00	=""	="DOWNTOWNER LYGON"	03-Apr-08 04:58 PM	

+="CN68008"	"Battery, Non Rechargeable"	="Defence Materiel Organisation"	03-Apr-08	="Battery adapter or accessories"	02-Apr-08	30-Jan-09	82974.05	=""	="BAE Systems"	03-Apr-08 04:58 PM	

+="CN68015"	" Printing, Packaging and Postage of CSIRO Education Materials  CSIRO2007-020 "	="CSIRO"	03-Apr-08	="Printed publications"	01-Feb-08	31-Jan-10	354804.00	="CSIRORFT2007-020"	="Finsbury Green Pty Ltd"	03-Apr-08 05:00 PM	

+="CN68003"	" Parts Kit, Fuel Pump Lift Assembly 16kVA "	="Defence Materiel Organisation"	03-Apr-08	="Fuel pumps"	03-Apr-08	08-Oct-08	187433.84	="G8941"	="Hatz Australia Pty Ltd"	03-Apr-08 05:02 PM	

+="CN68016"	"Plastic Bags"	="Defence Materiel Organisation"	03-Apr-08	="Plastic bags"	02-Apr-08	11-Feb-09	41606.40	=""	="Flexoplast Aust Pty Ltd"	03-Apr-08 05:06 PM	

+="CN68017"	"Inflation Devices and Packing Preformed"	="Defence Materiel Organisation"	03-Apr-08	="Endoscopic dilators or inflation devices or related products"	05-Dec-07	26-Mar-08	43773.84	=""	="Light Aircraft"	03-Apr-08 05:23 PM	

+="CN68018-A1"	"Search & Rescue Buo"	="Defence Materiel Organisation"	03-Apr-08	="Buoyancy compensators"	02-Apr-08	02-May-08	15840.00	=""	="Kinetic Technology International"	03-Apr-08 05:30 PM	

+="CN68019"	"Demineralizer Rever"	="Defence Materiel Organisation"	03-Apr-08	="Deionisation or demineralisation equipment"	16-Dec-07	15-Jan-08	53500.15	=""	="McIntyre Marine Products Pty Ltd"	03-Apr-08 05:45 PM	

+="CN68021"	"s70b-2 spares requirement"	="Defence Materiel Organisation"	04-Apr-08	="Aircraft"	04-Apr-08	14-May-08	18700.00	=""	="ASIA PACIFIC AEROSPACE"	04-Apr-08 07:35 AM	

+="CN67926"	"    Imation Ultrium (LTO) Gen 3 Tape Cartridge (400GB/800GB) with Case (Part No 66-0000-6458-5)    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Mar-08	11-Apr-08	24805.00	=""	="Sykes Data Storage Pty Ltd"	04-Apr-08 08:18 AM	

+="CN68022"	"ASLAV PARTS:- NUT, STUD,HOSE ASSY & BRACKET MOUNTING"	="Department of Defence"	04-Apr-08	="Armoured fighting vehicles"	03-Apr-08	27-Jun-08	27919.87	=""	="GENERAL DYNAMICS LAND SYSTEMS"	04-Apr-08 08:25 AM	

+="CN68024"	"internal audit consultancy"	="Royal Australian Mint"	04-Apr-08	="Information technology consultation services"	13-Mar-08	13-Mar-08	68944.99	=""	="ERNST & YOUNG"	04-Apr-08 09:16 AM	

+="CN68026"	"wooden pallets"	="Royal Australian Mint"	04-Apr-08	="Pallets"	14-Mar-08	14-Mar-08	12820.50	=""	="KELLEY'S WOOD PRODUCTS"	04-Apr-08 09:28 AM	

+="CN68027-A2"	"08/2621 - Manager - 1599-1944 - C&B Services Panel (06/1599) (2008/008250-05/181)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	11-Mar-08	10-Oct-08	177000.00	="06/1599"	="Oakton AA Services Pty Ltd"	04-Apr-08 09:29 AM	

+="CN68028"	"replacement of disposal item for s70b-2"	="Defence Materiel Organisation"	04-Apr-08	="Aircraft"	04-Apr-08	09-May-09	24758.25	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	04-Apr-08 09:33 AM	

+="CN68029-A1"	"07/2401 - Assessment of Management Processes - 1599-1948 - C&B Services Panel 06/1599 (CPE004454-1)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	01-Jan-08	01-May-08	70000.00	="06/1599"	="Pricewaterhouse Coopers"	04-Apr-08 09:34 AM	

+="CN68030"	"consultancy for business IT system"	="Royal Australian Mint"	04-Apr-08	="Information technology consultation services"	14-Mar-08	14-Mar-08	110000.00	=""	="LANGE CONSULTING AND SOFTWARE"	04-Apr-08 09:38 AM	

+="CN68031-A1"	"08/2546 - Short Term Personnel Hire - 0717-0854 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	04-Apr-08	="Temporary personnel services"	03-Mar-08	28-Feb-09	290400.00	="05/0717"	="Oakton AA Services Pty Ltd"	04-Apr-08 09:38 AM	

+="CN68032"	"Provision of executive level management and advisory services"	="Centrelink"	04-Apr-08	="Management advisory services"	02-Apr-08	30-Jun-08	55000.00	=""	="Value Creation Group Pty Ltd"	04-Apr-08 09:39 AM	

+="CN68033-A1"	"07/2266 - Technology Evaluation - 1599-1948 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-08	634350.00	="06/1599"	="Pricewaterhouse Coopers"	04-Apr-08 09:42 AM	

+="CN68035-A3"	"07/2423 - Academic Services - 1599-1947 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	28-Apr-08	31-Aug-09	330214.00	="06/1599"	="Centre for Customs and Excise Studies - University of Canberra"	04-Apr-08 09:48 AM	

+="CN68036"	"tools"	="Royal Australian Mint"	04-Apr-08	="Machine tools"	18-Mar-08	18-Mar-08	11330.00	=""	="METAL CUTTING TECHNOLOGY PTY LTD"	04-Apr-08 09:52 AM	

+="CN68037"	"Temporary labour hire"	="Therapeutic Goods Administration"	04-Apr-08	="Recruitment services"	25-Feb-08	31-May-08	69069.00	=""	="MetaCorp Pty Ltd"	04-Apr-08 09:55 AM	

+="CN68039"	"         AutoCAD 2004 Legacy Upgrade to AutoCAD 2008 Standalone Licence + 12 mnth Subscription         "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	13-Apr-08	10395.00	=""	="Nowley Pty Ltd  T/A Karelcad"	04-Apr-08 09:59 AM	

+="CN68038-A1"	"07/2354 - Training Services - 1523-1816 - Leading People at the Frontline Panel - 06/1523 (CPO016903)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	10-Mar-08	13-Jun-08	17000.00	="06/1523"	="McMillan Staff Development"	04-Apr-08 09:59 AM	

+="CN68040"	"packaging"	="Royal Australian Mint"	04-Apr-08	="Packaging materials"	19-Mar-08	19-Mar-08	56367.30	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	04-Apr-08 10:02 AM	

+="CN68041"	"    NRL NAT Funds for additional Quality Control Samples    "	="Therapeutic Goods Administration"	04-Apr-08	="Medical Equipment and Accessories and Supplies"	01-Jul-07	30-Jun-08	135756.01	=""	="St Vincent's Institute of Medical Research"	04-Apr-08 10:02 AM	

+="CN68042-A1"	"07/2412 - Training Services - 1523-1817 - Leading Peoplea at the Frontline Panel - 06/1523 (CPO017846)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	23-Jun-08	22-Sep-08	16940.00	="06/1523"	="Major Training Services Pty Ltd"	04-Apr-08 10:06 AM	

+="CN68043"	"    Vitek 2 Compact 60, including validation pkg W2420    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Mar-08	31-Mar-08	55038.50	=""	="Biomerieux Australia Pty Ltd"	04-Apr-08 10:07 AM	

+="CN68044"	"packaging"	="Royal Australian Mint"	04-Apr-08	="Packaging materials"	19-Mar-08	19-Mar-08	17398.70	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	04-Apr-08 10:09 AM	

+="CN68045-A1"	"07/2459 - Training Services - 1523-1814 - Leading People at the Frontline Panel 06/1523 (CPO018717)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	03-Mar-08	02-Jun-08	12155.00	="06/1523"	="Guinane Change Consulting"	04-Apr-08 10:12 AM	

+="CN68046"	"    HP DL380G5 Servers    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	14-Mar-08	59614.48	=""	="ComputerCorp Pty Ltd"	04-Apr-08 10:16 AM	

+="CN68048"	"packaging"	="Royal Australian Mint"	04-Apr-08	="Packaging materials"	19-Mar-08	19-Mar-08	12622.50	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	04-Apr-08 10:16 AM	

+="CN68047-A1"	"07/2510 - Training Services - 1523-1819 - Leading People at the Frontline Panel - 06/1523 (CPO018714)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	05-May-08	05-Aug-08	21131.00	="06/1523"	="Vivien Twyford Consulting"	04-Apr-08 10:18 AM	

+="CN68050-A1"	"07/2511 - Training Services - 1523-1815 - Leading People at the Frontline Panel - 06/1523 (CPO018711)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	31-Mar-08	05-Jun-08	15275.00	="06/1523"	="Humanagement"	04-Apr-08 10:22 AM	

+="CN68052"	"    Empower 2 Enterprise Software as described in Quote HC_08_042_TGA    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Mar-08	11-Mar-10	170999.40	="EOI 10/7/08"	="Waters Australia Pty Ltd"	04-Apr-08 10:22 AM	

+="CN68051"	"computer hardware"	="Royal Australian Mint"	04-Apr-08	="Computer Equipment and Accessories"	19-Mar-08	19-Mar-08	15525.18	=""	="DELL AUSTRALIA PTY LIMITED"	04-Apr-08 10:23 AM	

+="CN68054-A1"	"08/2551 - Training Services - 1523-1817 - Leading People at the Frontline Panel - 06/1523 (CPO020228)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	15-Sep-08	12-Dec-08	20570.00	="06/1523"	="Major Training Services Pty Ltd"	04-Apr-08 10:27 AM	

+="CN68056-A1"	"08/2552 - Training Services - 1523-1814 - Leading People at the Frontline Panel - 06/1523 (CPO019258)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	11-Aug-08	21-Nov-08	10010.00	="06/1523"	="Guinane Change Consulting"	04-Apr-08 10:30 AM	

+="CN68057-A1"	"08/2553 - Training Services - 1523-1812 - Leading People at the Frontline Panel - 06/1523 (CPO020227)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Specialised educational services"	18-Aug-08	19-Nov-08	17325.00	=""	="Australia-wide Business Training Pty Ltd"	04-Apr-08 10:35 AM	

+="CN68059"	"IT contracting services"	="Royal Australian Mint"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	19-Mar-08	19-Mar-08	28710.00	=""	="PAYME PTY LTD"	04-Apr-08 10:44 AM	

+="CN68060"	"Accommodation for 15 delegates attending Community Legal Education training"	="Australian Human Rights Commission"	04-Apr-08	="Hotel rooms"	26-Mar-08	03-Apr-08	17400.00	=""	="Leisure Inns Park Regis"	04-Apr-08 10:54 AM	

+="CN68061"	"IT contracting services"	="Royal Australian Mint"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	19-Mar-08	19-Mar-08	35090.00	=""	="PAYME PTY LTD"	04-Apr-08 10:55 AM	

+="CN68063"	"    Installation of Electronic Key Cabinets    "	="Therapeutic Goods Administration"	04-Apr-08	="Electronic Components and Supplies"	01-Apr-08	30-May-08	37200.90	=""	="CIC Secure"	04-Apr-08 10:58 AM	

+="CN68062"	"Staging Connections and miscellaneous charges for HREOC 21 Conference"	="Australian Human Rights Commission"	04-Apr-08	="Business and corporate management consultation services"	14-Feb-08	15-Apr-08	14477.07	=""	="Jones Bay Wharf Group Pty Ltd"	04-Apr-08 11:03 AM	

+="CN68064"	"    HP Server Warranty per Quotation Q040256E-03 1 Mar 08 to 28 Feb 09    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Mar-08	28-Feb-09	44910.80	=""	="Hewlett Packard Australia Pty Ltd"	04-Apr-08 11:03 AM	

+="CN68065"	"furniture"	="Royal Australian Mint"	04-Apr-08	="Furniture"	25-Mar-08	25-Mar-08	21766.80	=""	="CITE OFFICE DESIGN PTY LIMITED"	04-Apr-08 11:03 AM	

+="CN68066"	"marketing consultancy"	="Royal Australian Mint"	04-Apr-08	="Permanent marketing staff needs"	25-Mar-08	25-Mar-08	10000.10	=""	="TREASURES OF OZ"	04-Apr-08 11:12 AM	

+="CN68068"	"Legal Costs"	="Department of Finance and Deregulation"	04-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - NSW"	04-Apr-08 11:17 AM	

+="CN68069"	"Security Costs"	="Department of Finance and Deregulation"	04-Apr-08	="National Defence and Public Order and Security and Safety Services"	04-Apr-08	30-Jun-08	105114.11	="FIN/06/CORP003"	="CHUBB PROTECTIVE SERVICES"	04-Apr-08 11:17 AM	

+="CN68070-A1"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	04-Apr-08	="Advertising"	31-Mar-08	30-Jun-08	3879000.00	="CN1192"	="MCCANN WORLDGROUP PTY LTD"	04-Apr-08 11:18 AM	

+="CN68067-A1"	"08/2585 - IT Review - 1599-1944 - C&B Services Panel - 06/1599 (CPE004630-1)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	14-Jan-08	30-Jun-08	75000.00	="06/1599"	="Oakton AA Services Pty Ltd"	04-Apr-08 11:18 AM	

+="CN68071"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	04-Apr-08	="Building and Construction and Maintenance Services"	01-Apr-08	30-Apr-08	17748.50	="N/A"	="GRIFFITHS BUILDING & MAINTENANCE"	04-Apr-08 11:18 AM	

+="CN68072"	"Security Costs"	="Department of Finance and Deregulation"	04-Apr-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-May-08	15675.00	="N/A"	="HONEYWELL LTD"	04-Apr-08 11:18 AM	

+="CN68073"	"marketing consultancy"	="Royal Australian Mint"	04-Apr-08	="Permanent marketing staff needs"	25-Mar-08	25-Mar-08	10000.10	=""	="TREASURES OF OZ"	04-Apr-08 11:24 AM	

+="CN68053-A1"	"    Ongoing Maintenance and Support of the TGA's Great Plains FMIS and Related Software    "	="Therapeutic Goods Administration"	04-Apr-08	="Software maintenance and support"	14-Mar-08	30-Jun-12	326453.00	="08/0607"	="Dynamic Edge Pty Ltd"	04-Apr-08 11:38 AM	

+="CN68074"	"schuler machine parts"	="Royal Australian Mint"	04-Apr-08	="Switches and controls and relays and accessories"	26-Mar-08	04-Jun-08	10414.31	=""	="SCHULER PRESSEN GMBH"	04-Apr-08 11:40 AM	

+="CN68075-A1"	"07/2519 - Probity Advisor - 1599-1948 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	03-Mar-08	02-Mar-09	200000.00	="06/1599"	="Pricewaterhouse Coopers"	04-Apr-08 11:41 AM	

+="CN68076"	"    Legal Services Consultation    "	="Therapeutic Goods Administration"	04-Apr-08	="Legal services"	01-Jan-08	28-Mar-08	121000.00	=""	="Australian Government Solicitor (Central Office)"	04-Apr-08 11:42 AM	

+="CN68077"	"    Review of TGA's Revenue    "	="Therapeutic Goods Administration"	04-Apr-08	="Financial and Insurance Services"	01-Mar-08	31-Mar-08	20900.00	=""	="Walter Turnbull"	04-Apr-08 11:48 AM	

+="CN68078"	" BUILDING FITOUT  FUNDS INCREASE TO EXISTING CN35547 INITIAL VALUE OF $154,000.00  TOTAL VALUE OF CN35547 NOW IS $166,237.50 "	="Department of Human Services"	04-Apr-08	="Structural materials and basic shapes"	02-Apr-08	16-Apr-08	12237.50	=""	="INTEGRATED SPACE"	04-Apr-08 11:50 AM	

+="CN68079"	"stategic mgnt plan development"	="Royal Australian Mint"	04-Apr-08	="Strategic planning consultation services"	26-Mar-08	26-Mar-08	21450.00	=""	="STRATEGIC FACILITIES SERVICES"	04-Apr-08 11:52 AM	

+="CN68080-A1"	"08/2615 - IT Specialist - 0717-0890 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	04-Apr-08	="Temporary personnel services"	23-Feb-08	30-Jun-08	72000.00	="05/0717"	="Paxus Australia Pty Ltd"	04-Apr-08 11:54 AM	

+="CN68083-A2"	"07/2313 - Training Services - 1523-1812 - Leading People at the Frontline Panel - 06/1523 (CPO018205)"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	13-Nov-07	14-Jan-08	32175.00	="06/1523"	="McMillan Staff Development"	04-Apr-08 11:58 AM	

+="CN68084"	"air compressor GA90VSDFF"	="Royal Australian Mint"	04-Apr-08	="Air compressors"	27-Mar-08	27-Mar-08	85701.00	=""	="AIR PLANT SALES PTY LTD"	04-Apr-08 11:58 AM	

+="CN68085"	"    650 x IBM Lotus CEO Communications User Licence & Software Maintenance (31/03/08 - 31/03/09) D611RLL    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	31-Mar-08	31-Mar-11	284692.65	=""	="IBM Australia Ltd"	04-Apr-08 12:00 PM	

+="CN68087-A1"	"07/2520 - Business Analyst - 0717-0898 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	04-Apr-08	="Temporary personnel services"	12-Mar-08	11-Mar-09	233000.00	="05/0717"	="Tarakan Consulting Pty Ltd"	04-Apr-08 12:02 PM	

+="CN68088"	"SHIPPING AND STORAGE CONTAINER GENERAL PURPOSE FREIGHT, ICA, 6.058 M LG BY 2.438 M W BY 2.591 M H20 TONNE CAPACITY. TERMS AND CONDITIONS AS PER STANDING OFFER 2560176. QTY 20 "	="Defence Materiel Organisation"	04-Apr-08	="Containers and storage"	26-Mar-08	30-May-08	83326.32	=""	="SCF CONTAINERS PTY LTD"	04-Apr-08 12:04 PM	

+="CN68089-A1"	"display peppers ghost"	="Royal Australian Mint"	04-Apr-08	="Display systems or its accessories"	28-Mar-08	28-Mar-08	53498.50	=""	="TRUSTEES FOR KD TRUST"	04-Apr-08 12:07 PM	

+="CN68090-A3"	"08/2577 - Consultancy Services - 1599-1990 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	04-Apr-08	="Business and corporate management consultation services"	18-Mar-08	26-Jun-08	158664.50	="06/1599"	="Capgemini Australia"	04-Apr-08 12:16 PM	

+="CN68092-A2"	" Online testing system "	="Australian Federal Police"	04-Apr-08	="Computer services"	25-Mar-08	24-Mar-12	1800000.00	="RFT 19/2007"	="Onetest Pty Ltd"	04-Apr-08 12:43 PM	

+="CN68093"	"Provision and installation of IT infrastructure LCD monitors"	="Comsuper"	04-Apr-08	="Hardware"	01-Apr-08	19-Apr-08	15333.82	=""	="Hurlome Pty Ltd trading as Canberra professional Equipment"	04-Apr-08 01:14 PM	

+="CN68095"	"    WSWS00600 - Websense Enterprise 600 Seats (36 Months Business)    "	="Therapeutic Goods Administration"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	01-Apr-11	25810.40	=""	="ASI Solutions"	04-Apr-08 01:27 PM	

+="CN68096"	"Residential Proprty Lease Darwin"	="Australian Federal Police"	04-Apr-08	="Lease and rental of property or building"	20-Mar-08	19-Mar-09	28437.36	=""	="HomeHunters Darwin"	04-Apr-08 01:29 PM	

+="CN68097"	"    Supply of Energy for TGA Symonston - Variation    "	="Therapeutic Goods Administration"	04-Apr-08	="Public Utilities and Public Sector Related Services"	01-Jul-07	30-Jun-08	350000.00	=""	="ACTEWAGL"	04-Apr-08 01:31 PM	

+="CN68098-A1"	"ITU Contribution for 2008 - targeted projects"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	651526.85	="ATM08/956"	="INTERNATIONAL TELECOMMUNICATIONS"	04-Apr-08 01:53 PM	

+="CN68099"	"Contribution towards Australasian Consumer Fraud Taskforce's Media Strategy"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	14688.00	="ATM08/954"	="AUSTRALIAN COMPETITION AND CONSUMER"	04-Apr-08 01:53 PM	

+="CN68100"	"Web publisher contractors"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	16-May-08	26000.00	="DCON/04/162"	="THE GREEN AND GREEN GROUP PTY LTD"	04-Apr-08 01:53 PM	

+="CN68101-A1"	"Focus Group research for Clever Networks"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Public Utilities and Public Sector Related Services"	11-Mar-08	11-Jun-08	79500.00	="DCON/07/203"	="WOOLCOTT RESEARCH PTY LTD"	04-Apr-08 01:53 PM	

+="CN68102"	"Support and maintenance for Symantec products"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	29-Feb-08	18-Mar-08	30645.32	="ATM08/948"	="ZALLCOM PTY LTD"	04-Apr-08 01:53 PM	

+="CN68103"	"Web publisher contractors"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	16-May-08	26000.00	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	04-Apr-08 01:53 PM	

+="CN68104-A1"	"Consultancy re Takeup of VOIP services in Aust & overseas"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Public Utilities and Public Sector Related Services"	18-Mar-08	17-Jun-08	70599.99	="DCON/07/1"	="GIBSON QUAI - AAS PTY LTD"	04-Apr-08 01:53 PM	

+="CN68105-A1"	"National Broadband Network Project"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Public Utilities and Public Sector Related Services"	17-Mar-08	30-Jun-09	285926.36	="DCON/06/45"	="CORRS CHAMBERS WESTGARTH"	04-Apr-08 01:54 PM	

+="CN68106"	"Citrix Upgrade"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	31-Mar-08	75554.60	="ATM07/633"	="DATAFLEX PTY LTD"	04-Apr-08 01:54 PM	

+="CN68107"	"Directory Charges - White Page Listing"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Public Utilities and Public Sector Related Services"	01-Dec-07	14-Mar-08	10645.50	="ATM07/220"	="TELSTRA"	04-Apr-08 01:54 PM	

+="CN68109"	"Career Development assessment Centre 92 Held 3rd to 5th March 2008"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Public Utilities and Public Sector Related Services"	05-Mar-08	14-Mar-08	11825.00	="ATM07/671"	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	04-Apr-08 01:54 PM	

+="CN68110"	"Defence in Depth and User Access Management"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	15-Jun-08	114136.00	="DCON/08/2"	="SIFT Pty Ltd"	04-Apr-08 01:54 PM	

+="CN68111"	"Software and Data Subscription"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	12-Mar-08	11330.00	="ATM08/941"	="Pitney Bowes Postage by Phone"	04-Apr-08 01:54 PM	

+="CN68112-A1"	"Development of ITSEAG wireless Advisory Papers"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Apr-08	24430.00	="DCON/07/229"	="SIFT Pty Ltd"	04-Apr-08 01:54 PM	

+="CN68113"	"Advertising costs for EL1 Positions in Broadcastin GCUADV2002/03"	="Department of Broadband Communications and the Digital Economy"	04-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	14280.54	="ATM08/938"	="HMA BLAZE PTY LTD"	04-Apr-08 01:55 PM	

+="CN68114"	"Consultancy for the provision of PLET task and organisational structure review"	="Civil Aviation Safety Authority"	04-Apr-08	="Business and corporate management consultation services"	12-Mar-08	27-Jun-08	246609.00	="07/018-00"	="Bevington Group Pty Ltd"	04-Apr-08 02:07 PM	

+="CN68115"	"Sturdy Framac - Office Chairs"	="Department of the Senate"	04-Apr-08	="Office and desk accessories"	03-Mar-08	03-Mar-08	40700.00	=""	="Sturdy Framac"	04-Apr-08 02:07 PM	

+="CN68116"	"Pickles Valuation Svces-annual asset stocktakeandrevaluation"	="Department of the Senate"	04-Apr-08	="Business administration services"	04-Apr-08	04-Apr-09	30250.00	=""	="Pickles Valuation Services"	04-Apr-08 02:07 PM	

+="CN68117"	"Toshiba Australia Pty Ltd"	="Department of the Senate"	04-Apr-08	="Computer Equipment and Accessories"	05-Feb-08	05-Feb-09	10344.40	=""	="Toshiba Australia P/L"	04-Apr-08 02:07 PM	

+="CN68118"	"Hewlett Packard - printers"	="Department of the Senate"	04-Apr-08	="Computer Equipment and Accessories"	20-Mar-08	20-Mar-09	21677.05	=""	="Hewlett Packard Australia P/L"	04-Apr-08 02:07 PM	

+="CN68119"	"Legal Services FY2007/2008"	="Civil Aviation Safety Authority"	04-Apr-08	="Legal services"	11-Mar-08	30-Jun-08	38000.00	="07/022-01"	="Mallesons Stephen Jaques Solicitors - ACT"	04-Apr-08 02:12 PM	

+="CN68120"	"Legal Services FY2007/2008"	="Civil Aviation Safety Authority"	04-Apr-08	="Legal services"	05-Mar-08	30-Jun-08	38000.00	="07/025-01"	="Phillips Fox - ACT"	04-Apr-08 02:15 PM	

+="CN68122"	"Adobe Forms Consultancy and Training"	="Civil Aviation Safety Authority"	04-Apr-08	="Software"	30-Aug-08	28-Aug-09	82500.00	="07/044-02"	="Avoka Technologies"	04-Apr-08 02:19 PM	

+="CN68123"	"Regs Implementation Project Manager"	="Civil Aviation Safety Authority"	04-Apr-08	="Temporary personnel services"	10-Mar-08	10-Sep-08	180000.00	="07/142-00"	="Price Waterhouse Coopers Australia"	04-Apr-08 02:25 PM	

+="CN68125"	"CASA Disaster Recovery Facility"	="Civil Aviation Safety Authority"	04-Apr-08	="Disaster recovery services"	31-Jan-08	01-Feb-08	68269.00	="07/150-00"	="TransACT ta Grapevine Ventrues"	04-Apr-08 02:29 PM	

+="CN68126"	"SHIPPING AND STORAGE CONTAINER GENERAL PURPOSE FREIGHT, ICA, 6.058 M LG BY 2.438 M W BY 2.591 M H20 TONNE CAPACITY. TERMS AND CONDITIONS AS PER STANDING OFFER 2560176. QTY 8 "	="Defence Materiel Organisation"	04-Apr-08	="Containers and storage"	02-Apr-08	30-May-08	30250.00	=""	="SCF CONTAINERS PTY LTD"	04-Apr-08 02:31 PM	

+="CN68127"	" File Sentencing Contractor "	="Civil Aviation Safety Authority"	04-Apr-08	="Recruitment services"	01-May-08	30-Jun-08	12417.00	="07/199-01"	="GMT People Pty Ltd Canberra"	04-Apr-08 02:36 PM	

+="CN68128-A1"	"Provision of Cleaning Services to Taree Premises CRS Australia"	="CRS Australia"	04-Apr-08	="General building and office cleaning and maintenance services"	29-Feb-08	28-Nov-11	32234.92	=""	="Manning Valley Cleaning Service"	04-Apr-08 02:39 PM	

+="CN68129-A1"	"SHIPPING AND STORAGE CONTAINER GENERAL PURPOSE FREIGHT, ICA, 6.058 M LG BY 2.438 M W BY 2.591 M H20 TONNE CAPACITY. TERMS AND CONDITIONS AS PER STANDING OFFER 2560176. QTY 60 "	="Defence Materiel Organisation"	04-Apr-08	="Containers and storage"	26-Mar-08	30-May-08	220278.96	=""	="SCF CONTAINERS PTY LTD"	04-Apr-08 02:42 PM	

+="CN68135"	"File Sentencing Contractor"	="Civil Aviation Safety Authority"	04-Apr-08	="Recruitment services"	01-May-08	30-Jun-08	14722.00	="07/200-01"	="GMT People Pyt Ltd Canberra"	04-Apr-08 03:04 PM	

+="CN68134"	" Diesel Engine for 16kVA Generator Set. "	="Defence Materiel Organisation"	04-Apr-08	="Motor or generator components"	04-Apr-08	18-Apr-08	109032.00	="RFQ G9047"	="Watts2C"	04-Apr-08 03:05 PM	

+="CN68136"	"Fringe Benefits Tax preparation services FY2007/08"	="Civil Aviation Safety Authority"	04-Apr-08	="Taxation issues and preparation"	07-Mar-08	30-May-08	25000.00	="07/202-00"	="KPMG"	04-Apr-08 03:08 PM	

+="CN68138-A1"	" SERVICE & MAJOR REPAIRS ON MERC TRACTOR "	="Department of Defence"	04-Apr-08	="Truck tractors"	05-Mar-08	11-Apr-08	15154.99	=""	="R J MOTORS KATHERINE PTY LTD"	04-Apr-08 03:11 PM	

+="CN68143"	"SUBSCRIPTIONS FEBRUARY 2008"	="Administrative Appeals Tribunal"	04-Apr-08	="Printed media"	22-Feb-08	31-Mar-08	33158.20	=""	="LEXISNEXIS"	04-Apr-08 03:31 PM	

+="CN68144"	"SUBSCRIPTIONS FEBRUARY 2008"	="Administrative Appeals Tribunal"	04-Apr-08	="Printed media"	29-Feb-08	31-Jan-09	19683.71	=""	="THOMSON LEGAL & REGULATORY"	04-Apr-08 03:31 PM	

+="CN68145"	"INTERNET SERVICE FEES FEBRUARY 2008"	="Administrative Appeals Tribunal"	04-Apr-08	="Computer services"	15-Feb-08	29-Feb-08	13264.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	04-Apr-08 03:31 PM	

+="CN68146"	"AIRFARES MARCH 2008"	="Administrative Appeals Tribunal"	04-Apr-08	="Passenger transport"	27-Mar-08	31-Mar-08	12753.21	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	04-Apr-08 03:31 PM	

+="CN68147"	"AIRFARES FEBRUARY 2008"	="Administrative Appeals Tribunal"	04-Apr-08	="Passenger transport"	29-Feb-08	29-Feb-08	10062.46	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	04-Apr-08 03:31 PM	

+="CN68142"	"Temporary Administration Services"	="Civil Aviation Safety Authority"	04-Apr-08	="Recruitment services"	06-Apr-08	06-Jun-08	13000.00	="07/205-01"	="Hays Personnel Services"	04-Apr-08 03:59 PM	

+="CN68155"	"SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF"	="Defence Materiel Organisation"	04-Apr-08	="Camping and outdoor equipment and accessories"	04-Apr-08	19-Jun-08	61490.00	="J8108"	="LJ IMPORTS"	04-Apr-08 04:13 PM	

+="CN68161"	"Supply of workstation and loose furniture"	="Australian Competition and Consumer Commission"	05-Apr-08	="Commercial and industrial furniture"	02-Apr-07	31-Jul-08	1258905.45	="RFT 2007/02"	="Schiavello (ACT) Pty Ltd"	05-Apr-08 01:13 PM	

+="CN68162"	" Supply of loose furniture "	="Australian Competition and Consumer Commission"	05-Apr-08	="Commercial and industrial furniture"	01-Oct-07	31-Oct-07	15855.84	="RFT 2007/02"	="Designcraft"	05-Apr-08 01:26 PM	

+="CN68163"	"Maintenance of ACCC website"	="Australian Competition and Consumer Commission"	05-Apr-08	="Computer services"	01-Jul-07	30-Jun-08	16500.00	=""	="Aggmedia Pty Ltd"	05-Apr-08 01:39 PM	

+="CN68164"	"Maintenance of ACCC website"	="Australian Competition and Consumer Commission"	05-Apr-08	="Computer services"	01-Jul-07	30-Jun-08	110000.00	=""	="Aggmedia Pty Ltd"	05-Apr-08 01:41 PM	

+="CN68165-A1"	"Construction project management services ACCC Melbourne Fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	03-Sep-07	31-Mar-08	105875.00	=""	="Xact Project Consultants"	05-Apr-08 02:04 PM	

+="CN68167"	"Construction project management services ACCC Adelaide fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	01-Feb-08	30-Jun-08	57200.00	=""	="Xact Project Consultants"	05-Apr-08 02:31 PM	

+="CN68168"	"Construction architectual services ACCC Melbourne fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	03-Sep-07	31-Mar-08	93775.00	=""	="AMC Projects"	05-Apr-08 02:37 PM	

+="CN68169"	"Construction architectual services ACCC Adelaide fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	19-Feb-08	30-Jun-08	57750.00	=""	="AMC Projects"	05-Apr-08 02:45 PM	

+="CN68170"	"Construction engineering services ACCC Melbourne fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	03-Sep-07	31-Mar-08	46926.00	=""	="Lincolne Scott Australia Pty Ltd"	05-Apr-08 02:53 PM	

+="CN68171"	"Construction management services ACCC Melbourne fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	03-Dec-07	31-Mar-08	236896.00	=""	="ISIS Projects Pty Ltd"	05-Apr-08 03:05 PM	

+="CN68172"	"Construction services ACCC Melbourne fitout"	="Australian Competition and Consumer Commission"	05-Apr-08	="General building construction"	03-Dec-07	31-Mar-08	1932220.40	=""	="ISIS Projects Pty Ltd"	05-Apr-08 03:11 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val0to16000.xls
@@ -1,1 +1,305 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57496"	" AIRCRAFT SPARES  NSN : 1680-66-141-3546 , PAD ASSY , QTY 10. "	="Defence Materiel Organisation"	04-Feb-08	="Military transport helicopters"	04-Feb-08	06-Sep-08	13280.96	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	04-Feb-08 09:55 AM	

+="CN57500"	"Personal Efficency Program 6 attendees"	="Australian Taxation Office"	04-Feb-08	="Education and Training Services"	30-Jan-08	08-Apr-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY"	04-Feb-08 10:49 AM	

+="CN57519"	"Postage Franking Credits"	="Australian Electoral Commission"	04-Feb-08	="Franking or postage machines"	17-Jan-08	17-Feb-08	15000.00	=""	="Pitney Bowes"	04-Feb-08 11:46 AM	

+="CN57523"	"Motor Vehicle Parts."	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	05-Mar-08	15903.25	=""	="Mercedes Benz Aust. Pacific"	04-Feb-08 12:15 PM	

+="CN57524"	"Motor Vehicle Parts."	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	02-Mar-08	14359.81	=""	="Mercedes Benz Aust. Pacific"	04-Feb-08 12:20 PM	

+="CN57533"	"motor vehicle spare parts"	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Feb-08	05-Mar-08	11612.74	=""	="LANDROVER"	04-Feb-08 01:32 PM	

+="CN57535"	"mOTOR VEHICLE SPARE PARTS"	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	02-Mar-08	13459.51	=""	="LANDROVER"	04-Feb-08 01:39 PM	

+="CN57551"	"Delphi 2007 Enterprise - Support & Maintenance Renewal."	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Oct-07	30-Sep-08	15627.00	=""	="SoftGen Australia Pty Ltd"	04-Feb-08 03:08 PM	

+="CN57556-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	28-Nov-07	29-Feb-08	11000.00	=""	="F1 Solutions"	04-Feb-08 03:09 PM	

+="CN57557-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	28-Nov-07	29-Feb-08	11000.00	=""	="F1 Solutions"	04-Feb-08 03:09 PM	

+="CN57560-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	05-Nov-07	30-Nov-07	13005.00	=""	="Hewlett-Packard Australia Pty Ltd"	04-Feb-08 03:09 PM	

+="CN57563"	"Sage Timesheet - Additional LicencesPro Rata Support and Maintenance to 01/07/2007"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	31-May-07	01-Jul-07	14549.00	=""	="Time and Billing Software Consultant Pty Ltd"	04-Feb-08 03:10 PM	

+="CN57576"	"SAS/Access  DB2 (5 Workstations)"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	11-Jul-07	29-Apr-08	11000.00	=""	="SAS Institute Australia Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57579"	"APSC Panel - Review PD&R & present options."	="Department of Veterans' Affairs"	04-Feb-08	="Human resources services"	05-Oct-07	02-Nov-07	15180.00	=""	="People & Strategy (ACT) Pty Ltd"	04-Feb-08 03:12 PM	

+="CN57581"	"Managed PKI for SSL"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	25-Jun-07	24-Jun-08	14432.00	=""	="VeriSign Australia Pty Ltd"	04-Feb-08 03:12 PM	

+="CN57601"	"Probity Services"	="Department of Veterans' Affairs"	04-Feb-08	="Management advisory services"	01-Jan-07	31-Dec-07	15761.00	=""	="Deacons"	04-Feb-08 03:15 PM	

+="CN57603"	"CapTell Enterprise Licence Renewal, 01/07/2007 - 30/06/08"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	11000.00	=""	="CapTell Developments Pty Ltd"	04-Feb-08 03:15 PM	

+="CN57620"	"Hire of Election Premises"	="Australian Electoral Commission"	04-Feb-08	="Lease and rental of property or building"	12-Nov-07	31-Dec-07	14297.00	=""	="GE Real Estate Investments"	04-Feb-08 04:01 PM	

+="CN57623"	"Frieght"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	15600.00	=""	="Aust Air Express Pty Ltd"	04-Feb-08 04:12 PM	

+="CN57625"	"Examination of Bagan Aboriginal Corporations"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Construction and maintenance support equipment"	18-Jan-08	30-Apr-08	14850.00	="220"	="Scolari Comerford Chartered Account"	04-Feb-08 04:12 PM	

+="CN57626"	"Professsional Fees for Ngumarryina Development"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Jun-08	10000.00	=""	="Minter Ellison Lawyers"	04-Feb-08 04:12 PM	

+="CN57634"	"4WD Driver Training"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Education and Training Services"	15-Jan-08	31-Mar-08	12320.00	=""	="S.M.A.R.T - NT"	04-Feb-08 04:13 PM	

+="CN57635"	"Evaluation of draft report"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	15-Jan-08	12285.00	=""	="Urbis JHD"	04-Feb-08 04:13 PM	

+="CN57637"	"Recruitment Fees"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	15-Jan-08	12567.45	=""	="THE PUBLIC AFFAIRS RECRUITMENT"	04-Feb-08 04:14 PM	

+="CN57641"	"10 x Large Money Business Board Game"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Printing and publishing equipment"	25-Jan-08	30-Jun-08	15884.00	=""	="M&C SAATCHI AGENCY PTY LTD"	04-Feb-08 04:14 PM	

+="CN57643"	"Chartered Flights"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	12291.40	=""	="ANANGU PITJANTJATJARA SERVICES"	04-Feb-08 04:15 PM	

+="CN57654"	"Office Rent - Jan 08 to June 08"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Jun-08	14300.00	=""	="WMPF Pty Ltd Operational aka"	04-Feb-08 04:16 PM	

+="CN57657"	"Design of Carers storybook publication"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	10499.50	=""	="PAPER MONKEY"	04-Feb-08 04:16 PM	

+="CN57666"	"Upgrade from QTP to MFT.  Variation 24 - Contract Number IS2143"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Business administration services"	02-Jan-08	31-Jan-08	10241.00	=""	="HEWLETT PACKARD AUST LTD"	04-Feb-08 04:18 PM	

+="CN57669"	"scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management advisory services"	15-Jan-08	15-Jan-08	10223.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Feb-08 04:18 PM	

+="CN57672"	"Amex Statement for National Office 28.12.2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Aircraft"	28-Dec-07	16-Jan-08	13620.93	=""	="American Express"	04-Feb-08 04:18 PM	

+="CN57693"	"2 non ongoing employment contarct staff Tonga and Fabbo"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	11-Jan-08	31-Jan-08	12600.00	=""	="Careers Unlimited"	04-Feb-08 04:21 PM	

+="CN57698"	"Delivery and collection of election materials"	="Australian Electoral Commission"	04-Feb-08	="Freight loading or unloading"	08-Jan-08	08-Feb-08	10308.10	=""	="Ryans Transport"	04-Feb-08 04:24 PM	

+="CN57699"	"Procurement of:  FILTER,RESPIRATOR,AIR FILTERING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Jul-07	04-Feb-08	12800.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:18 PM	

+="CN57706"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	04-Feb-08	11672.64	=""	="CAIRNS BATTERY FACTORY"	04-Feb-08 06:18 PM	

+="CN57707"	"Procurement of:  COMPRESSOR UNIT,RECIPROCATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	11052.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:19 PM	

+="CN57712"	"Procurement of:  BIELLA SINISTRA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	13760.00	=""	="ADI"	04-Feb-08 06:19 PM	

+="CN57718"	"Procurement of:  COMPASS,DRAFTING,PIVOT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	12273.00	=""	="BOAT BOOKS"	04-Feb-08 06:20 PM	

+="CN57722"	"Procurement of:  KRILL LAMP,RED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	04-Feb-08	13475.00	=""	="FLEXI-GLOW LIGHTING"	04-Feb-08 06:20 PM	

+="CN57728"	"Procurement of:  SWITCH,LIQUID LEVEL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	10612.00	=""	="CONTROL COMPONENTS Pty Ltd"	04-Feb-08 06:21 PM	

+="CN57731"	"Procurement of:  LIGHT,WARNING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Jul-07	17-Mar-08	11780.00	=""	="NOVAMARINE INSTRUMENTS Pty Ltd"	04-Feb-08 06:21 PM	

+="CN57732"	"Procurement of:  VALVE,CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	11076.30	=""	="PALL AUSTRALIA"	04-Feb-08 06:22 PM	

+="CN57736"	"Procurement of:  FILTER ELEMENT,FLUID;  TUBE ASSEMBLY,METAL;  BOLT,FLUID PASSAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	04-Feb-08	11310.30	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:22 PM	

+="CN57737"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	13057.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 06:22 PM	

+="CN57743"	"Procurement of:  BATTERY ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	10-Feb-08	13068.50	=""	="AUSTRALIAN TECHNOLOGY"	04-Feb-08 06:23 PM	

+="CN57748"	"Procurement of:  AMPLIFIER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Jul-07	04-Feb-08	15030.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:23 PM	

+="CN57749"	"Procurement of:  FILTER MEDIA,AIR CONDITIONING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	04-Feb-08	13000.00	=""	="RAINBOW FILTERS Pty Ltd"	04-Feb-08 06:23 PM	

+="CN57752"	"Procurement of:  SWITCH,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Jul-07	04-Feb-08	12300.00	=""	="THORNWAITE TECHNOLOGIES"	04-Feb-08 06:24 PM	

+="CN57753"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Jul-07	04-Feb-08	12980.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:24 PM	

+="CN57755"	"Procurement of:  SEAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	04-Feb-08	10656.56	=""	="DIESELS AND COMPONENTS Pty Ltd"	04-Feb-08 06:24 PM	

+="CN57764"	"Procurement of:  SEAL;  GASKET;  GASKET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	11263.27	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:25 PM	

+="CN57765"	"Procurement of:  ROTOCAP ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	11960.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 06:25 PM	

+="CN57767"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	29-Feb-08	14913.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57768"	"Procurement of:  ADHESIVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	13398.00	=""	="MEURY ENTERPRISES Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57769"	"Procurement of:  CLOTH,LAMINATED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	15300.00	=""	="NOLAN O'ROURKE & CO Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57776"	"Procurement of:  BALLAST,LAMP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	15555.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:27 PM	

+="CN57777"	"Procurement of:  BINOCULAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	11700.00	=""	="YORK OPTICAL CO Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57778"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	15240.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57781"	"Procurement of:  BOOTS,DIVERS';  BOOTS,DIVERS';  DIVER'S SUIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	14625.00	=""	="AQUANAUT Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57784"	"Procurement of:  ROPE,FIBROUS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	11970.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:28 PM	

+="CN57785"	"Procurement of:  DIVER'S SUIT;  JACKET,DIVER'S SUIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	13640.00	=""	="AQUANAUT Pty Ltd"	04-Feb-08 06:28 PM	

+="CN57786"	"Procurement of:  ROPE,FIBROUS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	14400.00	=""	="ALLEN SAM WHOLESALE"	04-Feb-08 06:28 PM	

+="CN57788"	"Procurement of:  BASE,MOTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	14400.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:28 PM	

+="CN57793"	"Procurement of:  LOUDSPEAKER,ELECTROMAGNETIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	26-Feb-08	12335.94	=""	="ADI Ltd"	04-Feb-08 06:29 PM	

+="CN57798"	"Procurement of:  DISK,VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	11670.00	=""	="PACIFIC AERODYNE Pty Ltd"	04-Feb-08 06:29 PM	

+="CN57807"	"Procurement of:  FILTER ELEMENT,FLUID;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	04-Feb-08	13570.00	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	04-Feb-08 06:30 PM	

+="CN57813"	"Procurement of:  CYLINDER,COMPRESSED GAS,CARBON"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	04-Feb-08	12800.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 06:31 PM	

+="CN57818"	"Procurement of:  BLADE,WINDSHIELD WIPER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Aug-07	04-Feb-08	10680.00	=""	="RUBIN GROUP Pty Ltd"	04-Feb-08 06:32 PM	

+="CN57819"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Aug-07	04-Feb-08	13596.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:32 PM	

+="CN57824"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Aug-07	04-Feb-08	15600.00	=""	="PAINS-WESSEX AUST Pty Ltd"	04-Feb-08 06:32 PM	

+="CN57830"	"Procurement of:  SHAFT,SHOULDERED;  IMPELLER,FAN,CENTRIFUGAL;  IMPELLER,FAN,CENTRIFUGAL;  IMPELLER,FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Aug-07	04-Feb-08	12462.05	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:33 PM	

+="CN57832"	"Procurement of:  IMPELLER,FAN,CENTRIFUGAL;  IMPELLER,FAN,CENTRIFUGAL;  ABLENKER, LUFTSTROM"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Aug-07	04-Feb-08	10441.20	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:33 PM	

+="CN57835"	"Procurement of:  AMPLIFIER,ELECTRONIC CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Aug-07	04-Feb-08	10241.69	=""	="TENIX DEFENCE Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57840"	"Procurement of:  FILTER ELEMENT,AIR CONDITIONING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	12824.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:34 PM	

+="CN57842"	"Procurement of:  VENTIL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	14364.00	=""	="BOSCH REXROTH Pty Ltd"	04-Feb-08 06:35 PM	

+="CN57843"	"Procurement of:  RING,PISTON;  RING,PISTON"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	12686.40	=""	="MAN B&W DIESEL AUSTRALIA Pty Ltd"	04-Feb-08 06:35 PM	

+="CN57855"	"Procurement of:  HOOD,BREATHING APPARATUS;  FILTER,PARTICULATE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	04-Feb-08	12337.60	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:36 PM	

+="CN57858"	"Procurement of:  AMPLIFIER SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Aug-07	04-Feb-08	15860.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57864"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	04-Feb-08	13280.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57868"	"Procurement of:  CLOTH,CLEANING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	04-Feb-08	11700.00	=""	="CLOROX AUSTRALIA Pty Ltd"	04-Feb-08 06:38 PM	

+="CN57869"	"Procurement of:  GASKET CEMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	28-Feb-08	12646.30	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:38 PM	

+="CN57871"	"Procurement of:  AMPLIFIER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	11342.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 06:38 PM	

+="CN57872"	"Procurement of:  BELTS,V,MATCHED SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	10036.40	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 06:38 PM	

+="CN57876"	"Procurement of:  GASKET;  COUPLING,CLAMP,GROOVED;  RETAINER,PACKING;  VALVE,CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Sep-07	26-Mar-08	13887.02	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:39 PM	

+="CN57880"	"Procurement of:  AX,SINGLE BIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Sep-07	04-Feb-08	13993.00	=""	="J BLACKWOOD & SON Ltd"	04-Feb-08 06:39 PM	

+="CN57881"	"Procurement of:  SWIVEL,EYE AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	04-Feb-08	11951.42	=""	="NOBLE A&SON (NSW) Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57885"	"Procurement of:  BOX,ACCESSORIES STOWAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	12-Mar-08	13500.00	=""	="ADI Ltd TEST&CALIBRATION *"	04-Feb-08 06:40 PM	

+="CN57889"	"Procurement of:  TRANSFORMER,POWER;  TRANSFORMER,POWER;  TRANSMITTER,RADAR;  PANEL,CONTROL,ELECTRICAL-ELECTRONIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Sep-07	26-Apr-08	11226.00	=""	="SONARTECH ATLAS"	04-Feb-08 06:40 PM	

+="CN57894"	"Procurement of:  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	04-Feb-08	10938.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 06:41 PM	

+="CN57898"	"Procurement of:  HOSE,PREFORMED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	04-Feb-08	11579.69	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:41 PM	

+="CN57900"	"Procurement of:  HEATING ELEMENT,ELECTRICAL,IMMERSION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	04-Feb-08	11388.00	=""	="R EDMONDS & SONS Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57908"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Sep-07	04-Feb-08	13920.00	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57910"	"Procurement of:  GASKET;  GASKET;  GASKET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Sep-07	04-Feb-08	10301.00	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57914"	"Procurement of:  BACKPLANE ASSEMBLY;  BACKPLANE ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	02-May-08	10210.47	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57919"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	11168.60	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:44 PM	

+="CN57928"	"Procurement of:  COUPLING,HOSE;  COUPLING,HOSE;  NOZZLE,JET EJECTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	12137.40	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	04-Feb-08 06:45 PM	

+="CN57939"	"Procurement of:  DRYING TUMBLER,LAUNDRY,COMMERCIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Oct-07	07-Feb-08	15882.00	=""	="ELECTROLUX LAUNDRY SYSTEMS"	04-Feb-08 06:46 PM	

+="CN57941"	"Procurement of:  BATTERY ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Oct-07	04-Feb-08	13740.00	=""	="MASTER INSTRUMENTS Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57943"	"Procurement of:  PUMP UNIT,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Oct-07	04-Feb-08	10360.00	=""	="MONO PUMPS (AUST) Pty Ltd"	04-Feb-08 06:47 PM	

+="CN57947"	"Procurement of:  VALVE,GATE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Oct-07	04-Feb-08	13650.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:47 PM	

+="CN57953"	"Procurement of:  HOSE ASSEMBLY,AIR BREATHING;  HOSE ASSEMBLY,AIR BREATHING;  HOSE;  COLLAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Oct-07	04-Feb-08	10124.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57954"	"Procurement of:  BOWL,WATER CLOSET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	29-Feb-08	12780.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57955"	"Procurement of:  BAG,PLASTIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	16000.00	=""	="TELECHNICS Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57959"	"Procurement of:  TRANSMITTER,POSITION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	11833.20	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57960"	"Procurement of:  VALVE,Y;  VALVE,CROSS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	04-Feb-08	11355.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:49 PM	

+="CN57972"	"Procurement of:  LIGHT,NAVIGATIONAL,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	04-Feb-08	12800.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 06:50 PM	

+="CN57973"	"Procurement of:  TAPE,MEASURING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Oct-07	04-Feb-08	10869.60	=""	="MCPHERSONS ENGINEERING SUPPLIES"	04-Feb-08 06:50 PM	

+="CN57976"	"Procurement of:  VALVE,SOLENOID;  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Oct-07	04-Feb-08	10783.70	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:50 PM	

+="CN57977"	"Procurement of:  LAMP,INCANDESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Oct-07	28-Feb-08	15880.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:51 PM	

+="CN57983"	"Procurement of:  METAFRAM SLEEVE;  METAFRAM SLEEVE;  RELAY,ELECTROMAGNETIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	10373.00	=""	="UNITED GROUP INFRASTRUCTURE"	04-Feb-08 06:51 PM	

+="CN57986"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	11063.00	=""	="AEROSPACE COMPOSITES"	04-Feb-08 06:52 PM	

+="CN57987"	"Procurement of:  LEAD SET,TEST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	10275.50	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:52 PM	

+="CN57993"	"Procurement of:  ROPE,WIRE;  BELLOWS,PROTECTION;  SHACKLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	11390.00	=""	="UNITED GROUP INFRASTRUCTURE"	04-Feb-08 06:53 PM	

+="CN57994"	"Procurement of:  LADDER,DEBARKATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	12965.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:53 PM	

+="CN57995"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Oct-07	04-Feb-08	13562.80	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:53 PM	

+="CN58001"	"Procurement of:  PROXIMITY DETECTOR;  2 POSITION SELECTOR;  3 POSITION SELECTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Oct-07	04-Feb-08	13035.00	=""	="UNITED GROUP INFRASTRUCTURE"	04-Feb-08 06:53 PM	

+="CN58004"	"Procurement of:  HINGE ASSEMBLY,MARINE STRUCTURAL METAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	08-Feb-08	10043.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 06:54 PM	

+="CN58012"	"Procurement of:  FLAG,NATIONAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	11100.00	=""	="HARRY WEST FLAGS"	04-Feb-08 06:55 PM	

+="CN58018"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	29-Feb-08	10916.10	=""	="ASCOMATION Pty Ltd"	04-Feb-08 06:56 PM	

+="CN58021"	"Procurement of:  FLASHLIGHT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	10-Mar-08	14800.00	=""	="MINE AND SAFETY LIGHTING CO"	04-Feb-08 06:56 PM	

+="CN58040"	"Procurement of:  VALVE,GLOBE;  VALVE,GLOBE;  TIMER,SEQUENTIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	10120.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:58 PM	

+="CN58045"	"Procurement of:  TUBING ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Nov-07	04-Feb-08	13826.61	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 06:59 PM	

+="CN58046"	"Procurement of:  CYLINDER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	04-Feb-08	11100.00	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 06:59 PM	

+="CN58051"	"Procurement of:  ELECTROMAGNETIC ACTUATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	12883.50	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:59 PM	

+="CN58055"	"Procurement of:  FAN,CIRCULATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	30-Mar-08	10348.62	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:00 PM	

+="CN58056"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	14-Feb-08	14866.05	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:00 PM	

+="CN58060"	"Procurement of:  HEATER,FLUID,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	14-Mar-08	13302.10	=""	="PALL AUSTRALIA"	04-Feb-08 07:01 PM	

+="CN58061"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	04-Feb-08	11556.84	=""	="PALL AUSTRALIA"	04-Feb-08 07:01 PM	

+="CN58065"	"Procurement of:  VALVE,PLUG"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	04-Feb-08	14493.06	=""	="PALL AUSTRALIA"	04-Feb-08 07:01 PM	

+="CN58066"	"Procurement of:  VOLUTE POMPE A EAU"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	04-Feb-08	12948.49	=""	="WARTSILA AUSTRALIA Pty Ltd"	04-Feb-08 07:01 PM	

+="CN58067"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	04-Feb-08	10510.32	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:01 PM	

+="CN58070"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	16-Feb-08	15600.00	=""	="PAINS-WESSEX AUST Pty Ltd"	04-Feb-08 07:02 PM	

+="CN58072"	"Procurement of:  SEAL,LIQUID TO LIQUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	14-Mar-08	15360.48	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:02 PM	

+="CN58077"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	15-Apr-08	10052.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 07:03 PM	

+="CN58079"	"Procurement of:  PARTS KIT,SEAL REPLACEMENT,MECHANICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	10020.00	=""	="A & G PRICE Ltd"	04-Feb-08 07:03 PM	

+="CN58080"	"Procurement of:  SPRING,FLAT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	11317.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:03 PM	

+="CN58082"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	14685.60	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:03 PM	

+="CN58087"	"Procurement of:  FUSE,CARTRIDGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	04-Feb-08	15000.00	=""	="SWE-CHECK Pty Ltd"	04-Feb-08 07:04 PM	

+="CN58088"	"Procurement of:  CORE ASSEMBLY,FLUID COOLER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Nov-07	04-Feb-08	15384.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:04 PM	

+="CN58089"	"Procurement of:  PADLOCK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	04-Feb-08	13270.00	=""	="LOCK DISTRIBUTORS Pty Ltd"	04-Feb-08 07:04 PM	

+="CN58100"	"Procurement of:  LIGHT,DESK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	04-Feb-08	12870.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:05 PM	

+="CN58101"	"Procurement of:  LIGHT,NAVIGATIONAL,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	04-Feb-08	11300.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:05 PM	

+="CN58102"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING;  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	17-Feb-08	12644.50	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58103"	"Procurement of:  KETTLE,STEAM JACKETED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	15-Feb-08	14682.00	=""	="COMCATER INTERNATIONAL Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58108"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	04-Feb-08	11020.00	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58110"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	04-Feb-08	10300.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	04-Feb-08 07:07 PM	

+="CN58113"	"Procurement of:  FILTER,RADIO FREQUENCY INTERFERENCE;  WRENCH,SPANNER;  SWITCH,ROTARY;  RELAY,ELECTROMAGNETIC;  LEVEL GUARD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	31-Aug-08	12986.13	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:07 PM	

+="CN58116"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	13-Feb-08	13521.92	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:07 PM	

+="CN58118"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	13-Feb-08	10726.43	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:07 PM	

+="CN58123"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Nov-07	04-Feb-08	15672.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:08 PM	

+="CN58128"	"Procurement of:  VALVE,CALIBRATED FLOW"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Nov-07	19-Feb-08	14242.30	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:09 PM	

+="CN58129"	"Procurement of:  RELAY,ELECTROMAGNETIC;  TRANSFORMER,POWER;  LOCK DOOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Nov-07	04-Feb-08	12772.20	=""	="ELECTROLUX LAUNDRY SYSTEMS"	04-Feb-08 07:09 PM	

+="CN58131"	"Procurement of:  FUSE,CARTRIDGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	05-Mar-08	11835.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:09 PM	

+="CN58137"	"Procurement of:  FILTER ELEMENT,FLUID;  VALVE,SAFETY RELIEF;  CARTRIDGE,DEHYDRATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	25-Feb-08	11000.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 07:10 PM	

+="CN58138"	"Procurement of:  COMPUTER,DIGITAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	04-Feb-08	11588.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:10 PM	

+="CN58139"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Nov-07	21-Apr-08	14815.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:10 PM	

+="CN58142"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Nov-07	28-Mar-08	14628.00	=""	="MACK VALVES Pty Ltd"	04-Feb-08 07:10 PM	

+="CN58145"	"Procurement of:  REFRIGERATOR,MECHANICAL,FOOD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	28-Feb-08	15885.96	=""	="STEELFORT ENGINEERING CO Ltd"	04-Feb-08 07:11 PM	

+="CN58146"	"Procurement of:  PIPE;  PIPE;  PIPE;  PIPE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	01-Sep-08	10873.90	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58148"	"Procurement of:  METER,TIME TOTALIZING;  CABLE ASSEMBLY,SPECIAL;  HEATING ELEMENT,ELECTRICAL,IMMERSION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	01-Oct-08	10500.46	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58151"	"Procurement of:  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	05-Feb-08	10150.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58152"	"Procurement of:  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	06-Sep-08	15217.80	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58153"	"Procurement of:  PIPE;  PIPE;  PIPE;  PIPE;  PIPE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	01-Sep-08	10607.80	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58155"	"Procurement of:  CABLE ASSEMBLY,SPECIAL;  LIGHT,WARNING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	22-Mar-08	11157.20	=""	="ADI Ltd"	04-Feb-08 07:12 PM	

+="CN58157"	"Procurement of:  ELECTRON TUBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	04-Feb-08	11630.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:12 PM	

+="CN58158"	"Procurement of:  PISTON,COMPRESSOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	04-Feb-08	15521.16	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:12 PM	

+="CN58165"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	04-Feb-08	13259.10	=""	="HOBART FOOD EQUIPMENT Pty Ltd"	04-Feb-08 07:13 PM	

+="CN58166"	"Procurement of:  BELLOWS,PROTECTION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	23-Feb-08	12600.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	04-Feb-08 07:13 PM	

+="CN58167"	"Procurement of:  VALVE ASSEMBLY,MANIFOLD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	04-Feb-08	10640.52	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:13 PM	

+="CN58172"	"Procurement of:  CYLINDER,ACTUATING,LINEAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Feb-08	11437.04	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:14 PM	

+="CN58173"	"Procurement of:  PUMP,INFLATING,MANUAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	09-Mar-08	12330.00	=""	="ZODIAC GROUP AUSTRALIA"	04-Feb-08 07:14 PM	

+="CN58175"	"Procurement of:  CAP,VALVE;  CAP,VALVE;  VALVE,GLOBE;  STEM,FLUID VALVE;  STEM,FLUID VALVE;  STEM,FLUID VALVE; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	21-Feb-08	12469.50	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:14 PM	

+="CN58177"	"Procurement of:  CHAIR,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Feb-08	10647.36	=""	="OFFICE ORGANIZATION Pty Ltd"	04-Feb-08 07:14 PM	

+="CN58178"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	04-Feb-08	11873.10	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 07:14 PM	

+="CN58179"	"Procurement of:  ANTENNA SIMULATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	13-Apr-08	11023.24	=""	="ADI Ltd"	04-Feb-08 07:15 PM	

+="CN58180"	"Procurement of:  LIGHT,DESK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	28-Mar-08	14300.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:15 PM	

+="CN58181"	"Procurement of:  TOOL KIT,INTERNAL COMBUSTION ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	28-Feb-08	13679.67	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:15 PM	

+="CN58182"	"Procurement of:  KLAPPE, SCHNELLVERS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	28-Feb-08	11900.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:15 PM	

+="CN58183"	"Procurement of:  PISTON ASSEMBLY,COMPRESSOR;  COVER ASSEMBLY,VALVE;  RING,RETAINING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Feb-08	11799.31	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:15 PM	

+="CN58185"	"Procurement of:  STOPWATCH"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	20-Feb-08	10681.00	=""	="SEIKO AUSTRALIA Pty Ltd"	04-Feb-08 07:15 PM	

+="CN58186"	"Procurement of:  SWITCH,THERMOSTATIC;  PARTS KIT,VALVE;  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	04-Feb-08	15093.22	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:15 PM	

+="CN58188"	"Procurement of:  TRANSFORMER,POWER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	05-Mar-08	10102.73	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:16 PM	

+="CN58190"	"Procurement of:  CYLINDER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	04-Feb-08	11100.00	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:16 PM	

+="CN58194"	"Procurement of:  MANIFOLD ASSEMBLY,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Dec-07	06-Mar-08	10068.50	=""	="BAKER & PROVAN Pty Ltd"	04-Feb-08 07:16 PM	

+="CN58205"	"Procurement of:  INSULATOR,STRAIN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Feb-08	10860.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:18 PM	

+="CN58207"	"Procurement of:  COMPRESSOR,REFRIGERATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	07-Mar-08	14500.00	=""	="CARRIER AIR CONDITIONING Pty Ltd"	04-Feb-08 07:18 PM	

+="CN58211"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	26-Mar-08	15955.50	=""	="AMBIT INSTRUMENTS Pty Ltd"	04-Feb-08 07:18 PM	

+="CN58218"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	04-Mar-08	13117.02	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:19 PM	

+="CN58228"	"Procurement of:  CONNECTOR,PLUG,ELECTRICAL;  DESICCATOR;  EXTRACTOR,ELECTRICAL CARD;  SEMICONDUCTOR DEVICE,THYRISTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	18-Apr-08	11203.42	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58229"	"Procurement of:  HEATING ELEMENT,ELECTRICAL,IMMERSION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	05-Feb-08	12264.00	=""	="R EDMONDS & SONS Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58238"	"Procurement of:  HOUSING,LIQUID PUMP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	18-Mar-08	12412.98	=""	="PALL AUSTRALIA"	04-Feb-08 07:22 PM	

+="CN58244"	"Procurement of:  DRY SUIT,RESCUE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	06-May-08	10770.00	=""	="AQUATERRO"	04-Feb-08 07:22 PM	

+="CN58247"	"Procurement of:  STARTER AIR VALVE A;  SPACER,RING;  SLEEVE,PUSH ROD COVER TUBE;  O-RING;  O-RING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	04-Feb-08	11137.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:23 PM	

+="CN58248"	"Procurement of:  ACCUMULATOR,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	04-Feb-08	13160.00	=""	="OLAER FAWCETT CHRISTIE Pty Ltd"	04-Feb-08 07:23 PM	

+="CN58251"	"Procurement of:  LENS CARRIER;  EXTRACTOR INSERT;  PIN ELEMENT;  FAN,CIRCULATING;  SCREW ASSORTMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	13-Aug-08	14531.88	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:23 PM	

+="CN58260"	"Procurement of:  VALVE,LINEAR,DIRECTIONAL CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Nov-07	04-Feb-08	14988.42	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:24 PM	

+="CN58270"	"Procurement of:  PLUG,PROTECTIVE,DUST AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Jul-07	04-Feb-08	10289.76	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58274"	"Procurement of:  ADAPTER,STRAIGHT,TUBE TO HOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	14970.00	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58275"	"Procurement of:  VENT PLUG ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	12651.00	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58278"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	12370.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58284"	"Procurement of:  PISTON,COMPRESSOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Jul-07	04-Feb-08	10211.45	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 07:27 PM	

+="CN58285"	"Procurement of:  INDICATOR,DEPTH"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	04-Feb-08	11585.00	=""	="AUSMUR Pty Ltd (TRADING AS AWA MARIN"	04-Feb-08 07:27 PM	

+="CN58294"	"Procurement of:  THERMOWELL;  SENSOR,AMBIENT TEMPERATURE;  SENSOR,AMBIENT TEMPERATURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	04-Feb-08	10094.20	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:28 PM	

+="CN58298"	"Procurement of:  SENSOR,AMBIENT TEMPERATURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	13800.00	=""	="GORDON BROTHERS INDUSTRIES Pty *"	04-Feb-08 07:29 PM	

+="CN58302"	"Procurement of:  ACTUATOR,ELECTRO-MECHANICAL,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	14360.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:29 PM	

+="CN58308"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE;  GUIDE,DIAPHRAGM,VAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Jul-07	04-Feb-08	10021.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:30 PM	

+="CN58312"	"Procurement of:  PIN,NET,LAUNDRY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	04-Feb-08	12000.00	=""	="COBRO Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58318"	"Procurement of:  CABLE ASSEMBLY,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	01-Sep-08	15104.25	=""	="A S C Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58319"	"Procurement of:  SYNCHRO,TRANSMITTER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	12437.50	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:31 PM	

+="CN58320"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	12252.94	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58321"	"Procurement of:  TOOL,COMPRESSING;  LIFTING EYE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	13150.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58326"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	25-Feb-08	10064.30	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58332"	"Procurement of:  COVERALLS,ANTI-EXPOSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	11280.00	=""	="AQUATERRO"	04-Feb-08 07:33 PM	

+="CN58344"	"Procurement of:  COVERALLS,ANTI-EXPOSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	04-Feb-08	11280.00	=""	="AQUATERRO"	04-Feb-08 07:34 PM	

+="CN58346"	"Procurement of:  LIGHT-SWITCH;  WIRE,NONELECTRICAL;  PACKING ASSEMBLY;  VACUUM PUMP UNIT,ROTARY;  WIRE,NONELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	04-Feb-08	12249.52	=""	="A S C Pty Ltd"	04-Feb-08 07:35 PM	

+="CN58347"	"Procurement of:  SWITCH,PROXIMITY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	05-May-08	12817.80	=""	="AUSTRALIAN SUBMARINE CORPORATION"	04-Feb-08 07:35 PM	

+="CN58348"	"Procurement of:  CONNECTOR,RECEPTACLE,ELECTRICAL;  RELAY,ELECTROMAGNETIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	11320.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:35 PM	

+="CN58354"	"Procurement of:  WRENCH,SOCKET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	13315.32	=""	="VEEM ENGINEERING GROUP"	04-Feb-08 07:36 PM	

+="CN58355"	"Procurement of:  SOCKET,SOCKET WRENCH;  SOCKET,SOCKET WRENCH"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	12874.40	=""	="SNAP ON TOOLS (AUST) Pty Ltd"	04-Feb-08 07:36 PM	

+="CN58356"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	13280.00	=""	="INGRAMS CLOCKS Pty Ltd"	04-Feb-08 07:36 PM	

+="CN58364"	"Procurement of:  NIPPLE,PIPE;  NIPPLE,PIPE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	11876.03	=""	="A S C Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58367"	"Procurement of:  TEE,PIPE;  NIPPLE,PIPE;  ELBOW,PIPE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Aug-07	04-Feb-08	12556.81	=""	="A S C Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58369"	"Procurement of:  TEST KIT, BEARING CLEARANCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	04-Feb-08	10404.85	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58372"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	04-Feb-08	12453.00	=""	="LAWRENCE AND HANSON"	04-Feb-08 07:38 PM	

+="CN58376"	"Procurement of:  HOUSING,CONTROL CONSOLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	12540.00	=""	="A & G PRICE Ltd"	04-Feb-08 07:38 PM	

+="CN58378"	"Procurement of:  INSULATION SLEEVING,THERMAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	08-Aug-07	04-Feb-08	10176.00	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:38 PM	

+="CN58379"	"Procurement of:  PARTS KIT,BALL VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	04-Feb-08	10929.51	=""	="A S C Pty Ltd"	04-Feb-08 07:39 PM	

+="CN58385"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Aug-07	15-Mar-08	12990.00	=""	="AUSMUR Pty Ltd (TRADING AS AWA MARIN"	04-Feb-08 07:39 PM	

+="CN58389"	"Procurement of:  VALVE,LINEAR,DIRECTIONAL CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Aug-07	04-Feb-08	13066.00	=""	="A S C Pty Ltd"	04-Feb-08 07:40 PM	

+="CN58390"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Aug-07	07-May-08	12967.13	=""	="A S C Pty Ltd"	04-Feb-08 07:40 PM	

+="CN58392"	"Procurement of:  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Aug-07	04-Feb-08	14560.00	=""	="VEGA AUSTRALIA Pty Ltd"	04-Feb-08 07:40 PM	

+="CN58399"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	07-Feb-08	14383.05	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58400"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	04-Feb-08	11052.26	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58401"	"Procurement of:  SWITCH,ROTARY;  SWITCH,ROTARY;  SWITCH,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Aug-07	04-Feb-08	10276.25	=""	="LAWRENCE AND HANSON"	04-Feb-08 07:41 PM	

+="CN58403"	"Procurement of:  ALIGNMENT FIXTURE,LASER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Sep-07	04-Feb-08	14499.99	=""	="ROHWEDDER Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58406"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	27-Feb-08	10126.74	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58408"	"Procurement of:  O-RING;  BEARING,SLEEVE;  GASKET;  SPRING,HELICAL,COMPRESSION;  WASHER,FLAT;  STEM,FLUID VALVE; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Oct-07	04-Feb-08	11578.89	=""	="A S C Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58411"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	04-Feb-08	11495.92	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58412"	"Procurement of:  O-RING;  O-RING;  O-RING;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	22-Feb-08	12635.90	=""	="A S C Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58422"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	04-Feb-08	10130.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58430"	"Procurement of:  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	11600.00	=""	="WORMALD TECHNOLOGY"	04-Feb-08 07:45 PM	

+="CN58432"	"Procurement of:  RETAINER,BUSHING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	04-Feb-08	11041.00	=""	="MILSPEC SERVICES Pty Ltd"	04-Feb-08 07:45 PM	

+="CN58435"	"Procurement of:  AMPLIFIER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	12476.20	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:45 PM	

+="CN58436"	"Procurement of:  TRANSDUCER,MOTIONAL PICKUP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	11-Mar-08	12980.39	=""	="A S C Pty Ltd"	04-Feb-08 07:45 PM	

+="CN58438"	"Procurement of:  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Oct-07	04-Feb-08	10080.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58446"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	04-Feb-08	11710.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:47 PM	

+="CN58447"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	06-Apr-08	13900.90	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58453"	"Procurement of:  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	13680.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:47 PM	

+="CN58455"	"Procurement of:  ADAPTER,STRAIGHT,PIPE TO TUBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	12626.25	=""	="A S C Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58458"	"Procurement of:  PUMPING UNIT,SEWAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	28-Feb-08	12610.00	=""	="AMI MARINE"	04-Feb-08 07:48 PM	

+="CN58465"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	06-Mar-08	14040.00	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58467"	"Procurement of:  ALARM,GAS,AUTOMATIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	12400.00	=""	="AIR MET SCIENTIFIC Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58472"	"Procurement of:  PACK ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	01-Apr-08	12653.85	=""	="SMITHS DETECTION (AUSTRALIA)"	04-Feb-08 07:50 PM	

+="CN58477"	"Procurement of:  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	22-Apr-08	13110.04	=""	="A S C Pty Ltd"	04-Feb-08 07:50 PM	

+="CN58479"	"Procurement of:  DESICCATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	18-Jun-08	12608.55	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:50 PM	

+="CN58483"	"Procurement of:  SEAL,GRAYLOC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	04-Feb-08	13315.00	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58490"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	09-Feb-08	13615.00	=""	="JACOBS RADIO (AUSTRALIA) Pty Ltd"	04-Feb-08 07:52 PM	

+="CN58496"	"Procurement of:  BOLT,MACHINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Dec-07	04-Feb-08	11209.00	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:52 PM	

+="CN58499"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	06-May-08	12412.86	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:53 PM	

+="CN58501"	"REQUIRED FOR THE REPAIR OF S70B2 PROPULSION GEARBOX"	="Defence Materiel Organisation"	05-Feb-08	="Aircraft"	12-Dec-07	20-Feb-08	11000.00	=""	="ROSEBANK ENGINEERING"	05-Feb-08 08:27 AM	

+="CN58503"	"motor vehicle spare parts"	="Department of Defence"	05-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Feb-08	06-Mar-08	13974.88	=""	="LANDROVER"	05-Feb-08 08:41 AM	

+="CN58504"	"spares required for the repair of s70b2 aeropropulsion items"	="Defence Materiel Organisation"	05-Feb-08	="Aircraft"	30-Jan-08	06-Oct-08	13970.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	05-Feb-08 08:50 AM	

+="CN58529"	"ELECTRICAL MAINTENANCE AND SUPPLY OF UPS"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Building and Construction and Maintenance Services"	04-Dec-07	04-Dec-07	11373.96	=""	="CONTRAX SOLUTIONS PTY LTD"	05-Feb-08 09:27 AM	

+="CN58538"	"MATERIALS FOR RELAMPING OF SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	21-Dec-07	21-Dec-07	12100.00	=""	="CTS ELECTRICS PTY LTD"	05-Feb-08 09:28 AM	

+="CN58539"	"LABOUR FOR RELAMPING OF SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Facilities management"	21-Dec-07	21-Dec-07	13552.00	=""	="INTAFIX PTY LTD"	05-Feb-08 09:28 AM	

+="CN58544"	"RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Recruitment services"	28-Dec-07	28-Dec-07	13530.00	=""	="CORDELTA PTY LTD"	05-Feb-08 09:28 AM	

+="CN58550"	"SUTURE NON ABSORBABLE, SURGICAL STERILE, SINGLE ARMED, 450 MM LG POLYPROPYLENE, BLUE MONOFILAMENT REVERSE CUTTING NEEDLE METRIC GAUGE 1.5, 3/8 CIRCLE, 17.6MM LG"	="Defence Materiel Organisation"	05-Feb-08	="Medical health associations"	04-Feb-08	11-Feb-08	11522.28	=""	="DYNEK PTY LTD"	05-Feb-08 09:42 AM	

+="CN58554"	"Hire of premises"	="Australian Electoral Commission"	05-Feb-08	="Lease and rental of property or building"	07-Nov-07	28-Nov-07	11529.10	=""	="Uniting Church in Australia"	05-Feb-08 09:52 AM	

+="CN58563"	"Binding of Bills"	="Department of the House of Representatives"	05-Feb-08	="Bookbinding"	01-Jan-08	31-Jan-08	10373.00	=""	="Canprint Communications Pty Ltd"	05-Feb-08 10:21 AM	

+="CN58569"	" MANUFACTURE OF NEW CONSOLE FOR RIB "	="Department of Defence"	05-Feb-08	="Amphibious assault ships"	23-Nov-07	07-Jan-08	14076.85	=""	="STRATEGIC MARINE"	05-Feb-08 10:48 AM	

+="CN58571"	"placement fee for grphic designer"	="Royal Australian Mint"	05-Feb-08	="Temporary marketing staff needs"	02-Jan-08	02-Jan-08	12750.01	=""	="TPA - DIVISION OF VEDIOR ASIA PACIF"	05-Feb-08 10:55 AM	

+="CN58572"	"MANUFACTURE OF NEW CONSOLE FOR RIB"	="Department of Defence"	05-Feb-08	="Amphibious assault ships"	23-Nov-07	07-Jan-08	14076.85	=""	="STRATEGIC MARINE"	05-Feb-08 10:57 AM	

+="CN58577"	"VARIOUS MEDICAL ASSOCIATED ITEM"	="Defence Materiel Organisation"	05-Feb-08	="Medical health associations"	17-Dec-07	18-Jan-08	10217.90	=""	="SURGICAL SPECIALISTS INSTRUMENT SUPPLY COMPANY P/L"	05-Feb-08 11:21 AM	

+="CN58585"	"Analysis & Reporting on 2007 Technical Workforce Capability Risk Assessment."	="Australian Taxation Office"	05-Feb-08	="Human resources services"	07-Jan-08	15-Feb-08	11963.00	=""	="Orima Rersearch Pty Limited"	05-Feb-08 11:53 AM	

+="CN58603"	"For the purchase of photographs"	="Department of Parliamentary Services"	05-Feb-08	="Photographs"	25-Jan-08	03-Mar-08	11651.64	=""	="Stills Gallery"	05-Feb-08 01:57 PM	

+="CN58607"	"Provision of Ongoing support services for mySAP (Contract  DPS06064)"	="Department of Parliamentary Services"	05-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	11000.00	=""	="Supply Chain Consulting Pty Ltd"	05-Feb-08 01:58 PM	

+="CN58612"	"Room and facility hire for August 2007 Business Summit"	="Austrade"	05-Feb-08	="Hotels and lodging and meeting facilities"	29-Aug-07	31-Aug-07	10432.20	=""	="The Portside Centre"	05-Feb-08 02:02 PM	

+="CN58614"	"Senior test analysis for acceptance testing"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	01-Sep-07	28-Sep-07	14315.40	=""	="Access Testing Pty Ltd"	05-Feb-08 02:02 PM	

+="CN58628"	"Design and construction of the TasGallery Interactive CD"	="Austrade"	05-Feb-08	="Education and Training Services"	05-Apr-07	13-Jun-07	15614.50	=""	="Digitalink"	05-Feb-08 02:03 PM	

+="CN58629"	"Direct Marketing Project Co-ordinator"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jan-08	31-Mar-08	12000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	05-Feb-08 02:04 PM	

+="CN58634"	"Server"	="Department of the House of Representatives"	05-Feb-08	="Computer Equipment and Accessories"	12-Jan-08	29-Feb-08	12067.00	=""	="Dell Australia P/L"	05-Feb-08 02:11 PM	

+="CN58636"	"Software maintenance"	="Department of the House of Representatives"	05-Feb-08	="Software maintenance and support"	01-Jan-08	31-Dec-09	11767.14	=""	="Zallcom Pty Ltd"	05-Feb-08 02:20 PM	

+="CN58647"	"For the procurement of furniture needed to replace water damaged items."	="National Blood Authority"	05-Feb-08	="Furniture and Furnishings"	26-Oct-07	26-Oct-07	11100.10	=""	="Office Partners International Pty Ltd"	05-Feb-08 02:42 PM	

+="CN58651"	"Delivery and collection of election materials"	="Australian Electoral Commission"	05-Feb-08	="Material handling services"	13-Nov-07	23-Nov-07	10144.41	=""	="Collins Courier Service"	05-Feb-08 03:00 PM	

+="CN58640"	"Food catering"	="Department of the House of Representatives"	05-Feb-08	="Catering services"	17-Jan-08	31-Jan-08	12175.00	=""	="Hyatt Hotel Canberra"	05-Feb-08 03:58 PM	

+="CN58665"	"Printing"	="Department of the House of Representatives"	05-Feb-08	="Publishing"	01-Jan-08	31-Jan-08	12463.00	=""	="Canprint Communications Pty Ltd"	05-Feb-08 04:04 PM	

+="CN58668"	"Repair of 90 KVA GPU."	="Defence Materiel Organisation"	05-Feb-08	="Power generation"	29-Jan-08	25-Feb-08	11374.00	=""	="ADVANCED POWER MACHINERY"	05-Feb-08 04:10 PM	

+="CN58669-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	30-Aug-07	11-Oct-07	10438.00	=""	="Persec Solutions Pty Ltd"	05-Feb-08 04:31 PM	

+="CN58670-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	19-Dec-07	30-Jan-08	11190.00	=""	="Persec Solutions Pty Ltd"	05-Feb-08 04:35 PM	

+="CN58672-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	14-Dec-07	25-Jan-08	10440.00	=""	="Persec Solutions Pty Ltd"	05-Feb-08 04:38 PM	

+="CN58673-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	07-Dec-07	18-Jan-08	10943.00	=""	="Persec Solutions Pty Ltd"	05-Feb-08 04:42 PM	

+="CN58684"	"LIGNOCAINE HYDROCHLORIDE AND BENZYDAMINE HYDROCHLORIDE LOZENGE LIGNOCAINE HCL 4MG DICHLORABENZYL ALCOHOL 1.25 MG, AND BENZYDOMINE HCL 3MG, 16'S"	="Defence Materiel Organisation"	06-Feb-08	="Medical health associations"	01-Feb-08	06-Feb-08	15143.04	=""	="BAYER AUSTRALIA LTD"	06-Feb-08 09:33 AM	

+="CN58685"	"Media Information Services"	="Australian Electoral Commission"	06-Feb-08	="Information services"	30-Nov-07	30-Dec-07	12185.28	=""	="AAP Information Services"	06-Feb-08 09:42 AM	

+="CN58689"	"leave liability- craig revell"	="Royal Australian Mint"	06-Feb-08	="Financial accounting"	02-Jan-08	02-Jan-08	15242.87	=""	="AUSTRALIAN FILM COMMISSION"	06-Feb-08 10:35 AM	

+="CN58690"	"css/pss contributers"	="Royal Australian Mint"	06-Feb-08	="Pension funds"	02-Jan-08	02-Jan-08	11730.95	=""	="COMSUPER"	06-Feb-08 10:52 AM	

+="CN58702"	"Quantity Surveyor Services"	="National Capital Authority"	06-Feb-08	="Land surveying"	12-Oct-07	30-Jun-08	11825.00	=""	="Donald Cants Watts Corke Pty Ltd"	06-Feb-08 12:08 PM	

+="CN58720-A1"	"Project Management of Capital works Weston ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Jan-08	31-Jan-08	14485.90	=""	="Manteena Pty Ltd"	06-Feb-08 02:21 PM	

+="CN58726"	"holder printed coin set 2 UNC 2008"	="Royal Australian Mint"	06-Feb-08	="Printed inserts or instructions"	10-Jan-08	24-Apr-08	13544.30	=""	="NEXUS PRINT SOLUTIONS"	06-Feb-08 02:45 PM	

+="CN58730"	"Transport - Official Visit"	="Department of the Prime Minister and Cabinet"	06-Feb-08	="Passenger transport"	19-Dec-07	20-Dec-07	12900.00	=""	="COMCAR"	06-Feb-08 02:56 PM	

+="CN58734-A1"	" Equipment Hire "	="Department of the Prime Minister and Cabinet"	06-Feb-08	="Marquees"	10-Dec-07	20-Dec-07	15900.00	=""	="KENNARDS EVENTS PTY LTD"	06-Feb-08 03:15 PM	

+="CN58739"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	07-Mar-08	13421.45	=""	="Rover Australia"	06-Feb-08 03:33 PM	

+="CN58761"	"NSN 1680-01-066-5644, Guide Assemblies"	="Defence Materiel Organisation"	06-Feb-08	="Aerospace systems and components and equipment"	23-Nov-07	04-Aug-08	14770.14	=""	="Milspec Services Pty Ltd"	06-Feb-08 04:49 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val16000to20000.xls
@@ -1,1 +1,147 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57481"	"    Repair Coverage and Annual Preventative Maintenance for Agilent HPLC Systems    "	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	07-Jan-09	16687.18	=""	="Agilent Technologies Aust Pty Ltd"	04-Feb-08 08:25 AM	

+="CN57482"	"Administration Fees"	="Therapeutic Goods Administration"	04-Feb-08	="Healthcare Services"	01-Jan-08	31-Mar-08	19149.90	=""	="Comsuper - Australian Government"	04-Feb-08 08:29 AM	

+="CN57490"	"Server Warranty"	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	21-Feb-08	18359.88	=""	="Commander Integrated Networks Pty Ltd"	04-Feb-08 09:16 AM	

+="CN57501"	"MQ72AAU WebSphere Business Intergation 12 Attendees"	="Australian Taxation Office"	04-Feb-08	="Education and Training Services"	31-Jan-08	05-Mar-08	18480.00	=""	="IBM AUSTRALIA LIMITED"	04-Feb-08 10:49 AM	

+="CN57513"	"Legal Services"	="Australian Electoral Commission"	04-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	17000.00	="AEC06/032"	="Australian Government Solicitor"	04-Feb-08 10:58 AM	

+="CN57520"	"Motor Vehicle parts."	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	05-Mar-08	16598.87	=""	="Mercedes Benz Aust. Pacific"	04-Feb-08 11:53 AM	

+="CN57532"	" INDICATOR ELECTRICAL TACHOMETER ELECTRIC INDUCTIVE PLASTIC CASE WITH VRIOUS INTERNAL PARTS, 6CM L X 4.3CM W X 1.2CM H, 20G  STOP MECHANICAL PISTON STOPUNIVERSAL POLYMET 10.3CM X 2.5CM X 1.2CM  WRENCH SPANNER CLUTCH REMOVAL TOOL, 3-PRONG FOR HUSQVARNA 372XP CHAIN SAW  SCREWDRIVER SIX POINT TIP TORX T20 STEEL SHAFT PLASTIC HANDLE 23CM X 10CM X 2CM  SCREWDRIVER SIX POINT TIP T25 STEEL SHAFT, PLASTIC HANDLE 230 MM O/A LG "	="Defence Materiel Organisation"	04-Feb-08	="Sawing machines"	23-Jan-08	27-Feb-08	18740.70	=""	="HUSQVARNA PTY LTD"	04-Feb-08 01:31 PM	

+="CN57568"	"Sage Timesheet Maintenance and Support renewal 01/07/2007 to 30/06/2008 - 315 licences"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	19058.00	=""	="Time and Billing Software Consultant Pty Ltd"	04-Feb-08 03:10 PM	

+="CN57584"	"Base SAS from 10 to 20 WorkStations.  30.06.07-29.04.08"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Jun-07	29-Apr-08	16500.00	=""	="SAS Institute Australia Pty Ltd"	04-Feb-08 03:13 PM	

+="CN57588"	"TRIM Context Module(Context Web)Pro-Rata Maintenance Until 303/06/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	07-Dec-07	30-Jun-08	18150.00	=""	="Tower Software"	04-Feb-08 03:13 PM	

+="CN57589"	"Compliance Workshop on VAPAC Phase I"	="Department of Veterans' Affairs"	04-Feb-08	="Management advisory services"	21-Nov-07	14-Dec-07	17258.00	="DAS/2007"	="Hoffmann Donohue Pty Ltd"	04-Feb-08 03:13 PM	

+="CN57600"	"Legal Services for Tender Process"	="Department of Veterans' Affairs"	04-Feb-08	="Legal services"	01-Jan-07	31-Dec-07	16457.00	=""	="Australian Government Solicitor"	04-Feb-08 03:15 PM	

+="CN57624"	"Newspapers"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	18000.00	=""	="Manuka Newsagency"	04-Feb-08 04:12 PM	

+="CN57642"	"STINMOD Housing Stress Modelling"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	22-Feb-08	17727.19	="45005"	="Natsem Pty Ltd"	04-Feb-08 04:14 PM	

+="CN57652"	"Video Conferencing Equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	25-Jan-08	25-Jan-08	18161.00	=""	="TT Group Communications"	04-Feb-08 04:16 PM	

+="CN57656"	"S453-1 Exams (3) Buyinbin,Gungyah,Bulgarr"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management advisory services"	29-Jan-08	13-Mar-08	16500.00	=""	="TNR Financial Services Pty Ltd"	04-Feb-08 04:16 PM	

+="CN57671"	"Hearing room two works completed as directed"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Office Equipment and Accessories and Supplies"	11-Jan-08	14-Jan-08	19745.00	=""	="ISIS Projects Pty Ltd"	04-Feb-08 04:18 PM	

+="CN57674"	"Pymnt Inv.07/054 Art Program"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Utilities"	14-Dec-07	17-Jan-08	16500.00	=""	="Positive Solutions Pty Ltd"	04-Feb-08 04:19 PM	

+="CN57678"	"Positions vacant invoice CM08010089 Product No.M012942"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Advertising"	18-Jan-08	23-Jan-08	17138.07	=""	="HMA Blaze Pty Limited"	04-Feb-08 04:19 PM	

+="CN57695"	"Removalist Fees"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Packing supplies"	11-Jan-08	11-Jan-08	19476.60	=""	="Grace Removals Group"	04-Feb-08 04:22 PM	

+="CN57709"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	04-Feb-08	17423.50	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:19 PM	

+="CN57714"	"Procurement of:  AX,PICK HEAD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	18750.00	=""	="A & R GLENN ENGINEERING Pty Ltd"	04-Feb-08 06:19 PM	

+="CN57715"	"Procurement of:  WINCH,DRUM,HAND OPERATED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	17891.00	=""	="SURVIVAL OFFSHORE SYSTEMS Pty LT"	04-Feb-08 06:20 PM	

+="CN57716"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	16732.95	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 06:20 PM	

+="CN57745"	"Procurement of:  AMPLIFIER-MIXER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	13-Feb-08	19250.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:23 PM	

+="CN57757"	"Procurement of:  STRAP,SAFETY,INDUSTRIAL;  CABLE CARRIER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Jul-07	04-Feb-08	18242.50	=""	="FALLRIGHT INTERNATIONAL"	04-Feb-08 06:24 PM	

+="CN57760"	"Procurement of:  CEREMONIAL CRUCIFIX"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	29-Feb-08	17214.96	=""	="HAMILTON HONOUR BOARDS & TROPHIE"	04-Feb-08 06:25 PM	

+="CN57763"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	16500.00	=""	="ANOVER HOLDINGS Pty Ltd"	04-Feb-08 06:25 PM	

+="CN57782"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	18600.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57787"	"Procurement of:  LEVER,ACTUATING,STOP MECHANISM"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Aug-07	15-Feb-08	18350.00	=""	="ADI"	04-Feb-08 06:28 PM	

+="CN57794"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	18156.51	=""	="ADI Ltd"	04-Feb-08 06:29 PM	

+="CN57796"	"Procurement of:  REGULATOR ASSEMBLY, EXTINGUISHER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	04-Feb-08	19357.80	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:29 PM	

+="CN57812"	"Procurement of:  STOPPER ASSEMBLY,CHAIN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Aug-07	04-Feb-08	16874.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:31 PM	

+="CN57825"	"Procurement of:  REGULATOR ASSEMBLY, EXTINGUISHER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Aug-07	04-Feb-08	19357.80	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:32 PM	

+="CN57828"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Aug-07	04-Feb-08	16374.00	=""	="BALE ENGINEERING CO Pty Ltd"	04-Feb-08 06:33 PM	

+="CN57833"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Sep-07	04-Feb-08	16212.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 06:33 PM	

+="CN57837"	"Procurement of:  RING SET,PISTON;  PUMP,FUEL,CAM ACTUATED;  COVER;  RING SET,PISTON"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	16305.44	=""	="HATZ AUSTRALIA Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57839"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Aug-07	08-Feb-08	17822.76	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57841"	"Procurement of:  CLOTH,LAMINATED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	16440.00	=""	="NOLAN O'ROURKE & CO Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57850"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	29-Feb-08	19868.76	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:36 PM	

+="CN57854"	"Procurement of:  REFRIGERATION,MODULE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	28-Mar-08	19940.73	=""	="HILL EQUIPMENT & REFRIGERATION"	04-Feb-08 06:36 PM	

+="CN57860"	"Procurement of:  CABLE,SPECIAL PURPOSE,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Sep-07	04-Feb-08	16650.00	=""	="BAMBACH WIRES & CABLES Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57866"	"Procurement of:  OSCILLATING GROUP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Sep-07	04-Feb-08	18260.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:38 PM	

+="CN57884"	"Procurement of:  DRILL,PNEUMATIC,PORTABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	04-Feb-08	17250.00	=""	="ATLAS COPCO AUSTRALIA Pty Ltd"	04-Feb-08 06:40 PM	

+="CN57886"	"Procurement of:  PIN THRUST;  CUSHIONING MATERIAL,PACKAGING;  VALVE,POPPET,ENGINE;  GUIDE,VALVE STEM"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	04-Feb-08	18652.59	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:40 PM	

+="CN57897"	"Procurement of:  GRILLE,METAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	04-Feb-08	19170.00	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:41 PM	

+="CN57903"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	26-Feb-08	19310.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 06:42 PM	

+="CN57913"	"Procurement of:  PELICAN HOOK AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	04-Feb-08	19648.00	=""	="RONSTAN INTERNATIONAL Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57916"	"Procurement of:  INTERCONNECTING BOX;  INTERCONNECTING BOX"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	01-Jul-08	19337.59	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57917"	"Procurement of:  PROBE FIXING KIT AS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	05-Feb-08	18800.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	04-Feb-08 06:44 PM	

+="CN57936"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Oct-07	10-Feb-08	18000.00	=""	="PUMPSEAL SALES Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57940"	"Procurement of:  O-RING;  O-RING;  HEAD BAND, BREATHIN;  TOOL KIT,GENERAL MECHANIC'S;  MOUTHPIECE;  BAG,BREATHING,DIVER'S; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Oct-07	04-Feb-08	16758.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57944"	"Procurement of:  DRYING TUMBLER,LAUNDRY,COMMERCIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Oct-07	04-Feb-08	16800.00	=""	="FALCON HERMETIC & ELECTRICAL Pty"	04-Feb-08 06:47 PM	

+="CN57949"	"Procurement of:  GASKET;  O-RING;  O-RING;  GASKET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Oct-07	27-Mar-08	18574.34	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:47 PM	

+="CN57952"	"Procurement of:  PRESS,HYDRAULIC,PORTABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Oct-07	09-May-08	17646.34	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:48 PM	

+="CN57955"	"Procurement of:  BAG,PLASTIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	16000.00	=""	="TELECHNICS Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57958"	"Procurement of:  HEATER,WATER,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	18343.36	=""	="A S C Pty Ltd"	04-Feb-08 06:48 PM	

+="CN57979"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Oct-07	29-Feb-08	17620.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:51 PM	

+="CN57982"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	16500.00	=""	="I B C WATER TREATMENT"	04-Feb-08 06:51 PM	

+="CN57992"	"Procurement of:  PARTS KIT,SEAL REPL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	17050.00	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:52 PM	

+="CN57999"	"Procurement of:  SEAL ASSEMBLY,SHAFT,SPRING LOADED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Oct-07	04-Feb-08	17000.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:53 PM	

+="CN58003"	"Procurement of:  REFRIGERATOR,MECHANICAL,FOOD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Oct-07	04-Feb-08	19120.00	=""	="FALCON HERMETIC & ELECTRICAL Pty"	04-Feb-08 06:54 PM	

+="CN58008"	"Procurement of:  CABLE ASSEMBLY SET,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	28-Feb-08	17321.86	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 06:54 PM	

+="CN58013"	"Procurement of:  VALVE,GLOBE;  VALVE,REGULATING,FLUID PRESSURE;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	17360.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58014"	"Procurement of:  IMPELLER,PUMP,CENTRIFUGAL;  MOUNT,RESILIENT,GENERAL PURPOSE;  SHAFT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	17448.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58015"	"Procurement of:  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	04-Feb-08	17280.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58023"	"Procurement of:  CONTACTOR,MAGNETIC;  CONTACTOR,MAGNETIC;  CONTACTOR,MAGNETIC;  CIRCUIT BREAKER;  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	25-Feb-08	17284.50	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:56 PM	

+="CN58025"	"Procurement of:  BOWL,WATER CLOSET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	28-Feb-08	17040.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	04-Feb-08 06:56 PM	

+="CN58030"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	17-Jul-08	18125.80	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58035"	"Procurement of:  VALVE,LINEAR,DIRECTIONAL CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	30-Jun-08	16299.01	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 06:58 PM	

+="CN58041"	"Procurement of:  IMPELLER,PUMP,CENTRIFUGAL;  SEAL ASSEMBLY,SHAFT,SPRING LOADED;  BUSH HOLDER AND;  SHAFT,PUMP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	19519.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:58 PM	

+="CN58043"	"Procurement of:  STEM,FLUID VALVE;  COVER,FLUID FILTER;  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	16907.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:58 PM	

+="CN58044"	"Procurement of:  ATTENUATOR,FIXED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	19637.05	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 06:59 PM	

+="CN58048"	"Procurement of:  PARTS KIT,BEARING REPLACEMENT,MECHANICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	18924.00	=""	="A & G PRICE Ltd"	04-Feb-08 06:59 PM	

+="CN58050"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	17587.42	=""	="H I FRASER Pty Ltd"	04-Feb-08 06:59 PM	

+="CN58075"	"Procurement of:  FEDER;  SPRING,FLAT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	04-Feb-08	18960.41	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:02 PM	

+="CN58083"	"Procurement of:  FUSE ASSORTMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	04-Feb-08	16365.60	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:03 PM	

+="CN58085"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	04-Feb-08	17961.90	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 07:04 PM	

+="CN58094"	"Procurement of:  CHAIR,PEDESTAL,SHIPBOARD BRIDGE WING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	04-Feb-08	16908.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	04-Feb-08 07:05 PM	

+="CN58105"	"Procurement of:  CHAIR,PEDESTAL,SHIPBOARD BRIDGE WING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	14-Feb-08	16908.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58109"	"Procurement of:  FUSE,INCLOSED LINK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	10-Feb-08	19000.00	=""	="SWE-CHECK Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58112"	"Procurement of:  FIXTURE,LIGHTING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	04-Feb-08	16760.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:07 PM	

+="CN58121"	"Procurement of:  VALVE,PLUG"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	04-Feb-08	16055.90	=""	="PALL AUSTRALIA"	04-Feb-08 07:08 PM	

+="CN58127"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Nov-07	23-Jul-08	17160.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:09 PM	

+="CN58133"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	05-Feb-08	18130.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:09 PM	

+="CN58149"	"Procurement of:  CYLINDER ASSEMBLY,A"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	21-Apr-08	18986.37	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:11 PM	

+="CN58150"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	04-Feb-08	16485.05	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58164"	"Procurement of:  COUPLING,SHAFT,FLEXIBLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	19-May-08	18880.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:13 PM	

+="CN58174"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	13-Feb-08	17349.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:14 PM	

+="CN58199"	"Procurement of:  CONNECTING ROD,PISTON"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	08-Dec-07	24-May-08	18828.24	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:17 PM	

+="CN58201"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	06-Sep-08	16943.60	=""	="ADI Ltd"	04-Feb-08 07:17 PM	

+="CN58209"	"Procurement of:  INDICATOR,ELECTRICAL TACHOMETER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Mar-08	17208.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:18 PM	

+="CN58213"	"Procurement of:  PICK-UP TUBE ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	18-Mar-08	16396.50	=""	="CHUBB FIRE Pty Ltd"	04-Feb-08 07:19 PM	

+="CN58216"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	26-Mar-08	18276.30	=""	="AMBIT INSTRUMENTS Pty Ltd"	04-Feb-08 07:19 PM	

+="CN58217"	"Procurement of:  CONTROL-MONITOR SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	02-Mar-08	19641.80	=""	="COMCATER INTERNATIONAL Pty Ltd"	04-Feb-08 07:19 PM	

+="CN58223"	"Procurement of:  GAGE,COMPOUND PRESSURE-VACUUM,DIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	27-Feb-08	18286.08	=""	="NOVAMARINE INSTRUMENTS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58225"	"Procurement of:  SWITCH,PUSHBUTTON/INDICATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	23-Mar-08	19401.80	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:20 PM	

+="CN58232"	"Procurement of:  COMPUTER,DIGITAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	04-Feb-08	16703.28	=""	="TENIX DEFENCE Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58233"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Dec-07	08-Mar-08	16600.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58234"	"Procurement of:  FILTER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Dec-07	07-Mar-08	17697.84	=""	="TENIX DEFENCE Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58245"	"Procurement of:  ELBOW,FLANGE TO BOSS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	27-Jul-08	19663.53	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:22 PM	

+="CN58249"	"Procurement of:  SWITCH,ELECTRONIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	03-Oct-08	17627.06	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:23 PM	

+="CN58250"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	17-Jul-08	16280.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:23 PM	

+="CN58279"	"Procurement of:  TRANSLATOR,SIGNAL DATA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	19-Feb-08	17160.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58282"	"Procurement of:  TRANSMITTER,TEMPERATURE,ELECTRICAL;  O-RING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Jul-07	04-Feb-08	17550.20	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:27 PM	

+="CN58283"	"Procurement of:  MICROPHONE,DYNAMIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Jul-07	04-Feb-08	16159.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:27 PM	

+="CN58291"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	07-May-08	18965.09	=""	="A S C Pty Ltd"	04-Feb-08 07:28 PM	

+="CN58292"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	04-Feb-08	16213.91	=""	="A S C Pty Ltd"	04-Feb-08 07:28 PM	

+="CN58295"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	04-Feb-08	16597.20	=""	="BERENDSEN FLUID POWER Pty Ltd"	04-Feb-08 07:28 PM	

+="CN58297"	"Procurement of:  CAP,ELECTRICAL;  CAP,ELECTRICAL;  CAP,ELECTRICAL;  CAP,ELECTRICAL;  CAP,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	19785.89	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:29 PM	

+="CN58310"	"Procurement of:  REFLECTOR,LIGHT;  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	04-Feb-08	17176.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:30 PM	

+="CN58325"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	17550.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58336"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Aug-07	04-Feb-08	17259.10	=""	="A S C Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58340"	"Procurement of:  INSULATOR,STANDOFF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	18-Feb-08	17286.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:34 PM	

+="CN58342"	"Procurement of:  PISTON AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	18230.10	=""	="A S C Pty Ltd"	04-Feb-08 07:34 PM	

+="CN58359"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	16107.18	=""	="ADI Ltd"	04-Feb-08 07:36 PM	

+="CN58368"	"Procurement of:  FILLING LINE ASSEMBLY;  TEE,PIPE;  ADAPTER,STRAIGHT,PIPE TO BOSS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Aug-07	29-Mar-08	16096.74	=""	="A S C Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58375"	"Procurement of:  FILTER ELEMENT,FLUID;  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	19923.59	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:38 PM	

+="CN58384"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	04-Feb-08	18255.00	=""	="MEMO COMMUNICATIONS CO Pty Ltd"	04-Feb-08 07:39 PM	

+="CN58394"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Sep-07	04-Feb-08	16212.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 07:40 PM	

+="CN58395"	"Procurement of:  INDICATOR,ANGLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Aug-07	04-Feb-08	16137.84	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58407"	"Procurement of:  AMMETER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	22-Mar-08	17183.62	=""	="A S C Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58415"	"Procurement of:  BLADDER,ACCUMULATOR,HYDRAULIC;  NUT,PLAIN,HEXAGON;  LOCKING PLATE,NUT AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	04-Feb-08	18555.74	=""	="A S C Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58423"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	04-Feb-08	17440.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58433"	"Procurement of:  VALVE,STOP;  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	18164.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:45 PM	

+="CN58456"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	17785.71	=""	="MAN B&W DIESEL AUSTRALIA Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58457"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	07-Jul-08	18328.00	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58468"	"Procurement of:  ALARM,GAS,AUTOMATIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	19800.00	=""	="AIR MET SCIENTIFIC Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58480"	"Procurement of:  LIGHT,BED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	04-Feb-08	17000.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:51 PM	

+="CN58485"	"Procurement of:  TEST KIT, AIR CYLINDER AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	25-Feb-08	16425.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58491"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING;  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	04-Apr-08	18204.48	=""	="A S C Pty Ltd"	04-Feb-08 07:52 PM	

+="CN58494"	"Procurement of:  STRAP,WEBBING;  TIE DOWN,CARGO,VEHICLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	10-Apr-08	16279.87	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:52 PM	

+="CN58530"	"SUBSCRIPTIONS"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Printed publications"	20-Dec-07	20-Dec-07	17695.37	=""	="LEXISNEXIS MEDIA - LEXIS"	05-Feb-08 09:27 AM	

+="CN58535"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Legal services"	20-Dec-07	20-Dec-07	16500.00	=""	="CRAIG LENEHAN"	05-Feb-08 09:27 AM	

+="CN58536"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Legal services"	20-Dec-07	20-Dec-07	16500.00	=""	="CHRISTINE ADAMSON SC"	05-Feb-08 09:27 AM	

+="CN58582"	"Motor Vehicle Parts."	="Department of Defence"	05-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Feb-08	06-Mar-08	17785.25	=""	="Mercedes Benz Aust. Pacific"	05-Feb-08 11:48 AM	

+="CN58586"	" Construstion work - 155 Hugh St, Townsville    "	="CRS Australia"	05-Feb-08	="Renovation of buildings or landmarks or monuments"	22-Jan-08	31-Jan-08	18302.20	=""	="Australian Building Consultants"	05-Feb-08 11:54 AM	

+="CN58594"	" Constrution Plywood "	="Department of Defence"	05-Feb-08	="Wood"	05-Feb-08	15-Feb-08	19392.90	=""	="PJC Distributors"	05-Feb-08 01:20 PM	

+="CN58599"	"Provision of  advertising services"	="Department of Parliamentary Services"	05-Feb-08	="Advertising"	31-Jan-08	03-Mar-08	16947.32	=""	="hma Blaze Pty Ltd"	05-Feb-08 01:57 PM	

+="CN58611"	"Energy consumption, measuring and reporting services"	="Department of Parliamentary Services"	05-Feb-08	="Energy conservation"	21-Dec-06	31-Dec-08	19177.80	="DPS06123"	="TAC Pacific Pty Ltd"	05-Feb-08 01:58 PM	

+="CN58630"	"Post implementation Finance system"	="Department of the House of Representatives"	05-Feb-08	="Software"	01-Jul-07	30-Jun-08	18280.00	=""	="The Australian & New Zealand School of Government"	05-Feb-08 02:07 PM	

+="CN58649"	" Provisioni of Secretariat Support Services. "	="National Blood Authority"	05-Feb-08	="Business administration services"	24-Dec-07	30-Jun-08	20000.00	=""	="Kayaldo Pty Ltd trading as Commerce Management"	05-Feb-08 03:15 PM	

+="CN58728"	"Consultancy services to provide advice in relation to the use of Organisational Suitability Assessments for staff within Intelligence Organisations."	="Office of the Inspector-General of Intelligence and Security"	06-Feb-08	="Psychologists services"	31-Aug-07	21-Jan-08	17105.00	=""	="Workplace Research Associates"	06-Feb-08 02:55 PM	

+="CN58756"	"LIGHT, MARKER, DISTRESS"	="Defence Materiel Organisation"	06-Feb-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Mar-08	16439.50	=""	="RFD (AUSTRALIA) PTY LTD"	06-Feb-08 04:28 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val20000to30000.xls
@@ -1,1 +1,211 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57484"	"    Relocation Services    "	="Therapeutic Goods Administration"	04-Feb-08	="Personal and Domestic Services"	31-Jan-08	30-Jun-08	22000.00	=""	="Sirva Relocation Pty Ltd"	04-Feb-08 08:52 AM	

+="CN57488"	"Notebook and accessories"	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	18-Jan-08	18-Feb-08	22572.00	=""	="DELL Computer Pty Ltd"	04-Feb-08 09:05 AM	

+="CN57493"	"    ISYS:Web plus Rich HTML - 400 seat plus maintenance    "	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	30-Jan-08	29-Feb-08	26400.00	=""	="ISYS Search Software"	04-Feb-08 09:25 AM	

+="CN57499"	" Election Conference Venue "	="Australian Electoral Commission"	04-Feb-08	="Hotels and lodging and meeting facilities"	12-Mar-08	14-Mar-08	27500.00	=""	="Australis Noosa Lakes Resort"	04-Feb-08 10:50 AM	

+="CN57508"	"ATO WOODHEAD GALLERIA DISPLAY"	="Australian Taxation Office"	04-Feb-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	31-Jan-08	22033.88	=""	="XEED PTY LTD"	04-Feb-08 10:52 AM	

+="CN57509"	"PRINTING VISION AUST"	="Australian Taxation Office"	04-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Jan-08	31-Jan-08	27432.47	=""	="VISION AUSTRALIA LTD"	04-Feb-08 10:52 AM	

+="CN57510"	"WHITE PAGES DIRECT ACCESS"	="Australian Taxation Office"	04-Feb-08	="Published Products"	17-Jan-08	01-Feb-08	21584.02	=""	="SENSIS PTY LTD"	04-Feb-08 10:52 AM	

+="CN57511"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	04-Dec-07	02-Dec-08	29545.20	=""	="TOTO BUSINESS SOLUTIONS PTY LTD"	04-Feb-08 10:53 AM	

+="CN57514"	"Legal Services"	="Australian Electoral Commission"	04-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	30000.00	="AEC06/032"	="Australian Government Solicitor"	04-Feb-08 11:09 AM	

+="CN57515"	"SUSPENDERS, INDIVIDUAL EQUIPMENT BELT, RIGHT & LEFT SHOULDER HARNESS"	="Defence Materiel Organisation"	04-Feb-08	="Belts or suspenders"	04-Feb-08	30-Mar-08	26070.00	="CC1T2L"	="ADVENTURE ONE PTY LTD"	04-Feb-08 11:13 AM	

+="CN57545"	"PRIVATED PLATED VEHICLE LEASE"	="Administrative Appeals Tribunal"	04-Feb-08	="Passenger motor vehicles"	01-Feb-08	31-Jan-10	29802.70	=""	="LEASE PLAN AUSTRALIA PTY LTD"	04-Feb-08 02:52 PM	

+="CN57571-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	06-Aug-07	17-Aug-07	21450.00	=""	="Curam Software Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57599"	"Host Exp 30/06/2007 - 30/06/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Jun-07	30-Jun-08	20768.00	=""	="Open System Australia Pty Ltd"	04-Feb-08 03:15 PM	

+="CN57610"	" AIRCRAFT SPARES  NSN 1680-66-138-2544 , PAD ASSY , QTY 40. "	="Defence Materiel Organisation"	04-Feb-08	="Military transport helicopters"	04-Feb-08	29-Feb-08	29296.52	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	04-Feb-08 03:31 PM	

+="CN57630"	"Supply & installation os AV equipment to the TOP Auditorium"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Audio and visual presentation and composing equipment"	23-Jan-08	24-Jan-08	22228.98	=""	="ServicePoint Australia Pty Ltd"	04-Feb-08 04:13 PM	

+="CN57632"	"Autism Spectrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Ron Hunt"	04-Feb-08 04:13 PM	

+="CN57633"	"Accomodation and Breakfast for GBM Induction"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Travel and Food and Lodging and Entertainment Services"	15-Jan-08	31-Mar-08	22400.00	=""	="Darwin Central Hotel"	04-Feb-08 04:13 PM	

+="CN57638"	"Provision of Personnel"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	15-Feb-08	27500.00	=""	="The Green & Green Group Pty Ltd"	04-Feb-08 04:14 PM	

+="CN57640"	"Courier Services 08"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	27000.00	=""	="TNT Australia P/L"	04-Feb-08 04:14 PM	

+="CN57644"	"IT Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Hardware"	31-Jan-08	30-Mar-08	20847.57	=""	="COMPUTERCORP (OPERATIONS)"	04-Feb-08 04:15 PM	

+="CN57645"	"$6,800 Footprints in Time trees"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	22440.00	=""	="INTANDEM"	04-Feb-08 04:15 PM	

+="CN57646"	"Autism Spectrum Disorders Expert Reference Group"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	30000.00	=""	="Professor Tony Attwood"	04-Feb-08 04:15 PM	

+="CN57647"	"Autism Spectrum Disorders Expert Reference Group"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	30000.00	=""	="Dr Jacqueline Roberts"	04-Feb-08 04:15 PM	

+="CN57648"	"Newspaper advertising-Australia/Switzerland"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Printed media"	31-Jan-08	30-Jun-08	28485.25	=""	="HMA Blaze Pty Limited"	04-Feb-08 04:15 PM	

+="CN57655"	"Reconciliation of NTER Assetts Register"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Business administration services"	29-Jan-08	30-May-08	22275.00	=""	="Acumen Alliance ACT Pty Ltd"	04-Feb-08 04:16 PM	

+="CN57659"	"IT Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Hardware"	30-Jan-08	30-Jan-08	28970.16	=""	="TWINHEAD - Twin Resources PTY LTD"	04-Feb-08 04:17 PM	

+="CN57660"	"Positions vacant invoice CM08010087 Product No.M012930"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Advertising"	18-Jan-08	23-Jan-08	28965.49	=""	="HMA Blaze Pty Limited"	04-Feb-08 04:17 PM	

+="CN57661"	"Positions vacant invoice CM08010088 Product No.M012931"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Advertising"	18-Jan-08	23-Jan-08	24506.20	=""	="HMA Blaze Pty Limited"	04-Feb-08 04:17 PM	

+="CN57662"	"Quarterly account"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Photographic services"	04-Oct-07	23-Jan-08	20640.68	=""	="FUJI XEROX AUSTRALIA PTY LTD"	04-Feb-08 04:17 PM	

+="CN57663"	"Rental L11,565 Bourke St Mel. Inv.718014 Includes Cr Inv.718015"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	01-Feb-08	01-Feb-08	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Feb-08 04:17 PM	

+="CN57667"	"Removalist Fees"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Transport operations"	04-Jan-08	04-Jan-08	22567.50	=""	="Balfran Removals"	04-Feb-08 04:18 PM	

+="CN57670"	"Rent For January 08"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	17-Dec-07	14-Jan-08	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Feb-08 04:18 PM	

+="CN57673"	"property lease 500 Collins St Melbourne 3000"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	01-Jan-08	16-Jan-08	29320.20	=""	="ECS Property Group"	04-Feb-08 04:19 PM	

+="CN57677"	"Rental L11,565 Bourke St Mel."	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	15-Jan-08	21-Jan-08	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Feb-08 04:19 PM	

+="CN57681"	"Provision of APS 4 for Learning Centre"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	14-Jan-08	30-Jun-08	30000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Feb-08 04:20 PM	

+="CN57686"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Aideen Gallagher"	04-Feb-08 04:21 PM	

+="CN57687"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Gail Mulcair"	04-Feb-08 04:21 PM	

+="CN57688"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Nicole Rogerson"	04-Feb-08 04:21 PM	

+="CN57690"	"Indigenous Affairs annual report"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Paper materials"	10-Jan-08	25-Jan-08	24473.90	=""	="Pirion Pty Limited"	04-Feb-08 04:21 PM	

+="CN57694"	"Removalist Fee - Uplift Peter Ryan from Geraldton WA to Nulunbuy NT"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Transport operations"	11-Jan-08	18-Jan-08	21516.00	=""	="ALLIED PICKFORDS BUSINESS"	04-Feb-08 04:22 PM	

+="CN57696"	"Removalist Fees"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Transportation and Storage and Mail Services"	11-Jan-08	11-Jan-08	21739.85	=""	="Grace Removals Group"	04-Feb-08 04:22 PM	

+="CN57697"	"Examination of Warringu Aboriginal and Torres Strait Islanders Corporation"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management advisory services"	11-Jan-08	21-Jan-08	26400.00	=""	="LINDSAY J. ROBERTS. FCA"	04-Feb-08 04:22 PM	

+="CN57721"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	26970.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:20 PM	

+="CN57744"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	28960.10	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:23 PM	

+="CN57746"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	29600.00	=""	="AUSTRALIAN ELECTRONIC SERVICES P"	04-Feb-08 06:23 PM	

+="CN57750"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	04-Feb-08	20890.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:24 PM	

+="CN57754"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Jul-07	04-Feb-08	22528.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	04-Feb-08 06:24 PM	

+="CN57756"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	04-Feb-08	24768.00	=""	="MILSPEC SERVICES Pty Ltd"	04-Feb-08 06:24 PM	

+="CN57759"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	04-Feb-08	23485.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 06:25 PM	

+="CN57761"	"Procurement of:  PIN,NET,LAUNDRY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	04-Feb-08	24000.00	=""	="COBRO Pty Ltd"	04-Feb-08 06:25 PM	

+="CN57762"	"Procurement of:  RING BUOY,LIFESAVING,CEREMONIAL BLANK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	20570.00	=""	="GREG CORNISH SIGNS Pty Ltd"	04-Feb-08 06:25 PM	

+="CN57766"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	29537.00	=""	="AUSTRALIAN TECHNOLOGY"	04-Feb-08 06:26 PM	

+="CN57775"	"Procurement of:  TERMINAL JUNCTION BLOCK,SECTIONAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	25500.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57779"	"Procurement of:  CLOTH,LAMINATED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	25900.00	=""	="NOLAN O'ROURKE & CO Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57780"	"Procurement of:  DIVER'S SUIT;  DIVER'S SUIT;  DIVER'S SUIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	25175.00	=""	="AQUANAUT Pty Ltd"	04-Feb-08 06:27 PM	

+="CN57790"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	26050.74	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:28 PM	

+="CN57795"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	26100.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:29 PM	

+="CN57806"	"Procurement of:  SHACKLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	08-Aug-07	04-Feb-08	23449.80	=""	="RONSTAN INTERNATIONAL Pty Ltd"	04-Feb-08 06:30 PM	

+="CN57808"	"Procurement of:  LINK,CHAIN,DETACHABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	04-Feb-08	23985.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:31 PM	

+="CN57815"	"Procurement of:  CLEANING COMPOUND,ALKALI,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	04-Feb-08	22505.00	=""	="H I FRASER Pty Ltd"	04-Feb-08 06:31 PM	

+="CN57817"	"Procurement of:  DISPENSER,BEVERAGE,MECHANICALLY COOLED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Aug-07	04-Feb-08	22575.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:32 PM	

+="CN57820"	"Procurement of:  KETTLE,STEAM JACKETED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Aug-07	05-Feb-08	25300.00	=""	="COMCATER INTERNATIONAL Pty Ltd"	04-Feb-08 06:32 PM	

+="CN57821"	"Procurement of:  WEIGHT,DIVERS;  SUIT, DIVER'S PROTECTIVE;  GLOVES,DIVERS';  SUIT, DIVER'S PROTECTIVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Aug-07	04-Feb-08	24846.08	=""	="CAPE BYRON IMPORTS & WHOLESALE *"	04-Feb-08 06:32 PM	

+="CN57823"	"Procurement of:  TAPE,INSULATION,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Aug-07	04-Feb-08	29000.00	=""	="J BLACKWOOD & SON Ltd"	04-Feb-08 06:32 PM	

+="CN57836"	"Procurement of:  SLEEVE,LIFEBUOY LIGHT;  SLEEVE,LIFEBUOY LIGHT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Aug-07	04-Feb-08	21141.00	=""	="ANOVER HOLDINGS Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57845"	"Procurement of:  HELMET,WELDER'S"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Aug-07	04-Feb-08	23500.00	=""	="SUPPLY CORPORATION Pty Ltd"	04-Feb-08 06:35 PM	

+="CN57848"	"Procurement of:  BELTING,V,ADJUSTABLE LINK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Aug-07	04-Feb-08	27600.00	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 06:35 PM	

+="CN57859"	"Procurement of:  DETECTOR,GAS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Sep-07	04-Feb-08	22275.00	=""	="BIOLAB (AUST) Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57862"	"Procurement of:  REEL AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	04-Feb-08	24850.00	=""	="ANOVER HOLDINGS Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57865"	"Procurement of:  COVERALLS,ANTI-EXPOSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	04-Feb-08	28500.00	=""	="AQUATERRO"	04-Feb-08 06:38 PM	

+="CN57870"	"Procurement of:  TEST KIT, BEARING CLEARANCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	04-Feb-08	20562.90	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:38 PM	

+="CN57873"	"Procurement of:  VALVE,GLOBE;  VALVE,FLOAT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	21641.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:38 PM	

+="CN57875"	"Procurement of:  MANIFOLD,FUEL FEEDER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	26636.65	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:39 PM	

+="CN57878"	"Procurement of:  INDICATOR,DISTANCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	25620.00	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57879"	"Procurement of:  SCALE REMOVING COMPOUND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	23076.00	=""	="BERALON Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57893"	"Procurement of:  BOX,COLLECTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	04-Feb-08	26201.94	=""	="H I FRASER Pty Ltd"	04-Feb-08 06:41 PM	

+="CN57901"	"Procurement of:  LIGHT,CHEMILUMINESCENT;  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Sep-07	04-Feb-08	23400.00	=""	="PAINS-WESSEX AUST Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57906"	"Procurement of:  SLIP,RIGGING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	04-Feb-08	26200.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57918"	"Procurement of:  RING,PISTON;  RETAINER,SEAL;  WRENCH,RATCHET;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	14-Mar-08	20767.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:44 PM	

+="CN57920"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	04-Feb-08	26783.40	=""	="AMBIT INSTRUMENTS Pty Ltd"	04-Feb-08 06:44 PM	

+="CN57925"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	04-Feb-08	22438.40	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:44 PM	

+="CN57926"	"Procurement of:  FILTERELEMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	09-Mar-08	24792.00	=""	="PALL AUSTRALIA"	04-Feb-08 06:45 PM	

+="CN57938"	"Procurement of:  INSULATION BOARD,THERMAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Oct-07	04-Feb-08	27600.00	=""	="AUSTRALIAN THERMAL INSULATIONS"	04-Feb-08 06:46 PM	

+="CN57962"	"Procurement of:  MICROPHONE,DYNAMIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	04-Feb-08	29660.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	04-Feb-08 06:49 PM	

+="CN57964"	"Procurement of:  CARTRIDGE,DEHYDRATOR;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	04-Feb-08	25610.00	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	04-Feb-08 06:49 PM	

+="CN57974"	"Procurement of:  CHARGER,BATTERY;  SWITCH,TOGGLE;  FIXTURE,LIGHTING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	26594.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 06:50 PM	

+="CN57980"	"Procurement of:  FILTER ELEMENT,FLUID;  FILTER ELEMENT,FLUID;  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Oct-07	04-Feb-08	28850.20	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:51 PM	

+="CN57981"	"Procurement of:  HOSE ASSEMBLY,AIR BREATHING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	23985.00	=""	="PREECE T D AND CO Pty Ltd"	04-Feb-08 06:51 PM	

+="CN57990"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	22310.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 06:52 PM	

+="CN58002"	"Procurement of:  HOUSING,PROTECTIVE,CAMERA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	23-Apr-08	23460.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:54 PM	

+="CN58009"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	29960.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:54 PM	

+="CN58011"	"Procurement of:  PARTS KIT,HEATING ELEMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	20797.20	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:55 PM	

+="CN58016"	"Procurement of:  ACCUMULATOR,PNEUMATIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	29220.00	=""	="PACIFIC AERODYNE Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58022"	"Procurement of:  FLAG,NATIONAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	28000.00	=""	="FOXCRAFT FLAGS"	04-Feb-08 06:56 PM	

+="CN58029"	"Procurement of:  CRATE,SHIPPING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	23300.00	=""	="A & G PRICE Ltd"	04-Feb-08 06:57 PM	

+="CN58033"	"Procurement of:  TUNING UNIT,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	05-May-08	20100.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58034"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	09-May-08	28791.51	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58037"	"Procurement of:  VALVE,DIAPHRAGM,STOP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	25180.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	04-Feb-08 06:58 PM	

+="CN58039"	"Procurement of:  HOSE ASSEMBLY,AIR BREATHING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	26838.00	=""	="PREECE T D AND CO Pty Ltd"	04-Feb-08 06:58 PM	

+="CN58047"	"Procurement of:  TRACKBALL,DATA ENTRY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Nov-07	04-Feb-08	21456.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 06:59 PM	

+="CN58053"	"Procurement of:  THERMOSTAT,FLOW CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	21062.00	=""	="PALL AUSTRALIA"	04-Feb-08 07:00 PM	

+="CN58058"	"Procurement of:  COOLER,FLUID,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	04-Feb-08	28845.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:00 PM	

+="CN58069"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	29-Feb-08	24887.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:02 PM	

+="CN58074"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	08-Mar-08	29109.08	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:02 PM	

+="CN58076"	"Procurement of:  MAST AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	04-Feb-08	23820.00	=""	="ADI Ltd NAVAL NEWCASTLE"	04-Feb-08 07:02 PM	

+="CN58078"	"Procurement of:  SHAPE,DAY,MARITIME;  FLAG,IDENTIFICATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	04-Feb-08	25100.00	=""	="HARRY WEST FLAGS"	04-Feb-08 07:03 PM	

+="CN58093"	"Procurement of:  CYLINDER,COMPRESSED GAS,HELIUM-OXYGEN;  CYLINDER,COMPRESSED GAS,OXYGEN,AVIATOR'S;  CYLINDER,COMPRESSED GAS,OXYGEN,AVIATOR'S"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	04-Feb-08	20860.80	=""	="BOC Ltd"	04-Feb-08 07:04 PM	

+="CN58104"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	04-Feb-08	24626.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58111"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Nov-07	11-Mar-08	22254.40	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:07 PM	

+="CN58117"	"Procurement of:  TOOL KIT,INTERNAL COMBUSTION ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	13-Feb-08	22830.06	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:07 PM	

+="CN58124"	"Procurement of:  HOLDER,OPTICAL ELEMENT;  HOLDER,OPTICAL ELEMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Nov-07	04-Feb-08	26520.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	04-Feb-08 07:08 PM	

+="CN58125"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  REPEATER,LIGHT SIGNAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Nov-07	24-May-08	21180.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:08 PM	

+="CN58135"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	07-May-08	22593.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:09 PM	

+="CN58156"	"Procurement of:  STRAP,SAFETY,INDUSTRIAL;  GOGGLES,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	04-Feb-08	27606.75	=""	="PROTECTOR ALSAFE Pty Ltd"	04-Feb-08 07:12 PM	

+="CN58159"	"Procurement of:  BEARING,NEEDLE ROLLER,JOURNAL;  PISTON ASSEMBLY,COMPRESSOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Feb-08	25744.26	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:12 PM	

+="CN58160"	"Procurement of:  REDUCER,HOSE,FIRE FIGHTING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	25-Feb-08	22320.00	=""	="FIRE RESPONSE Pty Ltd"	04-Feb-08 07:12 PM	

+="CN58163"	"Procurement of:  KIT,OVERHAUL JOINT;  PISTON,COMPRESSOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	04-Feb-08	26100.62	=""	="COMPAIR (A/ASIA) Ltd"	04-Feb-08 07:13 PM	

+="CN58168"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	13-Mar-08	29000.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:13 PM	

+="CN58169"	"Procurement of:  DIVER'S SUIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Mar-08	20275.68	=""	="BALDWIN ENTERPRISES"	04-Feb-08 07:13 PM	

+="CN58176"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	04-Feb-08	28976.50	=""	="TECHNITEMP WA"	04-Feb-08 07:14 PM	

+="CN58189"	"Procurement of:  LINK,CHAIN,DETACHABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	04-Feb-08	20616.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 07:16 PM	

+="CN58191"	"Procurement of:  MESZVORRICHTUNG, DR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	03-Mar-08	28284.45	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:16 PM	

+="CN58192"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	03-Mar-08	25367.76	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:16 PM	

+="CN58202"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	27-Jul-08	27152.80	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:17 PM	

+="CN58203"	"Procurement of:  FLIGHT DECK MARSHALLING SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	18-May-08	23492.50	=""	="ADI Ltd"	04-Feb-08 07:17 PM	

+="CN58206"	"Procurement of:  TRANSMITTER,TEMPERATURE,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Mar-08	23246.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:18 PM	

+="CN58212"	"Procurement of:  PUSH ROD,ENGINE POPPET VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Feb-08	21897.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:18 PM	

+="CN58215"	"Procurement of:  CONTROL-MONITOR SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Feb-08	20445.45	=""	="COMCATER INTERNATIONAL Pty Ltd"	04-Feb-08 07:19 PM	

+="CN58222"	"Procurement of:  MEAT SLICING MACHINE,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	23-Mar-08	26581.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:20 PM	

+="CN58224"	"Procurement of:  PLASTIC SHEET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	29-Feb-08	29700.00	=""	="PURE EDGE COVERALLS"	04-Feb-08 07:20 PM	

+="CN58230"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	04-Feb-08	23712.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58231"	"Procurement of:  SWITCH,ELECTRONIC;  PANEL,FUSE;  CATCH,CLAMPING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	12-Sep-08	27625.93	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58236"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Dec-07	04-Apr-08	23016.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58237"	"Procurement of:  GAGE,DIFFERENTIAL,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Dec-07	24-Jun-08	26041.90	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:22 PM	

+="CN58240"	"Procurement of:  DRY SUIT,RESCUE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	06-May-08	21540.00	=""	="AQUATERRO"	04-Feb-08 07:22 PM	

+="CN58242"	"Procurement of:  DRY SUIT,RESCUE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	06-May-08	21540.00	=""	="AQUATERRO"	04-Feb-08 07:22 PM	

+="CN58243"	"Procurement of:  DRY SUIT,RESCUE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	06-May-08	21540.00	=""	="AQUATERRO"	04-Feb-08 07:22 PM	

+="CN58258"	"Procurement of:  FLOAT,VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Dec-07	06-May-08	28100.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:24 PM	

+="CN58262"	"Procurement of:  MOTOR,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	13-Mar-08	24957.39	=""	="A S C Pty Ltd"	04-Feb-08 07:24 PM	

+="CN58264"	"Procurement of:  VALVE,CROSS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Oct-07	04-Feb-08	28307.76	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:25 PM	

+="CN58266"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Jul-07	04-Feb-08	21246.42	=""	="A S C Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58271"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	25200.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:26 PM	

+="CN58276"	"Procurement of:  HOSE ASSEMBLY,METALLIC;  O-RING;  HOSE ASSEMBLY,NONMETALLIC;  NIPPLE,PIPE;  NUT,UNION;  WASHER,FLAT; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	21399.94	=""	="A S C Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58281"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	28377.65	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:27 PM	

+="CN58288"	"Procurement of:  VALVE,GLOBE;  BODY PLUG,BALANCED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	20422.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:28 PM	

+="CN58296"	"Procurement of:  REFRIGERATOR,MECHANICAL,FOOD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	26657.85	=""	="STEELFORT ENGINEERING CO Ltd"	04-Feb-08 07:29 PM	

+="CN58301"	"Procurement of:  PUSH BUTTON;  PUSH BUTTON;  PUSH BUTTON;  PUSH BUTTON;  PUSH BUTTON;  PUSH BUTTON"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	25608.00	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 07:29 PM	

+="CN58309"	"Procurement of:  CYLINDER ASSEMBLY,STABILIZED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Jul-07	04-Feb-08	24194.43	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58311"	"Procurement of:  RELAY,ELECTROMAGNETIC;  RELAY,ELECTROMAGNETIC;  CHASSIS,ELECTRICAL-ELECTRONIC EQUIPMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	04-Feb-08	27638.84	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58316"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	30-May-08	24838.35	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58322"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	27014.30	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58328"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	29200.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58331"	"Procurement of:  INDICATOR,ANGLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	24629.60	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58333"	"Procurement of:  VALVE,BREATHING APPARATUS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	20250.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58335"	"Procurement of:  MAINTENANCE PLATFORM"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	23130.00	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58338"	"Procurement of:  VENT TUBE,BATTERY;  GASKET;  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	21600.00	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:34 PM	

+="CN58343"	"Procurement of:  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	23426.38	=""	="A S C Pty Ltd"	04-Feb-08 07:34 PM	

+="CN58350"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Jul-07	04-Feb-08	23316.00	=""	="A & G PRICE Ltd"	04-Feb-08 07:35 PM	

+="CN58357"	"Procurement of:  DRIVER,LOUDSPEAKER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	21000.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	04-Feb-08 07:36 PM	

+="CN58362"	"Procurement of:  BELTING,V,ADJUSTABLE LINK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	23000.00	=""	="COMPAIR A/ASIA Ltd"	04-Feb-08 07:37 PM	

+="CN58365"	"Procurement of:  CONNECTOR,MULTIPLE,FLUID PRESSURE LINE;  TEE,HOSE;  TEE,HOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	21892.50	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58386"	"Procurement of:  KEYBOARD,DATA ENTRY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Aug-07	04-Feb-08	22500.00	=""	="AUTOMATION & PROCESS CONTROL SER"	04-Feb-08 07:39 PM	

+="CN58387"	"Procurement of:  TURNING TOOL ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Aug-07	04-Feb-08	20914.08	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:40 PM	

+="CN58388"	"Procurement of:  CONNECTOR BODY,PLUG,ELECTRICAL;  INSERT,ELECTRICAL CONNECTOR;  INSERT,ELECTRICAL CONNECTOR;  INSERT,ELECTRICAL CONNECTOR;  INSERT,ELECTRICAL CONNECTOR;  CONNECTOR,RECEPTACLE,ELECTRICAL; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Aug-07	04-Feb-08	22381.55	=""	="TYCO ELECTRONICS"	04-Feb-08 07:40 PM	

+="CN58391"	"Procurement of:  ATTENUATOR,VARIABLE;  ATTENUATOR,VARIABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Aug-07	04-Feb-08	20793.12	=""	="A AND D INTERNATIONAL Pty Ltd"	04-Feb-08 07:40 PM	

+="CN58396"	"Procurement of:  INDICATOR,ELECTRICAL TACHOMETER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Aug-07	04-Feb-08	22272.30	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58402"	"Procurement of:  LOUDSPEAKER,ELECTROMAGNETIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Aug-07	12-Feb-08	21163.48	=""	="ADI Ltd"	04-Feb-08 07:41 PM	

+="CN58416"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	04-Feb-08	27828.50	=""	="ADI Ltd"	04-Feb-08 07:43 PM	

+="CN58417"	"Procurement of:  PUMP SET,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	25-Feb-08	28748.50	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58424"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	23-Mar-08	28599.24	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58434"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	30-May-08	28729.19	=""	="A S C Pty Ltd"	04-Feb-08 07:45 PM	

+="CN58439"	"Procurement of:  CLEANING COMPOUND,ALKALI,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	08-Oct-07	04-Feb-08	22505.00	=""	="H I FRASER Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58443"	"Procurement of:  LENS,LIGHT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	04-Feb-08	20670.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:46 PM	

+="CN58450"	"Procurement of:  TOOL KIT,INTERNAL COMBUSTION ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	20-Feb-08	27359.52	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58451"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Oct-07	03-Mar-08	27448.72	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58452"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	25314.00	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58463"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	22-Apr-08	29461.99	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58466"	"Procurement of:  FILTER ELEMENT,AIR CONDITIONING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	29-Feb-08	28800.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:49 PM	

+="CN58471"	"Procurement of:  HOSE,PREFORMED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	31-Mar-08	26013.33	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58475"	"Procurement of:  ELEMENT,REVERSE OSMOSIS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	04-Feb-08	29401.40	=""	="A S C Pty Ltd"	04-Feb-08 07:50 PM	

+="CN58482"	"Procurement of:  VALVE ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	20-Apr-08	26126.47	=""	="A S C Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58489"	"Procurement of:  BEARING UNIT,BALL;  HOUSING,BEARING UNIT;  SHAFT,SHOULDERED;  SPACER,SLEEVE;  RING,WEARING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Dec-07	04-Feb-08	21049.31	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:52 PM	

+="CN58500"	"Procurement of:  LENS,LIGHT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Dec-07	18-Apr-08	27560.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:53 PM	

+="CN58514"	"IT CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Information technology consultation services"	04-Dec-07	04-Dec-07	21879.00	=""	="INTERPRO AUSTRALIA PTY LTD"	05-Feb-08 09:24 AM	

+="CN58581"	"Motor Vehicle Parts."	="Department of Defence"	05-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	06-Mar-08	21210.40	=""	="Mercedes Benz Aust. Pacific"	05-Feb-08 11:43 AM	

+="CN58584"	" REPAIR MERLO TELELOADER "	="Department of Defence"	05-Feb-08	="Loading equipment"	17-Jan-08	02-Mar-08	24261.04	=""	="MERLO GROUP AUSTRALIA"	05-Feb-08 11:53 AM	

+="CN58587"	" Supply and install screens, power poles, desks, adjustable work areas and mobile drawers for Murray Bridge "	="CRS Australia"	05-Feb-08	="Renovation of buildings or landmarks or monuments"	21-Jan-08	31-Jan-08	25484.00	=""	="Eastern Commercial Furniture PTY LTD"	05-Feb-08 11:58 AM	

+="CN58590"	" Legal Services "	="Australian Electoral Commission"	05-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	22000.00	="AEC06/032"	="Australian Government Solicitor"	05-Feb-08 12:43 PM	

+="CN58600"	"Supply of  notebook computer (laptops) Contract (DPS05033)"	="Department of Parliamentary Services"	05-Feb-08	="Notebook computers"	31-Jan-08	03-Mar-08	27416.40	=""	="Commander NSW Pty Limited"	05-Feb-08 01:57 PM	

+="CN58602"	"Supply and Installation of Audio Visual Equipment"	="Department of Parliamentary Services"	05-Feb-08	="Video and combination video and audio presentation equipment and hardware and controllers"	25-Jan-08	29-Feb-08	20727.22	=""	="Canberra Professional Equipment"	05-Feb-08 01:57 PM	

+="CN58613"	"Purchase of furniture for Lima office"	="Austrade"	05-Feb-08	="Furniture and Furnishings"	22-Nov-07	22-Dec-07	24364.50	=""	="Design Craft Furniture"	05-Feb-08 02:02 PM	

+="CN58626"	"Room and facility hire for February PTS Course"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	07-Feb-08	22078.00	=""	="The Sebel Pier One Sydney"	05-Feb-08 02:03 PM	

+="CN58627"	"Permanent placement fees"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	15-Nov-07	28363.06	=""	="Candle Australia Ltd"	05-Feb-08 02:03 PM	

+="CN58639-A1"	"Supply of Diagnostic Reagents."	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Dec-07	31-Dec-07	28903.60	=""	="Ortho-Clinical Diagnostics"	05-Feb-08 02:25 PM	

+="CN58648"	"Consultancy services for an independent member of the National Blood Authority's Audit Committee."	="National Blood Authority"	05-Feb-08	="Accounting and auditing"	15-Nov-07	28-Feb-10	22000.00	=""	="Morison Consulting Pty Ltd"	05-Feb-08 02:51 PM	

+="CN58649"	" Provisioni of Secretariat Support Services. "	="National Blood Authority"	05-Feb-08	="Business administration services"	24-Dec-07	30-Jun-08	20000.00	=""	="Kayaldo Pty Ltd trading as Commerce Management"	05-Feb-08 03:15 PM	

+="CN58677-A1"	"Provision for Personel for Project Team Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Human resources services"	01-Aug-07	10-Aug-07	21059.00	=""	="CSC Australia Pty Limited"	05-Feb-08 05:07 PM	

+="CN58692"	"Update MOU wit RBA and Treasury"	="Royal Australian Mint"	06-Feb-08	="Legal services"	03-Jan-08	03-Jan-08	27500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-Feb-08 11:08 AM	

+="CN58693"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	06-Feb-08	="Medical Equipment and Accessories and Supplies"	11-Jan-08	27-Jan-08	28127.00	=""	="Australian Therapeutic Supplies"	06-Feb-08 11:10 AM	

+="CN58701"	"AGM agreed charges - 12 months"	="Royal Australian Mint"	06-Feb-08	="Temporary production staffing needs"	09-Jan-08	09-Jan-08	24343.31	=""	="ADP EMPLOYER SERVICES"	06-Feb-08 11:59 AM	

+="CN58713"	"Project Management of capital works - Sydney"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Jul-07	30-Aug-07	24361.00	=""	="Manteena Pty Ltd"	06-Feb-08 01:48 PM	

+="CN58717-A1"	"DA 63 - consultation"	="National Capital Authority"	06-Feb-08	="Business and corporate management consultation services"	01-Jul-07	31-Dec-07	29208.00	=""	="Purdon Associates Pty Ltd"	06-Feb-08 02:02 PM	

+="CN58729"	" REPAIR AND OH OF BLACK HAWK LANDING GEAR ASSY. "	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	21877.62	=""	="SAAL"	06-Feb-08 02:52 PM	

+="CN58735-A1"	"Professional Assistance for tender preparation"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Professional procurement services"	01-Mar-06	31-Mar-08	24178.22	=""	="G & K Conn"	06-Feb-08 03:18 PM	

+="CN58736"	"motor vehicle spare parts"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	07-Mar-08	23568.82	=""	="LANDROVER"	06-Feb-08 03:24 PM	

+="CN58740"	"Motor Vehicle Parts"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	06-Mar-08	21928.72	=""	="Volvo Commericial Vehicles"	06-Feb-08 03:38 PM	

+="CN58752"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	06-Feb-08	="Community and social services"	10-Dec-07	30-Jun-08	23508.31	=""	="Wardaman Aboriginal Corporation (Binjari)"	06-Feb-08 04:17 PM	

+="CN58757"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	06-Feb-08	="Community and social services"	01-Jan-08	30-Jun-08	28884.55	=""	="Nauiyu Nambiyu Community Government Council"	06-Feb-08 04:33 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val300000to999999999.xls
@@ -1,1 +1,60 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57478-A1"	"Provision of office cleaning services and consumables"	="Australian Competition and Consumer Commission"	02-Feb-08	="Cleaning and janitorial services"	03-Dec-07	30-Nov-09	381333.06	=""	="TJ's Cleaning Services Canberra Pty Ltd"	02-Feb-08 02:16 PM	

+="CN57497-A1"	"in country avo training course"	="Defence Materiel Organisation"	04-Feb-08	="Target or reconnaissance drones"	14-Apr-08	15-Jun-08	789768.54	=""	="boeing australia limited"	04-Feb-08 10:26 AM	

+="CN57527-A2"	"Property Lease Barton ACT"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	13-May-05	12-May-09	1476390.00	=""	="SALVATION ARMY (NSW) PROPERTY TRUST"	04-Feb-08 01:00 PM	

+="CN57528-A2"	"Property Lease Brisbane QLD"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	01-Oct-06	13-Mar-16	25573965.00	=""	="Wharf Street Investments Pty Ltd"	04-Feb-08 01:06 PM	

+="CN57531-A7"	"Property Lease Sydney Airport NSW"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	12-Nov-04	30-Jun-09	500441.92	=""	="Sydney Airport Corporation Pty Ltd"	04-Feb-08 01:27 PM	

+="CN57537-A3"	"Property Lease Civic ACT"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	01-Sep-06	31-Oct-10	3807422.00	=""	="Rovera Construction Pty Ltd"	04-Feb-08 01:50 PM	

+="CN57539-A6"	"Property Lease Bowes Street Woden"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	12-Nov-05	11-Nov-12	2956840.19	=""	="Perpetual Trustee Company Limited"	04-Feb-08 02:08 PM	

+="CN57540"	"Parachute, Cargo"	="Defence Materiel Organisation"	04-Feb-08	="Parachutes"	04-Feb-08	12-Nov-08	388014.00	=""	="Para- Guard Pty Ltd"	04-Feb-08 02:16 PM	

+="CN57541-A5"	"Property Lease Weston ACT"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	28-Aug-01	30-Jun-12	41166309.13	=""	="NEB Holdings Pty Ltd"	04-Feb-08 02:20 PM	

+="CN57544"	" CSIRO Building 179 External Facade  2007-039 "	="CSIRO"	04-Feb-08	="General building construction"	08-Oct-07	07-Apr-08	390835.00	="CSIRORFT2007-039"	="Canberra Building Services Pty Ltd"	04-Feb-08 02:48 PM	

+="CN57585"	"Microsoft Enterprise Agreement - Year 3"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	23-Jul-07	22-Jul-08	1043218.00	=""	="Kaz Group Pty Ltd"	04-Feb-08 03:13 PM	

+="CN57587"	"Cognos 8 Software and Cognos 8 First Year Support"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	12-Jul-07	11-Jul-08	1024903.00	=""	="Kaz Group Pty Ltd"	04-Feb-08 03:13 PM	

+="CN57593"	"Facility Development PlanningServices Agreement for the provision of a Facility Development Plan for the establishment of a proposed Australian Interpretive Centre on the Western Front."	="Department of Veterans' Affairs"	04-Feb-08	="Management advisory services"	20-Jul-06	29-Jan-08	305880.00	=""	="Hewitt Pender Associates Pty Ltd"	04-Feb-08 03:14 PM	

+="CN57595"	"Tibco Software for purchase order #IMU275Annual Silver Support 30/04/2007 - 30/04/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Apr-07	30-Apr-08	377945.00	=""	="Fujitsu Australia Ltd"	04-Feb-08 03:14 PM	

+="CN57598-A1"	" Administration of a Veteran Satisfaction Survey "	="Department of Veterans' Affairs"	04-Feb-08	="Statistics"	01-Jun-07	01-Jan-11	652700.00	=""	="ACNielsen"	04-Feb-08 03:14 PM	

+="CN57606"	"Construction of Fitout for VVCS City"	="Department of Veterans' Affairs"	04-Feb-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Sep-07	313288.00	=""	="SCHIAVELLO (VIC) PTY LTD"	04-Feb-08 03:16 PM	

+="CN57609-A7"	"Property Lease Melbourne VIC"	="Australian Federal Police"	04-Feb-08	="Lease and rental of property or building"	16-Jun-07	30-Jun-11	1351757.00	=""	="Kings Parking Corporation Pty Ltd"	04-Feb-08 03:25 PM	

+="CN57710"	"Procurement of:  DEMINERALIZER,WATER,ION EXCHANGE;  DEMINERALIZER,WATER,ION EXCHANGE;  DEMINERALIZER,WATER,ION EXCHANGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Aug-07	12-Mar-08	1464000.00	=""	="MCINTYRE MARINE PRODUCTS"	04-Feb-08 06:19 PM	

+="CN57725"	"Procurement of:  GOVERNOR,DIESEL ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	309060.37	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:21 PM	

+="CN57747"	"Procurement of:  BREATHING APPARATUS,SELF-CONTAINED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	2982330.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:23 PM	

+="CN57799"	"Procurement of:  CORE ASSEMBLY,FLUID COOLER;  CORE ASSEMBLY,FLUID COOLER;  CORE ASSEMBLY,FLUID COOLER;  CORE ASSEMBLY,FLUID COOLER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Aug-07	05-Mar-08	495608.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:29 PM	

+="CN57800"	"Procurement of:  GYROSCOPE,RATE;  GYROSCOPE,RATE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	21-Mar-08	601000.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 06:30 PM	

+="CN57930"	"Procurement of:  IMU ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	16-Oct-08	1676700.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 06:45 PM	

+="CN57950"	"Procurement of:  CYLINDER,COMPRESSED GAS,AIR,BREATHING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	370075.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:47 PM	

+="CN57966"	"Procurement of:  AIR CONDITIONER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	10-Nov-08	765619.47	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:49 PM	

+="CN57975"	"Procurement of:  RADAR SET SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	21-Jan-09	978878.06	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:50 PM	

+="CN57989"	"Procurement of:  GOVERNOR,DIESEL ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	14-Apr-08	309060.37	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:52 PM	

+="CN58062"	"Procurement of:  COOLER,FLUID,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	16-Apr-08	476721.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:01 PM	

+="CN58134"	"Procurement of:  PUMP,AXIAL PISTONS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	21-Nov-08	538095.45	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:09 PM	

+="CN58161"	"Procurement of:  INTERROGATOR,FRIEND OR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	15-Feb-08	435465.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 07:12 PM	

+="CN58267"	"Procurement of:  GYROSCOPE,RATE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Jul-07	10-Feb-09	436834.78	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58380"	"Procurement of:  MOTOR,DIRECT CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Aug-07	18-Jul-08	410357.01	=""	="A S C Pty Ltd"	04-Feb-08 07:39 PM	

+="CN58414"	"Procurement of:  GYROSCOPE,RATE;  RING,ELECTRICAL CONTACT;  RING,ELECTRICAL CONTACT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	26-Jul-08	303000.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58426"	"Procurement of:  HARNESS,SENSOR ASSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Sep-07	31-Aug-09	341378.00	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58488"	"Procurement of:  COVER-FAIRING,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	11-Nov-08	360498.59	=""	="A S C Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58506"	"Lease of building premises"	="Cancer Australia"	05-Feb-08	="Lease and rental of property or building"	15-Dec-06	30-Dec-09	592384.00	=""	="Ross Human Directions Group"	05-Feb-08 09:10 AM	

+="CN58507"	" CSIRO AAHL Air Handling Plant Upgrade - Mechanical Works  2007-041 "	="CSIRO"	05-Feb-08	="Laboratory supplies and fixtures"	08-Oct-07	08-Sep-08	701721.00	="CSIRORFT2007-041"	="Tasweld Engineering Pty Ltd"	05-Feb-08 09:11 AM	

+="CN58511"	" Refurbishment of OSL Laboratory Black Mountain  2007-050 "	="CSIRO"	05-Feb-08	="Laboratory supplies and fixtures"	26-Oct-07	22-Feb-08	463078.00	="CSIRORFT2007-050"	="SMI Pty Ltd"	05-Feb-08 09:23 AM	

+="CN58525"	"ORACLE FINANCIALS SERVICES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Software"	14-Nov-02	14-May-10	1345500.00	=""	="UNISYS AUSTRALIA PTY LTD"	05-Feb-08 09:26 AM	

+="CN58593"	" CSIRO Building 179 Mechanical Services Package  2007-035 "	="CSIRO"	05-Feb-08	="Laboratory supplies and fixtures"	03-Dec-07	23-Sep-08	2918313.20	="CSIRORFT2007-035"	="Haden Engineering Pty Ltd"	05-Feb-08 01:16 PM	

+="CN58595-A4"	"Total aggregated value of vehicle leases entered into for the 2007/2008 financial year."	="Australian Federal Police"	05-Feb-08	="Motor vehicles"	01-Jul-07	30-Jun-08	15499347.00	=""	="Leaseplan Australia Ltd"	05-Feb-08 01:24 PM	

+="CN58596-A7"	"Supply of stationery and office requisites, forms management and related services"	="Australian Federal Police"	05-Feb-08	="Stationery"	01-Jan-05	31-Dec-10	19023450.00	="RFT 06-2004"	="Officemax Pty Ltd"	05-Feb-08 01:36 PM	

+="CN58608"	"Newswire service"	="Department of Parliamentary Services"	05-Feb-08	="News agency wire services"	30-Jan-08	30-Jun-10	721000.00	="DPS07087"	="Australian Associated Press P/L"	05-Feb-08 01:58 PM	

+="CN58610"	"Provision of Facilities Management Services for Telephony Environment (DPS07056)"	="Department of Parliamentary Services"	05-Feb-08	="Information Technology Broadcasting and Telecommunications"	24-Jan-08	14-Feb-12	6600000.00	="DPS07056"	="Integ Communications Solutions"	05-Feb-08 01:58 PM	

+="CN58598-A2"	"Review of information security practices in the Tax Office"	="Australian Taxation Office"	05-Feb-08	="Information technology consultation services"	10-Dec-07	31-Jul-08	483149.80	=""	="Price WaterhouseCoopers"	05-Feb-08 02:12 PM	

+="CN58652"	"Site Survey"	="National Capital Authority"	05-Feb-08	="Land surveying"	26-Nov-07	01-Apr-08	501600.00	=""	="Landdata Pty Ltd"	05-Feb-08 03:10 PM	

+="CN58659"	"R3 Service and Rectifications as per Supplies Acceptance Certificate carried out on Black Hawk helicopter A25-203"	="Defence Materiel Organisation"	05-Feb-08	="Military rotary wing aircraft"	31-Jan-08	30-Mar-08	400000.00	=""	="Hhunter Aerospace corporation P/L"	05-Feb-08 03:45 PM	

+="CN58674"	"Design, documentation and contract servies"	="National Capital Authority"	05-Feb-08	="Project management"	03-Dec-07	01-Aug-10	1055296.00	=""	="Johnson Pilton Walker Pty Ltd"	05-Feb-08 04:50 PM	

+="CN58678"	"Design, Documentation & Contract Administration Services"	="National Capital Authority"	05-Feb-08	="Project management"	03-Dec-07	01-Jun-11	1859111.10	=""	="Edaw Aust Pty Ltd"	05-Feb-08 05:14 PM	

+="CN58683-A2"	" Lease at Murray Bridge SA "	="Department of Human Services"	06-Feb-08	="Real estate services"	05-Aug-02	04-Aug-14	2491143.00	=""	="Commsyndicate - MB"	06-Feb-08 09:23 AM	

+="CN58711"	"Project Management of Capital works - Canberra"	="Australian Federal Police"	06-Feb-08	="Project management"	04-Jun-07	27-Jul-07	744373.00	=""	="Manteena Pty Ltd"	06-Feb-08 01:30 PM	

+="CN58716"	"Project Management of Capital Works - Fairbairn"	="Australian Federal Police"	06-Feb-08	="Project management"	28-Jun-07	02-Aug-08	4641543.50	=""	="Manteena Pty Ltd"	06-Feb-08 01:56 PM	

+="CN58718"	"Project Management of Capital works - Sydney NSW"	="Australian Federal Police"	06-Feb-08	="Project management"	30-May-07	30-Aug-07	467326.20	=""	="Manteena Pty Ltd"	06-Feb-08 02:05 PM	

+="CN58719-A1"	"Project Management of Capital Works Brisbane - QLD"	="Australian Federal Police"	06-Feb-08	="Project management"	20-Aug-07	22-Feb-08	2981000.00	="21/2005"	="Manteena Pty Ltd"	06-Feb-08 02:13 PM	

+="CN58743-A6"	"Provision of capacity building and administrative support services in Timor Leste"	="Australian Federal Police"	06-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Jan-09	3641862.00	=""	="Hassall & Associates Pty. Ltd."	06-Feb-08 03:47 PM	

+="CN58760"	"Legal Services"	="Australian Electoral Commission"	06-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	500000.00	="AEC06/032"	="Australian Government Solicitor"	06-Feb-08 04:47 PM	

+="CN58762"	"Purchase of PC's, Monitor's & Notebooks"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Computer Equipment and Accessories"	20-Nov-07	19-Mar-12	1567068.37	=""	="HP Australia"	06-Feb-08 05:09 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val30000to40000.xls
@@ -1,1 +1,119 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57475"	"Consultancy services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Management advisory services"	31-Oct-07	15-Feb-08	35360.00	=""	="Buchan Consulting Pty Ltd"	02-Feb-08 01:48 PM	

+="CN57476"	"Consultancy services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Management advisory services"	28-Sep-07	30-Jun-08	35000.00	=""	="EcoAssist Pty Ltd"	02-Feb-08 01:51 PM	

+="CN57479"	" BATTERY NONRECHARGEABLE LITHIUM SULPHUR DIOXIDE 12V "	="Defence Materiel Organisation"	04-Feb-08	="Lithium batteries"	31-Jan-08	30-May-08	33211.20	=""	="SAFT BATTERIES PTY LTD"	04-Feb-08 07:41 AM	

+="CN57498"	"BAG, INDIVIDUAL EQUIPMENT, CARRIER WATER"	="Defence Materiel Organisation"	04-Feb-08	="Canteen"	04-Feb-08	31-Mar-08	32264.37	="CC1TA7"	="COMBAT CLOTHING AUST PTY LTD"	04-Feb-08 10:31 AM	

+="CN57514"	"Legal Services"	="Australian Electoral Commission"	04-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	30000.00	="AEC06/032"	="Australian Government Solicitor"	04-Feb-08 11:09 AM	

+="CN57516"	"Overseas Voting Services Federal Election"	="Australian Electoral Commission"	04-Feb-08	="Government departments services"	17-Jan-08	17-Feb-08	30925.46	=""	="Austrade"	04-Feb-08 11:36 AM	

+="CN57518"	" COMFORTER ASSEMBLY &  PATCH ,LEG, MOLLE ATTACHMENT    "	="Defence Materiel Organisation"	04-Feb-08	="Arms and ammunition accessories"	04-Feb-08	31-Mar-08	37796.00	="CC1TD0"	="ADVENTURE ONE PTY LTD"	04-Feb-08 11:46 AM	

+="CN57526-A2"	" Threat Risk Assessment  08-2007 Release 3 ECMP "	="Australian Taxation Office"	04-Feb-08	="Computer services"	25-Oct-07	14-Dec-07	39039.00	="08-2007"	="Electronic Warfare Associates - Australia"	04-Feb-08 12:44 PM	

+="CN57550"	"refurbishment of War Memorials at Milne Bay & Isurava"	="Department of Veterans' Affairs"	04-Feb-08	="Building construction and support and maintenance and repair services"	01-Feb-08	01-Jun-08	39754.00	=""	="Jasper Swann Stonemasonry Pty Ltd"	04-Feb-08 03:08 PM	

+="CN57572"	""RSA SECRID Authenticator Hardware Tokens - SID 700 x 255RSA Authentication Manager Base Edition Software Licences x 200Pro Rata for 8 months Authentication Manager Maintenance base edition x 200""	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	02-Nov-07	01-Nov-08	35751.00	=""	="Commander Intergrated Networks Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57577"	"Renewal 01/03/2007 - 29/02/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Mar-07	29-Feb-08	33113.00	=""	="IBM Australia Ltd"	04-Feb-08 03:12 PM	

+="CN57592"	"EzeScan Pro + OCR + EDRMS (Trim) License"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	18-Jun-07	17-Jun-08	34056.00	=""	="De Simone Consulting"	04-Feb-08 03:14 PM	

+="CN57627"	"Durabook S14Y Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Computer Equipment and Accessories"	22-Jan-08	22-Feb-08	33539.00	=""	="TWINHEAD - Twin Resources PTY LTD"	04-Feb-08 04:12 PM	

+="CN57628"	"Examination for community development and child protection"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	22-Jan-08	30-Apr-08	31598.00	="220"	="Enmark Business Advisors Pty Ltd"	04-Feb-08 04:13 PM	

+="CN57632"	"Autism Spectrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Ron Hunt"	04-Feb-08 04:13 PM	

+="CN57646"	"Autism Spectrum Disorders Expert Reference Group"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	30000.00	=""	="Professor Tony Attwood"	04-Feb-08 04:15 PM	

+="CN57647"	"Autism Spectrum Disorders Expert Reference Group"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	30000.00	=""	="Dr Jacqueline Roberts"	04-Feb-08 04:15 PM	

+="CN57650"	"Business Reporting Template"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	18-Feb-08	33000.00	="209"	="DELOITTE TOUCHE TOHMATSU"	04-Feb-08 04:15 PM	

+="CN57665"	"Lease Property COL0500/2401-02 L24,500  Collins St Melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	25-Jan-08	31-Jan-08	31285.20	=""	="ECS Property Group"	04-Feb-08 04:17 PM	

+="CN57676"	"Property/Lease QUE02\SOC01"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	01-Feb-08	01-Feb-08	35134.47	=""	="ARIA Property Group"	04-Feb-08 04:19 PM	

+="CN57681"	"Provision of APS 4 for Learning Centre"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	14-Jan-08	30-Jun-08	30000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Feb-08 04:20 PM	

+="CN57682"	"Provision of APS 5 for Learning Centre"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	14-Jan-08	30-Jun-08	35000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Feb-08 04:20 PM	

+="CN57686"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Aideen Gallagher"	04-Feb-08 04:21 PM	

+="CN57687"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Gail Mulcair"	04-Feb-08 04:21 PM	

+="CN57688"	"Autism Specetrum Disorders Advisory Group Member"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Community and social services"	14-Jan-08	30-Jun-08	30000.00	=""	="Nicole Rogerson"	04-Feb-08 04:21 PM	

+="CN57703"	"Procurement of:  UTILITY VEHICLE, 4WD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	04-Feb-08	31513.50	=""	="DEERE JOHN Ltd"	04-Feb-08 06:18 PM	

+="CN57708"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	04-Feb-08	32304.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:19 PM	

+="CN57719"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	36040.00	=""	="JACOBS RADIO (AUSTRALIA) Pty Ltd"	04-Feb-08 06:20 PM	

+="CN57724"	"Procurement of:  REGELGERAET, KRAFTS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Jul-07	29-Feb-08	35768.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:21 PM	

+="CN57726"	"Procurement of:  SWITCHBOARD,POWER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	29-Feb-08	32949.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:21 PM	

+="CN57772"	"Procurement of:  BUOY,MOORING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	31904.00	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57774"	"Procurement of:  COMPRESSOR UNIT,RECIPROCATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	33760.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:26 PM	

+="CN57789"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Aug-07	04-Feb-08	37941.30	=""	="BRITTON MARINE Pty Ltd"	04-Feb-08 06:28 PM	

+="CN57827"	"Procurement of:  PUMP UNIT,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Aug-07	04-Feb-08	35778.00	=""	="MACE ENGINEERING Ltd"	04-Feb-08 06:33 PM	

+="CN57844"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Aug-07	04-Feb-08	39134.35	=""	="PALL AUSTRALIA"	04-Feb-08 06:35 PM	

+="CN57856"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Aug-07	17-Apr-08	35750.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	04-Feb-08 06:36 PM	

+="CN57861"	"Procurement of:  HARNESS,SAFETY,INDUSTRIAL;  LANYARD,SAFETY,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	04-Feb-08	33190.00	=""	="FALLRIGHT INTERNATIONAL"	04-Feb-08 06:37 PM	

+="CN57863"	"Procurement of:  HEADSET,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Sep-07	13-Feb-08	35993.76	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:37 PM	

+="CN57882"	"Procurement of:  CAP,SKULL,HAND HELD;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	04-Feb-08	35218.00	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57883"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	10-May-08	38908.80	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:40 PM	

+="CN57887"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Sep-07	04-Feb-08	33589.89	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	04-Feb-08 06:40 PM	

+="CN57891"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	05-Jun-08	36134.52	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:41 PM	

+="CN57899"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	04-Feb-08	30738.32	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 06:41 PM	

+="CN57907"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Sep-07	04-Feb-08	34940.00	=""	="PALL AUSTRALIA"	04-Feb-08 06:42 PM	

+="CN57923"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	06-Feb-08	32993.10	=""	="PALL AUSTRALIA"	04-Feb-08 06:44 PM	

+="CN57935"	"Procurement of:  CABLE ASSEMBLY,POWER,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Oct-07	03-Jul-08	31432.53	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57937"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Oct-07	04-Feb-08	37370.40	=""	="BRITTON MARINE Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57946"	"Procurement of:  SEAL,NONMETALLIC SPECIAL SHAPED SECTION;  SEAL,NONMETALLIC SPECIAL SHAPED SECTION;  BRACKET,MOUNTING;  BUSHING,SLEEVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Oct-07	29-Feb-08	39642.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 06:47 PM	

+="CN57948"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,LINEAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Oct-07	08-Feb-08	31931.93	=""	="BAKER & PROVAN Pty Ltd"	04-Feb-08 06:47 PM	

+="CN57957"	"Procurement of:  HOLDER,HANDSET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	28-Feb-08	35917.00	=""	="ADI Ltd"	04-Feb-08 06:48 PM	

+="CN57961"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	04-Feb-08	33600.00	=""	="TSF ENGINEERING Pty Ltd"	04-Feb-08 06:49 PM	

+="CN57968"	"Procurement of:  FIXTURE,LIGHTING;  FIXTURE,LIGHTING;  FIXTURE,LIGHTING;  FIXTURE,LIGHTING;  FIXTURE,LIGHTING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	04-Feb-08	38214.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 06:49 PM	

+="CN57969"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	14-Mar-08	30219.84	=""	="PALL AUSTRALIA"	04-Feb-08 06:50 PM	

+="CN58007"	"Procurement of:  TOOL,COMPRESSING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	31733.80	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 06:54 PM	

+="CN58010"	"Procurement of:  PARTS KIT,SEPARATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	30350.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58019"	"Procurement of:  ;  CORE ASSEMBLY,FLUID COOLER;  HOSE ASSEMBLY,NONMETALLIC;  CORE ASSEMBLY,FLUID COOLER;  CORE ASSEMBLY,FLUID COOLER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	04-Feb-08	30378.48	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 06:56 PM	

+="CN58020"	"Procurement of:  FENDER,MARINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	15-Feb-08	35200.00	=""	="QUIN MARINE Pty Ltd"	04-Feb-08 06:56 PM	

+="CN58024"	"Procurement of:  CLEANING COMPOUND,ALKALI,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	04-Feb-08	31507.00	=""	="H I FRASER Pty Ltd"	04-Feb-08 06:56 PM	

+="CN58026"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	22-Feb-08	33342.20	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58028"	"Procurement of:  STRAINER ELEMENT,SEDIMENT;  BASKET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	39305.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58038"	"Procurement of:  FILTER UNIT,FLUID,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	31220.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	04-Feb-08 06:58 PM	

+="CN58049"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Jun-08	37450.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:59 PM	

+="CN58052"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,LINEAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	01-Mar-08	31931.93	=""	="BAKER & PROVAN Pty Ltd"	04-Feb-08 07:00 PM	

+="CN58064"	"Procurement of:  FILTER,RADIO FREQUENCY INTERFERENCE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	08-Apr-08	37713.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 07:01 PM	

+="CN58086"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	04-Feb-08	31193.76	=""	="PAINS-WESSEX AUST Pty Ltd"	04-Feb-08 07:04 PM	

+="CN58090"	"Procurement of:  COVER,LIFE PRESERVER;  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	04-Feb-08	36600.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 07:04 PM	

+="CN58091"	"Procurement of:  FAN,CIRCULATING;  COVER,ACCESS;  SWITCH,PRESSURE;  HOSE ASSEMBLY,METALLIC;  FILTER-DRIER,REFRIGERANT;  MOUNT,RESILIENT; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	29-Feb-08	39513.90	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:04 PM	

+="CN58099"	"Procurement of:  AMPLIFIER ASSEMBLY,SYNCHRO BUFFER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	14-Nov-08	34351.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:05 PM	

+="CN58140"	"Procurement of:  DIAPHRAGM SET,PACKLESS VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	08-Feb-08	35780.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	04-Feb-08 07:10 PM	

+="CN58143"	"Procurement of:  MOTOR,ALTERNATING CURRENT;  MOTOR,ALTERNATING CURRENT;  TIMER,INTERVAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Nov-07	04-Feb-08	33820.00	=""	="MIELE AUSTRALIA Pty Ltd"	04-Feb-08 07:10 PM	

+="CN58147"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,DIAPHRAGM,STOP;  VALVE,ANGLE;  FILTER BODY,FLUID;  VALVE,CHECK;  VALVE,GATE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	18-Mar-08	37075.50	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:11 PM	

+="CN58171"	"Procurement of:  PIPE,EXHAUST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	16-Mar-08	32062.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:14 PM	

+="CN58184"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	16-Apr-08	30453.64	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:15 PM	

+="CN58197"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Dec-07	12-Apr-08	30431.84	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:17 PM	

+="CN58220"	"Procurement of:  GAGE,DIFFERENTIAL,DIAL INDICATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	07-Aug-08	39995.80	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58255"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Dec-07	21-Oct-08	38559.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:24 PM	

+="CN58277"	"Procurement of:  CAP,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	36575.00	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:26 PM	

+="CN58287"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,LINEAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-May-08	31508.13	=""	="A S C Pty Ltd"	04-Feb-08 07:27 PM	

+="CN58299"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	33669.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:29 PM	

+="CN58300"	"Procurement of:  VALVE,GLOBE;  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	39025.50	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:29 PM	

+="CN58304"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	30-Apr-08	37555.00	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58307"	"Procurement of:  RING,WIPER;  PACKING ASSEMBLY;  LIGHT-SWITCH;  LINK, FLEXIBLE COUPLING;  HOSE,NONMETALLIC;  PARTS KIT,VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Jul-07	08-Apr-08	38221.10	=""	="A S C Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58317"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	39174.00	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58324"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	36577.64	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58334"	"Procurement of:  HULL PENETRATOR ASS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	01-May-08	32667.79	=""	="A S C Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58358"	"Procurement of:  AMPLIFIER,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	32750.00	=""	="CIDAAL ELECTRONIC Pty Ltd"	04-Feb-08 07:36 PM	

+="CN58382"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	04-Feb-08	31100.00	=""	="VEGA AUSTRALIA Pty Ltd"	04-Feb-08 07:39 PM	

+="CN58393"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Aug-07	27-Feb-08	39288.58	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:40 PM	

+="CN58397"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	24-Mar-08	39096.00	=""	="MAN B&W DIESEL AUSTRALIA Pty Ltd"	04-Feb-08 07:41 PM	

+="CN58419"	"Procurement of:  EXPANSION JOINT,PIPE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	04-Feb-08	30518.40	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:43 PM	

+="CN58427"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	02-Oct-08	38850.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58428"	"Procurement of:  SADDLE,HOSE;  SADDLE,HOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	04-Feb-08	30561.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58437"	"Procurement of:  TERMINAL,DATA PROCESSING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	01-Apr-08	36780.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58445"	"Procurement of:  TRANSFORMER,POWER;  CONTROL,ELECTRIC LIGHT;  SCHEDA;  INDICATOR,ELECTRICAL TACHOMETER;  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	04-Feb-08	30209.65	=""	="LAWRENCE AND HANSON"	04-Feb-08 07:47 PM	

+="CN58449"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	04-Feb-08	30280.02	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58481"	"Procurement of:  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	28-Jun-08	32375.75	=""	="A S C Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58498"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Dec-07	04-Feb-08	39615.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:53 PM	

+="CN58520"	"IT CONTRACTING FEES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Software maintenance and support"	14-Jan-08	14-Jan-08	31765.80	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY LTD"	05-Feb-08 09:25 AM	

+="CN58533"	"SOFTWARE FOR AQT AND CONSULTANCY"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Information technology consultation services"	18-Dec-07	18-Dec-07	34870.00	=""	="AURION CORPORATION PTY LTD"	05-Feb-08 09:27 AM	

+="CN58545"	"PRINTERS"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Software or hardware engineering"	08-Jan-08	08-Jan-08	38711.64	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Feb-08 09:29 AM	

+="CN58547"	"BUILDING WORKS"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Building and Construction and Maintenance Services"	14-Jan-08	14-Jan-08	30371.00	=""	="INTAFIX PTY LTD"	05-Feb-08 09:29 AM	

+="CN58579"	"Legal Services"	="Australian Electoral Commission"	05-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	="AEC06/032"	="Australian Government Solicitor"	05-Feb-08 11:39 AM	

+="CN58580"	"Copyright fees on Books, Magazines, journals and artisitic work.  Hardcopy reproduction (paper) license fee for period 01.07.06 to 30.06.07. "	="CRS Australia"	05-Feb-08	="Copywriting"	08-Jan-08	08-Jan-08	33974.61	=""	="Copyright agency Ltd"	05-Feb-08 11:42 AM	

+="CN58589"	"Legal Services"	="Australian Electoral Commission"	05-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	35000.00	="AEC06/032"	="Australian Government Solicitor"	05-Feb-08 12:16 PM	

+="CN58604"	"Provision of courier services"	="Department of Parliamentary Services"	05-Feb-08	="Freight forwarders services"	24-Jan-08	03-Mar-08	33000.00	=""	="Universal Express"	05-Feb-08 01:57 PM	

+="CN58620"	"Room, facility and accomodation hire for January 2008 conference"	="Austrade"	05-Feb-08	="Hotels and lodging and meeting facilities"	27-Jan-08	31-Jan-08	39090.00	=""	="Nansha Grand Hotel"	05-Feb-08 02:02 PM	

+="CN58635"	"Maintenance and support agreement for Business Objects Business Intelligence Reporting Tool."	="National Blood Authority"	05-Feb-08	="Software maintenance and support"	01-Jan-08	31-Dec-08	31324.75	=""	="Business Objects Australia Pty Ltd"	05-Feb-08 02:14 PM	

+="CN58641-A1"	"Supply of Diagnostic Reagents."	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Nov-07	30-Nov-07	34540.00	=""	="Ortho-Clinical Diagnostics"	05-Feb-08 02:28 PM	

+="CN58645"	"Provision of air travel."	="National Blood Authority"	05-Feb-08	="Commercial aeroplane travel"	01-Dec-07	31-Dec-07	33870.71	=""	="Flight Centre"	05-Feb-08 02:38 PM	

+="CN58675"	" Printing and delivery of NAT4203-4.2004 GST Calculation worksheets. "	="Australian Taxation Office"	05-Feb-08	="Printing"	05-Feb-08	15-Feb-08	34318.90	=""	="Paragon Printers Pty Ltd"	05-Feb-08 04:47 PM	

+="CN58691"	"Election Security Services"	="Australian Electoral Commission"	06-Feb-08	="Security guard services"	20-Nov-07	25-Nov-07	37838.34	=""	="Australian Security Company Pty Ltd"	06-Feb-08 11:07 AM	

+="CN58704"	"qty 200 radio frequency cable assemblies for use with military radios."	="Defence Materiel Organisation"	06-Feb-08	="Electrical cable and accessories"	01-Feb-08	06-Jun-08	33000.00	="RFQ-C7089"	="Interconnect Systems Pty Ltd"	06-Feb-08 12:30 PM	

+="CN58708"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR BLADE."	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	39983.20	=""	="SAAL"	06-Feb-08 12:46 PM	

+="CN58722"	" Witness required to give Technical Evidence "	="Office of the Director of Public Prosecutions"	06-Feb-08	="Legal services"	06-Nov-07	30-Nov-07	30106.43	=""	="AMC Consultants"	06-Feb-08 02:34 PM	

+="CN58725"	"Legal Services"	="Australian Electoral Commission"	06-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	=""	="Australian Government Solicitor"	06-Feb-08 02:41 PM	

+="CN58742-A1"	" Purchase off-shelf mail classification products "	="Office of the Director of Public Prosecutions"	06-Feb-08	="Software"	16-Nov-07	30-Nov-10	34764.73	=""	="Titus Labs"	06-Feb-08 03:44 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val40000to80000.xls
@@ -1,1 +1,193 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57480"	"    Provision of Learning Design and Delivery of Services    "	="Therapeutic Goods Administration"	04-Feb-08	="Education and Training Services"	03-Sep-07	30-Jun-08	48000.00	=""	="Total Learn Pty Ltd"	04-Feb-08 08:21 AM	

+="CN57483"	"    Complaints Resolution Committee Expenditure for December 2007 Quarter    "	="Therapeutic Goods Administration"	04-Feb-08	="Healthcare Services"	01-Jul-07	30-Jun-08	62533.00	=""	="Complementary Healthcare Council of Australia"	04-Feb-08 08:35 AM	

+="CN57489"	"Servers and storage arrays"	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	21-Feb-08	70118.51	=""	="Alpha West Services Pty Ltd"	04-Feb-08 09:12 AM	

+="CN57573"	"Provision of Consultancy services for Dose Administration Aid Service program"	="Department of Veterans' Affairs"	04-Feb-08	="Comprehensive health services"	18-Jan-08	30-Jun-08	50000.00	=""	="Quality Medication Care Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57575"	"Snare Licence Renewal 07/08"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Oct-07	29-Oct-08	44000.00	=""	="Intersect Alliance Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57583"	"IMU Contract Programmer: IMU-ICT028 Official Order IMU2007/088"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	02-Jan-08	31-Mar-08	50804.00	=""	="Manpower Services (Aus) P/L (t/a Elan IT Recruitment Solutions)"	04-Feb-08 03:12 PM	

+="CN57586"	"Obejecstar Oai Maintenance Peroid 30/06/2007 - 30/06/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Jun-07	30-Jun-08	73395.00	=""	="Fujitsu Australia Ltd"	04-Feb-08 03:13 PM	

+="CN57591"	"SAS Licences - 30/04/2007 - 29/04/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	30-Apr-07	29-Apr-08	71456.00	=""	="SAS Institute Australia Pty Ltd"	04-Feb-08 03:14 PM	

+="CN57596-A2"	"Enterprise 30.06.07 - 30.06.08"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	03-Jun-07	30-Jun-08	47531.00	=""	="Citrix Systems Asia Pacific Pty Ltd"	04-Feb-08 03:14 PM	

+="CN57602"	"Project Win32 Licences"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	15-Jun-07	14-Jun-08	59718.00	=""	="Kaz Group Pty Ltd"	04-Feb-08 03:15 PM	

+="CN57605"	"Property Rental - Bairnsdale"	="Department of Veterans' Affairs"	04-Feb-08	="Real estate services"	04-Sep-95	30-Jun-08	65000.00	=""	="United Church (Aust Property Trust) C/o Kilmanny Trust"	04-Feb-08 03:15 PM	

+="CN57622"	"Election Charter Flights"	="Australian Electoral Commission"	04-Feb-08	="Chartered aeroplane travel"	18-Sep-07	19-Jan-08	50560.00	=""	="Kimberley Air Services Pty Ltd"	04-Feb-08 04:12 PM	

+="CN57629"	"Desk Top Review of Reports and Products"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Office and desk accessories"	23-Jan-08	30-Jun-08	71148.00	="189"	="COLMAR BRUNTON SOCIAL RESEARCH"	04-Feb-08 04:13 PM	

+="CN57631"	"Development of material and curriculum for Diploma"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Developmental and professional teaching aids and materials and accessories and supplies"	24-Jan-08	16-May-08	65000.00	="225"	="Swinburne University of Technology"	04-Feb-08 04:13 PM	

+="CN57636"	"Provision of Printing Services as a member of the Print Panel"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Paper products"	15-Jan-08	31-Jan-08	43811.90	=""	="Pirion Pty Limited"	04-Feb-08 04:14 PM	

+="CN57639"	"COMCAR"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Motor vehicles"	17-Jan-08	30-Jun-08	50000.00	=""	="DOFA - Comcar"	04-Feb-08 04:14 PM	

+="CN57649"	"Next Generation Workplace (NGWP) WO# 3008"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	48048.00	=""	="MICROSOFT EVENTS"	04-Feb-08 04:15 PM	

+="CN57651"	"Video Conferencing Equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Electron tube devices and accessories"	25-Jan-08	25-Jan-08	72644.00	=""	="TT Group Communications"	04-Feb-08 04:16 PM	

+="CN57653"	"FaCSIA Standard Performance Framework"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Management advisory services"	29-Jan-08	30-Jun-08	45000.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Feb-08 04:16 PM	

+="CN57679"	"PRINCE2 for Practitioner Training"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Business administration services"	08-Jan-08	21-Feb-08	52932.00	=""	="TANNER JAMES MANAGEMENT"	04-Feb-08 04:19 PM	

+="CN57683"	"Provision Learning Centre Manager"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	14-Jan-08	30-Jun-08	56000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Feb-08 04:20 PM	

+="CN57684"	"Provision of Printing Services as a member of the"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Marketing and distribution"	14-Jan-08	30-Mar-08	45521.30	=""	="NEW MILLENNIUM PRINT"	04-Feb-08 04:20 PM	

+="CN57685"	"Management of NT Emergency Intervention Taskforce Recruitment Hot Line"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Telecommunications media services"	14-Jan-08	31-Jan-08	50000.00	=""	="Hamilton James and Bruce Pty Ltd"	04-Feb-08 04:20 PM	

+="CN57701"	"Procurement of:  TRUCK,UTILITY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	43840.00	=""	="BSB BRUSHES & SIGNS"	04-Feb-08 06:18 PM	

+="CN57704"	"Procurement of:  TRANSPONDER,SONAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Aug-07	04-Feb-08	42392.00	=""	="SEISMIC ASIA PACIFIC Pty Ltd"	04-Feb-08 06:18 PM	

+="CN57705"	"Procurement of:  TRUCK,UTILITY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	43840.00	=""	="BSB BRUSHES & SIGNS"	04-Feb-08 06:18 PM	

+="CN57713"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Jul-07	04-Feb-08	79832.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	04-Feb-08 06:19 PM	

+="CN57720"	"Procurement of:  AMPLIFIER,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	52200.00	=""	="CIDAAL ELECTRONIC Pty Ltd"	04-Feb-08 06:20 PM	

+="CN57723"	"Procurement of:  COMPRESSOR UNIT,RECIPROCATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Jul-07	04-Feb-08	78756.00	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 06:21 PM	

+="CN57727"	"Procurement of:  KIT,SIGNAL BRUSH BL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	15-Mar-08	49932.00	=""	="MOOG AUSTRALIA Pty Ltd"	04-Feb-08 06:21 PM	

+="CN57729"	"Procurement of:  MIXER STAGE,FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	65000.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:21 PM	

+="CN57730"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	42000.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 06:21 PM	

+="CN57733"	"Procurement of:  ARM BAND,DIVER'S;  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Jul-07	04-Feb-08	43826.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 06:22 PM	

+="CN57734"	"Procurement of:  BAG,DIVING EQUIPMENT;  LIFE PRESERVER,VEST;  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Jul-07	04-Feb-08	41445.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 06:22 PM	

+="CN57735"	"Procurement of:  TUBE ASSEMBLY,METAL;  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	04-Feb-08	42000.00	=""	="GTSA ENGINEERING"	04-Feb-08 06:22 PM	

+="CN57738"	"Procurement of:  ANTENNA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	46774.00	=""	="AUSTRALIAN TECHNOLOGY"	04-Feb-08 06:22 PM	

+="CN57739"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	01-Mar-08	43035.05	=""	="ADI Ltd"	04-Feb-08 06:22 PM	

+="CN57740"	"Procurement of:  CASE,ELECTRONIC COMMUNICATIONS EQUIPMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	15-Jul-08	62506.37	=""	="ADI Ltd"	04-Feb-08 06:22 PM	

+="CN57751"	"Procurement of:  CLOTH,CLEANING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	04-Feb-08	52605.00	=""	="CLOROX AUSTRALIA Pty Ltd"	04-Feb-08 06:24 PM	

+="CN57758"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	46586.00	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:25 PM	

+="CN57770"	"Procurement of:  SORBENT,OIL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Jul-07	04-Feb-08	48000.00	=""	="GLOBAL SPILL CONTROL Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57791"	"Procurement of:  LOUDSPEAKER-AMPLIFIER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	02-May-08	59537.75	=""	="ADI Ltd"	04-Feb-08 06:28 PM	

+="CN57792"	"Procurement of:  TELEPHONE SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	47940.00	=""	="EYLEX Pty Ltd"	04-Feb-08 06:29 PM	

+="CN57804"	"Procurement of:  LIGHT,CHEMILUMINESCENT;  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	46000.00	=""	="PAINS-WESSEX AUST Pty Ltd"	04-Feb-08 06:30 PM	

+="CN57805"	"Procurement of:  COMFORTER,BED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	46000.00	=""	="SNUGGLE Pty Ltd"	04-Feb-08 06:30 PM	

+="CN57810"	"Procurement of:  SNAP HOOK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Aug-07	04-Feb-08	65240.00	=""	="RONSTAN INTERNATIONAL Pty Ltd"	04-Feb-08 06:31 PM	

+="CN57814"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	15-Feb-08	72741.30	=""	="ADI Ltd"	04-Feb-08 06:31 PM	

+="CN57816"	"Procurement of:  CYLINDER,COMPRESSED GAS,HELIUM-OXYGEN;  CYLINDER,COMPRESSED GAS,OXYGEN,AVIATOR'S;  CYLINDER,COMPRESSED GAS,HELIUM-OXYGEN;  HELIUM-OXYGEN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	04-Feb-08	47429.00	=""	="BOC Ltd"	04-Feb-08 06:31 PM	

+="CN57822"	"Procurement of:  LIFE PRESERVER,VEST;  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Aug-07	04-Feb-08	44100.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	04-Feb-08 06:32 PM	

+="CN57826"	"Procurement of:  STOPPER ASSEMBLY,CHAIN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Aug-07	03-Mar-08	67496.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:33 PM	

+="CN57829"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	59296.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	04-Feb-08 06:33 PM	

+="CN57831"	"Procurement of:  DOOR,METAL,MARINE STRUCTURAL;  DOOR,METAL,MARINE STRUCTURAL;  DOOR,METAL,MARINE STRUCTURAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Sep-07	10-Feb-08	46192.99	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 06:33 PM	

+="CN57834"	"Procurement of:  SORBENT,OIL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	53504.00	=""	="GLOBAL SPILL CONTROL Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57838"	"Procurement of:  HELMET,CRASH"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Aug-07	04-Feb-08	42375.00	=""	="DEFCON TECHNOLOGIES Pty Ltd"	04-Feb-08 06:34 PM	

+="CN57846"	"Procurement of:  COMPUTER SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Aug-07	04-Feb-08	40728.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:35 PM	

+="CN57849"	"Procurement of:  MODIFICATION KIT,HEAT EXCHANGERS AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Aug-07	04-Feb-08	58446.72	=""	="APV AUSTRALIA Pty Ltd"	04-Feb-08 06:35 PM	

+="CN57851"	"Procurement of:  BUTTON,DOOR;  FAN,CENTRIFUGAL;  FAN,CENTRIFUGAL;  BOILER,STEAM,HIGH PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	31-Mar-08	64229.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:36 PM	

+="CN57852"	"Procurement of:  COVERALLS,ANTI-EXPOSURE;  COVERALLS,ANTI-EXPOSURE;  COVERALLS,ANTI-EXPOSURE;  COVERALLS,ANTI-EXPOSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Aug-07	04-Feb-08	64975.00	=""	="AQUATERRO"	04-Feb-08 06:36 PM	

+="CN57857"	"Procurement of:  FAN,CENTRIFUGAL;  COOLER,FLUID,INDUSTRIAL;  CORE ASSEMBLY,FLUID COOLER;  VENT,RADIAL FAN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Aug-07	29-Feb-08	47189.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:37 PM	

+="CN57867"	"Procurement of:  WINDSHIELD WIPER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Sep-07	04-Feb-08	47200.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:38 PM	

+="CN57877"	"Procurement of:  BEARING HALF SET,SLEEVE;  BEARING HALF SET,SLEEVE;  COVER,ACCESS;  BEARING HALF SET,SLEEVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	45963.31	=""	="MAN B&W DIESEL AUSTRALIA Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57888"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Sep-07	04-Feb-08	71635.00	=""	="SONARTECH ATLAS"	04-Feb-08 06:40 PM	

+="CN57895"	"Procurement of:  TRANSLATOR,SIGNAL DATA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	16-Aug-08	60200.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:41 PM	

+="CN57896"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Sep-07	25-Sep-08	69309.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 06:41 PM	

+="CN57902"	"Procurement of:  NET,CARGO,WEBBING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	04-Feb-08	74600.00	=""	="BEAVER ENGINEERING Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57909"	"Procurement of:  PARALLEL RULER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	15-Mar-08	42000.00	=""	="HEADLAND ENGINEERING Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57911"	"Procurement of:  PUMP SET,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Sep-07	30-May-08	56740.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:43 PM	

+="CN57912"	"Procurement of:  PADLOCK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	04-Feb-08	45600.00	=""	="J BLACKWOOD & SON Ltd"	04-Feb-08 06:43 PM	

+="CN57915"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	29-Feb-08	60538.40	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:43 PM	

+="CN57921"	"Procurement of:  CABLE ASSEMBLY SET,ELECTRICAL;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	30-Apr-08	47194.56	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 06:44 PM	

+="CN57922"	"Procurement of:  ASSIEME MOTORIDUTTO"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	26-Feb-08	52520.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:44 PM	

+="CN57931"	"Procurement of:  PACKING ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	04-Feb-08	45374.70	=""	="WALKER JAMES AUST Pty Ltd"	04-Feb-08 06:45 PM	

+="CN57933"	"Procurement of:  O-RING;  MOTOR,DIRECT CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	04-Oct-07	04-Feb-08	57083.80	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:45 PM	

+="CN57951"	"Procurement of:  PUMP,RADIAL PISTONS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	29-Feb-08	41202.00	=""	="BAKER & PROVAN Pty Ltd"	04-Feb-08 06:47 PM	

+="CN57956"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	04-Feb-08	48983.80	=""	="ADI Ltd"	04-Feb-08 06:48 PM	

+="CN57967"	"Procurement of:  EXTINGUISHER,FIRE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	04-Feb-08	44625.00	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:49 PM	

+="CN57984"	"Procurement of:  PARALLEL RULER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	27-Feb-08	42000.00	=""	="HEADLAND ENGINEERING Pty Ltd"	04-Feb-08 06:51 PM	

+="CN57988"	"Procurement of:  MICROPHONE,MAGNETIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	21-Mar-08	64096.80	=""	="AERO & MILITARY PRODUCTS"	04-Feb-08 06:52 PM	

+="CN57996"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Oct-07	12-Mar-08	57474.00	=""	="WATMARINE ENGINEERING SERVICES P"	04-Feb-08 06:53 PM	

+="CN57997"	"Procurement of:  LIFTING FIXTURE BLA;  LIFTING FIXTURE BLA"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Oct-07	10-Apr-08	46420.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	04-Feb-08 06:53 PM	

+="CN58005"	"Procurement of:  SERVICE KIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	56110.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	04-Feb-08 06:54 PM	

+="CN58006"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	14-Mar-08	72198.00	=""	="WATMARINE ENGINEERING SERVICES P"	04-Feb-08 06:54 PM	

+="CN58017"	"Procurement of:  BOX,COLLECTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Oct-07	30-Apr-08	63504.86	=""	="H I FRASER Pty Ltd"	04-Feb-08 06:55 PM	

+="CN58027"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	04-Feb-08	63480.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	04-Feb-08 06:57 PM	

+="CN58031"	"Procurement of:  COVER,SHIPS UPPER DECK;  COVER,SHIPS UPPER DECK;  COVER,SHIPS UPPER DECK;  COVER,TORPEDO TUBES;  COVER,SHIPS BINOCULARS;  COVER ASSEMBLY,MACHINE GUN; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	12-Mar-08	58322.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:57 PM	

+="CN58032"	"Procurement of:  CONNECTOR ASSEMBLY,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	05-May-08	75597.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 06:57 PM	

+="CN58036"	"Procurement of:  FILTER,FLUID;  FILTER ASSEMBLY,RESERVOIR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	25-Oct-08	45252.18	=""	="PALL AUSTRALIA"	04-Feb-08 06:58 PM	

+="CN58054"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  AMPLIFIER,VIDEO;  GEARCASE-MOTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	05-May-08	75730.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:00 PM	

+="CN58059"	"Procurement of:  CONTROL,REEL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Nov-07	04-Feb-08	40014.00	=""	="A & G PRICE Ltd"	04-Feb-08 07:00 PM	

+="CN58063"	"Procurement of:  CORE ASSEMBLY,FLUID COOLER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	05-Mar-08	48397.26	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:01 PM	

+="CN58068"	"Procurement of:  FILTER ASSEMBLY;  FILTER ASSEMBLY;  FILTER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Nov-07	06-Feb-08	48822.93	=""	="TENIX DEFENCE Pty Ltd"	04-Feb-08 07:02 PM	

+="CN58071"	"Procurement of:  CONTROL STATION,HOIST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	14-Jun-08	73620.78	=""	="BAKER & PROVAN Pty Ltd"	04-Feb-08 07:02 PM	

+="CN58081"	"Procurement of:  INSULATOR,STRAIN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	04-Feb-08	66065.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:03 PM	

+="CN58084"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	18-Mar-08	43931.70	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:03 PM	

+="CN58092"	"Procurement of:  COMPRESSOR,REFRIGERATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Nov-07	15-Feb-08	43354.95	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 07:04 PM	

+="CN58095"	"Procurement of:  PUMP SET,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	26-Sep-08	56740.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 07:05 PM	

+="CN58098"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	29-Mar-08	65044.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 07:05 PM	

+="CN58106"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	13-Mar-08	75600.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:06 PM	

+="CN58107"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Nov-07	06-Oct-08	66300.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 07:06 PM	

+="CN58114"	"Procurement of:  BOLZEN MIT ZUBEHOER;  BOLZEN MIT ZUBEHOER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	13-Mar-08	42925.52	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:07 PM	

+="CN58115"	"Procurement of:  SEAL,PNEUMATIC,HATCH;  SEAL,NONMETALLIC SPECIAL SHAPED SECTION;  SEAL,NONMETALLIC SPECIAL SHAPED SECTION;  SEAL,PNEUMATIC,DOOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	13-Feb-08	65590.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	04-Feb-08 07:07 PM	

+="CN58126"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Nov-07	24-May-08	51480.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:08 PM	

+="CN58132"	"Procurement of:  VALVE,REGULATING,SYSTEM PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	25-Feb-08	43666.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:09 PM	

+="CN58141"	"Procurement of:  IDENTIFICATION SET, CABLE PAIR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Nov-07	21-Feb-08	75950.00	=""	="AEGIS Pty Ltd"	04-Feb-08 07:10 PM	

+="CN58154"	"Procurement of:  TELEPHONE SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Nov-07	11-Mar-08	57654.80	=""	="ADI Ltd"	04-Feb-08 07:12 PM	

+="CN58162"	"Procurement of:  VALVE,STOP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Dec-07	19-May-08	45174.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 07:13 PM	

+="CN58193"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	10-Jun-08	48940.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 07:16 PM	

+="CN58195"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Dec-07	18-Apr-08	44250.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 07:16 PM	

+="CN58196"	"Procurement of:  SENSOR,COMBUSTIBLES"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Dec-07	04-Feb-08	45030.00	=""	="AUSTECH INSTRUMENTS Pty Ltd"	04-Feb-08 07:17 PM	

+="CN58198"	"Procurement of:  MOTOR,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Dec-07	16-Sep-08	49583.26	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	04-Feb-08 07:17 PM	

+="CN58200"	"Procurement of:  DIAPHRAGM SET,PACKLESS VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	18-Feb-08	47704.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	04-Feb-08 07:17 PM	

+="CN58204"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Feb-08	69000.00	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:18 PM	

+="CN58214"	"Procurement of:  GASKET;  PUSH ROD ASSEMBLY;  BUSHING,SLEEVE;  ROLLER,LINEAR-ROTARY MOTION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	04-Feb-08	40022.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:19 PM	

+="CN58227"	"Procurement of:  AMPLIFIER,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Dec-07	02-May-08	42100.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58235"	"Procurement of:  PARTS KIT,CENTRIFUGAL PUMP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Dec-07	07-Apr-08	51924.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 07:21 PM	

+="CN58252"	"Procurement of:  VALVE,AIR STARTING;  PACKING,PREFORMED;  BUSHING,SLEEVE;  ROLLER GUIDE;  PIN,STRAIGHT,HEADLESS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	27-Mar-08	41171.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:23 PM	

+="CN58254"	"Procurement of:  FAN,TUBEAXIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Dec-07	15-Dec-08	73922.30	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:24 PM	

+="CN58257"	"Procurement of:  REGULATOR ASSEMBLY,VOLTAGE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Dec-07	14-Jul-08	43008.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:24 PM	

+="CN58259"	"Procurement of:  FLAP AIR EMERGENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	04-Feb-08	40950.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:24 PM	

+="CN58261"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	04-Feb-08	59300.00	=""	="SULZER PUMPS (ANZ) Pty Ltd"	04-Feb-08 07:24 PM	

+="CN58268"	"Procurement of:  TOOL KIT,INTERNAL COMBUSTION ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Jul-07	04-Feb-08	43048.55	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58269"	"Procurement of:  VALVE STOP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	15-Feb-08	51430.04	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58273"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	67200.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:26 PM	

+="CN58286"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE;  VALVE,REGULATING,FLUID PRESSURE;  VALVE,REGULATING,FLUID PRESSURE;  VALVE,REGULATING,FLUID PRESSURE;  VALVE,REGULATING,FLUID PRESSURE;  VALVE,CHECK; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	04-Feb-08	66218.79	=""	="A S C Pty Ltd"	04-Feb-08 07:27 PM	

+="CN58289"	"Procurement of:  STRAINER ELEMENT,SEDIMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Jul-07	05-Apr-08	69019.72	=""	="A S C Pty Ltd"	04-Feb-08 07:28 PM	

+="CN58290"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Jul-07	04-Feb-08	69000.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 07:28 PM	

+="CN58306"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Jul-07	30-Apr-08	46799.20	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58314"	"Procurement of:  PARTS KIT,COUPLING,RIGID SHAFT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	04-Feb-08	56500.00	=""	="STROMAG SALES Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58315"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	30-May-08	60146.28	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58327"	"Procurement of:  LOUDSPEAKER,PERMANENT MAGNET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	78718.50	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	04-Feb-08 07:32 PM	

+="CN58329"	"Procurement of:  BEARING,BALL,ANNULAR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	11-May-08	40142.01	=""	="A S C Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58337"	"Procurement of:  CONTROL,REEL;  GEAR ASSEMBLY,SPEED DECREASER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	01-Mar-08	52891.00	=""	="A & G PRICE Ltd"	04-Feb-08 07:34 PM	

+="CN58341"	"Procurement of:  HEATER,FLUID,INDUSTRIAL;  FILTER UNIT,WATER PURIFICATION,UNMOUNTED;  SEAL SET,SPECIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	53456.16	=""	="PALL AUSTRALIA"	04-Feb-08 07:34 PM	

+="CN58349"	"Procurement of:  CIRCUIT BREAKER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Jul-07	04-Feb-08	49995.00	=""	="M&D MARINE PARTS SERVICE Pty *"	04-Feb-08 07:35 PM	

+="CN58351"	"Procurement of:  STRAP,WEBBING;  FUSEHOLDER,BLOCK;  CIRCUIT BREAKER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Jul-07	04-Feb-08	67589.76	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:35 PM	

+="CN58353"	"Procurement of:  SCREW,CAP,SOCKET HEAD"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	47837.40	=""	="A S C Pty Ltd"	04-Feb-08 07:35 PM	

+="CN58360"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	77238.00	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:36 PM	

+="CN58373"	"Procurement of:  RECEIVER-TRANSMITTER,RADIO"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	72200.00	=""	="BEARCOM"	04-Feb-08 07:38 PM	

+="CN58374"	"Procurement of:  TRACKBALL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	02-Sep-08	75492.25	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:38 PM	

+="CN58377"	"Procurement of:  PARTS KIT,DIESEL ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	04-Feb-08	57890.95	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:38 PM	

+="CN58381"	"Procurement of:  CIRCUIT CARD ASSEMB;  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Aug-07	04-Feb-08	62800.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:39 PM	

+="CN58398"	"Procurement of:  COVERALLS,ANTI-EXPOSURE;  COVERALLS,ANTI-EXPOSURE;  COVERALLS,ANTI-EXPOSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Aug-07	04-Feb-08	42345.00	=""	="AQUATERRO"	04-Feb-08 07:41 PM	

+="CN58404"	"Procurement of:  RING,ELECTRICAL CONTACT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	10-Jul-08	78250.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58405"	"Procurement of:  RING,ELECTRICAL CONTACT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Sep-07	08-Jul-08	78250.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58413"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Sep-07	22-Sep-08	69008.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58418"	"Procurement of:  BELLOWS,PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Sep-07	04-Feb-08	46253.10	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:43 PM	

+="CN58420"	"Procurement of:  POWER SUPPLY ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	28-Sep-08	67260.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:43 PM	

+="CN58425"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Sep-07	21-Jul-08	52092.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58440"	"Procurement of:  RESTRAINT,HOSE;  VALVE,BALL;  BLADDER,ACCUMULATOR,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	08-Oct-07	16-Jun-08	71715.07	=""	="A S C Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58444"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	06-Aug-08	47070.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58460"	"Procurement of:  TRANSMITTER,TEMPERATURE,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	28-May-08	62758.99	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58461"	"Procurement of:  COVER,SHIPS UPPER DECK;  COVER,SHIPS UPPER DECK;  COVER,SHIPS UPPER DECK;  COVER,TORPEDO TUBES;  COVER,SHIPS BINOCULARS;  COVER ASSEMBLY,MACHINE GUN; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	04-Feb-08	58322.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 07:48 PM	

+="CN58462"	"Procurement of:  VALVE,LINEAR,DIRECTIONAL CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	43710.66	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58464"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Nov-07	22-Apr-08	44971.54	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58469"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	21-Mar-08	70063.99	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:49 PM	

+="CN58470"	"Procurement of:  INTERCONNECTING BOX"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Nov-07	07-Sep-08	51731.76	=""	="A S C Pty Ltd"	04-Feb-08 07:49 PM	

+="CN58473"	"Procurement of:  SWITCH,PROXIMITY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	04-Feb-08	72516.84	=""	="A S C Pty Ltd"	04-Feb-08 07:50 PM	

+="CN58476"	"Procurement of:  FILTER ELEMENT,FLUID;  FILTER ELEMENT,FLUID;  PARTS KIT,SEAL REPLACEMENT,MECHANICAL;  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	27-Apr-08	50353.82	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:50 PM	

+="CN58478"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	21-Nov-07	04-Feb-08	46982.00	=""	="EBBCO Ltd"	04-Feb-08 07:50 PM	

+="CN58487"	"Procurement of:  HOUSING,LIQUID PUMP"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	04-Feb-08	55799.45	=""	="PEACOCK AND SMITH SALES Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58492"	"Procurement of:  CONDENSER,REFRIGERATION;  CONDENSER,REFRIGERATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	18-Apr-08	42279.00	=""	="HILL EQUIPMENT & REFRIGERATION"	04-Feb-08 07:52 PM	

+="CN58495"	"Procurement of:  FIBER ROPE ASSEMBLY,SINGLE LEG"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Dec-07	02-May-08	73511.40	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:52 PM	

+="CN58497"	"Procurement of:  INDICATOR,SHIP'S ORDER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Dec-07	28-Mar-08	51230.00	=""	="LAWRENCE AND HANSON"	04-Feb-08 07:53 PM	

+="CN58508-A1"	"Provision of Security Services for all WA CRS premises. "	="CRS Australia"	05-Feb-08	="Security surveillance and detection"	01-Dec-07	30-Nov-10	49351.21	=""	="Satellite Security Services"	05-Feb-08 09:18 AM	

+="CN58521"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Software maintenance and support"	08-Jan-08	08-Jan-08	46816.00	=""	="RADIUS SOLUTIONS GROUP PTY LTD (FORMERLY GAP CONSULTING)"	05-Feb-08 09:25 AM	

+="CN58531"	"LEGAL LIBRARY"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Printed publications"	05-Dec-07	05-Dec-07	52273.27	=""	="THOMSON LEGAL AND REGULATORY LTD"	05-Feb-08 09:27 AM	

+="CN58534"	"HEALTH & LIFESTYLE ASSESSMENTS"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Business and corporate management consultation services"	18-Dec-07	18-Dec-07	49500.00	=""	="OPTIMAL HEALTH MANAGEMENT PTY LTD"	05-Feb-08 09:27 AM	

+="CN58537"	"CRISIS SIMULATION CONSULTANCY"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Business and corporate management consultation services"	11-Jan-08	11-Jan-08	56650.00	=""	="ERNST AND YOUNG ABC PTY LTD"	05-Feb-08 09:28 AM	

+="CN58540"	"OUTGOINGS RECONCILIATION 2006/2007"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Facilities management"	21-Dec-07	21-Dec-07	41809.57	=""	="JONES LANG LASALLE (NSW) PTY LTD"	05-Feb-08 09:28 AM	

+="CN58543"	"TEMPORARY ADMIN ASSISTANT"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Temporary personnel services"	28-Dec-07	28-Dec-07	52285.09	="SON50684"	="COX PURTELL"	05-Feb-08 09:28 AM	

+="CN58546"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Legal services"	08-Jan-08	08-Jan-08	44000.00	=""	="SPARKE HELMORE SOLICITORS"	05-Feb-08 09:29 AM	

+="CN58557"	" Internal Metalwork to Building 179  2007-047 "	="CSIRO"	05-Feb-08	="General building construction"	02-Nov-07	16-Jul-08	53416.00	="CSIRORFT2007-047"	="Can-Weld Contracting Pty Ltd"	05-Feb-08 09:59 AM	

+="CN58558"	"Computing Machinery"	="Australian Electoral Commission"	05-Feb-08	="Computer Equipment and Accessories"	21-Jan-08	21-Feb-08	43381.80	=""	="ASI Solutions"	05-Feb-08 10:01 AM	

+="CN58579"	"Legal Services"	="Australian Electoral Commission"	05-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	="AEC06/032"	="Australian Government Solicitor"	05-Feb-08 11:39 AM	

+="CN58606"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	05-Feb-08	="Printing"	29-Jan-08	30-Jun-08	51700.00	=""	="Canprint Communications Pty Ltd"	05-Feb-08 01:57 PM	

+="CN58615"	"Room, facility and accomodation hire  for AAP course"	="Austrade"	05-Feb-08	="Hotels and lodging and meeting facilities"	18-Oct-07	29-Oct-07	45791.50	=""	="Rydges"	05-Feb-08 02:02 PM	

+="CN58617"	"Analysis and development/maintenance of existing/new application systems"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	15-Mar-08	54300.00	=""	="GMT Canberra Pty Ltd"	05-Feb-08 02:02 PM	

+="CN58623"	"Analysis and development of application systems"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	28-Mar-08	60610.00	=""	="GMT Canberra Pty Ltd"	05-Feb-08 02:03 PM	

+="CN58643"	"Site Servicing"	="National Capital Authority"	05-Feb-08	="Land surveying"	04-Oct-07	30-Jun-08	70119.50	=""	="Brown Consulting (ACT) Pty Ltd"	05-Feb-08 02:31 PM	

+="CN58660"	"Financial management"	="National Capital Authority"	05-Feb-08	="Government finance services"	08-Oct-07	04-Jan-08	77000.00	=""	="Corporate People Pty Ltd"	05-Feb-08 03:43 PM	

+="CN58681"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	06-Feb-08	="Aircraft"	05-Feb-08	25-Feb-08	44652.00	=""	="SIKORSKY AIRCRAFT AUST LTD"	06-Feb-08 09:08 AM	

+="CN58682"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	06-Feb-08	="Aircraft"	05-Feb-08	25-Feb-08	55947.39	=""	="SIKORSKY AIRCRAFT AUST LTD"	06-Feb-08 09:15 AM	

+="CN58686"	"Postal Vote / Display Fees"	="Australian Electoral Commission"	06-Feb-08	="Postal and small parcel and courier services"	21-Dec-07	21-Jan-08	74650.00	=""	="Australia Post"	06-Feb-08 09:50 AM	

+="CN58695"	" Purchase of Qty 20 Support Assy's for Black Hawk.  PN: 70361-05060-042  Cage: 78286 "	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	23-Jul-07	06-Feb-08	50875.40	=""	="SAAL"	06-Feb-08 11:28 AM	

+="CN58697"	"It contracting service"	="Royal Australian Mint"	06-Feb-08	="Temporary technician staffing needs"	07-Jan-08	07-Jan-08	49566.00	=""	="DRAKE IT PTY LTD"	06-Feb-08 11:35 AM	

+="CN58705"	"Media monitoring services"	="Australian Electoral Commission"	06-Feb-08	="Telecommunications media services"	01-Nov-07	31-Jan-08	55033.16	=""	="Media Monitors Pty Ltd"	06-Feb-08 12:32 PM	

+="CN58709"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR BLADE."	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	48245.62	=""	="SAAL"	06-Feb-08 12:50 PM	

+="CN58725"	"Legal Services"	="Australian Electoral Commission"	06-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	=""	="Australian Government Solicitor"	06-Feb-08 02:41 PM	

+="CN58731"	" Cold Weather Wool Hoods "	="Defence Materiel Organisation"	06-Feb-08	="Insulated clothing for cold environments"	06-Feb-08	30-Jun-08	46431.00	="2480021"	="Amare Safety"	06-Feb-08 02:57 PM	

+="CN58758"	"Engineering Consultancy Services - Sydney Office"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Strategic planning consultation services"	08-Jan-08	31-Aug-08	47410.00	=""	="Medland Metropolis"	06-Feb-08 04:46 PM 

--- /dev/null
+++ b/admin/partialdata/02Feb2008to06Feb2008val80000to300000.xls
@@ -1,1 +1,183 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN57477"	"Provision of security guarding services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Security and personal safety"	01-Jul-07	30-Jun-09	164517.64	="ACCC RFT2007/09"	="Chubb Security Personnel Pty Ltd"	02-Feb-08 02:05 PM	

+="CN57487"	"Motor Vehicle Parts"	="Department of Defence"	04-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Feb-08	05-Mar-08	85336.41	=""	="VOLVO COMMERICAL VEHICLE"	04-Feb-08 09:08 AM	

+="CN57492-A1"	"    Supply of Regulatory Compliance and Monitoring System    "	="Therapeutic Goods Administration"	04-Feb-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	08-Jan-09	164680.00	=""	="Theta Technologies Pty Ltd"	04-Feb-08 09:22 AM	

+="CN57502"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	01-Feb-08	03-Feb-09	286000.00	=""	="Omaha IT Services PTY LTD"	04-Feb-08 10:51 AM	

+="CN57503"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	31-Jan-08	29-Jan-09	277200.00	=""	="HITECH PERSONNEL"	04-Feb-08 10:51 AM	

+="CN57504"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	31-Jan-08	17-Feb-09	239580.00	=""	="COLLECTIVE RESOURCES IT RECRUITMENT"	04-Feb-08 10:51 AM	

+="CN57505"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	31-Jan-08	02-Sep-08	119350.00	=""	="DEGISOFT CONSULTING PTY LTD"	04-Feb-08 10:51 AM	

+="CN57506"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	30-Jan-08	30-Jan-09	266200.00	=""	="I.T. Matters Scottish Pacific"	04-Feb-08 10:51 AM	

+="CN57507"	"IT Contractor"	="Australian Taxation Office"	04-Feb-08	="Engineering and Research and Technology Based Services"	30-Jan-08	17-Feb-09	275616.00	=""	="INFOSYS SOLUTIONS PTY LTD"	04-Feb-08 10:52 AM	

+="CN57512"	"CLOTH, COATED NEAR INFRARED, 1000 DENIER"	="Defence Materiel Organisation"	04-Feb-08	="Specialty fabrics or cloth"	04-Feb-08	31-Mar-08	131881.20	="CC1TA6"	="WAX CONVERTERS TEXTILES P/L"	04-Feb-08 11:00 AM	

+="CN57517"	" CSIRO Building179 Fire Services  CSIRO2007-037 "	="CSIRO"	04-Feb-08	="Fire services"	31-Oct-07	23-Sep-08	278333.00	="CSIRORFT2007-037"	="Wormald Pty Ltd"	04-Feb-08 11:38 AM	

+="CN57529-A1"	"Overseas Migration Training Services"	="Department of Immigration and Citizenship"	04-Feb-08	="International relations and cooperation"	01-Feb-08	31-Jan-09	135825.00	=""	="The International Organisation for Migration"	04-Feb-08 01:08 PM	

+="CN57542"	"LARGE FIELD PACK & BELT INDIVIDUAL EQUIPMENT"	="Defence Materiel Organisation"	04-Feb-08	="Arms and ammunition accessories"	04-Feb-08	01-May-08	177100.00	="CC1T2N"	="ANCAMARABA PTY LTD"	04-Feb-08 02:31 PM	

+="CN57543-A8"	"Staff Transport Services"	="Department of Immigration and Citizenship"	04-Feb-08	="Passenger road transportation"	15-Jan-08	30-Apr-09	228283.89	=""	="Greyhound Australia Pty Ltd"	04-Feb-08 02:31 PM	

+="CN57546"	"VEST, CHEST WEBBING"	="Defence Materiel Organisation"	04-Feb-08	="Harnesses or its accessories"	04-Feb-08	31-Mar-08	167814.90	="CC1TD1"	="HUNTERS EDGE"	04-Feb-08 02:56 PM	

+="CN57548"	"IMU Contract Programmer: IMU-ICT047 Official Order IMU2007/074"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Feb-08	31-Jan-09	168045.00	=""	="Peoplebank Australia Pty Ltd"	04-Feb-08 03:08 PM	

+="CN57549"	"IMU Contract Programmer: Official Order IMU2007/089"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Feb-08	30-Jun-08	125606.00	=""	="Acumen Alliance (ACT) Pty Ltd"	04-Feb-08 03:08 PM	

+="CN57552-A1"	"Hard Disk encryption for laptops with guardian edge hard disk x 253 End point port control with safend protector x 952 Annual maintenance for 3 years"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	21-Dec-07	20-Dec-10	108585.00	=""	="Anabelle Bits Pty Ltd"	04-Feb-08 03:08 PM	

+="CN57553-A1"	"Project Manager"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	03-Dec-07	30-May-08	114400.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	04-Feb-08 03:08 PM	

+="CN57554-A1"	"Project Manager"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	08-Oct-07	04-Apr-08	165000.00	=""	="F1 Solutions"	04-Feb-08 03:08 PM	

+="CN57555-A1"	"Curam Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	02-Jan-08	02-Jan-09	274560.00	=""	="F1 Solutions"	04-Feb-08 03:09 PM	

+="CN57562-A1"	"Project Manager"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	21-Jan-08	16-Jan-09	297440.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	04-Feb-08 03:09 PM	

+="CN57564-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	15-Aug-07	31-Oct-07	117975.00	=""	="Curam Software Pty Ltd"	04-Feb-08 03:10 PM	

+="CN57565-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Nov-07	02-May-08	264550.00	=""	="Curam Software Pty Ltd"	04-Feb-08 03:10 PM	

+="CN57566-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	02-Jan-08	02-Jan-09	274560.00	=""	="F1 Solutions"	04-Feb-08 03:10 PM	

+="CN57567-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	03-Sep-07	29-Feb-08	118800.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	04-Feb-08 03:10 PM	

+="CN57569-A1"	"Business Analyst"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Oct-07	28-Mar-08	137500.00	=""	="GMT Canberra Pty Ltd"	04-Feb-08 03:10 PM	

+="CN57570-A1"	"Project Manager"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	04-Feb-08	30-Jan-09	290576.00	=""	="Paxus Australia Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57574"	"SAS Enterprise Data Intergation Server, SAS/ACCESS DB2, SAS Analytics ServerEnterprise Guide(50 users)"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Dec-07	30-Nov-08	279158.00	=""	="SAS Institute Australia Pty Ltd"	04-Feb-08 03:11 PM	

+="CN57578"	"IMU Contract Programmer: IMU-ICT050 Official Order IMU2008/002"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	01-Feb-08	31-Jan-09	217800.00	=""	="Srigo Pty Ltd"	04-Feb-08 03:12 PM	

+="CN57580"	" POCKET, AMMUNITION POUCHES "	="Defence Materiel Organisation"	04-Feb-08	="Harnesses or its accessories"	04-Feb-08	31-Mar-08	155696.09	="CC1TAN"	="ANCAMARABA PTY LTD"	04-Feb-08 03:13 PM	

+="CN57590"	"Undertake the evaulation of the Brisbane North Division of General Practice care coordination demonstration pilot and the McKesson Asia Pacific Disease Management Project care cordination pilot. (rf 1"	="Department of Veterans' Affairs"	04-Feb-08	="Medical science research and experimentation"	29-Sep-05	30-Apr-08	89558.00	=""	="The University of Queensland"	04-Feb-08 03:13 PM	

+="CN57594"	"SIGHT DIAL TRILUX L7A1 SPARES"	="Defence Materiel Organisation"	04-Feb-08	="Surveillance and detection equipment"	25-Jan-08	27-Jun-08	98312.34	=""	="Hall & Watts Australia Pty Ltd"	04-Feb-08 03:14 PM	

+="CN57604"	"Property Rental - Wodonga"	="Department of Veterans' Affairs"	04-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	210350.00	=""	="Gerard & Jean Christian"	04-Feb-08 03:15 PM	

+="CN57607"	"Supply of Furniture for VVCS City Fitout"	="Department of Veterans' Affairs"	04-Feb-08	="Accommodation furniture"	01-Jul-07	30-Sep-07	115900.00	=""	="SCHIAVELLO (VIC) PTY LTD"	04-Feb-08 03:16 PM	

+="CN57608"	"LoadRunner Software and Support 28/06/2007- 27/6/2008"	="Department of Veterans' Affairs"	04-Feb-08	="Computer services"	28-Jun-07	27-Jun-08	137931.00	=""	="Zallcom Pty Ltd"	04-Feb-08 03:16 PM	

+="CN57611"	"SIGHT DIAL TRILUX L7A1 SPARES"	="Defence Materiel Organisation"	04-Feb-08	="Surveillance and detection equipment"	25-Jan-08	27-Jun-08	165246.73	=""	="Hall & Watts Australia Pty Ltd"	04-Feb-08 03:37 PM	

+="CN57615-A1"	" Jaws Professional user enterprise license x 20  Jaws Professional SMA user enterprise license x 50 "	="Australian Taxation Office"	04-Feb-08	="Software"	04-Jul-07	04-Feb-13	149966.00	=""	="Quantum Technology Pty Ltd"	04-Feb-08 03:50 PM	

+="CN57658"	"Research the cost of providing Family Day Care & In Home Care across different geographical area"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Personal care products"	30-Jan-08	27-Jun-08	170500.00	=""	="Applied Economics (Canberra) Pty Lt"	04-Feb-08 04:17 PM	

+="CN57664"	"Reimbursement to UGS January 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Real estate services"	31-Jan-08	31-Jan-08	91125.88	=""	="United Group Services"	04-Feb-08 04:17 PM	

+="CN57668"	"Super Admin Fees Qtr to 31/03/08"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	08-Jan-08	11-Jan-08	150406.50	=""	="Comsuper       CPM"	04-Feb-08 04:18 PM	

+="CN57680"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Computer services"	11-Jan-08	30-Jun-08	83217.75	=""	="Finite Recruitment Pty Limited"	04-Feb-08 04:20 PM	

+="CN57689"	"Playgroup Program Evaluation"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Business administration services"	08-Jan-08	29-Aug-08	162392.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Feb-08 04:21 PM	

+="CN57691"	"Salary services and assosiated costs to WA Dept of Attorney General. Dr Sue Gordon NTER taskforce"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Human resources services"	10-Jan-08	31-Jul-08	230000.00	=""	="Department of the Attorney General"	04-Feb-08 04:21 PM	

+="CN57692"	"Siebel maintainence and support for 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Feb-08	="Construction and maintenance support equipment"	11-Jan-08	18-Jan-08	258213.00	=""	="Oracle Corporation Australia"	04-Feb-08 04:21 PM	

+="CN57700"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  VALVE ASSEMBLY,MANIFOLD;  COVER,HYDRAULIC,PUMP-MOTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Sep-07	04-Feb-08	81458.40	=""	="SOUTH WEST HYDRAULICS AND PNEUM*"	04-Feb-08 06:18 PM	

+="CN57702"	"Procurement of:  GANGPLANK;  GANGPLANK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Nov-07	05-Feb-08	147880.00	=""	="VARLEY GROUP"	04-Feb-08 06:18 PM	

+="CN57711"	"Procurement of:  GASKET;  GASKET;  GASKET;  GASKET;  GASKET;  GASKET; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Jul-07	04-Feb-08	258678.57	=""	="DIESELS AND COMPONENTS Pty Ltd"	04-Feb-08 06:19 PM	

+="CN57717"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	29-Feb-08	116044.17	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 06:20 PM	

+="CN57741"	"Procurement of:  INTERCONNECTING BOX"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	192416.00	=""	="ADI Ltd"	04-Feb-08 06:23 PM	

+="CN57742"	"Procurement of:  TELEPHONE SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Jul-07	04-Feb-08	110919.00	=""	="ADI Ltd"	04-Feb-08 06:23 PM	

+="CN57771"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	04-Feb-08	99900.00	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 06:26 PM	

+="CN57773"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	28-Feb-08	113491.05	=""	="ADI Ltd"	04-Feb-08 06:26 PM	

+="CN57783"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	111750.00	=""	="PALL AUSTRALIA"	04-Feb-08 06:28 PM	

+="CN57797"	"Procurement of:  GENERATOR,SIGNAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	10-Sep-08	270300.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 06:29 PM	

+="CN57801"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	21-Mar-08	197868.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	04-Feb-08 06:30 PM	

+="CN57802"	"Procurement of:  CAPSULE SET,WATER DETECTION;  CAPSULE SET,WATER DETECTION;  CAPSULE SET,WATER DETECTION;  CAPSULE SET,WATER DETECTION;  CAPSULE SET,WATER DETECTION;  CAPSULE SET,WATER DETECTION; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	15-Jun-08	160254.26	=""	="SHELL CO OF AUSTRALIA Ltd"	04-Feb-08 06:30 PM	

+="CN57803"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	12-Aug-08	152131.45	=""	="ADI Ltd"	04-Feb-08 06:30 PM	

+="CN57809"	"Procurement of:  RING,ELECTRICAL CONTACT;  RING,ELECTRICAL CONTACT;  RING,ELECTRICAL CONTACT;  RING,ELECTRICAL CONTACT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Aug-07	31-May-08	187800.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 06:31 PM	

+="CN57811"	"Procurement of:  EVAPORATOR COIL,REFRIGERATION;  EVAPORATOR COIL,REFRIGERATION;  EVAPORATOR COIL,REFRIGERATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Aug-07	31-Mar-08	123515.00	=""	="NOSKE-KAESER NZ Ltd"	04-Feb-08 06:31 PM	

+="CN57847"	"Procurement of:  VALVE ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	20-Mar-08	146994.00	=""	="WEIR STRACHAN & HENSHAW AUST"	04-Feb-08 06:35 PM	

+="CN57853"	"Procurement of:  AMPLIFIER,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Aug-07	28-Feb-08	97080.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:36 PM	

+="CN57874"	"Procurement of:  SWITCH,THERMOSTATIC;  RECEIVER-TRANSMITTER SUBASSEMBLY;  ELECTRONIC COMPONENTS ASSEMBLY;  CONTROL,RECEIVER;  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Sep-07	04-Feb-08	89996.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	04-Feb-08 06:39 PM	

+="CN57890"	"Procurement of:  COMPRESSOR UNIT,RECIPROCATING"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	27-May-08	105725.00	=""	="COMPAIR AUSTRALASIA Ltd"	04-Feb-08 06:40 PM	

+="CN57892"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Sep-07	22-Jul-08	218452.88	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 06:41 PM	

+="CN57904"	"Procurement of:  BRIDGE POINTER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Sep-07	05-Nov-08	177519.32	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57905"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Sep-07	10-Apr-08	97860.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:42 PM	

+="CN57924"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  RECEIVER-TRANSMITTER SUBASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Oct-07	08-Apr-08	96708.00	=""	="SONARTECH ATLAS"	04-Feb-08 06:44 PM	

+="CN57927"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  GENERATOR,SWEEP;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	11-Apr-08	92921.00	=""	="SONARTECH ATLAS"	04-Feb-08 06:45 PM	

+="CN57929"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE;  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Oct-07	04-Feb-08	91439.84	=""	="ADI Ltd"	04-Feb-08 06:45 PM	

+="CN57932"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	04-Feb-08	91865.22	=""	="THALES UNDERWATER SYSTEMS Pty Ltd"	04-Feb-08 06:45 PM	

+="CN57934"	"Procurement of:  MODUL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Oct-07	11-Oct-08	242325.28	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:45 PM	

+="CN57942"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	27-May-08	103340.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	04-Feb-08 06:46 PM	

+="CN57945"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	15-Aug-08	259420.80	=""	="ADI Ltd"	04-Feb-08 06:47 PM	

+="CN57963"	"Procurement of:  PARTS KIT,COMPRESSOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	22-Aug-08	95087.85	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 06:49 PM	

+="CN57965"	"Procurement of:  CELL ASSEMBLY ELECTROCATALYTIC;  PUMP,CENTRIFUGAL;  TUBING NONMETALIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	15-Oct-07	15-Feb-08	111864.00	=""	="TSF ENGINEERING Pty Ltd"	04-Feb-08 06:49 PM	

+="CN57970"	"Procurement of:  REFRIGERATION UNIT,MECHANICAL;  REFRIGERATION,MODULE;  FREEZER UNIT, MECHANICAL;  REFRIGERATION UNIT,MECHANICAL;  REFRIGERATION UNIT,MECHANICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Oct-07	11-Feb-08	283152.48	=""	="HILL EQUIPMENT & REFRIGERATION"	04-Feb-08 06:50 PM	

+="CN57971"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	01-Apr-08	96940.00	=""	="SITEP AUSTRALIA Pty Ltd"	04-Feb-08 06:50 PM	

+="CN57978"	"Procurement of:  MATRIX,COMMUNICATION"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	14-Aug-08	247165.81	=""	="ADI Ltd"	04-Feb-08 06:51 PM	

+="CN57985"	"Procurement of:  HOOD,BREATHING APPARATUS;  BAG,DIVING EQUIPMENT;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Oct-07	04-Feb-08	114240.00	=""	="MSA (AUST) Pty Ltd"	04-Feb-08 06:52 PM	

+="CN57991"	"Procurement of:  SWITCH,ELECTRONIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	26-Mar-08	81200.00	=""	="ELECTRONIC DEVELOPMENT SALES PT*"	04-Feb-08 06:52 PM	

+="CN57998"	"Procurement of:  PUMP,ROTARY;  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	12-Mar-08	132021.00	=""	="WATMARINE ENGINEERING SERVICES P"	04-Feb-08 06:53 PM	

+="CN58000"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	23-Feb-08	222620.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 06:53 PM	

+="CN58042"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	31-Oct-07	04-Feb-08	87472.50	=""	="ARGUS ENGINEERING AUSTRALIA P /"	04-Feb-08 06:58 PM	

+="CN58057"	"Procurement of:  FILTER UNIT,WATER PURIFICATION,UNMOUNTED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Nov-07	04-Feb-08	188841.25	=""	="PALL AUSTRALIA"	04-Feb-08 07:00 PM	

+="CN58073"	"Procurement of:  BOX, COLLECTOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	09-Nov-07	30-Apr-08	115312.28	=""	="H I FRASER Pty Ltd"	04-Feb-08 07:02 PM	

+="CN58096"	"Procurement of:  FIXTURE,TEST"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	04-Feb-08	92280.00	=""	="ADI"	04-Feb-08 07:05 PM	

+="CN58097"	"Procurement of:  CONTROL-INDICATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Nov-07	03-Aug-08	235712.74	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:05 PM	

+="CN58119"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	21-May-08	141298.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:08 PM	

+="CN58120"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	06-Aug-08	148350.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:08 PM	

+="CN58122"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	22-Nov-07	25-Aug-08	178869.60	=""	="AUSTRALIAN TECHNOLOGY"	04-Feb-08 07:08 PM	

+="CN58130"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	01-Apr-08	167418.18	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:09 PM	

+="CN58136"	"Procurement of:  VALVE,FLUSH;  CONTROL,VACUUM TOILET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	27-Mar-08	88898.83	=""	="H I FRASER Pty Ltd"	04-Feb-08 07:09 PM	

+="CN58144"	"Procurement of:  INJECTOR ASSEMBLY,FUEL;  PUMP,CENTRIFUGAL;  THERMOSTAT,FLOW CONTROL;  PUMP,COOLING SYSTEM,ENGINE;  PUMP,COOLING SYSTEM,ENGINE;  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	29-Nov-07	27-Feb-08	169280.14	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:10 PM	

+="CN58170"	"Procurement of:  PLUG,VENT;  TERMINAL,QUICK DISCONNECT;  CONNECTOR,WATERPROOF;  BULKHEAD ASSEMBLY;  BULKHEAD ASSEMBLY;  HEADSET,ELECTRICAL; + MORE..."	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	05-Dec-07	03-Apr-08	199649.84	=""	="RFD TECHNOLOGIES Pty Ltd"	04-Feb-08 07:14 PM	

+="CN58187"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  MONITOR,RADIO FREQUENCY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Dec-07	16-Aug-08	244917.00	=""	="SONARTECH ATLAS"	04-Feb-08 07:16 PM	

+="CN58208"	"Procurement of:  CONTROL-INDICATOR"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	04-Sep-08	137329.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:18 PM	

+="CN58210"	"Procurement of:  COVERALLS,SURVIVAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Dec-07	21-Feb-08	263749.20	=""	="TECH CARRYCODE Pty Ltd"	04-Feb-08 07:18 PM	

+="CN58219"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	28-Jul-08	123003.90	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:19 PM	

+="CN58221"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	26-Oct-08	137194.60	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58226"	"Procurement of:  COMPUTER,FIRE CONTROL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Dec-07	30-Dec-08	100650.93	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:20 PM	

+="CN58239"	"Procurement of:  SEMICONDUCTOR DEVICE,DIODE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	19-Nov-08	116777.08	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:22 PM	

+="CN58241"	"Procurement of:  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	01-May-08	104376.20	=""	="APV AUSTRALIA Pty Ltd"	04-Feb-08 07:22 PM	

+="CN58246"	"Procurement of:  HOSE,PREFORMED"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Dec-07	17-Jun-08	222562.40	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:23 PM	

+="CN58253"	"Procurement of:  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND;  MODIFICATION KIT,HEAT EXCHANGERS AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Dec-07	02-May-08	111804.00	=""	="APV AUSTRALIA Pty Ltd"	04-Feb-08 07:23 PM	

+="CN58256"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	20-Dec-07	31-Dec-08	178281.88	=""	="MTU DETROIT DIESEL AUSTRALIA"	04-Feb-08 07:24 PM	

+="CN58263"	"Procurement of:  HEAT EXCHANGER"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	17-Jul-07	12-Apr-08	91061.85	=""	="SAAB SYSTEMS Pty Ltd"	04-Feb-08 07:25 PM	

+="CN58265"	"Procurement of:  WINDOW,OPTICAL INSTRUMENT;  WINDOW,OPTICAL INSTRUMENT;  WINDOW,OPTICAL INSTRUMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Jul-07	01-Jul-09	249922.55	=""	="BAE SYSTEMS AUSTRALIA Ltd"	04-Feb-08 07:25 PM	

+="CN58272"	"Procurement of:  FIXTURE,LIGHTING;  LIGHT,NAVIGATIONAL,MARINE;  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	90300.00	=""	="VERSALUX LIGHTING SYSTEMS"	04-Feb-08 07:26 PM	

+="CN58280"	"Procurement of:  HEADSET-MICROPHONE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	03-Jul-07	04-Feb-08	92876.00	=""	="JEA TECHNOLOGIES Pty Ltd"	04-Feb-08 07:27 PM	

+="CN58293"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Jul-07	30-May-08	182781.28	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:28 PM	

+="CN58303"	"Procurement of:  PANEL,CONTROL,ELECTRICAL-ELECTRONIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	18-Jul-07	04-Feb-08	96414.34	=""	="A S C Pty Ltd"	04-Feb-08 07:29 PM	

+="CN58305"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	19-Jul-07	30-May-08	80965.50	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:30 PM	

+="CN58313"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	23-Jul-07	30-May-08	104035.38	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:31 PM	

+="CN58323"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Jul-07	01-Apr-08	82155.30	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:32 PM	

+="CN58330"	"Procurement of:  DISPLAY UNIT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Jul-07	01-May-08	198189.34	=""	="A S C Pty Ltd"	04-Feb-08 07:33 PM	

+="CN58339"	"Procurement of:  CHASSIS,ELECTRICAL-ELECTRONIC EQUIPMENT"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Jul-07	10-Feb-08	129892.00	=""	="ROCKWELL COLLINS AUST Pty Ltd"	04-Feb-08 07:34 PM	

+="CN58345"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	22-Feb-08	106005.66	=""	="A S C Pty Ltd"	04-Feb-08 07:34 PM	

+="CN58352"	"Procurement of:  GANGPLANK"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	04-Feb-08	207050.00	=""	="VARLEY GROUP"	04-Feb-08 07:35 PM	

+="CN58361"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	01-Aug-07	04-Feb-08	130417.20	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:36 PM	

+="CN58363"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	04-Feb-08	113913.00	=""	="LAMINAR FLOW Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58366"	"Procurement of:  SERVOVALVE,HYDRAULIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	02-Aug-07	22-Sep-08	142972.00	=""	="STRACHAN & HENSHAW AUST Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58370"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,METALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Aug-07	04-Feb-08	92069.80	=""	="A S C Pty Ltd"	04-Feb-08 07:37 PM	

+="CN58371"	"Procurement of:  COOLER,FLUID,INDUSTRIAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	07-Aug-07	12-Jul-08	108081.18	=""	="A S C Pty Ltd"	04-Feb-08 07:38 PM	

+="CN58383"	"Procurement of:  TELEPHONE SET"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Aug-07	31-Mar-08	97630.28	=""	="ADI Ltd"	04-Feb-08 07:39 PM	

+="CN58409"	"Procurement of:  CAMSHAFT,ENGINE;  CAMSHAFT,ENGINE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	06-Sep-07	04-Feb-08	131313.40	=""	="GTSA ENGINEERING WORKSHOPS & PAR"	04-Feb-08 07:42 PM	

+="CN58410"	"Procurement of:  PUMP,CENTRIFUGAL;  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	14-Sep-07	10-Jul-08	158409.84	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	04-Feb-08 07:42 PM	

+="CN58421"	"Procurement of:  GYROSCOPE,RATE;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	25-Sep-07	15-Aug-08	199995.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:44 PM	

+="CN58429"	"Procurement of:  GYROSCOPE,RATE;  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	16-Oct-07	19-Sep-08	246990.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:45 PM	

+="CN58431"	"Procurement of:  CONTACTOR,MAGNETIC;  CONTACTOR,MAGNETIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	28-Sep-07	09-Feb-08	127358.66	=""	="A S C Pty Ltd"	04-Feb-08 07:45 PM	

+="CN58441"	"Procurement of:  REEL,CABLE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	10-Oct-07	04-Feb-08	237055.93	=""	="A S C Pty Ltd"	04-Feb-08 07:46 PM	

+="CN58442"	"Procurement of:  SPEED AND"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	12-Oct-07	30-Apr-08	95900.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	04-Feb-08 07:46 PM	

+="CN58448"	"Procurement of:  ACCELEROMETER,MECHANICAL;  DISPLAY UNIT;  INVERTER ASSEMBLY"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	24-Oct-07	28-Oct-08	166740.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	04-Feb-08 07:47 PM	

+="CN58454"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	26-Oct-07	17-Apr-08	163267.20	=""	="TENIX DEFENCE SYSTEMS Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58459"	"Procurement of:  ANALYZER,PARTICLE SIZE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	30-Oct-07	07-Feb-08	109875.01	=""	="A S C Pty Ltd"	04-Feb-08 07:48 PM	

+="CN58474"	"Procurement of:  CIRCUIT CARD ASSEMB;  CIRCUIT CARD ASSEMB;  CIRCUIT CARD ASSEMB;  TRANSMITTER,TEMPERATURE,ELECTRICAL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	13-Nov-07	13-Apr-08	84332.90	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	04-Feb-08 07:50 PM	

+="CN58484"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	11-Nov-08	190855.56	=""	="A S C Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58486"	"Procurement of:  REPAIR KIT,VALVE;  HOSE ASSEMBLY,METALLIC;  PARTS KIT,BALL VALVE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	27-Nov-07	12-Mar-08	90927.28	=""	="A S C Pty Ltd"	04-Feb-08 07:51 PM	

+="CN58493"	"Procurement of:  REEL ASSEMBLY,HOSE"	="Defence Materiel Organisation"	04-Feb-08	="Marine transport"	11-Dec-07	22-Jul-08	104852.29	=""	="A S C Pty Ltd"	04-Feb-08 07:52 PM	

+="CN58509"	" External Sun Shades Building 179  2007-048 "	="CSIRO"	05-Feb-08	="Laboratory supplies and fixtures"	30-Oct-07	07-Apr-08	148592.00	="CSIRORFT2007-048"	="QS Industries Pty Ltd"	05-Feb-08 09:19 AM	

+="CN58512"	"LEARNING AND DEVELOPMENT TRAINING COURSE"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Human resources services"	08-Jan-08	08-Jan-08	104999.40	=""	="TRAINING MANAGEMENT AND ADMIN SOLUTIONS PTY LTD"	05-Feb-08 09:24 AM	

+="CN58513"	"LEARNING MANAGEMENT SYSTEM MAINTENANCE"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Human resources services"	20-Dec-07	20-Dec-07	82999.40	=""	="COLLECTIVITY (AUST) PTY LTD"	05-Feb-08 09:24 AM	

+="CN58516"	"RELOCATION EXPENSES"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Human resources services"	04-Dec-07	04-Dec-07	297981.72	=""	="TOLL TRANSITIONS"	05-Feb-08 09:25 AM	

+="CN58517"	"GENERAL CONTRACTOR"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Temporary personnel services"	18-Dec-07	18-Dec-07	101799.61	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	05-Feb-08 09:25 AM	

+="CN58527"	"BCP FAILOVER PROJECT DESIGN"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Information technology consultation services"	18-Sep-07	31-Dec-07	290476.00	="ATM023APRA"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Feb-08 09:26 AM	

+="CN58532"	"REVIEW OF BENEFIT MODEL"	="Australian Prudential Regulation Authority (APRA)"	05-Feb-08	="Business intelligence consulting services"	01-Dec-07	30-Jun-08	151627.00	=""	="UNIVERSITY OF MELBOURNE"	05-Feb-08 09:27 AM	

+="CN58551"	" Profiled Steel Roofing Building 179  2007-043 "	="CSIRO"	05-Feb-08	="General building construction"	08-Nov-07	16-Jul-08	219978.00	="CSIRORFT2007-043"	="hawker Roofing Pty Ltd"	05-Feb-08 09:42 AM	

+="CN58561"	" External Metalwork Building 179  2007-051 "	="CSIRO"	05-Feb-08	="General building construction"	07-Nov-07	07-Apr-08	133793.00	="CSIRORFT2007-051"	="Can-Weld Contracting Pty Ltd"	05-Feb-08 10:05 AM	

+="CN58565"	"Provision of Software Services"	="Department of Immigration and Citizenship"	05-Feb-08	="Software"	18-Jun-07	30-Jun-11	80823.00	=""	="Pitney Bowes MapInfo Australia Pty Ltd"	05-Feb-08 10:25 AM	

+="CN58566"	"Amplifier - Limiter"	="Defence Materiel Organisation"	05-Feb-08	="Radar and sonar systems and components"	05-Feb-08	11-Nov-08	107738.95	=""	="Milspec Services Pty Ltd"	05-Feb-08 10:34 AM	

+="CN58573"	" CSIRO Hobart ICT and CMAR Furniture Supply  2007-054 "	="CSIRO"	05-Feb-08	="Furniture"	14-Nov-07	15-Jan-08	156523.40	="CSIRORFT2007-054"	="Bentley House Commercial Interiors Pty Ltd"	05-Feb-08 10:59 AM	

+="CN58574"	" SUPPLY OF PULSE OXIMETERS "	="Defence Materiel Organisation"	05-Feb-08	="Medical Equipment and Accessories and Supplies"	23-Jan-08	23-Mar-08	96525.00	=""	="PROACT MEDICAL SYSTEMS (AUST) P/L"	05-Feb-08 11:02 AM	

+="CN58592"	"Services in relation to 2nd level support/project management for data communication activities."	="Australian Federal Police"	05-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-06	30-Jun-08	298417.20	=""	="Whizdom Pty Ltd"	05-Feb-08 01:08 PM	

+="CN58601"	"supply and maintenance of server equipment"	="Department of Parliamentary Services"	05-Feb-08	="Computer servers"	29-Jan-08	03-Mar-08	110771.54	=""	="Hewlett Packard Australia Pty Ltd"	05-Feb-08 01:57 PM	

+="CN58605"	"Supply and maintenance of printers"	="Department of Parliamentary Services"	05-Feb-08	="Computer printers"	24-Jan-08	03-Mar-08	126653.56	=""	="Hewlett Packard Australia Pty Ltd"	05-Feb-08 01:57 PM	

+="CN58609"	"Provision of warehousing services (JH02038)"	="Department of Parliamentary Services"	05-Feb-08	="Specialised warehousing and storage"	01-Jan-08	06-Jan-08	108108.00	=""	="1st Fleet Warehousing & Dist"	05-Feb-08 01:58 PM	

+="CN58616"	"Establishment of project management plans, project risk and scope"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	21-Mar-08	95500.00	=""	="Ambit Group Pty Ltd"	05-Feb-08 02:02 PM	

+="CN58618"	"Project management of Connect program"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	31-Dec-07	126500.00	=""	="Sebrec Pty Ltd"	05-Feb-08 02:02 PM	

+="CN58619"	"Strategic and operational support for Connect program"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	30-Jun-08	165000.00	=""	="Ambit Group Pty Ltd"	05-Feb-08 02:02 PM	

+="CN58621-A1"	"IT Project Manager and Senior Business analyst"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	30-Jun-08	132110.00	=""	="Clicks IT Recruitment"	05-Feb-08 02:03 PM	

+="CN58622"	"Establishment of detailed management plans and schedules"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	30-Jun-08	164120.00	=""	="GMT Canberra Pty Ltd"	05-Feb-08 02:03 PM	

+="CN58625"	"Business analyst ITBS"	="Austrade"	05-Feb-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	30-Jun-08	97240.00	=""	="Ambit Group Pty Ltd"	05-Feb-08 02:03 PM	

+="CN58637-A1"	"Supply of Diagnostic Reagents."	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Dec-07	31-Dec-07	281433.05	=""	="CSL Ltd"	05-Feb-08 02:18 PM	

+="CN58638-A1"	"Supply of Diagnostic Reagents."	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Nov-07	30-Nov-07	248787.69	=""	="CSL Ltd"	05-Feb-08 02:21 PM	

+="CN58642"	"Property Lease Corio"	="Australian Electoral Commission"	05-Feb-08	="Lease and rental of property or building"	01-Dec-07	30-Nov-12	200000.00	="S07/1982"	="Encline Pty Ltd"	05-Feb-08 02:30 PM	

+="CN58644-A1"	"Supply of Diagnostic Reagents."	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Nov-07	30-Nov-07	145404.60	=""	="Diamed Australia Pty Ltd"	05-Feb-08 02:33 PM	

+="CN58655"	"For the operations of the Australian Haemophilia Centre Director's Organisation including the maintenance of the Australian Bleeding Disorder Registry (ABDR)"	="National Blood Authority"	05-Feb-08	="Healthcare Services"	01-Jan-08	30-Jun-08	158284.50	=""	="Australian Haemophilia Centre Directors Organisation"	05-Feb-08 03:31 PM	

+="CN58663"	"Provision of Corporate Card services"	="Australian Federal Police"	05-Feb-08	="Credit card service providers"	09-Apr-08	09-Apr-11	181500.00	=""	="Australian and New Zealand Banking Group"	05-Feb-08 03:59 PM	

+="CN58667"	"Computers"	="Department of the House of Representatives"	05-Feb-08	="Computers"	31-Jan-08	29-Feb-08	113032.34	=""	="Toshiba Aust P/L"	05-Feb-08 04:10 PM	

+="CN58676"	"Cost Planning Services"	="National Capital Authority"	05-Feb-08	="Government finance services"	19-Dec-07	01-Jun-11	244200.00	=""	="WT Partnership (Aust) Pty Ltd"	05-Feb-08 05:00 PM	

+="CN58680"	"Tool Kit Plumbers & Pipefitters"	="Defence Materiel Organisation"	06-Feb-08	="Tool kits"	05-Feb-08	04-Mar-08	84898.00	=""	="J Blackwood & Son"	06-Feb-08 09:03 AM	

+="CN58687"	"Temporary Election Personnel"	="Australian Electoral Commission"	06-Feb-08	="Temporary personnel services"	20-Nov-07	24-Dec-07	127331.99	=""	="McArthur Management Services (Qld)"	06-Feb-08 10:04 AM	

+="CN58696"	"Annual maintenance of EOS software for period 01/02/2008-31/01/2009"	="Australian Taxation Office"	06-Feb-08	="Software"	01-Feb-08	31-Jan-09	151757.05	=""	="Document Solutions International"	06-Feb-08 11:34 AM	

+="CN58706"	"Provision for internal Audit and Related Services"	="Comsuper"	06-Feb-08	="Internal audits"	10-Jan-08	30-Sep-08	222750.00	=""	="Oakton Services Pty Ltd"	06-Feb-08 12:40 PM	

+="CN58710-A1"	"Services as chair of Centrelink's Audit Committee"	="Centrelink"	06-Feb-08	="Management advisory services"	30-Jul-07	30-Sep-09	121000.00	=""	="Oliver Winder Pty Ltd"	06-Feb-08 01:12 PM	

+="CN58712"	"Aircraft Towlines"	="Defence Materiel Organisation"	06-Feb-08	="Military seaplanes"	21-Dec-07	02-Jun-08	128700.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	06-Feb-08 01:46 PM	

+="CN58715"	"staff renumeration services"	="Australian Institute of Family Studies"	06-Feb-08	="Employment"	20-Feb-06	31-Jan-08	106707.50	=""	="La Trobe University"	06-Feb-08 01:58 PM	

+="CN58721"	"Project Management of Capital Works Fairbairn ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	15-Feb-08	10-Mar-08	150180.80	=""	="Manteena Pty Ltd"	06-Feb-08 02:28 PM	

+="CN58724"	"Project Management of Capital Works Weston ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	03-Aug-07	31-Aug-07	190343.94	=""	="Manteena Pty Ltd"	06-Feb-08 02:37 PM	

+="CN58727"	"Project Management of Capital works Canberra ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Dec-07	31-Jan-08	148825.60	=""	="Manteena Pty Ltd"	06-Feb-08 02:46 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val0to12000.xls
@@ -1,1 +1,221 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87485"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	10500.00	="N/A"	="CORDELTA PTY LTD"	03-Jun-08 10:45 AM	

+="CN87507"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	03-Jun-08	="Legal services"	01-Feb-08	30-Jun-09	10000.00	=""	="Pilkinton, Stuart H."	03-Jun-08 11:55 AM	

+="CN87519"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	30-Jun-08	11616.00	=""	="Energy and Management Services Pty Ltd"	03-Jun-08 12:01 PM	

+="CN87524"	"Contractor Services"	="Child Support Agency"	03-Jun-08	="Business administration services"	22-May-08	14-Aug-08	10250.00	=""	="CITEC"	03-Jun-08 02:33 PM	

+="CN87542"	"Medical Assessments"	="Child Support Agency"	03-Jun-08	="Healthcare Services"	15-May-08	30-Jun-08	10000.00	=""	="UNIFIED HEALTHCARE GROUP"	03-Jun-08 02:35 PM	

+="CN87555"	"New chilling system for Reef HQ Ancillary Tanks(Power minimisation project)"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	18-Apr-08	30-Jun-08	10900.00	=""	="DALKIA TECHNICAL SERVICES"	03-Jun-08 02:54 PM	

+="CN87556"	"Smart Electroboard overlay LG50PM4M"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	11838.99	=""	="ELECTROBOARD SOLUTIONS Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87564"	"9 new computers for Finance section"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	10518.75	=""	="DELL COMPUTER Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87566"	"Status of Seabirds & Shore Birds in the Great Barrier Reef World Heritage Area"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	11220.00	=""	="C & R CONSULTING (GEOCHEMICAL AND HYDROB"	03-Jun-08 02:55 PM	

+="CN87572"	"Actalyst interactive overlay & plasma"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	10693.16	=""	="ELECTROBOARD SOLUTIONS Pty Ltd"	03-Jun-08 02:56 PM	

+="CN87573"	"VM Ware software"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	10575.40	=""	="AGIRE Pty Ltd"	03-Jun-08 02:56 PM	

+="CN87574"	"NSN 1630-01-162-3199, Swivel Joint Bodies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	11079.42	=""	="Milspec Services Pty Ltd"	03-Jun-08 02:59 PM	

+="CN87577"	" Education program - guest presenter anti-doping presentation "	="Australian Sports Anti-Doping Authority (ASADA)"	03-Jun-08	="Education and Training Services"	22-Apr-08	01-Dec-08	10000.00	=""	="Rebekah Keat"	03-Jun-08 03:13 PM	

+="CN87639"	"BOMB SAMPLER ASSEMBLY; SAMPLER ASSEMBLY"	="Defence Materiel Organisation"	04-Jun-08	="Completion test equipment"	31-May-08	28-Jun-08	10587.26	=""	="MILLIPORE AUSTRALIA PTY LTD"	04-Jun-08 09:49 AM	

+="CN87650"	"Printing Charges - April 2008 Account No: AIR"	="Australian Industrial Registry"	04-Jun-08	="Publication printing"	30-May-08	30-May-08	10588.76	=""	="DOCUMENT PRINTING AUSTRALIA"	04-Jun-08 11:39 AM	

+="CN87661"	"Provision of Excel Trianing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	21-May-08	13-Jun-08	12000.00	=""	="Acorn Training Services Pty Ltd"	04-Jun-08 11:43 AM	

+="CN87678"	"Steven Covey - Leadership conference 8 staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	10765.00	=""	="Red Carpet"	04-Jun-08 11:47 AM	

+="CN87681"	"Gender Pay Equity Roundable Planning, Facilitaito and Report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	19-May-08	11910.00	=""	="N-Carta Group Pty Ltd"	04-Jun-08 11:47 AM	

+="CN87696"	"Wizard Personnel contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Human resources services"	28-May-08	28-May-08	11261.25	=""	="Wizard Personnel & Office Services"	04-Jun-08 11:50 AM	

+="CN87697"	"Finalisation of Families Week Report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	28-May-08	28-May-08	11000.00	=""	="AUSTRALIAN INSTITUTE OF FAMILY"	04-Jun-08 11:50 AM	

+="CN87720"	"Development of admin processes & implementation schedule for group business team."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	26-May-08	31-May-08	10000.00	=""	="Yarrendale Enterprises Pty Ltd"	04-Jun-08 11:55 AM	

+="CN87731"	"Payment   Secretariat evaluation review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	10000.00	=""	="Australian Women's Coalition Incorp"	04-Jun-08 11:58 AM	

+="CN87732"	"Payment   Secretariat evaluation review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	10000.00	=""	="AUSTRALIAN FEDERATION OF"	04-Jun-08 11:58 AM	

+="CN87733"	"Payment   Secretariat evaluation review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	10000.00	=""	="National Rural Women's Coalition"	04-Jun-08 11:59 AM	

+="CN87734"	"Communications"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Communications Devices and Accessories"	27-May-08	28-May-08	10076.00	=""	="Bearcage Media Services Pty Ltd"	04-Jun-08 11:59 AM	

+="CN87749"	"Ms Helen Hambling - Travel  Dec 07 to Mar 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Travel facilitation"	07-May-08	07-May-08	11961.84	=""	="DEPARTMENT OF FINANCE"	04-Jun-08 12:02 PM	

+="CN87758"	"FACSIA ICT Office Stores  Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	02-May-08	31-May-08	11315.21	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87761"	"Property Lease Bne L9,379 Queens St"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	02-May-08	02-May-08	11495.00	=""	="CB Richard Ellis (Brisbane)"	04-Jun-08 12:04 PM	

+="CN87776"	"Advertising"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Advertising"	14-May-08	30-May-08	11220.00	=""	="HMA Blaze Pty Limited"	04-Jun-08 12:08 PM	

+="CN87783"	"Non-Ongoing Contractor APS2 position"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	12000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Jun-08 12:10 PM	

+="CN87801"	"Payment of invoice for transport services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Transportation repair or maintenance services"	09-May-08	09-May-08	11406.82	=""	="Serco Sodexho Defence Services Pty"	04-Jun-08 12:14 PM	

+="CN87809"	"Registration for  Career Development Assessment Centre"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Education and Training Services"	28-May-08	28-May-08	11825.00	="ATM08/1039"	="Australian Public"	04-Jun-08 12:15 PM	

+="CN87811"	"Advertising for recruitment of EL2 GCUADV2002\03"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Public Utilities and Public Sector Related Services"	28-May-08	28-May-08	10141.82	="ATM08/1048"	="HMA BLAZE PTY LTD"	04-Jun-08 12:15 PM	

+="CN87812"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Software"	13-May-08	30-Jun-08	11203.50	=""	="Applied Satellite Technology"	04-Jun-08 12:15 PM	

+="CN87824-A1"	"Access MOU to the APSC Learning and Development Panel"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Education and Training Services"	19-Jun-08	19-Jun-09	10500.00	="ATM08/1031"	="Australian Public"	04-Jun-08 12:16 PM	

+="CN87825-A1"	"Annual subscription to four databases in Proquest - June 08 - May 09"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Electronic Components and Supplies"	21-May-08	01-Jun-08	10056.25	="ATM08/1029"	="PROQUEST INFORMATION AND LEARNING"	04-Jun-08 12:16 PM	

+="CN87830"	"Emergency Fire management 12 months"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Environmental Services"	01-Jul-07	30-Jun-08	10733.84	="CCR/06/2012"	="Chubb Fire Safety"	04-Jun-08 12:16 PM	

+="CN87842"	"Transcribing 'Super what you Need to Know' publications for vision impaired and physically disabled audiences."	="Australian Taxation Office"	04-Jun-08	="Transcribing services"	30-Apr-08	10-Jun-08	11658.70	=""	="Vision Australia Ltd"	04-Jun-08 02:27 PM	

+="CN87845"	" Adoption Study "	="Australian Centre for International Agricultural Research"	04-Jun-08	="Agricultural research services"	06-May-08	30-May-08	11000.00	=""	="Centre for International Economics"	04-Jun-08 02:59 PM	

+="CN87863"	"Rental of artworks"	="Australian Human Rights Commission"	04-Jun-08	="Paintings"	01-Apr-08	31-Mar-09	11825.00	=""	="Artbank"	04-Jun-08 03:46 PM	

+="CN87872"	" Publication Design  "	="Australian Centre for International Agricultural Research"	04-Jun-08	="Publication printing"	21-Apr-08	12-May-08	11000.00	=""	="MA@D"	04-Jun-08 04:17 PM	

+="CN87879"	"SES Vehicle Fuel and Lease Charges - October & December 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Vehicle leasing"	01-Oct-07	31-Dec-07	11728.40	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	04-Jun-08 05:53 PM	

+="CN87889"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10457.96	=""	="LANDROVER"	05-Jun-08 08:03 AM	

+="CN87891"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10756.98	=""	="LANDROVER"	05-Jun-08 08:13 AM	

+="CN87895"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10749.72	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 08:25 AM	

+="CN87899"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	28-Apr-08	28-Apr-11	10908.36	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:19 AM	

+="CN87907"	"PARTS FOR UNIMOGS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Jun-08	30-Jun-08	11626.74	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	05-Jun-08 10:01 AM	

+="CN87913"	"Melbourne Airport Fitout - Cabling"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Computer Equipment and Accessories"	22-Oct-07	30-May-08	11710.40	=""	="ABSOLUTE CABLING SYSTEMS PTY LTD"	05-Jun-08 10:16 AM	

+="CN87972"	"flushing equipment"	="Defence Materiel Organisation"	05-Jun-08	="Guided missiles"	16-May-08	30-Jun-08	10833.24	=""	="MADCO"	05-Jun-08 01:05 PM	

+="CN87974"	"PMS7617 in both Main Engines 1000hr"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	11244.48	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87997"	"SUPPLY & INSTALL CCTV KEYBOARDS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	20-May-08	23-May-08	10879.00	=""	="WESTERN ADVANCE PTY LTD"	05-Jun-08 01:07 PM	

+="CN87999"	"Freight Costs"	="Defence Materiel Organisation"	05-Jun-08	="Transportation components and systems"	20-May-08	30-Jun-08	11000.00	=""	="TOLL NORTH PTY LTD"	05-Jun-08 01:08 PM	

+="CN88076"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	16-May-08	20-Jul-08	11884.61	=""	="EXCALIBUR SYSTEMS INC."	05-Jun-08 01:17 PM	

+="CN88109"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:21 PM	

+="CN88114"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	23-May-08	30-Jun-08	10000.00	=""	="MINTER ELLISON"	05-Jun-08 01:22 PM	

+="CN88121"	"Conduct disposal service of obsolete inventory at"	="Defence Materiel Organisation"	05-Jun-08	="Transportation services equipment"	23-May-08	30-Jun-08	10000.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	05-Jun-08 01:22 PM	

+="CN88127"	"Ongoing Security Cost at APA facility in accordance with DSA report"	="Defence Materiel Organisation"	05-Jun-08	="Security and control equipment"	23-May-08	30-Jun-09	10939.50	=""	="ASIA PACIFIC AEROSPACE"	05-Jun-08 01:23 PM	

+="CN88137"	"Hire of Aircraft for training"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	30-Jun-08	11700.00	=""	="MICROFLITE HELICOPTER SERVICES"	05-Jun-08 01:24 PM	

+="CN88157"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Nov-08	10744.45	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:27 PM	

+="CN88172"	"POC: SHANE FINN CONTACT: 02 626 50601"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	10038.60	=""	="DIAMOND AUSTRALIA PTY LTD"	05-Jun-08 01:28 PM	

+="CN88181"	"STRIVING FOR SUCCESS - PERSONAL GROWTH & CONFIDENC WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	26-May-08	30-Jun-08	11530.20	=""	="LEARNING HEIGHTS"	05-Jun-08 01:29 PM	

+="CN88209"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:33 PM	

+="CN88236"	"provide blast equipment safety training and conduc contractor blast equipment inspection"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	22-May-08	27-May-08	10120.00	=""	="BLASTMASTER"	05-Jun-08 01:36 PM	

+="CN88255"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	10608.02	=""	="BRISBANE CONVENTION & EXHIBITION"	05-Jun-08 01:38 PM	

+="CN88257"	"1199 OVOID RING RHIB LIFTING ARRANGEMENT TRIAL"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	10445.48	=""	="BAKER & PROVAN PTY LTD"	05-Jun-08 01:38 PM	

+="CN88279"	"OVERHAUL AFFF VALVES - HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	20-Jun-08	10115.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88302"	"INSTALL MODULES HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	28-May-08	30-May-08	10180.72	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 01:44 PM	

+="CN88304"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	10-Apr-08	30-Jun-08	11235.10	=""	="THALES AUSTRALIA"	05-Jun-08 01:44 PM	

+="CN88313"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	06-May-08	30-Jun-08	10497.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:45 PM	

+="CN88340"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	02-Jun-08	10164.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:48 PM	

+="CN88363"	"HMAS TOOWOOMBA SRA01/IMAV02 CONTAINER HIRE"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-Jul-07	30-Jun-08	11388.30	=""	="CONTAINER REFRIGERATION PTY LTD"	05-Jun-08 01:51 PM	

+="CN88377"	"LEASE VEHICLE"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	12-Nov-07	12-Oct-08	11714.32	=""	="DAS FLEET"	05-Jun-08 01:53 PM	

+="CN88379"	"Installation of Remote C+M Monitor on the Gangway"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	10643.51	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:53 PM	

+="CN88394"	"HULL SURVEY HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-May-08	11220.00	=""	="VIKING MARINE SURVEYS PTY LTD"	05-Jun-08 01:55 PM	

+="CN88432"	"FURNITURE PROCUREMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-May-08	20-Jun-08	10019.60	=""	="OFFICELINE"	05-Jun-08 01:59 PM	

+="CN88447"	"SA Periscope Workshop"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	11561.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88448"	"Procurement of hand tools and cases"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	10120.03	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88481"	"Clevis, Rod End"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	10-Dec-08	10896.84	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:05 PM	

+="CN88498"	"POWER CABLE ASSY"	="Defence Materiel Organisation"	05-Jun-08	="Apparel and Luggage and Personal Care Products"	13-May-08	13-Oct-08	11554.30	=""	="ITT CORPORATION DBA I T T NIGHT VIS"	05-Jun-08 02:07 PM	

+="CN88502"	"Dell Workstation"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	10102.05	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 02:07 PM	

+="CN88511"	"VARIOUS TOOLS IN SUPPORT OF NAVY'S 723 SQUADRON AS350BA SQUIRREL HELICOPTER FLEET, HMAS ALBATRO"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	16-Jun-08	10674.52	=""	="SNAP ON TOOLS (AUST) PTY LTD"	05-Jun-08 02:08 PM	

+="CN88520"	"GET Brand ISA  NTDS Circuit Cards"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-08	11033.00	=""	="UNITRONIX PTY LTD"	05-Jun-08 02:10 PM	

+="CN88544"	"4517.08 - UPDATE FFH DOCKING DRAWING TENIX HENDERSON"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	07-May-08	30-May-08	10477.50	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:12 PM	

+="CN88546"	"HMAS Brunei In-Water Hull Survey"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	07-May-08	30-Jun-08	11726.55	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:13 PM	

+="CN88588"	"    Official travel to europe    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	20-May-08	20-May-08	10051.28	=""	="QANTAS"	05-Jun-08 02:30 PM	

+="CN88591"	"    Airfares for travel to London and Geneva for meetings of GRSP Informal group on Child Restraint Systems    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	13-May-08	13-May-08	10209.62	=""	="QANTAS"	05-Jun-08 02:36 PM	

+="CN88593"	"    International airfare travelling to Washington DC on 29 May 2008 - as spouse of First Secretary.     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10468.75	=""	="QANTAS"	05-Jun-08 02:41 PM	

+="CN88595"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 156/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	25-May-08	11830.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	05-Jun-08 02:44 PM	

+="CN88596"	"    International airfare travelling to Washington DC as First Secretary (2 May 2008).     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10522.98	=""	="QANTAS"	05-Jun-08 02:47 PM	

+="CN88597"	"TUBE, CENTER NSN 4710/008870367"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	09-Jun-08	10955.20	=""	="FLITE PATH PTY LTD"	05-Jun-08 02:49 PM	

+="CN88598"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:50 PM	

+="CN88599"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:53 PM	

+="CN88607"	"CUSHION, COVER, PIN NSN 1680/661413332"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	07-Jul-08	10450.00	=""	="FLITE PATH PTY LTD"	05-Jun-08 03:00 PM	

+="CN88618"	"Moderation Project Meeting- Accommodation and venue hire"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Hotels and lodging and meeting facilities"	26-May-08	30-Jun-08	11140.00	="PRN19486"	="OAKS ON COLLINS"	05-Jun-08 03:05 PM	

+="CN88648"	"NUT AND PIN NSN 1610/008870223"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	27-May-08	10866.00	=""	="MILSPEC SERVICES PTY LTD"	05-Jun-08 03:14 PM	

+="CN88673"	" Professional Development "	="Australian Electoral Commission"	05-Jun-08	="Education and Training Services"	08-May-08	08-Jun-08	11825.00	=""	="Australian Public Service Commission"	05-Jun-08 04:18 PM	

+="CN88679"	"REPAIR - ENGINE BUILT-UP UNIT, AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	18-Jun-08	10425.30	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:31 PM	

+="CN88691"	"ANALOGUE HANDSETS"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-May-08	11629.53	=""	="INTERQUARTZ (A'ASIA) PTY LTD"	05-Jun-08 04:46 PM	

+="CN88707"	"supply of post mix product"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	12-May-08	30-Jul-08	11000.00	=""	="COCA-COLA PTY LTD"	05-Jun-08 04:49 PM	

+="CN88709"	"S5101, WR 3000764440. Provide consultancy services wharf crane from REVY Pyrmont to sullage wharf at"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	30-Jun-08	11000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:49 PM	

+="CN88755"	"lease payment"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	14-May-08	31-May-08	11157.44	=""	="AUSTRALIAN INTEGRATED FINANCE"	05-Jun-08 04:56 PM	

+="CN88770"	"Stephen Chaney KA300/350 training"	="Department of Defence"	05-Jun-08	="Powered fixed wing aircraft"	21-May-08	21-May-08	11889.83	=""	="FLIGHTSAFETY INTERNATIONAL"	05-Jun-08 04:58 PM	

+="CN88815"	"HARDY AVIATION(NT) PTY LTD."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-08	11233.81	=""	="HARDY AVIATION (NT) PTY LTD"	05-Jun-08 05:00 PM	

+="CN88825"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	10230.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:00 PM	

+="CN88854"	"Learjet crew & engineer"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	30-May-08	11000.00	=""	="PEL-AIR AVIATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88863"	"CABLING WORKS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	11649.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88870"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Jun-08	11514.80	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	05-Jun-08 05:03 PM	

+="CN88871"	"FACOPS- Air Compressor Supply"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	20-May-08	30-Jun-08	11542.30	=""	="CHAMPION COMPRESSORS LTD"	05-Jun-08 05:03 PM	

+="CN88874"	"DSN CABLING"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	11841.50	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:03 PM	

+="CN88891"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	11330.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:04 PM	

+="CN88907"	"KOPPER LOGS REMEDIATION PROJECT - ENOOGERA"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	10690.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:04 PM	

+="CN88911"	"POC: Brendan Searle 02 6127 7169 Quotation: 7128"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	11454.30	=""	="BENNETT COMMERCIAL ELECTRONICS"	05-Jun-08 05:05 PM	

+="CN88912"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	22-May-08	11935.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88915"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	21-May-08	11435.09	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:05 PM	

+="CN88934"	"Security Services"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-May-08	16-Jun-08	11484.00	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:06 PM	

+="CN88947"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11177.62	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88948"	"CONSTRUCTION OF PLATFORM"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	08-May-08	27-Jun-08	11085.02	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:06 PM	

+="CN88988"	"DALLAS PAD COVERS"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	11825.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS"	05-Jun-08 05:08 PM	

+="CN89008"	"FIBRE INSTALL"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11110.00	=""	="DEPARTMENT OF FINANCE &"	05-Jun-08 05:09 PM	

+="CN89025"	"CONFERENCE EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	11236.52	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89032"	"SUN MICROSYSTEMS STORAGE HARDWARE"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	16-May-08	10754.55	=""	="DATACOM SYSTEMS SA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89036"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	22-May-08	30-Jun-08	11979.33	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:10 PM	

+="CN89043"	"Site Office Plumbing Connection"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	20-May-08	30-Jun-08	10680.00	=""	="KIMBERELY GREEN CONSTRUCTION"	05-Jun-08 05:10 PM	

+="CN89054"	"HP WORKSTATION"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-May-08	11283.50	=""	="COMPLETE PC SOLUTIONS"	05-Jun-08 05:11 PM	

+="CN89070"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-May-08	11000.00	=""	="INFOTRIEVE AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89071"	"SNORKEL ELEVATING WORK PLATFORM"	="Department of Defence"	05-Jun-08	="Hydraulic machinery and equipment"	20-May-08	30-Jun-08	11825.00	=""	="SNORKEL ELEVATING WORK PLATFORMS"	05-Jun-08 05:12 PM	

+="CN89078"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	22-May-08	30-Jun-08	11000.00	=""	="BLIGH VOLLER NIELD ARCHITECTS"	05-Jun-08 05:12 PM	

+="CN89098"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	20-May-08	27-May-08	10665.55	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89108"	"CARPETING"	="Department of Defence"	05-Jun-08	="Floor coverings"	21-May-08	30-May-08	11946.00	=""	="PORT STEPHENS CARPETS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89116"	"HD LCD MONITOR TVS"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	03-Jun-08	10648.00	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:14 PM	

+="CN89137"	"PRE PAID LABOUR HOURS ASSOCIATED WITH INTERNET / DRN UPGRADE"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	11000.00	=""	="PARTNER IT"	05-Jun-08 05:14 PM	

+="CN89144"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11869.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89156"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	11783.75	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89158"	"2 DAY SURVIVAL COURSE FOR TS MERSEY RE CIA BID 07/08"	="Department of Defence"	05-Jun-08	="Other sports"	22-May-08	22-May-08	11226.00	=""	="AMC SEARCH LIMITED"	05-Jun-08 05:15 PM	

+="CN89169"	"IN COUNTRY TRAINING TUITION - 01/08 INDON ADVANCED - MAY 08"	="Department of Defence"	05-Jun-08	="Vocational training"	09-May-08	20-May-08	11288.81	=""	="UPI, BANDUNG CAMPUS"	05-Jun-08 05:16 PM	

+="CN89179"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	10134.30	=""	="BLUE RIDGE SYSTEMS PTY LTD"	05-Jun-08 05:16 PM	

+="CN89200"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	10000.00	=""	="WESTSIDE VEGIE PATCH"	05-Jun-08 05:17 PM	

+="CN89207"	"Shade Cloth Structures"	="Department of Defence"	05-Jun-08	="Structural materials and basic shapes"	20-May-08	30-Jun-08	11039.99	=""	="QUICKSHADE AUSTRALIA PTY LTD"	05-Jun-08 05:18 PM	

+="CN89211"	"VISUAL EQUIPMENT FOR AREA GYM"	="Department of Defence"	05-Jun-08	="Electrical components"	12-May-08	30-Jun-08	10948.00	=""	="TROPICAL TV"	05-Jun-08 05:18 PM	

+="CN89215"	"SN02814 - Due Dilligence Eval Claim"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	11000.00	=""	="STRATEGIC FACILITY SERVICES PTY LTD"	05-Jun-08 05:18 PM	

+="CN89244"	"ACCOMADATION /BREAKFAST & VENUE HIRE"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	15-May-08	10294.99	=""	="WALDORF ON LONDON RESTAURANT & CONF"	05-Jun-08 05:19 PM	

+="CN89246"	"FURNITURE-SENIOR SAILORS MESS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	11495.00	=""	="RUBELLI"	05-Jun-08 05:19 PM	

+="CN89254"	"FINAL SCHOLARSHIP CONTRIBUTION FOR KIM MUNRO. RESE ARCH AGREEMENT 2003/44110/7;IP 09/05"	="Department of Defence"	05-Jun-08	="Educational institutions"	06-May-08	30-May-08	11000.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:20 PM	

+="CN89263"	"bread"	="Department of Defence"	05-Jun-08	="Bread and bakery products"	06-May-08	31-Dec-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:20 PM	

+="CN89266"	"milk"	="Department of Defence"	05-Jun-08	="Milk and butter products"	06-May-08	30-Dec-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:20 PM	

+="CN89272"	"Romance Office Chairs Fabric Twill Blue"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	06-May-08	30-May-08	11880.00	=""	="ACCENT OFFICE INTERIORS"	05-Jun-08 05:20 PM	

+="CN89276"	"Accommodation seven Rooms for Mtg Package - Indon Advanced - May 08"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	15-May-08	20-May-08	10009.41	=""	="SHERATON BANDUNG HOTEL & TOWERS"	05-Jun-08 05:21 PM	

+="CN89281"	"Shipping Containers"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	06-Jun-08	11110.00	=""	="ROYAL WOLF TRADING"	05-Jun-08 05:21 PM	

+="CN89301"	"POC: JOE GUARNIERI CONTACT: 02 626 69310"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11292.60	=""	="DIGICOR PTY LTD"	05-Jun-08 05:22 PM	

+="CN89314"	"Annual Subscription"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	30-May-08	10332.40	=""	="GIDEON INFORMATICS INC"	05-Jun-08 05:22 PM	

+="CN89321"	"SUPPLY & INSTALL 50 PAIR 0.4mm EXTERNAL VOICE CABLE AT HOLSWORTHY BARRACKS."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	15-May-08	10-Jun-08	10667.90	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:23 PM	

+="CN89326"	"PRINTING COSTS"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	03-Jun-08	10660.10	=""	="GEORGE PATTERSON Y & R"	05-Jun-08 05:23 PM	

+="CN89329"	"PAVING MALAYA LINES"	="Department of Defence"	05-Jun-08	="Concrete and cement and plaster"	05-May-08	28-May-08	10435.00	=""	="EMERALD PROPERTY SERVICES"	05-Jun-08 05:23 PM	

+="CN89332"	"POC: Owen Keane 02 6127 7170 Quotation: 00201344"	="Department of Defence"	05-Jun-08	="Hardware"	05-May-08	26-May-08	11275.45	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	05-Jun-08 05:23 PM	

+="CN89353"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	10972.50	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:24 PM	

+="CN89365"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES RELOCATION THROUGH REGION STANDING OFFER AGREEMEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	10984.05	=""	="GRACE REMOVALS GROUP"	05-Jun-08 05:25 PM	

+="CN89369"	"SNO1720 - RMC B014 - Ward Room 10"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	11970.82	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:25 PM	

+="CN89383"	"Supply & install of cabling"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	14-Jun-08	10499.17	=""	="ADVANCED COMMUNICATIONS"	05-Jun-08 05:26 PM	

+="CN89388"	"PARTS"	="Department of Defence"	05-Jun-08	="Machining and processing services"	14-May-08	29-May-08	11548.22	=""	="KFS FUEL SERVICES"	05-Jun-08 05:26 PM	

+="CN89389"	"Airfares - Domestic"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	06-May-08	08-Aug-08	10994.13	=""	="QANTAS AIRWAYS LIMITED AVIATION"	05-Jun-08 05:26 PM	

+="CN89415"	"Imagery Package"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	05-May-08	30-May-08	10082.60	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:27 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89442"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	14-May-08	14-May-08	10190.00	=""	="PROFESSOR STEWART FIRTH"	05-Jun-08 05:30 PM	

+="CN89443"	"LOADS FROM ADELAIDE TO WOOMERA / FORKLIFT WITH OPERATOR"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-May-08	11833.88	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 05:30 PM	

+="CN89449"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	20-May-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:30 PM	

+="CN89452"	"****** PLEASE SEE HARRY NGUY ON ARRIVAL AT RANRAU TOSHIBA COPIER"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-May-08	11474.10	=""	="TOSHIBA (AUSTRALIA) PTY LTD"	05-Jun-08 05:30 PM	

+="CN89465"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	16-May-08	30-Jun-08	11000.00	=""	="RUDDS CONSULTING ENGINEERS"	05-Jun-08 05:31 PM	

+="CN89510"	"dog food"	="Department of Defence"	05-Jun-08	="Meat and poultry"	06-May-08	31-Dec-08	11000.00	=""	="WESTERN PET FOODS"	05-Jun-08 05:34 PM	

+="CN89522"	"sra"	="Department of Defence"	05-Jun-08	="Sauces and spreads and condiments"	06-May-08	31-Dec-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:35 PM	

+="CN89527"	"CARPET"	="Department of Defence"	05-Jun-08	="Floor coverings"	16-May-08	16-May-08	11991.76	=""	="ACROMAT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89534"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	11780.99	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:35 PM	

+="CN89535"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	11685.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89566"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	10912.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:37 PM	

+="CN89582"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	11620.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89595"	"lease transportable Bldg"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	10145.47	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89630"	"4U ANTEC 4U22ATX"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10832.80	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89646"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89648"	"Shipoing Service Darwin"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	11000.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:43 PM	

+="CN89657"	"Management and Technical Support required for the RSTT-HIFiRE Solution Development Project"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	30-May-08	16-Jun-08	10246.49	=""	="AEROSPACE CONCEPTS PTY LTD"	05-Jun-08 05:43 PM	

+="CN89673"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	11640.71	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89677"	"LEASE OF FORKLIFT"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	22-May-08	01-Jun-08	10265.41	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:44 PM	

+="CN89691"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	29-Feb-08	30-Sep-08	10395.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89693"	"HEALTH PRACTITIONER PAY 30/4-17/5/08"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	20-May-08	21-May-08	11088.28	=""	="VIMALA MENON  A/P PB MENON"	05-Jun-08 05:45 PM	

+="CN89695-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10656.24	=""	="STRATOS"	05-Jun-08 05:45 PM	

+="CN89697-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10005.49	=""	="STRATOS"	05-Jun-08 05:46 PM	

+="CN89703"	"DR JOHN REDMAN - ENT SESSIONAL SERVICES TO HEALTH CENTRE SERVICES - CERBERUS"	="Department of Defence"	05-Jun-08	="Medical practice"	12-Nov-07	30-Jun-08	11000.00	=""	="JOHN F REDMAN PTY LTD"	05-Jun-08 05:46 PM	

+="CN89709"	"BUILDING WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	30-Jun-08	10018.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:46 PM	

+="CN89720"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89731"	"HIRE OF 3 X 20 FT REEFER CONTAINER - SECDET"	="Department of Defence"	05-Jun-08	="Containers and storage"	03-May-08	24-May-08	11555.31	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89735"	"LEASE OF VEHICLES"	="Department of Defence"	05-Jun-08	="Motor vehicles"	23-May-08	01-Jun-08	11377.86	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:48 PM	

+="CN89739"	"WATER SUPPLY"	="Department of Defence"	05-Jun-08	="Public Utilities and Public Sector Related Services"	18-Jul-07	30-Jun-08	11546.41	=""	="NSW MARITIME"	05-Jun-08 05:48 PM	

+="CN89740"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:48 PM	

+="CN89746"	"LAP TOPS X 3 for AIR9K PROJECT TTC B"	="Department of Defence"	05-Jun-08	="Computer services"	23-May-08	23-May-08	10758.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:49 PM	

+="CN89757"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	10670.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:49 PM	

+="CN89759"	"SN01988 - GIS Maintenance"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	10548.45	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:49 PM	

+="CN89763"	"REMOVAL OF CHAIRS"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	13-Feb-08	27-Jun-08	10037.16	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:50 PM	

+="CN89771"	"hire of vehicles"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	22-Jan-08	30-Apr-08	10788.95	=""	="THRIFTY CAR RENTAL"	05-Jun-08 05:50 PM	

+="CN89783"	"Advertising in Canberra Times, Wagga Daily Advertiser, Weekend Australian"	="Department of Defence"	05-Jun-08	="Advertising"	30-Apr-08	03-May-08	10481.96	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:51 PM	

+="CN89793"	"GROCERIES FOR MONTH OF MAY CNS 01/07"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-Apr-08	30-Jun-08	10990.00	=""	="GAROZZOS AGENCIES PTY LTD"	05-Jun-08 05:52 PM	

+="CN89805"	"Technical contact: R.Pointon Phone: 83056678"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	10303.30	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:52 PM	

+="CN89807"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	02-Apr-08	30-Jul-08	11094.12	=""	="CAMPBELLS CASH & CARRY"	05-Jun-08 05:52 PM	

+="CN89820"	"CONTRACT NO: CSI-SC07/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:53 PM	

+="CN89825"	"increase funds"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	29-Aug-07	30-Jun-08	11000.00	=""	="FLEXILIFT HIRE & RENTAL PTY LTD"	05-Jun-08 05:54 PM	

+="CN89826"	"Matteresses"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	26-May-08	20-Jun-08	10296.00	=""	="ADRIATIC SLUMBER BEDDING"	05-Jun-08 05:54 PM	

+="CN89827"	"Supply of Dairy Products"	="Department of Defence"	05-Jun-08	="Dairy products and eggs"	12-Nov-07	30-Jun-08	11000.00	=""	="SEALANES ALBATROSS PTY LTD"	05-Jun-08 05:54 PM	

+="CN89835"	"Vehicle Costs"	="Department of Defence"	05-Jun-08	="Motor vehicles"	17-Aug-07	31-Mar-08	11500.00	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 05:54 PM	

+="CN89842"	"Selection of CORPS flags. Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Fibres and textiles and fabric industries"	26-May-08	30-Jun-08	10098.00	=""	="EVAN EVANS FLAGS AND BANNERS"	05-Jun-08 05:55 PM	

+="CN89849"	"ABCA ANNUAL CONFERENCE HIRE OF FACILITIES"	="Department of Defence"	05-Jun-08	="Education and Training Services"	30-May-08	30-Jun-08	10640.95	=""	="FOUR POINTS - SHERATON DARLING"	05-Jun-08 05:55 PM	

+="CN89859"	"FFS PAYMENTS"	="Department of Defence"	05-Jun-08	="Medical facility products"	29-May-08	30-Jun-08	10000.00	=""	="G LLOYD"	05-Jun-08 05:56 PM	

+="CN89899"	"Supply of Small Goods to RAAF Base Tindal Ration Store"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	12-Nov-07	30-Jun-08	10000.00	=""	="WATSONIA FOODS"	05-Jun-08 05:58 PM	

+="CN89906"	"CONTRACT NO: CSI-SC03/205"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:59 PM	

+="CN89911"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	20-May-08	10689.93	=""	="ACTIVE TECHNOLOGY"	05-Jun-08 05:59 PM	

+="CN89940"	"FURNITURE FOR BLDG 298, SECPOL"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	10670.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 06:01 PM	

+="CN89943"	"Purchase 2nd hand vehicle for Project Digger Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	21-May-08	30-Jun-08	10000.00	=""	="KEITH TROTTER"	05-Jun-08 06:01 PM	

+="CN89944"	"Laser cladding of magnesium alloy"	="Department of Defence"	05-Jun-08	="Alloys"	13-May-08	30-Jun-08	10450.00	=""	="SWINBURNE UNIVERSITY OF"	05-Jun-08 06:01 PM	

+="CN89967"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	01-Jul-08	10241.55	=""	="BRAEMAC (SA) PTY LTD"	05-Jun-08 06:03 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val12000to16000.xls
@@ -1,1 +1,320 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87436"	"Video Streaming amendments"	="Department of the House of Representatives"	03-Jun-08	="Software"	05-May-08	14-May-08	13090.00	=""	="Different Solutions"	03-Jun-08 09:40 AM	

+="CN87438"	"Initial verification testing of the industrial Lion Intoxilyser 8000"	="Civil Aviation Safety Authority"	03-Jun-08	="Research or testing facilities"	20-May-08	20-Jun-08	16000.00	="07/377-00"	="Pacific Data Systems Pty Ltd"	03-Jun-08 09:42 AM	

+="CN87441"	"Recruitment fees"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	20-May-08	20-Jun-08	14559.00	="07/382-00"	="Hudson"	03-Jun-08 09:48 AM	

+="CN87443"	"Hire Audio Visual"	="Department of the House of Representatives"	03-Jun-08	="Audio presentation and composing equipment and hardware and controllers"	01-May-08	20-May-08	13500.00	=""	="Audio Solutions"	03-Jun-08 10:03 AM	

+="CN87444"	" ASICs for May "	="Civil Aviation Safety Authority"	03-Jun-08	="Financial accounting"	01-May-08	30-May-08	15000.00	="07/387-00"	="Aviation ID Australia Pty Ltd"	03-Jun-08 10:04 AM	

+="CN87446"	"Security training for CASA Admin Staff"	="Civil Aviation Safety Authority"	03-Jun-08	="Security and protection software"	28-May-08	28-May-08	13350.00	="07/390-00"	="Attorney General's Department (ACT)"	03-Jun-08 10:09 AM	

+="CN87445"	"Reception"	="Department of the House of Representatives"	03-Jun-08	="Catering services"	01-May-08	27-May-08	14550.00	=""	="Hyatt Hotel Canberra"	03-Jun-08 10:09 AM	

+="CN87447"	"Annual mainenance HR system"	="Department of the House of Representatives"	03-Jun-08	="Human resources software"	01-Jun-08	31-May-09	12624.70	=""	="Frontier Software"	03-Jun-08 10:16 AM	

+="CN69423"	" Financial Planning Analysis "	="Australian Securities and Investments Commission"	03-Jun-08	="Strategic planning consultation services"	04-Dec-07	19-Feb-08	14850.00	=""	="Seacab Pty Ltd t/a Endeavour Strategic Financial"	03-Jun-08 10:37 AM	

+="CN87457"	"Training & Education Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Education and Training Services"	27-May-08	05-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP"	03-Jun-08 10:41 AM	

+="CN87458"	"Consultancy Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-Mar-08	08-Mar-09	13221.60	="Support Agreement 184005708023"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	03-Jun-08 10:41 AM	

+="CN87482"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	14500.00	="N/A"	="SWEENEY BUSINESS GROUP"	03-Jun-08 10:45 AM	

+="CN87490"	" REFRIGERATORS, MECHANICAL, BIOLOGICALS, BLOOD STORAGE, 300 LT "	="Defence Materiel Organisation"	03-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	30-Sep-08	13175.80	=""	="QUANTUM SCIENTIFIC PTY LTD"	03-Jun-08 11:00 AM	

+="CN87511"	"Communications devices and accessories"	="Australian Competition and Consumer Commission"	03-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	13420.00	=""	="Optus Billing Services"	03-Jun-08 11:59 AM	

+="CN87513"	"hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	03-Jun-08	="Hotels and lodging and meeting facilities"	24-May-08	16-Aug-08	12180.00	=""	="M-Power Accommodation Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87515"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	12320.00	=""	="Total Decision Support Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87516"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	25-Jun-08	15840.00	=""	="Energy and Management Services Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87518"	"Legal services"	="National Competition Council"	03-Jun-08	="Legal services"	29-Apr-08	30-May-08	13048.32	=""	="Clayton Utz"	03-Jun-08 12:00 PM	

+="CN87529"	"Translating and Interpreting Services"	="Child Support Agency"	03-Jun-08	="Writing and translations"	30-May-08	30-Sep-09	15400.00	=""	="KLIM TRANSLATION SERVICES"	03-Jun-08 02:33 PM	

+="CN87562"	"Sunfire X4200 x64 server"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Telecommunications media services"	01-May-08	30-Jun-08	14900.60	=""	="AGIRE Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87565"	"Wuthathi TUMRA project 2008"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	12315.00	=""	="WUTHATHI LAND TRUST"	03-Jun-08 02:55 PM	

+="CN87567"	"Tourism Industry Engagement Strategy"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management advisory services"	12-May-08	09-Jun-08	12881.00	=""	="TONY CHARTERS & ASSOCIATES"	03-Jun-08 02:55 PM	

+="CN87588"	" 9150 66-017-3041  Engine Lubricating Oil  25 Drums OMD 115 in 205L "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	01-May-08	08-May-08	14262.88	=""	="Caltex"	03-Jun-08 05:23 PM	

+="CN87609"	" VEHICLE PARTS "	="Department of Defence"	04-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	30-Jun-08	12792.51	=""	="Land Rover AUSTRALIA"	04-Jun-08 07:52 AM	

+="CN87651"	"Transcript: 1/05/08 - 15/0/08"	="Australian Industrial Registry"	04-Jun-08	="Transcribing services"	26-May-08	30-May-08	15709.61	=""	="LEGAL TRANSCRIPTS"	04-Jun-08 11:39 AM	

+="CN87656"	"Property"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	01-Jul-08	15400.00	=""	="THE UNIVERSITY OF ADELAIDE"	04-Jun-08 11:42 AM	

+="CN87659"	"Batemans Bay Fitout - Trade Costs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	21-May-08	12513.60	=""	="ISIS Projects Pty Ltd"	04-Jun-08 11:42 AM	

+="CN87660"	"Relocation FaHCSIA & DEEWR Staff-Brisbane"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Transportation and Storage and Mail Services"	21-May-08	21-May-08	15006.70	=""	="Atlantis = Pty Ltd"	04-Jun-08 11:43 AM	

+="CN87661"	"Provision of Excel Trianing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	21-May-08	13-Jun-08	12000.00	=""	="Acorn Training Services Pty Ltd"	04-Jun-08 11:43 AM	

+="CN87676"	"Hearing room furniture for 3 rooms, including tables & cupboards to meet new CSA requirements."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	19-May-08	19-May-08	14000.00	=""	="Innerspace"	04-Jun-08 11:46 AM	

+="CN87679"	"APEC 2008 travel cost  Annabelle Bennett"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Travel facilitation"	19-May-08	19-May-08	15000.00	=""	="Annabelle Bennett (Justice)"	04-Jun-08 11:47 AM	

+="CN87680"	"Facilitation and Reporting of Accessible Parking Working Group Face to Face Meeting"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	21-May-08	12540.00	=""	="Team Systems Pty Ltd"	04-Jun-08 11:47 AM	

+="CN87689"	"CDEP reform consultation sessions"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-May-08	28-May-08	12620.00	=""	="Robert Laundy"	04-Jun-08 11:49 AM	

+="CN87693"	"Enhancing Project Management Capability"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	20-May-08	30-Jun-08	12705.00	=""	="TANNER JAMES MANAGEMENT"	04-Jun-08 11:50 AM	

+="CN87695"	"Designer - Jennifer Angelatos"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	26-Jun-08	15000.00	=""	="DESIGN EMERGENCY"	04-Jun-08 11:50 AM	

+="CN87703"	"Performance Testing of FOFMS/CCMS Enhancement  Release 7 (ER7)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	29-May-08	30-Jun-08	15600.00	=""	="RPM SOLUTIONS PTY LTD"	04-Jun-08 11:51 AM	

+="CN87704"	"Sponsorship for 2008 Aust Family Therapy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	29-May-08	15000.00	=""	="Queensland Association for Family T"	04-Jun-08 11:51 AM	

+="CN87713"	"Accommodation Venue"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-May-08	15087.50	=""	="Hahndorf Resort & Convention Centre"	04-Jun-08 11:54 AM	

+="CN87715"	"5000 Cardax Milfare Cards"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Printed media"	28-May-08	28-May-08	15895.00	=""	="T.A.C. PACIFIC PTY LTD"	04-Jun-08 11:54 AM	

+="CN87717"	"Temp Services - Jala Rampaul  to 30/06/2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Human resources services"	26-May-08	27-May-08	12320.00	=""	="GREYTHORN PTY LTD"	04-Jun-08 11:55 AM	

+="CN87747"	"Editor for Green Paper on homelessness & Analysis of the Public Submissions to the Green Paper"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	06-May-08	10-Jul-08	12320.00	=""	="Blackink Writing and Consultancy"	04-Jun-08 12:02 PM	

+="CN87757"	"FACSIA NT Office Stores Mar Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	30-Apr-08	31-May-08	13188.50	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87763"	"Pymnt Inv.5661 Project No.108102 SSAT Syd"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	30-Apr-08	14-May-08	13570.76	=""	="Reid Campbell"	04-Jun-08 12:05 PM	

+="CN87764"	"Professional services recruitment of Yann Archamba"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Advertising"	07-May-08	14-May-08	13341.39	=""	="Hays Specialist Recruitment"	04-Jun-08 12:05 PM	

+="CN87783"	"Non-Ongoing Contractor APS2 position"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	12000.00	=""	="HUDSON GLOBAL RESOURCES"	04-Jun-08 12:10 PM	

+="CN87785"	"Recuritment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Human resources services"	15-May-08	30-Jun-08	12100.00	=""	="Hays Specialist Recruitment"	04-Jun-08 12:10 PM	

+="CN87792"	"Contract in relation to Annual Licence Fee for TRIM record keeping program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	16-May-08	31-Dec-08	12953.64	=""	="Tower Software"	04-Jun-08 12:12 PM	

+="CN87800"	"Payment of invoice for transport services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Transportation services equipment"	09-May-08	09-May-08	12521.04	=""	="Frontier Darwin Hotel"	04-Jun-08 12:13 PM	

+="CN87806"	"Sharp MX-4501N Digital Colour Copier / Printer / Scanner and Fax"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Office Equipment and Accessories and Supplies"	29-May-08	12-Jun-08	14775.20	="ATM08/1040"	="Sharp Direct"	04-Jun-08 12:14 PM	

+="CN87817"	"Annual Report Writer"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	31-Oct-08	13420.00	="ATM08/1019"	="McLeod Marketing and Management"	04-Jun-08 12:15 PM	

+="CN87819-A1"	"Business Monitor Online Licence Agreement 3 users 01/06/2008-31/05/2009"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	15721.95	="ATM08/1033"	="Business Monitor International"	04-Jun-08 12:15 PM	

+="CN87834"	"VEHICLE REPAIRS"	="Department of Defence"	04-Jun-08	="Motor vehicles"	09-May-08	09-Jun-08	12458.83	=""	="RGM"	04-Jun-08 01:27 PM	

+="CN87851"	"10,000 A3 poster printing and distribution to 3,000 multicultural centres."	="Australian Human Rights Commission"	04-Jun-08	="Posters"	20-May-08	30-Jun-08	14510.00	=""	="etranslate.com.au"	04-Jun-08 03:18 PM	

+="CN87858"	"Scoping Study"	="Australian Centre for International Agricultural Research"	04-Jun-08	="Agricultural research services"	07-Jun-08	30-Jun-08	14432.00	=""	="National Maritime Science Centre"	04-Jun-08 03:36 PM	

+="CN87859"	" 16,000 print colour flyer and mailout. "	="Australian Human Rights Commission"	04-Jun-08	="Printed publications"	04-Apr-08	30-May-08	13409.91	=""	="B & C Mailing Pty Ltd"	04-Jun-08 03:38 PM	

+="CN87868"	"Photocopier lease"	="Australian Federal Police"	04-Jun-08	="Photocopiers"	10-Dec-07	10-Dec-10	13413.24	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	04-Jun-08 04:03 PM	

+="CN87867"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Legal services"	19-Nov-07	15-Dec-07	15122.25	=""	="PHILLIPS FOX LAWYERS"	04-Jun-08 04:04 PM	

+="CN87875"	"Photocopier Lease"	="Australian Federal Police"	04-Jun-08	="Photocopiers"	17-Apr-08	17-Apr-11	14186.52	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	04-Jun-08 04:28 PM	

+="CN87873"	"Property Expenditure for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Property management services"	01-Feb-08	29-Feb-08	14796.15	=""	="UNITED GROUP SERVICES PTY LTD"	04-Jun-08 04:30 PM	

+="CN87883"	"Positions Vacant Advertising"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Advertising"	08-Dec-07	08-Dec-07	13441.56	=""	="HMA BLAZE PTY LTD"	04-Jun-08 06:03 PM	

+="CN87896"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	07-Mar-08	07-Mar-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:33 AM	

+="CN87897"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	15-Nov-07	15-Nov-10	14400.00	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:47 AM	

+="CN87898"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	10-Apr-08	10-Apr-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:04 AM	

+="CN87902"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	05-Mar-08	05-Mar-11	14854.32	="RFT15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:37 AM	

+="CN87916"	"Sonatest Sitescan 150s flaw detector and accessories."	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Measuring and observing and testing instruments"	02-Jun-08	30-Jun-08	14513.95	=""	="Russell Fraser Sales P/L"	05-Jun-08 10:16 AM	

+="CN87932"	"TIE DOWN, CARGO, AIRCRAFT NSN 1670/002121149"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	14-May-08	13-Jun-08	12470.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 10:37 AM	

+="CN87937"	"GEAR, SPUR NSN 3020/007203276"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	06-Jun-08	13500.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:06 AM	

+="CN87939"	"WASHER, THRUST, SET NSN 3120/009468050"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	08-Jun-08	15960.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:22 AM	

+="CN87942"	" AIRCRAFT SPARES  NSN 3040-00-243-3661, GEARSHAFT, SPUR,  QTY 3 "	="Defence Materiel Organisation"	05-Jun-08	="Reconnaissance helicopters"	28-May-08	27-Jul-08	15884.28	=""	="HELITECH  DIV OF SIKORSKY"	05-Jun-08 11:44 AM	

+="CN87952"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System Printer"	="Defence Materiel Organisation"	05-Jun-08	="Infrared IR sensors"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:02 PM	

+="CN87955"	"Use of Exisitng ASP Contract  - Install maintenanc Ladder"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	13935.08	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87956"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87960"	"Belt Friction for UQN-4 Echo Sounder"	="Defence Materiel Organisation"	05-Jun-08	="Location and navigation systems and components"	17-May-08	16-Sep-08	13546.57	=""	="EDO WESTERN CORPORATION DBA EDO ELE"	05-Jun-08 01:03 PM	

+="CN88017"	"Wise Package Studio Licence Renewal"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	30-Jun-08	15860.04	=""	="ALTIRIS AUSTRALIA PTY LTD"	05-Jun-08 01:10 PM	

+="CN88025"	"AUDITOR TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Specialised educational services"	19-May-08	16-Jun-08	12975.01	=""	="SOUTHPAC AEROSPACE"	05-Jun-08 01:11 PM	

+="CN88027"	"COMPUTER HARDWARE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	25-Jun-08	14894.00	=""	="PORTABLE COMPUTER SYSTEMS"	05-Jun-08 01:11 PM	

+="CN88045"	"Gears, Bevel Spurs"	="Defence Materiel Organisation"	05-Jun-08	="Bearings and bushings and wheels and gears"	15-May-08	01-Aug-09	13755.87	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 01:13 PM	

+="CN88046"	"Aerospace Helmets with Microphones"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	15-May-08	03-Oct-08	13670.85	=""	="TRANSAERO INC."	05-Jun-08 01:13 PM	

+="CN88058"	"FACILITATION DEU STRATEGY WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	21-May-08	15950.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 01:15 PM	

+="CN88063"	"Procure parts for installation of Sea Water 'Y' Strainer for HMAS Sydney RO Plant"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	30-Jun-08	14854.97	=""	="THALES AUSTRALIA"	05-Jun-08 01:15 PM	

+="CN88071"	"Promotional material"	="Defence Materiel Organisation"	05-Jun-08	="Sales and business promotion activities"	15-May-08	30-Jun-08	13398.00	=""	="GREENFROG PROMOTIONS"	05-Jun-08 01:16 PM	

+="CN88072"	"MANOORA WOOP PM"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	15-May-08	16-May-08	14979.64	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:16 PM	

+="CN88078"	"PROVISION OF OEP SURVEY TOOL AND DATA ANAIYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-09	12375.00	=""	="ORIGIN CONSULTING GROUP PTY LTD"	05-Jun-08 01:17 PM	

+="CN88090"	"Teamcenter Project Author"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-09	13376.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:19 PM	

+="CN88093"	"SUN equipment for SIMS workstations"	="Defence Materiel Organisation"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	12266.44	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:19 PM	

+="CN88094"	"PEP course"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 01:19 PM	

+="CN88123"	"Replace Bridge Windows with non-sliding windows HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	23-May-08	30-Aug-08	12693.05	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:23 PM	

+="CN88128"	"USA TRAVEL FOR S. FAVALORO"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	31-Jul-08	13208.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:23 PM	

+="CN88139"	"EDM GAP ANALYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Environmental control systems"	22-May-08	30-Jun-08	12276.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 01:24 PM	

+="CN88148"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	30-Jun-08	13772.22	=""	="AQUALOGIC LAUNDRY SYSTEM GROUP"	05-Jun-08 01:26 PM	

+="CN88149"	"Photoshop Software"	="Defence Materiel Organisation"	05-Jun-08	="Software"	26-May-08	04-Jun-08	14298.90	=""	="ZALLCOM PTY LTD"	05-Jun-08 01:26 PM	

+="CN88156"	"Rack Mounts"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	26-May-08	30-Jun-09	15554.00	=""	="CYPHER RESEARCH LABORATORIES"	05-Jun-08 01:27 PM	

+="CN88169"	"Travel to Alabama to finaliise the Test Program for Prog AIR 5433 IRSS CTD"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	30-Jul-08	12133.13	=""	="GKN AEROSPACE ENGINEERING SERVICES"	05-Jun-08 01:28 PM	

+="CN88182"	"m548 box"	="Defence Materiel Organisation"	05-Jun-08	="Packaging materials"	26-May-08	30-Jun-08	13683.25	=""	="PENTARCH PTY LTD"	05-Jun-08 01:30 PM	

+="CN88190"	"Use of Exisitng ASP Contract  - Modify Vent Risers"	="Defence Materiel Organisation"	05-Jun-08	="Heating and ventilation and air circulation"	20-May-08	30-Jun-08	14142.98	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88201"	"Use of Exisitng ASP Contract  - ECP Main SW Pump Discharge Vavle"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	20-May-08	30-Jun-08	12840.14	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88234"	"POC: TEJINDER UPPAL CONTACT: 02 626 50778"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14905.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:36 PM	

+="CN88244"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	13750.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 01:37 PM	

+="CN88245"	"TD 115 - ECPINS V5.1 CONFIGURATION CHANGE TO"	="Defence Materiel Organisation"	05-Jun-08	="Software"	22-May-08	12-Jun-08	15002.39	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	05-Jun-08 01:37 PM	

+="CN88272"	"CONDUCT HULL CROP & RENEW REPAIRS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	16-May-08	13-Jun-08	15867.28	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:40 PM	

+="CN88280"	"OVERHAUL LCM8 CRADLES AND PEDESTALS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	23-May-08	20-Jun-08	12767.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88282"	"MICROFILM SCANNER - SCAN PRO 1000"	="Defence Materiel Organisation"	05-Jun-08	="Office machines and their supplies and accessories"	28-Apr-08	31-May-08	15389.00	=""	="WOLLONGONG DRAWING AND OFFICE"	05-Jun-08 01:41 PM	

+="CN88284"	"ACCUMULATOR, HYDRAULIC"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	30-Apr-08	04-Dec-08	12612.11	=""	="TACTAIR FLUID CONTROLS INC"	05-Jun-08 01:42 PM	

+="CN88289"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	04-Jun-08	30-Jun-08	14456.26	=""	="RAYTHEON AUST PTY LTD"	05-Jun-08 01:42 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88303"	"5 x 21" monitors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	12236.76	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 01:44 PM	

+="CN88306"	"WAVEGUIDE SWITCH"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	14-May-08	01-Feb-09	14206.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	05-Jun-08 01:44 PM	

+="CN88309"	"Use of Exisitng ASP Contract  - Annual Service Pt Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88310"	"Use of Exisitng ASP Contract  - Annual Service STBD Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88319"	"ARH INDEPENDENT AIRCRAFT LIGHTING REVIEW"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	06-May-08	30-May-08	12162.15	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:45 PM	

+="CN88324"	"Amend various TMS's"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	13089.93	=""	="THALES AUSTRALIA"	05-Jun-08 01:46 PM	

+="CN88336"	"Use of Exisitng ASP Contract  - Replace tiles in officer cabin"	="Defence Materiel Organisation"	05-Jun-08	="Fibres and textiles and fabric industries"	05-May-08	30-Jun-08	12967.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88338"	"Prepare & supply drawings for mounting of 600kg Davit system to vessel of opportunity S/H Standa"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	05-May-08	30-Jun-08	14748.80	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 01:48 PM	

+="CN88343"	"THIS PRICE INCLUDES INSTALLATION AND COMMISSIONING DENTAL SERVICES AS PER RFQ7780359"	="Defence Materiel Organisation"	05-Jun-08	="Medical apparel and textiles"	06-May-08	06-May-08	12870.00	=""	="IVOCLAR VIVADENT"	05-Jun-08 01:48 PM	

+="CN88350"	"GRADUATE DIPLOMA IN LEGAL PRACTICE WORKSHOP FOR 2006 MGS LEGAL GRADUATES"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	12-Nov-07	30-Jun-08	15483.60	=""	="ANU"	05-Jun-08 01:49 PM	

+="CN88364"	" Accounting for internally generated software "	="Australian Taxation Office"	05-Jun-08	="Public enterprises management or financial services"	27-May-08	25-Jun-08	15160.00	=""	="Ernst & Young"	05-Jun-08 01:52 PM	

+="CN88372"	"Reimbursement of Rent - Elphinstone Close"	="Defence Materiel Organisation"	05-Jun-08	="Permanent structures"	06-May-08	30-Jun-08	12500.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:52 PM	

+="CN88386"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS PARRAMATTA DURING DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	11-Nov-08	15522.66	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:54 PM	

+="CN88389"	"Task backlog"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	18-Dec-07	17-Jan-08	15419.80	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:54 PM	

+="CN88396"	"REPAIR CARGO HATCH HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	02-Jun-08	04-Feb-08	12321.95	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:55 PM	

+="CN88398"	"Technical and Engineering Support EMU"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-May-08	30-Jun-08	12344.64	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:55 PM	

+="CN88402"	"Detailed Design Package- Installation of CMDS Lock ers on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	01-Oct-08	12320.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	05-Jun-08 01:55 PM	

+="CN88406"	"engineering services"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	12-Mar-08	04-Jun-08	13005.33	=""	="G A GLANVILLE & CO"	05-Jun-08 01:56 PM	

+="CN88407"	"Lease of Vehicle under Agency Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	31-Dec-09	13562.11	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:56 PM	

+="CN88409"	"BDS CABLE REPLACEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	11-Nov-07	30-Jun-08	14552.29	=""	="C4I PTY LTD"	05-Jun-08 01:56 PM	

+="CN88410"	"FCBP PLATFORM DOCUMENT ARCHIVING PROGRAM EXT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-Jun-08	14797.21	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:56 PM	

+="CN88428"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14773.00	=""	="KPMG AUSTRALIA"	05-Jun-08 01:59 PM	

+="CN88438"	"SDV Systems Admin Training for the Eastern States and Perth."	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-May-08	30-Jun-08	13750.00	=""	="SECURE SYSTEMS LTD"	05-Jun-08 02:00 PM	

+="CN88440"	"REVIEW HMAS KANIMBLA WORK PACK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	16-May-08	13750.00	=""	="DET NORSKE VERITAS"	05-Jun-08 02:00 PM	

+="CN88444"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	12-May-08	07-Jul-08	14790.60	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 02:00 PM	

+="CN88472"	"SHOCK APPROVED SERVER RACK"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Jun-08	15660.32	=""	="THALES AUSTRALIA"	05-Jun-08 02:04 PM	

+="CN88483"	"TESTING OD SAD LIFING EQUIP HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	23-May-08	12745.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 02:05 PM	

+="CN88488"	"Survey & Repair Accomodation Module ex HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	12-May-08	30-Jun-08	14133.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:06 PM	

+="CN88523"	"Purchase of Pin Ground Safety for use on F/A-18."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	08-May-08	30-Apr-09	14786.46	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:10 PM	

+="CN88530"	"PANEL ASSEMBLY CONTROL"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	07-May-08	30-Aug-08	12020.49	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:11 PM	

+="CN88538"	"WA Periscope Workshop Activity 7 - Clean Room Basic Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jun-08	14015.12	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88545"	"Decommissioning of Deakin Primary Injection Facility"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	07-May-08	30-Jun-08	12204.72	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	05-Jun-08 02:12 PM	

+="CN88551"	"Battery, non-rechargeable"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	09-May-08	30-Jan-09	12844.26	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 02:13 PM	

+="CN88555"	"FGA ANSWER BOOKLETS FOR GRADUATE ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	09-May-08	30-Jun-08	15917.50	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	05-Jun-08 02:14 PM	

+="CN88579"	"Acquisition of "CORE" Software Training and Travel Expenses  - AIR 7000 PH1 & PH2 Project Office"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	12274.15	=""	="T E & J L DEECKE PTY LTD"	05-Jun-08 02:16 PM	

+="CN88592"	"DUMMY LOAD, ELECTRICAL NSN 5985/01558379"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	13-May-08	10-Jun-08	14448.00	=""	="PACIFIC AERODYNE PTY LTD"	05-Jun-08 02:40 PM	

+="CN88601"	"INTERNET SERVICE FEES APRIL 08"	="Administrative Appeals Tribunal"	05-Jun-08	="Computer services"	15-Apr-08	30-Apr-08	13264.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	05-Jun-08 02:53 PM	

+="CN88605"	"Consultancy Services for Courtroom Technology"	="Family Court of Australia"	05-Jun-08	="Information technology consultation services"	05-Jun-08	05-Sep-08	14300.00	=""	="CHW Consulting Pty Ltd"	05-Jun-08 02:57 PM	

+="CN88606"	"    Itinerary 025 - Sydney - Singapore - Paris - Frankfurt - Singapore - Melbourne    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	14-May-08	14-May-08	15878.46	=""	="HRG Australia"	05-Jun-08 02:59 PM	

+="CN88616"	"Progression in and attrition from Science, Technolnology, Engineering and Maths education and careers"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	28-Mar-08	30-Jun-08	15730.00	="PRN18456"	="NATIONAL CENTRE FOR VOCATIONAL"	05-Jun-08 03:05 PM	

+="CN88628"	"FPi 2025 Mail Inserter"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-Jun-08	15400.00	="PRN19534"	="Dataflex Pty Ltd"	05-Jun-08 03:09 PM	

+="CN88638"	"Venue Hire Maritime meeting The Esplanade"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14000.00	="PRN19375"	="ESPLANADE UNIT TRUSH"	05-Jun-08 03:12 PM	

+="CN88665"	"VANE ASSEMBLY, COMPRESSOR, AIRCRAFT, GAS TURBINE NSN 2840/015155557"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	30-May-08	14695.80	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:02 PM	

+="CN88667"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 1560/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	29-May-08	12-Jun-08	12873.52	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:05 PM	

+="CN88668"	"CIRCUIT CARD ASSEMBLY NSN 5998/015025152"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	17-Jul-08	15455.76	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:07 PM	

+="CN88676"	"Outer Envelopes"	="Australian Electoral Commission"	05-Jun-08	="Specialty envelopes"	01-Jan-06	01-Jan-09	12742.40	=""	="Australian Envelopes"	05-Jun-08 04:27 PM	

+="CN88677"	"REPAIR - TURBOFAN, AIR CONDITIONING"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	18-Mar-05	30-May-08	14563.21	=""	="QANTAS AIRWAYS LTD"	05-Jun-08 04:28 PM	

+="CN88705"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 04:48 PM	

+="CN88706"	"Allison Luque, $36.05p/hr, 30 hrs p/ Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	15862.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:49 PM	

+="CN88708"	"Network Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	12975.60	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 04:49 PM	

+="CN88715"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	15449.54	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 04:50 PM	

+="CN88725"	"SERVICE AND REPLACE CLUTCH"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	12-May-08	12-Jun-08	13978.78	=""	="R G M MAINTENANCE PTY LTD"	05-Jun-08 04:51 PM	

+="CN88745"	"SOFTWARE LICENCE AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	26-Jun-08	15000.00	=""	="INDIGO SOFTWARE LTD"	05-Jun-08 04:55 PM	

+="CN88765"	"RANDWICK DISPOSAL  &  RATIONALISATION PROJECT- SCALE MODEL OF THE RANDWICK DEFEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-08	14300.00	=""	="IDRAWFAST"	05-Jun-08 04:57 PM	

+="CN88766"	"Beef diced Type 1 Knucle (2070) as per ADFFS 5-6-2 and 5-6-12 V1."	="Department of Defence"	05-Jun-08	="Meat and poultry products"	19-May-08	11-Jul-08	14880.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 04:58 PM	

+="CN88781"	"SUPPORT TO CYBIRD FLIGHT TRIALS"	="Department of Defence"	05-Jun-08	="Flight instrumentation"	19-May-08	02-Jun-08	15840.00	=""	="CYBER TECHNOLOGY"	05-Jun-08 04:58 PM	

+="CN88790"	"Machinery spares for LX120-2 and 850J dozer ISO AACAP08 - Kalumburu"	="Department of Defence"	05-Jun-08	="Vehicle bodies and trailers"	19-May-08	30-Jun-08	14536.18	=""	="HITACHI CONSTRUCTION MACHINERY"	05-Jun-08 04:59 PM	

+="CN88798"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	15947.04	=""	="PACLINK ACT"	05-Jun-08 04:59 PM	

+="CN88801"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	14102.00	=""	="CLAYTON UTZ"	05-Jun-08 04:59 PM	

+="CN88807"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14460.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 04:59 PM	

+="CN88812"	"Facilitator fee for Practising Health &  Safety"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	17-Jun-08	13230.30	=""	="PAM PRYOR & ASSOCIATES"	05-Jun-08 05:00 PM	

+="CN88823"	"AIRCONDITIONI9NG SERVICE & REPAIRS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	12300.72	=""	="COOLSERVE AIR-CONDITION ENGINEERING"	05-Jun-08 05:00 PM	

+="CN88824"	"CM1553 -3CT3 WITH CO PILOT PLUS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-May-08	30-May-08	14603.60	=""	="DEDICATED SYSTEMS AUSTRALIA"	05-Jun-08 05:00 PM	

+="CN88833"	"Provision of Professional Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	14080.00	=""	="TOTAL TECHNOLOGY PARTNERS"	05-Jun-08 05:01 PM	

+="CN88834"	"SHELVING / STORAGE UNITS."	="Department of Defence"	05-Jun-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	19-May-08	06-Jun-08	14780.70	=""	="INTERWORX PTY LTD"	05-Jun-08 05:01 PM	

+="CN88844"	"Repair or replace regional FP&E where RWL applies"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	20-May-08	30-Jun-08	12744.88	=""	="TRANSFIELD SERVICES AUSTRALIA"	05-Jun-08 05:01 PM	

+="CN88851"	"Training Course"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-May-08	30-May-08	15200.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88875"	"STORAGE SYSTEM"	="Department of Defence"	05-Jun-08	="Storage"	19-May-08	30-Jun-08	13132.71	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:03 PM	

+="CN88876"	"CAMERA EQUIPMENT"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-May-08	13-May-08	12285.00	=""	="TED'S CAMERA STORE"	05-Jun-08 05:03 PM	

+="CN88877"	"Minor construction & repair work"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	18-Jun-08	12848.00	=""	="M & P BUILDERS PTY LTD"	05-Jun-08 05:03 PM	

+="CN88880"	"Cables"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	27-May-08	12415.70	=""	="BRUCE HICK ELECTRICAL DATA"	05-Jun-08 05:03 PM	

+="CN88886"	"Contract file: 2008-1053358 refers"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Aug-08	12756.48	=""	="ICON RECRUITMENT"	05-Jun-08 05:04 PM	

+="CN88887"	"BEEF DICED TYPE 1 KNUCKLE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	22-Aug-08	13888.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88890"	"BEEF TYPE 1 KNUCKLE DICED"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	12-Sep-08	12896.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88897"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	14566.06	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:04 PM	

+="CN88905"	"C Class Equipment"	="Department of Defence"	05-Jun-08	="Housings and cabinets and casings"	19-May-08	30-Jun-08	12461.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 05:04 PM	

+="CN88909"	"POC: S.Marner Quotation: 1604"	="Department of Defence"	05-Jun-08	="Hardware"	08-May-08	29-May-08	15786.91	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:04 PM	

+="CN88919"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	21-May-08	31-Jul-09	12100.00	=""	="DR D M HOWARD"	05-Jun-08 05:05 PM	

+="CN88925"	"DELL  AS-PE2900 SERVER COMP"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	22-May-08	12815.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88927"	"EDINBURGH LAND ACQUISITION "STAGE 9C AND 9D""	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	12100.00	=""	="AUSTRALIAN VALUATION OFFICE"	05-Jun-08 05:05 PM	

+="CN88938"	"ENVIRONMENTAL ACTIVITY AND PLANNING TOOL."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13970.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:06 PM	

+="CN88957"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	05-Jun-08	12038.42	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:07 PM	

+="CN88963"	"ULTRAMAX 2007 AUTOMATIC POOL CLEANER WITH 45 METRE  CABLE & ULTRAMAX HOIST."	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	08-May-08	08-May-08	12226.01	=""	="METCO INDUSTRIAL EQUIPMENT"	05-Jun-08 05:07 PM	

+="CN88967"	"FUJITSU A4 COLOUR DOCUMENT SCANNER & A3 COLOUR DOCUMENT SCANNER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	10-Jun-08	13096.16	=""	="COMMANDER (SA/WA) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88971"	"NQ2081 - HMAS Cairns Comms Room and Server Works."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	19-May-08	30-Jun-08	14912.70	=""	="EMAK COMMUNICATIONS"	05-Jun-08 05:07 PM	

+="CN88976"	"DODC Maintenance"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	30-Jun-08	15780.27	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88978"	"Sea Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	12003.20	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88982"	"IT equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	12089.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:08 PM	

+="CN88986"	"PRINTING"	="Department of Defence"	05-Jun-08	="Printed media"	19-May-08	20-May-08	14698.50	=""	="ELECT PRINTING"	05-Jun-08 05:08 PM	

+="CN88993"	"MACHINERY"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	08-May-08	30-Jun-08	12829.98	=""	="GENERATOR PLACE"	05-Jun-08 05:08 PM	

+="CN88997"	"Purchase TSCe - Trimble controller unit"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14511.20	=""	="ULTIMATE POSITIONING"	05-Jun-08 05:08 PM	

+="CN89035"	"FIELD RATIONS - ION 17864 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	07-May-08	30-Jun-08	15500.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:10 PM	

+="CN89045"	"DEMAND NO. RPAE-7EQFNH POLARIS QUOTE NO. 102375"	="Department of Defence"	05-Jun-08	="Specialised and recreational vehicles"	22-May-08	12-Jun-08	12216.17	=""	="POLARIS SALES AUSTRALIA &"	05-Jun-08 05:10 PM	

+="CN89056"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-May-08	13393.20	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:11 PM	

+="CN89060"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	14800.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:11 PM	

+="CN89063"	"Mercury Outboard motor"	="Department of Defence"	05-Jun-08	="Marine transport"	22-May-08	30-Jun-08	15081.00	=""	="QUAY MARINE"	05-Jun-08 05:11 PM	

+="CN89064"	"Repair and Calibration"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	12920.60	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:11 PM	

+="CN89089"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-May-08	13750.00	=""	="DBM AUSTRALIA"	05-Jun-08 05:12 PM	

+="CN89097"	"CAD package"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	20-Jun-08	13139.50	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 05:13 PM	

+="CN89099"	"985-AFG009-P3J - Supply and install of fencing."	="Department of Defence"	05-Jun-08	="Security and control equipment"	21-May-08	30-Jun-08	13846.56	=""	="C&C BUILDING MATERIALS"	05-Jun-08 05:13 PM	

+="CN89111"	"PRINTING OF MAPS GAC 28008"	="Department of Defence"	05-Jun-08	="Paper products"	21-May-08	25-Jun-08	12476.20	=""	="MCMILLAN PRINT GROUP"	05-Jun-08 05:13 PM	

+="CN89112"	"Software Support"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	01-Jun-09	12598.87	=""	="SWEDISH INSTITUTE OF COMPUTER"	05-Jun-08 05:13 PM	

+="CN89118"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:14 PM	

+="CN89120"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	21-May-08	30-Jun-08	12940.40	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:14 PM	

+="CN89147"	"PATCHLEADS AND ACCESSORIES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	13247.89	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89161"	"PROVISIONS FOR HMAS SIRIUS FY07/08"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-May-08	30-Jun-08	15328.00	=""	="ANGLISS SINGAPORE PTE LTD"	05-Jun-08 05:16 PM	

+="CN89165"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	13-Jun-08	12134.06	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89174"	"Computer accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14266.12	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:16 PM	

+="CN89176"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:16 PM	

+="CN89180"	"DOCUCENTRE 2005CP"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	19-May-08	23-May-08	14075.05	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89182"	"Thin client terminals"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15469.30	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:16 PM	

+="CN89183"	"PERSONAL EFFICIENCY PROGRAM."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	19-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:16 PM	

+="CN89193"	"Training"	="Department of Defence"	05-Jun-08	="Satellites"	09-May-08	30-May-08	13640.00	=""	="MARTIN LACK & ASSOCIATES"	05-Jun-08 05:17 PM	

+="CN89194"	"ANNUAL PROGRAM MEMBERSHIP"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Apr-09	13065.75	=""	="CONSORTIUM FOR ADVANCED MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89203"	"POC: DAVE MANCHESTER CONTACT: 02 626 50175"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	13794.00	=""	="PLANWELL TECHNOLOGY"	05-Jun-08 05:17 PM	

+="CN89206"	"CFS FIREM SYSTEM MONITORING"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	30-Jun-11	15400.00	=""	="ONKAPARINGA CFS GROUP"	05-Jun-08 05:18 PM	

+="CN89212"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	15000.00	=""	="TERRY GARDINER'S MEATS &"	05-Jun-08 05:18 PM	

+="CN89216"	"ELECTRICAL PRODUCTS TO REPLENISH ERK KIT"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	28-May-08	14802.88	=""	="IDEAL ELECTRICAL SUPPLIERS PTY LTD"	05-Jun-08 05:18 PM	

+="CN89217"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:18 PM	

+="CN89227"	"3 Day Defensive/Advanced Driver Training Program"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	06-May-08	11-Jun-08	15399.00	=""	="MURCOTTS DRIVING EXCELLENCE"	05-Jun-08 05:18 PM	

+="CN89264"	"DFR SPONSORSHIP OF MSAND FOR 2008. OPPORTUNITY TO UNDERGRADUATE MEDICAL STUDENTS PLUS POST GRADUATE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	14500.00	=""	="MEDICAL STUDENT ASSOCIATION NOTRE"	05-Jun-08 05:20 PM	

+="CN89270"	"Safety Cabinets"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	15-May-08	01-Jul-08	14888.54	=""	="J BLACKWOOD & SON LTD"	05-Jun-08 05:20 PM	

+="CN89273"	"MOBILE PHONES AND CHARGERS"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	15-May-08	13860.07	=""	="WATTS COMMUNICATIONS"	05-Jun-08 05:20 PM	

+="CN89280"	"Consultancy Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	12276.00	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	05-Jun-08 05:21 PM	

+="CN89285"	"Seaboat Coxswain Course"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12838.28	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 05:21 PM	

+="CN89299"	"Quote by Robert Lacey - Defence Account Manager"	="Department of Defence"	05-Jun-08	="Hardware"	06-May-08	30-Jun-08	12316.90	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89304"	"Payment of Freight"	="Department of Defence"	05-Jun-08	="Mail and cargo transport"	08-May-08	15-May-08	13211.12	=""	="STAR TRACK EXPRESS PTY LTD"	05-Jun-08 05:22 PM	

+="CN89305"	"BUILDING MODIFICATIONS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	23-May-08	13570.70	=""	="COMMERCIAL MAINTENANCE"	05-Jun-08 05:22 PM	

+="CN89313"	"FURNITURE FOR BLDG 135, MEOMS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	10-Jun-08	12441.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:22 PM	

+="CN89337"	"DEMAND NO.SGID-7E6DRS"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	09-May-08	30-Jun-08	13184.88	=""	="JOHN R TURK"	05-Jun-08 05:23 PM	

+="CN89341"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	15986.41	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:24 PM	

+="CN89345"	"HIRE OF TEMPORY FENCE"	="Department of Defence"	05-Jun-08	="Military tactics"	02-May-08	17-Jun-08	12035.32	=""	="COATES HIRE OPERATION"	05-Jun-08 05:24 PM	

+="CN89350"	"Hire of VI IAW Drake Standing Offer LH01/05"	="Department of Defence"	05-Jun-08	="Motor vehicles"	15-May-08	30-Jun-08	12033.38	=""	="DRAKE INTERNATIONAL"	05-Jun-08 05:24 PM	

+="CN89359"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	13742.80	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:24 PM	

+="CN89363"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	12042.06	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:25 PM	

+="CN89368"	"CERT III & IV IN FITNESS TRAINING"	="Department of Defence"	05-Jun-08	="Other sports"	15-May-08	30-Jan-09	15815.00	=""	="FITLINK AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89401"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - SHIPPING CONTAINERS"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	30-Jun-08	15290.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89405"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - FENCE WORK TO HARRISTOWN DEPOT"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-May-08	30-Jun-08	15923.60	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89419"	"Sonar Transceiver -STR (C-MAX) and C-Shell (C-MAX)"	="Department of Defence"	05-Jun-08	="Surveillance and detection equipment"	05-May-08	30-May-08	12210.00	=""	="SONARTECH ATLAS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89420"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	14-May-08	30-Jun-08	13860.00	=""	="ADHESION ASSOCIATES PTY LTD"	05-Jun-08 05:28 PM	

+="CN89422"	"Safety Equipment."	="Department of Defence"	05-Jun-08	="Personal safety and protection"	14-May-08	14-May-08	13699.85	=""	="GEMINEX PTY LTD"	05-Jun-08 05:28 PM	

+="CN89423"	"Remaval and Rebuild of Main Groupswitch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	30-May-08	13585.00	=""	="TELSTRA BUSINESS SERVICES"	05-Jun-08 05:28 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89427"	"SUPPLY & INSTALL LCD TVS & AUDIO SYSTEM GYMNASIUM RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	30-May-08	12572.01	=""	="NORTH COAST STEREO PTY LTD"	05-Jun-08 05:28 PM	

+="CN89429"	"SPARE PARTS"	="Department of Defence"	05-Jun-08	="Motor vehicles"	07-May-08	06-Jun-08	12316.01	=""	="WESTERN DIESEL NT PTY LTD"	05-Jun-08 05:29 PM	

+="CN89439"	"FIRST AID"	="Department of Defence"	05-Jun-08	="Medical facility products"	07-May-08	30-Jun-08	15055.00	=""	="ST JOHN AMBULANCE AUSTRALIA NSW"	05-Jun-08 05:29 PM	

+="CN89440"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	14352.80	=""	="CAFE CULTURE AUSTRALIA PTY LIMITED"	05-Jun-08 05:29 PM	

+="CN89453"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	07-May-08	30-Jun-08	13530.00	=""	="AVANTI FITNESS"	05-Jun-08 05:30 PM	

+="CN89459"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12775.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:31 PM	

+="CN89474"	"POC: STEVE BROAD CONTACT: 02 626 60003"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	14532.67	=""	="COMMANDER INTEGRATED NETWORKS PTY"	05-Jun-08 05:32 PM	

+="CN89479"	"FORDIGRAPH DEP.SHREDDER E2026FCCM QTY X 5"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	16-May-08	23-May-08	15097.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89486"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	15180.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:32 PM	

+="CN89505"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12385.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:33 PM	

+="CN89511"	"SAFE/SECURE BOX"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	16-May-08	31-Dec-08	12249.99	=""	="SAFE-TEC LOCKSMITHS PTY LTD"	05-Jun-08 05:34 PM	

+="CN89516"	"SUPPLY AND INSTALL SCARDA SYSTEM"	="Department of Defence"	05-Jun-08	="Master control systems"	06-May-08	26-May-08	14916.00	=""	="CONTREC SYSTEMS"	05-Jun-08 05:34 PM	

+="CN89520"	"CATERING"	="Department of Defence"	05-Jun-08	="Restaurants and catering"	06-May-08	06-May-08	14432.00	=""	="KAREN WILL CATER"	05-Jun-08 05:34 PM	

+="CN89531"	"ENVIRONMENTAL IMPACT AND CLIMATE CHANGE WORKSHOP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13361.33	=""	="MAUNSELL AUSTRALIA PTY LTD"	05-Jun-08 05:35 PM	

+="CN89544"	"REPAY DMO FOR UNUSED RESERVE SALARIES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-May-08	15265.37	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:36 PM	

+="CN89550"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:36 PM	

+="CN89553"	"Video Conference System"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	07-May-08	30-Jun-08	15526.50	=""	="PROJECTION PLUS"	05-Jun-08 05:36 PM	

+="CN89559"	"Provide demonstration of reliability and Maintenan -ce Analysis softaware, hardware for DSTO204915"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	07-May-08	09-May-08	15353.80	=""	="EQUIPMENT MANAGEMENT INTERNATIONAL"	05-Jun-08 05:37 PM	

+="CN89561"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	07-May-08	30-Jun-08	12540.00	=""	="INTERWORX PTY LTD"	05-Jun-08 05:37 PM	

+="CN89590"	"Outdoor activity provider for bush trip , 65 DITC staff and long course students  28-30 May 2008"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-May-08	30-May-08	15247.19	=""	="THE JUNGAI CENTRE"	05-Jun-08 05:39 PM	

+="CN89592"	"HAND TOOLS"	="Department of Defence"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	14256.61	=""	="TOOLWORKS"	05-Jun-08 05:39 PM	

+="CN89597"	"SN02274 Ergonomic assesments for ADF Staff across the ACT/SNSW Region"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	04-Jun-08	30-Jun-08	15400.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89600"	"Standing Offer 45190"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	15-May-08	30-Jun-08	15599.76	=""	="BLUE SWIMMER CONSULTING"	05-Jun-08 05:39 PM	

+="CN89612"	"MCSA training for SME"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	15200.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	05-Jun-08 05:40 PM	

+="CN89635"	"FURNITURE RELOCATION AND INSTALLATION REQUIREMENTS FOR 2007/2008"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	15-May-08	30-Jun-08	14297.38	=""	="DICK VERNON CONSTRUCTIONS"	05-Jun-08 05:42 PM	

+="CN89640"	"SAM KEY MANAGEMENT SYSTEM"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	20-Jun-08	13371.00	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:42 PM	

+="CN89665"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	16-May-08	23-May-08	15313.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89669"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	12203.76	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89670"	"PEP Worldwide training for 6 people"	="Department of Defence"	05-Jun-08	="Electronic reference material"	23-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:44 PM	

+="CN89671"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	14438.61	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89678"	"PRESENTATION OF POWER SEARCHING FOR DEFENCE"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	23-May-08	15282.30	=""	="INFORMATION EDGE PTY LTD"	05-Jun-08 05:44 PM	

+="CN89689"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	31-Mar-08	30-Sep-08	13332.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89690"	"UOTF PROTOTYPE- MAJURA RANGE. FIRE ENGINEERING ASSESSMENT OF J0035-JCTC PROTOTYP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	15950.00	=""	="ARUP PTY LTD"	05-Jun-08 05:45 PM	

+="CN89696"	"Contractor to support JDSSC workshop for JP2065"	="Department of Defence"	05-Jun-08	="Project management"	23-May-08	30-Jun-08	12400.00	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89700"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89723"	"PAYMENT OF HIRE TRANSPORT VEHICLES"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	09-May-08	08-Jun-08	13864.42	=""	="SERCO SODEXHO DEFENCE SERVICES"	05-Jun-08 05:47 PM	

+="CN89725"	"REPLACEMENT FUEL HOSES ON DAF 30,000L TANKER REG NO:229757,230079 & 229742"	="Department of Defence"	05-Jun-08	="Aircraft fuel tanks and systems"	15-Apr-08	26-May-08	15720.00	=""	="LIQUIP INTERNATIONAL PTY LTD"	05-Jun-08 05:47 PM	

+="CN89727"	"CHARTER X 2 BROOME/TRUSCOTT FOR OP RESOLUTE 29APR AND 6 MAY 2008 NORFORCE"	="Department of Defence"	05-Jun-08	="Aircraft"	06-May-08	06-May-08	15400.00	=""	="BROOME AVIATION PTY LTD"	05-Jun-08 05:47 PM	

+="CN89730"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12200.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89733"	"VEHICLE LEASE 4 TON TELE-HANDLER"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	18-May-08	24-May-08	15761.98	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89753"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-08	12842.50	=""	="MORISON CONSULTING PTY LTD"	05-Jun-08 05:49 PM	

+="CN89756"	"PROVISION OF DEVELOPMENT OF FATIGUE AWARENESS ELEARNING PACKAGE"	="Department of Defence"	05-Jun-08	="Specialised educational services"	23-May-08	30-Jun-08	14344.00	=""	="IMPART CORPORATION PTY LTD"	05-Jun-08 05:49 PM	

+="CN89761"	"INTERIM WORKS  - TRAINEE REHABILITATION WING, MOOR NSW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	14613.81	=""	="CORDUKES"	05-Jun-08 05:50 PM	

+="CN89765"	"COURSE"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Feb-08	10-Mar-08	15400.00	=""	="INGRES AUSTRALIA"	05-Jun-08 05:50 PM	

+="CN89768"	"AQIS OFFSHORE INSPECTION OP ASTUTE"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	23-May-08	31-May-08	14898.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:50 PM	

+="CN89773"	"Security"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	30-May-08	30-Jun-08	12568.60	=""	="CHUBB SECURITY AUST PTY LTD"	05-Jun-08 05:50 PM	

+="CN89785"	"DMO DIPLOMA OF PROJECT MANAGEMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-Apr-08	30-Jun-08	12100.00	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:51 PM	

+="CN89801"	"THREE AIR-RIDE TRAILERS TO COLLECT FREIGHT FROM WL ATTACHED EMAIL."	="Department of Defence"	05-Jun-08	="Transportation services equipment"	17-Apr-08	17-Apr-08	13605.90	=""	="TNT EXPRESS"	05-Jun-08 05:52 PM	

+="CN89811"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	15152.50	=""	="ICON RECRUITMENT"	05-Jun-08 05:53 PM	

+="CN89815"	"PSP contractor"	="Department of Defence"	05-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	13824.47	=""	="RECRUITMENT QUEENSLAND"	05-Jun-08 05:53 PM	

+="CN89818"	"SOFTWARE LICENCES AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	30-May-08	14685.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89821"	"Consultant for accomodation project"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	13468.91	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:53 PM	

+="CN89857"	"FROZEN FOOD"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	21-Apr-08	30-Jun-08	15569.46	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:56 PM	

+="CN89862"	"FURNITURE FOR ARMIDALE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	15102.20	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:56 PM	

+="CN89868"	"The NBS Request to UDP Work Package 185/07"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-May-08	13899.12	=""	="RITECH"	05-Jun-08 05:56 PM	

+="CN89887"	"LWP-G 3-9-6 DOCTRINE PUBLCIATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-Nov-07	27-Jun-08	12801.39	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:57 PM	

+="CN89900"	"POC: GLENN MACKAY CONTACT: 08 9956 2565"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	15237.20	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:58 PM	

+="CN89902"	"TRANSPORT CASES"	="Department of Defence"	05-Jun-08	="Luggage and handbags and packs and cases"	26-May-08	31-May-08	15840.00	=""	="PRODATA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89918"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	12280.99	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 05:59 PM	

+="CN89924"	"FACOPS"	="Department of Defence"	05-Jun-08	="Pest control products"	26-May-08	30-Jun-08	13156.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89925"	"Itronix VR-2 Semi Rugged Notebooks"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	12-May-08	29-May-08	14737.80	=""	="ANTARES CORPORATION PTY LTD"	05-Jun-08 06:00 PM	

+="CN89927"	"Apron Lighting Survey for RAAF Edinburgh"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	12100.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89946"	"OFFICE WORKSTATIONS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	17-Jun-08	12012.00	=""	="KEEN OFFICE FURNITURE"	05-Jun-08 06:01 PM	

+="CN89947"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR EDINBURUGH ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12648.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89949"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR PUCKAPUNYAL ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12752.30	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89952"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	30-Jun-08	14625.90	=""	="BALL SOLUTIONS GROUP PTY LTD"	05-Jun-08 06:02 PM	

+="CN89953"	"FOAM FLOATATION COLLAR FOR DUMMY TOPEDO UNDER BOEI NG STANDING OFFER 873864"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	21-May-08	06-Jun-08	12636.00	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 06:02 PM	

+="CN89955"	" Education expenses "	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-May-08	30-Jun-08	12262.40	=""	="AUSTRALIAN INTERNATIONAL SCHOOL"	05-Jun-08 06:02 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val150000to300000.xls
@@ -1,1 +1,170 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87456"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-09	273042.00	="RMS06/05752-02"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:41 AM	

+="CN87459"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	17-May-08	26-Jun-09	235000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	03-Jun-08 10:41 AM	

+="CN87461"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	243443.20	="FIN05CRP004-33"	="VEROSSITY"	03-Jun-08 10:41 AM	

+="CN87468"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jul-08	30-Jun-09	223731.20	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87469"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	176654.40	="FIN05CRP004-31"	="STRATAGEM"	03-Jun-08 10:43 AM	

+="CN87470"	"IT System Development Services"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-Nov-08	235392.00	="TBA"	="ICE MEDIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87505"	"Public relations services for the electronic Medicare claiming campaign"	="Department of Human Services"	03-Jun-08	="Public relation services"	26-May-08	20-Jun-09	300000.00	=""	="Royce (Vic) Pty Ltd"	03-Jun-08 11:52 AM	

+="CN87534"	"ICT Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	22-May-08	04-Jun-09	273130.00	=""	="COLLECTIVE RESOURCES (OXFORD"	03-Jun-08 02:34 PM	

+="CN87575-A2"	"Justice Trax Software"	="Australian Taxation Office"	03-Jun-08	="Software"	09-Jun-08	01-Jul-11	151305.00	=""	="Axion Control Systems Pty Ltd"	03-Jun-08 03:02 PM	

+="CN87583-A1"	"08.091 Internal Coaching Program"	="Australian Taxation Office"	03-Jun-08	="Vocational training"	03-Jun-08	30-Dec-08	190160.00	=""	="Workplace Coaching Pty Ltd"	03-Jun-08 04:37 PM	

+="CN87646"	"FILTER ELEMENTS, FLUID "	="Defence Materiel Organisation"	04-Jun-08	="Fuel filters"	31-May-08	20-Jul-08	254100.00	=""	="LIQUIP INTERNATIONAL"	04-Jun-08 11:02 AM	

+="CN87672"	"Funding Agreement"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hotels and lodging and meeting facilities"	23-May-08	31-Mar-09	209000.00	=""	="Carers Australia Inc"	04-Jun-08 11:46 AM	

+="CN87683"	"SAP Programming Resources"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	171600.00	=""	="REDBACK CONSULTING PTY LTD"	04-Jun-08 11:48 AM	

+="CN87684"	"Provision of ABAP programming for FaCSIA's SAP System"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	177320.00	=""	="Southern Cross Computing Pty Ltd"	04-Jun-08 11:48 AM	

+="CN87685"	"Provide development BW system and other developmen FACSIA's SAP systems as needed on agreed pie"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	178464.00	=""	="Southern Cross Computing Pty Ltd"	04-Jun-08 11:48 AM	

+="CN87686"	"Provision of BASIS support"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	152152.00	=""	="Southern Cross Computing Pty Ltd"	04-Jun-08 11:48 AM	

+="CN87687"	"SAP FI Programming Resources"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	205920.00	=""	="CSC Australia Pty Ltd"	04-Jun-08 11:48 AM	

+="CN87698"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	28-May-08	30-Jun-08	180822.91	=""	="Infront Systems Pty Ltd"	04-Jun-08 11:50 AM	

+="CN87699"	"IT Contractor Panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	28-May-08	09-Jun-09	217360.00	=""	="AUREC PTY LTD"	04-Jun-08 11:50 AM	

+="CN87718"	"Contexual profiles of the NTER and Cape York communities"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	26-May-08	31-Aug-08	232200.00	=""	="AUSTRALIAN INSTITUTE OF ABORIGINAL"	04-Jun-08 11:55 AM	

+="CN87736"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	01-May-08	30-Jun-08	212636.57	=""	="COMPUTERCORP (OPERATIONS)"	04-Jun-08 11:59 AM	

+="CN87737"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	02-May-08	30-Jun-08	196463.04	=""	="Infront Systems Pty Ltd"	04-Jun-08 12:00 PM	

+="CN87750"	"Homelessness White Paper"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	07-May-08	30-Jul-08	259347.00	=""	="Orima Research Pty Ltd"	04-Jun-08 12:03 PM	

+="CN87784"	"Event Management - Naional Disability Awards 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Community and social services"	15-May-08	19-Dec-08	153414.00	=""	="ZOO COMMUNICATIONS PTY LIMITED"	04-Jun-08 12:10 PM	

+="CN87816"	"Construction Management - Centraplaza Executive fitout - Lvl 5 Centraplaza, 16 Bowes pl Woden"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	13-May-08	30-Jun-08	164295.67	=""	="ISIS Projects Pty Ltd"	04-Jun-08 12:15 PM	

+="CN87831"	"March 2008 Pre-payments"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Accounting services"	01-Mar-08	31-Mar-08	233318.68	=""	="UNITED GROUP SERVICES PTY LTD"	04-Jun-08 12:23 PM	

+="CN87835-A2"	"Provision of Aurion Hosting Application services"	="Family Court of Australia"	04-Jun-08	="Human resources services"	31-May-08	30-May-11	173415.00	=""	="Aurion Corporation Pty Ltd"	04-Jun-08 01:26 PM	

+="CN87901"	"Tool Kit Electricians Generic.  This order has been raised against Standing Offer No. CONL069."	="Defence Materiel Organisation"	05-Jun-08	="Electrician kits"	04-Jun-08	31-Jul-08	187985.16	=""	="Brentool Industrial Supplies Pty Ltd"	05-Jun-08 09:32 AM	

+="CN87946-A1"	"lease at tuggeranong Square, Greenway, ACT"	="Centrelink"	05-Jun-08	="Real estate services"	09-May-08	28-Feb-11	197382.00	=""	="Nikias Nominees Pty Ltd, Long Term Investments Pty Ltd & Michalis Holdings Pty Ltd"	05-Jun-08 12:17 PM	

+="CN87953"	"105MM HAMEL FIELD GUN SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	17-May-08	03-Dec-08	205899.02	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	05-Jun-08 01:02 PM	

+="CN87967"	"Scientific Advisor for JSFIT"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	19-May-08	12-Nov-08	172785.58	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:04 PM	

+="CN87978"	"requirement for support to sustainment and operational release activities"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	19-Dec-08	271416.00	=""	="DAVID MIERS & ASSOCIATES"	05-Jun-08 01:05 PM	

+="CN87985"	"Integration of Int Tool into BCSS R8.0 SP2"	="Defence Materiel Organisation"	05-Jun-08	="Software"	16-May-08	30-Aug-08	178200.00	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:06 PM	

+="CN87988"	"The work under this Purchase Order will be done in DMO Support Services (DMOSS) Standing Offer Panel"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	19-Dec-08	198504.88	=""	="NOVA DEFENCE"	05-Jun-08 01:06 PM	

+="CN88003"	"Toyota Hilux 4x2 D/C UTE (UM2) Qty12"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	28-Nov-08	284547.25	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88004"	"Professional services for Neville tommy"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-May-08	27-Aug-08	170478.00	=""	="AUSTRALIAN COLLEGE OF PROJECT MANAG"	05-Jun-08 01:08 PM	

+="CN88008"	"Undertake AMPS related tasks for post FFG Upgrade Configuration Data Alignment  80 days 26Jun-31Oct"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	31-Oct-08	153120.00	=""	="EDEN TECHNOLOGY PTY LTD"	05-Jun-08 01:09 PM	

+="CN88032"	"EXTENSION OF EXISTING BOEING CONTRACT NO. CAPO CP9263260T/1463 BY SIX MONTHS TO 30 NOV 2008."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	14-May-08	30-Nov-08	249161.02	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 01:12 PM	

+="CN88041"	"Installation Design Package for Scan Eagle & MAC2 on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	14-Jul-08	252923.56	=""	="THALES AUSTRALIA"	05-Jun-08 01:13 PM	

+="CN88048"	"Ramset Ph2 - milestone 1 20% Ramset Ph2 - milestone 2 15%"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	09-Sep-08	150946.69	=""	="NOVA AEROSPACE"	05-Jun-08 01:13 PM	

+="CN88070"	"SIngle Channel Vibration, Data Collector"	="Defence Materiel Organisation"	05-Jun-08	="Electronic hardware and component parts and accessories"	15-May-08	28-Jun-13	163779.00	=""	="VITECH ASIA PACIFIC PTY LTD"	05-Jun-08 01:16 PM	

+="CN88073-A1"	" Joint Electronic Fuel Management (JEFM) Project System Software Engineering Services "	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	15-May-08	31-Aug-08	158259.62	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:17 PM	

+="CN88080"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	166089.26	=""	="ARION SYSTEMS PTY LTD"	05-Jun-08 01:17 PM	

+="CN88086"	"Technical services for MIP Gateway"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	31-Aug-08	282241.85	=""	="COMPUCAT RESEARCH PTY LTD"	05-Jun-08 01:18 PM	

+="CN88087"	"PASOR software defined radios"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-May-08	30-May-09	212484.80	=""	="JENKINS ENGINEERING DEFENCE"	05-Jun-08 01:18 PM	

+="CN88119"	"Order raised to cover fuel required by HMAS Ararat during upcoming overseas deployment."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	23-May-08	30-Jun-08	199999.80	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 01:22 PM	

+="CN88133"	"Ad hoc installation of Prism III on ACPBS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	31-Jul-08	158980.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:24 PM	

+="CN88142"	"ARMY SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	23-May-08	22-Dec-08	233833.44	=""	="FN HERSTAL SA"	05-Jun-08 01:25 PM	

+="CN88145"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	178448.68	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 01:25 PM	

+="CN88151"	"AIR WARFARE DESTROYER PROGRAM - AUDIT AND VERIFICATION SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jun-09	165000.00	=""	="KPMG AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88174"	"PSP - Training Devices Engineering Support"	="Defence Materiel Organisation"	05-Jun-08	="Management advisory services"	26-May-08	30-Jun-09	252632.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:29 PM	

+="CN88186"	"Senior Satellite Specialist Engineer"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	26-May-08	02-Jun-09	283360.00	=""	="FOCAL COMMUNICATION PTY LTD"	05-Jun-08 01:30 PM	

+="CN88219"	"TRUST ACCOUNT SUSTAINMENT FY 07/08 ESSM MISSILE"	="Defence Materiel Organisation"	05-Jun-08	="Missiles"	20-May-08	21-Jun-08	299191.04	=""	="NATO SEASPARROW SURFACE MISSILE"	05-Jun-08 01:34 PM	

+="CN88222"	"Documnet Development"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	17-Oct-08	156750.00	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 01:34 PM	

+="CN88253"	"Aircraft Composites"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	21-May-08	06-Nov-08	261800.00	=""	="QUEENSLAND UNIVERSITY OF"	05-Jun-08 01:38 PM	

+="CN88264"	"TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	21-May-08	15-Jun-10	272526.00	=""	="NOVA AEROSPACE"	05-Jun-08 01:39 PM	

+="CN88267"	"Upgrade of  the Validation"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	21-May-08	31-Dec-08	183150.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:40 PM	

+="CN88293"	"Bathurst Island"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	09-May-08	26-Jun-08	170830.00	=""	="C-E SOLUTIONS"	05-Jun-08 01:43 PM	

+="CN88299"	"MULTI LEVEL SECURITY THIN CLIENT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	08-Apr-08	01-May-08	192328.59	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:43 PM	

+="CN88301"	"4532.06 - LOE TO CARRY OUT DUTIES OF EXPLOSIVE ORDANCE STOWAGE & HANDLING TECH OFFICER"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-Apr-08	30-Jun-09	181500.00	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:43 PM	

+="CN88312"	"Services to update Quality Management Systems"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	06-May-08	30-Sep-08	154000.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:45 PM	

+="CN88314"	"Provision of an Aircraft Avionics Design Engineer"	="Defence Materiel Organisation"	05-Jun-08	="Temporary personnel services"	06-May-08	29-Jan-09	204540.00	=""	="RAPID ASCENT CONSULTING"	05-Jun-08 01:45 PM	

+="CN88321"	"SAFE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	06-May-08	30-Jun-08	175452.20	=""	="FILEGUARD CO (MFG) PTY LTD"	05-Jun-08 01:46 PM	

+="CN88329"	"AIR DATA TEST SETS"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	30-Apr-08	30-Jul-08	234551.79	=""	="DAVIDSON MEASUREMENT"	05-Jun-08 01:47 PM	

+="CN88332"	"air handling units for HS A/C upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	02-May-08	10-Oct-08	234075.60	=""	="AIMTEK PTY LTD"	05-Jun-08 01:47 PM	

+="CN88333"	"Production of TNA"	="Defence Materiel Organisation"	05-Jun-08	="Electronic reference material"	02-May-08	05-Sep-08	174590.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	05-Jun-08 01:47 PM	

+="CN88348"	"LOGISTIC SUPPORT SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	30-Oct-08	243834.58	=""	="BIRDON MARINE PTY LTD"	05-Jun-08 01:49 PM	

+="CN88349"	"BDS UPGRADE FOR LPAs."	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	12-Nov-07	30-Jun-08	203274.90	=""	="C4I PTY LTD"	05-Jun-08 01:49 PM	

+="CN88383"	"GSR through life support contract"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	28-Apr-08	30-Jun-09	154113.10	=""	="THALES COMMUNICATIONS LIMITED"	05-Jun-08 01:53 PM	

+="CN88397-A1"	" TASK 4142-4 LOE COMBAT SNC "	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	04-Feb-08	21-Mar-11	246528.92	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:55 PM	

+="CN88401"	"INTEGRATION & ACCEPTANCE TESTING"	="Defence Materiel Organisation"	05-Jun-08	="Software"	28-Feb-08	27-Jun-08	167800.00	=""	="KPMG"	05-Jun-08 01:55 PM	

+="CN88451"	"TS 4188 - IMS GENERAL SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-May-08	30-Jun-08	160730.90	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:01 PM	

+="CN88464"	"Aircraft Engine Compsite Manufacture"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	09-May-08	29-Oct-08	275000.00	=""	="CRC-ACS LTD"	05-Jun-08 02:03 PM	

+="CN88465"	"International Aircraft Engine Component Manufactur"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	09-May-08	02-Nov-08	275000.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	05-Jun-08 02:03 PM	

+="CN88470"	"Milestone payments for AL1 of contract V310152."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	13-May-08	30-Jun-08	163979.99	=""	="AIRFLITE PTY LTD"	05-Jun-08 02:03 PM	

+="CN88474"	"TS 0146-3 PREVENT TOXIX GASES FROM SLUDGE TANKS ENTERING MACHINERY SPACES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	31-Dec-08	160658.30	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:04 PM	

+="CN88478"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	13-May-08	31-Dec-08	209900.90	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:04 PM	

+="CN88494"	"Engagement of software engineer."	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	12-May-08	13-Jun-09	248380.00	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 02:06 PM	

+="CN88501"	"Engagement of PSP Contractors to provide Financial Management Assistance to LSA-N"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	13-May-08	30-Jun-09	294800.00	=""	="ASCENT GOVERNANCE PTY LTD"	05-Jun-08 02:07 PM	

+="CN88513"	"PSP Support to update NDS Documents"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-09	180000.00	=""	="NOVA DEFENCE"	05-Jun-08 02:09 PM	

+="CN88516"	"ARMY SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	07-May-08	07-Apr-09	257850.53	=""	="SAAB BOFORS DYNAMICS AB"	05-Jun-08 02:09 PM	

+="CN88535"	"Procurement of Additional Hard Drives"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-May-08	172379.02	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:11 PM	

+="CN88540"	"SPECIAL TEST EQUIPMENT FOR PASOR"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	31-May-08	273900.00	=""	="SONARTECH ATLAS"	05-Jun-08 02:12 PM	

+="CN88542"	"Magnometers"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-Jun-09	150150.00	=""	="OWEN INTERNATIONAL PTY LTD"	05-Jun-08 02:12 PM	

+="CN88552"	"Sensors, C130 parts"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	09-May-08	19-May-08	172298.15	=""	="ROLLS-ROYCE CORPORATION"	05-Jun-08 02:13 PM	

+="CN88560"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	283980.00	=""	="NOVA AEROSPACE"	05-Jun-08 02:14 PM	

+="CN88566"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	298550.02	=""	="NOVA AEROSPACE"	05-Jun-08 02:15 PM	

+="CN88582"	"1034-3 - CENTRALISED UPS FOR ESSENTIAL COMMUNICATIONS SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-09	262864.80	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88584-A2"	"1103-3 CESM Compartment RF Isolation"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	24-Feb-11	197874.68	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88613"	"Mornington construction management"	="Centrelink"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jun-08	30-Jun-08	193248.00	=""	="Bronts Commercial Interiors Pty Ltd"	05-Jun-08 03:04 PM	

+="CN88619-A1"	"Survey of the factors influencing student choice of university and subject"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Corporate objectives or policy development"	01-May-08	31-Mar-09	161031.00	="PRN17974"	="ROY MORGAN RESEARCH CENTRE PTY L"	05-Jun-08 03:06 PM	

+="CN88637"	"An Even Start- National Tuition Programme Program Administrator Services - Norther Territory"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	31-Mar-09	175962.00	="PRN17026"	="NT CATHOLIC EDUCATION OFFICE"	05-Jun-08 03:12 PM	

+="CN88724"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-09	248655.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 04:51 PM	

+="CN88730"	"SHARP AGI STK EXPERT EDITION SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	13-May-08	30-Jun-08	221344.00	=""	="AUSPACE LIMITED"	05-Jun-08 04:52 PM	

+="CN88732"	"THINQ LMS ANNUAL MAINTENANCE/SUPPORT FEE"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	25-May-09	210834.17	=""	="SABA SOFTWARE INC."	05-Jun-08 04:52 PM	

+="CN88739"	"FACOPS - Building Refurb"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	30-Jun-08	270970.26	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 04:54 PM	

+="CN88740"	"SUPPORT SERVICES AND MAINTENANCE TO THE INTERNET"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	01-Jul-08	276804.00	=""	="SIRSIDYNIX PTY LTD"	05-Jun-08 04:54 PM	

+="CN88743"	"PLAPTOPS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	254760.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 04:54 PM	

+="CN88753"	"Consolidation of accounting and procedural documen for weapons, munitions and explosives ordanance."	="Department of Defence"	05-Jun-08	="Development finance"	14-May-08	30-Jun-08	286764.50	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 04:56 PM	

+="CN88754"	"NEC Univerge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	175378.06	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 04:56 PM	

+="CN88762"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	27-Jun-08	154000.00	=""	="UNIVERSITY OF MELBOUORNE"	05-Jun-08 04:57 PM	

+="CN88763"	"Bunkbeds and Mattresses"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	14-May-08	26-Jun-08	151316.00	=""	="BEDPOST"	05-Jun-08 04:57 PM	

+="CN88767"	"TRANSMISSION SERVICES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	177100.00	=""	="TELSTRA"	05-Jun-08 04:58 PM	

+="CN88785"	"DOCTRINE PUBLICATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	28-Feb-09	169961.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 04:58 PM	

+="CN88791"	"POC: Andrew Trackson Contact: 02 6265 0502"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	153444.16	=""	="ENTRUST LTD"	05-Jun-08 04:59 PM	

+="CN88859"	"MIMESWEEPER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	188526.80	=""	="CLEARSWIFT PYT LTD"	05-Jun-08 05:02 PM	

+="CN88901"	"LAND 17 - ARTILLERY REPLACEMENT PROJECT. ENGAGE FOR PM/CA SERVICES ON L17-I"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	280500.00	=""	="CONNELL WAGNER PTY LTD"	05-Jun-08 05:04 PM	

+="CN88921"	"Blackberry Devices"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	28-May-08	282746.20	=""	="TELSTRA BUSINESS SERVICE SOLUTIONS"	05-Jun-08 05:05 PM	

+="CN88923"	"NQ1991 REGIONAL FIRE MANAGEMENT 2008 07/08."	="Department of Defence"	05-Jun-08	="Environmental management"	16-May-08	30-Jun-08	264024.23	=""	="SPOTLESS"	05-Jun-08 05:05 PM	

+="CN88932"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	291306.54	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:05 PM	

+="CN88940"	"2007/08 NATIONAL AIRFIELDS PROJECTS - PACKAGE 2 -"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	217690.00	=""	="GHD PTY LTD"	05-Jun-08 05:06 PM	

+="CN88945"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	16-May-08	174300.01	=""	="CARRARD SOLUTIONS"	05-Jun-08 05:06 PM	

+="CN88965"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	02-Jun-08	183989.52	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN89013"	"SERVER CRASH CARTS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	187550.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:09 PM	

+="CN89040"	"HOLSWORTHY : SPECIAL OPERATIONS WORKING ACCOMMODAT REDEVELOPMENT STAGE 1."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	165663.37	=""	="ACC TECHNOLOGIES"	05-Jun-08 05:10 PM	

+="CN89073"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Aug-08	267551.78	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:12 PM	

+="CN89075"	"DEVELOP CDG SYNTHETIC ENVIRONMENT, IN ACCORDANCE WITH 2007/1143013/1"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	241568.80	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	05-Jun-08 05:12 PM	

+="CN89079"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Sep-08	184470.00	=""	="SIGMA BRAVO PTY LTD"	05-Jun-08 05:12 PM	

+="CN89086"	"NQ2210 - LAVARACK BARRACKS 1MP BN PROVISION OF TEM ACCOMMODATION."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	242000.00	=""	="SPOTLESS"	05-Jun-08 05:12 PM	

+="CN89142"	"Supply and Install two winterhalter dishwashers."	="Department of Defence"	05-Jun-08	="Industrial Cleaning Services"	07-May-08	30-Jun-08	196691.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:15 PM	

+="CN89148"	"S5272, WR 300077436. Manage OP testament World You temporary camp for pilgrims attending World Youth"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	09-May-08	30-Jun-08	204913.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:15 PM	

+="CN89191"	"CONTACT NEV IRISH 08 89354468"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	22-May-08	30-Jun-08	199000.00	=""	="WILDMAN LAND MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89221"	"POC: WILL GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	181028.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89230"	"MIMESWEEPER Maintenance & Support"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	01-May-09	164092.50	=""	="CLEARSWIFT PYT LTD"	05-Jun-08 05:19 PM	

+="CN89240"	"POC: J.McCluskey 02 6127 7313 Bid Number 8001196"	="Department of Defence"	05-Jun-08	="Hardware"	20-May-08	10-Jun-08	222530.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:19 PM	

+="CN89267"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	160000.01	=""	="CENTRE FOR MILITARY AND VETERANS"	05-Jun-08 05:20 PM	

+="CN89298"	"REFORM DFR SPECIALIST RECRUITMENT TEAMS COSTS. T.R"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	209000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:22 PM	

+="CN89315"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-Aug-08	256275.01	=""	="APERIUM PTY LTD"	05-Jun-08 05:22 PM	

+="CN89317"	"Professional Service Provider for BORIS Operations"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	05-May-08	31-Dec-08	184800.00	="ESD SAP 01/2005"	="GWA CONSULTING"	05-Jun-08 05:22 PM	

+="CN89318"	"Ergon Energy Account Invoice No 10035469 Customer"	="Department of Defence"	05-Jun-08	="Power generation"	15-May-08	30-Jun-08	174650.08	=""	="ERGON ENERGY CORPORATION LTD"	05-Jun-08 05:22 PM	

+="CN89323"	"POC: B.Doswell 02 6127 7379 Quotation: 00000311"	="Department of Defence"	05-Jun-08	="Hardware"	05-May-08	26-May-08	178879.97	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:23 PM	

+="CN89328"	"Equiptment required for use WGS spacecraft project"	="Department of Defence"	05-Jun-08	="Spacecraft"	09-May-08	30-Jun-08	185784.52	=""	="GLOWLINK COMMUNICATIONS TECHNOLOGY"	05-Jun-08 05:23 PM	

+="CN89360"	"CMS TRANSITION IN FEE"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	01-May-08	30-Jun-08	212300.00	=""	="ASSET SERVICES"	05-Jun-08 05:25 PM	

+="CN89385"	"11 DIERS for Southern Queensland Region"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	221942.49	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:26 PM	

+="CN89409"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	05-May-08	14-Jul-09	152900.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89441"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	255048.20	=""	="ONE PLANET SOLUTIONS PTY LTD"	05-Jun-08 05:29 PM	

+="CN89469"	"CONTRACT FILE 2008-1003071"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Jun-09	158193.75	=""	="PATRIOT ALLIANCE"	05-Jun-08 05:31 PM	

+="CN89471"	"POC: Owen Keanes 02 6127 7170 Quotation: F-AU-144924-B"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	157385.24	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89472"	"CONTRACT PROJECT MANAGEMENT SERVICES"	="Department of Defence"	05-Jun-08	="Management advisory services"	07-May-08	27-Apr-09	268400.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89473"	"CONTRACT C016-HQ04 Academic Phase of the Army Aviation Articifer's Course"	="Department of Defence"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	31-Dec-09	215800.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:31 PM	

+="CN89476"	"RANGES AND TAs - MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS - STORM DAMAGE REMEDIATION CANUNGRA"	="Department of Defence"	05-Jun-08	="Roads and landscape"	07-May-08	30-Jun-08	190575.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:32 PM	

+="CN89480"	"CONTRACTOR FEES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jul-08	218598.16	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:32 PM	

+="CN89488"	"UNIVERSITY FEES FOR NAVY SPONSORSHIP"	="Department of Defence"	05-Jun-08	="Education and Training Services"	07-May-08	07-May-08	171606.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:32 PM	

+="CN89494"	"CONTRACT PROJECT MANAGEMENT SERVICES"	="Department of Defence"	05-Jun-08	="Management advisory services"	07-May-08	30-Jun-09	238876.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89507"	"POC: P.Everson 02 6127 7361 Quotation F-AU-147873-A"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	274239.70	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89521"	"CONTRACTOR FEES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Aug-08	165408.46	=""	="SIGMA BRAVO PTY LTD"	05-Jun-08 05:35 PM	

+="CN89583"	"ASSESSMENT OF QUALIFICATIOINS"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	30-Jun-08	187000.00	=""	="VETASSESS"	05-Jun-08 05:38 PM	

+="CN89587"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	01-May-09	244596.00	=""	="TALENT INTERNATIONAL(ACT) PTY LTD"	05-Jun-08 05:39 PM	

+="CN89598"	"SINGLE LEAP TOLL TRANSITIONS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-09	165000.00	=""	="TOLL TRANSITIONS"	05-Jun-08 05:39 PM	

+="CN89601"	"SN02428 Design & Doc WR270137291"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	03-Jun-08	30-Jun-08	206707.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:40 PM	

+="CN89613"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	31-Mar-09	179630.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	05-Jun-08 05:40 PM	

+="CN89641"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	236564.68	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89645"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-Apr-08	30-Jun-08	203559.55	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89653"	"Albury Wodonga Military Area - Create Office Space for Special Operations Section JLU(V)"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	29-Feb-08	30-Jun-08	269500.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:43 PM	

+="CN89659"	"Project Controller to support JP2007 2B1 and 2B2"	="Department of Defence"	05-Jun-08	="Business administration services"	26-Nov-07	14-May-09	202907.64	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:43 PM	

+="CN89758"	"FAIRBAIRN - MAJURA LEASES - BLOCK 102/146 (AREA H)"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	186368.82	=""	="AFFINITY CONSTRUCTION MANAGEMENT"	05-Jun-08 05:49 PM	

+="CN89788"	"SINGLE LEAP PROVISION OF PROFFESSIONAL SERVICES TO ACHIEVE COM"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-09	248017.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:51 PM	

+="CN89791"	"This is a blanket purchase order to cover the logi services purchased through Unity Resources for th"	="Department of Defence"	05-Jun-08	="Hardware"	27-May-08	30-Jun-08	278544.42	=""	="UNITY RESOURCES GROUP PTY LTD"	05-Jun-08 05:51 PM	

+="CN89794"	"Server Infrastructure"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	16-Jun-08	204573.39	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:52 PM	

+="CN89806"	"RECORDING SYSTEM"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	26-May-08	25-Jun-08	246586.70	=""	="TAPE PRODUCTS RESEARCH HOLDINGS"	05-Jun-08 05:52 PM	

+="CN89838"	"POC: B.Doswell 02 6127 7379"	="Department of Defence"	05-Jun-08	="Roads and landscape"	26-May-08	09-Jun-08	286000.00	=""	="CITY OF GREATER BENDIGO"	05-Jun-08 05:54 PM	

+="CN89845"	"VOICE CONSUMPTION COSTS FOR FY 07-08"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	29-May-08	17-Jun-08	195091.71	=""	="VODAFONE PTY LTD"	05-Jun-08 05:55 PM	

+="CN89875"	"FREIGHT COSTS FOR THE DISTRIBUTION GST INCLUSIVE AND GST2 OF PUBLICATIONS FOR THE F/Y 2007/2008"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	29-May-08	31-Jul-08	233000.00	=""	="TOLL PRIORITY"	05-Jun-08 05:57 PM	

+="CN89881"	"Contractor Services."	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	08-May-09	283866.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:57 PM	

+="CN89893"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	271596.80	=""	="CORDELTA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89905"	"NQ1633 - Regional Cadet Works Extra Funding."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	01-Sep-08	275000.00	=""	="SPOTLESS"	05-Jun-08 05:59 PM	

+="CN89913"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	169336.26	=""	="INFRONT SYSTEMS"	05-Jun-08 05:59 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val16000to20000.xls
@@ -1,1 +1,207 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87427"	"Temporary Staff - Admin Assistant"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	12-May-08	15-Aug-08	18000.00	="07/360-00"	="Vedior Asia Pacific Pty Ltd"	03-Jun-08 09:07 AM	

+="CN87428"	" Temporary Staff - Administration Assistant "	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	20-Feb-08	30-Jun-08	20000.00	="07/362-00"	="Vedior Asia Pacific Pty Ltd"	03-Jun-08 09:21 AM	

+="CN87438"	"Initial verification testing of the industrial Lion Intoxilyser 8000"	="Civil Aviation Safety Authority"	03-Jun-08	="Research or testing facilities"	20-May-08	20-Jun-08	16000.00	="07/377-00"	="Pacific Data Systems Pty Ltd"	03-Jun-08 09:42 AM	

+="CN69424"	" Financial Planning Analysis "	="Australian Securities and Investments Commission"	03-Jun-08	="Strategic planning consultation services"	04-Dec-07	03-Apr-08	16318.50	=""	="Seacab Pty Ltd t/a Endeavour Strategic Financial"	03-Jun-08 10:33 AM	

+="CN87463"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-May-08	19-Jun-08	16500.00	=""	="JIM HENDRICKSON AND ASSOCIATES"	03-Jun-08 10:42 AM	

+="CN87465"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	13-Jun-08	16761.80	="PO5119"	="DELL COMPUTER PTY LIMITED"	03-Jun-08 10:42 AM	

+="CN87491"	"VEHICLE PARTS"	="Department of Defence"	03-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-May-08	23-Jul-08	16085.34	=""	="TENIX DEFENCE PTY LTD LAND DIV"	03-Jun-08 11:02 AM	

+="CN87526"	"Advertising Services"	="Child Support Agency"	03-Jun-08	="Advertising"	21-May-08	21-May-08	18701.00	=""	="EARDRUM PTY LTD"	03-Jun-08 02:33 PM	

+="CN87527"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	20-May-08	30-Jun-08	18166.50	=""	="MERCER (AUSTRALIA) PTY LTD"	03-Jun-08 02:33 PM	

+="CN87533"	"Security Services"	="Child Support Agency"	03-Jun-08	="Security surveillance and detection"	27-May-08	30-Jun-09	18077.80	=""	="CHUBB PROTECTIVE SERVICES (NSW)"	03-Jun-08 02:34 PM	

+="CN87536"	"Temporary Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	12-May-08	30-Jun-08	18000.00	=""	="PEOPLEBANK"	03-Jun-08 02:34 PM	

+="CN87539"	"Software Licence and Maintenance"	="Child Support Agency"	03-Jun-08	="Software"	05-May-08	30-May-08	19285.20	=""	="ZALLCOM PTY LTD"	03-Jun-08 02:35 PM	

+="CN87547"	"Security Services"	="Child Support Agency"	03-Jun-08	="Security and personal safety"	14-May-08	30-Jun-09	19250.00	=""	="CHUBB PROTECTIVE SERVICES (NSW)"	03-Jun-08 02:36 PM	

+="CN87548"	"NSN 1560-00-806-6062, Window Assemblies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	17727.07	=""	="Milspec Services Pty Ltd"	03-Jun-08 02:49 PM	

+="CN87550"	"sponsorship EA climate change certificationmodule - development, trial & release"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	31-May-08	16500.00	=""	="ECO TOURISM AUSTRALIA"	03-Jun-08 02:53 PM	

+="CN87557"	"Production of 6 x TVC's Water Quality & advertising"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	17056.00	=""	="SEVEN NETWORK (OPERATIONS) Ltd"	03-Jun-08 02:54 PM	

+="CN87563"	"Fibre Channel disc storage array"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Telecommunications media services"	01-May-08	30-Jun-08	19926.50	=""	="AGIRE Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87653"	"National ATSI Women's gathering 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	23-May-08	20000.00	=""	="Department of Premier and Cabinet"	04-Jun-08 11:41 AM	

+="CN87669"	"Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	24-Jun-08	18634.00	=""	="SYMAGY CREATIVE POWERHOUSE"	04-Jun-08 11:45 AM	

+="CN87706"	"Health & Safety Rep Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Personal safety and protection"	29-May-08	01-Jul-08	19800.00	=""	="GREG SEBERRY & ASSOCIATES"	04-Jun-08 11:52 AM	

+="CN87716"	"Removal Costs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	17832.65	=""	="Grace Removals Group"	04-Jun-08 11:55 AM	

+="CN87728"	"Consumer Training and Support Resource Inserts"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	01-Jul-08	18678.00	=""	="ELECT PRINTING"	04-Jun-08 11:58 AM	

+="CN87751"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	07-May-08	30-Jun-08	16120.50	=""	="Central Comms"	04-Jun-08 12:03 PM	

+="CN87777"	"Digital material 3 day training workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	14-May-08	14-May-08	17000.00	=""	="Forensic Digital Services"	04-Jun-08 12:08 PM	

+="CN87780"	"The provision of Information Technology Services to support the audit of Publicly Funded Computers"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	14-May-08	30-Jun-08	20000.00	=""	="Connected Solutions Group Pty Ltd"	04-Jun-08 12:09 PM	

+="CN87810"	"Indigenous Photography Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Photographic services"	13-May-08	31-Aug-08	17135.65	=""	="Kerry Trapnell"	04-Jun-08 12:15 PM	

+="CN87821-A1"	"Policy Officers Masterclass x 6 Staff Members 30/06/08-3/07/08"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Education and Training Services"	22-May-08	30-Jun-08	17730.90	="ATM08/1032"	="Liquid Learning Group Pty Ltd"	04-Jun-08 12:15 PM	

+="CN87823-A1"	"Probity advice for Open tender process"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	14-May-08	31-Aug-08	19750.00	=""	="Blake Dawson Waldron"	04-Jun-08 12:15 PM	

+="CN87852"	"Application Services for January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Computer services"	01-Jan-08	31-Jan-08	18970.05	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	04-Jun-08 03:25 PM	

+="CN87854"	"Legal services."	="Australian Human Rights Commission"	04-Jun-08	="Legal services"	04-Apr-08	14-May-08	19734.00	=""	="Reg Graycar, Barrister"	04-Jun-08 03:27 PM	

+="CN87865"	"Pool Vehicle Lease Charges for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Vehicle leasing"	01-Mar-08	31-Mar-08	17602.15	=""	="LEASEPLAN AUSTRALIA"	04-Jun-08 03:54 PM	

+="CN87919"	"Lease for MPS courier vehicle Running costs for MPS courier vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	15-Sep-06	14-Sep-08	17428.31	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87934"	"NUT, SELF-LOCKING, BARREL NSN 5310/005791761"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	13-Aug-08	18065.00	=""	="TURBOANALISIS INC"	05-Jun-08 10:47 AM	

+="CN87957"	"Use of Exisitng ASP Contract  - 12M Maintenance Governor Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Steering system"	16-May-08	30-Jun-08	17155.22	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87961"	"FACE GUARD PARARESCUE"	="Defence Materiel Organisation"	05-Jun-08	="Face and head protection"	17-May-08	20-Oct-08	19755.41	=""	="TRANSAERO INC."	05-Jun-08 01:03 PM	

+="CN87975"	"PMS7617 3000hr on both Main Engines HMAS Tarakan"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	19308.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87976"	"Review distribution process of the overheads of ASC and its subsidiaries"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	30-Jun-08	18331.50	=""	="KPMG AUSTRALIA"	05-Jun-08 01:05 PM	

+="CN87991"	"Helmet Liner, Absorbent"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	29-Aug-08	18224.10	=""	="DOW COVER COMPANY INCORPORATED DBA"	05-Jun-08 01:07 PM	

+="CN88006"	"Technical Support for JP02059Ph3"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20000.00	=""	="PALL AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88019"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	30-Jul-08	18037.90	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:10 PM	

+="CN88034"	"CABLE"	="Defence Materiel Organisation"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	30-Jun-08	19610.36	=""	="ANDERSON CORPORATION PTY LTD"	05-Jun-08 01:12 PM	

+="CN88036"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	14-May-08	30-Jun-08	16465.64	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:12 PM	

+="CN88038"	"Professional Fees and Disbursement Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	14-May-08	30-Jun-08	16402.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:12 PM	

+="CN88052"	"Washing Machine for HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	16362.02	=""	="MIELE AUSTRALIA PTY LTD"	05-Jun-08 01:14 PM	

+="CN88053"	"SOFTWARE PACKAGE FOR 1 YEAR EVALUATION"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	16-Jun-08	16500.00	=""	="EUROFIELD INFORMATION SOLUTIONS"	05-Jun-08 01:14 PM	

+="CN88059"	"PURCHASE OF LICENCES"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	14-May-08	16720.00	=""	="IBISWORLD PTY LTD"	05-Jun-08 01:15 PM	

+="CN88084"	"PRINTER"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	26-May-08	16464.59	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 01:18 PM	

+="CN88085"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	18205.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:18 PM	

+="CN88097"	"10 Yearly Inspection for Qty: 1, Elevated Work Platform"	="Defence Materiel Organisation"	05-Jun-08	="Hydraulic machinery and equipment"	15-May-08	30-Aug-08	17415.91	=""	="NTP FORKLIFTS AUST"	05-Jun-08 01:20 PM	

+="CN88132"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	18554.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:24 PM	

+="CN88136"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	22-May-08	30-Jun-08	19844.00	=""	="CLAYTON UTZ"	05-Jun-08 01:24 PM	

+="CN88143"	"Heat Sink"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	22-Sep-08	19533.82	=""	="BAE SYSTEMS INFORMATION AND"	05-Jun-08 01:25 PM	

+="CN88146"	"SURVEY OF ANZAC SHIPS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	10-Jun-08	17683.99	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	05-Jun-08 01:25 PM	

+="CN88154"	"Determine Suitable Alternatives for Lubricants / Solvents"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	31-Jul-08	17521.60	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88158"	"BOX, WOOD, TRANSPARENT ARMOUR"	="Defence Materiel Organisation"	05-Jun-08	="Wood and paper industries"	26-May-08	17-Sep-08	16533.57	=""	="THALES AUSTRALIA"	05-Jun-08 01:27 PM	

+="CN88192"	"Control & Bit"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Mar-09	19563.26	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:31 PM	

+="CN88193"	"Use of Exisitng ASP Contract  - Eng Assess Overr Torque Alarm"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	30-Jun-08	17686.52	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88196"	"Use of Exisitng ASP Contract  - Eng Assess Cleaning Station for Paint Store"	="Defence Materiel Organisation"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	20-May-08	30-Jun-08	16064.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88198"	"Use of Exisitng ASP Contract  - Eng Assess Instal Remote Grease Lines in RAS Rig"	="Defence Materiel Organisation"	05-Jun-08	="Lubricants and oils and greases and anti corrosives"	20-May-08	30-Jun-08	16094.93	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88200"	"Use of Exisitng ASP Contract  - Modify Vent GEA Purifier Upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	20-May-08	30-Jun-08	17296.13	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88202"	"Laser Sighting Scope"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	20-May-08	30-Aug-08	17809.14	=""	="LASER PRODUCTS"	05-Jun-08 01:32 PM	

+="CN88212"	"VoP For ISS contract C388561, Inv 70400"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	19255.23	=""	="BAE SYSTEMS AUSTRALIA - EUR"	05-Jun-08 01:33 PM	

+="CN88221"	"OPTICAL SURVEILLANCE SYSTEMS COURSE FROM 29 SEP - 3 OCT 2008"	="Defence Materiel Organisation"	05-Jun-08	="Vocational training"	20-May-08	03-Oct-08	18500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 01:34 PM	

+="CN88223"	"INMARSAT Training"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	31-May-08	16846.50	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:34 PM	

+="CN88231"	"ORDER RAISED FOR THE SUPPLY OF OEP 89 (REGAL MARIN"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	21-May-08	30-May-08	18604.79	=""	="INCHCAPE SHIPPING SERVICES (ABU DHA"	05-Jun-08 01:35 PM	

+="CN88238"	"PROVIDE SERVICES FOR HAMS PARRAMATTA DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	10-Jun-08	19043.42	=""	="PATRICK DEFENCE LOGISTICS"	05-Jun-08 01:36 PM	

+="CN88242"	"Dehumidifier"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	22-May-08	30-Jul-08	19482.10	=""	="ENVIRO-TRONICS"	05-Jun-08 01:37 PM	

+="CN88256"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	16000.01	=""	="ADELAIDE CONVENTION CENTRE"	05-Jun-08 01:38 PM	

+="CN88260"	"Boot Fitter for Kapooka and RMC"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	21-May-08	30-Sep-08	19800.00	=""	="REDBACK BOOT COMPANY PTY LTD"	05-Jun-08 01:39 PM	

+="CN88286"	"LPA AVO SURV EQUIP STORAGE COMP DDP"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	30-Apr-08	13-Jun-08	16510.79	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 01:42 PM	

+="CN88298"	"Terms and Conditions as per attachments."	="Defence Materiel Organisation"	05-Jun-08	="Fabrics and leather materials"	08-Apr-08	30-May-08	16087.50	=""	="ARCADE BADGE EMBROIDERY CO"	05-Jun-08 01:43 PM	

+="CN88307"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	30-May-08	17473.50	=""	="ADVITECH PTY LTD"	05-Jun-08 01:44 PM	

+="CN88322"	"Production of NAVCMC DVD - February 2008"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	06-May-08	31-May-08	17380.00	=""	="MWA SYSTEMS PTY LTD"	05-Jun-08 01:46 PM	

+="CN88328"	"JP02087 HAZARD TESTING MATERIAL"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	16-Jun-08	16018.64	=""	="COUNTER TERRORISM SOLUTIONS ASIA"	05-Jun-08 01:46 PM	

+="CN88331"	"AIRCONDITIONING TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	01-May-08	30-Jul-08	16720.00	=""	="SOUTHERN QLD INSTITUTE OF TAFE"	05-Jun-08 01:47 PM	

+="CN88337"	"Use of Exisitng ASP Contract  - CO2 System Annual Service"	="Defence Materiel Organisation"	05-Jun-08	="Fire protection"	05-May-08	30-Jun-08	16100.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88352"	"Support Contract"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	29-May-08	30-Jun-09	18201.26	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	05-Jun-08 01:49 PM	

+="CN88356"	"Servicingof WTR Cranes"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	26-Apr-07	30-Jun-08	16040.84	=""	="BINKSIE SERVICES CO PTY LTD"	05-Jun-08 01:50 PM	

+="CN88357"	"Procure Suplus and Redundant Radar Assets from closure of Thales St Mary's facility"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	02-Jun-08	07-Jun-08	19235.50	=""	="THALES AUSTRALIA"	05-Jun-08 01:50 PM	

+="CN88362"	"OVERHAUL OF MAIN WHEELS AND BRAKES FOR B707 AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	02-Jun-08	30-Jun-08	16769.50	=""	="QANTAS DEFENCE SERVICES PTY LTD"	05-Jun-08 01:50 PM	

+="CN88417"	"Repair of F/A-18 CMT Module for FCC"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	17-Oct-07	30-Jun-08	18251.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:57 PM	

+="CN88418"	"Accommodation ladders for HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	10-Feb-08	18754.74	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:57 PM	

+="CN88429"	"COMBINED MARITIME FORCES HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	30-May-08	17345.35	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:59 PM	

+="CN88433"	"WiniFRED Support"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	12-May-08	31-May-08	19536.00	=""	="FRED HEALTH PTY LTD"	05-Jun-08 01:59 PM	

+="CN88436"	"Use of Exisitng ASP Contract  - RAS Air Compre Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	12-May-08	30-Jun-08	17003.09	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:59 PM	

+="CN88454"	"Storage containers for POD Shop"	="Defence Materiel Organisation"	05-Jun-08	="Containers and storage"	09-May-08	15-May-08	17655.00	=""	="SIMPLY CONTAINERS"	05-Jun-08 02:02 PM	

+="CN88463"	"SPECIALIST ADVICE AND EXPORT FACILITATION SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	17501.00	=""	="BRIAN ADAMS CONSULTING PTY LTD"	05-Jun-08 02:03 PM	

+="CN88505"	"FA18 Captive Carriage Trials - Design Report"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	13-May-08	15-Jun-08	19219.86	=""	="JACOBS AUSTRALIA"	05-Jun-08 02:08 PM	

+="CN88554"	"CADAS Printers"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	09-May-08	31-May-08	17253.34	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 02:14 PM	

+="CN88580"	"SLAP BLOCK ROPE"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing Components and Supplies"	08-May-08	05-Jun-08	18299.56	=""	="MACK TRUCKS AUSTRALIA"	05-Jun-08 02:17 PM	

+="CN88608"	"DPCU TROUSERS"	="Defence Materiel Organisation"	05-Jun-08	="Slacks and trousers and shorts"	05-Jun-08	13-Jun-08	16188.66	=""	="CTE"	05-Jun-08 03:00 PM	

+="CN88610"	"Moderation project"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	26-Jun-08	18208.00	="PRN18355"	="LABYRINTH CONSULTANCY (TAS) PTY LTD"	05-Jun-08 03:03 PM	

+="CN88615"	"Endeavour Awards promotional booklet"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	30-May-08	30-Jun-08	16304.94	="PRN19904"	="EQUATION CORPORATE DESIGN"	05-Jun-08 03:05 PM	

+="CN88663"	"SEAT, AIRCRAFT NSN 1680/006712101"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	14-Oct-08	19880.50	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:55 PM	

+="CN88693"	"OP OUTREACH - Transportation DWN-Minyerri-Yarralin"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	12-May-08	12-May-08	17589.00	=""	="PDL TOLL"	05-Jun-08 04:47 PM	

+="CN88701"	"Carmel Verde, $41.20p/hr, 25 hrs p/w. Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	18128.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:48 PM	

+="CN88736"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	14-May-08	30-Jun-09	19250.00	=""	="MINTER ELLISON"	05-Jun-08 04:53 PM	

+="CN88737"	"OFFICE FURNTIURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	31-May-08	18326.00	=""	="SITZ"	05-Jun-08 04:53 PM	

+="CN88748"	"BREAK FIX REPLACEMENT OF AN UNSUPPORTED PABX FOR THE NATIONAL TMS CONTRACT."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	13-May-08	30-May-08	17005.99	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 04:55 PM	

+="CN88758"	"FURNITUR FOR AIR MOVEMENTS, BLDG167"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	13-Jun-08	17050.01	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 04:57 PM	

+="CN88773"	"University fees for JOPES studnets"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	29-May-08	17988.80	=""	="UNI OF NEW ENGLAND"	05-Jun-08 04:58 PM	

+="CN88794"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-May-08	20-Jun-08	19748.30	=""	="MEASUREMENT INNOVATION PTY LTD"	05-Jun-08 04:59 PM	

+="CN88805"	"Laptops Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	02-Jun-08	16201.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:59 PM	

+="CN88808"	"PSP required to conduct Infrastructure Appraisal period 14MAY-27JUN08"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	21-May-08	30-Jun-08	17734.75	=""	="HAYS PERSONNEL SERVICES"	05-Jun-08 05:00 PM	

+="CN88810"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19749.99	=""	="DEACONS"	05-Jun-08 05:00 PM	

+="CN88814"	"UTILITIES FY07/08"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	16400.96	=""	="SP SERVICES LIMITED"	05-Jun-08 05:00 PM	

+="CN88826"	"S5153, WR 300062614. Project Mgt during the upgrad JOSS Operations room and adjacent areas to provid"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:00 PM	

+="CN88856"	"Cables and media converters"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	18716.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88865"	"Labour Hire for Alison Roberts and Nina Barlow in support for the introduction and ongoing sustainme"	="Department of Defence"	05-Jun-08	="Bombs and grenades"	20-May-08	30-Jun-08	19200.81	=""	="VEDIOR AISA PACIFIC PTY LTD"	05-Jun-08 05:02 PM	

+="CN88872"	"RFAD-300 Pyramidal Absorbers With Velcro Backing"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	19-May-08	30-Jun-08	19206.00	=""	="R F I INDUSTRIES PTY LTD"	05-Jun-08 05:03 PM	

+="CN88889"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	17000.01	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88892"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	18073.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:04 PM	

+="CN88903"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	31-May-08	19706.72	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:04 PM	

+="CN88910"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	16940.00	=""	="INNOVATION TECHNOLOGY SERVICES"	05-Jun-08 05:04 PM	

+="CN88916"	"Storage works array/HDDs"	="Department of Defence"	05-Jun-08	="Hardware"	21-May-08	30-Jun-08	16219.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:05 PM	

+="CN88952"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	30-Jun-08	18069.48	=""	="OZ DESIGN FURNITURE"	05-Jun-08 05:06 PM	

+="CN88974"	"TABLES & STOOLS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	19-May-08	30-Jun-08	17902.50	=""	="INTERWORX PTY LTD"	05-Jun-08 05:07 PM	

+="CN88977"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19580.00	=""	="CLAYTON UTZ"	05-Jun-08 05:07 PM	

+="CN88992"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	18227.51	=""	="CISTECH SOLUTIONS"	05-Jun-08 05:08 PM	

+="CN88994"	"DS-NQ-TS GAP YEAR"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	17160.00	=""	="EMPIRE BUSINESS FURNITURE"	05-Jun-08 05:08 PM	

+="CN89011"	"POC: LTCOL Sloan"	="Department of Defence"	05-Jun-08	="Software"	08-May-08	30-Jun-08	16280.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:09 PM	

+="CN89017"	"TRAINING"	="Department of Defence"	05-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	08-May-08	15-May-08	18120.00	=""	="PRIORITY MANAGEMENT NSW"	05-Jun-08 05:09 PM	

+="CN89019"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	17066.50	=""	="DIRECT ERGONOMICS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89027"	"VIDEO CONFERENCING UNIT FOR SINGLETON"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	22-May-08	26-Jun-08	16301.80	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:10 PM	

+="CN89033"	"REC & GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Gymnastics and boxing equipment"	22-May-08	30-Jun-08	17776.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89044"	"TENNIS COURT RESURFACE"	="Department of Defence"	05-Jun-08	="Recreation and playground and swimming and spa equipment and supplies"	07-May-08	30-Jun-08	18821.00	=""	="RECREATIONAL SURFACING PTY LTD"	05-Jun-08 05:10 PM	

+="CN89050"	"UPGRADE STORAGE FACLITIES"	="Department of Defence"	05-Jun-08	="Containers and storage"	07-May-08	30-Jun-08	18736.30	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:11 PM	

+="CN89057"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	22-May-08	22-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 05:11 PM	

+="CN89068"	"SERVERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	19932.00	=""	="POWERCORP PTY LTD"	05-Jun-08 05:11 PM	

+="CN89088"	"FEES-ZETLAND-PROFIT SHARE REVIEW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	17600.00	=""	="HILL PDA"	05-Jun-08 05:12 PM	

+="CN89104"	"Certification process of Laser cladding of AA70000 alloys for FY07/08"	="Department of Defence"	05-Jun-08	="Alloys"	20-May-08	30-Jun-08	18942.00	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 05:13 PM	

+="CN89105"	"SPORTING EQUIPMENT FOR 1RTU GYM"	="Department of Defence"	05-Jun-08	="Fitness equipment"	21-May-08	04-Jun-08	16737.83	=""	="SPORTSMANS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89107"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	20-May-08	31-Jul-09	16500.00	=""	="JOHN TREACY PRACTICE"	05-Jun-08 05:13 PM	

+="CN89125"	"HP SERVER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-May-08	17421.80	=""	="ALFA COMPUTERS PTY LTD"	05-Jun-08 05:14 PM	

+="CN89140"	"SUPPLY AND INSTALL ELECTRICAL & COMMUNICATION EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	22-May-08	30-Jun-08	17008.05	=""	="HEYDAY GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89159"	"ASSOCIATION SUBSCRIPTION"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	16152.40	=""	="LLOYDS REGISTER EMEA"	05-Jun-08 05:15 PM	

+="CN89163"	"New Power and DRN Data Infrastructure works at Bui Gallipoli Barracks, Enoggera."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	26-Jun-08	17645.10	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:16 PM	

+="CN89164"	"36 x SOLAR AIRFIELD LIGHTS"	="Department of Defence"	05-Jun-08	="Lighting and fixtures and accessories"	22-May-08	30-Jun-08	18485.50	=""	="SEALITE PTY LTD"	05-Jun-08 05:16 PM	

+="CN89213"	"S5272, WR 300080484. World Youth Day 2008is an eve Defence, this proposal is to provide tented accom"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	20000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:18 PM	

+="CN89228"	"BANDIANA : JLU(v) WAREHOUSING FACILITIES. ADVERTISING FOR JLU(V) PROJECT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-09	16500.00	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:18 PM	

+="CN89237"	"SHREDDERS"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	19789.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 05:19 PM	

+="CN89251"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	27-May-08	19037.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:20 PM	

+="CN89252"	"S5272, WR 300082687. Randwick - OP Testament - DMM Fee"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:20 PM	

+="CN89257"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	19113.49	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:20 PM	

+="CN89259"	"NAVY PROMOTIONAL BASEBALL CAPS"	="Department of Defence"	05-Jun-08	="Advertising"	09-May-08	13-Jun-08	19745.00	=""	="PAULA M PROMOTIONS"	05-Jun-08 05:20 PM	

+="CN89265"	"XLG3 Video Probe and white side view"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	09-May-08	06-Jun-08	16797.00	=""	="GE INSPECTION TECHNOLOGIES"	05-Jun-08 05:20 PM	

+="CN89269"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	17530.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:20 PM	

+="CN89290"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	19338.00	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:21 PM	

+="CN89292"	"Exposure Racks"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	20-Jun-08	17875.00	=""	="TOOLTIME ENGINEERING"	05-Jun-08 05:21 PM	

+="CN89294"	"REPAIR 110 LANDROVER ENGINE"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-May-08	23-May-08	18360.51	=""	="WILLIS & SON AUTOMOTIVE REPAIRS"	05-Jun-08 05:21 PM	

+="CN89306"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	15-May-08	19712.00	=""	="LOOKING UP FEELING GOOD"	05-Jun-08 05:22 PM	

+="CN89338"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	19637.20	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:23 PM	

+="CN89340"	"CONSTUCTION AND SECURETY"	="Department of Defence"	05-Jun-08	="General building construction"	09-May-08	10-Jul-08	18418.40	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:23 PM	

+="CN89351"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-May-08	29-May-08	19712.39	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:24 PM	

+="CN89354"	"Software and hardware for OSA"	="Department of Defence"	05-Jun-08	="Hardware"	02-May-08	31-Dec-08	18194.77	=""	="SAI GLOBAL LTD"	05-Jun-08 05:24 PM	

+="CN89376"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	17226.50	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:25 PM	

+="CN89398"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16813.50	=""	="SLEEP FIRM  AUSTRALIA"	05-Jun-08 05:26 PM	

+="CN89402"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	19985.93	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:27 PM	

+="CN89411"	"Electronic Key Safe"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	05-May-08	30-Jun-08	18441.01	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:27 PM	

+="CN89430"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16665.00	=""	="SANTA FURNITURE DESIGN PTY LTD"	05-Jun-08 05:29 PM	

+="CN89467"	"AUDIO VISUAL EQUIPMENT RENTAL"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	16-May-08	06-Jun-08	16256.68	=""	="AUDIO VISUAL EVENTS PTY LTD"	05-Jun-08 05:31 PM	

+="CN89478"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	18942.13	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:32 PM	

+="CN89481"	"supply of fresh bread brisbane"	="Department of Defence"	05-Jun-08	="Bread and biscuits and cookies"	16-May-08	30-Jul-08	16500.00	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89487"	"TIED WORK"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	16611.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:32 PM	

+="CN89517"	"Computer Equiptment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	18814.17	=""	="LOGITECH PTY LTD"	05-Jun-08 05:34 PM	

+="CN89567"	"SCAFFOLDING TO SUIT C17"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	15-May-08	05-Jun-08	17781.50	=""	="INSTANT ACCESS"	05-Jun-08 05:38 PM	

+="CN89571"	"supply of fresh meat  rockhampton"	="Department of Defence"	05-Jun-08	="Meat and poultry"	15-May-08	30-Jul-08	16500.00	=""	="PETER BOODLES QUALITY MEATS"	05-Jun-08 05:38 PM	

+="CN89574"	"Provision initial system configuration for the GIS environment - SME"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	30-Jun-08	16226.10	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:38 PM	

+="CN89577"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	06-May-08	30-May-08	16500.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89579"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	18883.59	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:38 PM	

+="CN89633"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	22-Apr-08	30-Jun-08	16277.80	=""	="TNT EXPRESS"	05-Jun-08 05:42 PM	

+="CN89639"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-08	17196.56	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:42 PM	

+="CN89642"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89650"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89651"	"GBW REACTIVE MAINTENANCE ROUTINE WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	18-Apr-08	30-Jun-08	16240.96	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:43 PM	

+="CN89656"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89660"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17050.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:43 PM	

+="CN89663"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	15-May-08	23-May-08	17660.65	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89674"	"Audiovisual equipment"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-May-08	30-Jun-08	19899.00	=""	="NORTH QUEENSLAND AUDIO VISUAL"	05-Jun-08 05:44 PM	

+="CN89679"	"Advanced Surveillance Training Course"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	29-Apr-08	29-Apr-08	16100.00	=""	="INTEGRACOM"	05-Jun-08 05:44 PM	

+="CN89682"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-May-08	20000.00	=""	="DKC INTERNATIONAL PTY LTD"	05-Jun-08 05:45 PM	

+="CN89686"	"CLEANING OF EFR TINS"	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	23-May-08	10-Jun-08	19578.90	=""	="CORMAC CONTRACTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89729"	"INFLIGHT MEAL PURCHASE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	24-May-08	25-May-08	16753.63	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89738"	"REMOTE ACCESS TOKENS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	16496.70	=""	="VASCO DATA SECURITY AUSTRALIA PTY"	05-Jun-08 05:48 PM	

+="CN89741"	"multi level sampler and winder units for FEMS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Mar-08	29-Apr-08	16015.45	=""	="JOHN MORRIS SCIENTIFIC PTY LTD"	05-Jun-08 05:48 PM	

+="CN89749"	"Custom packaging and removal services - domestic"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	16500.00	=""	="PACK AND SEND CANBERRA"	05-Jun-08 05:49 PM	

+="CN89770"	"REGISTRATION REQUIRED TO DELIVER TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	20000.00	=""	="RECEIVER OF OFFICIAL MONIES"	05-Jun-08 05:50 PM	

+="CN89774"	"Calibration of Computer Equipment."	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-May-08	16500.00	=""	="IMMUNO PTY LTD"	05-Jun-08 05:50 PM	

+="CN89808"	"Noise assess @ HMAS Anzac which is on active duty in singapore area"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	26-May-08	30-Jun-08	16203.00	=""	="CAREY MURPHY & ASSOCIATES"	05-Jun-08 05:52 PM	

+="CN89839"	"Value based Purchase Order"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	02-Jun-08	30-Jun-08	20000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	05-Jun-08 05:54 PM	

+="CN89852"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	17075.00	=""	="CLAYTON UTZ"	05-Jun-08 05:55 PM	

+="CN89855"	"LPG Supply"	="Department of Defence"	05-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	29-May-08	30-Jun-08	16500.00	=""	="ELGAS LTD"	05-Jun-08 05:55 PM	

+="CN89861"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	10-Jan-08	10-Jan-08	17893.25	=""	="AUSTRALIAN AND NEW ZEALAND SCHOOL"	05-Jun-08 05:56 PM	

+="CN89863"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	29-May-08	30-Jun-08	18051.24	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:56 PM	

+="CN89865"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	26-Jun-08	19800.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:56 PM	

+="CN89891"	"IT SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89903"	"1 SR - Fibre optic repair tools kit"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-Jun-08	17323.90	=""	="AUSOPTIC PTY LTD"	05-Jun-08 05:58 PM	

+="CN89922"	"CERTIFICATE IV TAA04 - 12 PERSONS"	="Department of Defence"	05-Jun-08	="Educational facilities"	26-May-08	26-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 06:00 PM	

+="CN89928"	"All terrain vehicle for Defence Estab-Berrimah"	="Department of Defence"	05-Jun-08	="Motor vehicles"	26-May-08	30-Jun-08	18384.00	=""	="R & M MOTORCYCLES"	05-Jun-08 06:00 PM	

+="CN89930"	"FFS 30/06/08"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	26-May-08	30-Jun-08	18500.00	=""	="VINTAGE SURGICAL SPECIALISTS"	05-Jun-08 06:00 PM	

+="CN89933"	"AIR CONDITIONERS"	="Department of Defence"	05-Jun-08	="Heating and ventilation and air circulation"	12-May-08	30-Jun-08	18150.00	=""	="RITTAL PTY LTD"	05-Jun-08 06:00 PM	

+="CN89950"	"DEMAND NO. RSTM-7EH5UH ANITECH QUOTE NO. QB31 - SARAH O'REILLY"	="Department of Defence"	05-Jun-08	="Office supplies"	13-May-08	20-May-08	16618.23	=""	="ANITECH"	05-Jun-08 06:01 PM	

+="CN89956"	"Usability testing of Website"	="Department of Defence"	05-Jun-08	="Computer services"	13-May-08	30-May-08	18755.00	=""	="THE HISER GROUP"	05-Jun-08 06:02 PM	

+="CN89964"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	21-May-08	30-Jun-08	16571.74	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 06:02 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val20000to30000.xls
@@ -1,1 +1,390 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87428"	" Temporary Staff - Administration Assistant "	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	20-Feb-08	30-Jun-08	20000.00	="07/362-00"	="Vedior Asia Pacific Pty Ltd"	03-Jun-08 09:21 AM	

+="CN87432"	"Video conferencing units"	="Civil Aviation Safety Authority"	03-Jun-08	="Videoconferencing systems"	13-May-08	12-Jun-08	24000.00	="07/368-00"	="Dimension Data"	03-Jun-08 09:29 AM	

+="CN87435"	"Threat & Error Management Training courses for CASA ITSAP"	="Civil Aviation Safety Authority"	03-Jun-08	="Business and corporate management consultation services"	15-May-08	16-Jun-08	22000.00	="07/372-00"	="AsiaPacific Aviation Consultants"	03-Jun-08 09:38 AM	

+="CN87448"	"Barrister fees"	="Civil Aviation Safety Authority"	03-Jun-08	="Financial accounting"	26-May-08	30-Jun-08	27000.00	="07/391-00"	="Andrew Luchich"	03-Jun-08 10:19 AM	

+="CN87462"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	27-Jun-08	22982.40	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	03-Jun-08 10:42 AM	

+="CN87472"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	27-Jun-08	25000.00	="FIN 05 CRP 004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	03-Jun-08 10:43 AM	

+="CN87475"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	05-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87476"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-Jun-08	07-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87484"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	26500.00	="N/A"	="CAPSE PTY LTD"	03-Jun-08 10:45 AM	

+="CN87503"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	03-Jun-08	="Legal services"	16-May-08	30-Jun-09	25000.00	=""	="Niall, Richard"	03-Jun-08 11:26 AM	

+="CN87477"	" CHAIR DENTAL "	="Defence Materiel Organisation"	03-Jun-08	="Medical Equipment and Accessories and Supplies"	01-May-08	06-Jun-08	28169.72	="778409"	="ADEC AUSTRALIA"	03-Jun-08 11:43 AM	

+="CN87504"	"Business Intelligence"	="Department of Human Services"	03-Jun-08	="Software"	23-May-08	30-Jun-09	23379.40	=""	="SAS Institute Australia Pty Ltd"	03-Jun-08 11:50 AM	

+="CN87512"	"Computer equipment and accessories"	="Australian Competition and Consumer Commission"	03-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	25025.00	=""	="Dell Australia"	03-Jun-08 12:00 PM	

+="CN87535"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	16-May-08	30-Jun-08	22000.00	=""	="AUSTRALIAN SPORTS COMMISSION"	03-Jun-08 02:34 PM	

+="CN87538"	"Software Licence, Maintenance & Support"	="Child Support Agency"	03-Jun-08	="Software"	05-May-08	30-Jun-09	25000.00	=""	="MICRO DYNAMICS TRAINING"	03-Jun-08 02:35 PM	

+="CN87543"	"Accommodation Services"	="Child Support Agency"	03-Jun-08	="Educational facilities"	15-May-08	29-May-08	24178.00	=""	="BELCONNEN PREMIER INN"	03-Jun-08 02:35 PM	

+="CN87551"	"develop compliance policy,statement and plan"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Jun-08	26400.00	=""	="KPS & ASSOCIATES Pty Ltd"	03-Jun-08 02:53 PM	

+="CN87552"	"Tank stand, ladder, cage & rails"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	29042.68	=""	="MCCRACKENS WATER SERVICES"	03-Jun-08 02:53 PM	

+="CN87554"	"ABGR energy assessment March 2008"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	01-May-08	27683.91	=""	="INTERGRATED ENERGY SERVICES"	03-Jun-08 02:54 PM	

+="CN87558"	"Transportation of c'wealth island team"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Transportation and Storage and Mail Services"	28-Apr-08	07-May-08	21999.00	=""	="WHITSUNDAY HELICOPTER GROUP"	03-Jun-08 02:54 PM	

+="CN87559"	"Concourse refurbishment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	28-Apr-08	31-May-08	24305.00	=""	="MIGNON PHILPOT"	03-Jun-08 02:54 PM	

+="CN87560"	"Strandnet database redevelopment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	06-Jun-08	25311.00	=""	="ENVIRONMENTAL PROTECTION AGENCY"	03-Jun-08 02:54 PM	

+="CN87561"	"Interior design brief"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-May-08	21648.00	=""	="INTERIORS AUSTRALIA Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87568"	"The Great Barrier Reef Marine Park Authority Climate Positive Strategy Options Report"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	14-May-08	27-Jun-08	29920.00	=""	="HEGGIES Pty Ltd"	03-Jun-08 02:55 PM	

+="CN87569"	"HP Design Jet 4500PS printer"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	27104.00	=""	="PSM COMPUCAD"	03-Jun-08 02:55 PM	

+="CN87571"	"Raine Island Climate Change Risk Assessment"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	20-May-08	29-Aug-08	21400.00	=""	="PROFESSOR DAVID HOPLEY"	03-Jun-08 02:56 PM	

+="CN87580"	"Education program - Guest Presenter- Anti-doping program"	="Australian Sports Anti-Doping Authority (ASADA)"	03-Jun-08	="Educational incentives"	21-Apr-08	04-Jun-08	30000.00	=""	="Point 1 Pty Ltd"	03-Jun-08 03:20 PM	

+="CN87585"	" 9150 66-020-2811  Aircraft Piston Lubricating Oil   OMD-370 Aeroshell W120   30x205L Drums    "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	23-Apr-08	30-Apr-08	21955.50	=""	="SHELL"	03-Jun-08 05:01 PM	

+="CN87586-A1"	" 9150 66-086-8598  Gear Lubricating Oil OEP-220  38x205L BP Hypogear 80W-90    "	="Defence Materiel Organisation"	03-Jun-08	="Lubricants and oils and greases and anti corrosives"	30-Apr-08	07-May-08	28980.32	=""	="BP Australia Ltd"	03-Jun-08 05:11 PM	

+="CN87644"	"HOSE UNIT PRESSURE C/W 9 IN. WRAP AROUND HANDLES"	="Defence Materiel Organisation"	04-Jun-08	="Hoses"	23-May-08	30-Jun-08	24552.00	=""	="C & L  SERVICES"	04-Jun-08 10:36 AM	

+="CN87653"	"National ATSI Women's gathering 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	23-May-08	20000.00	=""	="Department of Premier and Cabinet"	04-Jun-08 11:41 AM	

+="CN87654"	"Evaluation of FRSHE Initiative"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Human resources services"	20-May-08	30-May-08	20776.91	=""	="Urbis JHD"	04-Jun-08 11:41 AM	

+="CN87658"	"Executive Search for a Single SES B1 Position"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	21-May-08	30-Sep-08	22000.00	=""	="PAPER SHUFFLE PTY LTD"	04-Jun-08 11:42 AM	

+="CN87662"	"Facilitating Community Development Employment projects reform consultation program."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	21-May-08	30-May-08	24024.00	=""	="Ashley Limbury"	04-Jun-08 11:43 AM	

+="CN87668"	"Research"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	25000.00	=""	="Ministry of Women's Affairs"	04-Jun-08 11:45 AM	

+="CN87673"	"Security Cabinets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	20-May-08	30-May-08	24468.99	=""	="CMI SAFE CO"	04-Jun-08 11:46 AM	

+="CN87677"	"ICGW Far North Queensland"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	12-Jun-08	21500.00	=""	="MERCURE HARBOURSIDE HOTEL CAIRNS"	04-Jun-08 11:47 AM	

+="CN87692"	"Cope Frieght Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	27500.00	=""	="Cope Sensitive Freight"	04-Jun-08 11:49 AM	

+="CN87710"	"Provision of IT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	30-May-08	30-Jun-08	29568.00	=""	="Management Information Principles"	04-Jun-08 11:53 AM	

+="CN87712"	"National Rural Women's Summit"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Entertainment services"	30-May-08	28-Jun-08	25814.62	=""	="Event Planners Australia"	04-Jun-08 11:53 AM	

+="CN87714"	"Financial Assistance and Reconciliation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	27-Jun-08	28875.00	=""	="OAKTON AA SERVICES PTY LTD"	04-Jun-08 11:54 AM	

+="CN87722"	"Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	06-Jun-08	24000.00	=""	="INCOTRADE AUSTRALIA PTY LTD"	04-Jun-08 11:56 AM	

+="CN87729"	"CD Replication"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Jun-08	20900.00	=""	="DOGMA"	04-Jun-08 11:58 AM	

+="CN87739"	"Homeworld Fitout - Trade Costs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Construction and maintenance support equipment"	05-May-08	05-May-08	26280.10	=""	="ISIS Projects Pty Ltd"	04-Jun-08 12:00 PM	

+="CN87740"	"Reconciliation Action Plan Development"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	05-May-08	20-May-08	22000.00	=""	="HannahFyre Enterprises"	04-Jun-08 12:00 PM	

+="CN87744"	"Air charter return from 4 remote communities to Broom for ICGW ECKS 2"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Travel facilitation"	06-May-08	16-May-08	22000.00	=""	="Broome Air Service"	04-Jun-08 12:01 PM	

+="CN87755"	"FACSIA ICC Offices Stores Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	02-May-08	31-May-08	23534.29	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87760"	"FACSIA National Office Stores Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	26-May-08	31-May-08	22137.02	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87768"	"June 08 Rental L11, 565 Bourke St Melbourne."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	01-Jun-08	01-Jun-08	26436.59	=""	="Jones Lang La Salle (VIC)"	04-Jun-08 12:06 PM	

+="CN87771"	"Progress Pymnt Claim No.4 Inv.IN2008090008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	12-Mar-08	29-May-08	25935.14	=""	="Schiavello Fitout (QLD) Pty Ltd"	04-Jun-08 12:07 PM	

+="CN87774"	"FaHCSIA Budget Information Lock Up Kits"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	21525.90	=""	="Canprint Communications Pty Ltd"	04-Jun-08 12:08 PM	

+="CN87780"	"The provision of Information Technology Services to support the audit of Publicly Funded Computers"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	14-May-08	30-Jun-08	20000.00	=""	="Connected Solutions Group Pty Ltd"	04-Jun-08 12:09 PM	

+="CN87787"	"Security Cabinets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	16-May-08	30-May-08	28175.40	=""	="PLANEX SALES PTY LTD"	04-Jun-08 12:11 PM	

+="CN87797"	"Product: CO79091-Early General News - Advertising for 250 New Disability Supported Employment places"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Printed media"	08-May-08	08-May-08	28865.45	=""	="HMA Blaze Pty Limited"	04-Jun-08 12:13 PM	

+="CN87798"	"Print and Production NTER Flour Drum Stove Cook Book"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Printing and publishing equipment"	08-May-08	08-May-08	27000.00	=""	="Colemans Printing"	04-Jun-08 12:13 PM	

+="CN87802"	"Financial Management training x 3 days"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Financial and Insurance Services"	13-May-08	13-May-08	20560.78	=""	="WALTERTURNBULL"	04-Jun-08 12:14 PM	

+="CN87818"	"FRSP Online Hyperion Reports"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Information services"	13-May-08	30-Jun-08	27500.00	=""	="ALTIS CONSULTING"	04-Jun-08 12:15 PM	

+="CN87828"	"Purchase of Statistical Data"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Published Products"	21-May-08	30-May-08	22144.89	="ATM08/01025"	="eMarketer"	04-Jun-08 12:16 PM	

+="CN87829"	"Advertising positions vacant - 2009 graduate Program 'GCUADV 2002/03""	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Mar-08	30-May-08	27464.14	="ATM08/1045"	="HMA BLAZE PTY LTD"	04-Jun-08 12:16 PM	

+="CN87840"	"MOU Charges for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Accounting services"	01-Feb-08	29-Feb-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	04-Jun-08 02:26 PM	

+="CN87844"	"Asset Audit Services"	="Department of Human Services"	04-Jun-08	="Audit services"	02-Jun-08	30-Jun-08	21180.00	=""	="Hardcat Pty Ltd"	04-Jun-08 02:45 PM	

+="CN87850"	"Conference Workshop"	="Australian Centre for International Agricultural Research"	04-Jun-08	="Workshops"	10-May-08	30-Jun-08	27500.00	=""	="Charles Sturt University"	04-Jun-08 03:12 PM	

+="CN87848"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Legal services"	26-Nov-07	19-Dec-07	23354.03	=""	="DEACONS"	04-Jun-08 03:15 PM	

+="CN87884"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	25264.91	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 07:37 AM	

+="CN87885"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	25264.91	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 07:50 AM	

+="CN87886"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	24-Sep-08	20333.15	=""	="Land Rover AUSTRALIA"	05-Jun-08 07:52 AM	

+="CN87909"	"Lease Motor Vehilce - YEU74E Running Costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	05-Feb-07	04-Feb-09	29333.92	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:15 AM	

+="CN87911"	"RIS for AACA scheme"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Public administration and finance services"	03-Jun-08	14-Jul-08	23870.00	=""	="Meyrick Consulting Group Pty Ltd"	05-Jun-08 10:15 AM	

+="CN87912"	"Supplying facilities and participation for phase 3 of the air cargo X-ray trials"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security surveillance and detection"	27-May-08	30-Jun-08	27500.00	=""	="Australian Postal Corporation"	05-Jun-08 10:16 AM	

+="CN87915"	"Trim Migration"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Management advisory services"	26-May-08	30-Jun-08	27750.00	=""	="ALPHAWEST SERVICES PTY LTD"	05-Jun-08 10:16 AM	

+="CN87918"	"Preparation and delivery of"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Mar-07	30-Jun-08	25000.00	=""	="MARK WIGGINS"	05-Jun-08 10:17 AM	

+="CN87922"	"Lease costs on 24 month vehicle lease Running costs on 24 month lease"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	27-Nov-07	26-Nov-09	28206.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87923"	"Lease cost for Lease vehicle Running Cost for Lease vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	23-Jun-06	22-Jun-08	25768.01	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87926"	"Leased Vehicle Running Costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	13-Oct-06	14-Oct-08	24643.88	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:19 AM	

+="CN87927"	"Motor vehicle lease YED53X Motor vehicle running cost"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	10-Sep-07	09-Sep-09	28985.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87948-A1"	"Qty 159 Battery, Non-Rechargeable for Thermal Weapon Sight"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	15-May-08	20-Aug-08	20550.75	=""	="Battery Specialties (NSW) Pty Ltd"	05-Jun-08 12:36 PM	

+="CN87947"	" BUSHING, BLADE, PROPELLER NSN 1610/007764178 "	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	08-Jun-08	23420.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 12:37 PM	

+="CN87964"	"Made to Measure DPDU and DPCU Coats and Trousers e"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	19-May-08	30-Jun-08	27000.00	="2480037"	="AUSTRALIAN DEFENCE APPAREL"	05-Jun-08 01:04 PM	

+="CN87966"	"Hardware Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	14-May-09	22096.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 01:04 PM	

+="CN87973"	"BODY  ASSEMBLY BARREL BUFFER- MG12.7mm M2HB"	="Defence Materiel Organisation"	05-Jun-08	="Gun systems"	16-May-08	01-Aug-08	23782.50	=""	="THALES AUSTRALIA"	05-Jun-08 01:05 PM	

+="CN87984"	"Supply, deliver and installation of 2 x 60" plasma displays for VIDCON"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	29573.83	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 01:06 PM	

+="CN87987"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Nov-08	25542.00	=""	="LEVETT ENGINEERING PTY LTD"	05-Jun-08 01:06 PM	

+="CN88005"	"Software Maintenance Fee"	="Defence Materiel Organisation"	05-Jun-08	="Software"	20-May-08	30-May-08	20009.12	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	05-Jun-08 01:09 PM	

+="CN88006"	"Technical Support for JP02059Ph3"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20000.00	=""	="PALL AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88009"	"Use of Exisitng ASP Contract  - Repair Eng Rm Boiler control PC"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	23362.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:09 PM	

+="CN88015"	"10,000KMS Service for ASLAV ARN 16145 located in St Lois for ASLAV-S vehicle"	="Defence Materiel Organisation"	05-Jun-08	="Vehicle servicing equipment"	19-May-08	30-Jul-08	27608.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Jun-08 01:10 PM	

+="CN88020"	"HF ANTENNAS"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	19-May-08	16-Jun-08	22741.49	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	05-Jun-08 01:10 PM	

+="CN88024"	"POC: SHANE FINN/IAN WEBSTER CONTACT: 02 626 50601"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	22781.00	=""	="AUSTRALIAN FIBRE WORKS"	05-Jun-08 01:11 PM	

+="CN88030"	"Miscellaneous ADATS Frieght"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	30-Jun-08	22000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:11 PM	

+="CN88031"	"Recruitment services"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	14-May-08	30-Jun-08	20350.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 01:12 PM	

+="CN88033"	"RAN SATCOM DAMA drawing updates"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	08-Jun-08	27181.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	05-Jun-08 01:12 PM	

+="CN88043"	"Expiratory Valve, Cord Assembly"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	09-Jul-08	22969.03	=""	="MEL AVIATION LTD"	05-Jun-08 01:13 PM	

+="CN88047"	"Muzzle, Break M242"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	15-May-08	15-Dec-08	25919.52	=""	="ALLIANT TECHSYSTEMS INC"	05-Jun-08 01:13 PM	

+="CN88066"	"Provision Of Technical Services Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	14-Jul-08	23222.73	=""	="AIR NZ ENGINEERING SERVICES DIV AIR"	05-Jun-08 01:16 PM	

+="CN88079"	"Flight Inspection of RAAF Darwin TACAN"	="Defence Materiel Organisation"	05-Jun-08	="Flight instrumentation"	16-May-08	30-Jun-08	20273.55	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:17 PM	

+="CN88081"	"Flight Inspection of RAAF Darwin TASR"	="Defence Materiel Organisation"	05-Jun-08	="Flight instrumentation"	16-May-08	30-Jun-08	25679.83	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:18 PM	

+="CN88083"	"PRE AUTHORISED STOCK PROCUREMENT"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	30-Jun-08	27500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:18 PM	

+="CN88102"	"Principles of Test & Evaluation Course"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-May-08	30-Jun-08	26345.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	05-Jun-08 01:20 PM	

+="CN88105"	"LIFTING FRAME HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	15-May-08	30-May-08	25643.75	=""	="NOBLE A & SON (NSW) PTY LTD"	05-Jun-08 01:21 PM	

+="CN88111"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	23-May-08	30-Jun-08	24200.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:21 PM	

+="CN88112"	"Electrical and RF Connectors"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	23-May-08	27-Jun-08	20250.78	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 01:21 PM	

+="CN88115"	"External Service Provider"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	23-May-08	06-Jun-08	20009.00	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	05-Jun-08 01:22 PM	

+="CN88117"	"TASR ON SITE MAINTENANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	23-May-08	07-Jun-08	24200.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:22 PM	

+="CN88122"	"Repair of gas turbine engine after heavy landing"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	23-May-08	30-Jul-08	27500.00	=""	="ASIA PACIFIC AEROSPACE"	05-Jun-08 01:22 PM	

+="CN88124"	"Repair of MDRI S/No 1025"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88125"	"Repair of MDRI S/No 1059"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88126"	"Repair of MDI S/No 1003"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88138"	"Various cables & Spares for the JTFHQ & ASIFs'"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	22-May-08	30-Jun-08	28039.00	=""	="VARLEY GROUP"	05-Jun-08 01:24 PM	

+="CN88140"	"Qty 3, VDC-300 (SI-006329-0001) Airborne Data Controller"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	21-Jun-08	27914.70	=""	="EYLEX PTY LTD"	05-Jun-08 01:25 PM	

+="CN88144"	"Wave Guide Assembly"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	09-Jun-08	21767.54	=""	="MICROWAVE ENGINEERING CORPORATION D"	05-Jun-08 01:25 PM	

+="CN88155"	"ACMI Furnished Facilities"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Jun-08	29773.70	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 01:27 PM	

+="CN88168"	"Supply FFG Galley 2-Door Mess Undercounter Fridge"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	22-Sep-08	21980.73	=""	="HILL DEFENCE PRODUCTS"	05-Jun-08 01:28 PM	

+="CN88171"	"POC: JARRED THOMPSON CONTACT: 02 626 50961"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	20807.28	=""	="BEA SYSTEMS PTY LTD"	05-Jun-08 01:28 PM	

+="CN88173"	"SIMLOX Licence for ALSPO"	="Defence Materiel Organisation"	05-Jun-08	="Software"	24-May-08	30-Jun-08	20587.75	=""	="THALES AUSTRALIA"	05-Jun-08 01:29 PM	

+="CN88177"	"HIRE OF SMALL CRAFT FOR RADIO TRIALS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Jun-08	27500.00	=""	="DEFENCE MARITIME SERVICE PTY LTD"	05-Jun-08 01:29 PM	

+="CN88179"	"105mm 155mm Primers Ph1"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	19-Sep-08	26591.84	=""	="NOVA AEROSPACE"	05-Jun-08 01:29 PM	

+="CN88191"	"Use of Exisitng ASP Contract  - Eng Assess Replace M/ E Lube Oil Filters"	="Defence Materiel Organisation"	05-Jun-08	="Waxes and oils"	20-May-08	30-Jun-08	27242.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88194"	"Use of Exisitng ASP Contract  - Eng Asse Install Add Purifiers"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	20-May-08	30-Jun-08	29410.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88195"	"Use of Exisitng ASP Contract  - Eng Assess Boiler Feed Water System EA"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20743.80	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88199"	"Use of Exisitng ASP Contract  - Modify Vent RAS Flow Meters ECP"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	20-May-08	30-Jun-08	28127.72	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88227"	"Engineering In Service Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Dec-08	23740.55	=""	="YANOS AEROSPACE INC"	05-Jun-08 01:35 PM	

+="CN88229"	"VOP for FSFT, GBP, WFO48314972"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	21-May-08	27-Jun-08	28662.83	=""	="BAE SYSTEMS (OPERATIONS) LTD"	05-Jun-08 01:35 PM	

+="CN88251"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	23583.21	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 01:37 PM	

+="CN88259"	"RANTEWSS Power Supplies Materials for Power Supply Installation on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	23-Jul-08	21347.63	=""	="THALES AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88265"	"VALUATION OF GFE AT GOODRICH CONTROL SYSTEMS"	="Defence Materiel Organisation"	05-Jun-08	="Industrial process machinery and equipment and supplies"	21-May-08	11-Jun-08	22000.00	=""	="PICKLES AUCTIONS"	05-Jun-08 01:39 PM	

+="CN88266"	"CONDUCT SYSTEMS ENGINEERING COURSE FOR ANZAC SPO PERSONNELL 9-13 JUNE 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	13-Jun-08	29919.00	=""	="PROJECT PERFORMANCE AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88269"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	05-Jun-08	="Software"	09-May-08	31-Mar-09	23575.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:40 PM	

+="CN88287"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	30-Apr-08	30-Aug-08	29591.15	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:42 PM	

+="CN88288"	"  INTERAGENCY AUTHORISATION  "	="Defence Materiel Organisation"	05-Jun-08	="Office machines and their supplies and accessories"	11-Apr-08	30-Jun-08	25000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:42 PM	

+="CN88325"	"Quotation for course attendence was quoted to Pax via email on 30 April 2008"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	21-Jul-08	26400.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 01:46 PM	

+="CN88326"	"WINDSHIELD PANEL"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	06-May-08	15-Jun-08	28219.59	=""	="AGUSTAWESTLAND LTD"	05-Jun-08 01:46 PM	

+="CN88342"	"TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Specialty aircraft"	06-May-08	30-Jun-08	24200.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:48 PM	

+="CN88344"	"AMR SUPPLY FAN HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	30-May-08	29595.28	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:48 PM	

+="CN88347"	"Engineering In Service Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	25-Mar-08	30-Jun-08	29855.45	=""	="TRIUMPH GEAR SYSTEMS INC"	05-Jun-08 01:49 PM	

+="CN88354"	"Defence travel on DMO business"	="Defence Materiel Organisation"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	03-Jun-08	30-Jun-09	30000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:50 PM	

+="CN88359"	"Typhoon Installation & Mini Typhoon Re-siting for HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	08-May-08	20-May-08	28909.19	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:50 PM	

+="CN88393"	"PYLON AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	08-Jan-08	01-Aug-08	25857.64	=""	="HELIPRO COMPONENT SERVICES"	05-Jun-08 01:54 PM	

+="CN88430"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	12-May-08	30-Jul-08	23554.05	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:59 PM	

+="CN88435"	"CONTRACT SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	23447.35	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 01:59 PM	

+="CN88437"	"Repair of MDI S/No 1071"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	12-May-08	09-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:00 PM	

+="CN88442"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	20053.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 02:00 PM	

+="CN88445"	"Negotiation Mentoring Support"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	12-May-08	30-Jun-08	22060.00	=""	="KPMG"	05-Jun-08 02:01 PM	

+="CN88467"	"PROVIDE PERSONAL  EFFICIENTCY PROGRAM FOR 12 HLTHSPO STAFF"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	13-May-08	30-Jun-08	25300.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 02:03 PM	

+="CN88473"	"SECURITY UPGRADES FOR NASPO BUILDINGS 99, 259,431, 442 AND DEMOUNTABLE"	="Defence Materiel Organisation"	05-Jun-08	="Security and control equipment"	13-May-08	30-Jun-08	29880.65	=""	="ASSURED LOCKSMITHS SAFES & SECURITY"	05-Jun-08 02:04 PM	

+="CN88476"	"Internal Audit Services"	="Defence Materiel Organisation"	05-Jun-08	="Accounting and auditing"	13-May-08	30-Jun-08	30000.00	=""	="COX & RELPH PTY LTD"	05-Jun-08 02:04 PM	

+="CN88484"	"Manufacture, fabrication, supply and delivery of 14 SEM trolleys"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	14-May-08	15-Sep-08	21302.60	=""	="TRADEWAY MAINTENANCE &"	05-Jun-08 02:05 PM	

+="CN88485"	"Tiger Team Eng"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	14-May-08	26-Jun-08	27500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 02:05 PM	

+="CN88497"	"block assy launcher"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	13-May-08	02-Sep-08	29936.25	=""	="LCF SYSTEMS INC"	05-Jun-08 02:07 PM	

+="CN88517"	"F-18 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Vehicle safety and security systems and components"	07-May-08	05-May-09	24643.62	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 02:09 PM	

+="CN88519"	"TLO Office at Lockheed Martin in Marietta, GA from 01 May to 31 Dec 2008"	="Defence Materiel Organisation"	05-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	08-May-08	31-Dec-08	22786.67	=""	="LOCKHEED MARTIN CORP DBA LOCKHEED M"	05-Jun-08 02:09 PM	

+="CN88521"	"Elecrical Components (connectors, banding backshel Bottle boot w/adhesive and Freight"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	08-May-08	30-May-08	20559.55	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 02:10 PM	

+="CN88524"	"3 X ABLE  SEAMAN / LEADING SEAMAN RESERVISTS TO ASSIST WITH FILE MUSTER AND INFORMATION MANAGEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	08-May-08	30-Jun-09	27930.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:10 PM	

+="CN88532"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	12-May-08	27387.95	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:11 PM	

+="CN88549"	"F-18 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	08-May-08	07-Mar-09	27605.48	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 02:13 PM	

+="CN88550"	"CLEANING CLOTH"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	19-May-08	22641.96	=""	="BERKSHIRE CORP"	05-Jun-08 02:13 PM	

+="CN88553"	"CADAS terminals"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	09-May-08	12-Jun-08	27777.35	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 02:13 PM	

+="CN88565"	"Contractor Provision of Project Administrative Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	09-May-08	12-Aug-08	20814.75	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	05-Jun-08 02:15 PM	

+="CN88570"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	03-Jan-09	21045.21	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88575"	"SML fire Protection monitoring and control"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	08-May-08	08-May-08	21450.00	=""	="G A GLANVILLE & CO"	05-Jun-08 02:16 PM	

+="CN88577"	"Engineering report for SVTTs"	="Defence Materiel Organisation"	05-Jun-08	="Paper Materials and Products"	08-May-08	30-Jun-08	27700.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:16 PM	

+="CN88600"	"DESKS & SCREENS"	="Administrative Appeals Tribunal"	05-Jun-08	="Furniture and Furnishings"	30-Nov-06	30-May-08	20212.50	=""	="UCI"	05-Jun-08 02:53 PM	

+="CN88602"	"SUBSCRIPTIONS APRIL 2008"	="Administrative Appeals Tribunal"	05-Jun-08	="Printed media"	25-Mar-08	30-Apr-09	29585.83	=""	="LEXISNEXIS"	05-Jun-08 02:53 PM	

+="CN88604"	"MOUNTING BASE, ELECTRICAL EQUIPMENT NSN 5975/014601383"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	20-May-08	01-Jul-08	28320.00	=""	="FLITE PATH PTY LTD"	05-Jun-08 02:55 PM	

+="CN88621"	"Clifton Suites Training Rooms"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Education and Training Services"	07-May-08	30-Jun-08	20500.00	="PRN19577"	="CLIFTON OPERATIONS PTY LIMITED"	05-Jun-08 03:07 PM	

+="CN88626"	"AllFusion ERwin Software Maint Renewal"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	21422.50	="PRN19855"	="COMPUTER ASSOCIATES PTY LTD"	05-Jun-08 03:09 PM	

+="CN88629"	"TANL, FUEL, AIRCRAFT NSN 1560/006702059"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	27-May-08	26899.80	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:10 PM	

+="CN88631"	"VET FEE-HELP Information Sessions"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	31-Jul-08	29150.00	="PRN19784"	="TAFE DIRECTORS AUSTRALIA"	05-Jun-08 03:10 PM	

+="CN88642-A1"	"National VET Equity Advisory Taskforce - TALK IT UP VET Online Forum"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	22-May-08	30-Jun-09	25000.00	="PRN19585"	="EDUCATION.AU LIMITED"	05-Jun-08 03:12 PM	

+="CN88646"	"Management of IHEAC 2008 Conference"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	29-Aug-08	22740.00	="PRN19607"	="NYE COMMUNICATIONS"	05-Jun-08 03:12 PM	

+="CN88675"	"REPAIR - REGULATOR, AIR PRESSURE, AIRCRAFT CABIN"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	28-Feb-08	30-Jun-08	20125.62	=""	="QANTAS AIRWAYS LTD"	05-Jun-08 04:23 PM	

+="CN88683"	"Invoice No ARK0712-08 Ark NPM Group Claim 5"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-May-08	30-Jun-08	23236.58	=""	="ARK HOMES"	05-Jun-08 04:45 PM	

+="CN88687"	"COMPUTING SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	27500.00	=""	="KAZ GROUP PTY LTD"	05-Jun-08 04:46 PM	

+="CN88688"	"Matthew Davis $46.35 per hr 40 he per wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:46 PM	

+="CN88689"	"Gavin Ting, $46.35 p/hr, 40hrs per wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:46 PM	

+="CN88697"	"Toshibal Scanner"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	12-May-08	30-May-08	22794.31	=""	="WORLDSMART RETECH PTY LTD"	05-Jun-08 04:47 PM	

+="CN88698"	"Headsets"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	20209.59	=""	="BOSE PTY LTD"	05-Jun-08 04:47 PM	

+="CN88702"	"CHAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	12-May-08	30-Jun-08	25806.00	=""	="T&T PROPERTY MAINTENANCE"	05-Jun-08 04:48 PM	

+="CN88703"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	12-May-08	08-Aug-08	21037.50	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 04:48 PM	

+="CN88713"	"Tania Sherrington $46.35 p/hr 40hr/wk Extention of existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88711"	"Supply of DPCU and DPDU Brassards."	="Defence Materiel Organisation"	05-Jun-08	="Fabrics and leather materials"	05-Jun-08	27-Jun-08	20900.00	=""	="Arcade Embroidery"	05-Jun-08 04:50 PM	

+="CN88716"	"Garry Petot, $46.35 p/hr, 40hrs per wk Extention of existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88718"	"Dean Wright $46.35 per/hr 12 hr shifts Extention of existing contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88723"	"POC: JON VEHLBERG CONTACT: 02 626 50751"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	22657.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:51 PM	

+="CN88726"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	12-May-08	20-May-08	25500.09	=""	="EYO TECHNOLOGIES PTY LTD"	05-Jun-08 04:51 PM	

+="CN88727"	"REPAIR RUST DAMAGE"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	12-May-08	26-Jun-08	24091.10	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	05-Jun-08 04:52 PM	

+="CN88729"	"O/HAUL AIRCRAFT JACKS QTY 4"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	12-May-08	12-Jun-08	25257.10	=""	="FORDHAM ENGINEERING"	05-Jun-08 04:52 PM	

+="CN88751"	"Supply as per quotation dated 12.05.2008"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	27-Jun-08	22693.00	=""	="CREST OFFICE FURNITURE"	05-Jun-08 04:56 PM	

+="CN88752"	"NQ2223 - Ross Island Land Ship Consultancy for Com Works."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	14-May-08	30-Jun-08	25476.00	=""	="SPOTLESS"	05-Jun-08 04:56 PM	

+="CN88756"	"HQJOC PROJECT-HP-TACTICAL COMMUNICATIONS SYSTEM."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-08	25643.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:56 PM	

+="CN88772"	"software maintenance"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	30-May-08	22000.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	05-Jun-08 04:58 PM	

+="CN88775"	"DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	23-Jun-08	27302.57	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 04:58 PM	

+="CN88777"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	13-Jun-08	29865.00	=""	="BROWNBUILT PTY LTD"	05-Jun-08 04:58 PM	

+="CN88779"	"MEDICAL"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	21-May-08	30-Jun-08	28356.80	=""	="PARKWAY SHENTON PTE LTD"	05-Jun-08 04:58 PM	

+="CN88786"	"White Sahara Intel Core Duo"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	22930.60	=""	="TEGATECH AUSTRALIA"	05-Jun-08 04:58 PM	

+="CN88793"	"CONSUMABLE BUY REQUIRED FOR AIU STORE"	="Department of Defence"	05-Jun-08	="Workshop machinery and equipment and supplies"	19-May-08	30-Jun-08	23435.72	=""	="CHEMETALL AUSTRALASIA PTY LTD"	05-Jun-08 04:59 PM	

+="CN88795"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	22008.64	=""	="SUN MICROSYSTEMS"	05-Jun-08 04:59 PM	

+="CN88796"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper products"	19-May-08	18-Jun-08	25234.00	=""	="GLAMA PAK PTY LTD"	05-Jun-08 04:59 PM	

+="CN88803"	"Manufacture of 400 OFF cal. sabots"	="Department of Defence"	05-Jun-08	="Industrial Production and Manufacturing Services"	13-May-08	13-Jun-08	20064.00	=""	="VCAMM LTD"	05-Jun-08 04:59 PM	

+="CN88804"	"GPS SYSTEM"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	19-May-08	13-Jun-08	23694.00	=""	="RYDA DOT COM"	05-Jun-08 04:59 PM	

+="CN88809"	"Photo Printer and Monitors"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-May-08	30-May-08	23699.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:00 PM	

+="CN88813"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	26481.69	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:00 PM	

+="CN88817"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	27500.00	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	05-Jun-08 05:00 PM	

+="CN88819"	"Resman Conference"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	23-May-08	25000.00	=""	="WHALERS INN RESORT"	05-Jun-08 05:00 PM	

+="CN88821"	"Requested by 322ECSS Gym"	="Department of Defence"	05-Jun-08	="Fitness equipment"	13-May-08	13-May-08	21912.00	=""	="THE FITNESS GENERATION PTY LTD"	05-Jun-08 05:00 PM	

+="CN88836"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	13-May-08	11-Jun-08	23395.00	=""	="PERKICH & ASSOCIATES"	05-Jun-08 05:01 PM	

+="CN88837"	"MAINTENANCE AGREEMENT"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-May-08	30-Jun-08	21342.75	=""	="FORTES SOLUTIONS AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88839"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	17-Jun-08	27500.00	=""	="ROYAL MELBOURNE INSTITUTE OF"	05-Jun-08 05:01 PM	

+="CN88840"	"Minor Security (electronic Works)"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	19-May-08	18-Jun-08	20636.00	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:01 PM	

+="CN88842"	"Mark Carter $45.00 p/hr, 40 hr per week Extention of current contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	28116.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88843"	"VEHICLE LEASE"	="Department of Defence"	05-Jun-08	="Motor vehicles"	19-May-08	30-Jun-10	26600.00	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 05:01 PM	

+="CN88858"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	22340.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:02 PM	

+="CN88857"	"AB - Refurbishment of Roof Insulation"	="Department of Defence"	05-Jun-08	="Insulation"	19-May-08	30-Jun-08	22000.00	=""	="RESOLVE FM"	05-Jun-08 05:02 PM	

+="CN88864"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	21350.00	=""	="MINTER ELLISON"	05-Jun-08 05:02 PM	

+="CN88867"	"Supply and install 10 tray rational combi oven mod stand UG1 ADFA Bld No. 6."	="Department of Defence"	05-Jun-08	="Prefabricated structures"	13-May-08	30-Jun-08	22352.00	=""	="AC&R CATERING EQUIPMENT &"	05-Jun-08 05:03 PM	

+="CN88869"	"HANDHELD OTDR"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	28630.80	=""	="ANDERSON CORPORATION PTY LTD"	05-Jun-08 05:03 PM	

+="CN88895"	"NSIMS - UNREMEDIATED MISCELLANEOUS DATA"	="Department of Defence"	05-Jun-08	="Computer services"	21-May-08	30-Jun-08	29480.00	=""	="SKM"	05-Jun-08 05:04 PM	

+="CN88906"	"Cisco Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	23-May-08	29513.33	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88913"	"TO PROVIDE SUSPENSION, BRAKE, & STEERING KITS FOR PROJECT DIGGER."	="Department of Defence"	05-Jun-08	="Suspension system components"	21-May-08	30-Jun-08	21208.00	=""	="RRS PTY LIMITED"	05-Jun-08 05:05 PM	

+="CN88917"	"POC: M.Schubert Quotation: 00000724"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	20300.00	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:05 PM	

+="CN88928"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - PAINTING GATTON & HARRISTOWN PAINTING"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	24057.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:05 PM	

+="CN88931"	"PROFFESSIONAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	29700.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88946"	"GARDEN ISLAND COMPRESSED AIR REVIEW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	25300.00	=""	="THALES AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88956"	"NQ2081 - Building 768 Additional Comms Cabinets fo Services."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	19-May-08	30-Jun-08	21107.90	=""	="EMAK COMMUNICATIONS"	05-Jun-08 05:06 PM	

+="CN88966"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	23617.00	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88972"	"Road Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	25945.70	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88980"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	19-May-08	31-Jul-09	28000.00	=""	="MINDFIELD GUIDE"	05-Jun-08 05:08 PM	

+="CN88984"	"TABLES FOR MEETING ROOM"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	15-Jul-08	29851.80	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:08 PM	

+="CN88990"	"Research Equipment"	="Department of Defence"	05-Jun-08	="Educational facilities"	08-May-08	06-Jun-08	26268.00	=""	="VCAMM LTD"	05-Jun-08 05:08 PM	

+="CN88996"	"Sea Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	23976.87	=""	="PDL TOLL"	05-Jun-08 05:08 PM	

+="CN89000"	"DS-NQ-TS GAP YEAR FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	31-Jul-08	21736.00	=""	="SYMES FURNITURE"	05-Jun-08 05:08 PM	

+="CN89002"	"ESRI AUSTRALIA - SOFTWARE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	22457.60	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:08 PM	

+="CN89003"	"Training Courses"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-May-08	31-Dec-08	25695.00	=""	="ROBERT BRENNAN & ASSOCIATES"	05-Jun-08 05:08 PM	

+="CN89005"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	22825.10	=""	="BAYLEY AND ASSOCIATES PTY LTD"	05-Jun-08 05:09 PM	

+="CN89007"	"Purchase MATLAB Software as per Quotation: 2047726 DSTO205929"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	26-May-08	20196.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89014"	"Security System"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	08-May-08	30-May-08	25194.10	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:09 PM	

+="CN89016"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-Jun-08	27145.80	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:09 PM	

+="CN89024"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	22-May-08	30-Jun-09	21550.00	=""	="MINTER ELLISON"	05-Jun-08 05:09 PM	

+="CN89029"	"Temps for mailroom RAAF Edinburgh"	="Department of Defence"	05-Jun-08	="Cleaning and janitorial services"	07-May-08	30-Jun-08	24200.00	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 05:10 PM	

+="CN89030"	"Walkie Stacker 1.55 x 3000"	="Department of Defence"	05-Jun-08	="Tools and General Machinery"	22-May-08	30-Jun-08	22990.00	=""	="CROWN EQUIPMENT PTY LTD"	05-Jun-08 05:10 PM	

+="CN89037"	"REVIEW OF THE FWOS GUIDELINES."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	21868.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:10 PM	

+="CN89039"	"FURNITURE FOR THE PAC BUILDING"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	20774.30	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:10 PM	

+="CN89046"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	23834.96	=""	="HARVEY NORMAN COMPUTER SUPERSTORE"	05-Jun-08 05:10 PM	

+="CN89062"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	25000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:11 PM	

+="CN89074"	"SN02537 - SMART database barcoding audit for ACT Defence sites"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	25000.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:12 PM	

+="CN89076"	"RV0411 - RGN - EB47 Refurbish air conditioning controls system"	="Department of Defence"	05-Jun-08	="Project management"	07-May-08	30-Jun-09	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:12 PM	

+="CN89080"	"S5101, WR 300079048. Engage a consultant to determ replacement options for the damaged submarine pow"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	27500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:12 PM	

+="CN89113"	"DATA PACKAGE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	25-Jun-08	21840.50	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 05:13 PM	

+="CN89117"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	26-Jun-08	22870.10	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89129"	"OTS Serials 08.200, 08.206, 08.201 and 08.207 - 4 x Urban Ops Courses - UK"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	28706.16	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	05-Jun-08 05:14 PM	

+="CN89131"	"AQIS OFFSHORE INSPECTION OP ASTUTE"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	19-May-08	31-May-08	26728.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:14 PM	

+="CN89132"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	26-Jun-08	25499.98	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89135"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	25809.50	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:14 PM	

+="CN89141"	"research agreement"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	22000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:15 PM	

+="CN89153"	"SENTRY BUNDS"	="Department of Defence"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	19-May-08	19-Jun-08	20496.96	=""	="SPILL CONTROL SYSTEMS PTY LTD"	05-Jun-08 05:15 PM	

+="CN89155"	"Unit Audits"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	22-May-08	30-Dec-08	27500.00	=""	="SAI GLOBAL LTD"	05-Jun-08 05:15 PM	

+="CN89157"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	20293.57	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:15 PM	

+="CN89160"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	09-May-08	06-Jun-08	21875.81	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89173"	"SHIPS REPAIRS"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	30-Jun-08	24524.80	=""	="NORTHWEST ENGINEERING PTE LTD"	05-Jun-08 05:16 PM	

+="CN89188"	"Tape Cartridge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	05-Jun-08	20251.00	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89189"	"SUPPLY A PABX SYSTEM FOR DEFENCE ATHERTON"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	29747.96	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:17 PM	

+="CN89205"	"Alterations and additions toexisting fire suppessi building F6, Gallipoli Barracks, Enoggera"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	26-Jun-08	27893.80	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:17 PM	

+="CN89213"	"S5272, WR 300080484. World Youth Day 2008is an eve Defence, this proposal is to provide tented accom"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	20000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:18 PM	

+="CN89214"	"Jean McCallum, $41.20 p/hr 40hrs p/w Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	25741.76	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 05:18 PM	

+="CN89225"	"ACCOMMODATION/CONFERENCE PACKAGE"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	20-May-08	20-May-08	21594.00	=""	="HOTEL HERITAGE"	05-Jun-08 05:18 PM	

+="CN89229"	"POC: CHRIS MCCOLL CONTACT: 02 626 6001"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	10-May-08	30-Jun-08	26703.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:19 PM	

+="CN89234"	"MITSUBISHI 1080i FULL HD PROJECTOR 18 MOTOTISED SCREEN"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	20-May-08	23-May-08	28743.20	=""	="KLM GROUP"	05-Jun-08 05:19 PM	

+="CN89238"	"computer cables"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	30-May-08	20300.06	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:19 PM	

+="CN89239"	"COMPUTER UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-May-08	22275.00	=""	="PROGRAM IT PTY LTD"	05-Jun-08 05:19 PM	

+="CN89241"	"STEELE BEASTS TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	09-May-08	30-Jun-08	26850.00	=""	="ESIM GAMES DEUTSCHLAND GMBH"	05-Jun-08 05:19 PM	

+="CN89243"	"FURNITURE REPAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	22000.00	=""	="DICK VERNON CONSTRUCTIONS"	05-Jun-08 05:19 PM	

+="CN89247"	"Antenna"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	15-May-08	22345.94	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	05-Jun-08 05:19 PM	

+="CN89253"	"VBS2 TRAINING ADVANCED"	="Department of Defence"	05-Jun-08	="Education and Training Services"	09-May-08	30-Jun-08	22022.00	=""	="BOHEMIA INTERACTIVE AUSTRALIA"	05-Jun-08 05:20 PM	

+="CN89261"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	21670.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:20 PM	

+="CN89274"	"Telephone Handsets"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	08-Aug-08	21873.72	=""	="GETRONICS"	05-Jun-08 05:21 PM	

+="CN89279"	"Advertising Expenses"	="Department of Defence"	05-Jun-08	="Advertising"	15-May-08	30-Jun-08	22000.00	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:21 PM	

+="CN89282"	"Terramodel licences"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	30-Jun-08	23496.00	=""	="GEOCOMP SYSTEMS"	05-Jun-08 05:21 PM	

+="CN89287"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Sports equipment and accessories"	06-May-08	30-Jun-08	25300.00	=""	="HF INDUSTRIES PTY LTD"	05-Jun-08 05:21 PM	

+="CN89293"	"North Queensland maintenance Plan Evaluator and Disbursements"	="Department of Defence"	05-Jun-08	="Management advisory services"	06-May-08	30-Jun-08	24620.00	=""	="BASSETT CONSULTING ENGINEERS"	05-Jun-08 05:21 PM	

+="CN89296"	"EX STHN REACH - 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	24220.00	=""	="PFD FOOD SERVICES"	05-Jun-08 05:22 PM	

+="CN89297"	"NTC Tidal Reports Jan-Mar 08"	="Department of Defence"	05-Jun-08	="Business administration services"	15-May-08	30-May-08	27500.00	=""	="BUREAU OF METEOROLOGY"	05-Jun-08 05:22 PM	

+="CN89310"	"INSTALLATION OF INTERNET WIRELESS SYSTEM AT RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	31-May-08	22550.00	=""	="TERRITORY TECHNOLOGY SOLUTIONS"	05-Jun-08 05:22 PM	

+="CN89320"	"LCMT Training course"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	31-May-08	25086.24	=""	="STRATOS"	05-Jun-08 05:23 PM	

+="CN89339"	"Note: All Invoices relating to this Purchase Order only to the address cited on the Purchase Order."	="Department of Defence"	05-Jun-08	="Safety and rescue vehicles"	02-May-08	13-May-08	20020.00	=""	="ACCESS RENTALS"	05-Jun-08 05:23 PM	

+="CN89348"	"Maintenance work at RAAF Base Darwin"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	02-May-08	28-May-08	29500.01	=""	="AE SOLUTIONS (NT) PTY LTD"	05-Jun-08 05:24 PM	

+="CN89358"	"PROFESSIONAL FEES AND DISBURSEMENTS....."	="Department of Defence"	05-Jun-08	="Legal services"	09-May-08	30-Jun-08	26000.00	=""	="CLAYTON UTZ"	05-Jun-08 05:24 PM	

+="CN89364"	"Software Support"	="Department of Defence"	05-Jun-08	="Software"	08-May-08	10-Apr-09	29885.16	=""	="LOCKHEED MARTIN UK INSYS LTD"	05-Jun-08 05:25 PM	

+="CN89367"	"Cabling work at Tindal"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	08-May-08	30-Jun-08	25293.40	=""	="NBC COMMUNICATIONS"	05-Jun-08 05:25 PM	

+="CN89370"	"Cabling work at Delamere"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	08-May-08	30-Jun-08	23870.00	=""	="MULTISYSTEM COMMUNICATIONS"	05-Jun-08 05:25 PM	

+="CN89373"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-09	27100.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:25 PM	

+="CN89374"	"ACCOM FOR DEFENCE ATTACHES CONF IN CANBERRA"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	14-May-08	14-May-08	29700.00	=""	="WALDORF APARTMENT HOTEL"	05-Jun-08 05:25 PM	

+="CN89379"	"For DISIP Stage 2 DIER 0607-0832"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	20-May-08	27015.20	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:25 PM	

+="CN89381"	"Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-Jun-08	25554.45	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:25 PM	

+="CN89382"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-09	22665.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:26 PM	

+="CN89387"	"Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-May-08	21015.65	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:26 PM	

+="CN89392"	"RV0575 - RBW / KMA Provide an audit report on control cable network"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-08	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89396"	"1st semester fees SCU. JOPES students"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	30-Jun-08	20900.00	=""	="SOUTHERN CROSS UNIVERSITY"	05-Jun-08 05:26 PM	

+="CN89400"	"ROMAN AND BORIS TRAINERS"	="Department of Defence"	05-Jun-08	="Educational facilities"	14-May-08	30-Jun-08	29040.00	=""	="GRAEME V JONES & ASSOCIATES PTY"	05-Jun-08 05:27 PM	

+="CN89406"	"Diploma of Government (Contract Management) Training"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	30-May-08	26540.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	05-Jun-08 05:27 PM	

+="CN89412"	"Ultra high temperature ceramic R & D work at Monas h University"	="Department of Defence"	05-Jun-08	="Military science and research"	14-May-08	30-Jun-08	27500.00	=""	="MONASH UNI - SCHOOL OF PHYSICS &"	05-Jun-08 05:27 PM	

+="CN89414"	"SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	30-Jun-08	24487.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89428"	"POC: JOHN BURGESS CONTACT: 02 626 50462"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	25086.24	=""	="ENTRUST LTD"	05-Jun-08 05:28 PM	

+="CN89432"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	14-May-08	28716.31	=""	="UNI OF WOLLONGONG-PERS FIN SERVICES"	05-Jun-08 05:29 PM	

+="CN89438"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	24877.60	=""	="INTERWORX PTY LTD"	05-Jun-08 05:29 PM	

+="CN89451"	"SPONSORSHIP OF AUSTRALIAN MEDICAL STUDENTS ASSOCIA ACCEPTED IS FACE TO FACE RELATIONSHIP BUILDING GO"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-08	22000.00	=""	="AUSTRALIAN MEDICAL STUDENTS ASSOC"	05-Jun-08 05:30 PM	

+="CN89454"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	29700.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:30 PM	

+="CN89462"	"FOR ANNUAL SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	07-May-08	30-Jun-08	22924.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:31 PM	

+="CN89466"	"Cisco Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	20-May-08	27604.50	=""	="ASI SOLUTIONS"	05-Jun-08 05:31 PM	

+="CN89470"	"CREATION OF VARIOUS SIGNS FOR RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Signage and accessories"	07-May-08	31-May-08	22929.50	=""	="AUSSIE SIGNS"	05-Jun-08 05:31 PM	

+="CN89484"	"SUPPLY & INSTALL LOCKERS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	07-May-08	11-Jun-08	20702.44	=""	="INTERLOC LOCKERS PTY LTD"	05-Jun-08 05:32 PM	

+="CN89485"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	20515.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:32 PM	

+="CN89495"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	22704.00	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:33 PM	

+="CN89496"	"INSTALLATION OF DRN OUTLETS & CABLING, VARIOUS SITES, RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	23936.00	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89504"	"COMPUTER SOFT & HARD WARE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	29951.87	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:33 PM	

+="CN89508"	"SFA TRAINING"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	06-May-08	30-Jun-08	29267.28	=""	="BAE SYSTEMS"	05-Jun-08 05:34 PM	

+="CN89514"	"SPA"	="Department of Defence"	05-Jun-08	="Prefabricated structures"	06-May-08	30-Jun-08	27132.00	=""	="WINDSOR SPA & OUTDOOR CENTRE"	05-Jun-08 05:34 PM	

+="CN89526"	"DMOSS Standing Offer"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	06-May-08	30-Jun-08	25125.10	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:35 PM	

+="CN89533"	"SUPPLY INSTALL SERVER & UPS"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	30-Jun-08	23857.15	=""	="SEYMOUR COMPUTERS"	05-Jun-08 05:35 PM	

+="CN89536"	"EXERCISE BIKES"	="Department of Defence"	05-Jun-08	="Gymnastics and boxing equipment"	19-May-08	13-Jun-08	24667.50	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:35 PM	

+="CN89537"	"fruit & vegs"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	06-May-08	31-Dec-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:36 PM	

+="CN89563"	"purchase of optical media shredder"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-May-08	21433.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 05:37 PM	

+="CN89565"	"purchase of micrographic scanner"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	27-May-08	20836.20	=""	="PROSCAN AUSTRALIA PTY LTD"	05-Jun-08 05:37 PM	

+="CN89568"	"Conduct Organisation Review"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	09-May-08	29150.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:38 PM	

+="CN89572"	"MATTRESS"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	06-May-08	30-May-08	26950.00	=""	="SLEEP FIRM  AUSTRALIA"	05-Jun-08 05:38 PM	

+="CN89585"	"HEALTH SERVICE - BNH"	="Department of Defence"	05-Jun-08	="Emergency and field medical services products"	23-May-08	30-Jun-08	27622.10	=""	="DR LOUISE MURRAY"	05-Jun-08 05:39 PM	

+="CN89596"	"JDeveloper training to JEWOSU personnel"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	20971.50	=""	="SAGE COMPUTING SERVICES"	05-Jun-08 05:39 PM	

+="CN89604"	"EPC-5 Named Author Modeler Lic and Maintenance"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	31-Mar-09	20556.78	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:40 PM	

+="CN89621"	"GI Significant Repairs & Maintenance to Buildings 07/08"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	30-May-08	30-Jun-08	24538.28	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89625"	"APARTMENTS"	="Department of Defence"	05-Jun-08	="Travel facilitation"	12-Jul-07	22-Nov-07	27516.08	=""	="QUEST NEWCASTLE"	05-Jun-08 05:41 PM	

+="CN89632"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	23-May-08	20504.00	=""	="OUTRAM ASSOCIATES"	05-Jun-08 05:42 PM	

+="CN89638"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	29684.66	=""	="DEAKINPRIME"	05-Jun-08 05:42 PM	

+="CN89643"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Dec-08	22000.00	=""	="LACEY PERSONNEL CONSULTING"	05-Jun-08 05:42 PM	

+="CN89654"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	22770.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89661"	"INTERNET SERVICES FOR FEB - APR 08"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	23-May-08	20821.48	=""	="NEWSAT LTD"	05-Jun-08 05:43 PM	

+="CN89668"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	22506.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89675"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	28248.91	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89680"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	29317.86	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:45 PM	

+="CN89682"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-May-08	20000.00	=""	="DKC INTERNATIONAL PTY LTD"	05-Jun-08 05:45 PM	

+="CN89684"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	29238.66	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:45 PM	

+="CN89687"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	30-Apr-08	30-Sep-08	21554.60	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89692"	"BACK PACKS"	="Department of Defence"	05-Jun-08	="Luggage and handbags and packs and cases"	23-May-08	20-Jun-08	26400.00	=""	="CROSSFIRE PTY LTD"	05-Jun-08 05:45 PM	

+="CN89698"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	23-May-08	30-Jun-08	22000.00	=""	="ADVANCED VTOL TECHNOLOGIES"	05-Jun-08 05:46 PM	

+="CN89699"	"DIVE COURSE"	="Department of Defence"	05-Jun-08	="Water safety"	14-May-08	30-May-08	22000.00	=""	="THE UNDERWATER CENTRE FREMANTLE"	05-Jun-08 05:46 PM	

+="CN89710"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	23188.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89722"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	20592.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89737"	"LEASE OF VEHICLES"	="Department of Defence"	05-Jun-08	="Motor vehicles"	23-May-08	01-Jun-08	24321.47	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:48 PM	

+="CN89745"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	03-Jun-08	30-Aug-08	23401.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:48 PM	

+="CN89760"	"MILITARY EXERCISE"	="Department of Defence"	05-Jun-08	="Other sports"	23-May-08	23-May-08	21472.00	=""	="AARDVARK ADVENTURES"	05-Jun-08 05:49 PM	

+="CN89764"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	25806.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 05:50 PM	

+="CN89770"	"REGISTRATION REQUIRED TO DELIVER TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	20000.00	=""	="RECEIVER OF OFFICIAL MONIES"	05-Jun-08 05:50 PM	

+="CN89781"	"VTC Polycom Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-Apr-08	30-May-08	23142.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:51 PM	

+="CN89795"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	02-Jun-08	30-Jun-08	23842.19	=""	="BID VEST BURLEIGH MARR"	05-Jun-08 05:52 PM	

+="CN89796"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	01-Jul-08	22728.13	=""	="TETON DATA SYSTEMS INC DBA STAT -RE"	05-Jun-08 05:52 PM	

+="CN89802"	"Cryptographic equipment"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	26-May-08	09-Oct-08	22765.76	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:52 PM	

+="CN89809"	"PSP Contractor - ICT Support Officer"	="Department of Defence"	05-Jun-08	="Temporary personnel services"	29-May-08	27-Jun-08	20855.24	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 05:53 PM	

+="CN89829"	"FMBD: Bldg 52 Enlarge Existing Computer Room"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Aug-08	24558.60	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	05-Jun-08 05:54 PM	

+="CN89836"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	29412.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 05:54 PM	

+="CN89839"	"Value based Purchase Order"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	02-Jun-08	30-Jun-08	20000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	05-Jun-08 05:54 PM	

+="CN89841"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	07-May-08	30-Jun-08	26048.00	=""	="CLAYTON UTZ"	05-Jun-08 05:55 PM	

+="CN89843"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	02-Jun-08	30-Jun-08	30000.00	=""	="SIMON GEORGE &"	05-Jun-08 05:55 PM	

+="CN89846"	"EMPLOYMENT OF LEGAL OFFICERS"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	26-May-08	30-Jun-08	30000.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 05:55 PM	

+="CN89847"	"CORPORATE AIR HIRE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	04-Jun-08	30-Jun-08	22000.00	=""	="CORPORATE AIR"	05-Jun-08 05:55 PM	

+="CN89853"	"SUPPLY OF GAS FOR GAS CYLINDERS"	="Department of Defence"	05-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Jun-08	03-Jun-08	22000.00	=""	="ELGAS"	05-Jun-08 05:55 PM	

+="CN89856"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	21360.00	=""	="CLAYTON UTZ"	05-Jun-08 05:56 PM	

+="CN89858"	"STORAGE SYSTEM FOR TOOLS AND EQUIPMENT Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Containers and storage"	26-May-08	30-Jun-08	29573.50	=""	="BAC AUSTRALIAN SYSTEMS PTY LTD"	05-Jun-08 05:56 PM	

+="CN89860"	"REDEVELOPMENT OF PMKEYS DATABASE"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	26-May-08	29700.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:56 PM	

+="CN89866"	"OFFICE CHAIRS - ROTARY"	="Department of Defence"	05-Jun-08	="Commercial and industrial furniture"	26-May-08	06-Jun-08	21925.20	=""	="SITZ"	05-Jun-08 05:56 PM	

+="CN89871"	"Miscellaneous minor new work , ACT/SNSW"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	30-Jun-08	26192.23	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:56 PM	

+="CN89873"	"TSS CONTRACT"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	30-Sep-08	30000.00	=""	="SOLVEIT SOFTWARE PTY LTD"	05-Jun-08 05:57 PM	

+="CN89878"	"DOCTRINE PUBLICATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	26-May-08	30-Jun-08	26741.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	05-Jun-08 05:57 PM	

+="CN89882"	"FURNITURE FOR SINGLETON BLDG K506"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	20134.19	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:57 PM	

+="CN89886"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	22394.41	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 05:57 PM	

+="CN89891"	"IT SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89892"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	23003.47	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:58 PM	

+="CN89894"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	26750.20	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:58 PM	

+="CN89908"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	22423.50	=""	="INFOLOGIC SYSTEMS CONSULTANTS PTY"	05-Jun-08 05:59 PM	

+="CN89910"	"CONTRACT NO: CSI-SC05/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:59 PM	

+="CN89923"	"Repairs to GSE"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	12-May-08	23-May-08	27498.68	=""	="EYRE & OWEN SMASH REPAIRS"	05-Jun-08 06:00 PM	

+="CN89931"	"S5113, WR 300071781. Hammerhead crane - supply and around base of crane."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	30-Jun-08	25366.76	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 06:00 PM	

+="CN89936"	"Audits conducted by SAI Global for JLC Units"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	31-May-08	27500.00	=""	="SAI GLOBAL LTD"	05-Jun-08 06:01 PM	

+="CN89937"	"PSP SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-Jun-08	26453.02	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 06:01 PM	

+="CN89938"	"WIRRAWAY CLUB RECTIFICATION WORKS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	25300.00	=""	="SPOTLESS"	05-Jun-08 06:01 PM	

+="CN89941"	"Accomodation"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	26-May-08	30-May-08	21326.80	=""	="THE BARDON CENTRE"	05-Jun-08 06:01 PM	

+="CN89948"	"Kate Carrigan $41.20 p/hr 40hrs p/w Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	25741.76	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 06:01 PM	

+="CN89958"	"PORT SERVICES RANLO SINGAPORE"	="Department of Defence"	05-Jun-08	="Specialised and recreational vehicles"	21-May-08	30-Jun-08	22992.00	=""	="PSA MARINE (PTE) LTD"	05-Jun-08 06:02 PM	

+="CN89960"	"Research Agreement Adelaide Uni"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	21-May-08	10-Dec-08	22000.00	=""	="UNIVERSITY OF ADELAIDE"	05-Jun-08 06:02 PM	

+="CN89965"	"structural assessment"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	13-May-08	30-Jun-08	22456.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 06:02 PM	

+="CN89970"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	24000.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 06:03 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val300000to999999999.xls
@@ -1,1 +1,210 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87439"	"software for 3 years"	="Department of the House of Representatives"	03-Jun-08	="Software"	30-Apr-08	30-Apr-11	894849.99	=""	="Data#3 Ltd"	03-Jun-08 09:52 AM	

+="CN87460"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	347776.00	="FIN05CRP004-41"	="ICON RECRUITMENT PTY LTD"	03-Jun-08 10:41 AM	

+="CN87481"	"Legal Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-09	715000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	03-Jun-08 10:45 AM	

+="CN87496"	"Property Lease"	="Child Support Agency"	03-Jun-08	="Building and Construction Machinery and Accessories"	03-Jun-08	31-Dec-15	8922739.10	=""	="RYRIE CENTRE DEVELOPMENT UNIT TRUST"	03-Jun-08 11:15 AM	

+="CN87502"	"Provision of Training Courses for Administrative Service Officers."	="CRS Australia"	03-Jun-08	="Education and Training Services"	14-May-08	13-May-11	305000.00	=""	="Deakin Prime"	03-Jun-08 11:22 AM	

+="CN87505"	"Public relations services for the electronic Medicare claiming campaign"	="Department of Human Services"	03-Jun-08	="Public relation services"	26-May-08	20-Jun-09	300000.00	=""	="Royce (Vic) Pty Ltd"	03-Jun-08 11:52 AM	

+="CN87506"	"Creative advertising services for the Medicare Claiming Communication Campaign"	="Department of Human Services"	03-Jun-08	="Advertising"	26-May-08	30-Jun-09	500000.00	=""	="Grey Worldwide Canberra Pty Ltd"	03-Jun-08 11:52 AM	

+="CN87525"	"CSA Campaign Media Placements"	="Child Support Agency"	03-Jun-08	="Advertising"	21-May-08	30-Jun-08	3275000.00	=""	="UNIVERSAL MCCANN"	03-Jun-08 02:33 PM	

+="CN87531"	"Architectural Services"	="Child Support Agency"	03-Jun-08	="Building and Construction Machinery and Accessories"	28-May-08	30-Dec-08	398750.00	=""	="INTERIORS AUSTRALIA PTY LTD"	03-Jun-08 02:34 PM	

+="CN87570"	"Reef Water Quality Protection Plan Marine Water Quality Monitoring Programme"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Professional engineering services"	20-May-08	31-Dec-08	1132842.70	=""	="REEF & RAINFOREST RESEARCH CENTRE"	03-Jun-08 02:55 PM	

+="CN87576"	"NSN 1620-00-821-5223, Str Piston Assemblies"	="Defence Materiel Organisation"	03-Jun-08	="Aerospace systems and components and equipment"	28-May-08	25-Jun-08	303892.86	=""	="Milspec Services Pty Ltd"	03-Jun-08 03:03 PM	

+="CN87631-A1"	" Legal Services"	="Australian Securities and Investments Commission"	04-Jun-08	="Legal services"	17-Mar-08	31-Dec-10	6964804.00	=""	="Johnson Winter & Slattery"	04-Jun-08 09:20 AM	

+="CN87633-A1"	"Legal Services - External"	="Australian Securities and Investments Commission"	04-Jun-08	="Legal services"	14-Apr-08	30-Jun-10	5344999.00	=""	="Johnson Winter & Slattery"	04-Jun-08 09:25 AM	

+="CN87652"	"Property Operating Expense - Jun 2008 Client No: AIR"	="Australian Industrial Registry"	04-Jun-08	="Property management"	26-May-08	26-May-08	958732.38	=""	="UNITED GROUP"	04-Jun-08 11:39 AM	

+="CN87674"	"Scoping study - Skilling women and womens non-gov organisations"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	313500.00	=""	="Results Consulting (Australia)"	04-Jun-08 11:46 AM	

+="CN87719"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	26-May-08	30-Jun-08	329790.90	=""	="Infront Systems Pty Ltd"	04-Jun-08 11:55 AM	

+="CN87725"	"Monthly rent for Tuggerangong Office Park (TOP)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Jun-08	1627984.05	=""	="Tuggeranong Office Park Pty Ltd"	04-Jun-08 11:57 AM	

+="CN87745"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	06-May-08	20-Jun-08	322028.33	=""	="Getronics Australia Pty Limited"	04-Jun-08 12:02 PM	

+="CN87752-A3"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computers"	07-May-08	30-Jun-10	557508.25	=""	="Central Comms"	04-Jun-08 12:03 PM	

+="CN87791"	"Reimbursement to Centrelink for Interpreters- NTER"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	16-May-08	30-Jun-08	450000.00	=""	="Centrelink - Departmental"	04-Jun-08 12:12 PM	

+="CN87793-A1"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Software"	16-May-08	30-Jun-10	580178.05	=""	="Infront Systems Pty Ltd"	04-Jun-08 12:12 PM	

+="CN87847"	"Purchase of 250 laptops and accessories"	="Centrelink"	04-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	02-Jun-09	439153.00	="2004/52285"	="Hewlett Packard Australia Pty Ltd"	04-Jun-08 03:03 PM	

+="CN87900-A1"	"Battery Nonrechargeable BA-F300"	="Defence Materiel Organisation"	05-Jun-08	="Lithium batteries"	27-May-08	16-Dec-08	1379400.00	=""	="SAFT BATTERIES PTY LTD"	05-Jun-08 09:26 AM	

+="CN87903"	"Battery Nonrechargble BA-F300"	="Defence Materiel Organisation"	05-Jun-08	="Lithium batteries"	26-May-08	20-Oct-08	2508000.00	=""	="SAFT BATTERIES PTY LTD"	05-Jun-08 09:50 AM	

+="CN87944"	"Night Aiming Device Spare Parts"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	19-May-08	22-Aug-08	413935.50	=""	="BAE Systems Australia Ltd"	05-Jun-08 12:22 PM	

+="CN87954"	"Power Supply"	="Defence Materiel Organisation"	05-Jun-08	="Electronic Components and Supplies"	17-May-08	19-Jan-09	336774.67	=""	="ROCKWELL COLLINS INC. DIV GOVERNMEN"	05-Jun-08 01:03 PM	

+="CN87958"	"Project Development Officer"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	02-May-09	352000.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:03 PM	

+="CN87971"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	15-Jul-08	554303.64	=""	="FLIGHT DATA SYSTEMS PTY LTD"	05-Jun-08 01:04 PM	

+="CN87979"	"Platform & Certification engineering support to allow PBSPO to achieve or"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	30-Apr-09	878000.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 01:05 PM	

+="CN87981"	"WORK STAND AND FUEL ACCESS STAND FOR F/18 AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	16-May-08	30-Jul-08	1472900.00	=""	="ACE ACCESS & SCAFFOLD"	05-Jun-08 01:06 PM	

+="CN87982"	"Incremental redundancy costs for the Nowra BAE workforce in accordance with the ACMC"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	16-May-08	15-Jun-08	1359184.86	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	05-Jun-08 01:06 PM	

+="CN87998"	"Toyota Tarago Wagon (BS) Qty 9"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	14-Nov-08	375969.26	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88018"	"Support Equipment for MEOA Operations"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	19-May-08	30-Jun-09	1760000.00	=""	="DATAVOICE CANBERRA PTY LTD"	05-Jun-08 01:10 PM	

+="CN88035"	"PROCUREMENT AND ISSUE OF ALL BDS/ CONSUMABLES IN SUPPORT OF 723 SQN AND OPERATIONS, HMAS ALBATROSS"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	14-May-08	30-Nov-08	990000.00	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 01:12 PM	

+="CN88001-A1"	"Qty 2,500 Battery Assembly Nonrechargeable for Thermal Surveillance Systems"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	08-May-08	10-Jun-08	426250.00	=""	="Aerospace Composites Pty Ltd"	05-Jun-08 01:13 PM	

+="CN88049"	"105mm 155mm Ph2 - milestone 1 20% 105mm 155mm Ph2 - milestone 2 10%"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	15-Oct-08	379143.88	=""	="NOVA AEROSPACE"	05-Jun-08 01:14 PM	

+="CN88057"	"ASMD Alliance Secret Network"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	14-May-08	31-Jan-09	438900.00	=""	="CSC AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88074"	"Aircraft Towing Super Heavy Towmotors"	="Defence Materiel Organisation"	05-Jun-08	="Machinery and transport equipment manufacture"	15-May-08	31-Dec-09	658436.61	=""	="CLARK EQUIPMENT AUST PTY LTD"	05-Jun-08 01:17 PM	

+="CN88095"	"JSF PACRIM C4ISR Interoperability Study"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	15-May-08	30-May-08	865000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:19 PM	

+="CN88107"	"FULL PAYMENT ON INVOICE ARMOURY JPEU"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction Machinery and Accessories"	15-May-08	30-Jun-08	346629.94	=""	="CHUBB ELECTRONIC SECURITY PTY LTD"	05-Jun-08 01:21 PM	

+="CN88113"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Software"	23-May-08	23-May-08	719151.40	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 01:21 PM	

+="CN88134"	"Purchase Long lead items for CCP125-Gas Detection"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	15-Aug-08	354200.00	=""	="DEFENCE MARITIME SERVICES PTY"	05-Jun-08 01:24 PM	

+="CN88135"	"Contract Management Support Services for Type C Under Water System Support (UWS) Contract"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	27-Nov-08	387400.20	=""	="TILFORTH CONSULTING SERVICES"	05-Jun-08 01:24 PM	

+="CN88147"	"Cartridge 5.56mm Blank F3A1 Film Pack"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	31-Aug-08	1299954.77	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88152"	"Block 6.1 Upgrade Program Simulator Engineering Change Proposal"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	06-Aug-08	368500.00	=""	="CAE AUSTRALIA PTY LTD"	05-Jun-08 01:26 PM	

+="CN88153"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS IN C"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	26-May-08	30-Nov-08	733482.64	=""	="RLM PTY LTD"	05-Jun-08 01:26 PM	

+="CN88159"	"CARTRIDGE 5.56MM 4AP/1TR"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Sep-10	3434350.16	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88160"	"SIMULATION GRENADES"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jan-10	822694.87	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88161"	"XM982 Excalibur APGM"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	08-May-08	31-Mar-11	37697334.30	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88163"	"CARTRIDGE 20MM DS"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	15-Mar-11	681348.55	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88164"	"PROJECTILES 5"/54 HE-CVT AND HE-DP"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jun-09	1254638.12	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88166"	"Membership and Admin Fees"	="Defence Materiel Organisation"	05-Jun-08	="Administrative fees or tax collection services"	12-Nov-07	31-Dec-08	502960.26	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88167"	"FMS CAse"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	15-Sep-11	461715.61	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88170"	"BLADE, TURBINE & DISK TURBINE"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	24-May-08	23-Jun-08	683945.50	=""	="GENERAL ELECTRIC COMPANY"	05-Jun-08 01:28 PM	

+="CN88176"	"Single Channel Radio Systems Functional Test Capabiliy"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	26-May-08	30-Jun-10	4480126.25	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:29 PM	

+="CN88197"	"4032-4 MOAS TRAINING DEVELOPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	30-Jun-10	1075036.60	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:31 PM	

+="CN88210"	"VoP For ISS contract C388561, Inv 70396"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	347981.15	=""	="BAE SYSTEMS AUSTRALIA"	05-Jun-08 01:33 PM	

+="CN88213-A1"	" TASK 1426 COMBAT OPERATIONAL SNC BALANCE "	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	27-Aug-10	560791.98	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:33 PM	

+="CN88214"	"Ford Falcon Wagon (WM) Qty 28"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	05-Dec-08	712141.80	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88215"	"Ford Ranger XL DC 4x4 Pick Up (UM4)  Qty 27"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	07-Nov-08	664981.13	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88216-A1"	"TASK 1421 PLATFORM OPERATIONAL SHORT NOTICE CHANGE BALANCE"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	30-Jun-09	567183.34	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:34 PM	

+="CN88224"	"REFURBISHMENT OF NAVY CBA"	="Defence Materiel Organisation"	05-Jun-08	="Personal safety and protection"	20-May-08	30-Jun-08	425815.54	=""	="HELLWEG INTERNATIONAL"	05-Jun-08 01:34 PM	

+="CN88226"	"Process definition and improvement"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	20-May-08	30-Jun-09	1568434.23	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	05-Jun-08 01:35 PM	

+="CN88230"	"Use of Seahorse Standard"	="Defence Materiel Organisation"	05-Jun-08	="Commercial marine craft"	21-May-08	31-Jul-08	547030.00	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 01:35 PM	

+="CN88233"	"DROPSONDES"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	22-May-08	27-Feb-09	1975541.40	=""	="CAPEWELL COMPONENTS COMPANY LLC"	05-Jun-08 01:36 PM	

+="CN88237"	"VoP For GBP ISS contract C388561, Inv 70399"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	28-Jun-08	896791.35	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:36 PM	

+="CN88240"	"VoP For GBP ISS contract C388561, Inv 70397"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	27-Jun-08	504085.54	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:36 PM	

+="CN88241"	"VoP For GBP ISS contract C388561, Inv 70398"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	27-Jun-08	801139.06	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:37 PM	

+="CN88252"	"4502.04 SUPPLY CHAIN REFORM PHASE 3A: PERFORMANCE MANAGEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-10	315480.84	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:38 PM	

+="CN88263"	"Project Technical Support"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	21-May-08	31-Jul-08	344500.69	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:39 PM	

+="CN88271"	"HUON FAMP 01/08 CONDUCTED JUN/JUL 08"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	21-Apr-08	31-Jul-08	511575.37	=""	="THALES AUSTRALIA"	05-Jun-08 01:40 PM	

+="CN88273"	"Delivery Management Services"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	16-Apr-08	15-Apr-09	396120.00	=""	="KABED CONSULTING PTY LTD"	05-Jun-08 01:40 PM	

+="CN88276"	"WEAPON SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	16-Apr-08	02-Jan-09	436365.16	=""	="FN HERSTAL SA"	05-Jun-08 01:41 PM	

+="CN88295-A1"	"Radio Frequency Identification Device Maintenance Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Software maintenance and support"	07-Apr-08	13-Apr-10	1991357.10	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 01:43 PM	

+="CN88305"	"Materiel Handling Equipment - Mobile Crane"	="Defence Materiel Organisation"	05-Jun-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	10-Apr-08	30-Nov-10	5657257.38	=""	="MANITOWOC CRANE GROUP AUSTRALIA PTY"	05-Jun-08 01:44 PM	

+="CN88318"	"Inter-agency Payment DMO to Defence for MTU spare parts"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing Components and Supplies"	06-May-08	30-Oct-08	1126145.53	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:45 PM	

+="CN88323"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	307121.41	=""	="SUN MICROSYSTEMS"	05-Jun-08 01:46 PM	

+="CN88334"	"HMAS Betano 2008 EMA (ID)"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	02-May-08	30-Aug-08	1852651.37	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:47 PM	

+="CN88345"	" Provision of IV &V support for specialist OFT S System Team Leader as per Task Plan 05/"	="Defence Materiel Organisation"	05-Jun-08	="Vocational training"	06-May-08	30-Jul-09	457342.11	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:48 PM	

+="CN88365"	"DLSS CAB Process and Definition Improvement"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	12-Nov-07	15-Jun-09	318999.34	=""	="SMS CONSULTING GROUP LIMITED"	05-Jun-08 01:51 PM	

+="CN88368"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	30-Jun-12	2457536.05	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:51 PM	

+="CN88369"	"MARINE DIESEL"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	07-Feb-08	21-May-08	1686835.35	=""	="ACCOUNTS RECEIVABLE ADMINISTRATOR"	05-Jun-08 01:51 PM	

+="CN88380"	"PURCHASE OF BREAKDOWN SPARES IAW TLS CONTRACT 338482"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	02-Jun-08	31-Dec-11	300835.50	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:53 PM	

+="CN88384"	"Maintenance Contract for PC9/A Base Payments V310152"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	12-Nov-07	31-May-13	4990514.17	=""	="AIRFLITE PTY LTD"	05-Jun-08 01:53 PM	

+="CN88385"	"MHC IN SERIVE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	30-Jun-08	2214334.91	=""	="THALES AUSTRALIA"	05-Jun-08 01:54 PM	

+="CN88387-A1"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-May-12	25753183.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:54 PM	

+="CN88399"	"LEP TEANOAI Spares and Repair Parts Costs"	="Defence Materiel Organisation"	05-Jun-08	="Commercial marine craft"	11-Feb-08	30-Jun-08	743027.93	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:55 PM	

+="CN88404"	"HMAS Tobruk Docking EMA 01/08"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	02-Jun-08	30-Jun-08	349030.95	=""	="FORGACS ENGINEERING PTY LTD"	05-Jun-08 01:56 PM	

+="CN88408"	"Acquiring 16 new vehicles to replace the current in service Trident fire trucks"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Nov-07	20-Nov-09	320199.80	=""	="ROSENBAUER INTERNATIONAL AG"	05-Jun-08 01:56 PM	

+="CN88415"	"FSS PALIKIR LEP"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	28-Apr-08	30-Jun-08	605000.00	=""	="ROSSHAVEN MARINE PTY LTD"	05-Jun-08 01:57 PM	

+="CN88420"	"Project SEA1428PH4 FY08 ESSM Buy"	="Defence Materiel Organisation"	05-Jun-08	="Missiles"	16-Nov-07	30-Jan-10	1463364.00	=""	="NATO SEASPARROW SURFACE MISSILE"	05-Jun-08 01:58 PM	

+="CN88421"	"Inteegrated Test and Training Facility (ITTF) Syst"	="Defence Materiel Organisation"	05-Jun-08	="Industrial Production and Manufacturing Services"	29-May-08	01-Nov-09	457954.82	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88423"	"Contractor Services"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	03-Jun-08	30-Sep-08	304480.00	=""	="HMTC PTY LTD"	05-Jun-08 01:58 PM	

+="CN88424"	"ISS MINI-TYPHOON/TOPLITE EOS SYSTEMS  P5031-001-2 TCA TASK NO T0072. IAW CONTRACT NO ANZAC 01/07"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-Dec-07	30-Aug-11	5366503.86	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:58 PM	

+="CN88425"	"PROCUREMENT OF QUANTITY 25 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	14-Dec-07	03-Mar-08	2308102.23	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:58 PM	

+="CN88450"	"Contracting Support for TFSPO Contracting Act"	="Defence Materiel Organisation"	05-Jun-08	="Office supplies"	09-May-08	31-Mar-09	367857.38	=""	="MINTER ELLISON"	05-Jun-08 02:01 PM	

+="CN88452"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND COND OFFER JFLA MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	09-May-08	30-May-08	15755000.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88455"	"TDS Replacements"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	09-May-08	23-Jun-08	654881.70	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 02:02 PM	

+="CN88456"	"Engineering Suport Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft master control systems"	09-May-08	30-Jun-09	330395.00	=""	="NOVA DEFENCE"	05-Jun-08 02:02 PM	

+="CN88460"	"Portable Tracking Range Set to Work"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	30-Jun-08	409409.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	05-Jun-08 02:02 PM	

+="CN88469"	"Data Recording Modules for CATM Missiles"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Jun-09	2038643.82	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:03 PM	

+="CN88475-A1"	"Project Management, Project works as required for HMAS CANBERRA for its subsequent use as a dive wreck"	="Defence Materiel Organisation"	05-Jun-08	="Project management"	13-May-08	31-Mar-09	6120833.71	=""	="BIRDON MARINE PTY LTD"	05-Jun-08 02:04 PM	

+="CN88480"	"BioThrax Anthrax Vaccine"	="Defence Materiel Organisation"	05-Jun-08	="Emergency and field medical services products"	13-May-08	16-Jun-08	366259.10	=""	="EMERGENT BIODEFENSE OPERATIONS"	05-Jun-08 02:05 PM	

+="CN88491"	"UHFMILSATCOM"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	12-May-08	30-Oct-08	372429.20	=""	="SPIRIT RIVER PTY LTD"	05-Jun-08 02:06 PM	

+="CN88496"	"MACHINE GUN SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	13-May-08	03-Jan-09	489074.49	=""	="FN HERSTAL SA"	05-Jun-08 02:07 PM	

+="CN88500"	"HMAS Kanimbla Major Docking 08"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	25-Sep-08	12083495.17	=""	="FORGACS ENGINEERING PTY LTD"	05-Jun-08 02:07 PM	

+="CN88482"	"Aircraft Engine spares: 2840-01-130-1468, Diffuser, qty 6."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-Apr-08	06-May-08	916165.97	=""	="asia pacific aerospace"	05-Jun-08 02:07 PM	

+="CN88503"	"Acquisition of CATM Forebodies & additional spares"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Dec-09	2837212.28	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:07 PM	

+="CN88514"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS INTO RAAF BASES."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	07-May-08	30-May-08	869000.00	=""	="SHELL CO OF AUSTRALIA LTD"	05-Jun-08 02:09 PM	

+="CN88529"	"Quantity of SDVs' for Special Forces"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	23-May-08	351444.50	=""	="SECURE SYSTEMS LTD"	05-Jun-08 02:11 PM	

+="CN88533"	"Simulator Upgrade - Advanced Gunnery Training syst"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	02-Feb-09	2793941.70	=""	="SYDAC PTY LTD"	05-Jun-08 02:11 PM	

+="CN88537"	"WA Periscope Workshop-Activity 09-Clean Room Advanced Equipment (High)"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jan-09	429972.91	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88556"	"This Purchase Order is raised under CAPO AASPO Advanced Systems for the Aircraft Electrical Load"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	09-May-08	19-Dec-08	385445.01	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 02:14 PM	

+="CN88558"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	327450.30	=""	="NOVA AEROSPACE"	05-Jun-08 02:14 PM	

+="CN88561"	"Purchase of Qty rotary Joints"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace location and navigation systems and components"	09-May-08	08-Jan-09	359701.14	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:14 PM	

+="CN88562"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	09-May-08	31-Oct-08	312372.18	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:15 PM	

+="CN88567"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	5456700.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:15 PM	

+="CN88585"	"Tenix Contract W480539 CCP35"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	08-May-08	30-Oct-10	11194413.61	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88586"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	10656600.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:17 PM	

+="CN88587"	"aircraft engine spares:2840-01-170-7041, Case, gas, Qty 5."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-Apr-08	06-May-08	357500.00	=""	="asia pacific aerospace"	05-Jun-08 02:19 PM	

+="CN88594"	"Supply of WAN accelerator devices."	="Australian Federal Police"	05-Jun-08	="Computer services"	01-Jun-08	31-May-11	613141.90	="RFT 4-2008"	="XSI DataSolutions Pty Ltd"	05-Jun-08 02:41 PM	

+="CN88623-A2"	"Helping children with autism - DEEWR initiatives"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	22-Apr-08	28-Feb-12	22867292.48	="PRN17700"	="AUTISM SPECTRUM AUSTRALIA (ASPECT)"	05-Jun-08 03:08 PM	

+="CN88632"	"Study on employment outcomes five years after graduation from university"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	09-May-08	01-Jun-09	300151.00	="PRN17984"	="AUST COUNCIL FOR EDUC RESEARCH"	05-Jun-08 03:10 PM	

+="CN88634"	"An Even Start- National Tuition Program Program Administrator Services ACT"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	14-May-08	31-Mar-09	912982.00	="PRN17026"	="ACT DEPARTMENT OF EDUCATION AND TRAINING"	05-Jun-08 03:11 PM	

+="CN88635-A1"	"An Even Start- National Tuition Program Program Administrator Services WA Catholic Sector"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	26-May-08	31-Mar-09	942948.00	="PRN17026"	="CATHOLIC EDUCATION OFFICE OF"	05-Jun-08 03:12 PM	

+="CN88636-A1"	"An Even Start- National Tuition Program Program Administrator Services - QLD Government"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	26-May-08	31-Mar-09	17455130.00	="PRN17026"	="EDUCATION QUEENSLAND"	05-Jun-08 03:12 PM	

+="CN88639"	"An Even Start- National Tuition Programme Program Administrator - QLD Catholic Sector"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	09-May-08	01-Jul-09	2236203.00	="PRN17026"	="QLD CATHOLIC EDUCATION COMM."	05-Jun-08 03:12 PM	

+="CN88641"	"An Even Start- National Tuition Programme Program Administrator Services Tasmania"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	31-Mar-09	2178754.00	="PRN17026"	="DEPT OF EDUCATION TASMANIA"	05-Jun-08 03:12 PM	

+="CN88643"	"An Even Start- National Tuition Program Program Administrator Services - Queensland"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	14-May-08	31-Mar-09	1416760.00	="PRN17026"	="INDEPENDENT SCHOOLS QUEENSLAND"	05-Jun-08 03:12 PM	

+="CN88644"	"An Even Start- National Tuition Program Program Administrator Services - WA"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	31-Mar-09	655275.00	="PRN17026"	="ASSOCIATION OF INDEPENDENT SCHOOLS"	05-Jun-08 03:12 PM	

+="CN88645-A2"	"An Even Start- National Tuition Program Program Administrator Services - WA"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	20-May-08	31-Mar-09	6182761.00	="PRN17026"	="EDUCATION DEPARTMENT OF WESTERN"	05-Jun-08 03:12 PM	

+="CN88647-A1"	"An Even Start - National Tuition Programme Program Administrator - NSW Independent Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	15-Apr-08	15-Jun-09	422603.54	="PRN17026"	="Association of Independent Schools"	05-Jun-08 03:13 PM	

+="CN88650-A2"	"Longitudinal Study of Australian Youth Analytical Programme"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Strategic planning consultation services"	29-Jun-07	30-Jun-13	5932987.68	="PRN12913"	="NCVER"	05-Jun-08 03:14 PM	

+="CN88699"	"POC: Kim Malafant 02 6127 7166 Quotation: JC280406"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	02-Jun-08	1741905.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:48 PM	

+="CN88721"	"CONTACT TONY BUTLER 08 8935 4625."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	12-May-08	30-Jun-08	692000.00	=""	="GUSHER PTY LTD"	05-Jun-08 04:51 PM	

+="CN88731"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	11-Dec-08	619496.90	=""	="PROJECT OUTCOMES PTY LTD"	05-Jun-08 04:52 PM	

+="CN88734"	"SUBSCRIPTION TO ELECTRONIC DATABASE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	14-May-08	399390.71	=""	="FORECAST INTERNATIONAL INC."	05-Jun-08 04:52 PM	

+="CN88761"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE. HEAD CONTRACTOR PACKAGE 2-ABIGROUP."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-09	55780670.00	=""	="ABIGROUP CONTRACTORS PTY LTD"	05-Jun-08 04:57 PM	

+="CN88820"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	10-Jun-08	929610.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88861"	"Transmission Services"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Jun-11	13385018.90	=""	="TELSTRA"	05-Jun-08 05:02 PM	

+="CN88881"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Nov-08	331765.50	=""	="NOVA AEROSPACE"	05-Jun-08 05:03 PM	

+="CN88882"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE. HEAD CONTRACT PACKAGE 2 T  &  C."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-09	34798274.50	=""	="THOMAS & COFFEY LTD"	05-Jun-08 05:03 PM	

+="CN88902"	"AIR CHTR EX PITCH BLACK"	="Department of Defence"	05-Jun-08	="Aircraft"	19-May-08	29-Jun-08	600000.01	=""	="INDEPENDENT AVIATION PTY LTD"	05-Jun-08 05:04 PM	

+="CN88904"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES TVL - HEAD CONTRACTOR (ABIGROUP)."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	14690252.50	=""	="ABIGROUP CONTRACTORS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88922"	"AIR 8000 PASE 3- HEAVY AIR LIFT (HAL) FACILITIES. DAR - HEAD CONTRACTOR (JHG)"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	31546902.20	=""	="JOHN HOLLAND PTY LTD"	05-Jun-08 05:05 PM	

+="CN88935"	"POC: K.Malafant"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	06-Jun-08	899430.40	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:06 PM	

+="CN88937"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	21-May-08	468678.10	=""	="ORACLE CORPORATION AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88949"	"SPRINKLER HEAD REPLACEMENT CONTRACT STH QLD OVER 200 HEAD BUILDINGS"	="Department of Defence"	05-Jun-08	="Fire protection"	21-May-08	30-Jun-08	549380.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:06 PM	

+="CN88954"	"CAIRNS NAVY LEAGUE INC."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	573000.00	=""	="CAIRNS NAVY LEAGUE INC"	05-Jun-08 05:06 PM	

+="CN88959"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	2746481.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88960"	"NQ1736 NQ Termite and Pest Control."	="Department of Defence"	05-Jun-08	="Environmental management"	08-May-08	30-Jun-09	300000.19	=""	="SPOTLESS"	05-Jun-08 05:07 PM	

+="CN88968"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	24-Jun-08	6197400.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88969"	"REFORM DFR RELOCATION COSTS. THIS EXPENSE WAS ORIGINALLY GOING TO BE PAID MONTH"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	4605553.08	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88973"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	22-May-08	390577.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	05-Jun-08 05:07 PM	

+="CN88975"	"REFORM DFR CONTRACT COSTS. THIS PURCHASE ORDER REPRESENTS THE ADDITIONAL COST"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	9938925.70	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88987"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Apr-09	400826.25	=""	="KW CONSULTING PTY LTD"	05-Jun-08 05:08 PM	

+="CN88989"	"POC:Owen Keane 02 6127 7170 Quotation: F-AU-145155-B"	="Department of Defence"	05-Jun-08	="Hardware"	19-May-08	12-Jun-08	868534.84	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:08 PM	

+="CN88995"	"LIA SMOKE DETECTION & EMERGENY LIGHTING BULIMBA"	="Department of Defence"	05-Jun-08	="Fire protection"	19-May-08	30-Jun-08	864383.36	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:08 PM	

+="CN88999"	"ENHANCED LANDFORCE - STAGE 1 BENNETT DESIGN - PACKAGE 4, SASR WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-09	394031.00	=""	="BENNETT DESIGN PTY LTD"	05-Jun-08 05:08 PM	

+="CN89010"	"MONITORING DEVICE"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	20-May-08	372009.00	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	05-Jun-08 05:09 PM	

+="CN89028"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	03-Jun-08	413160.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89031"	"DETAILED STRUCTURAL ASSESSMENT REPORT - POINT WILS (PWEA) REMEDIATION PROJECT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	328900.00	=""	="GHD PTY LTD"	05-Jun-08 05:10 PM	

+="CN89041"	"NT1645 Regional Fire Management Program"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	30-Jun-08	588005.00	=""	="ASSET SERVICES"	05-Jun-08 05:10 PM	

+="CN89047"	"PABX Systems"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	16-Jun-08	572268.29	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89052"	"TRAINING"	="Department of Defence"	05-Jun-08	="Specialised educational services"	20-May-08	20-May-08	8600958.00	=""	="RECEIVER GENERAL FOR CANADA"	05-Jun-08 05:11 PM	

+="CN89059"	"Professional Services"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	07-May-08	01-May-09	4391785.20	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:11 PM	

+="CN89130"	"Imagery Package"	="Department of Defence"	05-Jun-08	="Software"	07-May-08	30-May-08	350381.90	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:14 PM	

+="CN89190"	"SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	09-May-08	30-Jun-09	414950.58	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89204"	"S5272, WR 300077434. World Youth Day 2008 is an ev Defence, provide tented accommodation"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	426065.74	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89286"	"ENHANCED LANDFORCE - STAGE 1 SKM - PACKAGE 4, PUCKAPUNYAL WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-09	1588085.40	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:21 PM	

+="CN89309"	"NQ2194 TFTA FIRE MANAGEMENT 2008 (07/08)"	="Department of Defence"	05-Jun-08	="Environmental management"	14-May-08	30-Jun-08	377650.92	=""	="SPOTLESS"	05-Jun-08 05:22 PM	

+="CN89322"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	1111888.80	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89333"	"POC: B.Searle 02 6127 7375 Quotations CCPQ6111  &  CCPQ5970"	="Department of Defence"	05-Jun-08	="Hardware"	15-May-08	12-Jun-08	842146.92	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:23 PM	

+="CN89342"	"PSP SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	507131.48	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:24 PM	

+="CN89349"	"ENHANCED LANDFORCE - STAGE 1"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	09-May-08	30-Jun-09	2097785.80	=""	="S2F PTY LTD"	05-Jun-08 05:24 PM	

+="CN89352"	"ENHANCED LANDFORCE - STAGE 1 SKM - PACKAGE 4, SIAD WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	09-May-08	30-Jun-09	1586481.60	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:24 PM	

+="CN89384"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-ENVIRONMENTAL ASSESSMENT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-09	331933.80	=""	="EARTH TECH ENGINEERING PTY LTD"	05-Jun-08 05:26 PM	

+="CN89390"	"RV0542-RGN-RBW Replace Air-Cond SPS Trg Facility 223"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-09	1155000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89529"	"HMAS STIRLING - NAVY PERSONNEL  &  TRAINING CE SSS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	429000.00	=""	="CAMERON CHISHOLM & NICOL (WA)"	05-Jun-08 05:35 PM	

+="CN89540"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	07-Feb-11	308706.20	=""	="CENTRE FOR MILITARY AND VETERANS"	05-Jun-08 05:36 PM	

+="CN89546"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-10	619822.50	=""	="ASG GROUP LIMITED"	05-Jun-08 05:36 PM	

+="CN89556"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-10	777326.00	=""	="ASG GROUP LIMITED"	05-Jun-08 05:37 PM	

+="CN89580"	"DTS WEBSITE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	324500.00	=""	="VISUAL JAZZ PTY LTD"	05-Jun-08 05:38 PM	

+="CN89591"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-May-09	319912.18	=""	="RPV CONSULTANTS"	05-Jun-08 05:39 PM	

+="CN89615"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	25-Jun-09	334686.03	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 05:40 PM	

+="CN89619"	"Outsource Chart Production"	="Department of Defence"	05-Jun-08	="Business administration services"	30-May-08	31-Dec-08	957281.44	=""	="HSA SYSTEMS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89622"	"S4930, WR 300083119. HMAS Watson - Site  Security Installation. Upgrade existing security camera and"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	23-May-08	30-Jun-08	317654.81	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:41 PM	

+="CN89623"	"Garden Island Significant FP&E Items 07/08"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	30-May-08	30-Jun-08	412500.00	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89634"	"Vital Planning and Analysis Version 1.1"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	23-May-08	20-Jun-09	557357.49	="2008-1016537"	="CSC AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89652"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	31-May-09	309566.40	=""	="CONQUEST ENTERPRISE"	05-Jun-08 05:43 PM	

+="CN89672"	"ROCKINGHAM-ANZSPO-OFFICE REFURBISHMENT. D & C CONTRACTOR."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-09	3533389.20	=""	="THOMAS & COFFEY LTD"	05-Jun-08 05:44 PM	

+="CN89681"	"Canteen Services"	="Department of Defence"	05-Jun-08	="Snack foods"	17-Apr-08	30-Jun-08	710129.00	=""	="FRONTLINE DEFENCE SERVICE"	05-Jun-08 05:45 PM	

+="CN89707"	"Systems Support"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	510408.02	=""	="WHIZDOM PTY LTD"	05-Jun-08 05:46 PM	

+="CN89713"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Jul-05	31-Aug-08	2373153.97	=""	="TELSTRA"	05-Jun-08 05:47 PM	

+="CN89777"	"hangar Works"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	30-May-08	30-Jun-08	506000.00	=""	="PA & CI MARTIN PTY LTD"	05-Jun-08 05:51 PM	

+="CN89787"	"CMS Mangaement Fees"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	2980132.93	=""	="ASSET SERVICES"	05-Jun-08 05:51 PM	

+="CN89797"	"DFRC-REFURB 01/08. SCHIAVELLO HAS BEEN SELECTD TO THE NATIONAL ROLLOUT OF THE DFRC REFURBUSHMENT. TH"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	22-Apr-08	30-Jun-08	2530000.00	=""	="SCHIAVELLO PROJECT SOLUTIONS P/L"	05-Jun-08 05:52 PM	

+="CN89799"	"30,000 YOU DAY BASEBALL CAPS, AS PER REQUEST OF DG EMBROIDERED WITH DEFENCE SERVICE BRANDING. THESE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	03-Jun-08	30-Jun-08	716122.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:52 PM	

+="CN89817"	"HQJOC PROJECT-TENIX DATAGATE-USB MCS UNITS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	395191.50	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:53 PM	

+="CN89823"	"MEDIA EDUCATION TRAINING"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	895838.89	=""	="UNIVERSAL MCCANN"	05-Jun-08 05:53 PM	

+="CN89837"	"RECRUITING FEES"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-Apr-08	31-Jan-09	872810.93	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:54 PM	

+="CN89851"	"GAS SUPPLY"	="Department of Defence"	05-Jun-08	="Utilities"	03-Jun-08	30-Sep-08	460000.01	=""	="TRU ENERGY PTY LTD"	05-Jun-08 05:55 PM	

+="CN89935"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	308616.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:00 PM	

+="CN89945"	"Laptops Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	1207469.91	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 06:01 PM	

+="CN89951"	"H011 MESS UPGRADE - GALLIPOLI BARRACKS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	1629479.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 06:01 PM	

+="CN89963"	"TIED WORK"	="Department of Defence"	05-Jun-08	="Legal services"	10-Apr-08	30-Jun-09	498839.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:02 PM	

+="CN89969"	"TRANSMISSION SERVICES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	421850.00	=""	="TELSTRA"	05-Jun-08 06:03 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val30000to40000.xls
@@ -1,1 +1,228 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87434"	"Recruitment Services - Manager, Property & Security"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	14-May-08	30-Jun-08	40000.00	="07/369-00"	="Hays Personnel Services (Australia) Pty ltd"	03-Jun-08 09:33 AM	

+="CN87449"	"mailing"	="Department of the House of Representatives"	03-Jun-08	="Mailing services"	01-May-08	30-May-08	39050.00	=""	="Canprint Communications Pty Ltd"	03-Jun-08 10:26 AM	

+="CN87455"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	12-Jun-08	37300.98	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	03-Jun-08 10:41 AM	

+="CN87464"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	33594.00	="nil"	="AFW TECHNOLOGIES PTY LTD"	03-Jun-08 10:42 AM	

+="CN87471"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-Sep-08	35000.00	="."	="CHANDLER MACLEOD CONSULTANTS LTD"	03-Jun-08 10:43 AM	

+="CN87475"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	05-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87476"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	08-Jun-08	07-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	03-Jun-08 10:44 AM	

+="CN87483"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	40000.00	="N/A"	="PROTIVITI PTY LTD"	03-Jun-08 10:45 AM	

+="CN87501"	"Staff Redeployment Services"	="Department of Human Services"	03-Jun-08	="Employee assistance programs"	19-May-08	30-Jun-08	33000.00	=""	="Australian Public Service Commission"	03-Jun-08 11:48 AM	

+="CN87509"	"hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	03-Jun-08	="Hotels and lodging and meeting facilities"	03-May-08	08-May-08	38498.46	=""	="The Sebel Manly Beach"	03-Jun-08 11:59 AM	

+="CN87530"	"Recruitment Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	28-May-08	20-Dec-08	34259.35	=""	="DFP RECRUITMENT SERVICES"	03-Jun-08 02:34 PM	

+="CN87544"	"Information Services"	="Child Support Agency"	03-Jun-08	="Information services"	15-May-08	15-Jul-08	33000.00	=""	="REGISTRIES LIMITED"	03-Jun-08 02:36 PM	

+="CN87580"	"Education program - Guest Presenter- Anti-doping program"	="Australian Sports Anti-Doping Authority (ASADA)"	03-Jun-08	="Educational incentives"	21-Apr-08	04-Jun-08	30000.00	=""	="Point 1 Pty Ltd"	03-Jun-08 03:20 PM	

+="CN87664"	"Performance Support Movies"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	36000.00	=""	="Tactics Consulting Pty Ltd"	04-Jun-08 11:44 AM	

+="CN87667"	"Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	39897.00	=""	="LIQUID LEARNING"	04-Jun-08 11:45 AM	

+="CN87735"	"Second hand furniture for Cosmo Building Fitout"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Furniture and Furnishings"	01-May-08	01-May-08	36360.00	=""	="EX-GOVERNMENT FURNITURE"	04-Jun-08 11:59 AM	

+="CN87738"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	31680.00	=""	="PEOPLEBANK"	04-Jun-08 12:00 PM	

+="CN87743"	"Provision of IT Services CN0604"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	05-May-08	30-Jun-08	33440.00	=""	="Ridgeline Solutions Australia Pty L"	04-Jun-08 12:01 PM	

+="CN87746"	"Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	34364.00	=""	="INTANDEM"	04-Jun-08 12:02 PM	

+="CN87748"	"Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	34925.00	=""	="TNS Social Research"	04-Jun-08 12:02 PM	

+="CN87756"	"FACSIA  Paper Supplies Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	02-May-08	31-May-08	31380.14	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87759"	"FACSIA National Office Stores Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Office supplies"	26-May-08	31-May-08	37916.50	=""	="Corporate Express Australia"	04-Jun-08 12:04 PM	

+="CN87766"	"Property Lease BNE June08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	01-Jun-08	01-Jun-08	35134.47	=""	="ARIA Property International"	04-Jun-08 12:06 PM	

+="CN87769"	"Paymnt Property/Lease COL0500/2401-2 June 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	01-Jun-08	01-Jun-08	32026.20	=""	="ECS Property Group"	04-Jun-08 12:06 PM	

+="CN87772"	"The Provision of Call Centre and Reporting Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	01-May-08	30-May-08	40000.00	=""	="Hamilton James and Bruce Pty Ltd"	04-Jun-08 12:07 PM	

+="CN87773"	"Provision of ICT Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	01-May-08	30-Jun-08	34144.00	=""	="Talent International (ACT)"	04-Jun-08 12:07 PM	

+="CN87775"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	14-May-08	30-Jun-08	33999.45	=""	="DELL AUSTRALIA PTY LIMITED"	04-Jun-08 12:08 PM	

+="CN87778"	"Additional hard disk storage for SAN in NO."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Computer services"	14-May-08	30-May-08	39558.20	=""	="EMC Global Holdings Company"	04-Jun-08 12:09 PM	

+="CN87782"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	33000.00	=""	="KJ ROSS & ASSOCIATES"	04-Jun-08 12:09 PM	

+="CN87788"	"Two Day Constitutional Redesign Workshops in Alice Springs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	16-May-08	13-Jun-08	35000.00	=""	="BURDON TORZILLO"	04-Jun-08 12:11 PM	

+="CN87790"	"Toyota Model 7FBE15 Fork lift Truck"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Motor vehicles"	16-May-08	16-May-08	38478.00	=""	="Toyota Material Handling"	04-Jun-08 12:12 PM	

+="CN87795"	"Contractual Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Sep-08	34070.04	=""	="LORRIE GRAHAM PHOTOGRAPHY PTY LTD"	04-Jun-08 12:13 PM	

+="CN87803"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	13-May-08	30-Jun-08	35872.58	=""	="TWINHEAD - Twin Resources PTY LTD"	04-Jun-08 12:14 PM	

+="CN87814"	"Performance testing of various applications within applications development branch"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Information services"	13-May-08	30-Jun-08	32835.00	=""	="RPM SOLUTIONS PTY LTD"	04-Jun-08 12:15 PM	

+="CN87833"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Legal services"	11-Jan-08	11-Jan-08	37450.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	04-Jun-08 12:42 PM	

+="CN87878"	"Printing of NAT15634-07.2008 A4 Brochures. Qty: 900,000"	="Australian Taxation Office"	04-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jun-08	31-Jul-08	36399.00	=""	="Canprint Communications"	04-Jun-08 04:40 PM	

+="CN87882"	"GLOVES, COMBAT. SAGE GREEN"	="Defence Materiel Organisation"	04-Jun-08	="Protective gloves"	04-Jun-08	08-Aug-08	33033.00	=""	="SCANDEX"	04-Jun-08 05:33 PM	

+="CN87908"	"Lease Motor Vehicle - YEK70J Running Cost"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	08-Nov-06	08-Nov-08	32645.80	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:15 AM	

+="CN87910"	"Conduct of Advanced Maritime Security Audit Course ISO 28000"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security and personal safety"	13-May-08	31-May-08	40000.00	=""	="Asia Pacific Maritime Institute Pty"	05-Jun-08 10:15 AM	

+="CN87914"	"TASKEY Annual Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Software"	28-May-08	28-Jun-09	37115.00	=""	="TASKey Pty Ltd"	05-Jun-08 10:16 AM	

+="CN87920"	"Lease of motor vehicle YCF77R Running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	01-Aug-07	31-Jul-09	30123.50	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87921"	"Lease of Motor Vehicle - YEF98Z Running Cost for Vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	15-Nov-07	14-May-09	31460.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87924"	"24 month vehicle lease arrangement 24 month vehicle lease arrangement"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	30-May-07	29-May-09	30547.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87928"	"Lease YEX 02U Lease YEX 02U"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	14-May-07	22-May-09	32761.08	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87929"	"Lease motor vehcile - YFA 93K Lease motor vehcile - YFA 93K"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	22-Jun-07	01-Jul-09	37785.25	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87989"	"2 Way Combiner/Divider, 20-500HZ 500W CW /Freight"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	16-May-08	30-Jun-08	36078.90	=""	="A J DISTRIBUTORS PTY LTD"	05-Jun-08 01:07 PM	

+="CN87992"	"Fitout to Buiding B1 Victoria Barracks"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	31-May-08	37047.43	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:07 PM	

+="CN88007"	"Toyota Hilux 4x2 D/C UTE B/B(UM5) Qty1"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	21-Nov-08	36337.21	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:09 PM	

+="CN88010"	"APLCRATES Enhancements"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	19-May-08	25-Jun-08	37950.00	=""	="MWA SYSTEMS PTY LTD"	05-Jun-08 01:09 PM	

+="CN88013"	"MAP Data Support"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	31-Oct-08	33000.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 01:09 PM	

+="CN88028"	"Provision of services to deliver Strategic Recruitment Plan to Land Systems Division."	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	19-May-08	13-Jun-08	39400.00	="2007/1102053"	="HUDSON GLOBAL RESOURCES (AUST)"	05-Jun-08 01:11 PM	

+="CN88040"	"Use of Exisitng ASP Contract  - Bio-Reactor Sewage Treatment Plant Parts"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	14-May-08	30-Jun-08	36074.95	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:13 PM	

+="CN88050"	"Develop SOR to engage a Cpability Partner for EODi"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	33515.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	05-Jun-08 01:14 PM	

+="CN88055"	"Repair damaged Coax cable for HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	34726.82	=""	="INTELLIGENT TECHNICAL SERVICE"	05-Jun-08 01:14 PM	

+="CN88065"	"Provide MSA review and development of KPI's"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	35454.73	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:16 PM	

+="CN88069"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	36300.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:16 PM	

+="CN88077"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	36525.04	=""	="KVM AUSTRALIA PTY LTD"	05-Jun-08 01:17 PM	

+="CN88108"	"SML firemian system rectification"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	15-May-08	16-May-08	35790.27	=""	="G A GLANVILLE & CO"	05-Jun-08 01:21 PM	

+="CN88150"	"NORM FAMP 02/08 7 - 25 JULY 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	29-Aug-08	33392.62	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88185"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Jun-08	30301.67	=""	="THALES AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88189"	"Deveop Installation Design Package- Install Port Waist RHIB Bracket- HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	15-Jul-08	32082.24	=""	="THALES AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88204"	"PC-9 SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	20-May-08	12-Jan-09	30914.70	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 01:32 PM	

+="CN88207"	"BCSS Support CD"	="Defence Materiel Organisation"	05-Jun-08	="Software"	21-May-08	30-Jun-08	30534.90	=""	="THALES AUSTRALIA"	05-Jun-08 01:32 PM	

+="CN88208"	"1405 Consultancy for RAWS (RIES) analysis"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Jul-08	33924.01	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:33 PM	

+="CN88270"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	16-Apr-08	19-Jan-09	37562.41	=""	="L3 COMMUNICATIONS ELAC NAUTIK GMBH"	05-Jun-08 01:40 PM	

+="CN88274"	"SDSS IT Controls Framework Design Effectiveness Review"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	27-May-08	15-Jun-08	30800.00	=""	="ERNST & YOUNG"	05-Jun-08 01:40 PM	

+="CN88275"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-Apr-08	02-Jun-08	38452.19	=""	="THALES AUSTRALIA"	05-Jun-08 01:40 PM	

+="CN88317"	"Provision of one (1) SIMLOX Software Licence"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	30-Jun-08	31900.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:45 PM	

+="CN88354"	"Defence travel on DMO business"	="Defence Materiel Organisation"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	03-Jun-08	30-Jun-09	30000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:50 PM	

+="CN88375"	"GST Payment for 9 Talin Units and 60 VMS Units"	="Defence Materiel Organisation"	05-Jun-08	="Taxation"	19-May-08	30-May-08	32988.78	=""	="HONEYWELL AEROSPACE ELECTRONIC SYST"	05-Jun-08 01:52 PM	

+="CN88392"	"PYLON AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-Jan-08	01-Aug-08	31163.38	=""	="HELIPRO COMPONENT SERVICES"	05-Jun-08 01:54 PM	

+="CN88403"	"Design development of regional interface contoller cell computers."	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	26-May-08	11-Jul-08	36698.29	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:56 PM	

+="CN88405"	"Repair of Test Set Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	10-Mar-08	01-Sep-08	35826.90	=""	="PARTECH SYSTEMS PTY LTD"	05-Jun-08 01:56 PM	

+="CN88427"	"COMBAT SURVIVAL VEST"	="Defence Materiel Organisation"	05-Jun-08	="Safety apparel"	07-May-08	10-Oct-08	38151.99	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	05-Jun-08 01:58 PM	

+="CN88446"	"FLUID CONTAM MONITOR 37MM MCE 0.8UM"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-May-08	25-May-08	34524.94	=""	="MILLIPORE CORPORATION"	05-Jun-08 02:01 PM	

+="CN88459"	"Installation and Set to Work of STS Reference Set Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction and Maintenance Services"	09-May-08	30-Jun-08	36461.29	=""	="THALES UNDERWATER SYSTEMS P/L"	05-Jun-08 02:02 PM	

+="CN88471"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	13-May-08	34986.28	=""	="AMOG CONSULTING"	05-Jun-08 02:04 PM	

+="CN88476"	"Internal Audit Services"	="Defence Materiel Organisation"	05-Jun-08	="Accounting and auditing"	13-May-08	30-Jun-08	30000.00	=""	="COX & RELPH PTY LTD"	05-Jun-08 02:04 PM	

+="CN88507"	"Nexus configuration controller support"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	13-May-08	30-Jun-08	34556.01	=""	="NOVA AEROSPACE"	05-Jun-08 02:08 PM	

+="CN88518"	"Prototype of Seat - Chinook Seat"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft passenger restraints"	08-May-08	20-Jun-08	31357.80	=""	="EAST/WEST INDUSTRIES INC."	05-Jun-08 02:09 PM	

+="CN88522"	"TRANSPORTATION CHARGES"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	33000.00	=""	="WYNDHAM MARINE PTY LTD"	05-Jun-08 02:10 PM	

+="CN88536"	"DDP FOR LPA AMCO"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	06-Jun-08	38731.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 02:11 PM	

+="CN88541"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	31433.16	=""	="ZALLCOM PTY LTD"	05-Jun-08 02:12 PM	

+="CN88543"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	07-May-08	30-Jun-08	30386.52	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 02:12 PM	

+="CN88548"	"CABLE ASSY"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	08-May-08	01-Mar-09	34993.63	=""	="ROLLS - ROYCE PLC"	05-Jun-08 02:13 PM	

+="CN88564"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	09-May-08	15-May-08	37088.50	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:15 PM	

+="CN88568"	"p"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	04-Nov-08	35361.48	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88569"	"p"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	05-Oct-08	33067.86	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88571"	"Refurbishment of Enhanced Combat Body Armour"	="Defence Materiel Organisation"	05-Jun-08	="Personal safety and protection"	08-May-08	16-May-08	35915.22	=""	="HELLWEG INTERNATIONAL"	05-Jun-08 02:16 PM	

+="CN88576"	"IMTS Hardware"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	25-Jun-08	33856.04	=""	="ARION SYSTEMS PTY LTD"	05-Jun-08 02:16 PM	

+="CN88578"	"Audio Visual Equipment in New Building Conference Room and CBT Classroom"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	08-May-08	23-Jun-08	34263.90	=""	="PERTH BUILDING COMPANY PTY LTD"	05-Jun-08 02:16 PM	

+="CN88583"	"Course: Diploma in Project Management"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	08-May-08	23-May-08	37700.00	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 02:17 PM	

+="CN88620"	"Career Development Assessment Centre 2008"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Education and Training Services"	26-May-08	30-Jun-08	35475.00	="PRN19436"	="AUSTRALIAN PUBLIC SERVICE COMM"	05-Jun-08 03:06 PM	

+="CN88649"	"Career Advice Australia State Conference Video Proproduction"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	30-Jun-08	32967.00	="PRN19488"	="SILVERSUN PICTURES PTY LTD"	05-Jun-08 03:13 PM	

+="CN88656"	"HORIZONTAL SHAFT AS NSN 1620/010609033"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	08-Nov-08	38166.60	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:23 PM	

+="CN88659"	"DOOR, AIRCRAFT NSN 1560/000920386"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	24-Sep-08	35768.34	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:46 PM	

+="CN88662"	"SEAT, AIRCRAFT NSN 1680/006713837"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	14-Oct-08	39761.00	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:53 PM	

+="CN88674-A1"	" SUPPLY OF LIGHT, SLIT, OPHTHALMIC "	="Defence Materiel Organisation"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	03-Jun-08	31-Jul-08	35574.00	=""	="DEVICE TECHNOLOGIES"	05-Jun-08 04:21 PM	

+="CN88690"	"GPSL Residential 2, 2008"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-May-08	16-May-08	37560.00	=""	="UNIVERSITY HOUSE"	05-Jun-08 04:46 PM	

+="CN88692"	"Michael Dufty $58.35 p/hr 40 HRS PER WK Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	36456.77	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:47 PM	

+="CN88694"	"SINGLE LEAP PROJECT HOMEBUSH - DRN/DVN CABLING"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	30250.00	=""	="INTERACTIVE CABLING PTY LTD"	05-Jun-08 04:47 PM	

+="CN88695"	"SMART PROJECTOR AND ACCESSORIES"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	12-May-08	30-Jun-08	37511.69	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 04:47 PM	

+="CN88696"	"container hire for Southern Reach 01/08"	="Department of Defence"	05-Jun-08	="Containers and storage"	12-May-08	16-Jul-08	37735.50	=""	="SPENCER GULF CONTAINERS"	05-Jun-08 04:47 PM	

+="CN88704"	"WD008 - Validated final 1A for web site and conducting skill transfer activities to Tax Office staff."	="Australian Taxation Office"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	37499.00	=""	="Stamford Interactive Pty Ltd"	05-Jun-08 04:50 PM	

+="CN88733"	"PROVISION OF 3 PSP CONTRACTORS ICT SERVICE SUPPORT 06 MAY 08 - 30 JUN 08"	="Department of Defence"	05-Jun-08	="Temporary personnel services"	14-May-08	30-Jun-08	33783.75	=""	="ICON RECRUITMENT"	05-Jun-08 04:52 PM	

+="CN88747"	"JPG PARTNERS PTY LTD PSP SERVICES SUPPORTING CAPAB REQUIREMENTS FOR SUPPORT BRANCH EXEC MAY08"	="Department of Defence"	05-Jun-08	="Management support services"	13-May-08	30-Jun-08	31680.00	=""	="JPG PARTNERS PTY LTD"	05-Jun-08 04:55 PM	

+="CN88768"	"Scientific Equiptment"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	16-May-08	37669.50	=""	="WARSASH SCIENTIFIC"	05-Jun-08 04:58 PM	

+="CN88782"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	21-May-08	30-Jun-08	38500.00	=""	="YTEK PTY LTD"	05-Jun-08 04:58 PM	

+="CN88811"	"IT ANALYSIS MRH 90 PROJECT"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	21-May-08	01-Sep-08	35000.00	=""	="ART OF JIMBO"	05-Jun-08 05:00 PM	

+="CN88827"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	35464.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88829"	"AGREEMENT Number:  2007/1111686/1"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	30-Aug-08	33000.00	=""	="UNIVERSITY OF MELBOURNE"	05-Jun-08 05:01 PM	

+="CN88830"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	13-May-08	16-Jun-08	32175.00	=""	="CENTRE STATE PRINTING"	05-Jun-08 05:01 PM	

+="CN88835"	"Portable projectors/lens"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	21-May-08	30-Jun-08	34358.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:01 PM	

+="CN88846"	"FIBRE NETWROK ANALYSER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	34826.46	=""	="PACIFIC DATACOM"	05-Jun-08 05:01 PM	

+="CN88849"	"FIBRE FUSION SPLICER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	31416.00	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:01 PM	

+="CN88868"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	20-May-08	30-Jul-08	33000.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	05-Jun-08 05:03 PM	

+="CN88873"	"HQJOC PROJECT-SPIRIT RIVER PTY LTD-CABLING SERVICE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-08	36058.00	=""	="SPIRIT RIVER PTY LTD"	05-Jun-08 05:03 PM	

+="CN88888"	"HIRING OF QUANTITY EQUIP FOR PITCHBLACK 21 MAY - 4 JULY 08"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	04-Jul-08	30266.50	=""	="TOP END SOUNDS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88893"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	19-May-08	30-Jul-08	33000.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	05-Jun-08 05:04 PM	

+="CN88894"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	30-Jun-08	39200.00	=""	="TREKKING PROMOTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88898"	"4 x B' Class Safes"	="Department of Defence"	05-Jun-08	="Containers and storage"	21-May-08	30-Jun-08	33018.92	=""	="DARWIN LOCK & KEY"	05-Jun-08 05:04 PM	

+="CN88924"	"TRAINING"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	31680.00	=""	="SPRINGSOURCE AUSTRALASIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88936"	"REHABILITATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	32000.00	=""	="REACT"	05-Jun-08 05:06 PM	

+="CN88939"	"GLASS DIVIDING WALL, CANUNGRA"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	08-May-08	30-Jun-08	39869.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:06 PM	

+="CN88941"	"DMO CORPORATE EMS MANAGEMENT REVIEW PROJECT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	31900.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	05-Jun-08 05:06 PM	

+="CN88942"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	32000.00	=""	="PREVENTIVE MEDICINE AND"	05-Jun-08 05:06 PM	

+="CN88944"	"Development and Partial Validation of LC_MS/MS"	="Department of Defence"	05-Jun-08	="Disease prevention and control"	16-May-08	30-Jun-08	39490.31	=""	="UNIQUEST PTY LTD"	05-Jun-08 05:06 PM	

+="CN88964"	"Security Services"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-May-08	30-Jun-08	33792.00	=""	="STRATSEC.NET"	05-Jun-08 05:07 PM	

+="CN88985"	"IT equipment - Storage & Backup"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	32275.91	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:08 PM	

+="CN89006"	"INTERNET AND DRN NETWORK UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	34343.10	=""	="PARTNER IT"	05-Jun-08 05:09 PM	

+="CN89038"	"IBM SERVER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	07-May-08	36958.90	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:10 PM	

+="CN89053"	"cable & outlets supply and fit"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	07-May-08	20-Jun-08	36260.40	=""	="NBC COMMUNICATIONS"	05-Jun-08 05:11 PM	

+="CN89076"	"RV0411 - RGN - EB47 Refurbish air conditioning controls system"	="Department of Defence"	05-Jun-08	="Project management"	07-May-08	30-Jun-09	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:12 PM	

+="CN89077"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	01-Oct-08	35096.00	=""	="WALTER TURNBULL PTY LTD"	05-Jun-08 05:12 PM	

+="CN89081"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	16-Jun-08	34950.30	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89092"	"SERVER RACK BUNDLE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	37656.72	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89122"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	36958.90	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:14 PM	

+="CN89126"	"MRH90 CONTRACTOR  COMPUTER SUPPORT"	="Department of Defence"	05-Jun-08	="Computer services"	21-May-08	01-Sep-08	35000.00	=""	="C & S COMPUTER SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89172"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	09-May-08	01-Jul-08	32000.00	=""	="KONEKT AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89186"	"LCD Monitors"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	30998.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:17 PM	

+="CN89220"	"David Longland, $56.65p/hr, 40 hrs p/w Extention of current PSP contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	35394.92	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 05:18 PM	

+="CN89223"	"purchase of multifunction devices"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	12-May-08	23-Aug-08	34771.00	=""	="TOSHIBA (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89226"	"POC: Owen Keane 02 6127 7179 Quotation: CCPQ5904"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	09-Jun-08	33661.74	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89235"	"ROAD CHTR OP SLIPPER MRE 4RAR"	="Department of Defence"	05-Jun-08	="Railway and tramway cars"	09-May-08	30-May-08	32291.40	=""	="ROD PILON TRANSPORT"	05-Jun-08 05:19 PM	

+="CN89236"	"NRE (Prog mgmt,dev,integration and testing)"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	31331.67	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	05-Jun-08 05:19 PM	

+="CN89256"	"NAVY ANNUAL"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	06-Jun-08	35986.50	=""	="CRAFT INPRINT GROUP"	05-Jun-08 05:20 PM	

+="CN89268"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	34320.00	=""	="CLAYTON UTZ"	05-Jun-08 05:20 PM	

+="CN89300"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	38500.00	=""	="EVOLUTION MULTIMEDIA"	05-Jun-08 05:22 PM	

+="CN89319"	"FURNITURE FOR BLDG 1. COFF'S HARBOUR"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	10-Jun-08	32087.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:23 PM	

+="CN89327"	"PABX SYSTEM"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	35418.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89330"	"Supply PABX System for Kogarah MUD CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	37974.86	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89331"	"IT RESEARCH  & CONSULTANCY SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	33000.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	05-Jun-08 05:23 PM	

+="CN89335"	"Supply of PABX System to Thursday CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	33438.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89343"	"CABLES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	09-May-08	30-Jun-08	35024.00	=""	="ILLAWARRA CABLE SERVICES"	05-Jun-08 05:24 PM	

+="CN89344"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	38500.00	=""	="ON SITE TECHNOLOGY PTY LTD"	05-Jun-08 05:24 PM	

+="CN89347"	"Supply a PABX System to ADI Myanbat Depot CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	35761.66	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:24 PM	

+="CN89355"	"Uhl VMM200 Measuring Microscope Main Unit"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	09-May-08	21-Jul-08	31220.20	=""	="MELLOR MICRONET PTY LTD"	05-Jun-08 05:24 PM	

+="CN89378"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	06-May-08	30-Jun-08	36179.01	=""	="DISPLAY BY DESIGN"	05-Jun-08 05:25 PM	

+="CN89391"	"ACCREDITATION SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-Aug-08	34554.78	=""	="C I T SOLUTIONS PTY LTD"	05-Jun-08 05:26 PM	

+="CN89392"	"RV0575 - RBW / KMA Provide an audit report on control cable network"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-08	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89393"	"SCHOLARSHIP CONTRIBUTION FOR EE KEN CHOONG. RESEAR CH AGREEMENT 2003/44110/7;IP 10/05"	="Department of Defence"	05-Jun-08	="Educational institutions"	06-May-08	30-May-08	35200.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:26 PM	

+="CN89413"	"VIDEO PRODUCTION"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	05-May-08	05-May-08	38500.00	=""	="DYNAMIC MEDIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89417"	"2nd MSA 30 Storage and additional storage unit"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	05-May-08	30-May-08	30250.00	=""	="PARTNER IT"	05-Jun-08 05:28 PM	

+="CN89421"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	31000.00	=""	="PORT AUGUST MILK VENDORS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89433"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	07-May-08	30-Jun-08	37620.00	=""	="AVANTI FITNESS"	05-Jun-08 05:29 PM	

+="CN89450"	"LOCKERS"	="Department of Defence"	05-Jun-08	="Containers and storage"	14-May-08	15-May-08	33220.00	=""	="BROWNBUILT"	05-Jun-08 05:30 PM	

+="CN89475"	"TOSHIBA ESTUDIO 232-23PPM-240V DEP B&W MFD C/P"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	16-May-08	30-May-08	34771.00	=""	="TOSHIBA AUST PTY LTD"	05-Jun-08 05:32 PM	

+="CN89477"	"Interface software"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	21-May-08	38465.56	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:32 PM	

+="CN89482"	"INSTALLATION OF COMMS & CABLING, BLD 343 RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	31-May-08	31317.00	=""	="NORTHERN TERRITORY COMMUNICATIONS"	05-Jun-08 05:32 PM	

+="CN89489"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-May-08	33921.80	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:32 PM	

+="CN89491"	"VEGETATION MANAGEMENT REVIEW - AUDIT CURRECT CONTRACTS"	="Department of Defence"	05-Jun-08	="Environmental management"	16-May-08	30-Jun-08	38500.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:33 PM	

+="CN89492"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	33000.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:33 PM	

+="CN89493"	"Renewal of Subscription"	="Department of Defence"	05-Jun-08	="Published Products"	16-May-08	30-Jul-09	38314.01	=""	="SPIE-THE INTL SOCIETY FOR"	05-Jun-08 05:33 PM	

+="CN89509"	"CMS-V8-LMS SCADAS eight channel V/ICP/TEDS Mobile eight channel V/ICP/TEDS input module, LMS softwar"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	03-Jun-08	31075.00	=""	="DAVIDSON MEASUREMENT"	05-Jun-08 05:34 PM	

+="CN89515"	"Preparation & Delivery of Strategy Conference"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-May-08	16-May-08	33376.81	=""	="CALM CONSULTING PTY LTD"	05-Jun-08 05:34 PM	

+="CN89519"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	16-May-08	16-May-08	34000.00	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	05-Jun-08 05:34 PM	

+="CN89532"	"meat"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	06-May-08	31-Dec-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:35 PM	

+="CN89537"	"fruit & vegs"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	06-May-08	31-Dec-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:36 PM	

+="CN89542"	"Supply a PABX System for Bamagahas CIOG 63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	31853.36	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89554"	"RESEARCH AGREEMENT: SKELETAL MUSCLE MODIFICATIONS WITH EXERCISE & ERGOGENIC SUPPLEMENTS"	="Department of Defence"	05-Jun-08	="Military science and research"	15-May-08	28-Feb-09	35000.00	=""	="UNIVERSITY OF MELBOURNE"	05-Jun-08 05:37 PM	

+="CN89569"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	33052.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89586"	"Dell computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	37448.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:39 PM	

+="CN89602"	"EPC-ESL-LII Server Maintenance & Designer Maintena nce"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	31-Mar-09	34232.27	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:40 PM	

+="CN89614"	"Supply PABX System for Sutherland MUD"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	30677.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:40 PM	

+="CN89616"	"Systems Engineering"	="Department of Defence"	05-Jun-08	="Hydraulic systems and components"	15-May-08	23-May-08	32500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	05-Jun-08 05:41 PM	

+="CN89618"	"CHAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	15-May-08	15-May-08	36905.00	=""	="STURDY COMPONENTS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89620"	"HQJOC PROJECT-THALES-FIBRELAN MODEMS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	34704.53	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89626"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	23-May-08	30-Jun-09	33000.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:41 PM	

+="CN89627"	"Manpower Labour Hire"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	02-Jun-08	30-Jun-08	33000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:41 PM	

+="CN89629"	"PAYMENT OF CONTRACTOR SERVICES"	="Department of Defence"	05-Jun-08	="Software"	02-Jun-08	30-Jun-08	33000.00	=""	="HINE TRAINING SERVICES PTY LTD"	05-Jun-08 05:41 PM	

+="CN89631"	"WATER & SEWERAGE"	="Department of Defence"	05-Jun-08	="Environmental management"	30-May-08	30-Jun-08	35000.00	=""	="WATER CORPORATION"	05-Jun-08 05:41 PM	

+="CN89636"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	32192.90	=""	="DEAKINPRIME"	05-Jun-08 05:42 PM	

+="CN89655"	"PAYMENT VEHICLE FOR FILING & MAINTENANCE OF PATENT APPLICATIONS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Apr-08	30-Jun-08	39100.00	=""	="MADDERNS"	05-Jun-08 05:43 PM	

+="CN89664"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	36487.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89666"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	31713.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89667"	"Provision of local admin services"	="Department of Defence"	05-Jun-08	="Office supplies"	23-May-08	01-Jan-09	34018.25	=""	="INCHCAPE SHIPPING SERVICES"	05-Jun-08 05:44 PM	

+="CN89676"	"teleconferencing facility"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	30-Jun-08	37325.00	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:44 PM	

+="CN89688"	"JPG PARTNERS PTY LTD PSP SERVICES SUPPORTING CAPAB REQUIREMENTS FOR SUPPORT BRANCH EXEC MAY08"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	23-May-08	30-Aug-08	31680.00	=""	="JPG PARTNERS PTY LTD"	05-Jun-08 05:45 PM	

+="CN89714"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	30888.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89715"	"Planning manager fees at the former Ammunition Depot, Moorebank"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-Jun-08	35200.00	=""	="GHD PTY LTD"	05-Jun-08 05:47 PM	

+="CN89717"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Jun-08	31050.42	=""	="UNI OF QLD - FACULTY OF HEALTH"	05-Jun-08 05:47 PM	

+="CN89718"	"BAC MOBILE STORAGE MODULES"	="Department of Defence"	05-Jun-08	="Containers and storage"	23-May-08	23-Jun-08	36682.80	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 05:47 PM	

+="CN89742"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	30360.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:48 PM	

+="CN89772"	"HIRE OF FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	23-May-08	23-May-08	35000.00	=""	="LIVING EDGE FURNITURE RENTAL"	05-Jun-08 05:50 PM	

+="CN89778"	"WMS Development Scoping study"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	23-May-08	30-Jun-08	33000.00	=""	="AAMHATCH  PTY LTD"	05-Jun-08 05:51 PM	

+="CN89786"	"Please Note:  All Invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	09-Jun-08	34390.40	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:51 PM	

+="CN89790"	"A4 WHITE PHOTOCOPY PAPER & A4 GREEN REFLEX PAPER"	="Department of Defence"	05-Jun-08	="Paper products"	26-May-08	30-Jun-08	30949.60	=""	="BARKERS OFFICE SUPPLIES"	05-Jun-08 05:51 PM	

+="CN89814"	"Software update"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	13-Jun-08	36722.40	=""	="PRISM TECHNICAL CONSULTING"	05-Jun-08 05:53 PM	

+="CN89828"	"POC: B.Searle Quotation: WA:bsearl-q02:wa"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	39754.00	=""	="FLUKE NETWORKS"	05-Jun-08 05:54 PM	

+="CN89840"	"Software engineer required to further develop existing GUI software package."	="Department of Defence"	05-Jun-08	="Software"	26-May-08	30-Jun-08	33000.00	=""	="CAE PROFESSIONAL SERVICES"	05-Jun-08 05:54 PM	

+="CN89843"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	02-Jun-08	30-Jun-08	30000.00	=""	="SIMON GEORGE &"	05-Jun-08 05:55 PM	

+="CN89846"	"EMPLOYMENT OF LEGAL OFFICERS"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	26-May-08	30-Jun-08	30000.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 05:55 PM	

+="CN89864"	"AACAP 08 - FRESH RATIONS ION - 16468"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	26-May-08	30-May-08	32455.48	=""	="URARO COMMUNITY STORE PTY LTD"	05-Jun-08 05:56 PM	

+="CN89867"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	33000.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	05-Jun-08 05:56 PM	

+="CN89873"	"TSS CONTRACT"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	30-Sep-08	30000.00	=""	="SOLVEIT SOFTWARE PTY LTD"	05-Jun-08 05:57 PM	

+="CN89876"	"supply of fruit & vegetables brisbane"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	26-May-08	30-Jul-08	33000.00	=""	="GMN VEGIPREPI"	05-Jun-08 05:57 PM	

+="CN89883"	"Task Manager"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-08	36666.67	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:57 PM	

+="CN89885"	"RAAF COLLEGE RELOCATION"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	35234.38	=""	="SPOTLESS DEFENCE SERVICES"	05-Jun-08 05:57 PM	

+="CN89888"	"Instructor Support Services to No 008 Fighter Combat Controller Course"	="Department of Defence"	05-Jun-08	="Education and Training Services"	26-May-08	04-Jul-08	35904.00	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:58 PM	

+="CN89910"	"CONTRACT NO: CSI-SC05/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:59 PM	

+="CN89912"	"MEAT RATIONS"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:59 PM	

+="CN89914"	"FACOPS"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	26-May-08	03-Jun-08	31130.00	=""	="MARTIN VAUGHAN CANVAS PRODUCTS"	05-Jun-08 05:59 PM	

+="CN89915"	"A MacDONALD, $51.62 p/HR 40H P/WK EXTENTION OF EXISTING CONTRACT"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	38229.13	=""	="ICON RECRUITMENT"	05-Jun-08 05:59 PM	

+="CN89919"	"Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	12-May-08	30-Jun-09	31856.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:59 PM	

+="CN89959"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	32250.00	=""	="CLAYTON UTZ"	05-Jun-08 06:02 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val40000to60000.xls
@@ -1,1 +1,313 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87431"	" Supply of Polaris kit bags, NSN 8105-01-551-9598, 8105-01-551-9600 & 8105-01-551-96010, 3 x 65 qty. "	="Defence Materiel Organisation"	03-Jun-08	="War vehicles"	30-May-08	26-Jun-08	43097.34	=""	="Polaris Sales Aust & NZ"	03-Jun-08 09:29 AM	

+="CN87434"	"Recruitment Services - Manager, Property & Security"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	14-May-08	30-Jun-08	40000.00	="07/369-00"	="Hays Personnel Services (Australia) Pty ltd"	03-Jun-08 09:33 AM	

+="CN87442"	"Software"	="Department of the House of Representatives"	03-Jun-08	="Software"	01-Jan-08	01-Jan-10	51314.78	=""	="Zallcom Pty Ltd"	03-Jun-08 09:56 AM	

+="CN87474"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	02-Dec-08	45000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	03-Jun-08 10:44 AM	

+="CN87478"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-May-08	30-Jun-08	58157.00	=""	="MCPHERSON'S PRINTING GROUP"	03-Jun-08 10:44 AM	

+="CN87479"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	60000.00	="N/A"	="COLLECTIVE RESOURCES IT RECRUITMENT"	03-Jun-08 10:44 AM	

+="CN87480"	"Business Advisory Services"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	50000.00	="N/A"	="OAKTON AA SERVICES PTY LTD"	03-Jun-08 10:44 AM	

+="CN87483"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	40000.00	="N/A"	="PROTIVITI PTY LTD"	03-Jun-08 10:45 AM	

+="CN87486"	"Consultancy Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-May-08	48161.65	="0000000000000000"	="CENTRELINK"	03-Jun-08 10:45 AM	

+="CN87495"	"Software Development"	="Child Support Agency"	03-Jun-08	="Software"	02-Jun-08	30-Jun-08	52907.36	=""	="EDS (AUSTRALIA) PTY LTD"	03-Jun-08 11:15 AM	

+="CN87498"	"Variation to original contract: IT consultants"	="Australian Securities and Investments Commission"	03-Jun-08	="Information technology consultation services"	16-Jun-08	16-Jun-08	50000.00	=""	="Strohl Systems Australia Pty Ltd"	03-Jun-08 11:32 AM	

+="CN87508"	" NSN 1730-66-147-8413  MAINTENANCE PLATFORM, AIRCRAFT "	="Defence Materiel Organisation"	03-Jun-08	="Elevating platform vehicles or scissor lifts"	22-Apr-08	27-May-08	44880.00	=""	="HAULOTTE GROUP AUSTRALIA"	03-Jun-08 11:56 AM	

+="CN87510"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	11-Apr-08	05-Aug-08	51480.00	=""	="SMS Consulting Group"	03-Jun-08 11:59 AM	

+="CN87514"	"Audio and visual presentation and compos"	="Australian Competition and Consumer Commission"	03-Jun-08	="Audio and visual presentation and composing equipment"	27-May-08	30-Jun-08	55867.22	=""	="Vantage Systems Pty Ltd"	03-Jun-08 12:00 PM	

+="CN87520"	"Computer Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Computer services"	29-May-08	30-Jun-08	45671.00	=""	="Getronics Australia"	03-Jun-08 12:01 PM	

+="CN87523"	"ICT Contractor Services"	="Child Support Agency"	03-Jun-08	="Human resources services"	22-May-08	29-Aug-08	49692.50	=""	="PEOPLEBANK"	03-Jun-08 02:33 PM	

+="CN87532"	"Research and Advisory Services"	="Child Support Agency"	03-Jun-08	="Business administration services"	28-May-08	30-Jun-09	41910.00	=""	="GARTNER AUSTRALASIA PTY LTD"	03-Jun-08 02:34 PM	

+="CN87549-A1"	"Economic research to improve natural resource management in the Great Barrier Reef Marine Park"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Engineering and Research and Technology Based Services"	01-Apr-08	28-Sep-08	53600.00	=""	="MARSDEN JACOB & ASSOCIATES"	03-Jun-08 02:53 PM	

+="CN87589"	"Recruitment of graduates for the Department of Broadband, Communications and the Digital Economy's 2009 graduate Program"	="Department of Broadband Communications and the Digital Economy"	03-Jun-08	="Recruitment services"	26-May-08	26-Sep-08	48400.00	="ATM08/1028"	="Hoban Recruitment"	03-Jun-08 06:09 PM	

+="CN87643"	"Production of a General Information DVD"	="Child Support Agency"	04-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	03-Jun-08	30-Sep-08	51111.00	=""	="Imparja Television Pty Ltd"	04-Jun-08 10:09 AM	

+="CN87663"	"Replacement of servers in the National Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Information services"	21-May-08	21-May-08	43813.12	=""	="COMPUTERCORP (OPERATIONS)"	04-Jun-08 11:43 AM	

+="CN87666"	"Micorsoft 2003 Word, Excel, Outlook and Power Point Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	60000.00	=""	="KAZ GROUP PTY LTD"	04-Jun-08 11:44 AM	

+="CN87670"	"Provide Computer Database and E-Discovery Support"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	23-May-08	30-Jun-08	55000.00	=""	="Forensic Digital Services"	04-Jun-08 11:45 AM	

+="CN87671"	"Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-09	48972.00	=""	="KAZ GROUP PTY LTD"	04-Jun-08 11:46 AM	

+="CN87688"	"Independent advice for national affordable housing agreement"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	19-May-08	30-Jun-08	57712.50	=""	="Policy & Management Advisory"	04-Jun-08 11:49 AM	

+="CN87690"	"Development of an Emergency Relief training manual"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	20-May-08	30-Jun-08	45650.00	=""	="HK Training and Consultancy"	04-Jun-08 11:49 AM	

+="CN87691"	"New Disability Supported Employment Places"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Financial and Insurance Services"	20-May-08	02-Jun-08	53460.00	=""	="KPMG"	04-Jun-08 11:49 AM	

+="CN87702"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	29-May-08	30-Jun-08	45705.00	=""	="Intravision - The Cabling Specialis"	04-Jun-08 11:51 AM	

+="CN87705"	"Provision of Contract Staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	11-Sep-08	44000.00	=""	="Hamilton James and Bruce Pty Ltd"	04-Jun-08 11:51 AM	

+="CN87709"	"Executive search for chairman of IBA"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Human resources services"	29-May-08	30-Jun-08	49500.00	=""	="Watermark Search International"	04-Jun-08 11:53 AM	

+="CN87711"	"Design and Facilitation of Value Creation Workshop"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	30-May-08	30-Jun-08	51950.00	=""	="THE VALUE CREATION GROUP"	04-Jun-08 11:53 AM	

+="CN87724"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	27-May-08	30-Jun-08	56665.75	=""	="DELL AUSTRALIA PTY LIMITED"	04-Jun-08 11:57 AM	

+="CN87727"	"Financial Services - Support and Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Jun-08	46200.00	=""	="PriceWaterhouseCoopers -"	04-Jun-08 11:57 AM	

+="CN87753"	"Fees for Professional Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	08-May-08	42999.86	=""	="DELOITTE TOUCHE TOHMATSU"	04-Jun-08 12:03 PM	

+="CN87762"	"LSL Transfers Elizabeth Robson AGS 23908759"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Financial and Insurance Services"	30-Apr-08	14-May-08	43598.30	=""	="Centrelink"	04-Jun-08 12:05 PM	

+="CN87765"	"Lease Id SOCSEA1A 580 St Georges Tre Syd MAy08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	01-May-08	14-May-08	45472.87	=""	="Jones Lang LaSalle"	04-Jun-08 12:05 PM	

+="CN87772"	"The Provision of Call Centre and Reporting Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	01-May-08	30-May-08	40000.00	=""	="Hamilton James and Bruce Pty Ltd"	04-Jun-08 12:07 PM	

+="CN87779"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	57712.50	=""	="Michael Lennon Professional Service"	04-Jun-08 12:09 PM	

+="CN87781"	"Final draft of Family Week Report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Published Products"	14-May-08	30-Jun-08	44000.00	=""	="AUSTRALIAN INSTITUTE OF FAMILY"	04-Jun-08 12:09 PM	

+="CN87786"	"Additional NTER Air Charter"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	21-May-08	54556.70	=""	="CHARTAIR PTY LTD"	04-Jun-08 12:11 PM	

+="CN87789"	"The Provision of Contract Services in relation to  Data Refurbishment to Level 0, A Block West, Tugg"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Building and Construction and Maintenance Services"	16-May-08	31-May-08	51590.00	=""	="P&D Building Maintenance Pty Ltd"	04-Jun-08 12:12 PM	

+="CN87794"	"Provision of Market Research Services as a member of the Market Research Panel"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Marketing and distribution"	14-May-08	30-Jun-08	43945.00	=""	="TNS Social Research"	04-Jun-08 12:12 PM	

+="CN87796"	"Independant Review into circumstances surrounding the acquisition of NTER staff accomodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	08-May-08	30-May-08	60000.00	=""	="Mr Tony Blunn AO"	04-Jun-08 12:13 PM	

+="CN87804"	"Analysis of the Public Submissions to the Green Paper"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	13-May-08	10-Jul-08	49280.00	=""	="Blackink Writing and Consultancy"	04-Jun-08 12:14 PM	

+="CN87808-A1"	"Mobile Connect Infrastructure Project"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Public Utilities and Public Sector Related Services"	28-May-08	18-Sep-08	57539.35	="DCON/06/45"	="DLA  Phillips Fox"	04-Jun-08 12:14 PM	

+="CN87822-A1"	"New SES Office Suites"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Furniture and Furnishings"	01-Oct-07	30-Jun-08	45985.50	="ATM08/1046"	="OFM Direct"	04-Jun-08 12:15 PM	

+="CN87826"	"TRIM Training - Period Ending 31 December 2007"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Education and Training Services"	01-Oct-07	30-Jun-08	40149.31	="DCON/05/15"	="Australian Institute of Mgt - NSW &"	04-Jun-08 12:16 PM	

+="CN87827"	"Ovum subscription 2008-09"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Public Utilities and Public Sector Related Services"	21-May-08	30-Jun-08	52800.00	="ATM 2008/1026"	="OVUM LTD"	04-Jun-08 12:16 PM	

+="CN87832"	" Professional Legal Fees "	="Office of the Australian Building and Construction Commissioner (ABCC)"	04-Jun-08	="Legal services"	30-Nov-07	20-Dec-07	44172.92	=""	="MINTER ELLISON"	04-Jun-08 12:34 PM	

+="CN87870"	"Airfares"	="Australian Centre for International Agricultural Research"	04-Jun-08	="Travel agents"	30-Apr-08	19-May-08	45698.99	=""	="American Express Travel"	04-Jun-08 04:07 PM	

+="CN87910"	"Conduct of Advanced Maritime Security Audit Course ISO 28000"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security and personal safety"	13-May-08	31-May-08	40000.00	=""	="Asia Pacific Maritime Institute Pty"	05-Jun-08 10:15 AM	

+="CN87917"	"Study of Airport scrrening employee"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Information services"	01-May-08	20-Jun-08	49995.00	=""	="Jigsaw Strategic Research P/L"	05-Jun-08 10:16 AM	

+="CN87925"	"Vehicle lease YFM98U Running costs for vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	28-May-08	30-Apr-11	43257.01	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:19 AM	

+="CN87930"	"Lease motor vehicle - YEV 67F Lease motor vehicle - YEV 67F"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	06-Feb-07	04-Feb-09	40087.30	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:21 AM	

+="CN87933-A1"	"COMPENSATOR, BELLOWS NSN 1560/14370301"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	14-May-08	03-Jul-08	42956.60	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	05-Jun-08 10:43 AM	

+="CN87949-A1"	" Night Vision Goggle Spare Parts "	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	14-Aug-08	54626.00	=""	="Point Trading"	05-Jun-08 12:47 PM	

+="CN87968"	"Training for DTP to HMAS Cairns Project"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	19-May-08	20-Jun-08	56179.20	=""	="WORKFORCE TRAINING SOLUTIONS"	05-Jun-08 01:04 PM	

+="CN87994"	"DELL PRECISION MOBILE WORKSTATION"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-Jun-08	58700.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 01:07 PM	

+="CN87995"	"Correction of Georeference data"	="Defence Materiel Organisation"	05-Jun-08	="Software"	20-May-08	10-Sep-08	45377.20	=""	="SOLUTIONS FROM SILICON"	05-Jun-08 01:07 PM	

+="CN88000"	"Toyota Corolla Sedan Conquest ( SS) Qty 2"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	31-Oct-08	45628.89	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88002"	"Toyota Hilux 4x2 Tray (UM1) Qty 3"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	21-Nov-08	55318.99	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88011"	"LABOUR RATE FROM PRICE VARIATION FROM YR 1 TO YR 2 FOR WORKERS PARTS AND TRAVEL"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	04-Jun-08	49211.22	=""	="THALES AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88051"	"AMACCS Task backlog 07-0681"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	14-May-08	16-Jun-08	55236.11	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:14 PM	

+="CN88054"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	14-May-08	30-Jun-08	58690.98	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:14 PM	

+="CN88060"	"Provision Of Technical Services Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	14-Jul-08	43816.46	=""	="AIR NZ ENGINEERING SERVICES DIV AIR"	05-Jun-08 01:15 PM	

+="CN88061"	"FLOOR SPACE AT EXHIBITION"	="Defence Materiel Organisation"	05-Jun-08	="Lease and rental of property or building"	14-May-08	19-May-08	55500.00	=""	="PICO AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88075"	"Comms / IT Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	48062.22	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:17 PM	

+="CN88091"	"Teamcenter License fee and Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-09	45892.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:19 PM	

+="CN88096"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	43972.67	=""	="KAZ GROUP PTY LTD"	05-Jun-08 01:19 PM	

+="CN88103"	"CONTRACT REVIEW MEETING BAE ATTENDANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	15-May-08	30-Jun-08	45289.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:20 PM	

+="CN88106"	"Populate Spreadsheet & Report"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	44995.50	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:21 PM	

+="CN88120"	"SUPPLY A CONFIGURATION MANAGEMENT STANDARD OPERATI NG PROCEDURE"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	23-May-08	05-Sep-08	57480.01	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	05-Jun-08 01:22 PM	

+="CN88131"	"sml switchboard upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	28-May-08	28-May-08	44000.00	=""	="G A GLANVILLE & CO"	05-Jun-08 01:23 PM	

+="CN88162"	"CCI"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	19-Dec-07	30-Jun-11	51981.67	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88175"	"THE TERMS AND CONDITIONS OF THIS PURCHASE ORDER AR THE HUG 2.2 PRIME CONTRACT C338399"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Jun-09	43926.01	=""	="BOEING COMPANY THE"	05-Jun-08 01:29 PM	

+="CN88184"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Software"	26-May-08	26-May-08	45518.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 01:30 PM	

+="CN88203"	"Munitions and accessories"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	20-May-08	21-Jul-08	56142.37	=""	="KNIGHTS ARMAMENT COMPANY"	05-Jun-08 01:32 PM	

+="CN88205"	"LASER PRODUCTS"	="Defence Materiel Organisation"	05-Jun-08	="Safety apparel"	21-May-08	02-Sep-08	49302.83	=""	="LASER PRODUCTS"	05-Jun-08 01:32 PM	

+="CN88218"	"EMBROIDERED NAME BADGES"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	20-May-08	30-Sep-08	58630.00	=""	="APPAREL ADDITIONS"	05-Jun-08 01:34 PM	

+="CN88246"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-May-08	31-Jul-08	56200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 01:37 PM	

+="CN88248"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	45797.82	=""	="CAPS AUSTRALIA PTY TLD"	05-Jun-08 01:37 PM	

+="CN88254"	"MANUFACTURE MPDE & SSDG EXHAUST BLANKETS HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	21-May-08	20-Jun-08	50446.00	=""	="NATIONAL INTEGRATED SERVICES"	05-Jun-08 01:38 PM	

+="CN88258"	"DC7800 PCs' and accessories"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	49711.81	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:38 PM	

+="CN88261"	"PROVIDE STAFF TO SUPPORT SMEA FOR TE 2008 NMNP ASSURANCE WORK"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	21-May-08	31-Jul-08	53999.11	=""	="ACUMEN BUSINESS SOLUTIONS (ACT"	05-Jun-08 01:39 PM	

+="CN88262"	"CADAS LISC"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	21-May-08	10-Jun-08	46330.86	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88278"	"Professional Services"	="Defence Materiel Organisation"	05-Jun-08	="Office supplies"	24-Apr-08	30-Aug-08	54358.21	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	05-Jun-08 01:41 PM	

+="CN88281"	"SOFTWARE INTEGRATION"	="Defence Materiel Organisation"	05-Jun-08	="Software"	28-Apr-08	30-Jun-08	55000.00	=""	="GHD PTY LTD"	05-Jun-08 01:41 PM	

+="CN88292"	"Scheduling Services to Support Navy Minor Projects"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	28-May-08	27-Jun-08	59999.94	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:42 PM	

+="CN88294"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	07-Apr-08	01-May-08	40790.10	=""	="FAVCOTE PTY LTD"	05-Jun-08 01:43 PM	

+="CN88308"	"Use of Exisitng ASP Contract  - Design Package Additional Telephone on Pt Side of Bridge"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	06-May-08	30-Jun-08	41639.35	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88316"	""Contract or Standing Offer No:  LEA-CM-2008-001""	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	06-May-08	30-Jun-08	55545.00	=""	="GHD PTY LTD"	05-Jun-08 01:45 PM	

+="CN88320"	"TECHNICAL WRITER FOR ARH AIRCREW MANUAL"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	06-May-08	30-Jun-08	57651.83	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:46 PM	

+="CN88330"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	01-May-08	02-Jun-08	59592.83	=""	="CAPS AUSTRALIA PTY TLD"	05-Jun-08 01:47 PM	

+="CN88339"	"KIOWA MIXING VALVE REPAIR"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	06-May-08	28-Jun-08	50518.60	=""	="BELLINGER INSTRUMENTS PTY LTD"	05-Jun-08 01:48 PM	

+="CN88346"	"Configuration Data Recovery Management System (CDRMS) MPSPO Acquisition"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	31-Aug-08	55000.00	=""	="COMPUTER SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:48 PM	

+="CN88351"	"WORK PACKAGE 6 SDE SOFTWARE PROCEDURE DEVELOPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	02-Jun-08	30-Jun-08	58543.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:49 PM	

+="CN88373"	"AVIATION FUEL JET-A1"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Oct-07	23-May-08	46625.31	=""	="PEL-AIR AVIATION"	05-Jun-08 01:52 PM	

+="CN87642"	"Annual maintenance and support for FileNet Forms Manager for     E-Record"	="Australian Taxation Office"	05-Jun-08	="Software maintenance and support"	01-Jul-08	30-Jun-09	48000.00	=""	="Robert Barnett & Associates Pty Ltd"	05-Jun-08 01:52 PM	

+="CN88382"	"GRENADE HAND FRAGMENTATION F1"	="Defence Materiel Organisation"	05-Jun-08	="Explosive materials"	15-Apr-08	28-Feb-09	57608.13	=""	="THALES AUSTRALIA"	05-Jun-08 01:53 PM	

+="CN88391"	"HMAS YARRA REFIT DOCKING 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	31-May-08	53874.81	=""	="THALES AUSTRALIA"	05-Jun-08 01:54 PM	

+="CN88400"	"Task backlog close out Task Groups 1A, 1B and 1C"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	29-May-08	20-Jun-08	46120.55	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:55 PM	

+="CN88434"	"Cleaning Services"	="Defence Materiel Organisation"	05-Jun-08	="Cleaning and janitorial services"	12-May-08	30-Jun-09	50074.31	=""	="COMPLETE CLEANING SERVICE"	05-Jun-08 01:59 PM	

+="CN88439"	"Disposal of TAP-3 Aircraft - Phase 2 Aircraft Preparation"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	12-May-08	12-May-08	55761.64	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 02:00 PM	

+="CN88453"	"Project 140 - LLTV Obsolescence and replacement"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	41908.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88457"	"Development of Design Accesptance and Logistics Acceptance Summaries"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-08	52199.99	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:02 PM	

+="CN88461"	"Installation of AEKMS and Intruder Resistant Door on HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	09-May-08	30-Jun-08	45837.01	=""	="EML AUSTRALIA"	05-Jun-08 02:02 PM	

+="CN88462"	"Nissan Patrol 4x4 L/S Tray UL1 Qty"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	09-May-08	24-Oct-08	41195.15	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 02:03 PM	

+="CN88489"	" Minor Fitout works "	="Office of the Commonwealth Ombudsman"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	21-May-08	42496.41	=""	="CMI Building Services"	05-Jun-08 02:06 PM	

+="CN88495"	"QAR on Contracts: 4500619827, 45000619829 4500619830, 4500619833, and 4500624521"	="Defence Materiel Organisation"	05-Jun-08	="Bombs and grenades"	12-May-08	30-May-08	44419.10	=""	="S.E.I. SOCIETA' ESPLOSIVI"	05-Jun-08 02:07 PM	

+="CN88506"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	13-May-08	42270.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 02:08 PM	

+="CN88526"	"Specialist Engineering Support Services for Design Acceptance Data Pack Review"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	30-Aug-08	46332.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:10 PM	

+="CN88531"	"replacement of hydromap offline"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	07-May-08	20-Jun-08	59461.66	=""	="AIMTEK PTY LTD"	05-Jun-08 02:11 PM	

+="CN88539"	"WA Periscope Workshop - TAsk 18 Workshop Tasks (low priority)"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jun-08	43363.49	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88559"	"Use of Exisitng ASP Contract  - Engineering Design Package Command Intercom  System"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	30-Jun-08	43272.08	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 02:14 PM	

+="CN88572"	"office furniture"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	08-May-08	13-Jun-08	43269.93	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 02:16 PM	

+="CN88573"	"Software and Licence for IMTS"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	25-Jun-08	59488.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	05-Jun-08 02:16 PM	

+="CN88574"	"  PROVISION OF ESP TO ASSIST THE AEWCSPO PARTN MANAGEMENT UNIT WITH ISSC AND MOBILIS"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	08-May-08	30-Sep-08	55224.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 02:16 PM	

+="CN88589"	" Probe, Mine. Manufactured in accordance with Defence Standard Def(Aust) 8370 and Defence Drawings ADE(M)493-1, ADE(M)493-2 and ADE(M)493-3. Qty 1000. "	="Defence Materiel Organisation"	05-Jun-08	="Mines"	23-May-08	19-Aug-08	50270.00	=""	="EXEL COMPOSITES"	05-Jun-08 02:37 PM	

+="CN88611"	"Study in Australia Website - Content Refresh Translations"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	19-May-08	30-Jun-08	49625.40	="PRN19499"	="LANGUAGE PARTNER PTY LTD"	05-Jun-08 03:03 PM	

+="CN88617"	"Consultancy Services for the Collection of 2007 Offshore Public VET Data"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	08-Dec-08	59037.00	="PRN18483"	="NCVER"	05-Jun-08 03:05 PM	

+="CN88614"	" TRANSMITTER, PRESURE NSN 6685/014755886 "	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	09-Feb-09	42641.00	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:06 PM	

+="CN88624-A2"	"Better Practice Guide: ICT in Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	44000.00	="PRN19015"	="APRINGA PTY LTD"	05-Jun-08 03:08 PM	

+="CN88627"	"IT Security Gateway Firewall Software"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	47770.00	="PRN19939"	="Dimension Data Australia Pty Ltd"	05-Jun-08 03:09 PM	

+="CN88640"	"National VET Equity Advisory Taskforce - Student experience - factors for success"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	26-May-08	30-Jun-08	59500.00	="PRN19543"	="TNS SOCIAL RESEARCH"	05-Jun-08 03:12 PM	

+="CN88653-A1"	"Innovative Halls Creek Child Care Service Hub"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management advisory services"	18-Mar-08	30-Jun-08	47073.40	="PRN19658"	="VISION NETWORK PTY LTD"	05-Jun-08 03:16 PM	

+="CN88654"	"NOZZLE ASSEMBLY, FUEL NSN 2915/006551933"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	04-Jun-08	16-Jun-08	45849.60	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:18 PM	

+="CN88658"	"BALLSCREW ASSEMBLY NSN 1680/012175837"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	05-Aug-08	58832.48	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:39 PM	

+="CN88661"	"ballscrew assembly nsn 1680/12222551"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	26-Jul-08	58418.56	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:50 PM	

+="CN88664"	"SEAL, PIN NSN 5330/014436337"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	02-Jun-08	46587.60	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:59 PM	

+="CN88669"	"REPAIR - ROTOR, TURBINE, AIRCRAFT GAS TURBINE"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	20-Aug-08	41152.50	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:12 PM	

+="CN88672"	"REPAIR - ROTOR, TURBINE, AIRCRAFT GAS TURBINE ENGINE"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	03-Sep-08	41152.50	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:17 PM	

+="CN88681"	"Computer Software"	="Department of Defence"	05-Jun-08	="Software"	13-May-08	30-May-08	44660.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:45 PM	

+="CN88684"	"Sean Hubbard $62.00p/hr, 40 hrs p/wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	44958.93	=""	="I T LOGISTICS SERVICES PTY LTD"	05-Jun-08 04:45 PM	

+="CN88685"	"SUPPLY & INSTALL BLINDS BORNEO BARRACKS CABARLAH"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	24-Jun-08	57760.00	=""	="BLINDWERX"	05-Jun-08 04:46 PM	

+="CN88700"	"PROJECT MANAGEMENT"	="Department of Defence"	05-Jun-08	="Software"	12-May-08	30-Jun-08	49962.00	=""	="THE FRAME GROUP"	05-Jun-08 04:48 PM	

+="CN88710"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Puchase"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	57912.38	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 04:49 PM	

+="CN88712"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	52260.88	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 04:49 PM	

+="CN88714"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	55000.00	=""	="BLUELINE SOFTWARE PTY LTD"	05-Jun-08 04:50 PM	

+="CN88719"	"MT LOUISA TACAN ACCESS ROAD REPAIR"	="Department of Defence"	05-Jun-08	="Roads and landscape"	12-May-08	30-Jun-08	43568.36	=""	="SPOTLESS"	05-Jun-08 04:50 PM	

+="CN88720"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-May-08	30-Jul-10	59400.00	=""	="RMIT UNIVERSITY"	05-Jun-08 04:51 PM	

+="CN88722"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	12-Jun-08	49368.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	05-Jun-08 04:51 PM	

+="CN88738"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	57266.35	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 04:53 PM	

+="CN88750"	"Environmental (Climatic) Test Chamber"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-May-08	20-Jun-08	59302.10	=""	="PACIFIC LABORATORY PRODUCTS PTY LTD"	05-Jun-08 04:55 PM	

+="CN88757"	"VIDEO CONFERENCING"	="Department of Defence"	05-Jun-08	="Hardware"	14-May-08	30-Jun-08	43291.82	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 04:56 PM	

+="CN88760"	"SERVICE MEDALS"	="Department of Defence"	05-Jun-08	="Collectibles and awards"	14-May-08	30-Jul-08	49500.00	=""	="CASHS AUSTRALIA PTY LTD"	05-Jun-08 04:57 PM	

+="CN88764"	"SN02820 - ACT/SNSW Site OHS Inspections"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	49500.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 04:57 PM	

+="CN88771"	"Ansys license"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	16-May-08	46648.80	=""	="LEAP AUSTRALIA PTY LTD"	05-Jun-08 04:58 PM	

+="CN88778"	"Network tools"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	19-May-08	27-Jun-08	48400.00	=""	="FLUKE NETWORKS"	05-Jun-08 04:58 PM	

+="CN88783"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-10	55000.00	=""	="SWITZER COMMUNICATIONS PTY LTD"	05-Jun-08 04:58 PM	

+="CN88787"	"CAMPING EQUIPMENT"	="Department of Defence"	05-Jun-08	="Camping and outdoor equipment and accessories"	19-May-08	13-Jun-08	40238.00	=""	="OZTRAIL PTY LTD"	05-Jun-08 04:59 PM	

+="CN88828"	"IT equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	16-Jun-08	41316.00	=""	="HEWLETT PACKARD AUST LTD"	05-Jun-08 05:00 PM	

+="CN88831"	"Supply a NECUniverage IPS PABX System"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	49178.80	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88832"	"AD HOC WORK"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	24-Jul-08	56179.27	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:01 PM	

+="CN88838"	"Experimental Voice Trainer & Decoder software, docs & training"	="Department of Defence"	05-Jun-08	="Software"	20-May-08	30-May-08	52263.00	=""	="INTERNATIONAL BUSINESS MACHINES COR"	05-Jun-08 05:01 PM	

+="CN88845"	"Furniture and fittings"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	31-May-08	45761.28	=""	="SWANBRITE PTY LTD"	05-Jun-08 05:01 PM	

+="CN88847"	"To Undertake bugfix systems changes to the bug fixes; heading   functionality changes;"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	20-May-08	30-Jun-08	57750.00	=""	="SMS CONSULTING GROUP LIMITED"	05-Jun-08 05:01 PM	

+="CN88848"	"Multicam Rounting Machine."	="Department of Defence"	05-Jun-08	="Workshop machinery and equipment and supplies"	13-May-08	10-Jun-08	43890.00	=""	="MULTICAM SYSTEMS PTY LTD"	05-Jun-08 05:01 PM	

+="CN88853"	"Class B containers"	="Department of Defence"	05-Jun-08	="Containers and storage"	20-May-08	17-Jun-08	49016.00	=""	="FILEGUARD CO (MFG) PTY LTD"	05-Jun-08 05:02 PM	

+="CN88855"	"PURCHASE PC"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	46480.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:02 PM	

+="CN88879"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	41344.16	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:03 PM	

+="CN88883"	"DIEP 0708-P055 requires a fibre link"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	43921.90	=""	="OPTUS ADMINISTRATION PTY LTD"	05-Jun-08 05:03 PM	

+="CN88885"	"Cybird 5 air vehicle"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	13-Jun-08	50600.00	=""	="CYBER TECHNOLOGY"	05-Jun-08 05:03 PM	

+="CN88896"	"UPGRADE EXISITING ACCESS CONTROL READERS AMBERLEY"	="Department of Defence"	05-Jun-08	="Security and control equipment"	19-May-08	30-Jun-08	40260.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:04 PM	

+="CN88900"	"Military Tandem and Tunnel training."	="Department of Defence"	05-Jun-08	="Aircraft"	13-May-08	23-May-08	54405.79	=""	="AIRBORNE SOLUTIONS ONTERNATIONAL"	05-Jun-08 05:04 PM	

+="CN88914"	"Psychological Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	16-May-08	30-Jun-08	50000.01	=""	="INTELLUMEN PTY LTD"	05-Jun-08 05:05 PM	

+="CN88918"	"REHABILITATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="THE REHABILITATION COMPANY PTY LTD"	05-Jun-08 05:05 PM	

+="CN88926"	"DEMAND NO. RSTM-7EEDY7 QUOTE NO. 00129733"	="Department of Defence"	05-Jun-08	="Office supplies"	16-May-08	23-May-08	57280.30	=""	="LIVERPOOL OFFICE SUPPLIES"	05-Jun-08 05:05 PM	

+="CN88930"	"REHABILTATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="REHAB MANAGEMENT"	05-Jun-08 05:05 PM	

+="CN88933"	"REHABILTATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="RECOVRE"	05-Jun-08 05:05 PM	

+="CN88951"	"UPGRADE OF KEY SAFES"	="Department of Defence"	05-Jun-08	="Security and control equipment"	08-May-08	08-May-08	55000.00	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:06 PM	

+="CN88955"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Education and Training Services"	22-May-08	26-Jun-08	49415.00	=""	="NATIONAL INDUSTRIAL"	05-Jun-08 05:06 PM	

+="CN88958"	"Upgrade Group Switch at Gallipoli Barracks"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	43109.51	=""	="TELSTRA BUSINESS SYSTEMS PTY LTD"	05-Jun-08 05:07 PM	

+="CN88961"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	42383.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:07 PM	

+="CN88970"	"UXO SOFTWARE (TRANSPORT  &  TOPOGRAPHY,CADASTR BOUNDARIES)."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	22-May-08	30-Jun-08	52800.00	=""	="NAVIGATE PTY LTD"	05-Jun-08 05:07 PM	

+="CN88979"	"PROVISION AND INSTALLATION TS VIDCON"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	22-May-08	30-Jun-08	56203.99	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN89001"	"ADDITIONAL INDUCTION COURSE OT COVER TRAINING LIABILITY IN THE ACS & SQLD FOR AMY PAY CORPS"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	42987.99	=""	="MAJOR TRAINING SERVICES PTY LTD"	05-Jun-08 05:08 PM	

+="CN89009"	"Site Plan & Ground Maintenance Upgdate - Canungra and Cabarlah"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	40051.00	=""	="SKM"	05-Jun-08 05:09 PM	

+="CN89015"	"DEMS SUPPORT AND MAINTENANCE CONTRACT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	22-May-08	30-Jun-08	49500.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89020"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Jun-08	54870.00	=""	="PS MANAGEMENT CONSULTANTS"	05-Jun-08 05:09 PM	

+="CN89022"	"FAIRBAIRN - NORTHERN ACCESS ROAD - BLOCK 146 UXO C INVESTIGATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	44000.00	=""	="G-TEK AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89034"	"DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	10-Jun-08	41268.32	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:10 PM	

+="CN89042"	"Franking machine for Queanbeyan mailroom"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	22-May-08	30-Jun-08	52948.50	=""	="PITNEY BOWES AUSTRALIA PTY"	05-Jun-08 05:10 PM	

+="CN89051"	"Fleet Metoc Viewer"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	30-Jun-08	59400.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:11 PM	

+="CN89069"	"TRAINING"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	22-May-08	30-Jun-08	48198.50	=""	="EFFECTIVE NEGOTIATION SERVICES"	05-Jun-08 05:11 PM	

+="CN89072"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	43560.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89082"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-May-08	53799.90	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 05:12 PM	

+="CN89083"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Nov-08	55492.00	=""	="WALTER TURNBULL PTY LTD"	05-Jun-08 05:12 PM	

+="CN89091"	"HQJOC PROJECT-HEWLETT PACKARD AUSTRALIA PTY LTD."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	43815.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89093"	"VAVIOUS CISCO ITEMS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	46538.72	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:13 PM	

+="CN89095"	"Standing Offer Deed DMOSS RFQTS 3311 Ph: 02 612 87325"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	20-May-08	30-Jun-08	49048.05	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:13 PM	

+="CN89100"	"MAPOWER LABOUR HIRE"	="Department of Defence"	05-Jun-08	="Vehicle servicing equipment"	08-May-08	30-May-08	44000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:13 PM	

+="CN89101"	"Fit out of S7 using DHA existing furniture"	="Department of Defence"	05-Jun-08	="Commercial and industrial furniture"	20-May-08	14-Jul-08	44000.00	=""	="DEFENCE HOUSING AUTHORITY"	05-Jun-08 05:13 PM	

+="CN89103"	"Installation of Alarm System A10 BLDG"	="Department of Defence"	05-Jun-08	="Security and control equipment"	08-May-08	30-Jun-08	57575.10	=""	="CHUBB SECURITY AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89106"	"Pit repair work at RAAF Base, Amberley. Quote Ref:"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	26-Jun-08	52844.00	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:13 PM	

+="CN89110"	"KEY MANAGEMENT SYSTEM"	="Department of Defence"	05-Jun-08	="Containers and storage"	20-May-08	25-Jun-08	52285.20	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:13 PM	

+="CN89121"	"Supply Rational Combi Oven SCC101 / SCC61 and Stac  These are replacing equipment at R2 Mess which i"	="Department of Defence"	05-Jun-08	="Domestic kitchenware"	07-May-08	30-Jun-08	41448.00	=""	="AC&R CATERING EQUIPMENT &"	05-Jun-08 05:14 PM	

+="CN89124"	"ROUTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	40503.78	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 05:14 PM	

+="CN89133"	"WANGETTI RIFLE RANGE REFURBISHMENT"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	28-Feb-09	50000.00	=""	="SPOTLESS"	05-Jun-08 05:14 PM	

+="CN89134"	"Site Plan & Ground Maintenance Upgdate - Oakey"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	49665.00	=""	="SKM"	05-Jun-08 05:14 PM	

+="CN89139"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	07-May-08	07-May-08	41333.91	=""	="JBTGLOBAL CORPORATE ADVISORY"	05-Jun-08 05:15 PM	

+="CN89143"	"WASTE REMOVAL FY07/08"	="Department of Defence"	05-Jun-08	="Refuse disposal and treatment"	22-May-08	30-Jun-08	42918.40	=""	="SHORESIDE MARINE"	05-Jun-08 05:15 PM	

+="CN89146"	"THE SERVICES OF SARAH SYSTEM BEING USED TO SUPPORT COAS USED IN QLD FOR AAC FROM 01.06.08-31.12.08"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	44000.00	=""	="SUPERIOR MANAGEMENT SOLUTIONS"	05-Jun-08 05:15 PM	

+="CN89154"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	09-May-08	30-Jun-08	43594.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:15 PM	

+="CN89162"	"BUSINESS SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	52800.00	=""	="KPMG"	05-Jun-08 05:16 PM	

+="CN89178"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	09-May-08	01-Jul-08	59000.00	=""	="INSIGHT SERVICES GROUP"	05-Jun-08 05:16 PM	

+="CN89185"	"Tape Cartridge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	05-Jun-08	48125.00	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89192"	"FIRST AID"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	20-May-08	30-Jun-08	54923.00	=""	="ST JOHNS NATIONAL BUSINESS"	05-Jun-08 05:17 PM	

+="CN89196"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	09-May-08	09-May-08	56761.82	=""	="PDL TOLL"	05-Jun-08 05:17 PM	

+="CN89198"	"Office Machines"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	20-May-08	16-Jun-08	42985.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89199"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	09-May-08	09-May-08	58827.12	=""	="PDL TOLL"	05-Jun-08 05:17 PM	

+="CN89201"	"Technical Support"	="Department of Defence"	05-Jun-08	="Computer services"	20-May-08	05-Sep-08	51150.00	=""	="IOCANE PTY LTD"	05-Jun-08 05:17 PM	

+="CN89208"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	12-May-08	01-Jul-08	43000.00	=""	="NELSON-TYERS CONSULTING PTY LTD"	05-Jun-08 05:18 PM	

+="CN89210"	"96 Lockers for 5RAR"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	20-May-08	30-May-08	52885.80	=""	="COMPLETE OFFICE SUPPLIES"	05-Jun-08 05:18 PM	

+="CN89218"	"REQUIREMENTS ANALYSIS REPORT FOR RAAF BASE WILLIAMS REDEVELOPMENT STAGE 1"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	54703.00	=""	="URS AUSTRALIA LTD"	05-Jun-08 05:18 PM	

+="CN89232"	"ROAD CHTR OP SLIPPER MRE"	="Department of Defence"	05-Jun-08	="Railway and tramway cars"	09-May-08	05-Jun-08	53900.00	=""	="SIMON NATIONAL CARRIERS"	05-Jun-08 05:19 PM	

+="CN89233"	"ESP Support for Development of an RAN Dining Syste Document"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-Jul-08	55388.00	=""	="RELEGEN PTY LTD"	05-Jun-08 05:19 PM	

+="CN89242"	"RAAF AMBERLEY CAPABILITY IS BEING SUSTAINED IAW THE DSVE STRATEGIC CAPABILITY ROADMAP."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	15-Jun-08	40180.24	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89245"	"IBM Internet Security Systems Software"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	28-Feb-09	57226.40	=""	="IBM AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89248"	"NETWORK ANALYSER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	41580.00	=""	="FLUKE AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89260"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	55476.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:20 PM	

+="CN89271"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	51733.00	=""	="CLAYTON UTZ"	05-Jun-08 05:20 PM	

+="CN89275"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	06-May-08	51261.00	=""	="QINETIQ GROUP PLC"	05-Jun-08 05:21 PM	

+="CN89284"	"COMPUTER UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	15-May-08	58323.39	=""	="ONE PLANET SOLUTIONS PTY LTD"	05-Jun-08 05:21 PM	

+="CN89288"	"OCE CS4142QS Scanner"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	15-May-08	06-Jun-08	44220.00	=""	="WOLLONGONG DRAWING AND OFFICE"	05-Jun-08 05:21 PM	

+="CN89295"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	48000.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	05-Jun-08 05:21 PM	

+="CN89307"	"VISUAL JAZZ IS TO CREATE A SITE THAT INCORPORATES AUSTRALIANS IN THE EVOLUTION OF THE ADF AND OTHER"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	54945.00	=""	="VISUAL JAZZ PTY LTD"	05-Jun-08 05:22 PM	

+="CN89316"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	48000.00	=""	="ACTSAFE AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89346"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	09-May-08	30-Jun-08	45950.00	=""	="CLAYTON UTZ"	05-Jun-08 05:24 PM	

+="CN89356"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	15-May-08	30-May-08	48508.90	=""	="CITE OFFICE DESIGN"	05-Jun-08 05:24 PM	

+="CN89357"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	57311.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:24 PM	

+="CN89380"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	20-Jun-08	59976.52	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:25 PM	

+="CN89386"	"AIRFARES AND ACCOMMODATION"	="Department of Defence"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	14-May-08	30-Jun-08	46600.00	=""	="EXPERIENCE SPORT PTY LTD"	05-Jun-08 05:26 PM	

+="CN89399"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	02-Jun-08	55539.00	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:26 PM	

+="CN89410"	"COURSE CONTENT UPDATED"	="Department of Defence"	05-Jun-08	="Specialised educational services"	14-May-08	15-May-08	44550.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:27 PM	

+="CN89424"	"Defence Desktop Support Role"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	30-Jun-08	49500.00	=""	="LOGITECH PTY LTD"	05-Jun-08 05:28 PM	

+="CN89426"	"TECHNICAL LEAD /  ANALYST / REPORT AU"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	14-May-08	11-Jun-08	46747.16	=""	="TENIX SYSTEMS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89434"	"REIMBURSEMENT"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	14-May-08	52648.75	=""	="THE KING'S SCHOOL"	05-Jun-08 05:29 PM	

+="CN89436"	"GRAPHIC DESIGNER FOR DIPP PROJECT"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	14-May-08	01-Sep-08	42311.26	=""	="ANDREW HOOPER"	05-Jun-08 05:29 PM	

+="CN89445"	"FTIR Spectrometer"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-Jun-11	45331.00	=""	="THERMO OPTEK PTY LTD"	05-Jun-08 05:30 PM	

+="CN89455"	"PAYMENT OF TEAM COMPETION FEES"	="Department of Defence"	05-Jun-08	="Other sports"	07-May-08	15-Jun-08	41311.00	=""	="HOCKEY ACT INC"	05-Jun-08 05:30 PM	

+="CN89457"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	16-May-08	42348.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:30 PM	

+="CN89463"	"TRAINING"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	50172.48	=""	="SOURCEFIRE INC"	05-Jun-08 05:31 PM	

+="CN89497"	"POC: RICHARD PATTINSON CONTACT: 02 626 69010"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	55948.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:33 PM	

+="CN89499"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-09	41922.55	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 05:33 PM	

+="CN89500"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:33 PM	

+="CN89501"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	16-May-08	30-Jun-08	45505.90	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 05:33 PM	

+="CN89513"	"Video conferencing facilities"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	16-May-08	30-Jun-08	44000.00	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89524"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	06-May-08	31-Dec-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	05-Jun-08 05:35 PM	

+="CN89525"	"Provide hard copies of PAARM to Army Aviation unit sqn, one per RHQ, one to DACI-Iand seven for AAvn"	="Department of Defence"	05-Jun-08	="Office supplies"	16-May-08	30-Jun-08	51255.46	=""	="AVIATION THEORY CENTRE PTY LTD"	05-Jun-08 05:35 PM	

+="CN89528"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	06-May-08	31-Dec-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:35 PM	

+="CN89530"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	08-May-08	46200.00	=""	="SHACKLETON MANAGEMENT SOLUTIONS P/L"	05-Jun-08 05:35 PM	

+="CN89532"	"meat"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	06-May-08	31-Dec-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:35 PM	

+="CN89539"	"ADDITIONAL ITEMS FOR ADVANCEMENT OF EXPERIMENTATIO"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	30-Jun-08	46472.60	=""	="SEYMOUR COMPUTERS"	05-Jun-08 05:36 PM	

+="CN89547"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	07-May-08	11-Jun-08	43985.70	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:36 PM	

+="CN89560"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	15-May-08	46000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:37 PM	

+="CN89562"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	15-May-08	46000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:37 PM	

+="CN89564"	"GOODS"	="Department of Defence"	05-Jun-08	="Truck tractors"	15-May-08	30-May-08	51150.00	=""	="ALBURY SPEEDO SERVICES"	05-Jun-08 05:37 PM	

+="CN89570"	"Printers"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:38 PM	

+="CN89584"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	27-Jun-08	41800.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 05:39 PM	

+="CN89588"	"3 pOLARIS RANGER 500 TERRAIN 4X4 & 2X4 FOR RANGE CONTROL"	="Department of Defence"	05-Jun-08	="Motorised cycles"	15-May-08	14-Jun-08	54108.00	=""	="R & M MOTORCYCLES"	05-Jun-08 05:39 PM	

+="CN89593"	"Maritime Structural Repairs Stirling"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	29-May-08	30-Jun-08	50000.01	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	05-Jun-08 05:39 PM	

+="CN89594"	"POC:  JOHN BURGESS CONTACT: 02 626 50462"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	44076.51	=""	="ENDACE ACCELERATED"	05-Jun-08 05:39 PM	

+="CN89603"	"Software development"	="Department of Defence"	05-Jun-08	="Software"	04-Jun-08	30-Sep-08	49725.00	=""	="VISUAL ANALYSIS PTY LTD"	05-Jun-08 05:40 PM	

+="CN89606"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	15-May-08	30-Jun-08	42480.00	=""	="CLAYTON UTZ"	05-Jun-08 05:40 PM	

+="CN89607"	"RAAF EDINBURGH : REDEVEVLOPMENT STAGE 2-P"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	53954.74	=""	="THINC PROJECTS (SA/NT) PTY LTD"	05-Jun-08 05:40 PM	

+="CN89610"	"DEVELOPMENT OF A PROOF OF A CONCEPT PORTAL TO PROVIDE ACCESS TO DEFENCE USERS."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	56980.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:40 PM	

+="CN89644"	"Shipping Service Darwin"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	55825.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:42 PM	

+="CN89649"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	29-May-08	30-Jun-08	54494.50	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:43 PM	

+="CN89658"	"SEA CHARTER"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	47850.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:43 PM	

+="CN89702"	"ANNUAL SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	23-May-08	30-May-08	45848.00	=""	="ESRI AUSTRALIA PTY LTD"	05-Jun-08 05:46 PM	

+="CN89711"	"PROFESSIONAL RECRUITMENT PROVIDER SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	49999.99	=""	="LEE HECHT HARRISON PTY LTD"	05-Jun-08 05:46 PM	

+="CN89712"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	46332.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:46 PM	

+="CN89724"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89726"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	56628.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89736"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	22-May-08	30-Jun-09	50569.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:48 PM	

+="CN89743"	"HQJOC PROJECT-LAN SYSTEMS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-08	43867.04	=""	="WESTCON GROUP"	05-Jun-08 05:48 PM	

+="CN89751"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102/146 (AREA H) DEM"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-08	47012.87	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:49 PM	

+="CN89752"	"SEA CHARTER"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	53113.50	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:49 PM	

+="CN89762"	"COMPUTER SERVERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	19-Jun-08	45799.95	=""	="IPS INTELLIGENT SYSTEMS PTY LTD"	05-Jun-08 05:50 PM	

+="CN89776"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	53504.48	=""	="INSITEC"	05-Jun-08 05:51 PM	

+="CN89780"	"GENERAL STORES AS PER QUOTE"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	23-May-08	30-Jun-08	41138.11	=""	="BUNNINGS TRADE DISTRIBUTION CENTRE"	05-Jun-08 05:51 PM	

+="CN89784-A1"	"REDEVELOPMENT AND REDESIGN OF ONLINE DATABASE"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	26-May-09	59400.00	=""	="GIUNTI LABS (ASIA PACIFIC) PTY LTD"	05-Jun-08 05:51 PM	

+="CN89803"	"BANNERS"	="Department of Defence"	05-Jun-08	="Signage and accessories"	13-May-08	05-Jun-08	54494.00	=""	="SIGNARAMA"	05-Jun-08 05:52 PM	

+="CN89804"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	44000.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	05-Jun-08 05:52 PM	

+="CN89810"	"SN02523 - Furniture and Joinery For DDCS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-08	57299.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:53 PM	

+="CN89816"	"Comms/IT"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	46877.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89819"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	03-Jun-08	50000.00	=""	="KPMG"	05-Jun-08 05:53 PM	

+="CN89822"	"6xBushmasters from Gallipoli Bks Enoggera to Rober 23May08-28May08."	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	02-Jun-08	52800.00	=""	="FREIGHTWEST PTY LTD"	05-Jun-08 05:53 PM	

+="CN89824"	"POC J.McCluskey -02 6127 7313 Quotation: 8001940"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	49253.60	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89833"	"AIRFOCE PRODUCTION ACTIVITIES DURING 067/08"	="Department of Defence"	05-Jun-08	="Aircraft"	23-Apr-08	30-Jun-08	53501.54	=""	="GEORGE PATTERSON Y & R"	05-Jun-08 05:54 PM	

+="CN89850"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	26-May-08	07-Jun-08	56444.04	=""	="CORE SECURITY TECHNOLOGIES INC"	05-Jun-08 05:55 PM	

+="CN89869"	"facops"	="Department of Defence"	05-Jun-08	="Alloys"	02-Jun-08	30-Jun-08	40920.00	=""	="RESOLVE FM"	05-Jun-08 05:56 PM	

+="CN89870"	"MEALS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	26-May-08	30-Jun-09	47520.00	=""	="CAFE SIX TWO"	05-Jun-08 05:56 PM	

+="CN89872"	"Video Conferencing System"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	26-May-08	20-Jun-08	40922.01	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:57 PM	

+="CN89874"	"STUDENT TRANSPORT 08/09"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	26-May-08	30-Jun-09	53460.00	=""	="WESTRANS"	05-Jun-08 05:57 PM	

+="CN89884"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	50473.50	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:57 PM	

+="CN89890"	"XPS M1730 LAPTOP/e VALUE R540423"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	25-May-08	30-Jun-08	56745.70	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89897"	"QUARANTINE FEES"	="Department of Defence"	05-Jun-08	="Environmental protection"	03-Jun-08	30-Jun-08	45000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	05-Jun-08 05:58 PM	

+="CN89898"	"POC: WILLIAM GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	42612.78	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:58 PM	

+="CN89909"	"Ebsco host subscription"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	49127.10	=""	="EBSCO AUSTRALIA SUBSCRIPTON"	05-Jun-08 05:59 PM	

+="CN89912"	"MEAT RATIONS"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:59 PM	

+="CN89916"	"CONTRACT NO: CSI-SC04/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:59 PM	

+="CN89920"	"GROCERIES RATION"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	05-Jun-08 06:00 PM	

+="CN89926"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	26-May-08	07-Jun-08	54853.68	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 06:00 PM	

+="CN89929"	"James Hobman $62.44 p/hr, 40 hrs per/wk Extention to existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	46101.21	=""	="ICON RECRUITMENT"	05-Jun-08 06:00 PM	

+="CN89942"	"FRIEGHT OF VEHICLES BRISBANE TO CULTANA"	="Department of Defence"	05-Jun-08	="Transportation components and systems"	13-May-08	30-Jun-08	51150.00	=""	="FREIGHTWEST"	05-Jun-08 06:01 PM	

+="CN89954"	"Steve Dummett $66.84/H, 40 hrs p/h Extention of current contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	49392.06	=""	="ROSS HUMAN DIRECTIONS"	05-Jun-08 06:02 PM	

+="CN89957"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	55000.00	=""	="SAVV-E PTY LTD"	05-Jun-08 06:02 PM	

+="CN89962"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	49999.40	=""	="ERNST & YOUNG"	05-Jun-08 06:02 PM	

+="CN89966"	"WET WEATHER SHEDS FOR TRG PURPOSES"	="Department of Defence"	05-Jun-08	="Structural materials and basic shapes"	21-May-08	10-Jun-08	42616.02	=""	="RANBUILD PTY LTD"	05-Jun-08 06:02 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val60000to80000.xls
@@ -1,1 +1,196 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87426"	"Production of Non Technical Skills DVD"	="Civil Aviation Safety Authority"	03-Jun-08	="Modular technical office packages"	12-May-08	30-Jun-08	80000.00	="07/359-00"	="Bearcage Pty Ltd"	03-Jun-08 09:03 AM	

+="CN87429"	"Recruitment services - Eastern & Southern FO Manager Position"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	12-May-08	30-Jun-08	80000.00	="07/365-00"	="Tanner Menzies Pty Ltd"	03-Jun-08 09:26 AM	

+="CN87466"	"Documentation Services"	="Department of Finance and Deregulation"	03-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	16-May-08	30-Jun-08	70000.00	="nil"	="STRATSEC.NET PTY LTD"	03-Jun-08 10:42 AM	

+="CN87479"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	60000.00	="N/A"	="COLLECTIVE RESOURCES IT RECRUITMENT"	03-Jun-08 10:44 AM	

+="CN87489"	"Acoustic Services Engineering, consultancy services"	="Australian Securities and Investments Commission"	03-Jun-08	="Professional engineering services"	01-Feb-08	30-Jun-10	65000.00	=""	="WE Bassett and Partners Pty Ltd"	03-Jun-08 10:54 AM	

+="CN87517"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	03-Jun-08	="Management advisory services"	29-May-08	30-Apr-09	79016.25	=""	="McGrath Nicol Corporate Advisory"	03-Jun-08 12:00 PM	

+="CN87522-A1"	"Provision of Vocational Rehabilitation Services."	="CRS Australia"	03-Jun-08	="Vocational rehabilitation services"	26-May-08	22-Apr-09	73275.85	=""	="Teresa McLuckie"	03-Jun-08 01:21 PM	

+="CN87537"	"Leased Office Equipment"	="Child Support Agency"	03-Jun-08	="Office machines and their supplies and accessories"	06-May-08	14-May-11	65590.80	=""	="FUJI XEROX AUSTRALIA PTY LTD"	03-Jun-08 02:35 PM	

+="CN87541"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational institutions"	02-May-08	30-Jun-08	64990.00	=""	="CIT SOLUTIONS PTY LTD"	03-Jun-08 02:35 PM	

+="CN87545"	"Audio Visual Equipment"	="Child Support Agency"	03-Jun-08	="Office supplies"	15-May-08	30-Jun-08	70142.11	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Jun-08 02:36 PM	

+="CN87553"	"hybrid power system extension on Low Island"	="Great Barrier Reef Marine Park Authority"	03-Jun-08	="Building and Construction and Maintenance Services"	17-Apr-08	27-Jun-08	64090.40	=""	="TROPICAL ENERGY SOLUTIONS Pty Ltd"	03-Jun-08 02:54 PM	

+="CN87584"	"Software devlopment contractor"	="Australian Crime Commission"	03-Jun-08	="Personnel recruitment"	28-Apr-08	31-Jul-08	73920.00	=""	="Longley Stapleton"	03-Jun-08 04:50 PM	

+="CN87655"	"Professional Consulting Services for Implementation of Server Visualisation Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Software"	20-May-08	30-Jun-08	72600.00	=""	="Infront Systems Pty Ltd"	04-Jun-08 11:42 AM	

+="CN87666"	"Micorsoft 2003 Word, Excel, Outlook and Power Point Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	60000.00	=""	="KAZ GROUP PTY LTD"	04-Jun-08 11:44 AM	

+="CN87694"	"Project Management Services for the NTER Review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	26-May-08	31-Dec-08	76230.00	=""	="TANNER JAMES MANAGEMENT"	04-Jun-08 11:50 AM	

+="CN87700"	"Provision of meeting, catering and accomodation services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	28-May-08	28-Jun-08	79000.00	=""	="Crowne Plaza Canberra"	04-Jun-08 11:51 AM	

+="CN87701"	"Recruitment of a number of Legal staff including Legal 1, Legal 2, and SES B1 level staff1"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Legal services"	28-May-08	15-Aug-08	74470.00	=""	="Gillian Beaumont"	04-Jun-08 11:51 AM	

+="CN87708"	"Analysis of debt repayments"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	29-May-08	30-Jun-08	71500.00	=""	="Taylor Fry Pty Ltding Actuaries"	04-Jun-08 11:52 AM	

+="CN87721"	"Storage of Aboriginal Art Collection-July to Sept 2007"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Storage"	26-May-08	30-Jun-08	72069.72	=""	="NATIONAL MUSEUM OF AUSTRALIA"	04-Jun-08 11:56 AM	

+="CN87726"	"Research into review experiences of Carer Allowanc and Carer Payment reciepts."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	64480.00	=""	="Orima Research Pty Ltd"	04-Jun-08 11:57 AM	

+="CN87741"	"Provision of consultancy services for the the White Paper on homelessness"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management advisory services"	05-May-08	31-Jul-08	79620.00	=""	="COLMAR BRUNTON SOCIAL RESEARCH"	04-Jun-08 12:01 PM	

+="CN87742"	"Advice/support to Group Mgr on governance arrange."	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Legal services"	05-May-08	30-Jun-08	70000.00	=""	="C A Mauk and Associates"	04-Jun-08 12:01 PM	

+="CN87754"	"Project Management Services to Support NTER Staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Accommodation furniture"	01-May-08	09-May-08	73128.00	=""	="Point Project Management"	04-Jun-08 12:03 PM	

+="CN87796"	"Independant Review into circumstances surrounding the acquisition of NTER staff accomodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	08-May-08	30-May-08	60000.00	=""	="Mr Tony Blunn AO"	04-Jun-08 12:13 PM	

+="CN87799"	"Provision of Emergency Relief Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Jul-08	63690.00	=""	="4Points"	04-Jun-08 12:13 PM	

+="CN87805"	"MOU Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Jun-08	67047.20	=""	="Centrelink - Departmental"	04-Jun-08 12:14 PM	

+="CN87807"	"Provide Computer Forensic Support"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Legal services"	13-May-08	30-Nov-08	60500.00	=""	="Forensic Digital Services"	04-Jun-08 12:14 PM	

+="CN87853"	"Purchase of 19inch monitors"	="Centrelink"	04-Jun-08	="Personal computers"	04-Jun-08	04-Dec-08	72274.40	="2004/52285"	="Acer Computer Australia Pty Ltd"	04-Jun-08 03:25 PM	

+="CN64522"	"Provision of 'Write Online Guide' for online content editors."	="Centrelink"	04-Jun-08	="Business administration services"	03-Mar-08	30-Jun-08	64421.02	=""	="Serco Australia Pty Ltd"	04-Jun-08 04:11 PM	

+="CN87935"	"X-RAY APPARATUS, RADIOGRAPHIC, INDUSTRIAL NSN 6635/661487022"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	20-May-08	20-May-08	69450.00	=""	="NDT EQUIPMENT SALES PTY LTD"	05-Jun-08 11:01 AM	

+="CN87950-A1"	"Qty 3,000  Pocket, Night Fighting Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	15-Aug-08	60192.00	=""	="Ancamaraba Pty Ltd"	05-Jun-08 12:58 PM	

+="CN87959"	"Subject matter Expertise"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	16-May-08	31-Jul-08	79200.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:03 PM	

+="CN87965"	"URS 6270 - IT Control Framework URS 6297 - IT Control Framework"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	24-Jun-08	67712.70	=""	="MINCOM LTD"	05-Jun-08 01:04 PM	

+="CN87969"	"Rational Licences"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	24-Jun-08	63851.72	=""	="SYNERGY PLUS PTY LTD"	05-Jun-08 01:04 PM	

+="CN87983"	"Test Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Electronic hardware and component parts and accessories"	16-May-08	31-Jul-08	66015.98	=""	="YANOS AEROSPACE INC"	05-Jun-08 01:06 PM	

+="CN87986"	"chiller controller implementation on HS"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	16-May-08	23-Aug-08	78824.44	=""	="AIMTEK PTY LTD"	05-Jun-08 01:06 PM	

+="CN87990"	"SWITCH, RF"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	20-Apr-09	75246.18	=""	="NORTHROP GRUMMAN CORP ELECTRONIC SY"	05-Jun-08 01:07 PM	

+="CN87993"	"COMPUTER HARDWARE FOR INSTALLATION OF SOE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	20-May-08	06-Jun-08	68527.80	=""	="COMPUTER EASY AUSTRALIA"	05-Jun-08 01:07 PM	

+="CN88012"	"Training Needs Analysis in support of HUGPH2.3"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	01-Jul-08	63243.00	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:09 PM	

+="CN88023"	"Training"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	19-May-08	30-Jul-08	66000.00	=""	="ASC PTY LTD"	05-Jun-08 01:11 PM	

+="CN88029"	"Dell 24" Monitors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	69300.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 01:11 PM	

+="CN88037"	"INTERAGENCY TRANSFER TO DEFENCE SUPPORT GROUP TO COVER TELSTRA LEASE OF TOWERS FOR HF COMMS"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	72757.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:12 PM	

+="CN88039"	"THIS ORDER IS PLACED IAW C439170 - SUPPORT SERVICE REPLACE LIGHTING TRAILERS"	="Defence Materiel Organisation"	05-Jun-08	="Electrical equipment and components and supplies"	14-May-08	30-Jun-08	75275.81	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:12 PM	

+="CN88044"	"tab trim acft"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	01-Sep-09	69622.93	=""	="LOCKHEED MARTIN CORPORATION"	05-Jun-08 01:13 PM	

+="CN88056"	"LAND AIR BREATHING CYLINDERS - 9 LITRE 300 BAR CARBON FIBRE"	="Defence Materiel Organisation"	05-Jun-08	="Fire fighting equipment"	14-May-08	20-Jun-08	71060.00	=""	="WORMALD TECHNOLOGY"	05-Jun-08 01:15 PM	

+="CN88067"	"HARDWARE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	14-May-08	30-Jun-08	66528.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 01:16 PM	

+="CN88068"	"Prepare Defence White Paper Logistic Companion Review for Explosive Ordnance Division"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	60199.39	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:16 PM	

+="CN88082"	"REMEDIATION TO EQUIPMENT INSTALLATION ON HMAS SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	77483.13	=""	="THALES AUSTRALIA"	05-Jun-08 01:18 PM	

+="CN88088"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	60745.30	=""	="SERENA SOFTWARE PTY LTD"	05-Jun-08 01:18 PM	

+="CN88098"	"LAND ROVER 6X6 CARGO BODY ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Containers and storage"	15-May-08	13-Jun-08	75787.54	=""	="LAND ROVER AUSTRALIA PTY LTD"	05-Jun-08 01:20 PM	

+="CN88099"	"POC: CHRIS FISHER CONTACT: 02 626 69316"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	69903.90	=""	="RITTAL"	05-Jun-08 01:20 PM	

+="CN88178"	"GWISSO-W Workforce Modelling  &  Maintenance M Improvement"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jun-08	66000.00	=""	="HOWARD RECRUITMENT"	05-Jun-08 01:29 PM	

+="CN88206"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	63397.03	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:32 PM	

+="CN88217"	"VoP For ISS contract C388561, Inv 70401"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	75154.57	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	05-Jun-08 01:34 PM	

+="CN88239"	"Pahse 2B task close outs"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	22-May-08	26-Jun-08	78567.36	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:36 PM	

+="CN88249-A1"	"D Karpin to provide independent assurance to the Materiel Audit Committee"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	21-May-08	31-Dec-08	78623.00	=""	="DAVID KARPIN"	05-Jun-08 01:37 PM	

+="CN88268-A1"	"Joint Electronic Fuel Management (JEFM) Project Software ILS/Transition Support"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	21-May-08	30-Jun-08	72700.00	=""	="KPMG"	05-Jun-08 01:40 PM	

+="CN88277-A1"	"INDEPENDENT ADVICE ON 15 ECONOMICAL JOURNAL ARTICL"	="Defence Materiel Organisation"	05-Jun-08	="Business administration services"	15-May-08	12-Nov-08	70891.15	=""	="ECONTECH PTY LTD"	05-Jun-08 01:41 PM	

+="CN88283"	"Preparation of briefing paper on JP2077 Project"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	29-Apr-08	16-May-08	64780.00	=""	="KPMG"	05-Jun-08 01:41 PM	

+="CN88290"	"codification and cataloguing of hydrographic inventory"	="Defence Materiel Organisation"	05-Jun-08	="Location and navigation systems and components"	02-Jun-08	30-Jun-08	60200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88296"	"Technical Review of Ellipse"	="Defence Materiel Organisation"	05-Jun-08	="Software"	07-Apr-08	30-Jun-08	70716.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 01:43 PM	

+="CN88327"	"SIMLOX Software Licences"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	20-Jun-08	61312.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:46 PM	

+="CN88335"	"Use of Exisitng ASP Contract  - Check and Repair Tank Gauges"	="Defence Materiel Organisation"	05-Jun-08	="Fuel tanks and systems"	05-May-08	30-Jun-08	70895.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88358"	"EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	12-Nov-07	29-Aug-08	70207.85	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:50 PM	

+="CN88371"	"GERMANISCHER LLOYD"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	27-Sep-07	30-Jun-08	65275.17	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	05-Jun-08 01:52 PM	

+="CN88374"	"AVIATION FUEL JET-A1"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Oct-07	23-May-08	63898.46	=""	="PEL-AIR AVIATION"	05-Jun-08 01:52 PM	

+="CN88376"	"Sonar Simulation Controller for the Collins Class Submarines"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	12-Nov-07	31-Jul-08	62454.00	=""	="OPERATIONAL SOLUTIONS"	05-Jun-08 01:52 PM	

+="CN88381"	"ESM ATE Replacement support"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	29-May-08	26-Jun-08	62928.01	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:53 PM	

+="CN88395"	"PSP FOR PSENG & STRUCTURES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	01-Jun-08	63888.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:55 PM	

+="CN88416"	"SUPPLY OF AVIATION FUEL - ARMY"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	12-Nov-07	30-Jun-08	73777.00	=""	="EXXONMOBIL AVIATION"	05-Jun-08 01:57 PM	

+="CN88441"	"MANUFACTURE 2ND STAGE OF MODULES HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	20-Jun-08	76134.89	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 02:00 PM	

+="CN88443"	"Professionalisation Scoping Study"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	02-May-08	30-Aug-08	73859.50	=""	="DEAKINPRIME"	05-Jun-08 02:00 PM	

+="CN88458"	"CONSTRUCTION OF STAND"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction Machinery and Accessories"	09-May-08	09-May-08	64920.00	=""	="FOLEY EXHIBITIONS LTD"	05-Jun-08 02:02 PM	

+="CN88468"	"Connectors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	75054.90	=""	="FOUNDRY NETWORKS INC"	05-Jun-08 02:03 PM	

+="CN88477"	"sml galley fire fighting system"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	13-May-08	30-Jun-08	66329.29	=""	="G A GLANVILLE & CO"	05-Jun-08 02:04 PM	

+="CN88487"	"rescue boat fwd access on hydrographic ships"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	12-May-08	22-Aug-08	67940.62	=""	="AIMTEK PTY LTD"	05-Jun-08 02:05 PM	

+="CN88493"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	77920.00	=""	="NOVA DEFENCE"	05-Jun-08 02:06 PM	

+="CN88499"	"ASLAV Tyre Maintenance Shelter equipment"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	30-Jun-08	79277.00	=""	="G H VARLEY PTY LTD"	05-Jun-08 02:07 PM	

+="CN88515"	"MAG58 SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	07-May-08	07-Dec-08	67638.17	=""	="FN HERSTAL SA"	05-Jun-08 02:09 PM	

+="CN88534"	"MANUFACTURE HEADS AND SHOWER MODULES HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	20-Jun-08	77225.12	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 02:11 PM	

+="CN88547"	"BT-WAR Project Contractor Support"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	07-May-08	30-Jun-08	62272.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:13 PM	

+="CN88563"	"Savi Signposts and Labels"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	18-Aug-08	70091.78	=""	="SAVI TECHNOLOGY AUSTRALIA PTY LTD"	05-Jun-08 02:15 PM	

+="CN88609-A2"	"Study in Australia Internet Kiosks - 2008"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	20-May-08	30-Jun-09	67556.00	="PRN19498"	="PIENETWORKS LIMITED (PIE)"	05-Jun-08 03:03 PM	

+="CN88612"	"Study in Australia Video Production"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	07-May-08	30-Jun-08	71027.00	="PRN19409"	="SILVERSUN PICTURES PTY LTD"	05-Jun-08 03:03 PM	

+="CN88622-A2"	"Better Practice Guide: ICT in Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	77000.00	="PRN19015"	="CROGER ASSOCIATES PTY LTD"	05-Jun-08 03:07 PM	

+="CN88625-A1"	"Expert Technical Advice - SES Funding Arrangements"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Business intelligence consulting services"	14-Sep-07	30-Jun-08	75000.00	="PRN16217"	="DIRECTION GROUP PTY LTD"	05-Jun-08 03:08 PM	

+="CN88630-A2"	"Equity in Vocational Education and Training (VET)"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	21-May-08	30-Jun-08	78392.63	="PRN19334"	="MARKET SOLUTIONS PTY LTD"	05-Jun-08 03:09 PM	

+="CN88652"	"CAA Enviro Bags Re-print"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	18-Mar-08	30-Jun-08	75240.00	="PRN18848"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	05-Jun-08 03:15 PM	

+="CN88671"	"REPAIR - COMPRESSOR ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	20-Aug-08	72611.30	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:15 PM	

+="CN88717"	"POC: WILLIAM GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	72600.00	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 04:50 PM	

+="CN88728"	"Group Workshops & Resume Coaching."	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-May-08	12-Jun-08	64900.00	=""	="HUDSON GLOBAL RESOURCES (AUST)"	05-Jun-08 04:52 PM	

+="CN88735"	"REVIEW AND REPORT ON A/F LAND MATERIEL ACQUISITION"	="Department of Defence"	05-Jun-08	="Published Products"	14-May-08	30-Sep-08	71480.20	=""	="SME GATEWAY LIMITED"	05-Jun-08 04:53 PM	

+="CN88776"	"681900 (NT1188) ASRAAM / AMRAAM Facility Equipment Replacement. Security Upgrade"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	75570.00	=""	="ASSET SERVICES"	05-Jun-08 04:58 PM	

+="CN88822"	"Mathworks computer equiptment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	77841.50	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88852"	"WATER CONSERVATION MEASURES- RAINWATER TANKS CABARLAH"	="Department of Defence"	05-Jun-08	="Water resources development and oversight"	19-May-08	30-Jun-08	73681.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:02 PM	

+="CN88866"	"WATER CONSERVATION MEASURES- RAINWATER TANKS OAKEY"	="Department of Defence"	05-Jun-08	="Water resources development and oversight"	19-May-08	30-Jun-08	76580.35	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:02 PM	

+="CN88878"	"OTDR"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	63694.35	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:03 PM	

+="CN88884"	"SPONSORSHIP"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	19-May-08	71786.00	=""	="DARWIN FAMILY DAY CARE"	05-Jun-08 05:03 PM	

+="CN88920"	"INTERPRETIVE STRATEGY FOR POINT COOK AND FORT QUEE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	67317.80	=""	="WOODHEAD INTERNATIONAL"	05-Jun-08 05:05 PM	

+="CN88929"	"TO PROVIDE SCANNED NEGATIVES"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	16-May-08	16-May-08	79500.00	=""	="DYNAMIC MEDIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88950"	"UPS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	62640.60	=""	="COMPUTER SITE SOLUTIONS PTY LTD"	05-Jun-08 05:06 PM	

+="CN88953"	"Matlab and Simulink licenses"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	20-May-08	64424.25	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:06 PM	

+="CN88962"	"DENTAL LABORATORY SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	19-May-08	31-Jul-09	62700.00	=""	="EDL PTY LTD"	05-Jun-08 05:07 PM	

+="CN88983"	"Analyst Report Writer John Stevens"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	19-May-08	31-Jul-08	70000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:08 PM	

+="CN89004"	"Modular cable System Fitout Base-X Tents"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	19-May-08	30-Jun-08	72358.00	=""	="ANITCOM"	05-Jun-08 05:09 PM	

+="CN89012"	"software Licence"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	25-May-08	65945.00	=""	="TELELOGIC AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89021"	"288.9 linear metres of shelving"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	78383.80	=""	="BROWNBUILT"	05-Jun-08 05:09 PM	

+="CN89023"	"T5520 SERVER X 2"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	08-May-08	71943.56	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89026"	"ARCHIVAL RESEARCH"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	08-May-08	66707.17	=""	="PETER BARTON"	05-Jun-08 05:10 PM	

+="CN89084"	"FORDIGRAPH DEP.SHREDDER 5141CC QTY X 12"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89085"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	66000.00	=""	="THE UNIVERSITY OF ADELAIDE"	05-Jun-08 05:12 PM	

+="CN89087"	"FORDIGRAPH DEP.SHREDDER 5141CC QTY X 12"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89090"	"FORDIGRAPH DEP.SHREDDER E2026FCCM QTY X 25"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	75597.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89102"	"RAAF FLYING SERVICES TO DSTO"	="Department of Defence"	05-Jun-08	="Transport operations"	21-May-08	22-May-08	60500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89123"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	25-Jun-08	66000.00	=""	="KPMG"	05-Jun-08 05:14 PM	

+="CN89127"	"DVD PRODUCTION"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	07-May-08	07-May-08	78375.00	=""	="CATALYST INTERACTIVE"	05-Jun-08 05:14 PM	

+="CN89128"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	73917.80	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:14 PM	

+="CN89136"	"SPECIALIST SUPPORT"	="Department of Defence"	05-Jun-08	="Flight communications related systems"	07-May-08	30-Jun-08	66799.70	=""	="APP CORPORATION PTY LTD"	05-Jun-08 05:14 PM	

+="CN89149"	"computers and monitors"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	62293.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89150"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	19-May-08	19-May-08	67942.60	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	05-Jun-08 05:15 PM	

+="CN89170"	"ROAD CHTR EX HIGH SIERRA MOVT OF 76SQN EQUIP"	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	07-Jul-08	68276.01	=""	="SIMON NATIONAL CARRIERS"	05-Jun-08 05:16 PM	

+="CN89187"	"WOLSS Training"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	10-May-08	79726.08	=""	="OPTUS BILLING SERVICES PTY LTD"	05-Jun-08 05:17 PM	

+="CN89197"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	67730.84	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89219"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	64900.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:18 PM	

+="CN89231"	"Tasking Statement 0708-274 Maritime Assessment Training"	="Department of Defence"	05-Jun-08	="Software"	20-May-08	12-Jun-08	63000.00	=""	="NOVONICS OCEANIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89249"	"AQIS OFFSHORE INSPECTION OP CATALYST"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	19-May-08	31-May-08	72899.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:19 PM	

+="CN89250"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	66000.00	=""	="DARWIN PORT CORPORATION"	05-Jun-08 05:19 PM	

+="CN89258"	"PURCHASE OF COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	70707.81	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:20 PM	

+="CN89311"	"Upgrade of WTSS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	75236.23	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	05-Jun-08 05:22 PM	

+="CN89312"	"CERTAIN CARDS ARE AT END OF LIFE, IF A CPU WAS TO FAIL ALL VOICE COMM FROM  SITE WOULD BE LOST."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	15-May-08	28-Jun-08	66598.40	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89324"	"PROVISION OF GRANT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-May-08	67941.90	=""	="THE INTERNATIONAL INSTITUTE FOR STR"	05-Jun-08 05:23 PM	

+="CN89334"	"Psychological Services"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-09	62700.00	=""	="AUSTIN, JACQUELINE THERESE"	05-Jun-08 05:23 PM	

+="CN89336"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	03-May-08	30-Jun-10	73663.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:23 PM	

+="CN89361"	"VIDEO CONFERENCING UNIT"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	09-May-08	30-Jun-08	74453.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:25 PM	

+="CN89407"	"software and accessories"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	02-Aug-08	73145.20	=""	="L-3 SERVICES INC. DIV PULSE SCIENCE"	05-Jun-08 05:27 PM	

+="CN89416"	"EXTERNAL SERVICE PROVIDER - CONTRACTOR"	="Department of Defence"	05-Jun-08	="Management advisory services"	14-May-08	30-Jun-08	70567.20	=""	="OBS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89418"	"EXTERNAL SERVICE PROVIDER - CONTRACTOR"	="Department of Defence"	05-Jun-08	="Management advisory services"	14-May-08	30-Jun-08	75917.22	=""	="OBS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89435"	"Mainframe Engineer"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	66880.00	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:29 PM	

+="CN89437"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	70246.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:29 PM	

+="CN89446"	"SALARY"	="Department of Defence"	05-Jun-08	="Business administration services"	14-May-08	14-May-08	67100.00	=""	="DFAT - AUSTRALIAN GOVERNMENT"	05-Jun-08 05:30 PM	

+="CN89447"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	71269.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:30 PM	

+="CN89458"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-May-08	31-May-08	60682.38	=""	="WESTCON GROUP"	05-Jun-08 05:31 PM	

+="CN89464"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	65728.45	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:31 PM	

+="CN89468"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	64130.64	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:31 PM	

+="CN89483"	"IT SUPPORT AND MAINTENANCE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	16-May-08	79200.00	=""	="COMPLEXIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89490"	"JPEU Businmess Portal Phase 3 -Enhancement Upgrade dated 01 May 2008"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-May-08	30-Jun-08	76890.00	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 05:32 PM	

+="CN89498"	"VENUE HIRE"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-May-08	30-May-08	68232.45	=""	="SEA WORLD NARA HOTEL PTY LTD"	05-Jun-08 05:33 PM	

+="CN89502"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	72303.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89506"	"SUPPLY OF SPILL KITS & REPLENISHMENT OF PARTIAL SPILL KITS"	="Department of Defence"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	06-May-08	30-May-08	77000.00	=""	="GEMINEX PTY LTD"	05-Jun-08 05:34 PM	

+="CN89512"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	76434.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89538"	"QUICKLOOK - PEER REVIEW SERVICES"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	31-Jul-08	69699.70	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 05:36 PM	

+="CN89541"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	78500.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89545"	"Continuation of the provision of interface for the  KICASS implementation with Goanna"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	07-May-08	30-Jun-08	68200.00	=""	="ACACIA RESEARCH PTY LTD"	05-Jun-08 05:36 PM	

+="CN89548"	"Provision of Server Hardware including SAN and DR/back-up."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	15-May-08	30-Jun-08	72283.12	=""	="DATACOM SYSTEMS SA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89549"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	67138.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89551"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	79533.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89552"	"SCEC ENDORSED CL.A LGE SHREDDER MODEL 5141CC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89555"	"SKILLED LABOUR RAAF RICHMOND MEOMS"	="Department of Defence"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	26-May-08	66000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:37 PM	

+="CN89558"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	67518.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:37 PM	

+="CN89573"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	77467.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89575"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	75401.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89576"	"SCEC ENDORSED CL.A MED SHREDDER MODEL 2026FCC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	75597.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89578"	"NQ2231 - Combined Mess Emergancy Funding Major Plu"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	80000.00	=""	="SPOTLESS"	05-Jun-08 05:38 PM	

+="CN89581"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-Apr-08	30-Aug-08	65065.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:38 PM	

+="CN89605"	"PROP STUDIES - FORT WALLACE - INFRASTRUCURE ASSESSMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	78045.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:40 PM	

+="CN89609"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-09	66000.00	=""	="ICON RECRUITMENT"	05-Jun-08 05:40 PM	

+="CN89611"	"PROOF & EXPERIMENTAL ESTABLISHMENT REFURBISHMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	67221.57	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:40 PM	

+="CN89617"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	74227.59	=""	="SAGE LEGAL SERVICES PTY LTD"	05-Jun-08 05:41 PM	

+="CN89628"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-10	66000.00	=""	="STAND OUT PROMOTIONS"	05-Jun-08 05:41 PM	

+="CN89662"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	64449.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:43 PM	

+="CN89683"	"LACE - LCPL STEPHEN CARR KOVCO INQUIRY"	="Department of Defence"	05-Jun-08	="Legal services"	18-Apr-08	30-Dec-08	67191.58	=""	="EBSWORTH & EBSWORTH"	05-Jun-08 05:45 PM	

+="CN89694"	"DISIP Stage 3 for DIER 0607-1067"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	27-Jun-08	67373.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:45 PM	

+="CN89701"	"ICT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	67775.02	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	05-Jun-08 05:46 PM	

+="CN89705"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management support services"	29-Nov-07	30-Jun-08	65206.49	=""	="ICON RECRUITMENT"	05-Jun-08 05:46 PM	

+="CN89719"	"PAYMENT TO OFFICIAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	05-Jun-08	="Project management"	26-May-08	30-Jun-10	75366.40	=""	="MARITIME SURVEILLANCE ADVISOR"	05-Jun-08 05:47 PM	

+="CN89721"	"Payment of retention for Lae Plumbers I Invoice No 00070721"	="Department of Defence"	05-Jun-08	="Structural building products"	01-May-08	30-Jun-08	69215.55	=""	="LAE PLUMBING SERVICES LIMITED"	05-Jun-08 05:47 PM	

+="CN89728"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	72072.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89748"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	09-Jun-08	66924.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:49 PM	

+="CN89750"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	61776.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:49 PM	

+="CN89769"	"ADVERTISING"	="Department of Defence"	05-Jun-08	="Office supplies"	30-May-08	30-Jun-08	66000.00	=""	="UNIVERSAL MCCANN"	05-Jun-08 05:50 PM	

+="CN89792"	"681914 (NT1578) Maintenance of Sealed Roads Larrakeyah Barracks"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	63900.00	=""	="PIONEER ROAD SERVICES"	05-Jun-08 05:52 PM	

+="CN89798"	"FACOPS-DEMOLITION OF DERELECT STUCTURES"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	61820.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	05-Jun-08 05:52 PM	

+="CN89812"	"FEES-NORTH PENRITH-KENNARDS ROAD VARIATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-09	66000.00	=""	="KENNARDS SELF STORAGE PTY LTD"	05-Jun-08 05:53 PM	

+="CN89813"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Project management"	28-Mar-08	30-Jun-08	72050.00	=""	="BOHEMIA INTERACTIVE AUSTRALIA"	05-Jun-08 05:53 PM	

+="CN89830"	"Comms/IT"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	62227.00	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:54 PM	

+="CN89832"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	72685.80	=""	="MARIN"	05-Jun-08 05:54 PM	

+="CN89834"	"POC J.Morrison Quotation: JC280410"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	64383.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:54 PM	

+="CN89880"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	16-Jun-08	67232.01	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:57 PM	

+="CN89896"	"POC: RYAN CLEMENT CONTACT: 02 626 50839"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	68156.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89901"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	65996.70	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:58 PM	

+="CN89904"	"Portable radio & accessories"	="Department of Defence"	05-Jun-08	="Flight communications related systems"	26-May-08	13-Jun-08	64563.18	=""	="MOTOROLA COMMUNICATIONS AUST P / L"	05-Jun-08 05:59 PM	

+="CN89907"	"PAD, ENERGY DISSIPATING, AERIAL DELIVERY, EDM"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	12-May-08	02-Oct-08	70125.00	=""	="PARATECH PTY LTD"	05-Jun-08 05:59 PM	

+="CN89934"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	72701.53	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 06:00 PM 

--- /dev/null
+++ b/admin/partialdata/03Jun2008to05Jun2008val80000to150000.xls
@@ -1,1 +1,249 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87426"	"Production of Non Technical Skills DVD"	="Civil Aviation Safety Authority"	03-Jun-08	="Modular technical office packages"	12-May-08	30-Jun-08	80000.00	="07/359-00"	="Bearcage Pty Ltd"	03-Jun-08 09:03 AM	

+="CN87429"	"Recruitment services - Eastern & Southern FO Manager Position"	="Civil Aviation Safety Authority"	03-Jun-08	="Recruitment services"	12-May-08	30-Jun-08	80000.00	="07/365-00"	="Tanner Menzies Pty Ltd"	03-Jun-08 09:26 AM	

+="CN87440"	"Office Fitout"	="Australian Electoral Commission"	03-Jun-08	="Building and Construction and Maintenance Services"	22-Apr-08	30-Apr-08	123816.00	=""	="Complete Design Interiors Pty Ltd"	03-Jun-08 09:49 AM	

+="CN87450-A1"	"Laser printers"	="Australian Electoral Commission"	03-Jun-08	="Laser printers"	15-May-08	14-Apr-11	114294.41	="AEC06/044"	="Ricoh Australia Pty Ltd"	03-Jun-08 10:29 AM	

+="CN87451"	"Air fares"	="Department of the House of Representatives"	03-Jun-08	="Passenger transport"	01-Apr-08	28-Apr-08	90607.77	=""	="American Express"	03-Jun-08 10:35 AM	

+="CN87453"	"Rent Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	30-Oct-09	86000.00	="N/A"	="UGS-AUSTRALIAN PACIFIC AIRPORTS (MELB)"	03-Jun-08 10:40 AM	

+="CN87454"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	03-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Jun-08	30-Jun-08	122848.92	="RFT FIN07/Fes001"	="ISIS PROJECTS PTY LTD"	03-Jun-08 10:40 AM	

+="CN87467"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Dec-08	131562.50	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	03-Jun-08 10:43 AM	

+="CN87473"	"Contractor Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	10-Apr-09	96625.00	="."	="OAKTON AA SERVICES PTY LTD"	03-Jun-08 10:43 AM	

+="CN87487"	"Legal Costs"	="Department of Finance and Deregulation"	03-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-09	85000.00	="RFTLSB/01/2005"	="DLA PHILLIPS FOX LAWYERS"	03-Jun-08 10:45 AM	

+="CN87494"	" Fitout "	="Department of Human Services"	03-Jun-08	="Workstations and office packages"	15-May-08	30-Jun-08	143784.45	=""	="Rork Designs Pty Ltd t/a Rork Interiors"	03-Jun-08 11:12 AM	

+="CN87528"	"External Training"	="Child Support Agency"	03-Jun-08	="Educational facilities"	16-May-08	30-Sep-08	87400.01	=""	="BAYLEY & ASSOCIATES PTY LTD"	03-Jun-08 02:33 PM	

+="CN87540"	"Advertising Services"	="Child Support Agency"	03-Jun-08	="Advertising"	02-May-08	01-Oct-10	119999.99	=""	="MEDIA MONITORS AUSTRALIA PTY LTD"	03-Jun-08 02:35 PM	

+="CN87546"	"Professional & Negotiation Services"	="Child Support Agency"	03-Jun-08	="Management advisory services"	15-May-08	30-Jun-08	88000.00	=""	="PRICEWATERHOUSE COOPERS"	03-Jun-08 02:36 PM	

+="CN87575-A1"	"Justice Trax Software"	="Australian Taxation Office"	03-Jun-08	="Software"	09-Jun-08	08-Jun-09	126753.00	=""	="Axion Control Systems Pty Ltd"	03-Jun-08 03:02 PM	

+="CN87621"	"Provision of Application Developer"	="Comsuper"	04-Jun-08	="Human resources services"	01-Jul-08	24-Dec-08	114400.00	=""	="IT Matters Recruitment"	04-Jun-08 08:29 AM	

+="CN87623"	"Provision of System Tester"	="Comsuper"	04-Jun-08	="Human resources services"	01-Jul-08	30-Dec-08	83512.00	=""	="Collective Resources"	04-Jun-08 08:32 AM	

+="CN87635"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	04-Jun-08	="Legal services"	29-Oct-07	30-Jun-09	115000.00	=""	="O'Bryan, Norman"	04-Jun-08 09:30 AM	

+="CN87636-A1"	"External assurance of insolvency and release decisions [extension to original work (GAPS ID 1673420)]. Total expenditure to date (incl this variation 3) is $288,816."	="Australian Taxation Office"	04-Jun-08	="Public enterprises management or financial services"	18-Jun-08	23-Jan-09	144408.00	=""	="Pricewaterhouse Coopers"	04-Jun-08 09:31 AM	

+="CN87641"	"SPILL CONTAINMENT UNITS"	="Defence Materiel Organisation"	04-Jun-08	="Spill containment supports"	03-Jun-08	02-Jul-08	132027.50	=""	="SPILL STATION AUSTRALIA"	04-Jun-08 10:05 AM	

+="CN87648"	"Installation of workstations and screens"	="Australian Industrial Registry"	04-Jun-08	="Furniture tops or work surfaces"	26-May-08	23-Jun-08	104016.00	=""	="SCHIAVELLO COMM INTERIORS VIC"	04-Jun-08 11:39 AM	

+="CN87649-A1"	"FARES - 28 APRIL 2008"	="Australian Industrial Registry"	04-Jun-08	="Passenger air transportation"	28-May-08	30-May-08	110838.88	=""	="CARLSON WAGONLIT TRAVEL"	04-Jun-08 11:39 AM	

+="CN87657"	"Network Switches for FaHCSIA Infrasturcture Remediation Project"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	21-May-08	30-Jun-08	116169.77	=""	="Getronics Australia Pty Limited"	04-Jun-08 11:42 AM	

+="CN87682"	"Project Manager  for SAP projects"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Business administration services"	19-May-08	31-Dec-08	148720.00	=""	="REDBACK CONSULTING PTY LTD"	04-Jun-08 11:48 AM	

+="CN87723"	"Network Switches for FaHCSIA Infrasturcture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Hardware"	27-May-08	30-Jun-08	93019.76	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	04-Jun-08 11:56 AM	

+="CN87730"	"South Australia Certificate IV in Business (Govern"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Education and Training Services"	27-May-08	19-Jan-09	92985.00	=""	="Swinburne University of Technology"	04-Jun-08 11:58 AM	

+="CN87767"	"Re-imbursement to UGS May08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	23-May-08	23-May-08	89389.80	=""	="United Group Services"	04-Jun-08 12:06 PM	

+="CN87770"	"For works completed to 30 April 2008 L5,71 Nthbourne Ave Cbr"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Real estate services"	30-Apr-08	29-May-08	98846.00	=""	="Construction Control Interiors"	04-Jun-08 12:07 PM	

+="CN87815-A1"	"Backing Indigenous Ability - Round 1 Training"	="Department of Broadband Communications and the Digital Economy"	04-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	30-Jun-09	96311.65	="CCR/07/1552"	="TAFE NSW - Western Institute"	04-Jun-08 12:15 PM	

+="CN87820"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	04-Jun-08	="Software"	14-May-08	30-Jun-08	110101.20	=""	="MICROSOFT EVENTS"	04-Jun-08 12:15 PM	

+="CN87837"	"Joint training workshop for the Asia Pacific Group on money laundering jurisdictions undergoing an evaluation"	="Australian Federal Police"	04-Jun-08	="Education and Training Services"	17-Mar-08	20-Mar-08	85000.00	=""	="International Monetary Fund (IMF)"	04-Jun-08 01:42 PM	

+="CN87931"	"CYLINDER AND; PISTON ASSEMBLY, LANDING GEAR NSN 1620/12703196"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	22-May-08	87000.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	05-Jun-08 10:33 AM	

+="CN87951"	"TUBE ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	16-May-08	19-Mar-09	137670.11	=""	="NAMMO RAUFOSS A/S"	05-Jun-08 01:02 PM	

+="CN87962"	"POWER SUPPLY & TRANSFORMER"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	17-May-08	15-Nov-08	138191.73	=""	="RELLI TECHNOLOGY INC."	05-Jun-08 01:03 PM	

+="CN87970"	"DLSS/Navy SCA Reconciliation"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	16-May-08	31-May-08	136500.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 01:04 PM	

+="CN87977"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	20-Jun-08	93923.61	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 01:05 PM	

+="CN87980"	"Scheduler for CSVSPO"	="Defence Materiel Organisation"	05-Jun-08	="Project management"	16-May-08	12-Nov-08	123816.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:05 PM	

+="CN87996"	"DOcumnet Development"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	19-Oct-08	137500.00	=""	="ENVISTA PTY LTD"	05-Jun-08 01:07 PM	

+="CN88014"	"LPA SHIPS - REPLACEMENT OF OWS PLANTS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	19-May-08	24-Jun-08	86676.70	=""	="WILTRADING (WA) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88016"	"LPA SHIPS - REPLACEMENT OF OWS PLANTS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	19-May-08	24-Jun-08	88964.70	=""	="WILTRADING (WA) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88021"	"POC: Lloyd Magner Contact: 02 6266 9353"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	09-Jun-08	128755.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88022"	"Procurement of Gimball Rollers"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	19-May-08	30-Jun-08	85654.44	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:11 PM	

+="CN88026"	"PSP Labour in Support of Proj Ech Phase 2A"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	31-Aug-08	94320.72	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:11 PM	

+="CN88042"	"Plan & manage the Preparation of Tanks for Surveying & Conducting Thickness Testing - KAN"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	20-Jun-08	86794.14	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:13 PM	

+="CN88062"	"TD 012/07 Intro into Service Training"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	30-Jun-08	148148.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:15 PM	

+="CN88064"	"PAYMENT FOR FLOORSPACE AT EURONAVAL 2008"	="Defence Materiel Organisation"	05-Jun-08	="Lease and rental of property or building"	14-May-08	20-May-08	135500.00	=""	="PICO AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88089"	"Portable ID System"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	20-Jun-08	92100.03	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 01:19 PM	

+="CN88092"	"40mm Ph2 - milestone"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	09-Sep-08	142353.04	=""	="NOVA AEROSPACE"	05-Jun-08 01:19 PM	

+="CN88100"	"Teamcenter Maintenance  &  Support (to June 20"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	113003.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:20 PM	

+="CN88101"	"Teamcenter Maintenance & Support to June 08"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	136825.70	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:20 PM	

+="CN88104"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	15-May-08	84160.00	=""	="KPMG CORPORATE FINANCE (AUST)"	05-Jun-08 01:20 PM	

+="CN88110"	"WA Periscope Workshop - Activity 05 - Clean Room Cleaning"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	23-May-08	30-Jun-08	97212.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:21 PM	

+="CN88116"	"INSTALLATION & REPLACEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Business administration services"	23-May-08	30-Sep-08	84916.50	=""	="OMEGA TOWER COMMUNICATIONS"	05-Jun-08 01:22 PM	

+="CN88118"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-09	84062.22	=""	="INQUIRION PTY LTD"	05-Jun-08 01:22 PM	

+="CN88129"	"HP EVA4100 STORAGE AREA NETWORK"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	20-Jun-08	139464.82	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 01:23 PM	

+="CN88130"	"Underground cable work to water bore"	="Defence Materiel Organisation"	05-Jun-08	="Electrical wire and cable and harness"	22-May-08	30-Aug-08	130884.11	=""	="CHOICE ELECTRICAL SERVICES (NT)"	05-Jun-08 01:23 PM	

+="CN88141"	"PC9 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	15-Jan-09	88868.80	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 01:25 PM	

+="CN88165"	"CARTRIDGE 5.56 SPECIAL BALL"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jun-09	144686.98	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88180"	"PURCHASE OF TWO ACOUSTIC TRACKING SYSTEM HYDROPHONE ASSEMBLIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Dec-08	109420.97	=""	="THALES AUSTRALIA"	05-Jun-08 01:29 PM	

+="CN88183"	"20mm Ph2 - milestone"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	19-Sep-08	81934.38	=""	="NOVA AEROSPACE"	05-Jun-08 01:30 PM	

+="CN88187"	"PC9 Egress Tech Rec Ph2"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jul-08	89725.43	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88188"	"Replacement ASIC Cable for Prism 111 Radar Detection System"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	30-Nov-08	82277.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:30 PM	

+="CN88211"	"Ford Falcon XL Ute (US) Qty 6"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	24-Oct-08	139863.17	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88220"	"Hiolden Statement Sedan (SI) Qty 2"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	07-Nov-08	80321.36	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:34 PM	

+="CN88225"	"Documnet Development for PH5 1st Pass"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	17-Oct-08	133100.00	=""	="AUSPACE LIMITED"	05-Jun-08 01:35 PM	

+="CN88228"	"VOP for FSFT, AUD, WFO48314970"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	21-May-08	28-Jun-08	130953.25	=""	="BAE SYSTEMS OPERATIONS"	05-Jun-08 01:35 PM	

+="CN88232"	"Advanced Combat Optical Gunsight, Reflex sight and Polarizing Filter"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	22-May-08	10-Sep-08	123375.28	=""	="TRIJICON INC."	05-Jun-08 01:35 PM	

+="CN88235"	"2A Task Close puts"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	22-May-08	26-Jun-08	137559.59	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:36 PM	

+="CN88243"	"Build of new Single Access Terminals & Transit Cases"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	104033.08	=""	="THALES AUSTRALIA"	05-Jun-08 01:37 PM	

+="CN88250"	"Supply and installation of cabling services"	="Australian Federal Police"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	14-Jun-08	106574.00	="RFT37-2005"	="Absolute Cabling Systems Pty Ltd"	05-Jun-08 01:38 PM	

+="CN88285"	"Use of Exisitng ASP Contract  - Main Engine Exhaus Valve and Camshaft Drive"	="Defence Materiel Organisation"	05-Jun-08	="Bearings and bushings and wheels and gears"	30-Apr-08	11-Jul-08	102501.30	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:42 PM	

+="CN88297"	"MANUFACTURE NEW POKER GAUGES"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	23-May-08	80658.67	=""	="MADCO"	05-Jun-08 01:43 PM	

+="CN88300"	"Repair and modification of an F/A-18 Hornet, F404 Engine, Electrical Control Assy."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	22-May-08	08-Oct-08	87092.97	=""	="BAE SYSTEMS CONTROLS INC."	05-Jun-08 01:43 PM	

+="CN88311"	"TOWNSVILLE RADOME MAINTENANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	06-May-08	01-Jun-08	142137.24	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:45 PM	

+="CN88315"	"Training Services"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	16-May-08	96932.19	=""	="INNOVATIVE CONCEPTS INC"	05-Jun-08 01:45 PM	

+="CN88341"	"TOV-OVENS INSTALL UNDER CM 12 HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	30-May-08	121284.46	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:48 PM	

+="CN88353"	"Main engine exhaust system HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	30-Jun-08	85240.72	=""	="MAN DIESEL AUSTRALIA PTY LTD"	05-Jun-08 01:49 PM	

+="CN88355"	"MHC TACTICAL DATA SYSTEM"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-Dec-08	86692.10	=""	="THALES AUSTRALIA"	05-Jun-08 01:50 PM	

+="CN88360"	"JMO  Services  for Financial year 2007/2008"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	30-Jun-07	02-Feb-08	131902.11	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:50 PM	

+="CN88361"	"PROVIDE SPECIALIST TECHNICAL, LOGISTICAL, PUB'N, DATA MANAGEMENT SUPPORT TO ADF AS350BA PLATFOR"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	29-May-08	31-Jul-08	97799.84	=""	="RAYTHEON AUST PTY LTD"	05-Jun-08 01:50 PM	

+="CN88366"	"ADHOC SERVICES FOR MAINTENANCE OF 10 MAN CHAMBERS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	28-Apr-08	30-Jun-08	120779.99	=""	="H I FRASER PTY LTD"	05-Jun-08 01:51 PM	

+="CN88367"	"Configuration Management and Technical Investigations"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	30-Jun-08	89192.91	=""	="THALES AUSTRALIA"	05-Jun-08 01:51 PM	

+="CN88378"	"PRICE VARIATION"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	29-May-08	30-Jun-08	120230.46	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:53 PM	

+="CN88388"	"External Service Providers"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Sep-08	88200.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 01:54 PM	

+="CN88390"	"PO raised to cover the BAE CCP No 002/2007 to Stan 9207-001-052 for the period 01Jan to 31 Jan 2008."	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	02-Jun-08	13-Jun-08	124463.08	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:54 PM	

+="CN88411"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-08	95326.95	=""	="THALES AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88412"	"Project Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-Apr-08	30-Sep-08	130200.40	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88413"	"CONTRACTOR SUPPORT FOR NROC SITE PREPARATION"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	29-May-08	31-Aug-08	138994.04	=""	="DARONMONT TECHNOLOGIES PTY LTD"	05-Jun-08 01:57 PM	

+="CN88414"	"Satellites Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	18-Sep-07	31-Dec-08	95040.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88419"	"THIS ORDER IS RAISED IN ACCORDANCE WITH ATD 54-A."	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	02-Jun-08	16-Jun-08	84798.66	=""	="AUSTRALIAN AEROSPACE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88422"	"PROVISION OF GOVERNMENT FURNISHED EQUIPMENT  FOR E"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-Nov-07	30-Jun-08	110000.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88426"	"External Service Providers"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Sep-08	80977.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:58 PM	

+="CN88431"	"Anritsu Test Set Antenna in support of HUGPH2.3"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	12-May-08	26-May-08	88347.60	=""	="ANRITSU"	05-Jun-08 01:59 PM	

+="CN88449"	"WA Periscope Workshop - Activity 05 - Clean Room Cleaning"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	115087.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88466"	"ICCM to CATM conversion"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Sep-09	116044.65	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:03 PM	

+="CN88479"	"Transmission Mech. 011440224 po OA3CEC Payment for workshop order (SDSS)"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	13-May-08	13-May-08	81920.95	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:05 PM	

+="CN88486"	"MHC GYRO REFERENCE SET SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	30-Jun-08	96697.28	=""	="THALES AUSTRALIA"	05-Jun-08 02:05 PM	

+="CN88490"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AUTOMOTIVE FUEL (ADF), TO VARIOUS ARMY VESSELS, WHILE IN GOVE"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	12-May-08	30-May-08	118800.00	=""	="PERKINS SHIPPING GOVE"	05-Jun-08 02:06 PM	

+="CN88492"	"SDSS Data Extraction and Reporting"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	12-May-08	27-Jun-08	113400.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 02:06 PM	

+="CN88508"	"Create/Amend New Test Pprocedures for SSDG, Post Upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-May-08	30-Jun-08	94757.92	=""	="THALES AUSTRALIA"	05-Jun-08 02:08 PM	

+="CN88509"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	07-May-08	30-Jun-08	85000.01	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 02:08 PM	

+="CN88510"	"Servers"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	04-Jun-08	88000.00	=""	="SUN MICROSYSTEMS"	05-Jun-08 02:08 PM	

+="CN88512"	"LIFE OF TYPE COMPUTER HARDWARE PURCHASE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	07-May-08	30-Jun-08	139906.22	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:08 PM	

+="CN88525"	"BLANKET ORDER RAISED FOR THE SUPPLY OF DIESEL FUEL **"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	93500.00	=""	="CGL FUEL PTY LTD"	05-Jun-08 02:10 PM	

+="CN88527"	"WASTE WATER REMOVAL, STANDING OFFER 9805-050-033."	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	08-May-08	09-May-08	86238.68	=""	="TASMAN AVIATION ENTERPRISES"	05-Jun-08 02:10 PM	

+="CN88528"	"PROVISION OF EARNED VALUE MANAGEMENT (EVM) SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Management advisory services"	07-May-08	30-Sep-08	95200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 02:10 PM	

+="CN88557"	"EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	09-May-08	30-Jun-08	107800.00	=""	="FLECKNOE PTY LTD"	05-Jun-08 02:14 PM	

+="CN88581"	"1201-3 TU-ASSC 400Hz 25KVA and 5KVA Static Frequency Coverter Relocation"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-09	105600.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88603"	"SUBSCRIPTIONS MAY 2008"	="Administrative Appeals Tribunal"	05-Jun-08	="Printed media"	29-Apr-08	31-May-09	92752.18	=""	="LEXISNEXIS"	05-Jun-08 02:53 PM	

+="CN88633"	"An Even Start- National Tuition Program Program Administrator Services, NT Independent"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	31-Mar-09	101667.00	="PRN17026"	="ASSOCIATION OF INDEPENDENT SCHOOLS"	05-Jun-08 03:11 PM	

+="CN88651-A4"	" Provision of social policy research services - STINMOD development, maintenance and research services "	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Strategic planning consultation services"	01-Jul-07	30-Jun-11	141181.00	="PRN18230"	="UNIVERSITY OF CANBERRA"	05-Jun-08 03:15 PM	

+="CN88678"	" Consultancy regarding Google search appliance (WD007) "	="Australian Taxation Office"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	11-Jul-08	89525.00	=""	="The Hiser Group Pty Ltd"	05-Jun-08 04:32 PM	

+="CN88682"	"NATIONAL AUDIT, BULK FUEL FARM."	="Department of Defence"	05-Jun-08	="Environmental management"	13-May-08	30-Jun-08	122707.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:45 PM	

+="CN88686"	"structural assessment"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	13-May-08	30-Jun-08	97500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:46 PM	

+="CN88741"	"SUBSCRIPTION COSTS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	14-May-08	25-Nov-09	132800.28	=""	="TAYLOR & FRANCIS"	05-Jun-08 04:54 PM	

+="CN88742"	"SUBSCRIPTION RENEWAL TO PROQUEST"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	01-Jun-08	111842.82	=""	="PROQUEST LLC"	05-Jun-08 04:54 PM	

+="CN88744"	"POC: Heather Stevens 02 6127 7309"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-Jun-09	133436.16	=""	="BRENTNALL SERVICES PTY LTD"	05-Jun-08 04:54 PM	

+="CN88746"	"DSG-NQ-TS GAP YEAR FURNITURE BLD 415 & 315"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	88886.16	=""	="EMPIRE BUSINESS FURNITURE"	05-Jun-08 04:55 PM	

+="CN88749"	"CTD Project - Antenna Selction Reports"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	16-Jun-08	98076.00	=""	="JENKINS ENGINEERING DEFENCE"	05-Jun-08 04:55 PM	

+="CN88759"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	99000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 04:57 PM	

+="CN88769"	"Annual Software maintenance"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	30-Jun-08	89524.24	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:58 PM	

+="CN88774"	"JDSSC support to JP2048 Phase 4C"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	27-Jun-08	113916.25	=""	="CAE PROFESSIONAL SERVICES"	05-Jun-08 04:58 PM	

+="CN88780"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	96836.11	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 04:58 PM	

+="CN88784"	"Supply of Computer Modeller"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-09	101178.00	=""	="YTEK PTY LTD"	05-Jun-08 04:58 PM	

+="CN88788"	"RECRUITMENT OF CHIEF DEFENCE SCIENTIST"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	21-May-08	15-Aug-08	101810.64	=""	="WATERMARK SEARCH INTERNATIONAL"	05-Jun-08 04:59 PM	

+="CN88789"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	99360.89	=""	="SUN MICROSYSTEMS"	05-Jun-08 04:59 PM	

+="CN88792"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Oct-08	137499.99	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 04:59 PM	

+="CN88797"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	06-Oct-08	125905.00	=""	="PS MANAGEMENT CONSULTANTS"	05-Jun-08 04:59 PM	

+="CN88800"	"KOBRA 400HS-OM 'COMBI SHREDDER"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	13-May-08	10-Jun-08	112898.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 04:59 PM	

+="CN88802"	"Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	02-Jan-09	132464.67	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 04:59 PM	

+="CN88806"	"SOPVET STRATCOMMS TNA"	="Department of Defence"	05-Jun-08	="Specialised educational services"	13-May-08	30-Jun-08	92481.60	="RFSOP013-HQ06"	="CONNELL WAGNER VIC PTY LTD"	05-Jun-08 04:59 PM	

+="CN88816"	"HGCEPP 351-08 HGCEPP 352-08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	31-Oct-08	81109.77	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:00 PM	

+="CN88818"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	13-May-08	92538.02	=""	="RECEIVER GENERAL FOR CANADA"	05-Jun-08 05:00 PM	

+="CN88841"	"Maritime Structures, Ongoing Structural Repairs Whole of life inspections, maintenance, and repair"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	20-May-08	30-Jun-08	99761.70	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:01 PM	

+="CN88850"	"DIEP 0708-P025"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-May-08	86061.53	=""	="THIESS PTY LTD"	05-Jun-08 05:02 PM	

+="CN88860"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	98670.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:02 PM	

+="CN88862"	"S5153, WR 300067217. Upgrade and undertake alterat Operations room  &  adjacent"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	81145.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:02 PM	

+="CN88899"	"Professional ADF Aviators Reference Manual (PAARM) Delivery Schedule - Edition 2."	="Department of Defence"	05-Jun-08	="Published Products"	19-May-08	30-Jun-08	141411.67	=""	="AVIATION THEORY CENTRE PTY LTD"	05-Jun-08 05:04 PM	

+="CN88908"	"Scanners"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	02-Jun-08	128990.40	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:04 PM	

+="CN88943"	"IDS Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	31-May-08	134749.78	=""	="INGEGNERIA DEI SISTEMI SPA"	05-Jun-08 05:06 PM	

+="CN88981"	"ASA APPLIANCE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	98109.08	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:08 PM	

+="CN88991"	"TS VIDCON INSTALLATION"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	22-May-08	30-Jun-08	116347.00	=""	="AVPRO"	05-Jun-08 05:08 PM	

+="CN88998"	"PSP FOR RELOCATION OF HOUSING OPERATIONS TEAM FOR 12 MOTH PERIOD"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	108900.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	05-Jun-08 05:08 PM	

+="CN89018"	"PROVISION OF HARDWARE"	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	22-May-08	30-Jun-08	119572.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:09 PM	

+="CN89048"	"provision of 4 x 20ft containers for use as site office for the AACAP 2008 project"	="Department of Defence"	05-Jun-08	="Containers and storage"	22-May-08	30-Jun-08	127174.30	=""	="SEA BOX INTERNATIONAL PTY LTD"	05-Jun-08 05:10 PM	

+="CN89049"	"HMAS CRESWELL HERITAGE MANAGEMENT DOCUMENTATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	96325.90	=""	="ENVIRONMENTAL RESOURCES"	05-Jun-08 05:11 PM	

+="CN89055"	"FEES - JEZZINE BARRACKS - COMMUNICATIONS CONSULTAN  VARIOUS PROJECTS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-09	136400.00	=""	="THE PHILLIPS GROUP"	05-Jun-08 05:11 PM	

+="CN89058"	"Supply of Analyst Programmer - Level 3"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-May-08	30-Jun-09	111622.50	=""	="YTEK PTY LTD"	05-Jun-08 05:11 PM	

+="CN89061"	"Supply of fresh rations"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	20-May-08	30-Jun-08	122000.00	=""	="WOOLWORTHS SA DIVISION"	05-Jun-08 05:11 PM	

+="CN89065"	"681915 (NT1653) Land Monitoring and Remediation at MBTA"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	30-Jun-08	87008.00	=""	="ASSET SERVICES"	05-Jun-08 05:11 PM	

+="CN89066"	"Human Factors Risk assessment contract"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	22-May-08	19-Sep-08	136350.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:11 PM	

+="CN89067"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	101464.00	=""	="COMMSNET GROUP PTY LTD"	05-Jun-08 05:11 PM	

+="CN89094"	"Concept Project"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	13-Jun-08	110000.00	=""	="ENTECHO PTY LTD"	05-Jun-08 05:13 PM	

+="CN89096"	"Class A fordigraph shredder model 1324CCC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	83391.00	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89109"	"Research Contract"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	31-Mar-09	133244.42	=""	="MINISTRY OF DEFENCE, DSTL"	05-Jun-08 05:13 PM	

+="CN89114"	"Consultancy"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	20-Sep-08	138399.64	=""	="ALLEN CONSULTING GROUP"	05-Jun-08 05:13 PM	

+="CN89115"	"Contract for Toxic Gas Monitoring System"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	07-May-08	30-May-08	140910.00	="2008-1012630"	="BIOLAB (AUST) PTY LTD"	05-Jun-08 05:13 PM	

+="CN89119"	"dental services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	20-May-08	31-Jul-09	90000.00	=""	="SCOTT MEDICAL SERVICES PTY LTD"	05-Jun-08 05:14 PM	

+="CN89138"	"Services of Mechanical Engineer -"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	19-May-08	30-Jun-09	88352.88	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:14 PM	

+="CN89145"	"For Site Integration Services for 8 DIERS as liste"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	133111.49	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:15 PM	

+="CN89151"	"CONTACT TONY BUTLER 08 8935 4625."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	109776.70	=""	="ASSET SERVICES"	05-Jun-08 05:15 PM	

+="CN89152"	"PROVISION OF HIGH END WORKSTATIONS"	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	22-May-08	30-Jun-08	134640.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89166"	"CONTACT KYLIE HARVEY 08 8935 4695."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	85180.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:16 PM	

+="CN89167"	"ROAD CHTR EX HIGH SIERRA MOVT OF 2OCU EQUIP"	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	01-Jul-08	96175.00	=""	="NORTHLINE PTY LTD"	05-Jun-08 05:16 PM	

+="CN89168"	"BUSINESS SUPPORT SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	22-Dec-08	88199.11	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 05:16 PM	

+="CN89171"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	118668.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:16 PM	

+="CN89175"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	31-Oct-08	146190.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:16 PM	

+="CN89177"	"ICT peripherals"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	25-Jun-08	98590.80	=""	="DIGICOR (NSW) LTD"	05-Jun-08 05:16 PM	

+="CN89181"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	01-Aug-08	94050.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:16 PM	

+="CN89184"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Aug-08	144837.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:17 PM	

+="CN89195"	"SN0647 HARM U010 - Upgrade External Lighting"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	93529.70	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:17 PM	

+="CN89202"	"FTIR Gas Analyster"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	23-Jun-08	98379.00	=""	="PERKIN ELMER PTY LTD"	05-Jun-08 05:17 PM	

+="CN89209"	"MINISTERIAL SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	06-May-08	121189.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:18 PM	

+="CN89222"	"HQJOC PROKECY - XSI TECHNOLOGY (BACKUP TAPE DRIVE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	90288.00	=""	="XSI TECHNOLOGY"	05-Jun-08 05:18 PM	

+="CN89224"	"Purchasing Fax Server Kit - includes PCI card, sof OnePAC."	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-Jun-08	83343.70	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 05:18 PM	

+="CN89255"	"RECRUITMENT SERVICES"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	15-May-08	15-May-08	94254.16	=""	="HAYS PERSONNEL SERVICES"	05-Jun-08 05:20 PM	

+="CN89262"	"TRAINING AIDS"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-08	95600.00	=""	="MILSKIL PTY LTD"	05-Jun-08 05:20 PM	

+="CN89277"	"Site Integration Services 7 DIERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	130435.76	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:21 PM	

+="CN89278"	"DISIP Stage 3 Site Integration Services for DIERS 0708--756"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	15-Jul-08	126890.40	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:21 PM	

+="CN89283"	"Technical Contact: R Ward Ph: 08 8393 3233"	="Department of Defence"	05-Jun-08	="General building construction"	08-May-08	30-Oct-08	94710.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:21 PM	

+="CN89289"	"SUBSCRIPTION"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	20-May-08	81525.05	=""	="STRATEGIC FORECASTING INC"	05-Jun-08 05:21 PM	

+="CN89291"	"SUBSCRIPTION TO NEWS AND MILITARY ARCHIVES"	="Department of Defence"	05-Jun-08	="Management support services"	15-May-08	01-Jul-08	126619.00	=""	="LEXIS NEXIS"	05-Jun-08 05:21 PM	

+="CN89302"	"CONSULTANCY SERVICE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	149457.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89303"	"EFFECIENCY AND EFFECTIVENESS REVIEW"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	141881.30	=""	="ERNST & YOUNG TRANS ADVISORY"	05-Jun-08 05:22 PM	

+="CN89308"	"HP SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	30-May-09	131666.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89325"	"Provision of  sensus data"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	20-May-08	87030.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	05-Jun-08 05:23 PM	

+="CN89362"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	83490.00	=""	="FLIR SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89366"	"POC: C.Vagi 02 6127 7300 Bid Number: 8001135/1137"	="Department of Defence"	05-Jun-08	="Hardware"	01-May-08	29-May-08	131525.96	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:25 PM	

+="CN89371"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	31-May-08	85800.00	=""	="HITACHI DATA SYSTEMS"	05-Jun-08 05:25 PM	

+="CN89372"	"S5113, WR 300081545. Hire access equipment for the below and around the Hammer Head Crane."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	96456.18	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:25 PM	

+="CN89375"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	90842.93	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:25 PM	

+="CN89377"	"NetApp Server"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-May-08	96074.86	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89394"	"Supply a PABX System for Wollongong Hydro Graphic"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	104848.70	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:26 PM	

+="CN89395"	"REPORTING"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jul-08	104500.00	=""	="JEPPESEN AUSTRALIA"	05-Jun-08 05:26 PM	

+="CN89397"	"AIR 5418:FOLLOW-ON STAND OFF WEAPON FCY. PROVIDE PROJECT CONSULTANCY FOR DELIVERY OF THE FO"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-09	93431.80	=""	="CONNELL WAGNER PTY LTD"	05-Jun-08 05:26 PM	

+="CN89403"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	02-Jun-08	137306.75	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:27 PM	

+="CN89404"	"Synchrotron Science Tasks as per Research Agreemen 2008/1011595/1"	="Department of Defence"	05-Jun-08	="Military science and research"	14-May-08	30-Jun-09	88000.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:27 PM	

+="CN89408"	"NQ2222 - Lavarack Barracks - Western Mess Chiller Replacement."	="Department of Defence"	05-Jun-08	="Industrial refrigeration"	14-May-08	30-Jun-08	126308.99	=""	="SPOTLESS"	05-Jun-08 05:27 PM	

+="CN89431"	"Mainframe Engineer"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	102080.00	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:29 PM	

+="CN89444"	"Release 2.0.28 Part 2"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	15-Aug-08	127591.05	="CIOG307/08"	="UXC LIMITED"	05-Jun-08 05:30 PM	

+="CN89448"	"Computer Servers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-May-08	127838.59	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:30 PM	

+="CN89456"	"SCEC ENDORSED CL.A SMALL SHREDDER MODEL 1324CC INCLUDES DELIVERY INSTALLATION & STARTUP KIT"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	83391.00	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:30 PM	

+="CN89460"	"IXOS UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	07-May-08	82351.50	=""	="CSC AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89461"	"EQUIPMENT HIRE"	="Department of Defence"	05-Jun-08	="Prefabricated structures"	16-May-08	04-Jun-08	95866.10	=""	="STAGING CONNECTIONS AUSTRALIA"	05-Jun-08 05:31 PM	

+="CN89503"	"Army Aviation Engineering Officer Alignment Course"	="Department of Defence"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	31-Dec-08	120462.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:33 PM	

+="CN89518"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-May-08	92099.02	=""	="AGILENT TECHNOLOGIES AUSTRALIA PTY"	05-Jun-08 05:34 PM	

+="CN89523"	"REPLACE JOS ELECTRONIC EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	16-May-08	30-Jun-08	115758.57	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:35 PM	

+="CN89543"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	23-Jul-09	93308.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:36 PM	

+="CN89557"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	23-Jul-09	139961.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:37 PM	

+="CN89578"	"NQ2231 - Combined Mess Emergancy Funding Major Plu"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	80000.00	=""	="SPOTLESS"	05-Jun-08 05:38 PM	

+="CN89589"	"RAAF DARWIN : FUEL EQUIPMENT MAINTENANCE SECTION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	105181.44	=""	="JOHN HOLLAND PTY LTD"	05-Jun-08 05:39 PM	

+="CN89599"	"PROP STUDIES - FORT WALLACE - ENVIRONMENTAL"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	114816.24	=""	="SMEC AUSTRALIA"	05-Jun-08 05:39 PM	

+="CN89608"	"NQ21581 - RAAF Townsville 5AVN LSS - Temporary Tra"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	82500.00	=""	="SPOTLESS"	05-Jun-08 05:40 PM	

+="CN89624"	"ADVERTISING"	="Department of Defence"	05-Jun-08	="Advertising"	23-May-08	30-Jun-08	121708.40	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:41 PM	

+="CN89637"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Published Products"	29-May-08	30-Jun-08	113166.68	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:42 PM	

+="CN89647"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Electronic reference material"	15-Jan-08	31-May-08	104270.82	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:43 PM	

+="CN89685"	"LACE - LCPL STEPHEN CARR KOVCO INQUIRY"	="Department of Defence"	05-Jun-08	="Legal services"	29-Apr-08	30-Dec-08	95178.04	=""	="CLAYTON UTZ"	05-Jun-08 05:45 PM	

+="CN89704"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	93936.08	=""	="INSITEC"	05-Jun-08 05:46 PM	

+="CN89706"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	82181.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89708"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	89001.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89716"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	92664.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89734"	"For DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	01-Sep-08	106479.31	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 05:48 PM	

+="CN89744"	"DEVELOP PROJECT PLAN FOR THE NATIONAL IMPLENTATION OF ADF INTEGRATED PEOPLE SUPPORT MODEL"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-08	85000.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89747"	"KOSA project management"	="Department of Defence"	05-Jun-08	="Professional engineering services"	30-May-08	30-Jun-08	143151.38	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:49 PM	

+="CN89754"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Sep-08	88500.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	05-Jun-08 05:49 PM	

+="CN89755"	"Support for the Vital Planning and Analysis (VIPS)"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	89760.00	=""	="CONSUNET PTY LTD"	05-Jun-08 05:49 PM	

+="CN89767"	"RANDWICK DISPOSAL  &  RATIONALISATION PROJECT OPENED NEW PO BECAUSE ROMAN PREVEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	07-May-08	30-Jun-08	128480.39	=""	="GHD PTY LTD"	05-Jun-08 05:50 PM	

+="CN89775"	"Project Management Fees"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	30-May-08	30-Jun-08	143000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:51 PM	

+="CN89779"	"TSS Contract Firing Officer for High Explosives Firing Comples WSD"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Jun-08	30-Jun-08	104346.00	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:51 PM	

+="CN89782"	"Consultancy"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	26-May-08	30-Jun-08	94490.00	=""	="CONCENTRIC ASIA PACIFIC"	05-Jun-08 05:51 PM	

+="CN89789"	"AIR CHTR OP SLIPPER MRE"	="Department of Defence"	05-Jun-08	="Aircraft"	29-Apr-08	28-May-08	94999.99	=""	="STRATEGIC AVIATION - USD"	05-Jun-08 05:51 PM	

+="CN89800"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	110757.33	=""	="MINTER ELLISON"	05-Jun-08 05:52 PM	

+="CN89831"	"UTILISATION OF THE ENTERPRIZE EM ENERGY DATA PROCESSING SYSTEM WITHIN THE DEFENCE ENERGY"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	132000.00	=""	="ENERGETICS PTY LTD"	05-Jun-08 05:54 PM	

+="CN89844"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-Jun-08	108454.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:55 PM	

+="CN89848"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	10-Jun-08	97447.55	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:55 PM	

+="CN89854"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	122298.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:55 PM	

+="CN89877"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	02-Jun-08	30-Jun-08	90190.00	=""	="CLAYTON UTZ"	05-Jun-08 05:57 PM	

+="CN89879"	"PM fee refit Gladstone St, Fyshwick"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	120120.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:57 PM	

+="CN89889"	"UPGRADE OF 16 RAIL WAGONS & ACCOMMODATION CAR"	="Department of Defence"	05-Jun-08	="Locomotives and electric trolleys"	12-Nov-07	30-Jun-08	121294.80	=""	="BLUEBIRD RAIL OPERATIONS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89895"	"PSP TO FINALISE AND IMPLEMENT THE DEFENCE ENE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	84700.00	=""	="ENERGETICS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89917"	"PROVISION OF SERVICES FOR A CTD PROJECT"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	95700.00	=""	="AGENT ORIENTED SOFTWARE PTY LTD"	05-Jun-08 05:59 PM	

+="CN89921"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	86032.10	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 06:00 PM	

+="CN89932"	"Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	16-Mar-09	100980.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	05-Jun-08 06:00 PM	

+="CN89939"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	109248.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:01 PM	

+="CN89961"	"Survey of Community Self Perceptions"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	82500.00	=""	="EUREKA STRATEGIC RESEARCH"	05-Jun-08 06:02 PM	

+="CN89968"	"Storage Hardware"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	20-Jun-08	135399.23	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	05-Jun-08 06:03 PM 

--- a/admin/partialdata/04Dec2007to08Dec2007valto.xls
+++ b/admin/partialdata/04Dec2007to08Dec2007valto.xls
@@ -1,479 +1,479 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN49710"	" POCKET, AMMUNITION MAGAZINE POUCH "	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	16247.00	=""	="ANCAMARABA PTY LTD"	04-Dec-07 07:58 AM	
-="CN49839"	"Patch, Leg, Mollee Attachment"	="Defence Materiel Organisation"	04-Dec-07	="Patch panel"	03-Dec-07	31-Jan-08	32780.00	="CC1SI9"	="ADVENTURE ONE PTY LTD"	04-Dec-07 09:03 AM	
-="CN49840"	"Holsters & Chest Webbing"	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	122980.00	="CC1SIC"	="HUNTERS EDGE"	04-Dec-07 09:24 AM	
-="CN49842"	"Printing of NAT10129-12.2007 - The 2008 ATO Story calendar. Qty: 23,000"	="Australian Taxation Office"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	14-Dec-07	13446.40	="06.030"	="Paragon Printers"	04-Dec-07 09:35 AM	
-="CN49843-A4"	"Facilitation of Development of Murray-Darling Basin Project Methodology and Evaluation Approach"	="Centrelink"	04-Dec-07	="Strategic planning consultation services"	23-Nov-07	30-Jun-08	45000.00	=""	="Participatory Corporate Development P/L T/A Richard Kelloway and Associates"	04-Dec-07 09:40 AM	
-="CN49844"	" PURCHASE OF QTY 50 TRAVEL BAGS "	="Department of Defence"	04-Dec-07	="Luggage"	18-Sep-07	02-Oct-07	11000.00	=""	="MAINPEAK"	04-Dec-07 10:05 AM	
-="CN49845"	"PURCHASE OF QTY 90 SPECIAL CLIMBING BOOTS"	="Department of Defence"	04-Dec-07	="Footwear"	29-Oct-07	14-Nov-07	31185.00	=""	="MAINPEAK"	04-Dec-07 10:13 AM	
-="CN49847"	"Actuarial Services"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Service Industry Machinery and Equipment and Supplies"	01-Jun-07	31-Jul-07	12600.00	=""	="AUST GOVERNMENT ACTUARY"	04-Dec-07 10:43 AM	
-="CN49849"	"Adoption study"	="Australian Centre for International Agricultural Research"	04-Dec-07	="Adoption services"	21-Nov-07	28-Feb-08	12166.00	=""	="Dr Stephen Blaber"	04-Dec-07 10:49 AM	
-="CN49848"	"HOLSTER PISTOL"	="Defence Materiel Organisation"	04-Dec-07	="Light weapons and ammunition"	24-Oct-07	04-Feb-08	34650.00	=""	="AUST WEBGEAR"	04-Dec-07 10:56 AM	
-="CN49851"	"Police secondee salary recoup"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	556541.06	=""	="Australian Federal Police"	04-Dec-07 11:58 AM	
-="CN49852"	" GUM TEST EQUIPMENT EXISTANT AND TRAINING "	="Defence Materiel Organisation"	04-Dec-07	="Completion test equipment"	26-Jun-07	29-Nov-07	51753.90	=""	="H D SCIENTIFIC SUPPLIES PTY LTD"	04-Dec-07 12:02 PM	
-="CN49769"	"Public relations to support the Murray-Darling Basin Campaign."	="Department of Human Services"	04-Dec-07	="Public relations programs or services"	03-Sep-07	30-Jun-08	80000.00	=""	="Cox Inall Communications"	04-Dec-07 12:03 PM	
-="CN49853"	"Office Fitout "	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Furniture and Furnishings"	26-Oct-07	30-Dec-07	53600.00	=""	="CITE OFFICE DESIGN PTY LTD"	04-Dec-07 12:05 PM	
-="CN49854"	"Recruitment - Software Developer"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	16-Nov-07	30-Jun-08	130944.00	=""	="Tarakan Consulting Pty Ltd"	04-Dec-07 12:11 PM	
-="CN49855-A1"	" Recruitment - Project Manager "	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jan-08	31-Dec-08	269060.55	=""	="Hudson Global Resources"	04-Dec-07 12:15 PM	
-="CN49856"	"Professional Software Development Kit"	="Australian Crime Commission"	04-Dec-07	="Software"	28-Nov-07	28-Nov-07	77000.00	=""	="BCT Group Pty Ltd"	04-Dec-07 12:27 PM	
-="CN49858"	" Blade Servers "	="Australian Crime Commission"	04-Dec-07	="High end computer servers"	27-Nov-07	27-Nov-07	209205.77	="ACC-07/286"	="One Planet Solutions Pty Ltd"	04-Dec-07 12:40 PM	
-="CN49857"	"INDUCTOR, FOAM MAKING INLINE, PORTABLE, C/W RUBBER HOSE & TIP TUBE"	="Defence Materiel Organisation"	04-Dec-07	="Inductors"	30-Nov-07	01-Feb-08	26241.60	=""	="CHUBB FIRE SAFETY LTD"	04-Dec-07 12:42 PM	
-="CN49859"	"Purchase of 'B' class cabinets for National Office"	="Australian Taxation Office"	04-Dec-07	="Accommodation furniture"	10-May-07	21-Sep-07	38408.00	=""	="Planex Sales Pty Ltd"	04-Dec-07 01:09 PM	
-="CN49860"	"Provision of supply of  Labeling tapes"	="Department of Parliamentary Services"	04-Dec-07	="Labelling tapes"	03-Dec-07	31-Dec-07	11407.00	=""	="Prodata P/L"	04-Dec-07 01:13 PM	
-="CN49861"	"Storage of  VideoTapes for Broadcasting Contract (DPS04035 )"	="Department of Parliamentary Services"	04-Dec-07	="Storage"	03-Dec-07	30-Jun-08	22000.00	=""	="Iron Mountain Australia P/L"	04-Dec-07 01:13 PM	
-="CN49862"	"Provision of Carpet laying and Floorcovering Services"	="Department of Parliamentary Services"	04-Dec-07	="Carpeting"	30-Nov-07	31-Dec-07	27702.40	=""	="Chesta's Floors"	04-Dec-07 01:13 PM	
-="CN49863"	"Provision of supply of Nematodes for Landscape Services (Pest Accounts)"	="Department of Parliamentary Services"	04-Dec-07	="Lawn care services"	29-Nov-07	30-Dec-07	10587.50	=""	="Ecogrow Australia Pty Ltd"	04-Dec-07 01:13 PM	
-="CN49864"	"water Inspection and treatment services Contract (JH00051M )"	="Department of Parliamentary Services"	04-Dec-07	="Water testing and conservation and ecology"	26-Nov-07	07-Dec-07	17938.26	=""	="Ecolab Water Care Services Pty Ltd"	04-Dec-07 01:13 PM	
-="CN49865"	"Provision of Project Mangement Training Services Contract (DPS07049 )"	="Department of Parliamentary Services"	04-Dec-07	="Education and Training Services"	22-Nov-07	28-Dec-07	104425.20	=""	="Tanner James Management"	04-Dec-07 01:14 PM	
-="CN49866"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	04-Dec-07	="Environmental security control services"	28-Nov-07	28-Dec-07	33376.75	=""	="Honeywell Limited"	04-Dec-07 01:14 PM	
-="CN49867"	"Provision of supply of  X -Ray Hire"	="Department of Parliamentary Services"	04-Dec-07	="Security and control equipment"	18-Oct-07	28-Dec-07	24750.00	=""	="Smiths Detection Australia P/L"	04-Dec-07 01:14 PM	
-="CN49868"	"Provision of Monitoring Fire Alarms at Parliament House Contract DPS05051)"	="Department of Parliamentary Services"	04-Dec-07	="Fire alarm maintenance or monitoring"	04-Dec-07	30-Jun-08	44667.15	=""	="Aust Federal Police"	04-Dec-07 01:14 PM	
-="CN49869"	"Supply of Stationary & Office Equipment"	="Department of Parliamentary Services"	04-Dec-07	="Stationery"	16-Nov-07	22-Mar-08	11838.70	=""	="Corporate Express"	04-Dec-07 01:14 PM	
-="CN49870"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	82500.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	
-="CN49871"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Building cleaning services"	04-Dec-07	30-Jun-08	44000.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	
-="CN49872"	"Industrail Cleaning & relateded Services Contract (JH01037)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	423500.00	=""	="Canberra Queanbeyan Cleaning"	04-Dec-07 01:14 PM	
-="CN49873"	"Provision of Ongoing support services for mySAP (Contract  DPS06064)"	="Department of Parliamentary Services"	04-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jul-07	30-Jun-08	16967.51	=""	="Supply Chain Consulting Pty Ltd"	04-Dec-07 01:15 PM	
-="CN49874"	"Supply of Landscaping materials"	="Department of Parliamentary Services"	04-Dec-07	="Topsoil"	09-Jul-07	30-Jun-08	14300.00	=""	="Marfel Transport Service"	04-Dec-07 01:15 PM	
-="CN49875"	"Provision of supply of Fertilizer"	="Department of Parliamentary Services"	04-Dec-07	="Fertilisers and plant nutrients and herbicides"	09-Jul-07	30-Jun-08	12100.00	=""	="Bellchambers Produce Pty Ltd"	04-Dec-07 01:15 PM	
-="CN49876"	"major service on airconditioning chiller"	="Department of Parliamentary Services"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	30-Nov-07	31-Dec-07	54980.20	="DPS07073"	="Chillmech Services (Australia)"	04-Dec-07 01:15 PM	
-="CN49877"	"Standing Offer notice (SON27006); LEASE NOV-07 Fleet management and leasing services."	="Department of Parliamentary Services"	04-Dec-07	="Vehicle leasing"	22-Oct-07	30-Nov-07	13683.13	=""	="LeasePlan"	04-Dec-07 01:15 PM	
-="CN49879-A2"	"Provision for Specilaist Financial Advice"	="Comsuper"	04-Dec-07	="Human resources services"	28-Aug-07	30-Jun-08	350000.00	=""	="The IQ Business Group Pty Ltd"	04-Dec-07 01:38 PM	
-="CN49880-A1"	"Provision for technical Analyst"	="Comsuper"	04-Dec-07	="Human resources services"	01-Dec-07	30-Jun-08	91520.00	=""	="Face2face Recruitment"	04-Dec-07 01:41 PM	
-="CN49882"	"MANUFACTURE AND FIT NAVIGATIONAL MAST AND ANTENNA AND TO FIT ACCESSORIES"	="Department of Defence"	04-Dec-07	="Navigational equipment and instruments"	29-Aug-07	13-Oct-07	18519.82	=""	="WILTRADING"	04-Dec-07 01:47 PM	
-="CN49881-A1"	"Provision for Application Developer"	="Comsuper"	04-Dec-07	="Human resources services"	04-Aug-07	30-Jun-08	172040.00	=""	="Eurolink Consulting Australia Pty Ltd"	04-Dec-07 01:48 PM	
-="CN49883"	"ORATSIC Governance Info session & costitution redisgn wrk  Palm Island"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	19-Nov-07	21-Dec-07	15840.00	=""	="Australian Rural Accounting"	04-Dec-07 01:50 PM	
-="CN49884"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	19-Nov-07	30-Dec-07	82225.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:50 PM	
-="CN49885"	"MEX Facilities Management Access, Training and Licenses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	19-Nov-07	30-Jun-08	12142.10	=""	="MEX Maintenance Experts"	04-Dec-07 01:51 PM	
-="CN49886"	"Juliana House Alteration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	19-Dec-07	35640.00	=""	="Manzano Constructions"	04-Dec-07 01:51 PM	
-="CN49887"	"Supply of workstations & Loose furniture"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Nov-07	30-Nov-07	645703.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49888"	"Construction Management"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	19-Nov-07	1242331.20	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49889"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	147840.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49890"	"FaCSIA Intelligent information System"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	21-Nov-07	14-Feb-08	70000.00	=""	="NETCAT.biz PTY LTD"	04-Dec-07 01:51 PM	
-="CN49891"	"Production of quality assurance and continuous improvement handbooks for disability services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	20-Nov-07	01-Dec-07	25750.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Dec-07 01:51 PM	
-="CN49892"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	20-Nov-07	30-Jun-08	143220.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49893"	"General Advice"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	19-Nov-07	19-Nov-07	22000.00	=""	="DLA PHILLIPS FOX"	04-Dec-07 01:52 PM	
-="CN49894"	"Software Licences"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Dec-07	149512.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:52 PM	
-="CN49895"	"International Services for return of Indigenous Remains"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Mail and cargo transport"	15-Nov-07	30-Nov-07	10558.22	=""	="INTERNATIONAL ART SERVICES PTY LTD"	04-Dec-07 01:52 PM	
-="CN49896"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	84188.68	=""	="CYBERTRUST AUSTRALIA"	04-Dec-07 01:52 PM	
-="CN49897"	"Symposium "Go To Market" 19 November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	15-Nov-07	23-Nov-07	21600.00	=""	="Gartner Australasia PTY Limited"	04-Dec-07 01:52 PM	
-="CN49898"	"Superannuation Administration fees for Quarter 2 07/08"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	31-Dec-07	127320.25	=""	="Comsuper       CPM"	04-Dec-07 01:52 PM	
-="CN49900"	"7 units of Dragon "Preferred" v9.5 - including DVD"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	17493.00	=""	="Voicerecognition.com.au Pty Ltd"	04-Dec-07 01:52 PM	
-="CN49901"	"Report on issues of FaCSIA  fundees in Victoria's Business Services Sector"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	14-Nov-07	14-Nov-07	22698.14	=""	="Dept of Employment & Workplace Rela"	04-Dec-07 01:52 PM	
-="CN49902"	"TAM Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Components for information technology or broadcasting or telecommunications"	19-Nov-07	31-Dec-07	123200.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:53 PM	
-="CN49903"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	26241.30	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:53 PM	
-="CN49899"	"Provision for Security Architecture Scoping Study"	="Comsuper"	04-Dec-07	="Information technology consultation services"	22-Nov-07	21-Dec-07	17600.00	=""	="Castelain"	04-Dec-07 01:53 PM	
-="CN49904"	"FaCSIA Property & Security Business Continuity Plan - Consulting Assistance"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	16-Nov-07	21-Dec-07	17325.00	=""	="Leslie Whittet & Associates"	04-Dec-07 01:53 PM	
-="CN49905"	"Career Development Assessment Centre registration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	23650.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:53 PM	
-="CN49906"	"NTER Communications"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	16-Nov-07	33286.30	=""	="Famous 5 Pty Ltd"	04-Dec-07 01:53 PM	
-="CN49908"	"Media Analysis for NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	30-Jun-08	46142.42	=""	="Media Monitors Australia Pty Ltd"	04-Dec-07 01:53 PM	
-="CN49909"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	125840.00	=""	="Stratagem Computer Contractors Pty"	04-Dec-07 01:53 PM	
-="CN49910"	"Lease and operation of a third aircraft for NT Police to support the NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Aircraft"	28-Nov-07	12-Dec-07	1980000.00	=""	="NORTHERN TERRITORY POLICE"	04-Dec-07 01:54 PM	
-="CN49911"	"Money Management Resource Tool- Facilitator's  community Education Workshop Kit"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	15-Jan-08	45687.20	=""	="Marcus Lee Design"	04-Dec-07 01:54 PM	
-="CN49913"	"ARB 4WD Vehicle Recovery Kits"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Nov-07	25460.00	=""	="ARB 4 x 4 Accessories"	04-Dec-07 01:54 PM	
-="CN49914"	"Removal fee for Nhulunbuy Fitout"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	26-Nov-07	26-Nov-07	24200.00	=""	="Lalor Removals Pty Ltd"	04-Dec-07 01:54 PM	
-="CN49915"	"Automated Testing Strategy Development"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	26-Nov-07	21-Dec-07	16764.00	=""	="KJ ROSS & ASSOCIATES"	04-Dec-07 01:54 PM	
-="CN49916"	"Software"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	23-Nov-07	30-Dec-07	26855.12	=""	="ALPHAWEST SERVICES PTY LTD"	04-Dec-07 01:54 PM	
-="CN49917"	"Introduction to Corporate Governance Worksop Alice Springs"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Hotels and lodging and meeting facilities"	30-Nov-07	30-Nov-07	21386.00	=""	="DIPLOMAT ALICE SPRINGS"	04-Dec-07 01:54 PM	
-="CN49918"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	30-Nov-07	30-Jun-08	128811.20	=""	="COMMAND RECRUITMENT GROUP"	04-Dec-07 01:54 PM	
-="CN49919"	"Design and develop a Petrol Sniffing Strategy Evaluation Framework"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	01-Apr-08	80000.00	=""	="COURAGE PARTNERS PTY LTD"	04-Dec-07 01:55 PM	
-="CN49920"	"Bounty Bag - DVD in New Mother Bag"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Educational facilities"	30-Nov-07	15-Dec-07	66000.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49921"	"Hoban"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	29-Nov-07	29-Nov-07	11000.00	=""	="Lynne Hoban Personnel Systems P/L"	04-Dec-07 01:55 PM	
-="CN49922"	"Provision of Investigation Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Financial and Insurance Services"	28-Nov-07	11-Jan-08	44000.00	=""	="DELOITTE TOUCHE TOHMATSU"	04-Dec-07 01:55 PM	
-="CN49923"	"Advertising for Tenders for the Provision on domestic Violence Helpline"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	26980.17	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49924"	"Government Notices for NT Emergency Response Pornography Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Emergency and field medical services products"	22-Nov-07	14-Dec-07	21544.45	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49925"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	20-Dec-07	11872.42	=""	="COMPUTERCORP (OPERATIONS)"	04-Dec-07 01:55 PM	
-="CN49926"	"Advertising of Compass Program in Graduate Careers 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	22-Nov-07	30-Dec-07	12925.00	=""	="HOBSONS AUSTRALIA PTY LIMITED t/as"	04-Dec-07 01:55 PM	
-="CN49927"	"Distribution of 70,000 Avant Cards for National Youth Week"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Marketing and distribution"	22-Nov-07	28-Feb-08	14003.00	=""	="AVANT CARD"	04-Dec-07 01:56 PM	
-="CN49928"	"Provision of pricing evaluation services in relation to Market Research & Usability Panel RFT"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	22-Nov-07	06-May-08	23625.00	=""	="Freebody Cogent Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49929"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	30-Dec-07	15326.56	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	
-="CN49930"	"Additional computers for extra staff & members. Qty 30 complete units/ qty 10 units w/out monito"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	23-Nov-07	65747.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	
-="CN49931"	"Supply and install of workstations and loose furniture Brisbane STO"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	23-Nov-07	273751.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49932"	"Contractor engaged to complete fitout works to Brisbane State Office"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	678459.98	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49933"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	23-Nov-07	30-Jun-08	153120.00	=""	="Avanade Australia Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49934-A1"	"Longitudinal Study of Indigenous Children - Survey Design, data collection"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	23-Nov-07	30-Jun-11	1746957.00	=""	="Roy Morgan Research Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49935"	"LAFIA 2007 Asia Programme Fee"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	02-Nov-07	02-Nov-07	27610.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:57 PM	
-="CN49936"	"Comcare 06/07 premium adjustment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Insurance and retirement services"	02-Nov-07	02-Nov-07	750433.00	=""	="Comcare Australia"	04-Dec-07 01:57 PM	
-="CN49937"	"Fitout NTER Operations Centre Office - Darwin"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="General building construction"	01-Nov-07	02-Nov-07	1535030.88	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:57 PM	
-="CN49938"	"Office equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	11-Oct-07	29-Nov-07	26754.20	=""	="Office Furniture & Storage Solution"	04-Dec-07 01:57 PM	
-="CN49939"	"Property Lease L24/500 Collins St melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	28-Nov-07	29320.20	=""	="ECS Property Group"	04-Dec-07 01:57 PM	
-="CN49940"	"Rent for 565 Bourke Street Melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	28-Nov-07	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Dec-07 01:57 PM	
-="CN49941"	"Senior Project Manager - NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	05-Nov-07	30-Jun-08	72600.00	=""	="TANNER JAMES MANAGEMENT"	04-Dec-07 01:57 PM	
-="CN49942"	"Advertising New NTER Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	45556.50	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:57 PM	
-="CN49943"	"Advertising Graduate Oportunities 08/09"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	12100.00	=""	="GRADUATE CAREERS COUNCIL OF"	04-Dec-07 01:58 PM	
-="CN49944"	"Install and Develop FOFMS monitoring tools & associated professional services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	49500.00	=""	="RPM SOLUTIONS PTY LTD"	04-Dec-07 01:58 PM	
-="CN49945"	"Review of current financial position and financial viability of GYC Alice Springs."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	23-Nov-07	13154.00	=""	="DFK Kidsons"	04-Dec-07 01:58 PM	
-="CN49946"	"Managing Stakeholders Engagement Course Fee for service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	02-Nov-07	02-Nov-07	20811.16	=""	="Directions for Change"	04-Dec-07 01:58 PM	
-="CN49947"	"Payment Business travel account Perth"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Travel facilitation"	06-Nov-07	29-Nov-07	13042.93	=""	="American Express"	04-Dec-07 01:58 PM	
-="CN49948"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	11796.50	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	
-="CN49949"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	15806.35	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	
-="CN49950"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	27964.30	=""	="Corporate Express Australia"	04-Dec-07 01:58 PM	
-="CN49951"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25965.81	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	
-="CN49952"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25838.30	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	
-="CN49953"	"Reimbursement November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	26-Nov-07	100994.74	=""	="United Group Services"	04-Dec-07 01:59 PM	
-="CN49954"	"Office rent 1/12/2007-31/12/2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	01-Dec-07	01-Dec-07	33621.50	=""	="ARIA Property Group"	04-Dec-07 01:59 PM	
-="CN49955"	"SSAT L4&L5 380 Queens St Bne Progress Claim No.3"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Professional engineering services"	31-Oct-07	26-Nov-07	14155.68	=""	="Schiavello Fitout (QLD) Pty Ltd"	04-Dec-07 01:59 PM	
-="CN49956"	"Printing 2006/2007 Annual Report"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Paper products"	09-Nov-07	21-Nov-07	14110.80	=""	="Blue Print"	04-Dec-07 01:59 PM	
-="CN49957"	"SSAT stare hearing tables"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Oct-07	19-Nov-07	28858.50	=""	="Schiavello (Vic.) Pty Ltd"	04-Dec-07 01:59 PM	
-="CN49958"	"Commercial Funiture Cus no.CASHDT30 Cus PO 995/014"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	11-Sep-07	12-Nov-07	22269.50	=""	="Workspace Commercial Furniture Pty"	04-Dec-07 01:59 PM	
-="CN49959"	"Health appraisals for Group Staff"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	05-Nov-07	30-Nov-07	47245.00	=""	="Health Futures Pty Ltd"	04-Dec-07 02:00 PM	
-="CN49960"	"Proj Mgt Consult Service-TOP"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	13-Nov-07	20000.00	=""	="XACT PROJECT CONSULTANTS PTY LTD"	04-Dec-07 02:00 PM	
-="CN49961"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	29-Feb-08	57200.00	=""	="CAPSE Pty Ltd"	04-Dec-07 02:00 PM	
-="CN49962"	"20 GUI vUSers & HP Support"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	43472.00	=""	="HEWLETT PACKARD AUST LTD"	04-Dec-07 02:00 PM	
-="CN49963"	"Government Notices for NT Emergency Response Alcohole Bans"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	12-Nov-07	12-Dec-07	80905.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	
-="CN49964"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	153120.00	=""	="GREYTHORN PTY LTD"	04-Dec-07 02:00 PM	
-="CN49965"	"Government Notices for NT Emergency Response Porn/ Alcohole Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information services"	12-Nov-07	12-Dec-07	72728.66	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	
-="CN49966"	"Consultancy Services - Young Carers - Their Characteristics and Geographical Distribution"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	14-Nov-07	30-Jun-08	54958.00	=""	="Social Policy Research Centre"	04-Dec-07 02:00 PM	
-="CN49967"	"Statutory appointment of Administratio for Mandangala Aboriginal Corporation"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	55000.00	=""	="Grant Thornton (WA) Pty Ltd"	04-Dec-07 02:01 PM	
-="CN49968"	"Develpo Overarching Strategy Helping Children with Autism package"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	14-Nov-07	07-Dec-07	55000.00	=""	="HannahFyre Enterprises"	04-Dec-07 02:01 PM	
-="CN49969"	"Provision of Project Assurance Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	33000.00	=""	="MAX SHANAHAN & ASSOCIATES PTY"	04-Dec-07 02:01 PM	
-="CN49970"	"NTERT-Relocations to various addresses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Transportation and Storage and Mail Services"	13-Nov-07	13-Nov-07	16408.00	=""	="AUSSIEMOVE INTERNATIONAL PTY LTD"	04-Dec-07 02:01 PM	
-="CN49971"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	39361.95	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 02:01 PM	
-="CN49972"	"Consultancy work around the Group Improvement Process"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	24-Dec-07	25500.00	=""	="THE WORKWISE GROUP PTY. LTD."	04-Dec-07 02:01 PM	
-="CN49973"	"The provision of consultancy services in relation to the Petrol Sniffing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	08-Nov-07	01-May-08	82947.10	=""	="Urbis JHD"	04-Dec-07 02:01 PM	
-="CN49974"	"To Update the previous Risk Management Plan for Network security in FaCSIA"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	08-Nov-07	19-Dec-07	24200.00	=""	="SECURELINK PTY LTD"	04-Dec-07 02:01 PM	
-="CN49975"	"Staff Furniture Relocation Adeliade"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	07-Nov-07	30-Nov-07	15015.00	=""	="Atlantis = Pty Ltd"	04-Dec-07 02:02 PM	
-="CN49976"	"Create online application for the National Youth Week calendar of events."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	07-Nov-07	01-Jan-08	15300.00	=""	="Commercial Interactive Media"	04-Dec-07 02:02 PM	
-="CN49977"	"Northern Territory Emergency Response  Implemtation Plan"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	07-Nov-07	16-Nov-07	57875.00	=""	="PROVIDENCE CONSULTING GROUP"	04-Dec-07 02:02 PM	
-="CN49978"	"Baseline Community Profile - Mornington Shire Queensland"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	12-Nov-07	15-Mar-08	48600.00	=""	="THE CULTURAL & INDIGENOUS"	04-Dec-07 02:02 PM	
-="CN49979"	"Payment ot Language Professionals for the translation and update of the FAO Multilingual"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	09-Nov-07	30-Nov-07	23650.00	=""	="LANGUAGE PROFESSIONALS"	04-Dec-07 02:02 PM	
-="CN49980"	"Contract Services for Development of Paper for Future ICT Sourcing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	09-Nov-07	07-Dec-07	50000.00	=""	="IT Newcom Pty Limited"	04-Dec-07 02:02 PM	
-="CN49981"	"Training course for Compass"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	09-Nov-07	24-Dec-07	10510.00	=""	="D'Arcy Consulting Group Pty Ltd"	04-Dec-07 02:02 PM	
-="CN49982"	"Supply of Workstations & Loose Furniture-Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Accommodation furniture"	08-Nov-07	30-Nov-07	931873.63	=""	="Cite Office Design Pty Ltd"	04-Dec-07 02:03 PM	
-="CN49983"	"Construction Management - Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	08-Nov-07	30-Nov-07	2635121.77	=""	="ISIS Projects Pty Ltd"	04-Dec-07 02:03 PM	
-="CN49907"	"Tool Kit Carpenters"	="Department of Defence"	04-Dec-07	="Carpentry"	04-Dec-07	18-Dec-07	18277.44	=""	="KENTOOL PTY LTD"	04-Dec-07 02:16 PM	
-="CN49986"	"Management of journal subscriptions"	="Family Court of Australia"	04-Dec-07	="Business and corporate management consultation services"	26-Nov-07	25-Nov-08	33389.45	=""	="EBSCO Australia"	04-Dec-07 02:49 PM	
-="CN49987"	"NSN 3110-00-299-0410, Track Roller Ball Bearings"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	20-Nov-07	01-Aug-08	27646.34	=""	="Milspec Services Pty Ltd"	04-Dec-07 02:52 PM	
-="CN49988"	"NSN 5330-66-138-3602, Preformed Packing"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	16-Nov-07	21-Dec-07	11444.40	=""	="Milspec Services Pty Ltd"	04-Dec-07 03:05 PM	
-="CN49989-A2"	"Provision of Rehabilitation counselling services"	="CRS Australia"	04-Dec-07	="Comprehensive health services"	03-Dec-07	21-Sep-09	60478.00	=""	="Expert Rehab Management"	04-Dec-07 03:07 PM	
-="CN49994"	"Recruitment - Project Manager"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	22-Nov-07	03-Apr-08	98252.00	=""	="ICON Recruitment Pty ltd"	04-Dec-07 03:26 PM	
-="CN49995-A4"	"Recruitment - ERP Project Management"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	24-Nov-07	31-Dec-08	274683.00	=""	="Hurtile Pty Ltd"	04-Dec-07 03:32 PM	
-="CN49998"	"Online Library Subscription"	="Australian Crime Commission"	04-Dec-07	="Library or documentation services"	01-Jul-07	30-Jun-08	36696.48	=""	="Thompson Legal & Regulatory Group"	04-Dec-07 03:36 PM	
-="CN50000"	" NSN 2840-01-369-3242  PURCHASE OF SPACER, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	13-Dec-07	77478.66	=""	="Flite Path Pty Ltd"	04-Dec-07 03:40 PM	
-="CN50002"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:46 PM	
-="CN50004"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:51 PM	
-="CN50005"	"Telecommunications Interception"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	26-Nov-07	26-Dec-07	19000.00	=""	="Hutchison Telecoms Australia Ltd"	04-Dec-07 03:55 PM	
-="CN50006"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:56 PM	
-="CN50007"	"Photocopier lease charges"	="Australian Crime Commission"	04-Dec-07	="Photocopiers"	14-Sep-07	16-Nov-07	75134.40	=""	="Fuji Xerox Australia Pty Ltd"	04-Dec-07 04:00 PM	
-="CN50009"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Apr-07	31-Mar-08	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:01 PM	
-="CN50008"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:01 PM	
-="CN50011"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:06 PM	
-="CN50012"	"Telecommunications Interception expenditure"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	62000.00	=""	="Optus Billing Services"	04-Dec-07 04:07 PM	
-="CN50013"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-04	30-Jun-06	690000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:07 PM	
-="CN50014"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:09 PM	
-="CN50015"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:12 PM	
-="CN50016"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Jul-04	31-Mar-07	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:13 PM	
-="CN50017-A1"	"UPS for computer servers"	="Australian Crime Commission"	04-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	01-Dec-07	18629.58	=""	="Commander Integrated Networks Pty Ltd"	04-Dec-07 04:14 PM	
-="CN50018"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:15 PM	
-="CN50021"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-01	30-Jun-04	945000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:22 PM	
-="CN50020"	"  GAGE THICKNESS ELECTRONIC  "	="Defence Materiel Organisation"	04-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	29-Feb-08	34067.00	=""	="OLYMPUS AUST P/L"	04-Dec-07 04:23 PM	
-="CN50022"	"lease of air conditioners"	="Australian Crime Commission"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	05-Dec-07	05-Jun-08	10780.00	=""	="Emerson Network Power Australia"	04-Dec-07 04:23 PM	
-="CN50023"	"IT development for Standard Information Exchange project"	="Australian Crime Commission"	04-Dec-07	="Information exchange software"	01-Dec-07	30-Jun-08	1731021.00	=""	="Western Australia Police"	04-Dec-07 04:32 PM	
-="CN50024"	"Softwar maintenance"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Software"	01-Aug-07	31-Jul-08	40700.00	=""	="ACUMENT ALLIANCE (ACT) PTY LTD"	04-Dec-07 04:38 PM	
-="CN50025"	"Telecommunications Interception for Telstra"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	19000.00	=""	="Telstra"	04-Dec-07 04:40 PM	
-="CN50026"	"Coaching for Senior Executive staff"	="Australian Crime Commission"	04-Dec-07	="Workshops"	04-Dec-07	30-Jun-08	47960.00	=""	="Yellow Edge Pty Ltd"	04-Dec-07 04:44 PM	
-="CN50027"	"Rack Mounted server"	="Australian Crime Commission"	04-Dec-07	="Computer servers"	04-Dec-07	04-Dec-07	10505.00	=""	="Dell Computer Pty Ltd"	04-Dec-07 04:48 PM	
-="CN50028"	"For the purchase of Qty 10 ice detectors for use on the Black Hawk helicopter to replace items classified as 'BER' by repair contractor."	="Defence Materiel Organisation"	04-Dec-07	="Military rotary wing aircraft"	27-Nov-07	07-Oct-08	139735.75	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	04-Dec-07 04:49 PM	
-="CN50029"	"Editing Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Sep-07	30-Nov-07	14550.00	=""	="Therese Laanela"	04-Dec-07 04:53 PM	
-="CN50030"	"Editing of Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Jul-07	31-Dec-07	16975.00	=""	="Yvonne Goudie"	04-Dec-07 04:57 PM	
-="CN50031"	"TACLANE Mine (KS328-07)"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	28-Dec-07	21900.00	=""	="Defence Material Organisation"	04-Dec-07 04:59 PM	
-="CN50032"	"Printing of Annual Report"	="Department of the Treasury"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Oct-07	30-Jun-08	62961.00	=""	="Canprint Communications Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50033"	"Equipment for AICNet"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	30-Oct-07	31-Dec-07	71255.92	=""	="Getronics Australia Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50034"	"IBIS world subscription"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	30-Jun-08	26697.00	=""	="IBISWorld.com"	04-Dec-07 04:59 PM	
-="CN50035"	"Health Assessments for Health Month"	="Department of the Treasury"	04-Dec-07	="Healthcare Services"	26-Oct-07	30-Jun-08	22000.00	=""	="ACT Nursing Service Pty ltd"	04-Dec-07 04:59 PM	
-="CN50036"	"40 940B 19" TFT Bezel Black Monitors"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	24-Oct-07	18-Nov-07	13640.00	=""	="Dataflex Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50037"	"Advertisment for Director position"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	15995.23	=""	="HMA Blaze Pty Limited"	04-Dec-07 04:59 PM	
-="CN50038"	"Statistics Subscription renewal"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	23870.00	=""	="Econdata Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50039"	"Loss Estimation Model Development"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	37807.00	=""	="Finity"	04-Dec-07 04:59 PM	
-="CN50040"	"CEIC Aisa Database & CEIC China Database"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	27720.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	
-="CN50041"	"Legal Advice"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	25000.00	=""	="Australian Government Solicitor"	04-Dec-07 05:00 PM	
-="CN50042"	"Basic dX Software Package"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	10560.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	
-="CN50043"	"Fees for Investment Management Services"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	30-Jun-08	280483.64	=""	="Suncorp"	04-Dec-07 05:00 PM	
-="CN50044"	"Replacement Server and Storeage Disk"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	15-Nov-07	23-Nov-07	46657.47	=""	="Dell Australia"	04-Dec-07 05:00 PM	
-="CN50045"	"Adverstisement for SBR conference"	="Department of the Treasury"	04-Dec-07	="Paper Materials and Products"	14-Nov-07	19-Nov-07	16436.86	=""	="HMA Blaze Pty Limited"	04-Dec-07 05:00 PM	
-="CN50046"	"Purchase of 20 Dishwashers"	="Department of the Treasury"	04-Dec-07	="Cleaning Equipment and Supplies"	08-Nov-07	03-Dec-07	47998.00	=""	="Kleenmaid"	04-Dec-07 05:00 PM	
-="CN50047"	"Continuum Software Dongle"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	30-Nov-07	10318.00	=""	="ADT Security"	04-Dec-07 05:00 PM	
-="CN50048"	"P.O increase for Treasury storage"	="Department of the Treasury"	04-Dec-07	="Transportation and Storage and Mail Services"	24-Jul-07	31-Jul-08	32000.00	=""	="1st Fleet Warehousing and Distribut"	04-Dec-07 05:00 PM	
-="CN50049"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	15-Oct-07	14-Oct-08	275616.00	=""	="Collective Resources IT Recruitment"	04-Dec-07 05:00 PM	
-="CN50050"	"Provision of the APS and Treasury Accountabilities"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-10	25000.00	="RFT006/07"	="Shane Carroll & Associates"	04-Dec-07 05:01 PM	
-="CN50051"	"Building Services Panel - Ground Floor E Block Con"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	30-Oct-07	31-Dec-07	142913.10	=""	="G E Shaw & Associates (ACT) Pty Ltd"	04-Dec-07 05:01 PM	
-="CN50052"	"Building Services Panel"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	24-Oct-07	30-Mar-08	1370524.00	=""	="IQON Pty Ltd"	04-Dec-07 05:01 PM	
-="CN50053"	"SBR conference 26-28 Nov 2008"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	26-Nov-07	28-Nov-07	60000.00	=""	="Hilton - Brisbane"	04-Dec-07 05:01 PM	
-="CN50054"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	30-Jun-08	327673.27	=""	="American Express International"	04-Dec-07 05:01 PM	
-="CN50055"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Oct-07	30-Jun-08	261441.18	=""	="American Express International"	04-Dec-07 05:01 PM	
-="CN50056"	"Contractor wages"	="Department of the Treasury"	04-Dec-07	="Personal and Domestic Services"	09-Nov-07	30-Jun-08	25000.00	="M.SKINNER"	="Westaff"	04-Dec-07 05:01 PM	
-="CN50057"	"Digital Projects s.o Increase"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	17-Jul-07	31-Dec-07	15000.00	=""	="Digital Projects"	04-Dec-07 05:01 PM	
-="CN50058"	"Development of a professional learning package"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-May-08	199091.54	="OPEN SOURCE"	="Curriculum Corporation"	04-Dec-07 05:02 PM	
-="CN50059"	"Provision of Internal Audit  Services for the HIH"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	22-Oct-07	30-Jun-08	275550.00	=""	="KPMG - Canberra"	04-Dec-07 05:02 PM	
-="CN50060"	"Ernst & Young Secondee - Anne Millward"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Sep-07	23-Sep-08	115841.00	=""	="Ernst & Young Services Pty Limited"	04-Dec-07 05:02 PM	
-="CN50061"	"Legal Services Panel - Provision of legal advice  for the SBR"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	23-Oct-07	30-Jun-09	350000.00	=""	="Aust Government Solicitor  ACT"	04-Dec-07 05:02 PM	
-="CN50062"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	01-Oct-07	30-Oct-08	375840.00	=""	="Compas Pty Ltd"	04-Dec-07 05:02 PM	
-="CN50063-A1"	"Printing and Distribution Services"	="Australian Electoral Commission"	04-Dec-07	="Industrial printing services"	03-Aug-06	03-Aug-09	2000965.86	="AEC06/026"	="PMP Print Pty Ltd"	04-Dec-07 05:04 PM	
-="CN50064"	"GST Executive Events over FY 2007/2008"	="Australian Taxation Office"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	30-Jun-08	114550.00	="06.028"	="Hoffman Donohue P/L"	04-Dec-07 05:09 PM	
-="CN50066-A3"	"Agreement forming the basis under which APRA grants the ATO a licence for the purposes of S183(1), (4), (5) of the copyright act as it applies to music."	="Australian Taxation Office"	04-Dec-07	="Management support services"	01-Jul-07	30-Jun-11	128225.11	=""	="Australasian Performing Right Association Limited"	04-Dec-07 05:18 PM	
-="CN50067"	"refining recovery charges"	="Royal Australian Mint"	05-Dec-07	="Refining metal services"	01-Nov-07	01-Nov-07	16070.56	=""	="WESTERN AUSTRALIAN MINT"	05-Dec-07 07:53 AM	
-="CN50069"	"case coin proof"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	09-Nov-07	22-Feb-08	14850.00	=""	="DAVIES FERGUSON PTY LTD"	05-Dec-07 08:00 AM	
-="CN50071"	"copper strip"	="Royal Australian Mint"	05-Dec-07	="Copper strip"	09-Nov-07	10-Nov-07	10395.00	=""	="AUSTRALIAN METALS P/L"	05-Dec-07 08:05 AM	
-="CN50072"	" vehicle parts "	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Dec-07	11-Dec-07	12474.94	=""	="DAIMLER CHRYSLER AUST/PACIFIC"	05-Dec-07 08:06 AM	
-="CN50073"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Dec-07	="Drugs and Pharmaceutical Products"	05-Dec-07	21-Dec-07	10631.50	=""	="GlaxoSmithKline Aust Pty Ltd"	05-Dec-07 08:07 AM	
-="CN50074"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	10-Nov-07	10-Nov-07	24393.16	=""	="BLUE STAR PRINT - AUSTRALIA"	05-Dec-07 08:13 AM	
-="CN50075"	"bac workbenches"	="Royal Australian Mint"	05-Dec-07	="Work benches"	14-Nov-07	14-Nov-07	19112.50	=""	="BAC AUSTRALIAN SYSTEMS P/L"	05-Dec-07 08:22 AM	
-="CN50076"	"heating towel rails"	="Royal Australian Mint"	05-Dec-07	="Heating or drying equipment or accessories"	14-Nov-07	14-Nov-07	13340.28	=""	="SPALECK OBERFLACHENTECHNIK"	05-Dec-07 08:51 AM	
-="CN50078"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	15-Nov-07	03-Apr-08	57383.04	=""	="BLUE STAR PRODUCTS P/L"	05-Dec-07 09:06 AM	
-="CN50079"	"Bracket, Plate, & Gear."	="Defence Materiel Organisation"	05-Dec-07	="Parts of guns or pistols"	04-Dec-07	30-Jan-08	31152.00	=""	="G A Hanrahan Pty Ltd"	05-Dec-07 09:12 AM	
-="CN50080"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	22-Nov-07	23-Nov-07	12649.89	=""	="BLUE STAR PRINT - AUSTRALIA"	05-Dec-07 09:15 AM	
-="CN50081"	"packsging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	22-Nov-07	22-Nov-07	10067.97	=""	="SCHOLASTIC AUSTRALIA PTY LTD"	05-Dec-07 09:20 AM	
-="CN50082"	"SEALING COMPOUND"	="Defence Materiel Organisation"	05-Dec-07	="Adhesives and sealants"	04-Dec-07	18-Jan-08	17946.36	=""	="PPG INDUSTRIES AUSTRALIA P/L"	05-Dec-07 09:26 AM	
-="CN50083"	"IT rental equipment"	="Royal Australian Mint"	05-Dec-07	="Components for information technology or broadcasting or telecommunications"	22-Nov-07	22-Nov-07	71216.15	=""	="EQUIGROUP PTY LTD"	05-Dec-07 09:27 AM	
-="CN50084"	" Director, Artillery,  "	="Defence Materiel Organisation"	05-Dec-07	="Surveillance and detection equipment"	28-Nov-07	16-Jun-08	473965.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	05-Dec-07 09:27 AM	
-="CN50086"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	23-Nov-07	07-Mar-08	10010.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	05-Dec-07 09:34 AM	
-="CN50088"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	23-Nov-07	07-Mar-08	35200.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	05-Dec-07 09:39 AM	
-="CN50087"	"    Complaint Resolution Committee    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Sep-07	15680.67	=""	="Complementary Healthcare Council of Australia"	05-Dec-07 09:39 AM	
-="CN50089"	" consultancy services "	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	23-Nov-07	23-Nov-07	22000.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 09:45 AM	
-="CN50090"	"cosultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	23-Nov-07	23-Nov-07	26125.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 09:51 AM	
-="CN50091"	"    Contractors - Labour Hire    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	23-Dec-07	11000.00	=""	="Effective People Pty Ltd"	05-Dec-07 09:54 AM	
-="CN50092"	"Printing of JS7970 - Tax Agent Newsletter Issue 3. Qty: 25,000."	="Australian Taxation Office"	05-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	10-Dec-07	15666.20	="06.030"	="Blue Star Print Group t/a National Capital Printing"	05-Dec-07 09:55 AM	
-="CN50093"	"conveyor"	="Royal Australian Mint"	05-Dec-07	="Conveyors and accessories"	26-Nov-07	26-Nov-07	11676.50	=""	="FLEMING PLASTICS DYNAMICS PTY LTD"	05-Dec-07 09:56 AM	
-="CN50094"	"storage"	="Royal Australian Mint"	05-Dec-07	="Containers and storage"	27-Nov-07	27-Nov-07	11576.18	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	05-Dec-07 10:00 AM	
-="CN50095"	"consultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	28-Nov-07	28-Nov-07	22687.50	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 10:04 AM	
-="CN50096"	" 21 new copiers for Sydney Office (new building - Goulburn Street) "	="Australian Taxation Office"	05-Dec-07	="Photocopiers"	13-Aug-07	12-Dec-07	192076.50	=""	="Toshiba Australia Pty Ltd"	05-Dec-07 10:11 AM	
-="CN50097"	"pakaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	29-Nov-07	17-Apr-08	70400.00	=""	="BLUE STAR PRODUCTS P/L"	05-Dec-07 10:14 AM	
-="CN50098"	"consultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	29-Nov-07	29-Nov-07	20625.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 10:20 AM	
-="CN50099"	"coin counter"	="Royal Australian Mint"	05-Dec-07	="Electronic counters"	29-Nov-07	29-Nov-07	10439.00	=""	="ABACUS CASH SYSTEMS PTY LIMITED"	05-Dec-07 10:23 AM	
-="CN50100-A3"	"Lease at Hobart, Tasmania."	="Centrelink"	05-Dec-07	="Real estate services"	01-Feb-08	30-Apr-09	1063765.95	=""	="Balsa Rejus Property Trust"	05-Dec-07 10:47 AM	
-="CN50102"	"Staff Recruitment costs - Advertising"	="Therapeutic Goods Administration"	05-Dec-07	="Staff recruiting services"	30-Oct-07	23-Dec-07	10338.08	=""	="HMA Blaze Pty Ltd"	05-Dec-07 10:58 AM	
-="CN50104-A1"	"    Supply of laboratory animal feed and bedding    "	="Therapeutic Goods Administration"	05-Dec-07	="Animal feed"	01-Jul-08	30-Jun-09	26000.00	=""	="Gordons Specialty Stock Feeds"	05-Dec-07 11:04 AM	
-="CN50105"	"Reception & Call Centre Services"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	12-Oct-07	30-Jun-08	78650.00	="00/033-02"	="Sirius Telecommunications Ltd (VIC)"	05-Dec-07 11:14 AM	
-="CN50106-A1"	"    Supply of laboratory gasses    "	="Therapeutic Goods Administration"	05-Dec-07	="Elements and gases"	01-Jul-08	30-Jun-09	61000.01	=""	="Coregas Pty Ltd (formerly Linde Gas Pty Ltd)"	05-Dec-07 11:15 AM	
-="CN50107-A2"	"    Supply of laboratory chemicals and media    "	="Therapeutic Goods Administration"	05-Dec-07	="Chemicals including Bio Chemicals and Gas Materials"	01-Jul-08	30-Jun-09	46000.00	=""	="Oxoid Pty Ltd"	05-Dec-07 11:21 AM	
-="CN50108"	"Duffle Bags for Army and Navy Use"	="Defence Materiel Organisation"	05-Dec-07	="Luggage and handbags and packs and cases"	30-Nov-07	31-May-08	1765775.00	="CC1SHI"	="Larosa Leathergoods Pty Ltd"	05-Dec-07 11:24 AM	
-="CN50109"	"20 x 630 Latitude Notebooks and Docking Kits"	="Therapeutic Goods Administration"	05-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	23-Nov-07	12-Dec-07	14080.00	=""	="DELL Computer Pty Ltd"	05-Dec-07 11:27 AM	
-="CN50110"	"Document Authoring & Conversion Services for document Library"	="Civil Aviation Safety Authority"	05-Dec-07	="Author funded publishing services"	01-Jul-07	30-Oct-07	40000.00	="03/013-01"	="NetImpact Online Publishing Pty Ltd"	05-Dec-07 11:27 AM	
-="CN50111"	"5 x 64 Latitude Notebooks and Docking kits"	="Therapeutic Goods Administration"	05-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	23-Nov-07	12-Dec-07	55220.00	=""	="DELL Computer Pty Ltd"	05-Dec-07 11:35 AM	
-="CN50112"	"Development of a Diploma Course in Aviation Safety Regulation"	="Civil Aviation Safety Authority"	05-Dec-07	="Educational certificates or diplomas"	19-Nov-07	31-Mar-09	262000.00	="05/004-01"	="Swinburne University of Technology"	05-Dec-07 11:39 AM	
-="CN50113"	"    Contractors - Labour Hire    "	="Therapeutic Goods Administration"	05-Dec-07	="Temporary personnel services"	29-Oct-07	28-Mar-08	24288.00	=""	="One Umbrella, The"	05-Dec-07 11:44 AM	
-="CN50115"	"Annual programmed maintenance for computer room air conditioning system"	="Civil Aviation Safety Authority"	05-Dec-07	="Air conditioning installation or maintenance or repair services"	02-Dec-07	01-Dec-08	12466.00	="06/050-01"	="Stulz Australia Pty Ltd"	05-Dec-07 11:46 AM	
-="CN50116"	"Serials renewals 2008"	="Therapeutic Goods Administration"	05-Dec-07	="Published Products"	01-Jan-08	31-Dec-08	63250.00	=""	="Ebsco Aust"	05-Dec-07 11:48 AM	
-="CN50117"	"Annual programmed maintenance for computer room uninteruptible power supply"	="Civil Aviation Safety Authority"	05-Dec-07	="Uninterruptible power supplies"	02-Dec-07	01-Dec-08	11512.00	="06/050-02"	="Stulz Australia Pty Ltd"	05-Dec-07 11:52 AM	
-="CN50119"	"Refining of ICT Costing Model"	="Civil Aviation Safety Authority"	05-Dec-07	="Information technology consultation services"	01-Dec-07	29-Feb-08	26400.00	="06/096-01"	="Total Decision Support Pty Ltd"	05-Dec-07 11:57 AM	
-="CN50121"	"Lease at Launceston, Tasmania."	="Centrelink"	05-Dec-07	="Real estate services"	26-Oct-07	25-Jul-08	707049.06	=""	="Youngco Nominees Proprietary Limited"	05-Dec-07 12:01 PM	
-="CN50122"	"Design, Printing and Photocopying panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	29-Oct-07	30-Oct-10	500000.00	="06/135-05"	="Ducor Group Pty Ltd"	05-Dec-07 12:03 PM	
-="CN50124"	"Information Technology Services"	="Therapeutic Goods Administration"	05-Dec-07	="Information technology consultation services"	01-Mar-07	30-Jun-08	226644.00	=""	="Glendar Consulting Services Pty Ltd"	05-Dec-07 12:10 PM	
-="CN50126"	"Courier & Mail Services"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	01-Nov-07	31-Oct-10	30000.00	="06/151-01"	="Universal Express"	05-Dec-07 12:14 PM	
-="CN50125"	" HAT FUR FELT KHAKI PRE-BASHED W/O CATCH AND HOOK "	="Defence Materiel Organisation"	05-Dec-07	="Clothing accessories"	28-Nov-07	30-May-08	259380.00	=""	="AKUBRA HATS PTY LTD"	05-Dec-07 12:15 PM	
-="CN50127-A1"	"     Supply of Fire Detection and EWIS services upgrade to TGA Symonston     "	="Therapeutic Goods Administration"	05-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	29-Feb-08	114730.00	=""	="Wormald Fire Systems"	05-Dec-07 12:16 PM	
-="CN50128"	"Courier & Freight Services Panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	22-Nov-07	31-Oct-10	200000.00	="06/151-02"	="Australia Post"	05-Dec-07 12:18 PM	
-="CN50129"	"     Contract Services between Commonwealth of Australia   and ASMI for 07/08 Financial Year     "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	48565.00	=""	="Australian Self-Medication Industry"	05-Dec-07 12:20 PM	
-="CN50130"	"Courier & Freight Services Panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	05-Nov-07	31-Oct-10	100000.00	="06/151-03"	="Evolution Logistics Pty Ltd"	05-Dec-07 12:22 PM	
-="CN50131"	" AIRCRAFT SPARES  NSN 1620-01-117-2242    AXLE ASSY  QTY 3 "	="Defence Materiel Organisation"	05-Dec-07	="Military transport helicopters"	05-Dec-07	04-Jan-08	12600.13	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	05-Dec-07 12:25 PM	
-="CN50132-A1"	"    Contract Services between Commonwealth of Australia and ASMI for 07/08 Financial Year    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	414929.02	=""	="Australian Self-Medication Industry"	05-Dec-07 12:25 PM	
-="CN50133"	"IT Infrastructure Project Manager"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	31-Oct-07	28-Mar-08	125000.00	="06/157-02"	="Opcomm Pty Ltd"	05-Dec-07 12:27 PM	
-="CN50134-A1"	"Advisory services - pricing model"	="Department of Human Services"	05-Dec-07	="Information technology consultation services"	18-Oct-07	22-Nov-07	78375.00	=""	="Transaction Resources Pty Ltd"	05-Dec-07 12:34 PM	
-="CN50135"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	04-Jan-08	16419.35	=""	="LAND ROVER"	05-Dec-07 02:13 PM	
-="CN50136"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	04-Jan-08	17870.45	=""	="LAND ROVER"	05-Dec-07 02:29 PM	
-="CN50139"	"Refurbishment of Centrelink Caloundra Customer Service Centre"	="Centrelink"	05-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Dec-07	13-May-08	225786.00	=""	="Quadric Commercial Interiors"	05-Dec-07 03:12 PM	
-="CN50140-A1"	"Lease at Rockingham, West Australia."	="Centrelink"	05-Dec-07	="Real estate services"	18-Dec-07	17-Mar-10	1285021.53	=""	="Perpetual Nominees Limited"	05-Dec-07 03:14 PM	
-="CN50142-A1"	" AAHL General Electrical Update  CSIRO2007-007 "	="CSIRO"	05-Dec-07	="Electrical equipment and components and supplies"	22-Oct-07	20-Oct-08	899378.70	="CSIRORFT2007-007"	="Gordon McKay Pty Ltd"	05-Dec-07 03:18 PM	
-="CN50144"	" NSN 3020/00-225-0561  PURCHASE OF GEAR, INTERNAL  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	04-Dec-07	11-Mar-08	114066.48	=""	="Flite Path Pty Ltd"	05-Dec-07 03:20 PM	
-="CN50145"	" NSN 2030/00-416-0064  PURCHASE OF GEAR, SPUR  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	04-Dec-07	14-Dec-07	11910.00	=""	="Flite Path Pty Ltd"	05-Dec-07 03:28 PM	
-="CN50146"	" CABLE SPECIAL PURPOSE "	="Defence Materiel Organisation"	05-Dec-07	="Automotive or aircraft cable"	08-Aug-07	30-Jan-08	61294.86	=""	="AFLEX CABLES"	05-Dec-07 03:32 PM	
-="CN50147"	" NSN 1740/66-153-2374  PURCHASE OF TRAILER, GROUND HANDLING  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	07-May-07	16-Jul-07	75860.00	=""	="Metcalfe Group Pty Ltd"	05-Dec-07 03:36 PM	
-="CN50148"	" NSN 3120/00-305-5387  PURCHASE OF BEARING, SLEEVE  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	03-Dec-07	26-May-08	17380.00	=""	="Pacific Aerodyne"	05-Dec-07 03:40 PM	
-="CN50149"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Dec-07	="Drugs and Pharmaceutical Products"	30-Nov-07	15-Dec-07	17535.10	=""	="Sigma Pharmaceuticals"	05-Dec-07 03:46 PM	
-="CN50150-A1"	"Software"	="Australian Office of Financial Management"	05-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	01-Dec-07	11741.59	=""	="KAZ Technology Services Pty Ltd"	05-Dec-07 03:47 PM	
-="CN50151"	"software support"	="Australian Office of Financial Management"	05-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Feb-07	03-Aug-07	14438.00	=""	="Sungard"	05-Dec-07 04:06 PM	
-="CN50152-A1"	"Temporary Staffing"	="Australian Electoral Commission"	05-Dec-07	="Temporary personnel services"	02-Aug-07	01-Aug-08	235000.00	="S07/08/071"	="Vedior Asia Pacific - Select Australasia"	05-Dec-07 04:24 PM	
-="CN50153"	"Hire of Premises"	="Australian Electoral Commission"	05-Dec-07	="Lease and rental of property or building"	29-Oct-07	14-Jan-08	15775.65	=""	="Colonial First State Asset Management"	05-Dec-07 04:29 PM	
-="CN50154"	" CSIRO Building 179 Lift Services Package  CSIRO2007-030 "	="CSIRO"	05-Dec-07	="Elevators"	17-Oct-07	09-Jul-08	227590.00	="CSIRORFT2007-030"	="Elevator Services Group Pty Ltd"	05-Dec-07 04:32 PM	
-="CN50156"	"RMC UNIFORM JACKETS, CEREMONIAL & BLUES"	="Defence Materiel Organisation"	06-Dec-07	="Military uniforms"	03-Dec-07	11-Apr-08	315820.92	=""	="Australian Defence Apparel"	06-Dec-07 07:46 AM	
-="CN50157"	"Annual ICON levy"	="Therapeutic Goods Administration"	06-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	33000.00	=""	="Department of Finance and Administration"	06-Dec-07 08:51 AM	
-="CN50158"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	02-Jul-07	28-Sep-07	123750.00	="06/170-01"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:06 AM	
-="CN50159"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	29-Sep-07	21-Dec-07	74250.00	="06/170-02"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:10 AM	
-="CN50161"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	02-Jan-08	31-Mar-09	117563.00	="06/170-03"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:13 AM	
-="CN50162"	"Printing of NAT7392-10.2007 GST - Completing your activity statement. Qty: 10,000"	="Australian Taxation Office"	06-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Dec-07	15-Dec-07	10243.20	="06.030"	="Paragon Printers"	06-Dec-07 09:15 AM	
-="CN50163"	"    iData Agent for Oracle on Unix - support and maintenance subscription    "	="Therapeutic Goods Administration"	06-Dec-07	="Permanent information technology systems or database administrators"	01-Jul-07	30-Jun-08	34903.48	=""	="Alpha West Services Pty Ltd"	06-Dec-07 09:16 AM	
-="CN50164"	"Development of an Adobe output to support new delegations and authorisations"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	15-Sep-07	30-Jun-09	22000.00	="06/189-01"	="Indigo Pacific Pty Ltd"	06-Dec-07 09:17 AM	
-="CN50165"	" Printing of NAT3092 - TFN Dec  Qty: 1,500,000 "	="Australian Taxation Office"	06-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Mar-08	30-Apr-08	141900.00	="06.030"	="The Camerons Group"	06-Dec-07 09:20 AM	
-="CN50166"	"Engineering Design Services"	="Civil Aviation Safety Authority"	06-Dec-07	="Professional engineering services"	06-Nov-07	30-Apr-08	33440.00	="07/110-00"	="PGD Consulting Services Pty Ltd"	06-Dec-07 09:21 AM	
-="CN50168"	"Recruitment Services - Airworthiness Engineer advertising campaign"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	25-Oct-07	25-Jan-08	15995.00	="07/111-00"	="GMT Canberra Pty Ltd"	06-Dec-07 09:25 AM	
-="CN50167-A1"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Dec-07	03-Jan-08	39550.51	=""	="DAIMLER CHRYSLER AUSTRALIA"	06-Dec-07 09:28 AM	
-="CN50169"	"Recruitment Services - Principal Propulsion Engineer advertising campaign"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	25-Oct-07	25-Jan-08	19096.00	="07/112-00"	="GMT Canberra Pty Ltd"	06-Dec-07 09:29 AM	
-="CN50170"	" Research into Pilot Training Program "	="Civil Aviation Safety Authority"	06-Dec-07	="Aircraft flight simulators or trainers"	28-Sep-07	02-Nov-07	25000.00	="07/113-00"	="Error Management Systems Australia Pty Ltd"	06-Dec-07 09:34 AM	
-="CN49397"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	30-Dec-07	25144.69	=""	="LAND ROVER"	06-Dec-07 09:39 AM	
-="CN50172-A1"	"Document authoring, editing & conversion services"	="Civil Aviation Safety Authority"	06-Dec-07	="Author funded publishing services"	01-Nov-07	30-Jun-08	99000.00	="07/117-00"	="NetImpact Online Publishing Pty Ltd"	06-Dec-07 09:41 AM	
-="CN50173"	" CSIRO Building 179 Structural Steel Package  CSIRO2007-034 "	="CSIRO"	06-Dec-07	="Structural building products"	08-Oct-07	20-Mar-08	790000.00	="CSIRORFT2007-034"	="ACT Fencing and Metalwork Pty Ltd"	06-Dec-07 09:43 AM	
-="CN50174"	"Lodgement of cancelled AD's"	="Civil Aviation Safety Authority"	06-Dec-07	="Legal services"	02-Oct-07	31-Dec-07	21157.00	="07/118-00"	="Attorney General's Department (ACT)"	06-Dec-07 09:45 AM	
-="CN50177"	"Upgrade of the airconditioning plant - Bankstown Airport"	="Civil Aviation Safety Authority"	06-Dec-07	="Air conditioning installation or maintenance or repair services"	09-Nov-07	31-Dec-07	25564.00	="07/119-00"	="Precise Air Group Pty Ltd"	06-Dec-07 09:53 AM	
-="CN50178-A1"	" CSIRO Building 179 Electrical Services  CSIRO2007-036 "	="CSIRO"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	17-Oct-07	23-Sep-08	897693.50	="CSIRORFT2007-036"	="Shepherd Electrical Pty Ltd"	06-Dec-07 09:56 AM	
-="CN50179"	"Computing Software Upgrade"	="Australian Electoral Commission"	06-Dec-07	="Software"	30-Sep-07	30-Sep-08	17000.00	=""	="Antivirus Australia Pty Ltd"	06-Dec-07 09:57 AM	
-="CN50180"	"Architectural and project management services - Perth"	="Civil Aviation Safety Authority"	06-Dec-07	="Architectural engineering"	09-Nov-07	09-Apr-08	60500.00	="07/120-00"	="Murray Interior Design"	06-Dec-07 09:58 AM	
-="CN50181"	"SUPPLY AND DELIVER QUANTITY 20 EA OF TRANSMISSION MECANICAL VEHICULAR"	="Defence Materiel Organisation"	06-Dec-07	="Kinetic power transmission"	05-Dec-07	02-Jun-08	550000.00	=""	="DAIMLER CHRYSLER AUSTRALIA PACIFIC"	06-Dec-07 10:04 AM	
-="CN50182"	"Delivery and Installation of Carpet Tiles"	="Australian Electoral Commission"	06-Dec-07	="Carpeting"	16-Nov-07	16-Dec-07	10472.02	=""	="QX Australia Pty Ltd"	06-Dec-07 10:06 AM	
-="CN50183"	"Office fitout"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Furniture and Furnishings"	01-Aug-07	30-Sep-07	17000.00	=""	="Ministerial & Parliamentary Dept of Finance and Administration"	06-Dec-07 10:12 AM	
-="CN50184"	"ICON Levy"	="Civil Aviation Safety Authority"	06-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	49500.00	="07/125-00"	="ICON Management Office - DoFA"	06-Dec-07 10:13 AM	
-="CN50185"	"Adobe Livecycle Process and Adobe Develop maintenance"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	25-Nov-07	24-Nov-08	37650.00	="07/127-00"	="Avoka Technologies"	06-Dec-07 10:18 AM	
-="CN50186"	"Protective Services"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Guard services"	01-Jul-07	30-Sep-07	135000.00	=""	="CHUBB PROTECTIVE SERVICES"	06-Dec-07 10:19 AM	
-="CN50189"	" STRAP TT P/No 206-011-154-105; MC 97499  QUANTITY 16 "	="Defence Materiel Organisation"	06-Dec-07	="Military rotary wing aircraft"	07-Nov-07	03-Dec-07	69084.22	=""	="HELITECH A DIVISION OF SIKORSKY"	06-Dec-07 10:28 AM	
-="CN50190"	"Building Services "	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Surveillance or alarm maintenance or monitoring"	01-Jul-07	30-Sep-07	10400.00	=""	="CHUBB PROTECTIVE SERVICES"	06-Dec-07 10:28 AM	
-="CN50191"	"Insect reppellent"	="Defence Materiel Organisation"	06-Dec-07	="Insect equipment"	29-Oct-07	19-Mar-08	51600.00	=""	="COLBAR QSR"	06-Dec-07 10:29 AM	
-="CN50192"	"Polling Place Advertising"	="Australian Electoral Commission"	06-Dec-07	="Advertising"	16-Nov-07	16-Dec-07	15445.10	=""	="HMA Blaze Pty Ltd"	06-Dec-07 10:31 AM	
-="CN50188"	"Training - Design & delivery of 10 half day workshops in Handling Difficult Customers"	="Civil Aviation Safety Authority"	06-Dec-07	="Work ethics or attitude training instructional materials"	12-Nov-07	12-Nov-08	42109.00	="07/128-00"	="Be Learning"	06-Dec-07 10:33 AM	
-="CN50187"	"Provision of Advanced Diploma of Govt (Management) course"	="Australian Taxation Office"	06-Dec-07	="Education and Training Services"	08-May-07	19-Nov-07	18750.00	=""	="Box Hill Institute of TAFE"	06-Dec-07 10:34 AM	
-="CN50193"	"MOU - for access to Leadership, Learning & Development panel"	="Civil Aviation Safety Authority"	06-Dec-07	="Developing self concept and self esteem instructional materials"	28-Mar-07	28-Mar-08	100000.00	="07/113-00"	="Australian Public Service Commission"	06-Dec-07 10:39 AM	
-="CN50194-A1"	"Advertising Services"	="Australian Fair Pay Commission"	06-Dec-07	="Print advertising"	29-Sep-07	09-Nov-07	35062.50	=""	="HMA Blaze"	06-Dec-07 10:45 AM	
-="CN50195"	" Furniture and Fittings "	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Furniture and Furnishings"	30-Sep-07	30-Nov-07	11900.00	=""	="MORRIS WALKER PTY LTD"	06-Dec-07 10:47 AM	
-="CN50196"	"Software"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Software"	27-Aug-07	27-Aug-07	77700.00	=""	="ZALLCOM PTY LTD"	06-Dec-07 10:51 AM	
-="CN50201"	"SUPPLY AND INSTALL COMPACTUS CANBERRA REGISTRY"	="Administrative Appeals Tribunal"	06-Dec-07	="Building and Construction and Maintenance Services"	10-Oct-07	16-Nov-07	12738.01	=""	="INTERIORS AUSTRALIA PTY LTD"	06-Dec-07 11:11 AM	
-="CN50202"	"PREPAID CONTRACTORS HOURS"	="Administrative Appeals Tribunal"	06-Dec-07	="Business administration services"	17-Oct-07	31-Dec-07	24200.00	=""	="DATA #3 LIMITED"	06-Dec-07 11:12 AM	
-="CN50203"	"ISP SERVICE NOVEMBER 2007"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	15-Nov-07	30-Nov-07	13849.28	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	
-="CN50204"	"INTERNET SERVICE SEPTEMBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	14-Sep-07	30-Sep-07	14089.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	
-="CN50205"	"INTERNET SERVICE OCTOBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	15-Oct-07	31-Oct-07	13677.40	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	
-="CN50206"	"CHANGE TO CASE MANAGEMENT SYSTEM SOFTWARE"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	29-Oct-07	31-Oct-07	12375.00	=""	="STRATEGIC BUSINESS CONSULTING"	06-Dec-07 11:13 AM	
-="CN50207"	"AIRFARES SEPTEMBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Passenger transport"	27-Sep-07	30-Sep-07	40253.39	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	06-Dec-07 11:14 AM	
-="CN50208"	"AIRFARES OCTOBER 2007"	="Administrative Appeals Tribunal"	06-Dec-07	="Passenger transport"	29-Oct-07	31-Oct-07	25493.58	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	06-Dec-07 11:14 AM	
-="CN50198"	"Engineering Assessment of the viability of the Water World Exhibit"	="Questacon"	06-Dec-07	="Professional engineering services"	05-Dec-07	21-Jan-08	22000.00	="2007-0168"	="Graeme O'Neill Consultancy"	06-Dec-07 11:20 AM	
-="CN50209"	"Upgrade the existing proximity card and security system "	="Questacon"	06-Dec-07	="Security and control equipment"	20-Nov-07	31-Mar-08	111582.00	=""	="TAC Pacific Pty Ltd"	06-Dec-07 11:35 AM	
-="CN48825"	"Motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	32220.54	=""	="LAND ROVER"	06-Dec-07 11:37 AM	
-="CN50210"	"FLOAT BAGS"	="Defence Materiel Organisation"	06-Dec-07	="Flotation aids"	05-Dec-07	28-Feb-08	90715.28	=""	="FLOAT PAC P/L"	06-Dec-07 11:39 AM	
-="CN47250"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10677.12	=""	="LAND ROVER"	06-Dec-07 11:45 AM	
-="CN50211"	"NSN 5365-01-106-1319, Sleeve Spacers"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	05-Nov-07	02-Jul-08	12790.80	=""	="Milspec Services Pty Ltd"	06-Dec-07 11:46 AM	
-="CN50213"	"Election Advertising"	="Australian Electoral Commission"	06-Dec-07	="Advertising"	16-Nov-07	16-Dec-07	20083.00	=""	="HMA Blaze Pty Ltd"	06-Dec-07 11:54 AM	
-="CN47137"	"motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	12748.90	=""	="LAND ROVER"	06-Dec-07 11:54 AM	
-="CN50214"	"NSN 3040-00-807-9355, Rigid Connecting Links"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	02-Oct-07	22-Aug-08	87088.08	=""	="Milspec Services Pty Ltd"	06-Dec-07 11:59 AM	
-="CN50215"	"Temporary Personnel"	="Australian Electoral Commission"	06-Dec-07	="Temporary personnel services"	01-Oct-07	30-Sep-10	363797.50	="S07/08/100"	="McArthur Management Services"	06-Dec-07 12:00 PM	
-="CN47069"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10030.00	=""	="LAND ROVER"	06-Dec-07 12:04 PM	
-="CN45941"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	12-Dec-07	10091.62	=""	="LAND ROVER AUSTRALIA"	06-Dec-07 12:09 PM	
-="CN50216"	" TRUNNION ASSY, MAIN ROTOR, FLIGHT SAFETY CRITICAL  P/No 206-011-105-001  QUANTITY 12 "	="Defence Materiel Organisation"	06-Dec-07	="Military rotary wing aircraft"	08-Oct-07	29-Oct-07	14702.34	=""	="HELITECH, A DIVISION OF SIKORSKY"	06-Dec-07 12:11 PM	
-="CN50217"	"NSN 3040-00-802-5372, Rigid Connecting Links"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	21-Sep-07	13-Jul-08	13483.07	=""	="Milspec Services Pty Ltd"	06-Dec-07 12:12 PM	
-="CN50218-A1"	"Supply of transceiver link equipment to the AFP"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	01-Nov-07	01-Apr-08	40403.97	="RFQ 48-2006"	="Vertical Telecoms"	06-Dec-07 12:13 PM	
-="CN45047"	"motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Nov-07	05-Dec-07	10562.96	=""	="PREMIER AUTOMOTIVE GROUP AUST P/L"	06-Dec-07 12:18 PM	
-="CN50220"	"Registration for 11 attendees at NESA"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	16-Jun-06	16-Jun-06	11090.00	=""	="NESA Conferences"	06-Dec-07 12:24 PM	
-="CN50221"	"Courses/seminars/workshops"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management advisory services"	03-Jul-06	03-Jul-06	13220.50	=""	="Mercure Hotel Sydney Airport"	06-Dec-07 12:24 PM	
-="CN50222"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	14-Feb-07	15-Jun-07	33000.00	=""	="Sageco Pty Ltd"	06-Dec-07 12:24 PM	
-="CN50223"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-06	15-Jun-07	33000.00	=""	="Small Business Centre New England"	06-Dec-07 12:24 PM	
-="CN50219-A1"	"Supply of multiplexer equipment to the AFP"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	01-Nov-07	01-Apr-08	10033.99	="RFQ 49-2006"	="Vertical Telecoms"	06-Dec-07 12:24 PM	
-="CN50224"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	22-Jan-07	15-Jun-07	33000.00	=""	="Options Training Services"	06-Dec-07 12:24 PM	
-="CN50225"	"Contractors"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management advisory services"	04-May-07	10-Aug-07	20000.00	=""	="Frontier Group Australia Pty Ltd"	06-Dec-07 12:24 PM	
-="CN50226-A1"	"Development of Active Compliance Program for S&ME"	="Australian Taxation Office"	06-Dec-07	="Specialised educational services"	12-Nov-07	30-Jun-09	868640.00	="40.05"	="CPA Australia"	06-Dec-07 12:27 PM	
-="CN50227"	"Provision of Continuing Professional Development Sessions"	="Australian Taxation Office"	06-Dec-07	="Vocational training"	21-Nov-07	14-Dec-07	79000.00	="40.05"	="CPA Australia"	06-Dec-07 12:33 PM	
-="CN50228-A1"	"Supply of communications services and equipment"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	130258.70	=""	="Motorola Australia"	06-Dec-07 12:35 PM	
-="CN50229"	"Supply of communications services and equipment"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Apr-10	71201.90	=""	="Motorola Australia"	06-Dec-07 12:40 PM	
-="CN50231"	" Hire of Election Premises "	="Australian Electoral Commission"	06-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Dec-07	13200.00	=""	="Happy Valley Winery Pty Ltd"	06-Dec-07 01:03 PM	
-="CN50232-A1"	"Scribing Services"	="Australian Taxation Office"	06-Dec-07	="Recruitment services"	15-Oct-07	14-Dec-07	40000.00	=""	="Verossity Pty Ltd"	06-Dec-07 01:05 PM	
-="CN50233"	"Lease of Election Premises"	="Australian Electoral Commission"	06-Dec-07	="Lease and rental of property or building"	16-Nov-07	14-Dec-07	11000.00	=""	="Don Nott Real Estate"	06-Dec-07 01:09 PM	
-="CN50234"	"Float Bag Inflation Line Assy"	="Defence Materiel Organisation"	06-Dec-07	="Flotation aids"	06-Dec-07	05-Jan-08	12327.74	=""	="RFD TECHNOLOGIES"	06-Dec-07 01:50 PM	
-="CN50236"	" 1 Year Automatic Software Upgrade for RecFind/ISYS - 48 Users  1 Year Automatic Software Upgrade for RQTC/ISYS - 48 Users  1 Year Automatic Software Upgrade for RF Button - 10 Users  Maintenance/Suppport Incidents  Annual Onsite Visit    "	="Federal Court of Australia"	06-Dec-07	="Business function specific software"	22-Dec-07	22-Dec-08	32946.10	=""	="Knowledgeone Coropration Pty Ltd"	06-Dec-07 02:01 PM	
-="CN50237"	"Executive Coaching Services"	="Australian Taxation Office"	06-Dec-07	="Vocational training"	30-Nov-07	30-Jun-08	11798.00	=""	="6e Leadership Coaching"	06-Dec-07 02:13 PM	
-="CN49878"	"Air Fares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	07-Nov-07	07-Nov-07	10098.90	=""	="Qantas"	06-Dec-07 02:15 PM	
-="CN50238"	"Provision for Performance Management Training"	="Comsuper"	06-Dec-07	="Workshops"	13-Nov-07	01-Dec-08	26600.00	=""	="Results Consulting"	06-Dec-07 02:17 PM	
-="CN50239"	"Airfares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	10-Nov-07	10-Nov-07	10143.70	=""	="Qantas"	06-Dec-07 02:20 PM	
-="CN50240"	"Airfares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	28-Nov-07	28-Nov-07	10485.20	=""	="Qantas"	06-Dec-07 02:23 PM	
-="CN50242"	"Supply and Commissioning of a Storage Area Network for the Australian Antarctic Division, and upgrade/maintenance for the period to 30-06-2011."	="Australian Antarctic Division"	06-Dec-07	="Computer Equipment and Accessories"	30-May-07	30-Jun-11	731338.00	="06/950"	="ComputerCORP (Operations) Pty Ltd"	06-Dec-07 02:45 PM	
-="CN50241"	"New Property lease CRS Liverpool, Suite 1, Level 4, 45 Scott Street, Liverpool, NSW - 3 year term"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	303750.00	=""	="Interdell Developments Pty Ltd"	06-Dec-07 02:45 PM	
-="CN50243"	" New Property Lease CRS Mirrabooka, 1/44 Mirrabooka Avenue, WA   3 year lease - Total Value of lease $392,338.30 plus GST "	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	10-Jun-07	09-Jun-10	392338.30	=""	="Keith & Jill Jacob"	06-Dec-07 02:52 PM	
-="CN50244"	"CRS Nhulumby, Suite 3, 1323 Westal Street, NT - Lease Term 1 year, lease value $13,000 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-May-07	30-Apr-08	13000.00	=""	="Graetz Enterprises Pty Ltd"	06-Dec-07 03:01 PM	
-="CN50245"	"CRS Oakleigh, 32 Chester Street, VIC - Lease term 1 year, lease value #78,054 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jun-07	31-May-08	78054.00	=""	="Elyco Nominees Pty Ltd"	06-Dec-07 03:06 PM	
-="CN50247"	" SUPPLY OF 40L PORTABLE REFRIGERATORS. "	="Defence Materiel Organisation"	06-Dec-07	="General purpose refrigerators or refrigerator freezers"	06-Dec-07	15-Jan-08	48186.60	="RFQ G4197"	="NORCOAST REFRIGERATION COMPANY"	06-Dec-07 03:15 PM	
-="CN50248"	" SUPPLY OF FUEL PUMP,  METERING AND DISTRIBUTING, INJECTION ASSY 16kVA "	="Defence Materiel Organisation"	06-Dec-07	="Fuel pumps"	06-Dec-07	14-Jan-08	14675.76	="RFQ G4833"	="HATZ DIESEL AUSTRALIA"	06-Dec-07 03:57 PM	
-="CN50249"	"CRS Port Augusta, 1/5 Young Street, SA - Least term 2 years"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-09	37200.00	=""	="B & Y Norman"	06-Dec-07 04:15 PM	
-="CN50250"	"CRS Rockingham, 16/5 Gooddard Street, WA - Lease Value $202,935.26 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	202935.26	=""	="Ash Syndicate Pty Ltd"	06-Dec-07 04:20 PM	
-="CN50251"	"CRS Shellharbour, Suite 22A Professional Centre, Shellharbour Square, NSW - Lease term 4 years plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	15-Feb-05	14-Feb-09	187668.23	=""	="Trust Company Ltd"	06-Dec-07 04:28 PM	
-="CN50253"	" SHIPPING AND STORAGE ISO CONTAINERS, 20 TONNE CAPACITY, QUANTITY 20.  RAISED AS PER THE TERMS AND CONDITIONS OF STANDING OFFER 2560176.    "	="Defence Materiel Organisation"	06-Dec-07	="Containers and storage"	05-Dec-07	16-May-08	75626.32	=""	="SCF CONTAINERS INTERNATIONAL"	06-Dec-07 04:51 PM	
-="CN50254"	"Contract for provision of consultancy services to design and conduct a survey of external stakeholders on behalf of ASIC"	="Australian Securities and Investments Commission"	06-Dec-07	="Business and corporate management consultation services"	29-Nov-07	29-May-08	223369.00	="STY2007/27861"	="The Allen Consulting Group"	06-Dec-07 04:57 PM	
-="CN50252-A1"	"Administrative support and scribe services for CAS APS6"	="Australian Taxation Office"	06-Dec-07	="Recruitment services"	15-Oct-07	14-Dec-07	50000.00	=""	="Verossity Pty Lyd"	06-Dec-07 04:58 PM	
-="CN50256"	"Fitout of Centrelink Victoria Park office, Area WA - Additional works"	="Centrelink"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Jul-07	27-Jul-07	41991.40	=""	="National Interiors"	06-Dec-07 05:26 PM	
-="CN50257"	"COMPRESSOR UNIT, RECIPROCATING MARINER 320B, C/W CES ITEMS"	="Defence Materiel Organisation"	06-Dec-07	="Reciprocating compressors"	28-Sep-07	21-Dec-07	65561.86	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	06-Dec-07 05:38 PM	
-="CN50258"	"Centrelink Carnarvon office, Area WA - Partial fitout"	="Centrelink"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Aug-07	21-Dec-07	197296.00	=""	="Topline Partitions and Interiors Pty Ltd"	06-Dec-07 05:47 PM	
-="CN50260"	"Battery, nonrechargeable Lithium sulphurDioxide24V BA-5590/U"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-Apr-08	674300.00	=""	="SAFT BATTERIES PTY LTD"	07-Dec-07 07:35 AM	
-="CN50261"	"Cables Assembly Special Purpose"	="Defence Materiel Organisation"	07-Dec-07	="Installation cables"	06-Dec-07	03-Apr-08	41290.48	=""	="AMPHENOL AUSTRALIA"	07-Dec-07 08:15 AM	
-="CN50262"	"OPTIC HIGH LEVEL SENSOR MODIFICATION KIT. QTY 38"	="Defence Materiel Organisation"	07-Dec-07	="Flow sensors"	04-Dec-07	22-Apr-08	341297.00	=""	="LIQUIP INTERNATIONAL"	07-Dec-07 09:16 AM	
-="CN50263"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Dec-07	="Military transport helicopters"	21-Aug-07	31-Dec-07	25521.10	=""	="KIDDE AEROSPACE & DEFENCE"	07-Dec-07 09:31 AM	
-="CN50264"	"DPNU Trial Frabric"	="Defence Materiel Organisation"	07-Dec-07	="Camouflage cloth"	29-Nov-07	08-Nov-08	25700.40	=""	="Bruck Textiles"	07-Dec-07 09:32 AM	
-="CN50266"	"Battery, Nonrechargeable alkaline Manganese Dioxide"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-May-08	40809.84	=""	="SIMPOWER LTD"	07-Dec-07 09:38 AM	
-="CN50267"	"BATTERY, NONRECHARGEABLE ALKALINE MANGANESE DIOXIDE"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-May-08	40809.84	=""	="SIMPOWER LTD"	07-Dec-07 09:43 AM	
-="CN50268"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Dec-07	="Military transport helicopters"	19-Oct-07	20-Nov-07	15535.74	=""	="FLITE PATH PTY LTD"	07-Dec-07 09:52 AM	
-="CN50271"	"Collation, analysis, and interpretation of data arising from ecotoxicology studies on marine macro-algae, and review of CO2 effects on marine organisms."	="Australian Antarctic Division"	07-Dec-07	="Earth science services"	01-Nov-07	01-Aug-08	29700.00	="07/843"	="Dr John Runcie"	07-Dec-07 10:02 AM	
-="CN50272"	"Recruitment Services - Property Manager Brisbane"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	15-Nov-07	15-Jan-08	17152.00	="07/138-00"	="Tanner Menzies Pty Ltd (Brisbane)"	07-Dec-07 10:08 AM	
-="CN50275"	" CRS Stones Corner, 444 Logan Road, QLD - Lease term 3 years, Approximate lease Value $176,995 plus GST "	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-05	31-Aug-08	176995.00	=""	="Acquitas Property Group Pty Ltd"	07-Dec-07 10:16 AM	
-="CN50274"	"Recruitment Services"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	27-Nov-07	26-Dec-07	12903.00	="07/137-00"	="DFP Recruitment Services Pty Ltd"	07-Dec-07 10:17 AM	
-="CN50278"	"Memorandum of Understanding for provision of web bases security awareness training"	="Civil Aviation Safety Authority"	07-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	11-Nov-08	29700.00	="07/139-00"	="Attorney-General's Department (WA)"	07-Dec-07 10:27 AM	
-="CN50279"	"Air Travel"	="Department of the Prime Minister and Cabinet"	07-Dec-07	="Commercial aeroplane travel"	12-Jun-07	15-Jun-07	12400.00	=""	="CARLSON WAGONLIT TRAVEL NAVIGANT AUSTRALIA"	07-Dec-07 10:27 AM	
-="CN50280"	"CRS Woden, Unit 8, Gadal Chambers, 46 Corinna Street, ACT - New lese term 3 years, lease value $139,246.03 plus GST"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-11	139246.03	=""	="Gadal Holdings Pty Ltd"	07-Dec-07 10:30 AM	
-="CN50281"	"Recruitment Services Placement Fee"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	19-Nov-07	18-Dec-07	11425.00	="07/140-00"	="Hays Personnel Services (Australia) Pty Ltd"	07-Dec-07 10:32 AM	
-="CN50282"	" Service Contract "	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	10-Oct-07	09-Apr-08	78000.00	="07/105-00"	="Regulatory Consulting Pty Ltd"	07-Dec-07 10:35 AM	
-="CN50283"	"CRS Mt. Isa, 76 Camooweal Street, QLD - Lease term 1 year, lease value $21,238.00"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jan-07	31-Dec-07	21238.00	=""	="GR & SL Collins Pty Ltd"	07-Dec-07 10:36 AM	
-="CN50284"	" COMPUTER HARDWARE "	="Department of the Prime Minister and Cabinet"	07-Dec-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	79300.00	=""	="INFRONT SYSTEMS PTY LTD"	07-Dec-07 10:37 AM	
-="CN50277"	"CRS Warrnambool, 195 Lava Street, VIC - Lease term 3 years, total value $87,766.94 plus GST"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	21-Sep-07	20-Sep-10	87766.94	=""	="Josika Nominees Pty Ltd"	07-Dec-07 10:38 AM	
-="CN50285"	"VM Project Manager"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	27-Aug-07	05-Oct-07	30294.00	="07/114-00"	="Oakton AA Services Pty Ltd"	07-Dec-07 10:39 AM	
-="CN50286-A1"	"CRS Kingaroy, 7 Glendon Street, QLD"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	12600.00	=""	="Harris Family Trust"	07-Dec-07 10:51 AM	
-="CN50290"	"CRS Werribee, 3 Duncans Road, VIC"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	163412.64	=""	="Fifteenth Chanla Pty Ltd"	07-Dec-07 11:00 AM	
-="CN50288-A2"	" Advertising in White Pages "	="Centrelink"	07-Dec-07	="Advertising"	03-Dec-07	21-Jun-10	5529252.51	=""	="Sensis"	07-Dec-07 11:20 AM	
-="CN50296"	"CRS Batemans Bay, 43 Orient Street, NSW - Lease term 3 years"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	137350.40	=""	="Elders Real Estate"	07-Dec-07 11:22 AM	
-="CN50300"	" Educational DVD Production  Amendment to PO338 "	="Australian Electoral Commission"	07-Dec-07	="Digital versatile disks DVDs"	16-Nov-06	31-Dec-07	25987.85	=""	="Great Southern Communications Pty Ltd"	07-Dec-07 11:28 AM	
-="CN50302"	"ASLAV PARTS - CHUTE DISCHARGE ; LAV-25 "	="Department of Defence"	07-Dec-07	="Armoured fighting vehicles"	06-Dec-07	12-Jun-08	27953.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	07-Dec-07 11:31 AM	
-="CN50304"	"CRS Taree, 86-88 Albert Street, NSW - lease term 3 years, lease value $254,787.84 plus GSt"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	254787.84	=""	="Sotow Pty Ltd"	07-Dec-07 11:38 AM	
-="CN50305"	"CRS Port Pirie, Shop 5, Flinders Arcade, 76 Ellen Street, SA - Lease term 2 years"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jan-07	30-Dec-08	50851.50	=""	="PA Dabrowski"	07-Dec-07 11:43 AM	
-="CN50307"	"CRS Salisbury, 2/63 Commercial Road, SA - Lease term 1 year"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Oct-07	30-Sep-08	33330.36	=""	="Gool Gowi Pty Ltd"	07-Dec-07 11:54 AM	
-="CN50311"	"EAR CUSHIONS FOAM/GEL HYBRID"	="Defence Materiel Organisation"	07-Dec-07	="Phone headset ear or speaker cushions"	07-Dec-07	14-Mar-08	156750.00	=""	="EYLEX PTY LTD"	07-Dec-07 12:28 PM	
-="CN50312"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	07-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	04-Jan-08	12583.73	=""	="VOLVO COMMERICAL VEHILCES"	07-Dec-07 12:53 PM	
-="CN50313"	"Data Capture Services"	="Australian Electoral Commission"	07-Dec-07	="Data services"	01-Oct-03	30-Jun-08	2000000.00	="03/04/0010"	="Sema Group Pty Ltd"	07-Dec-07 02:38 PM	
-="CN50314"	"Legal Costs"	="Department of Finance and Administration"	07-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	31-Dec-07	11000.00	="LSB 01/2005"	="DLA PHILLIPS FOX LAWYERS"	07-Dec-07 02:42 PM	
-="CN50315"	"Insurance Premiums"	="Department of Finance and Administration"	07-Dec-07	="Financial and Insurance Services"	06-Dec-07	30-Jun-08	290387.06	="No tender - only 1 service provider"	="COMCOVER MEMBER SERVICES MANAGER"	07-Dec-07 02:42 PM	
-="CN50316"	"Legal Costs"	="Department of Finance and Administration"	07-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	30-Jan-08	11000.00	="LSB 01/2005"	="DLA PHILLIPS FOX LAWYERS"	07-Dec-07 02:42 PM	
-="CN50317"	"IT System Development Services"	="Department of Finance and Administration"	07-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	31-Jan-08	20000.00	="0000000000"	="FRONTIER GROUP AUSTRALIA PTY LTD"	07-Dec-07 02:42 PM	
-="CN50318"	"Project Manager and Superintendency"	="Department of Finance and Administration"	07-Dec-07	="Engineering and Research and Technology Based Services"	06-Dec-07	13-Oct-08	23076.18	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	07-Dec-07 02:42 PM	
-="CN50319"	"Architectural Services"	="Department of Finance and Administration"	07-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	31-Jan-08	1231084.33	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	07-Dec-07 02:43 PM	
-="CN50320"	"Peer Review"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	31-Dec-07	118709.80	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	07-Dec-07 02:43 PM	
-="CN50321"	"Finance Services"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	180000.00	="n/a"	="MERCER HUMAN RESOURCES CONSULTING PTY LT"	07-Dec-07 02:43 PM	
-="CN50322"	"Business Advisory Services"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	32000.00	="FIN07AMG007"	="PRICEWATERHOUSECOOPERS- 833468126"	07-Dec-07 02:43 PM	
-="CN50324"	"JOWWS-1013-Inner Western Sydney"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	110000.00	="DEWR RFT-2007/10"	="IPC EMPLOYMENT PTY LTD"	07-Dec-07 03:35 PM	
-="CN50325"	"EDDP 134 - Stepping Up"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	13-Jun-08	80215.00	="DEWR DG 18 2007/08"	="YWCA NSW"	07-Dec-07 03:35 PM	
-="CN50326"	"EDDP 112-Security Training"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	31-May-08	42146.00	="DEWR DG 20 2007/08"	="O'SHEA SECURITY"	07-Dec-07 03:35 PM	
-="CN50327"	"EDDP 124 - Employer Mentor Project"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	105000.00	="DEWR DG 19 2007/08"	="MELBOURNE CITY MISSION"	07-Dec-07 03:35 PM	
-="CN50328"	"Examine CDEP Provider Payrolls in NT"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	29-Nov-07	30-Nov-07	350000.00	="DEWR RFT 2 2004/05"	="OAKTON AA SERVICES PTY LTD"	07-Dec-07 03:35 PM	
-="CN50329"	"Wise Package Studio Pro 7 licences"	="Department of Employment and Workplace Relations"	07-Dec-07	="Software"	30-Nov-07	30-Jun-08	28116.00	=""	="MICROWAY P/L"	07-Dec-07 03:36 PM	
-="CN50330"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	30-Nov-07	30-Nov-07	243145.72	=""	="UNITED GROUP SERVICES - PROPERTY AC"	07-Dec-07 03:36 PM	
-="CN50331"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	03-Dec-07	30-Jun-08	312614.95	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:36 PM	
-="CN50332"	"Jobwise Outreach and Wise Workforce project - WA"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	110000.00	="DEWR RFT 2007 10 2006/07"	="WORKBASE"	07-Dec-07 03:36 PM	
-="CN50333"	"Jobwise Outreach and Wise Workforce - QLD, SA, NT"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	440000.00	="DEWR RFT 10 2006/07"	="JOBFIND CENTRES AUSTRALIA"	07-Dec-07 03:36 PM	
-="CN50334"	"Advice - Evaluation of WTW Reform"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	03-Dec-07	30-Jun-08	74250.00	=""	="ROBERT V BREUNIG"	07-Dec-07 03:36 PM	
-="CN50335"	"CEB's - 4wd training"	="Department of Employment and Workplace Relations"	07-Dec-07	="Vocational training"	03-Dec-07	30-Jun-08	12705.00	=""	="CHARLES DARWIN UNIVERSITY"	07-Dec-07 03:36 PM	
-="CN50336"	"IT support - overseas posts"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	10000.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	07-Dec-07 03:36 PM	
-="CN50337"	"EDDP156: Mandurah Youth Maritime Programme"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	13-Jun-08	11000.00	="DEWR DG 21 2007/08"	="MANDURAH OFFSHORE FISHING & SAILING"	07-Dec-07 03:37 PM	
-="CN50338"	"course fee FY 2007/2008"	="Department of Employment and Workplace Relations"	07-Dec-07	="Vocational training"	04-Dec-07	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP"	07-Dec-07 03:37 PM	
-="CN50339"	"Consultancy Services"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	04-Dec-07	30-Nov-08	40500.00	=""	="GARTNER AUSTRALASIA PTY LTD"	07-Dec-07 03:37 PM	
-="CN50340"	"Software Maintenance"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	05-Dec-07	30-Jun-08	153836.10	="TBA"	="UBIQUITY"	07-Dec-07 03:37 PM	
-="CN50341"	"IT Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	05-Dec-07	30-Jun-08	14181.20	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:37 PM	
-="CN50342"	"Data"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	06-Dec-07	30-Jun-08	20725.36	="TBA"	="TELSTRA (VIC)"	07-Dec-07 03:37 PM	
-="CN50343"	"Software"	="Department of Employment and Workplace Relations"	07-Dec-07	="Software"	06-Dec-07	30-Jun-08	26400.00	=""	="80-20 SOFTWARE PTY LTD"	07-Dec-07 03:37 PM	
-="CN50344"	"Fitout Level 3, 80 Mitchell St, Darwin"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	07-Dec-07	30-Jun-08	220000.00	=""	="POINT PROJECT MANAGEMENT"	07-Dec-07 03:37 PM	
-="CN50345"	"Recruitment Services"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	29-Nov-07	30-Nov-10	12080.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	07-Dec-07 03:38 PM	
-="CN50346"	"Reimbursement"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	01-Nov-07	30-Jun-08	26258.34	=""	="COMCARE"	07-Dec-07 03:38 PM	
-="CN50347"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	03-Dec-07	30-Jun-08	66066.00	=""	="AMOR CONSULTING PTY LTD"	07-Dec-07 03:38 PM	
-="CN50348"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	05-Dec-07	30-Jun-08	164450.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	07-Dec-07 03:38 PM	
-="CN50349"	"Telecommunications"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	09-Jul-07	30-Jun-08	51867.06	=""	="TELSTRA (VIC)"	07-Dec-07 03:38 PM	
-="CN50350"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	28-Nov-07	30-Jun-08	71786.00	="ITC"	="FINITE RECRUITMENT PTY LTD"	07-Dec-07 03:38 PM	
-="CN50351"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	29-Nov-07	30-Jun-08	89640.00	="ITC"	="CCS INDEX PTY LTD T/A CCS INDEX"	07-Dec-07 03:38 PM	
-="CN50352"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	29-Nov-07	30-Jun-08	84700.00	="ITC"	="COMPAS PTY LTD"	07-Dec-07 03:39 PM	
-="CN50353"	"Data"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	27-Jul-07	30-Jun-08	6666905.70	=""	="TELSTRA (VIC)"	07-Dec-07 03:39 PM	
-="CN50354"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	02-Aug-07	30-Jun-08	253000.00	=""	="IPC SOLUTIONS PTY LTD"	07-Dec-07 03:39 PM	
-="CN50355"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	27-Nov-07	30-Jun-08	164037.50	=""	="INFOSYS SOLUTIONS PTY LTD"	07-Dec-07 03:39 PM	
-="CN50356"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	19-Nov-07	30-Jun-08	201168.00	=""	="PALADIN SYSTEMS PTY LTD"	07-Dec-07 03:39 PM	
-="CN50357"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	07-Dec-07	30-Jun-08	147615.00	="ITC"	="IPP TECHNOLOGIES PTY LTD"	07-Dec-07 03:39 PM	
-="CN50358"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	28-Nov-07	30-Jun-08	113520.00	=""	="AMBIT IT & T"	07-Dec-07 03:39 PM	
-="CN50359"	"POWER AUGMENTATION WORKS AT IT DATA CENTRE"	="Department of Employment and Workplace Relations"	07-Dec-07	="Power sources"	14-Aug-07	31-Aug-07	41523.90	=""	="STOWE AUSTRALIA PTY LTD"	07-Dec-07 03:39 PM	
-="CN50360"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	04-Dec-07	30-Jun-08	185264.64	=""	="ENCORE IT SERVICES PTY LTD"	07-Dec-07 03:40 PM	
-="CN50361"	"Telecommunications"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	429041.55	=""	="OPTUS Communications Pty Ltd"	07-Dec-07 03:40 PM	
-="CN50362"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	21-Aug-07	30-Jun-08	68200.00	=""	="STUDIO SQL PTY LTD"	07-Dec-07 03:40 PM	
-="CN50363"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	23-Nov-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	07-Dec-07 03:40 PM	
-="CN50364"	"removal   storage costs"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	15908.00	=""	="ALLIED PICKFORDS PTY LTD"	07-Dec-07 03:40 PM	
-="CN50365"	"Perth Fitout"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	28-Nov-07	28-Nov-07	120996.37	=""	="UNITED GROUP SERVICES - PROPERTY AC"	07-Dec-07 03:40 PM	
-="CN50366"	"IT Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	30-Jun-08	70998.40	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:40 PM	
-="CN50367"	"Fitout Alterations at CRS Australia Werribee premises"	="CRS Australia"	07-Dec-07	="Renovation of buildings or landmarks or monuments"	29-Oct-07	09-Nov-07	35780.00	=""	="CA Property Group Pty Ltd"	07-Dec-07 04:15 PM	
-="CN50370"	"Ramp Installation and door Expansion"	="CRS Australia"	07-Dec-07	="Construction and maintenance support equipment"	01-Nov-07	31-Dec-07	15427.00	=""	="Haleberry Building Services"	07-Dec-07 04:25 PM	
-="CN50368"	"Ballot Paper Cartons"	="Australian Electoral Commission"	07-Dec-07	="Cardboard"	19-Nov-07	19-Dec-07	11325.60	=""	="SEP Sprint (Australia)"	07-Dec-07 04:27 PM	
-="CN50371"	"Furniture"	="Australian Electoral Commission"	07-Dec-07	="Furniture"	19-Nov-07	19-Dec-07	56706.10	=""	="Iken Commercial Interiors (ACT)"	07-Dec-07 04:46 PM	
-="CN50372"	"RESPIRATOR OUTFIT TROLLEY ASSEMBLY, AI PNEUMATIC AND AUDIO VISUAL WARNING SYSTEM, TWO OR FOUR MAN OPERATION"	="Defence Materiel Organisation"	07-Dec-07	="Respirators"	07-Dec-07	30-Jan-08	26136.00	="B1191"	="WORMALD TECHNOLOGY"	07-Dec-07 04:48 PM	
-="CN50373"	"Temporary Personnel"	="Australian Electoral Commission"	07-Dec-07	="Temporary personnel services"	26-Jul-07	25-Jul-08	125000.00	="S07/08/070"	="McArthur Management Services (QLD)"	07-Dec-07 04:55 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN49710"	" POCKET, AMMUNITION MAGAZINE POUCH "	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	16247.00	=""	="ANCAMARABA PTY LTD"	04-Dec-07 07:58 AM	

+="CN49839"	"Patch, Leg, Mollee Attachment"	="Defence Materiel Organisation"	04-Dec-07	="Patch panel"	03-Dec-07	31-Jan-08	32780.00	="CC1SI9"	="ADVENTURE ONE PTY LTD"	04-Dec-07 09:03 AM	

+="CN49840"	"Holsters & Chest Webbing"	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	122980.00	="CC1SIC"	="HUNTERS EDGE"	04-Dec-07 09:24 AM	

+="CN49842"	"Printing of NAT10129-12.2007 - The 2008 ATO Story calendar. Qty: 23,000"	="Australian Taxation Office"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	14-Dec-07	13446.40	="06.030"	="Paragon Printers"	04-Dec-07 09:35 AM	

+="CN49843-A4"	"Facilitation of Development of Murray-Darling Basin Project Methodology and Evaluation Approach"	="Centrelink"	04-Dec-07	="Strategic planning consultation services"	23-Nov-07	30-Jun-08	45000.00	=""	="Participatory Corporate Development P/L T/A Richard Kelloway and Associates"	04-Dec-07 09:40 AM	

+="CN49844"	" PURCHASE OF QTY 50 TRAVEL BAGS "	="Department of Defence"	04-Dec-07	="Luggage"	18-Sep-07	02-Oct-07	11000.00	=""	="MAINPEAK"	04-Dec-07 10:05 AM	

+="CN49845"	"PURCHASE OF QTY 90 SPECIAL CLIMBING BOOTS"	="Department of Defence"	04-Dec-07	="Footwear"	29-Oct-07	14-Nov-07	31185.00	=""	="MAINPEAK"	04-Dec-07 10:13 AM	

+="CN49847"	"Actuarial Services"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Service Industry Machinery and Equipment and Supplies"	01-Jun-07	31-Jul-07	12600.00	=""	="AUST GOVERNMENT ACTUARY"	04-Dec-07 10:43 AM	

+="CN49849"	"Adoption study"	="Australian Centre for International Agricultural Research"	04-Dec-07	="Adoption services"	21-Nov-07	28-Feb-08	12166.00	=""	="Dr Stephen Blaber"	04-Dec-07 10:49 AM	

+="CN49848"	"HOLSTER PISTOL"	="Defence Materiel Organisation"	04-Dec-07	="Light weapons and ammunition"	24-Oct-07	04-Feb-08	34650.00	=""	="AUST WEBGEAR"	04-Dec-07 10:56 AM	

+="CN49851"	"Police secondee salary recoup"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	556541.06	=""	="Australian Federal Police"	04-Dec-07 11:58 AM	

+="CN49852"	" GUM TEST EQUIPMENT EXISTANT AND TRAINING "	="Defence Materiel Organisation"	04-Dec-07	="Completion test equipment"	26-Jun-07	29-Nov-07	51753.90	=""	="H D SCIENTIFIC SUPPLIES PTY LTD"	04-Dec-07 12:02 PM	

+="CN49769"	"Public relations to support the Murray-Darling Basin Campaign."	="Department of Human Services"	04-Dec-07	="Public relations programs or services"	03-Sep-07	30-Jun-08	80000.00	=""	="Cox Inall Communications"	04-Dec-07 12:03 PM	

+="CN49853"	"Office Fitout "	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Furniture and Furnishings"	26-Oct-07	30-Dec-07	53600.00	=""	="CITE OFFICE DESIGN PTY LTD"	04-Dec-07 12:05 PM	

+="CN49854"	"Recruitment - Software Developer"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	16-Nov-07	30-Jun-08	130944.00	=""	="Tarakan Consulting Pty Ltd"	04-Dec-07 12:11 PM	

+="CN49855-A1"	" Recruitment - Project Manager "	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jan-08	31-Dec-08	269060.55	=""	="Hudson Global Resources"	04-Dec-07 12:15 PM	

+="CN49856"	"Professional Software Development Kit"	="Australian Crime Commission"	04-Dec-07	="Software"	28-Nov-07	28-Nov-07	77000.00	=""	="BCT Group Pty Ltd"	04-Dec-07 12:27 PM	

+="CN49858"	" Blade Servers "	="Australian Crime Commission"	04-Dec-07	="High end computer servers"	27-Nov-07	27-Nov-07	209205.77	="ACC-07/286"	="One Planet Solutions Pty Ltd"	04-Dec-07 12:40 PM	

+="CN49857"	"INDUCTOR, FOAM MAKING INLINE, PORTABLE, C/W RUBBER HOSE & TIP TUBE"	="Defence Materiel Organisation"	04-Dec-07	="Inductors"	30-Nov-07	01-Feb-08	26241.60	=""	="CHUBB FIRE SAFETY LTD"	04-Dec-07 12:42 PM	

+="CN49859"	"Purchase of 'B' class cabinets for National Office"	="Australian Taxation Office"	04-Dec-07	="Accommodation furniture"	10-May-07	21-Sep-07	38408.00	=""	="Planex Sales Pty Ltd"	04-Dec-07 01:09 PM	

+="CN49860"	"Provision of supply of  Labeling tapes"	="Department of Parliamentary Services"	04-Dec-07	="Labelling tapes"	03-Dec-07	31-Dec-07	11407.00	=""	="Prodata P/L"	04-Dec-07 01:13 PM	

+="CN49861"	"Storage of  VideoTapes for Broadcasting Contract (DPS04035 )"	="Department of Parliamentary Services"	04-Dec-07	="Storage"	03-Dec-07	30-Jun-08	22000.00	=""	="Iron Mountain Australia P/L"	04-Dec-07 01:13 PM	

+="CN49862"	"Provision of Carpet laying and Floorcovering Services"	="Department of Parliamentary Services"	04-Dec-07	="Carpeting"	30-Nov-07	31-Dec-07	27702.40	=""	="Chesta's Floors"	04-Dec-07 01:13 PM	

+="CN49863"	"Provision of supply of Nematodes for Landscape Services (Pest Accounts)"	="Department of Parliamentary Services"	04-Dec-07	="Lawn care services"	29-Nov-07	30-Dec-07	10587.50	=""	="Ecogrow Australia Pty Ltd"	04-Dec-07 01:13 PM	

+="CN49864"	"water Inspection and treatment services Contract (JH00051M )"	="Department of Parliamentary Services"	04-Dec-07	="Water testing and conservation and ecology"	26-Nov-07	07-Dec-07	17938.26	=""	="Ecolab Water Care Services Pty Ltd"	04-Dec-07 01:13 PM	

+="CN49865"	"Provision of Project Mangement Training Services Contract (DPS07049 )"	="Department of Parliamentary Services"	04-Dec-07	="Education and Training Services"	22-Nov-07	28-Dec-07	104425.20	=""	="Tanner James Management"	04-Dec-07 01:14 PM	

+="CN49866"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	04-Dec-07	="Environmental security control services"	28-Nov-07	28-Dec-07	33376.75	=""	="Honeywell Limited"	04-Dec-07 01:14 PM	

+="CN49867"	"Provision of supply of  X -Ray Hire"	="Department of Parliamentary Services"	04-Dec-07	="Security and control equipment"	18-Oct-07	28-Dec-07	24750.00	=""	="Smiths Detection Australia P/L"	04-Dec-07 01:14 PM	

+="CN49868"	"Provision of Monitoring Fire Alarms at Parliament House Contract DPS05051)"	="Department of Parliamentary Services"	04-Dec-07	="Fire alarm maintenance or monitoring"	04-Dec-07	30-Jun-08	44667.15	=""	="Aust Federal Police"	04-Dec-07 01:14 PM	

+="CN49869"	"Supply of Stationary & Office Equipment"	="Department of Parliamentary Services"	04-Dec-07	="Stationery"	16-Nov-07	22-Mar-08	11838.70	=""	="Corporate Express"	04-Dec-07 01:14 PM	

+="CN49870"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	82500.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	

+="CN49871"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Building cleaning services"	04-Dec-07	30-Jun-08	44000.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	

+="CN49872"	"Industrail Cleaning & relateded Services Contract (JH01037)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	423500.00	=""	="Canberra Queanbeyan Cleaning"	04-Dec-07 01:14 PM	

+="CN49873"	"Provision of Ongoing support services for mySAP (Contract  DPS06064)"	="Department of Parliamentary Services"	04-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jul-07	30-Jun-08	16967.51	=""	="Supply Chain Consulting Pty Ltd"	04-Dec-07 01:15 PM	

+="CN49874"	"Supply of Landscaping materials"	="Department of Parliamentary Services"	04-Dec-07	="Topsoil"	09-Jul-07	30-Jun-08	14300.00	=""	="Marfel Transport Service"	04-Dec-07 01:15 PM	

+="CN49875"	"Provision of supply of Fertilizer"	="Department of Parliamentary Services"	04-Dec-07	="Fertilisers and plant nutrients and herbicides"	09-Jul-07	30-Jun-08	12100.00	=""	="Bellchambers Produce Pty Ltd"	04-Dec-07 01:15 PM	

+="CN49876"	"major service on airconditioning chiller"	="Department of Parliamentary Services"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	30-Nov-07	31-Dec-07	54980.20	="DPS07073"	="Chillmech Services (Australia)"	04-Dec-07 01:15 PM	

+="CN49877"	"Standing Offer notice (SON27006); LEASE NOV-07 Fleet management and leasing services."	="Department of Parliamentary Services"	04-Dec-07	="Vehicle leasing"	22-Oct-07	30-Nov-07	13683.13	=""	="LeasePlan"	04-Dec-07 01:15 PM	

+="CN49879-A2"	"Provision for Specilaist Financial Advice"	="Comsuper"	04-Dec-07	="Human resources services"	28-Aug-07	30-Jun-08	350000.00	=""	="The IQ Business Group Pty Ltd"	04-Dec-07 01:38 PM	

+="CN49880-A1"	"Provision for technical Analyst"	="Comsuper"	04-Dec-07	="Human resources services"	01-Dec-07	30-Jun-08	91520.00	=""	="Face2face Recruitment"	04-Dec-07 01:41 PM	

+="CN49882"	"MANUFACTURE AND FIT NAVIGATIONAL MAST AND ANTENNA AND TO FIT ACCESSORIES"	="Department of Defence"	04-Dec-07	="Navigational equipment and instruments"	29-Aug-07	13-Oct-07	18519.82	=""	="WILTRADING"	04-Dec-07 01:47 PM	

+="CN49881-A1"	"Provision for Application Developer"	="Comsuper"	04-Dec-07	="Human resources services"	04-Aug-07	30-Jun-08	172040.00	=""	="Eurolink Consulting Australia Pty Ltd"	04-Dec-07 01:48 PM	

+="CN49883"	"ORATSIC Governance Info session & costitution redisgn wrk  Palm Island"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	19-Nov-07	21-Dec-07	15840.00	=""	="Australian Rural Accounting"	04-Dec-07 01:50 PM	

+="CN49884"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	19-Nov-07	30-Dec-07	82225.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:50 PM	

+="CN49885"	"MEX Facilities Management Access, Training and Licenses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	19-Nov-07	30-Jun-08	12142.10	=""	="MEX Maintenance Experts"	04-Dec-07 01:51 PM	

+="CN49886"	"Juliana House Alteration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	19-Dec-07	35640.00	=""	="Manzano Constructions"	04-Dec-07 01:51 PM	

+="CN49887"	"Supply of workstations & Loose furniture"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Nov-07	30-Nov-07	645703.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49888"	"Construction Management"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	19-Nov-07	1242331.20	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49889"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	147840.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49890"	"FaCSIA Intelligent information System"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	21-Nov-07	14-Feb-08	70000.00	=""	="NETCAT.biz PTY LTD"	04-Dec-07 01:51 PM	

+="CN49891"	"Production of quality assurance and continuous improvement handbooks for disability services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	20-Nov-07	01-Dec-07	25750.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Dec-07 01:51 PM	

+="CN49892"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	20-Nov-07	30-Jun-08	143220.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49893"	"General Advice"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	19-Nov-07	19-Nov-07	22000.00	=""	="DLA PHILLIPS FOX"	04-Dec-07 01:52 PM	

+="CN49894"	"Software Licences"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Dec-07	149512.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:52 PM	

+="CN49895"	"International Services for return of Indigenous Remains"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Mail and cargo transport"	15-Nov-07	30-Nov-07	10558.22	=""	="INTERNATIONAL ART SERVICES PTY LTD"	04-Dec-07 01:52 PM	

+="CN49896"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	84188.68	=""	="CYBERTRUST AUSTRALIA"	04-Dec-07 01:52 PM	

+="CN49897"	"Symposium "Go To Market" 19 November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	15-Nov-07	23-Nov-07	21600.00	=""	="Gartner Australasia PTY Limited"	04-Dec-07 01:52 PM	

+="CN49898"	"Superannuation Administration fees for Quarter 2 07/08"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	31-Dec-07	127320.25	=""	="Comsuper       CPM"	04-Dec-07 01:52 PM	

+="CN49900"	"7 units of Dragon "Preferred" v9.5 - including DVD"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	17493.00	=""	="Voicerecognition.com.au Pty Ltd"	04-Dec-07 01:52 PM	

+="CN49901"	"Report on issues of FaCSIA  fundees in Victoria's Business Services Sector"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	14-Nov-07	14-Nov-07	22698.14	=""	="Dept of Employment & Workplace Rela"	04-Dec-07 01:52 PM	

+="CN49902"	"TAM Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Components for information technology or broadcasting or telecommunications"	19-Nov-07	31-Dec-07	123200.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:53 PM	

+="CN49903"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	26241.30	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:53 PM	

+="CN49899"	"Provision for Security Architecture Scoping Study"	="Comsuper"	04-Dec-07	="Information technology consultation services"	22-Nov-07	21-Dec-07	17600.00	=""	="Castelain"	04-Dec-07 01:53 PM	

+="CN49904"	"FaCSIA Property & Security Business Continuity Plan - Consulting Assistance"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	16-Nov-07	21-Dec-07	17325.00	=""	="Leslie Whittet & Associates"	04-Dec-07 01:53 PM	

+="CN49905"	"Career Development Assessment Centre registration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	23650.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:53 PM	

+="CN49906"	"NTER Communications"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	16-Nov-07	33286.30	=""	="Famous 5 Pty Ltd"	04-Dec-07 01:53 PM	

+="CN49908"	"Media Analysis for NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	30-Jun-08	46142.42	=""	="Media Monitors Australia Pty Ltd"	04-Dec-07 01:53 PM	

+="CN49909"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	125840.00	=""	="Stratagem Computer Contractors Pty"	04-Dec-07 01:53 PM	

+="CN49910"	"Lease and operation of a third aircraft for NT Police to support the NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Aircraft"	28-Nov-07	12-Dec-07	1980000.00	=""	="NORTHERN TERRITORY POLICE"	04-Dec-07 01:54 PM	

+="CN49911"	"Money Management Resource Tool- Facilitator's  community Education Workshop Kit"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	15-Jan-08	45687.20	=""	="Marcus Lee Design"	04-Dec-07 01:54 PM	

+="CN49913"	"ARB 4WD Vehicle Recovery Kits"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Nov-07	25460.00	=""	="ARB 4 x 4 Accessories"	04-Dec-07 01:54 PM	

+="CN49914"	"Removal fee for Nhulunbuy Fitout"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	26-Nov-07	26-Nov-07	24200.00	=""	="Lalor Removals Pty Ltd"	04-Dec-07 01:54 PM	

+="CN49915"	"Automated Testing Strategy Development"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	26-Nov-07	21-Dec-07	16764.00	=""	="KJ ROSS & ASSOCIATES"	04-Dec-07 01:54 PM	

+="CN49916"	"Software"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	23-Nov-07	30-Dec-07	26855.12	=""	="ALPHAWEST SERVICES PTY LTD"	04-Dec-07 01:54 PM	

+="CN49917"	"Introduction to Corporate Governance Worksop Alice Springs"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Hotels and lodging and meeting facilities"	30-Nov-07	30-Nov-07	21386.00	=""	="DIPLOMAT ALICE SPRINGS"	04-Dec-07 01:54 PM	

+="CN49918"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	30-Nov-07	30-Jun-08	128811.20	=""	="COMMAND RECRUITMENT GROUP"	04-Dec-07 01:54 PM	

+="CN49919"	"Design and develop a Petrol Sniffing Strategy Evaluation Framework"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	01-Apr-08	80000.00	=""	="COURAGE PARTNERS PTY LTD"	04-Dec-07 01:55 PM	

+="CN49920"	"Bounty Bag - DVD in New Mother Bag"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Educational facilities"	30-Nov-07	15-Dec-07	66000.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49921"	"Hoban"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	29-Nov-07	29-Nov-07	11000.00	=""	="Lynne Hoban Personnel Systems P/L"	04-Dec-07 01:55 PM	

+="CN49922"	"Provision of Investigation Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Financial and Insurance Services"	28-Nov-07	11-Jan-08	44000.00	=""	="DELOITTE TOUCHE TOHMATSU"	04-Dec-07 01:55 PM	

+="CN49923"	"Advertising for Tenders for the Provision on domestic Violence Helpline"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	26980.17	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49924"	"Government Notices for NT Emergency Response Pornography Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Emergency and field medical services products"	22-Nov-07	14-Dec-07	21544.45	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49925"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	20-Dec-07	11872.42	=""	="COMPUTERCORP (OPERATIONS)"	04-Dec-07 01:55 PM	

+="CN49926"	"Advertising of Compass Program in Graduate Careers 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	22-Nov-07	30-Dec-07	12925.00	=""	="HOBSONS AUSTRALIA PTY LIMITED t/as"	04-Dec-07 01:55 PM	

+="CN49927"	"Distribution of 70,000 Avant Cards for National Youth Week"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Marketing and distribution"	22-Nov-07	28-Feb-08	14003.00	=""	="AVANT CARD"	04-Dec-07 01:56 PM	

+="CN49928"	"Provision of pricing evaluation services in relation to Market Research & Usability Panel RFT"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	22-Nov-07	06-May-08	23625.00	=""	="Freebody Cogent Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49929"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	30-Dec-07	15326.56	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	

+="CN49930"	"Additional computers for extra staff & members. Qty 30 complete units/ qty 10 units w/out monito"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	23-Nov-07	65747.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	

+="CN49931"	"Supply and install of workstations and loose furniture Brisbane STO"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	23-Nov-07	273751.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49932"	"Contractor engaged to complete fitout works to Brisbane State Office"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	678459.98	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49933"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	23-Nov-07	30-Jun-08	153120.00	=""	="Avanade Australia Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49934-A1"	"Longitudinal Study of Indigenous Children - Survey Design, data collection"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	23-Nov-07	30-Jun-11	1746957.00	=""	="Roy Morgan Research Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49935"	"LAFIA 2007 Asia Programme Fee"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	02-Nov-07	02-Nov-07	27610.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:57 PM	

+="CN49936"	"Comcare 06/07 premium adjustment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Insurance and retirement services"	02-Nov-07	02-Nov-07	750433.00	=""	="Comcare Australia"	04-Dec-07 01:57 PM	

+="CN49937"	"Fitout NTER Operations Centre Office - Darwin"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="General building construction"	01-Nov-07	02-Nov-07	1535030.88	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:57 PM	

+="CN49938"	"Office equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	11-Oct-07	29-Nov-07	26754.20	=""	="Office Furniture & Storage Solution"	04-Dec-07 01:57 PM	

+="CN49939"	"Property Lease L24/500 Collins St melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	28-Nov-07	29320.20	=""	="ECS Property Group"	04-Dec-07 01:57 PM	

+="CN49940"	"Rent for 565 Bourke Street Melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	28-Nov-07	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Dec-07 01:57 PM	

+="CN49941"	"Senior Project Manager - NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	05-Nov-07	30-Jun-08	72600.00	=""	="TANNER JAMES MANAGEMENT"	04-Dec-07 01:57 PM	

+="CN49942"	"Advertising New NTER Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	45556.50	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:57 PM	

+="CN49943"	"Advertising Graduate Oportunities 08/09"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	12100.00	=""	="GRADUATE CAREERS COUNCIL OF"	04-Dec-07 01:58 PM	

+="CN49944"	"Install and Develop FOFMS monitoring tools & associated professional services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	49500.00	=""	="RPM SOLUTIONS PTY LTD"	04-Dec-07 01:58 PM	

+="CN49945"	"Review of current financial position and financial viability of GYC Alice Springs."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	23-Nov-07	13154.00	=""	="DFK Kidsons"	04-Dec-07 01:58 PM	

+="CN49946"	"Managing Stakeholders Engagement Course Fee for service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	02-Nov-07	02-Nov-07	20811.16	=""	="Directions for Change"	04-Dec-07 01:58 PM	

+="CN49947"	"Payment Business travel account Perth"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Travel facilitation"	06-Nov-07	29-Nov-07	13042.93	=""	="American Express"	04-Dec-07 01:58 PM	

+="CN49948"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	11796.50	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	

+="CN49949"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	15806.35	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	

+="CN49950"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	27964.30	=""	="Corporate Express Australia"	04-Dec-07 01:58 PM	

+="CN49951"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25965.81	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	

+="CN49952"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25838.30	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	

+="CN49953"	"Reimbursement November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	26-Nov-07	100994.74	=""	="United Group Services"	04-Dec-07 01:59 PM	

+="CN49954"	"Office rent 1/12/2007-31/12/2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	01-Dec-07	01-Dec-07	33621.50	=""	="ARIA Property Group"	04-Dec-07 01:59 PM	

+="CN49955"	"SSAT L4&L5 380 Queens St Bne Progress Claim No.3"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Professional engineering services"	31-Oct-07	26-Nov-07	14155.68	=""	="Schiavello Fitout (QLD) Pty Ltd"	04-Dec-07 01:59 PM	

+="CN49956"	"Printing 2006/2007 Annual Report"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Paper products"	09-Nov-07	21-Nov-07	14110.80	=""	="Blue Print"	04-Dec-07 01:59 PM	

+="CN49957"	"SSAT stare hearing tables"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Oct-07	19-Nov-07	28858.50	=""	="Schiavello (Vic.) Pty Ltd"	04-Dec-07 01:59 PM	

+="CN49958"	"Commercial Funiture Cus no.CASHDT30 Cus PO 995/014"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	11-Sep-07	12-Nov-07	22269.50	=""	="Workspace Commercial Furniture Pty"	04-Dec-07 01:59 PM	

+="CN49959"	"Health appraisals for Group Staff"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	05-Nov-07	30-Nov-07	47245.00	=""	="Health Futures Pty Ltd"	04-Dec-07 02:00 PM	

+="CN49960"	"Proj Mgt Consult Service-TOP"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	13-Nov-07	20000.00	=""	="XACT PROJECT CONSULTANTS PTY LTD"	04-Dec-07 02:00 PM	

+="CN49961"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	29-Feb-08	57200.00	=""	="CAPSE Pty Ltd"	04-Dec-07 02:00 PM	

+="CN49962"	"20 GUI vUSers & HP Support"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	43472.00	=""	="HEWLETT PACKARD AUST LTD"	04-Dec-07 02:00 PM	

+="CN49963"	"Government Notices for NT Emergency Response Alcohole Bans"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	12-Nov-07	12-Dec-07	80905.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	

+="CN49964"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	153120.00	=""	="GREYTHORN PTY LTD"	04-Dec-07 02:00 PM	

+="CN49965"	"Government Notices for NT Emergency Response Porn/ Alcohole Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information services"	12-Nov-07	12-Dec-07	72728.66	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	

+="CN49966"	"Consultancy Services - Young Carers - Their Characteristics and Geographical Distribution"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	14-Nov-07	30-Jun-08	54958.00	=""	="Social Policy Research Centre"	04-Dec-07 02:00 PM	

+="CN49967"	"Statutory appointment of Administratio for Mandangala Aboriginal Corporation"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	55000.00	=""	="Grant Thornton (WA) Pty Ltd"	04-Dec-07 02:01 PM	

+="CN49968"	"Develpo Overarching Strategy Helping Children with Autism package"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	14-Nov-07	07-Dec-07	55000.00	=""	="HannahFyre Enterprises"	04-Dec-07 02:01 PM	

+="CN49969"	"Provision of Project Assurance Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	33000.00	=""	="MAX SHANAHAN & ASSOCIATES PTY"	04-Dec-07 02:01 PM	

+="CN49970"	"NTERT-Relocations to various addresses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Transportation and Storage and Mail Services"	13-Nov-07	13-Nov-07	16408.00	=""	="AUSSIEMOVE INTERNATIONAL PTY LTD"	04-Dec-07 02:01 PM	

+="CN49971"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	39361.95	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 02:01 PM	

+="CN49972"	"Consultancy work around the Group Improvement Process"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	24-Dec-07	25500.00	=""	="THE WORKWISE GROUP PTY. LTD."	04-Dec-07 02:01 PM	

+="CN49973"	"The provision of consultancy services in relation to the Petrol Sniffing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	08-Nov-07	01-May-08	82947.10	=""	="Urbis JHD"	04-Dec-07 02:01 PM	

+="CN49974"	"To Update the previous Risk Management Plan for Network security in FaCSIA"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	08-Nov-07	19-Dec-07	24200.00	=""	="SECURELINK PTY LTD"	04-Dec-07 02:01 PM	

+="CN49975"	"Staff Furniture Relocation Adeliade"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	07-Nov-07	30-Nov-07	15015.00	=""	="Atlantis = Pty Ltd"	04-Dec-07 02:02 PM	

+="CN49976"	"Create online application for the National Youth Week calendar of events."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	07-Nov-07	01-Jan-08	15300.00	=""	="Commercial Interactive Media"	04-Dec-07 02:02 PM	

+="CN49977"	"Northern Territory Emergency Response  Implemtation Plan"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	07-Nov-07	16-Nov-07	57875.00	=""	="PROVIDENCE CONSULTING GROUP"	04-Dec-07 02:02 PM	

+="CN49978"	"Baseline Community Profile - Mornington Shire Queensland"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	12-Nov-07	15-Mar-08	48600.00	=""	="THE CULTURAL & INDIGENOUS"	04-Dec-07 02:02 PM	

+="CN49979"	"Payment ot Language Professionals for the translation and update of the FAO Multilingual"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	09-Nov-07	30-Nov-07	23650.00	=""	="LANGUAGE PROFESSIONALS"	04-Dec-07 02:02 PM	

+="CN49980"	"Contract Services for Development of Paper for Future ICT Sourcing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	09-Nov-07	07-Dec-07	50000.00	=""	="IT Newcom Pty Limited"	04-Dec-07 02:02 PM	

+="CN49981"	"Training course for Compass"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	09-Nov-07	24-Dec-07	10510.00	=""	="D'Arcy Consulting Group Pty Ltd"	04-Dec-07 02:02 PM	

+="CN49982"	"Supply of Workstations & Loose Furniture-Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Accommodation furniture"	08-Nov-07	30-Nov-07	931873.63	=""	="Cite Office Design Pty Ltd"	04-Dec-07 02:03 PM	

+="CN49983"	"Construction Management - Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	08-Nov-07	30-Nov-07	2635121.77	=""	="ISIS Projects Pty Ltd"	04-Dec-07 02:03 PM	

+="CN49907"	"Tool Kit Carpenters"	="Department of Defence"	04-Dec-07	="Carpentry"	04-Dec-07	18-Dec-07	18277.44	=""	="KENTOOL PTY LTD"	04-Dec-07 02:16 PM	

+="CN49986"	"Management of journal subscriptions"	="Family Court of Australia"	04-Dec-07	="Business and corporate management consultation services"	26-Nov-07	25-Nov-08	33389.45	=""	="EBSCO Australia"	04-Dec-07 02:49 PM	

+="CN49987"	"NSN 3110-00-299-0410, Track Roller Ball Bearings"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	20-Nov-07	01-Aug-08	27646.34	=""	="Milspec Services Pty Ltd"	04-Dec-07 02:52 PM	

+="CN49988"	"NSN 5330-66-138-3602, Preformed Packing"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	16-Nov-07	21-Dec-07	11444.40	=""	="Milspec Services Pty Ltd"	04-Dec-07 03:05 PM	

+="CN49989-A2"	"Provision of Rehabilitation counselling services"	="CRS Australia"	04-Dec-07	="Comprehensive health services"	03-Dec-07	21-Sep-09	60478.00	=""	="Expert Rehab Management"	04-Dec-07 03:07 PM	

+="CN49994"	"Recruitment - Project Manager"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	22-Nov-07	03-Apr-08	98252.00	=""	="ICON Recruitment Pty ltd"	04-Dec-07 03:26 PM	

+="CN49995-A4"	"Recruitment - ERP Project Management"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	24-Nov-07	31-Dec-08	274683.00	=""	="Hurtile Pty Ltd"	04-Dec-07 03:32 PM	

+="CN49998"	"Online Library Subscription"	="Australian Crime Commission"	04-Dec-07	="Library or documentation services"	01-Jul-07	30-Jun-08	36696.48	=""	="Thompson Legal & Regulatory Group"	04-Dec-07 03:36 PM	

+="CN50000"	" NSN 2840-01-369-3242  PURCHASE OF SPACER, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	13-Dec-07	77478.66	=""	="Flite Path Pty Ltd"	04-Dec-07 03:40 PM	

+="CN50002"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:46 PM	

+="CN50004"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:51 PM	

+="CN50005"	"Telecommunications Interception"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	26-Nov-07	26-Dec-07	19000.00	=""	="Hutchison Telecoms Australia Ltd"	04-Dec-07 03:55 PM	

+="CN50006"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:56 PM	

+="CN50007"	"Photocopier lease charges"	="Australian Crime Commission"	04-Dec-07	="Photocopiers"	14-Sep-07	16-Nov-07	75134.40	=""	="Fuji Xerox Australia Pty Ltd"	04-Dec-07 04:00 PM	

+="CN50009"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Apr-07	31-Mar-08	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:01 PM	

+="CN50008"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:01 PM	

+="CN50011"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:06 PM	

+="CN50012"	"Telecommunications Interception expenditure"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	62000.00	=""	="Optus Billing Services"	04-Dec-07 04:07 PM	

+="CN50013"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-04	30-Jun-06	690000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:07 PM	

+="CN50014"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:09 PM	

+="CN50015"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:12 PM	

+="CN50016"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Jul-04	31-Mar-07	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:13 PM	

+="CN50017-A1"	"UPS for computer servers"	="Australian Crime Commission"	04-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	01-Dec-07	18629.58	=""	="Commander Integrated Networks Pty Ltd"	04-Dec-07 04:14 PM	

+="CN50018"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:15 PM	

+="CN50021"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-01	30-Jun-04	945000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:22 PM	

+="CN50020"	"  GAGE THICKNESS ELECTRONIC  "	="Defence Materiel Organisation"	04-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	29-Feb-08	34067.00	=""	="OLYMPUS AUST P/L"	04-Dec-07 04:23 PM	

+="CN50022"	"lease of air conditioners"	="Australian Crime Commission"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	05-Dec-07	05-Jun-08	10780.00	=""	="Emerson Network Power Australia"	04-Dec-07 04:23 PM	

+="CN50023"	"IT development for Standard Information Exchange project"	="Australian Crime Commission"	04-Dec-07	="Information exchange software"	01-Dec-07	30-Jun-08	1731021.00	=""	="Western Australia Police"	04-Dec-07 04:32 PM	

+="CN50024"	"Softwar maintenance"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Software"	01-Aug-07	31-Jul-08	40700.00	=""	="ACUMENT ALLIANCE (ACT) PTY LTD"	04-Dec-07 04:38 PM	

+="CN50025"	"Telecommunications Interception for Telstra"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	19000.00	=""	="Telstra"	04-Dec-07 04:40 PM	

+="CN50026"	"Coaching for Senior Executive staff"	="Australian Crime Commission"	04-Dec-07	="Workshops"	04-Dec-07	30-Jun-08	47960.00	=""	="Yellow Edge Pty Ltd"	04-Dec-07 04:44 PM	

+="CN50027"	"Rack Mounted server"	="Australian Crime Commission"	04-Dec-07	="Computer servers"	04-Dec-07	04-Dec-07	10505.00	=""	="Dell Computer Pty Ltd"	04-Dec-07 04:48 PM	

+="CN50028"	"For the purchase of Qty 10 ice detectors for use on the Black Hawk helicopter to replace items classified as 'BER' by repair contractor."	="Defence Materiel Organisation"	04-Dec-07	="Military rotary wing aircraft"	27-Nov-07	07-Oct-08	139735.75	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	04-Dec-07 04:49 PM	

+="CN50029"	"Editing Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Sep-07	30-Nov-07	14550.00	=""	="Therese Laanela"	04-Dec-07 04:53 PM	

+="CN50030"	"Editing of Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Jul-07	31-Dec-07	16975.00	=""	="Yvonne Goudie"	04-Dec-07 04:57 PM	

+="CN50031"	"TACLANE Mine (KS328-07)"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	28-Dec-07	21900.00	=""	="Defence Material Organisation"	04-Dec-07 04:59 PM	

+="CN50032"	"Printing of Annual Report"	="Department of the Treasury"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Oct-07	30-Jun-08	62961.00	=""	="Canprint Communications Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50033"	"Equipment for AICNet"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	30-Oct-07	31-Dec-07	71255.92	=""	="Getronics Australia Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50034"	"IBIS world subscription"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	30-Jun-08	26697.00	=""	="IBISWorld.com"	04-Dec-07 04:59 PM	

+="CN50035"	"Health Assessments for Health Month"	="Department of the Treasury"	04-Dec-07	="Healthcare Services"	26-Oct-07	30-Jun-08	22000.00	=""	="ACT Nursing Service Pty ltd"	04-Dec-07 04:59 PM	

+="CN50036"	"40 940B 19" TFT Bezel Black Monitors"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	24-Oct-07	18-Nov-07	13640.00	=""	="Dataflex Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50037"	"Advertisment for Director position"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	15995.23	=""	="HMA Blaze Pty Limited"	04-Dec-07 04:59 PM	

+="CN50038"	"Statistics Subscription renewal"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	23870.00	=""	="Econdata Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50039"	"Loss Estimation Model Development"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	37807.00	=""	="Finity"	04-Dec-07 04:59 PM	

+="CN50040"	"CEIC Aisa Database & CEIC China Database"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	27720.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	

+="CN50041"	"Legal Advice"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	25000.00	=""	="Australian Government Solicitor"	04-Dec-07 05:00 PM	

+="CN50042"	"Basic dX Software Package"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	10560.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	

+="CN50043"	"Fees for Investment Management Services"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	30-Jun-08	280483.64	=""	="Suncorp"	04-Dec-07 05:00 PM	

+="CN50044"	"Replacement Server and Storeage Disk"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	15-Nov-07	23-Nov-07	46657.47	=""	="Dell Australia"	04-Dec-07 05:00 PM	

+="CN50045"	"Adverstisement for SBR conference"	="Department of the Treasury"	04-Dec-07	="Paper Materials and Products"	14-Nov-07	19-Nov-07	16436.86	=""	="HMA Blaze Pty Limited"	04-Dec-07 05:00 PM	

+="CN50046"	"Purchase of 20 Dishwashers"	="Department of the Treasury"	04-Dec-07	="Cleaning Equipment and Supplies"	08-Nov-07	03-Dec-07	47998.00	=""	="Kleenmaid"	04-Dec-07 05:00 PM	

+="CN50047"	"Continuum Software Dongle"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	30-Nov-07	10318.00	=""	="ADT Security"	04-Dec-07 05:00 PM	

+="CN50048"	"P.O increase for Treasury storage"	="Department of the Treasury"	04-Dec-07	="Transportation and Storage and Mail Services"	24-Jul-07	31-Jul-08	32000.00	=""	="1st Fleet Warehousing and Distribut"	04-Dec-07 05:00 PM	

+="CN50049"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	15-Oct-07	14-Oct-08	275616.00	=""	="Collective Resources IT Recruitment"	04-Dec-07 05:00 PM	

+="CN50050"	"Provision of the APS and Treasury Accountabilities"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-10	25000.00	="RFT006/07"	="Shane Carroll & Associates"	04-Dec-07 05:01 PM	

+="CN50051"	"Building Services Panel - Ground Floor E Block Con"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	30-Oct-07	31-Dec-07	142913.10	=""	="G E Shaw & Associates (ACT) Pty Ltd"	04-Dec-07 05:01 PM	

+="CN50052"	"Building Services Panel"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	24-Oct-07	30-Mar-08	1370524.00	=""	="IQON Pty Ltd"	04-Dec-07 05:01 PM	

+="CN50053"	"SBR conference 26-28 Nov 2008"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	26-Nov-07	28-Nov-07	60000.00	=""	="Hilton - Brisbane"	04-Dec-07 05:01 PM	

+="CN50054"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	30-Jun-08	327673.27	=""	="American Express International"	04-Dec-07 05:01 PM	

+="CN50055"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Oct-07	30-Jun-08	261441.18	=""	="American Express International"	04-Dec-07 05:01 PM	

+="CN50056"	"Contractor wages"	="Department of the Treasury"	04-Dec-07	="Personal and Domestic Services"	09-Nov-07	30-Jun-08	25000.00	="M.SKINNER"	="Westaff"	04-Dec-07 05:01 PM	

+="CN50057"	"Digital Projects s.o Increase"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	17-Jul-07	31-Dec-07	15000.00	=""	="Digital Projects"	04-Dec-07 05:01 PM	

+="CN50058"	"Development of a professional learning package"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-May-08	199091.54	="OPEN SOURCE"	="Curriculum Corporation"	04-Dec-07 05:02 PM	

+="CN50059"	"Provision of Internal Audit  Services for the HIH"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	22-Oct-07	30-Jun-08	275550.00	=""	="KPMG - Canberra"	04-Dec-07 05:02 PM	

+="CN50060"	"Ernst & Young Secondee - Anne Millward"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Sep-07	23-Sep-08	115841.00	=""	="Ernst & Young Services Pty Limited"	04-Dec-07 05:02 PM	

+="CN50061"	"Legal Services Panel - Provision of legal advice  for the SBR"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	23-Oct-07	30-Jun-09	350000.00	=""	="Aust Government Solicitor  ACT"	04-Dec-07 05:02 PM	

+="CN50062"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	01-Oct-07	30-Oct-08	375840.00	=""	="Compas Pty Ltd"	04-Dec-07 05:02 PM	

+="CN50063-A1"	"Printing and Distribution Services"	="Australian Electoral Commission"	04-Dec-07	="Industrial printing services"	03-Aug-06	03-Aug-09	2000965.86	="AEC06/026"	="PMP Print Pty Ltd"	04-Dec-07 05:04 PM	

+="CN50064"	"GST Executive Events over FY 2007/2008"	="Australian Taxation Office"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	30-Jun-08	114550.00	="06.028"	="Hoffman Donohue P/L"	04-Dec-07 05:09 PM	

+="CN50066-A3"	"Agreement forming the basis under which APRA grants the ATO a licence for the purposes of S183(1), (4), (5) of the copyright act as it applies to music."	="Australian Taxation Office"	04-Dec-07	="Management support services"	01-Jul-07	30-Jun-11	128225.11	=""	="Australasian Performing Right Association Limited"	04-Dec-07 05:18 PM	

+="CN50067"	"refining recovery charges"	="Royal Australian Mint"	05-Dec-07	="Refining metal services"	01-Nov-07	01-Nov-07	16070.56	=""	="WESTERN AUSTRALIAN MINT"	05-Dec-07 07:53 AM	

+="CN50069"	"case coin proof"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	09-Nov-07	22-Feb-08	14850.00	=""	="DAVIES FERGUSON PTY LTD"	05-Dec-07 08:00 AM	

+="CN50071"	"copper strip"	="Royal Australian Mint"	05-Dec-07	="Copper strip"	09-Nov-07	10-Nov-07	10395.00	=""	="AUSTRALIAN METALS P/L"	05-Dec-07 08:05 AM	

+="CN50072"	" vehicle parts "	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Dec-07	11-Dec-07	12474.94	=""	="DAIMLER CHRYSLER AUST/PACIFIC"	05-Dec-07 08:06 AM	

+="CN50073"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Dec-07	="Drugs and Pharmaceutical Products"	05-Dec-07	21-Dec-07	10631.50	=""	="GlaxoSmithKline Aust Pty Ltd"	05-Dec-07 08:07 AM	

+="CN50074"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	10-Nov-07	10-Nov-07	24393.16	=""	="BLUE STAR PRINT - AUSTRALIA"	05-Dec-07 08:13 AM	

+="CN50075"	"bac workbenches"	="Royal Australian Mint"	05-Dec-07	="Work benches"	14-Nov-07	14-Nov-07	19112.50	=""	="BAC AUSTRALIAN SYSTEMS P/L"	05-Dec-07 08:22 AM	

+="CN50076"	"heating towel rails"	="Royal Australian Mint"	05-Dec-07	="Heating or drying equipment or accessories"	14-Nov-07	14-Nov-07	13340.28	=""	="SPALECK OBERFLACHENTECHNIK"	05-Dec-07 08:51 AM	

+="CN50078"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	15-Nov-07	03-Apr-08	57383.04	=""	="BLUE STAR PRODUCTS P/L"	05-Dec-07 09:06 AM	

+="CN50079"	"Bracket, Plate, & Gear."	="Defence Materiel Organisation"	05-Dec-07	="Parts of guns or pistols"	04-Dec-07	30-Jan-08	31152.00	=""	="G A Hanrahan Pty Ltd"	05-Dec-07 09:12 AM	

+="CN50080"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	22-Nov-07	23-Nov-07	12649.89	=""	="BLUE STAR PRINT - AUSTRALIA"	05-Dec-07 09:15 AM	

+="CN50081"	"packsging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	22-Nov-07	22-Nov-07	10067.97	=""	="SCHOLASTIC AUSTRALIA PTY LTD"	05-Dec-07 09:20 AM	

+="CN50082"	"SEALING COMPOUND"	="Defence Materiel Organisation"	05-Dec-07	="Adhesives and sealants"	04-Dec-07	18-Jan-08	17946.36	=""	="PPG INDUSTRIES AUSTRALIA P/L"	05-Dec-07 09:26 AM	

+="CN50083"	"IT rental equipment"	="Royal Australian Mint"	05-Dec-07	="Components for information technology or broadcasting or telecommunications"	22-Nov-07	22-Nov-07	71216.15	=""	="EQUIGROUP PTY LTD"	05-Dec-07 09:27 AM	

+="CN50084"	" Director, Artillery,  "	="Defence Materiel Organisation"	05-Dec-07	="Surveillance and detection equipment"	28-Nov-07	16-Jun-08	473965.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	05-Dec-07 09:27 AM	

+="CN50086"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	23-Nov-07	07-Mar-08	10010.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	05-Dec-07 09:34 AM	

+="CN50088"	"packaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	23-Nov-07	07-Mar-08	35200.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	05-Dec-07 09:39 AM	

+="CN50087"	"    Complaint Resolution Committee    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Sep-07	15680.67	=""	="Complementary Healthcare Council of Australia"	05-Dec-07 09:39 AM	

+="CN50089"	" consultancy services "	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	23-Nov-07	23-Nov-07	22000.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 09:45 AM	

+="CN50090"	"cosultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	23-Nov-07	23-Nov-07	26125.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 09:51 AM	

+="CN50091"	"    Contractors - Labour Hire    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	23-Dec-07	11000.00	=""	="Effective People Pty Ltd"	05-Dec-07 09:54 AM	

+="CN50092"	"Printing of JS7970 - Tax Agent Newsletter Issue 3. Qty: 25,000."	="Australian Taxation Office"	05-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	10-Dec-07	15666.20	="06.030"	="Blue Star Print Group t/a National Capital Printing"	05-Dec-07 09:55 AM	

+="CN50093"	"conveyor"	="Royal Australian Mint"	05-Dec-07	="Conveyors and accessories"	26-Nov-07	26-Nov-07	11676.50	=""	="FLEMING PLASTICS DYNAMICS PTY LTD"	05-Dec-07 09:56 AM	

+="CN50094"	"storage"	="Royal Australian Mint"	05-Dec-07	="Containers and storage"	27-Nov-07	27-Nov-07	11576.18	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	05-Dec-07 10:00 AM	

+="CN50095"	"consultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	28-Nov-07	28-Nov-07	22687.50	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 10:04 AM	

+="CN50096"	" 21 new copiers for Sydney Office (new building - Goulburn Street) "	="Australian Taxation Office"	05-Dec-07	="Photocopiers"	13-Aug-07	12-Dec-07	192076.50	=""	="Toshiba Australia Pty Ltd"	05-Dec-07 10:11 AM	

+="CN50097"	"pakaging"	="Royal Australian Mint"	05-Dec-07	="Paperboard and packaging papers"	29-Nov-07	17-Apr-08	70400.00	=""	="BLUE STAR PRODUCTS P/L"	05-Dec-07 10:14 AM	

+="CN50098"	"consultancy services"	="Royal Australian Mint"	05-Dec-07	="Business intelligence consulting services"	29-Nov-07	29-Nov-07	20625.00	=""	="LANGE CONSULTING AND SOFTWARE"	05-Dec-07 10:20 AM	

+="CN50099"	"coin counter"	="Royal Australian Mint"	05-Dec-07	="Electronic counters"	29-Nov-07	29-Nov-07	10439.00	=""	="ABACUS CASH SYSTEMS PTY LIMITED"	05-Dec-07 10:23 AM	

+="CN50100-A3"	"Lease at Hobart, Tasmania."	="Centrelink"	05-Dec-07	="Real estate services"	01-Feb-08	30-Apr-09	1063765.95	=""	="Balsa Rejus Property Trust"	05-Dec-07 10:47 AM	

+="CN50102"	"Staff Recruitment costs - Advertising"	="Therapeutic Goods Administration"	05-Dec-07	="Staff recruiting services"	30-Oct-07	23-Dec-07	10338.08	=""	="HMA Blaze Pty Ltd"	05-Dec-07 10:58 AM	

+="CN50104-A1"	"    Supply of laboratory animal feed and bedding    "	="Therapeutic Goods Administration"	05-Dec-07	="Animal feed"	01-Jul-08	30-Jun-09	26000.00	=""	="Gordons Specialty Stock Feeds"	05-Dec-07 11:04 AM	

+="CN50105"	"Reception & Call Centre Services"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	12-Oct-07	30-Jun-08	78650.00	="00/033-02"	="Sirius Telecommunications Ltd (VIC)"	05-Dec-07 11:14 AM	

+="CN50106-A1"	"    Supply of laboratory gasses    "	="Therapeutic Goods Administration"	05-Dec-07	="Elements and gases"	01-Jul-08	30-Jun-09	61000.01	=""	="Coregas Pty Ltd (formerly Linde Gas Pty Ltd)"	05-Dec-07 11:15 AM	

+="CN50107-A2"	"    Supply of laboratory chemicals and media    "	="Therapeutic Goods Administration"	05-Dec-07	="Chemicals including Bio Chemicals and Gas Materials"	01-Jul-08	30-Jun-09	46000.00	=""	="Oxoid Pty Ltd"	05-Dec-07 11:21 AM	

+="CN50108"	"Duffle Bags for Army and Navy Use"	="Defence Materiel Organisation"	05-Dec-07	="Luggage and handbags and packs and cases"	30-Nov-07	31-May-08	1765775.00	="CC1SHI"	="Larosa Leathergoods Pty Ltd"	05-Dec-07 11:24 AM	

+="CN50109"	"20 x 630 Latitude Notebooks and Docking Kits"	="Therapeutic Goods Administration"	05-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	23-Nov-07	12-Dec-07	14080.00	=""	="DELL Computer Pty Ltd"	05-Dec-07 11:27 AM	

+="CN50110"	"Document Authoring & Conversion Services for document Library"	="Civil Aviation Safety Authority"	05-Dec-07	="Author funded publishing services"	01-Jul-07	30-Oct-07	40000.00	="03/013-01"	="NetImpact Online Publishing Pty Ltd"	05-Dec-07 11:27 AM	

+="CN50111"	"5 x 64 Latitude Notebooks and Docking kits"	="Therapeutic Goods Administration"	05-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	23-Nov-07	12-Dec-07	55220.00	=""	="DELL Computer Pty Ltd"	05-Dec-07 11:35 AM	

+="CN50112"	"Development of a Diploma Course in Aviation Safety Regulation"	="Civil Aviation Safety Authority"	05-Dec-07	="Educational certificates or diplomas"	19-Nov-07	31-Mar-09	262000.00	="05/004-01"	="Swinburne University of Technology"	05-Dec-07 11:39 AM	

+="CN50113"	"    Contractors - Labour Hire    "	="Therapeutic Goods Administration"	05-Dec-07	="Temporary personnel services"	29-Oct-07	28-Mar-08	24288.00	=""	="One Umbrella, The"	05-Dec-07 11:44 AM	

+="CN50115"	"Annual programmed maintenance for computer room air conditioning system"	="Civil Aviation Safety Authority"	05-Dec-07	="Air conditioning installation or maintenance or repair services"	02-Dec-07	01-Dec-08	12466.00	="06/050-01"	="Stulz Australia Pty Ltd"	05-Dec-07 11:46 AM	

+="CN50116"	"Serials renewals 2008"	="Therapeutic Goods Administration"	05-Dec-07	="Published Products"	01-Jan-08	31-Dec-08	63250.00	=""	="Ebsco Aust"	05-Dec-07 11:48 AM	

+="CN50117"	"Annual programmed maintenance for computer room uninteruptible power supply"	="Civil Aviation Safety Authority"	05-Dec-07	="Uninterruptible power supplies"	02-Dec-07	01-Dec-08	11512.00	="06/050-02"	="Stulz Australia Pty Ltd"	05-Dec-07 11:52 AM	

+="CN50119"	"Refining of ICT Costing Model"	="Civil Aviation Safety Authority"	05-Dec-07	="Information technology consultation services"	01-Dec-07	29-Feb-08	26400.00	="06/096-01"	="Total Decision Support Pty Ltd"	05-Dec-07 11:57 AM	

+="CN50121"	"Lease at Launceston, Tasmania."	="Centrelink"	05-Dec-07	="Real estate services"	26-Oct-07	25-Jul-08	707049.06	=""	="Youngco Nominees Proprietary Limited"	05-Dec-07 12:01 PM	

+="CN50122"	"Design, Printing and Photocopying panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	29-Oct-07	30-Oct-10	500000.00	="06/135-05"	="Ducor Group Pty Ltd"	05-Dec-07 12:03 PM	

+="CN50124"	"Information Technology Services"	="Therapeutic Goods Administration"	05-Dec-07	="Information technology consultation services"	01-Mar-07	30-Jun-08	226644.00	=""	="Glendar Consulting Services Pty Ltd"	05-Dec-07 12:10 PM	

+="CN50126"	"Courier & Mail Services"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	01-Nov-07	31-Oct-10	30000.00	="06/151-01"	="Universal Express"	05-Dec-07 12:14 PM	

+="CN50125"	" HAT FUR FELT KHAKI PRE-BASHED W/O CATCH AND HOOK "	="Defence Materiel Organisation"	05-Dec-07	="Clothing accessories"	28-Nov-07	30-May-08	259380.00	=""	="AKUBRA HATS PTY LTD"	05-Dec-07 12:15 PM	

+="CN50127-A1"	"     Supply of Fire Detection and EWIS services upgrade to TGA Symonston     "	="Therapeutic Goods Administration"	05-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	29-Feb-08	114730.00	=""	="Wormald Fire Systems"	05-Dec-07 12:16 PM	

+="CN50128"	"Courier & Freight Services Panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	22-Nov-07	31-Oct-10	200000.00	="06/151-02"	="Australia Post"	05-Dec-07 12:18 PM	

+="CN50129"	"     Contract Services between Commonwealth of Australia   and ASMI for 07/08 Financial Year     "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	48565.00	=""	="Australian Self-Medication Industry"	05-Dec-07 12:20 PM	

+="CN50130"	"Courier & Freight Services Panel"	="Civil Aviation Safety Authority"	05-Dec-07	="Postal and small parcel and courier services"	05-Nov-07	31-Oct-10	100000.00	="06/151-03"	="Evolution Logistics Pty Ltd"	05-Dec-07 12:22 PM	

+="CN50131"	" AIRCRAFT SPARES  NSN 1620-01-117-2242    AXLE ASSY  QTY 3 "	="Defence Materiel Organisation"	05-Dec-07	="Military transport helicopters"	05-Dec-07	04-Jan-08	12600.13	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	05-Dec-07 12:25 PM	

+="CN50132-A1"	"    Contract Services between Commonwealth of Australia and ASMI for 07/08 Financial Year    "	="Therapeutic Goods Administration"	05-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	414929.02	=""	="Australian Self-Medication Industry"	05-Dec-07 12:25 PM	

+="CN50133"	"IT Infrastructure Project Manager"	="Civil Aviation Safety Authority"	05-Dec-07	="Recruitment services"	31-Oct-07	28-Mar-08	125000.00	="06/157-02"	="Opcomm Pty Ltd"	05-Dec-07 12:27 PM	

+="CN50134-A1"	"Advisory services - pricing model"	="Department of Human Services"	05-Dec-07	="Information technology consultation services"	18-Oct-07	22-Nov-07	78375.00	=""	="Transaction Resources Pty Ltd"	05-Dec-07 12:34 PM	

+="CN50135"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	04-Jan-08	16419.35	=""	="LAND ROVER"	05-Dec-07 02:13 PM	

+="CN50136"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	04-Jan-08	17870.45	=""	="LAND ROVER"	05-Dec-07 02:29 PM	

+="CN50139"	"Refurbishment of Centrelink Caloundra Customer Service Centre"	="Centrelink"	05-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Dec-07	13-May-08	225786.00	=""	="Quadric Commercial Interiors"	05-Dec-07 03:12 PM	

+="CN50140-A1"	"Lease at Rockingham, West Australia."	="Centrelink"	05-Dec-07	="Real estate services"	18-Dec-07	17-Mar-10	1285021.53	=""	="Perpetual Nominees Limited"	05-Dec-07 03:14 PM	

+="CN50142-A1"	" AAHL General Electrical Update  CSIRO2007-007 "	="CSIRO"	05-Dec-07	="Electrical equipment and components and supplies"	22-Oct-07	20-Oct-08	899378.70	="CSIRORFT2007-007"	="Gordon McKay Pty Ltd"	05-Dec-07 03:18 PM	

+="CN50144"	" NSN 3020/00-225-0561  PURCHASE OF GEAR, INTERNAL  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	04-Dec-07	11-Mar-08	114066.48	=""	="Flite Path Pty Ltd"	05-Dec-07 03:20 PM	

+="CN50145"	" NSN 2030/00-416-0064  PURCHASE OF GEAR, SPUR  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	04-Dec-07	14-Dec-07	11910.00	=""	="Flite Path Pty Ltd"	05-Dec-07 03:28 PM	

+="CN50146"	" CABLE SPECIAL PURPOSE "	="Defence Materiel Organisation"	05-Dec-07	="Automotive or aircraft cable"	08-Aug-07	30-Jan-08	61294.86	=""	="AFLEX CABLES"	05-Dec-07 03:32 PM	

+="CN50147"	" NSN 1740/66-153-2374  PURCHASE OF TRAILER, GROUND HANDLING  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	07-May-07	16-Jul-07	75860.00	=""	="Metcalfe Group Pty Ltd"	05-Dec-07 03:36 PM	

+="CN50148"	" NSN 3120/00-305-5387  PURCHASE OF BEARING, SLEEVE  EX GST "	="Defence Materiel Organisation"	05-Dec-07	="Military transport aircraft"	03-Dec-07	26-May-08	17380.00	=""	="Pacific Aerodyne"	05-Dec-07 03:40 PM	

+="CN50149"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Dec-07	="Drugs and Pharmaceutical Products"	30-Nov-07	15-Dec-07	17535.10	=""	="Sigma Pharmaceuticals"	05-Dec-07 03:46 PM	

+="CN50150-A1"	"Software"	="Australian Office of Financial Management"	05-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	01-Dec-07	11741.59	=""	="KAZ Technology Services Pty Ltd"	05-Dec-07 03:47 PM	

+="CN50151"	"software support"	="Australian Office of Financial Management"	05-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Feb-07	03-Aug-07	14438.00	=""	="Sungard"	05-Dec-07 04:06 PM	

+="CN50152-A1"	"Temporary Staffing"	="Australian Electoral Commission"	05-Dec-07	="Temporary personnel services"	02-Aug-07	01-Aug-08	235000.00	="S07/08/071"	="Vedior Asia Pacific - Select Australasia"	05-Dec-07 04:24 PM	

+="CN50153"	"Hire of Premises"	="Australian Electoral Commission"	05-Dec-07	="Lease and rental of property or building"	29-Oct-07	14-Jan-08	15775.65	=""	="Colonial First State Asset Management"	05-Dec-07 04:29 PM	

+="CN50154"	" CSIRO Building 179 Lift Services Package  CSIRO2007-030 "	="CSIRO"	05-Dec-07	="Elevators"	17-Oct-07	09-Jul-08	227590.00	="CSIRORFT2007-030"	="Elevator Services Group Pty Ltd"	05-Dec-07 04:32 PM	

+="CN50156"	"RMC UNIFORM JACKETS, CEREMONIAL & BLUES"	="Defence Materiel Organisation"	06-Dec-07	="Military uniforms"	03-Dec-07	11-Apr-08	315820.92	=""	="Australian Defence Apparel"	06-Dec-07 07:46 AM	

+="CN50157"	"Annual ICON levy"	="Therapeutic Goods Administration"	06-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	33000.00	=""	="Department of Finance and Administration"	06-Dec-07 08:51 AM	

+="CN50158"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	02-Jul-07	28-Sep-07	123750.00	="06/170-01"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:06 AM	

+="CN50159"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	29-Sep-07	21-Dec-07	74250.00	="06/170-02"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:10 AM	

+="CN50161"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	02-Jan-08	31-Mar-09	117563.00	="06/170-03"	="Oakton AA Services Pty Ltd"	06-Dec-07 09:13 AM	

+="CN50162"	"Printing of NAT7392-10.2007 GST - Completing your activity statement. Qty: 10,000"	="Australian Taxation Office"	06-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Dec-07	15-Dec-07	10243.20	="06.030"	="Paragon Printers"	06-Dec-07 09:15 AM	

+="CN50163"	"    iData Agent for Oracle on Unix - support and maintenance subscription    "	="Therapeutic Goods Administration"	06-Dec-07	="Permanent information technology systems or database administrators"	01-Jul-07	30-Jun-08	34903.48	=""	="Alpha West Services Pty Ltd"	06-Dec-07 09:16 AM	

+="CN50164"	"Development of an Adobe output to support new delegations and authorisations"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	15-Sep-07	30-Jun-09	22000.00	="06/189-01"	="Indigo Pacific Pty Ltd"	06-Dec-07 09:17 AM	

+="CN50165"	" Printing of NAT3092 - TFN Dec  Qty: 1,500,000 "	="Australian Taxation Office"	06-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Mar-08	30-Apr-08	141900.00	="06.030"	="The Camerons Group"	06-Dec-07 09:20 AM	

+="CN50166"	"Engineering Design Services"	="Civil Aviation Safety Authority"	06-Dec-07	="Professional engineering services"	06-Nov-07	30-Apr-08	33440.00	="07/110-00"	="PGD Consulting Services Pty Ltd"	06-Dec-07 09:21 AM	

+="CN50168"	"Recruitment Services - Airworthiness Engineer advertising campaign"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	25-Oct-07	25-Jan-08	15995.00	="07/111-00"	="GMT Canberra Pty Ltd"	06-Dec-07 09:25 AM	

+="CN50167-A1"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Dec-07	03-Jan-08	39550.51	=""	="DAIMLER CHRYSLER AUSTRALIA"	06-Dec-07 09:28 AM	

+="CN50169"	"Recruitment Services - Principal Propulsion Engineer advertising campaign"	="Civil Aviation Safety Authority"	06-Dec-07	="Recruitment services"	25-Oct-07	25-Jan-08	19096.00	="07/112-00"	="GMT Canberra Pty Ltd"	06-Dec-07 09:29 AM	

+="CN50170"	" Research into Pilot Training Program "	="Civil Aviation Safety Authority"	06-Dec-07	="Aircraft flight simulators or trainers"	28-Sep-07	02-Nov-07	25000.00	="07/113-00"	="Error Management Systems Australia Pty Ltd"	06-Dec-07 09:34 AM	

+="CN49397"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	30-Dec-07	25144.69	=""	="LAND ROVER"	06-Dec-07 09:39 AM	

+="CN50172-A1"	"Document authoring, editing & conversion services"	="Civil Aviation Safety Authority"	06-Dec-07	="Author funded publishing services"	01-Nov-07	30-Jun-08	99000.00	="07/117-00"	="NetImpact Online Publishing Pty Ltd"	06-Dec-07 09:41 AM	

+="CN50173"	" CSIRO Building 179 Structural Steel Package  CSIRO2007-034 "	="CSIRO"	06-Dec-07	="Structural building products"	08-Oct-07	20-Mar-08	790000.00	="CSIRORFT2007-034"	="ACT Fencing and Metalwork Pty Ltd"	06-Dec-07 09:43 AM	

+="CN50174"	"Lodgement of cancelled AD's"	="Civil Aviation Safety Authority"	06-Dec-07	="Legal services"	02-Oct-07	31-Dec-07	21157.00	="07/118-00"	="Attorney General's Department (ACT)"	06-Dec-07 09:45 AM	

+="CN50177"	"Upgrade of the airconditioning plant - Bankstown Airport"	="Civil Aviation Safety Authority"	06-Dec-07	="Air conditioning installation or maintenance or repair services"	09-Nov-07	31-Dec-07	25564.00	="07/119-00"	="Precise Air Group Pty Ltd"	06-Dec-07 09:53 AM	

+="CN50178-A1"	" CSIRO Building 179 Electrical Services  CSIRO2007-036 "	="CSIRO"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	17-Oct-07	23-Sep-08	897693.50	="CSIRORFT2007-036"	="Shepherd Electrical Pty Ltd"	06-Dec-07 09:56 AM	

+="CN50179"	"Computing Software Upgrade"	="Australian Electoral Commission"	06-Dec-07	="Software"	30-Sep-07	30-Sep-08	17000.00	=""	="Antivirus Australia Pty Ltd"	06-Dec-07 09:57 AM	

+="CN50180"	"Architectural and project management services - Perth"	="Civil Aviation Safety Authority"	06-Dec-07	="Architectural engineering"	09-Nov-07	09-Apr-08	60500.00	="07/120-00"	="Murray Interior Design"	06-Dec-07 09:58 AM	

+="CN50181"	"SUPPLY AND DELIVER QUANTITY 20 EA OF TRANSMISSION MECANICAL VEHICULAR"	="Defence Materiel Organisation"	06-Dec-07	="Kinetic power transmission"	05-Dec-07	02-Jun-08	550000.00	=""	="DAIMLER CHRYSLER AUSTRALIA PACIFIC"	06-Dec-07 10:04 AM	

+="CN50182"	"Delivery and Installation of Carpet Tiles"	="Australian Electoral Commission"	06-Dec-07	="Carpeting"	16-Nov-07	16-Dec-07	10472.02	=""	="QX Australia Pty Ltd"	06-Dec-07 10:06 AM	

+="CN50183"	"Office fitout"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Furniture and Furnishings"	01-Aug-07	30-Sep-07	17000.00	=""	="Ministerial & Parliamentary Dept of Finance and Administration"	06-Dec-07 10:12 AM	

+="CN50184"	"ICON Levy"	="Civil Aviation Safety Authority"	06-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	49500.00	="07/125-00"	="ICON Management Office - DoFA"	06-Dec-07 10:13 AM	

+="CN50185"	"Adobe Livecycle Process and Adobe Develop maintenance"	="Civil Aviation Safety Authority"	06-Dec-07	="Temporary information technology systems or database administrators"	25-Nov-07	24-Nov-08	37650.00	="07/127-00"	="Avoka Technologies"	06-Dec-07 10:18 AM	

+="CN50186"	"Protective Services"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Guard services"	01-Jul-07	30-Sep-07	135000.00	=""	="CHUBB PROTECTIVE SERVICES"	06-Dec-07 10:19 AM	

+="CN50189"	" STRAP TT P/No 206-011-154-105; MC 97499  QUANTITY 16 "	="Defence Materiel Organisation"	06-Dec-07	="Military rotary wing aircraft"	07-Nov-07	03-Dec-07	69084.22	=""	="HELITECH A DIVISION OF SIKORSKY"	06-Dec-07 10:28 AM	

+="CN50190"	"Building Services "	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Surveillance or alarm maintenance or monitoring"	01-Jul-07	30-Sep-07	10400.00	=""	="CHUBB PROTECTIVE SERVICES"	06-Dec-07 10:28 AM	

+="CN50191"	"Insect reppellent"	="Defence Materiel Organisation"	06-Dec-07	="Insect equipment"	29-Oct-07	19-Mar-08	51600.00	=""	="COLBAR QSR"	06-Dec-07 10:29 AM	

+="CN50192"	"Polling Place Advertising"	="Australian Electoral Commission"	06-Dec-07	="Advertising"	16-Nov-07	16-Dec-07	15445.10	=""	="HMA Blaze Pty Ltd"	06-Dec-07 10:31 AM	

+="CN50188"	"Training - Design & delivery of 10 half day workshops in Handling Difficult Customers"	="Civil Aviation Safety Authority"	06-Dec-07	="Work ethics or attitude training instructional materials"	12-Nov-07	12-Nov-08	42109.00	="07/128-00"	="Be Learning"	06-Dec-07 10:33 AM	

+="CN50187"	"Provision of Advanced Diploma of Govt (Management) course"	="Australian Taxation Office"	06-Dec-07	="Education and Training Services"	08-May-07	19-Nov-07	18750.00	=""	="Box Hill Institute of TAFE"	06-Dec-07 10:34 AM	

+="CN50193"	"MOU - for access to Leadership, Learning & Development panel"	="Civil Aviation Safety Authority"	06-Dec-07	="Developing self concept and self esteem instructional materials"	28-Mar-07	28-Mar-08	100000.00	="07/113-00"	="Australian Public Service Commission"	06-Dec-07 10:39 AM	

+="CN50194-A1"	"Advertising Services"	="Australian Fair Pay Commission"	06-Dec-07	="Print advertising"	29-Sep-07	09-Nov-07	35062.50	=""	="HMA Blaze"	06-Dec-07 10:45 AM	

+="CN50195"	" Furniture and Fittings "	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Furniture and Furnishings"	30-Sep-07	30-Nov-07	11900.00	=""	="MORRIS WALKER PTY LTD"	06-Dec-07 10:47 AM	

+="CN50196"	"Software"	="Department of the Prime Minister and Cabinet"	06-Dec-07	="Software"	27-Aug-07	27-Aug-07	77700.00	=""	="ZALLCOM PTY LTD"	06-Dec-07 10:51 AM	

+="CN50201"	"SUPPLY AND INSTALL COMPACTUS CANBERRA REGISTRY"	="Administrative Appeals Tribunal"	06-Dec-07	="Building and Construction and Maintenance Services"	10-Oct-07	16-Nov-07	12738.01	=""	="INTERIORS AUSTRALIA PTY LTD"	06-Dec-07 11:11 AM	

+="CN50202"	"PREPAID CONTRACTORS HOURS"	="Administrative Appeals Tribunal"	06-Dec-07	="Business administration services"	17-Oct-07	31-Dec-07	24200.00	=""	="DATA #3 LIMITED"	06-Dec-07 11:12 AM	

+="CN50203"	"ISP SERVICE NOVEMBER 2007"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	15-Nov-07	30-Nov-07	13849.28	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	

+="CN50204"	"INTERNET SERVICE SEPTEMBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	14-Sep-07	30-Sep-07	14089.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	

+="CN50205"	"INTERNET SERVICE OCTOBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	15-Oct-07	31-Oct-07	13677.40	=""	="CYBERTRUST AUSTRALIA PTY LTD"	06-Dec-07 11:13 AM	

+="CN50206"	"CHANGE TO CASE MANAGEMENT SYSTEM SOFTWARE"	="Administrative Appeals Tribunal"	06-Dec-07	="Computer services"	29-Oct-07	31-Oct-07	12375.00	=""	="STRATEGIC BUSINESS CONSULTING"	06-Dec-07 11:13 AM	

+="CN50207"	"AIRFARES SEPTEMBER 07"	="Administrative Appeals Tribunal"	06-Dec-07	="Passenger transport"	27-Sep-07	30-Sep-07	40253.39	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	06-Dec-07 11:14 AM	

+="CN50208"	"AIRFARES OCTOBER 2007"	="Administrative Appeals Tribunal"	06-Dec-07	="Passenger transport"	29-Oct-07	31-Oct-07	25493.58	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	06-Dec-07 11:14 AM	

+="CN50198"	"Engineering Assessment of the viability of the Water World Exhibit"	="Questacon"	06-Dec-07	="Professional engineering services"	05-Dec-07	21-Jan-08	22000.00	="2007-0168"	="Graeme O'Neill Consultancy"	06-Dec-07 11:20 AM	

+="CN50209"	"Upgrade the existing proximity card and security system "	="Questacon"	06-Dec-07	="Security and control equipment"	20-Nov-07	31-Mar-08	111582.00	=""	="TAC Pacific Pty Ltd"	06-Dec-07 11:35 AM	

+="CN48825"	"Motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	32220.54	=""	="LAND ROVER"	06-Dec-07 11:37 AM	

+="CN50210"	"FLOAT BAGS"	="Defence Materiel Organisation"	06-Dec-07	="Flotation aids"	05-Dec-07	28-Feb-08	90715.28	=""	="FLOAT PAC P/L"	06-Dec-07 11:39 AM	

+="CN47250"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10677.12	=""	="LAND ROVER"	06-Dec-07 11:45 AM	

+="CN50211"	"NSN 5365-01-106-1319, Sleeve Spacers"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	05-Nov-07	02-Jul-08	12790.80	=""	="Milspec Services Pty Ltd"	06-Dec-07 11:46 AM	

+="CN50213"	"Election Advertising"	="Australian Electoral Commission"	06-Dec-07	="Advertising"	16-Nov-07	16-Dec-07	20083.00	=""	="HMA Blaze Pty Ltd"	06-Dec-07 11:54 AM	

+="CN47137"	"motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	12748.90	=""	="LAND ROVER"	06-Dec-07 11:54 AM	

+="CN50214"	"NSN 3040-00-807-9355, Rigid Connecting Links"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	02-Oct-07	22-Aug-08	87088.08	=""	="Milspec Services Pty Ltd"	06-Dec-07 11:59 AM	

+="CN50215"	"Temporary Personnel"	="Australian Electoral Commission"	06-Dec-07	="Temporary personnel services"	01-Oct-07	30-Sep-10	363797.50	="S07/08/100"	="McArthur Management Services"	06-Dec-07 12:00 PM	

+="CN47069"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10030.00	=""	="LAND ROVER"	06-Dec-07 12:04 PM	

+="CN45941"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	12-Dec-07	10091.62	=""	="LAND ROVER AUSTRALIA"	06-Dec-07 12:09 PM	

+="CN50216"	" TRUNNION ASSY, MAIN ROTOR, FLIGHT SAFETY CRITICAL  P/No 206-011-105-001  QUANTITY 12 "	="Defence Materiel Organisation"	06-Dec-07	="Military rotary wing aircraft"	08-Oct-07	29-Oct-07	14702.34	=""	="HELITECH, A DIVISION OF SIKORSKY"	06-Dec-07 12:11 PM	

+="CN50217"	"NSN 3040-00-802-5372, Rigid Connecting Links"	="Defence Materiel Organisation"	06-Dec-07	="Aerospace systems and components and equipment"	21-Sep-07	13-Jul-08	13483.07	=""	="Milspec Services Pty Ltd"	06-Dec-07 12:12 PM	

+="CN50218-A1"	"Supply of transceiver link equipment to the AFP"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	01-Nov-07	01-Apr-08	40403.97	="RFQ 48-2006"	="Vertical Telecoms"	06-Dec-07 12:13 PM	

+="CN45047"	"motor vehicle spare parts"	="Department of Defence"	06-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Nov-07	05-Dec-07	10562.96	=""	="PREMIER AUTOMOTIVE GROUP AUST P/L"	06-Dec-07 12:18 PM	

+="CN50220"	"Registration for 11 attendees at NESA"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	16-Jun-06	16-Jun-06	11090.00	=""	="NESA Conferences"	06-Dec-07 12:24 PM	

+="CN50221"	"Courses/seminars/workshops"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management advisory services"	03-Jul-06	03-Jul-06	13220.50	=""	="Mercure Hotel Sydney Airport"	06-Dec-07 12:24 PM	

+="CN50222"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	14-Feb-07	15-Jun-07	33000.00	=""	="Sageco Pty Ltd"	06-Dec-07 12:24 PM	

+="CN50223"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-06	15-Jun-07	33000.00	=""	="Small Business Centre New England"	06-Dec-07 12:24 PM	

+="CN50219-A1"	"Supply of multiplexer equipment to the AFP"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	01-Nov-07	01-Apr-08	10033.99	="RFQ 49-2006"	="Vertical Telecoms"	06-Dec-07 12:24 PM	

+="CN50224"	"Mature Age Employment and Workplace Strategy project"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management and Business Professionals and Administrative Services"	22-Jan-07	15-Jun-07	33000.00	=""	="Options Training Services"	06-Dec-07 12:24 PM	

+="CN50225"	"Contractors"	="Department of Employment and Workplace Relations"	06-Dec-07	="Management advisory services"	04-May-07	10-Aug-07	20000.00	=""	="Frontier Group Australia Pty Ltd"	06-Dec-07 12:24 PM	

+="CN50226-A1"	"Development of Active Compliance Program for S&ME"	="Australian Taxation Office"	06-Dec-07	="Specialised educational services"	12-Nov-07	30-Jun-09	868640.00	="40.05"	="CPA Australia"	06-Dec-07 12:27 PM	

+="CN50227"	"Provision of Continuing Professional Development Sessions"	="Australian Taxation Office"	06-Dec-07	="Vocational training"	21-Nov-07	14-Dec-07	79000.00	="40.05"	="CPA Australia"	06-Dec-07 12:33 PM	

+="CN50228-A1"	"Supply of communications services and equipment"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	130258.70	=""	="Motorola Australia"	06-Dec-07 12:35 PM	

+="CN50229"	"Supply of communications services and equipment"	="Australian Federal Police"	06-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Apr-10	71201.90	=""	="Motorola Australia"	06-Dec-07 12:40 PM	

+="CN50231"	" Hire of Election Premises "	="Australian Electoral Commission"	06-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Dec-07	13200.00	=""	="Happy Valley Winery Pty Ltd"	06-Dec-07 01:03 PM	

+="CN50232-A1"	"Scribing Services"	="Australian Taxation Office"	06-Dec-07	="Recruitment services"	15-Oct-07	14-Dec-07	40000.00	=""	="Verossity Pty Ltd"	06-Dec-07 01:05 PM	

+="CN50233"	"Lease of Election Premises"	="Australian Electoral Commission"	06-Dec-07	="Lease and rental of property or building"	16-Nov-07	14-Dec-07	11000.00	=""	="Don Nott Real Estate"	06-Dec-07 01:09 PM	

+="CN50234"	"Float Bag Inflation Line Assy"	="Defence Materiel Organisation"	06-Dec-07	="Flotation aids"	06-Dec-07	05-Jan-08	12327.74	=""	="RFD TECHNOLOGIES"	06-Dec-07 01:50 PM	

+="CN50236"	" 1 Year Automatic Software Upgrade for RecFind/ISYS - 48 Users  1 Year Automatic Software Upgrade for RQTC/ISYS - 48 Users  1 Year Automatic Software Upgrade for RF Button - 10 Users  Maintenance/Suppport Incidents  Annual Onsite Visit    "	="Federal Court of Australia"	06-Dec-07	="Business function specific software"	22-Dec-07	22-Dec-08	32946.10	=""	="Knowledgeone Coropration Pty Ltd"	06-Dec-07 02:01 PM	

+="CN50237"	"Executive Coaching Services"	="Australian Taxation Office"	06-Dec-07	="Vocational training"	30-Nov-07	30-Jun-08	11798.00	=""	="6e Leadership Coaching"	06-Dec-07 02:13 PM	

+="CN49878"	"Air Fares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	07-Nov-07	07-Nov-07	10098.90	=""	="Qantas"	06-Dec-07 02:15 PM	

+="CN50238"	"Provision for Performance Management Training"	="Comsuper"	06-Dec-07	="Workshops"	13-Nov-07	01-Dec-08	26600.00	=""	="Results Consulting"	06-Dec-07 02:17 PM	

+="CN50239"	"Airfares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	10-Nov-07	10-Nov-07	10143.70	=""	="Qantas"	06-Dec-07 02:20 PM	

+="CN50240"	"Airfares"	="Department of Transport and Regional Services"	06-Dec-07	="Commercial aeroplane travel"	28-Nov-07	28-Nov-07	10485.20	=""	="Qantas"	06-Dec-07 02:23 PM	

+="CN50242"	"Supply and Commissioning of a Storage Area Network for the Australian Antarctic Division, and upgrade/maintenance for the period to 30-06-2011."	="Australian Antarctic Division"	06-Dec-07	="Computer Equipment and Accessories"	30-May-07	30-Jun-11	731338.00	="06/950"	="ComputerCORP (Operations) Pty Ltd"	06-Dec-07 02:45 PM	

+="CN50241"	"New Property lease CRS Liverpool, Suite 1, Level 4, 45 Scott Street, Liverpool, NSW - 3 year term"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	303750.00	=""	="Interdell Developments Pty Ltd"	06-Dec-07 02:45 PM	

+="CN50243"	" New Property Lease CRS Mirrabooka, 1/44 Mirrabooka Avenue, WA   3 year lease - Total Value of lease $392,338.30 plus GST "	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	10-Jun-07	09-Jun-10	392338.30	=""	="Keith & Jill Jacob"	06-Dec-07 02:52 PM	

+="CN50244"	"CRS Nhulumby, Suite 3, 1323 Westal Street, NT - Lease Term 1 year, lease value $13,000 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-May-07	30-Apr-08	13000.00	=""	="Graetz Enterprises Pty Ltd"	06-Dec-07 03:01 PM	

+="CN50245"	"CRS Oakleigh, 32 Chester Street, VIC - Lease term 1 year, lease value #78,054 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jun-07	31-May-08	78054.00	=""	="Elyco Nominees Pty Ltd"	06-Dec-07 03:06 PM	

+="CN50247"	" SUPPLY OF 40L PORTABLE REFRIGERATORS. "	="Defence Materiel Organisation"	06-Dec-07	="General purpose refrigerators or refrigerator freezers"	06-Dec-07	15-Jan-08	48186.60	="RFQ G4197"	="NORCOAST REFRIGERATION COMPANY"	06-Dec-07 03:15 PM	

+="CN50248"	" SUPPLY OF FUEL PUMP,  METERING AND DISTRIBUTING, INJECTION ASSY 16kVA "	="Defence Materiel Organisation"	06-Dec-07	="Fuel pumps"	06-Dec-07	14-Jan-08	14675.76	="RFQ G4833"	="HATZ DIESEL AUSTRALIA"	06-Dec-07 03:57 PM	

+="CN50249"	"CRS Port Augusta, 1/5 Young Street, SA - Least term 2 years"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-09	37200.00	=""	="B & Y Norman"	06-Dec-07 04:15 PM	

+="CN50250"	"CRS Rockingham, 16/5 Gooddard Street, WA - Lease Value $202,935.26 plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	202935.26	=""	="Ash Syndicate Pty Ltd"	06-Dec-07 04:20 PM	

+="CN50251"	"CRS Shellharbour, Suite 22A Professional Centre, Shellharbour Square, NSW - Lease term 4 years plus GST"	="CRS Australia"	06-Dec-07	="Lease and rental of property or building"	15-Feb-05	14-Feb-09	187668.23	=""	="Trust Company Ltd"	06-Dec-07 04:28 PM	

+="CN50253"	" SHIPPING AND STORAGE ISO CONTAINERS, 20 TONNE CAPACITY, QUANTITY 20.  RAISED AS PER THE TERMS AND CONDITIONS OF STANDING OFFER 2560176.    "	="Defence Materiel Organisation"	06-Dec-07	="Containers and storage"	05-Dec-07	16-May-08	75626.32	=""	="SCF CONTAINERS INTERNATIONAL"	06-Dec-07 04:51 PM	

+="CN50254"	"Contract for provision of consultancy services to design and conduct a survey of external stakeholders on behalf of ASIC"	="Australian Securities and Investments Commission"	06-Dec-07	="Business and corporate management consultation services"	29-Nov-07	29-May-08	223369.00	="STY2007/27861"	="The Allen Consulting Group"	06-Dec-07 04:57 PM	

+="CN50252-A1"	"Administrative support and scribe services for CAS APS6"	="Australian Taxation Office"	06-Dec-07	="Recruitment services"	15-Oct-07	14-Dec-07	50000.00	=""	="Verossity Pty Lyd"	06-Dec-07 04:58 PM	

+="CN50256"	"Fitout of Centrelink Victoria Park office, Area WA - Additional works"	="Centrelink"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Jul-07	27-Jul-07	41991.40	=""	="National Interiors"	06-Dec-07 05:26 PM	

+="CN50257"	"COMPRESSOR UNIT, RECIPROCATING MARINER 320B, C/W CES ITEMS"	="Defence Materiel Organisation"	06-Dec-07	="Reciprocating compressors"	28-Sep-07	21-Dec-07	65561.86	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	06-Dec-07 05:38 PM	

+="CN50258"	"Centrelink Carnarvon office, Area WA - Partial fitout"	="Centrelink"	06-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Aug-07	21-Dec-07	197296.00	=""	="Topline Partitions and Interiors Pty Ltd"	06-Dec-07 05:47 PM	

+="CN50260"	"Battery, nonrechargeable Lithium sulphurDioxide24V BA-5590/U"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-Apr-08	674300.00	=""	="SAFT BATTERIES PTY LTD"	07-Dec-07 07:35 AM	

+="CN50261"	"Cables Assembly Special Purpose"	="Defence Materiel Organisation"	07-Dec-07	="Installation cables"	06-Dec-07	03-Apr-08	41290.48	=""	="AMPHENOL AUSTRALIA"	07-Dec-07 08:15 AM	

+="CN50262"	"OPTIC HIGH LEVEL SENSOR MODIFICATION KIT. QTY 38"	="Defence Materiel Organisation"	07-Dec-07	="Flow sensors"	04-Dec-07	22-Apr-08	341297.00	=""	="LIQUIP INTERNATIONAL"	07-Dec-07 09:16 AM	

+="CN50263"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Dec-07	="Military transport helicopters"	21-Aug-07	31-Dec-07	25521.10	=""	="KIDDE AEROSPACE & DEFENCE"	07-Dec-07 09:31 AM	

+="CN50264"	"DPNU Trial Frabric"	="Defence Materiel Organisation"	07-Dec-07	="Camouflage cloth"	29-Nov-07	08-Nov-08	25700.40	=""	="Bruck Textiles"	07-Dec-07 09:32 AM	

+="CN50266"	"Battery, Nonrechargeable alkaline Manganese Dioxide"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-May-08	40809.84	=""	="SIMPOWER LTD"	07-Dec-07 09:38 AM	

+="CN50267"	"BATTERY, NONRECHARGEABLE ALKALINE MANGANESE DIOXIDE"	="Defence Materiel Organisation"	07-Dec-07	="Lithium batteries"	06-Dec-07	30-May-08	40809.84	=""	="SIMPOWER LTD"	07-Dec-07 09:43 AM	

+="CN50268"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Dec-07	="Military transport helicopters"	19-Oct-07	20-Nov-07	15535.74	=""	="FLITE PATH PTY LTD"	07-Dec-07 09:52 AM	

+="CN50271"	"Collation, analysis, and interpretation of data arising from ecotoxicology studies on marine macro-algae, and review of CO2 effects on marine organisms."	="Australian Antarctic Division"	07-Dec-07	="Earth science services"	01-Nov-07	01-Aug-08	29700.00	="07/843"	="Dr John Runcie"	07-Dec-07 10:02 AM	

+="CN50272"	"Recruitment Services - Property Manager Brisbane"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	15-Nov-07	15-Jan-08	17152.00	="07/138-00"	="Tanner Menzies Pty Ltd (Brisbane)"	07-Dec-07 10:08 AM	

+="CN50275"	" CRS Stones Corner, 444 Logan Road, QLD - Lease term 3 years, Approximate lease Value $176,995 plus GST "	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-05	31-Aug-08	176995.00	=""	="Acquitas Property Group Pty Ltd"	07-Dec-07 10:16 AM	

+="CN50274"	"Recruitment Services"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	27-Nov-07	26-Dec-07	12903.00	="07/137-00"	="DFP Recruitment Services Pty Ltd"	07-Dec-07 10:17 AM	

+="CN50278"	"Memorandum of Understanding for provision of web bases security awareness training"	="Civil Aviation Safety Authority"	07-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	11-Nov-08	29700.00	="07/139-00"	="Attorney-General's Department (WA)"	07-Dec-07 10:27 AM	

+="CN50279"	"Air Travel"	="Department of the Prime Minister and Cabinet"	07-Dec-07	="Commercial aeroplane travel"	12-Jun-07	15-Jun-07	12400.00	=""	="CARLSON WAGONLIT TRAVEL NAVIGANT AUSTRALIA"	07-Dec-07 10:27 AM	

+="CN50280"	"CRS Woden, Unit 8, Gadal Chambers, 46 Corinna Street, ACT - New lese term 3 years, lease value $139,246.03 plus GST"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-11	139246.03	=""	="Gadal Holdings Pty Ltd"	07-Dec-07 10:30 AM	

+="CN50281"	"Recruitment Services Placement Fee"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	19-Nov-07	18-Dec-07	11425.00	="07/140-00"	="Hays Personnel Services (Australia) Pty Ltd"	07-Dec-07 10:32 AM	

+="CN50282"	" Service Contract "	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	10-Oct-07	09-Apr-08	78000.00	="07/105-00"	="Regulatory Consulting Pty Ltd"	07-Dec-07 10:35 AM	

+="CN50283"	"CRS Mt. Isa, 76 Camooweal Street, QLD - Lease term 1 year, lease value $21,238.00"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jan-07	31-Dec-07	21238.00	=""	="GR & SL Collins Pty Ltd"	07-Dec-07 10:36 AM	

+="CN50284"	" COMPUTER HARDWARE "	="Department of the Prime Minister and Cabinet"	07-Dec-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	79300.00	=""	="INFRONT SYSTEMS PTY LTD"	07-Dec-07 10:37 AM	

+="CN50277"	"CRS Warrnambool, 195 Lava Street, VIC - Lease term 3 years, total value $87,766.94 plus GST"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	21-Sep-07	20-Sep-10	87766.94	=""	="Josika Nominees Pty Ltd"	07-Dec-07 10:38 AM	

+="CN50285"	"VM Project Manager"	="Civil Aviation Safety Authority"	07-Dec-07	="Recruitment services"	27-Aug-07	05-Oct-07	30294.00	="07/114-00"	="Oakton AA Services Pty Ltd"	07-Dec-07 10:39 AM	

+="CN50286-A1"	"CRS Kingaroy, 7 Glendon Street, QLD"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	12600.00	=""	="Harris Family Trust"	07-Dec-07 10:51 AM	

+="CN50290"	"CRS Werribee, 3 Duncans Road, VIC"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	163412.64	=""	="Fifteenth Chanla Pty Ltd"	07-Dec-07 11:00 AM	

+="CN50288-A2"	" Advertising in White Pages "	="Centrelink"	07-Dec-07	="Advertising"	03-Dec-07	21-Jun-10	5529252.51	=""	="Sensis"	07-Dec-07 11:20 AM	

+="CN50296"	"CRS Batemans Bay, 43 Orient Street, NSW - Lease term 3 years"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	137350.40	=""	="Elders Real Estate"	07-Dec-07 11:22 AM	

+="CN50300"	" Educational DVD Production  Amendment to PO338 "	="Australian Electoral Commission"	07-Dec-07	="Digital versatile disks DVDs"	16-Nov-06	31-Dec-07	25987.85	=""	="Great Southern Communications Pty Ltd"	07-Dec-07 11:28 AM	

+="CN50302"	"ASLAV PARTS - CHUTE DISCHARGE ; LAV-25 "	="Department of Defence"	07-Dec-07	="Armoured fighting vehicles"	06-Dec-07	12-Jun-08	27953.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	07-Dec-07 11:31 AM	

+="CN50304"	"CRS Taree, 86-88 Albert Street, NSW - lease term 3 years, lease value $254,787.84 plus GSt"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	254787.84	=""	="Sotow Pty Ltd"	07-Dec-07 11:38 AM	

+="CN50305"	"CRS Port Pirie, Shop 5, Flinders Arcade, 76 Ellen Street, SA - Lease term 2 years"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Jan-07	30-Dec-08	50851.50	=""	="PA Dabrowski"	07-Dec-07 11:43 AM	

+="CN50307"	"CRS Salisbury, 2/63 Commercial Road, SA - Lease term 1 year"	="CRS Australia"	07-Dec-07	="Lease and rental of property or building"	01-Oct-07	30-Sep-08	33330.36	=""	="Gool Gowi Pty Ltd"	07-Dec-07 11:54 AM	

+="CN50311"	"EAR CUSHIONS FOAM/GEL HYBRID"	="Defence Materiel Organisation"	07-Dec-07	="Phone headset ear or speaker cushions"	07-Dec-07	14-Mar-08	156750.00	=""	="EYLEX PTY LTD"	07-Dec-07 12:28 PM	

+="CN50312"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	07-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	04-Jan-08	12583.73	=""	="VOLVO COMMERICAL VEHILCES"	07-Dec-07 12:53 PM	

+="CN50313"	"Data Capture Services"	="Australian Electoral Commission"	07-Dec-07	="Data services"	01-Oct-03	30-Jun-08	2000000.00	="03/04/0010"	="Sema Group Pty Ltd"	07-Dec-07 02:38 PM	

+="CN50314"	"Legal Costs"	="Department of Finance and Administration"	07-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	31-Dec-07	11000.00	="LSB 01/2005"	="DLA PHILLIPS FOX LAWYERS"	07-Dec-07 02:42 PM	

+="CN50315"	"Insurance Premiums"	="Department of Finance and Administration"	07-Dec-07	="Financial and Insurance Services"	06-Dec-07	30-Jun-08	290387.06	="No tender - only 1 service provider"	="COMCOVER MEMBER SERVICES MANAGER"	07-Dec-07 02:42 PM	

+="CN50316"	"Legal Costs"	="Department of Finance and Administration"	07-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	30-Jan-08	11000.00	="LSB 01/2005"	="DLA PHILLIPS FOX LAWYERS"	07-Dec-07 02:42 PM	

+="CN50317"	"IT System Development Services"	="Department of Finance and Administration"	07-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	31-Jan-08	20000.00	="0000000000"	="FRONTIER GROUP AUSTRALIA PTY LTD"	07-Dec-07 02:42 PM	

+="CN50318"	"Project Manager and Superintendency"	="Department of Finance and Administration"	07-Dec-07	="Engineering and Research and Technology Based Services"	06-Dec-07	13-Oct-08	23076.18	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	07-Dec-07 02:42 PM	

+="CN50319"	"Architectural Services"	="Department of Finance and Administration"	07-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	31-Jan-08	1231084.33	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	07-Dec-07 02:43 PM	

+="CN50320"	"Peer Review"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	31-Dec-07	118709.80	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	07-Dec-07 02:43 PM	

+="CN50321"	"Finance Services"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	180000.00	="n/a"	="MERCER HUMAN RESOURCES CONSULTING PTY LT"	07-Dec-07 02:43 PM	

+="CN50322"	"Business Advisory Services"	="Department of Finance and Administration"	07-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	32000.00	="FIN07AMG007"	="PRICEWATERHOUSECOOPERS- 833468126"	07-Dec-07 02:43 PM	

+="CN50324"	"JOWWS-1013-Inner Western Sydney"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	110000.00	="DEWR RFT-2007/10"	="IPC EMPLOYMENT PTY LTD"	07-Dec-07 03:35 PM	

+="CN50325"	"EDDP 134 - Stepping Up"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	13-Jun-08	80215.00	="DEWR DG 18 2007/08"	="YWCA NSW"	07-Dec-07 03:35 PM	

+="CN50326"	"EDDP 112-Security Training"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	31-May-08	42146.00	="DEWR DG 20 2007/08"	="O'SHEA SECURITY"	07-Dec-07 03:35 PM	

+="CN50327"	"EDDP 124 - Employer Mentor Project"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	105000.00	="DEWR DG 19 2007/08"	="MELBOURNE CITY MISSION"	07-Dec-07 03:35 PM	

+="CN50328"	"Examine CDEP Provider Payrolls in NT"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	29-Nov-07	30-Nov-07	350000.00	="DEWR RFT 2 2004/05"	="OAKTON AA SERVICES PTY LTD"	07-Dec-07 03:35 PM	

+="CN50329"	"Wise Package Studio Pro 7 licences"	="Department of Employment and Workplace Relations"	07-Dec-07	="Software"	30-Nov-07	30-Jun-08	28116.00	=""	="MICROWAY P/L"	07-Dec-07 03:36 PM	

+="CN50330"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	30-Nov-07	30-Nov-07	243145.72	=""	="UNITED GROUP SERVICES - PROPERTY AC"	07-Dec-07 03:36 PM	

+="CN50331"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	03-Dec-07	30-Jun-08	312614.95	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:36 PM	

+="CN50332"	"Jobwise Outreach and Wise Workforce project - WA"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	110000.00	="DEWR RFT 2007 10 2006/07"	="WORKBASE"	07-Dec-07 03:36 PM	

+="CN50333"	"Jobwise Outreach and Wise Workforce - QLD, SA, NT"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	440000.00	="DEWR RFT 10 2006/07"	="JOBFIND CENTRES AUSTRALIA"	07-Dec-07 03:36 PM	

+="CN50334"	"Advice - Evaluation of WTW Reform"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	03-Dec-07	30-Jun-08	74250.00	=""	="ROBERT V BREUNIG"	07-Dec-07 03:36 PM	

+="CN50335"	"CEB's - 4wd training"	="Department of Employment and Workplace Relations"	07-Dec-07	="Vocational training"	03-Dec-07	30-Jun-08	12705.00	=""	="CHARLES DARWIN UNIVERSITY"	07-Dec-07 03:36 PM	

+="CN50336"	"IT support - overseas posts"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	30-Jun-08	10000.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	07-Dec-07 03:36 PM	

+="CN50337"	"EDDP156: Mandurah Youth Maritime Programme"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	03-Dec-07	13-Jun-08	11000.00	="DEWR DG 21 2007/08"	="MANDURAH OFFSHORE FISHING & SAILING"	07-Dec-07 03:37 PM	

+="CN50338"	"course fee FY 2007/2008"	="Department of Employment and Workplace Relations"	07-Dec-07	="Vocational training"	04-Dec-07	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP"	07-Dec-07 03:37 PM	

+="CN50339"	"Consultancy Services"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	04-Dec-07	30-Nov-08	40500.00	=""	="GARTNER AUSTRALASIA PTY LTD"	07-Dec-07 03:37 PM	

+="CN50340"	"Software Maintenance"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	05-Dec-07	30-Jun-08	153836.10	="TBA"	="UBIQUITY"	07-Dec-07 03:37 PM	

+="CN50341"	"IT Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	05-Dec-07	30-Jun-08	14181.20	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:37 PM	

+="CN50342"	"Data"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	06-Dec-07	30-Jun-08	20725.36	="TBA"	="TELSTRA (VIC)"	07-Dec-07 03:37 PM	

+="CN50343"	"Software"	="Department of Employment and Workplace Relations"	07-Dec-07	="Software"	06-Dec-07	30-Jun-08	26400.00	=""	="80-20 SOFTWARE PTY LTD"	07-Dec-07 03:37 PM	

+="CN50344"	"Fitout Level 3, 80 Mitchell St, Darwin"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	07-Dec-07	30-Jun-08	220000.00	=""	="POINT PROJECT MANAGEMENT"	07-Dec-07 03:37 PM	

+="CN50345"	"Recruitment Services"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	29-Nov-07	30-Nov-10	12080.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	07-Dec-07 03:38 PM	

+="CN50346"	"Reimbursement"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	01-Nov-07	30-Jun-08	26258.34	=""	="COMCARE"	07-Dec-07 03:38 PM	

+="CN50347"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	03-Dec-07	30-Jun-08	66066.00	=""	="AMOR CONSULTING PTY LTD"	07-Dec-07 03:38 PM	

+="CN50348"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	05-Dec-07	30-Jun-08	164450.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	07-Dec-07 03:38 PM	

+="CN50349"	"Telecommunications"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	09-Jul-07	30-Jun-08	51867.06	=""	="TELSTRA (VIC)"	07-Dec-07 03:38 PM	

+="CN50350"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	28-Nov-07	30-Jun-08	71786.00	="ITC"	="FINITE RECRUITMENT PTY LTD"	07-Dec-07 03:38 PM	

+="CN50351"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	29-Nov-07	30-Jun-08	89640.00	="ITC"	="CCS INDEX PTY LTD T/A CCS INDEX"	07-Dec-07 03:38 PM	

+="CN50352"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	29-Nov-07	30-Jun-08	84700.00	="ITC"	="COMPAS PTY LTD"	07-Dec-07 03:39 PM	

+="CN50353"	"Data"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	27-Jul-07	30-Jun-08	6666905.70	=""	="TELSTRA (VIC)"	07-Dec-07 03:39 PM	

+="CN50354"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	02-Aug-07	30-Jun-08	253000.00	=""	="IPC SOLUTIONS PTY LTD"	07-Dec-07 03:39 PM	

+="CN50355"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	27-Nov-07	30-Jun-08	164037.50	=""	="INFOSYS SOLUTIONS PTY LTD"	07-Dec-07 03:39 PM	

+="CN50356"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	19-Nov-07	30-Jun-08	201168.00	=""	="PALADIN SYSTEMS PTY LTD"	07-Dec-07 03:39 PM	

+="CN50357"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	07-Dec-07	30-Jun-08	147615.00	="ITC"	="IPP TECHNOLOGIES PTY LTD"	07-Dec-07 03:39 PM	

+="CN50358"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	28-Nov-07	30-Jun-08	113520.00	=""	="AMBIT IT & T"	07-Dec-07 03:39 PM	

+="CN50359"	"POWER AUGMENTATION WORKS AT IT DATA CENTRE"	="Department of Employment and Workplace Relations"	07-Dec-07	="Power sources"	14-Aug-07	31-Aug-07	41523.90	=""	="STOWE AUSTRALIA PTY LTD"	07-Dec-07 03:39 PM	

+="CN50360"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	04-Dec-07	30-Jun-08	185264.64	=""	="ENCORE IT SERVICES PTY LTD"	07-Dec-07 03:40 PM	

+="CN50361"	"Telecommunications"	="Department of Employment and Workplace Relations"	07-Dec-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	429041.55	=""	="OPTUS Communications Pty Ltd"	07-Dec-07 03:40 PM	

+="CN50362"	"IT Contractors"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer services"	21-Aug-07	30-Jun-08	68200.00	=""	="STUDIO SQL PTY LTD"	07-Dec-07 03:40 PM	

+="CN50363"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	07-Dec-07	="Management advisory services"	23-Nov-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	07-Dec-07 03:40 PM	

+="CN50364"	"removal   storage costs"	="Department of Employment and Workplace Relations"	07-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	15908.00	=""	="ALLIED PICKFORDS PTY LTD"	07-Dec-07 03:40 PM	

+="CN50365"	"Perth Fitout"	="Department of Employment and Workplace Relations"	07-Dec-07	="Real estate services"	28-Nov-07	28-Nov-07	120996.37	=""	="UNITED GROUP SERVICES - PROPERTY AC"	07-Dec-07 03:40 PM	

+="CN50366"	"IT Equipment"	="Department of Employment and Workplace Relations"	07-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	30-Jun-08	70998.40	=""	="DATAFLEX PTY LTD"	07-Dec-07 03:40 PM	

+="CN50367"	"Fitout Alterations at CRS Australia Werribee premises"	="CRS Australia"	07-Dec-07	="Renovation of buildings or landmarks or monuments"	29-Oct-07	09-Nov-07	35780.00	=""	="CA Property Group Pty Ltd"	07-Dec-07 04:15 PM	

+="CN50370"	"Ramp Installation and door Expansion"	="CRS Australia"	07-Dec-07	="Construction and maintenance support equipment"	01-Nov-07	31-Dec-07	15427.00	=""	="Haleberry Building Services"	07-Dec-07 04:25 PM	

+="CN50368"	"Ballot Paper Cartons"	="Australian Electoral Commission"	07-Dec-07	="Cardboard"	19-Nov-07	19-Dec-07	11325.60	=""	="SEP Sprint (Australia)"	07-Dec-07 04:27 PM	

+="CN50371"	"Furniture"	="Australian Electoral Commission"	07-Dec-07	="Furniture"	19-Nov-07	19-Dec-07	56706.10	=""	="Iken Commercial Interiors (ACT)"	07-Dec-07 04:46 PM	

+="CN50372"	"RESPIRATOR OUTFIT TROLLEY ASSEMBLY, AI PNEUMATIC AND AUDIO VISUAL WARNING SYSTEM, TWO OR FOUR MAN OPERATION"	="Defence Materiel Organisation"	07-Dec-07	="Respirators"	07-Dec-07	30-Jan-08	26136.00	="B1191"	="WORMALD TECHNOLOGY"	07-Dec-07 04:48 PM	

+="CN50373"	"Temporary Personnel"	="Australian Electoral Commission"	07-Dec-07	="Temporary personnel services"	26-Jul-07	25-Jul-08	125000.00	="S07/08/070"	="McArthur Management Services (QLD)"	07-Dec-07 04:55 PM	

 ="CN50374"	"Commissioned audits"	="Department of Human Services"	07-Dec-07	="Audit services"	21-Sep-07	30-Jun-08	411400.00	=""	="KPMG"	07-Dec-07 05:19 PM 

--- /dev/null
+++ b/admin/partialdata/04May2008to08May2008valto.xls
@@ -1,1 +1,614 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73360"	"Cable Assy - ASLAV"	="Department of Defence"	05-May-08	="Armoured fighting vehicles"	02-May-08	26-Nov-08	28856.96	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-May-08 08:21 AM	

+="CN73361-A1"	"Project Management Capital works - Brisbane."	="Australian Federal Police"	05-May-08	="Project management"	01-Jul-07	30-Apr-08	384061.00	=""	="Manteena Pty Ltd"	05-May-08 09:17 AM	

+="CN73362-A1"	"Project Management of Capital Works - feasibility study to weston generator ACT"	="Australian Federal Police"	05-May-08	="Project management"	01-Jul-07	30-Apr-08	14963.00	=""	="Manteena Pty Ltd"	05-May-08 09:33 AM	

+="CN73363-A1"	"Audit Committee Consultancy Services"	="National Blood Authority"	05-May-08	="Accounting and auditing"	15-Nov-07	28-Feb-10	19800.00	=""	="The Loch Group Pty Ltd"	05-May-08 09:51 AM	

+="CN73364"	"Temporary Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	09-Apr-08	30-Jun-08	75075.00	=""	="COLLECTIVE RESOURCES (OXFORD"	05-May-08 09:54 AM	

+="CN73365"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	09-Apr-08	30-Sep-08	103950.00	=""	="CANBERRA CONSULTING RESOURCES PTY L"	05-May-08 09:54 AM	

+="CN73366"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	10-Apr-08	31-Oct-08	117999.99	=""	="COMPAS PTY LTD"	05-May-08 09:54 AM	

+="CN73367"	"Technical Support"	="Child Support Agency"	05-May-08	="Computer services"	10-Apr-08	30-Jun-08	38500.00	=""	="ENTERPRISE PROJECT MANAGEMENT PTY L"	05-May-08 09:55 AM	

+="CN73368"	"Credit References"	="Child Support Agency"	05-May-08	="Information services"	11-Apr-08	30-Apr-08	16500.00	=""	="VEDA ADVANTAGE"	05-May-08 09:55 AM	

+="CN73369"	"Interpreting Services"	="Child Support Agency"	05-May-08	="Writing and translations"	11-Apr-08	30-Apr-08	23100.00	=""	="DEPARTMENT OF IMMIGRATION AND"	05-May-08 09:55 AM	

+="CN73370"	"Software Support"	="Child Support Agency"	05-May-08	="Computer Equipment and Accessories"	03-Apr-08	04-Apr-08	88084.78	=""	="COGNOS PTY LTD"	05-May-08 09:55 AM	

+="CN73371"	"Fitout Construction"	="Child Support Agency"	05-May-08	="Building and Construction Machinery and Accessories"	07-Apr-08	30-Jun-09	2970000.00	=""	="JAMES MILLAR ARCHITECTS"	05-May-08 09:55 AM	

+="CN73372"	"Government Searches"	="Child Support Agency"	05-May-08	="Information services"	07-Apr-08	30-Jun-08	22000.00	=""	="VEDA ADVANTAGE"	05-May-08 09:55 AM	

+="CN73373"	"Fitout Construction"	="Child Support Agency"	05-May-08	="Building and Construction Machinery and Accessories"	08-Apr-08	30-Jun-09	3190000.00	=""	="HOADLEY BUDGE OLPHERT &"	05-May-08 09:55 AM	

+="CN73374"	"Printing Services"	="Child Support Agency"	05-May-08	="Printed media"	08-Apr-08	30-Apr-08	19525.00	=""	="NEW MILLENNIUM"	05-May-08 09:55 AM	

+="CN73375"	"Leased Office Equipment"	="Child Support Agency"	05-May-08	="Office machines and their supplies and accessories"	08-Apr-08	25-Apr-11	48708.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-May-08 09:55 AM	

+="CN73376"	"Review of Workers Compensation"	="Child Support Agency"	05-May-08	="Information services"	18-Apr-08	18-Apr-08	16500.00	=""	="HEALTH FOR INDUSTRY"	05-May-08 09:56 AM	

+="CN73377"	"Security Services"	="Child Support Agency"	05-May-08	="Security surveillance and detection"	18-Apr-08	30-Jun-08	11000.00	=""	="CHUBB ELECTRONIC SECURITY (ACT)"	05-May-08 09:56 AM	

+="CN73378"	"External Training"	="Child Support Agency"	05-May-08	="Educational facilities"	28-Apr-08	30-Apr-08	15000.00	=""	="INTERNATIONAL QUALITY &"	05-May-08 09:56 AM	

+="CN73379"	"Temporary Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	29-Apr-08	30-Jun-08	28160.00	=""	="PEOPLEBANK"	05-May-08 09:56 AM	

+="CN73380"	"Maintenance and Repair"	="Child Support Agency"	05-May-08	="Building and Construction Machinery and Accessories"	29-Apr-08	16-May-08	14080.00	=""	="NATURAL POWER SOLUTIONS"	05-May-08 09:56 AM	

+="CN73381"	"Leased Office Equipment"	="Child Support Agency"	05-May-08	="Office machines and their supplies and accessories"	30-Apr-08	14-Apr-11	133188.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-May-08 09:56 AM	

+="CN73382"	"Licences, Hardware and Maintenance"	="Child Support Agency"	05-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Apr-08	90961.20	=""	="NEC AUSTRALIA PTY LTD"	05-May-08 09:56 AM	

+="CN73383"	"OH&S Equipment"	="Child Support Agency"	05-May-08	="Office supplies"	15-Apr-08	30-Jun-08	10000.00	=""	="AUZSPEC"	05-May-08 09:56 AM	

+="CN73384"	"Employee Assistance Program"	="Child Support Agency"	05-May-08	="Work related organisations"	17-Apr-08	30-Jun-10	459882.50	=""	="ITIM AUSTRALIA LIMITED"	05-May-08 09:57 AM	

+="CN73385"	"OH&S Services"	="Child Support Agency"	05-May-08	="Environmental Services"	18-Apr-08	30-Jun-08	10000.00	=""	="MEDICO-LEGAL OPINIONS PTY LTD"	05-May-08 09:57 AM	

+="CN73386"	"OH&S Services"	="Child Support Agency"	05-May-08	="Environmental Services"	18-Apr-08	30-Jun-08	10000.00	=""	="HEALTH FOR INDUSTRY"	05-May-08 09:57 AM	

+="CN73387"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	18-Apr-08	31-Jul-08	35000.00	=""	="SECURELINK"	05-May-08 09:57 AM	

+="CN73389"	"Search Fees"	="Child Support Agency"	05-May-08	="Information services"	09-Oct-07	30-Jun-08	34152.24	=""	="VEDA ADVANTAGE"	05-May-08 09:57 AM	

+="CN73390"	"Stationery Supplies"	="Child Support Agency"	05-May-08	="Office supplies"	09-Aug-07	30-Jun-08	10143.05	=""	="CORPORATE EXPRESS AUSTRALIA"	05-May-08 09:57 AM	

+="CN73391"	"Telephone and Support Services"	="Child Support Agency"	05-May-08	="Telecommunications media services"	10-Dec-07	30-Jun-08	93500.00	=""	="CRISIS SUPPORT SERVICES"	05-May-08 09:57 AM	

+="CN73388"	"Procurement of User Acceptance Testing Services related to the Integrated Data Management System"	="National Blood Authority"	05-May-08	="Software maintenance and support"	07-Apr-08	12-Jun-08	39215.00	=""	="AusCan IT Solutions Pty Ltd"	05-May-08 09:57 AM	

+="CN73392"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	08-Apr-08	30-Jun-08	78650.00	=""	="COSMIC TECH SOLUTIONS PTY LTD"	05-May-08 09:58 AM	

+="CN73393"	"Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	29-Apr-08	30-Apr-08	17017.61	=""	="CHANDLER MACLEOD LTD (RECRUITMENT"	05-May-08 09:58 AM	

+="CN73394"	"Business Continuity Planning"	="Child Support Agency"	05-May-08	="Business administration services"	24-Apr-08	30-Jun-08	65500.01	=""	="KPMG"	05-May-08 09:58 AM	

+="CN73395"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	04-Dec-07	12-Mar-08	54824.00	=""	="CANDLE AUSTRALIA LTD"	05-May-08 09:58 AM	

+="CN73396"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	17-Aug-07	31-Mar-09	166491.58	=""	="E-CONNECT SOLUTIONS PTY LTD"	05-May-08 09:58 AM	

+="CN73397"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	17-Aug-07	31-Mar-09	162695.28	=""	="DISKECHO PTY LTD"	05-May-08 09:58 AM	

+="CN73398"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	04-Dec-07	30-Apr-09	74141.99	=""	="COMPAS PTY LTD"	05-May-08 09:59 AM	

+="CN73399"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	08-Apr-08	21-Apr-08	64350.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-May-08 09:59 AM	

+="CN73400"	"Counselling Services"	="Child Support Agency"	05-May-08	="Work related organisations"	07-Dec-07	31-Dec-07	15473.33	=""	="IPS WORLDWIDE"	05-May-08 09:59 AM	

+="CN73401"	"Legal Advice"	="Child Support Agency"	05-May-08	="Legal services"	02-Apr-08	31-Dec-08	11000.00	=""	="SPARKE HELMORE SOLICITORS"	05-May-08 09:59 AM	

+="CN73402"	"Recruitment Services"	="Child Support Agency"	05-May-08	="Human resources services"	02-Apr-08	19-Jun-08	55247.50	=""	="IPA PERSONNEL"	05-May-08 09:59 AM	

+="CN73403"	"Leased Office Equipment"	="Child Support Agency"	05-May-08	="Office machines and their supplies and accessories"	02-Apr-08	25-Apr-11	74880.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-May-08 09:59 AM	

+="CN73404"	"Legal Services"	="Child Support Agency"	05-May-08	="Legal services"	02-Apr-08	30-Jun-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-May-08 09:59 AM	

+="CN73405"	"Temporary Contractor Services"	="Child Support Agency"	05-May-08	="Information services"	03-Apr-08	28-Feb-09	11000.00	=""	="ROBSON HUNTLEY"	05-May-08 09:59 AM	

+="CN73406"	"Supply of Electricity"	="Child Support Agency"	05-May-08	="Utilities"	03-Apr-08	30-Sep-08	12000.00	=""	="AGL SALES PTY LTD"	05-May-08 10:00 AM	

+="CN73407"	"Development of Measuring Tool"	="Child Support Agency"	05-May-08	="Computer services"	08-Apr-08	30-Jun-08	29999.99	=""	="HINDS WORKFORCE RESEARCH PTY LTD"	05-May-08 10:00 AM	

+="CN73408"	"ICT Contractor Services"	="Child Support Agency"	05-May-08	="Human resources services"	08-Apr-08	31-Oct-08	171600.00	=""	="TARAKAN CONSULTING PTY LTD"	05-May-08 10:00 AM	

+="CN73409"	"Printing Services"	="Child Support Agency"	05-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Apr-08	30-Jun-08	120000.01	=""	="ROTHFIELD PRINT MANAGEMENT"	05-May-08 10:00 AM	

+="CN73410"	"Temporary Contractor Services"	="Child Support Agency"	05-May-08	="Business administration services"	05-May-08	13-Jun-08	10000.05	=""	="MACALL CONSULTING"	05-May-08 10:00 AM	

+="CN73411"	"Software Licence"	="Child Support Agency"	05-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-Jun-09	88462.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	05-May-08 10:00 AM	

+="CN73412"	"Legal Advice"	="Child Support Agency"	05-May-08	="Legal services"	01-Apr-08	31-Jul-08	10000.00	=""	="BLAKE DAWSON"	05-May-08 10:00 AM	

+="CN73413"	"Purchase of Imported IVIg"	="National Blood Authority"	05-May-08	="Healthcare Services"	01-Feb-08	29-Feb-08	24710.40	=""	="CSL Ltd"	05-May-08 10:02 AM	

+="CN73414"	"The procurement is for the supply of Defined Blood Products"	="National Blood Authority"	05-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	136219.60	=""	="CSL Ltd"	05-May-08 10:06 AM	

+="CN73415"	"Supply of Diagnostic Reagents"	="National Blood Authority"	05-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	147757.50	=""	="DiaMed Australia Pty Ltd"	05-May-08 10:10 AM	

+="CN73416"	"Supply of Diagnsotic Reagents"	="National Blood Authority"	05-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	30526.10	=""	="Ortho-Clinical Diagnostics"	05-May-08 10:15 AM	

+="CN73417"	"Recruitment Services"	="Workplace Authority"	05-May-08	="Recruitment services"	04-Apr-08	30-Apr-08	13000.00	=""	="Select Appointments"	05-May-08 10:18 AM	

+="CN73418"	"Supply of Diagnostic Reagents"	="National Blood Authority"	05-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	463858.65	=""	="CSL Ltd"	05-May-08 10:18 AM	

+="CN73420"	"Printing Services"	="Workplace Authority"	05-May-08	="Industrial printing services"	11-Apr-08	30-Jun-08	217227.00	=""	="HMA Blaze Pty Ltd"	05-May-08 10:21 AM	

+="CN73421"	"Recruitment Services"	="Workplace Authority"	05-May-08	="Recruitment services"	09-Apr-08	30-Jun-08	39513.66	=""	="Hays Personnel Services (Australia)"	05-May-08 10:23 AM	

+="CN73422-A1"	"Provision of Internal Audit Services"	="National Blood Authority"	05-May-08	="Accounting and auditing"	01-Jul-07	30-Jun-08	75000.00	=""	="Protiviti Pty Ltd"	05-May-08 10:24 AM	

+="CN73423"	"Subscription - National/Local Newspapers"	="Workplace Authority"	05-May-08	="Newspapers"	20-Aug-07	30-Jun-08	14471.41	=""	="Fyshwick Newsagency (ACT) Pty Ltd"	05-May-08 10:26 AM	

+="CN73426"	"Variation to Contract to develop the Integrated Data Management System"	="National Blood Authority"	05-May-08	="Software maintenance and support"	01-Dec-07	30-Nov-10	453208.80	=""	="Kobold Group Ltd"	05-May-08 10:29 AM	

+="CN73424-A1"	"Project Management of Capital Works - Canberra"	="Australian Federal Police"	05-May-08	="Project management"	01-Jul-07	30-Apr-08	14963.00	=""	="Manteena Pty Ltd"	05-May-08 10:29 AM	

+="CN73425"	" AIRCRAFT COMPONENT "	="Defence Materiel Organisation"	05-May-08	="Military fixed wing aircraft"	29-Apr-08	19-May-08	16123.69	=""	="MILSPEC"	05-May-08 10:33 AM	

+="CN73428"	"Printing Services"	="Workplace Authority"	05-May-08	="Industrial printing services"	28-Mar-08	30-Jun-08	50000.00	=""	="Fox Badger Ferret Pty Ltd"	05-May-08 10:36 AM	

+="CN73430-A1"	"Professional Fees"	="Workplace Authority"	05-May-08	="Audit services"	31-Mar-08	30-Jun-08	94271.46	=""	="DeLoitte Touche Tohmatsu"	05-May-08 10:42 AM	

+="CN73429"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	05-May-08	="Military fixed wing aircraft"	29-Apr-08	29-May-08	29938.48	=""	="MILSPEC"	05-May-08 10:43 AM	

+="CN73431"	" Transport Services "	="Workplace Authority"	05-May-08	="Bulk transporters"	11-Apr-08	30-Jun-08	19627.50	=""	="North Sydney Bus Charters"	05-May-08 10:47 AM	

+="CN73432-A1"	"Project Management of Capital Works - Melbourne"	="Australian Federal Police"	05-May-08	="Project management"	01-Jul-07	30-Apr-08	407218.00	=""	="Manteena Pty Ltd"	05-May-08 10:50 AM	

+="CN73433"	"Lease - Photocophy machines"	="Workplace Authority"	05-May-08	="Photocopiers"	14-Sep-08	31-Jul-10	21486.96	=""	="Ricoh Australia (ROA)"	05-May-08 10:50 AM	

+="CN73434"	"Employer Advisor Programme"	="Workplace Authority"	05-May-08	="Work related organisations"	02-Apr-08	30-Jun-08	953661.19	=""	="Australian Chamber Alliance Pty Ltd"	05-May-08 10:55 AM	

+="CN73435-A1"	"Project Management of Capital Works - Headquarters Canberra ACT"	="Australian Federal Police"	05-May-08	="Project management"	01-Jul-07	30-Apr-08	58598.00	=""	="Manteena Pty Ltd"	05-May-08 11:07 AM	

+="CN73437-A1"	"Project Management of Capital Works - Perth"	="Australian Federal Police"	05-May-08	="Project management"	01-Apr-08	30-Jun-08	108900.00	=""	="Manteena Pty Ltd"	05-May-08 11:25 AM	

+="CN73438"	"POLARIS BIKE PARTS"	="Department of Defence"	05-May-08	="Motorcycles"	05-May-08	26-May-08	30096.00	=""	="POLARIS SALES AUSTRALIA"	05-May-08 11:25 AM	

+="CN73439"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	05-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-May-08	31-Jul-08	11627.42	=""	="Land Rover AUSTRALIA"	05-May-08 11:30 AM	

+="CN73440-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	05-May-08	="Project management"	01-Apr-08	30-Jun-08	21025.42	=""	="Manteena Pty Ltd"	05-May-08 11:37 AM	

+="CN73441-A2"	" Media Relations Services "	="Australian Institute of Family Studies"	05-May-08	="Public relation services"	02-May-08	30-Apr-11	242500.00	=""	="Cut-Through Communications Ltd"	05-May-08 11:37 AM	

+="CN73442-A1"	"Legal services"	="National Competition Council"	05-May-08	="Legal services"	21-Mar-08	20-Apr-08	29289.64	=""	="Clayton Utz"	05-May-08 11:50 AM	

+="CN73444-A1"	"Aviation Spares. Repair of Gear Assembly"	="Defence Materiel Organisation"	05-May-08	="Military rotary wing aircraft"	11-Apr-08	27-Jun-08	65984.53	=""	="Australian Aerospace"	05-May-08 12:04 PM	

+="CN73446"	"Risk Assesment Plan"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	32165.00	=""	="OAKTON AA SERVICES PTY LTD"	05-May-08 12:12 PM	

+="CN73447"	"Baertner for IT leaders advisor"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Sep-08	39490.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	05-May-08 12:12 PM	

+="CN73448"	"2007 Fellowship Review"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jan-08	40685.00	="149-0708"	="Campbell Research & Consulting Pty"	05-May-08 12:13 PM	

+="CN73449"	"GAR consultancy ADHA - guidelines"	="National Health and Medical Research Council"	05-May-08	="Healthcare Services"	22-Feb-07	31-Jan-08	10714.00	="RFT 078/0506"	="BIOTEXT PTY LTD"	05-May-08 12:13 PM	

+="CN73450"	"Kate Howell - Consultant from Hays Recruitment PMB"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14954.68	=""	="HAYS PERSONNEL SERVICES"	05-May-08 12:13 PM	

+="CN73451"	"Provision of a Team Leader/ IT Project Manager"	="National Health and Medical Research Council"	05-May-08	="Healthcare Services"	26-Nov-07	25-Nov-08	241560.00	="RFT 061 0708"	="OAKTON AA SERVICES PTY LTD"	05-May-08 12:13 PM	

+="CN73452"	"Informed Filler Development Services"	="National Health and Medical Research Council"	05-May-08	="Healthcare Services"	03-Oct-07	21-Mar-08	20900.00	=""	="CENTURY SOFTWARE (CANBERRA) PTY. LI"	05-May-08 12:13 PM	

+="CN73453"	"Carparking at 51 Allara Street ( This p/r replace 1/25978"	="National Health and Medical Research Council"	05-May-08	="Healthcare Services"	01-Jul-07	30-Jun-09	31969.32	=""	="JONES LANG LASALLE (ACT) PTY LIMITE"	05-May-08 12:13 PM	

+="CN73454"	"Consultancy Agreement with NICS for CoP"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	31-Jan-08	15779.01	=""	="BENDIGO HEALTH CARE GROUP"	05-May-08 12:13 PM	

+="CN73455"	"VTE Workshop held at Bayview 14-15 Nov 07"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	31-Jan-08	10534.05	=""	="BAYVIEW EDEN MELBOURNE"	05-May-08 12:13 PM	

+="CN73456"	"SES 1 recruitment advertising"	="National Health and Medical Research Council"	05-May-08	="Management and Business Professionals and Administrative Services"	30-Sep-07	29-Feb-08	22422.16	=""	="HMA BLAZE PTY LTD"	05-May-08 12:13 PM	

+="CN73419"	"Corporate Employer of Choice Training Program"	="Office of the Australian Building and Construction Commissioner (ABCC)"	05-May-08	="Business administration services"	21-Dec-07	21-Dec-07	16500.00	=""	="Workplace Training Advisory Australia"	05-May-08 12:15 PM	

+="CN73457"	"Pool Vehicle Lease Charges for January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	05-May-08	="Business administration services"	01-Jan-08	31-Jan-08	15717.09	=""	="LEASEPLAN AUSTRALIA LTD"	05-May-08 12:24 PM	

+="CN73458"	" Property Expenses for January 2008 "	="Office of the Australian Building and Construction Commissioner (ABCC)"	05-May-08	="Business administration services"	01-Jan-08	31-Jan-08	233318.70	=""	="UNITED GROUP SERVICES PTY LTD"	05-May-08 12:37 PM	

+="CN73459"	"MOU Charges for December 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	05-May-08	="Business administration services"	01-Dec-07	31-May-08	65408.29	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	05-May-08 12:46 PM	

+="CN73461"	"Bush Guide & Lid Strip"	="Defence Materiel Organisation"	05-May-08	="Manufacturing Components and Supplies"	05-May-08	21-Jul-08	13992.00	=""	="Milspec Services Pty Ltd"	05-May-08 01:45 PM	

+="CN73463-A1"	"Illicit Drug Analysis and profiling Services"	="Australian Federal Police"	05-May-08	="Pharmaceutical research services"	29-Nov-07	29-Nov-10	5945270.36	=""	="National Measurement Institute"	05-May-08 02:52 PM	

+="CN73464-A5"	" Annual maintenance of BiQuery Software "	="Australian Taxation Office"	05-May-08	="Software maintenance and support"	01-Mar-02	31-May-12	489599.75	=""	="OPEN TEXT PTY LTD"	05-May-08 03:10 PM	

+="CN73465"	"Lease of Motor Vehicle"	="Australian Competition and Consumer Commission"	05-May-08	="Passenger transport"	30-Jan-08	29-Jan-10	36751.97	=""	="Leaseplan"	05-May-08 03:22 PM	

+="CN73467"	"Lease of Motor Vehicle"	="Australian Competition and Consumer Commission"	05-May-08	="Passenger transport"	19-Feb-08	18-Feb-10	16808.35	=""	="Leaseplan"	05-May-08 03:34 PM	

+="CN73468"	" Provision of Air Conditioning Maintenance Services  "	="Department of Immigration and Citizenship"	05-May-08	="Air conditioning installation or maintenance or repair services"	15-Jan-07	14-Jan-10	33308.00	=""	="Honeywell Ltd"	05-May-08 03:40 PM	

+="CN73469"	"Lease of Motor Vehicle"	="Australian Competition and Consumer Commission"	05-May-08	="Passenger transport"	04-Mar-08	03-Mar-10	19009.85	=""	="Leaseplan"	05-May-08 03:41 PM	

+="CN73470"	"Lease of Motor Vehicle"	="Australian Competition and Consumer Commission"	05-May-08	="Passenger transport"	30-Jan-08	29-Jan-10	16277.98	=""	="Leaseplan"	05-May-08 03:50 PM	

+="CN73471"	"Provision of Courier Services to the Australian Antarctic Division"	="Australian Antarctic Division"	05-May-08	="Postal and small parcel and courier services"	01-Jul-08	30-Jun-13	150000.00	="AAD 08/98"	="Jet Couriers"	05-May-08 03:51 PM	

+="CN73474"	" Provision of Workplace Relations Analysis Services  "	="Department of Immigration and Citizenship"	05-May-08	="Human resources services"	01-Apr-08	30-Jun-08	49242.00	=""	="Fellows Medlock and Associates Pty. Limited"	05-May-08 03:58 PM	

+="CN73475-A1"	" SUPPLY OF STIRRUP LITHOTOMY ITEMS "	="Defence Materiel Organisation"	05-May-08	="Medical Equipment and Accessories and Supplies"	05-May-08	30-May-08	29837.50	=""	="LIFE HEALTHCARE PTY LTD"	05-May-08 04:08 PM	

+="CN73477-A1"	"Provision of Human Resources Services"	="Department of Immigration and Citizenship"	05-May-08	="Human resources services"	12-Mar-08	15-Jun-08	17325.00	=""	="Results Consulting (Australia) Pty Ltd"	05-May-08 04:14 PM	

+="CN73486"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Project management software"	01-Feb-08	31-Dec-08	207797.33	=""	="DHM Consulting"	05-May-08 07:17 PM	

+="CN73487"	"IT Contractors"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Project management software"	21-Jan-08	18-Jan-09	205216.00	=""	="Freelance Global Ltd"	05-May-08 07:22 PM	

+="CN73488"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	04-Feb-08	01-Feb-09	150040.00	=""	="Damianov Consulting Pty Limited"	05-May-08 07:27 PM	

+="CN73489"	"Programmer"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	11-Feb-08	31-Dec-08	169400.00	=""	="Candle Australia Limited"	05-May-08 07:31 PM	

+="CN73490"	" IT Contractor "	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Project management software"	11-Feb-08	11-Feb-09	253000.00	=""	="Freelance Global Ltd"	05-May-08 07:37 PM	

+="CN73491"	" IT Consultant "	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	03-Mar-08	31-Dec-08	166980.00	=""	="Candle Australia Limited"	05-May-08 07:41 PM	

+="CN73492"	"IT Engineer"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	18-Feb-08	17-Aug-08	77440.00	=""	="People Bank Australia P/L"	05-May-08 07:46 PM	

+="CN73493"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	21-Feb-08	31-Dec-08	104866.67	=""	="40 Ft Pty Ltd"	05-May-08 07:52 PM	

+="CN73494"	"Project Management"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Project management software"	03-Mar-08	01-Mar-09	237160.00	=""	="Sherborne Consulting Pty Ltd"	05-May-08 07:56 PM	

+="CN73495"	" IT Consultant "	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	25-Feb-08	22-Feb-09	219348.80	=""	="Intergrated Database Solutions"	05-May-08 08:00 PM	

+="CN73496"	"Project Management"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Project management software"	03-Mar-08	30-Sep-08	138343.33	=""	="People Bank Australia P/L"	05-May-08 08:03 PM	

+="CN73497"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	10-Mar-08	08-Mar-09	180048.00	=""	="People Bank Australia P/L"	05-May-08 08:07 PM	

+="CN73498"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	07-Apr-08	05-Apr-09	160688.00	=""	="Sherborne Consulting Pty Ltd"	05-May-08 08:11 PM	

+="CN73499-A1"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	25-Feb-08	24-Feb-09	554500.00	=""	="Barath Consultancy Pty Ltd"	05-May-08 08:16 PM	

+="CN73502"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	07-Apr-08	05-Apr-09	56144.00	=""	="Candle Australia Limited"	05-May-08 08:20 PM	

+="CN73504"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	03-Mar-08	31-Dec-08	151653.33	=""	="Balance Recruitment Pty Ltd"	05-May-08 08:32 PM	

+="CN73505"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	24-Mar-08	24-Mar-10	528000.00	=""	="APJ Communications Pty Ltd"	05-May-08 08:36 PM	

+="CN73506"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	07-Apr-08	05-Apr-09	183920.00	=""	="People Bank Australia P/L"	05-May-08 08:40 PM	

+="CN73507"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	05-May-08	="Information technology consultation services"	07-Apr-08	31-Dec-08	130680.00	=""	="People Bank Australia P/L"	05-May-08 08:43 PM	

+="CN73509"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	05-May-08	05-Jun-08	14884.00	=""	="SYMBION PHARMACY SERVICES"	06-May-08 08:25 AM	

+="CN73511"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	30-Apr-08	01-Jun-08	16631.42	=""	="MILLIPORE AUSTRALIA P/L"	06-May-08 08:35 AM	

+="CN73513"	"Repair of Fuel Pump"	="Defence Materiel Organisation"	06-May-08	="Aircraft"	05-May-08	04-Jun-08	12856.70	=""	="Sikorsky Aircraft Australia"	06-May-08 08:39 AM	

+="CN73514"	" Modification and repair of Main Rotor Gearbox "	="Defence Materiel Organisation"	06-May-08	="Aircraft"	05-May-08	04-Jun-08	290320.17	=""	="Sikorsky Aircraft Australia"	06-May-08 08:43 AM	

+="CN73515-A2"	" Photocopier Lease "	="Australian Federal Police"	06-May-08	="Printer and facsimile and photocopier supplies"	01-Aug-08	01-Aug-13	289265.00	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	06-May-08 08:46 AM	

+="CN73516"	" VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEM "	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	01-May-08	01-Jun-08	32134.10	=""	="SMITH & NEPHEW AUSTRALIA P/L"	06-May-08 09:16 AM	

+="CN73518"	"Website Development Services"	="Department of the Prime Minister and Cabinet"	06-May-08	="World wide web WWW site design services"	15-Apr-08	30-Jun-08	25300.00	=""	="OPC Pty Limited"	06-May-08 09:22 AM	

+="CN73519"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	30-Apr-08	30-May-08	75198.72	=""	="SMITH & NEPHEW AUSTRALIA P/L"	06-May-08 09:28 AM	

+="CN73521"	"VSAT TRAINING FOR ADF MEMBERS"	="Defence Materiel Organisation"	06-May-08	="Ground support training systems"	07-May-08	30-Jun-08	24200.00	=""	="TC COMMUNICATIONS"	06-May-08 09:48 AM	

+="CN73522"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-May-08	="Aircraft spars"	05-May-08	14-Jul-08	10505.00	=""	="AEROSPACE COMPOSITES PTY LTD"	06-May-08 09:51 AM	

+="CN73523"	"REPAIR AND OH OF BLACK HAWK BLADE MAIN ROTOR."	="Defence Materiel Organisation"	06-May-08	="Military rotary wing aircraft"	06-May-08	30-Jun-08	12405.73	=""	="SAAL"	06-May-08 09:52 AM	

+="CN73526"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-May-08	="Aircraft spars"	05-May-08	01-Sep-08	32571.00	=""	="PACIFIC AERODYNE PTY LTD"	06-May-08 09:55 AM	

+="CN73527"	"Management advisory services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	01-Apr-08	08-May-08	50000.00	="2005-31"	="McLennan Magasanik Associates"	06-May-08 09:57 AM	

+="CN73528"	"Insurance and retirement services"	="Australian Competition and Consumer Commission"	06-May-08	="Insurance and retirement services"	01-Apr-08	30-Jun-08	32053.00	=""	="ComSuper"	06-May-08 09:58 AM	

+="CN73529"	"Computer services"	="Australian Competition and Consumer Commission"	06-May-08	="Computer services"	01-Feb-08	28-Feb-08	11088.00	=""	="Aggmedia Pty Ltd"	06-May-08 09:58 AM	

+="CN73530"	"Computer services"	="Australian Competition and Consumer Commission"	06-May-08	="Computer services"	01-Mar-08	31-Mar-08	18744.00	=""	="Aggmedia Pty Ltd"	06-May-08 09:58 AM	

+="CN73531"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	01-May-08	22-May-08	17248.00	=""	="Total Decision Support Pty Ltd"	06-May-08 09:58 AM	

+="CN73532"	"Management advisory services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	05-Apr-06	30-Jun-08	50000.00	=""	="EcoAssist Pty Ltd"	06-May-08 09:58 AM	

+="CN73533"	"ADVERTISING"	="Australian Competition and Consumer Commission"	06-May-08	="Advertising"	12-Aug-07	12-Aug-07	11649.00	=""	="hma Blaze Pty Ltd"	06-May-08 09:58 AM	

+="CN73534"	"Computer equipment and accessories"	="Australian Competition and Consumer Commission"	06-May-08	="Computer Equipment and Accessories"	15-Mar-08	15-Mar-11	42066.97	=""	="DPI Systems Pty Ltd"	06-May-08 09:58 AM	

+="CN73535"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	18-Oct-07	30-Jun-08	24000.00	=""	="KordaMentha Pty Ltd"	06-May-08 09:58 AM	

+="CN73536"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	21-Apr-08	26-May-08	44000.00	=""	="Frontier Economics Pty Ltd"	06-May-08 09:58 AM	

+="CN73537"	"Hotel and lodging and meeting facilities"	="Australian Competition and Consumer Commission"	06-May-08	="Hotels and lodging and meeting facilities"	22-Jul-08	24-Jul-08	69360.00	=""	="Marriott Resort Surfers Paradise"	06-May-08 09:59 AM	

+="CN73538"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	24-Apr-08	27-Jun-08	243949.00	="2005-31"	="Ovum Pty Ltd"	06-May-08 09:59 AM	

+="CN73539"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	24-Apr-08	30-Jun-09	74198.65	="2005-31"	="NERA Australia Pty Ltd"	06-May-08 09:59 AM	

+="CN73543-A1"	"Management advisory services"	="Australian Competition and Consumer Commission"	06-May-08	="Management advisory services"	24-Apr-08	30-Apr-09	567781.00	="RFT-200712"	="Wilson Cook and Co Limted"	06-May-08 10:11 AM	

+="CN73545-A1"	"Tool Kit Electronic System RASIGS Technicians c/w CES Items"	="Defence Materiel Organisation"	06-May-08	="Tool kits"	05-May-08	29-Aug-08	87158.50	=""	="Brentool Industrial Supplies Pty Ltd"	06-May-08 10:24 AM	

+="CN73548"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	06-May-08	="Military rotary wing aircraft"	06-May-08	30-Jun-08	17127.94	=""	="SAAL"	06-May-08 10:29 AM	

+="CN73551"	" MEDICAL CONSUMABLE ASSOCIATED ITEM "	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	30-Apr-08	28-May-08	14300.00	=""	="BIOMEDEX"	06-May-08 10:38 AM	

+="CN73554-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	06-May-08	="Management advisory services"	16-Apr-08	14-May-08	11950.00	=""	="PERSEC SOLUTIONS PTY LTD"	06-May-08 10:48 AM	

+="CN73557"	" VARIOUS DENTAL CONSUMABLE ASSOCIATED ITEMS "	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	24-Apr-08	28-May-08	32245.67	=""	="HENRY SCHEIN HALAS"	06-May-08 10:57 AM	

+="CN73560"	"Variation to the contract for the provision of Computer room Airconditioning"	="Comsuper"	06-May-08	="Central processing unit coolers"	13-Aug-07	28-Apr-08	16500.00	=""	="GHD Pty Ltd"	06-May-08 11:00 AM	

+="CN73562"	"Provision for a cadet to be angaged under the Program"	="Comsuper"	06-May-08	="Human resources services"	24-Jan-08	24-Dec-08	20000.00	=""	="AIST - Australian Institute of Superannuation Trustees"	06-May-08 11:05 AM	

+="CN73565"	"FURNITURE - TABLES"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	30-Apr-08	16-May-08	22704.00	=""	="FUSE FURNITURE"	06-May-08 11:06 AM	

+="CN73566"	"Stackable Chairs"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	30-Apr-08	30-May-08	16445.00	=""	="STURDY COMPONENTS PTY LTD"	06-May-08 11:06 AM	

+="CN73567"	"CHAIRS"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	30-Apr-08	12-Jun-08	16522.65	=""	="STURDY COMPONENTS PTY LTD"	06-May-08 11:06 AM	

+="CN73568"	"RFT 092-2007 IT Contractors"	="Australian Taxation Office"	06-May-08	="Engineering and Research and Technology Based Services"	01-May-08	05-May-09	203112.00	=""	="MONTARE RECRUITMENT"	06-May-08 11:06 AM	

+="CN73570"	"TRAINING OF SIEBEL FUNDAMENTALS FOR STAFF MEMBERS"	="Australian Taxation Office"	06-May-08	="Education and Training Services"	05-May-08	05-May-08	23000.00	=""	="Oracle Corporation Australia"	06-May-08 11:07 AM	

+="CN73571"	"17 X I-AM TURN TABLES"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	30-Apr-08	30-Apr-08	16082.00	=""	="FUSE FURNITURE"	06-May-08 11:07 AM	

+="CN73572"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	06-May-08	="Engineering and Research and Technology Based Services"	28-Apr-08	27-Apr-09	189486.00	=""	="AJQ PTY LIMITED"	06-May-08 11:07 AM	

+="CN73573"	"Customised Business Analyst training 3 day 13 Attendees"	="Australian Taxation Office"	06-May-08	="Education and Training Services"	28-Apr-08	30-May-08	13398.00	=""	="SOFTWARE EDUCATION AUSTRALIA P/L"	06-May-08 11:07 AM	

+="CN73574"	"Customised Business Analyst training 4 day 6 attendees"	="Australian Taxation Office"	06-May-08	="Education and Training Services"	28-Apr-08	16-May-08	17160.00	=""	="SOFTWARE EDUCATION AUSTRALIA P/L"	06-May-08 11:07 AM	

+="CN73575"	"CHAIRS"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	29-Apr-08	06-Jun-08	28183.65	=""	="STURDY COMPONENTS PTY LTD"	06-May-08 11:07 AM	

+="CN73576"	"15 X RETRACTABLE DOOR STORAGE CABINETS"	="Australian Taxation Office"	06-May-08	="Furniture and Furnishings"	29-Apr-08	29-Apr-08	13777.50	=""	="ADVANCE METAL PRODUCTS AUST PTY LTD"	06-May-08 11:07 AM	

+="CN73577"	"MS2087- Implementing MS Windows 2000 Clustering 9 Attendees"	="Australian Taxation Office"	06-May-08	="Education and Training Services"	29-Apr-08	13-Jun-08	16020.00	=""	="EXCOM EDUCATION"	06-May-08 11:08 AM	

+="CN73564-A4"	" Lease at 5-7 Mill Street Mossman Queensland "	="Department of Human Services"	06-May-08	="Lease and rental of property or building"	01-Aug-03	31-Jan-12	510182.05	=""	="S Cukovska, A Cukovska & B Cukovska"	06-May-08 11:08 AM	

+="CN73579"	"LEGAL COSTS"	="Australian Taxation Office"	06-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	28-Apr-08	27514.91	=""	="SV PARTNERS"	06-May-08 11:09 AM	

+="CN73580"	"SOLUTION FACILIATIONS"	="Australian Taxation Office"	06-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	01-May-08	14620.74	=""	="PROACTIVE RESOLUTIONS (AUST) P/L"	06-May-08 11:09 AM	

+="CN73581"	"SOLUTION FACILIATIONS"	="Australian Taxation Office"	06-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	02-May-08	36647.60	=""	="PROACTIVE RESOLUTIONS (AUST) P/L"	06-May-08 11:10 AM	

+="CN73582"	"ON LINE PROPERTY DATA"	="Australian Taxation Office"	06-May-08	="Information Technology Broadcasting and Telecommunications"	30-Apr-08	05-May-08	14551.55	=""	="RP DATA LTD"	06-May-08 11:10 AM	

+="CN68034-A2"	" Lease at 23 Front Street Mossman "	="Department of Human Services"	06-May-08	="Real estate services"	01-Jul-08	30-Jun-15	1327663.15	=""	="Castlerock Property Management"	06-May-08 11:11 AM	

+="CN73584"	"Car hire April, May & June 2008"	="Australian Taxation Office"	06-May-08	="Transportation and Storage and Mail Services"	06-May-08	30-Jun-08	10000.00	=""	="CANBERRA HIRE CARS"	06-May-08 11:12 AM	

+="CN73585"	"VENUE HIRE FOR CONFERENCE"	="Australian Taxation Office"	06-May-08	="Travel and Food and Lodging and Entertainment Services"	06-May-08	06-May-08	18000.00	=""	="STAMFORD PLAZA MELBOURNE"	06-May-08 11:12 AM	

+="CN73586"	"150 x Genesys outbound licences"	="Australian Taxation Office"	06-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	30-Jun-08	204500.49	=""	="NEC AUSTRALIA PTY LTD"	06-May-08 11:14 AM	

+="CN73587"	"IT Contractor"	="Australian Taxation Office"	06-May-08	="Engineering and Research and Technology Based Services"	02-May-08	29-Aug-08	160580.50	=""	="IBM AUSTRALIA LIMITED"	06-May-08 11:14 AM	

+="CN73588"	"RFT 010-2007 IT Contractor Option"	="Australian Taxation Office"	06-May-08	="Engineering and Research and Technology Based Services"	02-May-08	06-May-09	192096.00	=""	="Pegasus IT Consulting"	06-May-08 11:14 AM	

+="CN73590"	"Office Furniture"	="Office of Parliamentary Counsel"	06-May-08	="Furniture"	24-Apr-08	24-Apr-08	34439.90	=""	="Uneke Furniture"	06-May-08 11:20 AM	

+="CN73594"	"SUPPLY OF TEMPERATURE MONITORS"	="Defence Materiel Organisation"	06-May-08	="Medical Equipment and Accessories and Supplies"	24-Apr-08	30-May-08	11220.00	=""	="HASTINGS DATA LOGGERS"	06-May-08 11:29 AM	

+="CN73599-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	06-May-08	="Management advisory services"	14-Mar-08	25-Apr-08	16499.00	=""	="STAFF CHECK PTY Limited"	06-May-08 11:51 AM	

+="CN73600"	"land rover vehicle parts"	="Department of Defence"	06-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-May-08	17-Jun-08	20106.93	=""	="Land Rover AUSTRALIA"	06-May-08 11:51 AM	

+="CN73601"	"PHARMACEUTICAL ASSOCIATED ITEM"	="Defence Materiel Organisation"	06-May-08	="Medical health associations"	11-Apr-08	22-May-08	96800.00	=""	="SANOFI PASTEUR"	06-May-08 11:57 AM	

+="CN73602-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	06-May-08	="Management advisory services"	14-Mar-08	25-Apr-08	17213.00	=""	="PERSEC SOLUTIONS PTY LTD"	06-May-08 11:57 AM	

+="CN73597-A3"	" Financial Viability Assessments for End User Computing, Centralised Computing & Managed Network Services bundle."	="Australian Taxation Office"	06-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	74505.99	="07.102"	="Oakton Services Pty Ltd"	06-May-08 12:05 PM	

+="CN73608"	"SAS Licence and Renewal"	="Department of Veterans' Affairs"	06-May-08	="Computer services"	30-Apr-08	29-Apr-09	80630.00	=""	="SAS Institute Australia Pty Ltd"	06-May-08 12:44 PM	

+="CN73609"	"Cnetrelink Panel IMU Contract Programmer: IMU-ICT080 Official Order DVAIMU2008/003"	="Department of Veterans' Affairs"	06-May-08	="Computer services"	01-May-08	31-Oct-08	101059.00	=""	="Paxus Australia Pty Ltd"	06-May-08 12:44 PM	

+="CN73610-A1"	"R&C project / CCC"	="Department of Veterans' Affairs"	06-May-08	="Computer services"	05-May-08	26-Dec-08	297500.00	=""	="Curam Software Pty Ltd"	06-May-08 12:44 PM	

+="CN73611-A1"	"Project Management Services for the DMIS Redevelopment Project"	="Department of Veterans' Affairs"	06-May-08	="Computer services"	14-Apr-08	30-Jun-08	93500.00	=""	="Kaz Group Pty Ltd"	06-May-08 12:44 PM	

+="CN73612-A1"	"Provide specialist business analyst services for the DMIS redevelopment project."	="Department of Veterans' Affairs"	06-May-08	="Computer services"	18-Mar-08	30-Jun-08	83567.00	=""	="Kaz Group Pty Ltd"	06-May-08 12:44 PM	

+="CN73613-A1"	"Provision of Cognos 8 Business Intelligence training courses."	="Department of Veterans' Affairs"	06-May-08	="Computer services"	03-Mar-08	30-Jun-08	72924.00	=""	="Kaz Group Pty Ltd"	06-May-08 12:44 PM	

+="CN73614-A1"	"Provide specialist business analyst services for the DMIS redevelopment project."	="Department of Veterans' Affairs"	06-May-08	="Computer services"	20-Dec-07	30-Jun-08	71628.00	=""	="Kaz Group Pty Ltd"	06-May-08 12:44 PM	

+="CN73616"	"Sentinal Fire Fighting Ensembles pertaining to RFQ SCE200861"	="Defence Materiel Organisation"	06-May-08	="Clothing"	02-May-08	23-Jun-08	65322.49	=""	="CTE Pty Ltd"	06-May-08 12:53 PM	

+="CN73617-A1"	"Provision for System Tester"	="Comsuper"	06-May-08	="Human resources services"	05-May-08	25-Jul-08	43200.00	=""	="Face2face Recruitment"	06-May-08 12:58 PM	

+="CN73618"	"For the provision of review of the ICT Policy"	="Comsuper"	06-May-08	="Information technology consultation services"	05-May-08	15-May-08	11968.00	=""	="Stratsec"	06-May-08 01:04 PM	

+="CN73620"	"The provision for Internal Audit Services"	="Comsuper"	06-May-08	="Accounting and auditing"	07-Apr-08	30-Sep-08	18563.00	=""	="Oakton Services Pty Ltd"	06-May-08 01:07 PM	

+="CN73621"	" The Provision for Data Intergration Specialist "	="Comsuper"	06-May-08	="Software"	18-Apr-08	30-Jun-08	77000.00	=""	="Analytics Group"	06-May-08 01:10 PM	

+="CN73628"	"Domestic and International Mail 2008/2009"	="IP Australia"	06-May-08	="Postal and small parcel and courier services"	02-Apr-08	16-Mar-09	210000.00	="IPAC2008/10946"	="AUSTRALIA POST"	06-May-08 02:11 PM	

+="CN73629"	"ANZ Egate Merchant Agreement"	="IP Australia"	06-May-08	="Financial and Insurance Services"	31-Mar-08	27-Feb-09	140000.00	="IPAC2008/10770"	="Australia and New Zealand Banking G"	06-May-08 02:11 PM	

+="CN73630"	"IP Australia ICT Strategy"	="IP Australia"	06-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	26-Jun-08	73260.00	="IPAC2008/10759"	="Nous Group Pty Ltd"	06-May-08 02:11 PM	

+="CN73631"	"Preparation of reports for Financial Reporting Team"	="IP Australia"	06-May-08	="Temporary personnel services"	27-Mar-08	25-Sep-08	60522.00	="IPAC2008/10981"	="PROFESSIONAL CAREERS AUSTRALIA PTY"	06-May-08 02:11 PM	

+="CN73632"	"NAS Storage FAS3020HA Hardware, Software and Maintenance"	="IP Australia"	06-May-08	="Computer Equipment and Accessories"	27-Mar-08	03-Apr-08	601314.48	="IPAC2007/15260"	="XSI Data Solutions Pty limited"	06-May-08 02:11 PM	

+="CN73633"	"Legal Representation and advice"	="IP Australia"	06-May-08	="Legal services"	27-Mar-08	31-Dec-08	30000.00	="IPA2005/11274-2"	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-May-08 02:11 PM	

+="CN73634"	"Coaching Services for Managers in Trade Marks and Designs"	="IP Australia"	06-May-08	="Human resource development"	26-Mar-08	11-Apr-08	11000.00	="IPA05/14475-17"	="People Foundations Consulting Group"	06-May-08 02:11 PM	

+="CN73635"	"Trade Mark Unrepresented Customers Research"	="IP Australia"	06-May-08	="Marketing and distribution"	25-Mar-08	12-Jun-08	74387.00	="IPAC2008/11079"	="NEW FOCUS PTY LTD"	06-May-08 02:12 PM	

+="CN73636"	"Sun SPARC Hardware & maintenance to support corporate applications"	="IP Australia"	06-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-08	290282.72	="IPAC2007/13996"	="Dimension Data Australia Pty Ltd"	06-May-08 02:12 PM	

+="CN73637"	"Developing BIMSG 2008/2009 Budgets"	="IP Australia"	06-May-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	50000.00	="IPAC2008/10865"	="RESOLUTION CONSULTING SERVICES PTY"	06-May-08 02:12 PM	

+="CN73638"	"Network Security TRA consultancy services"	="IP Australia"	06-May-08	="Computer services"	18-Mar-08	30-Apr-08	26620.00	="IPAC2008/10750"	="SecureLink Pty Ltd"	06-May-08 02:12 PM	

+="CN73639"	"Conference Online Registration, Payment & Associated costs services"	="IP Australia"	06-May-08	="Business administration services"	13-Mar-08	30-Jun-08	11292.00	="IPAC2008/10752"	="National Promotions Australia Pty L"	06-May-08 02:12 PM	

+="CN73640"	"Dell Altiris Software ( Desktop Mgt Tool)"	="IP Australia"	06-May-08	="Computer services"	31-Mar-08	27-Feb-11	36530.65	="IPAC2007/14468"	="DELL COMPUTER PTY LIMITED"	06-May-08 02:12 PM	

+="CN73641"	"AGS043 - IPA data provision agreement and terms &"	="IP Australia"	06-May-08	="Legal services"	28-Feb-08	31-May-08	13000.00	="IPA2005/11274-43"	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-May-08 02:12 PM	

+="CN73642"	"Supply of Ergonomic Chairs April 2008"	="IP Australia"	06-May-08	="Furniture and Furnishings"	29-Apr-08	06-May-08	10899.08	="IPAC2006/10590"	="STURDY COMPONENTS PTY LTD"	06-May-08 02:12 PM	

+="CN73643"	"Development of units of competency"	="IP Australia"	06-May-08	="Business administration services"	29-Apr-08	23-Apr-09	253000.00	="IPAC2008/11602"	="INNOVATION & BUSINESS SKILLS AUSTRA"	06-May-08 02:13 PM	

+="CN73644"	"Security Risk Review  April 2008"	="IP Australia"	06-May-08	="Security or access control systems"	28-Apr-08	31-Aug-08	44770.00	="IPAC2008/10571"	="SecureLink Pty Ltd"	06-May-08 02:13 PM	

+="CN73646"	"Provision of Onetest Assessment System"	="IP Australia"	06-May-08	="Human resources services"	28-Apr-08	02-Apr-09	25608.00	="IPAC2008/11654"	="Onetest Pty Ltd"	06-May-08 02:13 PM	

+="CN73647"	"WORKFORCE PLANNING PARTNER PROGRAM"	="IP Australia"	06-May-08	="Human resource development"	28-Apr-08	30-Jun-08	129910.00	="IPA05/14475-02"	="INFOHRM PTY LTD"	06-May-08 02:13 PM	

+="CN73648"	"AGS044 Cadbury Ltd Vs Registrar of TM and Darrell Lea Chocolates"	="IP Australia"	06-May-08	="Legal services"	23-Apr-08	14-Apr-09	30000.00	="IPAC2008/10715"	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-May-08 02:13 PM	

+="CN73649"	"Windows Server & Desktop Technical Officier"	="IP Australia"	06-May-08	="Temporary personnel services"	23-Apr-08	30-Oct-08	85000.00	="IPAC2008/10817"	="Greythorn Pty Ltd"	06-May-08 02:14 PM	

+="CN73650"	"NAS Hardware and Software Maintenace 2007/2008"	="IP Australia"	06-May-08	="Computer services"	22-Apr-08	11-Mar-09	702496.88	="IPAC2007/15260"	="XSI Data Solutions Pty limited"	06-May-08 02:14 PM	

+="CN73651"	"Development and delivery of the Introduction to Management - Program No. 4"	="IP Australia"	06-May-08	="Education and Training Services"	16-Apr-08	30-Jun-08	90373.80	="IPAC2006/12517"	="INTERACTION CONSULTING GROUP"	06-May-08 02:14 PM	

+="CN73652"	"Finance Officer"	="IP Australia"	06-May-08	="Temporary personnel services"	14-Apr-08	19-Dec-08	182160.00	="IPAC2008/11379"	="FrontierIT Recruitment Consulting P"	06-May-08 02:14 PM	

+="CN73653"	"Holocentric Support"	="IP Australia"	06-May-08	="Software maintenance and support"	09-Apr-08	09-May-08	19800.00	="IPAC2007/11213"	="HOLOCENTRIC PTY LTD"	06-May-08 02:14 PM	

+="CN73654"	"Comparative Analysis of Aust & NZ Legislation and Manuals of Practice & Procedures - Part 2"	="IP Australia"	06-May-08	="Business administration services"	09-Apr-08	09-Apr-08	20000.00	="IPAC2007/14186"	="Brian F. Jones"	06-May-08 02:14 PM	

+="CN73655"	"ISO 9000:2000 Training Porgrams"	="IP Australia"	06-May-08	="Education and Training Services"	04-Apr-08	15-Dec-08	15000.00	="IPAC2008/11276"	="NCSI Training & Development Pty Lim"	06-May-08 02:15 PM	

+="CN73656"	"Test Lead"	="IP Australia"	06-May-08	="Temporary personnel services"	04-Apr-08	30-Sep-08	96250.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	06-May-08 02:15 PM	

+="CN73657"	"Senior J2EE Developer/ Team Leader J"	="IP Australia"	06-May-08	="Temporary personnel services"	19-Mar-08	30-May-09	297000.00	="IPA2006/11854-9"	="FrontierIT Recruitment Consulting P"	06-May-08 02:15 PM	

+="CN73658"	"ZIP Maintenance and Filter Service replacemnet"	="IP Australia"	06-May-08	="Building and Construction and Maintenance Services"	15-Feb-07	16-Jan-09	11860.55	="IPAC2007/10596"	="ZIP HEATERS (AUST) PTY LTD"	06-May-08 02:15 PM	

+="CN73659"	"Data and Electrical Cabling Services"	="IP Australia"	06-May-08	="Electrical equipment and components and supplies"	21-Apr-08	25-Aug-09	32446.70	="IPAC2006/10417"	="HEYDAY GROUP PTY LTD"	06-May-08 02:15 PM	

+="CN73660"	"Agreement for Lease (Fitout of Discovery House extension)"	="IP Australia"	06-May-08	="Building and Construction and Maintenance Services"	30-Dec-07	30-Dec-07	433242.39	="IPAC2005/10647"	="CHALLENGER MANAGEMENT SERVICES LIMI"	06-May-08 02:15 PM	

+="CN73661"	"Citrix Licence Maintenance and Support"	="IP Australia"	06-May-08	="Software"	16-Apr-08	30-Jun-09	10225.19	="IPAC2007/13996"	="Dimension Data Australia Pty Ltd"	06-May-08 02:15 PM	

+="CN73662"	"Supply, Deliver and Install I.am Turn Tables"	="IP Australia"	06-May-08	="Furniture and Furnishings"	07-Apr-08	07-Apr-08	51911.20	=""	="Design Craft Furniture Pty Ltd"	06-May-08 02:15 PM	

+="CN73663"	"3 x Partioning License"	="IP Australia"	06-May-08	="Software"	03-Apr-08	02-Apr-09	29185.46	=""	="ASG Group Ltd"	06-May-08 02:16 PM	

+="CN73664"	"Western Minerals Tech V Western Mining"	="IP Australia"	06-May-08	="Legal services"	01-Apr-08	01-Apr-08	50000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-May-08 02:16 PM	

+="CN73665"	"Developing Applications for the Java EE Platform & Architecting & Designing J2EE Application"	="IP Australia"	06-May-08	="Human resources services"	01-Apr-08	19-Jun-08	23721.50	=""	="Atlas Business Services"	06-May-08 02:16 PM	

+="CN73666"	"10 X Ultimet Desks"	="IP Australia"	06-May-08	="Office and desk accessories"	26-Mar-08	04-Apr-08	10670.00	=""	="SCHIAVELLO (ACT) PTY LTD"	06-May-08 02:16 PM	

+="CN73667"	"DM370 Data Intergrator XI Training"	="IP Australia"	06-May-08	="Human resource development"	25-Mar-08	17-Apr-08	19800.00	=""	="BUSINESS OBJECTS"	06-May-08 02:16 PM	

+="CN73668"	"24 x I.am Turn folding tables"	="IP Australia"	06-May-08	="Furniture and Furnishings"	17-Mar-08	25-Mar-08	19113.60	=""	="Design Craft Furniture Pty Ltd"	06-May-08 02:16 PM	

+="CN73669"	"Oracle Databse Enterprise Licences and Support"	="IP Australia"	06-May-08	="Computer services"	14-Mar-08	25-Mar-08	77827.86	=""	="ASG Group Ltd"	06-May-08 02:16 PM	

+="CN73670"	"Accommodation for M2L Program No.6"	="IP Australia"	06-May-08	="Human resources services"	20-Feb-08	24-Apr-08	12189.00	=""	="Rydges Eagle Hawk"	06-May-08 02:16 PM	

+="CN73671"	"Presentation of Internal Quality Auditor Training"	="IP Australia"	06-May-08	="Education and Training Services"	04-Apr-08	15-Dec-08	20700.00	="IPAC2008/10066"	="NCSI Training & Development Pty Lim"	06-May-08 02:17 PM	

+="CN73672"	"Project Support /Business Analyst"	="IP Australia"	06-May-08	="Temporary personnel services"	09-Apr-08	16-Oct-08	99000.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	06-May-08 02:17 PM	

+="CN73673"	"Personal Efficiency Program (PEP)"	="IP Australia"	06-May-08	="Education and Training Services"	11-Apr-08	15-Dec-08	52000.00	="IPA05/14475-27"	="D'ARCY CONSULTING GROUP PTY LTD"	06-May-08 02:17 PM	

+="CN73674"	"J2EE Developer/Architect"	="IP Australia"	06-May-08	="Temporary personnel services"	09-Apr-08	08-Oct-08	33000.00	="IPAC2006/11854-2"	="Oakton AA Services Pty Ltd"	06-May-08 02:17 PM	

+="CN73675"	"Unix Administrator C2007/13380-05"	="IP Australia"	06-May-08	="Temporary personnel services"	27-Mar-08	30-Sep-08	107400.00	="IPAC2007/13380"	="Kellaway Pty Ltd"	06-May-08 02:17 PM	

+="CN73676"	"Automated Test Script Designer"	="IP Australia"	06-May-08	="Temporary personnel services"	01-Apr-08	24-Sep-08	99264.00	="IPAC2007/13199"	="M&T Resources"	06-May-08 02:17 PM	

+="CN73677"	"Unix Admninistrator C2007/13380-01"	="IP Australia"	06-May-08	="Temporary personnel services"	27-Mar-08	24-Sep-08	93500.00	="IPA2006/11854-9"	="FrontierIT Recruitment Consulting P"	06-May-08 02:17 PM	

+="CN73678"	"Unix Administrator C2007/13380-03"	="IP Australia"	06-May-08	="Temporary personnel services"	26-Mar-08	30-Nov-08	153450.00	="IPA06/11854-13"	="MPM GROUP PTY LTD"	06-May-08 02:17 PM	

+="CN73679"	"Unix Administrator C2007/13380-04"	="IP Australia"	06-May-08	="Temporary personnel services"	26-Mar-08	28-Feb-09	180000.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	06-May-08 02:18 PM	

+="CN73680"	"Optus Telecom Fixed Voice Lines"	="IP Australia"	06-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Nov-07	30-Jun-10	148000.00	="IPAC2006/13396"	="Optus Communications"	06-May-08 02:18 PM	

+="CN73681"	"Senior J2EE Developer C2007/12540"	="IP Australia"	06-May-08	="Temporary personnel services"	19-Mar-08	30-Sep-08	112850.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	06-May-08 02:18 PM	

+="CN73682"	"SAS Licenece renewal 2008/2009"	="IP Australia"	06-May-08	="Computer services"	26-Mar-08	29-Apr-00	53020.00	="IPAC2005/13315"	="SAS INSTITUTE AUST PTY LTD"	06-May-08 02:18 PM	

+="CN73683"	"Holocentric Training"	="IP Australia"	06-May-08	="Education and Training Services"	03-Jan-08	03-Apr-10	40225.00	="IPAC2007/11213"	="HOLOCENTRIC PTY LTD"	06-May-08 02:18 PM	

+="CN73684"	"XP Desktop Support C2007/10377-01"	="IP Australia"	06-May-08	="Temporary personnel services"	22-Apr-08	08-Oct-08	81510.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	06-May-08 02:18 PM	

+="CN73690"	"Gloves Firemans pertaining to RFQ SCE200868"	="Defence Materiel Organisation"	06-May-08	="Clothing"	09-Apr-08	10-Jun-08	87923.18	="SCE200868"	="Pacific Helmets (Australia) Pty Ltd"	06-May-08 03:04 PM	

+="CN73695-A1"	"Purchase of Imported IVIG"	="National Blood Authority"	06-May-08	="Healthcare Services"	01-Nov-07	30-Nov-07	19291.36	=""	="CSL Ltd"	06-May-08 03:34 PM	

+="CN73696"	"NSN 3110-66-133-9089, Needle Bearing Cam Followers"	="Defence Materiel Organisation"	06-May-08	="Aerospace systems and components and equipment"	02-Oct-07	09-Apr-08	16346.00	=""	="Milspec Services Pty Ltd"	06-May-08 03:37 PM	

+="CN73697"	"Fundamentals of Analysis Training Course"	="Australian Taxation Office"	06-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	09-May-08	19820.00	=""	="Intelligent Futures Pty Ltd"	06-May-08 03:38 PM	

+="CN73704"	"NSN 1560-00-431-8810 - TAIL CONE"	="Defence Materiel Organisation"	06-May-08	="Aerospace systems and components and equipment"	06-May-08	17-Nov-08	42333.00	=""	="Milspec Services Pty Ltd"	06-May-08 04:08 PM	

+="CN73708-A1"	"Internal Audit services"	="Office of the Director of Public Prosecutions"	06-May-08	="Accounting and auditing"	05-Feb-08	31-Jan-11	66600.00	=""	="Deloitte Touche Tohmatsu"	06-May-08 04:22 PM	

+="CN73714"	" AIRCRAFT SPARES  NSN 1680-66-133-9320 , CONTROL PANEL , AIRCRAFT  QTY 8 "	="Defence Materiel Organisation"	06-May-08	="Military transport helicopters"	06-May-08	18-Nov-08	14520.00	=""	="AEROSPACE AND DEFENCE PRODUCTS"	06-May-08 04:38 PM	

+="CN73715"	"On Site Support"	="Centrelink"	06-May-08	="Personal computers"	06-May-08	06-May-08	155030.70	="2004/52285"	="Acer Computer Australia Pty Ltd"	06-May-08 04:44 PM	

+="CN73716"	"SUPPLY OF ANALYZERS COAGULATION"	="Defence Materiel Organisation"	06-May-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-Jun-08	17727.38	=""	="ZOLL MEDICAL AUSTRALIA PTY LTD"	06-May-08 04:56 PM	

+="CN73717"	"Supply of Audiometers"	="Defence Materiel Organisation"	06-May-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-May-08	39421.80	=""	="SONIC INNOVATIONS PTY LTD"	06-May-08 05:15 PM	

+="CN73718"	" PROCUREMENT OF QTY: 3 x 'CABINET, TOOL, MOBILE', NSN: 5140-66-148-7201, IN SUPPORT OF 723 SQUADRON, HMAS ALBATROSS. "	="Defence Materiel Organisation"	06-May-08	="Military rotary wing aircraft"	06-May-08	05-Jun-08	37986.30	=""	="BAC Systems, Pty., Ltd."	06-May-08 05:45 PM	

+="CN73720"	"Research with registered Tax Agents as to the satisfaction with Tax Office deliverables and relationships between the Tax Office and Tax Agents."	="Australian Taxation Office"	07-May-08	="Market research"	07-Apr-08	02-Mar-09	93907.47	=""	="Market Solutions"	07-May-08 08:41 AM	

+="CN73721"	"Audit of IT and Communications assets acquisition and management by ACT policing."	="Australian Federal Police"	07-May-08	="Audit services"	12-May-08	30-Sep-08	16566.00	="RFT 01-2005"	="PricewaterhouseCoopers"	07-May-08 08:53 AM	

+="CN73722"	"Audit of Tendering and Contracting by ACT Policing"	="Australian Federal Police"	07-May-08	="Audit services"	12-May-08	30-Sep-08	18007.00	="RFT 01-2005"	="PricewaterhouseCoopers"	07-May-08 09:01 AM	

+="CN73723"	"Audit of Asia/Pacific Group on money Laundering Secretarait"	="Australian Federal Police"	07-May-08	="Audit services"	12-May-08	30-Sep-08	30745.00	="RFT 01-2005"	="PricewaterhouseCoopers"	07-May-08 09:17 AM	

+="CN73724"	"Light extensions manufactured in accordance with Defence Purchase Description DPD/6230/2005 - options for further quantities as per original contract E1-203864."	="Defence Materiel Organisation"	07-May-08	="Fluorescent tubes"	15-Apr-08	16-Jun-08	72079.70	=""	="Famco Lighting"	07-May-08 09:19 AM	

+="CN73725"	"Repair of Black Hawk, spindle, P/N: 70102-08200-064 "	="Defence Materiel Organisation"	07-May-08	="Military rotary wing aircraft"	24-Apr-08	24-May-08	14989.37	=""	="Sikorsky Aircraft Austalia Limited"	07-May-08 09:30 AM	

+="CN73727"	"Supply and installation of computer cabling - Canberra"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	17306.96	="37-2005"	="Absolute Cabling Systems Pty Ltd"	07-May-08 09:34 AM	

+="CN73730"	"Cable System for CH47 Project"	="Defence Materiel Organisation"	07-May-08	="Military transport helicopters"	17-Jul-06	31-Jul-06	102471.60	=""	="COLLINS AVIONICS SALES & SERV"	07-May-08 09:47 AM	

+="CN73732"	"CH-47 Chinook Side Armour Kit"	="Defence Materiel Organisation"	07-May-08	="Military transport helicopters"	19-Jul-06	08-Sep-06	556721.00	=""	="HELITECH DIV OF SIKORSKY"	07-May-08 09:51 AM	

+="CN73728"	" Provision of Event Management Services    "	="Department of Immigration and Citizenship"	07-May-08	="Events management"	01-Aug-07	30-Nov-07	80000.00	=""	="Tour Hosts Pty Ltd"	07-May-08 09:53 AM	

+="CN73733"	"Indexing and Abstracting services for the Australian Family & Society Abstracts (AF&SA) database"	="Australian Institute of Family Studies"	07-May-08	="Library"	28-Apr-08	27-Apr-09	53000.00	=""	="Access Co"	07-May-08 10:03 AM	

+="CN73734-A1"	"Provision of Training Management Services"	="Department of Immigration and Citizenship"	07-May-08	="Temporary personnel services"	14-Apr-08	04-Jul-08	14000.00	=""	="Careers Unlimited Pty Ltd"	07-May-08 10:06 AM	

+="CN73735-A1"	"Lease at Kawana Waters QLD"	="Department of Human Services"	07-May-08	="Real estate services"	02-Mar-09	03-Mar-16	2505426.00	=""	="All Saints Anglican Church"	07-May-08 10:19 AM	

+="CN73736"	"Provision of Furniture Supplies"	="Department of Immigration and Citizenship"	07-May-08	="Office furniture"	07-Mar-08	30-Jun-08	13354.00	=""	="Adelaide Shelving Supplies Pty. Ltd. (Trading as Dexion Adelaide)"	07-May-08 10:22 AM	

+="CN73737"	"Recruitment fee"	="Future Fund Management Agency"	07-May-08	="Recruitment services"	30-Apr-08	30-Jun-08	20000.00	=""	="Barberbunton"	07-May-08 10:25 AM	

+="CN73738"	"Recruitment fee"	="Future Fund Management Agency"	07-May-08	="Recruitment services"	06-May-08	30-Jun-08	20000.00	=""	="Barberbunton"	07-May-08 10:32 AM	

+="CN73740"	"Computer Racks and Cabling"	="Australian Federal Police"	07-May-08	="Computer servers"	01-Jan-08	31-Dec-08	198994.33	="37-2005"	="Absolute Cabling Systems Pty Ltd"	07-May-08 10:39 AM	

+="CN73741"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	07-May-08	="Temporary information technology systems or database administrators"	12-Sep-07	12-Mar-08	60500.00	=""	="Greythorn Pty Ltd"	07-May-08 10:50 AM	

+="CN73742"	" DOOR, AIRCRAFT  NSN - 1560/000920387 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	29-Apr-08	14-May-08	34395.30	=""	="Milspec Services Pty Ltd"	07-May-08 10:52 AM	

+="CN73743-A1"	" Lease at Midland WA "	="Department of Human Services"	07-May-08	="Real estate services"	20-Nov-01	19-Nov-11	5694996.43	=""	="Australia Public Trustees Limited"	07-May-08 10:55 AM	

+="CN73744"	" DIFFUSER, COMPRESSOR  NSN - 2835/004929450 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	13-Mar-08	24-Mar-08	23753.50	=""	="Milspec Services Pty Ltd"	07-May-08 10:56 AM	

+="CN73745"	" PLATFORM ASSEMBLY  NSN - 1560/014554663 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	14-Apr-08	11-Sep-08	28770.60	=""	="Milspec Services Pty Ltd"	07-May-08 11:02 AM	

+="CN73747"	" HOUSING, MECHANICAL DRIVE  NSN - 3040/007929509 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	28-Mar-08	13-Apr-08	24282.30	=""	="Milspec Services Pty Ltd"	07-May-08 11:05 AM	

+="CN73750"	" BEARING, ROLLER, CYLINDRICAL  NSN - 3110/014157196 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	20-Mar-08	05-Apr-08	26314.00	=""	="MILSPEC SERVICES PTY LTD"	07-May-08 11:09 AM	

+="CN73752"	" NOZZLE, TURBINE, NON AIRCRAFT GAS TURBINE; ENGINE  NSN - 2835/010139245 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	20-Mar-08	15-Apr-08	17585.40	=""	="Milspec Services Pty Ltd"	07-May-08 11:13 AM	

+="CN73758"	"08/2663 - Provision of Data Entry Services"	="Australian Customs and Border Protection Service"	07-May-08	="Human resources services"	14-Apr-08	30-Jun-08	18198.00	=""	="Careers Unlimited"	07-May-08 11:16 AM	

+="CN73759"	"CPO021048 - Supply of Gym Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	28-Apr-08	44770.00	=""	="Armament Systems & Procedures"	07-May-08 11:17 AM	

+="CN73760"	"CPE003493-1 - Provision of Analysis Services"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Apr-08	14853.00	=""	="Australian Radiation Services"	07-May-08 11:17 AM	

+="CN73762"	"CPO019769 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	25-Apr-08	23244.10	=""	="Micro Tech"	07-May-08 11:17 AM	

+="CN73763"	"CPO021616 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	25-Apr-08	23550.00	=""	="Micro Tech"	07-May-08 11:17 AM	

+="CN73764"	"CPO021604 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	07-May-08	="Furniture and Furnishings"	22-Oct-07	21-Apr-08	45265.00	=""	="Dexion (Australia) Pty Ltd"	07-May-08 11:17 AM	

+="CN73765"	"CPO020914 - Supply of Gym Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	24-Apr-08	22795.20	=""	="Workout World"	07-May-08 11:17 AM	

+="CN73761"	" THERMOCOUPLE, CONTACT   NSN - 6685/015075310 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	02-May-08	59046.00	=""	="Milspec Services Pty Ltd"	07-May-08 11:18 AM	

+="CN73766"	"CPE003920-4 - Supply of Staitionery"	="Australian Customs and Border Protection Service"	07-May-08	="Office supplies"	09-Apr-08	22-Apr-08	11986.36	=""	="Corporate Express Australia Ltd"	07-May-08 11:18 AM	

+="CN73767"	"06/1277 - Provision of Accommodation Management Services"	="Australian Customs and Border Protection Service"	07-May-08	="Hotels and lodging and meeting facilities"	19-May-08	18-May-11	21000000.00	=""	="The Hotel Network (GARRS) Pty Ltd"	07-May-08 11:18 AM	

+="CN73768"	"CPO021677 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	29-Apr-08	30-Jun-08	55544.50	=""	="Crimetech Security"	07-May-08 11:18 AM	

+="CN73769"	"CPO021678 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	29-Apr-08	30-Jun-08	22412.50	=""	="Crimetech Security"	07-May-08 11:18 AM	

+="CN73773"	"CPE004774-1 - Supply of Telecommunications Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Telecommunications media services"	09-Apr-08	09-Apr-08	30612.80	=""	="Eden Technology Pty Ltd"	07-May-08 11:18 AM	

+="CN73778"	"08/2721 - Project Management Training Services"	="Australian Customs and Border Protection Service"	07-May-08	="Education and Training Services"	14-Apr-08	30-Jun-08	65000.00	=""	="Tanner James Management Consultants Pty Ltd"	07-May-08 11:19 AM	

+="CN73779"	"CPE002799-1 - Information Services"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	53226.31	=""	="ASIC"	07-May-08 11:19 AM	

+="CN73780"	"CPE002799-2 - Information Services"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	47267.00	=""	="ASIC"	07-May-08 11:19 AM	

+="CN73781"	"CPE002799-3 - Information Services"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	47664.71	=""	="ASIC"	07-May-08 11:19 AM	

+="CN73782"	"CPO007606 - Information Services (MOU)"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	18-Jan-07	30-Jun-08	39889.30	=""	="Australian Institute of Criminology"	07-May-08 11:19 AM	

+="CN73783"	"CPO021526 - Information Services (MOU)"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	39890.70	=""	="Australian Institute of Criminology"	07-May-08 11:20 AM	

+="CN73784"	"CPE004783-1 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	22-Apr-08	30-Jun-08	46222.00	=""	="Access Control Engineered Systems Pty Ltd"	07-May-08 11:20 AM	

+="CN73785-A2"	"CPO021745 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	55853.60	=""	="CIEFFE (Australia) Pty Ltd"	07-May-08 11:20 AM	

+="CN73787"	"CPO021752 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	20570.00	=""	="Access Control Engineered Systems Pty Ltd"	07-May-08 11:20 AM	

+="CN73788"	"CPO021753 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	18480.00	=""	="Access Control Engineered Systems Pty Ltd"	07-May-08 11:20 AM	

+="CN73790"	"CPO021791 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	02-May-08	30-Jun-08	69281.39	=""	="Dataline Visual Link"	07-May-08 11:20 AM	

+="CN73791"	"CPO021793 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	17050.00	=""	="Access Control Engineered Systems Pty Ltd"	07-May-08 11:21 AM	

+="CN73792"	"CPO021809 - Supply of Office Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	31020.00	=""	="Toshiba Australia Pty Ltd"	07-May-08 11:21 AM	

+="CN73793"	"08/2771 - Recruitment Services"	="Australian Customs and Border Protection Service"	07-May-08	="Human resources services"	24-Apr-08	24-May-08	20603.00	=""	="Recruitment Management Company"	07-May-08 11:21 AM	

+="CN73794"	"CPO021826 - Training Services"	="Australian Customs and Border Protection Service"	07-May-08	="Education and Training Services"	05-May-08	30-Jun-08	14300.00	=""	="D'Arcy Consulting Group T/A PEP Worldwide"	07-May-08 11:21 AM	

+="CN73789"	" BRACKET, MOUNTING  NSN - 5340/009277717 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	23-Apr-08	08-May-08	21584.00	=""	="Milspec Services Pty Ltd"	07-May-08 11:21 AM	

+="CN73795"	"CPO021813 - Supply and Installation of Radio Communnications Equipment"	="Australian Customs and Border Protection Service"	07-May-08	="Information Technology Broadcasting and Telecommunications"	05-May-08	30-Jun-08	57370.70	=""	="Omnitronics Pty Ltd"	07-May-08 11:21 AM	

+="CN73796"	"CPO021880 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	07-May-08	="Furniture and Furnishings"	01-May-08	30-Jun-08	19992.50	=""	="UCI"	07-May-08 11:21 AM	

+="CN73786-A1"	"Lease at Rockingham WA"	="Department of Human Services"	07-May-08	="Real estate services"	01-Dec-09	31-May-16	4387460.00	=""	="Merilla Pty Ltd"	07-May-08 11:22 AM	

+="CN73797"	" HOSE ASSEMBLY, NON METALLIC  NSN - 4720/11348823 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	22-Apr-08	01-Jun-08	10887.03	=""	="Milspec Services Pty Ltd"	07-May-08 11:25 AM	

+="CN73799"	" PLATFORM ASSEMBLY  NSN - 1560/014554661 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	28-Apr-08	01-Aug-08	21419.20	=""	="Milspec Services Pty Ltd"	07-May-08 11:31 AM	

+="CN73798"	" PLATFORM ASSEMBLY  NSN - 1560/014554661 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	28-Apr-08	01-Aug-08	21419.20	=""	="Milspec Services Pty Ltd"	07-May-08 11:34 AM	

+="CN73801"	" HOUSING, BEARING UNIT  NSN - 3130/011384531 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	23-Apr-08	19-Nov-08	13120.00	=""	="Milspec Services Pty Ltd"	07-May-08 11:39 AM	

+="CN73802"	" CABLE HARNESS ASSY  NSN - 2840/014978383 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	01-Jun-08	45710.00	=""	="Milspec Services Pty Ltd"	07-May-08 11:43 AM	

+="CN73803"	"Recruitment Services"	="Australian Taxation Office"	07-May-08	="Recruitment services"	07-Mar-08	01-Jul-08	47126.00	="06.042"	="Chandler Macleod Limited"	07-May-08 11:45 AM	

+="CN73804"	" NUT, SELF-LOCKING, HEXAGON  NSN - 5310/997023861 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	17-May-08	16896.00	=""	="Milspec Services Pty Ltd"	07-May-08 11:46 AM	

+="CN73810-A1"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	01-Sep-04	31-Aug-07	1329280.48	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 12:21 PM	

+="CN73815-A1"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	25-Nov-03	24-Nov-07	753374.70	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 01:15 PM	

+="CN73817"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	01-Sep-04	31-Aug-07	28031.04	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 01:27 PM	

+="CN73818"	"Lease at Stawell, VIC."	="Department of Human Services"	07-May-08	="Real estate services"	01-Dec-08	30-Nov-15	1312850.00	=""	="Zhomic Pty Ltd"	07-May-08 01:37 PM	

+="CN73819"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	02-Feb-04	02-Feb-08	137696.48	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 01:40 PM	

+="CN73821"	"Provision for system tester"	="Comsuper"	07-May-08	="Human resources services"	19-May-08	17-Nov-08	79240.00	=""	="Canberra Consulting Resources"	07-May-08 01:44 PM	

+="CN73822"	"Provision for system tester"	="Comsuper"	07-May-08	="Human resources services"	23-Jun-08	22-Dec-08	80080.00	=""	="Talent International"	07-May-08 01:48 PM	

+="CN73823"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	01-Jul-04	30-Jun-07	18350.00	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 01:52 PM	

+="CN73824"	"REPAIR AND OH OF BLACK HAWK SHAFT ASSY."	="Defence Materiel Organisation"	07-May-08	="Military rotary wing aircraft"	07-May-08	30-Jun-08	10109.45	=""	="SAAL"	07-May-08 01:52 PM	

+="CN73825"	" VANE ASSEMBLY, COMPRESSOR AIRCRAFT GAS  NSN - 2840/014364062 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	18-May-08	11688.30	=""	="AVAIL AUSTRALIA PTY LTD"	07-May-08 02:01 PM	

+="CN73827"	" VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS; TURBINE ENGINE  NSN - 2840/14364759 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	16-Apr-08	23-Jul-08	10395.00	=""	="FLITE PATH PTY LTD"	07-May-08 02:07 PM	

+="CN73828"	" VANE ASSEMBLY, COMPRESSOR AIRCRAFT GAS; TURBINE ENGINE  NSN - 2840/014364067 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	16-Apr-08	23-Jul-08	12600.00	=""	="FLITE PATH PTY LTD"	07-May-08 02:11 PM	

+="CN73829"	"Lease of Computer Equipment"	="Australian Federal Police"	07-May-08	="Computer Equipment and Accessories"	01-Jul-04	30-Jun-07	12400.00	=""	="Key Equipment Finance Australia Pty Ltd"	07-May-08 02:19 PM	

+="CN73831"	"Supply of various parts Asbestos, qty 1079."	="Defence Materiel Organisation"	07-May-08	="War vehicles"	30-Apr-08	30-Jun-08	10979.18	=""	="LAND ROVER AUSTRALIA"	07-May-08 02:23 PM	

+="CN73836-A1"	" Lease at Noarlunga, SA "	="Department of Human Services"	07-May-08	="Real estate services"	14-Mar-08	13-Mar-16	4502037.89	=""	="Harway Management Pty Ltd"	07-May-08 02:29 PM	

+="CN73839"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	07-May-08	="Aircraft"	07-May-08	07-Jun-08	26206.31	=""	="Sikorsky Aircraft Australia LTD"	07-May-08 02:45 PM	

+="CN73841"	" HOUSING, ANTIFRICTION BEARING, AIRCRAFT  NSN - 2840/013498200 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	23-Apr-08	30-Apr-08	13452.50	=""	="FLITE PATH PTY LTD"	07-May-08 02:53 PM	

+="CN73843"	" HEATER, PROPELLER BL  NSN - 1610/009140224 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	23-Apr-08	14-May-08	16613.75	=""	="FLITE PATH PTY LTD"	07-May-08 03:02 PM	

+="CN73844"	"Property Services"	="Workplace Ombudsman"	07-May-08	="Property management services"	01-Sep-07	31-Aug-12	156000.00	=""	="United Group Services"	07-May-08 03:04 PM	

+="CN73846"	" CASE, COMBUSTION CHAMBER, AIRCRAFT GAS  NSN - 2840/006299195 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	31-Jul-08	88590.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:06 PM	

+="CN73849"	" TRANSDUCER, MOTIONAL PICK UP  NSN - 6695/14322830 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	28-Apr-08	03-Nov-08	24690.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:10 PM	

+="CN73853"	" SPACER, BONDED  NSN - 5365/008580766 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	13-Nov-08	19350.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:14 PM	

+="CN73860"	" SADDLE VANE, TURBINE  NSN - 2840/012470265 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	04-May-08	32977.50	=""	="FLITE PATH PTY LTD"	07-May-08 03:18 PM	

+="CN73862"	" VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS  NSN - 2840/015155557 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	31-Jul-08	50000.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:22 PM	

+="CN73864"	" BEARING, BALL, ANNULAR  NSN - 3110/001828698 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	31-Jul-08	45020.64	=""	="FLITE PATH PTY LTD"	07-May-08 03:25 PM	

+="CN73865"	" HOSE ASSEMBLY, NONMETALLIC  NSN - 4720/011547482 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	05-Jun-08	12171.70	=""	="FLITE PATH PTY LTD"	07-May-08 03:28 PM	

+="CN73867"	" BEARING, ROLLER, CYLINDRICAL  NSN - 3110/010225982 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	23-Apr-08	01-May-08	17250.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:32 PM	

+="CN73868"	" SUPPORT AND  NSN - 1610/001686096 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	08-May-08	50500.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:36 PM	

+="CN73870"	" COVER STOCK, NEOPREN  NSN - 1610/006287409 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	08-May-08	10150.00	=""	="FLITE PATH PTY LTD"	07-May-08 03:40 PM	

+="CN73871"	" Alarm, Personal, Firefighter, Audible, Key Operated, Tally Yellow Waterproof Plastic Case, 3 1/4 in L x 2 in W x 1 1/8 in. TKPower by 9 Volt Battery  Part No Super Pass 2 - 4055970 "	="Defence Materiel Organisation"	07-May-08	="Fire alarm systems"	07-May-08	30-Jun-09	16390.00	=""	="DRAEGER SAFETY PACIFIC PTY LTD"	07-May-08 03:46 PM	

+="CN73872"	" retainer  nsn - 1650/007733002 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	24-Apr-08	08-May-08	14720.00	=""	="AEROSPACE COMPOSITES PTY LTD"	07-May-08 03:52 PM	

+="CN73874"	" Mainframe Upgrade Fees for SSA-NAME3 software "	="Australian Taxation Office"	07-May-08	="License management software"	07-May-08	27-Jun-08	28189.01	=""	="Identity Systems Pty Ltd"	07-May-08 04:01 PM	

+="CN73876"	" VALVE, PROPORTIONAL  NSN - 4820/014390288 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	03-May-08	19-May-08	39450.00	=""	="AEROSPACE COMPOSITES PTY LTD"	07-May-08 04:03 PM	

+="CN73880"	" TANK, FUEL, AIRCRAFT  NSN - 1560/004424755 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	29-Apr-08	14-May-08	90460.68	=""	="MILITARY AVIATION SPARES PTY LTD"	07-May-08 04:07 PM	

+="CN73881"	" AIRCRAFT SPARES  NSN 5306-01-102-2672, BOLT, MACHINE, QTY 50 "	="Defence Materiel Organisation"	07-May-08	="Military transport helicopters"	07-May-08	07-Apr-09	19111.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	07-May-08 04:07 PM	

+="CN73883"	" MOUNT, POWER UNIT  NSN - 1560/009098994 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	16-May-08	69308.13	=""	="MILITARY AVIATION SPARES PTY LTD"	07-May-08 04:10 PM	

+="CN73884"	" BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  NSN - 2840/012800705 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	12-May-08	163551.00	=""	="FLITE PATH PTY LTD"	07-May-08 04:13 PM	

+="CN73885"	" BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE; ENGINE  NSN - 2840/008770018 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	14-May-08	25230.00	=""	="FLITE PATH PTY LTD"	07-May-08 04:16 PM	

+="CN73887"	" BLADE, COMPRESSOR AIRCRAFT, GAS TURBINE  NSN - 2840/008770030 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	14-May-08	38968.00	=""	="FLITE PATH PTY LTD"	07-May-08 04:19 PM	

+="CN73888"	" NOZZLE SEGMENT, TURBINE, AIRCRAFT GAS; TURBINE ENGINE  NSN - 2840/015091990 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	14-May-08	93937.50	=""	="FLITE PATH PTY LTD"	07-May-08 04:23 PM	

+="CN73889"	" NOZZLE SEGMENT, TURBINE, AIRCRAFT GAS; TURBINE ENGINE  NSN - 2840/015094413 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	02-May-08	14-May-08	75150.00	=""	="FLITE PATH PTY LTD"	07-May-08 04:26 PM	

+="CN73890"	" CABLE  NSN - 6150/007565794 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	01-May-08	08-May-08	25990.00	=""	="FLITE PATH PTY LTD"	07-May-08 04:28 PM	

+="CN73893"	" NOZZLE, TURBINE, NONAIRCRAFT GAS TURBINE  NSN  -2835/010139246 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	16-Apr-08	28-Sep-08	20790.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	07-May-08 04:38 PM	

+="CN73895"	" BEARING, BALL, ANNULAR  NSN - 3110/13180017 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	20-Mar-08	30-Mar-08	26250.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	07-May-08 04:41 PM	

+="CN73897"	" SHIPPING  NSN - 8145/661512289 "	="Defence Materiel Organisation"	07-May-08	="Military transport aircraft"	17-Apr-08	26-Jun-08	52750.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	07-May-08 04:44 PM	

+="CN73899-A1"	"New Lease - Cairns Registry"	="National Native Title Tribunal"	07-May-08	="Lease and rental of property or building"	01-Jun-08	31-May-13	1316998.00	=""	="The Public Trustee of Queensland"	07-May-08 04:48 PM	

+="CN73902"	"Cleaning Contract for Mebourne Registry"	="National Native Title Tribunal"	07-May-08	="Building cleaning services"	19-Apr-08	18-Apr-10	35452.56	=""	="Inner City Cleaning"	07-May-08 04:56 PM	

+="CN65711"	"Commercial Theory Model for Logistic Officers Intermediate Course.  Contract option to extend has been taken up.  New total contract value is now $78,523.70. "	="Department of Defence"	07-May-08	="Education and Training Services"	07-Apr-04	05-Apr-09	30041.70	="RFT025-HQ03"	="Ithaca Supply Chain Management Pty Ltd"	07-May-08 04:57 PM	

+="CN73904"	"Battery Storage"	="Defence Materiel Organisation"	08-May-08	="Lead acid batteries"	07-May-08	30-May-08	24554.64	=""	="M & H POWER SYSTEMS PTY LTD"	08-May-08 07:12 AM	

+="CN73905"	"Repair of Accumulator APU"	="Defence Materiel Organisation"	08-May-08	="Aircraft"	23-Apr-08	30-Apr-08	27048.00	=""	="Sikorsky Aircraft Australia Ltd"	08-May-08 07:57 AM	

+="CN73906"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	08-May-08	="Aircraft spars"	08-May-08	09-Mar-09	24481.22	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	08-May-08 08:16 AM	

+="CN73907"	"POCKET RADIO SURVIVAL"	="Defence Materiel Organisation"	08-May-08	="Lifelines or lifeline equipment"	07-May-08	06-Jul-08	18641.70	=""	="LIGHT AIRCRAFT"	08-May-08 08:30 AM	

+="CN73909"	"Review of Australian Freight Councils"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Printed media"	17-Jan-08	30-Apr-08	55000.00	=""	="JOHN BOWDLER & ASSOC PTY LTD"	08-May-08 08:52 AM	

+="CN73910"	"Contractor - Chairperson to SACF"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Human resources services"	11-Jan-08	30-Jun-08	20000.00	=""	="VIC SMITH INVESTMENT TRUST"	08-May-08 08:52 AM	

+="CN73911"	"Printed Perspex Panels for Resource Cent"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	18-Apr-08	30-May-08	23100.00	="TRS06/036"	="Zoo Communications Pty Ltd"	08-May-08 08:52 AM	

+="CN73912"	"50% payment of Event Host Sponsor Pkg Final 50% payment of Event Host Sponsor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	06-Oct-08	25000.00	=""	="Informa Australia Pty Ltd"	08-May-08 08:52 AM	

+="CN73913"	"Editorial Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	29-Jun-07	29-Jun-10	20000.00	="TRS06/036"	="Morris Walker"	08-May-08 08:52 AM	

+="CN73914"	"Consultancy - SES workshop"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Hotels and lodging and meeting facilities"	15-Feb-08	30-Jun-08	28547.20	=""	="THE NOUS GROUP"	08-May-08 08:52 AM	

+="CN73915"	"Printing Services for Report 115, Regional Aviation"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Management advisory services"	18-Apr-08	15-May-08	12479.01	="TRS08/086"	="CPP INSTANT PRINTING"	08-May-08 08:52 AM	

+="CN73916"	"Software for Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Software"	01-Feb-08	01-Feb-11	39600.00	=""	="Lex Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN73917"	"Provision of legal services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	15-Feb-08	20-Jun-08	70000.01	=""	="Philippa May Horner"	08-May-08 08:53 AM	

+="CN73918"	"Employment of Contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	18-Apr-08	06-Jun-08	17000.01	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:53 AM	

+="CN73919"	"Help for peak period in processing TSPs"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	21-Apr-08	30-Jun-08	21701.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	08-May-08 08:53 AM	

+="CN73920"	"Recruitment services for APS4"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	23-Apr-08	30-May-08	11000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:53 AM	

+="CN73921"	"HR Payroll Disbursement and Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Software"	01-Apr-08	30-Jun-08	60244.80	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	08-May-08 08:53 AM	

+="CN73922"	"14 McConnell 2/3 Educator bus seats BUs Floor Module"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Transportation components and systems"	01-May-08	30-Jun-08	17997.10	=""	="McConnell Seats Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN73923"	"Competency Assessment"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Specialised educational services"	14-Apr-08	30-Jun-08	10000.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	08-May-08 08:53 AM	

+="CN73924"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	24045.13	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73925"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	08-May-08 08:54 AM	

+="CN73926"	"Legal Services Expenditure 6757"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	24329.80	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73927"	"LEGAL SERVICES EXPENDITURE 7013 Legal Services Expenditure 7013"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	11604.01	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73928"	"contractor services - Michele Shepperd"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	31-Mar-08	09-May-08	14243.63	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	08-May-08 08:54 AM	

+="CN73929"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Management advisory services"	01-May-08	31-May-08	19448.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	08-May-08 08:54 AM	

+="CN73930"	"Legal Services Expenditure 6847"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	11-Aug-06	30-Jun-09	22600.82	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73931"	"CMS Licence Renewal 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-Mar-08	20-Mar-09	109613.00	=""	="Interwoven Australia Pty Ltd"	08-May-08 08:55 AM	

+="CN73932"	"Desktop Research Analysis -Human Factors"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Information services"	22-Apr-08	24-Jun-08	27580.93	="TRS08/052"	="HART SECURITY AUSTRALIA PTY LIMITED"	08-May-08 08:55 AM	

+="CN73933"	"Legal SErvices Expenditure 6823 Legal Services Expenditure 6823"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	11-Aug-06	30-Jun-09	15143.26	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	08-May-08 08:55 AM	

+="CN73934"	"Expert Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Security and personal safety"	16-Apr-08	30-Jun-08	47575.00	=""	="CHANGEDRIVERS"	08-May-08 08:55 AM	

+="CN73935"	"Financial Services - Review of MOG Changes"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Accounting and auditing"	11-Mar-08	31-May-08	24516.39	="TRS06/037"	="WALTER & TURNBULL  PTY LTD"	08-May-08 08:55 AM	

+="CN73936"	"Temporary staff placement"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Public administration and finance services"	25-Mar-08	30-May-08	18000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	08-May-08 08:55 AM	

+="CN73937"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	28-Apr-08	06-Jun-08	20592.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:55 AM	

+="CN73938"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	21-Apr-08	17-Oct-08	52552.50	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:55 AM	

+="CN73908"	"Consultancy service for Peace and Conflict Studies"	="National Native Title Tribunal"	08-May-08	="Corporate divestiture consultation services"	25-Feb-08	01-Mar-08	16307.50	=""	="The University of Queensland"	08-May-08 08:57 AM	

+="CN73939"	"Provision of a Professional Development Tool"	="Child Support Agency"	08-May-08	="Educational facilities"	01-May-08	01-Jun-09	73018.00	=""	="SHL Australia Pty Ltd"	08-May-08 09:17 AM	

+="CN73940"	"Legal services"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	18-Dec-07	30-Jun-08	230000.00	=""	="Lipman Karas (Barristers and Solicitors)"	08-May-08 09:46 AM	

+="CN73941-A2"	"Provision of cleaning services at the Wallsend and Charlestown premises of CRS Australia."	="CRS Australia"	08-May-08	="General building and office cleaning and maintenance services"	01-Dec-06	30-Nov-09	45628.45	=""	="C & L Scowen Pty Ltd t/a Daisybee Services"	08-May-08 09:47 AM	

+="CN73942"	" LABEL TO SPEC AD370, FULLY FUNCTIONAL, SMALL PRE PRINTED, QUANTITY 3500 PACKS. "	="Defence Materiel Organisation"	08-May-08	="Self adhesive labels"	07-May-08	30-May-08	69300.00	="2680043"	="PROMARK PTY LTD"	08-May-08 09:49 AM	

+="CN73943-A1"	"Design documentation & briefs"	="Australian Federal Police"	08-May-08	="Document management software"	01-May-08	30-Jun-08	14359.42	=""	="Manteena Pty Ltd"	08-May-08 10:00 AM	

+="CN73945"	"ASIC software licence review - IT consultancy."	="Australian Securities and Investments Commission"	08-May-08	="Information technology consultation services"	11-Apr-08	06-Jun-08	52800.00	=""	="Oakton Services P/L"	08-May-08 10:05 AM	

+="CN73946-A1"	"Project Management of Capital Works - Port Villa"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	18-Feb-09	463374.00	=""	="Manteena Pty Ltd"	08-May-08 10:09 AM	

+="CN73947"	"Supply of 10 x Propellor Shafts for Fire Trucks"	="Defence Materiel Organisation"	08-May-08	="Drive shafts"	07-May-08	31-Oct-09	22770.00	="FV8019"	="A & D International"	08-May-08 10:17 AM	

+="CN73950-A2"	"Project Management of Capital Works -   Beirut"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-10	1114000.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 10:19 AM	

+="CN73953-A1"	"08/2747 - Project Manager - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	332640.00	="05/0717"	="Clicks Recruit Pty Ltd"	08-May-08 10:35 AM	

+="CN73952-A1"	" SPACER, BONDED  NSN - 5365/008580766 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Mar-08	09-Jan-09	58940.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:36 AM	

+="CN73956-A1"	"Project Management of Capital Works - Dili"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	16-Oct-08	370695.00	=""	="Manteena Pty Ltd"	08-May-08 10:39 AM	

+="CN73957"	" SLEEVE, PISTON  NSN - 1610/006287169 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	03-May-08	24-May-08	10251.94	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:42 AM	

+="CN73958"	"Supply and install patitions as per quotes - Sydney Registry"	="National Native Title Tribunal"	08-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	21-May-08	14160.41	=""	="Intermain Pty Ltd"	08-May-08 10:45 AM	

+="CN73960"	" HOSE ASSEMBLY, NON METALLIC  NSN - 4720/008147764 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	16-Apr-08	08-Oct-08	10340.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:46 AM	

+="CN73962"	" BEARING, ROLLER, CYLINDRICAL  NSN - 3110/000785676 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	27-Mar-08	03-Jul-08	17886.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:49 AM	

+="CN73961-A1"	"Project Management of Capital Works - Jakarta"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	11-Sep-08	408464.00	=""	="Manteena Pty Ltd"	08-May-08 10:49 AM	

+="CN73964"	" SHELF ASSEMBLY, EXIT LIGHT; ALUMINUM AND PLASTIC  NSN - 6220/000035293 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	06-Mar-08	12-Apr-08	10692.00	=""	="AEROSPACE COMPOSITES PTY LTD"	08-May-08 10:55 AM	

+="CN73967"	"REPAIR ANDE OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	08-May-08	="Military rotary wing aircraft"	08-May-08	30-Jun-08	15372.29	=""	="SAAL"	08-May-08 10:59 AM	

+="CN73969"	" FILTER ELEMENT, FLUID  NSN - 1650/14721430 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	08-Apr-08	05-Sep-08	15553.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	08-May-08 10:59 AM	

+="CN73968-A2"	"Project Management of Capital Works - Islamabad"	="Australian Federal Police"	08-May-08	="Project management"	14-Mar-08	31-Dec-09	583000.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 10:59 AM	

+="CN73972"	" REPAIRS "	="Department of Defence"	08-May-08	="Motor vehicles"	08-May-08	08-Jun-08	10431.34	=""	="RGM"	08-May-08 11:04 AM	

+="CN73975"	"  Printing of: NAT 5196-1.2003.   Qty: 8000000  "	="Australian Taxation Office"	08-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	20-Jun-08	157960.00	=""	="The Camerons Group"	08-May-08 11:08 AM	

+="CN73976-A1"	"Project Management of Capital Works - Bali"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	05-Nov-08	367810.00	=""	="Manteena Pty Ltd"	08-May-08 11:10 AM	

+="CN73980"	" REPAIR ORDER  UNIT ASSY, REDUCTION - EXTERNAL RIM   NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	26-Mar-08	24-Jun-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:16 AM	

+="CN73751-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Mar-08	30-Jun-09	384285.00	=""	="Greythorn Pty Ltd"	08-May-08 11:17 AM	

+="CN73753-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	31-Jan-08	30-Jun-09	344850.00	=""	="Greythorn Pty Ltd"	08-May-08 11:19 AM	

+="CN73981-A2"	"Project Management of Capital Works - Dubai"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-09	935137.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 11:20 AM	

+="CN73805"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	15-Aug-07	31-Dec-07	96800.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:20 AM	

+="CN73983"	" REPAIR ORDER  COMPRESSOR ASSEMBLY - EXTERNAL (RIM)  NSN - 1680/011015499 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	26-Mar-08	24-Jun-08	72611.30	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:21 AM	

+="CN73806-A4"	"Provision of Information Technology Administrative Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	09-Jul-07	30-Jun-09	473000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:22 AM	

+="CN73812-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	26-Sep-07	30-Jun-08	176550.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:25 AM	

+="CN73811-A4"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	123236.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:26 AM	

+="CN73837"	"Provision of Information Technology Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	06-Aug-07	09-Nov-07	24750.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:31 AM	

+="CN73986"	" REPAIR ORDER UNIT ASSY, REDUCTION - EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	29-Apr-08	28-Jul-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:31 AM	

+="CN73988"	" REPAIR ORDER COMPRESSOR ASSEMBLY - EXTERNAL (RIM)  NSN - 1680/011015499 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Apr-08	27-Jul-08	72611.30	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:37 AM	

+="CN73992"	"Provision for office furniture"	="Comsuper"	08-May-08	="Furniture and Furnishings"	04-Sep-07	11-Nov-08	14542.00	=""	="Iken Commercial Interiors"	08-May-08 11:43 AM	

+="CN73994"	"Provision for legal services"	="Comsuper"	08-May-08	="Legal services"	01-Mar-08	30-Jun-08	70000.00	=""	="Australian Government Solicitors"	08-May-08 11:45 AM	

+="CN73996-A1"	"Project Management of Capital Works - Suva"	="Australian Federal Police"	08-May-08	="Project management"	13-Apr-08	05-Sep-08	549328.00	=""	="Manteena Pty Ltd"	08-May-08 11:47 AM	

+="CN73997"	" REPAIR ORDER UNIT ASSY, REDUCTION - REPAIR EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Apr-08	27-Jul-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:51 AM	

+="CN73999-A2"	"Project Management of Capital Works - Pretoria"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-09	478500.00	="RFT21/2005"	="Manteena Pty Ltd"	08-May-08 11:53 AM	

+="CN74001"	" REPAIR ORDER UNIT ASSY, REDUCTION - EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	11-Mar-08	10-Apr-08	61842.96	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:56 AM	

+="CN74003"	" Supply of Electrosurgical Apparatus's, Major Unit "	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	23-Apr-08	30-May-08	206250.00	=""	="CONMED LINVATEC"	08-May-08 11:58 AM	

+="CN74006"	"Licence for ValueFinancials (CaseWare Software for the Court's Annual Financial Statements)"	="Family Court of Australia"	08-May-08	="Software"	08-May-08	30-Jun-08	20240.00	=""	="PriceWaterHouse Coopers"	08-May-08 12:08 PM	

+="CN73814"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	04-Feb-08	30-Jun-08	84480.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:13 PM	

+="CN73816-A2"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-08	295680.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:15 PM	

+="CN73830"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	31-Oct-07	19140.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:17 PM	

+="CN73835-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	08-Oct-07	30-Jun-09	423500.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:18 PM	

+="CN73838-A3"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	07-Mar-08	112640.00	=""	="Finite Recruitment Services Pty. Ltd."	08-May-08 12:20 PM	

+="CN73840-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Dec-07	30-Jun-08	171600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:21 PM	

+="CN73842-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	19-Nov-07	30-Jun-09	286000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:22 PM	

+="CN73845-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	20-Aug-07	30-Jun-09	268125.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:24 PM	

+="CN73847-A5"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	03-Mar-08	19-Dec-08	242550.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:25 PM	

+="CN73857-A4"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Jun-07	30-Jun-09	204600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:26 PM	

+="CN73861-A3"	"Provision of Information Technology Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	367070.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:27 PM	

+="CN74010"	"Develop rules for migration; thesaurus and administer international service standards for Core Business System"	="Austrade"	08-May-08	="Computer services"	03-Mar-08	30-Jun-08	33000.00	=""	="Information Solutions Pty Ltd"	08-May-08 12:28 PM	

+="CN74012"	"Property Lease - Newcastle Office"	="Austrade"	08-May-08	="Real estate services"	01-Sep-07	31-Aug-11	51321.60	=""	="NSW Department of State & Regional Development"	08-May-08 12:29 PM	

+="CN73863-A4"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	12-Jun-07	29-May-09	608850.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:29 PM	

+="CN74013-A1"	"Consultant for Project Connect activities"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	27-Feb-09	154000.00	=""	="Peoplebank Australia Limited"	08-May-08 12:29 PM	

+="CN74014"	"Provide installation, maintenance, enhancement, support & documentation for systems & services"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	27-Jun-08	43400.00	=""	="GMT Canberra Pty Ltd"	08-May-08 12:29 PM	

+="CN74015-A1"	" Delivery of Project Connect activities & milestones, including integration & review.  Extension of contract. Value increased by $38500. "	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Nov-08	203500.00	=""	="Sebrec Pty Limited"	08-May-08 12:29 PM	

+="CN74016"	"McAfee Total Protection Gold Support"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	31-Mar-08	30-Mar-09	45248.01	=""	="Data#3 Limited"	08-May-08 12:29 PM	

+="CN74017"	"HP Maintenance Support for Cisco Equipment"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-May-08	18126.04	=""	="Hewlett Packard Australia Pty Ltd"	08-May-08 12:29 PM	

+="CN74018"	"Tandberg Content Server - Recording Ports, Installation & Training"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	19-Mar-08	20-Mar-08	36553.00	=""	="Integrated Vision Pty Ltd"	08-May-08 12:30 PM	

+="CN74019-A1"	"Creation of an Export Market Development Grant Document Catalogue & Library within Connect/MOSS"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	98175.00	=""	="Unique World Pty Ltd"	08-May-08 12:30 PM	

+="CN74020"	"Development & facilitation of Exporter Services Realignment Workshop"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	08-Apr-08	12127.50	=""	="In Corporate Pty Ltd"	08-May-08 12:30 PM	

+="CN73866-A4"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Jul-07	23-Jan-09	285450.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:30 PM	

+="CN73869-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	01-Jan-09	253000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:35 PM	

+="CN74021"	" Upgrade of internal computer network "	="Office of the Inspector-General of Intelligence and Security"	08-May-08	="Fixed network equipment and components"	01-Apr-08	30-Apr-08	58295.94	=""	="Department of Defence"	08-May-08 12:56 PM	

+="CN74009"	"Supply of Printers, Patient X-Ray Identification"	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-Jun-08	14436.00	=""	="Carestream Health Australia Pty Ltd"	08-May-08 01:06 PM	

+="CN74023"	"Lease at Ararat, VIC"	="Department of Human Services"	08-May-08	="Real estate services"	01-Dec-08	30-Nov-15	1293580.75	=""	="Zhomic PTY LTD"	08-May-08 01:08 PM	

+="CN74022-A2"	"Legal services"	="Office of the Inspector-General of Intelligence and Security"	08-May-08	="Legal services"	01-Feb-08	31-Jul-08	94000.00	=""	="Australian Government Solicitors"	08-May-08 01:09 PM	

+="CN73873-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	27-Jun-08	303600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 01:24 PM	

+="CN73875"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	30-Jun-08	101200.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 01:26 PM	

+="CN74028-A2"	"08/2742 - Human Resources Consultancy Service - 1599-1997 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	21-Apr-08	30-Sep-08	355000.00	=""	="Yellow Edge Pty Ltd"	08-May-08 01:27 PM	

+="CN74031-A1"	"08/2664 - Review Consultancy Service - 1599-1976 - C&B Services Panel"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	09-Apr-08	20-Jun-08	176550.00	="06/1599"	="Workplace Research Associates Pty Ltd"	08-May-08 01:33 PM	

+="CN74030"	"Provision of Visual Basic Programming Services"	="National Native Title Tribunal"	08-May-08	="Information technology consultation services"	01-Jan-08	30-Aug-08	101610.00	=""	="Dialog Information Technology"	08-May-08 01:40 PM	

+="CN74035-A1"	"08/2648 - IT Contractor - 1599-2004 - C&B Services Panel 06/1599 (CPE004803-1)"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	28-Apr-08	01-Sep-08	499400.00	=""	="2nd Road Pty Ltd"	08-May-08 01:41 PM	

+="CN74037-A1"	"08/2570 - Supply of X-Ray Units - 0109-1067 - X-Ray Panel 03/0109 (CPO019784)(CPO019785)(CPO019787)"	="Australian Customs and Border Protection Service"	08-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Feb-08	10-Apr-08	436194.00	=""	="Smiths Detection Australia"	08-May-08 01:48 PM	

+="CN74043"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	08-May-08	="Motor vehicles"	17-Apr-08	01-May-08	11185.67	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	08-May-08 01:54 PM	

+="CN74042-A1"	"08/2666 - Relocate and Installation Connection - 0859-1284 - IT Security Services Panel - 05/0859"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	10-Apr-08	30-Jun-08	62700.00	="05/0859"	="Cybertrust Australia Pty Ltd"	08-May-08 01:55 PM	

+="CN74034-A1"	"Centralised Audit Logging System (CAL)"	="Australian Taxation Office"	08-May-08	="Information technology consultation services"	12-May-08	13-Jun-08	29620.80	="RFQ 02-2008"	="Electronic Warfare Associates"	08-May-08 01:59 PM	

+="CN74046-A1"	"08/2660 - Project Manager - 0717-0890 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	01-Apr-08	20-Sep-08	120000.00	="05/0717"	="Paxus Australia Pty Ltd"	08-May-08 02:09 PM	

+="CN74048-A7"	"08/2737 - Professional Services - 1599-1944 - C&B Services Panel 06/1599 (CPE004784-1)"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	15-Feb-08	17-Aug-09	1145952.00	=""	="Oakton AA Services Pty Ltd"	08-May-08 02:14 PM	

+="CN74049-A1"	"08/2698 - ICT Strategic Planning Advisor - 0299-1006 - IT Business Advisory Panel 04/0299"	="Australian Customs and Border Protection Service"	08-May-08	="Information technology consultation services"	01-Mar-08	30-Jun-09	245000.00	=""	="CPT Global"	08-May-08 02:18 PM	

+="CN74050-A1"	"08/2595 - Technical Writer - 0717-0875 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	07-Apr-08	06-Aug-08	50000.00	=""	="Frontier Group Australia Pty Ltd"	08-May-08 02:21 PM	

+="CN74052-A1"	"08/2690 - Specialist Services - 0717-0881 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	01-Apr-08	30-Jun-08	62400.00	="05/0717"	="Inforail Pty Ltd"	08-May-08 02:24 PM	

+="CN74054"	"Fleet Management and Leasing Services (REf Standing Offer ID 12383)"	="Family Court of Australia"	08-May-08	="Vehicle leasing"	02-May-08	01-May-10	31972.51	=""	="LeasePlan"	08-May-08 02:26 PM	

+="CN74056"	"ARH PMR, PMSG in Australia and DGAAS Eurocopter CEO meeting in Germany"	="Defence Materiel Organisation"	08-May-08	="Travel facilitation"	19-Feb-08	19-Feb-08	13086.17	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74057"	"Return to Australia posting travel for Major Peter Scullard and family"	="Defence Materiel Organisation"	08-May-08	="Travel facilitation"	30-Mar-08	30-Mar-08	31986.00	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74058"	"Visit to Adelaide for Alliance Program SFR"	="Defence Materiel Organisation"	08-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Mar-08	08-Apr-08	15638.87	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74059"	"Hire Cars"	="Defence Materiel Organisation"	08-May-08	="Motor vehicles"	04-Apr-08	04-Apr-08	10627.00	=""	="TERRY TRUCK RENTALS TA HERTZ"	08-May-08 02:34 PM	

+="CN74060"	"Airfares to Spain & Washington April 2008"	="Defence Materiel Organisation"	08-May-08	="Passenger transport"	16-Apr-08	16-Apr-08	12482.15	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74061"	"Biometric Telemetry Equipment (Heart Rate Monitors)"	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	20-Feb-08	20-Feb-08	10676.25	=""	="CHALLENGE SPORTS PTY L"	08-May-08 02:35 PM	

+="CN74062"	"PCIL 0003/2008"	="Defence Materiel Organisation"	08-May-08	="Education and Training Services"	24-Mar-08	24-Mar-08	11050.04	=""	="CMU-ENGINEERING INSTUT"	08-May-08 02:35 PM	

+="CN74063"	"CAAL 0105/2008"	="Defence Materiel Organisation"	08-May-08	="Management support services"	28-Mar-08	28-Mar-08	14343.00	=""	="CANBERRA PUBLISHING"	08-May-08 02:35 PM	

+="CN74064"	"Hire of venue"	="Defence Materiel Organisation"	08-May-08	="Hotels and lodging and meeting facilities"	08-Apr-08	08-Apr-08	17943.96	=""	="MEL CONV/EXHIB TST"	08-May-08 02:35 PM	

+="CN74069"	"    March 08 Geneva WP 29 Folio 190    "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 02:42 PM	

+="CN73879-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	11-Jul-07	30-Jun-08	165000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:43 PM	

+="CN73886-A3"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	30-Jun-09	396495.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:45 PM	

+="CN73891-A3"	"Provision of Information Technology Enterprise Design Services"	="Department of Immigration and Citizenship"	08-May-08	="Systems architecture"	09-Oct-07	30-Jun-09	635250.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:47 PM	

+="CN73894-A6"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	01-Aug-07	30-Jun-09	432300.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:49 PM	

+="CN73896-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	246400.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:51 PM	

+="CN73898"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	06-Aug-07	31-Dec-07	64680.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:54 PM	

+="CN74071"	"    Expense for Peter to travel to Geneva for WP29 conference, 10-14 March 2008.    "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 02:56 PM	

+="CN73900-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	03-Mar-08	19-Sep-08	462000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:57 PM	

+="CN73901-A1"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	154000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 03:14 PM	

+="CN74074"	"Air Fare"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	14-Mar-08	14-Mar-08	10430.30	=""	="QANTAS"	08-May-08 03:16 PM	

+="CN74073"	"Annual license renewal of NOMAD Archival 01/04/2008-31/03/2009"	="Australian Taxation Office"	08-May-08	="License management software"	01-Apr-08	31-Mar-09	132825.00	=""	="Fujitsu Australia Ltd"	08-May-08 03:17 PM	

+="CN73903-A6"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	536030.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 03:18 PM	

+="CN74075"	"Upgrade the front Science Forecourt at Questacon Parkes"	="Questacon"	08-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Mar-08	30-Jun-08	671260.00	=""	="Complete Consrtuctions"	08-May-08 03:19 PM	

+="CN74004-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	31-Jan-08	30-Jun-09	343200.00	=""	="Greythorn Pty Ltd"	08-May-08 03:20 PM	

+="CN74080"	" AIR FARES "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	28-Mar-08	28-Mar-08	13605.17	=""	="QANTAS"	08-May-08 03:21 PM	

+="CN74000-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	24-Oct-08	249645.00	=""	="Greythorn Pty Ltd"	08-May-08 03:23 PM	

+="CN73995-A1"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	13-Feb-08	30-Jun-08	61875.00	=""	="Greythorn Pty Ltd"	08-May-08 03:24 PM	

+="CN73993-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	27-Aug-07	30-Jun-09	332482.00	=""	="Greythorn Pty Ltd"	08-May-08 03:26 PM	

+="CN73990-A2"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	06-Aug-07	22-Feb-08	416295.00	=""	="Greythorn Pty Ltd"	08-May-08 03:27 PM	

+="CN74082"	"AIR FARES"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	18-Apr-08	18-Apr-08	10509.85	=""	="QANTAS"	08-May-08 03:28 PM	

+="CN73989-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	29-Jan-08	28-Nov-08	274890.00	=""	="Greythorn Pty Ltd"	08-May-08 03:29 PM	

+="CN74083"	"AIR FARES"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	17-Apr-08	17-Apr-08	10525.90	=""	="QANTAS"	08-May-08 03:29 PM	

+="CN73985-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	30-Jun-08	249645.00	=""	="Greythorn Pty Ltd"	08-May-08 03:31 PM	

+="CN74084"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	08-May-08	="Vehicle leasing"	21-Apr-08	20-Apr-10	41794.63	=""	="LeasePlan"	08-May-08 03:32 PM	

+="CN74085"	"Science Exhibits"	="Questacon"	08-May-08	="Exhibitions"	28-Apr-08	30-Sep-08	79330.00	=""	="Exploratorium"	08-May-08 03:32 PM	

+="CN74079-A1"	"     Airfares for Alan Hobbs lecturer at HF course in Jakarta under ITSAP.     "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	04-Apr-08	04-Apr-08	10540.70	=""	="CATHAY PACIFIC"	08-May-08 03:33 PM	

+="CN74078-A1"	" AIR FARES "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 03:33 PM	

+="CN73979-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	18-Dec-07	30-Sep-08	191180.00	=""	="Greythorn Pty Ltd"	08-May-08 03:34 PM	

+="CN74086"	"motor vehicle spare parts"	="Department of Defence"	08-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	07-Jun-08	18035.31	=""	="LAND ROVER AUSTRALIA"	08-May-08 03:34 PM	

+="CN73974-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Computer services"	03-Mar-08	30-Jun-09	220275.00	="RFT05/67"	="Greythorn Pty Ltd"	08-May-08 03:35 PM	

+="CN74087"	"Installation Set Stowage - M113"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	67256.20	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:35 PM	

+="CN73970"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Sep-07	03-Dec-07	27500.00	=""	="Greythorn Pty Ltd"	08-May-08 03:36 PM	

+="CN73965-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	09-Jul-07	30-Jun-09	374000.00	=""	="Greythorn Pty Ltd"	08-May-08 03:37 PM	

+="CN74089"	"Stowage installation Kit - M806AS4 ARVL"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	96211.50	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:39 PM	

+="CN74090"	"Stowage Installation Kit M113AS4 APC"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	81789.40	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:47 PM	

+="CN74091"	"Provision of professional services - Client Survey"	="Department of Health and Ageing"	08-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	26436.00	=""	="Orima Research Pty Ltd"	08-May-08 03:50 PM	

+="CN74072-A1"	"Forensic Accounting"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	28-Apr-08	30-Jun-08	28000.00	=""	="PPB Forensic"	08-May-08 03:51 PM	

+="CN74070"	"Foxtel intallation"	="Australian Securities and Investments Commission"	08-May-08	="Cable television services"	01-Apr-08	30-Apr-10	20380.80	=""	="IRESS Market Technology Limited"	08-May-08 03:55 PM	

+="CN73973-A1"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Mar-08	30-Jun-08	18480.00	=""	="McGrath Nicol"	08-May-08 03:58 PM	

+="CN74093"	"CASTER, SWIVEL NSN - 5340/661554797"	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	12-Mar-08	02-Apr-08	14100.00	=""	="RICHMOND WHEEL AND CASTOR"	08-May-08 04:00 PM	

+="CN74094"	"Java Programmer"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	01-Jul-08	30-Jul-09	160000.00	=""	="Frontiergroup Australia Pty Ltd"	08-May-08 04:02 PM	

+="CN74095"	"Traffic Charges and access fees"	="National Archives of Australia"	08-May-08	="Data services"	01-Oct-07	31-Dec-07	30349.00	=""	="AARNET"	08-May-08 04:02 PM	

+="CN74096"	"Monitors, Computer and accessories"	="National Archives of Australia"	08-May-08	="Computer Equipment and Accessories"	02-May-08	02-Jun-08	22077.00	=""	="DELL COMPUTERS PTY LTD"	08-May-08 04:03 PM	

+="CN74097"	"Temp Labour"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	49500.00	=""	="Vedior Asia Pacific Pty Ltd"	08-May-08 04:03 PM	

+="CN74098"	"Curatorial Servicesfor Strike a Pose"	="National Archives of Australia"	08-May-08	="Exhibitions"	10-Apr-08	30-Jun-08	12000.00	=""	="Lee Lin Chin"	08-May-08 04:03 PM	

+="CN74099"	"ProjectorsandWarranty"	="National Archives of Australia"	08-May-08	="Computer accessories"	11-Apr-08	11-May-08	23377.20	=""	="Electroboard Solutions Pty Ltd"	08-May-08 04:03 PM	

+="CN74100"	"Cannon Digital Micrographic"	="National Archives of Australia"	08-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	34883.20	=""	="Sydney Micro Pty Ltd"	08-May-08 04:03 PM	

+="CN74101"	"Disaster recovery link Parkes - Mitchell"	="National Archives of Australia"	08-May-08	="Fixed network equipment and components"	11-Apr-08	30-Jun-08	13750.00	=""	="Servitel Communications Pty Ltd"	08-May-08 04:03 PM	

+="CN74102"	"Contract software tester"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	12-May-08	30-Jun-09	50000.00	=""	="Frontiergroup Australia Pty Ltd"	08-May-08 04:03 PM	

+="CN74103"	"Printing of Footprints Book"	="National Archives of Australia"	08-May-08	="Printed publications"	14-Apr-08	12-May-08	13228.00	=""	="NATIONAL CAPITAL PRINTING"	08-May-08 04:03 PM	

+="CN74104"	"Temporary labour"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	50000.00	=""	="Drake Australia Pty  Ltd"	08-May-08 04:04 PM	

+="CN74105"	"Data Entry Operators"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	17-Apr-06	30-Jun-08	61600.00	=""	="KEY PEOPLE"	08-May-08 04:04 PM	

+="CN74106"	"Omnibus Survey"	="National Archives of Australia"	08-May-08	="Promotional or advertising printing"	23-Apr-08	30-Apr-08	25683.00	=""	="Newspoll"	08-May-08 04:04 PM	

+="CN74107"	"Rebuild web application"	="National Archives of Australia"	08-May-08	="Software maintenance and support"	23-Apr-08	30-Jun-08	28765.00	=""	="The Reading Room Australia Pty Ltd"	08-May-08 04:04 PM	

+="CN74109"	"4th instalment to Dr. Jenny Hocking"	="National Archives of Australia"	08-May-08	="Awards"	28-Apr-08	02-May-08	11000.00	=""	="MONASH UNIVERSITY (Sundry Invoices)"	08-May-08 04:04 PM	

+="CN74110"	"Light Fitting Replacement"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	28-Apr-08	05-Jun-08	42751.50	=""	="MSP Electrical"	08-May-08 04:04 PM	

+="CN74111"	"Piction Annual Support"	="National Archives of Australia"	08-May-08	="Computer support parts or accessories"	28-Apr-08	09-May-08	14437.50	=""	="Piction Digital Image Systems"	08-May-08 04:04 PM	

+="CN74112"	"Working Field to Vault"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	20-Jun-08	26493.50	=""	="Remedial Building Services Aust Pty Ltd"	08-May-08 04:04 PM	

+="CN74113"	"Chester Hill Painting"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	13420.00	=""	="Priority One Coatings Pty Ltd"	08-May-08 04:04 PM	

+="CN73971"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	10-Jan-08	30-Jun-08	43540.00	=""	="McGrath Nicol"	08-May-08 04:07 PM	

+="CN74114"	" PART NUMBER BS220110117T56GBOX CAGE CODE - Z5047  NSN - 8145/661512289 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	21-Feb-08	22-Mar-08	24465.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:07 PM	

+="CN73966-A1"	" Expert Witness "	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Jan-08	30-Jun-08	27000.00	=""	="McGrath Nicol"	08-May-08 04:08 PM	

+="CN73959"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Apr-08	30-Jun-08	30000.00	=""	="Ernst & Young"	08-May-08 04:11 PM	

+="CN74115"	" STORAGE CONTAINER,MISCELLANEOUS  NSN - 8145/661535805 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	17-Apr-08	02-May-08	10350.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:13 PM	

+="CN74065"	"Newspapers"	="Australian Securities and Investments Commission"	08-May-08	="Printed media"	01-Jan-08	31-Dec-08	35000.00	=""	="Fairfax Media"	08-May-08 04:13 PM	

+="CN74047"	"Project support"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	21-Apr-08	27-Jun-08	14850.00	=""	="Greythorn P/L"	08-May-08 04:14 PM	

+="CN74116"	" CONTAINER COMPRESSOR  NSN - 8145/661338613 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	17-Apr-08	10340.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:16 PM	

+="CN74044"	"Purchase of 60 Meeting Room chairs"	="Australian Securities and Investments Commission"	08-May-08	="Office Equipment and Accessories and Supplies"	26-Nov-07	26-Nov-07	11700.00	=""	="KROST Furniture"	08-May-08 04:17 PM	

+="CN74117"	" TURBINE COMPRESSOR - REPAIR EXTERNAL (RIM)  NSN - 1660/661022102 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	30-Apr-08	32397.71	=""	="QANTAS AIRWAYS LTD"	08-May-08 04:20 PM	

+="CN74041"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	15-Nov-07	30-Jun-08	30000.00	=""	="Mr Alan MacSporran"	08-May-08 04:21 PM	

+="CN74039"	" Legal services - Counsel "	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	26-Feb-08	30-Jun-08	25000.00	=""	="Mr Michael Pearce SC"	08-May-08 04:22 PM	

+="CN74118-A3"	" Lease at Cherbourg, QLD "	="Department of Human Services"	08-May-08	="Lease and rental of property or building"	01-Aug-08	31-Jul-12	44720.54	=""	="Cherbourg Aboriginal Shire Council"	08-May-08 04:24 PM	

+="CN74005"	"Consultancy services - accounting"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	03-Jan-08	30-Jun-08	105000.00	=""	="Grant Thornton"	08-May-08 04:25 PM	

+="CN74002"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	01-Nov-07	31-Oct-08	25000.00	=""	="Mr David J. Batt"	08-May-08 04:27 PM	

+="CN74119"	" REGULATOR, AIR PRESSURE, AIRCRAFT CABIN REPAIR - EXTERNAL  NSN - 1660/661019173 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	17-May-08	21047.00	=""	="QANTAS AIRWAYS LTD"	08-May-08 04:27 PM	

+="CN73991"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	06-May-08	31-Aug-08	25700.00	=""	="Slade Group"	08-May-08 04:30 PM	

+="CN73987"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	06-May-08	31-Aug-08	25700.00	=""	="Robert Walters"	08-May-08 04:30 PM	

+="CN73984"	" Recruitment "	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:31 PM	

+="CN74120-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	30-Jun-09	252450.00	=""	="Greythorn Pty Ltd"	08-May-08 04:32 PM	

+="CN73977"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:33 PM	

+="CN73963"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	14-Jan-08	14-Mar-08	10000.00	=""	="Katter (Dominic)"	08-May-08 04:35 PM	

+="CN74122-A6"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	02-Jan-08	30-Jun-09	333234.00	=""	="Greythorn Pty Ltd"	08-May-08 04:41 PM	

+="CN74123"	" WINDOW PANEL - REPAIR  NSN - 1560/014796632 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	08-May-08	30-Nov-08	24833.38	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:42 PM	

+="CN74124"	"2008 Regional Directors Conference: building capability Through Collaboration."	="National Native Title Tribunal"	08-May-08	="Meetings events"	31-Mar-08	01-Apr-08	22750.00	=""	="Australian Public Service Commission"	08-May-08 04:43 PM	

+="CN74125-A2"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	02-Jan-08	30-Jun-09	333234.00	=""	="Greythorn Pty Ltd"	08-May-08 04:44 PM	

+="CN74126"	" ACTUATOR, MECHANICAL, AIRCRAFT REPAIR  NSN - 1680/010094075 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	21-Feb-08	18-Oct-08	13782.12	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:45 PM	

+="CN73954"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	08-May-08 04:48 PM	

+="CN74127"	" DRAG LINK, LANDING GEAR REPAIR  NSN - 1620/010098660 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	10-Mar-08	09-Apr-08	19259.24	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:49 PM	

+="CN74128"	" REGULATOR, O, YGEN REPAIR  NSN - 1660/009564032 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17085.44	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:52 PM	

+="CN74129-A3"	"Provision of Information Technology Network Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	03-Dec-07	30-Jun-09	506880.00	=""	="Greythorn Pty Ltd"	08-May-08 04:55 PM	

+="CN74130-A3"	"Provision of Information Technology Network Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	14-Nov-07	30-Jun-09	440631.00	=""	="Greythorn Pty Ltd"	08-May-08 04:59 PM	

+="CN74131-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Feb-08	24-Oct-08	190905.00	=""	="Greythorn Pty Ltd"	08-May-08 05:03 PM	

+="CN74133-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	26-Jun-07	30-Jun-08	150150.00	=""	="Greythorn Pty Ltd"	08-May-08 05:07 PM	

+="CN74135-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	25-Jun-07	26-Sep-08	378675.00	=""	="Greythorn Pty Ltd"	08-May-08 05:10 PM	

+="CN74136-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	21-May-07	30-Jun-09	329945.00	=""	="Greythorn Pty Ltd"	08-May-08 05:15 PM	

+="CN74137-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	09-Jul-07	30-Jun-09	530200.00	=""	="Greythorn Pty Ltd"	08-May-08 05:20 PM	

+="CN74138-A1"	" FITOUT WORK AT WERRIBEE CUSTOMER SERVICE CENTRE, VICTORIA "	="Centrelink"	08-May-08	="Furniture and Furnishings"	08-May-08	30-May-08	167920.50	=""	="Schiavello (VIC) Pty Ltd"	08-May-08 05:29 PM 

--- /dev/null
+++ b/admin/partialdata/05Jan2008to09Jan2008valto.xls
@@ -1,1 +1,973 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN53433"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	13988.01	=""	="Barristers' Clerking Services"	07-Jan-08 08:19 AM	

+="CN53434"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	63300.00	=""	="CA Sweeney"	07-Jan-08 08:24 AM	

+="CN53435"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	142900.00	=""	="CA Sweeney"	07-Jan-08 08:28 AM	

+="CN53442"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	23159.27	=""	="Corrs Chambers Westgrath"	07-Jan-08 08:53 AM	

+="CN53444"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	31974.60	=""	="Corrs Chambers Westgrath"	07-Jan-08 08:58 AM	

+="CN53446"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	35918.66	=""	="Corrs Chambers Westgrath"	07-Jan-08 09:02 AM	

+="CN53447"	"Legal Services"	="Australian Competition and Consumer Commission"	07-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	58628.89	=""	="Corrs Chambers Westgrath"	07-Jan-08 09:04 AM	

+="CN53448-A1"	"Excise Duty Credit - Documentation Testing Phase II"	="Australian Taxation Office"	07-Jan-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	04-Apr-08	30605.11	=""	="Stamford Interactive Pty Ltd"	07-Jan-08 10:05 AM	

+="CN53449"	"Internet protocol phone service maintenance"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	17-Aug-07	31-Aug-07	21209.08	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:20 AM	

+="CN53450"	"Information database access - annual fee"	="Australian Federal Police"	07-Jan-08	="Components for information technology or broadcasting or telecommunications"	17-Aug-07	18-Sep-07	40600.00	=""	="FACTIVA"	07-Jan-08 10:20 AM	

+="CN53451"	"Travel Expenses - 3-24 June 2007 Asia Study Tour"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	17-Aug-07	18-Sep-07	12763.66	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:20 AM	

+="CN53452"	"Study Program - Australia's Future in Asia"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	17-Aug-07	17-Sep-07	27610.00	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:20 AM	

+="CN53453"	"G36C Firearms"	="Australian Federal Police"	07-Jan-08	="Law enforcement"	17-Aug-07	31-Dec-07	581431.92	=""	="H K SYSTEMS AUSTRALIA PTY LTD"	07-Jan-08 10:20 AM	

+="CN53454"	"Ballistic Vests"	="Australian Federal Police"	07-Jan-08	="Law enforcement"	16-Aug-07	24-Aug-07	67807.98	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	07-Jan-08 10:20 AM	

+="CN53455"	"purchase of laptops"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Aug-07	13-Sep-07	63096.39	=""	="FUJITSU AUSTRALIA LTD"	07-Jan-08 10:20 AM	

+="CN53456"	"training courses"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	16-Aug-07	13-Sep-07	36960.00	=""	="HEDLOC"	07-Jan-08 10:20 AM	

+="CN53457"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	17-Aug-07	31-Aug-07	92448.74	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:21 AM	

+="CN53458"	"Contract IT Services"	="Australian Federal Police"	07-Jan-08	="Computer services"	20-Aug-07	20-Sep-07	35200.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	07-Jan-08 10:21 AM	

+="CN53459"	"Recruitment Costs"	="Australian Federal Police"	07-Jan-08	="Human resources services"	20-Aug-07	17-Sep-07	10945.00	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:21 AM	

+="CN53460"	"Project management services"	="Australian Federal Police"	07-Jan-08	="Business administration services"	20-Aug-07	24-Sep-07	17806.25	=""	="TURNER & TOWNSEND PTY LTD"	07-Jan-08 10:21 AM	

+="CN53461"	"Bullet Traps"	="Australian Federal Police"	07-Jan-08	="Law enforcement"	20-Aug-07	20-Sep-07	30448.02	=""	="FIRESTORM HOLDINGS PTY LTD"	07-Jan-08 10:21 AM	

+="CN53462"	"Recruitment Services"	="Australian Federal Police"	07-Jan-08	="Human resources services"	20-Aug-07	02-Dec-07	16556.33	=""	="Hudson Global Resources(Aust) P/L"	07-Jan-08 10:21 AM	

+="CN53463"	"SUPPLY AND INSTALLATION OF SHELVING UNITS"	="Australian Federal Police"	07-Jan-08	="Prefabricated structures"	17-Aug-07	28-Sep-07	16108.13	=""	="REFLEX PTY LTD"	07-Jan-08 10:21 AM	

+="CN53464"	"Software Licences"	="Australian Federal Police"	07-Jan-08	="Software"	17-Aug-07	07-Sep-07	75522.70	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	07-Jan-08 10:21 AM	

+="CN53465"	"Internet protocol phone hardware and licences"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	17-Aug-07	07-Sep-07	213747.60	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:21 AM	

+="CN53466"	"Purchase of biometric USB memory sticks"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Aug-07	06-Sep-07	14795.00	=""	="Protective Security Management P/L"	07-Jan-08 10:21 AM	

+="CN53467"	"recruitment services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	14-Aug-07	15-Aug-07	23136.30	=""	="Hudson Global Resources(Aust) P/L"	07-Jan-08 10:21 AM	

+="CN53468"	"Training Course " Applied Electricty Level 1""	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	14-Aug-07	11-Sep-07	13200.00	=""	="CIT SOLUTIONS PTY LTD"	07-Jan-08 10:22 AM	

+="CN53469"	"Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	14-Aug-07	11-Sep-07	24080.10	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:22 AM	

+="CN53470"	"Toughbook Computer and accessories"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	14-Aug-07	11-Sep-07	22180.00	=""	="COMMANDER INTEGRATED NETWORKS"	07-Jan-08 10:22 AM	

+="CN53471"	"Microsoft outlook training course"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	14-Aug-07	14-Sep-07	14664.05	=""	="PRIORITY MANAGEMENT-SYDNEY P/L"	07-Jan-08 10:22 AM	

+="CN53472"	"Batons & Pouches"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	14-Aug-07	01-Oct-07	36863.20	=""	="ASP (AUST) PTY LTD"	07-Jan-08 10:22 AM	

+="CN53473"	"Provision of project management training"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	14-Aug-07	14-Sep-07	12000.00	=""	="CODARRA ADVANCED SYSTEMS"	07-Jan-08 10:22 AM	

+="CN53474"	"OFFICE FURNITURE"	="Australian Federal Police"	07-Jan-08	="Mining and oil and gas services"	13-Aug-07	31-Aug-07	33572.00	=""	="GREGORY COMMERCIAL FURNITURE P/L"	07-Jan-08 10:22 AM	

+="CN53475"	"computer equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	14-Aug-07	31-Aug-07	23487.20	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:22 AM	

+="CN53476"	"Computer Hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Aug-07	16-Sep-07	12173.70	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:22 AM	

+="CN53477"	"Paint works for ceiling  40 x 80 metres"	="Australian Federal Police"	07-Jan-08	="Interior finishing materials"	16-Aug-07	31-Aug-07	15400.00	=""	="ADVANCED BUILDING TECHNOLOGIES P/L"	07-Jan-08 10:23 AM	

+="CN53478"	"Supply & install pedestrian gate with Security acc"	="Australian Federal Police"	07-Jan-08	="Building and Construction and Maintenance Services"	16-Aug-07	16-Aug-07	14658.63	=""	="DATA KEY SYSTEMS (ACT) PTY LTD"	07-Jan-08 10:23 AM	

+="CN53479"	"SUPPLY OF WEAPONS CABINETS"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	15-Aug-07	30-Sep-07	18480.00	=""	="MULTIFILE"	07-Jan-08 10:23 AM	

+="CN53480"	"Specialized Roping Equipment"	="Australian Federal Police"	07-Jan-08	="Office supplies"	15-Aug-07	29-Sep-07	26392.96	=""	="HEIGHT DYNAMICS PTY LTD"	07-Jan-08 10:23 AM	

+="CN53481"	"Air Conditioner Rental"	="Australian Federal Police"	07-Jan-08	="Electronic Components and Supplies"	15-Aug-07	15-Sep-07	27663.04	=""	="AUSCO BUILDING SYSTEMS PTY LTD"	07-Jan-08 10:23 AM	

+="CN53482"	"Installation and supply of Comet EX"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	15-Aug-07	12-Sep-07	16247.12	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:23 AM	

+="CN53483"	"Supply & Installation of Cabling and computer hardware"	="Australian Federal Police"	07-Jan-08	="Interior finishing materials"	15-Aug-07	15-Aug-07	17306.96	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:23 AM	

+="CN53484"	"Shortlist Presentation for 2 managerial positions in Academic Programs"	="Australian Federal Police"	07-Jan-08	="Human resources services"	20-Aug-07	31-Aug-07	24750.00	=""	="GEDDES PARKER & PARTNERS P/L"	07-Jan-08 10:23 AM	

+="CN53485"	"4 X Dell Latitude D820 Laptop Computers"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	28-Aug-07	11-Sep-07	11154.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:23 AM	

+="CN53486"	"Training and Development"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	28-Aug-07	28-Sep-07	12100.00	=""	="WORKPLACE RESEARCH ASSOCIATES P/L"	07-Jan-08 10:24 AM	

+="CN53487"	"Legal Services"	="Australian Federal Police"	07-Jan-08	="Legal services"	28-Aug-07	28-Aug-07	15340.53	=""	="HOLDING REDLICH"	07-Jan-08 10:24 AM	

+="CN53488"	"Software Maintenance"	="Australian Federal Police"	07-Jan-08	="Software"	28-Aug-07	28-Aug-07	18216.00	=""	="OPC IT PTY LIMITED"	07-Jan-08 10:24 AM	

+="CN53489"	"Software Maintenance"	="Australian Federal Police"	07-Jan-08	="Software"	28-Aug-07	28-Sep-07	22000.00	=""	="SQUIZ PTY LTD"	07-Jan-08 10:24 AM	

+="CN53490"	"Computer Forensic Software"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	28-Aug-07	29-Aug-07	106387.60	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	07-Jan-08 10:24 AM	

+="CN53491"	"VOIP Phone System"	="Australian Federal Police"	07-Jan-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Aug-07	27-Sep-07	314647.39	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:24 AM	

+="CN53492"	"Mandarin Language Training"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	27-Aug-07	01-Aug-08	14144.23	="JUN-06"	="CIT SOLUTIONS PTY LTD"	07-Jan-08 10:24 AM	

+="CN53493"	"Supply,instal & maintain XP Face computer software"	="Australian Federal Police"	07-Jan-08	="Computer services"	28-Aug-07	11-Sep-07	43322.40	=""	="VISION CONTROL INTERNATIONAL P/L"	07-Jan-08 10:24 AM	

+="CN53494"	"Digital Shredders"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	31-Aug-07	30-Sep-07	101735.15	=""	="CONSULVEST AUSTRALIA"	07-Jan-08 10:24 AM	

+="CN53495"	"DNA Testing Forensic Equipment"	="Australian Federal Police"	07-Jan-08	="Laboratory and scientific equipment"	30-Aug-07	30-Sep-07	49698.00	=""	="CORBETT RESEARCH PTY LTD"	07-Jan-08 10:25 AM	

+="CN53496"	"Printing of Collective Agreement"	="Australian Federal Police"	07-Jan-08	="Printing and publishing equipment"	30-Aug-07	30-Sep-07	12716.00	=""	="Canprint Communications Pty Ltd"	07-Jan-08 10:25 AM	

+="CN53497"	"Software Support"	="Australian Federal Police"	07-Jan-08	="Software"	30-Aug-07	30-Sep-07	23100.00	=""	="UNLIMITED SECURITY SOLUTIONS P/L"	07-Jan-08 10:25 AM	

+="CN53498"	"Vehicle modifications"	="Australian Federal Police"	07-Jan-08	="Vehicle bodies and trailers"	29-Aug-07	31-Aug-07	183596.84	=""	="VARLEY SPECIALISED VEHICLES PTY LTD"	07-Jan-08 10:25 AM	

+="CN53499"	"Analytical service"	="Australian Federal Police"	07-Jan-08	="Engineering and Research and Technology Based Services"	29-Aug-07	30-Aug-07	11874.50	=""	="Dr P J ROSE"	07-Jan-08 10:25 AM	

+="CN53500"	"Supply and delivery of 2 shipping containers"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	29-Aug-07	26-Sep-07	15780.01	=""	="ACE Container Services Pty Ltd"	07-Jan-08 10:25 AM	

+="CN53501"	"Communications Equipment"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	28-Aug-07	28-Sep-07	12600.00	=""	="TC COMMUNICATIONS PTY LTD"	07-Jan-08 10:25 AM	

+="CN53502"	"Category 6 Patch leads"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	27-Aug-07	24-Sep-07	10678.25	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:25 AM	

+="CN53503"	"Operational expenses"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	22-Aug-07	30-Aug-07	21738.20	=""	="OPTICAL SYSTEMS DESIGN"	07-Jan-08 10:26 AM	

+="CN53504"	"Hire of Special Vehicles"	="Australian Federal Police"	07-Jan-08	="Travel facilitation"	21-Aug-07	31-Dec-07	14850.00	=""	="Grand Touring Coach Charter"	07-Jan-08 10:26 AM	

+="CN53505"	"4 x 4 Training Courses for pre-deployment"	="Australian Federal Police"	07-Jan-08	="Transport operations"	21-Aug-07	31-Dec-07	81750.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:26 AM	

+="CN53506"	"Provision of national recruitment advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	21-Aug-07	22-Sep-07	100392.64	=""	="EOC GROUP PTY LTD"	07-Jan-08 10:26 AM	

+="CN53507"	"Telephone Record Searches"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	21-Aug-07	22-Sep-07	17589.00	=""	="VODAFONE NETWORK PTY LTD"	07-Jan-08 10:26 AM	

+="CN53508"	"Online Training for Cert VI and Intro to Project Management"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	21-Aug-07	31-Aug-07	25580.00	=""	="THE QUEST GROUP PTY LTD"	07-Jan-08 10:26 AM	

+="CN53509"	"Computer Hardware & Consumables"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	21-Aug-07	21-Sep-07	52208.20	=""	="AIRDATA PTY LTD"	07-Jan-08 10:26 AM	

+="CN53510"	"SUPPLY AND INSTALL REFRIGERATION/FREEZER UNITS"	="Australian Federal Police"	07-Jan-08	="Storage"	20-Aug-07	26-Oct-07	16276.70	=""	="KNIGHT REFRIGERATION PTY LTD"	07-Jan-08 10:26 AM	

+="CN53511"	"Computer software, upgrades & support"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	22-Aug-07	30-Aug-07	19519.50	=""	="HEWLETT-PACKARD AUSTRALIA LTD"	07-Jan-08 10:26 AM	

+="CN53512"	"Microscope System"	="Australian Federal Police"	07-Jan-08	="Laboratory and scientific equipment"	27-Aug-07	31-Oct-07	153509.95	=""	="LEICA MICROSYSTEMS PTY LTD"	07-Jan-08 10:27 AM	

+="CN53513"	"Fibre Optic Cables"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	27-Aug-07	27-Sep-07	12321.54	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:27 AM	

+="CN53514"	"Fire Alarm Monitoring"	="Australian Federal Police"	07-Jan-08	="National Defence and Public Order and Security and Safety Services"	24-Aug-07	24-Sep-07	25145.00	=""	="ACT EMERGENCY SERVICES AUTHORITY"	07-Jan-08 10:27 AM	

+="CN53515"	"Software support Services"	="Australian Federal Police"	07-Jan-08	="Computer services"	24-Aug-07	30-Jun-08	39600.00	=""	="DEDICATED MICRO SYSTEMS"	07-Jan-08 10:27 AM	

+="CN53516"	"Advertising - Recruitment"	="Australian Federal Police"	07-Jan-08	="Advertising"	24-Aug-07	24-Aug-07	14758.04	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:27 AM	

+="CN53517"	"Redesign of safety vehicles"	="Australian Federal Police"	07-Jan-08	="Motor vehicles"	23-Aug-07	30-Jun-08	23188.00	=""	="MADER INTERNATIONAL PTY LTD"	07-Jan-08 10:27 AM	

+="CN53518"	"Computer Equipment."	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	23-Aug-07	27-Sep-07	19186.50	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:27 AM	

+="CN53519"	"Scanner and servers"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	23-Aug-07	31-Aug-07	11052.80	=""	="OPC IT PTY LIMITED"	07-Jan-08 10:27 AM	

+="CN53520"	"Computer File System Archiving"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	01-Aug-07	31-Aug-07	32030.90	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:27 AM	

+="CN53521"	"P1610 Lifebooks"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	01-Aug-07	05-Sep-07	18498.90	=""	="FUJITSU AUSTRALIA LTD"	07-Jan-08 10:28 AM	

+="CN53522"	"Vehicle mounted Transport Module"	="Australian Federal Police"	07-Jan-08	="Motor vehicles"	01-Aug-07	29-Aug-07	23080.20	=""	="VARLEY SPECIALISED VEHICLES PTY LTD"	07-Jan-08 10:28 AM	

+="CN53523"	"Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	01-Aug-07	31-Aug-07	32373.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:28 AM	

+="CN53524"	"Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	01-Aug-07	31-Aug-07	19800.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:28 AM	

+="CN53525"	"Computer equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	01-Aug-07	31-Aug-07	13134.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:28 AM	

+="CN53526"	"Driver training course"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	01-Aug-07	31-Aug-07	19499.98	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:28 AM	

+="CN53527"	"Recruitment Costs - Advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	01-Aug-07	29-Aug-07	12158.84	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:28 AM	

+="CN53528"	"TV equipment"	="Australian Federal Police"	07-Jan-08	="Entertainment services"	02-Aug-07	31-Aug-07	12635.70	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 10:28 AM	

+="CN53529"	"Key Management System and accessories"	="Australian Federal Police"	07-Jan-08	="Office machines and their supplies and accessories"	02-Aug-07	30-Jun-08	12408.00	=""	="CIC SECURE PTY LTD"	07-Jan-08 10:28 AM	

+="CN53530"	"Provision of professional services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	02-Aug-07	03-Aug-07	16500.00	=""	="NOETIC SOLUTIONS PTY LTD"	07-Jan-08 10:28 AM	

+="CN53531"	"Employee assistance program monthly fee for servic"	="Australian Federal Police"	07-Jan-08	="Healthcare Services"	02-Aug-07	03-Aug-07	17399.64	=""	="DAVIDSON TRAHAIRE CORPSYCH P/L"	07-Jan-08 10:29 AM	

+="CN53532"	"Workshop Costs"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	02-Aug-07	30-Aug-07	17871.50	=""	="RYDGES EAGLE HAWK"	07-Jan-08 10:29 AM	

+="CN53533"	"D620 Standard Notebooks"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	02-Aug-07	06-Sep-07	47965.50	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:29 AM	

+="CN53534"	"Psychological assessment reports"	="Australian Federal Police"	07-Jan-08	="Human resources services"	02-Aug-07	30-Jun-08	22000.00	=""	="Psychological Assessments Aust P/L"	07-Jan-08 10:29 AM	

+="CN53535"	"Provision of psychology reports"	="Australian Federal Police"	07-Jan-08	="Human resources services"	02-Aug-07	30-Jun-08	82500.00	=""	="CPP ASIA PACIFIC PTY LTD"	07-Jan-08 10:29 AM	

+="CN53536"	"Software maintenance"	="Australian Federal Police"	07-Jan-08	="Software"	01-Aug-07	29-Aug-07	14559.60	=""	="IBM AUSTRALIA LTD"	07-Jan-08 10:29 AM	

+="CN53537"	"Military Cable Fibre"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	01-Aug-07	05-Sep-07	22387.20	=""	="OPTICAL FIBRE SYSTEMS"	07-Jan-08 10:29 AM	

+="CN53538"	"Portable surv platform kit"	="Australian Federal Police"	07-Jan-08	="Public safety and control"	27-Jul-07	31-Jul-07	47101.45	=""	="STS INTERNATIONAL INC"	07-Jan-08 10:29 AM	

+="CN53539"	"PRE DEPLOYMENT MEDICAL EXPENCES"	="Australian Federal Police"	07-Jan-08	="Medical Equipment and Accessories and Supplies"	07-Aug-07	23-Aug-07	10094.81	=""	="CAPITAL PATHOLOGY"	07-Jan-08 10:29 AM	

+="CN53540"	"ONLINE SUBSCRIPTION FROM 290607-280607"	="Australian Federal Police"	07-Jan-08	="Computer services"	28-Jun-07	22-Aug-07	71930.37	=""	="JANE'S INFORMATION GROUP LTD"	07-Jan-08 10:29 AM	

+="CN53541"	"INSURANCE PREMIUM"	="Australian Federal Police"	07-Jan-08	="Insurance and retirement services"	01-Jul-07	16-Aug-07	1777509.29	=""	="COMCOVER"	07-Jan-08 10:30 AM	

+="CN53542"	"COMPUTER EQUIPMENT"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	11-Jun-07	07-Aug-07	35143.77	=""	="DELL CORPORATION (THAILAND) CO LTD"	07-Jan-08 10:30 AM	

+="CN53543"	"COMMUNICATION EQUIPMENT"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	08-Jun-07	07-Aug-07	17773.78	=""	="DEPARTMENT OF DEFENCE"	07-Jan-08 10:30 AM	

+="CN53544"	"VACCINATIONS"	="Australian Federal Police"	07-Jan-08	="Healthcare Services"	12-Jun-07	06-Aug-07	16542.36	=""	="CAPITAL PATHOLOGY"	07-Jan-08 10:30 AM	

+="CN53545"	"Network services contractor"	="Australian Federal Police"	07-Jan-08	="Computer services"	02-Jul-07	03-Jul-07	16513.48	=""	="QUALITY CONTRACTS AUSTRALIA P/L"	07-Jan-08 10:30 AM	

+="CN53546"	"Portable surv platform kit"	="Australian Federal Police"	07-Jan-08	="Public safety and control"	27-Jul-07	31-Jul-07	47101.45	=""	="STS INTERNATIONAL INC"	07-Jan-08 10:30 AM	

+="CN53547"	"Software Licences"	="Australian Federal Police"	07-Jan-08	="Software"	02-Aug-07	29-Aug-07	92227.28	=""	="HP Invent"	07-Jan-08 10:30 AM	

+="CN53548"	"Hire vehicles"	="Australian Federal Police"	07-Jan-08	="Passenger transport"	01-Aug-07	31-Aug-07	11436.03	=""	="COMCAR"	07-Jan-08 10:30 AM	

+="CN53549"	"Advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	01-Aug-07	01-Sep-07	11000.00	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:30 AM	

+="CN53550"	"In the Line of Duty Exhibition"	="Australian Federal Police"	07-Jan-08	="Marketing and distribution"	01-Aug-07	01-Sep-07	22308.00	=""	="SERVICES FOR ART"	07-Jan-08 10:30 AM	

+="CN53551"	"Professional Fees for Legal services"	="Australian Federal Police"	07-Jan-08	="Legal services"	01-Aug-07	29-Aug-07	272169.92	="35-2005"	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Jan-08 10:31 AM	

+="CN53552"	"Driver training services"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	01-Aug-07	31-Aug-07	14625.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:31 AM	

+="CN53553"	"Recruitment advertising costs"	="Australian Federal Police"	07-Jan-08	="Advertising"	01-Aug-07	31-Aug-07	59111.90	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:31 AM	

+="CN53554"	"Crisis Response System"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	06-Jul-07	31-Aug-07	29799.87	=""	="ENFORCEMENT TECHNOLOGY GROUP INC"	07-Jan-08 10:31 AM	

+="CN53555"	"Translation Services"	="Australian Federal Police"	07-Jan-08	="Writing and translations"	02-Aug-07	02-Aug-07	13760.00	=""	="NJOKU Eric"	07-Jan-08 10:31 AM	

+="CN53556"	"Translation service"	="Australian Federal Police"	07-Jan-08	="Writing and translations"	09-Aug-07	09-Aug-07	68578.13	=""	="Muhammad Y Gamal"	07-Jan-08 10:31 AM	

+="CN53557"	"Computer software"	="Australian Federal Police"	07-Jan-08	="Software"	09-Aug-07	31-Aug-07	111113.32	=""	="HEWLETT-PACKARD AUSTRALIA LTD"	07-Jan-08 10:31 AM	

+="CN53558"	"Computer Equipment."	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	09-Aug-07	30-Aug-07	41595.40	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:31 AM	

+="CN53559"	"Computer Equipment."	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	09-Aug-07	30-Aug-07	56300.44	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:31 AM	

+="CN53560"	"office supplies"	="Australian Federal Police"	07-Jan-08	="Office machines and their supplies and accessories"	09-Aug-07	10-Aug-07	15939.00	=""	="TONER EXPRESS (A'ASIA) PTY LTD"	07-Jan-08 10:32 AM	

+="CN53561"	"Professional Services - Legal"	="Australian Federal Police"	07-Jan-08	="Legal services"	09-Aug-07	09-Sep-07	184716.85	="35-2005"	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Jan-08 10:32 AM	

+="CN53562"	"Fire brigade costs"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	08-Aug-07	09-Aug-07	20860.00	=""	="ACT EMERGENCY SERVICES AUTHORITY"	07-Jan-08 10:32 AM	

+="CN53563"	"Fire brigade costs"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	08-Aug-07	09-Aug-07	20206.00	=""	="ACT EMERGENCY SERVICES AUTHORITY"	07-Jan-08 10:32 AM	

+="CN53564"	"Fitout Vehicle Canopy"	="Australian Federal Police"	07-Jan-08	="Vehicle bodies and trailers"	10-Aug-07	10-Sep-07	12230.00	=""	="AUSTRALIAN WORK & LEISURE"	07-Jan-08 10:32 AM	

+="CN53565"	"Software Licences"	="Australian Federal Police"	07-Jan-08	="Computer services"	13-Aug-07	10-Sep-07	17820.00	=""	="THOMAS DURYEA CONSULTING"	07-Jan-08 10:32 AM	

+="CN53566"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	13-Aug-07	14-Aug-07	27200.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:32 AM	

+="CN53567"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	13-Aug-07	14-Aug-07	24320.01	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:32 AM	

+="CN53568"	"recrutment services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	13-Aug-07	14-Aug-07	23136.30	=""	="Hudson Global Resources(Aust) P/L"	07-Jan-08 10:32 AM	

+="CN53569"	"subscriptions for legal publications"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	13-Aug-07	14-Aug-07	21530.53	=""	="Thomson Legal & Regulatory Limited"	07-Jan-08 10:32 AM	

+="CN53570"	"Gloves & Body Bags"	="Australian Federal Police"	07-Jan-08	="Medical Equipment and Accessories and Supplies"	10-Aug-07	10-Sep-07	18854.00	=""	="Able Plastics and Leeton Packaging"	07-Jan-08 10:33 AM	

+="CN53571"	"Projector Lease"	="Australian Federal Police"	07-Jan-08	="Audio and visual presentation and composing equipment"	10-Aug-07	10-Sep-07	19380.57	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 10:33 AM	

+="CN53572"	"Tents & Stretchers"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	10-Aug-07	10-Sep-07	19553.05	=""	="PADDY PALLIN ADVENTURE"	07-Jan-08 10:33 AM	

+="CN53573"	"Fire brigade costs"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	08-Aug-07	09-Aug-07	18834.00	=""	="ACT EMERGENCY SERVICES AUTHORITY"	07-Jan-08 10:33 AM	

+="CN53574"	"Medical equipment"	="Australian Federal Police"	07-Jan-08	="Medical Equipment and Accessories and Supplies"	06-Aug-07	20-Aug-07	15000.00	=""	="ST JOHN AMBULANCE AUSTRALIA NSW"	07-Jan-08 10:33 AM	

+="CN53575"	"HR Program-Learning & Development program"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	06-Aug-07	30-Nov-07	49500.00	=""	="HUME CONSULTING GROUP PTY LTD"	07-Jan-08 10:33 AM	

+="CN53576"	"Manadnock batons and baton Ring Holders"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	03-Aug-07	30-Sep-07	17501.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	07-Jan-08 10:33 AM	

+="CN53577"	"Computer equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	03-Aug-07	31-Aug-07	30426.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:33 AM	

+="CN53578"	"Permanent Placement Fee"	="Australian Federal Police"	07-Jan-08	="Human resources services"	03-Aug-07	31-Aug-07	90658.11	=""	="ZENERGY RECRUITMENT PTY LTD"	07-Jan-08 10:33 AM	

+="CN53579"	"Staff Placement Fee"	="Australian Federal Police"	07-Jan-08	="Human resources services"	03-Aug-07	31-Aug-07	39760.62	=""	="PATRIOT ALLIANCE PTY LTD"	07-Jan-08 10:33 AM	

+="CN53580"	"Workshop"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	03-Aug-07	03-Sep-07	15125.00	="30/2004"	="THE TELERAN GROUP"	07-Jan-08 10:34 AM	

+="CN53581"	"Toshiba Litepro TDP-TW350 Projectors"	="Australian Federal Police"	07-Jan-08	="Office machines and their supplies and accessories"	02-Aug-07	08-Aug-07	18635.00	=""	="Domayne Electrical Fyshwick"	07-Jan-08 10:34 AM	

+="CN53582"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	06-Aug-07	31-Aug-07	10980.84	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:34 AM	

+="CN53583"	"Accomodation, meals, executive dinner 6/2007"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	08-Aug-07	30-Jun-08	234994.68	=""	="RYDGES EAGLE HAWK"	07-Jan-08 10:34 AM	

+="CN53584"	"Photocopier Lease"	="Australian Federal Police"	07-Jan-08	="Office machines and their supplies and accessories"	08-Aug-07	31-Mar-08	11107.84	=""	="KONICA FINANCE"	07-Jan-08 10:34 AM	

+="CN53585"	"site rental"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	08-Aug-07	09-Aug-07	11944.60	=""	="AIRSERVICES AUSTRALIA"	07-Jan-08 10:34 AM	

+="CN53586"	"Mezzanine Floor & Pallet Racking System"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	08-Aug-07	09-Aug-07	35000.00	=""	="DEXION CANBERRA"	07-Jan-08 10:34 AM	

+="CN53587"	"RA-2SM tank Dev and blech/fix, tank stabilizer"	="Australian Federal Police"	07-Jan-08	="Chemicals including Bio Chemicals and Gas Materials"	07-Aug-07	08-Aug-07	11718.19	=""	="KODAK (AUSTRALASIA) PTY LTD"	07-Jan-08 10:34 AM	

+="CN53588"	"Funeral Costs"	="Australian Federal Police"	07-Jan-08	="Trade policy and regulation"	07-Aug-07	07-Aug-07	10846.00	=""	="GREGSON AND WEIGHT"	07-Jan-08 10:34 AM	

+="CN53589"	"1 DAY COUNTER TERRORISM WORKSHOP FOR LINCT"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	06-Aug-07	30-Aug-07	12650.00	=""	="CHANGEDRIVERS PTY LTD"	07-Jan-08 10:35 AM	

+="CN53590"	"24 X MONTHLY LEASE OF 2 X SAMRTBOARDS"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	06-Aug-07	17-Jun-09	39204.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 10:35 AM	

+="CN53592"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Transport operations"	20-Sep-07	22-Oct-07	28800.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:43 AM	

+="CN53593"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	20-Sep-07	30-Jun-08	15840.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:43 AM	

+="CN53594"	"Computer Cabling"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	20-Sep-07	30-Jun-08	69227.84	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:43 AM	

+="CN53595"	"Height Cage and removable lid with lockable lids"	="Australian Federal Police"	07-Jan-08	="Interior finishing materials"	20-Sep-07	30-Jun-08	40975.00	=""	="JNI PALLET SYSTEMS"	07-Jan-08 10:44 AM	

+="CN53596"	"Platatac Hard Face two jackets"	="Australian Federal Police"	07-Jan-08	="Apparel and Luggage and Personal Care Products"	20-Sep-07	18-Dec-07	66000.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	07-Jan-08 10:44 AM	

+="CN53597"	"Cabling Costs - Variations to quote"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	24-Sep-07	30-Jun-08	100361.12	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:44 AM	

+="CN53598"	"Overseas Property Management"	="Australian Federal Police"	07-Jan-08	="Real estate services"	21-Sep-07	21-Oct-07	21312.50	=""	="TURNER & TOWNSEND PTY LTD"	07-Jan-08 10:44 AM	

+="CN53599"	"Motorola 9505 Sat Phones"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	21-Sep-07	19-Oct-07	39900.08	=""	="NATIONAL NETWORK SOLUTIONS"	07-Jan-08 10:44 AM	

+="CN53600"	"Mat Gym 20mm impact"	="Australian Federal Police"	07-Jan-08	="Sports and Recreational Equipment and Supplies and Accessories"	21-Sep-07	19-Oct-07	10989.00	=""	="Clark Rubber"	07-Jan-08 10:44 AM	

+="CN53601"	"International Briefings"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	21-Sep-07	19-Oct-07	12653.30	="65/2006"	="Australian Volunteers International"	07-Jan-08 10:44 AM	

+="CN53603"	"Supply & Install Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	21-Sep-07	30-Jun-08	112447.10	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:44 AM	

+="CN53604"	"T-Shirts with logo and back print"	="Australian Federal Police"	07-Jan-08	="Apparel and Luggage and Personal Care Products"	20-Sep-07	18-Dec-07	24618.00	=""	="PLATYPUS OUTDOORS GROUP PTY LTD"	07-Jan-08 10:44 AM	

+="CN53605"	"Cabling Services & Supplies"	="Australian Federal Police"	07-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	18-Sep-07	18-Oct-07	29383.54	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:45 AM	

+="CN53602"	"Cloth, plain weave, navy blue"	="Defence Materiel Organisation"	07-Jan-08	="Specialty fabrics or cloth"	14-Sep-06	15-Nov-07	29477.00	=""	="DEFAB WEAVING PTY LTD"	07-Jan-08 10:45 AM	

+="CN53606"	"Computer Equipment for IS"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	18-Sep-07	19-Oct-07	19855.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:45 AM	

+="CN53607"	"Computer Hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	18-Sep-07	18-Oct-07	30888.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:45 AM	

+="CN53608"	"Recruitment Placement Services for IT personnel"	="Australian Federal Police"	07-Jan-08	="Advertising"	18-Sep-07	18-Oct-07	35253.01	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:45 AM	

+="CN53609"	"Metal Lathe"	="Australian Federal Police"	07-Jan-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	17-Sep-07	17-Oct-07	12334.25	=""	="M & G INDUSTRIAL SUPPLIES PTY LTD"	07-Jan-08 10:45 AM	

+="CN53610"	"Hydraulic law enforecement tools"	="Australian Federal Police"	07-Jan-08	="Public safety and control"	17-Sep-07	30-Nov-07	53805.40	=""	="ERIPIO -SMART RESCUE GEAR"	07-Jan-08 10:45 AM	

+="CN53611"	"Flamable liquid disposal services"	="Australian Federal Police"	07-Jan-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	19-Sep-07	19-Sep-07	19800.00	=""	="CHEMSAL PTY LTD"	07-Jan-08 10:45 AM	

+="CN53612"	"Software licences"	="Australian Federal Police"	07-Jan-08	="Software"	19-Sep-07	30-Jun-08	87725.00	=""	="AUSTRALIAN PROJECTS PTY LTD"	07-Jan-08 10:45 AM	

+="CN53613"	"Vehicle fitout"	="Australian Federal Police"	07-Jan-08	="Vehicle bodies and trailers"	19-Sep-07	30-Jun-08	11190.10	=""	="KENS MOTORS PTY LTD"	07-Jan-08 10:45 AM	

+="CN53614"	"Monthly Hire Demountable Building"	="Australian Federal Police"	07-Jan-08	="Structural building products"	19-Sep-07	30-Jun-08	18333.35	=""	="AUSCO BUILDING SYSTEMS PTY LTD"	07-Jan-08 10:46 AM	

+="CN53615"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Transport operations"	19-Sep-07	19-Oct-07	43840.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 10:46 AM	

+="CN53616"	"Training & Development of Staff"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	19-Sep-07	30-Jun-08	11560.00	=""	="CIT SOLUTIONS PTY LTD"	07-Jan-08 10:46 AM	

+="CN53617"	"Recruitment services Regional Assistance Mission Solomon Islands"	="Australian Federal Police"	07-Jan-08	="Work related organisations"	26-Sep-07	30-Jun-08	10400.00	=""	="HERBERT Dr Tania"	07-Jan-08 10:46 AM	

+="CN53618"	"Sound & Flash Training capsules"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	26-Sep-07	10-Oct-07	11319.00	=""	="NIOA TRADING"	07-Jan-08 10:46 AM	

+="CN53619"	"Protective coveralls boots and gloves."	="Australian Federal Police"	07-Jan-08	="Medical Equipment and Accessories and Supplies"	25-Sep-07	02-Oct-07	11099.00	=""	="KIKARSE WORKWEAR PTY LTD"	07-Jan-08 10:46 AM	

+="CN53620"	"Rack Mount Servers and HP Blade"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	25-Sep-07	25-Oct-07	82632.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:46 AM	

+="CN53621"	"Record Searches"	="Australian Federal Police"	07-Jan-08	="Statistics"	25-Sep-07	24-Oct-07	47278.11	=""	="TELSTRA CORPORATION LTD"	07-Jan-08 10:46 AM	

+="CN53622"	"Legal Services"	="Australian Federal Police"	07-Jan-08	="Legal services"	25-Sep-07	25-Oct-07	18037.38	=""	="HOLDING REDLICH"	07-Jan-08 10:46 AM	

+="CN53623"	"Training & Development - 8x mbrs Spring Session 07"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	27-Sep-07	26-Oct-07	28000.32	=""	="University of Wollongong"	07-Jan-08 10:46 AM	

+="CN53624"	"Legal Services"	="Australian Federal Police"	07-Jan-08	="Legal services"	27-Sep-07	27-Oct-07	17079.04	="35-2005"	="CLAYTON UTZ"	07-Jan-08 10:47 AM	

+="CN53625"	"Training Development & Delivery"	="Australian Federal Police"	07-Jan-08	="National Defence and Public Order and Security and Safety Services"	27-Sep-07	27-Oct-07	26909.61	=""	="The Institute of Chartered"	07-Jan-08 10:47 AM	

+="CN53626"	"Gym Equipment"	="Australian Federal Police"	07-Jan-08	="Healthcare Services"	27-Sep-07	30-Jun-08	35753.74	="11/2004"	="True Fitness Solutions"	07-Jan-08 10:47 AM	

+="CN53627"	"Gym Equipment"	="Australian Federal Police"	07-Jan-08	="Healthcare Services"	27-Sep-07	30-Jun-08	14489.20	=""	="Gymquip Fitness"	07-Jan-08 10:47 AM	

+="CN53628"	"Ballistic Vests"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	26-Sep-07	24-Oct-07	30299.50	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	07-Jan-08 10:47 AM	

+="CN53629"	"Record Searches"	="Australian Federal Police"	07-Jan-08	="Statistics"	25-Sep-07	24-Oct-07	22338.00	=""	="OPTUS BILLING SERVICES PTY LTD"	07-Jan-08 10:47 AM	

+="CN53630"	"Installation and supply of computer cabling"	="Australian Federal Police"	07-Jan-08	="Components for information technology or broadcasting or telecommunications"	24-Sep-07	31-Oct-07	48675.00	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:47 AM	

+="CN53631"	"Internet protocol phone hardware & software"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	24-Sep-07	30-Sep-07	31315.40	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:47 AM	

+="CN53632"	"Lexmark C935dtn (code 10D1773)"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	24-Sep-07	30-Jun-08	13725.26	="EJ90FED0321"	="LEXMARK INTERNATIONAL (AUSTRALIA)"	07-Jan-08 10:47 AM	

+="CN53633"	"Laboratory l Equipment"	="Australian Federal Police"	07-Jan-08	="Laboratory and scientific equipment"	24-Sep-07	24-Oct-07	27984.00	=""	="SHIMADZU SCIENTIFIC INSTRUMENTS"	07-Jan-08 10:48 AM	

+="CN53634"	"Forensic Equipment"	="Australian Federal Police"	07-Jan-08	="Laboratory and scientific equipment"	24-Sep-07	22-Oct-07	28468.00	=""	="CARTER-SCOTT DESIGN"	07-Jan-08 10:48 AM	

+="CN53635"	"AFP merchandise"	="Australian Federal Police"	07-Jan-08	="Business administration services"	24-Sep-07	31-Oct-07	28941.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	07-Jan-08 10:48 AM	

+="CN53636"	"Combo Meal Packs"	="Australian Federal Police"	07-Jan-08	="Food and Beverage Products"	25-Sep-07	30-Jun-08	39339.08	=""	="PORTION PACK FOODS LTD"	07-Jan-08 10:48 AM	

+="CN53637"	"Legal Services"	="Australian Federal Police"	07-Jan-08	="Legal services"	25-Sep-07	25-Oct-07	206638.21	="35-2005"	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Jan-08 10:48 AM	

+="CN53638"	"Language tuition"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	25-Sep-07	31-Oct-07	18097.78	="JUN-06"	="CIT SOLUTIONS PTY LTD"	07-Jan-08 10:48 AM	

+="CN53639"	"ASIC mascot use services"	="Australian Federal Police"	07-Jan-08	="Advertising"	25-Sep-07	31-Oct-07	18588.96	=""	="AUSTRALIAN SECURITIES & INVESTMENTS"	07-Jan-08 10:48 AM	

+="CN53640"	"Student Fees LECP Project"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	25-Sep-07	30-Jun-08	38499.99	=""	="University of Wollongong -"	07-Jan-08 10:48 AM	

+="CN53641"	"Pre-employment exams"	="Australian Federal Police"	07-Jan-08	="Office supplies"	24-Sep-07	24-Oct-07	11154.00	=""	="HEALTH FOR INDUSTRY"	07-Jan-08 10:48 AM	

+="CN53642"	"Electroboard"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	17-Sep-07	17-Oct-07	10302.82	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 10:49 AM	

+="CN53643"	"Premier standard pakage 1"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	06-Sep-07	30-Jun-08	147829.00	=""	="MICROSOFT PTY LTD"	07-Jan-08 10:49 AM	

+="CN53644"	"recruitment services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	06-Sep-07	06-Sep-07	11000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:49 AM	

+="CN53645"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	06-Sep-07	30-Sep-07	65859.55	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:49 AM	

+="CN53646"	"Uniforms"	="Australian Federal Police"	07-Jan-08	="Human resources services"	05-Sep-07	03-Oct-07	24997.50	=""	="LIFESTYLE INDUSTRIES GROUP P/L"	07-Jan-08 10:49 AM	

+="CN53647"	"Provision of Recruitment Services"	="Australian Federal Police"	07-Jan-08	="Business administration services"	05-Sep-07	05-Oct-07	23136.30	=""	="Hudson Global Resources(Aust) P/L"	07-Jan-08 10:49 AM	

+="CN53648"	"system care for scanner"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	05-Sep-07	03-Oct-07	26130.50	=""	="I-SiTE Pty Ltd"	07-Jan-08 10:49 AM	

+="CN53649"	"Surveillance Equipment"	="Australian Federal Police"	07-Jan-08	="Tools and General Machinery"	07-Sep-07	05-Oct-07	63800.00	=""	="Geonautics International Pty Ltd"	07-Jan-08 10:49 AM	

+="CN53650"	"Pants Cargo Navy Blue AFP"	="Australian Federal Police"	07-Jan-08	="Apparel and Luggage and Personal Care Products"	07-Sep-07	05-Oct-07	124795.00	=""	="MOTOMAN INDUSTRIAL WEAR PTY LTD"	07-Jan-08 10:49 AM	

+="CN53651"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	07-Sep-07	30-Sep-07	69227.84	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:49 AM	

+="CN53652"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	07-Sep-07	30-Sep-07	158585.17	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:50 AM	

+="CN53653"	"Rental of storage space"	="Australian Federal Police"	07-Jan-08	="Storage"	07-Sep-07	07-Oct-07	17723.00	=""	="U-STOW-IT PTY LTD"	07-Jan-08 10:50 AM	

+="CN53654"	"Computer notebooks"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	06-Sep-07	30-Sep-07	10912.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:50 AM	

+="CN53655"	"Supply & installation of data cabling and computer hardware"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	04-Sep-07	04-Oct-07	12650.00	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:50 AM	

+="CN53656"	"Information Requests"	="Australian Federal Police"	07-Jan-08	="Engineering and Research and Technology Based Services"	03-Sep-07	30-Jun-08	25025.00	=""	="VODAFONE NETWORK PTY LTD"	07-Jan-08 10:50 AM	

+="CN53657"	"M'ship to international human resource and cost of living database"	="Australian Federal Police"	07-Jan-08	="Civic organisations and associations and movements"	05-Sep-07	18-Sep-07	61295.00	=""	="ECA INTERNATIONAL"	07-Jan-08 10:50 AM	

+="CN53658"	"COMPUTER EQUIPMENT"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	30-Aug-07	17-Sep-07	30556.56	=""	="SYSTEMWARE PACIFIC"	07-Jan-08 10:50 AM	

+="CN53659"	"COMPUTER EQUIPMENT/SOFTWARE"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	24-Jul-07	04-Sep-07	59748.25	=""	="VIISAGE"	07-Jan-08 10:50 AM	

+="CN53660"	"COMMS EQUIPMENT"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	30-Apr-07	03-Sep-07	16188.02	=""	="DEPARTMENT OF DEFENCE"	07-Jan-08 10:50 AM	

+="CN53661"	"SECURITY EQUIPMENT"	="Australian Federal Police"	07-Jan-08	="Law enforcement"	09-Jul-07	03-Sep-07	188120.24	=""	="RVISION INC"	07-Jan-08 10:51 AM	

+="CN53662"	"Laboratory Equipment"	="Australian Federal Police"	07-Jan-08	="Laboratory and scientific equipment"	04-Sep-07	30-Jun-08	27885.64	=""	="XTEK LTD"	07-Jan-08 10:51 AM	

+="CN53663"	"Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	04-Sep-07	30-Sep-07	10142.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:51 AM	

+="CN53664"	"Cabling Services & Supplies"	="Australian Federal Police"	07-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	04-Sep-07	04-Oct-07	29545.10	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:51 AM	

+="CN53665"	"software"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	04-Sep-07	02-Oct-07	11000.00	=""	="UNLIMITED SECURITY SOLUTIONS P/L"	07-Jan-08 10:51 AM	

+="CN53666"	"Indonesian intensive immersion training"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	04-Sep-07	05-Sep-07	14500.00	=""	="PRANG Lucretia"	07-Jan-08 10:51 AM	

+="CN53667"	"selection advisory panel"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	03-Sep-07	02-Oct-07	25142.50	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:51 AM	

+="CN53668"	"Vidoe Conferencing equipment"	="Australian Federal Police"	07-Jan-08	="Photographic or filming or video equipment"	12-Sep-07	02-Nov-07	12635.70	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 10:51 AM	

+="CN53669"	"Recruitment selection panel services"	="Australian Federal Police"	07-Jan-08	="Human resources services"	12-Sep-07	30-Jun-08	10319.50	=""	="AUSTRALIAN PUBLIC SERVICE"	07-Jan-08 10:51 AM	

+="CN53670"	"Recruitment Placement Services for IT personnel"	="Australian Federal Police"	07-Jan-08	="Human resources services"	12-Sep-07	12-Oct-07	37271.41	=""	="PATRIOT ALLIANCE PTY LTD"	07-Jan-08 10:51 AM	

+="CN53671"	"Contractor contract"	="Australian Federal Police"	07-Jan-08	="Legal services"	12-Sep-07	12-Oct-07	13479.54	="35-2005"	="DLA PHILLIPS FOX"	07-Jan-08 10:52 AM	

+="CN53672"	"Legal Services contractor"	="Australian Federal Police"	07-Jan-08	="Legal services"	12-Sep-07	12-Oct-07	19314.90	=""	="GILLIAN BEAUMONT RECRUITMENT P/L"	07-Jan-08 10:52 AM	

+="CN53673"	"Mental Health Training course"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	12-Sep-07	12-Oct-07	10708.50	=""	="O2C PTY LTD"	07-Jan-08 10:52 AM	

+="CN53674"	"Captaining Services to deliver Vessels to the Solomon Islands"	="Australian Federal Police"	07-Jan-08	="Marine transport"	14-Sep-07	30-Jun-08	11870.10	="V310126"	="SCOTT DONEY AUTOS"	07-Jan-08 10:52 AM	

+="CN53675"	"Computer Equipment for IS"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	14-Sep-07	15-Oct-07	11880.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:52 AM	

+="CN53676"	"TINNED FOOD"	="Australian Federal Police"	07-Jan-08	="Food and Beverage Products"	14-Sep-07	30-Sep-07	15510.00	=""	="ENTYCE FOOD INGREDIENTS PTY LTD"	07-Jan-08 10:52 AM	

+="CN53677"	"Assistance"	="Australian Federal Police"	07-Jan-08	="Business administration services"	13-Sep-07	30-Sep-07	18700.00	=""	="HILLMONT & ASSOCIATES PTY LTD"	07-Jan-08 10:52 AM	

+="CN53678"	"THEMIS cabling"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	13-Sep-07	11-Oct-07	32917.50	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:52 AM	

+="CN53679"	"Fitout of Landcruiser 100 series V8"	="Australian Federal Police"	07-Jan-08	="Motor vehicles"	13-Sep-07	30-Jun-08	12523.50	=""	="VARLEY SPECIALISED VEHICLES PTY LTD"	07-Jan-08 10:52 AM	

+="CN53680"	"Supply & installation of data cabling and computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	12-Sep-07	10-Oct-07	66811.40	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:53 AM	

+="CN53681"	"Software Licensing"	="Australian Federal Police"	07-Jan-08	="Software"	10-Sep-07	10-Oct-07	56548.80	=""	="HOLOCENTRIC PTY LTD"	07-Jan-08 10:53 AM	

+="CN53682"	"Advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	10-Sep-07	08-Oct-07	185687.54	=""	="HMA BLAZE PTY LTD"	07-Jan-08 10:53 AM	

+="CN53683"	"Computer Hosting"	="Australian Federal Police"	07-Jan-08	="Computer services"	10-Sep-07	30-Jun-08	29172.00	=""	="VERIZON"	07-Jan-08 10:53 AM	

+="CN53684"	"Computer Equipment"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	10-Sep-07	08-Oct-07	29266.60	=""	="Dell Australia Pty Ltd"	07-Jan-08 10:53 AM	

+="CN53685"	"Security equipment"	="Australian Federal Police"	07-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	07-Sep-07	30-Jun-08	27400.00	=""	="CIC SECURE PTY LTD"	07-Jan-08 10:53 AM	

+="CN53686"	"Internet protocol phone hardware & licences"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	07-Sep-07	30-Sep-07	14566.22	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:53 AM	

+="CN53687-A1"	" Lease of appartment Darwin NT "	="Australian Federal Police"	07-Jan-08	="Lease and rental of property or building"	11-Sep-07	30-Jun-08	33350.00	=""	="BK & BA BIRK"	07-Jan-08 10:53 AM	

+="CN53688"	"Supply & installation of data cabling and computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	11-Sep-07	09-Oct-07	98706.22	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:53 AM	

+="CN53689"	"Supply and Installation of cabling services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	11-Sep-07	09-Oct-07	25385.25	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 10:53 AM	

+="CN53690"	"THEMIS software licence"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	11-Sep-07	09-Oct-07	21802.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	07-Jan-08 10:54 AM	

+="CN53691-A1"	" Provision of recruitment services for International Deployment Group  "	="Australian Federal Police"	07-Jan-08	="Human resources services"	12-Jul-07	30-Jun-08	707916.00	=""	="PROFESSIONAL CAREERS AUST PTY LTD"	07-Jan-08 10:54 AM	

+="CN53692"	"PABX MAINTENANCE"	="Australian Federal Police"	07-Jan-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Sep-07	10-Sep-08	10610.60	="29-2005"	="AVAYA AUSTRALIA PTY LTD"	07-Jan-08 10:54 AM	

+="CN53693"	"Provision of recruitment advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	11-Oct-07	11-Nov-07	24992.07	=""	="HMA BLAZE PTY LTD"	07-Jan-08 11:00 AM	

+="CN53694"	"Symposium 2007 x 6 staff members"	="Australian Federal Police"	07-Jan-08	="Computer services"	11-Oct-07	12-Nov-07	16200.06	=""	="Gartner Australasia Pty Ltd"	07-Jan-08 11:00 AM	

+="CN53696"	"System solution"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	11-Oct-07	08-Nov-07	73187.40	=""	="LEXMARK INTERNATIONAL (AUSTRALIA)"	07-Jan-08 11:01 AM	

+="CN53698"	"'Major Planning' fee"	="Australian Federal Police"	07-Jan-08	="Work related organisations"	11-Oct-07	31-Oct-07	46926.00	=""	="NSW DEPARTMENT OF PLANNING"	07-Jan-08 11:01 AM	

+="CN53699"	"Plate Loaded Gym Equipment"	="Australian Federal Police"	07-Jan-08	="Sports and Recreational Equipment and Supplies and Accessories"	11-Oct-07	22-Nov-07	42858.51	=""	="INTEGRITY FITNESS PTY LTD"	07-Jan-08 11:01 AM	

+="CN53700"	"Hardware & Software"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	12-Oct-07	12-Nov-07	11996.00	=""	="FULCRUM MANAGEMENT PTY LTD"	07-Jan-08 11:01 AM	

+="CN53701"	"Riot Helmets and Carry Bags"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	09-Oct-07	18-Dec-07	64663.50	=""	="PACIFIC HELMETS AUSTRALIA PTY LTD"	07-Jan-08 11:01 AM	

+="CN53702"	"Equipment Kits and Prime Cut Rods"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	09-Oct-07	18-Dec-07	86597.50	=""	="PACIFIC COMMERCIAL DIVING SUPPLIES"	07-Jan-08 11:01 AM	

+="CN53703"	"Petzl Nav Body Croll Fast, Head Lamp, Helmet, Abscibca, Carabineer"	="Australian Federal Police"	07-Jan-08	="Apparel and Luggage and Personal Care Products"	09-Oct-07	30-Jun-08	14426.94	=""	="JURKIEWICZ ADVENTURE STORE"	07-Jan-08 11:01 AM	

+="CN53704"	"Destruction of solid and liquid goods"	="Australian Federal Police"	07-Jan-08	="Chemicals including Bio Chemicals and Gas Materials"	10-Oct-07	31-Oct-07	32139.10	=""	="STERICORP CLINICAL WASTE PTY LTD"	07-Jan-08 11:01 AM	

+="CN53705"	"Computer workstations"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	10-Oct-07	31-Oct-07	10450.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:02 AM	

+="CN53706"	"Trauma Management Modules"	="Australian Federal Police"	07-Jan-08	="Medical Equipment and Accessories and Supplies"	10-Oct-07	10-Nov-07	17051.00	=""	="FRENEY FIRST AID PTY LTD"	07-Jan-08 11:02 AM	

+="CN53707"	"Recruitment Support"	="Australian Federal Police"	07-Jan-08	="Human resources services"	10-Oct-07	21-Nov-07	57697.20	=""	="SCRIBE MANAGEMENT AUSTRALIA"	07-Jan-08 11:02 AM	

+="CN53708"	"Body Armour Kits"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	11-Oct-07	12-Nov-07	33324.00	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	07-Jan-08 11:02 AM	

+="CN53709"	"Supply & Install 32 Channel DVR with 2tb Storage"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Oct-07	30-Oct-07	20654.70	=""	="TAC PACIFIC PTY LTD"	07-Jan-08 11:02 AM	

+="CN53710"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Oct-07	31-Oct-07	69299.57	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 11:02 AM	

+="CN53711"	"Supply/install data cabling & computer hardware"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Oct-07	31-Oct-07	26748.96	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 11:02 AM	

+="CN53712"	"Office Equipment Hire"	="Australian Federal Police"	07-Jan-08	="Audio and visual presentation and composing equipment"	16-Oct-07	16-Nov-07	10302.81	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	07-Jan-08 11:02 AM	

+="CN53713"	"Team Leader Development Program"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	16-Oct-07	16-Nov-07	144000.00	=""	="Melbourne Business School Ltd"	07-Jan-08 11:02 AM	

+="CN53714"	"Language Training Services"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	16-Oct-07	16-Nov-07	12618.88	="JUN-06"	="CIT SOLUTIONS PTY LTD"	07-Jan-08 11:03 AM	

+="CN53715"	"Supply Six Laptop Computers and Accessories"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	16-Oct-07	30-Oct-07	18579.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:03 AM	

+="CN53716"	"Remote First Aid Training"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	16-Oct-07	30-Jun-08	23289.20	=""	="MHS TRAINING PTY LTD"	07-Jan-08 11:03 AM	

+="CN53717"	"Computer workstation"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	12-Oct-07	31-Oct-07	16852.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:03 AM	

+="CN53718"	"Placement Fee"	="Australian Federal Police"	07-Jan-08	="Human resources services"	12-Oct-07	12-Oct-07	11962.50	=""	="EDEN RITCHIE RECRUITMENT P/L"	07-Jan-08 11:03 AM	

+="CN53719"	"Information systems documentation review"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	12-Oct-07	12-Nov-07	15840.00	=""	="ASI Solutions"	07-Jan-08 11:03 AM	

+="CN53720"	"Computer workstations"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	15-Oct-07	31-Oct-07	13062.50	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:03 AM	

+="CN53721"	"Printers"	="Australian Federal Police"	07-Jan-08	="Office machines and their supplies and accessories"	15-Oct-07	31-Oct-07	63192.80	=""	="LEXMARK INTERNATIONAL (AUSTRALIA)"	07-Jan-08 11:03 AM	

+="CN53722"	"Supply and Install Dog Kennels"	="Australian Federal Police"	07-Jan-08	="Animal containment and habitats"	15-Oct-07	15-Oct-07	18000.00	=""	="A.D.I.T. SERVICES PTY LTD"	07-Jan-08 11:03 AM	

+="CN53723"	"Optic Cables"	="Australian Federal Police"	07-Jan-08	="Electrical wire and cable and harness"	15-Oct-07	15-Nov-07	15428.60	=""	="POLLARD & PARTNERS ELECTRICS P/L"	07-Jan-08 11:04 AM	

+="CN53725"	"Standard Workstation with Dual Basic Monitor"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	15-Oct-07	15-Nov-07	10010.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:04 AM	

+="CN53726"	"Ballistic Vests, Plates and Carry Bags"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	02-Oct-07	30-Jun-08	10808.68	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	07-Jan-08 11:04 AM	

+="CN53727"	"Alarm monitoring"	="Australian Federal Police"	07-Jan-08	="National Defence and Public Order and Security and Safety Services"	02-Oct-07	31-Oct-07	19363.00	=""	="ACT EMERGENCY SERVICES AUTHORITY"	07-Jan-08 11:04 AM	

+="CN53728"	"Design & Print ACT Policing Annual Report"	="Australian Federal Police"	07-Jan-08	="Published Products"	02-Oct-07	16-Oct-07	17215.00	=""	="DESIGN DIRECTION"	07-Jan-08 11:04 AM	

+="CN53729"	"Actuarial Services"	="Australian Federal Police"	07-Jan-08	="Public administration and finance services"	02-Oct-07	02-Nov-07	16330.60	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	07-Jan-08 11:04 AM	

+="CN53730"	"Driver Training Course"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	02-Oct-07	02-Nov-07	13318.00	="MAY-05"	="TRANSPORT INDUSTRIES SKILLS CENTRE"	07-Jan-08 11:04 AM	

+="CN53731"	"photocopier"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	03-Oct-07	04-Oct-07	11165.62	=""	="KONICA FINANCE"	07-Jan-08 11:05 AM	

+="CN53732"	"Provision of map and location information"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	03-Oct-07	31-Oct-07	22022.50	=""	="MAPINFO AUSTRALIA PTY LTD"	07-Jan-08 11:05 AM	

+="CN53733"	"Positions Advertisement"	="Australian Federal Police"	07-Jan-08	="Advertising"	03-Oct-07	03-Nov-07	37367.70	=""	="HMA BLAZE PTY LTD"	07-Jan-08 11:05 AM	

+="CN53734"	"LEGAL EXPENSES"	="Australian Federal Police"	07-Jan-08	="Legal services"	29-Jun-07	30-Jun-07	38668.82	=""	="TRIAY & TRIAY"	07-Jan-08 11:05 AM	

+="CN53735"	"TRANSMITTER RECEIVER"	="Australian Federal Police"	07-Jan-08	="Communications Devices and Accessories"	14-Sep-07	04-Oct-07	28050.75	=""	="DOMO"	07-Jan-08 11:05 AM	

+="CN53736"	"TRANSLATION SERVICES"	="Australian Federal Police"	07-Jan-08	="Writing and translations"	24-Sep-07	30-Sep-07	17556.00	=""	="S & B INTERPRETING & TRANSLATING"	07-Jan-08 11:05 AM	

+="CN53737"	"Computer equipment training"	="Australian Federal Police"	07-Jan-08	="Education and Training Services"	21-Aug-07	31-Aug-07	21614.61	=""	="AMERICAN SCIENCE & ENGINEERING"	07-Jan-08 11:05 AM	

+="CN53738"	"INTERNATIONAL SHIPPING"	="Australian Federal Police"	07-Jan-08	="Transport operations"	09-Jun-07	30-Jun-07	10944.38	=""	="GENERAL DYNAMICS - OTS"	07-Jan-08 11:05 AM	

+="CN53739"	"Control Station Software"	="Australian Federal Police"	07-Jan-08	="Software"	20-Aug-07	31-Aug-07	10189.25	=""	="RVISION INC"	07-Jan-08 11:05 AM	

+="CN53740"	"Camera's"	="Australian Federal Police"	07-Jan-08	="Photographic or filming or video equipment"	02-Oct-07	30-Oct-07	47166.90	=""	="CAMERA SOLUTIONS"	07-Jan-08 11:06 AM	

+="CN53741"	"Software Licences"	="Australian Federal Police"	07-Jan-08	="Software"	02-Oct-07	15-Oct-08	22990.00	=""	="STATSEEKER PTY LTD"	07-Jan-08 11:06 AM	

+="CN53742"	"workstations"	="Australian Federal Police"	07-Jan-08	="Computer services"	08-Oct-07	05-Nov-07	17517.50	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:06 AM	

+="CN53743"	"standard laptops"	="Australian Federal Police"	07-Jan-08	="Computer services"	08-Oct-07	05-Nov-07	12705.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:06 AM	

+="CN53744"	"Standard Laptop as per purchasing red: 2892092"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	08-Oct-07	30-Jun-08	10120.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:06 AM	

+="CN53745"	"Weapon Cabinets and Freight"	="Australian Federal Police"	07-Jan-08	="Furniture and Furnishings"	08-Oct-07	30-Jun-08	495839.85	=""	="MULTIFILE"	07-Jan-08 11:06 AM	

+="CN53746"	"Provision of map and location software"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	08-Oct-07	05-Nov-07	87050.10	=""	="MAPINFO AUSTRALIA PTY LTD"	07-Jan-08 11:06 AM	

+="CN53747"	"Photographic Equipment"	="Australian Federal Police"	07-Jan-08	="Photographic or filming or video equipment"	08-Oct-07	08-Nov-07	12330.00	=""	="TED'S CAMERA STORES - CANBERRA"	07-Jan-08 11:06 AM	

+="CN53748"	"Armaments cleaning supplies"	="Australian Federal Police"	07-Jan-08	="Light weapons and ammunition"	08-Oct-07	30-Jun-08	13167.00	=""	="OLIN AUSTRALIA LTD"	07-Jan-08 11:07 AM	

+="CN53749"	"Sharepoint consulting services"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	08-Oct-07	05-Nov-07	35376.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	07-Jan-08 11:07 AM	

+="CN53750"	"Standard Workstations wiht Single & Dual Monitors"	="Australian Federal Police"	07-Jan-08	="Computer Equipment and Accessories"	03-Oct-07	03-Nov-07	22363.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:07 AM	

+="CN53751"	"battery modules"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	04-Oct-07	01-Nov-07	151809.40	="37-2005"	="ABSOLUTE CABLING SYSTEMS PTY LTD"	07-Jan-08 11:07 AM	

+="CN53752"	"Latitude computers"	="Australian Federal Police"	07-Jan-08	="Computer services"	04-Oct-07	01-Nov-07	18832.00	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:07 AM	

+="CN53753"	"Dell opticles"	="Australian Federal Police"	07-Jan-08	="Computer services"	04-Oct-07	01-Nov-07	13615.24	=""	="Dell Australia Pty Ltd"	07-Jan-08 11:07 AM	

+="CN53754"	"professional development training"	="Australian Federal Police"	07-Jan-08	="Public Utilities and Public Sector Related Services"	04-Oct-07	01-Nov-07	20377.50	=""	="TANNER JAMES MANAGEMENT"	07-Jan-08 11:07 AM	

+="CN53755"	"Recruitment Advertising"	="Australian Federal Police"	07-Jan-08	="Advertising"	05-Oct-07	05-Oct-07	13062.50	=""	="GRADUATE CAREERS AUSTRALIA LTD"	07-Jan-08 11:07 AM	

+="CN53756"	"Uniforms"	="Australian Federal Police"	07-Jan-08	="Personal safety and protection"	05-Oct-07	05-Nov-07	28990.50	=""	="MOTOMAN INDUSTRIAL WEAR PTY LTD"	07-Jan-08 11:07 AM	

+="CN53757"	"Employee assistance program monthly fee for servic"	="Australian Federal Police"	07-Jan-08	="Healthcare Services"	05-Oct-07	08-Oct-07	17399.64	="AC3616"	="DAVIDSON TRAHAIRE CORPSYCH P/L"	07-Jan-08 11:07 AM	

+="CN53758"	"Recruitment Services"	="Australian Taxation Office"	07-Jan-08	="Recruitment services"	12-Nov-07	21-Dec-07	33351.92	=""	="Chandler MacLeod Limited"	07-Jan-08 11:09 AM	

+="CN53760"	"Gartner Premier Government Asia/Pacific subscription"	="Australian Taxation Office"	07-Jan-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	31-Oct-08	66770.00	=""	="Gartner Australasia Pty Limited"	07-Jan-08 12:01 PM	

+="CN53761"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	07-Jan-08	="Aircraft"	19-Dec-07	31-Jan-08	27385.39	=""	="Sikorsky Aircraft Australia LTD"	07-Jan-08 12:08 PM	

+="CN53762-A1"	"TRIM:050551. Lexmark ICT Print Services contract extension (Ref 107048)."	="Department of Veterans' Affairs"	07-Jan-08	="Office machines and their supplies and accessories"	25-Dec-07	24-Dec-10	2526104.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LTD"	07-Jan-08 12:20 PM	

+="CN53763"	"IMU Contract Programmer: IMU-ICT022 Official Order IMU2007/066"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	168238.00	=""	="Wylken Pty Ltd"	07-Jan-08 12:20 PM	

+="CN53764"	"IMU Contract Programmer: IMU-ICT081 Official Order: IMU2007/065"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	185275.00	=""	="Peoplebank Australia Pty Ltd"	07-Jan-08 12:20 PM	

+="CN53765"	"IMU Contract Programmer: IMU-ICT027 Official Order: IMU2007/067"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	183146.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	07-Jan-08 12:20 PM	

+="CN53766"	"Building the Webiste for At Ease and The Right Mix (TRM)"	="Department of Veterans' Affairs"	07-Jan-08	="Information Technology Broadcasting and Telecommunications"	07-Dec-07	01-Apr-08	217766.00	=""	="PTG Global"	07-Jan-08 12:20 PM	

+="CN53767-A1"	"Variation to Contract No 107572 as varried by entry no 107832 to include a book of veterans stories."	="Department of Veterans' Affairs"	07-Jan-08	="Medical science research and experimentation"	20-Dec-06	30-Jun-09	169904.00	=""	="Australian General Practice Network"	07-Jan-08 12:20 PM	

+="CN53768-A1"	"Variation to Contract No: 107572 as varied by entry No: 107832 and entry No: 107967 to enhance 'Can Do' for Young People, Families and Carers."	="Department of Veterans' Affairs"	07-Jan-08	="Medical science research and experimentation"	20-Dec-06	30-Jun-09	298100.00	=""	="Australian General Practice Network"	07-Jan-08 12:20 PM	

+="CN53769-A2"	"Provision of Maintenance Services at Isurava and Kokoda"	="Department of Veterans' Affairs"	07-Jan-08	="Building construction and support and maintenance and repair services"	15-Dec-07	14-Dec-10	335140.00	=""	="Banizstaap Co Ltd"	07-Jan-08 12:20 PM	

+="CN53770-A1"	"Provision of an audio guide service at Hellfire Pass Memorial Museum Thailand."	="Department of Veterans' Affairs"	07-Jan-08	="Communications Devices and Accessories"	20-Aug-04	31-Dec-09	96000.00	=""	="Narrowcasters Pty Ltd"	07-Jan-08 12:20 PM	

+="CN53771"	"Provision of design and project management services further to the 2004/05 upgrade of Hellfire Pass Memorial museum, Thailand (107132)"	="Department of Veterans' Affairs"	07-Jan-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Jun-08	36400.00	=""	="Hewitt Pender Associates Pty Ltd"	07-Jan-08 12:20 PM	

+="CN53772"	"Repairs to staff's houses at Rabaul (Bita Paka) War Cemetery"	="Department of Veterans' Affairs"	07-Jan-08	="Building construction and support and maintenance and repair services"	02-Jan-08	31-Mar-08	29938.00	=""	="Lae Builders & Contractors Ltd"	07-Jan-08 12:21 PM	

+="CN53773"	"DVA Consultant: IMU-ICT019 Official Order IMU2007/070"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	13-Dec-07	12-Dec-08	14300.00	=""	="Icon Recruitment Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53774"	"IMU Contract Programmer: IMU-ICT109 Official Order IMU2007/083"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	114400.00	=""	="Peoplebank Australia Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53775"	"IMU Contract Programmer: IMU-ICT016 Official Order IMU2007/078"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	27-Nov-07	29-Feb-08	59400.00	=""	="Peoplebank Australia Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53776"	"IMU Contract Programmer: IMU-ICT107 Official Order IMU2007/086"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	118800.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	07-Jan-08 12:21 PM	

+="CN53777"	"IMU Contract Programmer: IMU-ICT111 Official Order IMU2007-084"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	130900.00	=""	="Peoplebank Australia Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53778"	"IMU Contract Programmer: IMU-ICT030 Official Order IMU2007/076"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	30-Jun-09	313500.00	=""	="Srigo Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53779"	"IMU Contract Programmer: IMU-ICT030 Official Order IMU2007/076 -On Call component"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	30-Jun-09	20236.00	=""	="Srigo Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53780"	"IMU Contract Programmer: IMU-ICT024 Official Order IMU2007/079"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	194234.00	=""	="Reitan Holdings Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53781"	"IMU/BM&I Contract Programmer ICT-CPA002 Official Order 2007/042"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	13-Aug-07	30-Jun-08	434500.00	=""	="Curam Software Pty Ltd"	07-Jan-08 12:21 PM	

+="CN53782"	"IMU/BM&I Contract Programmer: IMU-CPA001 Official Order 2007/041"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	13-Aug-07	30-Jun-08	346500.00	=""	="Curam Software Pty Ltd"	07-Jan-08 12:22 PM	

+="CN53783"	"IMU/BM&I Contract Programmer: IMU-CPA003 Official Order 2007/043"	="Department of Veterans' Affairs"	07-Jan-08	="Computer services"	01-Aug-07	30-Jun-08	475200.00	=""	="Curam Software Pty Ltd"	07-Jan-08 12:22 PM	

+="CN53784"	"Develop, test print & disseminate a clinical algorithm for health practitioners - Official Order No: 04/2007."	="Department of Veterans' Affairs"	07-Jan-08	="Medical science research and experimentation"	01-Oct-07	30-Sep-08	204600.00	=""	="ACPMH"	07-Jan-08 12:22 PM	

+="CN53788"	"SHIRT, MALE AND FEMALE WHITE, MESS, TROPICAL"	="Defence Materiel Organisation"	07-Jan-08	="Military uniforms"	22-Nov-07	05-May-08	34326.60	=""	="AUSTRALIAN  DEFENCE APPAREL"	07-Jan-08 01:48 PM	

+="CN53789-A1"	"    Contactor for offsite Storage of Commonweath Records    "	="National Native Title Tribunal"	07-Jan-08	="File archive storage"	01-Oct-07	31-Aug-11	85000.00	=""	="Iron Mountain Aust Pty Ltd"	07-Jan-08 01:55 PM	

+="CN53792"	"ASLAV Component: Valve, Pneumatic Tire"	="Defence Materiel Organisation"	07-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Sep-07	14-Jan-08	149000.00	=""	="Marathon Tyres"	07-Jan-08 02:16 PM	

+="CN53793"	"COAT, WOMANS, BLUE BARA, WOOL POLY"	="Defence Materiel Organisation"	07-Jan-08	="Military uniforms"	22-Nov-07	03-Mar-08	50275.50	=""	="AUSTRALIAN  DEFENCE APPAREL"	07-Jan-08 02:20 PM	

+="CN53790"	"Design, typesetting & printing Annual Report"	="Office of the Inspector-General of Intelligence and Security"	07-Jan-08	="Typesetting"	08-Oct-07	18-Oct-07	17983.35	=""	="Zoo"	07-Jan-08 03:26 PM	

+="CN53799"	"SUBSCRIPTIONS NOVEMBER 2007"	="Administrative Appeals Tribunal"	07-Jan-08	="Printed media"	25-Oct-07	30-Nov-08	40910.82	=""	="LEXISNEXIS"	07-Jan-08 03:32 PM	

+="CN53800"	"SUBSCRIPTIONS NOVEMBER 2007"	="Administrative Appeals Tribunal"	07-Jan-08	="Printed media"	30-Nov-07	31-Dec-08	48346.70	=""	="THOMSON LEGAL & REGULATORY"	07-Jan-08 03:32 PM	

+="CN53801"	"PRINTING ANNUAL REPORT 06/07"	="Administrative Appeals Tribunal"	07-Jan-08	="Printed media"	13-Nov-07	30-Nov-07	22360.25	=""	="ZOO"	07-Jan-08 03:33 PM	

+="CN53802"	"LAW COURTS RENT & OUTGOINGS JAN - JUN 08"	="Administrative Appeals Tribunal"	07-Jan-08	="Real estate services"	07-Dec-07	30-Jun-08	1479975.00	=""	="UNITED GROUP SERVICES PTY LTD"	07-Jan-08 03:33 PM	

+="CN53803"	"ISP SERVICE DECEMBER 2007"	="Administrative Appeals Tribunal"	07-Jan-08	="Computer services"	14-Dec-07	31-Dec-07	13368.03	=""	="CYBERTRUST AUSTRALIA PTY LTD"	07-Jan-08 03:33 PM	

+="CN53804"	"AIRFARES NOVEMBER 2007"	="Administrative Appeals Tribunal"	07-Jan-08	="Passenger transport"	29-Nov-07	30-Nov-07	20383.41	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	07-Jan-08 03:33 PM	

+="CN53805"	"ACCOMODATION MEMBERS CONFERENCE OCT 07"	="Administrative Appeals Tribunal"	07-Jan-08	="Hotels and lodging and meeting facilities"	31-Oct-07	01-Nov-07	111560.73	=""	="NOVOTEL BAROSSA VALLEY RESORT"	07-Jan-08 03:33 PM	

+="CN53807"	"Focus Group Research Services"	="Australian Fair Pay Commission"	07-Jan-08	="Market research"	16-Nov-07	05-May-08	87560.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	07-Jan-08 03:44 PM	

+="CN53808"	"Research Services: Bulletin Boards - Junior Wages"	="Australian Fair Pay Commission"	07-Jan-08	="Internet based market research"	16-Nov-07	05-May-08	69300.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	07-Jan-08 03:49 PM	

+="CN53809"	"Benchmark Survey"	="Australian Fair Pay Commission"	07-Jan-08	="Market research"	16-Nov-07	05-May-08	53625.00	=""	="Ipsos-Eureka"	07-Jan-08 03:53 PM	

+="CN53811-A1"	"2007 Research Papers"	="Australian Fair Pay Commission"	07-Jan-08	="Typesetting"	05-Dec-07	07-May-08	70699.00	="RFT 07/05"	="Haddon (Vic) Pty Ltd"	07-Jan-08 03:59 PM	

+="CN53814"	"General Wage Review 2008 Focus Groups"	="Australian Fair Pay Commission"	07-Jan-08	="Market research"	16-Nov-07	05-May-08	78870.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	07-Jan-08 04:12 PM	

+="CN53815"	"Research Services: Bulletin Boards - General Minimum Wage"	="Australian Fair Pay Commission"	07-Jan-08	="Internet based market research"	16-Nov-07	05-May-08	62700.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	07-Jan-08 04:17 PM	

+="CN53825"	"Storage and distribution of election material"	="Australian Electoral Commission"	08-Jan-08	="Freight loading or unloading"	13-Dec-07	13-Jan-08	34000.02	=""	="Glen Cameron Nominees Pty Ltd"	08-Jan-08 08:58 AM	

+="CN53826"	"Printing of NAT1432-12.2005. Qty: 200,000"	="Australian Taxation Office"	08-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jan-08	22-Jan-08	12501.50	="06.030"	="Blue Star Print Group t/a National Capital Printing"	08-Jan-08 09:08 AM	

+="CN53827"	"Printing of NAT15103 - Better practice guide.  Qty: 10,000."	="Australian Taxation Office"	08-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Jan-08	30-Jan-08	10173.90	="06.030"	="Paragon Printers"	08-Jan-08 09:11 AM	

+="CN53828-A4"	"Printing of NAT0046 PAYG payment Summary. Qty: 8,500,000."	="Australian Taxation Office"	08-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-Jan-08	31-Mar-09	717230.80	="06.030"	="Ducor Australia Pty Ltd"	08-Jan-08 09:26 AM	

+="CN53829"	"Software Support"	="Australian Electoral Commission"	08-Jan-08	="Software maintenance and support"	01-Jan-08	31-Dec-08	10920.35	=""	="Dimension Data"	08-Jan-08 09:42 AM	

+="CN53831"	"Information Design - Compliance Effectiveness"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	18-Jan-08	23406.00	=""	="Cultur Pty Ltd"	08-Jan-08 09:53 AM	

+="CN53832"	"Computer goods"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	30-Aug-07	30-Sep-07	15791.22	=""	="Dell Australia PTY Limited"	08-Jan-08 10:05 AM	

+="CN53833"	"Data"	="Attorney-General's Department"	08-Jan-08	="Temporary information technology systems or database administrators"	30-Aug-07	30-Aug-07	28600.00	=""	="NSW Registry of Births, Deaths"	08-Jan-08 10:05 AM	

+="CN53834"	"Commercial Lawyer"	="Attorney-General's Department"	08-Jan-08	="Contract law services"	29-Aug-07	30-Jun-08	276000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:05 AM	

+="CN53835"	"Booklets"	="Attorney-General's Department"	08-Jan-08	="Reference books"	29-Aug-07	27-Jun-08	10078.20	=""	="Pirion Pty Limited"	08-Jan-08 10:05 AM	

+="CN53836"	"Accommodation"	="Attorney-General's Department"	08-Jan-08	="Hotels and motels and inns"	29-Aug-07	29-Aug-07	13030.00	=""	="Brassey Hotel"	08-Jan-08 10:05 AM	

+="CN53837"	"Conference"	="Attorney-General's Department"	08-Jan-08	="Hotels and lodging and meeting facilities"	29-Aug-07	29-Aug-07	13200.00	=""	="High Profile Exhibitions Pty Ltd"	08-Jan-08 10:05 AM	

+="CN53838"	"Seminar Costs"	="Attorney-General's Department"	08-Jan-08	="Hotels and lodging and meeting facilities"	29-Aug-07	30-Oct-07	20629.54	=""	="All China Lawyers Association"	08-Jan-08 10:05 AM	

+="CN53839"	"Training"	="Attorney-General's Department"	08-Jan-08	="Re training or refreshing training services"	03-Sep-07	30-Sep-07	11000.00	=""	="Clifton Operations Pty Ltd"	08-Jan-08 10:05 AM	

+="CN53840"	"Translation Services"	="Attorney-General's Department"	08-Jan-08	="Writing and translations"	31-Aug-07	01-Oct-07	26444.88	="AGD 07/14135"	="Linguaset Translations Pty Ltd"	08-Jan-08 10:06 AM	

+="CN53841"	"IT rental"	="Attorney-General's Department"	08-Jan-08	="Commercial or industrial facility rental"	31-Aug-07	30-Jun-08	3500000.00	=""	="Commonwealth Bank"	08-Jan-08 10:06 AM	

+="CN53842"	"Telephone services"	="Attorney-General's Department"	08-Jan-08	="Local telephone service"	31-Aug-07	30-Jun-08	131787.75	=""	="Telstra"	08-Jan-08 10:06 AM	

+="CN53843"	"Telephone services"	="Attorney-General's Department"	08-Jan-08	="Local telephone service"	31-Aug-07	30-Jun-08	99000.00	=""	="Telstra"	08-Jan-08 10:06 AM	

+="CN53844"	"Analysis"	="Attorney-General's Department"	08-Jan-08	="Systems analysis"	31-Aug-07	30-Jun-08	27540.84	=""	="Kaz Group Pty Limited"	08-Jan-08 10:06 AM	

+="CN53845"	"Printers"	="Attorney-General's Department"	08-Jan-08	="Computer printers"	30-Aug-07	30-Jun-08	11946.00	=""	="OFFICE PRODUCTIVITY CENTRE"	08-Jan-08 10:06 AM	

+="CN53846"	"Membership Fee"	="Attorney-General's Department"	08-Jan-08	="Reading books and resources"	29-Aug-07	30-Jun-08	16500.00	=""	="Infohrm Pty Ltd"	08-Jan-08 10:06 AM	

+="CN53847"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	28-Aug-07	02-Feb-08	206999.98	="07/12914"	="Face 2 Face Recruitment Pty Limited"	08-Jan-08 10:06 AM	

+="CN53848"	"Security"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	28-Aug-07	16-Sep-07	52206.00	=""	="Oakton Services Pty Ltd"	08-Jan-08 10:06 AM	

+="CN53849"	"Computer Services"	="Attorney-General's Department"	08-Jan-08	="Mainframe computers"	28-Aug-07	30-Jun-08	28985.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:06 AM	

+="CN53850"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	28-Aug-07	29-Dec-07	11094.00	=""	="Tower & London Pty Ltd"	08-Jan-08 10:07 AM	

+="CN53851"	"Financial Services"	="Attorney-General's Department"	08-Jan-08	="Public enterprises management or financial services"	27-Aug-07	31-May-08	44000.00	=""	="KPMG Chartered Accountants"	08-Jan-08 10:07 AM	

+="CN53852"	"Services"	="Attorney-General's Department"	08-Jan-08	="Legal Research Services"	27-Aug-07	30-Jun-08	40000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:07 AM	

+="CN53853"	"Advertising"	="Attorney-General's Department"	08-Jan-08	="Print advertising"	27-Aug-07	27-Aug-07	11836.00	=""	="Screenmakers Pty Ltd"	08-Jan-08 10:07 AM	

+="CN53854"	"Software Renewal"	="Attorney-General's Department"	08-Jan-08	="Mainframe computers"	28-Aug-07	31-Oct-07	14480.40	=""	="Sun Microsystems Australia Pty Ltd"	08-Jan-08 10:07 AM	

+="CN53855"	"Survey"	="Attorney-General's Department"	08-Jan-08	="Market research"	28-Aug-07	31-Aug-07	13592.87	=""	="AUSTRALIAN BUREAU OF STATISTICS"	08-Jan-08 10:07 AM	

+="CN53856"	"Maintenance"	="Attorney-General's Department"	08-Jan-08	="General building and office cleaning and maintenance services"	28-Aug-07	31-Aug-07	10769.55	="06/11009"	="TAC Pacific Pty Ltd"	08-Jan-08 10:07 AM	

+="CN53857"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	28-Aug-07	28-Feb-08	122408.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:07 AM	

+="CN53858"	"Gas"	="Attorney-General's Department"	08-Jan-08	="Fluid and gas distribution"	28-Aug-07	09-Aug-08	35200.00	=""	="Independent Fuels Australia Pty Ltd"	08-Jan-08 10:07 AM	

+="CN53859"	"Transportation costs"	="Attorney-General's Department"	08-Jan-08	="Road cargo transport"	28-Aug-07	30-Sep-07	38500.00	=""	="TNT Logistics Australia"	08-Jan-08 10:08 AM	

+="CN53860"	"Freight Services"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	28-Aug-07	28-Aug-07	22996.01	=""	="AUSTRALIAN AIR EXPRESS PTY LTD"	08-Jan-08 10:08 AM	

+="CN53861"	"Training"	="Attorney-General's Department"	08-Jan-08	="Re training or refreshing training services"	03-Sep-07	30-Sep-07	60000.00	=""	="Kelimak Pty Ltd"	08-Jan-08 10:08 AM	

+="CN53862"	"Security"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	06-Sep-07	14-Sep-07	47696.00	=""	="Safety Equipment Australia"	08-Jan-08 10:08 AM	

+="CN53863"	"Tickets"	="Attorney-General's Department"	08-Jan-08	="Tickets or ticket rolls"	06-Sep-07	04-Sep-08	16200.00	=""	="Gartner Australasia Pty  Limited"	08-Jan-08 10:08 AM	

+="CN53864"	"Training"	="Attorney-General's Department"	08-Jan-08	="In service training and manpower development"	06-Sep-07	24-Dec-07	12375.00	=""	="Yellow Edge Pty Ltd"	08-Jan-08 10:08 AM	

+="CN53865"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	06-Sep-07	30-Nov-07	52360.00	="07/17242"	="Ayom Holdings Pty Ltd"	08-Jan-08 10:08 AM	

+="CN53866"	"Family Law services"	="Attorney-General's Department"	08-Jan-08	="Family law services"	05-Sep-07	05-Sep-07	117000.00	=""	="Department of Families, Community"	08-Jan-08 10:08 AM	

+="CN53867"	"Legal Assistance"	="Attorney-General's Department"	08-Jan-08	="Social justice or legislation services"	05-Sep-07	30-Jun-08	10112.30	=""	="Senatore Brennan Rasid"	08-Jan-08 10:08 AM	

+="CN53868"	"Transport Costs"	="Attorney-General's Department"	08-Jan-08	="Domestic vessel transport services"	05-Sep-07	05-Sep-07	10231.50	=""	="Cope Transport"	08-Jan-08 10:08 AM	

+="CN53870"	"Legal Assistance"	="Attorney-General's Department"	08-Jan-08	="Business law services"	08-Sep-07	30-Jun-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:09 AM	

+="CN53871"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	07-Sep-07	31-Oct-08	53212.50	=""	="Australia Children's Contact Servic"	08-Jan-08 10:09 AM	

+="CN53872"	"Convention"	="Attorney-General's Department"	08-Jan-08	="Customs conventions"	07-Sep-07	24-Dec-07	41780.00	=""	="National Convention Centre"	08-Jan-08 10:09 AM	

+="CN53873"	"Security Equipment"	="Attorney-General's Department"	08-Jan-08	="Closed circuit television services"	06-Sep-07	31-Dec-07	31870.30	=""	="ADT Security"	08-Jan-08 10:09 AM	

+="CN53874"	"Security Equipment"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	06-Sep-07	31-Dec-07	11962.50	=""	="ADT Security"	08-Jan-08 10:09 AM	

+="CN53875"	"Networks"	="Attorney-General's Department"	08-Jan-08	="Computer or network or internet security"	06-Sep-07	06-Sep-08	10216.58	=""	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:09 AM	

+="CN53876"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	04-Sep-07	04-Sep-07	48510.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:09 AM	

+="CN53877"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary construction services"	03-Sep-07	30-Jun-08	34159.40	=""	="Kaz Group Pty Limited"	08-Jan-08 10:09 AM	

+="CN53878"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	03-Sep-07	30-Sep-07	19715.30	=""	="Kaz Group Pty Limited"	08-Jan-08 10:10 AM	

+="CN53879"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	03-Sep-07	30-Sep-07	23038.40	=""	="Stratsec.Net Pty Ltd"	08-Jan-08 10:10 AM	

+="CN53880"	"Advice on Publication"	="Attorney-General's Department"	08-Jan-08	="Printed publications"	03-Sep-07	03-Sep-07	11000.00	=""	="Peter Ford Consultancy Pty Ltd"	08-Jan-08 10:10 AM	

+="CN53881"	"Training"	="Attorney-General's Department"	08-Jan-08	="Re training or refreshing training services"	03-Sep-07	03-Sep-07	17376.46	=""	="Conflict Management Australasia"	08-Jan-08 10:10 AM	

+="CN53882"	"Training"	="Attorney-General's Department"	08-Jan-08	="Computer vocational training services"	03-Sep-07	30-Jun-08	13035.00	=""	="Nuix Pty Ltd"	08-Jan-08 10:10 AM	

+="CN53883"	"Advertising"	="Attorney-General's Department"	08-Jan-08	="Newspaper advertising"	03-Sep-07	07-Sep-07	14848.52	=""	="HMA BLAZE"	08-Jan-08 10:10 AM	

+="CN53884"	"Evaluation of  Family Law"	="Attorney-General's Department"	08-Jan-08	="Family law services"	04-Sep-07	30-Jun-08	288438.01	="AGD 07/15457"	="KPMG"	08-Jan-08 10:10 AM	

+="CN53885"	"Telephone Service"	="Attorney-General's Department"	08-Jan-08	="Local and long distance telephone communications"	04-Sep-07	01-Mar-08	41550.00	=""	="Transact Capital Communications"	08-Jan-08 10:10 AM	

+="CN53886"	"Defence Equipment"	="Attorney-General's Department"	08-Jan-08	="National security"	04-Sep-07	30-Jun-08	66533.32	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:10 AM	

+="CN53887"	"Defence Equipment"	="Attorney-General's Department"	08-Jan-08	="National security"	04-Sep-07	30-Jun-08	102200.00	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:10 AM	

+="CN53888"	"Monitoring Websites"	="Attorney-General's Department"	08-Jan-08	="Administration software"	03-Sep-07	30-Jun-08	25520.00	=""	="Damec Pty Ltd"	08-Jan-08 10:11 AM	

+="CN53889"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	03-Sep-07	31-Dec-07	70400.00	=""	="Envista Pty Limited"	08-Jan-08 10:11 AM	

+="CN53890"	"Professional Accounting Services"	="Attorney-General's Department"	08-Jan-08	="Tax accounting"	03-Sep-07	30-Jun-08	27500.00	=""	="Maxim Chartered Accountants"	08-Jan-08 10:11 AM	

+="CN53891"	"Computer Equipment"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	15-Aug-07	30-Jun-08	38563.80	=""	="Digital Networks Australia"	08-Jan-08 10:11 AM	

+="CN53892"	"Vetting Services"	="Attorney-General's Department"	08-Jan-08	="Administrative fees or tax collection services"	14-Aug-07	30-Jun-08	20000.00	=""	="Sara Maree Minehan"	08-Jan-08 10:11 AM	

+="CN53893"	"Catering"	="Attorney-General's Department"	08-Jan-08	="Banquet and catering services"	14-Aug-07	14-Aug-07	10931.50	=""	="Connoisseur Catering"	08-Jan-08 10:11 AM	

+="CN53894"	"Advertising"	="Attorney-General's Department"	08-Jan-08	="Print advertising"	14-Aug-07	14-Aug-07	64966.84	=""	="HMA BLAZE"	08-Jan-08 10:11 AM	

+="CN53895"	"Admin  Assistance"	="Attorney-General's Department"	08-Jan-08	="Temporary clerical or administrative assistance"	14-Aug-07	14-Aug-07	19759.98	=""	="SHL Australia Pty Ltd"	08-Jan-08 10:11 AM	

+="CN53896"	"Computer Equipment"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	14-Aug-07	30-Jun-08	13497.23	=""	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:11 AM	

+="CN53897"	"Mail Service"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	14-Aug-07	11-Sep-07	16631.78	=""	="AUSTRALIA POST"	08-Jan-08 10:12 AM	

+="CN53898"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	17-Aug-07	17-Aug-07	11440.00	="0045013682"	="Effective People Pty Ltd"	08-Jan-08 10:12 AM	

+="CN53899"	"Training"	="Attorney-General's Department"	08-Jan-08	="In service training and manpower development"	17-Aug-07	01-Jul-08	45410.00	=""	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	08-Jan-08 10:12 AM	

+="CN53900"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	16-Aug-07	30-Jun-08	1358887.19	=""	="Zinjacket Property Trust"	08-Jan-08 10:12 AM	

+="CN53901"	"Software support"	="Attorney-General's Department"	08-Jan-08	="Computer support organisation"	16-Aug-07	31-Aug-08	14245.00	=""	="EB2B.com Pty Ltd"	08-Jan-08 10:12 AM	

+="CN53902"	"Reviewing Documents"	="Attorney-General's Department"	08-Jan-08	="Budget preparation or review services"	16-Aug-07	30-Jun-08	52283.80	=""	="Blake Dawson"	08-Jan-08 10:12 AM	

+="CN53903"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	15-Aug-07	15-Aug-07	14450.70	=""	="Kaz Group Pty Limited"	08-Jan-08 10:12 AM	

+="CN53904"	"Cleaning Services"	="Attorney-General's Department"	08-Jan-08	="Building cleaning services"	15-Aug-07	31-Jul-08	30241.20	=""	="Halfhide Pty Ltd"	08-Jan-08 10:12 AM	

+="CN53905"	"Distribution of Publications"	="Attorney-General's Department"	08-Jan-08	="Corrugated and other supplies for distribution"	13-Aug-07	30-Jun-08	60500.00	=""	="National Mailing & Marketing"	08-Jan-08 10:12 AM	

+="CN53906"	"Security clearance"	="Attorney-General's Department"	08-Jan-08	="Social security legislation services"	08-Aug-07	30-Jun-08	50000.00	=""	="Australian Federal Police"	08-Jan-08 10:12 AM	

+="CN53907"	"Hardware"	="Attorney-General's Department"	08-Jan-08	="Electronic hardware and component parts and accessories"	08-Aug-07	30-Jun-08	134053.71	=""	="Hewlett-Packard Aust Ltd"	08-Jan-08 10:13 AM	

+="CN53908"	"Data Connections"	="Attorney-General's Department"	08-Jan-08	="Port connection panels"	08-Aug-07	30-Jun-08	72000.01	=""	="Optus Billing Services Pty Ltd"	08-Jan-08 10:13 AM	

+="CN53909"	"Communications"	="Attorney-General's Department"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Aug-07	30-Nov-07	105000.00	=""	="Telstra"	08-Jan-08 10:13 AM	

+="CN53910"	"Training"	="Attorney-General's Department"	08-Jan-08	="In service training and manpower development"	07-Aug-07	30-Jun-08	77000.00	="028160"	="Total Learn Pty Ltd"	08-Jan-08 10:13 AM	

+="CN53911"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	07-Aug-07	30-Jun-08	84319.84	=""	="Kaz Group Pty Limited"	08-Jan-08 10:13 AM	

+="CN53912"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	07-Aug-07	30-Jun-08	81382.30	=""	="Kaz Group Pty Limited"	08-Jan-08 10:13 AM	

+="CN53913"	"Printing"	="Attorney-General's Department"	08-Jan-08	="Publication printing"	13-Aug-07	31-Oct-10	14889.60	=""	="Paragon Printers"	08-Jan-08 10:13 AM	

+="CN53914"	"Training"	="Attorney-General's Department"	08-Jan-08	="Electronics vocational training services"	13-Aug-07	17-Aug-07	14256.00	=""	="ESRI Australia Pty Ltd"	08-Jan-08 10:13 AM	

+="CN53915"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	09-Aug-07	30-Jun-08	53027.70	=""	="WIZARD PERSONNEL & OFFICE"	08-Jan-08 10:13 AM	

+="CN53916"	"Project support"	="Attorney-General's Department"	08-Jan-08	="Feasibility studies or screening of project ideas"	09-Aug-07	30-Jun-08	26400.00	=""	="Leap Legal Software Pty. Limited"	08-Jan-08 10:13 AM	

+="CN53917"	"Car Lease"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	09-Aug-07	30-Jun-08	37890.89	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:14 AM	

+="CN53918-A4"	"Legislation printing"	="Attorney-General's Department"	08-Jan-08	="Printing"	09-Aug-07	30-Jun-10	648450.00	=""	="Canprint Communications Pty Ltd"	08-Jan-08 10:14 AM	

+="CN53919"	"Media equipment"	="Attorney-General's Department"	08-Jan-08	="Electronic media or data duplicating equipment"	09-Aug-07	30-Jun-08	15949.95	=""	="Kaz Group Pty Limited"	08-Jan-08 10:14 AM	

+="CN53920"	"Sand bags"	="Attorney-General's Department"	08-Jan-08	="Sandbags or sandbag sets for rehabilitation or therapy"	17-Aug-07	17-Aug-07	14421.00	=""	="HK Logistics Pty Ltd"	08-Jan-08 10:14 AM	

+="CN53921"	"Equipment"	="Attorney-General's Department"	08-Jan-08	="National security"	23-Aug-07	30-Jun-08	162375.00	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:14 AM	

+="CN53922"	"Equipment"	="Attorney-General's Department"	08-Jan-08	="National security"	23-Aug-07	30-Jun-08	162375.00	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:14 AM	

+="CN53923"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	23-Aug-07	31-Oct-07	14218.77	=""	="Kaz Group Pty Limited"	08-Jan-08 10:14 AM	

+="CN53924"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	23-Aug-07	30-Sep-07	42556.80	=""	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:14 AM	

+="CN53925"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	23-Aug-07	22-Feb-08	161535.00	=""	="Southern Cross Computing Pty Ltd"	08-Jan-08 10:14 AM	

+="CN53926"	"Vetting Services"	="Attorney-General's Department"	08-Jan-08	="National security"	23-Aug-07	30-Jun-08	28834.00	="02/3210"	="The Ingram Trust"	08-Jan-08 10:14 AM	

+="CN53927"	"Voice Services"	="Attorney-General's Department"	08-Jan-08	="Interactive voice response service"	22-Aug-07	30-Jun-08	329969.61	=""	="Telstra"	08-Jan-08 10:15 AM	

+="CN53928"	"Software"	="Attorney-General's Department"	08-Jan-08	="Administration software"	27-Aug-07	01-Sep-07	79255.00	=""	="Oakton AA Services Pty Ltd"	08-Jan-08 10:15 AM	

+="CN53929"	"IT services"	="Attorney-General's Department"	08-Jan-08	="Information technology consultation services"	24-Aug-07	26-Oct-07	19635.00	=""	="Kellaway Pty Limited"	08-Jan-08 10:15 AM	

+="CN53930"	"Legal Costs"	="Attorney-General's Department"	08-Jan-08	="Criminal law services"	24-Aug-07	30-Jun-08	75080.26	=""	="Leigh Day & Co Solicitors"	08-Jan-08 10:15 AM	

+="CN53931"	"Air Conditioning"	="Attorney-General's Department"	08-Jan-08	="Air conditioning installation or maintenance or repair services"	23-Aug-07	30-Apr-09	17325.00	=""	="CBD Refrigeration and Air"	08-Jan-08 10:15 AM	

+="CN53932"	"Maintenance Renewal"	="Attorney-General's Department"	08-Jan-08	="Software maintenance and support"	23-Aug-07	30-Jun-08	11510.40	=""	="Quest Software Pty Ltd"	08-Jan-08 10:15 AM	

+="CN53933"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	23-Aug-07	31-Aug-07	31680.00	="06/18397"	="Clicks Recruit Pty Ltd"	08-Jan-08 10:15 AM	

+="CN53934"	"Generator"	="Attorney-General's Department"	08-Jan-08	="Power generators"	23-Aug-07	30-Apr-09	259534.00	=""	="Shepherd Electrical"	08-Jan-08 10:15 AM	

+="CN53935"	"Maintenance"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	22-Aug-07	31-Dec-07	48000.00	=""	="Centrelink"	08-Jan-08 10:15 AM	

+="CN53936"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Aug-07	31-Aug-07	11729.30	=""	="Gillian Beaumont"	08-Jan-08 10:15 AM	

+="CN53937"	"DVS Project"	="Attorney-General's Department"	08-Jan-08	="Trade projections"	20-Aug-07	31-Dec-07	716527.90	=""	="Centrelink"	08-Jan-08 10:16 AM	

+="CN53938"	"Artwork"	="Attorney-General's Department"	08-Jan-08	="Fine arts"	20-Aug-07	20-Aug-07	11000.00	=""	="Jandamarra Cadd"	08-Jan-08 10:16 AM	

+="CN53939"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	17-Aug-07	30-Sep-07	60249.99	="07/17170"	="KPMG Chartered Accountants"	08-Jan-08 10:16 AM	

+="CN53940"	"Stationery"	="Attorney-General's Department"	08-Jan-08	="Computer or office equipment cleaning kit"	17-Aug-07	30-Jun-08	38498.35	=""	="Corporate Express"	08-Jan-08 10:16 AM	

+="CN53941"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	17-Aug-07	28-Sep-07	169567.20	=""	="Icon Recruitment Pty Ltd"	08-Jan-08 10:16 AM	

+="CN53942"	"Mail Service"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	17-Aug-07	30-Jun-08	139974.38	=""	="AUSTRALIA POST"	08-Jan-08 10:16 AM	

+="CN53943"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Aug-07	31-Dec-07	28424.00	="AGD06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:16 AM	

+="CN53944"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="High end computer servers"	21-Aug-07	30-Jun-08	25934.68	=""	="Kaz Group Pty Limited"	08-Jan-08 10:16 AM	

+="CN53945"	"Mailing & Marketing Service"	="Attorney-General's Department"	08-Jan-08	="Sales marketing agencies including print"	21-Aug-07	30-Jun-08	34632.13	=""	="National Mailing & Marketing"	08-Jan-08 10:16 AM	

+="CN53946"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="High end computer servers"	21-Aug-07	30-Jun-08	183710.71	=""	="Kaz Group Pty Limited"	08-Jan-08 10:17 AM	

+="CN53947"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Aug-07	30-Jun-08	70000.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:17 AM	

+="CN53948"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Aug-07	30-Jun-08	70000.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:17 AM	

+="CN53949"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Aug-07	30-Jun-08	50000.01	=""	="Kaz Group Pty Limited"	08-Jan-08 10:17 AM	

+="CN53950"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary research and development services"	22-Oct-07	22-Oct-07	15479.99	=""	="Attachmate Australasia Pty Ltd"	08-Jan-08 10:17 AM	

+="CN53951"	"Recording Equipment"	="Attorney-General's Department"	08-Jan-08	="Digital voice recorders"	22-Oct-07	30-Oct-07	12045.00	=""	="TPR Systems"	08-Jan-08 10:17 AM	

+="CN53952"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Commercial or industrial facility rental"	22-Oct-07	30-Jun-08	1142726.50	=""	="HAMIB Pty Ltd"	08-Jan-08 10:17 AM	

+="CN53953"	"Computer Support"	="Attorney-General's Department"	08-Jan-08	="Computer support organisation"	22-Oct-07	30-Jun-08	18370.95	=""	="Kaz Group Pty Limited"	08-Jan-08 10:17 AM	

+="CN53954"	"Security Equipment"	="Attorney-General's Department"	08-Jan-08	="Locks and security hardware and accessories"	22-Oct-07	31-Dec-07	44547.25	=""	="Blue Force Pty LTd"	08-Jan-08 10:17 AM	

+="CN53955"	"Maintenance Services"	="Attorney-General's Department"	08-Jan-08	="Computer support organisation"	22-Oct-07	09-Oct-08	32909.80	=""	="INFRA CORPORATION PTY LTD"	08-Jan-08 10:18 AM	

+="CN53956"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Computer servers"	22-Oct-07	31-Dec-07	52910.23	=""	="Hewlett Packard Australia Pty Ltd"	08-Jan-08 10:18 AM	

+="CN53957"	"Computer Hardware Maintenance"	="Attorney-General's Department"	08-Jan-08	="Computer support organisation"	23-Oct-07	23-Oct-07	100816.87	="07/13009"	="WEBSECURE TECHNOLOGIES"	08-Jan-08 10:18 AM	

+="CN53958"	"Internet Charges"	="Attorney-General's Department"	08-Jan-08	="Internet services"	23-Oct-07	23-Oct-07	53544.10	=""	="Cybertrust Australia Pty Ltd"	08-Jan-08 10:18 AM	

+="CN53959"	"Training Consumables"	="Attorney-General's Department"	08-Jan-08	="Education and Training Services"	23-Oct-07	31-Dec-07	17550.50	=""	="NIOA Trading"	08-Jan-08 10:18 AM	

+="CN53960"	"Carpet"	="Attorney-General's Department"	08-Jan-08	="Carpeting"	23-Oct-07	31-Oct-07	10098.00	=""	="CANBERRA FLOORCRAFT PTY LTD"	08-Jan-08 10:18 AM	

+="CN53961"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	23-Oct-07	30-Jun-09	11000.00	=""	="Piper Alderman"	08-Jan-08 10:18 AM	

+="CN53962"	"Development work"	="Attorney-General's Department"	08-Jan-08	="Management development"	22-Oct-07	22-Oct-07	12771.00	=""	="Noggin Pty Ltd"	08-Jan-08 10:18 AM	

+="CN53963"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	22-Oct-07	22-Oct-07	84150.00	="07/13007"	="Pure Hacking Unit Trust"	08-Jan-08 10:18 AM	

+="CN53964"	"Printing Equipment"	="Attorney-General's Department"	08-Jan-08	="Computer printers"	19-Oct-07	30-Oct-07	10450.00	=""	="Canon Australia"	08-Jan-08 10:19 AM	

+="CN53965"	"Contract Employment"	="Attorney-General's Department"	08-Jan-08	="Unemployment services"	16-Oct-07	23-Nov-07	33972.65	=""	="Hudson Global Resources"	08-Jan-08 10:19 AM	

+="CN53966"	"Works to Building"	="Attorney-General's Department"	08-Jan-08	="General building construction"	16-Oct-07	30-Oct-07	59258.10	=""	="Hytec Carpentry Services"	08-Jan-08 10:19 AM	

+="CN53967"	"Construction Costs"	="Attorney-General's Department"	08-Jan-08	="General building construction"	16-Oct-07	30-Apr-09	8938080.80	=""	="ISPT"	08-Jan-08 10:19 AM	

+="CN53968"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	16-Oct-07	01-Jul-08	308001.10	=""	="United Process Solutions Pty Limite"	08-Jan-08 10:19 AM	

+="CN53969"	"Indigenous Solutions"	="Attorney-General's Department"	08-Jan-08	="Archaic or indigenous language services"	15-Oct-07	15-Oct-07	20000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:19 AM	

+="CN53970"	"Event Coordination"	="Attorney-General's Department"	08-Jan-08	="Meetings events"	15-Oct-07	15-Oct-07	29746.48	=""	="Morris Walker Pty. Ltd."	08-Jan-08 10:19 AM	

+="CN53971"	"Furniture"	="Attorney-General's Department"	08-Jan-08	="Office furniture"	12-Oct-07	30-Nov-07	274143.10	="04/84"	="Cite Office Design"	08-Jan-08 10:19 AM	

+="CN53972"	"Whiteboards"	="Attorney-General's Department"	08-Jan-08	="Interactive whiteboards or accessories"	19-Oct-07	31-Oct-07	25740.05	="1"	="RUTLEDGE ENGINEERING (AUST) PTY LTD"	08-Jan-08 10:19 AM	

+="CN53973"	"Sponsorship"	="Attorney-General's Department"	08-Jan-08	="Sports event promotion and sponsorship"	19-Oct-07	30-Oct-07	10000.00	=""	="State Emergency Service NSW"	08-Jan-08 10:19 AM	

+="CN53974"	"Sponsorship"	="Attorney-General's Department"	08-Jan-08	="Sports event promotion and sponsorship"	19-Oct-07	30-Oct-07	10000.00	=""	="AUSTRALASIAN ROAD RESCUE"	08-Jan-08 10:20 AM	

+="CN53975"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	19-Oct-07	19-Oct-07	33000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:20 AM	

+="CN53976"	"Contract Employment"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	17-Oct-07	16-Nov-07	10986.39	="06/18414"	="Icon Recruitment Pty Ltd"	08-Jan-08 10:20 AM	

+="CN53977"	"Web Threat Assessment"	="Attorney-General's Department"	08-Jan-08	="World wide web WWW site design services"	17-Oct-07	30-Oct-07	23587.50	=""	="KPMG Chartered Accountants"	08-Jan-08 10:20 AM	

+="CN53978"	"Maintenance Fees"	="Attorney-General's Department"	08-Jan-08	="Maintenance or support fees"	17-Oct-07	24-Jan-08	38347.82	="07/13009"	="3D Networks Australia Pty Ltd"	08-Jan-08 10:20 AM	

+="CN53979"	"Design"	="Attorney-General's Department"	08-Jan-08	="Workstations and office packages"	23-Oct-07	23-Oct-07	23582.25	=""	="Moreton Hire Service"	08-Jan-08 10:20 AM	

+="CN53980"	"Recruitment costs"	="Attorney-General's Department"	08-Jan-08	="Recruitment services"	26-Oct-07	30-Oct-07	46200.00	=""	="Hoban Recruitment"	08-Jan-08 10:20 AM	

+="CN53981"	"Training"	="Attorney-General's Department"	08-Jan-08	="Labour training or development"	26-Oct-07	30-Oct-07	13860.00	=""	="Noesis Learning  Pty Ltd ATF"	08-Jan-08 10:20 AM	

+="CN53982"	"Translation Services"	="Attorney-General's Department"	08-Jan-08	="Written translation services"	26-Oct-07	30-Oct-07	17556.00	=""	="S&B Interpreting and Translating"	08-Jan-08 10:20 AM	

+="CN53983"	"Warranty for Servers"	="Attorney-General's Department"	08-Jan-08	="Computer servers"	25-Oct-07	23-Oct-08	12341.07	="07/13009"	="Dell Australia PTY Limited"	08-Jan-08 10:21 AM	

+="CN53984"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Computer Equipment and Accessories"	25-Oct-07	31-Dec-07	29595.46	="07/13009"	="Kaz Group Pty Limited"	08-Jan-08 10:21 AM	

+="CN53985"	"Booklets"	="Attorney-General's Department"	08-Jan-08	="Instruction sheets or booklets"	25-Oct-07	30-Dec-07	60500.00	=""	="LA TROBE UNIVERSITY"	08-Jan-08 10:21 AM	

+="CN53986"	"Communication Services"	="Attorney-General's Department"	08-Jan-08	="Communications server software"	25-Oct-07	20-Dec-07	22000.00	=""	="DEPT OF FINANCE & ADMINISTRATION"	08-Jan-08 10:21 AM	

+="CN53987"	"Cabinets"	="Attorney-General's Department"	08-Jan-08	="Housings and cabinets"	30-Oct-07	30-Oct-07	21794.85	=""	="Planex Sales Pty Ltd"	08-Jan-08 10:21 AM	

+="CN53988"	"Venue Hire"	="Attorney-General's Department"	08-Jan-08	="Research programs"	30-Oct-07	30-Nov-07	20486.07	=""	="Rydges Canberra"	08-Jan-08 10:21 AM	

+="CN53989"	"Program"	="Attorney-General's Department"	08-Jan-08	="Public relations programs or services"	30-Oct-07	30-Oct-07	24530.00	=""	="The Australia and New Zealand Schoo"	08-Jan-08 10:21 AM	

+="CN53990"	"Recruitment Costs"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	29-Oct-07	30-Jun-08	25908.16	=""	="Kaz Group Pty Limited"	08-Jan-08 10:21 AM	

+="CN53991"	"Monitoring Services"	="Attorney-General's Department"	08-Jan-08	="Environmental monitoring"	29-Oct-07	30-Jun-08	149924.70	="04/6094"	="Media Monitors Australia"	08-Jan-08 10:21 AM	

+="CN53992"	"Policy"	="Attorney-General's Department"	08-Jan-08	="Archaic or indigenous language services"	26-Oct-07	30-Oct-07	20000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:21 AM	

+="CN53993"	"Registration"	="Attorney-General's Department"	08-Jan-08	="International labour registration services"	26-Oct-07	30-Oct-07	11825.00	=""	="Australian Public Service"	08-Jan-08 10:21 AM	

+="CN53994"	"Telephone Charges"	="Attorney-General's Department"	08-Jan-08	="Communications Devices and Accessories"	25-Oct-07	30-Nov-07	48262.06	=""	="Telstra"	08-Jan-08 10:22 AM	

+="CN53995"	"Safety Barriers"	="Attorney-General's Department"	08-Jan-08	="Barriers"	25-Oct-07	31-Oct-07	22000.00	=""	="Redbox Design Group Pty Ltd"	08-Jan-08 10:22 AM	

+="CN53996"	"Artwork"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	24-Oct-07	31-Jul-08	13640.04	=""	="Artbank"	08-Jan-08 10:22 AM	

+="CN53997"	"Database Subscription"	="Attorney-General's Department"	08-Jan-08	="Temporary information technology systems or database administrators"	24-Oct-07	30-Oct-07	16500.00	=""	="PROQUEST"	08-Jan-08 10:22 AM	

+="CN53998"	"Registration"	="Attorney-General's Department"	08-Jan-08	="International labour registration services"	24-Oct-07	30-Oct-07	16500.00	=""	="Workplace Training Advisory Austral"	08-Jan-08 10:22 AM	

+="CN53999"	"Building Work"	="Attorney-General's Department"	08-Jan-08	="Building construction and support and maintenance and repair services"	24-Oct-07	30-Nov-07	59788.30	=""	="Hytec Carpentry Services"	08-Jan-08 10:22 AM	

+="CN54000"	"Carpet"	="Attorney-General's Department"	08-Jan-08	="Tufted carpeting"	24-Oct-07	30-Oct-07	10098.00	=""	="CANBERRA FLOORCRAFT PTY LTD"	08-Jan-08 10:22 AM	

+="CN54001"	"IT System"	="Attorney-General's Department"	08-Jan-08	="Information technology consultation services"	23-Oct-07	30-Jun-08	152101.40	=""	="Hyro Solutions Pty Limited"	08-Jan-08 10:22 AM	

+="CN54002"	"Recruitment Costs"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	25-Oct-07	31-Dec-07	27500.00	=""	="Hansen & Searson"	08-Jan-08 10:22 AM	

+="CN54003"	"Development Work"	="Attorney-General's Department"	08-Jan-08	="Management development"	25-Oct-07	30-Oct-07	17226.00	="06-4960"	="DEBORAH NANSCHILD & ASSOCIATES"	08-Jan-08 10:22 AM	

+="CN54004-A3"	"Project Management Services"	="Attorney-General's Department"	08-Jan-08	="Project management"	25-Oct-07	31-Aug-10	5430826.52	="07/11070"	="Oakton AA Services Pty Ltd"	08-Jan-08 10:23 AM	

+="CN54005"	"Subscription"	="Attorney-General's Department"	08-Jan-08	="Management support services"	25-Oct-07	30-Oct-07	12100.00	=""	="Emerald MCB UP Ltd"	08-Jan-08 10:23 AM	

+="CN54006"	"Contract employment"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	25-Oct-07	14-Dec-07	22000.00	=""	="Hays Personnel Services (Aust) PL"	08-Jan-08 10:23 AM	

+="CN54007"	"Contracting"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	25-Oct-07	30-Oct-07	19635.00	=""	="Kellaway Pty Limited"	08-Jan-08 10:23 AM	

+="CN54008"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Commercial or industrial facility rental"	25-Oct-07	29-Dec-07	101200.00	=""	="L J Hooker Commercial - Canberra"	08-Jan-08 10:23 AM	

+="CN54009"	"Research"	="Attorney-General's Department"	08-Jan-08	="Market research"	19-Sep-07	30-Jun-08	91905.00	=""	="Open Mind Research Group"	08-Jan-08 10:23 AM	

+="CN54010"	"Recruitment"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	18-Sep-07	30-Sep-07	17402.00	=""	="DEBORAH NANSCHILD & ASSOCIATES"	08-Jan-08 10:23 AM	

+="CN54011"	"Software Services"	="Attorney-General's Department"	08-Jan-08	="Document management software"	18-Sep-07	01-Nov-07	49761.36	="07/16856"	="Tower Software"	08-Jan-08 10:23 AM	

+="CN54012"	"Computer Goods"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	18-Sep-07	30-Jun-08	41725.77	=""	="Kaz Group Pty Limited"	08-Jan-08 10:23 AM	

+="CN54013"	"Maintenance"	="Attorney-General's Department"	08-Jan-08	="Integrated maintenance information systems"	18-Sep-07	30-Jun-08	57498.72	=""	="Kaz Group Pty Limited"	08-Jan-08 10:23 AM	

+="CN54014"	"Conference Sponsorship"	="Attorney-General's Department"	08-Jan-08	="Sponsorship of event or celebrity"	18-Sep-07	30-Jun-08	16500.00	=""	="BAQ TRUST"	08-Jan-08 10:24 AM	

+="CN54015"	"IT Maintenance"	="Attorney-General's Department"	08-Jan-08	="Telecom equipment maintenance or support"	17-Sep-07	17-Sep-07	62700.00	=""	="Australian Red Cross"	08-Jan-08 10:24 AM	

+="CN54016"	"Newspaper Advertising"	="Attorney-General's Department"	08-Jan-08	="Print advertising"	26-Sep-07	30-Sep-07	10336.48	=""	="HMA BLAZE"	08-Jan-08 10:24 AM	

+="CN54017"	"2007-08 Smartboards"	="Attorney-General's Department"	08-Jan-08	="Call centre bureau services"	25-Sep-07	30-Sep-07	18997.78	=""	="Electroboard Solutions Pty Ltd"	08-Jan-08 10:24 AM	

+="CN54018"	"Provision of awareness raising activities"	="Attorney-General's Department"	08-Jan-08	="Sales and business promotion activities"	24-Sep-07	30-Apr-08	45747.11	=""	="Australian Crime Commission"	08-Jan-08 10:24 AM	

+="CN54019"	"CIPMA Launch Video"	="Attorney-General's Department"	08-Jan-08	="Production logging downhole video services"	24-Sep-07	30-Sep-07	19316.00	=""	="Bearcage Productions"	08-Jan-08 10:24 AM	

+="CN54020"	"Secure Gateway Contingency"	="Attorney-General's Department"	08-Jan-08	="Network gateway"	24-Sep-07	30-Nov-07	43848.01	=""	="Kaz Group Pty Limited"	08-Jan-08 10:24 AM	

+="CN54021"	"Freight Charges"	="Attorney-General's Department"	08-Jan-08	="Freight forwarders services"	24-Sep-07	30-Jun-08	17762.65	=""	="AUSTRALIAN AIR EXPRESS PTY LTD"	08-Jan-08 10:24 AM	

+="CN54022"	"DFAT/DVS Interface Maintenance 2007-2010"	="Attorney-General's Department"	08-Jan-08	="Integrated maintenance information systems"	21-Sep-07	30-Jun-10	1640763.30	=""	="Dept of Foreign Affairs & Trade"	08-Jan-08 10:24 AM	

+="CN54023"	"Service & Equipment"	="Attorney-General's Department"	08-Jan-08	="Local telephone service"	14-Sep-07	31-Dec-07	141000.00	=""	="Telstra"	08-Jan-08 10:24 AM	

+="CN54024"	"Furniture Supply"	="Attorney-General's Department"	08-Jan-08	="Office furniture"	13-Sep-07	28-Dec-07	20152.00	=""	="Corporate Express"	08-Jan-08 10:25 AM	

+="CN54025"	"Work Package"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	13-Sep-07	30-Dec-07	29000.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:25 AM	

+="CN54026"	"Family Pathways Services"	="Attorney-General's Department"	08-Jan-08	="Family law services"	13-Sep-07	30-Jun-08	1620050.17	="994326"	="Universal McCann"	08-Jan-08 10:25 AM	

+="CN54027"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	13-Sep-07	08-Mar-08	154000.00	="07/18787"	="Finite Recruitment Pty ltd"	08-Jan-08 10:25 AM	

+="CN54028"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary financial staffing needs"	13-Sep-07	30-Nov-07	49999.99	=""	="The Trustee for The Cordelta"	08-Jan-08 10:25 AM	

+="CN54029"	"Design of Support System"	="Attorney-General's Department"	08-Jan-08	="Database design"	12-Sep-07	12-Dec-07	150000.00	="RFT01 2005 FILE 05199"	="Commander Integrated Networks"	08-Jan-08 10:25 AM	

+="CN54030"	"Security"	="Attorney-General's Department"	08-Jan-08	="Military rifles"	12-Sep-07	31-Oct-07	10861.05	=""	="Xtek Pty Ltd"	08-Jan-08 10:25 AM	

+="CN54031"	"Market research"	="Attorney-General's Department"	08-Jan-08	="Market research"	14-Sep-07	31-Oct-08	79585.00	=""	="Galaxy DP Pty Ltd"	08-Jan-08 10:25 AM	

+="CN54032"	"Maintenance"	="Attorney-General's Department"	08-Jan-08	="Locks and security hardware and accessories"	14-Sep-07	30-Sep-07	15334.35	=""	="Chubb Electronic Security"	08-Jan-08 10:25 AM	

+="CN54033"	"Technical Support"	="Attorney-General's Department"	08-Jan-08	="Computer hardware maintenance or support"	14-Sep-07	01-Sep-08	17714.24	=""	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:26 AM	

+="CN54034"	"Computer equipment"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	14-Sep-07	01-Sep-08	20321.16	=""	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:26 AM	

+="CN54035"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary technician staffing needs"	14-Sep-07	30-Dec-07	70150.08	=""	="Kaz Group Pty Limited"	08-Jan-08 10:26 AM	

+="CN54036"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary technician staffing needs"	14-Sep-07	30-Dec-07	40001.10	=""	="Kaz Group Pty Limited"	08-Jan-08 10:26 AM	

+="CN54037"	"Admin Services"	="Attorney-General's Department"	08-Jan-08	="Business administration services"	14-Sep-07	30-Dec-07	40000.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:26 AM	

+="CN54038"	"Supply and Install Water Tank"	="Attorney-General's Department"	08-Jan-08	="Water storage tanks"	26-Sep-07	30-Sep-07	12719.01	=""	="Specialised Tank Services"	08-Jan-08 10:26 AM	

+="CN54039"	"IT Equipment"	="Attorney-General's Department"	08-Jan-08	="Personal computers"	10-Oct-07	24-Sep-08	13705.96	="07/13009"	="Dimension Data Australia Pty Ltd"	08-Jan-08 10:26 AM	

+="CN54040"	"IT Charges"	="Attorney-General's Department"	08-Jan-08	="Government information services"	10-Oct-07	26-Oct-07	29271.00	=""	="DEPT OF FINANCE & ADMINISTRATION"	08-Jan-08 10:26 AM	

+="CN54041"	"Contract employment"	="Attorney-General's Department"	08-Jan-08	="Unemployment services"	10-Oct-07	23-Nov-07	23760.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:26 AM	

+="CN54042"	"Advertising"	="Attorney-General's Department"	08-Jan-08	="Print advertising"	10-Oct-07	30-Oct-07	12832.60	=""	="HMA BLAZE"	08-Jan-08 10:27 AM	

+="CN54043"	"Security Equipment"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	10-Oct-07	30-Oct-07	36190.00	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:27 AM	

+="CN54044"	"IT Equipment"	="Attorney-General's Department"	08-Jan-08	="Personal computers"	10-Oct-07	30-Jun-08	42439.76	=""	="Dell Computer Limited"	08-Jan-08 10:27 AM	

+="CN54045"	"Contract Employment"	="Attorney-General's Department"	08-Jan-08	="Unemployment services"	09-Oct-07	30-Jun-08	116022.50	=""	="Evergreen IT Personnel Pty Ltd"	08-Jan-08 10:27 AM	

+="CN54046"	"Computer Equipment"	="Attorney-General's Department"	08-Jan-08	="Configuration management software"	12-Oct-07	30-Jun-08	27766.20	=""	="Kaz Group Pty Limited"	08-Jan-08 10:27 AM	

+="CN54047"	"Computer Equipment"	="Attorney-General's Department"	08-Jan-08	="Computer accessories"	12-Oct-07	30-Jun-08	21725.00	=""	="Hewlett Packard Australia Pty Ltd"	08-Jan-08 10:27 AM	

+="CN54048"	"Financial Assistance"	="Attorney-General's Department"	08-Jan-08	="Development finance"	11-Oct-07	30-Oct-07	20000.00	=""	="Australian Government Solicitor"	08-Jan-08 10:27 AM	

+="CN54049"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Commercial or industrial facility rental"	11-Oct-07	11-Dec-07	36049.59	=""	="CSC Australia Pty Limited"	08-Jan-08 10:27 AM	

+="CN54050"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	11-Oct-07	31-May-11	544105.38	=""	="JLLRLD Pty Ltd"	08-Jan-08 10:27 AM	

+="CN54051"	"Scribing Services"	="Attorney-General's Department"	08-Jan-08	="Transcribing services"	11-Oct-07	30-Oct-07	67798.50	=""	="Capital Recruitment Services"	08-Jan-08 10:28 AM	

+="CN54052"	"Temporary Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	11-Oct-07	21-Dec-07	29105.25	=""	="Professional Careers Aust P/L"	08-Jan-08 10:28 AM	

+="CN54053"	"Backup Tapes"	="Attorney-General's Department"	08-Jan-08	="Blank tapes"	08-Oct-07	30-Nov-07	10890.00	=""	="Sarita Sharma T/AS Tiger Toner"	08-Jan-08 10:28 AM	

+="CN54054"	"Information Technology"	="Attorney-General's Department"	08-Jan-08	="Mainframe computers"	02-Oct-07	30-Nov-07	18392.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:28 AM	

+="CN54055"	"Maintenance"	="Attorney-General's Department"	08-Jan-08	="Building construction and support and maintenance and repair services"	02-Oct-07	30-Oct-07	59788.30	=""	="Hytec Carpentry Services"	08-Jan-08 10:28 AM	

+="CN54056"	"Furniture"	="Attorney-General's Department"	08-Jan-08	="Office furniture"	28-Sep-07	30-Sep-07	44731.50	=""	="Corporate Express"	08-Jan-08 10:28 AM	

+="CN54057"	"Office Furniture Prototyping"	="Attorney-General's Department"	08-Jan-08	="Workstations and office packages"	28-Sep-07	30-Apr-09	46286.63	="05-17939"	="Cite Office Design"	08-Jan-08 10:28 AM	

+="CN54058"	"Storage and Distribution"	="Attorney-General's Department"	08-Jan-08	="General goods storage"	28-Sep-07	31-Jul-08	13222.00	=""	="1ST FLEET PTY. LIMITED"	08-Jan-08 10:28 AM	

+="CN54059"	"IT Equipment"	="Attorney-General's Department"	08-Jan-08	="Computer servers"	28-Sep-07	30-Jun-08	153613.90	=""	="Dell Computer Limited"	08-Jan-08 10:28 AM	

+="CN54060"	"Legal Aid Initiative"	="Attorney-General's Department"	08-Jan-08	="Data base reporting software"	28-Sep-07	30-Nov-07	77136.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:28 AM	

+="CN54061"	"Software"	="Attorney-General's Department"	08-Jan-08	="Project management software"	08-Oct-07	05-May-08	36641.89	="07#526282DOC"	="e.law Australia Pty Ltd"	08-Jan-08 10:29 AM	

+="CN54062"	"IT Equipment"	="Attorney-General's Department"	08-Jan-08	="Tablet computers"	05-Oct-07	30-Oct-07	40309.50	=""	="Secure Systems Limited"	08-Jan-08 10:29 AM	

+="CN54063"	"Staff Costs"	="Attorney-General's Department"	08-Jan-08	="Permanent professional staff"	05-Oct-07	30-Oct-07	19155.56	=""	="Department of Immigration and"	08-Jan-08 10:29 AM	

+="CN54064"	"Stenograph Elan Mira A3 Shorthand Mach."	="Attorney-General's Department"	08-Jan-08	="Tablet computers"	04-Oct-07	30-Oct-07	27571.96	=""	="Right Touch Stenographic Services"	08-Jan-08 10:29 AM	

+="CN54065"	"Contract employment"	="Attorney-General's Department"	08-Jan-08	="Internet or intranet client application development services"	04-Oct-07	12-Oct-07	24713.92	=""	="Kaz Group Pty Limited"	08-Jan-08 10:29 AM	

+="CN54066"	"Contractor"	="Attorney-General's Department"	08-Jan-08	="Professional procurement services"	03-Oct-07	16-Nov-07	40000.00	=""	="Professional Careers Aust P/L"	08-Jan-08 10:29 AM	

+="CN54067"	"Contract Employment"	="Attorney-General's Department"	08-Jan-08	="Unemployment services"	02-Oct-07	28-Dec-07	54340.00	="07/17576"	="Evergreen IT Personnel Pty Ltd"	08-Jan-08 10:29 AM	

+="CN54068"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	30-Jun-07	30-Jun-07	95400.02	=""	="Kaz Group Pty Limited"	08-Jan-08 10:29 AM	

+="CN54069"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Permanent professional staff"	13-Mar-07	13-Mar-08	58530.41	=""	="Southern Cross Computing Pty Ltd"	08-Jan-08 10:29 AM	

+="CN54070"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	21-Feb-07	31-Mar-07	14467.96	=""	="Kaz Group Pty Limited"	08-Jan-08 10:29 AM	

+="CN54071"	"Provide contractor"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	30-Jun-07	30-Jun-07	90393.20	=""	="Kaz Group Pty Limited"	08-Jan-08 10:30 AM	

+="CN54072"	"Provide contractor"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	20-Feb-07	30-Jun-07	61704.31	=""	="Kaz Group Pty Limited"	08-Jan-08 10:30 AM	

+="CN54073"	"Communication for National Security Campaign"	="Attorney-General's Department"	08-Jan-08	="Communications vocational training services"	19-May-06	10-May-07	22000.00	=""	="Cultural Partners"	08-Jan-08 10:30 AM	

+="CN54074"	"Legal services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	17-Sep-07	30-Oct-17	11045.10	="06/195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:30 AM	

+="CN54075"	"Generator Design & Management"	="Attorney-General's Department"	08-Jan-08	="Power generators"	03-Jul-07	30-Apr-09	36300.00	=""	="W. E. Bassett & Partners Pty Ltd"	08-Jan-08 10:30 AM	

+="CN54076"	"Acoustic Consultancy"	="Attorney-General's Department"	08-Jan-08	="Digital acoustic logging services"	03-Jul-07	30-Apr-09	21230.00	=""	="W. E. Bassett & Partners Pty Ltd"	08-Jan-08 10:30 AM	

+="CN54077"	"New Building Work"	="Attorney-General's Department"	08-Jan-08	="General building construction"	03-Jul-07	30-Apr-09	21076.00	=""	="ISPT"	08-Jan-08 10:30 AM	

+="CN54078"	"New Building Work"	="Attorney-General's Department"	08-Jan-08	="Structural building products"	03-Jul-07	30-Apr-09	96453.50	=""	="ISPT"	08-Jan-08 10:30 AM	

+="CN54079"	"Car Leases"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	03-Jul-07	30-Jun-08	34000.02	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:30 AM	

+="CN54080"	"Police record checks"	="Attorney-General's Department"	08-Jan-08	="National security"	03-Jul-07	30-Jun-08	36100.01	=""	="Australian Federal Police"	08-Jan-08 10:31 AM	

+="CN54081"	"Rent, Energy & Outgoings"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	01-Jun-07	14-May-11	66000.00	=""	="UNIVERSITY OF CANBERRA"	08-Jan-08 10:31 AM	

+="CN54082"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	16-Oct-07	30-Oct-07	15725.05	=""	="Australian Government Solicitor"	08-Jan-08 10:31 AM	

+="CN54083"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	18-Sep-07	22-Oct-07	13864.40	="STANDING ORDER"	="Australian Government Solicitor"	08-Jan-08 10:31 AM	

+="CN54084"	"Family Assistance"	="Attorney-General's Department"	08-Jan-08	="Legal services"	14-Sep-07	31-Jan-08	11316.80	="16700475"	="Department of Child Safety"	08-Jan-08 10:31 AM	

+="CN54085"	"DOTARS Payment -Aug07"	="Attorney-General's Department"	08-Jan-08	="Recruitment services"	11-Oct-07	22-Oct-07	164450.75	=""	="Dept Transport & Regional Services"	08-Jan-08 10:31 AM	

+="CN54086"	"Legal Professional Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	14-Sep-07	12-Dec-07	12819.84	="16700478"	="Department of Child Safety"	08-Jan-08 10:31 AM	

+="CN54087"	"Recruitment"	="Attorney-General's Department"	08-Jan-08	="Recruitment services"	15-Oct-07	22-Oct-07	26955.80	=""	="Graham Clinch & Associates Pty Ltd"	08-Jan-08 10:31 AM	

+="CN54088"	"Professional Fees and Disbursements"	="Attorney-General's Department"	08-Jan-08	="Legal services"	18-Sep-07	20-Sep-17	18530.50	="06#195748DOC"	="Australian Government Solicitor"	08-Jan-08 10:31 AM	

+="CN54089"	"Professional Fees and Disbursements"	="Attorney-General's Department"	08-Jan-08	="Legal services"	14-Sep-07	20-Sep-17	24819.45	="06#195748DOC"	="Australian Government Solicitor"	08-Jan-08 10:31 AM	

+="CN54090"	"Professional fees"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	10-Oct-07	26-Oct-07	10725.00	=""	="Ford Kelly Executive Connection"	08-Jan-08 10:32 AM	

+="CN54091"	"Professional Fees"	="Attorney-General's Department"	08-Jan-08	="Legal services"	18-Sep-07	18-Sep-17	2054803.04	="STANDING OFFER"	="Australian Government Solicitor"	08-Jan-08 10:32 AM	

+="CN54092"	"Actuarial and Associated Costs"	="Attorney-General's Department"	08-Jan-08	="Project administration or planning"	10-Oct-07	25-Oct-07	11600.00	=""	="DEPT OF FINANCE & ADMINISTRATION"	08-Jan-08 10:32 AM	

+="CN54093"	"Professional Development"	="Attorney-General's Department"	08-Jan-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Oct-07	25-Oct-08	17402.00	="06.4960"	="DEBORAH NANSCHILD & ASSOCIATES"	08-Jan-08 10:32 AM	

+="CN54094"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	12-Oct-07	24-Oct-07	10426.35	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:32 AM	

+="CN54095"	"Family Assistance"	="Attorney-General's Department"	08-Jan-08	="Legal services"	19-Sep-07	22-Oct-07	14067.28	="STANDING ORDER"	="VICTORIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:32 AM	

+="CN54096"	"Family Assistance"	="Attorney-General's Department"	08-Jan-08	="Legal services"	03-Oct-07	22-Oct-07	10004.50	="STANDING ORDER"	="NSW DEPT OF COMMUNITY SERVICES"	08-Jan-08 10:32 AM	

+="CN54097"	"Computer Software"	="Attorney-General's Department"	08-Jan-08	="Operating system software"	03-Jul-07	09-Jul-07	16012.61	=""	="Dell Australia PTY Limited"	08-Jan-08 10:32 AM	

+="CN54098"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="02/6052"	="Kibbey Liaison Services"	08-Jan-08 10:32 AM	

+="CN54099"	"Hazmatcad Plus Dectector"	="Attorney-General's Department"	08-Jan-08	="Chemical absorption gas analysers"	10-Jul-07	27-Jun-08	32474.82	=""	="MSA (AUST) PTY LTD"	08-Jan-08 10:33 AM	

+="CN54100"	"Lease costs"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	10-Jul-07	27-Jun-08	108900.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:33 AM	

+="CN54101"	"Freight delivery services"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	10-Jul-07	30-Jun-08	25000.01	=""	="AUSTRALIAN AIR EXPRESS PTY LTD"	08-Jan-08 10:33 AM	

+="CN54102"	"Freight delivery services"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	10-Jul-07	30-Jun-08	25000.01	=""	="Star Track Express Pty Ltd"	08-Jan-08 10:33 AM	

+="CN54103"	"Staff coaching and support 2007-08"	="Attorney-General's Department"	08-Jan-08	="Management staff associations"	10-Jul-07	30-Jun-08	79200.00	=""	="Deborah May"	08-Jan-08 10:33 AM	

+="CN54104"	"Maintenance of copiers for 12 months"	="Attorney-General's Department"	08-Jan-08	="Printer or facsimile or photocopier cleaning supplies"	10-Jul-07	01-May-08	11000.00	=""	="RICOH AUSTRALIA PTY LTD"	08-Jan-08 10:33 AM	

+="CN54105"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="02/4856"	="Bellegarde Marketing & Consultancie"	08-Jan-08 10:33 AM	

+="CN54106"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="97/21603"	="J Sainsbury"	08-Jan-08 10:33 AM	

+="CN54107"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="03/8731"	="Lisa Steel"	08-Jan-08 10:33 AM	

+="CN54108"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	10000.00	="03/8709"	="Intertrace Pty Ltd"	08-Jan-08 10:33 AM	

+="CN54110"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="02/3207"	="Warrick Gates"	08-Jan-08 10:34 AM	

+="CN54111"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="03/8717"	="Richard Coulthard"	08-Jan-08 10:34 AM	

+="CN54112"	"Bulk freight 2007-08"	="Attorney-General's Department"	08-Jan-08	="Mailing or mail pick up or delivery services"	10-Jul-07	30-Jun-08	27500.00	=""	="TNT Express"	08-Jan-08 10:34 AM	

+="CN54113"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	05-Jul-07	16-Jul-07	10079.96	=""	="Hewlett Packard Australia Pty Ltd"	08-Jan-08 10:34 AM	

+="CN54114"	"Vehicle Lease Charges"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	05-Jul-07	30-Jun-08	15326.92	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:34 AM	

+="CN54115"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	05-Jul-07	30-Sep-07	73507.50	=""	="Business Review Group Pty Ltd"	08-Jan-08 10:34 AM	

+="CN54116"	"Acoustic Consultancy"	="Attorney-General's Department"	08-Jan-08	="Digital acoustic logging services"	05-Jul-07	30-Apr-09	41030.00	=""	="W. E. Bassett & Partners Pty Ltd"	08-Jan-08 10:34 AM	

+="CN54117"	"Vehicle Lease Charges"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	05-Jul-07	30-Jun-08	11604.12	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:34 AM	

+="CN54118"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	05-Jul-07	21-Dec-07	106425.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:34 AM	

+="CN54119"	"Rental of Art Work"	="Attorney-General's Department"	08-Jan-08	="Fine arts"	04-Jul-07	30-Jun-08	12155.00	=""	="Artbank"	08-Jan-08 10:35 AM	

+="CN54120"	"Watch Office Alerts"	="Attorney-General's Department"	08-Jan-08	="Surveillance or alarm maintenance or monitoring"	09-Jul-07	30-Jun-08	16500.00	=""	="National Open Source Intelligence G"	08-Jan-08 10:35 AM	

+="CN54121"	"Plant Hire 2007-08"	="Attorney-General's Department"	08-Jan-08	="In plant offices"	09-Jul-07	30-Jun-08	27500.00	="AGD06/12710"	="INSTYLE INDOOR PLANT HIRE"	08-Jan-08 10:35 AM	

+="CN54122"	"Contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	06-Jul-07	30-Jun-08	11000.00	=""	="Gibson Assessments"	08-Jan-08 10:35 AM	

+="CN54123"	"Vehicles lease"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	06-Jul-07	30-Jun-08	55000.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:35 AM	

+="CN54124"	"Vehicles 2007-08"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	06-Jul-07	30-Jun-08	109970.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:35 AM	

+="CN54125"	"Stores 2007-08"	="Attorney-General's Department"	08-Jan-08	="Warehouse stores"	06-Jul-07	30-Jun-08	27500.00	=""	="Corporate Express"	08-Jan-08 10:35 AM	

+="CN54126"	"Cabcharge 2007-08"	="Attorney-General's Department"	08-Jan-08	="Passenger road transportation"	06-Jul-07	30-Jun-08	21963.57	=""	="Cabcharge Australia Pty Ltd"	08-Jan-08 10:35 AM	

+="CN54127"	"07/08 Workers Comp Premium & Regulatory Cont."	="Attorney-General's Department"	08-Jan-08	="Workmens insurance"	01-Jul-07	30-Jun-08	651433.00	=""	="COMCARE"	08-Jan-08 10:35 AM	

+="CN54128"	"Subscriptions"	="Attorney-General's Department"	08-Jan-08	="Passenger air transportation"	28-Jun-07	01-Aug-08	12535.00	=""	="American Express Australia"	08-Jan-08 10:35 AM	

+="CN54129"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Criminal case fees or fines"	29-Jun-07	31-Aug-07	22488.68	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:36 AM	

+="CN54130"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Criminal case fees or fines"	25-Jun-07	31-Aug-07	32431.58	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:36 AM	

+="CN54131"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Recruitment services"	08-Oct-07	31-Oct-07	112000.00	=""	="Department of Families, Community"	08-Jan-08 10:36 AM	

+="CN54132"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	17-Oct-07	24-Oct-07	28966.00	=""	="Robert James Anderson"	08-Jan-08 10:36 AM	

+="CN54133"	"Conference Costs"	="Attorney-General's Department"	08-Jan-08	="Education and Training Services"	25-Sep-07	22-Oct-07	14898.20	=""	="QP Management Pty Ltd"	08-Jan-08 10:36 AM	

+="CN54134"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Criminal case fees or fines"	18-Jun-07	18-Jun-07	12600.01	="06#195748"	="Australian Government Solictor"	08-Jan-08 10:36 AM	

+="CN54135"	"Sponsorship"	="Attorney-General's Department"	08-Jan-08	="Commercial aeroplane travel"	15-Jun-07	02-Aug-07	12000.00	=""	="Australian Federal Police"	08-Jan-08 10:36 AM	

+="CN54136"	"Actuarial Services"	="Attorney-General's Department"	08-Jan-08	="Accounting services"	22-Jun-07	31-Jul-07	11272.80	=""	="Australian Government Actuary"	08-Jan-08 10:36 AM	

+="CN54137"	"Advertisement"	="Attorney-General's Department"	08-Jan-08	="Printed media"	18-Jun-07	31-Jul-07	22395.74	=""	="Adcorp Australia Limited"	08-Jan-08 10:36 AM	

+="CN54138"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Criminal case fees or fines"	18-Jun-07	30-Jul-07	14696.07	=""	="Australian Government Solicitor"	08-Jan-08 10:37 AM	

+="CN54139"	"Media"	="Attorney-General's Department"	08-Jan-08	="Printed media"	30-Jun-07	30-Jun-07	11393.80	=""	="Media Monitors Australia"	08-Jan-08 10:37 AM	

+="CN54140"	"Recruitment Advertising"	="Attorney-General's Department"	08-Jan-08	="Newspaper advertising"	22-Jun-07	25-Jul-07	10667.78	="994328"	="HMA BLAZE"	08-Jan-08 10:37 AM	

+="CN54141"	"Network Funding 07-08"	="Attorney-General's Department"	08-Jan-08	="Community and social services"	11-Sep-07	22-Oct-07	33000.00	=""	="Anglicare NSW"	08-Jan-08 10:37 AM	

+="CN54142"	"2007-08 Network Funding Launceston"	="Attorney-General's Department"	08-Jan-08	="Family planning programs or services"	30-Aug-07	30-Jun-08	33000.00	=""	="Relationships Counselling & Mediati"	08-Jan-08 10:37 AM	

+="CN54143"	"Public Relations Consultancy"	="Attorney-General's Department"	08-Jan-08	="Public relations programs or services"	20-Jun-07	03-Sep-07	28847.50	=""	="Mary Dickie Issues Management Pty L"	08-Jan-08 10:37 AM	

+="CN54144"	"Orientation Training June 2007"	="Attorney-General's Department"	08-Jan-08	="Clerical training"	21-Aug-07	21-Aug-07	10258.12	=""	="CentaCare Family Services"	08-Jan-08 10:37 AM	

+="CN54145"	"License Fees"	="Attorney-General's Department"	08-Jan-08	="Business and corporate management consultation services"	01-Sep-07	30-Jun-08	61016.51	=""	="The Stavridis Discretionary Trust"	08-Jan-08 10:37 AM	

+="CN54146"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	25-May-07	31-Jul-07	21950.50	=".04/5193"	="Law Council Of Australia"	08-Jan-08 10:37 AM	

+="CN54147"	"Business Solutions"	="Attorney-General's Department"	08-Jan-08	="Strategic planning consultation services"	28-Feb-07	20-Jul-07	15394.51	=""	="Hyro Solutions Pty Limited"	08-Jan-08 10:38 AM	

+="CN54148"	"License Fees"	="Attorney-General's Department"	08-Jan-08	="Business and corporate management consultation services"	01-Jul-07	30-Nov-07	60555.13	=""	="The Stavridis Discretionary Trust"	08-Jan-08 10:38 AM	

+="CN54149"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Project management"	31-Jul-07	16-Oct-07	11698.95	="07/17601"	="Kaz Group Pty Limited"	08-Jan-08 10:38 AM	

+="CN54150"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	08-Oct-07	31-Mar-08	89000.00	=""	="Anthony J Meagher"	08-Jan-08 10:38 AM	

+="CN54151"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	03-Oct-07	31-Mar-08	32266.63	=""	="Alister Henskens"	08-Jan-08 10:38 AM	

+="CN54152"	"Network Funding"	="Attorney-General's Department"	08-Jan-08	="Family law services"	19-Sep-07	28-Sep-07	33000.00	=""	="Interrelate"	08-Jan-08 10:38 AM	

+="CN54153"	"2007-08 Network Funding"	="Attorney-General's Department"	08-Jan-08	="Community and social services"	13-Sep-07	27-Sep-07	33000.00	=""	="Centacare"	08-Jan-08 10:38 AM	

+="CN54154"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Family law services"	30-Aug-07	27-Sep-07	10048.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:38 AM	

+="CN54155"	"Travel Costs"	="Attorney-General's Department"	08-Jan-08	="Commercial aeroplane travel"	18-Sep-07	24-Sep-07	13669.07	=""	="Relationships Australia (Vic) Inc."	08-Jan-08 10:38 AM	

+="CN54156"	"Car Hire"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	31-Jul-07	30-Jun-08	17116.00	=""	="Strathfield Hire Car Service"	08-Jan-08 10:39 AM	

+="CN54157"	"Professional Fees"	="Attorney-General's Department"	08-Jan-08	="Legal services"	15-Aug-07	15-Aug-17	53462.20	="06#195748"	="Australian Government Solicitor"	08-Jan-08 10:39 AM	

+="CN54158"	"Disbursements"	="Attorney-General's Department"	08-Jan-08	="Legal services"	31-Jul-07	31-Jul-17	17025.03	="06#195748"	="Australian Government Solicitor"	08-Jan-08 10:39 AM	

+="CN54159"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Legal services"	25-Jul-07	23-Aug-17	17980.05	="06#195748"	="Australian Government Solicitor"	08-Jan-08 10:39 AM	

+="CN54160"	"Security Review"	="Attorney-General's Department"	08-Jan-08	="Network security equipment"	05-Aug-07	05-Aug-07	29040.00	=""	="Microsoft Pty Ltd"	08-Jan-08 10:39 AM	

+="CN54161"	"BizTalk Consultancy"	="Attorney-General's Department"	08-Jan-08	="Application programming services"	27-Jun-07	31-Jul-07	16698.00	=""	="Microsoft Pty Ltd"	08-Jan-08 10:39 AM	

+="CN54162"	"BizTalk Consultancy"	="Attorney-General's Department"	08-Jan-08	="Application programming services"	22-Jul-07	31-Jul-07	17941.84	=""	="Microsoft Pty Ltd"	08-Jan-08 10:39 AM	

+="CN54163"	"BizTalk Consultancy"	="Attorney-General's Department"	08-Jan-08	="Application programming services"	01-Aug-07	01-Aug-07	26422.26	=""	="Microsoft Pty Ltd"	08-Jan-08 10:39 AM	

+="CN54164"	"Professional Fees and Disbursements"	="Attorney-General's Department"	08-Jan-08	="Legal services"	17-Sep-07	20-Sep-17	10838.85	="06#195745DOC"	="Australian Government Solicitor"	08-Jan-08 10:39 AM	

+="CN54165"	"Legal Disbursements"	="Attorney-General's Department"	08-Jan-08	="Legal services"	22-Jun-07	22-Jun-17	19365.00	="06#19574 8DOC"	="Australian Government Solictor"	08-Jan-08 10:40 AM	

+="CN54166"	"Upgrade TM1 GUES"	="Attorney-General's Department"	08-Jan-08	="Development software"	04-Oct-07	22-Nov-07	47200.98	=""	="EXCELERATED CONSULTING PTY LTD"	08-Jan-08 10:40 AM	

+="CN54167"	"Training"	="Attorney-General's Department"	08-Jan-08	="Education and Training Services"	14-Sep-07	15-Oct-07	10150.00	=""	="Leishman Associates Pty Ltd"	08-Jan-08 10:40 AM	

+="CN54168"	"Security"	="Attorney-General's Department"	08-Jan-08	="Security and control equipment"	22-Aug-07	15-Oct-07	19123.10	=""	="Blue Star Print Group Pty Ltd"	08-Jan-08 10:40 AM	

+="CN54169"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Recruitment services"	21-Sep-07	15-Oct-07	10725.00	=""	="Ford Kelly Executive Connection"	08-Jan-08 10:40 AM	

+="CN54170"	"GEUS Annual Maintenance 1 Oct 2007 to 30 Sep 2008"	="Attorney-General's Department"	08-Jan-08	="Modem software"	21-Sep-07	30-Sep-07	33990.00	=""	="EXCELERATED CONSULTING PTY LTD"	08-Jan-08 10:40 AM	

+="CN54171"	"Recruitment"	="Attorney-General's Department"	08-Jan-08	="Personnel recruitment"	24-Aug-07	30-Jun-08	11000.00	=""	="Australian Public Service"	08-Jan-08 10:40 AM	

+="CN54172"	"Training"	="Attorney-General's Department"	08-Jan-08	="Teacher training services"	07-Aug-07	07-Sep-07	16600.00	=""	="Centre for Public Management Pty Lt"	08-Jan-08 10:40 AM	

+="CN54173"	"Consultancy Services"	="Attorney-General's Department"	08-Jan-08	="Information technology consultation services"	20-Aug-07	12-Nov-09	11928.96	="1"	="Davis Computer Consultants P/L"	08-Jan-08 10:40 AM	

+="CN54174"	"Emergency Repatriation Services"	="Attorney-General's Department"	08-Jan-08	="Emergency medical services supplies"	07-Aug-07	21-Aug-07	28895.08	=""	="International SOS (Australasia)"	08-Jan-08 10:40 AM	

+="CN54175"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Business law services"	25-Jul-07	22-Aug-17	17980.05	="06#195748"	="Australian Government Solictor"	08-Jan-08 10:41 AM	

+="CN54176"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Permanent professional staff"	11-Jul-07	31-Dec-07	16478.57	=""	="COMMONWEALTH OMBUDSMAN"	08-Jan-08 10:41 AM	

+="CN54177"	"Insurance"	="Attorney-General's Department"	08-Jan-08	="Liability insurance"	01-Jul-07	30-Jun-08	15297.70	=""	="Comcover"	08-Jan-08 10:41 AM	

+="CN54178"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Permanent professional staff"	11-Jul-07	31-Dec-07	14612.58	=""	="COMMONWEALTH OMBUDSMAN"	08-Jan-08 10:41 AM	

+="CN54179"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Contract law services"	16-Jul-07	17-Jul-07	13750.00	=""	="R.J Howells Pty Ltd"	08-Jan-08 10:41 AM	

+="CN54180"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Contract law services"	19-Jul-07	19-Jul-17	13152.15	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:41 AM	

+="CN54181"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Contract law services"	27-Aug-07	12-Dec-07	24525.00	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:41 AM	

+="CN54182"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Contract law services"	10-Aug-07	10-Aug-17	41421.05	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:41 AM	

+="CN54183"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Defence or criminal law services"	19-Jun-07	17-Sep-07	12224.85	="07/5643"	="Australian Government Solicitor"	08-Jan-08 10:41 AM	

+="CN54184"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	31-May-07	07-Sep-07	12375.00	="06#195748"	="Australian Government Solicitor"	08-Jan-08 10:42 AM	

+="CN54185"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Permanent legal staffing needs"	18-Jun-07	01-Jul-08	12768.80	="06#195748"	="Australian Government Solicitor"	08-Jan-08 10:42 AM	

+="CN54186"	"Catering"	="Attorney-General's Department"	08-Jan-08	="Banquet and catering services"	31-Jul-07	22-Sep-07	55682.01	=""	="Wrest Point Hotel"	08-Jan-08 10:42 AM	

+="CN54187"	"Research"	="Attorney-General's Department"	08-Jan-08	="Textbook or research publishing"	30-Jul-07	30-Jul-08	10000.00	=""	="Christopher Cunneen"	08-Jan-08 10:42 AM	

+="CN54188"	"Security"	="Attorney-General's Department"	08-Jan-08	="Computer or network or internet security"	30-Jul-07	30-Apr-09	31944.00	=""	="Stratsec.Net Pty Ltd"	08-Jan-08 10:42 AM	

+="CN54189"	"Computers"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	30-Jul-07	30-Jun-08	28848.71	=""	="Dell Australia PTY Limited"	08-Jan-08 10:42 AM	

+="CN54190"	"Advertising"	="Attorney-General's Department"	08-Jan-08	="Newspaper advertising"	30-Jul-07	01-Aug-07	30497.87	=""	="HMA BLAZE"	08-Jan-08 10:42 AM	

+="CN54191"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	30-Jul-07	30-Jun-08	200000.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:42 AM	

+="CN54192"	"Book writing"	="Attorney-General's Department"	08-Jan-08	="Academic or scientific article writing"	30-Jul-07	30-Jun-08	20646.43	=""	="Copyright Agency Limited"	08-Jan-08 10:42 AM	

+="CN54193"	"Security"	="Attorney-General's Department"	08-Jan-08	="Safety or security systems installation"	01-Aug-07	01-Aug-07	10780.00	="AGD05/4274"	="TAC Pacific Pty Ltd"	08-Jan-08 10:42 AM	

+="CN54194"	"Staff"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	31-Jul-07	31-Jul-07	39314.28	="07/13327"	="Aurec Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54195"	"IT equipment"	="Attorney-General's Department"	08-Jan-08	="Desktop computers"	31-Jul-07	30-Jun-08	119670.47	=""	="Kaz Group Pty Limited"	08-Jan-08 10:43 AM	

+="CN54196"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	31-Jul-07	30-Sep-07	93500.00	=""	="Edcomp Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54197"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	31-Jul-07	10-Aug-07	22605.00	=""	="Aurec Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54198"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary technician staffing needs"	31-Jul-07	24-Dec-07	82203.66	="AGD06/18397"	="Clicks Recruit Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54199"	"Financial services"	="Attorney-General's Department"	08-Jan-08	="Financial and Insurance Services"	31-Jul-07	30-Jun-08	65000.00	="46006394"	="Enmark Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54200"	"Computers"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	30-Jul-07	30-Jun-08	15219.90	=""	="Kaz Group Pty Limited"	08-Jan-08 10:43 AM	

+="CN54201"	"Maintenance of software"	="Attorney-General's Department"	08-Jan-08	="Mainframe software applications design"	24-Jul-07	31-Jul-07	35443.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:43 AM	

+="CN54202"	"Store Orders"	="Attorney-General's Department"	08-Jan-08	="Warehouse stores"	24-Jul-07	30-Jun-08	15000.00	=""	="Corporate Express"	08-Jan-08 10:43 AM	

+="CN54203"	"Data Communication Charges"	="Attorney-General's Department"	08-Jan-08	="Mass communication services"	24-Jul-07	30-Jun-08	49753.99	=""	="Cybertrust Australia Pty Ltd"	08-Jan-08 10:43 AM	

+="CN54204"	"Sponsorship"	="Attorney-General's Department"	08-Jan-08	="Common fund for commodities services"	24-Jul-07	31-Oct-07	53000.00	=""	="Dept of Police & Emergency"	08-Jan-08 10:44 AM	

+="CN54205"	"Freight & Storage"	="Attorney-General's Department"	08-Jan-08	="Shelving and storage"	24-Jul-07	27-Jun-08	38500.00	=""	="Universal Express"	08-Jan-08 10:44 AM	

+="CN54206"	"Electricity charges"	="Attorney-General's Department"	08-Jan-08	="Supply of single phase electricity"	24-Jul-07	24-Jul-07	60500.00	=""	="Integral Energy"	08-Jan-08 10:44 AM	

+="CN54207"	"Internet & phone charges"	="Attorney-General's Department"	08-Jan-08	="Pay phone provider services"	24-Jul-07	24-Jul-07	33000.00	=""	="Transact Capital Communications"	08-Jan-08 10:44 AM	

+="CN54208"	"Construction"	="Attorney-General's Department"	08-Jan-08	="Fair stands creation or construction"	30-Jul-07	10-Dec-07	34894.74	=""	="Moreton Hire Service"	08-Jan-08 10:44 AM	

+="CN54209"	"CLSIS Helpdesk"	="Attorney-General's Department"	08-Jan-08	="Technical support or help desk services"	27-Jul-07	30-Jun-08	401500.00	=""	="SOFTWARE AG AUSTRALIA PTY LTD"	08-Jan-08 10:44 AM	

+="CN54210"	"Consultant"	="Attorney-General's Department"	08-Jan-08	="Management support services"	27-Jul-07	30-Jun-08	251350.00	=""	="Pegasus Global Pty Ltd"	08-Jan-08 10:44 AM	

+="CN54211"	"Legal Advice"	="Attorney-General's Department"	08-Jan-08	="Technical manual or instruction sheet printing"	26-Jul-07	30-Jun-08	99032.20	=""	="Australian Government Solicitor"	08-Jan-08 10:44 AM	

+="CN54212"	"Review of Funding allocation model"	="Attorney-General's Department"	08-Jan-08	="Concept model"	26-Jul-07	30-Jun-08	16000.00	=""	="John Walker Crime Trends Analysis"	08-Jan-08 10:44 AM	

+="CN54213"	"Motor Vehicle Lease"	="Attorney-General's Department"	08-Jan-08	="Automobiles or cars"	26-Jul-07	30-Jun-08	71020.73	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:45 AM	

+="CN54214"	"Funding Model"	="Attorney-General's Department"	08-Jan-08	="Basic operations models"	26-Jul-07	30-Jun-08	35250.00	=""	="Malcolm Pascoe"	08-Jan-08 10:45 AM	

+="CN54215"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	01-Aug-07	22-Aug-07	193600.00	="06/18414"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:45 AM	

+="CN54216"	"Information"	="Attorney-General's Department"	08-Jan-08	="Government information services"	06-Aug-07	30-Jun-08	55182.05	=""	="Gartner Australasia Pty  Limited"	08-Jan-08 10:45 AM	

+="CN54217"	"Accommodation"	="Attorney-General's Department"	08-Jan-08	="Hotels and motels and inns"	06-Aug-07	30-Aug-07	34540.00	=""	="Crowne Plaza Auckland"	08-Jan-08 10:45 AM	

+="CN54218-A1"	"Emergency Management Plans"	="Attorney-General's Department"	08-Jan-08	="Emergency medical services disaster management products"	06-Aug-07	30-Jun-08	28675.00	=""	="Fire & Emergency Services Authority"	08-Jan-08 10:45 AM	

+="CN54219"	"Vehicle lease"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	03-Aug-07	30-Jun-08	38500.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:45 AM	

+="CN54220"	"Driving Service"	="Attorney-General's Department"	08-Jan-08	="Driving and flying and sailing"	03-Aug-07	30-Jun-08	50600.00	=""	="Comcar"	08-Jan-08 10:45 AM	

+="CN54221"	"Media"	="Attorney-General's Department"	08-Jan-08	="Filter media"	03-Aug-07	30-Jun-08	167200.00	=""	="Media Monitors Australia"	08-Jan-08 10:45 AM	

+="CN54222"	"Car Hire Services"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	03-Aug-07	30-Jun-08	135300.00	=""	="Strathfield Hire Car Service"	08-Jan-08 10:45 AM	

+="CN54223"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Commercial or industrial facility rental"	07-Aug-07	30-Jun-08	856521.46	=""	="NSW Teachers Federation"	08-Jan-08 10:45 AM	

+="CN54226"	"Vehicle Lease Charges"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	07-Aug-07	30-Jun-10	24000.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:46 AM	

+="CN54227"	"Storage"	="Attorney-General's Department"	08-Jan-08	="File archive storage"	06-Aug-07	30-Jun-08	55431.20	=""	="SmartOptics AS"	08-Jan-08 10:46 AM	

+="CN54228"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	06-Aug-07	07-Sep-07	272977.98	=""	="10 Acres Pty Ltd"	08-Jan-08 10:46 AM	

+="CN54229"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	06-Aug-07	02-Feb-08	199299.99	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:46 AM	

+="CN54230"	"Freight"	="Attorney-General's Department"	08-Jan-08	="National postal delivery services"	03-Aug-07	30-Jun-08	17600.00	=""	="AUSTRALIAN AIR EXPRESS PTY LTD"	08-Jan-08 10:46 AM	

+="CN54231"	"Rent"	="Attorney-General's Department"	08-Jan-08	="Lease and rental of property or building"	02-Aug-07	11-Dec-07	215182.52	=""	="CSC Australia Pty Limited"	08-Jan-08 10:46 AM	

+="CN54232"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	02-Aug-07	30-Jun-08	29267.67	=""	="Australian Training Company Limited"	08-Jan-08 10:46 AM	

+="CN54233"	"Review and Report"	="Attorney-General's Department"	08-Jan-08	="Data base reporting software"	02-Aug-07	02-Aug-07	10285.00	=""	="Vision Australia"	08-Jan-08 10:47 AM	

+="CN54234"	"Vetting Services"	="Attorney-General's Department"	08-Jan-08	="National security"	01-Aug-07	30-Jun-08	30000.00	=""	="Jacqueline Murphy"	08-Jan-08 10:47 AM	

+="CN54235"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary financial staffing needs"	01-Aug-07	31-Aug-07	14372.83	=""	="Ambit Group Pty Ltd"	08-Jan-08 10:47 AM	

+="CN54236"	"Consultant"	="Attorney-General's Department"	08-Jan-08	="Business intelligence consulting services"	01-Aug-07	01-Aug-07	78111.00	=""	="Clicks Recruit Pty Ltd"	08-Jan-08 10:47 AM	

+="CN54237"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary production staffing needs"	01-Aug-07	24-Aug-07	85008.00	="06/18414"	="Icon Recruitment Pty Ltd"	08-Jan-08 10:47 AM	

+="CN54238"	"Freight charges"	="Attorney-General's Department"	08-Jan-08	="National postal delivery services"	03-Aug-07	30-Jun-08	12100.00	=""	="TNT Express"	08-Jan-08 10:47 AM	

+="CN54239"	"Newspapers"	="Attorney-General's Department"	08-Jan-08	="Newspapers"	03-Aug-07	30-Jun-08	12100.00	=""	="Manuka Newsagency"	08-Jan-08 10:47 AM	

+="CN54240"	"Stationery"	="Attorney-General's Department"	08-Jan-08	="Workstations and office packages"	03-Aug-07	30-Jun-08	41793.60	=""	="Corporate Express"	08-Jan-08 10:47 AM	

+="CN54241"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Notebook computers"	03-Aug-07	03-Aug-07	27500.00	=""	="OFFICE PRODUCTIVITY CENTRE"	08-Jan-08 10:47 AM	

+="CN54242"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Mainframe computers"	03-Aug-07	30-Jun-08	28737.50	=""	="Kaz Group Pty Limited"	08-Jan-08 10:47 AM	

+="CN54243"	"venue hire"	="Attorney-General's Department"	08-Jan-08	="Exhibitions"	03-Aug-07	27-Jun-08	12598.21	=""	="State Emergency Service NSW"	08-Jan-08 10:48 AM	

+="CN54244"	"Vehicle lease"	="Attorney-General's Department"	08-Jan-08	="Automobiles or cars"	03-Aug-07	30-Jun-08	17334.35	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:48 AM	

+="CN54245"	"Conference room hire, accommodation and catering"	="Attorney-General's Department"	08-Jan-08	="Meeting facilities"	16-Jul-07	21-Sep-07	32000.00	=""	="Hotel Y"	08-Jan-08 10:48 AM	

+="CN54246"	"Conference room hire, accommodation and catering"	="Attorney-General's Department"	08-Jan-08	="Meeting facilities"	16-Jul-07	21-Sep-07	32500.00	=""	="QP Management Pty Ltd"	08-Jan-08 10:48 AM	

+="CN54247"	"Conference room hire, accommodation and catering"	="Attorney-General's Department"	08-Jan-08	="Meeting facilities"	16-Jul-07	21-Sep-07	33000.00	=""	="Citigate Sebel"	08-Jan-08 10:48 AM	

+="CN54248"	"HR Advertising 07-08"	="Attorney-General's Department"	08-Jan-08	="Newspaper advertising"	16-Jul-07	27-Jun-08	17915.60	=""	="HMA BLAZE"	08-Jan-08 10:48 AM	

+="CN54249"	"Media Clips 2007-2008"	="Attorney-General's Department"	08-Jan-08	="Printed media"	16-Jul-07	27-Jun-08	16500.00	=""	="Media Monitors Australia"	08-Jan-08 10:48 AM	

+="CN54250"	"Stationery 2007-08"	="Attorney-General's Department"	08-Jan-08	="Warehouse stores"	16-Jul-07	27-Jun-08	84654.27	=""	="Corporate Express"	08-Jan-08 10:48 AM	

+="CN54251"	"Construction and implementation of operation"	="Attorney-General's Department"	08-Jan-08	="Application implementation services"	16-Jul-07	30-Jun-08	2253171.80	=""	="Australian Crime Commission"	08-Jan-08 10:48 AM	

+="CN54252"	"Storage Costs"	="Attorney-General's Department"	08-Jan-08	="Bulk storage"	17-Jul-07	17-Jul-07	19800.00	=""	="Recall Information Managment"	08-Jan-08 10:48 AM	

+="CN54253"	"Fitout at Ground Floor & Photocopier"	="Attorney-General's Department"	08-Jan-08	="Printer and facsimile and photocopier supplies"	17-Jul-07	30-Apr-09	24200.00	=""	="National Food Industry Strategy"	08-Jan-08 10:49 AM	

+="CN54254"	"AJEM Publication 07-08"	="Attorney-General's Department"	08-Jan-08	="Printed publications"	16-Jul-07	27-Jun-08	33000.00	="EMA0001"	="Grey Worldwide Canberra Pty Ltd"	08-Jan-08 10:49 AM	

+="CN54255"	"Switchboard Operator Services 07-08"	="Attorney-General's Department"	08-Jan-08	="Telephone switchboard part kits"	16-Jul-07	30-Jun-08	264000.00	=""	="Sirius Telecommunications Ltd"	08-Jan-08 10:49 AM	

+="CN54256"	"Conference fees"	="Attorney-General's Department"	08-Jan-08	="Meeting facilities"	16-Jul-07	30-Jun-08	13200.00	=""	="Conference Online NSW"	08-Jan-08 10:49 AM	

+="CN54257"	"Copy and leasing charges"	="Attorney-General's Department"	08-Jan-08	="Photocopying"	16-Jul-07	27-Jun-08	33000.00	=""	="Fuji Xerox Australia PTY LTD"	08-Jan-08 10:49 AM	

+="CN54258"	"Copy charges"	="Attorney-General's Department"	08-Jan-08	="Photocopying"	16-Jul-07	27-Jun-08	22000.00	=""	="Konica Minolta Business Solutions A"	08-Jan-08 10:49 AM	

+="CN54259"	"Facility Maintenance"	="Attorney-General's Department"	08-Jan-08	="General building and office cleaning and maintenance services"	13-Jul-07	27-Jun-08	11000.00	=""	="M & S McInnes"	08-Jan-08 10:49 AM	

+="CN54260"	"Translation Services"	="Attorney-General's Department"	08-Jan-08	="Writing and translations"	11-Jul-07	11-Jul-07	17431.05	=""	="Linguaset Translations Pty Ltd"	08-Jan-08 10:49 AM	

+="CN54261"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	29999.50	="02/8773"	="Angie Fairweather"	08-Jan-08 10:49 AM	

+="CN54262"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	15999.50	="03/8732"	="Bronwyn Williamson"	08-Jan-08 10:49 AM	

+="CN54263"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="01/11353"	="Carmel T Daws"	08-Jan-08 10:50 AM	

+="CN54264"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	20000.00	="03/8756"	="Gary Peters"	08-Jan-08 10:50 AM	

+="CN54265"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="99/4777"	="Peter Roderick Murphy"	08-Jan-08 10:50 AM	

+="CN54266"	"Provision of contracted vetting services"	="Attorney-General's Department"	08-Jan-08	="National security"	10-Jul-07	30-Jun-08	30000.00	="03/8758"	="Jenny Clements Consultancy"	08-Jan-08 10:50 AM	

+="CN54267"	"Temporary Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary personnel services"	12-Jul-07	30-Jun-08	22859.10	="06/18394"	="Face 2 Face Recruitment Pty Limited"	08-Jan-08 10:50 AM	

+="CN54268"	"Furniture"	="Attorney-General's Department"	08-Jan-08	="Freestanding furniture"	12-Jul-07	31-Aug-07	18243.50	=""	="Corporate Express"	08-Jan-08 10:50 AM	

+="CN54269"	"THomson Annual Renewal for the Attorney General"	="Attorney-General's Department"	08-Jan-08	="On line database information retrieval"	12-Jul-07	30-Jun-08	13044.00	=""	="Thomson Legal & Regulatory Ltd"	08-Jan-08 10:50 AM	

+="CN54270"	"Thomson annual renewal for the Solicitor General"	="Attorney-General's Department"	08-Jan-08	="On line database information retrieval"	12-Jul-07	30-Jun-08	24562.00	=""	="Thomson Legal & Regulatory Ltd"	08-Jan-08 10:50 AM	

+="CN54271"	"Clips for photocopying"	="Attorney-General's Department"	08-Jan-08	="Binder or bulldog clips"	12-Jul-07	12-Jul-07	41764.11	=""	="Copyright Agency Limited"	08-Jan-08 10:50 AM	

+="CN54272"	"Telephone Dispute Reesolution Services"	="Attorney-General's Department"	08-Jan-08	="Relationship building or family life skills instructional materials"	12-Jul-07	31-Oct-09	5800116.86	="RFQ07/126"	="Relationships Australia Queensland"	08-Jan-08 10:50 AM	

+="CN54273"	"Server"	="Attorney-General's Department"	08-Jan-08	="Computer servers"	11-Jul-07	31-Jul-07	20297.15	=""	="Dell Australia PTY Limited"	08-Jan-08 10:51 AM	

+="CN54274"	"Vehicle Lease Charges"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	17-Jul-07	30-Jun-08	109940.02	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:51 AM	

+="CN54275"	"LeasePlan Vehicle"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	23-Jul-07	30-Jun-08	21694.32	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:51 AM	

+="CN54276"	"Software maintenance"	="Attorney-General's Department"	08-Jan-08	="Library software"	23-Jul-07	30-Jun-08	16315.20	="AGD07/354313"	="Insight Informatics Pty Ltd"	08-Jan-08 10:51 AM	

+="CN54277"	"Monitors"	="Attorney-General's Department"	08-Jan-08	="Liquid crystal display LCD panels or monitors"	23-Jul-07	31-Aug-07	10615.00	=""	="Dell Australia PTY Limited"	08-Jan-08 10:51 AM	

+="CN54278"	"Computer software, infrastructure & support"	="Attorney-General's Department"	08-Jan-08	="Network monitoring software"	23-Jul-07	31-Aug-07	14718.20	=""	="Dell Australia PTY Limited"	08-Jan-08 10:51 AM	

+="CN54279"	"Backup tapes"	="Attorney-General's Department"	08-Jan-08	="Data storage and backup"	23-Jul-07	31-Aug-07	15421.48	=""	="OLYMPIA OFFICE AND COMPUTER"	08-Jan-08 10:51 AM	

+="CN54280"	"SAP Maintenance"	="Attorney-General's Department"	08-Jan-08	="Computer programmed instruction"	20-Jul-07	30-Jun-08	53295.00	=""	="SAP Australia"	08-Jan-08 10:51 AM	

+="CN54281"	"Vehicle lease"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	20-Jul-07	30-Jun-08	66952.01	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:51 AM	

+="CN54282"	"Project Management"	="Attorney-General's Department"	08-Jan-08	="Urban project or program administration or management services"	24-Jul-07	30-Jun-08	22000.00	=""	="Kaz Group Pty Limited"	08-Jan-08 10:51 AM	

+="CN54283"	"Report Programming"	="Attorney-General's Department"	08-Jan-08	="Client or server programming services"	24-Jul-07	30-Jun-08	105820.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 10:52 AM	

+="CN54284"	"Infastructure"	="Attorney-General's Department"	08-Jan-08	="Interactive voice response service"	23-Jul-07	23-Jul-07	39600.00	=""	="NSC Enterprise Solutions"	08-Jan-08 10:52 AM	

+="CN54285"	"Data charges"	="Attorney-General's Department"	08-Jan-08	="On line data processing"	23-Jul-07	23-Jul-07	165000.00	=""	="Telstra"	08-Jan-08 10:52 AM	

+="CN54286"	"Staffing"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	23-Jul-07	30-Sep-07	82138.29	=""	="Staffing and Office Solutions"	08-Jan-08 10:52 AM	

+="CN54288"	"Annual Renewal for Library Materials 2007-08"	="Attorney-General's Department"	08-Jan-08	="Libraries and related materials"	23-Jul-07	30-Jun-08	133365.31	=""	="Thomson Legal & Regulatory Ltd"	08-Jan-08 10:52 AM	

+="CN54289"	"Contract services"	="Attorney-General's Department"	08-Jan-08	="Temporary legal staffing needs"	23-Jul-07	28-Sep-07	61118.16	=""	="Icon Recruitment Pty Ltd"	08-Jan-08 10:52 AM	

+="CN54290"	"Care Packs"	="Attorney-General's Department"	08-Jan-08	="Personal care products"	20-Jul-07	20-Jul-07	22832.04	=""	="DEPARTMENT OF DEFENCE"	08-Jan-08 10:52 AM	

+="CN54291"	"Development of a funding model"	="Attorney-General's Department"	08-Jan-08	="Concept model"	18-Jul-07	30-Jun-08	21240.00	=""	="Malcolm Pascoe"	08-Jan-08 10:52 AM	

+="CN54292"	"Conference room hire, accommodation and catering"	="Attorney-General's Department"	08-Jan-08	="Hotels and lodging and meeting facilities"	18-Jul-07	21-Sep-07	33000.00	=""	="Work Exchange Bureau P/L T/A"	08-Jan-08 10:53 AM	

+="CN54293"	"Tandberg Edge Solution"	="Attorney-General's Department"	08-Jan-08	="Video and combination video and audio presentation equipment and hardware and controllers"	18-Jul-07	31-Aug-07	102935.36	="AGD07/335323"	="Canberra Professional Equipment"	08-Jan-08 10:53 AM	

+="CN54294"	"Voice outgoing services"	="Attorney-General's Department"	08-Jan-08	="Interactive voice response service"	18-Jul-07	30-Jun-08	275000.00	=""	="AAPT Limited"	08-Jan-08 10:53 AM	

+="CN54295"	"Computer Hardware"	="Attorney-General's Department"	08-Jan-08	="Electronic computers or data processing equipment manufacture services"	18-Jul-07	30-Jun-08	19864.64	=""	="Kaz Group Pty Limited"	08-Jan-08 10:53 AM	

+="CN54296"	"Hire cars and maintenance of cars 12 months"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	17-Jul-07	30-Jun-08	92387.24	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:53 AM	

+="CN54297"	"Works on building"	="Attorney-General's Department"	08-Jan-08	="Building construction and support and maintenance and repair services"	17-Jul-07	31-Aug-07	40785.80	=""	="TAC Pacific Pty Ltd"	08-Jan-08 10:53 AM	

+="CN54298"	"Stores items for 2007/08"	="Attorney-General's Department"	08-Jan-08	="Warehouse stores"	19-Jul-07	30-Jun-08	14980.05	=""	="Corporate Express"	08-Jan-08 10:53 AM	

+="CN54287"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jan-08	06-Feb-08	20123.50	=""	="Volvo Commercial Vehicle Albury"	08-Jan-08 10:53 AM	

+="CN54299"	"Advertising costs for 2007/08"	="Attorney-General's Department"	08-Jan-08	="Newspaper advertising"	19-Jul-07	30-Jun-08	20000.00	=""	="HMA BLAZE"	08-Jan-08 10:53 AM	

+="CN54300"	"Vehicle leasing costs"	="Attorney-General's Department"	08-Jan-08	="Motor vehicles"	19-Jul-07	30-Jun-08	18000.00	=""	="LEASE PLAN AUSTRALIA LTD"	08-Jan-08 10:53 AM	

+="CN54301"	"Contract Services"	="Attorney-General's Department"	08-Jan-08	="Temporary technician staffing needs"	18-Jul-07	30-Jun-08	89496.55	="AGD07/332910"	="Canberra Consulting Resources"	08-Jan-08 10:53 AM	

+="CN54302"	"Legal Services"	="Attorney-General's Department"	08-Jan-08	="Business law services"	18-Jul-07	30-Jun-08	33000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	08-Jan-08 10:54 AM	

+="CN54303"	"Media placement and despatch of phase 3 campaign."	="Attorney-General's Department"	08-Jan-08	="Media placement and fulfilment"	18-Jul-07	30-Jun-08	10340000.00	=""	="Universal McCann"	08-Jan-08 10:54 AM	

+="CN54304"	"Vietnamese translations"	="Attorney-General's Department"	08-Jan-08	="Written translation services"	18-Jul-07	18-Jul-07	13710.28	=""	="Linguaset Translations Pty Ltd"	08-Jan-08 10:54 AM	

+="CN54305"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jan-08	04-Feb-08	13910.79	=""	="Mercedes Benz Aust. Pacific"	08-Jan-08 10:58 AM	

+="CN54306"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Jan-08	28-Jan-08	15000.00	=""	="General Bearing Co PTY LTD"	08-Jan-08 11:01 AM	

+="CN54307"	"Provision of an Employee Assistance Program"	="Australian Pesticides and Veterinary Medicines Authority"	08-Jan-08	="Employee assistance programs"	01-Jul-07	30-Jun-09	14300.00	=""	="OSA Group Pty Ltd"	08-Jan-08 11:05 AM	

+="CN54308"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jan-08	06-Feb-08	16412.22	=""	="LandRover Australia"	08-Jan-08 11:09 AM	

+="CN54309"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jan-08	04-Feb-08	126586.15	=""	="Mercedes Benz Aust. Pacific"	08-Jan-08 11:13 AM	

+="CN54311"	"Analysis of samples of chemical products"	="Australian Pesticides and Veterinary Medicines Authority"	08-Jan-08	="Chemical evaluation instruments and supplies"	17-Dec-07	31-Dec-08	16456.00	=""	="Advance Analytical Australia Pty Ltd"	08-Jan-08 11:24 AM	

+="CN54314"	"4 X SHREDDERS"	="Australian Taxation Office"	08-Jan-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	19-Dec-07	20607.32	=""	="GBC FORDIGRAPH P/L"	08-Jan-08 12:31 PM	

+="CN54315"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	20-Dec-07	01-Jan-09	197524.80	=""	="Encore IT Services Pty Ltd"	08-Jan-08 12:31 PM	

+="CN54316"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	20-Dec-07	06-Jan-09	225060.00	="RFT 081-2007"	="TALENT INTERNATIONAL"	08-Jan-08 12:32 PM	

+="CN54318"	"Recruitment Services"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	10-Oct-08	15275.73	=""	="ZENITH MANAGEMENT SERVICE GROUP"	08-Jan-08 12:32 PM	

+="CN54319"	"Balanced Score Board Training 16 attendees"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	04-Jan-08	05-Jan-08	24786.33	=""	="PALLADIUM GROUP INC"	08-Jan-08 12:32 PM	

+="CN54320"	"Scribing services for APS 6 and EL1 for 6 months commencing Jan 2008"	="Australian Taxation Office"	08-Jan-08	="Public Utilities and Public Sector Related Services"	07-Jan-08	30-Jun-08	13000.00	=""	="Hays Personnel Services"	08-Jan-08 12:32 PM	

+="CN54321"	"MQ20AU Websphere MQ for z/OS sys admin 8 attendees"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	17-Dec-07	14-Feb-08	28600.00	=""	="IBM AUSTRALIA LIMITED"	08-Jan-08 12:32 PM	

+="CN54322"	"5o x Flash drives"	="Australian Taxation Office"	08-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	17-Dec-07	17-Dec-07	13398.00	=""	="COMSEC ENTERPRISES PTY LTD"	08-Jan-08 12:32 PM	

+="CN54323"	"Cert IV in government  - 4 attendees"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	17-Dec-07	31-Dec-07	12760.00	=""	="KPS & ASSOCIATES"	08-Jan-08 12:32 PM	

+="CN54324"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Dec-07	278300.00	="RFT 084-2007"	="RFJD Pty Ltd"	08-Jan-08 12:32 PM	

+="CN54325-A2"	"Provision of IT Contractor Services"	="Australian Taxation Office"	08-Jan-08	="Computer programmers"	02-Jan-08	31-Dec-11	1283776.00	=""	="CANDLE AUSTRALIA PTY LTD"	08-Jan-08 12:33 PM	

+="CN54326"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Dec-07	278300.00	="RFT 089-2007"	="Addis Computer Services"	08-Jan-08 12:33 PM	

+="CN54327"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	18-Dec-07	27-Jan-09	246593.16	=""	="Paxus Australia Pty Ltd"	08-Jan-08 12:33 PM	

+="CN54328"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	04-Jan-08	06-Jan-09	213840.00	="094-2007"	="Edcomp Pty Ltd"	08-Jan-08 12:34 PM	

+="CN54329"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	08-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Dec-07	30-Jun-08	10899.90	=""	="SALMAT DOCUMENT MANAGEMENT"	08-Jan-08 12:35 PM	

+="CN54330"	"SUPPLY OF ELECTORAL INFORMATION"	="Australian Taxation Office"	08-Jan-08	="Published Products"	12-Dec-07	21-Dec-07	48930.75	=""	="LINK MARKET SERVICES"	08-Jan-08 12:37 PM	

+="CN54331"	"CONFERENCE"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	05-Dec-07	02-Jan-08	16992.20	=""	="SHANGRI-LA HOTEL SYDNEY"	08-Jan-08 12:37 PM	

+="CN54332"	"TRAINING"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	13-Dec-07	03-Jan-08	41850.00	=""	="KPS & ASSOCIATES"	08-Jan-08 12:37 PM	

+="CN54333"	"LB&I TECHNICAL CONFERENCE"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	13-Dec-07	04-Jan-08	14241.00	=""	="THE SYDNEY MASONIC CENTRE"	08-Jan-08 12:37 PM	

+="CN54334"	"CONSULTANCY FOR DEBT COLLECTION CONTRACT"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	04-Jan-08	13618.00	=""	="Freebody Cogent Pty Ltd"	08-Jan-08 12:37 PM	

+="CN54336"	"LEGAL SERVICES"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	19-Dec-07	12569.40	=""	="ROGER SALLIS"	08-Jan-08 12:37 PM	

+="CN54337"	"LEGALS"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	19-Dec-07	12100.00	=""	="Lorraine B Price"	08-Jan-08 12:37 PM	

+="CN54338"	"TELECOMMUNICATIONS"	="Australian Taxation Office"	08-Jan-08	="Public Utilities and Public Sector Related Services"	07-Jan-08	07-Jan-08	35032.53	=""	="TELSTRA"	08-Jan-08 12:37 PM	

+="CN54339"	"HOGAN QUESTIONNAIRE"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	17-Dec-07	19-Dec-07	12375.00	=""	="THE HR CATALYST PTY LTD"	08-Jan-08 12:37 PM	

+="CN54340"	"IT MAINTENANCE FOR JAN08"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	02-Jan-08	07-Jan-08	27500.00	=""	="Lightsource Technologies Aust P/L"	08-Jan-08 12:38 PM	

+="CN54341"	"CATERING"	="Australian Taxation Office"	08-Jan-08	="Travel and Food and Lodging and Entertainment Services"	10-Dec-07	20-Dec-07	10842.00	=""	="STRIPED TENT"	08-Jan-08 12:38 PM	

+="CN54342"	"ONLINE LAND VALUE SEARCH & IMAGES FOR NSW"	="Australian Taxation Office"	08-Jan-08	="Published Products"	11-Dec-07	05-Jan-08	14852.48	=""	="ESPREON PROPERTY SERVICES"	08-Jan-08 12:38 PM	

+="CN54343"	"OXFORD OFFSHORE SYMPOSIUM"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	10-Dec-07	20-Dec-07	10380.00	=""	="GRIFFITH UNIVERSITY"	08-Jan-08 12:38 PM	

+="CN54344"	"VALUATION OF RABY,CASTLE HILL & MEAN FIDDLE TAVERN"	="Australian Taxation Office"	08-Jan-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	05-Jan-08	27500.00	=""	="LANDMARK WHITE"	08-Jan-08 12:38 PM	

+="CN54345"	"BUSINESS CONSULTANTS TRAINING FEES FOR DESIGN WORKSHOP 10/09-12/10/07"	="Australian Taxation Office"	08-Jan-08	="Education and Training Services"	19-Dec-07	19-Dec-07	365874.52	=""	="CAPGEMINI AUSTRALIA PTY LTD"	08-Jan-08 12:38 PM	

+="CN54346"	"taxi service for DC  Operations ensures availability"	="Australian Taxation Office"	08-Jan-08	="Transportation and Storage and Mail Services"	19-Dec-07	30-Jun-08	10000.00	=""	="CANBERRA HIRE CARS"	08-Jan-08 12:39 PM	

+="CN54347"	"Translating and Interpreting Services for 3 months"	="Australian Taxation Office"	08-Jan-08	="Public Utilities and Public Sector Related Services"	30-Jan-08	30-Jan-08	210000.00	=""	="DIMIA TIS"	08-Jan-08 12:39 PM	

+="CN54348"	"facilitator"	="Australian Taxation Office"	08-Jan-08	="Healthcare Services"	28-Nov-07	28-Nov-07	15840.00	=""	="CLEAR LEAD PTY LTD"	08-Jan-08 12:39 PM	

+="CN54349-A1"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	01-Aug-08	31-Jul-09	364320.00	=""	="Ambit IT&T Recruitment Pty Ltd"	08-Jan-08 12:40 PM	

+="CN54350"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	21-Dec-07	31-Dec-07	123323.20	=""	="Techpoint Consulting Pty Ltd"	08-Jan-08 12:40 PM	

+="CN54351"	"IT Contractor"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	20-Dec-07	30-Jun-08	105705.60	=""	="COMPAS PTY LTD"	08-Jan-08 12:40 PM	

+="CN54352"	"IT Contractor - 02/01/2007 - 31/12/2007"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	18-Oct-07	31-Dec-07	106964.00	=""	="Encore IT Services Pty Ltd"	08-Jan-08 12:40 PM	

+="CN54353"	"IT Contractor - 02/01/2007 - 31/12/2007"	="Australian Taxation Office"	08-Jan-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Dec-07	218196.00	="RFT 106-2006"	="WYS GROUP PTY LTD"	08-Jan-08 12:40 PM	

+="CN54354-A1"	"Aviation Spares. Overhaul of Module 4"	="Defence Materiel Organisation"	08-Jan-08	="Military rotary wing aircraft"	27-Nov-07	30-Apr-08	105142.40	=""	="Turbomeca A/Asia Pty Ltd"	08-Jan-08 02:19 PM	

+="CN54355-A1"	"Independent consultant barrister"	="Australian Taxation Office"	08-Jan-08	="Organisational structure consultation"	04-Feb-08	24-Dec-09	500000.00	=""	="The Hon John Daryl Davies QC"	08-Jan-08 02:23 PM	

+="CN54356"	"LexisNexis Information Solutions Agreement 2007/08 - Online Subscription - paid by NSW AG's Dept to LexisNexis and reimbursed by Federal Court according to resources sharing agreement"	="Federal Court of Australia"	08-Jan-08	="Online database information retrieval systems"	01-Oct-07	30-Sep-08	57888.53	=""	="NSW Attorney General's Dept"	08-Jan-08 02:27 PM	

+="CN54371"	"Legal Services"	="Australian Competition and Consumer Commission"	08-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	27170.00	=""	="Deacons"	08-Jan-08 04:04 PM	

+="CN54379"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-06	14-Oct-07	75248.00	="Found in RMS02-11438"	="VERIZON"	08-Jan-08 04:31 PM	

+="CN54381"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	18-Jul-07	30-Aug-07	16821.20	="0"	="ZALLCOM PTY LTD"	08-Jan-08 04:31 PM	

+="CN54382"	"Communication Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Aug-07	28-Sep-07	11850.00	="0"	="COMMANDER INTEGRATED NETWORKS"	08-Jan-08 04:31 PM	

+="CN54383"	"Communication Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Aug-07	28-Sep-07	10300.00	="0"	="COMMANDER INTEGRATED NETWORKS"	08-Jan-08 04:31 PM	

+="CN54384"	"Communication Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	09-Aug-07	28-Sep-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	08-Jan-08 04:31 PM	

+="CN54385"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	16-Aug-07	17-Sep-07	38667.38	="RFT06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:31 PM	

+="CN54386"	"Publishing & Printing Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	31-Oct-07	35318.80	=""	="ZOO"	08-Jan-08 04:31 PM	

+="CN54387"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	30-Aug-07	10-Sep-07	66327.41	="FINANCE05009"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	08-Jan-08 04:31 PM	

+="CN54388"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Aug-07	13-Sep-07	10560.00	="04/07260"	="DELL COMPUTER PTY LIMITED"	08-Jan-08 04:32 PM	

+="CN54389"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	30-Jun-08	84000.00	="FIN 05CRO004-35"	="OAKTON AA SERVICES PTY LTD"	08-Jan-08 04:32 PM	

+="CN54390"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-Jun-08	220500.00	="FIN05CRP004-33"	="ICON RECRUITMENT PTY LTD"	08-Jan-08 04:32 PM	

+="CN54391"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Sep-07	25-Oct-07	39600.00	="0"	="AFC GROUP PTY LTD"	08-Jan-08 04:32 PM	

+="CN54392"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	02-Oct-08	188000.00	="FIN 05CRP004-37"	="CLARIUS GROUP LIMITED"	08-Jan-08 04:32 PM	

+="CN54393"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	11-Jan-08	46332.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 04:32 PM	

+="CN54394"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	12-Oct-07	14800.50	=""	="OFFICEMAX AUSTRALIA LIMITED"	08-Jan-08 04:32 PM	

+="CN54395"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	12-Oct-07	14654.31	="RFT 06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:32 PM	

+="CN54396"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	04-Apr-08	90816.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Jan-08 04:33 PM	

+="CN54397"	"Security Costs"	="Department of Finance and Administration"	08-Jan-08	="National Defence and Public Order and Security and Safety Services"	18-Sep-07	30-Jun-08	104100.84	="FIN06CORP006"	="CHUBB PROTECTIVE SERVICES"	08-Jan-08 04:33 PM	

+="CN54398"	"Security Costs"	="Department of Finance and Administration"	08-Jan-08	="National Defence and Public Order and Security and Safety Services"	18-Sep-07	30-Jun-08	91463.46	="FIN06CORP006"	="CHUBB PROTECTIVE SERVICES"	08-Jan-08 04:33 PM	

+="CN54399"	"Repairs & Maintenance - Building"	="Department of Finance and Administration"	08-Jan-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	13-Aug-07	20-Dec-07	29711.74	="N/A"	="ELECTRICAL TESTING SERVICES PTY LTD"	08-Jan-08 04:33 PM	

+="CN54400"	"Contractor Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	24-Oct-07	21-Mar-08	23800.00	="N/A"	="CHANDLER MACLEOD CONSULTANTS LTD"	08-Jan-08 04:33 PM	

+="CN54401"	"Communication Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	30-Oct-07	30-Oct-08	85000.00	="rft"	="MACQUARIE TELECOM"	08-Jan-08 04:33 PM	

+="CN54402"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	16-Oct-07	15-Nov-07	15439.22	="06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:33 PM	

+="CN54403"	"Communication Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Nov-07	14-Dec-07	18738.41	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	08-Jan-08 04:33 PM	

+="CN54404"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	16-Nov-07	22346.50	="06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:33 PM	

+="CN54405"	"Training & Education Costs"	="Department of Finance and Administration"	08-Jan-08	="Education and Training Services"	15-Oct-07	01-Nov-07	25850.00	="n/a"	="PROACTIVE SERVICES PTY LTD"	08-Jan-08 04:34 PM	

+="CN54406"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	23-Nov-07	49640.00	="RMS07/0785"	="OAKTON AA SERVICES PTY LTD"	08-Jan-08 04:34 PM	

+="CN54408"	"Office Consumables & Stationery Costs"	="Department of Finance and Administration"	08-Jan-08	="Office Equipment and Accessories and Supplies"	16-Nov-07	23-Nov-07	10609.50	="PR4484"	="CORPORATE EXPRESS AUSTRALIA LIMITED"	08-Jan-08 04:34 PM	

+="CN54409"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	27-Nov-07	26-Dec-07	12236.41	="06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:34 PM	

+="CN54410"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	27-Nov-07	29-Nov-07	10686.29	="06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:34 PM	

+="CN54411"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	27-Nov-07	29-Nov-07	24414.34	="06/09065-02"	="OPTUS DIRECT CREDITS"	08-Jan-08 04:34 PM	

+="CN54412"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	27-Nov-07	07-Dec-07	10600.49	="06/06590"	="ZALLCOM PTY LTD"	08-Jan-08 04:34 PM	

+="CN54413"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	06-Dec-07	10-Dec-07	25617.08	="06/09065-04"	="INFRONT SYSTEMS PTY LTD"	08-Jan-08 04:35 PM	

+="CN54414"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Oct-07	14-Oct-10	4545610.00	="FIN06/FES3"	="VERIZON"	08-Jan-08 04:35 PM	

+="CN54415"	"Internal Audit Services"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	30-Nov-07	26994.55	="NAT27101574 (PWC Reference)"	="PRICEWATERHOUSECOOPERS- 833468126"	08-Jan-08 04:35 PM	

+="CN54416"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	81300.00	="N/A"	="RED WAHOO PTY LTD"	08-Jan-08 04:35 PM	

+="CN54417"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	08-Jan-08	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	164682.00	="N/A"	="RED WAHOO PTY LTD"	08-Jan-08 04:35 PM	

+="CN54418"	"Security Costs"	="Department of Finance and Administration"	08-Jan-08	="Office Equipment and Accessories and Supplies"	07-Sep-07	07-Dec-07	19596.50	=""	="BROWNBUILT PTY LTD"	08-Jan-08 04:35 PM	

+="CN54419"	"Training & Education Costs"	="Department of Finance and Administration"	08-Jan-08	="Education and Training Services"	22-Oct-07	25-Jan-08	54120.00	="0"	="PROACTIVE SERVICES PTY LTD"	08-Jan-08 04:35 PM	

+="CN54420"	"Security Costs"	="Department of Finance and Administration"	08-Jan-08	="Office Equipment and Accessories and Supplies"	19-Sep-07	31-Dec-07	35684.00	=""	="PLANEX SALES PTY LTD"	08-Jan-08 04:35 PM	

+="CN54421"	"Valuation Services"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	14-Sep-07	28-Sep-07	30000.00	=""	="AUSTRALIAN VALUATION OFFICE - ACT"	08-Jan-08 04:35 PM	

+="CN54422"	"Legal Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-07	16500.00	="rft"	="MINTER ELLISON - ACT"	08-Jan-08 04:36 PM	

+="CN54423"	"Legal Costs"	="Department of Finance and Administration"	08-Jan-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	19000.00	="LSB01/2005"	="BLAKE DAWSON WALDRON - ACT"	08-Jan-08 04:36 PM	

+="CN54425"	"Legal Services"	="Australian Competition and Consumer Commission"	08-Jan-08	="Legal services"	01-Jul-07	31-Dec-07	10175.00	=""	="J Stuckey-Clarke"	08-Jan-08 04:38 PM	

+="CN54424"	"Motor Vehicle Parts."	="Department of Defence"	08-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	07-Feb-08	15644.75	=""	="LandRover Australia"	08-Jan-08 04:41 PM	

+="CN54430"	"Renewal of Insurance policy for staff members at London post"	="Austrade"	09-Jan-08	="Insurance and retirement services"	02-Sep-07	01-Sep-08	11700.00	=""	="BUPA Insurance Limited"	09-Jan-08 09:41 AM	

+="CN54431"	"The delivery of PTS course in Frankfurt and Dubai"	="Austrade"	09-Jan-08	="Education and Training Services"	01-Nov-07	16-Nov-07	12800.00	=""	="Yu ShihTao Kung Fu"	09-Jan-08 09:41 AM	

+="CN54432"	"Brand Strategy Consultancy and indigenous graphic directions"	="Austrade"	09-Jan-08	="Management advisory services"	29-Nov-07	24-Dec-07	14135.00	=""	="Keystone Corporate Positioning Pty Ltd"	09-Jan-08 09:41 AM	

+="CN54433"	"Implementation of CRM benchmarking recommendations"	="Austrade"	09-Jan-08	="Management advisory services"	08-Oct-07	30-Jun-08	88000.00	=""	="Macquarie Marketing Group"	09-Jan-08 09:41 AM	

+="CN54434-A1"	"Domestic and international mail freight services"	="Austrade"	09-Jan-08	="Mail and cargo transport"	18-Dec-07	17-Apr-11	5000000.00	=""	="DHL International (Aust) Pty Limited"	09-Jan-08 09:41 AM	

+="CN54435"	"Project management, business analyst and Microsoft CRM expertise"	="Austrade"	09-Jan-08	="Management advisory services"	12-Nov-07	03-Dec-07	124829.00	=""	="Accenture Australia Holdings Pty Ltd"	09-Jan-08 09:41 AM	

+="CN54438"	"Telecommunications Services"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	17-Dec-07	31-Jan-08	22594.13	=""	="Stratos"	09-Jan-08 09:56 AM	

+="CN54439"	"Eucla R/O System Upgrade"	="Bureau of Meteorology"	09-Jan-08	="General building construction"	03-Jan-08	31-Jan-08	110000.00	=""	="Department of Agriculture & Food"	09-Jan-08 09:56 AM	

+="CN54440"	"Job Ads for Water Division - Hydrology Roles"	="Bureau of Meteorology"	09-Jan-08	="Marketing and distribution"	21-Dec-07	31-Dec-07	25662.54	=""	="HMA BLAZE PTY LTD"	09-Jan-08 09:56 AM	

+="CN54441"	"Job Ads for Water Division - Assistant Director Roles and Executive Roles"	="Bureau of Meteorology"	09-Jan-08	="Marketing and distribution"	21-Dec-07	31-Dec-07	38029.13	=""	="HMA BLAZE PTY LTD"	09-Jan-08 09:56 AM	

+="CN54442"	"VEHICLE LEASES JAN 08"	="Bureau of Meteorology"	09-Jan-08	="Motor vehicles"	02-Jan-08	31-Jan-08	12017.18	=""	="Leaseplan Australia"	09-Jan-08 09:56 AM	

+="CN54443"	"Telecommunications Services"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	03-Jan-08	31-Jan-08	11981.89	=""	="Telstra  (ID No. 740)"	09-Jan-08 09:56 AM	

+="CN54444"	"Telephone A/c"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	03-Jan-08	03-Jan-08	16478.35	=""	="Telstra  (ID No. 740)"	09-Jan-08 09:56 AM	

+="CN54445"	"Development of Operational Concept for Deep Ocean Tsunami Detection System"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	19360.00	=""	="SMS Management & Technology"	09-Jan-08 09:57 AM	

+="CN54446"	"Professional Engineering Services"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	12210.00	=""	="Signal Processing Know-How P/L"	09-Jan-08 09:57 AM	

+="CN54447"	"Professional Engineering Services"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	10421.40	=""	="Signal Processing Know-How P/L"	09-Jan-08 09:57 AM	

+="CN54448"	"ASLOS Phase 1 Point Murat Exmouth"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	31-Jan-08	68462.90	=""	="Marine & Civil Construction Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54449"	"Supply of adar Sea Level Sensor"	="Bureau of Meteorology"	09-Jan-08	="Information Technology Broadcasting and Telecommunications"	02-Jan-08	31-Dec-09	88748.00	=""	="Vega Australia Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54450"	"SAP Professional Licences Qty 10"	="Bureau of Meteorology"	09-Jan-08	="Computer services"	02-Jan-08	31-Jan-08	51370.00	=""	="Sap Australia Pty Ltd."	09-Jan-08 09:57 AM	

+="CN54451"	"Poweredge Rack-mount Servers Qty 3"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	14-Jan-08	26400.00	=""	="Dell Australia  Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54452"	"Cisco IP Handsets & Licences Qty 50"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	02-Jan-08	02-Jan-08	25597.55	=""	="Cerulean Solutions LTD"	09-Jan-08 09:57 AM	

+="CN54453"	"Supermicro Server"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	15917.00	=""	="DIGICOR PTY LTD"	09-Jan-08 09:58 AM	

+="CN54454"	"One GB RAM Qty 100"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	12291.40	=""	="City Software Pty Ltd"	09-Jan-08 09:58 AM	

+="CN54455"	"19" Samsung Monitors Qty 40"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	12760.00	=""	="City Software Pty Ltd"	09-Jan-08 09:58 AM	

+="CN54456"	"Removalist costs"	="Future Fund Management Agency"	09-Jan-08	="Relocation services"	03-Jan-08	08-Jan-08	17784.00	=""	="Grace Removals"	09-Jan-08 10:12 AM	

+="CN54458"	"Legal advice on employment contract"	="Future Fund Management Agency"	09-Jan-08	="Legal services"	17-Dec-07	17-Dec-07	17600.00	=""	="Clayton Utz"	09-Jan-08 10:21 AM	

+="CN54460"	"Distribution and collection of election material"	="Australian Electoral Commission"	09-Jan-08	="Material handling services"	05-Dec-07	05-Jan-08	14668.50	=""	="Dash Delivery and Courier Service"	09-Jan-08 11:06 AM	

+="CN54466"	"Provision for Services for the relocation of the Computer Room Infrastructure Wing 4"	="Comsuper"	09-Jan-08	="Control cable"	07-Jan-08	13-Feb-08	24500.00	=""	="Intravision The Cabling Specialist"	09-Jan-08 11:30 AM	

+="CN54470-A1"	"Provision of Vocational rehabilitation Services"	="CRS Australia"	09-Jan-08	="Vocational training"	20-Dec-07	20-Dec-07	6244.50	=""	="You're Back at work"	09-Jan-08 11:59 AM	

+="CN54472"	"Variation to the contract for the Provision for Management of Secure Gateway Environment"	="Comsuper"	09-Jan-08	="Software"	13-Dec-06	12-Dec-09	69422.00	=""	="Verizon Business (Cybertrust)"	09-Jan-08 12:13 PM	

+="CN54474"	"Motor Vehicle Parts."	="Department of Defence"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	39958.60	=""	="LandRover Australia"	09-Jan-08 12:28 PM	

+="CN54475"	" Qty: 12 x 3-Pt Harness Assembly Kits to outfit the entire AS350BA Fleet. NSN: 1560-14-550-3007, 'Plate, Structural, Aircraft'. "	="Defence Materiel Organisation"	09-Jan-08	="Military rotary wing aircraft"	06-Dec-07	04-Feb-08	20263.19	=""	="AUSTRALIAN AEROSPACE, LTD"	09-Jan-08 12:35 PM	

+="CN54476"	"Motor Vehicle Parts."	="Department of Defence"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	14165.97	=""	="Volvo Commercial Vehicle Albury"	09-Jan-08 12:39 PM	

+="CN54477"	"5 x Universal joint Shaft assemblies for Titan Fire Trucks"	="Defence Materiel Organisation"	09-Jan-08	="Universal joints"	01-Nov-07	30-Apr-08	15972.00	="FV7021"	="Drivetrain Australia"	09-Jan-08 01:27 PM	

+="CN54478"	"IFF Test Set"	="Defence Materiel Organisation"	09-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-Dec-07	14-Apr-09	283580.00	=""	="VICOM"	09-Jan-08 01:31 PM	

+="CN54485"	"Multimeter P/N: 260-6XLPM"	="Defence Materiel Organisation"	09-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	14-Mar-09	97240.00	=""	="Prodigital p/l"	09-Jan-08 02:21 PM	

+="CN54486"	"Annual maintenance of Questionmark Software"	="Australian Taxation Office"	09-Jan-08	="Software maintenance and support"	01-Jan-08	31-Dec-08	54672.00	=""	="Extec Pacific pty Ltd"	09-Jan-08 02:23 PM	

+="CN54487"	"SOLVENT, DICHLOROFLUOROETHANE"	="Defence Materiel Organisation"	09-Jan-08	="Solvents"	14-Dec-07	23-Jan-08	35617.20	=""	="A-GAS AUSTRALIA PTY LTD"	09-Jan-08 02:28 PM	

+="CN54489-A6"	" 07/2252 - Sofware licence and support "	="Australian Customs and Border Protection Service"	09-Jan-08	="Software"	01-Jul-09	30-Jun-14	1086492.49	=""	="Visual Analysis"	09-Jan-08 02:32 PM	

+="CN54492-A3"	" Lease at Bathurst, NSW  "	="Centrelink"	09-Jan-08	="Lease and rental of property or building"	31-May-06	14-Feb-11	804791.00	=""	="Bolam Property Investments Pty Ltd"	09-Jan-08 02:48 PM	

+="CN54495"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	09-Jan-08	="Anti submarine helicopters"	09-Jan-08	30-Aug-08	13413.02	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	09-Jan-08 02:50 PM	

+="CN54505"	"Construction of shower block"	="Centrelink"	09-Jan-08	="Furniture and Furnishings"	10-Jan-08	21-Feb-08	153365.30	=""	="Solve Project Management Pty Ltd"	09-Jan-08 04:26 PM	

+="CN54507"	"Software Support"	="Australian Electoral Commission"	09-Jan-08	="Software maintenance and support"	21-Jan-08	20-Jan-09	10271.63	=""	="Aegis Software Inc."	09-Jan-08 04:32 PM	

+="CN54508"	"cartridge inflator"	="Defence Materiel Organisation"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Oct-07	14-Jan-08	27720.00	=""	="Aero & Military"	09-Jan-08 04:33 PM	

+="CN54509"	"cover stole omplete"	="Defence Materiel Organisation"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Aug-07	14-Jan-08	49852.00	=""	="LIGHT AIRCRAFT"	09-Jan-08 04:37 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val0to12000.xls
@@ -1,1 +1,185 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87889"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10457.96	=""	="LANDROVER"	05-Jun-08 08:03 AM	

+="CN87891"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10756.98	=""	="LANDROVER"	05-Jun-08 08:13 AM	

+="CN87895"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10749.72	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 08:25 AM	

+="CN87899"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	28-Apr-08	28-Apr-11	10908.36	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:19 AM	

+="CN87907"	"PARTS FOR UNIMOGS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Jun-08	30-Jun-08	11626.74	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	05-Jun-08 10:01 AM	

+="CN87913"	"Melbourne Airport Fitout - Cabling"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Computer Equipment and Accessories"	22-Oct-07	30-May-08	11710.40	=""	="ABSOLUTE CABLING SYSTEMS PTY LTD"	05-Jun-08 10:16 AM	

+="CN87972"	"flushing equipment"	="Defence Materiel Organisation"	05-Jun-08	="Guided missiles"	16-May-08	30-Jun-08	10833.24	=""	="MADCO"	05-Jun-08 01:05 PM	

+="CN87974"	"PMS7617 in both Main Engines 1000hr"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	11244.48	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87997"	"SUPPLY & INSTALL CCTV KEYBOARDS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	20-May-08	23-May-08	10879.00	=""	="WESTERN ADVANCE PTY LTD"	05-Jun-08 01:07 PM	

+="CN87999"	"Freight Costs"	="Defence Materiel Organisation"	05-Jun-08	="Transportation components and systems"	20-May-08	30-Jun-08	11000.00	=""	="TOLL NORTH PTY LTD"	05-Jun-08 01:08 PM	

+="CN88076"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	16-May-08	20-Jul-08	11884.61	=""	="EXCALIBUR SYSTEMS INC."	05-Jun-08 01:17 PM	

+="CN88109"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:21 PM	

+="CN88114"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	23-May-08	30-Jun-08	10000.00	=""	="MINTER ELLISON"	05-Jun-08 01:22 PM	

+="CN88121"	"Conduct disposal service of obsolete inventory at"	="Defence Materiel Organisation"	05-Jun-08	="Transportation services equipment"	23-May-08	30-Jun-08	10000.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	05-Jun-08 01:22 PM	

+="CN88127"	"Ongoing Security Cost at APA facility in accordance with DSA report"	="Defence Materiel Organisation"	05-Jun-08	="Security and control equipment"	23-May-08	30-Jun-09	10939.50	=""	="ASIA PACIFIC AEROSPACE"	05-Jun-08 01:23 PM	

+="CN88137"	"Hire of Aircraft for training"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	30-Jun-08	11700.00	=""	="MICROFLITE HELICOPTER SERVICES"	05-Jun-08 01:24 PM	

+="CN88157"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Nov-08	10744.45	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:27 PM	

+="CN88172"	"POC: SHANE FINN CONTACT: 02 626 50601"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	10038.60	=""	="DIAMOND AUSTRALIA PTY LTD"	05-Jun-08 01:28 PM	

+="CN88181"	"STRIVING FOR SUCCESS - PERSONAL GROWTH & CONFIDENC WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	26-May-08	30-Jun-08	11530.20	=""	="LEARNING HEIGHTS"	05-Jun-08 01:29 PM	

+="CN88209"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:33 PM	

+="CN88236"	"provide blast equipment safety training and conduc contractor blast equipment inspection"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	22-May-08	27-May-08	10120.00	=""	="BLASTMASTER"	05-Jun-08 01:36 PM	

+="CN88255"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	10608.02	=""	="BRISBANE CONVENTION & EXHIBITION"	05-Jun-08 01:38 PM	

+="CN88257"	"1199 OVOID RING RHIB LIFTING ARRANGEMENT TRIAL"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	10445.48	=""	="BAKER & PROVAN PTY LTD"	05-Jun-08 01:38 PM	

+="CN88279"	"OVERHAUL AFFF VALVES - HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	20-Jun-08	10115.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88302"	"INSTALL MODULES HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	28-May-08	30-May-08	10180.72	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 01:44 PM	

+="CN88304"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	10-Apr-08	30-Jun-08	11235.10	=""	="THALES AUSTRALIA"	05-Jun-08 01:44 PM	

+="CN88313"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	06-May-08	30-Jun-08	10497.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:45 PM	

+="CN88340"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	02-Jun-08	10164.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:48 PM	

+="CN88363"	"HMAS TOOWOOMBA SRA01/IMAV02 CONTAINER HIRE"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-Jul-07	30-Jun-08	11388.30	=""	="CONTAINER REFRIGERATION PTY LTD"	05-Jun-08 01:51 PM	

+="CN88377"	"LEASE VEHICLE"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	12-Nov-07	12-Oct-08	11714.32	=""	="DAS FLEET"	05-Jun-08 01:53 PM	

+="CN88379"	"Installation of Remote C+M Monitor on the Gangway"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	10643.51	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:53 PM	

+="CN88394"	"HULL SURVEY HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-May-08	11220.00	=""	="VIKING MARINE SURVEYS PTY LTD"	05-Jun-08 01:55 PM	

+="CN88432"	"FURNITURE PROCUREMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-May-08	20-Jun-08	10019.60	=""	="OFFICELINE"	05-Jun-08 01:59 PM	

+="CN88447"	"SA Periscope Workshop"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	11561.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88448"	"Procurement of hand tools and cases"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	10120.03	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88481"	"Clevis, Rod End"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	10-Dec-08	10896.84	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:05 PM	

+="CN88498"	"POWER CABLE ASSY"	="Defence Materiel Organisation"	05-Jun-08	="Apparel and Luggage and Personal Care Products"	13-May-08	13-Oct-08	11554.30	=""	="ITT CORPORATION DBA I T T NIGHT VIS"	05-Jun-08 02:07 PM	

+="CN88502"	"Dell Workstation"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	10102.05	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 02:07 PM	

+="CN88511"	"VARIOUS TOOLS IN SUPPORT OF NAVY'S 723 SQUADRON AS350BA SQUIRREL HELICOPTER FLEET, HMAS ALBATRO"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	16-Jun-08	10674.52	=""	="SNAP ON TOOLS (AUST) PTY LTD"	05-Jun-08 02:08 PM	

+="CN88520"	"GET Brand ISA  NTDS Circuit Cards"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-08	11033.00	=""	="UNITRONIX PTY LTD"	05-Jun-08 02:10 PM	

+="CN88544"	"4517.08 - UPDATE FFH DOCKING DRAWING TENIX HENDERSON"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	07-May-08	30-May-08	10477.50	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:12 PM	

+="CN88546"	"HMAS Brunei In-Water Hull Survey"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	07-May-08	30-Jun-08	11726.55	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:13 PM	

+="CN88588"	"    Official travel to europe    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	20-May-08	20-May-08	10051.28	=""	="QANTAS"	05-Jun-08 02:30 PM	

+="CN88591"	"    Airfares for travel to London and Geneva for meetings of GRSP Informal group on Child Restraint Systems    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	13-May-08	13-May-08	10209.62	=""	="QANTAS"	05-Jun-08 02:36 PM	

+="CN88593"	"    International airfare travelling to Washington DC on 29 May 2008 - as spouse of First Secretary.     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10468.75	=""	="QANTAS"	05-Jun-08 02:41 PM	

+="CN88595"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 156/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	25-May-08	11830.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	05-Jun-08 02:44 PM	

+="CN88596"	"    International airfare travelling to Washington DC as First Secretary (2 May 2008).     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10522.98	=""	="QANTAS"	05-Jun-08 02:47 PM	

+="CN88597"	"TUBE, CENTER NSN 4710/008870367"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	09-Jun-08	10955.20	=""	="FLITE PATH PTY LTD"	05-Jun-08 02:49 PM	

+="CN88598"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:50 PM	

+="CN88599"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:53 PM	

+="CN88607"	"CUSHION, COVER, PIN NSN 1680/661413332"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	07-Jul-08	10450.00	=""	="FLITE PATH PTY LTD"	05-Jun-08 03:00 PM	

+="CN88618"	"Moderation Project Meeting- Accommodation and venue hire"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Hotels and lodging and meeting facilities"	26-May-08	30-Jun-08	11140.00	="PRN19486"	="OAKS ON COLLINS"	05-Jun-08 03:05 PM	

+="CN88648"	"NUT AND PIN NSN 1610/008870223"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	27-May-08	10866.00	=""	="MILSPEC SERVICES PTY LTD"	05-Jun-08 03:14 PM	

+="CN88673"	" Professional Development "	="Australian Electoral Commission"	05-Jun-08	="Education and Training Services"	08-May-08	08-Jun-08	11825.00	=""	="Australian Public Service Commission"	05-Jun-08 04:18 PM	

+="CN88679"	"REPAIR - ENGINE BUILT-UP UNIT, AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	18-Jun-08	10425.30	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:31 PM	

+="CN88691"	"ANALOGUE HANDSETS"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-May-08	11629.53	=""	="INTERQUARTZ (A'ASIA) PTY LTD"	05-Jun-08 04:46 PM	

+="CN88707"	"supply of post mix product"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	12-May-08	30-Jul-08	11000.00	=""	="COCA-COLA PTY LTD"	05-Jun-08 04:49 PM	

+="CN88709"	"S5101, WR 3000764440. Provide consultancy services wharf crane from REVY Pyrmont to sullage wharf at"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	30-Jun-08	11000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:49 PM	

+="CN88755"	"lease payment"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	14-May-08	31-May-08	11157.44	=""	="AUSTRALIAN INTEGRATED FINANCE"	05-Jun-08 04:56 PM	

+="CN88770"	"Stephen Chaney KA300/350 training"	="Department of Defence"	05-Jun-08	="Powered fixed wing aircraft"	21-May-08	21-May-08	11889.83	=""	="FLIGHTSAFETY INTERNATIONAL"	05-Jun-08 04:58 PM	

+="CN88815"	"HARDY AVIATION(NT) PTY LTD."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-08	11233.81	=""	="HARDY AVIATION (NT) PTY LTD"	05-Jun-08 05:00 PM	

+="CN88825"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	10230.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:00 PM	

+="CN88854"	"Learjet crew & engineer"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	30-May-08	11000.00	=""	="PEL-AIR AVIATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88863"	"CABLING WORKS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	11649.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88870"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Jun-08	11514.80	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	05-Jun-08 05:03 PM	

+="CN88871"	"FACOPS- Air Compressor Supply"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	20-May-08	30-Jun-08	11542.30	=""	="CHAMPION COMPRESSORS LTD"	05-Jun-08 05:03 PM	

+="CN88874"	"DSN CABLING"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	11841.50	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:03 PM	

+="CN88891"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	11330.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:04 PM	

+="CN88907"	"KOPPER LOGS REMEDIATION PROJECT - ENOOGERA"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	10690.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:04 PM	

+="CN88911"	"POC: Brendan Searle 02 6127 7169 Quotation: 7128"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	11454.30	=""	="BENNETT COMMERCIAL ELECTRONICS"	05-Jun-08 05:05 PM	

+="CN88912"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	22-May-08	11935.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88915"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	21-May-08	11435.09	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:05 PM	

+="CN88934"	"Security Services"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-May-08	16-Jun-08	11484.00	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:06 PM	

+="CN88947"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11177.62	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88948"	"CONSTRUCTION OF PLATFORM"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	08-May-08	27-Jun-08	11085.02	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:06 PM	

+="CN88988"	"DALLAS PAD COVERS"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	11825.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS"	05-Jun-08 05:08 PM	

+="CN89008"	"FIBRE INSTALL"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11110.00	=""	="DEPARTMENT OF FINANCE &"	05-Jun-08 05:09 PM	

+="CN89025"	"CONFERENCE EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	11236.52	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89032"	"SUN MICROSYSTEMS STORAGE HARDWARE"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	16-May-08	10754.55	=""	="DATACOM SYSTEMS SA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89036"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	22-May-08	30-Jun-08	11979.33	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:10 PM	

+="CN89043"	"Site Office Plumbing Connection"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	20-May-08	30-Jun-08	10680.00	=""	="KIMBERELY GREEN CONSTRUCTION"	05-Jun-08 05:10 PM	

+="CN89054"	"HP WORKSTATION"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-May-08	11283.50	=""	="COMPLETE PC SOLUTIONS"	05-Jun-08 05:11 PM	

+="CN89070"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-May-08	11000.00	=""	="INFOTRIEVE AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89071"	"SNORKEL ELEVATING WORK PLATFORM"	="Department of Defence"	05-Jun-08	="Hydraulic machinery and equipment"	20-May-08	30-Jun-08	11825.00	=""	="SNORKEL ELEVATING WORK PLATFORMS"	05-Jun-08 05:12 PM	

+="CN89078"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	22-May-08	30-Jun-08	11000.00	=""	="BLIGH VOLLER NIELD ARCHITECTS"	05-Jun-08 05:12 PM	

+="CN89098"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	20-May-08	27-May-08	10665.55	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89108"	"CARPETING"	="Department of Defence"	05-Jun-08	="Floor coverings"	21-May-08	30-May-08	11946.00	=""	="PORT STEPHENS CARPETS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89116"	"HD LCD MONITOR TVS"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	03-Jun-08	10648.00	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:14 PM	

+="CN89137"	"PRE PAID LABOUR HOURS ASSOCIATED WITH INTERNET / DRN UPGRADE"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	11000.00	=""	="PARTNER IT"	05-Jun-08 05:14 PM	

+="CN89144"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11869.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89156"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	11783.75	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89158"	"2 DAY SURVIVAL COURSE FOR TS MERSEY RE CIA BID 07/08"	="Department of Defence"	05-Jun-08	="Other sports"	22-May-08	22-May-08	11226.00	=""	="AMC SEARCH LIMITED"	05-Jun-08 05:15 PM	

+="CN89169"	"IN COUNTRY TRAINING TUITION - 01/08 INDON ADVANCED - MAY 08"	="Department of Defence"	05-Jun-08	="Vocational training"	09-May-08	20-May-08	11288.81	=""	="UPI, BANDUNG CAMPUS"	05-Jun-08 05:16 PM	

+="CN89179"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	10134.30	=""	="BLUE RIDGE SYSTEMS PTY LTD"	05-Jun-08 05:16 PM	

+="CN89200"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	10000.00	=""	="WESTSIDE VEGIE PATCH"	05-Jun-08 05:17 PM	

+="CN89207"	"Shade Cloth Structures"	="Department of Defence"	05-Jun-08	="Structural materials and basic shapes"	20-May-08	30-Jun-08	11039.99	=""	="QUICKSHADE AUSTRALIA PTY LTD"	05-Jun-08 05:18 PM	

+="CN89211"	"VISUAL EQUIPMENT FOR AREA GYM"	="Department of Defence"	05-Jun-08	="Electrical components"	12-May-08	30-Jun-08	10948.00	=""	="TROPICAL TV"	05-Jun-08 05:18 PM	

+="CN89215"	"SN02814 - Due Dilligence Eval Claim"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	11000.00	=""	="STRATEGIC FACILITY SERVICES PTY LTD"	05-Jun-08 05:18 PM	

+="CN89244"	"ACCOMADATION /BREAKFAST & VENUE HIRE"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	15-May-08	10294.99	=""	="WALDORF ON LONDON RESTAURANT & CONF"	05-Jun-08 05:19 PM	

+="CN89246"	"FURNITURE-SENIOR SAILORS MESS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	11495.00	=""	="RUBELLI"	05-Jun-08 05:19 PM	

+="CN89254"	"FINAL SCHOLARSHIP CONTRIBUTION FOR KIM MUNRO. RESE ARCH AGREEMENT 2003/44110/7;IP 09/05"	="Department of Defence"	05-Jun-08	="Educational institutions"	06-May-08	30-May-08	11000.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:20 PM	

+="CN89263"	"bread"	="Department of Defence"	05-Jun-08	="Bread and bakery products"	06-May-08	31-Dec-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:20 PM	

+="CN89266"	"milk"	="Department of Defence"	05-Jun-08	="Milk and butter products"	06-May-08	30-Dec-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:20 PM	

+="CN89272"	"Romance Office Chairs Fabric Twill Blue"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	06-May-08	30-May-08	11880.00	=""	="ACCENT OFFICE INTERIORS"	05-Jun-08 05:20 PM	

+="CN89276"	"Accommodation seven Rooms for Mtg Package - Indon Advanced - May 08"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	15-May-08	20-May-08	10009.41	=""	="SHERATON BANDUNG HOTEL & TOWERS"	05-Jun-08 05:21 PM	

+="CN89281"	"Shipping Containers"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	06-Jun-08	11110.00	=""	="ROYAL WOLF TRADING"	05-Jun-08 05:21 PM	

+="CN89301"	"POC: JOE GUARNIERI CONTACT: 02 626 69310"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11292.60	=""	="DIGICOR PTY LTD"	05-Jun-08 05:22 PM	

+="CN89314"	"Annual Subscription"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	30-May-08	10332.40	=""	="GIDEON INFORMATICS INC"	05-Jun-08 05:22 PM	

+="CN89321"	"SUPPLY & INSTALL 50 PAIR 0.4mm EXTERNAL VOICE CABLE AT HOLSWORTHY BARRACKS."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	15-May-08	10-Jun-08	10667.90	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:23 PM	

+="CN89326"	"PRINTING COSTS"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	03-Jun-08	10660.10	=""	="GEORGE PATTERSON Y & R"	05-Jun-08 05:23 PM	

+="CN89329"	"PAVING MALAYA LINES"	="Department of Defence"	05-Jun-08	="Concrete and cement and plaster"	05-May-08	28-May-08	10435.00	=""	="EMERALD PROPERTY SERVICES"	05-Jun-08 05:23 PM	

+="CN89332"	"POC: Owen Keane 02 6127 7170 Quotation: 00201344"	="Department of Defence"	05-Jun-08	="Hardware"	05-May-08	26-May-08	11275.45	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	05-Jun-08 05:23 PM	

+="CN89353"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	10972.50	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:24 PM	

+="CN89365"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES RELOCATION THROUGH REGION STANDING OFFER AGREEMEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	10984.05	=""	="GRACE REMOVALS GROUP"	05-Jun-08 05:25 PM	

+="CN89369"	"SNO1720 - RMC B014 - Ward Room 10"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	11970.82	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:25 PM	

+="CN89383"	"Supply & install of cabling"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	14-Jun-08	10499.17	=""	="ADVANCED COMMUNICATIONS"	05-Jun-08 05:26 PM	

+="CN89388"	"PARTS"	="Department of Defence"	05-Jun-08	="Machining and processing services"	14-May-08	29-May-08	11548.22	=""	="KFS FUEL SERVICES"	05-Jun-08 05:26 PM	

+="CN89389"	"Airfares - Domestic"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	06-May-08	08-Aug-08	10994.13	=""	="QANTAS AIRWAYS LIMITED AVIATION"	05-Jun-08 05:26 PM	

+="CN89415"	"Imagery Package"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	05-May-08	30-May-08	10082.60	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:27 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89442"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	14-May-08	14-May-08	10190.00	=""	="PROFESSOR STEWART FIRTH"	05-Jun-08 05:30 PM	

+="CN89443"	"LOADS FROM ADELAIDE TO WOOMERA / FORKLIFT WITH OPERATOR"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-May-08	11833.88	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 05:30 PM	

+="CN89449"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	20-May-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:30 PM	

+="CN89452"	"****** PLEASE SEE HARRY NGUY ON ARRIVAL AT RANRAU TOSHIBA COPIER"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-May-08	11474.10	=""	="TOSHIBA (AUSTRALIA) PTY LTD"	05-Jun-08 05:30 PM	

+="CN89465"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	16-May-08	30-Jun-08	11000.00	=""	="RUDDS CONSULTING ENGINEERS"	05-Jun-08 05:31 PM	

+="CN89510"	"dog food"	="Department of Defence"	05-Jun-08	="Meat and poultry"	06-May-08	31-Dec-08	11000.00	=""	="WESTERN PET FOODS"	05-Jun-08 05:34 PM	

+="CN89522"	"sra"	="Department of Defence"	05-Jun-08	="Sauces and spreads and condiments"	06-May-08	31-Dec-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:35 PM	

+="CN89527"	"CARPET"	="Department of Defence"	05-Jun-08	="Floor coverings"	16-May-08	16-May-08	11991.76	=""	="ACROMAT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89534"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	11780.99	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:35 PM	

+="CN89535"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	11685.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89566"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	10912.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:37 PM	

+="CN89582"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	11620.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89595"	"lease transportable Bldg"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	10145.47	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89630"	"4U ANTEC 4U22ATX"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10832.80	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89646"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89648"	"Shipoing Service Darwin"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	11000.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:43 PM	

+="CN89657"	"Management and Technical Support required for the RSTT-HIFiRE Solution Development Project"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	30-May-08	16-Jun-08	10246.49	=""	="AEROSPACE CONCEPTS PTY LTD"	05-Jun-08 05:43 PM	

+="CN89673"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	11640.71	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89677"	"LEASE OF FORKLIFT"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	22-May-08	01-Jun-08	10265.41	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:44 PM	

+="CN89691"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	29-Feb-08	30-Sep-08	10395.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89693"	"HEALTH PRACTITIONER PAY 30/4-17/5/08"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	20-May-08	21-May-08	11088.28	=""	="VIMALA MENON  A/P PB MENON"	05-Jun-08 05:45 PM	

+="CN89695-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10656.24	=""	="STRATOS"	05-Jun-08 05:45 PM	

+="CN89697-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10005.49	=""	="STRATOS"	05-Jun-08 05:46 PM	

+="CN89703"	"DR JOHN REDMAN - ENT SESSIONAL SERVICES TO HEALTH CENTRE SERVICES - CERBERUS"	="Department of Defence"	05-Jun-08	="Medical practice"	12-Nov-07	30-Jun-08	11000.00	=""	="JOHN F REDMAN PTY LTD"	05-Jun-08 05:46 PM	

+="CN89709"	"BUILDING WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	30-Jun-08	10018.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:46 PM	

+="CN89720"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89731"	"HIRE OF 3 X 20 FT REEFER CONTAINER - SECDET"	="Department of Defence"	05-Jun-08	="Containers and storage"	03-May-08	24-May-08	11555.31	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89735"	"LEASE OF VEHICLES"	="Department of Defence"	05-Jun-08	="Motor vehicles"	23-May-08	01-Jun-08	11377.86	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:48 PM	

+="CN89739"	"WATER SUPPLY"	="Department of Defence"	05-Jun-08	="Public Utilities and Public Sector Related Services"	18-Jul-07	30-Jun-08	11546.41	=""	="NSW MARITIME"	05-Jun-08 05:48 PM	

+="CN89740"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:48 PM	

+="CN89746"	"LAP TOPS X 3 for AIR9K PROJECT TTC B"	="Department of Defence"	05-Jun-08	="Computer services"	23-May-08	23-May-08	10758.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:49 PM	

+="CN89757"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	10670.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:49 PM	

+="CN89759"	"SN01988 - GIS Maintenance"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	10548.45	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:49 PM	

+="CN89763"	"REMOVAL OF CHAIRS"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	13-Feb-08	27-Jun-08	10037.16	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:50 PM	

+="CN89771"	"hire of vehicles"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	22-Jan-08	30-Apr-08	10788.95	=""	="THRIFTY CAR RENTAL"	05-Jun-08 05:50 PM	

+="CN89783"	"Advertising in Canberra Times, Wagga Daily Advertiser, Weekend Australian"	="Department of Defence"	05-Jun-08	="Advertising"	30-Apr-08	03-May-08	10481.96	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:51 PM	

+="CN89793"	"GROCERIES FOR MONTH OF MAY CNS 01/07"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-Apr-08	30-Jun-08	10990.00	=""	="GAROZZOS AGENCIES PTY LTD"	05-Jun-08 05:52 PM	

+="CN89805"	"Technical contact: R.Pointon Phone: 83056678"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	10303.30	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:52 PM	

+="CN89807"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	02-Apr-08	30-Jul-08	11094.12	=""	="CAMPBELLS CASH & CARRY"	05-Jun-08 05:52 PM	

+="CN89820"	"CONTRACT NO: CSI-SC07/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:53 PM	

+="CN89825"	"increase funds"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	29-Aug-07	30-Jun-08	11000.00	=""	="FLEXILIFT HIRE & RENTAL PTY LTD"	05-Jun-08 05:54 PM	

+="CN89826"	"Matteresses"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	26-May-08	20-Jun-08	10296.00	=""	="ADRIATIC SLUMBER BEDDING"	05-Jun-08 05:54 PM	

+="CN89827"	"Supply of Dairy Products"	="Department of Defence"	05-Jun-08	="Dairy products and eggs"	12-Nov-07	30-Jun-08	11000.00	=""	="SEALANES ALBATROSS PTY LTD"	05-Jun-08 05:54 PM	

+="CN89835"	"Vehicle Costs"	="Department of Defence"	05-Jun-08	="Motor vehicles"	17-Aug-07	31-Mar-08	11500.00	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 05:54 PM	

+="CN89842"	"Selection of CORPS flags. Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Fibres and textiles and fabric industries"	26-May-08	30-Jun-08	10098.00	=""	="EVAN EVANS FLAGS AND BANNERS"	05-Jun-08 05:55 PM	

+="CN89849"	"ABCA ANNUAL CONFERENCE HIRE OF FACILITIES"	="Department of Defence"	05-Jun-08	="Education and Training Services"	30-May-08	30-Jun-08	10640.95	=""	="FOUR POINTS - SHERATON DARLING"	05-Jun-08 05:55 PM	

+="CN89859"	"FFS PAYMENTS"	="Department of Defence"	05-Jun-08	="Medical facility products"	29-May-08	30-Jun-08	10000.00	=""	="G LLOYD"	05-Jun-08 05:56 PM	

+="CN89899"	"Supply of Small Goods to RAAF Base Tindal Ration Store"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	12-Nov-07	30-Jun-08	10000.00	=""	="WATSONIA FOODS"	05-Jun-08 05:58 PM	

+="CN89906"	"CONTRACT NO: CSI-SC03/205"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:59 PM	

+="CN89911"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	20-May-08	10689.93	=""	="ACTIVE TECHNOLOGY"	05-Jun-08 05:59 PM	

+="CN89940"	"FURNITURE FOR BLDG 298, SECPOL"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	10670.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 06:01 PM	

+="CN89943"	"Purchase 2nd hand vehicle for Project Digger Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	21-May-08	30-Jun-08	10000.00	=""	="KEITH TROTTER"	05-Jun-08 06:01 PM	

+="CN89944"	"Laser cladding of magnesium alloy"	="Department of Defence"	05-Jun-08	="Alloys"	13-May-08	30-Jun-08	10450.00	=""	="SWINBURNE UNIVERSITY OF"	05-Jun-08 06:01 PM	

+="CN89967"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	01-Jul-08	10241.55	=""	="BRAEMAC (SA) PTY LTD"	05-Jun-08 06:03 PM	

+="CN89982"	" S70B AIRCRAFT SPARES "	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	28-Nov-08	10094.04	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Jun-08 10:48 AM	

+="CN89990"	"WRIST WATCHES"	="Department of Defence"	06-Jun-08	="Wrist watches"	01-Apr-08	08-Apr-08	11339.90	=""	="SHRIRO AUSTRALIA PTY LTD"	06-Jun-08 11:09 AM	

+="CN89993-A1"	" Facilitation of Executive Planning Sessions "	="Centrelink"	06-Jun-08	="Specialised educational services"	14-Feb-08	31-Mar-08	10780.00	=""	="Amanda Horne Pty Ltd"	06-Jun-08 11:31 AM	

+="CN90028"	"Variation to the contract for the provision of loose office furniture"	="Comsuper"	06-Jun-08	="Furniture"	04-Jul-07	08-Aug-07	11035.00	=""	="Iken Commercial Interiors"	06-Jun-08 02:48 PM	

+="CN90037"	"Patching and Painting at Launceston Registry"	="Family Court of Australia"	06-Jun-08	="Painting services"	12-Apr-08	30-Jun-08	11176.00	=""	="SWM Project Decorating"	06-Jun-08 03:12 PM	

+="CN87861"	"Sponsorship of Library and Information Week"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Sponsorship of event or celebrity"	01-Apr-08	30-Jun-08	11000.00	=""	="Australian Library & Information Association"	06-Jun-08 04:11 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val12000to16000.xls
@@ -1,1 +1,267 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87896"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	07-Mar-08	07-Mar-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:33 AM	

+="CN87897"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	15-Nov-07	15-Nov-10	14400.00	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:47 AM	

+="CN87898"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	10-Apr-08	10-Apr-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:04 AM	

+="CN87902"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	05-Mar-08	05-Mar-11	14854.32	="RFT15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:37 AM	

+="CN87916"	"Sonatest Sitescan 150s flaw detector and accessories."	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Measuring and observing and testing instruments"	02-Jun-08	30-Jun-08	14513.95	=""	="Russell Fraser Sales P/L"	05-Jun-08 10:16 AM	

+="CN87932"	"TIE DOWN, CARGO, AIRCRAFT NSN 1670/002121149"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	14-May-08	13-Jun-08	12470.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 10:37 AM	

+="CN87937"	"GEAR, SPUR NSN 3020/007203276"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	06-Jun-08	13500.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:06 AM	

+="CN87939"	"WASHER, THRUST, SET NSN 3120/009468050"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	08-Jun-08	15960.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:22 AM	

+="CN87942"	" AIRCRAFT SPARES  NSN 3040-00-243-3661, GEARSHAFT, SPUR,  QTY 3 "	="Defence Materiel Organisation"	05-Jun-08	="Reconnaissance helicopters"	28-May-08	27-Jul-08	15884.28	=""	="HELITECH  DIV OF SIKORSKY"	05-Jun-08 11:44 AM	

+="CN87952"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System Printer"	="Defence Materiel Organisation"	05-Jun-08	="Infrared IR sensors"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:02 PM	

+="CN87955"	"Use of Exisitng ASP Contract  - Install maintenanc Ladder"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	13935.08	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87956"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87960"	"Belt Friction for UQN-4 Echo Sounder"	="Defence Materiel Organisation"	05-Jun-08	="Location and navigation systems and components"	17-May-08	16-Sep-08	13546.57	=""	="EDO WESTERN CORPORATION DBA EDO ELE"	05-Jun-08 01:03 PM	

+="CN88017"	"Wise Package Studio Licence Renewal"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	30-Jun-08	15860.04	=""	="ALTIRIS AUSTRALIA PTY LTD"	05-Jun-08 01:10 PM	

+="CN88025"	"AUDITOR TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Specialised educational services"	19-May-08	16-Jun-08	12975.01	=""	="SOUTHPAC AEROSPACE"	05-Jun-08 01:11 PM	

+="CN88027"	"COMPUTER HARDWARE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	25-Jun-08	14894.00	=""	="PORTABLE COMPUTER SYSTEMS"	05-Jun-08 01:11 PM	

+="CN88045"	"Gears, Bevel Spurs"	="Defence Materiel Organisation"	05-Jun-08	="Bearings and bushings and wheels and gears"	15-May-08	01-Aug-09	13755.87	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 01:13 PM	

+="CN88046"	"Aerospace Helmets with Microphones"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	15-May-08	03-Oct-08	13670.85	=""	="TRANSAERO INC."	05-Jun-08 01:13 PM	

+="CN88058"	"FACILITATION DEU STRATEGY WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	21-May-08	15950.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 01:15 PM	

+="CN88063"	"Procure parts for installation of Sea Water 'Y' Strainer for HMAS Sydney RO Plant"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	30-Jun-08	14854.97	=""	="THALES AUSTRALIA"	05-Jun-08 01:15 PM	

+="CN88071"	"Promotional material"	="Defence Materiel Organisation"	05-Jun-08	="Sales and business promotion activities"	15-May-08	30-Jun-08	13398.00	=""	="GREENFROG PROMOTIONS"	05-Jun-08 01:16 PM	

+="CN88072"	"MANOORA WOOP PM"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	15-May-08	16-May-08	14979.64	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:16 PM	

+="CN88078"	"PROVISION OF OEP SURVEY TOOL AND DATA ANAIYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-09	12375.00	=""	="ORIGIN CONSULTING GROUP PTY LTD"	05-Jun-08 01:17 PM	

+="CN88090"	"Teamcenter Project Author"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-09	13376.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:19 PM	

+="CN88093"	"SUN equipment for SIMS workstations"	="Defence Materiel Organisation"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	12266.44	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:19 PM	

+="CN88094"	"PEP course"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 01:19 PM	

+="CN88123"	"Replace Bridge Windows with non-sliding windows HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	23-May-08	30-Aug-08	12693.05	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:23 PM	

+="CN88128"	"USA TRAVEL FOR S. FAVALORO"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	31-Jul-08	13208.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:23 PM	

+="CN88139"	"EDM GAP ANALYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Environmental control systems"	22-May-08	30-Jun-08	12276.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 01:24 PM	

+="CN88148"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	30-Jun-08	13772.22	=""	="AQUALOGIC LAUNDRY SYSTEM GROUP"	05-Jun-08 01:26 PM	

+="CN88149"	"Photoshop Software"	="Defence Materiel Organisation"	05-Jun-08	="Software"	26-May-08	04-Jun-08	14298.90	=""	="ZALLCOM PTY LTD"	05-Jun-08 01:26 PM	

+="CN88156"	"Rack Mounts"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	26-May-08	30-Jun-09	15554.00	=""	="CYPHER RESEARCH LABORATORIES"	05-Jun-08 01:27 PM	

+="CN88169"	"Travel to Alabama to finaliise the Test Program for Prog AIR 5433 IRSS CTD"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	30-Jul-08	12133.13	=""	="GKN AEROSPACE ENGINEERING SERVICES"	05-Jun-08 01:28 PM	

+="CN88182"	"m548 box"	="Defence Materiel Organisation"	05-Jun-08	="Packaging materials"	26-May-08	30-Jun-08	13683.25	=""	="PENTARCH PTY LTD"	05-Jun-08 01:30 PM	

+="CN88190"	"Use of Exisitng ASP Contract  - Modify Vent Risers"	="Defence Materiel Organisation"	05-Jun-08	="Heating and ventilation and air circulation"	20-May-08	30-Jun-08	14142.98	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88201"	"Use of Exisitng ASP Contract  - ECP Main SW Pump Discharge Vavle"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	20-May-08	30-Jun-08	12840.14	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88234"	"POC: TEJINDER UPPAL CONTACT: 02 626 50778"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14905.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:36 PM	

+="CN88244"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	13750.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 01:37 PM	

+="CN88245"	"TD 115 - ECPINS V5.1 CONFIGURATION CHANGE TO"	="Defence Materiel Organisation"	05-Jun-08	="Software"	22-May-08	12-Jun-08	15002.39	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	05-Jun-08 01:37 PM	

+="CN88272"	"CONDUCT HULL CROP & RENEW REPAIRS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	16-May-08	13-Jun-08	15867.28	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:40 PM	

+="CN88280"	"OVERHAUL LCM8 CRADLES AND PEDESTALS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	23-May-08	20-Jun-08	12767.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88282"	"MICROFILM SCANNER - SCAN PRO 1000"	="Defence Materiel Organisation"	05-Jun-08	="Office machines and their supplies and accessories"	28-Apr-08	31-May-08	15389.00	=""	="WOLLONGONG DRAWING AND OFFICE"	05-Jun-08 01:41 PM	

+="CN88284"	"ACCUMULATOR, HYDRAULIC"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	30-Apr-08	04-Dec-08	12612.11	=""	="TACTAIR FLUID CONTROLS INC"	05-Jun-08 01:42 PM	

+="CN88289"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	04-Jun-08	30-Jun-08	14456.26	=""	="RAYTHEON AUST PTY LTD"	05-Jun-08 01:42 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88303"	"5 x 21" monitors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	12236.76	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 01:44 PM	

+="CN88306"	"WAVEGUIDE SWITCH"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	14-May-08	01-Feb-09	14206.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	05-Jun-08 01:44 PM	

+="CN88309"	"Use of Exisitng ASP Contract  - Annual Service Pt Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88310"	"Use of Exisitng ASP Contract  - Annual Service STBD Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88319"	"ARH INDEPENDENT AIRCRAFT LIGHTING REVIEW"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	06-May-08	30-May-08	12162.15	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:45 PM	

+="CN88324"	"Amend various TMS's"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	13089.93	=""	="THALES AUSTRALIA"	05-Jun-08 01:46 PM	

+="CN88336"	"Use of Exisitng ASP Contract  - Replace tiles in officer cabin"	="Defence Materiel Organisation"	05-Jun-08	="Fibres and textiles and fabric industries"	05-May-08	30-Jun-08	12967.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88338"	"Prepare & supply drawings for mounting of 600kg Davit system to vessel of opportunity S/H Standa"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	05-May-08	30-Jun-08	14748.80	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 01:48 PM	

+="CN88343"	"THIS PRICE INCLUDES INSTALLATION AND COMMISSIONING DENTAL SERVICES AS PER RFQ7780359"	="Defence Materiel Organisation"	05-Jun-08	="Medical apparel and textiles"	06-May-08	06-May-08	12870.00	=""	="IVOCLAR VIVADENT"	05-Jun-08 01:48 PM	

+="CN88350"	"GRADUATE DIPLOMA IN LEGAL PRACTICE WORKSHOP FOR 2006 MGS LEGAL GRADUATES"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	12-Nov-07	30-Jun-08	15483.60	=""	="ANU"	05-Jun-08 01:49 PM	

+="CN88364"	" Accounting for internally generated software "	="Australian Taxation Office"	05-Jun-08	="Public enterprises management or financial services"	27-May-08	25-Jun-08	15160.00	=""	="Ernst & Young"	05-Jun-08 01:52 PM	

+="CN88372"	"Reimbursement of Rent - Elphinstone Close"	="Defence Materiel Organisation"	05-Jun-08	="Permanent structures"	06-May-08	30-Jun-08	12500.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:52 PM	

+="CN88386"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS PARRAMATTA DURING DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	11-Nov-08	15522.66	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:54 PM	

+="CN88389"	"Task backlog"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	18-Dec-07	17-Jan-08	15419.80	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:54 PM	

+="CN88396"	"REPAIR CARGO HATCH HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	02-Jun-08	04-Feb-08	12321.95	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:55 PM	

+="CN88398"	"Technical and Engineering Support EMU"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-May-08	30-Jun-08	12344.64	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:55 PM	

+="CN88402"	"Detailed Design Package- Installation of CMDS Lock ers on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	01-Oct-08	12320.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	05-Jun-08 01:55 PM	

+="CN88406"	"engineering services"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	12-Mar-08	04-Jun-08	13005.33	=""	="G A GLANVILLE & CO"	05-Jun-08 01:56 PM	

+="CN88407"	"Lease of Vehicle under Agency Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	31-Dec-09	13562.11	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:56 PM	

+="CN88409"	"BDS CABLE REPLACEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	11-Nov-07	30-Jun-08	14552.29	=""	="C4I PTY LTD"	05-Jun-08 01:56 PM	

+="CN88410"	"FCBP PLATFORM DOCUMENT ARCHIVING PROGRAM EXT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-Jun-08	14797.21	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:56 PM	

+="CN88428"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14773.00	=""	="KPMG AUSTRALIA"	05-Jun-08 01:59 PM	

+="CN88438"	"SDV Systems Admin Training for the Eastern States and Perth."	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-May-08	30-Jun-08	13750.00	=""	="SECURE SYSTEMS LTD"	05-Jun-08 02:00 PM	

+="CN88440"	"REVIEW HMAS KANIMBLA WORK PACK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	16-May-08	13750.00	=""	="DET NORSKE VERITAS"	05-Jun-08 02:00 PM	

+="CN88444"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	12-May-08	07-Jul-08	14790.60	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 02:00 PM	

+="CN88472"	"SHOCK APPROVED SERVER RACK"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Jun-08	15660.32	=""	="THALES AUSTRALIA"	05-Jun-08 02:04 PM	

+="CN88483"	"TESTING OD SAD LIFING EQUIP HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	23-May-08	12745.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 02:05 PM	

+="CN88488"	"Survey & Repair Accomodation Module ex HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	12-May-08	30-Jun-08	14133.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:06 PM	

+="CN88523"	"Purchase of Pin Ground Safety for use on F/A-18."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	08-May-08	30-Apr-09	14786.46	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:10 PM	

+="CN88530"	"PANEL ASSEMBLY CONTROL"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	07-May-08	30-Aug-08	12020.49	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:11 PM	

+="CN88538"	"WA Periscope Workshop Activity 7 - Clean Room Basic Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jun-08	14015.12	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88545"	"Decommissioning of Deakin Primary Injection Facility"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	07-May-08	30-Jun-08	12204.72	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	05-Jun-08 02:12 PM	

+="CN88551"	"Battery, non-rechargeable"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	09-May-08	30-Jan-09	12844.26	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 02:13 PM	

+="CN88555"	"FGA ANSWER BOOKLETS FOR GRADUATE ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	09-May-08	30-Jun-08	15917.50	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	05-Jun-08 02:14 PM	

+="CN88579"	"Acquisition of "CORE" Software Training and Travel Expenses  - AIR 7000 PH1 & PH2 Project Office"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	12274.15	=""	="T E & J L DEECKE PTY LTD"	05-Jun-08 02:16 PM	

+="CN88592"	"DUMMY LOAD, ELECTRICAL NSN 5985/01558379"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	13-May-08	10-Jun-08	14448.00	=""	="PACIFIC AERODYNE PTY LTD"	05-Jun-08 02:40 PM	

+="CN88601"	"INTERNET SERVICE FEES APRIL 08"	="Administrative Appeals Tribunal"	05-Jun-08	="Computer services"	15-Apr-08	30-Apr-08	13264.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	05-Jun-08 02:53 PM	

+="CN88605"	"Consultancy Services for Courtroom Technology"	="Family Court of Australia"	05-Jun-08	="Information technology consultation services"	05-Jun-08	05-Sep-08	14300.00	=""	="CHW Consulting Pty Ltd"	05-Jun-08 02:57 PM	

+="CN88606"	"    Itinerary 025 - Sydney - Singapore - Paris - Frankfurt - Singapore - Melbourne    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	14-May-08	14-May-08	15878.46	=""	="HRG Australia"	05-Jun-08 02:59 PM	

+="CN88616"	"Progression in and attrition from Science, Technolnology, Engineering and Maths education and careers"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	28-Mar-08	30-Jun-08	15730.00	="PRN18456"	="NATIONAL CENTRE FOR VOCATIONAL"	05-Jun-08 03:05 PM	

+="CN88628"	"FPi 2025 Mail Inserter"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-Jun-08	15400.00	="PRN19534"	="Dataflex Pty Ltd"	05-Jun-08 03:09 PM	

+="CN88638"	"Venue Hire Maritime meeting The Esplanade"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14000.00	="PRN19375"	="ESPLANADE UNIT TRUSH"	05-Jun-08 03:12 PM	

+="CN88665"	"VANE ASSEMBLY, COMPRESSOR, AIRCRAFT, GAS TURBINE NSN 2840/015155557"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	30-May-08	14695.80	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:02 PM	

+="CN88667"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 1560/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	29-May-08	12-Jun-08	12873.52	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:05 PM	

+="CN88668"	"CIRCUIT CARD ASSEMBLY NSN 5998/015025152"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	17-Jul-08	15455.76	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:07 PM	

+="CN88676"	"Outer Envelopes"	="Australian Electoral Commission"	05-Jun-08	="Specialty envelopes"	01-Jan-06	01-Jan-09	12742.40	=""	="Australian Envelopes"	05-Jun-08 04:27 PM	

+="CN88677"	"REPAIR - TURBOFAN, AIR CONDITIONING"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	18-Mar-05	30-May-08	14563.21	=""	="QANTAS AIRWAYS LTD"	05-Jun-08 04:28 PM	

+="CN88705"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 04:48 PM	

+="CN88706"	"Allison Luque, $36.05p/hr, 30 hrs p/ Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	15862.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:49 PM	

+="CN88708"	"Network Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	12975.60	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 04:49 PM	

+="CN88715"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	15449.54	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 04:50 PM	

+="CN88725"	"SERVICE AND REPLACE CLUTCH"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	12-May-08	12-Jun-08	13978.78	=""	="R G M MAINTENANCE PTY LTD"	05-Jun-08 04:51 PM	

+="CN88745"	"SOFTWARE LICENCE AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	26-Jun-08	15000.00	=""	="INDIGO SOFTWARE LTD"	05-Jun-08 04:55 PM	

+="CN88765"	"RANDWICK DISPOSAL  &  RATIONALISATION PROJECT- SCALE MODEL OF THE RANDWICK DEFEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-08	14300.00	=""	="IDRAWFAST"	05-Jun-08 04:57 PM	

+="CN88766"	"Beef diced Type 1 Knucle (2070) as per ADFFS 5-6-2 and 5-6-12 V1."	="Department of Defence"	05-Jun-08	="Meat and poultry products"	19-May-08	11-Jul-08	14880.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 04:58 PM	

+="CN88781"	"SUPPORT TO CYBIRD FLIGHT TRIALS"	="Department of Defence"	05-Jun-08	="Flight instrumentation"	19-May-08	02-Jun-08	15840.00	=""	="CYBER TECHNOLOGY"	05-Jun-08 04:58 PM	

+="CN88790"	"Machinery spares for LX120-2 and 850J dozer ISO AACAP08 - Kalumburu"	="Department of Defence"	05-Jun-08	="Vehicle bodies and trailers"	19-May-08	30-Jun-08	14536.18	=""	="HITACHI CONSTRUCTION MACHINERY"	05-Jun-08 04:59 PM	

+="CN88798"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	15947.04	=""	="PACLINK ACT"	05-Jun-08 04:59 PM	

+="CN88801"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	14102.00	=""	="CLAYTON UTZ"	05-Jun-08 04:59 PM	

+="CN88807"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14460.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 04:59 PM	

+="CN88812"	"Facilitator fee for Practising Health &  Safety"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	17-Jun-08	13230.30	=""	="PAM PRYOR & ASSOCIATES"	05-Jun-08 05:00 PM	

+="CN88823"	"AIRCONDITIONI9NG SERVICE & REPAIRS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	12300.72	=""	="COOLSERVE AIR-CONDITION ENGINEERING"	05-Jun-08 05:00 PM	

+="CN88824"	"CM1553 -3CT3 WITH CO PILOT PLUS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-May-08	30-May-08	14603.60	=""	="DEDICATED SYSTEMS AUSTRALIA"	05-Jun-08 05:00 PM	

+="CN88833"	"Provision of Professional Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	14080.00	=""	="TOTAL TECHNOLOGY PARTNERS"	05-Jun-08 05:01 PM	

+="CN88834"	"SHELVING / STORAGE UNITS."	="Department of Defence"	05-Jun-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	19-May-08	06-Jun-08	14780.70	=""	="INTERWORX PTY LTD"	05-Jun-08 05:01 PM	

+="CN88844"	"Repair or replace regional FP&E where RWL applies"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	20-May-08	30-Jun-08	12744.88	=""	="TRANSFIELD SERVICES AUSTRALIA"	05-Jun-08 05:01 PM	

+="CN88851"	"Training Course"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-May-08	30-May-08	15200.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88875"	"STORAGE SYSTEM"	="Department of Defence"	05-Jun-08	="Storage"	19-May-08	30-Jun-08	13132.71	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:03 PM	

+="CN88876"	"CAMERA EQUIPMENT"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-May-08	13-May-08	12285.00	=""	="TED'S CAMERA STORE"	05-Jun-08 05:03 PM	

+="CN88877"	"Minor construction & repair work"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	18-Jun-08	12848.00	=""	="M & P BUILDERS PTY LTD"	05-Jun-08 05:03 PM	

+="CN88880"	"Cables"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	27-May-08	12415.70	=""	="BRUCE HICK ELECTRICAL DATA"	05-Jun-08 05:03 PM	

+="CN88886"	"Contract file: 2008-1053358 refers"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Aug-08	12756.48	=""	="ICON RECRUITMENT"	05-Jun-08 05:04 PM	

+="CN88887"	"BEEF DICED TYPE 1 KNUCKLE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	22-Aug-08	13888.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88890"	"BEEF TYPE 1 KNUCKLE DICED"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	12-Sep-08	12896.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88897"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	14566.06	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:04 PM	

+="CN88905"	"C Class Equipment"	="Department of Defence"	05-Jun-08	="Housings and cabinets and casings"	19-May-08	30-Jun-08	12461.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 05:04 PM	

+="CN88909"	"POC: S.Marner Quotation: 1604"	="Department of Defence"	05-Jun-08	="Hardware"	08-May-08	29-May-08	15786.91	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:04 PM	

+="CN88919"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	21-May-08	31-Jul-09	12100.00	=""	="DR D M HOWARD"	05-Jun-08 05:05 PM	

+="CN88925"	"DELL  AS-PE2900 SERVER COMP"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	22-May-08	12815.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88927"	"EDINBURGH LAND ACQUISITION "STAGE 9C AND 9D""	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	12100.00	=""	="AUSTRALIAN VALUATION OFFICE"	05-Jun-08 05:05 PM	

+="CN88938"	"ENVIRONMENTAL ACTIVITY AND PLANNING TOOL."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13970.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:06 PM	

+="CN88957"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	05-Jun-08	12038.42	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:07 PM	

+="CN88963"	"ULTRAMAX 2007 AUTOMATIC POOL CLEANER WITH 45 METRE  CABLE & ULTRAMAX HOIST."	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	08-May-08	08-May-08	12226.01	=""	="METCO INDUSTRIAL EQUIPMENT"	05-Jun-08 05:07 PM	

+="CN88967"	"FUJITSU A4 COLOUR DOCUMENT SCANNER & A3 COLOUR DOCUMENT SCANNER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	10-Jun-08	13096.16	=""	="COMMANDER (SA/WA) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88971"	"NQ2081 - HMAS Cairns Comms Room and Server Works."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	19-May-08	30-Jun-08	14912.70	=""	="EMAK COMMUNICATIONS"	05-Jun-08 05:07 PM	

+="CN88976"	"DODC Maintenance"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	30-Jun-08	15780.27	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88978"	"Sea Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	12003.20	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88982"	"IT equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	12089.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:08 PM	

+="CN88986"	"PRINTING"	="Department of Defence"	05-Jun-08	="Printed media"	19-May-08	20-May-08	14698.50	=""	="ELECT PRINTING"	05-Jun-08 05:08 PM	

+="CN88993"	"MACHINERY"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	08-May-08	30-Jun-08	12829.98	=""	="GENERATOR PLACE"	05-Jun-08 05:08 PM	

+="CN88997"	"Purchase TSCe - Trimble controller unit"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14511.20	=""	="ULTIMATE POSITIONING"	05-Jun-08 05:08 PM	

+="CN89035"	"FIELD RATIONS - ION 17864 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	07-May-08	30-Jun-08	15500.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:10 PM	

+="CN89045"	"DEMAND NO. RPAE-7EQFNH POLARIS QUOTE NO. 102375"	="Department of Defence"	05-Jun-08	="Specialised and recreational vehicles"	22-May-08	12-Jun-08	12216.17	=""	="POLARIS SALES AUSTRALIA &"	05-Jun-08 05:10 PM	

+="CN89056"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-May-08	13393.20	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:11 PM	

+="CN89060"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	14800.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:11 PM	

+="CN89063"	"Mercury Outboard motor"	="Department of Defence"	05-Jun-08	="Marine transport"	22-May-08	30-Jun-08	15081.00	=""	="QUAY MARINE"	05-Jun-08 05:11 PM	

+="CN89064"	"Repair and Calibration"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	12920.60	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:11 PM	

+="CN89089"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-May-08	13750.00	=""	="DBM AUSTRALIA"	05-Jun-08 05:12 PM	

+="CN89097"	"CAD package"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	20-Jun-08	13139.50	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 05:13 PM	

+="CN89099"	"985-AFG009-P3J - Supply and install of fencing."	="Department of Defence"	05-Jun-08	="Security and control equipment"	21-May-08	30-Jun-08	13846.56	=""	="C&C BUILDING MATERIALS"	05-Jun-08 05:13 PM	

+="CN89111"	"PRINTING OF MAPS GAC 28008"	="Department of Defence"	05-Jun-08	="Paper products"	21-May-08	25-Jun-08	12476.20	=""	="MCMILLAN PRINT GROUP"	05-Jun-08 05:13 PM	

+="CN89112"	"Software Support"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	01-Jun-09	12598.87	=""	="SWEDISH INSTITUTE OF COMPUTER"	05-Jun-08 05:13 PM	

+="CN89118"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:14 PM	

+="CN89120"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	21-May-08	30-Jun-08	12940.40	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:14 PM	

+="CN89147"	"PATCHLEADS AND ACCESSORIES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	13247.89	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89161"	"PROVISIONS FOR HMAS SIRIUS FY07/08"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-May-08	30-Jun-08	15328.00	=""	="ANGLISS SINGAPORE PTE LTD"	05-Jun-08 05:16 PM	

+="CN89165"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	13-Jun-08	12134.06	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89174"	"Computer accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14266.12	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:16 PM	

+="CN89176"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:16 PM	

+="CN89180"	"DOCUCENTRE 2005CP"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	19-May-08	23-May-08	14075.05	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89182"	"Thin client terminals"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15469.30	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:16 PM	

+="CN89183"	"PERSONAL EFFICIENCY PROGRAM."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	19-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:16 PM	

+="CN89193"	"Training"	="Department of Defence"	05-Jun-08	="Satellites"	09-May-08	30-May-08	13640.00	=""	="MARTIN LACK & ASSOCIATES"	05-Jun-08 05:17 PM	

+="CN89194"	"ANNUAL PROGRAM MEMBERSHIP"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Apr-09	13065.75	=""	="CONSORTIUM FOR ADVANCED MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89203"	"POC: DAVE MANCHESTER CONTACT: 02 626 50175"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	13794.00	=""	="PLANWELL TECHNOLOGY"	05-Jun-08 05:17 PM	

+="CN89206"	"CFS FIREM SYSTEM MONITORING"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	30-Jun-11	15400.00	=""	="ONKAPARINGA CFS GROUP"	05-Jun-08 05:18 PM	

+="CN89212"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	15000.00	=""	="TERRY GARDINER'S MEATS &"	05-Jun-08 05:18 PM	

+="CN89216"	"ELECTRICAL PRODUCTS TO REPLENISH ERK KIT"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	28-May-08	14802.88	=""	="IDEAL ELECTRICAL SUPPLIERS PTY LTD"	05-Jun-08 05:18 PM	

+="CN89217"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:18 PM	

+="CN89227"	"3 Day Defensive/Advanced Driver Training Program"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	06-May-08	11-Jun-08	15399.00	=""	="MURCOTTS DRIVING EXCELLENCE"	05-Jun-08 05:18 PM	

+="CN89264"	"DFR SPONSORSHIP OF MSAND FOR 2008. OPPORTUNITY TO UNDERGRADUATE MEDICAL STUDENTS PLUS POST GRADUATE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	14500.00	=""	="MEDICAL STUDENT ASSOCIATION NOTRE"	05-Jun-08 05:20 PM	

+="CN89270"	"Safety Cabinets"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	15-May-08	01-Jul-08	14888.54	=""	="J BLACKWOOD & SON LTD"	05-Jun-08 05:20 PM	

+="CN89273"	"MOBILE PHONES AND CHARGERS"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	15-May-08	13860.07	=""	="WATTS COMMUNICATIONS"	05-Jun-08 05:20 PM	

+="CN89280"	"Consultancy Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	12276.00	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	05-Jun-08 05:21 PM	

+="CN89285"	"Seaboat Coxswain Course"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12838.28	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 05:21 PM	

+="CN89299"	"Quote by Robert Lacey - Defence Account Manager"	="Department of Defence"	05-Jun-08	="Hardware"	06-May-08	30-Jun-08	12316.90	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89304"	"Payment of Freight"	="Department of Defence"	05-Jun-08	="Mail and cargo transport"	08-May-08	15-May-08	13211.12	=""	="STAR TRACK EXPRESS PTY LTD"	05-Jun-08 05:22 PM	

+="CN89305"	"BUILDING MODIFICATIONS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	23-May-08	13570.70	=""	="COMMERCIAL MAINTENANCE"	05-Jun-08 05:22 PM	

+="CN89313"	"FURNITURE FOR BLDG 135, MEOMS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	10-Jun-08	12441.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:22 PM	

+="CN89337"	"DEMAND NO.SGID-7E6DRS"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	09-May-08	30-Jun-08	13184.88	=""	="JOHN R TURK"	05-Jun-08 05:23 PM	

+="CN89341"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	15986.41	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:24 PM	

+="CN89345"	"HIRE OF TEMPORY FENCE"	="Department of Defence"	05-Jun-08	="Military tactics"	02-May-08	17-Jun-08	12035.32	=""	="COATES HIRE OPERATION"	05-Jun-08 05:24 PM	

+="CN89350"	"Hire of VI IAW Drake Standing Offer LH01/05"	="Department of Defence"	05-Jun-08	="Motor vehicles"	15-May-08	30-Jun-08	12033.38	=""	="DRAKE INTERNATIONAL"	05-Jun-08 05:24 PM	

+="CN89359"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	13742.80	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:24 PM	

+="CN89363"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	12042.06	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:25 PM	

+="CN89368"	"CERT III & IV IN FITNESS TRAINING"	="Department of Defence"	05-Jun-08	="Other sports"	15-May-08	30-Jan-09	15815.00	=""	="FITLINK AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89401"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - SHIPPING CONTAINERS"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	30-Jun-08	15290.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89405"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - FENCE WORK TO HARRISTOWN DEPOT"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-May-08	30-Jun-08	15923.60	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89419"	"Sonar Transceiver -STR (C-MAX) and C-Shell (C-MAX)"	="Department of Defence"	05-Jun-08	="Surveillance and detection equipment"	05-May-08	30-May-08	12210.00	=""	="SONARTECH ATLAS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89420"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	14-May-08	30-Jun-08	13860.00	=""	="ADHESION ASSOCIATES PTY LTD"	05-Jun-08 05:28 PM	

+="CN89422"	"Safety Equipment."	="Department of Defence"	05-Jun-08	="Personal safety and protection"	14-May-08	14-May-08	13699.85	=""	="GEMINEX PTY LTD"	05-Jun-08 05:28 PM	

+="CN89423"	"Remaval and Rebuild of Main Groupswitch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	30-May-08	13585.00	=""	="TELSTRA BUSINESS SERVICES"	05-Jun-08 05:28 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89427"	"SUPPLY & INSTALL LCD TVS & AUDIO SYSTEM GYMNASIUM RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	30-May-08	12572.01	=""	="NORTH COAST STEREO PTY LTD"	05-Jun-08 05:28 PM	

+="CN89429"	"SPARE PARTS"	="Department of Defence"	05-Jun-08	="Motor vehicles"	07-May-08	06-Jun-08	12316.01	=""	="WESTERN DIESEL NT PTY LTD"	05-Jun-08 05:29 PM	

+="CN89439"	"FIRST AID"	="Department of Defence"	05-Jun-08	="Medical facility products"	07-May-08	30-Jun-08	15055.00	=""	="ST JOHN AMBULANCE AUSTRALIA NSW"	05-Jun-08 05:29 PM	

+="CN89440"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	14352.80	=""	="CAFE CULTURE AUSTRALIA PTY LIMITED"	05-Jun-08 05:29 PM	

+="CN89453"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	07-May-08	30-Jun-08	13530.00	=""	="AVANTI FITNESS"	05-Jun-08 05:30 PM	

+="CN89459"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12775.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:31 PM	

+="CN89474"	"POC: STEVE BROAD CONTACT: 02 626 60003"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	14532.67	=""	="COMMANDER INTEGRATED NETWORKS PTY"	05-Jun-08 05:32 PM	

+="CN89479"	"FORDIGRAPH DEP.SHREDDER E2026FCCM QTY X 5"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	16-May-08	23-May-08	15097.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89486"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	15180.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:32 PM	

+="CN89505"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12385.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:33 PM	

+="CN89511"	"SAFE/SECURE BOX"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	16-May-08	31-Dec-08	12249.99	=""	="SAFE-TEC LOCKSMITHS PTY LTD"	05-Jun-08 05:34 PM	

+="CN89516"	"SUPPLY AND INSTALL SCARDA SYSTEM"	="Department of Defence"	05-Jun-08	="Master control systems"	06-May-08	26-May-08	14916.00	=""	="CONTREC SYSTEMS"	05-Jun-08 05:34 PM	

+="CN89520"	"CATERING"	="Department of Defence"	05-Jun-08	="Restaurants and catering"	06-May-08	06-May-08	14432.00	=""	="KAREN WILL CATER"	05-Jun-08 05:34 PM	

+="CN89531"	"ENVIRONMENTAL IMPACT AND CLIMATE CHANGE WORKSHOP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13361.33	=""	="MAUNSELL AUSTRALIA PTY LTD"	05-Jun-08 05:35 PM	

+="CN89544"	"REPAY DMO FOR UNUSED RESERVE SALARIES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-May-08	15265.37	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:36 PM	

+="CN89550"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:36 PM	

+="CN89553"	"Video Conference System"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	07-May-08	30-Jun-08	15526.50	=""	="PROJECTION PLUS"	05-Jun-08 05:36 PM	

+="CN89559"	"Provide demonstration of reliability and Maintenan -ce Analysis softaware, hardware for DSTO204915"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	07-May-08	09-May-08	15353.80	=""	="EQUIPMENT MANAGEMENT INTERNATIONAL"	05-Jun-08 05:37 PM	

+="CN89561"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	07-May-08	30-Jun-08	12540.00	=""	="INTERWORX PTY LTD"	05-Jun-08 05:37 PM	

+="CN89590"	"Outdoor activity provider for bush trip , 65 DITC staff and long course students  28-30 May 2008"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-May-08	30-May-08	15247.19	=""	="THE JUNGAI CENTRE"	05-Jun-08 05:39 PM	

+="CN89592"	"HAND TOOLS"	="Department of Defence"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	14256.61	=""	="TOOLWORKS"	05-Jun-08 05:39 PM	

+="CN89597"	"SN02274 Ergonomic assesments for ADF Staff across the ACT/SNSW Region"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	04-Jun-08	30-Jun-08	15400.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89600"	"Standing Offer 45190"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	15-May-08	30-Jun-08	15599.76	=""	="BLUE SWIMMER CONSULTING"	05-Jun-08 05:39 PM	

+="CN89612"	"MCSA training for SME"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	15200.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	05-Jun-08 05:40 PM	

+="CN89635"	"FURNITURE RELOCATION AND INSTALLATION REQUIREMENTS FOR 2007/2008"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	15-May-08	30-Jun-08	14297.38	=""	="DICK VERNON CONSTRUCTIONS"	05-Jun-08 05:42 PM	

+="CN89640"	"SAM KEY MANAGEMENT SYSTEM"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	20-Jun-08	13371.00	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:42 PM	

+="CN89665"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	16-May-08	23-May-08	15313.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89669"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	12203.76	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89670"	"PEP Worldwide training for 6 people"	="Department of Defence"	05-Jun-08	="Electronic reference material"	23-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:44 PM	

+="CN89671"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	14438.61	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89678"	"PRESENTATION OF POWER SEARCHING FOR DEFENCE"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	23-May-08	15282.30	=""	="INFORMATION EDGE PTY LTD"	05-Jun-08 05:44 PM	

+="CN89689"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	31-Mar-08	30-Sep-08	13332.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89690"	"UOTF PROTOTYPE- MAJURA RANGE. FIRE ENGINEERING ASSESSMENT OF J0035-JCTC PROTOTYP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	15950.00	=""	="ARUP PTY LTD"	05-Jun-08 05:45 PM	

+="CN89696"	"Contractor to support JDSSC workshop for JP2065"	="Department of Defence"	05-Jun-08	="Project management"	23-May-08	30-Jun-08	12400.00	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89700"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89723"	"PAYMENT OF HIRE TRANSPORT VEHICLES"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	09-May-08	08-Jun-08	13864.42	=""	="SERCO SODEXHO DEFENCE SERVICES"	05-Jun-08 05:47 PM	

+="CN89725"	"REPLACEMENT FUEL HOSES ON DAF 30,000L TANKER REG NO:229757,230079 & 229742"	="Department of Defence"	05-Jun-08	="Aircraft fuel tanks and systems"	15-Apr-08	26-May-08	15720.00	=""	="LIQUIP INTERNATIONAL PTY LTD"	05-Jun-08 05:47 PM	

+="CN89727"	"CHARTER X 2 BROOME/TRUSCOTT FOR OP RESOLUTE 29APR AND 6 MAY 2008 NORFORCE"	="Department of Defence"	05-Jun-08	="Aircraft"	06-May-08	06-May-08	15400.00	=""	="BROOME AVIATION PTY LTD"	05-Jun-08 05:47 PM	

+="CN89730"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12200.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89733"	"VEHICLE LEASE 4 TON TELE-HANDLER"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	18-May-08	24-May-08	15761.98	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89753"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-08	12842.50	=""	="MORISON CONSULTING PTY LTD"	05-Jun-08 05:49 PM	

+="CN89756"	"PROVISION OF DEVELOPMENT OF FATIGUE AWARENESS ELEARNING PACKAGE"	="Department of Defence"	05-Jun-08	="Specialised educational services"	23-May-08	30-Jun-08	14344.00	=""	="IMPART CORPORATION PTY LTD"	05-Jun-08 05:49 PM	

+="CN89761"	"INTERIM WORKS  - TRAINEE REHABILITATION WING, MOOR NSW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	14613.81	=""	="CORDUKES"	05-Jun-08 05:50 PM	

+="CN89765"	"COURSE"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Feb-08	10-Mar-08	15400.00	=""	="INGRES AUSTRALIA"	05-Jun-08 05:50 PM	

+="CN89768"	"AQIS OFFSHORE INSPECTION OP ASTUTE"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	23-May-08	31-May-08	14898.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:50 PM	

+="CN89773"	"Security"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	30-May-08	30-Jun-08	12568.60	=""	="CHUBB SECURITY AUST PTY LTD"	05-Jun-08 05:50 PM	

+="CN89785"	"DMO DIPLOMA OF PROJECT MANAGEMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-Apr-08	30-Jun-08	12100.00	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:51 PM	

+="CN89801"	"THREE AIR-RIDE TRAILERS TO COLLECT FREIGHT FROM WL ATTACHED EMAIL."	="Department of Defence"	05-Jun-08	="Transportation services equipment"	17-Apr-08	17-Apr-08	13605.90	=""	="TNT EXPRESS"	05-Jun-08 05:52 PM	

+="CN89811"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	15152.50	=""	="ICON RECRUITMENT"	05-Jun-08 05:53 PM	

+="CN89815"	"PSP contractor"	="Department of Defence"	05-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	13824.47	=""	="RECRUITMENT QUEENSLAND"	05-Jun-08 05:53 PM	

+="CN89818"	"SOFTWARE LICENCES AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	30-May-08	14685.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89821"	"Consultant for accomodation project"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	13468.91	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:53 PM	

+="CN89857"	"FROZEN FOOD"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	21-Apr-08	30-Jun-08	15569.46	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:56 PM	

+="CN89862"	"FURNITURE FOR ARMIDALE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	15102.20	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:56 PM	

+="CN89868"	"The NBS Request to UDP Work Package 185/07"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-May-08	13899.12	=""	="RITECH"	05-Jun-08 05:56 PM	

+="CN89887"	"LWP-G 3-9-6 DOCTRINE PUBLCIATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-Nov-07	27-Jun-08	12801.39	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:57 PM	

+="CN89900"	"POC: GLENN MACKAY CONTACT: 08 9956 2565"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	15237.20	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:58 PM	

+="CN89902"	"TRANSPORT CASES"	="Department of Defence"	05-Jun-08	="Luggage and handbags and packs and cases"	26-May-08	31-May-08	15840.00	=""	="PRODATA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89918"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	12280.99	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 05:59 PM	

+="CN89924"	"FACOPS"	="Department of Defence"	05-Jun-08	="Pest control products"	26-May-08	30-Jun-08	13156.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89925"	"Itronix VR-2 Semi Rugged Notebooks"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	12-May-08	29-May-08	14737.80	=""	="ANTARES CORPORATION PTY LTD"	05-Jun-08 06:00 PM	

+="CN89927"	"Apron Lighting Survey for RAAF Edinburgh"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	12100.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89946"	"OFFICE WORKSTATIONS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	17-Jun-08	12012.00	=""	="KEEN OFFICE FURNITURE"	05-Jun-08 06:01 PM	

+="CN89947"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR EDINBURUGH ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12648.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89949"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR PUCKAPUNYAL ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12752.30	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89952"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	30-Jun-08	14625.90	=""	="BALL SOLUTIONS GROUP PTY LTD"	05-Jun-08 06:02 PM	

+="CN89953"	"FOAM FLOATATION COLLAR FOR DUMMY TOPEDO UNDER BOEI NG STANDING OFFER 873864"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	21-May-08	06-Jun-08	12636.00	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 06:02 PM	

+="CN89955"	" Education expenses "	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-May-08	30-Jun-08	12262.40	=""	="AUSTRALIAN INTERNATIONAL SCHOOL"	05-Jun-08 06:02 PM	

+="CN88590"	"Cylinder Assembly, Actuating, Linear"	="Defence Materiel Organisation"	06-Jun-08	="Motor vehicles"	05-Jun-08	26-Jun-08	12944.14	=""	="Volvo Commercial Vehicles"	06-Jun-08 09:27 AM	

+="CN89978-A1"	"S70B AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	29-May-08	21-Oct-08	14218.18	=""	="ASIA PACIFIC AEROSPACE"	06-Jun-08 10:01 AM	

+="CN89986"	" S70B AIRCRAFT SPARES "	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	07-Jan-09	13879.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Jun-08 11:02 AM	

+="CN90021"	"Printing of manuals"	="Australian Electoral Commission"	06-Jun-08	="Industrial printing services"	12-May-08	23-May-08	13574.00	=""	="Mediaform Computer Supplies Pty Ltd"	06-Jun-08 02:35 PM	

+="CN90031"	"Provision of 19' flat panel LCD monitors"	="Comsuper"	06-Jun-08	="Hardware"	15-May-08	12-Jun-08	14916.00	=""	="Dell Australia"	06-Jun-08 02:53 PM	

+="CN90045"	" Make Good "	="Department of Human Services"	06-Jun-08	="Lease and rental of property or building"	02-Jun-08	30-Jun-08	12210.00	=""	="Alinta Asset Management"	06-Jun-08 03:39 PM	

+="CN87707"	"Contractor EL1 for USO"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	06-May-08	02-Jun-08	13000.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:14 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val150000to300000.xls
@@ -1,1 +1,152 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87901"	"Tool Kit Electricians Generic.  This order has been raised against Standing Offer No. CONL069."	="Defence Materiel Organisation"	05-Jun-08	="Electrician kits"	04-Jun-08	31-Jul-08	187985.16	=""	="Brentool Industrial Supplies Pty Ltd"	05-Jun-08 09:32 AM	

+="CN87946-A1"	"lease at tuggeranong Square, Greenway, ACT"	="Centrelink"	05-Jun-08	="Real estate services"	09-May-08	28-Feb-11	197382.00	=""	="Nikias Nominees Pty Ltd, Long Term Investments Pty Ltd & Michalis Holdings Pty Ltd"	05-Jun-08 12:17 PM	

+="CN87953"	"105MM HAMEL FIELD GUN SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	17-May-08	03-Dec-08	205899.02	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	05-Jun-08 01:02 PM	

+="CN87967"	"Scientific Advisor for JSFIT"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	19-May-08	12-Nov-08	172785.58	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:04 PM	

+="CN87978"	"requirement for support to sustainment and operational release activities"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	19-Dec-08	271416.00	=""	="DAVID MIERS & ASSOCIATES"	05-Jun-08 01:05 PM	

+="CN87985"	"Integration of Int Tool into BCSS R8.0 SP2"	="Defence Materiel Organisation"	05-Jun-08	="Software"	16-May-08	30-Aug-08	178200.00	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:06 PM	

+="CN87988"	"The work under this Purchase Order will be done in DMO Support Services (DMOSS) Standing Offer Panel"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	19-Dec-08	198504.88	=""	="NOVA DEFENCE"	05-Jun-08 01:06 PM	

+="CN88003"	"Toyota Hilux 4x2 D/C UTE (UM2) Qty12"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	28-Nov-08	284547.25	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88004"	"Professional services for Neville tommy"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-May-08	27-Aug-08	170478.00	=""	="AUSTRALIAN COLLEGE OF PROJECT MANAG"	05-Jun-08 01:08 PM	

+="CN88008"	"Undertake AMPS related tasks for post FFG Upgrade Configuration Data Alignment  80 days 26Jun-31Oct"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	31-Oct-08	153120.00	=""	="EDEN TECHNOLOGY PTY LTD"	05-Jun-08 01:09 PM	

+="CN88032"	"EXTENSION OF EXISTING BOEING CONTRACT NO. CAPO CP9263260T/1463 BY SIX MONTHS TO 30 NOV 2008."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	14-May-08	30-Nov-08	249161.02	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 01:12 PM	

+="CN88041"	"Installation Design Package for Scan Eagle & MAC2 on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	14-Jul-08	252923.56	=""	="THALES AUSTRALIA"	05-Jun-08 01:13 PM	

+="CN88048"	"Ramset Ph2 - milestone 1 20% Ramset Ph2 - milestone 2 15%"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	09-Sep-08	150946.69	=""	="NOVA AEROSPACE"	05-Jun-08 01:13 PM	

+="CN88070"	"SIngle Channel Vibration, Data Collector"	="Defence Materiel Organisation"	05-Jun-08	="Electronic hardware and component parts and accessories"	15-May-08	28-Jun-13	163779.00	=""	="VITECH ASIA PACIFIC PTY LTD"	05-Jun-08 01:16 PM	

+="CN88073-A1"	" Joint Electronic Fuel Management (JEFM) Project System Software Engineering Services "	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	15-May-08	31-Aug-08	158259.62	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:17 PM	

+="CN88080"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	166089.26	=""	="ARION SYSTEMS PTY LTD"	05-Jun-08 01:17 PM	

+="CN88086"	"Technical services for MIP Gateway"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	31-Aug-08	282241.85	=""	="COMPUCAT RESEARCH PTY LTD"	05-Jun-08 01:18 PM	

+="CN88087"	"PASOR software defined radios"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-May-08	30-May-09	212484.80	=""	="JENKINS ENGINEERING DEFENCE"	05-Jun-08 01:18 PM	

+="CN88119"	"Order raised to cover fuel required by HMAS Ararat during upcoming overseas deployment."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	23-May-08	30-Jun-08	199999.80	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 01:22 PM	

+="CN88133"	"Ad hoc installation of Prism III on ACPBS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	31-Jul-08	158980.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:24 PM	

+="CN88142"	"ARMY SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	23-May-08	22-Dec-08	233833.44	=""	="FN HERSTAL SA"	05-Jun-08 01:25 PM	

+="CN88145"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	178448.68	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 01:25 PM	

+="CN88151"	"AIR WARFARE DESTROYER PROGRAM - AUDIT AND VERIFICATION SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jun-09	165000.00	=""	="KPMG AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88174"	"PSP - Training Devices Engineering Support"	="Defence Materiel Organisation"	05-Jun-08	="Management advisory services"	26-May-08	30-Jun-09	252632.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:29 PM	

+="CN88186"	"Senior Satellite Specialist Engineer"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	26-May-08	02-Jun-09	283360.00	=""	="FOCAL COMMUNICATION PTY LTD"	05-Jun-08 01:30 PM	

+="CN88219"	"TRUST ACCOUNT SUSTAINMENT FY 07/08 ESSM MISSILE"	="Defence Materiel Organisation"	05-Jun-08	="Missiles"	20-May-08	21-Jun-08	299191.04	=""	="NATO SEASPARROW SURFACE MISSILE"	05-Jun-08 01:34 PM	

+="CN88222"	"Documnet Development"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	17-Oct-08	156750.00	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 01:34 PM	

+="CN88253"	"Aircraft Composites"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	21-May-08	06-Nov-08	261800.00	=""	="QUEENSLAND UNIVERSITY OF"	05-Jun-08 01:38 PM	

+="CN88264"	"TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	21-May-08	15-Jun-10	272526.00	=""	="NOVA AEROSPACE"	05-Jun-08 01:39 PM	

+="CN88267"	"Upgrade of  the Validation"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	21-May-08	31-Dec-08	183150.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:40 PM	

+="CN88293"	"Bathurst Island"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	09-May-08	26-Jun-08	170830.00	=""	="C-E SOLUTIONS"	05-Jun-08 01:43 PM	

+="CN88299"	"MULTI LEVEL SECURITY THIN CLIENT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	08-Apr-08	01-May-08	192328.59	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:43 PM	

+="CN88301"	"4532.06 - LOE TO CARRY OUT DUTIES OF EXPLOSIVE ORDANCE STOWAGE & HANDLING TECH OFFICER"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-Apr-08	30-Jun-09	181500.00	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:43 PM	

+="CN88312"	"Services to update Quality Management Systems"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	06-May-08	30-Sep-08	154000.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:45 PM	

+="CN88314"	"Provision of an Aircraft Avionics Design Engineer"	="Defence Materiel Organisation"	05-Jun-08	="Temporary personnel services"	06-May-08	29-Jan-09	204540.00	=""	="RAPID ASCENT CONSULTING"	05-Jun-08 01:45 PM	

+="CN88321"	"SAFE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	06-May-08	30-Jun-08	175452.20	=""	="FILEGUARD CO (MFG) PTY LTD"	05-Jun-08 01:46 PM	

+="CN88329"	"AIR DATA TEST SETS"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	30-Apr-08	30-Jul-08	234551.79	=""	="DAVIDSON MEASUREMENT"	05-Jun-08 01:47 PM	

+="CN88332"	"air handling units for HS A/C upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	02-May-08	10-Oct-08	234075.60	=""	="AIMTEK PTY LTD"	05-Jun-08 01:47 PM	

+="CN88333"	"Production of TNA"	="Defence Materiel Organisation"	05-Jun-08	="Electronic reference material"	02-May-08	05-Sep-08	174590.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	05-Jun-08 01:47 PM	

+="CN88348"	"LOGISTIC SUPPORT SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	30-Oct-08	243834.58	=""	="BIRDON MARINE PTY LTD"	05-Jun-08 01:49 PM	

+="CN88349"	"BDS UPGRADE FOR LPAs."	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	12-Nov-07	30-Jun-08	203274.90	=""	="C4I PTY LTD"	05-Jun-08 01:49 PM	

+="CN88383"	"GSR through life support contract"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	28-Apr-08	30-Jun-09	154113.10	=""	="THALES COMMUNICATIONS LIMITED"	05-Jun-08 01:53 PM	

+="CN88397-A1"	" TASK 4142-4 LOE COMBAT SNC "	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	04-Feb-08	21-Mar-11	246528.92	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:55 PM	

+="CN88401"	"INTEGRATION & ACCEPTANCE TESTING"	="Defence Materiel Organisation"	05-Jun-08	="Software"	28-Feb-08	27-Jun-08	167800.00	=""	="KPMG"	05-Jun-08 01:55 PM	

+="CN88451"	"TS 4188 - IMS GENERAL SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-May-08	30-Jun-08	160730.90	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:01 PM	

+="CN88464"	"Aircraft Engine Compsite Manufacture"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	09-May-08	29-Oct-08	275000.00	=""	="CRC-ACS LTD"	05-Jun-08 02:03 PM	

+="CN88465"	"International Aircraft Engine Component Manufactur"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	09-May-08	02-Nov-08	275000.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	05-Jun-08 02:03 PM	

+="CN88470"	"Milestone payments for AL1 of contract V310152."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	13-May-08	30-Jun-08	163979.99	=""	="AIRFLITE PTY LTD"	05-Jun-08 02:03 PM	

+="CN88474"	"TS 0146-3 PREVENT TOXIX GASES FROM SLUDGE TANKS ENTERING MACHINERY SPACES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	31-Dec-08	160658.30	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:04 PM	

+="CN88478"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	13-May-08	31-Dec-08	209900.90	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:04 PM	

+="CN88494"	"Engagement of software engineer."	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	12-May-08	13-Jun-09	248380.00	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 02:06 PM	

+="CN88501"	"Engagement of PSP Contractors to provide Financial Management Assistance to LSA-N"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	13-May-08	30-Jun-09	294800.00	=""	="ASCENT GOVERNANCE PTY LTD"	05-Jun-08 02:07 PM	

+="CN88513"	"PSP Support to update NDS Documents"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-09	180000.00	=""	="NOVA DEFENCE"	05-Jun-08 02:09 PM	

+="CN88516"	"ARMY SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	07-May-08	07-Apr-09	257850.53	=""	="SAAB BOFORS DYNAMICS AB"	05-Jun-08 02:09 PM	

+="CN88535"	"Procurement of Additional Hard Drives"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-May-08	172379.02	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:11 PM	

+="CN88540"	"SPECIAL TEST EQUIPMENT FOR PASOR"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	31-May-08	273900.00	=""	="SONARTECH ATLAS"	05-Jun-08 02:12 PM	

+="CN88542"	"Magnometers"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-Jun-09	150150.00	=""	="OWEN INTERNATIONAL PTY LTD"	05-Jun-08 02:12 PM	

+="CN88552"	"Sensors, C130 parts"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	09-May-08	19-May-08	172298.15	=""	="ROLLS-ROYCE CORPORATION"	05-Jun-08 02:13 PM	

+="CN88560"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	283980.00	=""	="NOVA AEROSPACE"	05-Jun-08 02:14 PM	

+="CN88566"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	298550.02	=""	="NOVA AEROSPACE"	05-Jun-08 02:15 PM	

+="CN88582"	"1034-3 - CENTRALISED UPS FOR ESSENTIAL COMMUNICATIONS SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-09	262864.80	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88584-A2"	"1103-3 CESM Compartment RF Isolation"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	24-Feb-11	197874.68	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88613"	"Mornington construction management"	="Centrelink"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jun-08	30-Jun-08	193248.00	=""	="Bronts Commercial Interiors Pty Ltd"	05-Jun-08 03:04 PM	

+="CN88619-A1"	"Survey of the factors influencing student choice of university and subject"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Corporate objectives or policy development"	01-May-08	31-Mar-09	161031.00	="PRN17974"	="ROY MORGAN RESEARCH CENTRE PTY L"	05-Jun-08 03:06 PM	

+="CN88637"	"An Even Start- National Tuition Programme Program Administrator Services - Norther Territory"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	31-Mar-09	175962.00	="PRN17026"	="NT CATHOLIC EDUCATION OFFICE"	05-Jun-08 03:12 PM	

+="CN88724"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-09	248655.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 04:51 PM	

+="CN88730"	"SHARP AGI STK EXPERT EDITION SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	13-May-08	30-Jun-08	221344.00	=""	="AUSPACE LIMITED"	05-Jun-08 04:52 PM	

+="CN88732"	"THINQ LMS ANNUAL MAINTENANCE/SUPPORT FEE"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	25-May-09	210834.17	=""	="SABA SOFTWARE INC."	05-Jun-08 04:52 PM	

+="CN88739"	"FACOPS - Building Refurb"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	30-Jun-08	270970.26	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 04:54 PM	

+="CN88740"	"SUPPORT SERVICES AND MAINTENANCE TO THE INTERNET"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	01-Jul-08	276804.00	=""	="SIRSIDYNIX PTY LTD"	05-Jun-08 04:54 PM	

+="CN88743"	"PLAPTOPS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	254760.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 04:54 PM	

+="CN88753"	"Consolidation of accounting and procedural documen for weapons, munitions and explosives ordanance."	="Department of Defence"	05-Jun-08	="Development finance"	14-May-08	30-Jun-08	286764.50	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 04:56 PM	

+="CN88754"	"NEC Univerge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	175378.06	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 04:56 PM	

+="CN88762"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	27-Jun-08	154000.00	=""	="UNIVERSITY OF MELBOUORNE"	05-Jun-08 04:57 PM	

+="CN88763"	"Bunkbeds and Mattresses"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	14-May-08	26-Jun-08	151316.00	=""	="BEDPOST"	05-Jun-08 04:57 PM	

+="CN88767"	"TRANSMISSION SERVICES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	177100.00	=""	="TELSTRA"	05-Jun-08 04:58 PM	

+="CN88785"	"DOCTRINE PUBLICATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	28-Feb-09	169961.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 04:58 PM	

+="CN88791"	"POC: Andrew Trackson Contact: 02 6265 0502"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	153444.16	=""	="ENTRUST LTD"	05-Jun-08 04:59 PM	

+="CN88859"	"MIMESWEEPER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	188526.80	=""	="CLEARSWIFT PYT LTD"	05-Jun-08 05:02 PM	

+="CN88901"	"LAND 17 - ARTILLERY REPLACEMENT PROJECT. ENGAGE FOR PM/CA SERVICES ON L17-I"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	280500.00	=""	="CONNELL WAGNER PTY LTD"	05-Jun-08 05:04 PM	

+="CN88921"	"Blackberry Devices"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	28-May-08	282746.20	=""	="TELSTRA BUSINESS SERVICE SOLUTIONS"	05-Jun-08 05:05 PM	

+="CN88923"	"NQ1991 REGIONAL FIRE MANAGEMENT 2008 07/08."	="Department of Defence"	05-Jun-08	="Environmental management"	16-May-08	30-Jun-08	264024.23	=""	="SPOTLESS"	05-Jun-08 05:05 PM	

+="CN88932"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	291306.54	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:05 PM	

+="CN88940"	"2007/08 NATIONAL AIRFIELDS PROJECTS - PACKAGE 2 -"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	217690.00	=""	="GHD PTY LTD"	05-Jun-08 05:06 PM	

+="CN88945"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	16-May-08	174300.01	=""	="CARRARD SOLUTIONS"	05-Jun-08 05:06 PM	

+="CN88965"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	02-Jun-08	183989.52	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN89013"	"SERVER CRASH CARTS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	187550.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:09 PM	

+="CN89040"	"HOLSWORTHY : SPECIAL OPERATIONS WORKING ACCOMMODAT REDEVELOPMENT STAGE 1."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	165663.37	=""	="ACC TECHNOLOGIES"	05-Jun-08 05:10 PM	

+="CN89073"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Aug-08	267551.78	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:12 PM	

+="CN89075"	"DEVELOP CDG SYNTHETIC ENVIRONMENT, IN ACCORDANCE WITH 2007/1143013/1"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	241568.80	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	05-Jun-08 05:12 PM	

+="CN89079"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Sep-08	184470.00	=""	="SIGMA BRAVO PTY LTD"	05-Jun-08 05:12 PM	

+="CN89086"	"NQ2210 - LAVARACK BARRACKS 1MP BN PROVISION OF TEM ACCOMMODATION."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	242000.00	=""	="SPOTLESS"	05-Jun-08 05:12 PM	

+="CN89142"	"Supply and Install two winterhalter dishwashers."	="Department of Defence"	05-Jun-08	="Industrial Cleaning Services"	07-May-08	30-Jun-08	196691.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:15 PM	

+="CN89148"	"S5272, WR 300077436. Manage OP testament World You temporary camp for pilgrims attending World Youth"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	09-May-08	30-Jun-08	204913.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:15 PM	

+="CN89191"	"CONTACT NEV IRISH 08 89354468"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	22-May-08	30-Jun-08	199000.00	=""	="WILDMAN LAND MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89221"	"POC: WILL GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	181028.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89230"	"MIMESWEEPER Maintenance & Support"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	01-May-09	164092.50	=""	="CLEARSWIFT PYT LTD"	05-Jun-08 05:19 PM	

+="CN89240"	"POC: J.McCluskey 02 6127 7313 Bid Number 8001196"	="Department of Defence"	05-Jun-08	="Hardware"	20-May-08	10-Jun-08	222530.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:19 PM	

+="CN89267"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	160000.01	=""	="CENTRE FOR MILITARY AND VETERANS"	05-Jun-08 05:20 PM	

+="CN89298"	"REFORM DFR SPECIALIST RECRUITMENT TEAMS COSTS. T.R"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	209000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:22 PM	

+="CN89315"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-Aug-08	256275.01	=""	="APERIUM PTY LTD"	05-Jun-08 05:22 PM	

+="CN89317"	"Professional Service Provider for BORIS Operations"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	05-May-08	31-Dec-08	184800.00	="ESD SAP 01/2005"	="GWA CONSULTING"	05-Jun-08 05:22 PM	

+="CN89318"	"Ergon Energy Account Invoice No 10035469 Customer"	="Department of Defence"	05-Jun-08	="Power generation"	15-May-08	30-Jun-08	174650.08	=""	="ERGON ENERGY CORPORATION LTD"	05-Jun-08 05:22 PM	

+="CN89323"	"POC: B.Doswell 02 6127 7379 Quotation: 00000311"	="Department of Defence"	05-Jun-08	="Hardware"	05-May-08	26-May-08	178879.97	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:23 PM	

+="CN89328"	"Equiptment required for use WGS spacecraft project"	="Department of Defence"	05-Jun-08	="Spacecraft"	09-May-08	30-Jun-08	185784.52	=""	="GLOWLINK COMMUNICATIONS TECHNOLOGY"	05-Jun-08 05:23 PM	

+="CN89360"	"CMS TRANSITION IN FEE"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	01-May-08	30-Jun-08	212300.00	=""	="ASSET SERVICES"	05-Jun-08 05:25 PM	

+="CN89385"	"11 DIERS for Southern Queensland Region"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	221942.49	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:26 PM	

+="CN89409"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	05-May-08	14-Jul-09	152900.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89441"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	255048.20	=""	="ONE PLANET SOLUTIONS PTY LTD"	05-Jun-08 05:29 PM	

+="CN89469"	"CONTRACT FILE 2008-1003071"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Jun-09	158193.75	=""	="PATRIOT ALLIANCE"	05-Jun-08 05:31 PM	

+="CN89471"	"POC: Owen Keanes 02 6127 7170 Quotation: F-AU-144924-B"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	157385.24	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89472"	"CONTRACT PROJECT MANAGEMENT SERVICES"	="Department of Defence"	05-Jun-08	="Management advisory services"	07-May-08	27-Apr-09	268400.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89473"	"CONTRACT C016-HQ04 Academic Phase of the Army Aviation Articifer's Course"	="Department of Defence"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	31-Dec-09	215800.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:31 PM	

+="CN89476"	"RANGES AND TAs - MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS - STORM DAMAGE REMEDIATION CANUNGRA"	="Department of Defence"	05-Jun-08	="Roads and landscape"	07-May-08	30-Jun-08	190575.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:32 PM	

+="CN89480"	"CONTRACTOR FEES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jul-08	218598.16	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:32 PM	

+="CN89488"	"UNIVERSITY FEES FOR NAVY SPONSORSHIP"	="Department of Defence"	05-Jun-08	="Education and Training Services"	07-May-08	07-May-08	171606.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:32 PM	

+="CN89494"	"CONTRACT PROJECT MANAGEMENT SERVICES"	="Department of Defence"	05-Jun-08	="Management advisory services"	07-May-08	30-Jun-09	238876.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89507"	"POC: P.Everson 02 6127 7361 Quotation F-AU-147873-A"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	274239.70	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89521"	"CONTRACTOR FEES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Aug-08	165408.46	=""	="SIGMA BRAVO PTY LTD"	05-Jun-08 05:35 PM	

+="CN89583"	"ASSESSMENT OF QUALIFICATIOINS"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	30-Jun-08	187000.00	=""	="VETASSESS"	05-Jun-08 05:38 PM	

+="CN89587"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	01-May-09	244596.00	=""	="TALENT INTERNATIONAL(ACT) PTY LTD"	05-Jun-08 05:39 PM	

+="CN89598"	"SINGLE LEAP TOLL TRANSITIONS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-09	165000.00	=""	="TOLL TRANSITIONS"	05-Jun-08 05:39 PM	

+="CN89601"	"SN02428 Design & Doc WR270137291"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	03-Jun-08	30-Jun-08	206707.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:40 PM	

+="CN89613"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	31-Mar-09	179630.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	05-Jun-08 05:40 PM	

+="CN89641"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	236564.68	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89645"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-Apr-08	30-Jun-08	203559.55	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89653"	"Albury Wodonga Military Area - Create Office Space for Special Operations Section JLU(V)"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	29-Feb-08	30-Jun-08	269500.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:43 PM	

+="CN89659"	"Project Controller to support JP2007 2B1 and 2B2"	="Department of Defence"	05-Jun-08	="Business administration services"	26-Nov-07	14-May-09	202907.64	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:43 PM	

+="CN89758"	"FAIRBAIRN - MAJURA LEASES - BLOCK 102/146 (AREA H)"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	186368.82	=""	="AFFINITY CONSTRUCTION MANAGEMENT"	05-Jun-08 05:49 PM	

+="CN89788"	"SINGLE LEAP PROVISION OF PROFFESSIONAL SERVICES TO ACHIEVE COM"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-09	248017.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:51 PM	

+="CN89791"	"This is a blanket purchase order to cover the logi services purchased through Unity Resources for th"	="Department of Defence"	05-Jun-08	="Hardware"	27-May-08	30-Jun-08	278544.42	=""	="UNITY RESOURCES GROUP PTY LTD"	05-Jun-08 05:51 PM	

+="CN89794"	"Server Infrastructure"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	16-Jun-08	204573.39	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:52 PM	

+="CN89806"	"RECORDING SYSTEM"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	26-May-08	25-Jun-08	246586.70	=""	="TAPE PRODUCTS RESEARCH HOLDINGS"	05-Jun-08 05:52 PM	

+="CN89838"	"POC: B.Doswell 02 6127 7379"	="Department of Defence"	05-Jun-08	="Roads and landscape"	26-May-08	09-Jun-08	286000.00	=""	="CITY OF GREATER BENDIGO"	05-Jun-08 05:54 PM	

+="CN89845"	"VOICE CONSUMPTION COSTS FOR FY 07-08"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	29-May-08	17-Jun-08	195091.71	=""	="VODAFONE PTY LTD"	05-Jun-08 05:55 PM	

+="CN89875"	"FREIGHT COSTS FOR THE DISTRIBUTION GST INCLUSIVE AND GST2 OF PUBLICATIONS FOR THE F/Y 2007/2008"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	29-May-08	31-Jul-08	233000.00	=""	="TOLL PRIORITY"	05-Jun-08 05:57 PM	

+="CN89881"	"Contractor Services."	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	08-May-09	283866.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:57 PM	

+="CN89893"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	271596.80	=""	="CORDELTA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89905"	"NQ1633 - Regional Cadet Works Extra Funding."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	01-Sep-08	275000.00	=""	="SPOTLESS"	05-Jun-08 05:59 PM	

+="CN89913"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	169336.26	=""	="INFRONT SYSTEMS"	05-Jun-08 05:59 PM	

+="CN89995-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	19-Jun-06	14-Mar-08	272580.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:36 AM	

+="CN89996-A1"	"Provision of High Level Technical Support for Network Services"	="Australian Federal Police"	06-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	189103.20	=""	="Quality Contracts Australia Pty Ltd"	06-Jun-08 11:41 AM	

+="CN90015"	"Provision of services in relation to providing coordination and administrative support to AFP Information communication technology"	="Australian Federal Police"	06-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	206492.00	=""	="Diversiti Pty Ltd"	06-Jun-08 02:22 PM	

+="CN90030-A4"	"Provision for Serena Software SupportNet Licence"	="Comsuper"	06-Jun-08	="Software"	27-Feb-08	26-Feb-11	287100.00	=""	="Serena Software Australia"	06-Jun-08 02:50 PM	

+="CN90043"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	14-Mar-07	31-Dec-07	165165.00	=""	="Ambit Recruitment Group Pty Ltd"	06-Jun-08 03:34 PM	

+="CN90052-A1"	"Legal Services"	="Department of Human Services"	06-Jun-08	="Legal services"	03-Jun-08	30-Jun-08	250000.00	=""	="Blakc Dawson Waldron"	06-Jun-08 03:52 PM	

+="CN90026-A1"	"Representational Duties as Indigenous Ambassador for Centrelink"	="Centrelink"	06-Jun-08	="Promotional services"	27-Apr-06	30-Jun-08	280000.00	=""	="Kyle Vander-Kuyp"	06-Jun-08 04:12 PM	

+="CN87630-A3"	"Contractor to support Implementation of VVDU Project Period- 23/4/08 - 28/11/08"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	23-Apr-08	28-Nov-08	208480.00	="06ACMA107"	="ICON Recruitment Pty Ltd - Canberra"	06-Jun-08 04:23 PM	

+="CN87305-A1"	" Provision of security services, Canberra Office - extended "	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Security guard services"	21-Dec-07	20-Dec-10	230000.00	="07/ACMA008"	="Centurian Corp Protection Services"	06-Jun-08 04:51 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val16000to20000.xls
@@ -1,1 +1,181 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87919"	"Lease for MPS courier vehicle Running costs for MPS courier vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	15-Sep-06	14-Sep-08	17428.31	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87934"	"NUT, SELF-LOCKING, BARREL NSN 5310/005791761"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	13-Aug-08	18065.00	=""	="TURBOANALISIS INC"	05-Jun-08 10:47 AM	

+="CN87957"	"Use of Exisitng ASP Contract  - 12M Maintenance Governor Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Steering system"	16-May-08	30-Jun-08	17155.22	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87961"	"FACE GUARD PARARESCUE"	="Defence Materiel Organisation"	05-Jun-08	="Face and head protection"	17-May-08	20-Oct-08	19755.41	=""	="TRANSAERO INC."	05-Jun-08 01:03 PM	

+="CN87975"	"PMS7617 3000hr on both Main Engines HMAS Tarakan"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	19308.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87976"	"Review distribution process of the overheads of ASC and its subsidiaries"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	30-Jun-08	18331.50	=""	="KPMG AUSTRALIA"	05-Jun-08 01:05 PM	

+="CN87991"	"Helmet Liner, Absorbent"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	29-Aug-08	18224.10	=""	="DOW COVER COMPANY INCORPORATED DBA"	05-Jun-08 01:07 PM	

+="CN88006"	"Technical Support for JP02059Ph3"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20000.00	=""	="PALL AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88019"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	30-Jul-08	18037.90	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:10 PM	

+="CN88034"	"CABLE"	="Defence Materiel Organisation"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	30-Jun-08	19610.36	=""	="ANDERSON CORPORATION PTY LTD"	05-Jun-08 01:12 PM	

+="CN88036"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	14-May-08	30-Jun-08	16465.64	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:12 PM	

+="CN88038"	"Professional Fees and Disbursement Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	14-May-08	30-Jun-08	16402.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:12 PM	

+="CN88052"	"Washing Machine for HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	16362.02	=""	="MIELE AUSTRALIA PTY LTD"	05-Jun-08 01:14 PM	

+="CN88053"	"SOFTWARE PACKAGE FOR 1 YEAR EVALUATION"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	16-Jun-08	16500.00	=""	="EUROFIELD INFORMATION SOLUTIONS"	05-Jun-08 01:14 PM	

+="CN88059"	"PURCHASE OF LICENCES"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	14-May-08	16720.00	=""	="IBISWORLD PTY LTD"	05-Jun-08 01:15 PM	

+="CN88084"	"PRINTER"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	26-May-08	16464.59	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 01:18 PM	

+="CN88085"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	18205.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:18 PM	

+="CN88097"	"10 Yearly Inspection for Qty: 1, Elevated Work Platform"	="Defence Materiel Organisation"	05-Jun-08	="Hydraulic machinery and equipment"	15-May-08	30-Aug-08	17415.91	=""	="NTP FORKLIFTS AUST"	05-Jun-08 01:20 PM	

+="CN88132"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	18554.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:24 PM	

+="CN88136"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	22-May-08	30-Jun-08	19844.00	=""	="CLAYTON UTZ"	05-Jun-08 01:24 PM	

+="CN88143"	"Heat Sink"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	22-Sep-08	19533.82	=""	="BAE SYSTEMS INFORMATION AND"	05-Jun-08 01:25 PM	

+="CN88146"	"SURVEY OF ANZAC SHIPS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	10-Jun-08	17683.99	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	05-Jun-08 01:25 PM	

+="CN88154"	"Determine Suitable Alternatives for Lubricants / Solvents"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	31-Jul-08	17521.60	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88158"	"BOX, WOOD, TRANSPARENT ARMOUR"	="Defence Materiel Organisation"	05-Jun-08	="Wood and paper industries"	26-May-08	17-Sep-08	16533.57	=""	="THALES AUSTRALIA"	05-Jun-08 01:27 PM	

+="CN88192"	"Control & Bit"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Mar-09	19563.26	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:31 PM	

+="CN88193"	"Use of Exisitng ASP Contract  - Eng Assess Overr Torque Alarm"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	30-Jun-08	17686.52	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88196"	"Use of Exisitng ASP Contract  - Eng Assess Cleaning Station for Paint Store"	="Defence Materiel Organisation"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	20-May-08	30-Jun-08	16064.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88198"	"Use of Exisitng ASP Contract  - Eng Assess Instal Remote Grease Lines in RAS Rig"	="Defence Materiel Organisation"	05-Jun-08	="Lubricants and oils and greases and anti corrosives"	20-May-08	30-Jun-08	16094.93	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88200"	"Use of Exisitng ASP Contract  - Modify Vent GEA Purifier Upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	20-May-08	30-Jun-08	17296.13	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88202"	"Laser Sighting Scope"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	20-May-08	30-Aug-08	17809.14	=""	="LASER PRODUCTS"	05-Jun-08 01:32 PM	

+="CN88212"	"VoP For ISS contract C388561, Inv 70400"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	19255.23	=""	="BAE SYSTEMS AUSTRALIA - EUR"	05-Jun-08 01:33 PM	

+="CN88221"	"OPTICAL SURVEILLANCE SYSTEMS COURSE FROM 29 SEP - 3 OCT 2008"	="Defence Materiel Organisation"	05-Jun-08	="Vocational training"	20-May-08	03-Oct-08	18500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 01:34 PM	

+="CN88223"	"INMARSAT Training"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	31-May-08	16846.50	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:34 PM	

+="CN88231"	"ORDER RAISED FOR THE SUPPLY OF OEP 89 (REGAL MARIN"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	21-May-08	30-May-08	18604.79	=""	="INCHCAPE SHIPPING SERVICES (ABU DHA"	05-Jun-08 01:35 PM	

+="CN88238"	"PROVIDE SERVICES FOR HAMS PARRAMATTA DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	10-Jun-08	19043.42	=""	="PATRICK DEFENCE LOGISTICS"	05-Jun-08 01:36 PM	

+="CN88242"	"Dehumidifier"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	22-May-08	30-Jul-08	19482.10	=""	="ENVIRO-TRONICS"	05-Jun-08 01:37 PM	

+="CN88256"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	16000.01	=""	="ADELAIDE CONVENTION CENTRE"	05-Jun-08 01:38 PM	

+="CN88260"	"Boot Fitter for Kapooka and RMC"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	21-May-08	30-Sep-08	19800.00	=""	="REDBACK BOOT COMPANY PTY LTD"	05-Jun-08 01:39 PM	

+="CN88286"	"LPA AVO SURV EQUIP STORAGE COMP DDP"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	30-Apr-08	13-Jun-08	16510.79	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 01:42 PM	

+="CN88298"	"Terms and Conditions as per attachments."	="Defence Materiel Organisation"	05-Jun-08	="Fabrics and leather materials"	08-Apr-08	30-May-08	16087.50	=""	="ARCADE BADGE EMBROIDERY CO"	05-Jun-08 01:43 PM	

+="CN88307"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	30-May-08	17473.50	=""	="ADVITECH PTY LTD"	05-Jun-08 01:44 PM	

+="CN88322"	"Production of NAVCMC DVD - February 2008"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	06-May-08	31-May-08	17380.00	=""	="MWA SYSTEMS PTY LTD"	05-Jun-08 01:46 PM	

+="CN88328"	"JP02087 HAZARD TESTING MATERIAL"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	16-Jun-08	16018.64	=""	="COUNTER TERRORISM SOLUTIONS ASIA"	05-Jun-08 01:46 PM	

+="CN88331"	"AIRCONDITIONING TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	01-May-08	30-Jul-08	16720.00	=""	="SOUTHERN QLD INSTITUTE OF TAFE"	05-Jun-08 01:47 PM	

+="CN88337"	"Use of Exisitng ASP Contract  - CO2 System Annual Service"	="Defence Materiel Organisation"	05-Jun-08	="Fire protection"	05-May-08	30-Jun-08	16100.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88352"	"Support Contract"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	29-May-08	30-Jun-09	18201.26	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	05-Jun-08 01:49 PM	

+="CN88356"	"Servicingof WTR Cranes"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	26-Apr-07	30-Jun-08	16040.84	=""	="BINKSIE SERVICES CO PTY LTD"	05-Jun-08 01:50 PM	

+="CN88357"	"Procure Suplus and Redundant Radar Assets from closure of Thales St Mary's facility"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	02-Jun-08	07-Jun-08	19235.50	=""	="THALES AUSTRALIA"	05-Jun-08 01:50 PM	

+="CN88362"	"OVERHAUL OF MAIN WHEELS AND BRAKES FOR B707 AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	02-Jun-08	30-Jun-08	16769.50	=""	="QANTAS DEFENCE SERVICES PTY LTD"	05-Jun-08 01:50 PM	

+="CN88417"	"Repair of F/A-18 CMT Module for FCC"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	17-Oct-07	30-Jun-08	18251.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:57 PM	

+="CN88418"	"Accommodation ladders for HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	10-Feb-08	18754.74	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:57 PM	

+="CN88429"	"COMBINED MARITIME FORCES HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	30-May-08	17345.35	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:59 PM	

+="CN88433"	"WiniFRED Support"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	12-May-08	31-May-08	19536.00	=""	="FRED HEALTH PTY LTD"	05-Jun-08 01:59 PM	

+="CN88436"	"Use of Exisitng ASP Contract  - RAS Air Compre Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	12-May-08	30-Jun-08	17003.09	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:59 PM	

+="CN88454"	"Storage containers for POD Shop"	="Defence Materiel Organisation"	05-Jun-08	="Containers and storage"	09-May-08	15-May-08	17655.00	=""	="SIMPLY CONTAINERS"	05-Jun-08 02:02 PM	

+="CN88463"	"SPECIALIST ADVICE AND EXPORT FACILITATION SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	17501.00	=""	="BRIAN ADAMS CONSULTING PTY LTD"	05-Jun-08 02:03 PM	

+="CN88505"	"FA18 Captive Carriage Trials - Design Report"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	13-May-08	15-Jun-08	19219.86	=""	="JACOBS AUSTRALIA"	05-Jun-08 02:08 PM	

+="CN88554"	"CADAS Printers"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	09-May-08	31-May-08	17253.34	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 02:14 PM	

+="CN88580"	"SLAP BLOCK ROPE"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing Components and Supplies"	08-May-08	05-Jun-08	18299.56	=""	="MACK TRUCKS AUSTRALIA"	05-Jun-08 02:17 PM	

+="CN88608"	"DPCU TROUSERS"	="Defence Materiel Organisation"	05-Jun-08	="Slacks and trousers and shorts"	05-Jun-08	13-Jun-08	16188.66	=""	="CTE"	05-Jun-08 03:00 PM	

+="CN88610"	"Moderation project"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	26-Jun-08	18208.00	="PRN18355"	="LABYRINTH CONSULTANCY (TAS) PTY LTD"	05-Jun-08 03:03 PM	

+="CN88615"	"Endeavour Awards promotional booklet"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	30-May-08	30-Jun-08	16304.94	="PRN19904"	="EQUATION CORPORATE DESIGN"	05-Jun-08 03:05 PM	

+="CN88663"	"SEAT, AIRCRAFT NSN 1680/006712101"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	14-Oct-08	19880.50	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:55 PM	

+="CN88693"	"OP OUTREACH - Transportation DWN-Minyerri-Yarralin"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	12-May-08	12-May-08	17589.00	=""	="PDL TOLL"	05-Jun-08 04:47 PM	

+="CN88701"	"Carmel Verde, $41.20p/hr, 25 hrs p/w. Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	18128.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:48 PM	

+="CN88736"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	14-May-08	30-Jun-09	19250.00	=""	="MINTER ELLISON"	05-Jun-08 04:53 PM	

+="CN88737"	"OFFICE FURNTIURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	31-May-08	18326.00	=""	="SITZ"	05-Jun-08 04:53 PM	

+="CN88748"	"BREAK FIX REPLACEMENT OF AN UNSUPPORTED PABX FOR THE NATIONAL TMS CONTRACT."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	13-May-08	30-May-08	17005.99	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 04:55 PM	

+="CN88758"	"FURNITUR FOR AIR MOVEMENTS, BLDG167"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	13-Jun-08	17050.01	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 04:57 PM	

+="CN88773"	"University fees for JOPES studnets"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	29-May-08	17988.80	=""	="UNI OF NEW ENGLAND"	05-Jun-08 04:58 PM	

+="CN88794"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-May-08	20-Jun-08	19748.30	=""	="MEASUREMENT INNOVATION PTY LTD"	05-Jun-08 04:59 PM	

+="CN88805"	"Laptops Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	02-Jun-08	16201.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:59 PM	

+="CN88808"	"PSP required to conduct Infrastructure Appraisal period 14MAY-27JUN08"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	21-May-08	30-Jun-08	17734.75	=""	="HAYS PERSONNEL SERVICES"	05-Jun-08 05:00 PM	

+="CN88810"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19749.99	=""	="DEACONS"	05-Jun-08 05:00 PM	

+="CN88814"	"UTILITIES FY07/08"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	16400.96	=""	="SP SERVICES LIMITED"	05-Jun-08 05:00 PM	

+="CN88826"	"S5153, WR 300062614. Project Mgt during the upgrad JOSS Operations room and adjacent areas to provid"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:00 PM	

+="CN88856"	"Cables and media converters"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	18716.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88865"	"Labour Hire for Alison Roberts and Nina Barlow in support for the introduction and ongoing sustainme"	="Department of Defence"	05-Jun-08	="Bombs and grenades"	20-May-08	30-Jun-08	19200.81	=""	="VEDIOR AISA PACIFIC PTY LTD"	05-Jun-08 05:02 PM	

+="CN88872"	"RFAD-300 Pyramidal Absorbers With Velcro Backing"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	19-May-08	30-Jun-08	19206.00	=""	="R F I INDUSTRIES PTY LTD"	05-Jun-08 05:03 PM	

+="CN88889"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	17000.01	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88892"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	18073.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:04 PM	

+="CN88903"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	31-May-08	19706.72	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:04 PM	

+="CN88910"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	16940.00	=""	="INNOVATION TECHNOLOGY SERVICES"	05-Jun-08 05:04 PM	

+="CN88916"	"Storage works array/HDDs"	="Department of Defence"	05-Jun-08	="Hardware"	21-May-08	30-Jun-08	16219.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:05 PM	

+="CN88952"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	30-Jun-08	18069.48	=""	="OZ DESIGN FURNITURE"	05-Jun-08 05:06 PM	

+="CN88974"	"TABLES & STOOLS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	19-May-08	30-Jun-08	17902.50	=""	="INTERWORX PTY LTD"	05-Jun-08 05:07 PM	

+="CN88977"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19580.00	=""	="CLAYTON UTZ"	05-Jun-08 05:07 PM	

+="CN88992"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	18227.51	=""	="CISTECH SOLUTIONS"	05-Jun-08 05:08 PM	

+="CN88994"	"DS-NQ-TS GAP YEAR"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	17160.00	=""	="EMPIRE BUSINESS FURNITURE"	05-Jun-08 05:08 PM	

+="CN89011"	"POC: LTCOL Sloan"	="Department of Defence"	05-Jun-08	="Software"	08-May-08	30-Jun-08	16280.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:09 PM	

+="CN89017"	"TRAINING"	="Department of Defence"	05-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	08-May-08	15-May-08	18120.00	=""	="PRIORITY MANAGEMENT NSW"	05-Jun-08 05:09 PM	

+="CN89019"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	17066.50	=""	="DIRECT ERGONOMICS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89027"	"VIDEO CONFERENCING UNIT FOR SINGLETON"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	22-May-08	26-Jun-08	16301.80	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:10 PM	

+="CN89033"	"REC & GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Gymnastics and boxing equipment"	22-May-08	30-Jun-08	17776.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89044"	"TENNIS COURT RESURFACE"	="Department of Defence"	05-Jun-08	="Recreation and playground and swimming and spa equipment and supplies"	07-May-08	30-Jun-08	18821.00	=""	="RECREATIONAL SURFACING PTY LTD"	05-Jun-08 05:10 PM	

+="CN89050"	"UPGRADE STORAGE FACLITIES"	="Department of Defence"	05-Jun-08	="Containers and storage"	07-May-08	30-Jun-08	18736.30	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:11 PM	

+="CN89057"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	22-May-08	22-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 05:11 PM	

+="CN89068"	"SERVERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	19932.00	=""	="POWERCORP PTY LTD"	05-Jun-08 05:11 PM	

+="CN89088"	"FEES-ZETLAND-PROFIT SHARE REVIEW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	17600.00	=""	="HILL PDA"	05-Jun-08 05:12 PM	

+="CN89104"	"Certification process of Laser cladding of AA70000 alloys for FY07/08"	="Department of Defence"	05-Jun-08	="Alloys"	20-May-08	30-Jun-08	18942.00	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 05:13 PM	

+="CN89105"	"SPORTING EQUIPMENT FOR 1RTU GYM"	="Department of Defence"	05-Jun-08	="Fitness equipment"	21-May-08	04-Jun-08	16737.83	=""	="SPORTSMANS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89107"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	20-May-08	31-Jul-09	16500.00	=""	="JOHN TREACY PRACTICE"	05-Jun-08 05:13 PM	

+="CN89125"	"HP SERVER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-May-08	17421.80	=""	="ALFA COMPUTERS PTY LTD"	05-Jun-08 05:14 PM	

+="CN89140"	"SUPPLY AND INSTALL ELECTRICAL & COMMUNICATION EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	22-May-08	30-Jun-08	17008.05	=""	="HEYDAY GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89159"	"ASSOCIATION SUBSCRIPTION"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	16152.40	=""	="LLOYDS REGISTER EMEA"	05-Jun-08 05:15 PM	

+="CN89163"	"New Power and DRN Data Infrastructure works at Bui Gallipoli Barracks, Enoggera."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	26-Jun-08	17645.10	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:16 PM	

+="CN89164"	"36 x SOLAR AIRFIELD LIGHTS"	="Department of Defence"	05-Jun-08	="Lighting and fixtures and accessories"	22-May-08	30-Jun-08	18485.50	=""	="SEALITE PTY LTD"	05-Jun-08 05:16 PM	

+="CN89213"	"S5272, WR 300080484. World Youth Day 2008is an eve Defence, this proposal is to provide tented accom"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	20000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:18 PM	

+="CN89228"	"BANDIANA : JLU(v) WAREHOUSING FACILITIES. ADVERTISING FOR JLU(V) PROJECT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-09	16500.00	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:18 PM	

+="CN89237"	"SHREDDERS"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	19789.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 05:19 PM	

+="CN89251"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	27-May-08	19037.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:20 PM	

+="CN89252"	"S5272, WR 300082687. Randwick - OP Testament - DMM Fee"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:20 PM	

+="CN89257"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	19113.49	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:20 PM	

+="CN89259"	"NAVY PROMOTIONAL BASEBALL CAPS"	="Department of Defence"	05-Jun-08	="Advertising"	09-May-08	13-Jun-08	19745.00	=""	="PAULA M PROMOTIONS"	05-Jun-08 05:20 PM	

+="CN89265"	"XLG3 Video Probe and white side view"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	09-May-08	06-Jun-08	16797.00	=""	="GE INSPECTION TECHNOLOGIES"	05-Jun-08 05:20 PM	

+="CN89269"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	17530.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:20 PM	

+="CN89290"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	19338.00	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:21 PM	

+="CN89292"	"Exposure Racks"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	20-Jun-08	17875.00	=""	="TOOLTIME ENGINEERING"	05-Jun-08 05:21 PM	

+="CN89294"	"REPAIR 110 LANDROVER ENGINE"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-May-08	23-May-08	18360.51	=""	="WILLIS & SON AUTOMOTIVE REPAIRS"	05-Jun-08 05:21 PM	

+="CN89306"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	15-May-08	19712.00	=""	="LOOKING UP FEELING GOOD"	05-Jun-08 05:22 PM	

+="CN89338"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	19637.20	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:23 PM	

+="CN89340"	"CONSTUCTION AND SECURETY"	="Department of Defence"	05-Jun-08	="General building construction"	09-May-08	10-Jul-08	18418.40	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:23 PM	

+="CN89351"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-May-08	29-May-08	19712.39	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:24 PM	

+="CN89354"	"Software and hardware for OSA"	="Department of Defence"	05-Jun-08	="Hardware"	02-May-08	31-Dec-08	18194.77	=""	="SAI GLOBAL LTD"	05-Jun-08 05:24 PM	

+="CN89376"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	17226.50	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:25 PM	

+="CN89398"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16813.50	=""	="SLEEP FIRM  AUSTRALIA"	05-Jun-08 05:26 PM	

+="CN89402"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	19985.93	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:27 PM	

+="CN89411"	"Electronic Key Safe"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	05-May-08	30-Jun-08	18441.01	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:27 PM	

+="CN89430"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16665.00	=""	="SANTA FURNITURE DESIGN PTY LTD"	05-Jun-08 05:29 PM	

+="CN89467"	"AUDIO VISUAL EQUIPMENT RENTAL"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	16-May-08	06-Jun-08	16256.68	=""	="AUDIO VISUAL EVENTS PTY LTD"	05-Jun-08 05:31 PM	

+="CN89478"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	18942.13	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:32 PM	

+="CN89481"	"supply of fresh bread brisbane"	="Department of Defence"	05-Jun-08	="Bread and biscuits and cookies"	16-May-08	30-Jul-08	16500.00	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89487"	"TIED WORK"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	16611.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:32 PM	

+="CN89517"	"Computer Equiptment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	18814.17	=""	="LOGITECH PTY LTD"	05-Jun-08 05:34 PM	

+="CN89567"	"SCAFFOLDING TO SUIT C17"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	15-May-08	05-Jun-08	17781.50	=""	="INSTANT ACCESS"	05-Jun-08 05:38 PM	

+="CN89571"	"supply of fresh meat  rockhampton"	="Department of Defence"	05-Jun-08	="Meat and poultry"	15-May-08	30-Jul-08	16500.00	=""	="PETER BOODLES QUALITY MEATS"	05-Jun-08 05:38 PM	

+="CN89574"	"Provision initial system configuration for the GIS environment - SME"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	30-Jun-08	16226.10	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:38 PM	

+="CN89577"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	06-May-08	30-May-08	16500.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89579"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	18883.59	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:38 PM	

+="CN89633"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	22-Apr-08	30-Jun-08	16277.80	=""	="TNT EXPRESS"	05-Jun-08 05:42 PM	

+="CN89639"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-08	17196.56	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:42 PM	

+="CN89642"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89650"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89651"	"GBW REACTIVE MAINTENANCE ROUTINE WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	18-Apr-08	30-Jun-08	16240.96	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:43 PM	

+="CN89656"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89660"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17050.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:43 PM	

+="CN89663"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	15-May-08	23-May-08	17660.65	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89674"	"Audiovisual equipment"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-May-08	30-Jun-08	19899.00	=""	="NORTH QUEENSLAND AUDIO VISUAL"	05-Jun-08 05:44 PM	

+="CN89679"	"Advanced Surveillance Training Course"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	29-Apr-08	29-Apr-08	16100.00	=""	="INTEGRACOM"	05-Jun-08 05:44 PM	

+="CN89682"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-May-08	20000.00	=""	="DKC INTERNATIONAL PTY LTD"	05-Jun-08 05:45 PM	

+="CN89686"	"CLEANING OF EFR TINS"	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	23-May-08	10-Jun-08	19578.90	=""	="CORMAC CONTRACTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89729"	"INFLIGHT MEAL PURCHASE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	24-May-08	25-May-08	16753.63	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89738"	"REMOTE ACCESS TOKENS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	16496.70	=""	="VASCO DATA SECURITY AUSTRALIA PTY"	05-Jun-08 05:48 PM	

+="CN89741"	"multi level sampler and winder units for FEMS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Mar-08	29-Apr-08	16015.45	=""	="JOHN MORRIS SCIENTIFIC PTY LTD"	05-Jun-08 05:48 PM	

+="CN89749"	"Custom packaging and removal services - domestic"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	16500.00	=""	="PACK AND SEND CANBERRA"	05-Jun-08 05:49 PM	

+="CN89770"	"REGISTRATION REQUIRED TO DELIVER TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	20000.00	=""	="RECEIVER OF OFFICIAL MONIES"	05-Jun-08 05:50 PM	

+="CN89774"	"Calibration of Computer Equipment."	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-May-08	16500.00	=""	="IMMUNO PTY LTD"	05-Jun-08 05:50 PM	

+="CN89808"	"Noise assess @ HMAS Anzac which is on active duty in singapore area"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	26-May-08	30-Jun-08	16203.00	=""	="CAREY MURPHY & ASSOCIATES"	05-Jun-08 05:52 PM	

+="CN89839"	"Value based Purchase Order"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	02-Jun-08	30-Jun-08	20000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	05-Jun-08 05:54 PM	

+="CN89852"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	17075.00	=""	="CLAYTON UTZ"	05-Jun-08 05:55 PM	

+="CN89855"	"LPG Supply"	="Department of Defence"	05-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	29-May-08	30-Jun-08	16500.00	=""	="ELGAS LTD"	05-Jun-08 05:55 PM	

+="CN89861"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	10-Jan-08	10-Jan-08	17893.25	=""	="AUSTRALIAN AND NEW ZEALAND SCHOOL"	05-Jun-08 05:56 PM	

+="CN89863"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	29-May-08	30-Jun-08	18051.24	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:56 PM	

+="CN89865"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	26-Jun-08	19800.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:56 PM	

+="CN89891"	"IT SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89903"	"1 SR - Fibre optic repair tools kit"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-Jun-08	17323.90	=""	="AUSOPTIC PTY LTD"	05-Jun-08 05:58 PM	

+="CN89922"	"CERTIFICATE IV TAA04 - 12 PERSONS"	="Department of Defence"	05-Jun-08	="Educational facilities"	26-May-08	26-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 06:00 PM	

+="CN89928"	"All terrain vehicle for Defence Estab-Berrimah"	="Department of Defence"	05-Jun-08	="Motor vehicles"	26-May-08	30-Jun-08	18384.00	=""	="R & M MOTORCYCLES"	05-Jun-08 06:00 PM	

+="CN89930"	"FFS 30/06/08"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	26-May-08	30-Jun-08	18500.00	=""	="VINTAGE SURGICAL SPECIALISTS"	05-Jun-08 06:00 PM	

+="CN89933"	"AIR CONDITIONERS"	="Department of Defence"	05-Jun-08	="Heating and ventilation and air circulation"	12-May-08	30-Jun-08	18150.00	=""	="RITTAL PTY LTD"	05-Jun-08 06:00 PM	

+="CN89950"	"DEMAND NO. RSTM-7EH5UH ANITECH QUOTE NO. QB31 - SARAH O'REILLY"	="Department of Defence"	05-Jun-08	="Office supplies"	13-May-08	20-May-08	16618.23	=""	="ANITECH"	05-Jun-08 06:01 PM	

+="CN89956"	"Usability testing of Website"	="Department of Defence"	05-Jun-08	="Computer services"	13-May-08	30-May-08	18755.00	=""	="THE HISER GROUP"	05-Jun-08 06:02 PM	

+="CN89964"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	21-May-08	30-Jun-08	16571.74	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 06:02 PM	

+="CN89997"	"Provision of editorial services"	="Department of the Prime Minister and Cabinet"	06-Jun-08	="Editorial and support services"	29-Apr-08	30-Jun-08	19331.00	=""	="The Trustee for the Marron Family Trust"	06-Jun-08 11:43 AM	

+="CN90003"	"Extension of CN50400"	="Department of the Prime Minister and Cabinet"	06-Jun-08	="Property management"	01-Jul-08	30-Sep-08	16250.00	=""	="United Group Services Pty Ltd"	06-Jun-08 12:30 PM	

+="CN90004"	"CABLE ASSY - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	06-Jun-08	11-Dec-08	17472.62	=""	="GENERAL DYNAMICS LAND SYSTEMS"	06-Jun-08 12:49 PM	

+="CN90005"	"WINCH DRUM DAVIT ASSY - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	06-Jun-08	30-Aug-08	19233.17	=""	="GENERAL DYNAMICS LAND SYSTEMS"	06-Jun-08 12:52 PM	

+="CN84766"	" temporary personnel to complete Mobile Premium Services Information Project "	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	13-May-08	30-Jun-08	18000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	06-Jun-08 04:56 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val20000to30000.xls
@@ -1,1 +1,334 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87884"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	25264.91	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 07:37 AM	

+="CN87885"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	25264.91	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 07:50 AM	

+="CN87886"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	24-Sep-08	20333.15	=""	="Land Rover AUSTRALIA"	05-Jun-08 07:52 AM	

+="CN87909"	"Lease Motor Vehilce - YEU74E Running Costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	05-Feb-07	04-Feb-09	29333.92	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:15 AM	

+="CN87911"	"RIS for AACA scheme"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Public administration and finance services"	03-Jun-08	14-Jul-08	23870.00	=""	="Meyrick Consulting Group Pty Ltd"	05-Jun-08 10:15 AM	

+="CN87912"	"Supplying facilities and participation for phase 3 of the air cargo X-ray trials"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security surveillance and detection"	27-May-08	30-Jun-08	27500.00	=""	="Australian Postal Corporation"	05-Jun-08 10:16 AM	

+="CN87915"	"Trim Migration"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Management advisory services"	26-May-08	30-Jun-08	27750.00	=""	="ALPHAWEST SERVICES PTY LTD"	05-Jun-08 10:16 AM	

+="CN87918"	"Preparation and delivery of"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Mar-07	30-Jun-08	25000.00	=""	="MARK WIGGINS"	05-Jun-08 10:17 AM	

+="CN87922"	"Lease costs on 24 month vehicle lease Running costs on 24 month lease"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	27-Nov-07	26-Nov-09	28206.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87923"	"Lease cost for Lease vehicle Running Cost for Lease vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	23-Jun-06	22-Jun-08	25768.01	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87926"	"Leased Vehicle Running Costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	13-Oct-06	14-Oct-08	24643.88	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:19 AM	

+="CN87927"	"Motor vehicle lease YED53X Motor vehicle running cost"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	10-Sep-07	09-Sep-09	28985.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87948-A1"	"Qty 159 Battery, Non-Rechargeable for Thermal Weapon Sight"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	15-May-08	20-Aug-08	20550.75	=""	="Battery Specialties (NSW) Pty Ltd"	05-Jun-08 12:36 PM	

+="CN87947"	" BUSHING, BLADE, PROPELLER NSN 1610/007764178 "	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	08-Jun-08	23420.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 12:37 PM	

+="CN87964"	"Made to Measure DPDU and DPCU Coats and Trousers e"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	19-May-08	30-Jun-08	27000.00	="2480037"	="AUSTRALIAN DEFENCE APPAREL"	05-Jun-08 01:04 PM	

+="CN87966"	"Hardware Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	14-May-09	22096.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 01:04 PM	

+="CN87973"	"BODY  ASSEMBLY BARREL BUFFER- MG12.7mm M2HB"	="Defence Materiel Organisation"	05-Jun-08	="Gun systems"	16-May-08	01-Aug-08	23782.50	=""	="THALES AUSTRALIA"	05-Jun-08 01:05 PM	

+="CN87984"	"Supply, deliver and installation of 2 x 60" plasma displays for VIDCON"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	29573.83	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 01:06 PM	

+="CN87987"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Nov-08	25542.00	=""	="LEVETT ENGINEERING PTY LTD"	05-Jun-08 01:06 PM	

+="CN88005"	"Software Maintenance Fee"	="Defence Materiel Organisation"	05-Jun-08	="Software"	20-May-08	30-May-08	20009.12	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	05-Jun-08 01:09 PM	

+="CN88006"	"Technical Support for JP02059Ph3"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20000.00	=""	="PALL AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88009"	"Use of Exisitng ASP Contract  - Repair Eng Rm Boiler control PC"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	23362.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:09 PM	

+="CN88015"	"10,000KMS Service for ASLAV ARN 16145 located in St Lois for ASLAV-S vehicle"	="Defence Materiel Organisation"	05-Jun-08	="Vehicle servicing equipment"	19-May-08	30-Jul-08	27608.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Jun-08 01:10 PM	

+="CN88020"	"HF ANTENNAS"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	19-May-08	16-Jun-08	22741.49	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	05-Jun-08 01:10 PM	

+="CN88024"	"POC: SHANE FINN/IAN WEBSTER CONTACT: 02 626 50601"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	22781.00	=""	="AUSTRALIAN FIBRE WORKS"	05-Jun-08 01:11 PM	

+="CN88030"	"Miscellaneous ADATS Frieght"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	30-Jun-08	22000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:11 PM	

+="CN88031"	"Recruitment services"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	14-May-08	30-Jun-08	20350.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 01:12 PM	

+="CN88033"	"RAN SATCOM DAMA drawing updates"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	08-Jun-08	27181.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	05-Jun-08 01:12 PM	

+="CN88043"	"Expiratory Valve, Cord Assembly"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	09-Jul-08	22969.03	=""	="MEL AVIATION LTD"	05-Jun-08 01:13 PM	

+="CN88047"	"Muzzle, Break M242"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	15-May-08	15-Dec-08	25919.52	=""	="ALLIANT TECHSYSTEMS INC"	05-Jun-08 01:13 PM	

+="CN88066"	"Provision Of Technical Services Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	14-Jul-08	23222.73	=""	="AIR NZ ENGINEERING SERVICES DIV AIR"	05-Jun-08 01:16 PM	

+="CN88079"	"Flight Inspection of RAAF Darwin TACAN"	="Defence Materiel Organisation"	05-Jun-08	="Flight instrumentation"	16-May-08	30-Jun-08	20273.55	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:17 PM	

+="CN88081"	"Flight Inspection of RAAF Darwin TASR"	="Defence Materiel Organisation"	05-Jun-08	="Flight instrumentation"	16-May-08	30-Jun-08	25679.83	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:18 PM	

+="CN88083"	"PRE AUTHORISED STOCK PROCUREMENT"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	30-Jun-08	27500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:18 PM	

+="CN88102"	"Principles of Test & Evaluation Course"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-May-08	30-Jun-08	26345.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	05-Jun-08 01:20 PM	

+="CN88105"	"LIFTING FRAME HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	15-May-08	30-May-08	25643.75	=""	="NOBLE A & SON (NSW) PTY LTD"	05-Jun-08 01:21 PM	

+="CN88111"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	23-May-08	30-Jun-08	24200.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:21 PM	

+="CN88112"	"Electrical and RF Connectors"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	23-May-08	27-Jun-08	20250.78	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 01:21 PM	

+="CN88115"	"External Service Provider"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	23-May-08	06-Jun-08	20009.00	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	05-Jun-08 01:22 PM	

+="CN88117"	"TASR ON SITE MAINTENANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	23-May-08	07-Jun-08	24200.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:22 PM	

+="CN88122"	"Repair of gas turbine engine after heavy landing"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	23-May-08	30-Jul-08	27500.00	=""	="ASIA PACIFIC AEROSPACE"	05-Jun-08 01:22 PM	

+="CN88124"	"Repair of MDRI S/No 1025"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88125"	"Repair of MDRI S/No 1059"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88126"	"Repair of MDI S/No 1003"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	19-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:23 PM	

+="CN88138"	"Various cables & Spares for the JTFHQ & ASIFs'"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	22-May-08	30-Jun-08	28039.00	=""	="VARLEY GROUP"	05-Jun-08 01:24 PM	

+="CN88140"	"Qty 3, VDC-300 (SI-006329-0001) Airborne Data Controller"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	21-Jun-08	27914.70	=""	="EYLEX PTY LTD"	05-Jun-08 01:25 PM	

+="CN88144"	"Wave Guide Assembly"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	09-Jun-08	21767.54	=""	="MICROWAVE ENGINEERING CORPORATION D"	05-Jun-08 01:25 PM	

+="CN88155"	"ACMI Furnished Facilities"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Jun-08	29773.70	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 01:27 PM	

+="CN88168"	"Supply FFG Galley 2-Door Mess Undercounter Fridge"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	22-Sep-08	21980.73	=""	="HILL DEFENCE PRODUCTS"	05-Jun-08 01:28 PM	

+="CN88171"	"POC: JARRED THOMPSON CONTACT: 02 626 50961"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	20807.28	=""	="BEA SYSTEMS PTY LTD"	05-Jun-08 01:28 PM	

+="CN88173"	"SIMLOX Licence for ALSPO"	="Defence Materiel Organisation"	05-Jun-08	="Software"	24-May-08	30-Jun-08	20587.75	=""	="THALES AUSTRALIA"	05-Jun-08 01:29 PM	

+="CN88177"	"HIRE OF SMALL CRAFT FOR RADIO TRIALS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Jun-08	27500.00	=""	="DEFENCE MARITIME SERVICE PTY LTD"	05-Jun-08 01:29 PM	

+="CN88179"	"105mm 155mm Primers Ph1"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	19-Sep-08	26591.84	=""	="NOVA AEROSPACE"	05-Jun-08 01:29 PM	

+="CN88191"	"Use of Exisitng ASP Contract  - Eng Assess Replace M/ E Lube Oil Filters"	="Defence Materiel Organisation"	05-Jun-08	="Waxes and oils"	20-May-08	30-Jun-08	27242.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88194"	"Use of Exisitng ASP Contract  - Eng Asse Install Add Purifiers"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	20-May-08	30-Jun-08	29410.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88195"	"Use of Exisitng ASP Contract  - Eng Assess Boiler Feed Water System EA"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20743.80	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88199"	"Use of Exisitng ASP Contract  - Modify Vent RAS Flow Meters ECP"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	20-May-08	30-Jun-08	28127.72	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88227"	"Engineering In Service Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Dec-08	23740.55	=""	="YANOS AEROSPACE INC"	05-Jun-08 01:35 PM	

+="CN88229"	"VOP for FSFT, GBP, WFO48314972"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	21-May-08	27-Jun-08	28662.83	=""	="BAE SYSTEMS (OPERATIONS) LTD"	05-Jun-08 01:35 PM	

+="CN88251"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	23583.21	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 01:37 PM	

+="CN88259"	"RANTEWSS Power Supplies Materials for Power Supply Installation on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	23-Jul-08	21347.63	=""	="THALES AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88265"	"VALUATION OF GFE AT GOODRICH CONTROL SYSTEMS"	="Defence Materiel Organisation"	05-Jun-08	="Industrial process machinery and equipment and supplies"	21-May-08	11-Jun-08	22000.00	=""	="PICKLES AUCTIONS"	05-Jun-08 01:39 PM	

+="CN88266"	"CONDUCT SYSTEMS ENGINEERING COURSE FOR ANZAC SPO PERSONNELL 9-13 JUNE 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	13-Jun-08	29919.00	=""	="PROJECT PERFORMANCE AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88269"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	05-Jun-08	="Software"	09-May-08	31-Mar-09	23575.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:40 PM	

+="CN88287"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	30-Apr-08	30-Aug-08	29591.15	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:42 PM	

+="CN88288"	"  INTERAGENCY AUTHORISATION  "	="Defence Materiel Organisation"	05-Jun-08	="Office machines and their supplies and accessories"	11-Apr-08	30-Jun-08	25000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:42 PM	

+="CN88325"	"Quotation for course attendence was quoted to Pax via email on 30 April 2008"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	21-Jul-08	26400.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 01:46 PM	

+="CN88326"	"WINDSHIELD PANEL"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	06-May-08	15-Jun-08	28219.59	=""	="AGUSTAWESTLAND LTD"	05-Jun-08 01:46 PM	

+="CN88342"	"TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Specialty aircraft"	06-May-08	30-Jun-08	24200.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:48 PM	

+="CN88344"	"AMR SUPPLY FAN HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	30-May-08	29595.28	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:48 PM	

+="CN88347"	"Engineering In Service Support Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	25-Mar-08	30-Jun-08	29855.45	=""	="TRIUMPH GEAR SYSTEMS INC"	05-Jun-08 01:49 PM	

+="CN88354"	"Defence travel on DMO business"	="Defence Materiel Organisation"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	03-Jun-08	30-Jun-09	30000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:50 PM	

+="CN88359"	"Typhoon Installation & Mini Typhoon Re-siting for HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	08-May-08	20-May-08	28909.19	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:50 PM	

+="CN88393"	"PYLON AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	08-Jan-08	01-Aug-08	25857.64	=""	="HELIPRO COMPONENT SERVICES"	05-Jun-08 01:54 PM	

+="CN88430"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	12-May-08	30-Jul-08	23554.05	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:59 PM	

+="CN88435"	"CONTRACT SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	23447.35	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 01:59 PM	

+="CN88437"	"Repair of MDI S/No 1071"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	12-May-08	09-Sep-08	20905.20	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:00 PM	

+="CN88442"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	20053.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 02:00 PM	

+="CN88445"	"Negotiation Mentoring Support"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	12-May-08	30-Jun-08	22060.00	=""	="KPMG"	05-Jun-08 02:01 PM	

+="CN88467"	"PROVIDE PERSONAL  EFFICIENTCY PROGRAM FOR 12 HLTHSPO STAFF"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	13-May-08	30-Jun-08	25300.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 02:03 PM	

+="CN88473"	"SECURITY UPGRADES FOR NASPO BUILDINGS 99, 259,431, 442 AND DEMOUNTABLE"	="Defence Materiel Organisation"	05-Jun-08	="Security and control equipment"	13-May-08	30-Jun-08	29880.65	=""	="ASSURED LOCKSMITHS SAFES & SECURITY"	05-Jun-08 02:04 PM	

+="CN88476"	"Internal Audit Services"	="Defence Materiel Organisation"	05-Jun-08	="Accounting and auditing"	13-May-08	30-Jun-08	30000.00	=""	="COX & RELPH PTY LTD"	05-Jun-08 02:04 PM	

+="CN88484"	"Manufacture, fabrication, supply and delivery of 14 SEM trolleys"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	14-May-08	15-Sep-08	21302.60	=""	="TRADEWAY MAINTENANCE &"	05-Jun-08 02:05 PM	

+="CN88485"	"Tiger Team Eng"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	14-May-08	26-Jun-08	27500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 02:05 PM	

+="CN88497"	"block assy launcher"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	13-May-08	02-Sep-08	29936.25	=""	="LCF SYSTEMS INC"	05-Jun-08 02:07 PM	

+="CN88517"	"F-18 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Vehicle safety and security systems and components"	07-May-08	05-May-09	24643.62	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 02:09 PM	

+="CN88519"	"TLO Office at Lockheed Martin in Marietta, GA from 01 May to 31 Dec 2008"	="Defence Materiel Organisation"	05-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	08-May-08	31-Dec-08	22786.67	=""	="LOCKHEED MARTIN CORP DBA LOCKHEED M"	05-Jun-08 02:09 PM	

+="CN88521"	"Elecrical Components (connectors, banding backshel Bottle boot w/adhesive and Freight"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	08-May-08	30-May-08	20559.55	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 02:10 PM	

+="CN88524"	"3 X ABLE  SEAMAN / LEADING SEAMAN RESERVISTS TO ASSIST WITH FILE MUSTER AND INFORMATION MANAGEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	08-May-08	30-Jun-09	27930.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:10 PM	

+="CN88532"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	12-May-08	27387.95	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:11 PM	

+="CN88549"	"F-18 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	08-May-08	07-Mar-09	27605.48	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 02:13 PM	

+="CN88550"	"CLEANING CLOTH"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	19-May-08	22641.96	=""	="BERKSHIRE CORP"	05-Jun-08 02:13 PM	

+="CN88553"	"CADAS terminals"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	09-May-08	12-Jun-08	27777.35	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 02:13 PM	

+="CN88565"	"Contractor Provision of Project Administrative Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	09-May-08	12-Aug-08	20814.75	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	05-Jun-08 02:15 PM	

+="CN88570"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	03-Jan-09	21045.21	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88575"	"SML fire Protection monitoring and control"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	08-May-08	08-May-08	21450.00	=""	="G A GLANVILLE & CO"	05-Jun-08 02:16 PM	

+="CN88577"	"Engineering report for SVTTs"	="Defence Materiel Organisation"	05-Jun-08	="Paper Materials and Products"	08-May-08	30-Jun-08	27700.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:16 PM	

+="CN88600"	"DESKS & SCREENS"	="Administrative Appeals Tribunal"	05-Jun-08	="Furniture and Furnishings"	30-Nov-06	30-May-08	20212.50	=""	="UCI"	05-Jun-08 02:53 PM	

+="CN88602"	"SUBSCRIPTIONS APRIL 2008"	="Administrative Appeals Tribunal"	05-Jun-08	="Printed media"	25-Mar-08	30-Apr-09	29585.83	=""	="LEXISNEXIS"	05-Jun-08 02:53 PM	

+="CN88604"	"MOUNTING BASE, ELECTRICAL EQUIPMENT NSN 5975/014601383"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	20-May-08	01-Jul-08	28320.00	=""	="FLITE PATH PTY LTD"	05-Jun-08 02:55 PM	

+="CN88621"	"Clifton Suites Training Rooms"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Education and Training Services"	07-May-08	30-Jun-08	20500.00	="PRN19577"	="CLIFTON OPERATIONS PTY LIMITED"	05-Jun-08 03:07 PM	

+="CN88626"	"AllFusion ERwin Software Maint Renewal"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	21422.50	="PRN19855"	="COMPUTER ASSOCIATES PTY LTD"	05-Jun-08 03:09 PM	

+="CN88629"	"TANL, FUEL, AIRCRAFT NSN 1560/006702059"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	27-May-08	26899.80	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:10 PM	

+="CN88631"	"VET FEE-HELP Information Sessions"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	31-Jul-08	29150.00	="PRN19784"	="TAFE DIRECTORS AUSTRALIA"	05-Jun-08 03:10 PM	

+="CN88642-A1"	"National VET Equity Advisory Taskforce - TALK IT UP VET Online Forum"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	22-May-08	30-Jun-09	25000.00	="PRN19585"	="EDUCATION.AU LIMITED"	05-Jun-08 03:12 PM	

+="CN88646"	"Management of IHEAC 2008 Conference"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	29-Aug-08	22740.00	="PRN19607"	="NYE COMMUNICATIONS"	05-Jun-08 03:12 PM	

+="CN88675"	"REPAIR - REGULATOR, AIR PRESSURE, AIRCRAFT CABIN"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	28-Feb-08	30-Jun-08	20125.62	=""	="QANTAS AIRWAYS LTD"	05-Jun-08 04:23 PM	

+="CN88683"	"Invoice No ARK0712-08 Ark NPM Group Claim 5"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-May-08	30-Jun-08	23236.58	=""	="ARK HOMES"	05-Jun-08 04:45 PM	

+="CN88687"	"COMPUTING SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	27500.00	=""	="KAZ GROUP PTY LTD"	05-Jun-08 04:46 PM	

+="CN88688"	"Matthew Davis $46.35 per hr 40 he per wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:46 PM	

+="CN88689"	"Gavin Ting, $46.35 p/hr, 40hrs per wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:46 PM	

+="CN88697"	"Toshibal Scanner"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	12-May-08	30-May-08	22794.31	=""	="WORLDSMART RETECH PTY LTD"	05-Jun-08 04:47 PM	

+="CN88698"	"Headsets"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	20209.59	=""	="BOSE PTY LTD"	05-Jun-08 04:47 PM	

+="CN88702"	"CHAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	12-May-08	30-Jun-08	25806.00	=""	="T&T PROPERTY MAINTENANCE"	05-Jun-08 04:48 PM	

+="CN88703"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	12-May-08	08-Aug-08	21037.50	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 04:48 PM	

+="CN88713"	"Tania Sherrington $46.35 p/hr 40hr/wk Extention of existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88711"	"Supply of DPCU and DPDU Brassards."	="Defence Materiel Organisation"	05-Jun-08	="Fabrics and leather materials"	05-Jun-08	27-Jun-08	20900.00	=""	="Arcade Embroidery"	05-Jun-08 04:50 PM	

+="CN88716"	"Garry Petot, $46.35 p/hr, 40hrs per wk Extention of existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88718"	"Dean Wright $46.35 per/hr 12 hr shifts Extention of existing contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	28959.48	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:50 PM	

+="CN88723"	"POC: JON VEHLBERG CONTACT: 02 626 50751"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	22657.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:51 PM	

+="CN88726"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	12-May-08	20-May-08	25500.09	=""	="EYO TECHNOLOGIES PTY LTD"	05-Jun-08 04:51 PM	

+="CN88727"	"REPAIR RUST DAMAGE"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	12-May-08	26-Jun-08	24091.10	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	05-Jun-08 04:52 PM	

+="CN88729"	"O/HAUL AIRCRAFT JACKS QTY 4"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	12-May-08	12-Jun-08	25257.10	=""	="FORDHAM ENGINEERING"	05-Jun-08 04:52 PM	

+="CN88751"	"Supply as per quotation dated 12.05.2008"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	27-Jun-08	22693.00	=""	="CREST OFFICE FURNITURE"	05-Jun-08 04:56 PM	

+="CN88752"	"NQ2223 - Ross Island Land Ship Consultancy for Com Works."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	14-May-08	30-Jun-08	25476.00	=""	="SPOTLESS"	05-Jun-08 04:56 PM	

+="CN88756"	"HQJOC PROJECT-HP-TACTICAL COMMUNICATIONS SYSTEM."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-08	25643.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:56 PM	

+="CN88772"	"software maintenance"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	30-May-08	22000.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	05-Jun-08 04:58 PM	

+="CN88775"	"DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	23-Jun-08	27302.57	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 04:58 PM	

+="CN88777"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	13-Jun-08	29865.00	=""	="BROWNBUILT PTY LTD"	05-Jun-08 04:58 PM	

+="CN88779"	"MEDICAL"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	21-May-08	30-Jun-08	28356.80	=""	="PARKWAY SHENTON PTE LTD"	05-Jun-08 04:58 PM	

+="CN88786"	"White Sahara Intel Core Duo"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	22930.60	=""	="TEGATECH AUSTRALIA"	05-Jun-08 04:58 PM	

+="CN88793"	"CONSUMABLE BUY REQUIRED FOR AIU STORE"	="Department of Defence"	05-Jun-08	="Workshop machinery and equipment and supplies"	19-May-08	30-Jun-08	23435.72	=""	="CHEMETALL AUSTRALASIA PTY LTD"	05-Jun-08 04:59 PM	

+="CN88795"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	22008.64	=""	="SUN MICROSYSTEMS"	05-Jun-08 04:59 PM	

+="CN88796"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper products"	19-May-08	18-Jun-08	25234.00	=""	="GLAMA PAK PTY LTD"	05-Jun-08 04:59 PM	

+="CN88803"	"Manufacture of 400 OFF cal. sabots"	="Department of Defence"	05-Jun-08	="Industrial Production and Manufacturing Services"	13-May-08	13-Jun-08	20064.00	=""	="VCAMM LTD"	05-Jun-08 04:59 PM	

+="CN88804"	"GPS SYSTEM"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	19-May-08	13-Jun-08	23694.00	=""	="RYDA DOT COM"	05-Jun-08 04:59 PM	

+="CN88809"	"Photo Printer and Monitors"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-May-08	30-May-08	23699.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:00 PM	

+="CN88813"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	26481.69	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:00 PM	

+="CN88817"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	27500.00	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	05-Jun-08 05:00 PM	

+="CN88819"	"Resman Conference"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	23-May-08	25000.00	=""	="WHALERS INN RESORT"	05-Jun-08 05:00 PM	

+="CN88821"	"Requested by 322ECSS Gym"	="Department of Defence"	05-Jun-08	="Fitness equipment"	13-May-08	13-May-08	21912.00	=""	="THE FITNESS GENERATION PTY LTD"	05-Jun-08 05:00 PM	

+="CN88836"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	13-May-08	11-Jun-08	23395.00	=""	="PERKICH & ASSOCIATES"	05-Jun-08 05:01 PM	

+="CN88837"	"MAINTENANCE AGREEMENT"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-May-08	30-Jun-08	21342.75	=""	="FORTES SOLUTIONS AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88839"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	17-Jun-08	27500.00	=""	="ROYAL MELBOURNE INSTITUTE OF"	05-Jun-08 05:01 PM	

+="CN88840"	"Minor Security (electronic Works)"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	19-May-08	18-Jun-08	20636.00	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:01 PM	

+="CN88842"	"Mark Carter $45.00 p/hr, 40 hr per week Extention of current contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	28116.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88843"	"VEHICLE LEASE"	="Department of Defence"	05-Jun-08	="Motor vehicles"	19-May-08	30-Jun-10	26600.00	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 05:01 PM	

+="CN88858"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	22340.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:02 PM	

+="CN88857"	"AB - Refurbishment of Roof Insulation"	="Department of Defence"	05-Jun-08	="Insulation"	19-May-08	30-Jun-08	22000.00	=""	="RESOLVE FM"	05-Jun-08 05:02 PM	

+="CN88864"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	21350.00	=""	="MINTER ELLISON"	05-Jun-08 05:02 PM	

+="CN88867"	"Supply and install 10 tray rational combi oven mod stand UG1 ADFA Bld No. 6."	="Department of Defence"	05-Jun-08	="Prefabricated structures"	13-May-08	30-Jun-08	22352.00	=""	="AC&R CATERING EQUIPMENT &"	05-Jun-08 05:03 PM	

+="CN88869"	"HANDHELD OTDR"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	28630.80	=""	="ANDERSON CORPORATION PTY LTD"	05-Jun-08 05:03 PM	

+="CN88895"	"NSIMS - UNREMEDIATED MISCELLANEOUS DATA"	="Department of Defence"	05-Jun-08	="Computer services"	21-May-08	30-Jun-08	29480.00	=""	="SKM"	05-Jun-08 05:04 PM	

+="CN88906"	"Cisco Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	23-May-08	29513.33	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88913"	"TO PROVIDE SUSPENSION, BRAKE, & STEERING KITS FOR PROJECT DIGGER."	="Department of Defence"	05-Jun-08	="Suspension system components"	21-May-08	30-Jun-08	21208.00	=""	="RRS PTY LIMITED"	05-Jun-08 05:05 PM	

+="CN88917"	"POC: M.Schubert Quotation: 00000724"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	20300.00	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:05 PM	

+="CN88928"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - PAINTING GATTON & HARRISTOWN PAINTING"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	24057.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:05 PM	

+="CN88931"	"PROFFESSIONAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	29700.00	=""	="PAXUS AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88946"	"GARDEN ISLAND COMPRESSED AIR REVIEW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	25300.00	=""	="THALES AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88956"	"NQ2081 - Building 768 Additional Comms Cabinets fo Services."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	19-May-08	30-Jun-08	21107.90	=""	="EMAK COMMUNICATIONS"	05-Jun-08 05:06 PM	

+="CN88966"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	23617.00	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88972"	"Road Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	25945.70	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88980"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	19-May-08	31-Jul-09	28000.00	=""	="MINDFIELD GUIDE"	05-Jun-08 05:08 PM	

+="CN88984"	"TABLES FOR MEETING ROOM"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	15-Jul-08	29851.80	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:08 PM	

+="CN88990"	"Research Equipment"	="Department of Defence"	05-Jun-08	="Educational facilities"	08-May-08	06-Jun-08	26268.00	=""	="VCAMM LTD"	05-Jun-08 05:08 PM	

+="CN88996"	"Sea Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	23976.87	=""	="PDL TOLL"	05-Jun-08 05:08 PM	

+="CN89000"	"DS-NQ-TS GAP YEAR FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	31-Jul-08	21736.00	=""	="SYMES FURNITURE"	05-Jun-08 05:08 PM	

+="CN89002"	"ESRI AUSTRALIA - SOFTWARE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	22457.60	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:08 PM	

+="CN89003"	"Training Courses"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-May-08	31-Dec-08	25695.00	=""	="ROBERT BRENNAN & ASSOCIATES"	05-Jun-08 05:08 PM	

+="CN89005"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	22825.10	=""	="BAYLEY AND ASSOCIATES PTY LTD"	05-Jun-08 05:09 PM	

+="CN89007"	"Purchase MATLAB Software as per Quotation: 2047726 DSTO205929"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	26-May-08	20196.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89014"	"Security System"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	08-May-08	30-May-08	25194.10	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:09 PM	

+="CN89016"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-Jun-08	27145.80	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:09 PM	

+="CN89024"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	22-May-08	30-Jun-09	21550.00	=""	="MINTER ELLISON"	05-Jun-08 05:09 PM	

+="CN89029"	"Temps for mailroom RAAF Edinburgh"	="Department of Defence"	05-Jun-08	="Cleaning and janitorial services"	07-May-08	30-Jun-08	24200.00	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 05:10 PM	

+="CN89030"	"Walkie Stacker 1.55 x 3000"	="Department of Defence"	05-Jun-08	="Tools and General Machinery"	22-May-08	30-Jun-08	22990.00	=""	="CROWN EQUIPMENT PTY LTD"	05-Jun-08 05:10 PM	

+="CN89037"	"REVIEW OF THE FWOS GUIDELINES."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	21868.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:10 PM	

+="CN89039"	"FURNITURE FOR THE PAC BUILDING"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	20774.30	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:10 PM	

+="CN89046"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	23834.96	=""	="HARVEY NORMAN COMPUTER SUPERSTORE"	05-Jun-08 05:10 PM	

+="CN89062"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	25000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:11 PM	

+="CN89074"	"SN02537 - SMART database barcoding audit for ACT Defence sites"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	25000.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:12 PM	

+="CN89076"	"RV0411 - RGN - EB47 Refurbish air conditioning controls system"	="Department of Defence"	05-Jun-08	="Project management"	07-May-08	30-Jun-09	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:12 PM	

+="CN89080"	"S5101, WR 300079048. Engage a consultant to determ replacement options for the damaged submarine pow"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	27500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:12 PM	

+="CN89113"	"DATA PACKAGE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	25-Jun-08	21840.50	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 05:13 PM	

+="CN89117"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	26-Jun-08	22870.10	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89129"	"OTS Serials 08.200, 08.206, 08.201 and 08.207 - 4 x Urban Ops Courses - UK"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	28706.16	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	05-Jun-08 05:14 PM	

+="CN89131"	"AQIS OFFSHORE INSPECTION OP ASTUTE"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	19-May-08	31-May-08	26728.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:14 PM	

+="CN89132"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	26-Jun-08	25499.98	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89135"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	25809.50	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:14 PM	

+="CN89141"	"research agreement"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	22000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:15 PM	

+="CN89153"	"SENTRY BUNDS"	="Department of Defence"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	19-May-08	19-Jun-08	20496.96	=""	="SPILL CONTROL SYSTEMS PTY LTD"	05-Jun-08 05:15 PM	

+="CN89155"	"Unit Audits"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	22-May-08	30-Dec-08	27500.00	=""	="SAI GLOBAL LTD"	05-Jun-08 05:15 PM	

+="CN89157"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	20293.57	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:15 PM	

+="CN89160"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	09-May-08	06-Jun-08	21875.81	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89173"	"SHIPS REPAIRS"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	30-Jun-08	24524.80	=""	="NORTHWEST ENGINEERING PTE LTD"	05-Jun-08 05:16 PM	

+="CN89188"	"Tape Cartridge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	05-Jun-08	20251.00	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89189"	"SUPPLY A PABX SYSTEM FOR DEFENCE ATHERTON"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	29747.96	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:17 PM	

+="CN89205"	"Alterations and additions toexisting fire suppessi building F6, Gallipoli Barracks, Enoggera"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	26-Jun-08	27893.80	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:17 PM	

+="CN89213"	"S5272, WR 300080484. World Youth Day 2008is an eve Defence, this proposal is to provide tented accom"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	20000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:18 PM	

+="CN89214"	"Jean McCallum, $41.20 p/hr 40hrs p/w Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	25741.76	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 05:18 PM	

+="CN89225"	"ACCOMMODATION/CONFERENCE PACKAGE"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	20-May-08	20-May-08	21594.00	=""	="HOTEL HERITAGE"	05-Jun-08 05:18 PM	

+="CN89229"	"POC: CHRIS MCCOLL CONTACT: 02 626 6001"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	10-May-08	30-Jun-08	26703.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:19 PM	

+="CN89234"	"MITSUBISHI 1080i FULL HD PROJECTOR 18 MOTOTISED SCREEN"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	20-May-08	23-May-08	28743.20	=""	="KLM GROUP"	05-Jun-08 05:19 PM	

+="CN89238"	"computer cables"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	30-May-08	20300.06	=""	="MILLENNIUM AUDIO VISUAL"	05-Jun-08 05:19 PM	

+="CN89239"	"COMPUTER UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-May-08	22275.00	=""	="PROGRAM IT PTY LTD"	05-Jun-08 05:19 PM	

+="CN89241"	"STEELE BEASTS TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	09-May-08	30-Jun-08	26850.00	=""	="ESIM GAMES DEUTSCHLAND GMBH"	05-Jun-08 05:19 PM	

+="CN89243"	"FURNITURE REPAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	22000.00	=""	="DICK VERNON CONSTRUCTIONS"	05-Jun-08 05:19 PM	

+="CN89247"	"Antenna"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	15-May-08	22345.94	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	05-Jun-08 05:19 PM	

+="CN89253"	"VBS2 TRAINING ADVANCED"	="Department of Defence"	05-Jun-08	="Education and Training Services"	09-May-08	30-Jun-08	22022.00	=""	="BOHEMIA INTERACTIVE AUSTRALIA"	05-Jun-08 05:20 PM	

+="CN89261"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	21670.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:20 PM	

+="CN89274"	"Telephone Handsets"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	08-Aug-08	21873.72	=""	="GETRONICS"	05-Jun-08 05:21 PM	

+="CN89279"	"Advertising Expenses"	="Department of Defence"	05-Jun-08	="Advertising"	15-May-08	30-Jun-08	22000.00	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:21 PM	

+="CN89282"	"Terramodel licences"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	30-Jun-08	23496.00	=""	="GEOCOMP SYSTEMS"	05-Jun-08 05:21 PM	

+="CN89287"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Sports equipment and accessories"	06-May-08	30-Jun-08	25300.00	=""	="HF INDUSTRIES PTY LTD"	05-Jun-08 05:21 PM	

+="CN89293"	"North Queensland maintenance Plan Evaluator and Disbursements"	="Department of Defence"	05-Jun-08	="Management advisory services"	06-May-08	30-Jun-08	24620.00	=""	="BASSETT CONSULTING ENGINEERS"	05-Jun-08 05:21 PM	

+="CN89296"	"EX STHN REACH - 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	24220.00	=""	="PFD FOOD SERVICES"	05-Jun-08 05:22 PM	

+="CN89297"	"NTC Tidal Reports Jan-Mar 08"	="Department of Defence"	05-Jun-08	="Business administration services"	15-May-08	30-May-08	27500.00	=""	="BUREAU OF METEOROLOGY"	05-Jun-08 05:22 PM	

+="CN89310"	"INSTALLATION OF INTERNET WIRELESS SYSTEM AT RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	08-May-08	31-May-08	22550.00	=""	="TERRITORY TECHNOLOGY SOLUTIONS"	05-Jun-08 05:22 PM	

+="CN89320"	"LCMT Training course"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	31-May-08	25086.24	=""	="STRATOS"	05-Jun-08 05:23 PM	

+="CN89339"	"Note: All Invoices relating to this Purchase Order only to the address cited on the Purchase Order."	="Department of Defence"	05-Jun-08	="Safety and rescue vehicles"	02-May-08	13-May-08	20020.00	=""	="ACCESS RENTALS"	05-Jun-08 05:23 PM	

+="CN89348"	"Maintenance work at RAAF Base Darwin"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	02-May-08	28-May-08	29500.01	=""	="AE SOLUTIONS (NT) PTY LTD"	05-Jun-08 05:24 PM	

+="CN89358"	"PROFESSIONAL FEES AND DISBURSEMENTS....."	="Department of Defence"	05-Jun-08	="Legal services"	09-May-08	30-Jun-08	26000.00	=""	="CLAYTON UTZ"	05-Jun-08 05:24 PM	

+="CN89364"	"Software Support"	="Department of Defence"	05-Jun-08	="Software"	08-May-08	10-Apr-09	29885.16	=""	="LOCKHEED MARTIN UK INSYS LTD"	05-Jun-08 05:25 PM	

+="CN89367"	"Cabling work at Tindal"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	08-May-08	30-Jun-08	25293.40	=""	="NBC COMMUNICATIONS"	05-Jun-08 05:25 PM	

+="CN89370"	"Cabling work at Delamere"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	08-May-08	30-Jun-08	23870.00	=""	="MULTISYSTEM COMMUNICATIONS"	05-Jun-08 05:25 PM	

+="CN89373"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-09	27100.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:25 PM	

+="CN89374"	"ACCOM FOR DEFENCE ATTACHES CONF IN CANBERRA"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	14-May-08	14-May-08	29700.00	=""	="WALDORF APARTMENT HOTEL"	05-Jun-08 05:25 PM	

+="CN89379"	"For DISIP Stage 2 DIER 0607-0832"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	20-May-08	27015.20	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:25 PM	

+="CN89381"	"Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-Jun-08	25554.45	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:25 PM	

+="CN89382"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-09	22665.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:26 PM	

+="CN89387"	"Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-May-08	21015.65	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:26 PM	

+="CN89392"	"RV0575 - RBW / KMA Provide an audit report on control cable network"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-08	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89396"	"1st semester fees SCU. JOPES students"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	30-Jun-08	20900.00	=""	="SOUTHERN CROSS UNIVERSITY"	05-Jun-08 05:26 PM	

+="CN89400"	"ROMAN AND BORIS TRAINERS"	="Department of Defence"	05-Jun-08	="Educational facilities"	14-May-08	30-Jun-08	29040.00	=""	="GRAEME V JONES & ASSOCIATES PTY"	05-Jun-08 05:27 PM	

+="CN89406"	"Diploma of Government (Contract Management) Training"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	30-May-08	26540.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	05-Jun-08 05:27 PM	

+="CN89412"	"Ultra high temperature ceramic R & D work at Monas h University"	="Department of Defence"	05-Jun-08	="Military science and research"	14-May-08	30-Jun-08	27500.00	=""	="MONASH UNI - SCHOOL OF PHYSICS &"	05-Jun-08 05:27 PM	

+="CN89414"	"SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	30-Jun-08	24487.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89428"	"POC: JOHN BURGESS CONTACT: 02 626 50462"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	25086.24	=""	="ENTRUST LTD"	05-Jun-08 05:28 PM	

+="CN89432"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	14-May-08	28716.31	=""	="UNI OF WOLLONGONG-PERS FIN SERVICES"	05-Jun-08 05:29 PM	

+="CN89438"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	24877.60	=""	="INTERWORX PTY LTD"	05-Jun-08 05:29 PM	

+="CN89451"	"SPONSORSHIP OF AUSTRALIAN MEDICAL STUDENTS ASSOCIA ACCEPTED IS FACE TO FACE RELATIONSHIP BUILDING GO"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-08	22000.00	=""	="AUSTRALIAN MEDICAL STUDENTS ASSOC"	05-Jun-08 05:30 PM	

+="CN89454"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	29700.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:30 PM	

+="CN89462"	"FOR ANNUAL SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	07-May-08	30-Jun-08	22924.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:31 PM	

+="CN89466"	"Cisco Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	20-May-08	27604.50	=""	="ASI SOLUTIONS"	05-Jun-08 05:31 PM	

+="CN89470"	"CREATION OF VARIOUS SIGNS FOR RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Signage and accessories"	07-May-08	31-May-08	22929.50	=""	="AUSSIE SIGNS"	05-Jun-08 05:31 PM	

+="CN89484"	"SUPPLY & INSTALL LOCKERS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	07-May-08	11-Jun-08	20702.44	=""	="INTERLOC LOCKERS PTY LTD"	05-Jun-08 05:32 PM	

+="CN89485"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	20515.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:32 PM	

+="CN89495"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	22704.00	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:33 PM	

+="CN89496"	"INSTALLATION OF DRN OUTLETS & CABLING, VARIOUS SITES, RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	23936.00	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89504"	"COMPUTER SOFT & HARD WARE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	29951.87	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:33 PM	

+="CN89508"	"SFA TRAINING"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	06-May-08	30-Jun-08	29267.28	=""	="BAE SYSTEMS"	05-Jun-08 05:34 PM	

+="CN89514"	"SPA"	="Department of Defence"	05-Jun-08	="Prefabricated structures"	06-May-08	30-Jun-08	27132.00	=""	="WINDSOR SPA & OUTDOOR CENTRE"	05-Jun-08 05:34 PM	

+="CN89526"	"DMOSS Standing Offer"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	06-May-08	30-Jun-08	25125.10	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:35 PM	

+="CN89533"	"SUPPLY INSTALL SERVER & UPS"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	30-Jun-08	23857.15	=""	="SEYMOUR COMPUTERS"	05-Jun-08 05:35 PM	

+="CN89536"	"EXERCISE BIKES"	="Department of Defence"	05-Jun-08	="Gymnastics and boxing equipment"	19-May-08	13-Jun-08	24667.50	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:35 PM	

+="CN89537"	"fruit & vegs"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	06-May-08	31-Dec-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:36 PM	

+="CN89563"	"purchase of optical media shredder"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-May-08	21433.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 05:37 PM	

+="CN89565"	"purchase of micrographic scanner"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	27-May-08	20836.20	=""	="PROSCAN AUSTRALIA PTY LTD"	05-Jun-08 05:37 PM	

+="CN89568"	"Conduct Organisation Review"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	09-May-08	29150.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:38 PM	

+="CN89572"	"MATTRESS"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	06-May-08	30-May-08	26950.00	=""	="SLEEP FIRM  AUSTRALIA"	05-Jun-08 05:38 PM	

+="CN89585"	"HEALTH SERVICE - BNH"	="Department of Defence"	05-Jun-08	="Emergency and field medical services products"	23-May-08	30-Jun-08	27622.10	=""	="DR LOUISE MURRAY"	05-Jun-08 05:39 PM	

+="CN89596"	"JDeveloper training to JEWOSU personnel"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	20971.50	=""	="SAGE COMPUTING SERVICES"	05-Jun-08 05:39 PM	

+="CN89604"	"EPC-5 Named Author Modeler Lic and Maintenance"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	31-Mar-09	20556.78	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:40 PM	

+="CN89621"	"GI Significant Repairs & Maintenance to Buildings 07/08"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	30-May-08	30-Jun-08	24538.28	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89625"	"APARTMENTS"	="Department of Defence"	05-Jun-08	="Travel facilitation"	12-Jul-07	22-Nov-07	27516.08	=""	="QUEST NEWCASTLE"	05-Jun-08 05:41 PM	

+="CN89632"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	23-May-08	20504.00	=""	="OUTRAM ASSOCIATES"	05-Jun-08 05:42 PM	

+="CN89638"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	29684.66	=""	="DEAKINPRIME"	05-Jun-08 05:42 PM	

+="CN89643"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Dec-08	22000.00	=""	="LACEY PERSONNEL CONSULTING"	05-Jun-08 05:42 PM	

+="CN89654"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	22770.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89661"	"INTERNET SERVICES FOR FEB - APR 08"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	23-May-08	20821.48	=""	="NEWSAT LTD"	05-Jun-08 05:43 PM	

+="CN89668"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	22506.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89675"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	28248.91	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89680"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	29317.86	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:45 PM	

+="CN89682"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-May-08	20000.00	=""	="DKC INTERNATIONAL PTY LTD"	05-Jun-08 05:45 PM	

+="CN89684"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	29238.66	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:45 PM	

+="CN89687"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	30-Apr-08	30-Sep-08	21554.60	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89692"	"BACK PACKS"	="Department of Defence"	05-Jun-08	="Luggage and handbags and packs and cases"	23-May-08	20-Jun-08	26400.00	=""	="CROSSFIRE PTY LTD"	05-Jun-08 05:45 PM	

+="CN89698"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	23-May-08	30-Jun-08	22000.00	=""	="ADVANCED VTOL TECHNOLOGIES"	05-Jun-08 05:46 PM	

+="CN89699"	"DIVE COURSE"	="Department of Defence"	05-Jun-08	="Water safety"	14-May-08	30-May-08	22000.00	=""	="THE UNDERWATER CENTRE FREMANTLE"	05-Jun-08 05:46 PM	

+="CN89710"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	23188.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89722"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	20592.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89737"	"LEASE OF VEHICLES"	="Department of Defence"	05-Jun-08	="Motor vehicles"	23-May-08	01-Jun-08	24321.47	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:48 PM	

+="CN89745"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	03-Jun-08	30-Aug-08	23401.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:48 PM	

+="CN89760"	"MILITARY EXERCISE"	="Department of Defence"	05-Jun-08	="Other sports"	23-May-08	23-May-08	21472.00	=""	="AARDVARK ADVENTURES"	05-Jun-08 05:49 PM	

+="CN89764"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	25806.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 05:50 PM	

+="CN89770"	"REGISTRATION REQUIRED TO DELIVER TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	20000.00	=""	="RECEIVER OF OFFICIAL MONIES"	05-Jun-08 05:50 PM	

+="CN89781"	"VTC Polycom Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	30-Apr-08	30-May-08	23142.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:51 PM	

+="CN89795"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	02-Jun-08	30-Jun-08	23842.19	=""	="BID VEST BURLEIGH MARR"	05-Jun-08 05:52 PM	

+="CN89796"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	01-Jul-08	22728.13	=""	="TETON DATA SYSTEMS INC DBA STAT -RE"	05-Jun-08 05:52 PM	

+="CN89802"	"Cryptographic equipment"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	26-May-08	09-Oct-08	22765.76	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:52 PM	

+="CN89809"	"PSP Contractor - ICT Support Officer"	="Department of Defence"	05-Jun-08	="Temporary personnel services"	29-May-08	27-Jun-08	20855.24	=""	="CAREERS MULTILIST LIMITED"	05-Jun-08 05:53 PM	

+="CN89829"	"FMBD: Bldg 52 Enlarge Existing Computer Room"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Aug-08	24558.60	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	05-Jun-08 05:54 PM	

+="CN89836"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	29412.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 05:54 PM	

+="CN89839"	"Value based Purchase Order"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	02-Jun-08	30-Jun-08	20000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	05-Jun-08 05:54 PM	

+="CN89841"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	07-May-08	30-Jun-08	26048.00	=""	="CLAYTON UTZ"	05-Jun-08 05:55 PM	

+="CN89843"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	02-Jun-08	30-Jun-08	30000.00	=""	="SIMON GEORGE &"	05-Jun-08 05:55 PM	

+="CN89846"	"EMPLOYMENT OF LEGAL OFFICERS"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	26-May-08	30-Jun-08	30000.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 05:55 PM	

+="CN89847"	"CORPORATE AIR HIRE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	04-Jun-08	30-Jun-08	22000.00	=""	="CORPORATE AIR"	05-Jun-08 05:55 PM	

+="CN89853"	"SUPPLY OF GAS FOR GAS CYLINDERS"	="Department of Defence"	05-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Jun-08	03-Jun-08	22000.00	=""	="ELGAS"	05-Jun-08 05:55 PM	

+="CN89856"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	21360.00	=""	="CLAYTON UTZ"	05-Jun-08 05:56 PM	

+="CN89858"	"STORAGE SYSTEM FOR TOOLS AND EQUIPMENT Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Containers and storage"	26-May-08	30-Jun-08	29573.50	=""	="BAC AUSTRALIAN SYSTEMS PTY LTD"	05-Jun-08 05:56 PM	

+="CN89860"	"REDEVELOPMENT OF PMKEYS DATABASE"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	26-May-08	29700.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:56 PM	

+="CN89866"	"OFFICE CHAIRS - ROTARY"	="Department of Defence"	05-Jun-08	="Commercial and industrial furniture"	26-May-08	06-Jun-08	21925.20	=""	="SITZ"	05-Jun-08 05:56 PM	

+="CN89871"	"Miscellaneous minor new work , ACT/SNSW"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	30-Jun-08	26192.23	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:56 PM	

+="CN89873"	"TSS CONTRACT"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	30-Sep-08	30000.00	=""	="SOLVEIT SOFTWARE PTY LTD"	05-Jun-08 05:57 PM	

+="CN89878"	"DOCTRINE PUBLICATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	26-May-08	30-Jun-08	26741.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	05-Jun-08 05:57 PM	

+="CN89882"	"FURNITURE FOR SINGLETON BLDG K506"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	20134.19	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:57 PM	

+="CN89886"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	22394.41	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 05:57 PM	

+="CN89891"	"IT SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89892"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	23003.47	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:58 PM	

+="CN89894"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	26750.20	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:58 PM	

+="CN89908"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	22423.50	=""	="INFOLOGIC SYSTEMS CONSULTANTS PTY"	05-Jun-08 05:59 PM	

+="CN89910"	"CONTRACT NO: CSI-SC05/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:59 PM	

+="CN89923"	"Repairs to GSE"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	12-May-08	23-May-08	27498.68	=""	="EYRE & OWEN SMASH REPAIRS"	05-Jun-08 06:00 PM	

+="CN89931"	"S5113, WR 300071781. Hammerhead crane - supply and around base of crane."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	30-Jun-08	25366.76	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 06:00 PM	

+="CN89936"	"Audits conducted by SAI Global for JLC Units"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	31-May-08	27500.00	=""	="SAI GLOBAL LTD"	05-Jun-08 06:01 PM	

+="CN89937"	"PSP SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-Jun-08	26453.02	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 06:01 PM	

+="CN89938"	"WIRRAWAY CLUB RECTIFICATION WORKS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	25300.00	=""	="SPOTLESS"	05-Jun-08 06:01 PM	

+="CN89941"	"Accomodation"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	26-May-08	30-May-08	21326.80	=""	="THE BARDON CENTRE"	05-Jun-08 06:01 PM	

+="CN89948"	"Kate Carrigan $41.20 p/hr 40hrs p/w Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	25741.76	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 06:01 PM	

+="CN89958"	"PORT SERVICES RANLO SINGAPORE"	="Department of Defence"	05-Jun-08	="Specialised and recreational vehicles"	21-May-08	30-Jun-08	22992.00	=""	="PSA MARINE (PTE) LTD"	05-Jun-08 06:02 PM	

+="CN89960"	"Research Agreement Adelaide Uni"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	21-May-08	10-Dec-08	22000.00	=""	="UNIVERSITY OF ADELAIDE"	05-Jun-08 06:02 PM	

+="CN89965"	"structural assessment"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	13-May-08	30-Jun-08	22456.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 06:02 PM	

+="CN89970"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	24000.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 06:03 PM	

+="CN89994"	"Tool Box Portable Plastic Olive Drab w/foam insert, side handles, removable tray, lockable latches, all hardware steel, black"	="Defence Materiel Organisation"	06-Jun-08	="Workshop machinery and equipment and supplies"	05-Jun-08	04-Aug-08	22000.00	=""	="Trimcast Pty Ltd"	06-Jun-08 11:35 AM	

+="CN90032"	"Provisions for Military Seminars for Web Services"	="Comsuper"	06-Jun-08	="Educational or reference software"	05-Feb-08	31-Dec-08	22814.00	=""	="Link Web Services"	06-Jun-08 02:57 PM	

+="CN90039"	"Facilitation Services"	="Centrelink"	06-Jun-08	="Specialised educational services"	25-Mar-08	30-Jun-08	29260.00	=""	="Executive Leadership Pty Ltd"	06-Jun-08 03:25 PM	

+="CN87849"	"Additional data Analysis to inform MCAF shortfalls"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Database analysis"	28-Apr-08	20-Jun-08	21230.00	=""	="Urbis Pty Ltd"	06-Jun-08 04:12 PM	

+="CN87626"	"Contractor to assist in Technical Testing of IPND Applications"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	10-Apr-08	30-Jun-08	29260.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:25 PM	

+="CN87622"	" Temporary personel "	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	21-May-08	21-Aug-08	25987.50	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:28 PM	

+="CN87437"	"Recruitment Services for Human Resources Manager Position"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	23-Apr-08	30-Jun-08	26400.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:31 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val300000to999999999.xls
@@ -1,1 +1,206 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87900-A1"	"Battery Nonrechargeable BA-F300"	="Defence Materiel Organisation"	05-Jun-08	="Lithium batteries"	27-May-08	16-Dec-08	1379400.00	=""	="SAFT BATTERIES PTY LTD"	05-Jun-08 09:26 AM	

+="CN87903"	"Battery Nonrechargble BA-F300"	="Defence Materiel Organisation"	05-Jun-08	="Lithium batteries"	26-May-08	20-Oct-08	2508000.00	=""	="SAFT BATTERIES PTY LTD"	05-Jun-08 09:50 AM	

+="CN87944"	"Night Aiming Device Spare Parts"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	19-May-08	22-Aug-08	413935.50	=""	="BAE Systems Australia Ltd"	05-Jun-08 12:22 PM	

+="CN87954"	"Power Supply"	="Defence Materiel Organisation"	05-Jun-08	="Electronic Components and Supplies"	17-May-08	19-Jan-09	336774.67	=""	="ROCKWELL COLLINS INC. DIV GOVERNMEN"	05-Jun-08 01:03 PM	

+="CN87958"	"Project Development Officer"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	02-May-09	352000.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:03 PM	

+="CN87971"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	15-Jul-08	554303.64	=""	="FLIGHT DATA SYSTEMS PTY LTD"	05-Jun-08 01:04 PM	

+="CN87979"	"Platform & Certification engineering support to allow PBSPO to achieve or"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	30-Apr-09	878000.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 01:05 PM	

+="CN87981"	"WORK STAND AND FUEL ACCESS STAND FOR F/18 AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	16-May-08	30-Jul-08	1472900.00	=""	="ACE ACCESS & SCAFFOLD"	05-Jun-08 01:06 PM	

+="CN87982"	"Incremental redundancy costs for the Nowra BAE workforce in accordance with the ACMC"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	16-May-08	15-Jun-08	1359184.86	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	05-Jun-08 01:06 PM	

+="CN87998"	"Toyota Tarago Wagon (BS) Qty 9"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	14-Nov-08	375969.26	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88018"	"Support Equipment for MEOA Operations"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	19-May-08	30-Jun-09	1760000.00	=""	="DATAVOICE CANBERRA PTY LTD"	05-Jun-08 01:10 PM	

+="CN88035"	"PROCUREMENT AND ISSUE OF ALL BDS/ CONSUMABLES IN SUPPORT OF 723 SQN AND OPERATIONS, HMAS ALBATROSS"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	14-May-08	30-Nov-08	990000.00	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 01:12 PM	

+="CN88001-A1"	"Qty 2,500 Battery Assembly Nonrechargeable for Thermal Surveillance Systems"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	08-May-08	10-Jun-08	426250.00	=""	="Aerospace Composites Pty Ltd"	05-Jun-08 01:13 PM	

+="CN88049"	"105mm 155mm Ph2 - milestone 1 20% 105mm 155mm Ph2 - milestone 2 10%"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	15-Oct-08	379143.88	=""	="NOVA AEROSPACE"	05-Jun-08 01:14 PM	

+="CN88057"	"ASMD Alliance Secret Network"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	14-May-08	31-Jan-09	438900.00	=""	="CSC AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88074"	"Aircraft Towing Super Heavy Towmotors"	="Defence Materiel Organisation"	05-Jun-08	="Machinery and transport equipment manufacture"	15-May-08	31-Dec-09	658436.61	=""	="CLARK EQUIPMENT AUST PTY LTD"	05-Jun-08 01:17 PM	

+="CN88095"	"JSF PACRIM C4ISR Interoperability Study"	="Defence Materiel Organisation"	05-Jun-08	="Military science and research"	15-May-08	30-May-08	865000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:19 PM	

+="CN88107"	"FULL PAYMENT ON INVOICE ARMOURY JPEU"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction Machinery and Accessories"	15-May-08	30-Jun-08	346629.94	=""	="CHUBB ELECTRONIC SECURITY PTY LTD"	05-Jun-08 01:21 PM	

+="CN88113"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Software"	23-May-08	23-May-08	719151.40	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 01:21 PM	

+="CN88134"	"Purchase Long lead items for CCP125-Gas Detection"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	15-Aug-08	354200.00	=""	="DEFENCE MARITIME SERVICES PTY"	05-Jun-08 01:24 PM	

+="CN88135"	"Contract Management Support Services for Type C Under Water System Support (UWS) Contract"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	27-Nov-08	387400.20	=""	="TILFORTH CONSULTING SERVICES"	05-Jun-08 01:24 PM	

+="CN88147"	"Cartridge 5.56mm Blank F3A1 Film Pack"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	31-Aug-08	1299954.77	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88152"	"Block 6.1 Upgrade Program Simulator Engineering Change Proposal"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	06-Aug-08	368500.00	=""	="CAE AUSTRALIA PTY LTD"	05-Jun-08 01:26 PM	

+="CN88153"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS IN C"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	26-May-08	30-Nov-08	733482.64	=""	="RLM PTY LTD"	05-Jun-08 01:26 PM	

+="CN88159"	"CARTRIDGE 5.56MM 4AP/1TR"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Sep-10	3434350.16	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88160"	"SIMULATION GRENADES"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jan-10	822694.87	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88161"	"XM982 Excalibur APGM"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	08-May-08	31-Mar-11	37697334.30	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88163"	"CARTRIDGE 20MM DS"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	15-Mar-11	681348.55	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88164"	"PROJECTILES 5"/54 HE-CVT AND HE-DP"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jun-09	1254638.12	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88166"	"Membership and Admin Fees"	="Defence Materiel Organisation"	05-Jun-08	="Administrative fees or tax collection services"	12-Nov-07	31-Dec-08	502960.26	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88167"	"FMS CAse"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	15-Sep-11	461715.61	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88170"	"BLADE, TURBINE & DISK TURBINE"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	24-May-08	23-Jun-08	683945.50	=""	="GENERAL ELECTRIC COMPANY"	05-Jun-08 01:28 PM	

+="CN88176"	"Single Channel Radio Systems Functional Test Capabiliy"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	26-May-08	30-Jun-10	4480126.25	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:29 PM	

+="CN88197"	"4032-4 MOAS TRAINING DEVELOPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	30-Jun-10	1075036.60	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:31 PM	

+="CN88210"	"VoP For ISS contract C388561, Inv 70396"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	347981.15	=""	="BAE SYSTEMS AUSTRALIA"	05-Jun-08 01:33 PM	

+="CN88213-A1"	" TASK 1426 COMBAT OPERATIONAL SNC BALANCE "	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	27-Aug-10	560791.98	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:33 PM	

+="CN88214"	"Ford Falcon Wagon (WM) Qty 28"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	05-Dec-08	712141.80	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88215"	"Ford Ranger XL DC 4x4 Pick Up (UM4)  Qty 27"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	07-Nov-08	664981.13	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88216-A1"	"TASK 1421 PLATFORM OPERATIONAL SHORT NOTICE CHANGE BALANCE"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	30-Jun-09	567183.34	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:34 PM	

+="CN88224"	"REFURBISHMENT OF NAVY CBA"	="Defence Materiel Organisation"	05-Jun-08	="Personal safety and protection"	20-May-08	30-Jun-08	425815.54	=""	="HELLWEG INTERNATIONAL"	05-Jun-08 01:34 PM	

+="CN88226"	"Process definition and improvement"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	20-May-08	30-Jun-09	1568434.23	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	05-Jun-08 01:35 PM	

+="CN88230"	"Use of Seahorse Standard"	="Defence Materiel Organisation"	05-Jun-08	="Commercial marine craft"	21-May-08	31-Jul-08	547030.00	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 01:35 PM	

+="CN88233"	"DROPSONDES"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	22-May-08	27-Feb-09	1975541.40	=""	="CAPEWELL COMPONENTS COMPANY LLC"	05-Jun-08 01:36 PM	

+="CN88237"	"VoP For GBP ISS contract C388561, Inv 70399"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	28-Jun-08	896791.35	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:36 PM	

+="CN88240"	"VoP For GBP ISS contract C388561, Inv 70397"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	27-Jun-08	504085.54	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:36 PM	

+="CN88241"	"VoP For GBP ISS contract C388561, Inv 70398"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-May-08	27-Jun-08	801139.06	=""	="BAE SYSTEMS AUSTRALIA - GBP"	05-Jun-08 01:37 PM	

+="CN88252"	"4502.04 SUPPLY CHAIN REFORM PHASE 3A: PERFORMANCE MANAGEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-10	315480.84	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:38 PM	

+="CN88263"	"Project Technical Support"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	21-May-08	31-Jul-08	344500.69	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:39 PM	

+="CN88271"	"HUON FAMP 01/08 CONDUCTED JUN/JUL 08"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	21-Apr-08	31-Jul-08	511575.37	=""	="THALES AUSTRALIA"	05-Jun-08 01:40 PM	

+="CN88273"	"Delivery Management Services"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	16-Apr-08	15-Apr-09	396120.00	=""	="KABED CONSULTING PTY LTD"	05-Jun-08 01:40 PM	

+="CN88276"	"WEAPON SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	16-Apr-08	02-Jan-09	436365.16	=""	="FN HERSTAL SA"	05-Jun-08 01:41 PM	

+="CN88295-A1"	"Radio Frequency Identification Device Maintenance Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Software maintenance and support"	07-Apr-08	13-Apr-10	1991357.10	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 01:43 PM	

+="CN88305"	"Materiel Handling Equipment - Mobile Crane"	="Defence Materiel Organisation"	05-Jun-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	10-Apr-08	30-Nov-10	5657257.38	=""	="MANITOWOC CRANE GROUP AUSTRALIA PTY"	05-Jun-08 01:44 PM	

+="CN88318"	"Inter-agency Payment DMO to Defence for MTU spare parts"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing Components and Supplies"	06-May-08	30-Oct-08	1126145.53	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:45 PM	

+="CN88323"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	307121.41	=""	="SUN MICROSYSTEMS"	05-Jun-08 01:46 PM	

+="CN88334"	"HMAS Betano 2008 EMA (ID)"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	02-May-08	30-Aug-08	1852651.37	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:47 PM	

+="CN88345"	" Provision of IV &V support for specialist OFT S System Team Leader as per Task Plan 05/"	="Defence Materiel Organisation"	05-Jun-08	="Vocational training"	06-May-08	30-Jul-09	457342.11	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:48 PM	

+="CN88365"	"DLSS CAB Process and Definition Improvement"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	12-Nov-07	15-Jun-09	318999.34	=""	="SMS CONSULTING GROUP LIMITED"	05-Jun-08 01:51 PM	

+="CN88368"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	30-Jun-12	2457536.05	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:51 PM	

+="CN88369"	"MARINE DIESEL"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	07-Feb-08	21-May-08	1686835.35	=""	="ACCOUNTS RECEIVABLE ADMINISTRATOR"	05-Jun-08 01:51 PM	

+="CN88380"	"PURCHASE OF BREAKDOWN SPARES IAW TLS CONTRACT 338482"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	02-Jun-08	31-Dec-11	300835.50	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:53 PM	

+="CN88384"	"Maintenance Contract for PC9/A Base Payments V310152"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	12-Nov-07	31-May-13	4990514.17	=""	="AIRFLITE PTY LTD"	05-Jun-08 01:53 PM	

+="CN88385"	"MHC IN SERIVE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	30-Jun-08	2214334.91	=""	="THALES AUSTRALIA"	05-Jun-08 01:54 PM	

+="CN88387-A1"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-May-12	25753183.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:54 PM	

+="CN88399"	"LEP TEANOAI Spares and Repair Parts Costs"	="Defence Materiel Organisation"	05-Jun-08	="Commercial marine craft"	11-Feb-08	30-Jun-08	743027.93	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:55 PM	

+="CN88404"	"HMAS Tobruk Docking EMA 01/08"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	02-Jun-08	30-Jun-08	349030.95	=""	="FORGACS ENGINEERING PTY LTD"	05-Jun-08 01:56 PM	

+="CN88408"	"Acquiring 16 new vehicles to replace the current in service Trident fire trucks"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Nov-07	20-Nov-09	320199.80	=""	="ROSENBAUER INTERNATIONAL AG"	05-Jun-08 01:56 PM	

+="CN88415"	"FSS PALIKIR LEP"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	28-Apr-08	30-Jun-08	605000.00	=""	="ROSSHAVEN MARINE PTY LTD"	05-Jun-08 01:57 PM	

+="CN88420"	"Project SEA1428PH4 FY08 ESSM Buy"	="Defence Materiel Organisation"	05-Jun-08	="Missiles"	16-Nov-07	30-Jan-10	1463364.00	=""	="NATO SEASPARROW SURFACE MISSILE"	05-Jun-08 01:58 PM	

+="CN88421"	"Inteegrated Test and Training Facility (ITTF) Syst"	="Defence Materiel Organisation"	05-Jun-08	="Industrial Production and Manufacturing Services"	29-May-08	01-Nov-09	457954.82	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88423"	"Contractor Services"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	03-Jun-08	30-Sep-08	304480.00	=""	="HMTC PTY LTD"	05-Jun-08 01:58 PM	

+="CN88424"	"ISS MINI-TYPHOON/TOPLITE EOS SYSTEMS  P5031-001-2 TCA TASK NO T0072. IAW CONTRACT NO ANZAC 01/07"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-Dec-07	30-Aug-11	5366503.86	=""	="SAAB SYSTEMS PTY LTD"	05-Jun-08 01:58 PM	

+="CN88425"	"PROCUREMENT OF QUANTITY 25 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	14-Dec-07	03-Mar-08	2308102.23	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:58 PM	

+="CN88450"	"Contracting Support for TFSPO Contracting Act"	="Defence Materiel Organisation"	05-Jun-08	="Office supplies"	09-May-08	31-Mar-09	367857.38	=""	="MINTER ELLISON"	05-Jun-08 02:01 PM	

+="CN88452"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND COND OFFER JFLA MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	09-May-08	30-May-08	15755000.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88455"	"TDS Replacements"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	09-May-08	23-Jun-08	654881.70	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 02:02 PM	

+="CN88456"	"Engineering Suport Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft master control systems"	09-May-08	30-Jun-09	330395.00	=""	="NOVA DEFENCE"	05-Jun-08 02:02 PM	

+="CN88460"	"Portable Tracking Range Set to Work"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	30-Jun-08	409409.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	05-Jun-08 02:02 PM	

+="CN88469"	"Data Recording Modules for CATM Missiles"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Jun-09	2038643.82	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:03 PM	

+="CN88475-A1"	"Project Management, Project works as required for HMAS CANBERRA for its subsequent use as a dive wreck"	="Defence Materiel Organisation"	05-Jun-08	="Project management"	13-May-08	31-Mar-09	6120833.71	=""	="BIRDON MARINE PTY LTD"	05-Jun-08 02:04 PM	

+="CN88480"	"BioThrax Anthrax Vaccine"	="Defence Materiel Organisation"	05-Jun-08	="Emergency and field medical services products"	13-May-08	16-Jun-08	366259.10	=""	="EMERGENT BIODEFENSE OPERATIONS"	05-Jun-08 02:05 PM	

+="CN88491"	"UHFMILSATCOM"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	12-May-08	30-Oct-08	372429.20	=""	="SPIRIT RIVER PTY LTD"	05-Jun-08 02:06 PM	

+="CN88496"	"MACHINE GUN SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	13-May-08	03-Jan-09	489074.49	=""	="FN HERSTAL SA"	05-Jun-08 02:07 PM	

+="CN88500"	"HMAS Kanimbla Major Docking 08"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	25-Sep-08	12083495.17	=""	="FORGACS ENGINEERING PTY LTD"	05-Jun-08 02:07 PM	

+="CN88482"	"Aircraft Engine spares: 2840-01-130-1468, Diffuser, qty 6."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-Apr-08	06-May-08	916165.97	=""	="asia pacific aerospace"	05-Jun-08 02:07 PM	

+="CN88503"	"Acquisition of CATM Forebodies & additional spares"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Dec-09	2837212.28	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:07 PM	

+="CN88514"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS INTO RAAF BASES."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	07-May-08	30-May-08	869000.00	=""	="SHELL CO OF AUSTRALIA LTD"	05-Jun-08 02:09 PM	

+="CN88529"	"Quantity of SDVs' for Special Forces"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	23-May-08	351444.50	=""	="SECURE SYSTEMS LTD"	05-Jun-08 02:11 PM	

+="CN88533"	"Simulator Upgrade - Advanced Gunnery Training syst"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	02-Feb-09	2793941.70	=""	="SYDAC PTY LTD"	05-Jun-08 02:11 PM	

+="CN88537"	"WA Periscope Workshop-Activity 09-Clean Room Advanced Equipment (High)"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jan-09	429972.91	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88556"	"This Purchase Order is raised under CAPO AASPO Advanced Systems for the Aircraft Electrical Load"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	09-May-08	19-Dec-08	385445.01	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 02:14 PM	

+="CN88558"	"Provide Specialist Support to MRHPO"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	09-May-08	30-Jun-09	327450.30	=""	="NOVA AEROSPACE"	05-Jun-08 02:14 PM	

+="CN88561"	"Purchase of Qty rotary Joints"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace location and navigation systems and components"	09-May-08	08-Jan-09	359701.14	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:14 PM	

+="CN88562"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	09-May-08	31-Oct-08	312372.18	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:15 PM	

+="CN88567"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	5456700.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:15 PM	

+="CN88585"	"Tenix Contract W480539 CCP35"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	08-May-08	30-Oct-10	11194413.61	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88586"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	10656600.00	=""	="BP AUSTRALIA LTD"	05-Jun-08 02:17 PM	

+="CN88587"	"aircraft engine spares:2840-01-170-7041, Case, gas, Qty 5."	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-Apr-08	06-May-08	357500.00	=""	="asia pacific aerospace"	05-Jun-08 02:19 PM	

+="CN88594"	"Supply of WAN accelerator devices."	="Australian Federal Police"	05-Jun-08	="Computer services"	01-Jun-08	31-May-11	613141.90	="RFT 4-2008"	="XSI DataSolutions Pty Ltd"	05-Jun-08 02:41 PM	

+="CN88623-A2"	"Helping children with autism - DEEWR initiatives"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	22-Apr-08	28-Feb-12	22867292.48	="PRN17700"	="AUTISM SPECTRUM AUSTRALIA (ASPECT)"	05-Jun-08 03:08 PM	

+="CN88632"	"Study on employment outcomes five years after graduation from university"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	09-May-08	01-Jun-09	300151.00	="PRN17984"	="AUST COUNCIL FOR EDUC RESEARCH"	05-Jun-08 03:10 PM	

+="CN88634"	"An Even Start- National Tuition Program Program Administrator Services ACT"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	14-May-08	31-Mar-09	912982.00	="PRN17026"	="ACT DEPARTMENT OF EDUCATION AND TRAINING"	05-Jun-08 03:11 PM	

+="CN88635-A1"	"An Even Start- National Tuition Program Program Administrator Services WA Catholic Sector"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	26-May-08	31-Mar-09	942948.00	="PRN17026"	="CATHOLIC EDUCATION OFFICE OF"	05-Jun-08 03:12 PM	

+="CN88636-A1"	"An Even Start- National Tuition Program Program Administrator Services - QLD Government"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	26-May-08	31-Mar-09	17455130.00	="PRN17026"	="EDUCATION QUEENSLAND"	05-Jun-08 03:12 PM	

+="CN88639"	"An Even Start- National Tuition Programme Program Administrator - QLD Catholic Sector"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	09-May-08	01-Jul-09	2236203.00	="PRN17026"	="QLD CATHOLIC EDUCATION COMM."	05-Jun-08 03:12 PM	

+="CN88641"	"An Even Start- National Tuition Programme Program Administrator Services Tasmania"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	31-Mar-09	2178754.00	="PRN17026"	="DEPT OF EDUCATION TASMANIA"	05-Jun-08 03:12 PM	

+="CN88643"	"An Even Start- National Tuition Program Program Administrator Services - Queensland"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	14-May-08	31-Mar-09	1416760.00	="PRN17026"	="INDEPENDENT SCHOOLS QUEENSLAND"	05-Jun-08 03:12 PM	

+="CN88644"	"An Even Start- National Tuition Program Program Administrator Services - WA"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	31-Mar-09	655275.00	="PRN17026"	="ASSOCIATION OF INDEPENDENT SCHOOLS"	05-Jun-08 03:12 PM	

+="CN88645-A2"	"An Even Start- National Tuition Program Program Administrator Services - WA"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	20-May-08	31-Mar-09	6182761.00	="PRN17026"	="EDUCATION DEPARTMENT OF WESTERN"	05-Jun-08 03:12 PM	

+="CN88647-A1"	"An Even Start - National Tuition Programme Program Administrator - NSW Independent Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	15-Apr-08	15-Jun-09	422603.54	="PRN17026"	="Association of Independent Schools"	05-Jun-08 03:13 PM	

+="CN88650-A2"	"Longitudinal Study of Australian Youth Analytical Programme"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Strategic planning consultation services"	29-Jun-07	30-Jun-13	5932987.68	="PRN12913"	="NCVER"	05-Jun-08 03:14 PM	

+="CN88699"	"POC: Kim Malafant 02 6127 7166 Quotation: JC280406"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	02-Jun-08	1741905.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:48 PM	

+="CN88721"	"CONTACT TONY BUTLER 08 8935 4625."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	12-May-08	30-Jun-08	692000.00	=""	="GUSHER PTY LTD"	05-Jun-08 04:51 PM	

+="CN88731"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	11-Dec-08	619496.90	=""	="PROJECT OUTCOMES PTY LTD"	05-Jun-08 04:52 PM	

+="CN88734"	"SUBSCRIPTION TO ELECTRONIC DATABASE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	14-May-08	399390.71	=""	="FORECAST INTERNATIONAL INC."	05-Jun-08 04:52 PM	

+="CN88761"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE. HEAD CONTRACTOR PACKAGE 2-ABIGROUP."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-09	55780670.00	=""	="ABIGROUP CONTRACTORS PTY LTD"	05-Jun-08 04:57 PM	

+="CN88820"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	10-Jun-08	929610.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88861"	"Transmission Services"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Jun-11	13385018.90	=""	="TELSTRA"	05-Jun-08 05:02 PM	

+="CN88881"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Nov-08	331765.50	=""	="NOVA AEROSPACE"	05-Jun-08 05:03 PM	

+="CN88882"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE. HEAD CONTRACT PACKAGE 2 T  &  C."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-09	34798274.50	=""	="THOMAS & COFFEY LTD"	05-Jun-08 05:03 PM	

+="CN88902"	"AIR CHTR EX PITCH BLACK"	="Department of Defence"	05-Jun-08	="Aircraft"	19-May-08	29-Jun-08	600000.01	=""	="INDEPENDENT AVIATION PTY LTD"	05-Jun-08 05:04 PM	

+="CN88904"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES TVL - HEAD CONTRACTOR (ABIGROUP)."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	14690252.50	=""	="ABIGROUP CONTRACTORS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88922"	"AIR 8000 PASE 3- HEAVY AIR LIFT (HAL) FACILITIES. DAR - HEAD CONTRACTOR (JHG)"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-09	31546902.20	=""	="JOHN HOLLAND PTY LTD"	05-Jun-08 05:05 PM	

+="CN88935"	"POC: K.Malafant"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	06-Jun-08	899430.40	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:06 PM	

+="CN88937"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	21-May-08	468678.10	=""	="ORACLE CORPORATION AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88949"	"SPRINKLER HEAD REPLACEMENT CONTRACT STH QLD OVER 200 HEAD BUILDINGS"	="Department of Defence"	05-Jun-08	="Fire protection"	21-May-08	30-Jun-08	549380.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:06 PM	

+="CN88954"	"CAIRNS NAVY LEAGUE INC."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	573000.00	=""	="CAIRNS NAVY LEAGUE INC"	05-Jun-08 05:06 PM	

+="CN88959"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	2746481.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88960"	"NQ1736 NQ Termite and Pest Control."	="Department of Defence"	05-Jun-08	="Environmental management"	08-May-08	30-Jun-09	300000.19	=""	="SPOTLESS"	05-Jun-08 05:07 PM	

+="CN88968"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	24-Jun-08	6197400.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88969"	"REFORM DFR RELOCATION COSTS. THIS EXPENSE WAS ORIGINALLY GOING TO BE PAID MONTH"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	4605553.08	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88973"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	22-May-08	390577.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	05-Jun-08 05:07 PM	

+="CN88975"	"REFORM DFR CONTRACT COSTS. THIS PURCHASE ORDER REPRESENTS THE ADDITIONAL COST"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	9938925.70	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88987"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Apr-09	400826.25	=""	="KW CONSULTING PTY LTD"	05-Jun-08 05:08 PM	

+="CN88989"	"POC:Owen Keane 02 6127 7170 Quotation: F-AU-145155-B"	="Department of Defence"	05-Jun-08	="Hardware"	19-May-08	12-Jun-08	868534.84	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:08 PM	

+="CN88995"	"LIA SMOKE DETECTION & EMERGENY LIGHTING BULIMBA"	="Department of Defence"	05-Jun-08	="Fire protection"	19-May-08	30-Jun-08	864383.36	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:08 PM	

+="CN88999"	"ENHANCED LANDFORCE - STAGE 1 BENNETT DESIGN - PACKAGE 4, SASR WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-09	394031.00	=""	="BENNETT DESIGN PTY LTD"	05-Jun-08 05:08 PM	

+="CN89010"	"MONITORING DEVICE"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	20-May-08	372009.00	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	05-Jun-08 05:09 PM	

+="CN89028"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	03-Jun-08	413160.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89031"	"DETAILED STRUCTURAL ASSESSMENT REPORT - POINT WILS (PWEA) REMEDIATION PROJECT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	328900.00	=""	="GHD PTY LTD"	05-Jun-08 05:10 PM	

+="CN89041"	"NT1645 Regional Fire Management Program"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	30-Jun-08	588005.00	=""	="ASSET SERVICES"	05-Jun-08 05:10 PM	

+="CN89047"	"PABX Systems"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	16-Jun-08	572268.29	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89052"	"TRAINING"	="Department of Defence"	05-Jun-08	="Specialised educational services"	20-May-08	20-May-08	8600958.00	=""	="RECEIVER GENERAL FOR CANADA"	05-Jun-08 05:11 PM	

+="CN89059"	"Professional Services"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	07-May-08	01-May-09	4391785.20	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:11 PM	

+="CN89130"	"Imagery Package"	="Department of Defence"	05-Jun-08	="Software"	07-May-08	30-May-08	350381.90	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:14 PM	

+="CN89190"	"SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	09-May-08	30-Jun-09	414950.58	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89204"	"S5272, WR 300077434. World Youth Day 2008 is an ev Defence, provide tented accommodation"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	426065.74	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89286"	"ENHANCED LANDFORCE - STAGE 1 SKM - PACKAGE 4, PUCKAPUNYAL WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-09	1588085.40	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:21 PM	

+="CN89309"	"NQ2194 TFTA FIRE MANAGEMENT 2008 (07/08)"	="Department of Defence"	05-Jun-08	="Environmental management"	14-May-08	30-Jun-08	377650.92	=""	="SPOTLESS"	05-Jun-08 05:22 PM	

+="CN89322"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	1111888.80	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89333"	"POC: B.Searle 02 6127 7375 Quotations CCPQ6111  &  CCPQ5970"	="Department of Defence"	05-Jun-08	="Hardware"	15-May-08	12-Jun-08	842146.92	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:23 PM	

+="CN89342"	"PSP SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	507131.48	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	05-Jun-08 05:24 PM	

+="CN89349"	"ENHANCED LANDFORCE - STAGE 1"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	09-May-08	30-Jun-09	2097785.80	=""	="S2F PTY LTD"	05-Jun-08 05:24 PM	

+="CN89352"	"ENHANCED LANDFORCE - STAGE 1 SKM - PACKAGE 4, SIAD WORKS DSC"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	09-May-08	30-Jun-09	1586481.60	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:24 PM	

+="CN89384"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-ENVIRONMENTAL ASSESSMENT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-09	331933.80	=""	="EARTH TECH ENGINEERING PTY LTD"	05-Jun-08 05:26 PM	

+="CN89390"	"RV0542-RGN-RBW Replace Air-Cond SPS Trg Facility 223"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-09	1155000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89529"	"HMAS STIRLING - NAVY PERSONNEL  &  TRAINING CE SSS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	429000.00	=""	="CAMERON CHISHOLM & NICOL (WA)"	05-Jun-08 05:35 PM	

+="CN89540"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	07-Feb-11	308706.20	=""	="CENTRE FOR MILITARY AND VETERANS"	05-Jun-08 05:36 PM	

+="CN89546"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-10	619822.50	=""	="ASG GROUP LIMITED"	05-Jun-08 05:36 PM	

+="CN89556"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-10	777326.00	=""	="ASG GROUP LIMITED"	05-Jun-08 05:37 PM	

+="CN89580"	"DTS WEBSITE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	324500.00	=""	="VISUAL JAZZ PTY LTD"	05-Jun-08 05:38 PM	

+="CN89591"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-May-09	319912.18	=""	="RPV CONSULTANTS"	05-Jun-08 05:39 PM	

+="CN89615"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	25-Jun-09	334686.03	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 05:40 PM	

+="CN89619"	"Outsource Chart Production"	="Department of Defence"	05-Jun-08	="Business administration services"	30-May-08	31-Dec-08	957281.44	=""	="HSA SYSTEMS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89622"	"S4930, WR 300083119. HMAS Watson - Site  Security Installation. Upgrade existing security camera and"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	23-May-08	30-Jun-08	317654.81	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:41 PM	

+="CN89623"	"Garden Island Significant FP&E Items 07/08"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	30-May-08	30-Jun-08	412500.00	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89634"	"Vital Planning and Analysis Version 1.1"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	23-May-08	20-Jun-09	557357.49	="2008-1016537"	="CSC AUSTRALIA PTY LTD"	05-Jun-08 05:42 PM	

+="CN89652"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	31-May-09	309566.40	=""	="CONQUEST ENTERPRISE"	05-Jun-08 05:43 PM	

+="CN89672"	"ROCKINGHAM-ANZSPO-OFFICE REFURBISHMENT. D & C CONTRACTOR."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-09	3533389.20	=""	="THOMAS & COFFEY LTD"	05-Jun-08 05:44 PM	

+="CN89681"	"Canteen Services"	="Department of Defence"	05-Jun-08	="Snack foods"	17-Apr-08	30-Jun-08	710129.00	=""	="FRONTLINE DEFENCE SERVICE"	05-Jun-08 05:45 PM	

+="CN89707"	"Systems Support"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	510408.02	=""	="WHIZDOM PTY LTD"	05-Jun-08 05:46 PM	

+="CN89713"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Jul-05	31-Aug-08	2373153.97	=""	="TELSTRA"	05-Jun-08 05:47 PM	

+="CN89777"	"hangar Works"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	30-May-08	30-Jun-08	506000.00	=""	="PA & CI MARTIN PTY LTD"	05-Jun-08 05:51 PM	

+="CN89787"	"CMS Mangaement Fees"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	2980132.93	=""	="ASSET SERVICES"	05-Jun-08 05:51 PM	

+="CN89797"	"DFRC-REFURB 01/08. SCHIAVELLO HAS BEEN SELECTD TO THE NATIONAL ROLLOUT OF THE DFRC REFURBUSHMENT. TH"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	22-Apr-08	30-Jun-08	2530000.00	=""	="SCHIAVELLO PROJECT SOLUTIONS P/L"	05-Jun-08 05:52 PM	

+="CN89799"	"30,000 YOU DAY BASEBALL CAPS, AS PER REQUEST OF DG EMBROIDERED WITH DEFENCE SERVICE BRANDING. THESE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	03-Jun-08	30-Jun-08	716122.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:52 PM	

+="CN89817"	"HQJOC PROJECT-TENIX DATAGATE-USB MCS UNITS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	395191.50	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:53 PM	

+="CN89823"	"MEDIA EDUCATION TRAINING"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	895838.89	=""	="UNIVERSAL MCCANN"	05-Jun-08 05:53 PM	

+="CN89837"	"RECRUITING FEES"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-Apr-08	31-Jan-09	872810.93	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:54 PM	

+="CN89851"	"GAS SUPPLY"	="Department of Defence"	05-Jun-08	="Utilities"	03-Jun-08	30-Sep-08	460000.01	=""	="TRU ENERGY PTY LTD"	05-Jun-08 05:55 PM	

+="CN89935"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	308616.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:00 PM	

+="CN89945"	"Laptops Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	1207469.91	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 06:01 PM	

+="CN89951"	"H011 MESS UPGRADE - GALLIPOLI BARRACKS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	1629479.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 06:01 PM	

+="CN89963"	"TIED WORK"	="Department of Defence"	05-Jun-08	="Legal services"	10-Apr-08	30-Jun-09	498839.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:02 PM	

+="CN89969"	"TRANSMISSION SERVICES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	30-Jun-08	421850.00	=""	="TELSTRA"	05-Jun-08 06:03 PM	

+="CN89981-A3"	" Provisions for Specialist Information Technology Services (previously published under GAPS ID 1610322) "	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	569800.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:02 AM	

+="CN89989-A5"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	879890.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:09 AM	

+="CN89991-A3"	"Provisions for Specialist Information Technology"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	21-Aug-06	30-Jun-09	898059.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:15 AM	

+="CN89998-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	04-Dec-06	31-May-09	558800.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:46 AM	

+="CN90000-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jan-07	23-Jan-09	591250.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 11:56 AM	

+="CN90001-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	498300.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 12:05 PM	

+="CN90002-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	534600.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 12:13 PM	

+="CN90010-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	20-Sep-06	30-Jun-09	443960.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 01:54 PM	

+="CN90011"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	24-Apr-06	30-Jun-08	495600.00	=""	="Paxus Australia Pty Ltd"	06-Jun-08 02:00 PM	

+="CN90012-A1"	"Services in relation to 2nd level support/project management for data communication activities."	="Australian Federal Police"	06-Jun-08	="Project management"	01-Jul-08	30-Jun-10	304920.00	=""	="Whizdom Pty Ltd"	06-Jun-08 02:03 PM	

+="CN90013-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	654800.00	=""	="Ross Human Directors Pty Ltd"	06-Jun-08 02:17 PM	

+="CN90014-A1"	" Fitout Services, Caroline Chisholm Centre, Tuggeranong, ACT "	="Centrelink"	06-Jun-08	="Building construction machinery and accessories"	23-Aug-07	30-Sep-08	34373566.37	=""	="St Hilliers Contracting Pty Ltd"	06-Jun-08 02:21 PM	

+="CN90016-A2"	"Lease at Auburn St, Moree"	="Department of Human Services"	06-Jun-08	="Lease and rental of property or building"	13-Oct-03	12-Oct-14	3055588.00	=""	="Neldig Pty Ltd"	06-Jun-08 02:27 PM	

+="CN90025-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	26-Jun-06	30-Jun-08	924550.00	=""	="Ross Human Directions Pty Ltd"	06-Jun-08 02:44 PM	

+="CN90041"	"Lease at 20-24 Wirraway Parade, Inala"	="Department of Human Services"	06-Jun-08	="Real estate services"	12-Sep-07	30-Jun-12	3087754.00	=""	="A K Osborne as trustee for AKO No 2 Trust"	06-Jun-08 03:29 PM	

+="CN90047-A3"	" Provisons for Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	05-Jun-06	30-Jun-09	872410.00	=""	="Ambit Group Pty Ltd"	06-Jun-08 03:42 PM	

+="CN90054-A5"	" Provisions for Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	06-Jun-08	="Temporary information technology systems or database administrators"	14-Aug-06	22-Aug-08	1349150.00	=""	="Ambit Group Pty Ltd"	06-Jun-08 04:19 PM	

+="CN90056"	"Lease at Ground Flooe Toowong, QLD"	="Centrelink"	06-Jun-08	="Real estate services"	17-Feb-04	16-Feb-11	2831980.88	=""	="Trustee for the R T Biggs Family Trust"	06-Jun-08 04:30 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val30000to40000.xls
@@ -1,1 +1,196 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87908"	"Lease Motor Vehicle - YEK70J Running Cost"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	08-Nov-06	08-Nov-08	32645.80	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:15 AM	

+="CN87910"	"Conduct of Advanced Maritime Security Audit Course ISO 28000"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security and personal safety"	13-May-08	31-May-08	40000.00	=""	="Asia Pacific Maritime Institute Pty"	05-Jun-08 10:15 AM	

+="CN87914"	"TASKEY Annual Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Software"	28-May-08	28-Jun-09	37115.00	=""	="TASKey Pty Ltd"	05-Jun-08 10:16 AM	

+="CN87920"	"Lease of motor vehicle YCF77R Running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	01-Aug-07	31-Jul-09	30123.50	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87921"	"Lease of Motor Vehicle - YEF98Z Running Cost for Vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	15-Nov-07	14-May-09	31460.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87924"	"24 month vehicle lease arrangement 24 month vehicle lease arrangement"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	30-May-07	29-May-09	30547.00	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:18 AM	

+="CN87928"	"Lease YEX 02U Lease YEX 02U"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	14-May-07	22-May-09	32761.08	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87929"	"Lease motor vehcile - YFA 93K Lease motor vehcile - YFA 93K"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	22-Jun-07	01-Jul-09	37785.25	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:20 AM	

+="CN87989"	"2 Way Combiner/Divider, 20-500HZ 500W CW /Freight"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	16-May-08	30-Jun-08	36078.90	=""	="A J DISTRIBUTORS PTY LTD"	05-Jun-08 01:07 PM	

+="CN87992"	"Fitout to Buiding B1 Victoria Barracks"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	31-May-08	37047.43	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:07 PM	

+="CN88007"	"Toyota Hilux 4x2 D/C UTE B/B(UM5) Qty1"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	21-Nov-08	36337.21	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:09 PM	

+="CN88010"	"APLCRATES Enhancements"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	19-May-08	25-Jun-08	37950.00	=""	="MWA SYSTEMS PTY LTD"	05-Jun-08 01:09 PM	

+="CN88013"	"MAP Data Support"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	31-Oct-08	33000.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 01:09 PM	

+="CN88028"	"Provision of services to deliver Strategic Recruitment Plan to Land Systems Division."	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	19-May-08	13-Jun-08	39400.00	="2007/1102053"	="HUDSON GLOBAL RESOURCES (AUST)"	05-Jun-08 01:11 PM	

+="CN88040"	"Use of Exisitng ASP Contract  - Bio-Reactor Sewage Treatment Plant Parts"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	14-May-08	30-Jun-08	36074.95	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:13 PM	

+="CN88050"	"Develop SOR to engage a Cpability Partner for EODi"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	33515.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	05-Jun-08 01:14 PM	

+="CN88055"	"Repair damaged Coax cable for HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	34726.82	=""	="INTELLIGENT TECHNICAL SERVICE"	05-Jun-08 01:14 PM	

+="CN88065"	"Provide MSA review and development of KPI's"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	35454.73	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:16 PM	

+="CN88069"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	36300.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:16 PM	

+="CN88077"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	36525.04	=""	="KVM AUSTRALIA PTY LTD"	05-Jun-08 01:17 PM	

+="CN88108"	"SML firemian system rectification"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	15-May-08	16-May-08	35790.27	=""	="G A GLANVILLE & CO"	05-Jun-08 01:21 PM	

+="CN88150"	"NORM FAMP 02/08 7 - 25 JULY 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	29-Aug-08	33392.62	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88185"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Jun-08	30301.67	=""	="THALES AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88189"	"Deveop Installation Design Package- Install Port Waist RHIB Bracket- HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	20-May-08	15-Jul-08	32082.24	=""	="THALES AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88204"	"PC-9 SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	20-May-08	12-Jan-09	30914.70	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 01:32 PM	

+="CN88207"	"BCSS Support CD"	="Defence Materiel Organisation"	05-Jun-08	="Software"	21-May-08	30-Jun-08	30534.90	=""	="THALES AUSTRALIA"	05-Jun-08 01:32 PM	

+="CN88208"	"1405 Consultancy for RAWS (RIES) analysis"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Jul-08	33924.01	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:33 PM	

+="CN88270"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	16-Apr-08	19-Jan-09	37562.41	=""	="L3 COMMUNICATIONS ELAC NAUTIK GMBH"	05-Jun-08 01:40 PM	

+="CN88274"	"SDSS IT Controls Framework Design Effectiveness Review"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	27-May-08	15-Jun-08	30800.00	=""	="ERNST & YOUNG"	05-Jun-08 01:40 PM	

+="CN88275"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-Apr-08	02-Jun-08	38452.19	=""	="THALES AUSTRALIA"	05-Jun-08 01:40 PM	

+="CN88317"	"Provision of one (1) SIMLOX Software Licence"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	30-Jun-08	31900.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:45 PM	

+="CN88354"	"Defence travel on DMO business"	="Defence Materiel Organisation"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	03-Jun-08	30-Jun-09	30000.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:50 PM	

+="CN88375"	"GST Payment for 9 Talin Units and 60 VMS Units"	="Defence Materiel Organisation"	05-Jun-08	="Taxation"	19-May-08	30-May-08	32988.78	=""	="HONEYWELL AEROSPACE ELECTRONIC SYST"	05-Jun-08 01:52 PM	

+="CN88392"	"PYLON AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-Jan-08	01-Aug-08	31163.38	=""	="HELIPRO COMPONENT SERVICES"	05-Jun-08 01:54 PM	

+="CN88403"	"Design development of regional interface contoller cell computers."	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	26-May-08	11-Jul-08	36698.29	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:56 PM	

+="CN88405"	"Repair of Test Set Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	10-Mar-08	01-Sep-08	35826.90	=""	="PARTECH SYSTEMS PTY LTD"	05-Jun-08 01:56 PM	

+="CN88427"	"COMBAT SURVIVAL VEST"	="Defence Materiel Organisation"	05-Jun-08	="Safety apparel"	07-May-08	10-Oct-08	38151.99	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	05-Jun-08 01:58 PM	

+="CN88446"	"FLUID CONTAM MONITOR 37MM MCE 0.8UM"	="Defence Materiel Organisation"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-May-08	25-May-08	34524.94	=""	="MILLIPORE CORPORATION"	05-Jun-08 02:01 PM	

+="CN88459"	"Installation and Set to Work of STS Reference Set Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction and Maintenance Services"	09-May-08	30-Jun-08	36461.29	=""	="THALES UNDERWATER SYSTEMS P/L"	05-Jun-08 02:02 PM	

+="CN88471"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	13-May-08	34986.28	=""	="AMOG CONSULTING"	05-Jun-08 02:04 PM	

+="CN88476"	"Internal Audit Services"	="Defence Materiel Organisation"	05-Jun-08	="Accounting and auditing"	13-May-08	30-Jun-08	30000.00	=""	="COX & RELPH PTY LTD"	05-Jun-08 02:04 PM	

+="CN88507"	"Nexus configuration controller support"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	13-May-08	30-Jun-08	34556.01	=""	="NOVA AEROSPACE"	05-Jun-08 02:08 PM	

+="CN88518"	"Prototype of Seat - Chinook Seat"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft passenger restraints"	08-May-08	20-Jun-08	31357.80	=""	="EAST/WEST INDUSTRIES INC."	05-Jun-08 02:09 PM	

+="CN88522"	"TRANSPORTATION CHARGES"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	33000.00	=""	="WYNDHAM MARINE PTY LTD"	05-Jun-08 02:10 PM	

+="CN88536"	"DDP FOR LPA AMCO"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	06-Jun-08	38731.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 02:11 PM	

+="CN88541"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	31433.16	=""	="ZALLCOM PTY LTD"	05-Jun-08 02:12 PM	

+="CN88543"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	07-May-08	30-Jun-08	30386.52	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 02:12 PM	

+="CN88548"	"CABLE ASSY"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	08-May-08	01-Mar-09	34993.63	=""	="ROLLS - ROYCE PLC"	05-Jun-08 02:13 PM	

+="CN88564"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	09-May-08	15-May-08	37088.50	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 02:15 PM	

+="CN88568"	"p"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	04-Nov-08	35361.48	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88569"	"p"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	05-Oct-08	33067.86	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 02:15 PM	

+="CN88571"	"Refurbishment of Enhanced Combat Body Armour"	="Defence Materiel Organisation"	05-Jun-08	="Personal safety and protection"	08-May-08	16-May-08	35915.22	=""	="HELLWEG INTERNATIONAL"	05-Jun-08 02:16 PM	

+="CN88576"	"IMTS Hardware"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	25-Jun-08	33856.04	=""	="ARION SYSTEMS PTY LTD"	05-Jun-08 02:16 PM	

+="CN88578"	"Audio Visual Equipment in New Building Conference Room and CBT Classroom"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	08-May-08	23-Jun-08	34263.90	=""	="PERTH BUILDING COMPANY PTY LTD"	05-Jun-08 02:16 PM	

+="CN88583"	"Course: Diploma in Project Management"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	08-May-08	23-May-08	37700.00	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 02:17 PM	

+="CN88620"	"Career Development Assessment Centre 2008"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Education and Training Services"	26-May-08	30-Jun-08	35475.00	="PRN19436"	="AUSTRALIAN PUBLIC SERVICE COMM"	05-Jun-08 03:06 PM	

+="CN88649"	"Career Advice Australia State Conference Video Proproduction"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	30-Jun-08	32967.00	="PRN19488"	="SILVERSUN PICTURES PTY LTD"	05-Jun-08 03:13 PM	

+="CN88656"	"HORIZONTAL SHAFT AS NSN 1620/010609033"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	08-Nov-08	38166.60	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:23 PM	

+="CN88659"	"DOOR, AIRCRAFT NSN 1560/000920386"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	24-Sep-08	35768.34	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:46 PM	

+="CN88662"	"SEAT, AIRCRAFT NSN 1680/006713837"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	14-Oct-08	39761.00	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:53 PM	

+="CN88674-A1"	" SUPPLY OF LIGHT, SLIT, OPHTHALMIC "	="Defence Materiel Organisation"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	03-Jun-08	31-Jul-08	35574.00	=""	="DEVICE TECHNOLOGIES"	05-Jun-08 04:21 PM	

+="CN88690"	"GPSL Residential 2, 2008"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-May-08	16-May-08	37560.00	=""	="UNIVERSITY HOUSE"	05-Jun-08 04:46 PM	

+="CN88692"	"Michael Dufty $58.35 p/hr 40 HRS PER WK Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	36456.77	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:47 PM	

+="CN88694"	"SINGLE LEAP PROJECT HOMEBUSH - DRN/DVN CABLING"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	30250.00	=""	="INTERACTIVE CABLING PTY LTD"	05-Jun-08 04:47 PM	

+="CN88695"	"SMART PROJECTOR AND ACCESSORIES"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	12-May-08	30-Jun-08	37511.69	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 04:47 PM	

+="CN88696"	"container hire for Southern Reach 01/08"	="Department of Defence"	05-Jun-08	="Containers and storage"	12-May-08	16-Jul-08	37735.50	=""	="SPENCER GULF CONTAINERS"	05-Jun-08 04:47 PM	

+="CN88704"	"WD008 - Validated final 1A for web site and conducting skill transfer activities to Tax Office staff."	="Australian Taxation Office"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	37499.00	=""	="Stamford Interactive Pty Ltd"	05-Jun-08 04:50 PM	

+="CN88733"	"PROVISION OF 3 PSP CONTRACTORS ICT SERVICE SUPPORT 06 MAY 08 - 30 JUN 08"	="Department of Defence"	05-Jun-08	="Temporary personnel services"	14-May-08	30-Jun-08	33783.75	=""	="ICON RECRUITMENT"	05-Jun-08 04:52 PM	

+="CN88747"	"JPG PARTNERS PTY LTD PSP SERVICES SUPPORTING CAPAB REQUIREMENTS FOR SUPPORT BRANCH EXEC MAY08"	="Department of Defence"	05-Jun-08	="Management support services"	13-May-08	30-Jun-08	31680.00	=""	="JPG PARTNERS PTY LTD"	05-Jun-08 04:55 PM	

+="CN88768"	"Scientific Equiptment"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	16-May-08	37669.50	=""	="WARSASH SCIENTIFIC"	05-Jun-08 04:58 PM	

+="CN88782"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	21-May-08	30-Jun-08	38500.00	=""	="YTEK PTY LTD"	05-Jun-08 04:58 PM	

+="CN88811"	"IT ANALYSIS MRH 90 PROJECT"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	21-May-08	01-Sep-08	35000.00	=""	="ART OF JIMBO"	05-Jun-08 05:00 PM	

+="CN88827"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	35464.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88829"	"AGREEMENT Number:  2007/1111686/1"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	30-Aug-08	33000.00	=""	="UNIVERSITY OF MELBOURNE"	05-Jun-08 05:01 PM	

+="CN88830"	"PRINTING OF MAPS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	13-May-08	16-Jun-08	32175.00	=""	="CENTRE STATE PRINTING"	05-Jun-08 05:01 PM	

+="CN88835"	"Portable projectors/lens"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	21-May-08	30-Jun-08	34358.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:01 PM	

+="CN88846"	"FIBRE NETWROK ANALYSER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	34826.46	=""	="PACIFIC DATACOM"	05-Jun-08 05:01 PM	

+="CN88849"	"FIBRE FUSION SPLICER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	31416.00	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:01 PM	

+="CN88868"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	20-May-08	30-Jul-08	33000.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	05-Jun-08 05:03 PM	

+="CN88873"	"HQJOC PROJECT-SPIRIT RIVER PTY LTD-CABLING SERVICE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-08	36058.00	=""	="SPIRIT RIVER PTY LTD"	05-Jun-08 05:03 PM	

+="CN88888"	"HIRING OF QUANTITY EQUIP FOR PITCHBLACK 21 MAY - 4 JULY 08"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	04-Jul-08	30266.50	=""	="TOP END SOUNDS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88893"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	19-May-08	30-Jul-08	33000.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	05-Jun-08 05:04 PM	

+="CN88894"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	30-Jun-08	39200.00	=""	="TREKKING PROMOTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88898"	"4 x B' Class Safes"	="Department of Defence"	05-Jun-08	="Containers and storage"	21-May-08	30-Jun-08	33018.92	=""	="DARWIN LOCK & KEY"	05-Jun-08 05:04 PM	

+="CN88924"	"TRAINING"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	31680.00	=""	="SPRINGSOURCE AUSTRALASIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88936"	"REHABILITATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	32000.00	=""	="REACT"	05-Jun-08 05:06 PM	

+="CN88939"	"GLASS DIVIDING WALL, CANUNGRA"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	08-May-08	30-Jun-08	39869.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:06 PM	

+="CN88941"	"DMO CORPORATE EMS MANAGEMENT REVIEW PROJECT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	31900.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	05-Jun-08 05:06 PM	

+="CN88942"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	32000.00	=""	="PREVENTIVE MEDICINE AND"	05-Jun-08 05:06 PM	

+="CN88944"	"Development and Partial Validation of LC_MS/MS"	="Department of Defence"	05-Jun-08	="Disease prevention and control"	16-May-08	30-Jun-08	39490.31	=""	="UNIQUEST PTY LTD"	05-Jun-08 05:06 PM	

+="CN88964"	"Security Services"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-May-08	30-Jun-08	33792.00	=""	="STRATSEC.NET"	05-Jun-08 05:07 PM	

+="CN88985"	"IT equipment - Storage & Backup"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	32275.91	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:08 PM	

+="CN89006"	"INTERNET AND DRN NETWORK UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	34343.10	=""	="PARTNER IT"	05-Jun-08 05:09 PM	

+="CN89038"	"IBM SERVER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	07-May-08	36958.90	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:10 PM	

+="CN89053"	"cable & outlets supply and fit"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	07-May-08	20-Jun-08	36260.40	=""	="NBC COMMUNICATIONS"	05-Jun-08 05:11 PM	

+="CN89076"	"RV0411 - RGN - EB47 Refurbish air conditioning controls system"	="Department of Defence"	05-Jun-08	="Project management"	07-May-08	30-Jun-09	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:12 PM	

+="CN89077"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	01-Oct-08	35096.00	=""	="WALTER TURNBULL PTY LTD"	05-Jun-08 05:12 PM	

+="CN89081"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	16-Jun-08	34950.30	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89092"	"SERVER RACK BUNDLE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	37656.72	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89122"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	36958.90	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:14 PM	

+="CN89126"	"MRH90 CONTRACTOR  COMPUTER SUPPORT"	="Department of Defence"	05-Jun-08	="Computer services"	21-May-08	01-Sep-08	35000.00	=""	="C & S COMPUTER SOLUTIONS"	05-Jun-08 05:14 PM	

+="CN89172"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	09-May-08	01-Jul-08	32000.00	=""	="KONEKT AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89186"	"LCD Monitors"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	30998.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:17 PM	

+="CN89220"	"David Longland, $56.65p/hr, 40 hrs p/w Extention of current PSP contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	35394.92	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 05:18 PM	

+="CN89223"	"purchase of multifunction devices"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	12-May-08	23-Aug-08	34771.00	=""	="TOSHIBA (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89226"	"POC: Owen Keane 02 6127 7179 Quotation: CCPQ5904"	="Department of Defence"	05-Jun-08	="Hardware"	12-May-08	09-Jun-08	33661.74	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:18 PM	

+="CN89235"	"ROAD CHTR OP SLIPPER MRE 4RAR"	="Department of Defence"	05-Jun-08	="Railway and tramway cars"	09-May-08	30-May-08	32291.40	=""	="ROD PILON TRANSPORT"	05-Jun-08 05:19 PM	

+="CN89236"	"NRE (Prog mgmt,dev,integration and testing)"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	31331.67	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	05-Jun-08 05:19 PM	

+="CN89256"	"NAVY ANNUAL"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	06-Jun-08	35986.50	=""	="CRAFT INPRINT GROUP"	05-Jun-08 05:20 PM	

+="CN89268"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	34320.00	=""	="CLAYTON UTZ"	05-Jun-08 05:20 PM	

+="CN89300"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	38500.00	=""	="EVOLUTION MULTIMEDIA"	05-Jun-08 05:22 PM	

+="CN89319"	"FURNITURE FOR BLDG 1. COFF'S HARBOUR"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	10-Jun-08	32087.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:23 PM	

+="CN89327"	"PABX SYSTEM"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	35418.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89330"	"Supply PABX System for Kogarah MUD CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	37974.86	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89331"	"IT RESEARCH  & CONSULTANCY SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	33000.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	05-Jun-08 05:23 PM	

+="CN89335"	"Supply of PABX System to Thursday CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	33438.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:23 PM	

+="CN89343"	"CABLES"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	09-May-08	30-Jun-08	35024.00	=""	="ILLAWARRA CABLE SERVICES"	05-Jun-08 05:24 PM	

+="CN89344"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	38500.00	=""	="ON SITE TECHNOLOGY PTY LTD"	05-Jun-08 05:24 PM	

+="CN89347"	"Supply a PABX System to ADI Myanbat Depot CIOG63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	35761.66	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:24 PM	

+="CN89355"	"Uhl VMM200 Measuring Microscope Main Unit"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	09-May-08	21-Jul-08	31220.20	=""	="MELLOR MICRONET PTY LTD"	05-Jun-08 05:24 PM	

+="CN89378"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	06-May-08	30-Jun-08	36179.01	=""	="DISPLAY BY DESIGN"	05-Jun-08 05:25 PM	

+="CN89391"	"ACCREDITATION SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-Aug-08	34554.78	=""	="C I T SOLUTIONS PTY LTD"	05-Jun-08 05:26 PM	

+="CN89392"	"RV0575 - RBW / KMA Provide an audit report on control cable network"	="Department of Defence"	05-Jun-08	="Project management"	14-May-08	30-Jun-08	30000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	05-Jun-08 05:26 PM	

+="CN89393"	"SCHOLARSHIP CONTRIBUTION FOR EE KEN CHOONG. RESEAR CH AGREEMENT 2003/44110/7;IP 10/05"	="Department of Defence"	05-Jun-08	="Educational institutions"	06-May-08	30-May-08	35200.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:26 PM	

+="CN89413"	"VIDEO PRODUCTION"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	05-May-08	05-May-08	38500.00	=""	="DYNAMIC MEDIA PTY LTD"	05-Jun-08 05:27 PM	

+="CN89417"	"2nd MSA 30 Storage and additional storage unit"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	05-May-08	30-May-08	30250.00	=""	="PARTNER IT"	05-Jun-08 05:28 PM	

+="CN89421"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	31000.00	=""	="PORT AUGUST MILK VENDORS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89433"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	07-May-08	30-Jun-08	37620.00	=""	="AVANTI FITNESS"	05-Jun-08 05:29 PM	

+="CN89450"	"LOCKERS"	="Department of Defence"	05-Jun-08	="Containers and storage"	14-May-08	15-May-08	33220.00	=""	="BROWNBUILT"	05-Jun-08 05:30 PM	

+="CN89475"	"TOSHIBA ESTUDIO 232-23PPM-240V DEP B&W MFD C/P"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	16-May-08	30-May-08	34771.00	=""	="TOSHIBA AUST PTY LTD"	05-Jun-08 05:32 PM	

+="CN89477"	"Interface software"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	21-May-08	38465.56	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:32 PM	

+="CN89482"	"INSTALLATION OF COMMS & CABLING, BLD 343 RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	31-May-08	31317.00	=""	="NORTHERN TERRITORY COMMUNICATIONS"	05-Jun-08 05:32 PM	

+="CN89489"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-May-08	33921.80	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:32 PM	

+="CN89491"	"VEGETATION MANAGEMENT REVIEW - AUDIT CURRECT CONTRACTS"	="Department of Defence"	05-Jun-08	="Environmental management"	16-May-08	30-Jun-08	38500.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:33 PM	

+="CN89492"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	33000.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:33 PM	

+="CN89493"	"Renewal of Subscription"	="Department of Defence"	05-Jun-08	="Published Products"	16-May-08	30-Jul-09	38314.01	=""	="SPIE-THE INTL SOCIETY FOR"	05-Jun-08 05:33 PM	

+="CN89509"	"CMS-V8-LMS SCADAS eight channel V/ICP/TEDS Mobile eight channel V/ICP/TEDS input module, LMS softwar"	="Department of Defence"	05-Jun-08	="Software"	16-May-08	03-Jun-08	31075.00	=""	="DAVIDSON MEASUREMENT"	05-Jun-08 05:34 PM	

+="CN89515"	"Preparation & Delivery of Strategy Conference"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-May-08	16-May-08	33376.81	=""	="CALM CONSULTING PTY LTD"	05-Jun-08 05:34 PM	

+="CN89519"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	16-May-08	16-May-08	34000.00	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	05-Jun-08 05:34 PM	

+="CN89532"	"meat"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	06-May-08	31-Dec-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:35 PM	

+="CN89537"	"fruit & vegs"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	06-May-08	31-Dec-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:36 PM	

+="CN89542"	"Supply a PABX System for Bamagahas CIOG 63/08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	31853.36	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89554"	"RESEARCH AGREEMENT: SKELETAL MUSCLE MODIFICATIONS WITH EXERCISE & ERGOGENIC SUPPLEMENTS"	="Department of Defence"	05-Jun-08	="Military science and research"	15-May-08	28-Feb-09	35000.00	=""	="UNIVERSITY OF MELBOURNE"	05-Jun-08 05:37 PM	

+="CN89569"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	33052.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89586"	"Dell computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	37448.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:39 PM	

+="CN89602"	"EPC-ESL-LII Server Maintenance & Designer Maintena nce"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	31-Mar-09	34232.27	=""	="INTERFACING TECHNOLOGIES CORP"	05-Jun-08 05:40 PM	

+="CN89614"	"Supply PABX System for Sutherland MUD"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	30677.46	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:40 PM	

+="CN89616"	"Systems Engineering"	="Department of Defence"	05-Jun-08	="Hydraulic systems and components"	15-May-08	23-May-08	32500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	05-Jun-08 05:41 PM	

+="CN89618"	"CHAIRS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	15-May-08	15-May-08	36905.00	=""	="STURDY COMPONENTS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89620"	"HQJOC PROJECT-THALES-FIBRELAN MODEMS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	34704.53	=""	="THALES AUSTRALIA"	05-Jun-08 05:41 PM	

+="CN89626"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	23-May-08	30-Jun-09	33000.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:41 PM	

+="CN89627"	"Manpower Labour Hire"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	02-Jun-08	30-Jun-08	33000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:41 PM	

+="CN89629"	"PAYMENT OF CONTRACTOR SERVICES"	="Department of Defence"	05-Jun-08	="Software"	02-Jun-08	30-Jun-08	33000.00	=""	="HINE TRAINING SERVICES PTY LTD"	05-Jun-08 05:41 PM	

+="CN89631"	"WATER & SEWERAGE"	="Department of Defence"	05-Jun-08	="Environmental management"	30-May-08	30-Jun-08	35000.00	=""	="WATER CORPORATION"	05-Jun-08 05:41 PM	

+="CN89636"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	32192.90	=""	="DEAKINPRIME"	05-Jun-08 05:42 PM	

+="CN89655"	"PAYMENT VEHICLE FOR FILING & MAINTENANCE OF PATENT APPLICATIONS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Apr-08	30-Jun-08	39100.00	=""	="MADDERNS"	05-Jun-08 05:43 PM	

+="CN89664"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	36487.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89666"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	31713.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:44 PM	

+="CN89667"	"Provision of local admin services"	="Department of Defence"	05-Jun-08	="Office supplies"	23-May-08	01-Jan-09	34018.25	=""	="INCHCAPE SHIPPING SERVICES"	05-Jun-08 05:44 PM	

+="CN89676"	"teleconferencing facility"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	30-Jun-08	37325.00	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:44 PM	

+="CN89688"	"JPG PARTNERS PTY LTD PSP SERVICES SUPPORTING CAPAB REQUIREMENTS FOR SUPPORT BRANCH EXEC MAY08"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	23-May-08	30-Aug-08	31680.00	=""	="JPG PARTNERS PTY LTD"	05-Jun-08 05:45 PM	

+="CN89714"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	30888.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89715"	"Planning manager fees at the former Ammunition Depot, Moorebank"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-Jun-08	35200.00	=""	="GHD PTY LTD"	05-Jun-08 05:47 PM	

+="CN89717"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Jun-08	31050.42	=""	="UNI OF QLD - FACULTY OF HEALTH"	05-Jun-08 05:47 PM	

+="CN89718"	"BAC MOBILE STORAGE MODULES"	="Department of Defence"	05-Jun-08	="Containers and storage"	23-May-08	23-Jun-08	36682.80	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 05:47 PM	

+="CN89742"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	30360.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:48 PM	

+="CN89772"	"HIRE OF FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	23-May-08	23-May-08	35000.00	=""	="LIVING EDGE FURNITURE RENTAL"	05-Jun-08 05:50 PM	

+="CN89778"	"WMS Development Scoping study"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	23-May-08	30-Jun-08	33000.00	=""	="AAMHATCH  PTY LTD"	05-Jun-08 05:51 PM	

+="CN89786"	"Please Note:  All Invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	09-Jun-08	34390.40	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:51 PM	

+="CN89790"	"A4 WHITE PHOTOCOPY PAPER & A4 GREEN REFLEX PAPER"	="Department of Defence"	05-Jun-08	="Paper products"	26-May-08	30-Jun-08	30949.60	=""	="BARKERS OFFICE SUPPLIES"	05-Jun-08 05:51 PM	

+="CN89814"	"Software update"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	13-Jun-08	36722.40	=""	="PRISM TECHNICAL CONSULTING"	05-Jun-08 05:53 PM	

+="CN89828"	"POC: B.Searle Quotation: WA:bsearl-q02:wa"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	39754.00	=""	="FLUKE NETWORKS"	05-Jun-08 05:54 PM	

+="CN89840"	"Software engineer required to further develop existing GUI software package."	="Department of Defence"	05-Jun-08	="Software"	26-May-08	30-Jun-08	33000.00	=""	="CAE PROFESSIONAL SERVICES"	05-Jun-08 05:54 PM	

+="CN89843"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	02-Jun-08	30-Jun-08	30000.00	=""	="SIMON GEORGE &"	05-Jun-08 05:55 PM	

+="CN89846"	"EMPLOYMENT OF LEGAL OFFICERS"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	26-May-08	30-Jun-08	30000.00	=""	="GILLIAN BEAUMONT"	05-Jun-08 05:55 PM	

+="CN89864"	"AACAP 08 - FRESH RATIONS ION - 16468"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	26-May-08	30-May-08	32455.48	=""	="URARO COMMUNITY STORE PTY LTD"	05-Jun-08 05:56 PM	

+="CN89867"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	33000.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	05-Jun-08 05:56 PM	

+="CN89873"	"TSS CONTRACT"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	30-Sep-08	30000.00	=""	="SOLVEIT SOFTWARE PTY LTD"	05-Jun-08 05:57 PM	

+="CN89876"	"supply of fruit & vegetables brisbane"	="Department of Defence"	05-Jun-08	="Fruits and vegetables and nuts and seeds"	26-May-08	30-Jul-08	33000.00	=""	="GMN VEGIPREPI"	05-Jun-08 05:57 PM	

+="CN89883"	"Task Manager"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-08	36666.67	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:57 PM	

+="CN89885"	"RAAF COLLEGE RELOCATION"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	35234.38	=""	="SPOTLESS DEFENCE SERVICES"	05-Jun-08 05:57 PM	

+="CN89888"	"Instructor Support Services to No 008 Fighter Combat Controller Course"	="Department of Defence"	05-Jun-08	="Education and Training Services"	26-May-08	04-Jul-08	35904.00	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:58 PM	

+="CN89910"	"CONTRACT NO: CSI-SC05/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	05-Jun-08 05:59 PM	

+="CN89912"	"MEAT RATIONS"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:59 PM	

+="CN89914"	"FACOPS"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	26-May-08	03-Jun-08	31130.00	=""	="MARTIN VAUGHAN CANVAS PRODUCTS"	05-Jun-08 05:59 PM	

+="CN89915"	"A MacDONALD, $51.62 p/HR 40H P/WK EXTENTION OF EXISTING CONTRACT"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	38229.13	=""	="ICON RECRUITMENT"	05-Jun-08 05:59 PM	

+="CN89919"	"Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	12-May-08	30-Jun-09	31856.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:59 PM	

+="CN89959"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	13-May-08	30-Jun-09	32250.00	=""	="CLAYTON UTZ"	05-Jun-08 06:02 PM	

+="CN89973-A1"	" Provision of media monitoring services "	="Family Court of Australia"	06-Jun-08	="News and publicity services"	19-May-08	18-May-10	37500.00	=""	="Media Monitoring"	06-Jun-08 08:58 AM	

+="CN89975"	"PARTS VARIOUS - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	05-Jun-08	02-Nov-08	33110.00	=""	="MOOG Australia Pty Ltd"	06-Jun-08 09:17 AM	

+="CN89976"	"S70B AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	03-Jun-08	01-Sep-08	38637.50	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	06-Jun-08 09:51 AM	

+="CN89977-A1"	"S70B AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	03-Jun-08	20-Dec-08	36356.87	=""	="ASIA PACIFIC AEROSPACE"	06-Jun-08 09:57 AM	

+="CN89999"	"Provision of advertising design services"	="Department of the Prime Minister and Cabinet"	06-Jun-08	="Advertising campaign services"	19-May-08	30-Jun-08	32374.00	=""	="Saatchi and Saatchi Australia Pty Ltd"	06-Jun-08 11:58 AM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val40000to60000.xls
@@ -1,1 +1,272 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87910"	"Conduct of Advanced Maritime Security Audit Course ISO 28000"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Security and personal safety"	13-May-08	31-May-08	40000.00	=""	="Asia Pacific Maritime Institute Pty"	05-Jun-08 10:15 AM	

+="CN87917"	"Study of Airport scrrening employee"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Information services"	01-May-08	20-Jun-08	49995.00	=""	="Jigsaw Strategic Research P/L"	05-Jun-08 10:16 AM	

+="CN87925"	"Vehicle lease YFM98U Running costs for vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	28-May-08	30-Apr-11	43257.01	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:19 AM	

+="CN87930"	"Lease motor vehicle - YEV 67F Lease motor vehicle - YEV 67F"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	06-Feb-07	04-Feb-09	40087.30	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:21 AM	

+="CN87933-A1"	"COMPENSATOR, BELLOWS NSN 1560/14370301"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	14-May-08	03-Jul-08	42956.60	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	05-Jun-08 10:43 AM	

+="CN87949-A1"	" Night Vision Goggle Spare Parts "	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	14-Aug-08	54626.00	=""	="Point Trading"	05-Jun-08 12:47 PM	

+="CN87968"	"Training for DTP to HMAS Cairns Project"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	19-May-08	20-Jun-08	56179.20	=""	="WORKFORCE TRAINING SOLUTIONS"	05-Jun-08 01:04 PM	

+="CN87994"	"DELL PRECISION MOBILE WORKSTATION"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-Jun-08	58700.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 01:07 PM	

+="CN87995"	"Correction of Georeference data"	="Defence Materiel Organisation"	05-Jun-08	="Software"	20-May-08	10-Sep-08	45377.20	=""	="SOLUTIONS FROM SILICON"	05-Jun-08 01:07 PM	

+="CN88000"	"Toyota Corolla Sedan Conquest ( SS) Qty 2"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	31-Oct-08	45628.89	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88002"	"Toyota Hilux 4x2 Tray (UM1) Qty 3"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	21-Nov-08	55318.99	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:08 PM	

+="CN88011"	"LABOUR RATE FROM PRICE VARIATION FROM YR 1 TO YR 2 FOR WORKERS PARTS AND TRAVEL"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	04-Jun-08	49211.22	=""	="THALES AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88051"	"AMACCS Task backlog 07-0681"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	14-May-08	16-Jun-08	55236.11	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:14 PM	

+="CN88054"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	14-May-08	30-Jun-08	58690.98	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:14 PM	

+="CN88060"	"Provision Of Technical Services Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	14-Jul-08	43816.46	=""	="AIR NZ ENGINEERING SERVICES DIV AIR"	05-Jun-08 01:15 PM	

+="CN88061"	"FLOOR SPACE AT EXHIBITION"	="Defence Materiel Organisation"	05-Jun-08	="Lease and rental of property or building"	14-May-08	19-May-08	55500.00	=""	="PICO AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88075"	"Comms / IT Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	48062.22	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:17 PM	

+="CN88091"	"Teamcenter License fee and Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-09	45892.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:19 PM	

+="CN88096"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	43972.67	=""	="KAZ GROUP PTY LTD"	05-Jun-08 01:19 PM	

+="CN88103"	"CONTRACT REVIEW MEETING BAE ATTENDANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	15-May-08	30-Jun-08	45289.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:20 PM	

+="CN88106"	"Populate Spreadsheet & Report"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	44995.50	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:21 PM	

+="CN88120"	"SUPPLY A CONFIGURATION MANAGEMENT STANDARD OPERATI NG PROCEDURE"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	23-May-08	05-Sep-08	57480.01	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	05-Jun-08 01:22 PM	

+="CN88131"	"sml switchboard upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	28-May-08	28-May-08	44000.00	=""	="G A GLANVILLE & CO"	05-Jun-08 01:23 PM	

+="CN88162"	"CCI"	="Defence Materiel Organisation"	05-Jun-08	="Communications Devices and Accessories"	19-Dec-07	30-Jun-11	51981.67	=""	="FMS ACCOUNT"	05-Jun-08 01:27 PM	

+="CN88175"	"THE TERMS AND CONDITIONS OF THIS PURCHASE ORDER AR THE HUG 2.2 PRIME CONTRACT C338399"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Jun-09	43926.01	=""	="BOEING COMPANY THE"	05-Jun-08 01:29 PM	

+="CN88184"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Software"	26-May-08	26-May-08	45518.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 01:30 PM	

+="CN88203"	"Munitions and accessories"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	20-May-08	21-Jul-08	56142.37	=""	="KNIGHTS ARMAMENT COMPANY"	05-Jun-08 01:32 PM	

+="CN88205"	"LASER PRODUCTS"	="Defence Materiel Organisation"	05-Jun-08	="Safety apparel"	21-May-08	02-Sep-08	49302.83	=""	="LASER PRODUCTS"	05-Jun-08 01:32 PM	

+="CN88218"	"EMBROIDERED NAME BADGES"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	20-May-08	30-Sep-08	58630.00	=""	="APPAREL ADDITIONS"	05-Jun-08 01:34 PM	

+="CN88246"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	22-May-08	31-Jul-08	56200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 01:37 PM	

+="CN88248"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	45797.82	=""	="CAPS AUSTRALIA PTY TLD"	05-Jun-08 01:37 PM	

+="CN88254"	"MANUFACTURE MPDE & SSDG EXHAUST BLANKETS HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	21-May-08	20-Jun-08	50446.00	=""	="NATIONAL INTEGRATED SERVICES"	05-Jun-08 01:38 PM	

+="CN88258"	"DC7800 PCs' and accessories"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	49711.81	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:38 PM	

+="CN88261"	"PROVIDE STAFF TO SUPPORT SMEA FOR TE 2008 NMNP ASSURANCE WORK"	="Defence Materiel Organisation"	05-Jun-08	="Personnel recruitment"	21-May-08	31-Jul-08	53999.11	=""	="ACUMEN BUSINESS SOLUTIONS (ACT"	05-Jun-08 01:39 PM	

+="CN88262"	"CADAS LISC"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	21-May-08	10-Jun-08	46330.86	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 01:39 PM	

+="CN88278"	"Professional Services"	="Defence Materiel Organisation"	05-Jun-08	="Office supplies"	24-Apr-08	30-Aug-08	54358.21	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	05-Jun-08 01:41 PM	

+="CN88281"	"SOFTWARE INTEGRATION"	="Defence Materiel Organisation"	05-Jun-08	="Software"	28-Apr-08	30-Jun-08	55000.00	=""	="GHD PTY LTD"	05-Jun-08 01:41 PM	

+="CN88292"	"Scheduling Services to Support Navy Minor Projects"	="Defence Materiel Organisation"	05-Jun-08	="Marine craft systems and subassemblies"	28-May-08	27-Jun-08	59999.94	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:42 PM	

+="CN88294"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	07-Apr-08	01-May-08	40790.10	=""	="FAVCOTE PTY LTD"	05-Jun-08 01:43 PM	

+="CN88308"	"Use of Exisitng ASP Contract  - Design Package Additional Telephone on Pt Side of Bridge"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	06-May-08	30-Jun-08	41639.35	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88316"	""Contract or Standing Offer No:  LEA-CM-2008-001""	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	06-May-08	30-Jun-08	55545.00	=""	="GHD PTY LTD"	05-Jun-08 01:45 PM	

+="CN88320"	"TECHNICAL WRITER FOR ARH AIRCREW MANUAL"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	06-May-08	30-Jun-08	57651.83	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:46 PM	

+="CN88330"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	01-May-08	02-Jun-08	59592.83	=""	="CAPS AUSTRALIA PTY TLD"	05-Jun-08 01:47 PM	

+="CN88339"	"KIOWA MIXING VALVE REPAIR"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	06-May-08	28-Jun-08	50518.60	=""	="BELLINGER INSTRUMENTS PTY LTD"	05-Jun-08 01:48 PM	

+="CN88346"	"Configuration Data Recovery Management System (CDRMS) MPSPO Acquisition"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	31-Aug-08	55000.00	=""	="COMPUTER SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:48 PM	

+="CN88351"	"WORK PACKAGE 6 SDE SOFTWARE PROCEDURE DEVELOPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	02-Jun-08	30-Jun-08	58543.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:49 PM	

+="CN88373"	"AVIATION FUEL JET-A1"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Oct-07	23-May-08	46625.31	=""	="PEL-AIR AVIATION"	05-Jun-08 01:52 PM	

+="CN87642"	"Annual maintenance and support for FileNet Forms Manager for     E-Record"	="Australian Taxation Office"	05-Jun-08	="Software maintenance and support"	01-Jul-08	30-Jun-09	48000.00	=""	="Robert Barnett & Associates Pty Ltd"	05-Jun-08 01:52 PM	

+="CN88382"	"GRENADE HAND FRAGMENTATION F1"	="Defence Materiel Organisation"	05-Jun-08	="Explosive materials"	15-Apr-08	28-Feb-09	57608.13	=""	="THALES AUSTRALIA"	05-Jun-08 01:53 PM	

+="CN88391"	"HMAS YARRA REFIT DOCKING 2008"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	31-May-08	53874.81	=""	="THALES AUSTRALIA"	05-Jun-08 01:54 PM	

+="CN88400"	"Task backlog close out Task Groups 1A, 1B and 1C"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	29-May-08	20-Jun-08	46120.55	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:55 PM	

+="CN88434"	"Cleaning Services"	="Defence Materiel Organisation"	05-Jun-08	="Cleaning and janitorial services"	12-May-08	30-Jun-09	50074.31	=""	="COMPLETE CLEANING SERVICE"	05-Jun-08 01:59 PM	

+="CN88439"	"Disposal of TAP-3 Aircraft - Phase 2 Aircraft Preparation"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	12-May-08	12-May-08	55761.64	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 02:00 PM	

+="CN88453"	"Project 140 - LLTV Obsolescence and replacement"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	41908.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88457"	"Development of Design Accesptance and Logistics Acceptance Summaries"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-08	52199.99	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:02 PM	

+="CN88461"	"Installation of AEKMS and Intruder Resistant Door on HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	09-May-08	30-Jun-08	45837.01	=""	="EML AUSTRALIA"	05-Jun-08 02:02 PM	

+="CN88462"	"Nissan Patrol 4x4 L/S Tray UL1 Qty"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	09-May-08	24-Oct-08	41195.15	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 02:03 PM	

+="CN88489"	" Minor Fitout works "	="Office of the Commonwealth Ombudsman"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	21-May-08	42496.41	=""	="CMI Building Services"	05-Jun-08 02:06 PM	

+="CN88495"	"QAR on Contracts: 4500619827, 45000619829 4500619830, 4500619833, and 4500624521"	="Defence Materiel Organisation"	05-Jun-08	="Bombs and grenades"	12-May-08	30-May-08	44419.10	=""	="S.E.I. SOCIETA' ESPLOSIVI"	05-Jun-08 02:07 PM	

+="CN88506"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	13-May-08	42270.00	=""	="SME GATEWAY LIMITED"	05-Jun-08 02:08 PM	

+="CN88526"	"Specialist Engineering Support Services for Design Acceptance Data Pack Review"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	08-May-08	30-Aug-08	46332.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:10 PM	

+="CN88531"	"replacement of hydromap offline"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	07-May-08	20-Jun-08	59461.66	=""	="AIMTEK PTY LTD"	05-Jun-08 02:11 PM	

+="CN88539"	"WA Periscope Workshop - TAsk 18 Workshop Tasks (low priority)"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jun-08	43363.49	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88559"	"Use of Exisitng ASP Contract  - Engineering Design Package Command Intercom  System"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	30-Jun-08	43272.08	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 02:14 PM	

+="CN88572"	"office furniture"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	08-May-08	13-Jun-08	43269.93	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 02:16 PM	

+="CN88573"	"Software and Licence for IMTS"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	25-Jun-08	59488.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	05-Jun-08 02:16 PM	

+="CN88574"	"  PROVISION OF ESP TO ASSIST THE AEWCSPO PARTN MANAGEMENT UNIT WITH ISSC AND MOBILIS"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	08-May-08	30-Sep-08	55224.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 02:16 PM	

+="CN88589"	" Probe, Mine. Manufactured in accordance with Defence Standard Def(Aust) 8370 and Defence Drawings ADE(M)493-1, ADE(M)493-2 and ADE(M)493-3. Qty 1000. "	="Defence Materiel Organisation"	05-Jun-08	="Mines"	23-May-08	19-Aug-08	50270.00	=""	="EXEL COMPOSITES"	05-Jun-08 02:37 PM	

+="CN88611"	"Study in Australia Website - Content Refresh Translations"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	19-May-08	30-Jun-08	49625.40	="PRN19499"	="LANGUAGE PARTNER PTY LTD"	05-Jun-08 03:03 PM	

+="CN88617"	"Consultancy Services for the Collection of 2007 Offshore Public VET Data"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	06-May-08	08-Dec-08	59037.00	="PRN18483"	="NCVER"	05-Jun-08 03:05 PM	

+="CN88614"	" TRANSMITTER, PRESURE NSN 6685/014755886 "	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	09-Feb-09	42641.00	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:06 PM	

+="CN88624-A2"	"Better Practice Guide: ICT in Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	44000.00	="PRN19015"	="APRINGA PTY LTD"	05-Jun-08 03:08 PM	

+="CN88627"	"IT Security Gateway Firewall Software"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	47770.00	="PRN19939"	="Dimension Data Australia Pty Ltd"	05-Jun-08 03:09 PM	

+="CN88640"	"National VET Equity Advisory Taskforce - Student experience - factors for success"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	26-May-08	30-Jun-08	59500.00	="PRN19543"	="TNS SOCIAL RESEARCH"	05-Jun-08 03:12 PM	

+="CN88653-A1"	"Innovative Halls Creek Child Care Service Hub"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management advisory services"	18-Mar-08	30-Jun-08	47073.40	="PRN19658"	="VISION NETWORK PTY LTD"	05-Jun-08 03:16 PM	

+="CN88654"	"NOZZLE ASSEMBLY, FUEL NSN 2915/006551933"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	04-Jun-08	16-Jun-08	45849.60	=""	="Milspec Services Pty Ltd"	05-Jun-08 03:18 PM	

+="CN88658"	"BALLSCREW ASSEMBLY NSN 1680/012175837"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	05-Aug-08	58832.48	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:39 PM	

+="CN88661"	"ballscrew assembly nsn 1680/12222551"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	26-Jul-08	58418.56	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:50 PM	

+="CN88664"	"SEAL, PIN NSN 5330/014436337"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	02-Jun-08	46587.60	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:59 PM	

+="CN88669"	"REPAIR - ROTOR, TURBINE, AIRCRAFT GAS TURBINE"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	20-Aug-08	41152.50	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:12 PM	

+="CN88672"	"REPAIR - ROTOR, TURBINE, AIRCRAFT GAS TURBINE ENGINE"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	03-Sep-08	41152.50	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:17 PM	

+="CN88681"	"Computer Software"	="Department of Defence"	05-Jun-08	="Software"	13-May-08	30-May-08	44660.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:45 PM	

+="CN88684"	"Sean Hubbard $62.00p/hr, 40 hrs p/wk Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	44958.93	=""	="I T LOGISTICS SERVICES PTY LTD"	05-Jun-08 04:45 PM	

+="CN88685"	"SUPPLY & INSTALL BLINDS BORNEO BARRACKS CABARLAH"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	24-Jun-08	57760.00	=""	="BLINDWERX"	05-Jun-08 04:46 PM	

+="CN88700"	"PROJECT MANAGEMENT"	="Department of Defence"	05-Jun-08	="Software"	12-May-08	30-Jun-08	49962.00	=""	="THE FRAME GROUP"	05-Jun-08 04:48 PM	

+="CN88710"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Puchase"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	57912.38	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 04:49 PM	

+="CN88712"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	52260.88	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 04:49 PM	

+="CN88714"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	55000.00	=""	="BLUELINE SOFTWARE PTY LTD"	05-Jun-08 04:50 PM	

+="CN88719"	"MT LOUISA TACAN ACCESS ROAD REPAIR"	="Department of Defence"	05-Jun-08	="Roads and landscape"	12-May-08	30-Jun-08	43568.36	=""	="SPOTLESS"	05-Jun-08 04:50 PM	

+="CN88720"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-May-08	30-Jul-10	59400.00	=""	="RMIT UNIVERSITY"	05-Jun-08 04:51 PM	

+="CN88722"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	12-Jun-08	49368.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	05-Jun-08 04:51 PM	

+="CN88738"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	57266.35	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 04:53 PM	

+="CN88750"	"Environmental (Climatic) Test Chamber"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-May-08	20-Jun-08	59302.10	=""	="PACIFIC LABORATORY PRODUCTS PTY LTD"	05-Jun-08 04:55 PM	

+="CN88757"	"VIDEO CONFERENCING"	="Department of Defence"	05-Jun-08	="Hardware"	14-May-08	30-Jun-08	43291.82	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 04:56 PM	

+="CN88760"	"SERVICE MEDALS"	="Department of Defence"	05-Jun-08	="Collectibles and awards"	14-May-08	30-Jul-08	49500.00	=""	="CASHS AUSTRALIA PTY LTD"	05-Jun-08 04:57 PM	

+="CN88764"	"SN02820 - ACT/SNSW Site OHS Inspections"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	49500.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 04:57 PM	

+="CN88771"	"Ansys license"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	16-May-08	46648.80	=""	="LEAP AUSTRALIA PTY LTD"	05-Jun-08 04:58 PM	

+="CN88778"	"Network tools"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	19-May-08	27-Jun-08	48400.00	=""	="FLUKE NETWORKS"	05-Jun-08 04:58 PM	

+="CN88783"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-10	55000.00	=""	="SWITZER COMMUNICATIONS PTY LTD"	05-Jun-08 04:58 PM	

+="CN88787"	"CAMPING EQUIPMENT"	="Department of Defence"	05-Jun-08	="Camping and outdoor equipment and accessories"	19-May-08	13-Jun-08	40238.00	=""	="OZTRAIL PTY LTD"	05-Jun-08 04:59 PM	

+="CN88828"	"IT equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	16-Jun-08	41316.00	=""	="HEWLETT PACKARD AUST LTD"	05-Jun-08 05:00 PM	

+="CN88831"	"Supply a NECUniverage IPS PABX System"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	49178.80	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:01 PM	

+="CN88832"	"AD HOC WORK"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	21-May-08	24-Jul-08	56179.27	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:01 PM	

+="CN88838"	"Experimental Voice Trainer & Decoder software, docs & training"	="Department of Defence"	05-Jun-08	="Software"	20-May-08	30-May-08	52263.00	=""	="INTERNATIONAL BUSINESS MACHINES COR"	05-Jun-08 05:01 PM	

+="CN88845"	"Furniture and fittings"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	31-May-08	45761.28	=""	="SWANBRITE PTY LTD"	05-Jun-08 05:01 PM	

+="CN88847"	"To Undertake bugfix systems changes to the bug fixes; heading   functionality changes;"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	20-May-08	30-Jun-08	57750.00	=""	="SMS CONSULTING GROUP LIMITED"	05-Jun-08 05:01 PM	

+="CN88848"	"Multicam Rounting Machine."	="Department of Defence"	05-Jun-08	="Workshop machinery and equipment and supplies"	13-May-08	10-Jun-08	43890.00	=""	="MULTICAM SYSTEMS PTY LTD"	05-Jun-08 05:01 PM	

+="CN88853"	"Class B containers"	="Department of Defence"	05-Jun-08	="Containers and storage"	20-May-08	17-Jun-08	49016.00	=""	="FILEGUARD CO (MFG) PTY LTD"	05-Jun-08 05:02 PM	

+="CN88855"	"PURCHASE PC"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	46480.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:02 PM	

+="CN88879"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	41344.16	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:03 PM	

+="CN88883"	"DIEP 0708-P055 requires a fibre link"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	43921.90	=""	="OPTUS ADMINISTRATION PTY LTD"	05-Jun-08 05:03 PM	

+="CN88885"	"Cybird 5 air vehicle"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	13-Jun-08	50600.00	=""	="CYBER TECHNOLOGY"	05-Jun-08 05:03 PM	

+="CN88896"	"UPGRADE EXISITING ACCESS CONTROL READERS AMBERLEY"	="Department of Defence"	05-Jun-08	="Security and control equipment"	19-May-08	30-Jun-08	40260.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:04 PM	

+="CN88900"	"Military Tandem and Tunnel training."	="Department of Defence"	05-Jun-08	="Aircraft"	13-May-08	23-May-08	54405.79	=""	="AIRBORNE SOLUTIONS ONTERNATIONAL"	05-Jun-08 05:04 PM	

+="CN88914"	"Psychological Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	16-May-08	30-Jun-08	50000.01	=""	="INTELLUMEN PTY LTD"	05-Jun-08 05:05 PM	

+="CN88918"	"REHABILITATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="THE REHABILITATION COMPANY PTY LTD"	05-Jun-08 05:05 PM	

+="CN88926"	"DEMAND NO. RSTM-7EEDY7 QUOTE NO. 00129733"	="Department of Defence"	05-Jun-08	="Office supplies"	16-May-08	23-May-08	57280.30	=""	="LIVERPOOL OFFICE SUPPLIES"	05-Jun-08 05:05 PM	

+="CN88930"	"REHABILTATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="REHAB MANAGEMENT"	05-Jun-08 05:05 PM	

+="CN88933"	"REHABILTATION SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	59000.00	=""	="RECOVRE"	05-Jun-08 05:05 PM	

+="CN88951"	"UPGRADE OF KEY SAFES"	="Department of Defence"	05-Jun-08	="Security and control equipment"	08-May-08	08-May-08	55000.00	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:06 PM	

+="CN88955"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Education and Training Services"	22-May-08	26-Jun-08	49415.00	=""	="NATIONAL INDUSTRIAL"	05-Jun-08 05:06 PM	

+="CN88958"	"Upgrade Group Switch at Gallipoli Barracks"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	43109.51	=""	="TELSTRA BUSINESS SYSTEMS PTY LTD"	05-Jun-08 05:07 PM	

+="CN88961"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	42383.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:07 PM	

+="CN88970"	"UXO SOFTWARE (TRANSPORT  &  TOPOGRAPHY,CADASTR BOUNDARIES)."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	22-May-08	30-Jun-08	52800.00	=""	="NAVIGATE PTY LTD"	05-Jun-08 05:07 PM	

+="CN88979"	"PROVISION AND INSTALLATION TS VIDCON"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	22-May-08	30-Jun-08	56203.99	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN89001"	"ADDITIONAL INDUCTION COURSE OT COVER TRAINING LIABILITY IN THE ACS & SQLD FOR AMY PAY CORPS"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	42987.99	=""	="MAJOR TRAINING SERVICES PTY LTD"	05-Jun-08 05:08 PM	

+="CN89009"	"Site Plan & Ground Maintenance Upgdate - Canungra and Cabarlah"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	40051.00	=""	="SKM"	05-Jun-08 05:09 PM	

+="CN89015"	"DEMS SUPPORT AND MAINTENANCE CONTRACT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	22-May-08	30-Jun-08	49500.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89020"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-Jun-08	54870.00	=""	="PS MANAGEMENT CONSULTANTS"	05-Jun-08 05:09 PM	

+="CN89022"	"FAIRBAIRN - NORTHERN ACCESS ROAD - BLOCK 146 UXO C INVESTIGATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	44000.00	=""	="G-TEK AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89034"	"DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	10-Jun-08	41268.32	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:10 PM	

+="CN89042"	"Franking machine for Queanbeyan mailroom"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	22-May-08	30-Jun-08	52948.50	=""	="PITNEY BOWES AUSTRALIA PTY"	05-Jun-08 05:10 PM	

+="CN89051"	"Fleet Metoc Viewer"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	30-Jun-08	59400.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:11 PM	

+="CN89069"	"TRAINING"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	22-May-08	30-Jun-08	48198.50	=""	="EFFECTIVE NEGOTIATION SERVICES"	05-Jun-08 05:11 PM	

+="CN89072"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	43560.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89082"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-May-08	53799.90	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 05:12 PM	

+="CN89083"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Nov-08	55492.00	=""	="WALTER TURNBULL PTY LTD"	05-Jun-08 05:12 PM	

+="CN89091"	"HQJOC PROJECT-HEWLETT PACKARD AUSTRALIA PTY LTD."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	43815.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:12 PM	

+="CN89093"	"VAVIOUS CISCO ITEMS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	46538.72	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:13 PM	

+="CN89095"	"Standing Offer Deed DMOSS RFQTS 3311 Ph: 02 612 87325"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	20-May-08	30-Jun-08	49048.05	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:13 PM	

+="CN89100"	"MAPOWER LABOUR HIRE"	="Department of Defence"	05-Jun-08	="Vehicle servicing equipment"	08-May-08	30-May-08	44000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:13 PM	

+="CN89101"	"Fit out of S7 using DHA existing furniture"	="Department of Defence"	05-Jun-08	="Commercial and industrial furniture"	20-May-08	14-Jul-08	44000.00	=""	="DEFENCE HOUSING AUTHORITY"	05-Jun-08 05:13 PM	

+="CN89103"	"Installation of Alarm System A10 BLDG"	="Department of Defence"	05-Jun-08	="Security and control equipment"	08-May-08	30-Jun-08	57575.10	=""	="CHUBB SECURITY AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89106"	"Pit repair work at RAAF Base, Amberley. Quote Ref:"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	26-Jun-08	52844.00	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:13 PM	

+="CN89110"	"KEY MANAGEMENT SYSTEM"	="Department of Defence"	05-Jun-08	="Containers and storage"	20-May-08	25-Jun-08	52285.20	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:13 PM	

+="CN89121"	"Supply Rational Combi Oven SCC101 / SCC61 and Stac  These are replacing equipment at R2 Mess which i"	="Department of Defence"	05-Jun-08	="Domestic kitchenware"	07-May-08	30-Jun-08	41448.00	=""	="AC&R CATERING EQUIPMENT &"	05-Jun-08 05:14 PM	

+="CN89124"	"ROUTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	40503.78	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 05:14 PM	

+="CN89133"	"WANGETTI RIFLE RANGE REFURBISHMENT"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	28-Feb-09	50000.00	=""	="SPOTLESS"	05-Jun-08 05:14 PM	

+="CN89134"	"Site Plan & Ground Maintenance Upgdate - Oakey"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	49665.00	=""	="SKM"	05-Jun-08 05:14 PM	

+="CN89139"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	07-May-08	07-May-08	41333.91	=""	="JBTGLOBAL CORPORATE ADVISORY"	05-Jun-08 05:15 PM	

+="CN89143"	"WASTE REMOVAL FY07/08"	="Department of Defence"	05-Jun-08	="Refuse disposal and treatment"	22-May-08	30-Jun-08	42918.40	=""	="SHORESIDE MARINE"	05-Jun-08 05:15 PM	

+="CN89146"	"THE SERVICES OF SARAH SYSTEM BEING USED TO SUPPORT COAS USED IN QLD FOR AAC FROM 01.06.08-31.12.08"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	44000.00	=""	="SUPERIOR MANAGEMENT SOLUTIONS"	05-Jun-08 05:15 PM	

+="CN89154"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	09-May-08	30-Jun-08	43594.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:15 PM	

+="CN89162"	"BUSINESS SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	52800.00	=""	="KPMG"	05-Jun-08 05:16 PM	

+="CN89178"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	09-May-08	01-Jul-08	59000.00	=""	="INSIGHT SERVICES GROUP"	05-Jun-08 05:16 PM	

+="CN89185"	"Tape Cartridge"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	05-Jun-08	48125.00	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89192"	"FIRST AID"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	20-May-08	30-Jun-08	54923.00	=""	="ST JOHNS NATIONAL BUSINESS"	05-Jun-08 05:17 PM	

+="CN89196"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	09-May-08	09-May-08	56761.82	=""	="PDL TOLL"	05-Jun-08 05:17 PM	

+="CN89198"	"Office Machines"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	20-May-08	16-Jun-08	42985.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89199"	"Transportation equipment"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	09-May-08	09-May-08	58827.12	=""	="PDL TOLL"	05-Jun-08 05:17 PM	

+="CN89201"	"Technical Support"	="Department of Defence"	05-Jun-08	="Computer services"	20-May-08	05-Sep-08	51150.00	=""	="IOCANE PTY LTD"	05-Jun-08 05:17 PM	

+="CN89208"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	12-May-08	01-Jul-08	43000.00	=""	="NELSON-TYERS CONSULTING PTY LTD"	05-Jun-08 05:18 PM	

+="CN89210"	"96 Lockers for 5RAR"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	20-May-08	30-May-08	52885.80	=""	="COMPLETE OFFICE SUPPLIES"	05-Jun-08 05:18 PM	

+="CN89218"	"REQUIREMENTS ANALYSIS REPORT FOR RAAF BASE WILLIAMS REDEVELOPMENT STAGE 1"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	54703.00	=""	="URS AUSTRALIA LTD"	05-Jun-08 05:18 PM	

+="CN89232"	"ROAD CHTR OP SLIPPER MRE"	="Department of Defence"	05-Jun-08	="Railway and tramway cars"	09-May-08	05-Jun-08	53900.00	=""	="SIMON NATIONAL CARRIERS"	05-Jun-08 05:19 PM	

+="CN89233"	"ESP Support for Development of an RAN Dining Syste Document"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-Jul-08	55388.00	=""	="RELEGEN PTY LTD"	05-Jun-08 05:19 PM	

+="CN89242"	"RAAF AMBERLEY CAPABILITY IS BEING SUSTAINED IAW THE DSVE STRATEGIC CAPABILITY ROADMAP."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	15-Jun-08	40180.24	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89245"	"IBM Internet Security Systems Software"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	28-Feb-09	57226.40	=""	="IBM AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89248"	"NETWORK ANALYSER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	41580.00	=""	="FLUKE AUSTRALIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89260"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	55476.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:20 PM	

+="CN89271"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	51733.00	=""	="CLAYTON UTZ"	05-Jun-08 05:20 PM	

+="CN89275"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	06-May-08	51261.00	=""	="QINETIQ GROUP PLC"	05-Jun-08 05:21 PM	

+="CN89284"	"COMPUTER UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	15-May-08	58323.39	=""	="ONE PLANET SOLUTIONS PTY LTD"	05-Jun-08 05:21 PM	

+="CN89288"	"OCE CS4142QS Scanner"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	15-May-08	06-Jun-08	44220.00	=""	="WOLLONGONG DRAWING AND OFFICE"	05-Jun-08 05:21 PM	

+="CN89295"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	48000.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	05-Jun-08 05:21 PM	

+="CN89307"	"VISUAL JAZZ IS TO CREATE A SITE THAT INCORPORATES AUSTRALIANS IN THE EVOLUTION OF THE ADF AND OTHER"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	30-Jun-08	54945.00	=""	="VISUAL JAZZ PTY LTD"	05-Jun-08 05:22 PM	

+="CN89316"	"REHAB SERVICES"	="Department of Defence"	05-Jun-08	="Physical and occupational therapy and rehabilitation products"	08-May-08	01-Jul-08	48000.00	=""	="ACTSAFE AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89346"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	09-May-08	30-Jun-08	45950.00	=""	="CLAYTON UTZ"	05-Jun-08 05:24 PM	

+="CN89356"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	15-May-08	30-May-08	48508.90	=""	="CITE OFFICE DESIGN"	05-Jun-08 05:24 PM	

+="CN89357"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	57311.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:24 PM	

+="CN89380"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	20-Jun-08	59976.52	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:25 PM	

+="CN89386"	"AIRFARES AND ACCOMMODATION"	="Department of Defence"	05-Jun-08	="Travel and Food and Lodging and Entertainment Services"	14-May-08	30-Jun-08	46600.00	=""	="EXPERIENCE SPORT PTY LTD"	05-Jun-08 05:26 PM	

+="CN89399"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	02-Jun-08	55539.00	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:26 PM	

+="CN89410"	"COURSE CONTENT UPDATED"	="Department of Defence"	05-Jun-08	="Specialised educational services"	14-May-08	15-May-08	44550.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:27 PM	

+="CN89424"	"Defence Desktop Support Role"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	30-Jun-08	49500.00	=""	="LOGITECH PTY LTD"	05-Jun-08 05:28 PM	

+="CN89426"	"TECHNICAL LEAD /  ANALYST / REPORT AU"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	14-May-08	11-Jun-08	46747.16	=""	="TENIX SYSTEMS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89434"	"REIMBURSEMENT"	="Department of Defence"	05-Jun-08	="Education and Training Services"	14-May-08	14-May-08	52648.75	=""	="THE KING'S SCHOOL"	05-Jun-08 05:29 PM	

+="CN89436"	"GRAPHIC DESIGNER FOR DIPP PROJECT"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	14-May-08	01-Sep-08	42311.26	=""	="ANDREW HOOPER"	05-Jun-08 05:29 PM	

+="CN89445"	"FTIR Spectrometer"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-Jun-11	45331.00	=""	="THERMO OPTEK PTY LTD"	05-Jun-08 05:30 PM	

+="CN89455"	"PAYMENT OF TEAM COMPETION FEES"	="Department of Defence"	05-Jun-08	="Other sports"	07-May-08	15-Jun-08	41311.00	=""	="HOCKEY ACT INC"	05-Jun-08 05:30 PM	

+="CN89457"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	16-May-08	42348.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:30 PM	

+="CN89463"	"TRAINING"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	50172.48	=""	="SOURCEFIRE INC"	05-Jun-08 05:31 PM	

+="CN89497"	"POC: RICHARD PATTINSON CONTACT: 02 626 69010"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	55948.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:33 PM	

+="CN89499"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-09	41922.55	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 05:33 PM	

+="CN89500"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:33 PM	

+="CN89501"	"Office Furniture"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	16-May-08	30-Jun-08	45505.90	=""	="BAC SYSTEMS PTY LTD"	05-Jun-08 05:33 PM	

+="CN89513"	"Video conferencing facilities"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	16-May-08	30-Jun-08	44000.00	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89524"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	06-May-08	31-Dec-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	05-Jun-08 05:35 PM	

+="CN89525"	"Provide hard copies of PAARM to Army Aviation unit sqn, one per RHQ, one to DACI-Iand seven for AAvn"	="Department of Defence"	05-Jun-08	="Office supplies"	16-May-08	30-Jun-08	51255.46	=""	="AVIATION THEORY CENTRE PTY LTD"	05-Jun-08 05:35 PM	

+="CN89528"	"GROCERIES"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	06-May-08	31-Dec-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:35 PM	

+="CN89530"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	08-May-08	46200.00	=""	="SHACKLETON MANAGEMENT SOLUTIONS P/L"	05-Jun-08 05:35 PM	

+="CN89532"	"meat"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	06-May-08	31-Dec-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:35 PM	

+="CN89539"	"ADDITIONAL ITEMS FOR ADVANCEMENT OF EXPERIMENTATIO"	="Department of Defence"	05-Jun-08	="Education and Training Services"	06-May-08	30-Jun-08	46472.60	=""	="SEYMOUR COMPUTERS"	05-Jun-08 05:36 PM	

+="CN89547"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	07-May-08	11-Jun-08	43985.70	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:36 PM	

+="CN89560"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	15-May-08	46000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:37 PM	

+="CN89562"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	15-May-08	46000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 05:37 PM	

+="CN89564"	"GOODS"	="Department of Defence"	05-Jun-08	="Truck tractors"	15-May-08	30-May-08	51150.00	=""	="ALBURY SPEEDO SERVICES"	05-Jun-08 05:37 PM	

+="CN89570"	"Printers"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:38 PM	

+="CN89584"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	27-Jun-08	41800.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 05:39 PM	

+="CN89588"	"3 pOLARIS RANGER 500 TERRAIN 4X4 & 2X4 FOR RANGE CONTROL"	="Department of Defence"	05-Jun-08	="Motorised cycles"	15-May-08	14-Jun-08	54108.00	=""	="R & M MOTORCYCLES"	05-Jun-08 05:39 PM	

+="CN89593"	"Maritime Structural Repairs Stirling"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	29-May-08	30-Jun-08	50000.01	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	05-Jun-08 05:39 PM	

+="CN89594"	"POC:  JOHN BURGESS CONTACT: 02 626 50462"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	44076.51	=""	="ENDACE ACCELERATED"	05-Jun-08 05:39 PM	

+="CN89603"	"Software development"	="Department of Defence"	05-Jun-08	="Software"	04-Jun-08	30-Sep-08	49725.00	=""	="VISUAL ANALYSIS PTY LTD"	05-Jun-08 05:40 PM	

+="CN89606"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	15-May-08	30-Jun-08	42480.00	=""	="CLAYTON UTZ"	05-Jun-08 05:40 PM	

+="CN89607"	"RAAF EDINBURGH : REDEVEVLOPMENT STAGE 2-P"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	53954.74	=""	="THINC PROJECTS (SA/NT) PTY LTD"	05-Jun-08 05:40 PM	

+="CN89610"	"DEVELOPMENT OF A PROOF OF A CONCEPT PORTAL TO PROVIDE ACCESS TO DEFENCE USERS."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	56980.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:40 PM	

+="CN89644"	"Shipping Service Darwin"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	55825.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:42 PM	

+="CN89649"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	29-May-08	30-Jun-08	54494.50	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:43 PM	

+="CN89658"	"SEA CHARTER"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	47850.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:43 PM	

+="CN89702"	"ANNUAL SOFTWARE MAINTENANCE"	="Department of Defence"	05-Jun-08	="Software"	23-May-08	30-May-08	45848.00	=""	="ESRI AUSTRALIA PTY LTD"	05-Jun-08 05:46 PM	

+="CN89711"	"PROFESSIONAL RECRUITMENT PROVIDER SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	49999.99	=""	="LEE HECHT HARRISON PTY LTD"	05-Jun-08 05:46 PM	

+="CN89712"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	46332.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:46 PM	

+="CN89724"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	41184.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89726"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	56628.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89736"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	22-May-08	30-Jun-09	50569.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:48 PM	

+="CN89743"	"HQJOC PROJECT-LAN SYSTEMS."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-08	43867.04	=""	="WESTCON GROUP"	05-Jun-08 05:48 PM	

+="CN89751"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102/146 (AREA H) DEM"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-08	47012.87	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:49 PM	

+="CN89752"	"SEA CHARTER"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	53113.50	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:49 PM	

+="CN89762"	"COMPUTER SERVERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	19-Jun-08	45799.95	=""	="IPS INTELLIGENT SYSTEMS PTY LTD"	05-Jun-08 05:50 PM	

+="CN89776"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	53504.48	=""	="INSITEC"	05-Jun-08 05:51 PM	

+="CN89780"	"GENERAL STORES AS PER QUOTE"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	23-May-08	30-Jun-08	41138.11	=""	="BUNNINGS TRADE DISTRIBUTION CENTRE"	05-Jun-08 05:51 PM	

+="CN89784-A1"	"REDEVELOPMENT AND REDESIGN OF ONLINE DATABASE"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	26-May-09	59400.00	=""	="GIUNTI LABS (ASIA PACIFIC) PTY LTD"	05-Jun-08 05:51 PM	

+="CN89803"	"BANNERS"	="Department of Defence"	05-Jun-08	="Signage and accessories"	13-May-08	05-Jun-08	54494.00	=""	="SIGNARAMA"	05-Jun-08 05:52 PM	

+="CN89804"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	44000.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	05-Jun-08 05:52 PM	

+="CN89810"	"SN02523 - Furniture and Joinery For DDCS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-08	57299.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:53 PM	

+="CN89816"	"Comms/IT"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	46877.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89819"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	03-Jun-08	50000.00	=""	="KPMG"	05-Jun-08 05:53 PM	

+="CN89822"	"6xBushmasters from Gallipoli Bks Enoggera to Rober 23May08-28May08."	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	02-Jun-08	52800.00	=""	="FREIGHTWEST PTY LTD"	05-Jun-08 05:53 PM	

+="CN89824"	"POC J.McCluskey -02 6127 7313 Quotation: 8001940"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	49253.60	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89833"	"AIRFOCE PRODUCTION ACTIVITIES DURING 067/08"	="Department of Defence"	05-Jun-08	="Aircraft"	23-Apr-08	30-Jun-08	53501.54	=""	="GEORGE PATTERSON Y & R"	05-Jun-08 05:54 PM	

+="CN89850"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	26-May-08	07-Jun-08	56444.04	=""	="CORE SECURITY TECHNOLOGIES INC"	05-Jun-08 05:55 PM	

+="CN89869"	"facops"	="Department of Defence"	05-Jun-08	="Alloys"	02-Jun-08	30-Jun-08	40920.00	=""	="RESOLVE FM"	05-Jun-08 05:56 PM	

+="CN89870"	"MEALS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	26-May-08	30-Jun-09	47520.00	=""	="CAFE SIX TWO"	05-Jun-08 05:56 PM	

+="CN89872"	"Video Conferencing System"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	26-May-08	20-Jun-08	40922.01	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 05:57 PM	

+="CN89874"	"STUDENT TRANSPORT 08/09"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	26-May-08	30-Jun-09	53460.00	=""	="WESTRANS"	05-Jun-08 05:57 PM	

+="CN89884"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	26-May-08	50473.50	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:57 PM	

+="CN89890"	"XPS M1730 LAPTOP/e VALUE R540423"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	25-May-08	30-Jun-08	56745.70	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89897"	"QUARANTINE FEES"	="Department of Defence"	05-Jun-08	="Environmental protection"	03-Jun-08	30-Jun-08	45000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	05-Jun-08 05:58 PM	

+="CN89898"	"POC: WILLIAM GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	42612.78	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:58 PM	

+="CN89909"	"Ebsco host subscription"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	49127.10	=""	="EBSCO AUSTRALIA SUBSCRIPTON"	05-Jun-08 05:59 PM	

+="CN89912"	"MEAT RATIONS"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:59 PM	

+="CN89916"	"CONTRACT NO: CSI-SC04/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:59 PM	

+="CN89920"	"GROCERIES RATION"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	05-Jun-08 06:00 PM	

+="CN89926"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	26-May-08	07-Jun-08	54853.68	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 06:00 PM	

+="CN89929"	"James Hobman $62.44 p/hr, 40 hrs per/wk Extention to existing contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	46101.21	=""	="ICON RECRUITMENT"	05-Jun-08 06:00 PM	

+="CN89942"	"FRIEGHT OF VEHICLES BRISBANE TO CULTANA"	="Department of Defence"	05-Jun-08	="Transportation components and systems"	13-May-08	30-Jun-08	51150.00	=""	="FREIGHTWEST"	05-Jun-08 06:01 PM	

+="CN89954"	"Steve Dummett $66.84/H, 40 hrs p/h Extention of current contract."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Oct-08	49392.06	=""	="ROSS HUMAN DIRECTIONS"	05-Jun-08 06:02 PM	

+="CN89957"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	55000.00	=""	="SAVV-E PTY LTD"	05-Jun-08 06:02 PM	

+="CN89962"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	49999.40	=""	="ERNST & YOUNG"	05-Jun-08 06:02 PM	

+="CN89966"	"WET WEATHER SHEDS FOR TRG PURPOSES"	="Department of Defence"	05-Jun-08	="Structural materials and basic shapes"	21-May-08	10-Jun-08	42616.02	=""	="RANBUILD PTY LTD"	05-Jun-08 06:02 PM	

+="CN89974"	"BEARING - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	05-Jun-08	16-Oct-08	47107.50	=""	="MOOG Australia Pty Ltd"	06-Jun-08 09:13 AM	

+="CN89983-A1"	"S70B AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	08-Mar-09	44508.95	=""	="ASIA PACIFIC AEROSPACE"	06-Jun-08 10:52 AM	

+="CN89985"	" S70B AIRCRAFT SPARES "	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	13-Nov-08	42375.63	=""	="ASIA PACIFIC AEROSPACE"	06-Jun-08 10:57 AM	

+="CN90018"	"Consultancy Services for Make Good Costs of Leased Premises"	="Family Court of Australia"	06-Jun-08	="Architectural engineering"	24-Apr-08	30-Jun-08	46997.50	=""	="Jones Lang Lasalle"	06-Jun-08 02:31 PM	

+="CN90053"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	06-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Jun-08	20-Jun-08	44220.90	=""	="MERCEDES BENZ AUST"	06-Jun-08 03:53 PM	

+="CN87632-A1"	"Contractor for Clent Services period - 25/5/08 - 14/11/08"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	25-May-08	14-Nov-08	49500.00	="06ACMA107"	="Icon Recruitments Pty Ltd - Canberra"	06-Jun-08 04:22 PM	

+="CN87424-A1"	"Prepaid Port Hours for Multipoint Video Conferencing period 1/3/08 - 30/6/08"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Phone and video conference equipment and hardware and controllers"	01-Mar-08	30-Jun-08	44000.00	=""	="Service Point Australia Pty Ltd"	06-Jun-08 04:37 PM	

+="CN87423"	"Licenses for Web Logic Servers"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="License management software"	28-Jun-08	27-Jun-09	45171.59	=""	="BEA Systems Pty Ltd"	06-Jun-08 04:40 PM	

+="CN87308"	"Provision of Current Affairs Programming on Australian Commercial Radio Research"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Research programs"	26-May-08	30-Jun-08	44000.00	="07/ACMA074"	="Strategic Media Solutions Pty Ltd"	06-Jun-08 04:49 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val60000to80000.xls
@@ -1,1 +1,177 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87935"	"X-RAY APPARATUS, RADIOGRAPHIC, INDUSTRIAL NSN 6635/661487022"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	20-May-08	20-May-08	69450.00	=""	="NDT EQUIPMENT SALES PTY LTD"	05-Jun-08 11:01 AM	

+="CN87950-A1"	"Qty 3,000  Pocket, Night Fighting Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	16-May-08	15-Aug-08	60192.00	=""	="Ancamaraba Pty Ltd"	05-Jun-08 12:58 PM	

+="CN87959"	"Subject matter Expertise"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	16-May-08	31-Jul-08	79200.00	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:03 PM	

+="CN87965"	"URS 6270 - IT Control Framework URS 6297 - IT Control Framework"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	24-Jun-08	67712.70	=""	="MINCOM LTD"	05-Jun-08 01:04 PM	

+="CN87969"	"Rational Licences"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	24-Jun-08	63851.72	=""	="SYNERGY PLUS PTY LTD"	05-Jun-08 01:04 PM	

+="CN87983"	"Test Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Electronic hardware and component parts and accessories"	16-May-08	31-Jul-08	66015.98	=""	="YANOS AEROSPACE INC"	05-Jun-08 01:06 PM	

+="CN87986"	"chiller controller implementation on HS"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	16-May-08	23-Aug-08	78824.44	=""	="AIMTEK PTY LTD"	05-Jun-08 01:06 PM	

+="CN87990"	"SWITCH, RF"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	20-Apr-09	75246.18	=""	="NORTHROP GRUMMAN CORP ELECTRONIC SY"	05-Jun-08 01:07 PM	

+="CN87993"	"COMPUTER HARDWARE FOR INSTALLATION OF SOE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	20-May-08	06-Jun-08	68527.80	=""	="COMPUTER EASY AUSTRALIA"	05-Jun-08 01:07 PM	

+="CN88012"	"Training Needs Analysis in support of HUGPH2.3"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	01-Jul-08	63243.00	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:09 PM	

+="CN88023"	"Training"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	19-May-08	30-Jul-08	66000.00	=""	="ASC PTY LTD"	05-Jun-08 01:11 PM	

+="CN88029"	"Dell 24" Monitors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	69300.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 01:11 PM	

+="CN88037"	"INTERAGENCY TRANSFER TO DEFENCE SUPPORT GROUP TO COVER TELSTRA LEASE OF TOWERS FOR HF COMMS"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	72757.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:12 PM	

+="CN88039"	"THIS ORDER IS PLACED IAW C439170 - SUPPORT SERVICE REPLACE LIGHTING TRAILERS"	="Defence Materiel Organisation"	05-Jun-08	="Electrical equipment and components and supplies"	14-May-08	30-Jun-08	75275.81	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:12 PM	

+="CN88044"	"tab trim acft"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	01-Sep-09	69622.93	=""	="LOCKHEED MARTIN CORPORATION"	05-Jun-08 01:13 PM	

+="CN88056"	"LAND AIR BREATHING CYLINDERS - 9 LITRE 300 BAR CARBON FIBRE"	="Defence Materiel Organisation"	05-Jun-08	="Fire fighting equipment"	14-May-08	20-Jun-08	71060.00	=""	="WORMALD TECHNOLOGY"	05-Jun-08 01:15 PM	

+="CN88067"	"HARDWARE"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	14-May-08	30-Jun-08	66528.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	05-Jun-08 01:16 PM	

+="CN88068"	"Prepare Defence White Paper Logistic Companion Review for Explosive Ordnance Division"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Jun-08	60199.39	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 01:16 PM	

+="CN88082"	"REMEDIATION TO EQUIPMENT INSTALLATION ON HMAS SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	77483.13	=""	="THALES AUSTRALIA"	05-Jun-08 01:18 PM	

+="CN88088"	"IASSFNET UPGRADE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	25-Jun-08	60745.30	=""	="SERENA SOFTWARE PTY LTD"	05-Jun-08 01:18 PM	

+="CN88098"	"LAND ROVER 6X6 CARGO BODY ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Containers and storage"	15-May-08	13-Jun-08	75787.54	=""	="LAND ROVER AUSTRALIA PTY LTD"	05-Jun-08 01:20 PM	

+="CN88099"	"POC: CHRIS FISHER CONTACT: 02 626 69316"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	69903.90	=""	="RITTAL"	05-Jun-08 01:20 PM	

+="CN88178"	"GWISSO-W Workforce Modelling  &  Maintenance M Improvement"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jun-08	66000.00	=""	="HOWARD RECRUITMENT"	05-Jun-08 01:29 PM	

+="CN88206"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-May-08	63397.03	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:32 PM	

+="CN88217"	"VoP For ISS contract C388561, Inv 70401"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	75154.57	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	05-Jun-08 01:34 PM	

+="CN88239"	"Pahse 2B task close outs"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	22-May-08	26-Jun-08	78567.36	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:36 PM	

+="CN88249-A1"	"D Karpin to provide independent assurance to the Materiel Audit Committee"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	21-May-08	31-Dec-08	78623.00	=""	="DAVID KARPIN"	05-Jun-08 01:37 PM	

+="CN88268-A1"	"Joint Electronic Fuel Management (JEFM) Project Software ILS/Transition Support"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	21-May-08	30-Jun-08	72700.00	=""	="KPMG"	05-Jun-08 01:40 PM	

+="CN88277-A1"	"INDEPENDENT ADVICE ON 15 ECONOMICAL JOURNAL ARTICL"	="Defence Materiel Organisation"	05-Jun-08	="Business administration services"	15-May-08	12-Nov-08	70891.15	=""	="ECONTECH PTY LTD"	05-Jun-08 01:41 PM	

+="CN88283"	"Preparation of briefing paper on JP2077 Project"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	29-Apr-08	16-May-08	64780.00	=""	="KPMG"	05-Jun-08 01:41 PM	

+="CN88290"	"codification and cataloguing of hydrographic inventory"	="Defence Materiel Organisation"	05-Jun-08	="Location and navigation systems and components"	02-Jun-08	30-Jun-08	60200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88296"	"Technical Review of Ellipse"	="Defence Materiel Organisation"	05-Jun-08	="Software"	07-Apr-08	30-Jun-08	70716.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 01:43 PM	

+="CN88327"	"SIMLOX Software Licences"	="Defence Materiel Organisation"	05-Jun-08	="Software"	06-May-08	20-Jun-08	61312.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:46 PM	

+="CN88335"	"Use of Exisitng ASP Contract  - Check and Repair Tank Gauges"	="Defence Materiel Organisation"	05-Jun-08	="Fuel tanks and systems"	05-May-08	30-Jun-08	70895.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88358"	"EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	12-Nov-07	29-Aug-08	70207.85	=""	="SME GATEWAY LIMITED"	05-Jun-08 01:50 PM	

+="CN88371"	"GERMANISCHER LLOYD"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	27-Sep-07	30-Jun-08	65275.17	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	05-Jun-08 01:52 PM	

+="CN88374"	"AVIATION FUEL JET-A1"	="Defence Materiel Organisation"	05-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Oct-07	23-May-08	63898.46	=""	="PEL-AIR AVIATION"	05-Jun-08 01:52 PM	

+="CN88376"	"Sonar Simulation Controller for the Collins Class Submarines"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	12-Nov-07	31-Jul-08	62454.00	=""	="OPERATIONAL SOLUTIONS"	05-Jun-08 01:52 PM	

+="CN88381"	"ESM ATE Replacement support"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	29-May-08	26-Jun-08	62928.01	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:53 PM	

+="CN88395"	"PSP FOR PSENG & STRUCTURES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	01-Jun-08	63888.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:55 PM	

+="CN88416"	"SUPPLY OF AVIATION FUEL - ARMY"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	12-Nov-07	30-Jun-08	73777.00	=""	="EXXONMOBIL AVIATION"	05-Jun-08 01:57 PM	

+="CN88441"	"MANUFACTURE 2ND STAGE OF MODULES HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	20-Jun-08	76134.89	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 02:00 PM	

+="CN88443"	"Professionalisation Scoping Study"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	02-May-08	30-Aug-08	73859.50	=""	="DEAKINPRIME"	05-Jun-08 02:00 PM	

+="CN88458"	"CONSTRUCTION OF STAND"	="Defence Materiel Organisation"	05-Jun-08	="Building and Construction Machinery and Accessories"	09-May-08	09-May-08	64920.00	=""	="FOLEY EXHIBITIONS LTD"	05-Jun-08 02:02 PM	

+="CN88468"	"Connectors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	75054.90	=""	="FOUNDRY NETWORKS INC"	05-Jun-08 02:03 PM	

+="CN88477"	"sml galley fire fighting system"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	13-May-08	30-Jun-08	66329.29	=""	="G A GLANVILLE & CO"	05-Jun-08 02:04 PM	

+="CN88487"	"rescue boat fwd access on hydrographic ships"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	12-May-08	22-Aug-08	67940.62	=""	="AIMTEK PTY LTD"	05-Jun-08 02:05 PM	

+="CN88493"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	77920.00	=""	="NOVA DEFENCE"	05-Jun-08 02:06 PM	

+="CN88499"	"ASLAV Tyre Maintenance Shelter equipment"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	30-Jun-08	79277.00	=""	="G H VARLEY PTY LTD"	05-Jun-08 02:07 PM	

+="CN88515"	"MAG58 SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	07-May-08	07-Dec-08	67638.17	=""	="FN HERSTAL SA"	05-Jun-08 02:09 PM	

+="CN88534"	"MANUFACTURE HEADS AND SHOWER MODULES HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	20-Jun-08	77225.12	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 02:11 PM	

+="CN88547"	"BT-WAR Project Contractor Support"	="Defence Materiel Organisation"	05-Jun-08	="Management support services"	07-May-08	30-Jun-08	62272.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 02:13 PM	

+="CN88563"	"Savi Signposts and Labels"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	18-Aug-08	70091.78	=""	="SAVI TECHNOLOGY AUSTRALIA PTY LTD"	05-Jun-08 02:15 PM	

+="CN88609-A2"	"Study in Australia Internet Kiosks - 2008"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	20-May-08	30-Jun-09	67556.00	="PRN19498"	="PIENETWORKS LIMITED (PIE)"	05-Jun-08 03:03 PM	

+="CN88612"	"Study in Australia Video Production"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	07-May-08	30-Jun-08	71027.00	="PRN19409"	="SILVERSUN PICTURES PTY LTD"	05-Jun-08 03:03 PM	

+="CN88622-A2"	"Better Practice Guide: ICT in Schools"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	28-Apr-08	30-Jun-08	77000.00	="PRN19015"	="CROGER ASSOCIATES PTY LTD"	05-Jun-08 03:07 PM	

+="CN88625-A1"	"Expert Technical Advice - SES Funding Arrangements"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Business intelligence consulting services"	14-Sep-07	30-Jun-08	75000.00	="PRN16217"	="DIRECTION GROUP PTY LTD"	05-Jun-08 03:08 PM	

+="CN88630-A2"	"Equity in Vocational Education and Training (VET)"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	21-May-08	30-Jun-08	78392.63	="PRN19334"	="MARKET SOLUTIONS PTY LTD"	05-Jun-08 03:09 PM	

+="CN88652"	"CAA Enviro Bags Re-print"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	18-Mar-08	30-Jun-08	75240.00	="PRN18848"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	05-Jun-08 03:15 PM	

+="CN88671"	"REPAIR - COMPRESSOR ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	22-May-08	20-Aug-08	72611.30	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:15 PM	

+="CN88717"	"POC: WILLIAM GOODWIN CONTACT: 02 626 50923"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	72600.00	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 04:50 PM	

+="CN88728"	"Group Workshops & Resume Coaching."	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-May-08	12-Jun-08	64900.00	=""	="HUDSON GLOBAL RESOURCES (AUST)"	05-Jun-08 04:52 PM	

+="CN88735"	"REVIEW AND REPORT ON A/F LAND MATERIEL ACQUISITION"	="Department of Defence"	05-Jun-08	="Published Products"	14-May-08	30-Sep-08	71480.20	=""	="SME GATEWAY LIMITED"	05-Jun-08 04:53 PM	

+="CN88776"	"681900 (NT1188) ASRAAM / AMRAAM Facility Equipment Replacement. Security Upgrade"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	75570.00	=""	="ASSET SERVICES"	05-Jun-08 04:58 PM	

+="CN88822"	"Mathworks computer equiptment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	77841.50	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:00 PM	

+="CN88852"	"WATER CONSERVATION MEASURES- RAINWATER TANKS CABARLAH"	="Department of Defence"	05-Jun-08	="Water resources development and oversight"	19-May-08	30-Jun-08	73681.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:02 PM	

+="CN88866"	"WATER CONSERVATION MEASURES- RAINWATER TANKS OAKEY"	="Department of Defence"	05-Jun-08	="Water resources development and oversight"	19-May-08	30-Jun-08	76580.35	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:02 PM	

+="CN88878"	"OTDR"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	63694.35	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:03 PM	

+="CN88884"	"SPONSORSHIP"	="Department of Defence"	05-Jun-08	="Education and Training Services"	19-May-08	19-May-08	71786.00	=""	="DARWIN FAMILY DAY CARE"	05-Jun-08 05:03 PM	

+="CN88920"	"INTERPRETIVE STRATEGY FOR POINT COOK AND FORT QUEE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	67317.80	=""	="WOODHEAD INTERNATIONAL"	05-Jun-08 05:05 PM	

+="CN88929"	"TO PROVIDE SCANNED NEGATIVES"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	16-May-08	16-May-08	79500.00	=""	="DYNAMIC MEDIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88950"	"UPS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	62640.60	=""	="COMPUTER SITE SOLUTIONS PTY LTD"	05-Jun-08 05:06 PM	

+="CN88953"	"Matlab and Simulink licenses"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	20-May-08	64424.25	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	05-Jun-08 05:06 PM	

+="CN88962"	"DENTAL LABORATORY SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	19-May-08	31-Jul-09	62700.00	=""	="EDL PTY LTD"	05-Jun-08 05:07 PM	

+="CN88983"	"Analyst Report Writer John Stevens"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	19-May-08	31-Jul-08	70000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:08 PM	

+="CN89004"	"Modular cable System Fitout Base-X Tents"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	19-May-08	30-Jun-08	72358.00	=""	="ANITCOM"	05-Jun-08 05:09 PM	

+="CN89012"	"software Licence"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	25-May-08	65945.00	=""	="TELELOGIC AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89021"	"288.9 linear metres of shelving"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	78383.80	=""	="BROWNBUILT"	05-Jun-08 05:09 PM	

+="CN89023"	"T5520 SERVER X 2"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	08-May-08	71943.56	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:09 PM	

+="CN89026"	"ARCHIVAL RESEARCH"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	08-May-08	66707.17	=""	="PETER BARTON"	05-Jun-08 05:10 PM	

+="CN89084"	"FORDIGRAPH DEP.SHREDDER 5141CC QTY X 12"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89085"	"Research Agreement"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	66000.00	=""	="THE UNIVERSITY OF ADELAIDE"	05-Jun-08 05:12 PM	

+="CN89087"	"FORDIGRAPH DEP.SHREDDER 5141CC QTY X 12"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89090"	"FORDIGRAPH DEP.SHREDDER E2026FCCM QTY X 25"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	75597.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89102"	"RAAF FLYING SERVICES TO DSTO"	="Department of Defence"	05-Jun-08	="Transport operations"	21-May-08	22-May-08	60500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89123"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	25-Jun-08	66000.00	=""	="KPMG"	05-Jun-08 05:14 PM	

+="CN89127"	"DVD PRODUCTION"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	07-May-08	07-May-08	78375.00	=""	="CATALYST INTERACTIVE"	05-Jun-08 05:14 PM	

+="CN89128"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	20-May-08	73917.80	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:14 PM	

+="CN89136"	"SPECIALIST SUPPORT"	="Department of Defence"	05-Jun-08	="Flight communications related systems"	07-May-08	30-Jun-08	66799.70	=""	="APP CORPORATION PTY LTD"	05-Jun-08 05:14 PM	

+="CN89149"	"computers and monitors"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	62293.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89150"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	19-May-08	19-May-08	67942.60	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	05-Jun-08 05:15 PM	

+="CN89170"	"ROAD CHTR EX HIGH SIERRA MOVT OF 76SQN EQUIP"	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	07-Jul-08	68276.01	=""	="SIMON NATIONAL CARRIERS"	05-Jun-08 05:16 PM	

+="CN89187"	"WOLSS Training"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	09-May-08	10-May-08	79726.08	=""	="OPTUS BILLING SERVICES PTY LTD"	05-Jun-08 05:17 PM	

+="CN89197"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	67730.84	=""	="BOEING AUSTRALIA LTD"	05-Jun-08 05:17 PM	

+="CN89219"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	64900.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:18 PM	

+="CN89231"	"Tasking Statement 0708-274 Maritime Assessment Training"	="Department of Defence"	05-Jun-08	="Software"	20-May-08	12-Jun-08	63000.00	=""	="NOVONICS OCEANIA PTY LTD"	05-Jun-08 05:19 PM	

+="CN89249"	"AQIS OFFSHORE INSPECTION OP CATALYST"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	19-May-08	31-May-08	72899.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:19 PM	

+="CN89250"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	66000.00	=""	="DARWIN PORT CORPORATION"	05-Jun-08 05:19 PM	

+="CN89258"	"PURCHASE OF COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	70707.81	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:20 PM	

+="CN89311"	"Upgrade of WTSS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	75236.23	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	05-Jun-08 05:22 PM	

+="CN89312"	"CERTAIN CARDS ARE AT END OF LIFE, IF A CPU WAS TO FAIL ALL VOICE COMM FROM  SITE WOULD BE LOST."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	15-May-08	28-Jun-08	66598.40	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89324"	"PROVISION OF GRANT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-May-08	67941.90	=""	="THE INTERNATIONAL INSTITUTE FOR STR"	05-Jun-08 05:23 PM	

+="CN89334"	"Psychological Services"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-09	62700.00	=""	="AUSTIN, JACQUELINE THERESE"	05-Jun-08 05:23 PM	

+="CN89336"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	03-May-08	30-Jun-10	73663.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:23 PM	

+="CN89361"	"VIDEO CONFERENCING UNIT"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	09-May-08	30-Jun-08	74453.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:25 PM	

+="CN89407"	"software and accessories"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	02-Aug-08	73145.20	=""	="L-3 SERVICES INC. DIV PULSE SCIENCE"	05-Jun-08 05:27 PM	

+="CN89416"	"EXTERNAL SERVICE PROVIDER - CONTRACTOR"	="Department of Defence"	05-Jun-08	="Management advisory services"	14-May-08	30-Jun-08	70567.20	=""	="OBS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89418"	"EXTERNAL SERVICE PROVIDER - CONTRACTOR"	="Department of Defence"	05-Jun-08	="Management advisory services"	14-May-08	30-Jun-08	75917.22	=""	="OBS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89435"	"Mainframe Engineer"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	66880.00	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:29 PM	

+="CN89437"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	70246.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:29 PM	

+="CN89446"	"SALARY"	="Department of Defence"	05-Jun-08	="Business administration services"	14-May-08	14-May-08	67100.00	=""	="DFAT - AUSTRALIAN GOVERNMENT"	05-Jun-08 05:30 PM	

+="CN89447"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	71269.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:30 PM	

+="CN89458"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-May-08	31-May-08	60682.38	=""	="WESTCON GROUP"	05-Jun-08 05:31 PM	

+="CN89464"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	65728.45	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:31 PM	

+="CN89468"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	64130.64	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:31 PM	

+="CN89483"	"IT SUPPORT AND MAINTENANCE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	16-May-08	79200.00	=""	="COMPLEXIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89490"	"JPEU Businmess Portal Phase 3 -Enhancement Upgrade dated 01 May 2008"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-May-08	30-Jun-08	76890.00	=""	="QINETIQ NOVARE PTY LTD"	05-Jun-08 05:32 PM	

+="CN89498"	"VENUE HIRE"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-May-08	30-May-08	68232.45	=""	="SEA WORLD NARA HOTEL PTY LTD"	05-Jun-08 05:33 PM	

+="CN89502"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	72303.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:33 PM	

+="CN89506"	"SUPPLY OF SPILL KITS & REPLENISHMENT OF PARTIAL SPILL KITS"	="Department of Defence"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	06-May-08	30-May-08	77000.00	=""	="GEMINEX PTY LTD"	05-Jun-08 05:34 PM	

+="CN89512"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	76434.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:34 PM	

+="CN89538"	"QUICKLOOK - PEER REVIEW SERVICES"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	31-Jul-08	69699.70	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 05:36 PM	

+="CN89541"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	78500.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89545"	"Continuation of the provision of interface for the  KICASS implementation with Goanna"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	07-May-08	30-Jun-08	68200.00	=""	="ACACIA RESEARCH PTY LTD"	05-Jun-08 05:36 PM	

+="CN89548"	"Provision of Server Hardware including SAN and DR/back-up."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	15-May-08	30-Jun-08	72283.12	=""	="DATACOM SYSTEMS SA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89549"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	67138.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89551"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	79533.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89552"	"SCEC ENDORSED CL.A LGE SHREDDER MODEL 5141CC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	74804.40	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:36 PM	

+="CN89555"	"SKILLED LABOUR RAAF RICHMOND MEOMS"	="Department of Defence"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	07-May-08	26-May-08	66000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:37 PM	

+="CN89558"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	67518.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:37 PM	

+="CN89573"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	77467.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89575"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	75401.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89576"	"SCEC ENDORSED CL.A MED SHREDDER MODEL 2026FCC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	75597.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89578"	"NQ2231 - Combined Mess Emergancy Funding Major Plu"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	80000.00	=""	="SPOTLESS"	05-Jun-08 05:38 PM	

+="CN89581"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-Apr-08	30-Aug-08	65065.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:38 PM	

+="CN89605"	"PROP STUDIES - FORT WALLACE - INFRASTRUCURE ASSESSMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-09	78045.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	05-Jun-08 05:40 PM	

+="CN89609"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-09	66000.00	=""	="ICON RECRUITMENT"	05-Jun-08 05:40 PM	

+="CN89611"	"PROOF & EXPERIMENTAL ESTABLISHMENT REFURBISHMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	67221.57	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:40 PM	

+="CN89617"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	74227.59	=""	="SAGE LEGAL SERVICES PTY LTD"	05-Jun-08 05:41 PM	

+="CN89628"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-10	66000.00	=""	="STAND OUT PROMOTIONS"	05-Jun-08 05:41 PM	

+="CN89662"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	64449.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:43 PM	

+="CN89683"	"LACE - LCPL STEPHEN CARR KOVCO INQUIRY"	="Department of Defence"	05-Jun-08	="Legal services"	18-Apr-08	30-Dec-08	67191.58	=""	="EBSWORTH & EBSWORTH"	05-Jun-08 05:45 PM	

+="CN89694"	"DISIP Stage 3 for DIER 0607-1067"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	27-Jun-08	67373.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:45 PM	

+="CN89701"	"ICT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	67775.02	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	05-Jun-08 05:46 PM	

+="CN89705"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management support services"	29-Nov-07	30-Jun-08	65206.49	=""	="ICON RECRUITMENT"	05-Jun-08 05:46 PM	

+="CN89719"	"PAYMENT TO OFFICIAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	05-Jun-08	="Project management"	26-May-08	30-Jun-10	75366.40	=""	="MARITIME SURVEILLANCE ADVISOR"	05-Jun-08 05:47 PM	

+="CN89721"	"Payment of retention for Lae Plumbers I Invoice No 00070721"	="Department of Defence"	05-Jun-08	="Structural building products"	01-May-08	30-Jun-08	69215.55	=""	="LAE PLUMBING SERVICES LIMITED"	05-Jun-08 05:47 PM	

+="CN89728"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	72072.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89748"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	09-Jun-08	66924.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:49 PM	

+="CN89750"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	61776.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:49 PM	

+="CN89769"	"ADVERTISING"	="Department of Defence"	05-Jun-08	="Office supplies"	30-May-08	30-Jun-08	66000.00	=""	="UNIVERSAL MCCANN"	05-Jun-08 05:50 PM	

+="CN89792"	"681914 (NT1578) Maintenance of Sealed Roads Larrakeyah Barracks"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	63900.00	=""	="PIONEER ROAD SERVICES"	05-Jun-08 05:52 PM	

+="CN89798"	"FACOPS-DEMOLITION OF DERELECT STUCTURES"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	61820.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	05-Jun-08 05:52 PM	

+="CN89812"	"FEES-NORTH PENRITH-KENNARDS ROAD VARIATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	26-May-08	30-Jun-09	66000.00	=""	="KENNARDS SELF STORAGE PTY LTD"	05-Jun-08 05:53 PM	

+="CN89813"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Project management"	28-Mar-08	30-Jun-08	72050.00	=""	="BOHEMIA INTERACTIVE AUSTRALIA"	05-Jun-08 05:53 PM	

+="CN89830"	"Comms/IT"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	62227.00	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:54 PM	

+="CN89832"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	72685.80	=""	="MARIN"	05-Jun-08 05:54 PM	

+="CN89834"	"POC J.Morrison Quotation: JC280410"	="Department of Defence"	05-Jun-08	="Hardware"	26-May-08	16-Jun-08	64383.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:54 PM	

+="CN89880"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	16-Jun-08	67232.01	=""	="MULTIMEDIA CONCEPTS PTY LTD"	05-Jun-08 05:57 PM	

+="CN89896"	"POC: RYAN CLEMENT CONTACT: 02 626 50839"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	68156.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89901"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	65996.70	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:58 PM	

+="CN89904"	"Portable radio & accessories"	="Department of Defence"	05-Jun-08	="Flight communications related systems"	26-May-08	13-Jun-08	64563.18	=""	="MOTOROLA COMMUNICATIONS AUST P / L"	05-Jun-08 05:59 PM	

+="CN89907"	"PAD, ENERGY DISSIPATING, AERIAL DELIVERY, EDM"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	12-May-08	02-Oct-08	70125.00	=""	="PARATECH PTY LTD"	05-Jun-08 05:59 PM	

+="CN89934"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	72701.53	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	05-Jun-08 06:00 PM	

+="CN90008"	"Secure video conferencing equipment"	="Department of Foreign Affairs and Trade"	06-Jun-08	="Information Technology Broadcasting and Telecommunications"	20-May-08	30-Jun-08	62000.00	=""	="SERVICEPOINT AUSTRALIA PTY LIMITED"	06-Jun-08 01:30 PM	

+="CN90019"	"Provision for System tester"	="Comsuper"	06-Jun-08	="Human resources services"	26-May-08	24-Nov-08	74360.00	=""	="Eurolink Consulting"	06-Jun-08 02:34 PM	

+="CN90022-A1"	"Provision for System Tester"	="Comsuper"	06-Jun-08	="Human resources services"	19-Jun-08	25-Jul-08	71400.00	=""	="Eurolink Consulting"	06-Jun-08 02:37 PM	

+="CN90023"	"Provision for System Tester"	="Comsuper"	06-Jun-08	="Human resources services"	24-Jun-08	23-Dec-08	62072.00	=""	="M&T Resources"	06-Jun-08 02:40 PM	

+="CN90024"	"Provision for a System Tester"	="Comsuper"	06-Jun-08	="Human resources services"	26-May-08	24-Nov-08	74360.00	=""	="M&T Resources"	06-Jun-08 02:42 PM	

+="CN90027"	"Provision for System Tester"	="Comsuper"	06-Jun-08	="Human resources services"	26-May-08	24-Nov-08	74360.00	=""	="Macro Recruitment"	06-Jun-08 02:45 PM	

+="CN87634-A3"	"Contractor - Do Not Call Task Force"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	19-May-08	30-Jan-09	72000.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:18 PM	

+="CN87619-A1"	"Contracts Staff - Assests Finance Section"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	26-May-08	26-Nov-08	62000.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:29 PM	

+="CN87425"	"Lease Costs for Six Tandberg Cameras (videoconferencing) period 1/4/08 - 1/10/08"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Videoconferencing facilities"	01-Apr-08	01-Oct-08	79200.00	=""	="ServicePoint Australia Pty Ltd"	06-Jun-08 04:34 PM	

+="CN87422"	"Software Maintenance & Updates for Netcat Content Management System period 1/5/08 - 30/04/09"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Software maintenance and support"	01-May-08	30-Apr-09	73565.00	="06ACMA146"	="Netcat.Biz Pty Ltd"	06-Jun-08 04:43 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to07Jun2008val80000to150000.xls
@@ -1,1 +1,225 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87931"	"CYLINDER AND; PISTON ASSEMBLY, LANDING GEAR NSN 1620/12703196"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	22-May-08	87000.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	05-Jun-08 10:33 AM	

+="CN87951"	"TUBE ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Light weapons and ammunition"	16-May-08	19-Mar-09	137670.11	=""	="NAMMO RAUFOSS A/S"	05-Jun-08 01:02 PM	

+="CN87962"	"POWER SUPPLY & TRANSFORMER"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	17-May-08	15-Nov-08	138191.73	=""	="RELLI TECHNOLOGY INC."	05-Jun-08 01:03 PM	

+="CN87970"	"DLSS/Navy SCA Reconciliation"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	16-May-08	31-May-08	136500.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 01:04 PM	

+="CN87977"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	20-Jun-08	93923.61	=""	="CAMBRIDGE TECHNOLOGIES"	05-Jun-08 01:05 PM	

+="CN87980"	"Scheduler for CSVSPO"	="Defence Materiel Organisation"	05-Jun-08	="Project management"	16-May-08	12-Nov-08	123816.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:05 PM	

+="CN87996"	"DOcumnet Development"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	19-Oct-08	137500.00	=""	="ENVISTA PTY LTD"	05-Jun-08 01:07 PM	

+="CN88014"	"LPA SHIPS - REPLACEMENT OF OWS PLANTS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	19-May-08	24-Jun-08	86676.70	=""	="WILTRADING (WA) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88016"	"LPA SHIPS - REPLACEMENT OF OWS PLANTS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	19-May-08	24-Jun-08	88964.70	=""	="WILTRADING (WA) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88021"	"POC: Lloyd Magner Contact: 02 6266 9353"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	09-Jun-08	128755.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:10 PM	

+="CN88022"	"Procurement of Gimball Rollers"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	19-May-08	30-Jun-08	85654.44	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:11 PM	

+="CN88026"	"PSP Labour in Support of Proj Ech Phase 2A"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	31-Aug-08	94320.72	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 01:11 PM	

+="CN88042"	"Plan & manage the Preparation of Tanks for Surveying & Conducting Thickness Testing - KAN"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	20-Jun-08	86794.14	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:13 PM	

+="CN88062"	"TD 012/07 Intro into Service Training"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	14-May-08	30-Jun-08	148148.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:15 PM	

+="CN88064"	"PAYMENT FOR FLOORSPACE AT EURONAVAL 2008"	="Defence Materiel Organisation"	05-Jun-08	="Lease and rental of property or building"	14-May-08	20-May-08	135500.00	=""	="PICO AUSTRALIA PTY LTD"	05-Jun-08 01:15 PM	

+="CN88089"	"Portable ID System"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	20-Jun-08	92100.03	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 01:19 PM	

+="CN88092"	"40mm Ph2 - milestone"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	09-Sep-08	142353.04	=""	="NOVA AEROSPACE"	05-Jun-08 01:19 PM	

+="CN88100"	"Teamcenter Maintenance  &  Support (to June 20"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	113003.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:20 PM	

+="CN88101"	"Teamcenter Maintenance & Support to June 08"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	136825.70	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:20 PM	

+="CN88104"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	15-May-08	84160.00	=""	="KPMG CORPORATE FINANCE (AUST)"	05-Jun-08 01:20 PM	

+="CN88110"	"WA Periscope Workshop - Activity 05 - Clean Room Cleaning"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	23-May-08	30-Jun-08	97212.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:21 PM	

+="CN88116"	"INSTALLATION & REPLACEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Business administration services"	23-May-08	30-Sep-08	84916.50	=""	="OMEGA TOWER COMMUNICATIONS"	05-Jun-08 01:22 PM	

+="CN88118"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-09	84062.22	=""	="INQUIRION PTY LTD"	05-Jun-08 01:22 PM	

+="CN88129"	"HP EVA4100 STORAGE AREA NETWORK"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	20-Jun-08	139464.82	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 01:23 PM	

+="CN88130"	"Underground cable work to water bore"	="Defence Materiel Organisation"	05-Jun-08	="Electrical wire and cable and harness"	22-May-08	30-Aug-08	130884.11	=""	="CHOICE ELECTRICAL SERVICES (NT)"	05-Jun-08 01:23 PM	

+="CN88141"	"PC9 AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	15-Jan-09	88868.80	=""	="MARTIN BAKER AIRCRAFT CO LTD"	05-Jun-08 01:25 PM	

+="CN88165"	"CARTRIDGE 5.56 SPECIAL BALL"	="Defence Materiel Organisation"	05-Jun-08	="Ammunition"	23-May-08	30-Jun-09	144686.98	=""	="FMS ACCOUNT"	05-Jun-08 01:28 PM	

+="CN88180"	"PURCHASE OF TWO ACOUSTIC TRACKING SYSTEM HYDROPHONE ASSEMBLIES"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	30-Dec-08	109420.97	=""	="THALES AUSTRALIA"	05-Jun-08 01:29 PM	

+="CN88183"	"20mm Ph2 - milestone"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	19-Sep-08	81934.38	=""	="NOVA AEROSPACE"	05-Jun-08 01:30 PM	

+="CN88187"	"PC9 Egress Tech Rec Ph2"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	26-May-08	30-Jul-08	89725.43	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:30 PM	

+="CN88188"	"Replacement ASIC Cable for Prism 111 Radar Detection System"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	30-Nov-08	82277.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:30 PM	

+="CN88211"	"Ford Falcon XL Ute (US) Qty 6"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	24-Oct-08	139863.17	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:33 PM	

+="CN88220"	"Hiolden Statement Sedan (SI) Qty 2"	="Defence Materiel Organisation"	05-Jun-08	="Passenger motor vehicles"	20-May-08	07-Nov-08	80321.36	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:34 PM	

+="CN88225"	"Documnet Development for PH5 1st Pass"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	17-Oct-08	133100.00	=""	="AUSPACE LIMITED"	05-Jun-08 01:35 PM	

+="CN88228"	"VOP for FSFT, AUD, WFO48314970"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	21-May-08	28-Jun-08	130953.25	=""	="BAE SYSTEMS OPERATIONS"	05-Jun-08 01:35 PM	

+="CN88232"	"Advanced Combat Optical Gunsight, Reflex sight and Polarizing Filter"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	22-May-08	10-Sep-08	123375.28	=""	="TRIJICON INC."	05-Jun-08 01:35 PM	

+="CN88235"	"2A Task Close puts"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	22-May-08	26-Jun-08	137559.59	=""	="DARONMONT TECHOLOGIES PTY LTD"	05-Jun-08 01:36 PM	

+="CN88243"	"Build of new Single Access Terminals & Transit Cases"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	104033.08	=""	="THALES AUSTRALIA"	05-Jun-08 01:37 PM	

+="CN88250"	"Supply and installation of cabling services"	="Australian Federal Police"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	14-Jun-08	106574.00	="RFT37-2005"	="Absolute Cabling Systems Pty Ltd"	05-Jun-08 01:38 PM	

+="CN88285"	"Use of Exisitng ASP Contract  - Main Engine Exhaus Valve and Camshaft Drive"	="Defence Materiel Organisation"	05-Jun-08	="Bearings and bushings and wheels and gears"	30-Apr-08	11-Jul-08	102501.30	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:42 PM	

+="CN88297"	"MANUFACTURE NEW POKER GAUGES"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	23-May-08	80658.67	=""	="MADCO"	05-Jun-08 01:43 PM	

+="CN88300"	"Repair and modification of an F/A-18 Hornet, F404 Engine, Electrical Control Assy."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	22-May-08	08-Oct-08	87092.97	=""	="BAE SYSTEMS CONTROLS INC."	05-Jun-08 01:43 PM	

+="CN88311"	"TOWNSVILLE RADOME MAINTENANCE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	06-May-08	01-Jun-08	142137.24	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 01:45 PM	

+="CN88315"	"Training Services"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-May-08	16-May-08	96932.19	=""	="INNOVATIVE CONCEPTS INC"	05-Jun-08 01:45 PM	

+="CN88341"	"TOV-OVENS INSTALL UNDER CM 12 HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	30-May-08	121284.46	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:48 PM	

+="CN88353"	"Main engine exhaust system HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	30-Jun-08	85240.72	=""	="MAN DIESEL AUSTRALIA PTY LTD"	05-Jun-08 01:49 PM	

+="CN88355"	"MHC TACTICAL DATA SYSTEM"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-Dec-08	86692.10	=""	="THALES AUSTRALIA"	05-Jun-08 01:50 PM	

+="CN88360"	"JMO  Services  for Financial year 2007/2008"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	30-Jun-07	02-Feb-08	131902.11	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:50 PM	

+="CN88361"	"PROVIDE SPECIALIST TECHNICAL, LOGISTICAL, PUB'N, DATA MANAGEMENT SUPPORT TO ADF AS350BA PLATFOR"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	29-May-08	31-Jul-08	97799.84	=""	="RAYTHEON AUST PTY LTD"	05-Jun-08 01:50 PM	

+="CN88366"	"ADHOC SERVICES FOR MAINTENANCE OF 10 MAN CHAMBERS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	28-Apr-08	30-Jun-08	120779.99	=""	="H I FRASER PTY LTD"	05-Jun-08 01:51 PM	

+="CN88367"	"Configuration Management and Technical Investigations"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	30-Jun-08	89192.91	=""	="THALES AUSTRALIA"	05-Jun-08 01:51 PM	

+="CN88378"	"PRICE VARIATION"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	29-May-08	30-Jun-08	120230.46	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:53 PM	

+="CN88388"	"External Service Providers"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Sep-08	88200.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 01:54 PM	

+="CN88390"	"PO raised to cover the BAE CCP No 002/2007 to Stan 9207-001-052 for the period 01Jan to 31 Jan 2008."	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	02-Jun-08	13-Jun-08	124463.08	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:54 PM	

+="CN88411"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-08	95326.95	=""	="THALES AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88412"	"Project Support Services"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	22-Apr-08	30-Sep-08	130200.40	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88413"	"CONTRACTOR SUPPORT FOR NROC SITE PREPARATION"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	29-May-08	31-Aug-08	138994.04	=""	="DARONMONT TECHNOLOGIES PTY LTD"	05-Jun-08 01:57 PM	

+="CN88414"	"Satellites Engineering"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	18-Sep-07	31-Dec-08	95040.00	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:57 PM	

+="CN88419"	"THIS ORDER IS RAISED IN ACCORDANCE WITH ATD 54-A."	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	02-Jun-08	16-Jun-08	84798.66	=""	="AUSTRALIAN AEROSPACE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88422"	"PROVISION OF GOVERNMENT FURNISHED EQUIPMENT  FOR E"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-Nov-07	30-Jun-08	110000.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:58 PM	

+="CN88426"	"External Service Providers"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Sep-08	80977.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 01:58 PM	

+="CN88431"	"Anritsu Test Set Antenna in support of HUGPH2.3"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	12-May-08	26-May-08	88347.60	=""	="ANRITSU"	05-Jun-08 01:59 PM	

+="CN88449"	"WA Periscope Workshop - Activity 05 - Clean Room Cleaning"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	115087.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88466"	"ICCM to CATM conversion"	="Defence Materiel Organisation"	05-Jun-08	="Missile subsystems"	13-May-08	14-Sep-09	116044.65	=""	="MBDA MISSILE SYSTEMS"	05-Jun-08 02:03 PM	

+="CN88479"	"Transmission Mech. 011440224 po OA3CEC Payment for workshop order (SDSS)"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	13-May-08	13-May-08	81920.95	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:05 PM	

+="CN88486"	"MHC GYRO REFERENCE SET SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	13-May-08	30-Jun-08	96697.28	=""	="THALES AUSTRALIA"	05-Jun-08 02:05 PM	

+="CN88490"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AUTOMOTIVE FUEL (ADF), TO VARIOUS ARMY VESSELS, WHILE IN GOVE"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	12-May-08	30-May-08	118800.00	=""	="PERKINS SHIPPING GOVE"	05-Jun-08 02:06 PM	

+="CN88492"	"SDSS Data Extraction and Reporting"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	12-May-08	27-Jun-08	113400.00	=""	="DIMENSION DATA LEARNING"	05-Jun-08 02:06 PM	

+="CN88508"	"Create/Amend New Test Pprocedures for SSDG, Post Upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	09-May-08	30-Jun-08	94757.92	=""	="THALES AUSTRALIA"	05-Jun-08 02:08 PM	

+="CN88509"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	07-May-08	30-Jun-08	85000.01	=""	="BLAKE DAWSON WALDRON"	05-Jun-08 02:08 PM	

+="CN88510"	"Servers"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	04-Jun-08	88000.00	=""	="SUN MICROSYSTEMS"	05-Jun-08 02:08 PM	

+="CN88512"	"LIFE OF TYPE COMPUTER HARDWARE PURCHASE"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	07-May-08	30-Jun-08	139906.22	=""	="RAYTHEON AUSTRALIA PTY LTD"	05-Jun-08 02:08 PM	

+="CN88525"	"BLANKET ORDER RAISED FOR THE SUPPLY OF DIESEL FUEL **"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	08-May-08	30-May-08	93500.00	=""	="CGL FUEL PTY LTD"	05-Jun-08 02:10 PM	

+="CN88527"	"WASTE WATER REMOVAL, STANDING OFFER 9805-050-033."	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	08-May-08	09-May-08	86238.68	=""	="TASMAN AVIATION ENTERPRISES"	05-Jun-08 02:10 PM	

+="CN88528"	"PROVISION OF EARNED VALUE MANAGEMENT (EVM) SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Management advisory services"	07-May-08	30-Sep-08	95200.00	=""	="SYPAQ SYSTEMS PTY LTD"	05-Jun-08 02:10 PM	

+="CN88557"	"EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	09-May-08	30-Jun-08	107800.00	=""	="FLECKNOE PTY LTD"	05-Jun-08 02:14 PM	

+="CN88581"	"1201-3 TU-ASSC 400Hz 25KVA and 5KVA Static Frequency Coverter Relocation"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-09	105600.00	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:17 PM	

+="CN88603"	"SUBSCRIPTIONS MAY 2008"	="Administrative Appeals Tribunal"	05-Jun-08	="Printed media"	29-Apr-08	31-May-09	92752.18	=""	="LEXISNEXIS"	05-Jun-08 02:53 PM	

+="CN88633"	"An Even Start- National Tuition Program Program Administrator Services, NT Independent"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	05-May-08	31-Mar-09	101667.00	="PRN17026"	="ASSOCIATION OF INDEPENDENT SCHOOLS"	05-Jun-08 03:11 PM	

+="CN88651-A4"	" Provision of social policy research services - STINMOD development, maintenance and research services "	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Strategic planning consultation services"	01-Jul-07	30-Jun-11	141181.00	="PRN18230"	="UNIVERSITY OF CANBERRA"	05-Jun-08 03:15 PM	

+="CN88678"	" Consultancy regarding Google search appliance (WD007) "	="Australian Taxation Office"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	11-Jul-08	89525.00	=""	="The Hiser Group Pty Ltd"	05-Jun-08 04:32 PM	

+="CN88682"	"NATIONAL AUDIT, BULK FUEL FARM."	="Department of Defence"	05-Jun-08	="Environmental management"	13-May-08	30-Jun-08	122707.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:45 PM	

+="CN88686"	"structural assessment"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	13-May-08	30-Jun-08	97500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:46 PM	

+="CN88741"	"SUBSCRIPTION COSTS"	="Department of Defence"	05-Jun-08	="Paper Materials and Products"	14-May-08	25-Nov-09	132800.28	=""	="TAYLOR & FRANCIS"	05-Jun-08 04:54 PM	

+="CN88742"	"SUBSCRIPTION RENEWAL TO PROQUEST"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	01-Jun-08	111842.82	=""	="PROQUEST LLC"	05-Jun-08 04:54 PM	

+="CN88744"	"POC: Heather Stevens 02 6127 7309"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-Jun-09	133436.16	=""	="BRENTNALL SERVICES PTY LTD"	05-Jun-08 04:54 PM	

+="CN88746"	"DSG-NQ-TS GAP YEAR FURNITURE BLD 415 & 315"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	88886.16	=""	="EMPIRE BUSINESS FURNITURE"	05-Jun-08 04:55 PM	

+="CN88749"	"CTD Project - Antenna Selction Reports"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	16-Jun-08	98076.00	=""	="JENKINS ENGINEERING DEFENCE"	05-Jun-08 04:55 PM	

+="CN88759"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	99000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 04:57 PM	

+="CN88769"	"Annual Software maintenance"	="Department of Defence"	05-Jun-08	="Software"	19-May-08	30-Jun-08	89524.24	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 04:58 PM	

+="CN88774"	"JDSSC support to JP2048 Phase 4C"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	14-May-08	27-Jun-08	113916.25	=""	="CAE PROFESSIONAL SERVICES"	05-Jun-08 04:58 PM	

+="CN88780"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	96836.11	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 04:58 PM	

+="CN88784"	"Supply of Computer Modeller"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-09	101178.00	=""	="YTEK PTY LTD"	05-Jun-08 04:58 PM	

+="CN88788"	"RECRUITMENT OF CHIEF DEFENCE SCIENTIST"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	21-May-08	15-Aug-08	101810.64	=""	="WATERMARK SEARCH INTERNATIONAL"	05-Jun-08 04:59 PM	

+="CN88789"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	99360.89	=""	="SUN MICROSYSTEMS"	05-Jun-08 04:59 PM	

+="CN88792"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Oct-08	137499.99	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 04:59 PM	

+="CN88797"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	06-Oct-08	125905.00	=""	="PS MANAGEMENT CONSULTANTS"	05-Jun-08 04:59 PM	

+="CN88800"	"KOBRA 400HS-OM 'COMBI SHREDDER"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	13-May-08	10-Jun-08	112898.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 04:59 PM	

+="CN88802"	"Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	02-Jan-09	132464.67	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 04:59 PM	

+="CN88806"	"SOPVET STRATCOMMS TNA"	="Department of Defence"	05-Jun-08	="Specialised educational services"	13-May-08	30-Jun-08	92481.60	="RFSOP013-HQ06"	="CONNELL WAGNER VIC PTY LTD"	05-Jun-08 04:59 PM	

+="CN88816"	"HGCEPP 351-08 HGCEPP 352-08"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	31-Oct-08	81109.77	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:00 PM	

+="CN88818"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	13-May-08	92538.02	=""	="RECEIVER GENERAL FOR CANADA"	05-Jun-08 05:00 PM	

+="CN88841"	"Maritime Structures, Ongoing Structural Repairs Whole of life inspections, maintenance, and repair"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	20-May-08	30-Jun-08	99761.70	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:01 PM	

+="CN88850"	"DIEP 0708-P025"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-May-08	86061.53	=""	="THIESS PTY LTD"	05-Jun-08 05:02 PM	

+="CN88860"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	98670.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:02 PM	

+="CN88862"	"S5153, WR 300067217. Upgrade and undertake alterat Operations room  &  adjacent"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	81145.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:02 PM	

+="CN88899"	"Professional ADF Aviators Reference Manual (PAARM) Delivery Schedule - Edition 2."	="Department of Defence"	05-Jun-08	="Published Products"	19-May-08	30-Jun-08	141411.67	=""	="AVIATION THEORY CENTRE PTY LTD"	05-Jun-08 05:04 PM	

+="CN88908"	"Scanners"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	02-Jun-08	128990.40	=""	="OFFICEMAX AUSTRALIA LTD"	05-Jun-08 05:04 PM	

+="CN88943"	"IDS Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	31-May-08	134749.78	=""	="INGEGNERIA DEI SISTEMI SPA"	05-Jun-08 05:06 PM	

+="CN88981"	"ASA APPLIANCE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	98109.08	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:08 PM	

+="CN88991"	"TS VIDCON INSTALLATION"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	22-May-08	30-Jun-08	116347.00	=""	="AVPRO"	05-Jun-08 05:08 PM	

+="CN88998"	"PSP FOR RELOCATION OF HOUSING OPERATIONS TEAM FOR 12 MOTH PERIOD"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	108900.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	05-Jun-08 05:08 PM	

+="CN89018"	"PROVISION OF HARDWARE"	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	22-May-08	30-Jun-08	119572.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:09 PM	

+="CN89048"	"provision of 4 x 20ft containers for use as site office for the AACAP 2008 project"	="Department of Defence"	05-Jun-08	="Containers and storage"	22-May-08	30-Jun-08	127174.30	=""	="SEA BOX INTERNATIONAL PTY LTD"	05-Jun-08 05:10 PM	

+="CN89049"	"HMAS CRESWELL HERITAGE MANAGEMENT DOCUMENTATION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	96325.90	=""	="ENVIRONMENTAL RESOURCES"	05-Jun-08 05:11 PM	

+="CN89055"	"FEES - JEZZINE BARRACKS - COMMUNICATIONS CONSULTAN  VARIOUS PROJECTS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-09	136400.00	=""	="THE PHILLIPS GROUP"	05-Jun-08 05:11 PM	

+="CN89058"	"Supply of Analyst Programmer - Level 3"	="Department of Defence"	05-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-May-08	30-Jun-09	111622.50	=""	="YTEK PTY LTD"	05-Jun-08 05:11 PM	

+="CN89061"	"Supply of fresh rations"	="Department of Defence"	05-Jun-08	="Prepared and preserved foods"	20-May-08	30-Jun-08	122000.00	=""	="WOOLWORTHS SA DIVISION"	05-Jun-08 05:11 PM	

+="CN89065"	"681915 (NT1653) Land Monitoring and Remediation at MBTA"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	07-May-08	30-Jun-08	87008.00	=""	="ASSET SERVICES"	05-Jun-08 05:11 PM	

+="CN89066"	"Human Factors Risk assessment contract"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	22-May-08	19-Sep-08	136350.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:11 PM	

+="CN89067"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	31-May-08	101464.00	=""	="COMMSNET GROUP PTY LTD"	05-Jun-08 05:11 PM	

+="CN89094"	"Concept Project"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	13-Jun-08	110000.00	=""	="ENTECHO PTY LTD"	05-Jun-08 05:13 PM	

+="CN89096"	"Class A fordigraph shredder model 1324CCC"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	22-May-08	20-Jun-08	83391.00	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89109"	"Research Contract"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	31-Mar-09	133244.42	=""	="MINISTRY OF DEFENCE, DSTL"	05-Jun-08 05:13 PM	

+="CN89114"	"Consultancy"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	21-May-08	20-Sep-08	138399.64	=""	="ALLEN CONSULTING GROUP"	05-Jun-08 05:13 PM	

+="CN89115"	"Contract for Toxic Gas Monitoring System"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	07-May-08	30-May-08	140910.00	="2008-1012630"	="BIOLAB (AUST) PTY LTD"	05-Jun-08 05:13 PM	

+="CN89119"	"dental services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	20-May-08	31-Jul-09	90000.00	=""	="SCOTT MEDICAL SERVICES PTY LTD"	05-Jun-08 05:14 PM	

+="CN89138"	"Services of Mechanical Engineer -"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	19-May-08	30-Jun-09	88352.88	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:14 PM	

+="CN89145"	"For Site Integration Services for 8 DIERS as liste"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	133111.49	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:15 PM	

+="CN89151"	"CONTACT TONY BUTLER 08 8935 4625."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	109776.70	=""	="ASSET SERVICES"	05-Jun-08 05:15 PM	

+="CN89152"	"PROVISION OF HIGH END WORKSTATIONS"	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	22-May-08	30-Jun-08	134640.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89166"	"CONTACT KYLIE HARVEY 08 8935 4695."	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	85180.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:16 PM	

+="CN89167"	"ROAD CHTR EX HIGH SIERRA MOVT OF 2OCU EQUIP"	="Department of Defence"	05-Jun-08	="Product and material transport vehicles"	22-May-08	01-Jul-08	96175.00	=""	="NORTHLINE PTY LTD"	05-Jun-08 05:16 PM	

+="CN89168"	"BUSINESS SUPPORT SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	22-Dec-08	88199.11	=""	="ROSSLOGIC PTY LTD"	05-Jun-08 05:16 PM	

+="CN89171"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	118668.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:16 PM	

+="CN89175"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	31-Oct-08	146190.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:16 PM	

+="CN89177"	"ICT peripherals"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	25-Jun-08	98590.80	=""	="DIGICOR (NSW) LTD"	05-Jun-08 05:16 PM	

+="CN89181"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	01-Aug-08	94050.00	=""	="ACUMEN ALLIANCE"	05-Jun-08 05:16 PM	

+="CN89184"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Aug-08	144837.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:17 PM	

+="CN89195"	"SN0647 HARM U010 - Upgrade External Lighting"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	93529.70	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:17 PM	

+="CN89202"	"FTIR Gas Analyster"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	23-Jun-08	98379.00	=""	="PERKIN ELMER PTY LTD"	05-Jun-08 05:17 PM	

+="CN89209"	"MINISTERIAL SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	06-May-08	121189.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:18 PM	

+="CN89222"	"HQJOC PROKECY - XSI TECHNOLOGY (BACKUP TAPE DRIVE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	90288.00	=""	="XSI TECHNOLOGY"	05-Jun-08 05:18 PM	

+="CN89224"	"Purchasing Fax Server Kit - includes PCI card, sof OnePAC."	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-Jun-08	83343.70	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 05:18 PM	

+="CN89255"	"RECRUITMENT SERVICES"	="Department of Defence"	05-Jun-08	="Personnel recruitment"	15-May-08	15-May-08	94254.16	=""	="HAYS PERSONNEL SERVICES"	05-Jun-08 05:20 PM	

+="CN89262"	"TRAINING AIDS"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	09-May-08	30-Jun-08	95600.00	=""	="MILSKIL PTY LTD"	05-Jun-08 05:20 PM	

+="CN89277"	"Site Integration Services 7 DIERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	130435.76	=""	="KAZ GROUP PTY LTD"	05-Jun-08 05:21 PM	

+="CN89278"	"DISIP Stage 3 Site Integration Services for DIERS 0708--756"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	15-Jul-08	126890.40	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	05-Jun-08 05:21 PM	

+="CN89283"	"Technical Contact: R Ward Ph: 08 8393 3233"	="Department of Defence"	05-Jun-08	="General building construction"	08-May-08	30-Oct-08	94710.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:21 PM	

+="CN89289"	"SUBSCRIPTION"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	08-May-08	20-May-08	81525.05	=""	="STRATEGIC FORECASTING INC"	05-Jun-08 05:21 PM	

+="CN89291"	"SUBSCRIPTION TO NEWS AND MILITARY ARCHIVES"	="Department of Defence"	05-Jun-08	="Management support services"	15-May-08	01-Jul-08	126619.00	=""	="LEXIS NEXIS"	05-Jun-08 05:21 PM	

+="CN89302"	"CONSULTANCY SERVICE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	149457.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89303"	"EFFECIENCY AND EFFECTIVENESS REVIEW"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	141881.30	=""	="ERNST & YOUNG TRANS ADVISORY"	05-Jun-08 05:22 PM	

+="CN89308"	"HP SOFTWARE"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	30-May-09	131666.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89325"	"Provision of  sensus data"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	20-May-08	87030.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	05-Jun-08 05:23 PM	

+="CN89362"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-Jun-08	83490.00	=""	="FLIR SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89366"	"POC: C.Vagi 02 6127 7300 Bid Number: 8001135/1137"	="Department of Defence"	05-Jun-08	="Hardware"	01-May-08	29-May-08	131525.96	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:25 PM	

+="CN89371"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	31-May-08	85800.00	=""	="HITACHI DATA SYSTEMS"	05-Jun-08 05:25 PM	

+="CN89372"	"S5113, WR 300081545. Hire access equipment for the below and around the Hammer Head Crane."	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	96456.18	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:25 PM	

+="CN89375"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	90842.93	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:25 PM	

+="CN89377"	"NetApp Server"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-May-08	96074.86	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89394"	"Supply a PABX System for Wollongong Hydro Graphic"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	104848.70	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 05:26 PM	

+="CN89395"	"REPORTING"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jul-08	104500.00	=""	="JEPPESEN AUSTRALIA"	05-Jun-08 05:26 PM	

+="CN89397"	"AIR 5418:FOLLOW-ON STAND OFF WEAPON FCY. PROVIDE PROJECT CONSULTANCY FOR DELIVERY OF THE FO"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-09	93431.80	=""	="CONNELL WAGNER PTY LTD"	05-Jun-08 05:26 PM	

+="CN89403"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	02-Jun-08	137306.75	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:27 PM	

+="CN89404"	"Synchrotron Science Tasks as per Research Agreemen 2008/1011595/1"	="Department of Defence"	05-Jun-08	="Military science and research"	14-May-08	30-Jun-09	88000.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:27 PM	

+="CN89408"	"NQ2222 - Lavarack Barracks - Western Mess Chiller Replacement."	="Department of Defence"	05-Jun-08	="Industrial refrigeration"	14-May-08	30-Jun-08	126308.99	=""	="SPOTLESS"	05-Jun-08 05:27 PM	

+="CN89431"	"Mainframe Engineer"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	102080.00	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 05:29 PM	

+="CN89444"	"Release 2.0.28 Part 2"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	15-Aug-08	127591.05	="CIOG307/08"	="UXC LIMITED"	05-Jun-08 05:30 PM	

+="CN89448"	"Computer Servers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-May-08	127838.59	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:30 PM	

+="CN89456"	"SCEC ENDORSED CL.A SMALL SHREDDER MODEL 1324CC INCLUDES DELIVERY INSTALLATION & STARTUP KIT"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	15-May-08	13-Jun-08	83391.00	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:30 PM	

+="CN89460"	"IXOS UPGRADE"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	07-May-08	82351.50	=""	="CSC AUSTRALIA PTY LTD"	05-Jun-08 05:31 PM	

+="CN89461"	"EQUIPMENT HIRE"	="Department of Defence"	05-Jun-08	="Prefabricated structures"	16-May-08	04-Jun-08	95866.10	=""	="STAGING CONNECTIONS AUSTRALIA"	05-Jun-08 05:31 PM	

+="CN89503"	"Army Aviation Engineering Officer Alignment Course"	="Department of Defence"	05-Jun-08	="Military rotary wing aircraft"	16-May-08	31-Dec-08	120462.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	05-Jun-08 05:33 PM	

+="CN89518"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-May-08	92099.02	=""	="AGILENT TECHNOLOGIES AUSTRALIA PTY"	05-Jun-08 05:34 PM	

+="CN89523"	"REPLACE JOS ELECTRONIC EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	16-May-08	30-Jun-08	115758.57	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:35 PM	

+="CN89543"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	23-Jul-09	93308.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:36 PM	

+="CN89557"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	23-Jul-09	139961.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:37 PM	

+="CN89578"	"NQ2231 - Combined Mess Emergancy Funding Major Plu"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	80000.00	=""	="SPOTLESS"	05-Jun-08 05:38 PM	

+="CN89589"	"RAAF DARWIN : FUEL EQUIPMENT MAINTENANCE SECTION."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	105181.44	=""	="JOHN HOLLAND PTY LTD"	05-Jun-08 05:39 PM	

+="CN89599"	"PROP STUDIES - FORT WALLACE - ENVIRONMENTAL"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	114816.24	=""	="SMEC AUSTRALIA"	05-Jun-08 05:39 PM	

+="CN89608"	"NQ21581 - RAAF Townsville 5AVN LSS - Temporary Tra"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	82500.00	=""	="SPOTLESS"	05-Jun-08 05:40 PM	

+="CN89624"	"ADVERTISING"	="Department of Defence"	05-Jun-08	="Advertising"	23-May-08	30-Jun-08	121708.40	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:41 PM	

+="CN89637"	"CONSULTANCY"	="Department of Defence"	05-Jun-08	="Published Products"	29-May-08	30-Jun-08	113166.68	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:42 PM	

+="CN89647"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Electronic reference material"	15-Jan-08	31-May-08	104270.82	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:43 PM	

+="CN89685"	"LACE - LCPL STEPHEN CARR KOVCO INQUIRY"	="Department of Defence"	05-Jun-08	="Legal services"	29-Apr-08	30-Dec-08	95178.04	=""	="CLAYTON UTZ"	05-Jun-08 05:45 PM	

+="CN89704"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-08	93936.08	=""	="INSITEC"	05-Jun-08 05:46 PM	

+="CN89706"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	82181.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89708"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	89001.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89716"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	92664.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89734"	"For DISIP Stage 3 Site Integration Services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	01-Sep-08	106479.31	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 05:48 PM	

+="CN89744"	"DEVELOP PROJECT PLAN FOR THE NATIONAL IMPLENTATION OF ADF INTEGRATED PEOPLE SUPPORT MODEL"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-08	85000.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89747"	"KOSA project management"	="Department of Defence"	05-Jun-08	="Professional engineering services"	30-May-08	30-Jun-08	143151.38	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:49 PM	

+="CN89754"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Sep-08	88500.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	05-Jun-08 05:49 PM	

+="CN89755"	"Support for the Vital Planning and Analysis (VIPS)"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	89760.00	=""	="CONSUNET PTY LTD"	05-Jun-08 05:49 PM	

+="CN89767"	"RANDWICK DISPOSAL  &  RATIONALISATION PROJECT OPENED NEW PO BECAUSE ROMAN PREVEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	07-May-08	30-Jun-08	128480.39	=""	="GHD PTY LTD"	05-Jun-08 05:50 PM	

+="CN89775"	"Project Management Fees"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	30-May-08	30-Jun-08	143000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	05-Jun-08 05:51 PM	

+="CN89779"	"TSS Contract Firing Officer for High Explosives Firing Comples WSD"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Jun-08	30-Jun-08	104346.00	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:51 PM	

+="CN89782"	"Consultancy"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	26-May-08	30-Jun-08	94490.00	=""	="CONCENTRIC ASIA PACIFIC"	05-Jun-08 05:51 PM	

+="CN89789"	"AIR CHTR OP SLIPPER MRE"	="Department of Defence"	05-Jun-08	="Aircraft"	29-Apr-08	28-May-08	94999.99	=""	="STRATEGIC AVIATION - USD"	05-Jun-08 05:51 PM	

+="CN89800"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	110757.33	=""	="MINTER ELLISON"	05-Jun-08 05:52 PM	

+="CN89831"	"UTILISATION OF THE ENTERPRIZE EM ENERGY DATA PROCESSING SYSTEM WITHIN THE DEFENCE ENERGY"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	132000.00	=""	="ENERGETICS PTY LTD"	05-Jun-08 05:54 PM	

+="CN89844"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-Jun-08	108454.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 05:55 PM	

+="CN89848"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	10-Jun-08	97447.55	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:55 PM	

+="CN89854"	"FACOPS"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	26-May-08	30-Jun-08	122298.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:55 PM	

+="CN89877"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	02-Jun-08	30-Jun-08	90190.00	=""	="CLAYTON UTZ"	05-Jun-08 05:57 PM	

+="CN89879"	"PM fee refit Gladstone St, Fyshwick"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	120120.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:57 PM	

+="CN89889"	"UPGRADE OF 16 RAIL WAGONS & ACCOMMODATION CAR"	="Department of Defence"	05-Jun-08	="Locomotives and electric trolleys"	12-Nov-07	30-Jun-08	121294.80	=""	="BLUEBIRD RAIL OPERATIONS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89895"	"PSP TO FINALISE AND IMPLEMENT THE DEFENCE ENE"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	84700.00	=""	="ENERGETICS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89917"	"PROVISION OF SERVICES FOR A CTD PROJECT"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	12-May-08	30-Jun-08	95700.00	=""	="AGENT ORIENTED SOFTWARE PTY LTD"	05-Jun-08 05:59 PM	

+="CN89921"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	86032.10	=""	="EMC GLOBAL HOLDINGS"	05-Jun-08 06:00 PM	

+="CN89932"	"Software Maintenance"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	16-Mar-09	100980.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	05-Jun-08 06:00 PM	

+="CN89939"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-09	109248.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 06:01 PM	

+="CN89961"	"Survey of Community Self Perceptions"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	82500.00	=""	="EUREKA STRATEGIC RESEARCH"	05-Jun-08 06:02 PM	

+="CN89968"	"Storage Hardware"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	20-Jun-08	135399.23	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	05-Jun-08 06:03 PM	

+="CN89971"	"SUPPLY OF POLIOMYELITIS VACCINE"	="Defence Materiel Organisation"	06-Jun-08	="Poliovirus vaccine"	21-May-08	30-Jun-08	99000.00	="N/A"	="SANOFI PASTEUR"	06-Jun-08 08:00 AM	

+="CN89972"	"SUPPLY OF DIPHTHERIA AND TETANUS VACCINE"	="Defence Materiel Organisation"	06-Jun-08	="Diptheria and tetanus toxoids and acellular pertussis vaccine"	27-May-08	30-Jun-08	125300.00	="N/A"	="CSL BIOTHERAPIES"	06-Jun-08 08:06 AM	

+="CN90006"	"Supply and installation of Electronic Access Control System"	="Department of Human Services"	06-Jun-08	="Security and control equipment"	31-Mar-08	18-Apr-08	87154.00	=""	="Secom Technical Services Pty Ltd"	06-Jun-08 01:07 PM	

+="CN90034"	"Provision for licence support"	="Comsuper"	06-Jun-08	="Software"	14-May-08	14-May-11	97085.98	=""	="Data #3 Pty Ltd"	06-Jun-08 03:00 PM	

+="CN90048"	"Relocation of Mint equipment and storage facilities."	="Royal Australian Mint"	06-Jun-08	="Relocation services"	29-Apr-08	29-Apr-08	87232.37	=""	="TOLL TRANSITIONS"	06-Jun-08 03:43 PM	

+="CN90051"	"Relocation of Mint equipment and storage facilities."	="Royal Australian Mint"	06-Jun-08	="Relocation services"	30-Apr-08	30-Apr-08	92452.10	=""	="Toll Transitions"	06-Jun-08 03:49 PM	

+="CN87311-A3"	" Temporary Personell Service for Do Not Call Taskforce "	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	16-Apr-08	30-Jan-09	84400.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:45 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to09Jun2008val0to12000.xls
@@ -1,1 +1,185 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87889"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10457.96	=""	="LANDROVER"	05-Jun-08 08:03 AM	

+="CN87891"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10756.98	=""	="LANDROVER"	05-Jun-08 08:13 AM	

+="CN87895"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	03-Jul-08	10749.72	=""	="LAND ROVER AUSTRALIA"	05-Jun-08 08:25 AM	

+="CN87899"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	28-Apr-08	28-Apr-11	10908.36	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:19 AM	

+="CN87907"	"PARTS FOR UNIMOGS"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Jun-08	30-Jun-08	11626.74	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	05-Jun-08 10:01 AM	

+="CN87913"	"Melbourne Airport Fitout - Cabling"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Computer Equipment and Accessories"	22-Oct-07	30-May-08	11710.40	=""	="ABSOLUTE CABLING SYSTEMS PTY LTD"	05-Jun-08 10:16 AM	

+="CN87972"	"flushing equipment"	="Defence Materiel Organisation"	05-Jun-08	="Guided missiles"	16-May-08	30-Jun-08	10833.24	=""	="MADCO"	05-Jun-08 01:05 PM	

+="CN87974"	"PMS7617 in both Main Engines 1000hr"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	11244.48	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87997"	"SUPPLY & INSTALL CCTV KEYBOARDS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	20-May-08	23-May-08	10879.00	=""	="WESTERN ADVANCE PTY LTD"	05-Jun-08 01:07 PM	

+="CN87999"	"Freight Costs"	="Defence Materiel Organisation"	05-Jun-08	="Transportation components and systems"	20-May-08	30-Jun-08	11000.00	=""	="TOLL NORTH PTY LTD"	05-Jun-08 01:08 PM	

+="CN88076"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	16-May-08	20-Jul-08	11884.61	=""	="EXCALIBUR SYSTEMS INC."	05-Jun-08 01:17 PM	

+="CN88109"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:21 PM	

+="CN88114"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	23-May-08	30-Jun-08	10000.00	=""	="MINTER ELLISON"	05-Jun-08 01:22 PM	

+="CN88121"	"Conduct disposal service of obsolete inventory at"	="Defence Materiel Organisation"	05-Jun-08	="Transportation services equipment"	23-May-08	30-Jun-08	10000.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	05-Jun-08 01:22 PM	

+="CN88127"	"Ongoing Security Cost at APA facility in accordance with DSA report"	="Defence Materiel Organisation"	05-Jun-08	="Security and control equipment"	23-May-08	30-Jun-09	10939.50	=""	="ASIA PACIFIC AEROSPACE"	05-Jun-08 01:23 PM	

+="CN88137"	"Hire of Aircraft for training"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	22-May-08	30-Jun-08	11700.00	=""	="MICROFLITE HELICOPTER SERVICES"	05-Jun-08 01:24 PM	

+="CN88157"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	26-May-08	30-Nov-08	10744.45	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:27 PM	

+="CN88172"	"POC: SHANE FINN CONTACT: 02 626 50601"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	10038.60	=""	="DIAMOND AUSTRALIA PTY LTD"	05-Jun-08 01:28 PM	

+="CN88181"	"STRIVING FOR SUCCESS - PERSONAL GROWTH & CONFIDENC WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	26-May-08	30-Jun-08	11530.20	=""	="LEARNING HEIGHTS"	05-Jun-08 01:29 PM	

+="CN88209"	"REPAIR OF CIT"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	20-May-08	01-Oct-08	10601.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:33 PM	

+="CN88236"	"provide blast equipment safety training and conduc contractor blast equipment inspection"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	22-May-08	27-May-08	10120.00	=""	="BLASTMASTER"	05-Jun-08 01:36 PM	

+="CN88255"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	10608.02	=""	="BRISBANE CONVENTION & EXHIBITION"	05-Jun-08 01:38 PM	

+="CN88257"	"1199 OVOID RING RHIB LIFTING ARRANGEMENT TRIAL"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	10445.48	=""	="BAKER & PROVAN PTY LTD"	05-Jun-08 01:38 PM	

+="CN88279"	"OVERHAUL AFFF VALVES - HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-May-08	20-Jun-08	10115.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88302"	"INSTALL MODULES HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	28-May-08	30-May-08	10180.72	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	05-Jun-08 01:44 PM	

+="CN88304"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	10-Apr-08	30-Jun-08	11235.10	=""	="THALES AUSTRALIA"	05-Jun-08 01:44 PM	

+="CN88313"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	05-Jun-08	="Surveillance and detection equipment"	06-May-08	30-Jun-08	10497.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:45 PM	

+="CN88340"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	02-Jun-08	10164.00	=""	="THALES AUSTRALIA"	05-Jun-08 01:48 PM	

+="CN88363"	"HMAS TOOWOOMBA SRA01/IMAV02 CONTAINER HIRE"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-Jul-07	30-Jun-08	11388.30	=""	="CONTAINER REFRIGERATION PTY LTD"	05-Jun-08 01:51 PM	

+="CN88377"	"LEASE VEHICLE"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	12-Nov-07	12-Oct-08	11714.32	=""	="DAS FLEET"	05-Jun-08 01:53 PM	

+="CN88379"	"Installation of Remote C+M Monitor on the Gangway"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	10643.51	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:53 PM	

+="CN88394"	"HULL SURVEY HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-May-08	11220.00	=""	="VIKING MARINE SURVEYS PTY LTD"	05-Jun-08 01:55 PM	

+="CN88432"	"FURNITURE PROCUREMENT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-May-08	20-Jun-08	10019.60	=""	="OFFICELINE"	05-Jun-08 01:59 PM	

+="CN88447"	"SA Periscope Workshop"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	11561.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88448"	"Procurement of hand tools and cases"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	10120.03	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:01 PM	

+="CN88481"	"Clevis, Rod End"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	14-May-08	10-Dec-08	10896.84	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:05 PM	

+="CN88498"	"POWER CABLE ASSY"	="Defence Materiel Organisation"	05-Jun-08	="Apparel and Luggage and Personal Care Products"	13-May-08	13-Oct-08	11554.30	=""	="ITT CORPORATION DBA I T T NIGHT VIS"	05-Jun-08 02:07 PM	

+="CN88502"	"Dell Workstation"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	10102.05	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 02:07 PM	

+="CN88511"	"VARIOUS TOOLS IN SUPPORT OF NAVY'S 723 SQUADRON AS350BA SQUIRREL HELICOPTER FLEET, HMAS ALBATRO"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	07-May-08	16-Jun-08	10674.52	=""	="SNAP ON TOOLS (AUST) PTY LTD"	05-Jun-08 02:08 PM	

+="CN88520"	"GET Brand ISA  NTDS Circuit Cards"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	08-May-08	30-Jun-08	11033.00	=""	="UNITRONIX PTY LTD"	05-Jun-08 02:10 PM	

+="CN88544"	"4517.08 - UPDATE FFH DOCKING DRAWING TENIX HENDERSON"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	07-May-08	30-May-08	10477.50	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 02:12 PM	

+="CN88546"	"HMAS Brunei In-Water Hull Survey"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	07-May-08	30-Jun-08	11726.55	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:13 PM	

+="CN88588"	"    Official travel to europe    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	20-May-08	20-May-08	10051.28	=""	="QANTAS"	05-Jun-08 02:30 PM	

+="CN88591"	"    Airfares for travel to London and Geneva for meetings of GRSP Informal group on Child Restraint Systems    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	13-May-08	13-May-08	10209.62	=""	="QANTAS"	05-Jun-08 02:36 PM	

+="CN88593"	"    International airfare travelling to Washington DC on 29 May 2008 - as spouse of First Secretary.     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10468.75	=""	="QANTAS"	05-Jun-08 02:41 PM	

+="CN88595"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 156/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	25-May-08	11830.00	=""	="KELLSTROM AUSTRALIA PTY LTD"	05-Jun-08 02:44 PM	

+="CN88596"	"    International airfare travelling to Washington DC as First Secretary (2 May 2008).     "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	05-May-08	05-May-08	10522.98	=""	="QANTAS"	05-Jun-08 02:47 PM	

+="CN88597"	"TUBE, CENTER NSN 4710/008870367"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	09-Jun-08	10955.20	=""	="FLITE PATH PTY LTD"	05-Jun-08 02:49 PM	

+="CN88598"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:50 PM	

+="CN88599"	"    Overseas airfare    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	09-May-08	09-May-08	11329.81	=""	="HRG Australia"	05-Jun-08 02:53 PM	

+="CN88607"	"CUSHION, COVER, PIN NSN 1680/661413332"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	07-Jul-08	10450.00	=""	="FLITE PATH PTY LTD"	05-Jun-08 03:00 PM	

+="CN88618"	"Moderation Project Meeting- Accommodation and venue hire"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Hotels and lodging and meeting facilities"	26-May-08	30-Jun-08	11140.00	="PRN19486"	="OAKS ON COLLINS"	05-Jun-08 03:05 PM	

+="CN88648"	"NUT AND PIN NSN 1610/008870223"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	27-May-08	10866.00	=""	="MILSPEC SERVICES PTY LTD"	05-Jun-08 03:14 PM	

+="CN88673"	" Professional Development "	="Australian Electoral Commission"	05-Jun-08	="Education and Training Services"	08-May-08	08-Jun-08	11825.00	=""	="Australian Public Service Commission"	05-Jun-08 04:18 PM	

+="CN88679"	"REPAIR - ENGINE BUILT-UP UNIT, AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	18-Jun-08	10425.30	=""	="Qantas Defence Services PTY LTD"	05-Jun-08 04:31 PM	

+="CN88691"	"ANALOGUE HANDSETS"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-May-08	11629.53	=""	="INTERQUARTZ (A'ASIA) PTY LTD"	05-Jun-08 04:46 PM	

+="CN88707"	"supply of post mix product"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	12-May-08	30-Jul-08	11000.00	=""	="COCA-COLA PTY LTD"	05-Jun-08 04:49 PM	

+="CN88709"	"S5101, WR 3000764440. Provide consultancy services wharf crane from REVY Pyrmont to sullage wharf at"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	12-May-08	30-Jun-08	11000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 04:49 PM	

+="CN88755"	"lease payment"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	14-May-08	31-May-08	11157.44	=""	="AUSTRALIAN INTEGRATED FINANCE"	05-Jun-08 04:56 PM	

+="CN88770"	"Stephen Chaney KA300/350 training"	="Department of Defence"	05-Jun-08	="Powered fixed wing aircraft"	21-May-08	21-May-08	11889.83	=""	="FLIGHTSAFETY INTERNATIONAL"	05-Jun-08 04:58 PM	

+="CN88815"	"HARDY AVIATION(NT) PTY LTD."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	13-May-08	30-Jun-08	11233.81	=""	="HARDY AVIATION (NT) PTY LTD"	05-Jun-08 05:00 PM	

+="CN88825"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	10230.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:00 PM	

+="CN88854"	"Learjet crew & engineer"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	30-May-08	11000.00	=""	="PEL-AIR AVIATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88863"	"CABLING WORKS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	11649.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88870"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-Jun-08	11514.80	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	05-Jun-08 05:03 PM	

+="CN88871"	"FACOPS- Air Compressor Supply"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	20-May-08	30-Jun-08	11542.30	=""	="CHAMPION COMPRESSORS LTD"	05-Jun-08 05:03 PM	

+="CN88874"	"DSN CABLING"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	11841.50	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:03 PM	

+="CN88891"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	11330.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:04 PM	

+="CN88907"	"KOPPER LOGS REMEDIATION PROJECT - ENOOGERA"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	10690.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:04 PM	

+="CN88911"	"POC: Brendan Searle 02 6127 7169 Quotation: 7128"	="Department of Defence"	05-Jun-08	="Hardware"	16-May-08	06-Jun-08	11454.30	=""	="BENNETT COMMERCIAL ELECTRONICS"	05-Jun-08 05:05 PM	

+="CN88912"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	22-May-08	11935.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88915"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	21-May-08	11435.09	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:05 PM	

+="CN88934"	"Security Services"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-May-08	16-Jun-08	11484.00	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:06 PM	

+="CN88947"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11177.62	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:06 PM	

+="CN88948"	"CONSTRUCTION OF PLATFORM"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	08-May-08	27-Jun-08	11085.02	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:06 PM	

+="CN88988"	"DALLAS PAD COVERS"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	22-May-08	11825.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS"	05-Jun-08 05:08 PM	

+="CN89008"	"FIBRE INSTALL"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11110.00	=""	="DEPARTMENT OF FINANCE &"	05-Jun-08 05:09 PM	

+="CN89025"	"CONFERENCE EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	11236.52	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89032"	"SUN MICROSYSTEMS STORAGE HARDWARE"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	16-May-08	10754.55	=""	="DATACOM SYSTEMS SA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89036"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	22-May-08	30-Jun-08	11979.33	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:10 PM	

+="CN89043"	"Site Office Plumbing Connection"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	20-May-08	30-Jun-08	10680.00	=""	="KIMBERELY GREEN CONSTRUCTION"	05-Jun-08 05:10 PM	

+="CN89054"	"HP WORKSTATION"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-May-08	11283.50	=""	="COMPLETE PC SOLUTIONS"	05-Jun-08 05:11 PM	

+="CN89070"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-May-08	11000.00	=""	="INFOTRIEVE AUSTRALIA PTY LTD"	05-Jun-08 05:12 PM	

+="CN89071"	"SNORKEL ELEVATING WORK PLATFORM"	="Department of Defence"	05-Jun-08	="Hydraulic machinery and equipment"	20-May-08	30-Jun-08	11825.00	=""	="SNORKEL ELEVATING WORK PLATFORMS"	05-Jun-08 05:12 PM	

+="CN89078"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	22-May-08	30-Jun-08	11000.00	=""	="BLIGH VOLLER NIELD ARCHITECTS"	05-Jun-08 05:12 PM	

+="CN89098"	"Computing Equipment"	="Department of Defence"	05-Jun-08	="Office supplies"	20-May-08	27-May-08	10665.55	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:13 PM	

+="CN89108"	"CARPETING"	="Department of Defence"	05-Jun-08	="Floor coverings"	21-May-08	30-May-08	11946.00	=""	="PORT STEPHENS CARPETS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89116"	"HD LCD MONITOR TVS"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	03-Jun-08	10648.00	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:14 PM	

+="CN89137"	"PRE PAID LABOUR HOURS ASSOCIATED WITH INTERNET / DRN UPGRADE"	="Department of Defence"	05-Jun-08	="Computer services"	22-May-08	30-Jun-08	11000.00	=""	="PARTNER IT"	05-Jun-08 05:14 PM	

+="CN89144"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	11869.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:15 PM	

+="CN89156"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	11783.75	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89158"	"2 DAY SURVIVAL COURSE FOR TS MERSEY RE CIA BID 07/08"	="Department of Defence"	05-Jun-08	="Other sports"	22-May-08	22-May-08	11226.00	=""	="AMC SEARCH LIMITED"	05-Jun-08 05:15 PM	

+="CN89169"	"IN COUNTRY TRAINING TUITION - 01/08 INDON ADVANCED - MAY 08"	="Department of Defence"	05-Jun-08	="Vocational training"	09-May-08	20-May-08	11288.81	=""	="UPI, BANDUNG CAMPUS"	05-Jun-08 05:16 PM	

+="CN89179"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	10134.30	=""	="BLUE RIDGE SYSTEMS PTY LTD"	05-Jun-08 05:16 PM	

+="CN89200"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	10000.00	=""	="WESTSIDE VEGIE PATCH"	05-Jun-08 05:17 PM	

+="CN89207"	"Shade Cloth Structures"	="Department of Defence"	05-Jun-08	="Structural materials and basic shapes"	20-May-08	30-Jun-08	11039.99	=""	="QUICKSHADE AUSTRALIA PTY LTD"	05-Jun-08 05:18 PM	

+="CN89211"	"VISUAL EQUIPMENT FOR AREA GYM"	="Department of Defence"	05-Jun-08	="Electrical components"	12-May-08	30-Jun-08	10948.00	=""	="TROPICAL TV"	05-Jun-08 05:18 PM	

+="CN89215"	"SN02814 - Due Dilligence Eval Claim"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	11000.00	=""	="STRATEGIC FACILITY SERVICES PTY LTD"	05-Jun-08 05:18 PM	

+="CN89244"	"ACCOMADATION /BREAKFAST & VENUE HIRE"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-May-08	15-May-08	10294.99	=""	="WALDORF ON LONDON RESTAURANT & CONF"	05-Jun-08 05:19 PM	

+="CN89246"	"FURNITURE-SENIOR SAILORS MESS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	11495.00	=""	="RUBELLI"	05-Jun-08 05:19 PM	

+="CN89254"	"FINAL SCHOLARSHIP CONTRIBUTION FOR KIM MUNRO. RESE ARCH AGREEMENT 2003/44110/7;IP 09/05"	="Department of Defence"	05-Jun-08	="Educational institutions"	06-May-08	30-May-08	11000.00	=""	="LATROBE UNIVERSITY"	05-Jun-08 05:20 PM	

+="CN89263"	"bread"	="Department of Defence"	05-Jun-08	="Bread and bakery products"	06-May-08	31-Dec-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:20 PM	

+="CN89266"	"milk"	="Department of Defence"	05-Jun-08	="Milk and butter products"	06-May-08	30-Dec-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:20 PM	

+="CN89272"	"Romance Office Chairs Fabric Twill Blue"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	06-May-08	30-May-08	11880.00	=""	="ACCENT OFFICE INTERIORS"	05-Jun-08 05:20 PM	

+="CN89276"	"Accommodation seven Rooms for Mtg Package - Indon Advanced - May 08"	="Department of Defence"	05-Jun-08	="Hotels and lodging and meeting facilities"	15-May-08	20-May-08	10009.41	=""	="SHERATON BANDUNG HOTEL & TOWERS"	05-Jun-08 05:21 PM	

+="CN89281"	"Shipping Containers"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	06-Jun-08	11110.00	=""	="ROYAL WOLF TRADING"	05-Jun-08 05:21 PM	

+="CN89301"	"POC: JOE GUARNIERI CONTACT: 02 626 69310"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	30-Jun-08	11292.60	=""	="DIGICOR PTY LTD"	05-Jun-08 05:22 PM	

+="CN89314"	"Annual Subscription"	="Department of Defence"	05-Jun-08	="Software"	06-May-08	30-May-08	10332.40	=""	="GIDEON INFORMATICS INC"	05-Jun-08 05:22 PM	

+="CN89321"	"SUPPLY & INSTALL 50 PAIR 0.4mm EXTERNAL VOICE CABLE AT HOLSWORTHY BARRACKS."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	15-May-08	10-Jun-08	10667.90	=""	="RIVERCORP PTY LTD"	05-Jun-08 05:23 PM	

+="CN89326"	"PRINTING COSTS"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	03-Jun-08	10660.10	=""	="GEORGE PATTERSON Y & R"	05-Jun-08 05:23 PM	

+="CN89329"	"PAVING MALAYA LINES"	="Department of Defence"	05-Jun-08	="Concrete and cement and plaster"	05-May-08	28-May-08	10435.00	=""	="EMERALD PROPERTY SERVICES"	05-Jun-08 05:23 PM	

+="CN89332"	"POC: Owen Keane 02 6127 7170 Quotation: 00201344"	="Department of Defence"	05-Jun-08	="Hardware"	05-May-08	26-May-08	11275.45	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	05-Jun-08 05:23 PM	

+="CN89353"	"FACOPS"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	30-Jun-08	10972.50	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:24 PM	

+="CN89365"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES RELOCATION THROUGH REGION STANDING OFFER AGREEMEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	30-Jun-08	10984.05	=""	="GRACE REMOVALS GROUP"	05-Jun-08 05:25 PM	

+="CN89369"	"SNO1720 - RMC B014 - Ward Room 10"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	11970.82	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:25 PM	

+="CN89383"	"Supply & install of cabling"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	14-Jun-08	10499.17	=""	="ADVANCED COMMUNICATIONS"	05-Jun-08 05:26 PM	

+="CN89388"	"PARTS"	="Department of Defence"	05-Jun-08	="Machining and processing services"	14-May-08	29-May-08	11548.22	=""	="KFS FUEL SERVICES"	05-Jun-08 05:26 PM	

+="CN89389"	"Airfares - Domestic"	="Department of Defence"	05-Jun-08	="Components for information technology or broadcasting or telecommunications"	06-May-08	08-Aug-08	10994.13	=""	="QANTAS AIRWAYS LIMITED AVIATION"	05-Jun-08 05:26 PM	

+="CN89415"	"Imagery Package"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	05-May-08	30-May-08	10082.60	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	05-Jun-08 05:27 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89442"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Business and corporate management consultation services"	14-May-08	14-May-08	10190.00	=""	="PROFESSOR STEWART FIRTH"	05-Jun-08 05:30 PM	

+="CN89443"	"LOADS FROM ADELAIDE TO WOOMERA / FORKLIFT WITH OPERATOR"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-May-08	30-May-08	11833.88	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 05:30 PM	

+="CN89449"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	20-May-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:30 PM	

+="CN89452"	"****** PLEASE SEE HARRY NGUY ON ARRIVAL AT RANRAU TOSHIBA COPIER"	="Department of Defence"	05-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-May-08	11474.10	=""	="TOSHIBA (AUSTRALIA) PTY LTD"	05-Jun-08 05:30 PM	

+="CN89465"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	16-May-08	30-Jun-08	11000.00	=""	="RUDDS CONSULTING ENGINEERS"	05-Jun-08 05:31 PM	

+="CN89510"	"dog food"	="Department of Defence"	05-Jun-08	="Meat and poultry"	06-May-08	31-Dec-08	11000.00	=""	="WESTERN PET FOODS"	05-Jun-08 05:34 PM	

+="CN89522"	"sra"	="Department of Defence"	05-Jun-08	="Sauces and spreads and condiments"	06-May-08	31-Dec-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	05-Jun-08 05:35 PM	

+="CN89527"	"CARPET"	="Department of Defence"	05-Jun-08	="Floor coverings"	16-May-08	16-May-08	11991.76	=""	="ACROMAT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89534"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	11780.99	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:35 PM	

+="CN89535"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	11685.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:35 PM	

+="CN89566"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	30-May-08	10912.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:37 PM	

+="CN89582"	"Computer & accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	11620.40	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89595"	"lease transportable Bldg"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	10145.47	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89630"	"4U ANTEC 4U22ATX"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10832.80	=""	="DAINTREE SYSTEMS PTY LTD"	05-Jun-08 05:41 PM	

+="CN89646"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89648"	"Shipoing Service Darwin"	="Department of Defence"	05-Jun-08	="Marine transport"	23-May-08	31-May-08	11000.00	=""	="PERKINS SHIPPING PTY LTD"	05-Jun-08 05:43 PM	

+="CN89657"	"Management and Technical Support required for the RSTT-HIFiRE Solution Development Project"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	30-May-08	16-Jun-08	10246.49	=""	="AEROSPACE CONCEPTS PTY LTD"	05-Jun-08 05:43 PM	

+="CN89673"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	11640.71	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89677"	"LEASE OF FORKLIFT"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	22-May-08	01-Jun-08	10265.41	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:44 PM	

+="CN89691"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	29-Feb-08	30-Sep-08	10395.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89693"	"HEALTH PRACTITIONER PAY 30/4-17/5/08"	="Department of Defence"	05-Jun-08	="Medical Equipment and Accessories and Supplies"	20-May-08	21-May-08	11088.28	=""	="VIMALA MENON  A/P PB MENON"	05-Jun-08 05:45 PM	

+="CN89695-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10656.24	=""	="STRATOS"	05-Jun-08 05:45 PM	

+="CN89697-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	05-Jun-08	="Satellites"	12-May-08	30-Jun-08	10005.49	=""	="STRATOS"	05-Jun-08 05:46 PM	

+="CN89703"	"DR JOHN REDMAN - ENT SESSIONAL SERVICES TO HEALTH CENTRE SERVICES - CERBERUS"	="Department of Defence"	05-Jun-08	="Medical practice"	12-Nov-07	30-Jun-08	11000.00	=""	="JOHN F REDMAN PTY LTD"	05-Jun-08 05:46 PM	

+="CN89709"	"BUILDING WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	30-Jun-08	10018.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:46 PM	

+="CN89720"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:47 PM	

+="CN89731"	"HIRE OF 3 X 20 FT REEFER CONTAINER - SECDET"	="Department of Defence"	05-Jun-08	="Containers and storage"	03-May-08	24-May-08	11555.31	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89735"	"LEASE OF VEHICLES"	="Department of Defence"	05-Jun-08	="Motor vehicles"	23-May-08	01-Jun-08	11377.86	=""	="FUTURE SERVICES GENERAL TRADING CO."	05-Jun-08 05:48 PM	

+="CN89739"	"WATER SUPPLY"	="Department of Defence"	05-Jun-08	="Public Utilities and Public Sector Related Services"	18-Jul-07	30-Jun-08	11546.41	=""	="NSW MARITIME"	05-Jun-08 05:48 PM	

+="CN89740"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	10120.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:48 PM	

+="CN89746"	"LAP TOPS X 3 for AIR9K PROJECT TTC B"	="Department of Defence"	05-Jun-08	="Computer services"	23-May-08	23-May-08	10758.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:49 PM	

+="CN89757"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	10670.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:49 PM	

+="CN89759"	"SN01988 - GIS Maintenance"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	10548.45	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:49 PM	

+="CN89763"	"REMOVAL OF CHAIRS"	="Department of Defence"	05-Jun-08	="Railroad support equipment and systems"	13-Feb-08	27-Jun-08	10037.16	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:50 PM	

+="CN89771"	"hire of vehicles"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	22-Jan-08	30-Apr-08	10788.95	=""	="THRIFTY CAR RENTAL"	05-Jun-08 05:50 PM	

+="CN89783"	"Advertising in Canberra Times, Wagga Daily Advertiser, Weekend Australian"	="Department of Defence"	05-Jun-08	="Advertising"	30-Apr-08	03-May-08	10481.96	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:51 PM	

+="CN89793"	"GROCERIES FOR MONTH OF MAY CNS 01/07"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-Apr-08	30-Jun-08	10990.00	=""	="GAROZZOS AGENCIES PTY LTD"	05-Jun-08 05:52 PM	

+="CN89805"	"Technical contact: R.Pointon Phone: 83056678"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	10303.30	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:52 PM	

+="CN89807"	"supply of groceries brisbane"	="Department of Defence"	05-Jun-08	="Processed and prepared meats"	02-Apr-08	30-Jul-08	11094.12	=""	="CAMPBELLS CASH & CARRY"	05-Jun-08 05:52 PM	

+="CN89820"	"CONTRACT NO: CSI-SC07/2005"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	05-Jun-08 05:53 PM	

+="CN89825"	"increase funds"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	29-Aug-07	30-Jun-08	11000.00	=""	="FLEXILIFT HIRE & RENTAL PTY LTD"	05-Jun-08 05:54 PM	

+="CN89826"	"Matteresses"	="Department of Defence"	05-Jun-08	="Accommodation furniture"	26-May-08	20-Jun-08	10296.00	=""	="ADRIATIC SLUMBER BEDDING"	05-Jun-08 05:54 PM	

+="CN89827"	"Supply of Dairy Products"	="Department of Defence"	05-Jun-08	="Dairy products and eggs"	12-Nov-07	30-Jun-08	11000.00	=""	="SEALANES ALBATROSS PTY LTD"	05-Jun-08 05:54 PM	

+="CN89835"	"Vehicle Costs"	="Department of Defence"	05-Jun-08	="Motor vehicles"	17-Aug-07	31-Mar-08	11500.00	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 05:54 PM	

+="CN89842"	"Selection of CORPS flags. Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Fibres and textiles and fabric industries"	26-May-08	30-Jun-08	10098.00	=""	="EVAN EVANS FLAGS AND BANNERS"	05-Jun-08 05:55 PM	

+="CN89849"	"ABCA ANNUAL CONFERENCE HIRE OF FACILITIES"	="Department of Defence"	05-Jun-08	="Education and Training Services"	30-May-08	30-Jun-08	10640.95	=""	="FOUR POINTS - SHERATON DARLING"	05-Jun-08 05:55 PM	

+="CN89859"	"FFS PAYMENTS"	="Department of Defence"	05-Jun-08	="Medical facility products"	29-May-08	30-Jun-08	10000.00	=""	="G LLOYD"	05-Jun-08 05:56 PM	

+="CN89899"	"Supply of Small Goods to RAAF Base Tindal Ration Store"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	12-Nov-07	30-Jun-08	10000.00	=""	="WATSONIA FOODS"	05-Jun-08 05:58 PM	

+="CN89906"	"CONTRACT NO: CSI-SC03/205"	="Department of Defence"	05-Jun-08	="Food and beverage industries"	26-May-08	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	05-Jun-08 05:59 PM	

+="CN89911"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	20-May-08	10689.93	=""	="ACTIVE TECHNOLOGY"	05-Jun-08 05:59 PM	

+="CN89940"	"FURNITURE FOR BLDG 298, SECPOL"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	10670.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 06:01 PM	

+="CN89943"	"Purchase 2nd hand vehicle for Project Digger Army Logistic Training Centre, Bandiana"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	21-May-08	30-Jun-08	10000.00	=""	="KEITH TROTTER"	05-Jun-08 06:01 PM	

+="CN89944"	"Laser cladding of magnesium alloy"	="Department of Defence"	05-Jun-08	="Alloys"	13-May-08	30-Jun-08	10450.00	=""	="SWINBURNE UNIVERSITY OF"	05-Jun-08 06:01 PM	

+="CN89967"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Software"	21-May-08	01-Jul-08	10241.55	=""	="BRAEMAC (SA) PTY LTD"	05-Jun-08 06:03 PM	

+="CN89982"	" S70B AIRCRAFT SPARES "	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	28-Nov-08	10094.04	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Jun-08 10:48 AM	

+="CN89990"	"WRIST WATCHES"	="Department of Defence"	06-Jun-08	="Wrist watches"	01-Apr-08	08-Apr-08	11339.90	=""	="SHRIRO AUSTRALIA PTY LTD"	06-Jun-08 11:09 AM	

+="CN89993-A1"	" Facilitation of Executive Planning Sessions "	="Centrelink"	06-Jun-08	="Specialised educational services"	14-Feb-08	31-Mar-08	10780.00	=""	="Amanda Horne Pty Ltd"	06-Jun-08 11:31 AM	

+="CN90028"	"Variation to the contract for the provision of loose office furniture"	="Comsuper"	06-Jun-08	="Furniture"	04-Jul-07	08-Aug-07	11035.00	=""	="Iken Commercial Interiors"	06-Jun-08 02:48 PM	

+="CN90037"	"Patching and Painting at Launceston Registry"	="Family Court of Australia"	06-Jun-08	="Painting services"	12-Apr-08	30-Jun-08	11176.00	=""	="SWM Project Decorating"	06-Jun-08 03:12 PM	

+="CN87861"	"Sponsorship of Library and Information Week"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Sponsorship of event or celebrity"	01-Apr-08	30-Jun-08	11000.00	=""	="Australian Library & Information Association"	06-Jun-08 04:11 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to09Jun2008val12000to16000.xls
@@ -1,1 +1,267 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87896"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	07-Mar-08	07-Mar-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:33 AM	

+="CN87897"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	15-Nov-07	15-Nov-10	14400.00	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 08:47 AM	

+="CN87898"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	10-Apr-08	10-Apr-11	13431.96	="RFT 15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:04 AM	

+="CN87902"	"Photocopier Lease"	="Australian Federal Police"	05-Jun-08	="Photocopiers"	05-Mar-08	05-Mar-11	14854.32	="RFT15-2006"	="Ricoh Australia Pty Ltd"	05-Jun-08 09:37 AM	

+="CN87916"	"Sonatest Sitescan 150s flaw detector and accessories."	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Measuring and observing and testing instruments"	02-Jun-08	30-Jun-08	14513.95	=""	="Russell Fraser Sales P/L"	05-Jun-08 10:16 AM	

+="CN87932"	"TIE DOWN, CARGO, AIRCRAFT NSN 1670/002121149"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	14-May-08	13-Jun-08	12470.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 10:37 AM	

+="CN87937"	"GEAR, SPUR NSN 3020/007203276"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	06-Jun-08	13500.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:06 AM	

+="CN87939"	"WASHER, THRUST, SET NSN 3120/009468050"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	19-May-08	08-Jun-08	15960.00	=""	="AEROSPACE COMPOSITES PTY LTD"	05-Jun-08 11:22 AM	

+="CN87942"	" AIRCRAFT SPARES  NSN 3040-00-243-3661, GEARSHAFT, SPUR,  QTY 3 "	="Defence Materiel Organisation"	05-Jun-08	="Reconnaissance helicopters"	28-May-08	27-Jul-08	15884.28	=""	="HELITECH  DIV OF SIKORSKY"	05-Jun-08 11:44 AM	

+="CN87952"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System Printer"	="Defence Materiel Organisation"	05-Jun-08	="Infrared IR sensors"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:02 PM	

+="CN87955"	"Use of Exisitng ASP Contract  - Install maintenanc Ladder"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	13935.08	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87956"	"Use of Exisitng ASP Contract  - 12M Maintenance Norcontrol System"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	16-May-08	30-Jun-08	14342.79	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87960"	"Belt Friction for UQN-4 Echo Sounder"	="Defence Materiel Organisation"	05-Jun-08	="Location and navigation systems and components"	17-May-08	16-Sep-08	13546.57	=""	="EDO WESTERN CORPORATION DBA EDO ELE"	05-Jun-08 01:03 PM	

+="CN88017"	"Wise Package Studio Licence Renewal"	="Defence Materiel Organisation"	05-Jun-08	="Software"	19-May-08	30-Jun-08	15860.04	=""	="ALTIRIS AUSTRALIA PTY LTD"	05-Jun-08 01:10 PM	

+="CN88025"	"AUDITOR TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Specialised educational services"	19-May-08	16-Jun-08	12975.01	=""	="SOUTHPAC AEROSPACE"	05-Jun-08 01:11 PM	

+="CN88027"	"COMPUTER HARDWARE"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	25-Jun-08	14894.00	=""	="PORTABLE COMPUTER SYSTEMS"	05-Jun-08 01:11 PM	

+="CN88045"	"Gears, Bevel Spurs"	="Defence Materiel Organisation"	05-Jun-08	="Bearings and bushings and wheels and gears"	15-May-08	01-Aug-09	13755.87	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 01:13 PM	

+="CN88046"	"Aerospace Helmets with Microphones"	="Defence Materiel Organisation"	05-Jun-08	="Flight communications related systems"	15-May-08	03-Oct-08	13670.85	=""	="TRANSAERO INC."	05-Jun-08 01:13 PM	

+="CN88058"	"FACILITATION DEU STRATEGY WORKSHOP"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	21-May-08	15950.00	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 01:15 PM	

+="CN88063"	"Procure parts for installation of Sea Water 'Y' Strainer for HMAS Sydney RO Plant"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	14-May-08	30-Jun-08	14854.97	=""	="THALES AUSTRALIA"	05-Jun-08 01:15 PM	

+="CN88071"	"Promotional material"	="Defence Materiel Organisation"	05-Jun-08	="Sales and business promotion activities"	15-May-08	30-Jun-08	13398.00	=""	="GREENFROG PROMOTIONS"	05-Jun-08 01:16 PM	

+="CN88072"	"MANOORA WOOP PM"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	15-May-08	16-May-08	14979.64	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:16 PM	

+="CN88078"	"PROVISION OF OEP SURVEY TOOL AND DATA ANAIYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-09	12375.00	=""	="ORIGIN CONSULTING GROUP PTY LTD"	05-Jun-08 01:17 PM	

+="CN88090"	"Teamcenter Project Author"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-09	13376.00	=""	="PLM SERVICES PTY LTD"	05-Jun-08 01:19 PM	

+="CN88093"	"SUN equipment for SIMS workstations"	="Defence Materiel Organisation"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	12266.44	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:19 PM	

+="CN88094"	"PEP course"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 01:19 PM	

+="CN88123"	"Replace Bridge Windows with non-sliding windows HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	23-May-08	30-Aug-08	12693.05	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:23 PM	

+="CN88128"	"USA TRAVEL FOR S. FAVALORO"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	31-Jul-08	13208.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:23 PM	

+="CN88139"	"EDM GAP ANALYSIS"	="Defence Materiel Organisation"	05-Jun-08	="Environmental control systems"	22-May-08	30-Jun-08	12276.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 01:24 PM	

+="CN88148"	"Ship Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	30-Jun-08	13772.22	=""	="AQUALOGIC LAUNDRY SYSTEM GROUP"	05-Jun-08 01:26 PM	

+="CN88149"	"Photoshop Software"	="Defence Materiel Organisation"	05-Jun-08	="Software"	26-May-08	04-Jun-08	14298.90	=""	="ZALLCOM PTY LTD"	05-Jun-08 01:26 PM	

+="CN88156"	"Rack Mounts"	="Defence Materiel Organisation"	05-Jun-08	="Office Equipment and Accessories and Supplies"	26-May-08	30-Jun-09	15554.00	=""	="CYPHER RESEARCH LABORATORIES"	05-Jun-08 01:27 PM	

+="CN88169"	"Travel to Alabama to finaliise the Test Program for Prog AIR 5433 IRSS CTD"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	23-May-08	30-Jul-08	12133.13	=""	="GKN AEROSPACE ENGINEERING SERVICES"	05-Jun-08 01:28 PM	

+="CN88182"	"m548 box"	="Defence Materiel Organisation"	05-Jun-08	="Packaging materials"	26-May-08	30-Jun-08	13683.25	=""	="PENTARCH PTY LTD"	05-Jun-08 01:30 PM	

+="CN88190"	"Use of Exisitng ASP Contract  - Modify Vent Risers"	="Defence Materiel Organisation"	05-Jun-08	="Heating and ventilation and air circulation"	20-May-08	30-Jun-08	14142.98	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88201"	"Use of Exisitng ASP Contract  - ECP Main SW Pump Discharge Vavle"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	20-May-08	30-Jun-08	12840.14	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88234"	"POC: TEJINDER UPPAL CONTACT: 02 626 50778"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14905.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	05-Jun-08 01:36 PM	

+="CN88244"	"IT EQUIPMENT"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	13750.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 01:37 PM	

+="CN88245"	"TD 115 - ECPINS V5.1 CONFIGURATION CHANGE TO"	="Defence Materiel Organisation"	05-Jun-08	="Software"	22-May-08	12-Jun-08	15002.39	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	05-Jun-08 01:37 PM	

+="CN88272"	"CONDUCT HULL CROP & RENEW REPAIRS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	16-May-08	13-Jun-08	15867.28	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:40 PM	

+="CN88280"	"OVERHAUL LCM8 CRADLES AND PEDESTALS HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	23-May-08	20-Jun-08	12767.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:41 PM	

+="CN88282"	"MICROFILM SCANNER - SCAN PRO 1000"	="Defence Materiel Organisation"	05-Jun-08	="Office machines and their supplies and accessories"	28-Apr-08	31-May-08	15389.00	=""	="WOLLONGONG DRAWING AND OFFICE"	05-Jun-08 01:41 PM	

+="CN88284"	"ACCUMULATOR, HYDRAULIC"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	30-Apr-08	04-Dec-08	12612.11	=""	="TACTAIR FLUID CONTROLS INC"	05-Jun-08 01:42 PM	

+="CN88289"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	04-Jun-08	30-Jun-08	14456.26	=""	="RAYTHEON AUST PTY LTD"	05-Jun-08 01:42 PM	

+="CN88291"	"Consultant services"	="Defence Materiel Organisation"	05-Jun-08	="Human resources services"	16-May-08	30-Jun-08	12000.00	=""	="CHANGEDRIVERS PTY LTD"	05-Jun-08 01:42 PM	

+="CN88303"	"5 x 21" monitors"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	12236.76	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 01:44 PM	

+="CN88306"	"WAVEGUIDE SWITCH"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	14-May-08	01-Feb-09	14206.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	05-Jun-08 01:44 PM	

+="CN88309"	"Use of Exisitng ASP Contract  - Annual Service Pt Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88310"	"Use of Exisitng ASP Contract  - Annual Service STBD Lifeboat and Davit"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	06-May-08	30-Jun-08	14006.11	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:44 PM	

+="CN88319"	"ARH INDEPENDENT AIRCRAFT LIGHTING REVIEW"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	06-May-08	30-May-08	12162.15	=""	="AUSTRALIAN AEROSPACE LTD"	05-Jun-08 01:45 PM	

+="CN88324"	"Amend various TMS's"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	13089.93	=""	="THALES AUSTRALIA"	05-Jun-08 01:46 PM	

+="CN88336"	"Use of Exisitng ASP Contract  - Replace tiles in officer cabin"	="Defence Materiel Organisation"	05-Jun-08	="Fibres and textiles and fabric industries"	05-May-08	30-Jun-08	12967.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88338"	"Prepare & supply drawings for mounting of 600kg Davit system to vessel of opportunity S/H Standa"	="Defence Materiel Organisation"	05-Jun-08	="Safety and rescue vehicles"	05-May-08	30-Jun-08	14748.80	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 01:48 PM	

+="CN88343"	"THIS PRICE INCLUDES INSTALLATION AND COMMISSIONING DENTAL SERVICES AS PER RFQ7780359"	="Defence Materiel Organisation"	05-Jun-08	="Medical apparel and textiles"	06-May-08	06-May-08	12870.00	=""	="IVOCLAR VIVADENT"	05-Jun-08 01:48 PM	

+="CN88350"	"GRADUATE DIPLOMA IN LEGAL PRACTICE WORKSHOP FOR 2006 MGS LEGAL GRADUATES"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	12-Nov-07	30-Jun-08	15483.60	=""	="ANU"	05-Jun-08 01:49 PM	

+="CN88364"	" Accounting for internally generated software "	="Australian Taxation Office"	05-Jun-08	="Public enterprises management or financial services"	27-May-08	25-Jun-08	15160.00	=""	="Ernst & Young"	05-Jun-08 01:52 PM	

+="CN88372"	"Reimbursement of Rent - Elphinstone Close"	="Defence Materiel Organisation"	05-Jun-08	="Permanent structures"	06-May-08	30-Jun-08	12500.00	=""	="DEPARTMENT OF DEFENCE"	05-Jun-08 01:52 PM	

+="CN88386"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS PARRAMATTA DURING DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	03-Jun-08	11-Nov-08	15522.66	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:54 PM	

+="CN88389"	"Task backlog"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	18-Dec-07	17-Jan-08	15419.80	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 01:54 PM	

+="CN88396"	"REPAIR CARGO HATCH HMAS MANOORA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	02-Jun-08	04-Feb-08	12321.95	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:55 PM	

+="CN88398"	"Technical and Engineering Support EMU"	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-May-08	30-Jun-08	12344.64	=""	="JACOBS AUSTRALIA"	05-Jun-08 01:55 PM	

+="CN88402"	"Detailed Design Package- Installation of CMDS Lock ers on HMAS Sydney"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	01-Oct-08	12320.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	05-Jun-08 01:55 PM	

+="CN88406"	"engineering services"	="Defence Materiel Organisation"	05-Jun-08	="Marine transport"	12-Mar-08	04-Jun-08	13005.33	=""	="G A GLANVILLE & CO"	05-Jun-08 01:56 PM	

+="CN88407"	"Lease of Vehicle under Agency Agreement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	29-May-08	31-Dec-09	13562.11	=""	="LEASEPLAN AUSTRALIA LTD"	05-Jun-08 01:56 PM	

+="CN88409"	"BDS CABLE REPLACEMENT"	="Defence Materiel Organisation"	05-Jun-08	="Hardware"	11-Nov-07	30-Jun-08	14552.29	=""	="C4I PTY LTD"	05-Jun-08 01:56 PM	

+="CN88410"	"FCBP PLATFORM DOCUMENT ARCHIVING PROGRAM EXT"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	12-Nov-07	30-Jun-08	14797.21	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:56 PM	

+="CN88428"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14773.00	=""	="KPMG AUSTRALIA"	05-Jun-08 01:59 PM	

+="CN88438"	"SDV Systems Admin Training for the Eastern States and Perth."	="Defence Materiel Organisation"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-May-08	30-Jun-08	13750.00	=""	="SECURE SYSTEMS LTD"	05-Jun-08 02:00 PM	

+="CN88440"	"REVIEW HMAS KANIMBLA WORK PACK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	16-May-08	13750.00	=""	="DET NORSKE VERITAS"	05-Jun-08 02:00 PM	

+="CN88444"	"Aircraft Spares"	="Defence Materiel Organisation"	05-Jun-08	="Military rotary wing aircraft"	12-May-08	07-Jul-08	14790.60	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 02:00 PM	

+="CN88472"	"SHOCK APPROVED SERVER RACK"	="Defence Materiel Organisation"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	30-Jun-08	15660.32	=""	="THALES AUSTRALIA"	05-Jun-08 02:04 PM	

+="CN88483"	"TESTING OD SAD LIFING EQUIP HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	23-May-08	12745.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 02:05 PM	

+="CN88488"	"Survey & Repair Accomodation Module ex HMAS Betano"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	12-May-08	30-Jun-08	14133.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:06 PM	

+="CN88523"	"Purchase of Pin Ground Safety for use on F/A-18."	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	08-May-08	30-Apr-09	14786.46	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 02:10 PM	

+="CN88530"	"PANEL ASSEMBLY CONTROL"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	07-May-08	30-Aug-08	12020.49	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	05-Jun-08 02:11 PM	

+="CN88538"	"WA Periscope Workshop Activity 7 - Clean Room Basic Equipment"	="Defence Materiel Organisation"	05-Jun-08	="Construction and maintenance support equipment"	07-May-08	30-Jun-08	14015.12	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 02:12 PM	

+="CN88545"	"Decommissioning of Deakin Primary Injection Facility"	="Defence Materiel Organisation"	05-Jun-08	="Professional engineering services"	07-May-08	30-Jun-08	12204.72	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	05-Jun-08 02:12 PM	

+="CN88551"	"Battery, non-rechargeable"	="Defence Materiel Organisation"	05-Jun-08	="Electrical components"	09-May-08	30-Jan-09	12844.26	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	05-Jun-08 02:13 PM	

+="CN88555"	"FGA ANSWER BOOKLETS FOR GRADUATE ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Medical training and education supplies"	09-May-08	30-Jun-08	15917.50	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	05-Jun-08 02:14 PM	

+="CN88579"	"Acquisition of "CORE" Software Training and Travel Expenses  - AIR 7000 PH1 & PH2 Project Office"	="Defence Materiel Organisation"	05-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	12274.15	=""	="T E & J L DEECKE PTY LTD"	05-Jun-08 02:16 PM	

+="CN88592"	"DUMMY LOAD, ELECTRICAL NSN 5985/01558379"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	13-May-08	10-Jun-08	14448.00	=""	="PACIFIC AERODYNE PTY LTD"	05-Jun-08 02:40 PM	

+="CN88601"	"INTERNET SERVICE FEES APRIL 08"	="Administrative Appeals Tribunal"	05-Jun-08	="Computer services"	15-Apr-08	30-Apr-08	13264.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	05-Jun-08 02:53 PM	

+="CN88605"	"Consultancy Services for Courtroom Technology"	="Family Court of Australia"	05-Jun-08	="Information technology consultation services"	05-Jun-08	05-Sep-08	14300.00	=""	="CHW Consulting Pty Ltd"	05-Jun-08 02:57 PM	

+="CN88606"	"    Itinerary 025 - Sydney - Singapore - Paris - Frankfurt - Singapore - Melbourne    "	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Commercial aeroplane travel"	14-May-08	14-May-08	15878.46	=""	="HRG Australia"	05-Jun-08 02:59 PM	

+="CN88616"	"Progression in and attrition from Science, Technolnology, Engineering and Maths education and careers"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Engineering and Research and Technology Based Services"	28-Mar-08	30-Jun-08	15730.00	="PRN18456"	="NATIONAL CENTRE FOR VOCATIONAL"	05-Jun-08 03:05 PM	

+="CN88628"	"FPi 2025 Mail Inserter"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Office machines and their supplies and accessories"	06-May-08	30-Jun-08	15400.00	="PRN19534"	="Dataflex Pty Ltd"	05-Jun-08 03:09 PM	

+="CN88638"	"Venue Hire Maritime meeting The Esplanade"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	14000.00	="PRN19375"	="ESPLANADE UNIT TRUSH"	05-Jun-08 03:12 PM	

+="CN88665"	"VANE ASSEMBLY, COMPRESSOR, AIRCRAFT, GAS TURBINE NSN 2840/015155557"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	30-May-08	14695.80	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:02 PM	

+="CN88667"	"SUPPORT, STRUCTUAL COMPONENT, AIRCRAFT NSN 1560/011448443"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	29-May-08	12-Jun-08	12873.52	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:05 PM	

+="CN88668"	"CIRCUIT CARD ASSEMBLY NSN 5998/015025152"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	02-Jun-08	17-Jul-08	15455.76	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 04:07 PM	

+="CN88676"	"Outer Envelopes"	="Australian Electoral Commission"	05-Jun-08	="Specialty envelopes"	01-Jan-06	01-Jan-09	12742.40	=""	="Australian Envelopes"	05-Jun-08 04:27 PM	

+="CN88677"	"REPAIR - TURBOFAN, AIR CONDITIONING"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	18-Mar-05	30-May-08	14563.21	=""	="QANTAS AIRWAYS LTD"	05-Jun-08 04:28 PM	

+="CN88705"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-May-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 04:48 PM	

+="CN88706"	"Allison Luque, $36.05p/hr, 30 hrs p/ Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	15862.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:49 PM	

+="CN88708"	"Network Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	12975.60	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 04:49 PM	

+="CN88715"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	31-May-08	15449.54	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 04:50 PM	

+="CN88725"	"SERVICE AND REPLACE CLUTCH"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	12-May-08	12-Jun-08	13978.78	=""	="R G M MAINTENANCE PTY LTD"	05-Jun-08 04:51 PM	

+="CN88745"	"SOFTWARE LICENCE AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	14-May-08	26-Jun-08	15000.00	=""	="INDIGO SOFTWARE LTD"	05-Jun-08 04:55 PM	

+="CN88765"	"RANDWICK DISPOSAL  &  RATIONALISATION PROJECT- SCALE MODEL OF THE RANDWICK DEFEN"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	14-May-08	30-Jun-08	14300.00	=""	="IDRAWFAST"	05-Jun-08 04:57 PM	

+="CN88766"	"Beef diced Type 1 Knucle (2070) as per ADFFS 5-6-2 and 5-6-12 V1."	="Department of Defence"	05-Jun-08	="Meat and poultry products"	19-May-08	11-Jul-08	14880.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 04:58 PM	

+="CN88781"	"SUPPORT TO CYBIRD FLIGHT TRIALS"	="Department of Defence"	05-Jun-08	="Flight instrumentation"	19-May-08	02-Jun-08	15840.00	=""	="CYBER TECHNOLOGY"	05-Jun-08 04:58 PM	

+="CN88790"	"Machinery spares for LX120-2 and 850J dozer ISO AACAP08 - Kalumburu"	="Department of Defence"	05-Jun-08	="Vehicle bodies and trailers"	19-May-08	30-Jun-08	14536.18	=""	="HITACHI CONSTRUCTION MACHINERY"	05-Jun-08 04:59 PM	

+="CN88798"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-May-08	15947.04	=""	="PACLINK ACT"	05-Jun-08 04:59 PM	

+="CN88801"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	14102.00	=""	="CLAYTON UTZ"	05-Jun-08 04:59 PM	

+="CN88807"	"Desktop Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14460.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	05-Jun-08 04:59 PM	

+="CN88812"	"Facilitator fee for Practising Health &  Safety"	="Department of Defence"	05-Jun-08	="Education and Training Services"	13-May-08	17-Jun-08	13230.30	=""	="PAM PRYOR & ASSOCIATES"	05-Jun-08 05:00 PM	

+="CN88823"	"AIRCONDITIONI9NG SERVICE & REPAIRS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	12300.72	=""	="COOLSERVE AIR-CONDITION ENGINEERING"	05-Jun-08 05:00 PM	

+="CN88824"	"CM1553 -3CT3 WITH CO PILOT PLUS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-May-08	30-May-08	14603.60	=""	="DEDICATED SYSTEMS AUSTRALIA"	05-Jun-08 05:00 PM	

+="CN88833"	"Provision of Professional Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	14080.00	=""	="TOTAL TECHNOLOGY PARTNERS"	05-Jun-08 05:01 PM	

+="CN88834"	"SHELVING / STORAGE UNITS."	="Department of Defence"	05-Jun-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	19-May-08	06-Jun-08	14780.70	=""	="INTERWORX PTY LTD"	05-Jun-08 05:01 PM	

+="CN88844"	"Repair or replace regional FP&E where RWL applies"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	20-May-08	30-Jun-08	12744.88	=""	="TRANSFIELD SERVICES AUSTRALIA"	05-Jun-08 05:01 PM	

+="CN88851"	"Training Course"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-May-08	30-May-08	15200.00	=""	="EXCOM EDUCATION PTY LTD"	05-Jun-08 05:02 PM	

+="CN88875"	"STORAGE SYSTEM"	="Department of Defence"	05-Jun-08	="Storage"	19-May-08	30-Jun-08	13132.71	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:03 PM	

+="CN88876"	"CAMERA EQUIPMENT"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-May-08	13-May-08	12285.00	=""	="TED'S CAMERA STORE"	05-Jun-08 05:03 PM	

+="CN88877"	"Minor construction & repair work"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	18-Jun-08	12848.00	=""	="M & P BUILDERS PTY LTD"	05-Jun-08 05:03 PM	

+="CN88880"	"Cables"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	27-May-08	12415.70	=""	="BRUCE HICK ELECTRICAL DATA"	05-Jun-08 05:03 PM	

+="CN88886"	"Contract file: 2008-1053358 refers"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Aug-08	12756.48	=""	="ICON RECRUITMENT"	05-Jun-08 05:04 PM	

+="CN88887"	"BEEF DICED TYPE 1 KNUCKLE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	22-Aug-08	13888.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88890"	"BEEF TYPE 1 KNUCKLE DICED"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	19-May-08	12-Sep-08	12896.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	05-Jun-08 05:04 PM	

+="CN88897"	"FURNITURE FOR BLDG 275, 3SQN"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	13-Jun-08	14566.06	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 05:04 PM	

+="CN88905"	"C Class Equipment"	="Department of Defence"	05-Jun-08	="Housings and cabinets and casings"	19-May-08	30-Jun-08	12461.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 05:04 PM	

+="CN88909"	"POC: S.Marner Quotation: 1604"	="Department of Defence"	05-Jun-08	="Hardware"	08-May-08	29-May-08	15786.91	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:04 PM	

+="CN88919"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	21-May-08	31-Jul-09	12100.00	=""	="DR D M HOWARD"	05-Jun-08 05:05 PM	

+="CN88925"	"DELL  AS-PE2900 SERVER COMP"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	22-May-08	12815.00	=""	="DELL AUSTRALIA PTY LTD"	05-Jun-08 05:05 PM	

+="CN88927"	"EDINBURGH LAND ACQUISITION "STAGE 9C AND 9D""	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	12100.00	=""	="AUSTRALIAN VALUATION OFFICE"	05-Jun-08 05:05 PM	

+="CN88938"	"ENVIRONMENTAL ACTIVITY AND PLANNING TOOL."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13970.00	=""	="ENSR AUSTRALIA PTY LIMITED"	05-Jun-08 05:06 PM	

+="CN88957"	"Software maintenance"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	05-Jun-08	12038.42	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:07 PM	

+="CN88963"	"ULTRAMAX 2007 AUTOMATIC POOL CLEANER WITH 45 METRE  CABLE & ULTRAMAX HOIST."	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	08-May-08	08-May-08	12226.01	=""	="METCO INDUSTRIAL EQUIPMENT"	05-Jun-08 05:07 PM	

+="CN88967"	"FUJITSU A4 COLOUR DOCUMENT SCANNER & A3 COLOUR DOCUMENT SCANNER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	10-Jun-08	13096.16	=""	="COMMANDER (SA/WA) PTY LTD"	05-Jun-08 05:07 PM	

+="CN88971"	"NQ2081 - HMAS Cairns Comms Room and Server Works."	="Department of Defence"	05-Jun-08	="Electronic hardware and component parts and accessories"	19-May-08	30-Jun-08	14912.70	=""	="EMAK COMMUNICATIONS"	05-Jun-08 05:07 PM	

+="CN88976"	"DODC Maintenance"	="Department of Defence"	05-Jun-08	="Software"	22-May-08	30-Jun-08	15780.27	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:07 PM	

+="CN88978"	"Sea Cartage"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	08-May-08	08-May-08	12003.20	=""	="PDL TOLL"	05-Jun-08 05:07 PM	

+="CN88982"	"IT equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	12089.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:08 PM	

+="CN88986"	"PRINTING"	="Department of Defence"	05-Jun-08	="Printed media"	19-May-08	20-May-08	14698.50	=""	="ELECT PRINTING"	05-Jun-08 05:08 PM	

+="CN88993"	"MACHINERY"	="Department of Defence"	05-Jun-08	="Machinery and transport equipment manufacture"	08-May-08	30-Jun-08	12829.98	=""	="GENERATOR PLACE"	05-Jun-08 05:08 PM	

+="CN88997"	"Purchase TSCe - Trimble controller unit"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	14511.20	=""	="ULTIMATE POSITIONING"	05-Jun-08 05:08 PM	

+="CN89035"	"FIELD RATIONS - ION 17864 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	07-May-08	30-Jun-08	15500.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:10 PM	

+="CN89045"	"DEMAND NO. RPAE-7EQFNH POLARIS QUOTE NO. 102375"	="Department of Defence"	05-Jun-08	="Specialised and recreational vehicles"	22-May-08	12-Jun-08	12216.17	=""	="POLARIS SALES AUSTRALIA &"	05-Jun-08 05:10 PM	

+="CN89056"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-May-08	13393.20	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:11 PM	

+="CN89060"	"RE-STOCK OF FURNITURE STORE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	26-Jun-08	14800.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:11 PM	

+="CN89063"	"Mercury Outboard motor"	="Department of Defence"	05-Jun-08	="Marine transport"	22-May-08	30-Jun-08	15081.00	=""	="QUAY MARINE"	05-Jun-08 05:11 PM	

+="CN89064"	"Repair and Calibration"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-08	12920.60	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:11 PM	

+="CN89089"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-May-08	13750.00	=""	="DBM AUSTRALIA"	05-Jun-08 05:12 PM	

+="CN89097"	"CAD package"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	08-May-08	20-Jun-08	13139.50	=""	="PRODUCT LIFECYCLE MANAGEMENT"	05-Jun-08 05:13 PM	

+="CN89099"	"985-AFG009-P3J - Supply and install of fencing."	="Department of Defence"	05-Jun-08	="Security and control equipment"	21-May-08	30-Jun-08	13846.56	=""	="C&C BUILDING MATERIALS"	05-Jun-08 05:13 PM	

+="CN89111"	"PRINTING OF MAPS GAC 28008"	="Department of Defence"	05-Jun-08	="Paper products"	21-May-08	25-Jun-08	12476.20	=""	="MCMILLAN PRINT GROUP"	05-Jun-08 05:13 PM	

+="CN89112"	"Software Support"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	07-May-08	01-Jun-09	12598.87	=""	="SWEDISH INSTITUTE OF COMPUTER"	05-Jun-08 05:13 PM	

+="CN89118"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:14 PM	

+="CN89120"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	21-May-08	30-Jun-08	12940.40	=""	="OLYMPUS AUST PTY LTD"	05-Jun-08 05:14 PM	

+="CN89147"	"PATCHLEADS AND ACCESSORIES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-Jun-08	13247.89	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89161"	"PROVISIONS FOR HMAS SIRIUS FY07/08"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	22-May-08	30-Jun-08	15328.00	=""	="ANGLISS SINGAPORE PTE LTD"	05-Jun-08 05:16 PM	

+="CN89165"	"Computer Accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	13-Jun-08	12134.06	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89174"	"Computer accessories"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	30-May-08	14266.12	=""	="ALLOY COMPUTER PRODUCTS"	05-Jun-08 05:16 PM	

+="CN89176"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:16 PM	

+="CN89180"	"DOCUCENTRE 2005CP"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	19-May-08	23-May-08	14075.05	=""	="FUJI XEROX AUSTRALIA PTY LTD"	05-Jun-08 05:16 PM	

+="CN89182"	"Thin client terminals"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	02-Jun-08	15469.30	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:16 PM	

+="CN89183"	"PERSONAL EFFICIENCY PROGRAM."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	19-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:16 PM	

+="CN89193"	"Training"	="Department of Defence"	05-Jun-08	="Satellites"	09-May-08	30-May-08	13640.00	=""	="MARTIN LACK & ASSOCIATES"	05-Jun-08 05:17 PM	

+="CN89194"	"ANNUAL PROGRAM MEMBERSHIP"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	14-May-08	30-Apr-09	13065.75	=""	="CONSORTIUM FOR ADVANCED MANAGEMENT"	05-Jun-08 05:17 PM	

+="CN89203"	"POC: DAVE MANCHESTER CONTACT: 02 626 50175"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	13794.00	=""	="PLANWELL TECHNOLOGY"	05-Jun-08 05:17 PM	

+="CN89206"	"CFS FIREM SYSTEM MONITORING"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	30-Jun-11	15400.00	=""	="ONKAPARINGA CFS GROUP"	05-Jun-08 05:18 PM	

+="CN89212"	"EX STHN REACH - ION 19641 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	06-May-08	30-Jun-08	15000.00	=""	="TERRY GARDINER'S MEATS &"	05-Jun-08 05:18 PM	

+="CN89216"	"ELECTRICAL PRODUCTS TO REPLENISH ERK KIT"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	20-May-08	28-May-08	14802.88	=""	="IDEAL ELECTRICAL SUPPLIERS PTY LTD"	05-Jun-08 05:18 PM	

+="CN89217"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-May-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:18 PM	

+="CN89227"	"3 Day Defensive/Advanced Driver Training Program"	="Department of Defence"	05-Jun-08	="Medical training and education supplies"	06-May-08	11-Jun-08	15399.00	=""	="MURCOTTS DRIVING EXCELLENCE"	05-Jun-08 05:18 PM	

+="CN89264"	"DFR SPONSORSHIP OF MSAND FOR 2008. OPPORTUNITY TO UNDERGRADUATE MEDICAL STUDENTS PLUS POST GRADUATE"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	14500.00	=""	="MEDICAL STUDENT ASSOCIATION NOTRE"	05-Jun-08 05:20 PM	

+="CN89270"	"Safety Cabinets"	="Department of Defence"	05-Jun-08	="Material handling machinery and equipment"	15-May-08	01-Jul-08	14888.54	=""	="J BLACKWOOD & SON LTD"	05-Jun-08 05:20 PM	

+="CN89273"	"MOBILE PHONES AND CHARGERS"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	15-May-08	13860.07	=""	="WATTS COMMUNICATIONS"	05-Jun-08 05:20 PM	

+="CN89280"	"Consultancy Services"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	12276.00	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	05-Jun-08 05:21 PM	

+="CN89285"	"Seaboat Coxswain Course"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	12838.28	=""	="DEFENCE MARITIME SERVICES PTY LTD"	05-Jun-08 05:21 PM	

+="CN89299"	"Quote by Robert Lacey - Defence Account Manager"	="Department of Defence"	05-Jun-08	="Hardware"	06-May-08	30-Jun-08	12316.90	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 05:22 PM	

+="CN89304"	"Payment of Freight"	="Department of Defence"	05-Jun-08	="Mail and cargo transport"	08-May-08	15-May-08	13211.12	=""	="STAR TRACK EXPRESS PTY LTD"	05-Jun-08 05:22 PM	

+="CN89305"	"BUILDING MODIFICATIONS"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	23-May-08	13570.70	=""	="COMMERCIAL MAINTENANCE"	05-Jun-08 05:22 PM	

+="CN89313"	"FURNITURE FOR BLDG 135, MEOMS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	08-May-08	10-Jun-08	12441.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:22 PM	

+="CN89337"	"DEMAND NO.SGID-7E6DRS"	="Department of Defence"	05-Jun-08	="Electronic Components and Supplies"	09-May-08	30-Jun-08	13184.88	=""	="JOHN R TURK"	05-Jun-08 05:23 PM	

+="CN89341"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	15986.41	=""	="AFC GROUP PTY LTD"	05-Jun-08 05:24 PM	

+="CN89345"	"HIRE OF TEMPORY FENCE"	="Department of Defence"	05-Jun-08	="Military tactics"	02-May-08	17-Jun-08	12035.32	=""	="COATES HIRE OPERATION"	05-Jun-08 05:24 PM	

+="CN89350"	"Hire of VI IAW Drake Standing Offer LH01/05"	="Department of Defence"	05-Jun-08	="Motor vehicles"	15-May-08	30-Jun-08	12033.38	=""	="DRAKE INTERNATIONAL"	05-Jun-08 05:24 PM	

+="CN89359"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	13742.80	=""	="CORPORATE EXPRESS AUSTRALIA"	05-Jun-08 05:24 PM	

+="CN89363"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	12042.06	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 05:25 PM	

+="CN89368"	"CERT III & IV IN FITNESS TRAINING"	="Department of Defence"	05-Jun-08	="Other sports"	15-May-08	30-Jan-09	15815.00	=""	="FITLINK AUSTRALIA PTY LTD"	05-Jun-08 05:25 PM	

+="CN89401"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - SHIPPING CONTAINERS"	="Department of Defence"	05-Jun-08	="Containers and storage"	06-May-08	30-Jun-08	15290.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89405"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - FENCE WORK TO HARRISTOWN DEPOT"	="Department of Defence"	05-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-May-08	30-Jun-08	15923.60	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:27 PM	

+="CN89419"	"Sonar Transceiver -STR (C-MAX) and C-Shell (C-MAX)"	="Department of Defence"	05-Jun-08	="Surveillance and detection equipment"	05-May-08	30-May-08	12210.00	=""	="SONARTECH ATLAS PTY LTD"	05-Jun-08 05:28 PM	

+="CN89420"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	14-May-08	30-Jun-08	13860.00	=""	="ADHESION ASSOCIATES PTY LTD"	05-Jun-08 05:28 PM	

+="CN89422"	"Safety Equipment."	="Department of Defence"	05-Jun-08	="Personal safety and protection"	14-May-08	14-May-08	13699.85	=""	="GEMINEX PTY LTD"	05-Jun-08 05:28 PM	

+="CN89423"	"Remaval and Rebuild of Main Groupswitch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	07-May-08	30-May-08	13585.00	=""	="TELSTRA BUSINESS SERVICES"	05-Jun-08 05:28 PM	

+="CN89425"	"Dietician Services"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	07-May-08	30-Jun-08	12000.00	=""	="DARWIN DIETITIANS"	05-Jun-08 05:28 PM	

+="CN89427"	"SUPPLY & INSTALL LCD TVS & AUDIO SYSTEM GYMNASIUM RAAF DARWIN"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	30-May-08	12572.01	=""	="NORTH COAST STEREO PTY LTD"	05-Jun-08 05:28 PM	

+="CN89429"	"SPARE PARTS"	="Department of Defence"	05-Jun-08	="Motor vehicles"	07-May-08	06-Jun-08	12316.01	=""	="WESTERN DIESEL NT PTY LTD"	05-Jun-08 05:29 PM	

+="CN89439"	"FIRST AID"	="Department of Defence"	05-Jun-08	="Medical facility products"	07-May-08	30-Jun-08	15055.00	=""	="ST JOHN AMBULANCE AUSTRALIA NSW"	05-Jun-08 05:29 PM	

+="CN89440"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	14352.80	=""	="CAFE CULTURE AUSTRALIA PTY LIMITED"	05-Jun-08 05:29 PM	

+="CN89453"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	07-May-08	30-Jun-08	13530.00	=""	="AVANTI FITNESS"	05-Jun-08 05:30 PM	

+="CN89459"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12775.00	=""	="SPARKE HELMORE LAWYERS"	05-Jun-08 05:31 PM	

+="CN89474"	"POC: STEVE BROAD CONTACT: 02 626 60003"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	30-Jun-08	14532.67	=""	="COMMANDER INTEGRATED NETWORKS PTY"	05-Jun-08 05:32 PM	

+="CN89479"	"FORDIGRAPH DEP.SHREDDER E2026FCCM QTY X 5"	="Department of Defence"	05-Jun-08	="Office machines and their supplies and accessories"	16-May-08	23-May-08	15097.50	=""	="GBC AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89486"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	15180.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:32 PM	

+="CN89505"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	12385.49	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:33 PM	

+="CN89511"	"SAFE/SECURE BOX"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	16-May-08	31-Dec-08	12249.99	=""	="SAFE-TEC LOCKSMITHS PTY LTD"	05-Jun-08 05:34 PM	

+="CN89516"	"SUPPLY AND INSTALL SCARDA SYSTEM"	="Department of Defence"	05-Jun-08	="Master control systems"	06-May-08	26-May-08	14916.00	=""	="CONTREC SYSTEMS"	05-Jun-08 05:34 PM	

+="CN89520"	"CATERING"	="Department of Defence"	05-Jun-08	="Restaurants and catering"	06-May-08	06-May-08	14432.00	=""	="KAREN WILL CATER"	05-Jun-08 05:34 PM	

+="CN89531"	"ENVIRONMENTAL IMPACT AND CLIMATE CHANGE WORKSHOP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	16-May-08	30-Jun-08	13361.33	=""	="MAUNSELL AUSTRALIA PTY LTD"	05-Jun-08 05:35 PM	

+="CN89544"	"REPAY DMO FOR UNUSED RESERVE SALARIES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-May-08	15265.37	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:36 PM	

+="CN89550"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	23-May-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:36 PM	

+="CN89553"	"Video Conference System"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	07-May-08	30-Jun-08	15526.50	=""	="PROJECTION PLUS"	05-Jun-08 05:36 PM	

+="CN89559"	"Provide demonstration of reliability and Maintenan -ce Analysis softaware, hardware for DSTO204915"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	07-May-08	09-May-08	15353.80	=""	="EQUIPMENT MANAGEMENT INTERNATIONAL"	05-Jun-08 05:37 PM	

+="CN89561"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	07-May-08	30-Jun-08	12540.00	=""	="INTERWORX PTY LTD"	05-Jun-08 05:37 PM	

+="CN89590"	"Outdoor activity provider for bush trip , 65 DITC staff and long course students  28-30 May 2008"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-May-08	30-May-08	15247.19	=""	="THE JUNGAI CENTRE"	05-Jun-08 05:39 PM	

+="CN89592"	"HAND TOOLS"	="Department of Defence"	05-Jun-08	="Tools and General Machinery"	15-May-08	30-Jun-08	14256.61	=""	="TOOLWORKS"	05-Jun-08 05:39 PM	

+="CN89597"	"SN02274 Ergonomic assesments for ADF Staff across the ACT/SNSW Region"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	04-Jun-08	30-Jun-08	15400.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:39 PM	

+="CN89600"	"Standing Offer 45190"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	15-May-08	30-Jun-08	15599.76	=""	="BLUE SWIMMER CONSULTING"	05-Jun-08 05:39 PM	

+="CN89612"	"MCSA training for SME"	="Department of Defence"	05-Jun-08	="Education and Training Services"	15-May-08	30-Jun-08	15200.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	05-Jun-08 05:40 PM	

+="CN89635"	"FURNITURE RELOCATION AND INSTALLATION REQUIREMENTS FOR 2007/2008"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	15-May-08	30-Jun-08	14297.38	=""	="DICK VERNON CONSTRUCTIONS"	05-Jun-08 05:42 PM	

+="CN89640"	"SAM KEY MANAGEMENT SYSTEM"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	20-Jun-08	13371.00	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:42 PM	

+="CN89665"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	16-May-08	23-May-08	15313.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89669"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	12203.76	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89670"	"PEP Worldwide training for 6 people"	="Department of Defence"	05-Jun-08	="Electronic reference material"	23-May-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	05-Jun-08 05:44 PM	

+="CN89671"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Hardware"	22-May-08	01-Jun-08	14438.61	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89678"	"PRESENTATION OF POWER SEARCHING FOR DEFENCE"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	23-May-08	15282.30	=""	="INFORMATION EDGE PTY LTD"	05-Jun-08 05:44 PM	

+="CN89689"	"REVIEW OF ALBANY PORT AUTHORITY LITIGATION"	="Department of Defence"	05-Jun-08	="Legal services"	31-Mar-08	30-Sep-08	13332.00	=""	="DALE BOUCHER SOLICITOR & CONSULTANT"	05-Jun-08 05:45 PM	

+="CN89690"	"UOTF PROTOTYPE- MAJURA RANGE. FIRE ENGINEERING ASSESSMENT OF J0035-JCTC PROTOTYP"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	23-May-08	30-Jun-08	15950.00	=""	="ARUP PTY LTD"	05-Jun-08 05:45 PM	

+="CN89696"	"Contractor to support JDSSC workshop for JP2065"	="Department of Defence"	05-Jun-08	="Project management"	23-May-08	30-Jun-08	12400.00	=""	="QINETIQ CONSULTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89700"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	02-Jun-08	15686.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:46 PM	

+="CN89723"	"PAYMENT OF HIRE TRANSPORT VEHICLES"	="Department of Defence"	05-Jun-08	="Passenger motor vehicles"	09-May-08	08-Jun-08	13864.42	=""	="SERCO SODEXHO DEFENCE SERVICES"	05-Jun-08 05:47 PM	

+="CN89725"	"REPLACEMENT FUEL HOSES ON DAF 30,000L TANKER REG NO:229757,230079 & 229742"	="Department of Defence"	05-Jun-08	="Aircraft fuel tanks and systems"	15-Apr-08	26-May-08	15720.00	=""	="LIQUIP INTERNATIONAL PTY LTD"	05-Jun-08 05:47 PM	

+="CN89727"	"CHARTER X 2 BROOME/TRUSCOTT FOR OP RESOLUTE 29APR AND 6 MAY 2008 NORFORCE"	="Department of Defence"	05-Jun-08	="Aircraft"	06-May-08	06-May-08	15400.00	=""	="BROOME AVIATION PTY LTD"	05-Jun-08 05:47 PM	

+="CN89730"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12200.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	05-Jun-08 05:48 PM	

+="CN89732"	"FIELD RATIONS - OP CATALYST - ION 15800 FRESH RATIONS"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	23-May-08	30-Jun-08	12000.00	=""	="QUALITY MEATS PTY LTD"	05-Jun-08 05:48 PM	

+="CN89733"	"VEHICLE LEASE 4 TON TELE-HANDLER"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	18-May-08	24-May-08	15761.98	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89753"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-08	12842.50	=""	="MORISON CONSULTING PTY LTD"	05-Jun-08 05:49 PM	

+="CN89756"	"PROVISION OF DEVELOPMENT OF FATIGUE AWARENESS ELEARNING PACKAGE"	="Department of Defence"	05-Jun-08	="Specialised educational services"	23-May-08	30-Jun-08	14344.00	=""	="IMPART CORPORATION PTY LTD"	05-Jun-08 05:49 PM	

+="CN89761"	"INTERIM WORKS  - TRAINEE REHABILITATION WING, MOOR NSW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	14613.81	=""	="CORDUKES"	05-Jun-08 05:50 PM	

+="CN89765"	"COURSE"	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Feb-08	10-Mar-08	15400.00	=""	="INGRES AUSTRALIA"	05-Jun-08 05:50 PM	

+="CN89768"	"AQIS OFFSHORE INSPECTION OP ASTUTE"	="Department of Defence"	05-Jun-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	23-May-08	31-May-08	14898.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	05-Jun-08 05:50 PM	

+="CN89773"	"Security"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	30-May-08	30-Jun-08	12568.60	=""	="CHUBB SECURITY AUST PTY LTD"	05-Jun-08 05:50 PM	

+="CN89785"	"DMO DIPLOMA OF PROJECT MANAGEMENT"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	30-Apr-08	30-Jun-08	12100.00	=""	="DEFENCE MATERIEL ORGANISATION -"	05-Jun-08 05:51 PM	

+="CN89801"	"THREE AIR-RIDE TRAILERS TO COLLECT FREIGHT FROM WL ATTACHED EMAIL."	="Department of Defence"	05-Jun-08	="Transportation services equipment"	17-Apr-08	17-Apr-08	13605.90	=""	="TNT EXPRESS"	05-Jun-08 05:52 PM	

+="CN89811"	"Consultancy services"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	15152.50	=""	="ICON RECRUITMENT"	05-Jun-08 05:53 PM	

+="CN89815"	"PSP contractor"	="Department of Defence"	05-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	13824.47	=""	="RECRUITMENT QUEENSLAND"	05-Jun-08 05:53 PM	

+="CN89818"	"SOFTWARE LICENCES AND SUPPORT"	="Department of Defence"	05-Jun-08	="Software"	26-May-08	30-May-08	14685.00	=""	="IBM AUSTRALIA LTD"	05-Jun-08 05:53 PM	

+="CN89821"	"Consultant for accomodation project"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	13468.91	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 05:53 PM	

+="CN89857"	"FROZEN FOOD"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	21-Apr-08	30-Jun-08	15569.46	=""	="TOP CUT SYDNEY PTY LTD"	05-Jun-08 05:56 PM	

+="CN89862"	"FURNITURE FOR ARMIDALE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	15102.20	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Jun-08 05:56 PM	

+="CN89868"	"The NBS Request to UDP Work Package 185/07"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-May-08	13899.12	=""	="RITECH"	05-Jun-08 05:56 PM	

+="CN89887"	"LWP-G 3-9-6 DOCTRINE PUBLCIATION"	="Department of Defence"	05-Jun-08	="Education and Training Services"	12-Nov-07	27-Jun-08	12801.39	=""	="NOETIC SOLUTIONS PTY LTD"	05-Jun-08 05:57 PM	

+="CN89900"	"POC: GLENN MACKAY CONTACT: 08 9956 2565"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	24-May-08	30-Jun-08	15237.20	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	05-Jun-08 05:58 PM	

+="CN89902"	"TRANSPORT CASES"	="Department of Defence"	05-Jun-08	="Luggage and handbags and packs and cases"	26-May-08	31-May-08	15840.00	=""	="PRODATA PTY LTD"	05-Jun-08 05:58 PM	

+="CN89918"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	12280.99	=""	="CODARRA ADVANCED SYSTEMS"	05-Jun-08 05:59 PM	

+="CN89924"	"FACOPS"	="Department of Defence"	05-Jun-08	="Pest control products"	26-May-08	30-Jun-08	13156.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89925"	"Itronix VR-2 Semi Rugged Notebooks"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	12-May-08	29-May-08	14737.80	=""	="ANTARES CORPORATION PTY LTD"	05-Jun-08 06:00 PM	

+="CN89927"	"Apron Lighting Survey for RAAF Edinburgh"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	12-May-08	30-Jun-08	12100.00	=""	="SPOTLESS P & F PTY LTD"	05-Jun-08 06:00 PM	

+="CN89946"	"OFFICE WORKSTATIONS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	13-May-08	17-Jun-08	12012.00	=""	="KEEN OFFICE FURNITURE"	05-Jun-08 06:01 PM	

+="CN89947"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR EDINBURUGH ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12648.90	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89949"	"SERVER RACKS AND ASSOCIATED REQUIREMENTS FOR PUCKAPUNYAL ISIS"	="Department of Defence"	05-Jun-08	="Minerals and ores and metals"	21-May-08	21-May-08	12752.30	=""	="SERVER RACKS AUSTRALIA"	05-Jun-08 06:01 PM	

+="CN89952"	"AERONAUTICAL ENGINEER"	="Department of Defence"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	30-Jun-08	14625.90	=""	="BALL SOLUTIONS GROUP PTY LTD"	05-Jun-08 06:02 PM	

+="CN89953"	"FOAM FLOATATION COLLAR FOR DUMMY TOPEDO UNDER BOEI NG STANDING OFFER 873864"	="Department of Defence"	05-Jun-08	="Manufacturing support services"	21-May-08	06-Jun-08	12636.00	=""	="BOEING AEROSPACE SUPPORT"	05-Jun-08 06:02 PM	

+="CN89955"	" Education expenses "	="Department of Defence"	05-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-May-08	30-Jun-08	12262.40	=""	="AUSTRALIAN INTERNATIONAL SCHOOL"	05-Jun-08 06:02 PM	

+="CN88590"	"Cylinder Assembly, Actuating, Linear"	="Defence Materiel Organisation"	06-Jun-08	="Motor vehicles"	05-Jun-08	26-Jun-08	12944.14	=""	="Volvo Commercial Vehicles"	06-Jun-08 09:27 AM	

+="CN89978-A1"	"S70B AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	29-May-08	21-Oct-08	14218.18	=""	="ASIA PACIFIC AEROSPACE"	06-Jun-08 10:01 AM	

+="CN89986"	" S70B AIRCRAFT SPARES "	="Defence Materiel Organisation"	06-Jun-08	="Aircraft"	27-May-08	07-Jan-09	13879.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Jun-08 11:02 AM	

+="CN90021"	"Printing of manuals"	="Australian Electoral Commission"	06-Jun-08	="Industrial printing services"	12-May-08	23-May-08	13574.00	=""	="Mediaform Computer Supplies Pty Ltd"	06-Jun-08 02:35 PM	

+="CN90031"	"Provision of 19' flat panel LCD monitors"	="Comsuper"	06-Jun-08	="Hardware"	15-May-08	12-Jun-08	14916.00	=""	="Dell Australia"	06-Jun-08 02:53 PM	

+="CN90045"	" Make Good "	="Department of Human Services"	06-Jun-08	="Lease and rental of property or building"	02-Jun-08	30-Jun-08	12210.00	=""	="Alinta Asset Management"	06-Jun-08 03:39 PM	

+="CN87707"	"Contractor EL1 for USO"	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	06-May-08	02-Jun-08	13000.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	06-Jun-08 04:14 PM 

--- /dev/null
+++ b/admin/partialdata/05Jun2008to09Jun2008val16000to20000.xls
@@ -1,1 +1,181 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN87919"	"Lease for MPS courier vehicle Running costs for MPS courier vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	05-Jun-08	="Travel facilitation"	15-Sep-06	14-Sep-08	17428.31	="FINANCE04001"	="LeasePlan Australia Ltd"	05-Jun-08 10:17 AM	

+="CN87934"	"NUT, SELF-LOCKING, BARREL NSN 5310/005791761"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	15-May-08	13-Aug-08	18065.00	=""	="TURBOANALISIS INC"	05-Jun-08 10:47 AM	

+="CN87957"	"Use of Exisitng ASP Contract  - 12M Maintenance Governor Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Steering system"	16-May-08	30-Jun-08	17155.22	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:03 PM	

+="CN87961"	"FACE GUARD PARARESCUE"	="Defence Materiel Organisation"	05-Jun-08	="Face and head protection"	17-May-08	20-Oct-08	19755.41	=""	="TRANSAERO INC."	05-Jun-08 01:03 PM	

+="CN87975"	"PMS7617 3000hr on both Main Engines HMAS Tarakan"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	16-May-08	30-Jun-08	19308.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	05-Jun-08 01:05 PM	

+="CN87976"	"Review distribution process of the overheads of ASC and its subsidiaries"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	16-May-08	30-Jun-08	18331.50	=""	="KPMG AUSTRALIA"	05-Jun-08 01:05 PM	

+="CN87991"	"Helmet Liner, Absorbent"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	29-Aug-08	18224.10	=""	="DOW COVER COMPANY INCORPORATED DBA"	05-Jun-08 01:07 PM	

+="CN88006"	"Technical Support for JP02059Ph3"	="Defence Materiel Organisation"	05-Jun-08	="Water and wastewater treatment supply and disposal"	20-May-08	30-Jun-08	20000.00	=""	="PALL AUSTRALIA"	05-Jun-08 01:09 PM	

+="CN88019"	"pc9 aircraft spares"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	19-May-08	30-Jul-08	18037.90	=""	="PILATUS AIRCRAFT LTD"	05-Jun-08 01:10 PM	

+="CN88034"	"CABLE"	="Defence Materiel Organisation"	05-Jun-08	="Electrical wire and cable and harness"	14-May-08	30-Jun-08	19610.36	=""	="ANDERSON CORPORATION PTY LTD"	05-Jun-08 01:12 PM	

+="CN88036"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Powered fixed wing aircraft"	14-May-08	30-Jun-08	16465.64	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:12 PM	

+="CN88038"	"Professional Fees and Disbursement Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	14-May-08	30-Jun-08	16402.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:12 PM	

+="CN88052"	"Washing Machine for HMAS SUCCESS"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	14-May-08	30-Jun-08	16362.02	=""	="MIELE AUSTRALIA PTY LTD"	05-Jun-08 01:14 PM	

+="CN88053"	"SOFTWARE PACKAGE FOR 1 YEAR EVALUATION"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	16-Jun-08	16500.00	=""	="EUROFIELD INFORMATION SOLUTIONS"	05-Jun-08 01:14 PM	

+="CN88059"	"PURCHASE OF LICENCES"	="Defence Materiel Organisation"	05-Jun-08	="Software"	14-May-08	14-May-08	16720.00	=""	="IBISWORLD PTY LTD"	05-Jun-08 01:15 PM	

+="CN88084"	"PRINTER"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	26-May-08	16464.59	=""	="CANON AUSTRALIA PTY LTD"	05-Jun-08 01:18 PM	

+="CN88085"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	18205.00	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 01:18 PM	

+="CN88097"	"10 Yearly Inspection for Qty: 1, Elevated Work Platform"	="Defence Materiel Organisation"	05-Jun-08	="Hydraulic machinery and equipment"	15-May-08	30-Aug-08	17415.91	=""	="NTP FORKLIFTS AUST"	05-Jun-08 01:20 PM	

+="CN88132"	"POC: CHRISTIAN BARBIRAN CONTACT: 02 626 50782"	="Defence Materiel Organisation"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	18554.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	05-Jun-08 01:24 PM	

+="CN88136"	"Professional Legal Fees"	="Defence Materiel Organisation"	05-Jun-08	="Legal services"	22-May-08	30-Jun-08	19844.00	=""	="CLAYTON UTZ"	05-Jun-08 01:24 PM	

+="CN88143"	"Heat Sink"	="Defence Materiel Organisation"	05-Jun-08	="Military fixed wing aircraft"	23-May-08	22-Sep-08	19533.82	=""	="BAE SYSTEMS INFORMATION AND"	05-Jun-08 01:25 PM	

+="CN88146"	"SURVEY OF ANZAC SHIPS"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	23-May-08	10-Jun-08	17683.99	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	05-Jun-08 01:25 PM	

+="CN88154"	"Determine Suitable Alternatives for Lubricants / Solvents"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	26-May-08	31-Jul-08	17521.60	=""	="THALES AUSTRALIA"	05-Jun-08 01:26 PM	

+="CN88158"	"BOX, WOOD, TRANSPARENT ARMOUR"	="Defence Materiel Organisation"	05-Jun-08	="Wood and paper industries"	26-May-08	17-Sep-08	16533.57	=""	="THALES AUSTRALIA"	05-Jun-08 01:27 PM	

+="CN88192"	"Control & Bit"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	20-May-08	31-Mar-09	19563.26	=""	="RAYTHEON AUSTRALIA"	05-Jun-08 01:31 PM	

+="CN88193"	"Use of Exisitng ASP Contract  - Eng Assess Overr Torque Alarm"	="Defence Materiel Organisation"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	30-Jun-08	17686.52	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88196"	"Use of Exisitng ASP Contract  - Eng Assess Cleaning Station for Paint Store"	="Defence Materiel Organisation"	05-Jun-08	="Decontamination aids and safety cleaning equipment"	20-May-08	30-Jun-08	16064.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88198"	"Use of Exisitng ASP Contract  - Eng Assess Instal Remote Grease Lines in RAS Rig"	="Defence Materiel Organisation"	05-Jun-08	="Lubricants and oils and greases and anti corrosives"	20-May-08	30-Jun-08	16094.93	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:31 PM	

+="CN88200"	"Use of Exisitng ASP Contract  - Modify Vent GEA Purifier Upgrade"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	20-May-08	30-Jun-08	17296.13	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:32 PM	

+="CN88202"	"Laser Sighting Scope"	="Defence Materiel Organisation"	05-Jun-08	="Arms and ammunition accessories"	20-May-08	30-Aug-08	17809.14	=""	="LASER PRODUCTS"	05-Jun-08 01:32 PM	

+="CN88212"	"VoP For ISS contract C388561, Inv 70400"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft equipment"	20-May-08	27-Jun-08	19255.23	=""	="BAE SYSTEMS AUSTRALIA - EUR"	05-Jun-08 01:33 PM	

+="CN88221"	"OPTICAL SURVEILLANCE SYSTEMS COURSE FROM 29 SEP - 3 OCT 2008"	="Defence Materiel Organisation"	05-Jun-08	="Vocational training"	20-May-08	03-Oct-08	18500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	05-Jun-08 01:34 PM	

+="CN88223"	"INMARSAT Training"	="Defence Materiel Organisation"	05-Jun-08	="Satellites"	20-May-08	31-May-08	16846.50	=""	="TC COMMUNICATIONS PTY LTD"	05-Jun-08 01:34 PM	

+="CN88231"	"ORDER RAISED FOR THE SUPPLY OF OEP 89 (REGAL MARIN"	="Defence Materiel Organisation"	05-Jun-08	="Fuels"	21-May-08	30-May-08	18604.79	=""	="INCHCAPE SHIPPING SERVICES (ABU DHA"	05-Jun-08 01:35 PM	

+="CN88238"	"PROVIDE SERVICES FOR HAMS PARRAMATTA DSRA02/IMAV02"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	22-May-08	10-Jun-08	19043.42	=""	="PATRICK DEFENCE LOGISTICS"	05-Jun-08 01:36 PM	

+="CN88242"	"Dehumidifier"	="Defence Materiel Organisation"	05-Jun-08	="Industrial filtering and purification"	22-May-08	30-Jul-08	19482.10	=""	="ENVIRO-TRONICS"	05-Jun-08 01:37 PM	

+="CN88256"	"VENUE HIRE & CATERING FOR CADET ASSESSMENT CENTRE"	="Defence Materiel Organisation"	05-Jun-08	="Industrial food and beverage equipment"	21-May-08	30-Jun-08	16000.01	=""	="ADELAIDE CONVENTION CENTRE"	05-Jun-08 01:38 PM	

+="CN88260"	"Boot Fitter for Kapooka and RMC"	="Defence Materiel Organisation"	05-Jun-08	="Clothing"	21-May-08	30-Sep-08	19800.00	=""	="REDBACK BOOT COMPANY PTY LTD"	05-Jun-08 01:39 PM	

+="CN88286"	"LPA AVO SURV EQUIP STORAGE COMP DDP"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	30-Apr-08	13-Jun-08	16510.79	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	05-Jun-08 01:42 PM	

+="CN88298"	"Terms and Conditions as per attachments."	="Defence Materiel Organisation"	05-Jun-08	="Fabrics and leather materials"	08-Apr-08	30-May-08	16087.50	=""	="ARCADE BADGE EMBROIDERY CO"	05-Jun-08 01:43 PM	

+="CN88307"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	30-May-08	30-May-08	17473.50	=""	="ADVITECH PTY LTD"	05-Jun-08 01:44 PM	

+="CN88322"	"Production of NAVCMC DVD - February 2008"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	06-May-08	31-May-08	17380.00	=""	="MWA SYSTEMS PTY LTD"	05-Jun-08 01:46 PM	

+="CN88328"	"JP02087 HAZARD TESTING MATERIAL"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	13-May-08	16-Jun-08	16018.64	=""	="COUNTER TERRORISM SOLUTIONS ASIA"	05-Jun-08 01:46 PM	

+="CN88331"	"AIRCONDITIONING TRAINING"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	01-May-08	30-Jul-08	16720.00	=""	="SOUTHERN QLD INSTITUTE OF TAFE"	05-Jun-08 01:47 PM	

+="CN88337"	"Use of Exisitng ASP Contract  - CO2 System Annual Service"	="Defence Materiel Organisation"	05-Jun-08	="Fire protection"	05-May-08	30-Jun-08	16100.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:47 PM	

+="CN88352"	"Support Contract"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing support services"	29-May-08	30-Jun-09	18201.26	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	05-Jun-08 01:49 PM	

+="CN88356"	"Servicingof WTR Cranes"	="Defence Materiel Organisation"	05-Jun-08	="Measuring and observing and testing instruments"	26-Apr-07	30-Jun-08	16040.84	=""	="BINKSIE SERVICES CO PTY LTD"	05-Jun-08 01:50 PM	

+="CN88357"	"Procure Suplus and Redundant Radar Assets from closure of Thales St Mary's facility"	="Defence Materiel Organisation"	05-Jun-08	="Military watercraft"	02-Jun-08	07-Jun-08	19235.50	=""	="THALES AUSTRALIA"	05-Jun-08 01:50 PM	

+="CN88362"	"OVERHAUL OF MAIN WHEELS AND BRAKES FOR B707 AIRCRAFT"	="Defence Materiel Organisation"	05-Jun-08	="Aircraft"	02-Jun-08	30-Jun-08	16769.50	=""	="QANTAS DEFENCE SERVICES PTY LTD"	05-Jun-08 01:50 PM	

+="CN88417"	"Repair of F/A-18 CMT Module for FCC"	="Defence Materiel Organisation"	05-Jun-08	="Aerospace systems and components and equipment"	17-Oct-07	30-Jun-08	18251.55	=""	="BOEING AUSTRALIA LIMITED"	05-Jun-08 01:57 PM	

+="CN88418"	"Accommodation ladders for HMAS KANIMBLA"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	10-Feb-08	18754.74	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	05-Jun-08 01:57 PM	

+="CN88429"	"COMBINED MARITIME FORCES HMAS TOBRUK"	="Defence Materiel Organisation"	05-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-May-08	30-May-08	17345.35	=""	="TENIX DEFENCE PTY LTD"	05-Jun-08 01:59 PM	

+="CN88433"	"WiniFRED Support"	="Defence Materiel Organisation"	05-Jun-08	="Computer services"	12-May-08	31-May-08	19536.00	=""	="FRED HEALTH PTY LTD"	05-Jun-08 01:59 PM	

+="CN88436"	"Use of Exisitng ASP Contract  - RAS Air Compre Maintenance"	="Defence Materiel Organisation"	05-Jun-08	="Industrial pumps and compressors"	12-May-08	30-Jun-08	17003.09	=""	="ASP SHIP MANAGEMENT PTY LTD"	05-Jun-08 01:59 PM	

+="CN88454"	"Storage containers for POD Shop"	="Defence Materiel Organisation"	05-Jun-08	="Containers and storage"	09-May-08	15-May-08	17655.00	=""	="SIMPLY CONTAINERS"	05-Jun-08 02:02 PM	

+="CN88463"	"SPECIALIST ADVICE AND EXPORT FACILITATION SUPPORT"	="Defence Materiel Organisation"	05-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	17501.00	=""	="BRIAN ADAMS CONSULTING PTY LTD"	05-Jun-08 02:03 PM	

+="CN88505"	"FA18 Captive Carriage Trials - Design Report"	="Defence Materiel Organisation"	05-Jun-08	="Business and corporate management consultation services"	13-May-08	15-Jun-08	19219.86	=""	="JACOBS AUSTRALIA"	05-Jun-08 02:08 PM	

+="CN88554"	"CADAS Printers"	="Defence Materiel Organisation"	05-Jun-08	="Air transportation support systems and equipment"	09-May-08	31-May-08	17253.34	=""	="AIRSERVICES AUSTRALIA"	05-Jun-08 02:14 PM	

+="CN88580"	"SLAP BLOCK ROPE"	="Defence Materiel Organisation"	05-Jun-08	="Manufacturing Components and Supplies"	08-May-08	05-Jun-08	18299.56	=""	="MACK TRUCKS AUSTRALIA"	05-Jun-08 02:17 PM	

+="CN88608"	"DPCU TROUSERS"	="Defence Materiel Organisation"	05-Jun-08	="Slacks and trousers and shorts"	05-Jun-08	13-Jun-08	16188.66	=""	="CTE"	05-Jun-08 03:00 PM	

+="CN88610"	"Moderation project"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	26-Jun-08	18208.00	="PRN18355"	="LABYRINTH CONSULTANCY (TAS) PTY LTD"	05-Jun-08 03:03 PM	

+="CN88615"	"Endeavour Awards promotional booklet"	="Department of Education Employment and Workplace Relations"	05-Jun-08	="Marketing and distribution"	30-May-08	30-Jun-08	16304.94	="PRN19904"	="EQUATION CORPORATE DESIGN"	05-Jun-08 03:05 PM	

+="CN88663"	"SEAT, AIRCRAFT NSN 1680/006712101"	="Defence Materiel Organisation"	05-Jun-08	="Military transport aircraft"	12-May-08	14-Oct-08	19880.50	=""	="MILITARY AVIATION SPARES PTY LTD"	05-Jun-08 03:55 PM	

+="CN88693"	"OP OUTREACH - Transportation DWN-Minyerri-Yarralin"	="Department of Defence"	05-Jun-08	="Transportation and Storage and Mail Services"	12-May-08	12-May-08	17589.00	=""	="PDL TOLL"	05-Jun-08 04:47 PM	

+="CN88701"	"Carmel Verde, $41.20p/hr, 25 hrs p/w. Extention of current contract"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Oct-08	18128.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	05-Jun-08 04:48 PM	

+="CN88736"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	14-May-08	30-Jun-09	19250.00	=""	="MINTER ELLISON"	05-Jun-08 04:53 PM	

+="CN88737"	"OFFICE FURNTIURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	31-May-08	18326.00	=""	="SITZ"	05-Jun-08 04:53 PM	

+="CN88748"	"BREAK FIX REPLACEMENT OF AN UNSUPPORTED PABX FOR THE NATIONAL TMS CONTRACT."	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	13-May-08	30-May-08	17005.99	=""	="NEC AUSTRALIA PTY LTD"	05-Jun-08 04:55 PM	

+="CN88758"	"FURNITUR FOR AIR MOVEMENTS, BLDG167"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	13-Jun-08	17050.01	=""	="NOM OFFICE SOLUTIONS"	05-Jun-08 04:57 PM	

+="CN88773"	"University fees for JOPES studnets"	="Department of Defence"	05-Jun-08	="Education and Training Services"	21-May-08	29-May-08	17988.80	=""	="UNI OF NEW ENGLAND"	05-Jun-08 04:58 PM	

+="CN88794"	"Please Note:  All invoices relating to this Purcha directed only to the address cited on the Purchas"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-May-08	20-Jun-08	19748.30	=""	="MEASUREMENT INNOVATION PTY LTD"	05-Jun-08 04:59 PM	

+="CN88805"	"Laptops Computers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	02-Jun-08	16201.90	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 04:59 PM	

+="CN88808"	"PSP required to conduct Infrastructure Appraisal period 14MAY-27JUN08"	="Department of Defence"	05-Jun-08	="Building and Construction Machinery and Accessories"	21-May-08	30-Jun-08	17734.75	=""	="HAYS PERSONNEL SERVICES"	05-Jun-08 05:00 PM	

+="CN88810"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19749.99	=""	="DEACONS"	05-Jun-08 05:00 PM	

+="CN88814"	"UTILITIES FY07/08"	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	21-May-08	30-Jun-08	16400.96	=""	="SP SERVICES LIMITED"	05-Jun-08 05:00 PM	

+="CN88826"	"S5153, WR 300062614. Project Mgt during the upgrad JOSS Operations room and adjacent areas to provid"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	21-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:00 PM	

+="CN88856"	"Cables and media converters"	="Department of Defence"	05-Jun-08	="Electrical wire and cable and harness"	20-May-08	30-Jun-08	18716.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:02 PM	

+="CN88865"	"Labour Hire for Alison Roberts and Nina Barlow in support for the introduction and ongoing sustainme"	="Department of Defence"	05-Jun-08	="Bombs and grenades"	20-May-08	30-Jun-08	19200.81	=""	="VEDIOR AISA PACIFIC PTY LTD"	05-Jun-08 05:02 PM	

+="CN88872"	"RFAD-300 Pyramidal Absorbers With Velcro Backing"	="Department of Defence"	05-Jun-08	="Laboratory and scientific equipment"	19-May-08	30-Jun-08	19206.00	=""	="R F I INDUSTRIES PTY LTD"	05-Jun-08 05:03 PM	

+="CN88889"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	17000.01	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	05-Jun-08 05:04 PM	

+="CN88892"	"LCD MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	18073.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:04 PM	

+="CN88903"	"COMPUTER EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	13-May-08	31-May-08	19706.72	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	05-Jun-08 05:04 PM	

+="CN88910"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	21-May-08	16940.00	=""	="INNOVATION TECHNOLOGY SERVICES"	05-Jun-08 05:04 PM	

+="CN88916"	"Storage works array/HDDs"	="Department of Defence"	05-Jun-08	="Hardware"	21-May-08	30-Jun-08	16219.50	=""	="COMPUTERCORP PTY LTD"	05-Jun-08 05:05 PM	

+="CN88952"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	21-May-08	30-Jun-08	18069.48	=""	="OZ DESIGN FURNITURE"	05-Jun-08 05:06 PM	

+="CN88974"	"TABLES & STOOLS"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	19-May-08	30-Jun-08	17902.50	=""	="INTERWORX PTY LTD"	05-Jun-08 05:07 PM	

+="CN88977"	"PROFESSIONAL FEES"	="Department of Defence"	05-Jun-08	="Legal services"	19-May-08	30-Jun-08	19580.00	=""	="CLAYTON UTZ"	05-Jun-08 05:07 PM	

+="CN88992"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	19-May-08	19-Jun-08	18227.51	=""	="CISTECH SOLUTIONS"	05-Jun-08 05:08 PM	

+="CN88994"	"DS-NQ-TS GAP YEAR"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	17160.00	=""	="EMPIRE BUSINESS FURNITURE"	05-Jun-08 05:08 PM	

+="CN89011"	"POC: LTCOL Sloan"	="Department of Defence"	05-Jun-08	="Software"	08-May-08	30-Jun-08	16280.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	05-Jun-08 05:09 PM	

+="CN89017"	"TRAINING"	="Department of Defence"	05-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	08-May-08	15-May-08	18120.00	=""	="PRIORITY MANAGEMENT NSW"	05-Jun-08 05:09 PM	

+="CN89019"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	20-May-08	30-Jun-08	17066.50	=""	="DIRECT ERGONOMICS PTY LTD"	05-Jun-08 05:09 PM	

+="CN89027"	"VIDEO CONFERENCING UNIT FOR SINGLETON"	="Department of Defence"	05-Jun-08	="Photographic and recording media"	22-May-08	26-Jun-08	16301.80	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	05-Jun-08 05:10 PM	

+="CN89033"	"REC & GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Gymnastics and boxing equipment"	22-May-08	30-Jun-08	17776.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:10 PM	

+="CN89044"	"TENNIS COURT RESURFACE"	="Department of Defence"	05-Jun-08	="Recreation and playground and swimming and spa equipment and supplies"	07-May-08	30-Jun-08	18821.00	=""	="RECREATIONAL SURFACING PTY LTD"	05-Jun-08 05:10 PM	

+="CN89050"	"UPGRADE STORAGE FACLITIES"	="Department of Defence"	05-Jun-08	="Containers and storage"	07-May-08	30-Jun-08	18736.30	=""	="SOUTHERN SHOP & OFFICE"	05-Jun-08 05:11 PM	

+="CN89057"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	22-May-08	22-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 05:11 PM	

+="CN89068"	"SERVERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	19932.00	=""	="POWERCORP PTY LTD"	05-Jun-08 05:11 PM	

+="CN89088"	"FEES-ZETLAND-PROFIT SHARE REVIEW."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	08-May-08	30-Jun-08	17600.00	=""	="HILL PDA"	05-Jun-08 05:12 PM	

+="CN89104"	"Certification process of Laser cladding of AA70000 alloys for FY07/08"	="Department of Defence"	05-Jun-08	="Alloys"	20-May-08	30-Jun-08	18942.00	=""	="ROSEBANK ENGINEERING PTY LTD"	05-Jun-08 05:13 PM	

+="CN89105"	"SPORTING EQUIPMENT FOR 1RTU GYM"	="Department of Defence"	05-Jun-08	="Fitness equipment"	21-May-08	04-Jun-08	16737.83	=""	="SPORTSMANS WAREHOUSE"	05-Jun-08 05:13 PM	

+="CN89107"	"MEDICAL SERVICES"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	20-May-08	31-Jul-09	16500.00	=""	="JOHN TREACY PRACTICE"	05-Jun-08 05:13 PM	

+="CN89125"	"HP SERVER"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-May-08	17421.80	=""	="ALFA COMPUTERS PTY LTD"	05-Jun-08 05:14 PM	

+="CN89140"	"SUPPLY AND INSTALL ELECTRICAL & COMMUNICATION EQUIPMENT"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	22-May-08	30-Jun-08	17008.05	=""	="HEYDAY GROUP PTY LTD"	05-Jun-08 05:15 PM	

+="CN89159"	"ASSOCIATION SUBSCRIPTION"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	16152.40	=""	="LLOYDS REGISTER EMEA"	05-Jun-08 05:15 PM	

+="CN89163"	"New Power and DRN Data Infrastructure works at Bui Gallipoli Barracks, Enoggera."	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	26-Jun-08	17645.10	=""	="QLD DATA N ELECTRICAL SERVICES"	05-Jun-08 05:16 PM	

+="CN89164"	"36 x SOLAR AIRFIELD LIGHTS"	="Department of Defence"	05-Jun-08	="Lighting and fixtures and accessories"	22-May-08	30-Jun-08	18485.50	=""	="SEALITE PTY LTD"	05-Jun-08 05:16 PM	

+="CN89213"	"S5272, WR 300080484. World Youth Day 2008is an eve Defence, this proposal is to provide tented accom"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-09	20000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:18 PM	

+="CN89228"	"BANDIANA : JLU(v) WAREHOUSING FACILITIES. ADVERTISING FOR JLU(V) PROJECT."	="Department of Defence"	05-Jun-08	="Building construction and support and maintenance and repair services"	20-May-08	30-Jun-09	16500.00	=""	="HMA BLAZE PTY LTD"	05-Jun-08 05:18 PM	

+="CN89237"	"SHREDDERS"	="Department of Defence"	05-Jun-08	="Electrical equipment and components and supplies"	20-May-08	30-Jun-08	19789.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	05-Jun-08 05:19 PM	

+="CN89251"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	27-May-08	19037.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:20 PM	

+="CN89252"	"S5272, WR 300082687. Randwick - OP Testament - DMM Fee"	="Department of Defence"	05-Jun-08	="Building and Construction and Maintenance Services"	15-May-08	30-Jun-08	17078.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	05-Jun-08 05:20 PM	

+="CN89257"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	19113.49	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:20 PM	

+="CN89259"	"NAVY PROMOTIONAL BASEBALL CAPS"	="Department of Defence"	05-Jun-08	="Advertising"	09-May-08	13-Jun-08	19745.00	=""	="PAULA M PROMOTIONS"	05-Jun-08 05:20 PM	

+="CN89265"	"XLG3 Video Probe and white side view"	="Department of Defence"	05-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	09-May-08	06-Jun-08	16797.00	=""	="GE INSPECTION TECHNOLOGIES"	05-Jun-08 05:20 PM	

+="CN89269"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	06-May-08	06-May-08	17530.00	=""	="VIDEOCRAFT EQUIPMENT PTY LTD"	05-Jun-08 05:20 PM	

+="CN89290"	"CONTRACT SERVICES"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	19338.00	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:21 PM	

+="CN89292"	"Exposure Racks"	="Department of Defence"	05-Jun-08	="Engineering and Research and Technology Based Services"	08-May-08	20-Jun-08	17875.00	=""	="TOOLTIME ENGINEERING"	05-Jun-08 05:21 PM	

+="CN89294"	"REPAIR 110 LANDROVER ENGINE"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-May-08	23-May-08	18360.51	=""	="WILLIS & SON AUTOMOTIVE REPAIRS"	05-Jun-08 05:21 PM	

+="CN89306"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	15-May-08	19712.00	=""	="LOOKING UP FEELING GOOD"	05-Jun-08 05:22 PM	

+="CN89338"	"Comms / IT Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	15-May-08	05-Jun-08	19637.20	=""	="CERULEAN SOLUTIONS LTD"	05-Jun-08 05:23 PM	

+="CN89340"	"CONSTUCTION AND SECURETY"	="Department of Defence"	05-Jun-08	="General building construction"	09-May-08	10-Jul-08	18418.40	=""	="CHUBB ELECTRONIC SECURITY"	05-Jun-08 05:23 PM	

+="CN89351"	"Computer Equipment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	02-May-08	29-May-08	19712.39	=""	="HEWLETT PACKARD AUSTRALIA LTD"	05-Jun-08 05:24 PM	

+="CN89354"	"Software and hardware for OSA"	="Department of Defence"	05-Jun-08	="Hardware"	02-May-08	31-Dec-08	18194.77	=""	="SAI GLOBAL LTD"	05-Jun-08 05:24 PM	

+="CN89376"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	08-May-08	30-Jun-08	17226.50	=""	="PHILLIPS FOX SYDNEY"	05-Jun-08 05:25 PM	

+="CN89398"	"OFFICE FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16813.50	=""	="SLEEP FIRM  AUSTRALIA"	05-Jun-08 05:26 PM	

+="CN89402"	"IT EQUIPMENT"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	19985.93	=""	="SUN MICROSYSTEMS"	05-Jun-08 05:27 PM	

+="CN89411"	"Electronic Key Safe"	="Department of Defence"	05-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	05-May-08	30-Jun-08	18441.01	=""	="CIC SECURE PTY LTD"	05-Jun-08 05:27 PM	

+="CN89430"	"FURNITURE"	="Department of Defence"	05-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	16665.00	=""	="SANTA FURNITURE DESIGN PTY LTD"	05-Jun-08 05:29 PM	

+="CN89467"	"AUDIO VISUAL EQUIPMENT RENTAL"	="Department of Defence"	05-Jun-08	="Audio and visual presentation and composing equipment"	16-May-08	06-Jun-08	16256.68	=""	="AUDIO VISUAL EVENTS PTY LTD"	05-Jun-08 05:31 PM	

+="CN89478"	"Printers"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	07-May-08	21-May-08	18942.13	=""	="ASI SOLUTIONS PTY LTD"	05-Jun-08 05:32 PM	

+="CN89481"	"supply of fresh bread brisbane"	="Department of Defence"	05-Jun-08	="Bread and biscuits and cookies"	16-May-08	30-Jul-08	16500.00	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	05-Jun-08 05:32 PM	

+="CN89487"	"TIED WORK"	="Department of Defence"	05-Jun-08	="Legal services"	16-May-08	30-Jun-08	16611.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	05-Jun-08 05:32 PM	

+="CN89517"	"Computer Equiptment"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	18814.17	=""	="LOGITECH PTY LTD"	05-Jun-08 05:34 PM	

+="CN89567"	"SCAFFOLDING TO SUIT C17"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	15-May-08	05-Jun-08	17781.50	=""	="INSTANT ACCESS"	05-Jun-08 05:38 PM	

+="CN89571"	"supply of fresh meat  rockhampton"	="Department of Defence"	05-Jun-08	="Meat and poultry"	15-May-08	30-Jul-08	16500.00	=""	="PETER BOODLES QUALITY MEATS"	05-Jun-08 05:38 PM	

+="CN89574"	"Provision initial system configuration for the GIS environment - SME"	="Department of Defence"	05-Jun-08	="Software"	15-May-08	30-Jun-08	16226.10	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	05-Jun-08 05:38 PM	

+="CN89577"	"GYM EQUIPMENT"	="Department of Defence"	05-Jun-08	="Fitness equipment"	06-May-08	30-May-08	16500.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	05-Jun-08 05:38 PM	

+="CN89579"	"Multi Computer Switch"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	06-May-08	30-May-08	18883.59	=""	="TENIX DATAGATE PTY LTD"	05-Jun-08 05:38 PM	

+="CN89633"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	05-Jun-08	="Transportation services equipment"	22-Apr-08	30-Jun-08	16277.80	=""	="TNT EXPRESS"	05-Jun-08 05:42 PM	

+="CN89639"	"CONSULTANT"	="Department of Defence"	05-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-08	17196.56	=""	="INFOFOCUS AUSTRALIA"	05-Jun-08 05:42 PM	

+="CN89642"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:42 PM	

+="CN89650"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89651"	"GBW REACTIVE MAINTENANCE ROUTINE WORKS"	="Department of Defence"	05-Jun-08	="Construction and maintenance support equipment"	18-Apr-08	30-Jun-08	16240.96	=""	="SPOTLESS SVCS AUST SQLD TRUST"	05-Jun-08 05:43 PM	

+="CN89656"	"PURCHASE OF PRINTERS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17710.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	05-Jun-08 05:43 PM	

+="CN89660"	"PURCHASE OF MONITORS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	06-Jun-08	17050.00	=""	="DELL COMPUTER PTY LTD"	05-Jun-08 05:43 PM	

+="CN89663"	"EXPENSE ITEMS - KAF"	="Department of Defence"	05-Jun-08	="Plumbing fixtures"	15-May-08	23-May-08	17660.65	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:44 PM	

+="CN89674"	"Audiovisual equipment"	="Department of Defence"	05-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-May-08	30-Jun-08	19899.00	=""	="NORTH QUEENSLAND AUDIO VISUAL"	05-Jun-08 05:44 PM	

+="CN89679"	"Advanced Surveillance Training Course"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	29-Apr-08	29-Apr-08	16100.00	=""	="INTEGRACOM"	05-Jun-08 05:44 PM	

+="CN89682"	"PROFESSIONAL SERVICES"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	26-May-08	20000.00	=""	="DKC INTERNATIONAL PTY LTD"	05-Jun-08 05:45 PM	

+="CN89686"	"CLEANING OF EFR TINS"	="Department of Defence"	05-Jun-08	="Cleaning Equipment and Supplies"	23-May-08	10-Jun-08	19578.90	=""	="CORMAC CONTRACTING PTY LTD"	05-Jun-08 05:45 PM	

+="CN89729"	"INFLIGHT MEAL PURCHASE"	="Department of Defence"	05-Jun-08	="Food and Beverage Products"	24-May-08	25-May-08	16753.63	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	05-Jun-08 05:48 PM	

+="CN89738"	"REMOTE ACCESS TOKENS"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	16496.70	=""	="VASCO DATA SECURITY AUSTRALIA PTY"	05-Jun-08 05:48 PM	

+="CN89741"	"multi level sampler and winder units for FEMS"	="Department of Defence"	05-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Mar-08	29-Apr-08	16015.45	=""	="JOHN MORRIS SCIENTIFIC PTY LTD"	05-Jun-08 05:48 PM	

+="CN89749"	"Custom packaging and removal services - domestic"	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	16500.00	=""	="PACK AND SEND CANBERRA"	05-Jun-08 05:49 PM	

+="CN89770"	"REGISTRATION REQUIRED TO DELIVER TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	20000.00	=""	="RECEIVER OF OFFICIAL MONIES"	05-Jun-08 05:50 PM	

+="CN89774"	"Calibration of Computer Equipment."	="Department of Defence"	05-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-May-08	16500.00	=""	="IMMUNO PTY LTD"	05-Jun-08 05:50 PM	

+="CN89808"	"Noise assess @ HMAS Anzac which is on active duty in singapore area"	="Department of Defence"	05-Jun-08	="Personal safety and protection"	26-May-08	30-Jun-08	16203.00	=""	="CAREY MURPHY & ASSOCIATES"	05-Jun-08 05:52 PM	

+="CN89839"	"Value based Purchase Order"	="Department of Defence"	05-Jun-08	="Meat and poultry products"	02-Jun-08	30-Jun-08	20000.00	=""	="HOLCO FINE MEAT SUPPLIERS"	05-Jun-08 05:54 PM	

+="CN89852"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	05-Jun-08	="Legal services"	26-May-08	30-Jun-08	17075.00	=""	="CLAYTON UTZ"	05-Jun-08 05:55 PM	

+="CN89855"	"LPG Supply"	="Department of Defence"	05-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	29-May-08	30-Jun-08	16500.00	=""	="ELGAS LTD"	05-Jun-08 05:55 PM	

+="CN89861"	"TRAINING"	="Department of Defence"	05-Jun-08	="Education and Training Services"	10-Jan-08	10-Jan-08	17893.25	=""	="AUSTRALIAN AND NEW ZEALAND SCHOOL"	05-Jun-08 05:56 PM	

+="CN89863"	"Aircraft Technical Support"	="Department of Defence"	05-Jun-08	="Aircraft equipment"	29-May-08	30-Jun-08	18051.24	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	05-Jun-08 05:56 PM	

+="CN89865"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	05-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	26-Jun-08	19800.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	05-Jun-08 05:56 PM	

+="CN89891"	"IT SUPPORT"	="Department of Defence"	05-Jun-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	05-Jun-08 05:58 PM	

+="CN89903"	"1 SR - Fibre optic repair tools kit"	="Department of Defence"	05-Jun-08	="Communications Devices and Accessories"	12-May-08	30-Jun-08	17323.90	=""	="AUSOPTIC PTY LTD"	05-Jun-08 05:58 PM	

+="CN89922"	"CERTIFICATE IV TAA04 - 12 PERSONS"	="Department of Defence"	05-Jun-08	="Educational facilities"	26-May-08	26-May-08	18480.00	=""	="REGIONAL GROUP TRAINING LTD"	05-Jun-08 06:00 PM	

+="CN89928"	"All terrain vehicle for Defence Estab-Berrimah"	="Department of Defence"	05-Jun-08	="Motor vehicles"	26-May-08	30-Jun-08	18384.00	=""	="R & M MOTORCYCLES"	05-Jun-08 06:00 PM	

+="CN89930"	"FFS 30/06/08"	="Department of Defence"	05-Jun-08	="Patient care and treatment products and supplies"	26-May-08	30-Jun-08	18500.00	=""	="VINTAGE SURGICAL SPECIALISTS"	05-Jun-08 06:00 PM	

+="CN89933"	"AIR CONDITIONERS"	="Department of Defence"	05-Jun-08	="Heating and ventilation and air circulation"	12-May-08	30-Jun-08	18150.00	=""	="RITTAL PTY LTD"	05-Jun-08 06:00 PM	

+="CN89950"	"DEMAND NO. RSTM-7EH5UH ANITECH QUOTE NO. QB31 - SARAH O'REILLY"	="Department of Defence"	05-Jun-08	="Office supplies"	13-May-08	20-May-08	16618.23	=""	="ANITECH"	05-Jun-08 06:01 PM	

+="CN89956"	"Usability testing of Website"	="Department of Defence"	05-Jun-08	="Computer services"	13-May-08	30-May-08	18755.00	=""	="THE HISER GROUP"	05-Jun-08 06:02 PM	

+="CN89964"	"HARDWARE"	="Department of Defence"	05-Jun-08	="Photographic or filming or video equipment"	21-May-08	30-Jun-08	16571.74	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	05-Jun-08 06:02 PM	

+="CN89997"	"Provision of editorial services"	="Department of the Prime Minister and Cabinet"	06-Jun-08	="Editorial and support services"	29-Apr-08	30-Jun-08	19331.00	=""	="The Trustee for the Marron Family Trust"	06-Jun-08 11:43 AM	

+="CN90003"	"Extension of CN50400"	="Department of the Prime Minister and Cabinet"	06-Jun-08	="Property management"	01-Jul-08	30-Sep-08	16250.00	=""	="United Group Services Pty Ltd"	06-Jun-08 12:30 PM	

+="CN90004"	"CABLE ASSY - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	06-Jun-08	11-Dec-08	17472.62	=""	="GENERAL DYNAMICS LAND SYSTEMS"	06-Jun-08 12:49 PM	

+="CN90005"	"WINCH DRUM DAVIT ASSY - ASLAV"	="Department of Defence"	06-Jun-08	="Armoured fighting vehicles"	06-Jun-08	30-Aug-08	19233.17	=""	="GENERAL DYNAMICS LAND SYSTEMS"	06-Jun-08 12:52 PM	

+="CN84766"	" temporary personnel to complete Mobile Premium Services Information Project "	="Australian Communications and Media Authority (ACMA)"	06-Jun-08	="Temporary personnel services"	13-May-08	30-Jun-08	18000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	06-Jun-08 04:56 PM 

--- /dev/null
+++ b/admin/partialdata/05Mar2008to09Mar2008valto.xls
@@ -1,1 +1,337 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN64233"	"Wet Weather Ensemble"	="Defence Materiel Organisation"	05-Mar-08	="Clothing"	22-Jan-08	02-May-08	1847503.35	="RFT 2480027"	="Global Safety Solutions Management"	05-Mar-08 08:08 AM	

+="CN64234"	" 9150 99-458-6311   Engine Lubricating Oil 50 Drums *205L  Energol HPDX 40 "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	29-Feb-08	10-Mar-08	40719.00	=""	="BP Australia Ltd"	05-Mar-08 08:45 AM	

+="CN64235"	"Property Lease Darwin NT"	="Australian Federal Police"	05-Mar-08	="Lease and rental of property or building"	17-Jan-08	16-Jan-09	27132.84	=""	="HomeHunters Darwin"	05-Mar-08 09:15 AM	

+="CN64237-A1"	"Provision for Business Analyst"	="Comsuper"	05-Mar-08	="Human resources services"	06-Mar-08	30-Jun-08	71060.00	=""	="face2face Recruitment"	05-Mar-08 09:54 AM	

+="CN64238-A1"	"Variation to the contract for a System Tester"	="Comsuper"	05-Mar-08	="Human resources services"	06-Sep-07	06-Jun-08	47544.00	=""	="M&T Resources"	05-Mar-08 09:57 AM	

+="CN64239-A1"	"Provision for Fedlink Services"	="Comsuper"	05-Mar-08	="Software"	20-Feb-08	06-Sep-08	23815.00	=""	="Cybertrust Australia"	05-Mar-08 10:00 AM	

+="CN64241"	"Provision for Hewlett Packard Procurve switches and related services"	="Comsuper"	05-Mar-08	="Hardware"	06-Jun-07	30-Jun-07	23882.00	=""	="Commander Pty Ltd"	05-Mar-08 10:06 AM	

+="CN64242"	"Property Lease Darwin NT"	="Australian Federal Police"	05-Mar-08	="Lease and rental of property or building"	11-Oct-07	10-Oct-08	30002.64	=""	="HomeHunters Darwin"	05-Mar-08 10:08 AM	

+="CN64240"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Grounds maintenance services"	26-Jan-08	25-Feb-08	12528.68	=""	="Trim Lawns & Complete Garden Services"	05-Mar-08 10:12 AM	

+="CN64245"	" Aviation Spares , repair of Rotor Shaft Unit "	="Defence Materiel Organisation"	05-Mar-08	="Military rotary wing aircraft"	04-Mar-08	30-Apr-08	38776.85	=""	="Australian Aerospace"	05-Mar-08 10:22 AM	

+="CN64246"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft"	05-Mar-08	26-Mar-08	42204.47	=""	="sikorsky aircraft australia ltd"	05-Mar-08 10:28 AM	

+="CN64248-A2"	"Culture Awareness Training"	="Australian Federal Police"	05-Mar-08	="Work ethics or attitude training instructional materials"	05-Feb-08	08-Feb-08	31875.00	=""	="Asian Law Group Pty Ltd"	05-Mar-08 10:37 AM	

+="CN64251"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	05-Mar-08	="Drugs and Pharmaceutical Products"	25-Feb-08	28-Mar-08	41093.60	=""	="Symbion Pharmacy Services"	05-Mar-08 10:57 AM	

+="CN64252"	"SUPPLY LARCV WHEEL RIM ASSEMBLIES"	="Department of Defence"	05-Mar-08	="Commercial marine craft"	22-Feb-08	30-Jun-08	18259.56	=""	="TITAN WHEELS AUSTRALIA"	05-Mar-08 10:58 AM	

+="CN64253-A3"	" SAP HR functional development services "	="Australian Federal Police"	05-Mar-08	="Human resources software"	12-Feb-08	30-Jun-09	590865.00	=""	="Oxygen Business Solutions Pty Ltd"	05-Mar-08 11:06 AM	

+="CN64254"	"Conference facilities"	="Australian Electoral Commission"	05-Mar-08	="Hotels and lodging and meeting facilities"	20-Feb-08	22-Feb-08	12062.50	=""	="The Sebel Launceston"	05-Mar-08 11:10 AM	

+="CN64255"	"Supply of Embroirdered Personalised Name Badges"	="Defence Materiel Organisation"	05-Mar-08	="Badges"	05-Mar-08	30-Jun-08	54450.00	=""	="Apparel Additions"	05-Mar-08 11:15 AM	

+="CN64256"	"Conduct of one off staff survey project"	="Australian Federal Police"	05-Mar-08	="Directional survey services"	03-Mar-08	30-Jun-08	19294.00	=""	="Onetest Pty Ltd"	05-Mar-08 11:21 AM	

+="CN64258"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Grounds maintenance services"	01-Jan-08	31-Jan-08	10727.90	=""	="Ian Spencer - VIP Home Services"	05-Mar-08 11:23 AM	

+="CN64259"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Material handling services"	27-Nov-07	31-Dec-07	17730.00	=""	="Oldfields Removals & Storage"	05-Mar-08 11:28 AM	

+="CN64260"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Freight loading or unloading"	27-Nov-07	31-Dec-07	15726.00	=""	="Oldfield Removals & Storage"	05-Mar-08 11:34 AM	

+="CN64257"	"Return of ballot materials from overseas"	="Australian Electoral Commission"	05-Mar-08	="International vessel transport services"	10-May-07	30-Sep-08	312119.59	=""	="McMillan Print Group Pty Ltd"	05-Mar-08 11:35 AM	

+="CN64262"	"Provision of Archiving Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	21-Feb-08	31-Dec-08	25383.60	=""	="ROLLS FILING SYSTEMS"	05-Mar-08 11:37 AM	

+="CN64263"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11847.44	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64264"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11058.17	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64265"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	22-Feb-08	22-Feb-08	11311.38	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:37 AM	

+="CN64266"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printed media"	22-Feb-08	30-Jun-08	15743.20	=""	="PIRION PTY LTD"	05-Mar-08 11:37 AM	

+="CN64267"	"Provision of Graphic Design Services"	="Medicare Australia"	05-Mar-08	="Graphic design"	22-Feb-08	30-Jun-08	42515.00	=""	="Couch Creative"	05-Mar-08 11:37 AM	

+="CN64268"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	28-Mar-08	10232.64	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:37 AM	

+="CN64269"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	28-Mar-08	19356.97	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:37 AM	

+="CN64270"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	22-Feb-08	22-Feb-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	05-Mar-08 11:38 AM	

+="CN64271"	"Provision of Customer Service Research"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	30-Apr-08	49500.00	=""	="Instinct and Reason Pty Ltd"	05-Mar-08 11:38 AM	

+="CN64272"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	22-Feb-08	22-Feb-08	17906.32	=""	="COMMAND RECRUITMENT GROUP"	05-Mar-08 11:38 AM	

+="CN64273"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	25-Feb-08	12-May-08	49543.20	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:38 AM	

+="CN64274"	"Provision of Customer Service Research"	="Medicare Australia"	05-Mar-08	="Marketing and distribution"	25-Feb-08	30-Jun-08	139920.00	=""	="Instinct and Reason Pty Ltd"	05-Mar-08 11:38 AM	

+="CN64275"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	217800.00	=""	="FINITE RECRUITMENT"	05-Mar-08 11:38 AM	

+="CN64276"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	15345.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:38 AM	

+="CN64277"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	10791.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:38 AM	

+="CN64279"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	14212.00	=""	="COMPAS PTY LTD"	05-Mar-08 11:39 AM	

+="CN64280"	"Provision of Queue Management Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	19-Feb-08	30-Jun-08	111111.00	=""	="Nexa Group Pty Ltd"	05-Mar-08 11:39 AM	

+="CN64281"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Human resources services"	19-Feb-08	19-Feb-08	40689.00	=""	="AMBIT GROUP PTY LTD"	05-Mar-08 11:39 AM	

+="CN64282"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printed media"	19-Feb-08	19-Feb-08	59999.99	=""	="BHB PRINTING PTY LTD"	05-Mar-08 11:39 AM	

+="CN64278"	"Removal of Items"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Freight loading or unloading"	27-Nov-07	31-Dec-07	16539.00	=""	="Oldfield Removals & Storage"	05-Mar-08 11:39 AM	

+="CN64283"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Human resources services"	19-Feb-08	19-Feb-08	71434.00	=""	="Mosaic Recruitment Pty Ltd"	05-Mar-08 11:39 AM	

+="CN64284"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	20-Feb-08	20-Feb-08	10032.00	=""	="1Staff Services Pty Limited"	05-Mar-08 11:39 AM	

+="CN64285"	"Provision of IT Training"	="Medicare Australia"	05-Mar-08	="Specialised educational services"	21-Feb-08	21-Feb-08	28600.00	=""	="IBM AUSTRALIA LIMITED"	05-Mar-08 11:39 AM	

+="CN64286"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	21-Feb-08	21-Feb-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	05-Mar-08 11:40 AM	

+="CN64288"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	21-Feb-08	21-Feb-08	20985.80	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:40 AM	

+="CN64289"	"Provision of Envelope Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	21-Feb-08	26-Feb-08	28979.72	=""	="AUSTRALIAN ENVELOPES"	05-Mar-08 11:40 AM	

+="CN64290"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	21-Feb-08	21-Feb-08	1259820.68	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:40 AM	

+="CN64291"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	66425.15	=""	="WESTFIELD SHOPPING CENTRE"	05-Mar-08 11:40 AM	

+="CN64292"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	28-Feb-08	16500.00	=""	="IBM AUSTRALIA LIMITED"	05-Mar-08 11:40 AM	

+="CN64294-A1"	"Provision of Advisory Services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	28-Feb-08	28-Feb-08	262987.18	=""	="PRICE WATERHOUSE COOPERS"	05-Mar-08 11:40 AM	

+="CN64295"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	30-Jun-08	477070.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:41 AM	

+="CN64296"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	28-Feb-08	29-Feb-08	11050.87	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	05-Mar-08 11:41 AM	

+="CN64297"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Computer services"	28-Feb-08	28-Feb-08	11550.00	=""	="HERMES PRECISA PTY LTD"	05-Mar-08 11:41 AM	

+="CN64298"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Real estate services"	28-Feb-08	28-Feb-08	3457119.76	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:41 AM	

+="CN64299"	"Provision of Presentation Services"	="Medicare Australia"	05-Mar-08	="Personal appearance"	28-Feb-08	15-Aug-08	10670.00	=""	="Directions for Change"	05-Mar-08 11:41 AM	

+="CN64300"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	28-Feb-08	28-Feb-08	375433.30	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:41 AM	

+="CN64301"	"Provision of Business and Administration Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	28-Feb-08	28-Feb-08	130000.00	=""	="OFFICE OF THE PRIVACY COMMISSIONER"	05-Mar-08 11:42 AM	

+="CN64302"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	29-Feb-08	29-Feb-08	36366.00	=""	="Schiavello Project Interiors"	05-Mar-08 11:42 AM	

+="CN64303"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	29-Feb-08	29-Feb-08	39517.50	=""	="Schiavello Project Interiors"	05-Mar-08 11:42 AM	

+="CN64304"	"Provision of Advertising Services"	="Medicare Australia"	05-Mar-08	="Advertising"	29-Feb-08	30-Jun-08	16500.00	=""	="HMA BLAZE PTY LTD"	05-Mar-08 11:42 AM	

+="CN64305"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Software"	29-Feb-08	31-Mar-09	17325.00	=""	="Telelogic Australia Pty Ltd"	05-Mar-08 11:42 AM	

+="CN64306"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	26-Feb-08	30-Dec-09	11880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	05-Mar-08 11:42 AM	

+="CN64307"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Doors and windows and glass"	26-Feb-08	26-Feb-08	10867.01	=""	="DORMA BWN AUTOMATICS PTY LTD"	05-Mar-08 11:43 AM	

+="CN64308"	"Provision of Consultancy Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	26-Feb-08	30-Jun-08	54999.56	=""	="Margie Luke Consulting"	05-Mar-08 11:43 AM	

+="CN64310"	"Provision of mail house services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	27-Feb-08	27-Feb-08	25754.92	=""	="QM Technologies Pty Limited"	05-Mar-08 11:43 AM	

+="CN64311"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	27-Feb-08	30-Jun-08	17360.20	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	05-Mar-08 11:44 AM	

+="CN64312"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	19250.00	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64313"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	57171.40	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64314"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	92730.00	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:44 AM	

+="CN64309"	"Equipment Hire - Marquee"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Marquees"	01-Jan-08	31-Mar-08	15647.90	=""	="Kennards Events Pty Ltd"	05-Mar-08 11:44 AM	

+="CN64315"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	15670.60	=""	="OPTUS NETWORKS PTY LIMITED"	05-Mar-08 11:44 AM	

+="CN64316"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	27-Feb-08	27-Feb-08	11078.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:45 AM	

+="CN64317"	"Provision of Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	24134.00	=""	="Schiavello (VIC) P/L"	05-Mar-08 11:45 AM	

+="CN64318"	"Provision of Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	27-Feb-08	27-Feb-08	102139.40	=""	="SCHIAVELLO (ACT) PTY LTD"	05-Mar-08 11:45 AM	

+="CN64319"	"Provision of Property Management Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	27-Feb-08	27-Feb-08	241530.99	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	05-Mar-08 11:45 AM	

+="CN64320"	"Provision of Software Licences"	="Medicare Australia"	05-Mar-08	="Public administration and finance services"	27-Feb-08	30-Jun-08	13622.40	=""	="Holocentric Pty Ltd"	05-Mar-08 11:45 AM	

+="CN64321"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	85536.00	=""	="ICON RECRUITMENT PTY LTD"	05-Mar-08 11:45 AM	

+="CN64322"	"Provision of Archiving/Storage Services"	="Medicare Australia"	05-Mar-08	="Storage"	04-Feb-08	04-Feb-08	12001.67	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:45 AM	

+="CN64323"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	82500.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:45 AM	

+="CN64324"	"Provision of Promotional Products"	="Medicare Australia"	05-Mar-08	="Human resources services"	04-Feb-08	04-Feb-08	10725.00	=""	="GREEN FROG PROMOTIONS"	05-Mar-08 11:46 AM	

+="CN64325"	"Provision of Construction Services"	="Medicare Australia"	05-Mar-08	="Building construction and support and maintenance and repair services"	04-Feb-08	04-Feb-08	31955.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	05-Mar-08 11:46 AM	

+="CN64326"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	05-Feb-08	05-Feb-08	473665.50	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:46 AM	

+="CN64327"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	05-Feb-08	05-Feb-08	27113.19	=""	="MasterSoft Systems Pty Ltd"	05-Mar-08 11:46 AM	

+="CN64328"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	06-Feb-08	06-Feb-08	23312.86	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	05-Mar-08 11:46 AM	

+="CN64329"	"Provision of Envelope Supplies"	="Medicare Australia"	05-Mar-08	="Paper products"	06-Feb-08	08-Feb-08	15620.00	=""	="AUSTRALIAN ENVELOPES"	05-Mar-08 11:46 AM	

+="CN64330"	"Provision of Graphic Design Services"	="Medicare Australia"	05-Mar-08	="Graphic design"	07-Feb-08	07-Feb-08	13458.50	=""	="SPECTRUM GRAPHICS"	05-Mar-08 11:46 AM	

+="CN64331"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Commercial and industrial furniture"	07-Feb-08	07-Feb-08	12293.02	=""	="James Richardson Corporation"	05-Mar-08 11:47 AM	

+="CN64332"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	08-Feb-08	08-Feb-08	330000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:47 AM	

+="CN64333"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	08-Feb-08	08-Feb-08	79101.00	=""	="PEOPLE IN COMPUTERS PTY LTD"	05-Mar-08 11:47 AM	

+="CN64334"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	08-Feb-08	12-Feb-08	40442.24	=""	="AUSTRALIA POST"	05-Mar-08 11:47 AM	

+="CN64335"	"WA Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	16488.03	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64336"	"VIC Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	45181.55	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64337"	"QLD Arnaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	15-Feb-08	34141.13	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:47 AM	

+="CN64338"	"NSW Armaguard Jan08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	20-Jan-08	18-Feb-08	52310.33	=""	="LINFOX ARMAGUARD PTY LTD"	05-Mar-08 11:48 AM	

+="CN64339"	"CABCHRG 050108-010208"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	04-Feb-08	27-Feb-08	13939.20	=""	="CABCHARGE AUSTRALIA LIMITED"	05-Mar-08 11:48 AM	

+="CN64340"	"AMEX TRAVEL JAN'08"	="Medicare Australia"	05-Mar-08	="Accounting and auditing"	28-Jan-08	27-Feb-08	68921.88	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	05-Mar-08 11:48 AM	

+="CN64341"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	01-Feb-08	27-Feb-08	12154.29	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	05-Mar-08 11:48 AM	

+="CN64261"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-08	04-Apr-08	28928.65	=""	="SYMBION PHARMACY SERVICES"	05-Mar-08 11:48 AM	

+="CN64342"	"Provision of Secure Courier Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	01-Feb-08	01-Feb-08	11852.45	=""	="METROSTATE SECURITY COURIER PTY LTD"	05-Mar-08 11:48 AM	

+="CN64343"	"Provision of IT Services"	="Medicare Australia"	05-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	30-Jun-08	84548.20	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:48 AM	

+="CN64344"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	01-Feb-08	29-Feb-08	15383.80	=""	="SKILLED GROUP LIMITED"	05-Mar-08 11:48 AM	

+="CN64345"	"Provision of Software Maintenance"	="Medicare Australia"	05-Mar-08	="Software"	01-Feb-08	28-Feb-09	16959.80	=""	="CINCOM SYSTEMS OF AUSTRALIA PTY LTD"	05-Mar-08 11:48 AM	

+="CN64346"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	04-Feb-08	29-Feb-08	14212.00	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:49 AM	

+="CN64347"	"Provision of Recruitment Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	04-Feb-08	29-Feb-08	18353.28	=""	="RECRUITMENT SOLUTIONS LIMITED"	05-Mar-08 11:49 AM	

+="CN64348"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	04-Feb-08	04-Feb-08	136309.80	=""	="COMPAS PTY LTD"	05-Mar-08 11:49 AM	

+="CN64349"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="Commercial and industrial furniture"	13-Feb-08	13-Feb-08	10910.02	=""	="James Richardson Corporation"	05-Mar-08 11:49 AM	

+="CN64350"	"Provision of Consultancy Services"	="Medicare Australia"	05-Mar-08	="Security surveillance and detection"	13-Feb-08	31-Mar-08	16335.00	=""	="Securelink"	05-Mar-08 11:49 AM	

+="CN64351"	"Provision of Office Machines"	="Medicare Australia"	05-Mar-08	="Office machines and their supplies and accessories"	14-Feb-08	14-Feb-08	15804.94	=""	="RICOH AUSTRALIA PTY LTD"	05-Mar-08 11:49 AM	

+="CN64352"	"Provision of Office Machines"	="Medicare Australia"	05-Mar-08	="Office machines and their supplies and accessories"	14-Feb-08	14-Feb-08	15469.26	=""	="RICOH AUSTRALIA PTY LTD"	05-Mar-08 11:49 AM	

+="CN64353"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Business administration services"	14-Feb-08	30-Jun-08	65147.50	=""	="M&T RESOURCES"	05-Mar-08 11:49 AM	

+="CN64354"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	14-Feb-08	14-Feb-08	14951.23	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:50 AM	

+="CN64355"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	14-Feb-08	14-Feb-08	17829.88	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:50 AM	

+="CN64356"	"Provision of Telephony Relocation Services"	="Medicare Australia"	05-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Feb-08	15-Feb-08	21593.00	=""	="OPTUS NETWORKS PTY LIMITED"	05-Mar-08 11:50 AM	

+="CN64357"	"Provision of Software Licences"	="Medicare Australia"	05-Mar-08	="Software"	15-Feb-08	15-Dec-08	22946.00	=""	="DATATASK PTY LTD"	05-Mar-08 11:50 AM	

+="CN64358"	"Provision of Printing Services"	="Medicare Australia"	05-Mar-08	="Printing and publishing equipment"	18-Feb-08	18-Feb-08	88832.34	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	05-Mar-08 11:50 AM	

+="CN64359"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	18-Feb-08	18-Feb-08	34794.10	=""	="INTERIORS AUSTRALIA"	05-Mar-08 11:50 AM	

+="CN64360"	"Provision of mail house services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	18-Feb-08	18-Feb-08	12197.17	=""	="QM Technologies Pty Limited"	05-Mar-08 11:50 AM	

+="CN64361"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	18-Feb-08	18-Feb-08	38064.40	=""	="OAKTON AA SERVICES PTY LTD"	05-Mar-08 11:50 AM	

+="CN64362"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	05-Mar-08	="Management advisory services"	18-Feb-08	18-Feb-08	36671.80	=""	="OAKTON AA SERVICES PTY LTD"	05-Mar-08 11:51 AM	

+="CN64363"	"Provision of Office Fit-out Services"	="Medicare Australia"	05-Mar-08	="General building construction"	11-Feb-08	11-Feb-08	2165895.86	=""	="Schiavello Project Interiors"	05-Mar-08 11:51 AM	

+="CN64364"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	05-Mar-08	="Computer services"	11-Feb-08	30-Jun-08	114950.00	=""	="ITERATIVE CONSULTING PTY LTD"	05-Mar-08 11:51 AM	

+="CN64365"	"Provision of IT Refurbishment Services"	="Medicare Australia"	05-Mar-08	="General building construction"	11-Feb-08	11-Feb-08	330000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	05-Mar-08 11:51 AM	

+="CN64366"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	05-Mar-08	="Paper products"	12-Feb-08	12-Feb-08	11000.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	05-Mar-08 11:51 AM	

+="CN64367"	"Provision of Graduate Recruitment Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	12-Feb-08	12-Feb-08	29040.00	=""	="ONETEST PTY LTD"	05-Mar-08 11:51 AM	

+="CN64368"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Software"	12-Feb-08	12-Feb-08	13480.83	=""	="COMPAS PTY LTD"	05-Mar-08 11:51 AM	

+="CN64369"	"Provision of Postal Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	12-Feb-08	31-Dec-08	95324.05	=""	="AUSTRALIA POST"	05-Mar-08 11:51 AM	

+="CN64370"	"Provision of Contract labour hire"	="Medicare Australia"	05-Mar-08	="Computer services"	13-Feb-08	30-Jun-08	71500.00	=""	="CANDLE AUSTRALIA LIMITED"	05-Mar-08 11:52 AM	

+="CN64371-A1"	"PROVISION OF CONSULTANCY SERVICES"	="Medicare Australia"	05-Mar-08	="Business administration services"	13-Feb-08	13-Feb-08	349800.00	=""	="THE BOSTON CONSULTING GROUP PTY LTD"	05-Mar-08 11:52 AM	

+="CN64372"	"Provision of Employee Assistance Services"	="Medicare Australia"	05-Mar-08	="Work related organisations"	13-Feb-08	31-Jul-08	24310.00	=""	="OSA GROUP PTY LTD"	05-Mar-08 11:52 AM	

+="CN64373"	"Provision of Postal Services"	="Medicare Australia"	05-Mar-08	="Mail and cargo transport"	13-Feb-08	13-Feb-08	18880.02	=""	="AUSTRALIA POST"	05-Mar-08 11:52 AM	

+="CN64374"	"Provision of National Staff Survey Services"	="Medicare Australia"	05-Mar-08	="Human resources services"	13-Feb-08	31-Dec-08	143000.00	=""	="Measured Insights Pty Ltd"	05-Mar-08 11:52 AM	

+="CN64375"	"Provision of Archiving and Storage services"	="Medicare Australia"	05-Mar-08	="Storage"	13-Feb-08	13-Feb-08	29671.70	=""	="RECALL TOTAL INFORMATION MA"	05-Mar-08 11:52 AM	

+="CN64376"	"Provision of Relocation Services"	="Medicare Australia"	05-Mar-08	="Containers and storage"	13-Feb-08	13-Feb-08	14190.00	=""	="CHESS PRICE'S REMOVALS"	05-Mar-08 11:52 AM	

+="CN64377"	"Plastic Tubs"	="Defence Materiel Organisation"	05-Mar-08	="Containers and storage"	18-Feb-08	05-Mar-08	24134.00	=""	="Viscount Plastics (NSW) Ltd"	05-Mar-08 11:54 AM	

+="CN64378"	"Provision of Duct work maintenance and rehabilitation services (Contract JH00057M)"	="Department of Parliamentary Services"	05-Mar-08	="Air conditioning installation or maintenance or repair services"	20-Feb-08	30-Jun-08	16500.00	=""	="Chubb Fire Safety Limited"	05-Mar-08 11:59 AM	

+="CN64379"	"PABX Supply and implementation team services (Contract DPS04082)"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	29-Feb-08	188275.36	=""	="Telstra Corporation Ltd"	05-Mar-08 11:59 AM	

+="CN64380"	"Supply of  Televisions"	="Department of Parliamentary Services"	05-Mar-08	="Radio or television manufacture services"	19-Feb-08	31-Mar-08	17930.00	=""	="Sony Australia Ltd"	05-Mar-08 11:59 AM	

+="CN64381"	"Provision of ICT services"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	01-Aug-08	117150.00	=""	="GMT Canberra Pty Ltd"	05-Mar-08 11:59 AM	

+="CN64382"	"Supply of  Agricultural tractor"	="Department of Parliamentary Services"	05-Mar-08	="Agricultural tractors"	14-Feb-08	31-Mar-08	42548.00	=""	="RC & JI White Agricultural"	05-Mar-08 11:59 AM	

+="CN64383"	"DPS Store Relocations"	="Department of Parliamentary Services"	05-Mar-08	="Warehousing equipment and supplies"	14-Feb-08	03-Mar-08	10976.24	=""	="1st Fleet Warehousing & Dist"	05-Mar-08 12:00 PM	

+="CN64384"	"Hardware and software maintenance of CISCO equipment Contract (DPS06103)"	="Department of Parliamentary Services"	05-Mar-08	="Computer servers"	13-Feb-08	03-Mar-08	63722.75	=""	="Cerulean Solutions Ltd"	05-Mar-08 12:00 PM	

+="CN64385"	"Provision of IT design services (DPS07095)"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	07-Mar-08	35176.90	=""	="EMC Global Holdings Company"	05-Mar-08 12:00 PM	

+="CN64386"	"Provision of  telephone calls"	="Department of Parliamentary Services"	05-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	30-Jun-08	49014.78	=""	="Telstra Corporation Ltd"	05-Mar-08 12:00 PM	

+="CN64387"	"Annual FileNet Software Maintenance"	="Department of Parliamentary Services"	05-Mar-08	="Software maintenance and support"	19-Feb-08	31-Jan-09	33741.40	=""	="Kaz Group Pty Ltd"	05-Mar-08 12:00 PM	

+="CN64388"	"Provision of Project Management Services"	="Department of Parliamentary Services"	05-Mar-08	="Project management"	21-Feb-08	30-Jun-08	15400.00	=""	="Manteena Pty Ltd"	05-Mar-08 12:00 PM	

+="CN64389"	"EIU.COM 1/1/-31/12/08 DATABASE SERVICES SUBSCRIPTI"	="Department of Parliamentary Services"	05-Mar-08	="On line database information retrieval"	25-Jan-08	31-Dec-08	55605.28	=""	="EIU AUSTRALIA"	05-Mar-08 12:00 PM	

+="CN64391-A1"	"Provision of Cleaning Services to the Bathurst premises of CRS Australia."	="CRS Australia"	05-Mar-08	="General building and office cleaning and maintenance services"	01-Mar-06	28-Feb-09	13157.92	=""	="Barlow Property Services trading as Barlow Cleaning Pty Ltd"	05-Mar-08 12:12 PM	

+="CN64395-A2"	"Provision of cleaning services to the Dubbo premises of CRS Australia."	="CRS Australia"	05-Mar-08	="General building and office cleaning and maintenance services"	01-Mar-06	05-Dec-08	10665.61	=""	="Barlow Property Services trading as Barlow Cleaning Pty Ltd"	05-Mar-08 12:19 PM	

+="CN64392"	"Steel Storage Cabinets"	="Defence Materiel Organisation"	05-Mar-08	="Containers and storage"	26-Feb-08	08-Apr-08	24453.00	=""	="FGP Company Pty Ltd"	05-Mar-08 12:35 PM	

+="CN64397"	"The delivery of Centrelink agent servics at Surat QLD."	="Centrelink"	05-Mar-08	="Administrative agencies services"	01-Jul-07	30-Jun-08	10063.65	=""	="Warroo Shire Council"	05-Mar-08 12:55 PM	

+="CN64398"	"Use of force Database project management"	="Australian Federal Police"	05-Mar-08	="Project management"	17-Dec-07	31-Mar-08	27500.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	05-Mar-08 12:56 PM	

+="CN64399"	"Review of applicabillity of CO3 to offshore activities"	="Australian Federal Police"	05-Mar-08	="Project management"	27-Jul-07	27-Nov-07	15000.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	05-Mar-08 01:16 PM	

+="CN64401"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft spars"	05-Mar-08	28-Jul-08	17472.40	=""	="MILSPEC SERVICES PTY LTD"	05-Mar-08 01:39 PM	

+="CN64403"	"COMCAR"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Passenger transport"	30-Nov-07	12-Mar-08	64456.44	=""	="COMCAR"	05-Mar-08 01:48 PM	

+="CN64404"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	05-Mar-08	="Aircraft spars"	05-Mar-08	26-Sep-08	11517.66	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	05-Mar-08 01:49 PM	

+="CN64406"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-07	09-Mar-08	15833.35	=""	="3M AUSTRALIA P/L"	05-Mar-08 02:05 PM	

+="CN64407"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	05-Mar-08	="Medical health associations"	28-Feb-08	10-Apr-08	17298.27	=""	="BECTON DICKINSON PTY LTD"	05-Mar-08 02:12 PM	

+="CN64409"	"NSN 5320-01-077-7193, Pin-Rivets"	="Defence Materiel Organisation"	05-Mar-08	="Aerospace systems and components and equipment"	04-Mar-08	26-Mar-08	17820.00	=""	="Milspec Services Pty Ltd"	05-Mar-08 02:12 PM	

+="CN64410-A1"	" Audit of Uniformed Protection  Officer Health Check "	="Australian Federal Police"	05-Mar-08	="Audit services"	03-Mar-08	30-Sep-08	33000.00	="Jan-05"	="KPMG"	05-Mar-08 02:12 PM	

+="CN64412"	"NSN 1560-00-088-5914, Engine Air Inlet Lips"	="Defence Materiel Organisation"	05-Mar-08	="Aerospace systems and components and equipment"	05-Mar-08	27-Mar-08	445090.80	=""	="ben.groenen-DMO"	05-Mar-08 02:16 PM	

+="CN64413-A1"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	100000.00	=""	="AAC Process Servers & Investigations"	05-Mar-08 02:18 PM	

+="CN64411"	" Economic - Electronic Subscriptions "	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Electronic reference material"	01-Jul-07	31-Jan-08	25961.73	=""	="AAP Information Services Australian Associated Press Pty Ltd"	05-Mar-08 02:20 PM	

+="CN64415-A1"	" Destruction of Paper Waste "	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Document destruction services"	20-Dec-07	19-Jan-08	10329.00	=""	="Recall Information Management Pty Ltd"	05-Mar-08 02:25 PM	

+="CN64419"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	15000.00	=""	="Express Mercantile"	05-Mar-08 02:33 PM	

+="CN64418"	"Window Tinting"	="National Capital Authority"	05-Mar-08	="Windows"	31-Jan-08	31-Jan-08	10590.00	=""	="Any Window Tinting Pty Ltd"	05-Mar-08 02:34 PM	

+="CN64421"	"Legislative Compliance Matrix Project - Phase 3"	="Australian Federal Police"	05-Mar-08	="Legislative bodies and practice"	30-Oct-07	30-Mar-08	24959.00	="Jan-05"	="PricewaterhouseCoopers"	05-Mar-08 02:44 PM	

+="CN64422"	"Process server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	260000.00	=""	="International Detection Services"	05-Mar-08 02:45 PM	

+="CN64423"	" AIRCRAFT SPARES  NSN 1615-01-086-1498, BEAM, ASSY, TAIL, FEP, QTY 14 "	="Defence Materiel Organisation"	05-Mar-08	="Military transport helicopters"	31-Oct-06	08-May-07	99729.48	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	05-Mar-08 02:53 PM	

+="CN64424-A1"	" Process Server services "	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	87000.00	=""	="Network Process Service"	05-Mar-08 03:00 PM	

+="CN64425-A1"	"Provision of services in relation to help desk analysis"	="Australian Federal Police"	05-Mar-08	="Technical support or help desk services"	07-Jan-08	31-Mar-08	14765.44	=""	="Aurec Pty Ltd"	05-Mar-08 03:00 PM	

+="CN64426"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	10000.00	=""	="Panther Investigations"	05-Mar-08 03:08 PM	

+="CN64427"	"Printing and publishing"	="Department of the Prime Minister and Cabinet"	05-Mar-08	="Printed publications"	17-Jan-08	20-Feb-08	12900.00	=""	="ZOO Communications Pty Ltd"	05-Mar-08 03:12 PM	

+="CN64428"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	480000.00	=""	="Probe Group Pty Ltd"	05-Mar-08 03:16 PM	

+="CN64429"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	25000.00	=""	="REP Commercial Consultants"	05-Mar-08 03:19 PM	

+="CN64431"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	250000.00	=""	="Statewide Mercantile Services Pty Ltd"	05-Mar-08 03:23 PM	

+="CN64430-A1"	"IT Equipment"	="National Capital Authority"	05-Mar-08	="Computers"	13-Dec-07	19-Dec-07	74115.13	=""	="Getronics Australia Pty Ltd"	05-Mar-08 03:24 PM	

+="CN64434"	"SUBSCRIPTIONS JANUARY 2008"	="Administrative Appeals Tribunal"	05-Mar-08	="Printed media"	17-Jan-08	31-Jan-09	16526.68	=""	="THOMSON LEGAL & REGULATORY"	05-Mar-08 03:30 PM	

+="CN64435-A2"	" 9150 99-458-6311   Engine Lubricating Oil  16 drums Energol HPDX 40 in 205L    "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	27-Feb-08	12-Mar-09	11648.73	=""	="BP Australia Ltd"	05-Mar-08 03:36 PM	

+="CN64433"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	45000.00	=""	="Top End Bailiff and Collection Services"	05-Mar-08 03:37 PM	

+="CN64437"	" INDICATOR, DIFF PRES  PART No RC855UL06C; MC 18350  QUANTITY 2 "	="Defence Materiel Organisation"	05-Mar-08	="Military rotary wing aircraft"	12-Jul-07	03-Jan-08	10362.00	=""	="PALL AUSTRALIA"	05-Mar-08 03:38 PM	

+="CN64438"	"Ball Joint - ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	19-Aug-08	27322.90	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:38 PM	

+="CN64439-A2"	"Provision of services in relation to high level technical support and management of the AFP's corporate IT environment hosted by systems operations."	="Australian Federal Police"	05-Mar-08	="Technical support or help desk services"	17-Dec-07	30-Sep-08	130416.00	=""	="Diversiti Pty Ltd"	05-Mar-08 03:40 PM	

+="CN64440"	"Griffin Legacy - Legal Services"	="National Capital Authority"	05-Mar-08	="Legal services"	17-Oct-07	01-Jan-11	30770.30	=""	="Minter Ellison Lawyers"	05-Mar-08 03:41 PM	

+="CN64441"	"Air Valve ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	29-Aug-08	54898.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:44 PM	

+="CN64444"	"Process Server services"	="Office of the Director of Public Prosecutions"	05-Mar-08	="Legal services"	01-Jan-08	31-Dec-10	405000.00	=""	="Wise McGrath"	05-Mar-08 03:45 PM	

+="CN64443"	" 9150 66-017-3041  Engine Lubricating Oil    26 DRUMS OMD 115 in 205L       "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Feb-08	12-Mar-08	15598.87	=""	="CALTEX"	05-Mar-08 03:48 PM	

+="CN64445"	"CCA Power Supply - ASLAV Parts"	="Department of Defence"	05-Mar-08	="Armoured fighting vehicles"	04-Mar-08	20-Jun-09	88184.91	=""	="GENERAL DYNAMICS LAND SYSTEMS"	05-Mar-08 03:50 PM	

+="CN64447"	" 9150 01-131-3324  Fire Resistant Hydraulic Fluid  160 Cans   H-544 in 1 US GAL (HYDRANYCOIL FH3) "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Feb-08	29-Mar-08	14069.44	=""	="Interchem"	05-Mar-08 04:03 PM	

+="CN64448"	"Guarding Services"	="Australian Crime Commission"	05-Mar-08	="Guard services"	01-Feb-08	29-Mar-08	32257.14	=""	="Chubb Electronic Security"	05-Mar-08 04:06 PM	

+="CN64450"	"Air express Freight"	="Australian Crime Commission"	05-Mar-08	="Freight forwarders services"	01-Jun-07	01-Jun-08	85000.00	=""	="Australian Air Express P/L"	05-Mar-08 04:13 PM	

+="CN64451"	" 9150 99-458-6311  Engine Lubricating Oil  16*205L drums Energol HPDX in 205L "	="Defence Materiel Organisation"	05-Mar-08	="Lubricants and oils and greases and anti corrosives"	31-Jan-08	08-Feb-08	11648.73	=""	="BP Australia Ltd"	05-Mar-08 04:17 PM	

+="CN64452"	"Network Software"	="Australian Crime Commission"	05-Mar-08	="Software"	01-Dec-07	24-Mar-08	78941.24	=""	="Optus Networks P/L"	05-Mar-08 04:18 PM	

+="CN64453"	"Recruitment - Personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	11-Nov-07	16-May-08	48213.00	=""	="Hays Personnel Services"	05-Mar-08 04:21 PM	

+="CN64454-A4"	"Recruitment personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	26-Apr-06	26-Sep-08	398652.10	=""	="Hurtile P/L"	05-Mar-08 04:25 PM	

+="CN64455-A3"	"Recruitment Personnel"	="Australian Crime Commission"	05-Mar-08	="Personnel recruitment"	01-Jan-08	31-Mar-09	417815.10	=""	="Icon Recruitment P/L"	05-Mar-08 04:28 PM	

+="CN64456"	" Leaseing vehicles "	="Australian Crime Commission"	05-Mar-08	="Product and material transport vehicles"	18-Jan-08	24-Jan-08	11384.44	=""	="Leaseplan"	05-Mar-08 04:32 PM	

+="CN64457"	"Investigaors"	="Australian Crime Commission"	05-Mar-08	="Private investigation services"	02-Jan-08	25-Jan-08	21640.93	=""	="Leaseplan"	05-Mar-08 04:36 PM	

+="CN64458"	"Video Software"	="Australian Crime Commission"	05-Mar-08	="Videoconferencing systems"	03-Dec-07	03-Dec-08	50358.00	=""	="Atek P/L"	05-Mar-08 04:40 PM	

+="CN64459"	"Maintenance for Hardware & Software"	="Australian Crime Commission"	05-Mar-08	="Ground support test or maintenance systems"	04-Mar-08	03-Jun-08	38039.56	=""	="EMC Global Holdings Co"	05-Mar-08 04:46 PM	

+="CN64460"	"Removal and Storage"	="Australian Crime Commission"	05-Mar-08	="Containers and storage"	31-Oct-07	18-Feb-08	12276.77	=""	="Toll Transitions"	05-Mar-08 04:51 PM	

+="CN64461"	"Annual Report"	="Australian Crime Commission"	05-Mar-08	="Promotional material or annual reports"	01-Jan-06	01-Jan-07	13931.80	=""	="Pirion Printing P/L"	05-Mar-08 04:54 PM	

+="CN64462"	" Armoury"	="Australian Crime Commission"	05-Mar-08	="Body armour"	04-Feb-08	04-Feb-09	48050.20	=""	="Ratner Australasia Safe Co P/L"	05-Mar-08 04:59 PM	

+="CN64463-A1"	" Site Lease "	="Australian Crime Commission"	05-Mar-08	="Lease and rental of property or building"	01-Mar-08	14-May-12	2806347.00	=""	="Canberra Data Centres"	05-Mar-08 05:04 PM	

+="CN64464"	"Guarding Services"	="Australian Crime Commission"	05-Mar-08	="Security and control equipment"	01-Sep-07	30-Sep-07	11014.23	=""	="Scope Protective Services P/L"	05-Mar-08 05:11 PM	

+="CN64467"	"Audio Transmission Test Set"	="Defence Materiel Organisation"	06-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Mar-08	16-Apr-08	124278.00	=""	="H Heuer Instruments"	06-Mar-08 08:45 AM	

+="CN64468"	"motor vehicle spare parts"	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	05-Apr-08	17282.38	=""	="Rover Australia"	06-Mar-08 08:57 AM	

+="CN64469"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	05-Apr-08	11817.85	=""	="LAND ROVER AUSTRALIA"	06-Mar-08 09:07 AM	

+="CN64470"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	05-Apr-08	20332.62	=""	="Rover Australia"	06-Mar-08 09:11 AM	

+="CN64473"	" MAJOR PAINT S'LINER ARN-51258 10VEH4 "	="Department of Defence"	06-Mar-08	="Motor vehicles"	06-Mar-08	14-May-08	12551.00	=""	="MC IMPORTS"	06-Mar-08 09:23 AM	

+="CN64474"	"MAJOR PAINT S'LINER ARN-51253 10VEH4"	="Department of Defence"	06-Mar-08	="Motor vehicles"	06-Mar-08	14-May-08	14630.00	=""	="ALLCOCK CRASH REPAIR"	06-Mar-08 09:27 AM	

+="CN64475"	"REPAIRS TO RURAL FIRE TRUCK ARN-31720 10VEH3"	="Department of Defence"	06-Mar-08	="Motor vehicles"	06-Mar-08	14-Mar-08	15558.52	=""	="RGM MAINTENANCE"	06-Mar-08 09:33 AM	

+="CN64479"	"30 Licenses of HP Test Director software and 1 years suppport"	="Australian Taxation Office"	06-Mar-08	="License management software"	06-Mar-08	06-Mar-09	142134.30	=""	="Hewlett Packard PTY LTD"	06-Mar-08 09:44 AM	

+="CN64480"	"Supply of subscriptions"	="Australian Institute of Family Studies"	06-Mar-08	="Library or documentation services"	01-Jan-08	01-Jan-08	16742.00	=""	="EBSCO"	06-Mar-08 09:47 AM	

+="CN64485"	" ERP - UNIMOG ARN-38475 10VEH4 RGM "	="Department of Defence"	06-Mar-08	="Motor vehicles"	06-Mar-08	27-Mar-08	50868.67	=""	="RGM MAINTENANCE"	06-Mar-08 10:16 AM	

+="CN64492"	"Network Engineer Services"	="Family Court of Australia"	06-Mar-08	="Temporary information technology networking specialists"	03-Mar-08	29-Aug-08	95040.00	=""	="Greythorn Pty Ltd"	06-Mar-08 11:21 AM	

+="CN64493-A1"	"Contract Labour Hire - Software Development Stage 3"	="Department of the Prime Minister and Cabinet"	06-Mar-08	="Temporary information technology software developers"	02-Jan-08	31-Dec-08	218988.00	=""	="Westbourne Group Pty Ltd"	06-Mar-08 11:22 AM	

+="CN64494"	" 6850 66-153-6323  Liquid Cooling Corrosion Inhibitor  100 EA NALCOOL MAXIMUM C-15 IN 15L PAIL "	="Defence Materiel Organisation"	06-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Jan-08	04-Feb-08	39998.20	=""	="MTU Detroit Diesel"	06-Mar-08 11:54 AM	

+="CN64495"	"VEHICLE REPAIRS"	="Department of Defence"	06-Mar-08	="Motor vehicles"	26-Feb-08	27-Mar-08	12613.65	=""	="RGM"	06-Mar-08 11:59 AM	

+="CN64496-A1"	"Provision of Expert Advice for Visa Classification"	="Department of Immigration and Citizenship"	06-Mar-08	="Management advisory services"	12-Feb-08	30-Apr-08	10000.00	=""	="Tim Shanahan"	06-Mar-08 12:19 PM	

+="CN64498"	"wrist watches"	="Department of Defence"	06-Mar-08	="Wrist watches"	06-Mar-08	13-Mar-08	23570.60	=""	="Shriro Australia Pty Ltd"	06-Mar-08 12:51 PM	

+="CN64499"	" 9150 66-140-2713   Refrigerating Compressor Lubricating oil  30 Drums *20L  Castrol Icematic SW in 20L "	="Defence Materiel Organisation"	06-Mar-08	="Lubricants and oils and greases and anti corrosives"	21-Jan-08	29-Jan-08	14070.00	=""	="CASTROL"	06-Mar-08 01:00 PM	

+="CN64500"	" 9130 66-108-0884  50 Drums Unleaded Petrol in 200L "	="Defence Materiel Organisation"	06-Mar-08	="Fuels"	15-Jan-08	28-Jan-08	22438.00	=""	="SHELL"	06-Mar-08 01:13 PM	

+="CN64501-A1"	"Provision of Expert Advice for Visa Classification"	="Department of Immigration and Citizenship"	06-Mar-08	="Management advisory services"	12-Feb-08	30-Apr-08	10000.00	=""	="Business Council of Australia"	06-Mar-08 01:58 PM	

+="CN64502"	"qty 123 pecial purpose electrical cable assemblies for use with military radios"	="Defence Materiel Organisation"	06-Mar-08	="Electrical wire and cable and harness"	29-Feb-08	30-May-08	47355.00	="RFQ-C7106"	="JACOBS RADIO (AUSTRALIA) PTY LTD"	06-Mar-08 02:15 PM	

+="CN64503-A1"	"Provision of services relating to a traineeship with Information services"	="Australian Federal Police"	06-Mar-08	="Education and Training Services"	12-Apr-07	12-Apr-09	114866.40	=""	="Innovative Business Computing Pty Limited"	06-Mar-08 02:22 PM	

+="CN64504"	"Annual Subscription online legal reference material"	="Australian Federal Police"	06-Mar-08	="Electronic publications and music"	01-Jul-07	30-Jun-08	21819.52	=""	="Thomson Legal & Regulatory Limited"	06-Mar-08 02:39 PM	

+="CN64505"	"Supply of Apron, Food Handler's"	="Defence Materiel Organisation"	06-Mar-08	="Clothing"	04-Mar-08	28-May-08	73480.00	=""	="Claytons Australia Pty Ltd"	06-Mar-08 02:40 PM	

+="CN64506-A1"	"Contract Labour Hire - Application Development"	="Department of the Prime Minister and Cabinet"	06-Mar-08	="Application programming services"	01-Sep-07	31-Dec-07	80670.00	=""	="One Planet Solutions"	06-Mar-08 02:41 PM	

+="CN64508"	"Supply and deliver 400 ea radial ply steel trek pneumatic tyres."	="Defence Materiel Organisation"	06-Mar-08	="Heavy truck tyres"	05-Mar-08	15-Mar-08	97666.80	=""	="South Pacific Tyres"	06-Mar-08 02:48 PM	

+="CN64509"	"Construction of Roundabout"	="National Capital Authority"	06-Mar-08	="Ring road"	01-Nov-07	30-Apr-08	65846.00	=""	="Manteena Pty Ltd"	06-Mar-08 03:04 PM	

+="CN64510"	"Supply and deliver 200 ea Block Tackle Snatch Sinle Sheave"	="Defence Materiel Organisation"	06-Mar-08	="Blocks or pulleys"	05-Mar-08	05-May-08	68728.00	=""	="NOBLE A&SON LTD"	06-Mar-08 03:16 PM	

+="CN64511"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Mar-08	="Aircraft spars"	06-Mar-08	06-Apr-09	11653.75	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Mar-08 03:17 PM	

+="CN64512"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	06-Mar-08	="Aircraft spars"	06-Mar-08	05-Jan-09	11780.56	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	06-Mar-08 03:23 PM	

+="CN64513-A1"	"Provion of services in relation to technical desktop support"	="Australian Federal Police"	06-Mar-08	="Technical support or help desk services"	14-Jan-08	30-Sep-08	72072.00	=""	="Innovative Business Computing Pty Limited"	06-Mar-08 03:32 PM	

+="CN64514"	"Design & Documentation Roundabout"	="National Capital Authority"	06-Mar-08	="Civil engineering"	01-Nov-07	30-Apr-08	37290.00	=""	="Cardno Young Pty Ltd"	06-Mar-08 03:40 PM	

+="CN64515"	"Mainframe Software Upgrade Fees"	="Australian Taxation Office"	06-Mar-08	="Software"	08-Mar-08	07-Mar-09	126735.84	=""	="Executive Computing Pty Ltd"	06-Mar-08 03:56 PM	

+="CN64516"	"Cleaning and maintenance services - NICNAS"	="Department of Health and Ageing"	06-Mar-08	="Cleaning Equipment and Supplies"	02-Jan-08	30-Jun-08	13996.98	=""	="BAYTON CLEANING CO PTY LTD"	06-Mar-08 03:58 PM	

+="CN64517"	"IT system support"	="Department of Health and Ageing"	06-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-07	01-Feb-08	11500.00	=""	="DEPARTMENT OF HEALTH AND AGEING"	06-Mar-08 03:58 PM	

+="CN64518"	"Professional services in respect to the Industrial Chemicals (Notification & Assessment) Act 198"	="Department of Health and Ageing"	06-Mar-08	="Management and Business Professionals and Administrative Services"	15-Jun-07	30-Jun-08	644888.20	=""	="DEPT OF THE ENVIRONMENT WATER HERIT"	06-Mar-08 03:58 PM	

+="CN64519"	"Temporary staff"	="Department of Health and Ageing"	06-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	20-Feb-08	13348.56	=""	="HAYS PERSONNEL SERVICES"	06-Mar-08 03:58 PM	

+="CN64520"	"Security system replacement"	="Department of Health and Ageing"	06-Mar-08	="Building and Construction and Maintenance Services"	21-Jan-08	11-Feb-08	13687.04	=""	="CAGE SECURITY ALARMS PTY. LIMITED"	06-Mar-08 03:58 PM	

+="CN64521-A2"	"Provision of services relating to Project Management"	="Australian Federal Police"	06-Mar-08	="Project management"	07-Jan-08	30-Sep-08	196416.00	=""	="Greythorn Pty Ltd"	06-Mar-08 04:01 PM	

+="CN64523"	"Provision of 'Write Online Guide' for online content editors."	="Centrelink"	06-Mar-08	="Business administration services"	03-Mar-08	18-Apr-08	37840.00	=""	="Serco Australia Pty Ltd"	06-Mar-08 04:17 PM	

+="CN64524"	"Recruitment Services"	="Australian Taxation Office"	06-Mar-08	="Recruitment services"	22-Nov-07	11-Feb-08	14000.00	="06.042"	="Hays Specialist Recruitment (Australia) PTY LIMITED"	06-Mar-08 04:21 PM	

+="CN64525"	"Motor Vehicle Parts."	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	07-Apr-08	30735.60	=""	="Mercedes Benz Aust. Pacific"	06-Mar-08 04:29 PM	

+="CN64526"	" Motor Vehicle Parts. "	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	10-Mar-08	18129.54	=""	="Mercedes Benz Aust. Pacific"	06-Mar-08 04:37 PM	

+="CN64527"	"Motor Vehicle Parts."	="Department of Defence"	06-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Mar-08	10-Mar-08	15227.15	=""	="Mercedes Benz Aust. Pacific"	06-Mar-08 04:44 PM	

+="CN64528"	"Recruitment Services"	="Australian Taxation Office"	06-Mar-08	="Recruitment services"	12-Feb-08	17-Apr-08	17000.00	="06.042"	="Hays Personnel Services (Australia) Pty Ltd"	06-Mar-08 04:47 PM	

+="CN64532"	"NSN 1560-00-807-9586, Spring Assemblies"	="Defence Materiel Organisation"	06-Mar-08	="Aerospace systems and components and equipment"	05-Mar-08	23-Oct-08	27334.12	=""	="Milspec Services Pty Ltd"	06-Mar-08 06:23 PM	

+="CN64533"	"NSN 1680-00-806-5521, Bell Crank"	="Defence Materiel Organisation"	06-Mar-08	="Aerospace systems and components and equipment"	05-Mar-08	09-Oct-08	10161.27	=""	="Milspec Services Pty Ltd"	06-Mar-08 06:26 PM	

+="CN64536"	"NSN 1680-01-328-3580, Leaves"	="Defence Materiel Organisation"	06-Mar-08	="Aerospace systems and components and equipment"	05-Mar-08	11-Aug-08	17014.69	=""	="Milspec Services Pty Ltd"	06-Mar-08 06:28 PM	

+="CN64537"	"NSN 1560-00-369-0840, Handrail Supports"	="Defence Materiel Organisation"	06-Mar-08	="Aerospace systems and components and equipment"	04-Mar-08	27-Oct-08	14984.16	=""	="Milspec Services Pty Ltd"	06-Mar-08 07:19 PM	

+="CN64538"	"38 Inch Static Line Extension Green"	="Defence Materiel Organisation"	07-Mar-08	="Parachutes"	07-Mar-08	23-May-08	17050.00	=""	="Para- Guard Pty Ltd"	07-Mar-08 08:55 AM	

+="CN64539"	"Internet Services. Please note - this is a contract between the contractor and MSB Board"	="Comsuper"	07-Mar-08	="Internet services"	02-Jan-08	31-Dec-10	128352.00	=""	="Macquarie Telecom"	07-Mar-08 09:10 AM	

+="CN64540"	"Maintenance of the emergency generator at Bribane office"	="Australian Federal Police"	07-Mar-08	="Power Generation and Distribution Machinery and Accessories"	01-Nov-07	31-Oct-10	19000.00	=""	="MTU Detroit Diesel Australia Pty Ltd"	07-Mar-08 09:32 AM	

+="CN64541"	"Research project - Australian Aid for gain: Governance Stratergies for ethical policing in the pacific"	="Australian Federal Police"	07-Mar-08	="Educational and research structures"	13-Aug-07	12-Aug-08	47261.50	=""	="Macquarie University"	07-Mar-08 09:45 AM	

+="CN64545"	"Event management"	="Australian Federal Police"	07-Mar-08	="Events management"	26-Nov-07	30-Jun-08	38340.00	=""	="H Jephtha & C Rapp"	07-Mar-08 10:01 AM	

+="CN64543"	"R2 servicing for Kiowa A17-016"	="Defence Materiel Organisation"	07-Mar-08	="Aircraft"	07-Sep-06	14-Mar-08	290360.71	=""	="Helitech Pty Ltd"	07-Mar-08 10:05 AM	

+="CN64546-A1"	"VEHICLE REPAIRS"	="Department of Defence"	07-Mar-08	="Motor vehicles"	07-Mar-08	07-Apr-08	39889.75	=""	="FB AUTOS"	07-Mar-08 10:13 AM	

+="CN64547"	"Research workshop and study tour for chinese MPS officers"	="Australian Federal Police"	07-Mar-08	="Educational and research structures"	24-Sep-07	16-Oct-07	48359.42	=""	="University of Wollongong"	07-Mar-08 10:15 AM	

+="CN64548-A1"	"Provision of Expert Advice for Visa Classification"	="Department of Immigration and Citizenship"	07-Mar-08	="Management advisory services"	12-Feb-08	30-Apr-08	10000.00	=""	="Peter Coates & Associates (AUST) Pty. Limited"	07-Mar-08 10:25 AM	

+="CN64554"	"nonrechargeable batteries"	="Department of Defence"	07-Mar-08	="Lithium batteries"	07-Mar-08	11-Mar-08	14487.00	=""	="Energizer Australia Pty Ltd"	07-Mar-08 12:36 PM	

+="CN64555-A1"	"Building and Accommodation Compliance Audit"	="Australian Federal Police"	07-Mar-08	="Internal audits"	11-Feb-08	30-Sep-08	41250.00	="RFT 01-2005"	="KPMG"	07-Mar-08 01:02 PM	

+="CN64559"	" 9150 66-092-5176  Aircraft Grease   152*2.5kg cans XG-293 nYCOGREASE 22  "	="Defence Materiel Organisation"	07-Mar-08	="Lubricants and oils and greases and anti corrosives"	07-Mar-08	11-Mar-08	10065.44	=""	="Interchem"	07-Mar-08 01:59 PM	

+="CN64560-A3"	"PAYG Withholding review"	="Australian Federal Police"	07-Mar-08	="Tax accounting"	01-Mar-08	01-May-08	62370.00	="23-2005"	="KPMG"	07-Mar-08 02:00 PM	

+="CN64561"	" 9150 66-108-1690  Fire Resistant Hydraulic Fluid  260 cans Skydrol LD 4 in 1 QT    "	="Defence Materiel Organisation"	07-Mar-08	="Lubricants and oils and greases and anti corrosives"	26-Feb-08	16-Apr-08	18978.86	=""	="Interturbine Advanced Composites"	07-Mar-08 02:12 PM	

+="CN64562"	" Election Call Centre Services  see also Contract ID 1638424 "	="Australian Electoral Commission"	07-Mar-08	="Call centre bureau services"	29-Jul-07	30-Jun-08	4247443.20	=""	="Centrelink"	07-Mar-08 02:13 PM	

+="CN64568"	"LABOUR HIRE MARINE QUALIFED MECHANIC"	="Department of Defence"	07-Mar-08	="Commercial marine craft"	07-Mar-08	30-Jun-08	22920.61	=""	="KELLY SERVICES"	07-Mar-08 02:37 PM	

+="CN64570"	"Polyurethane Coating"	="Defence Materiel Organisation"	07-Mar-08	="Paints and primers and finishes"	06-Mar-08	20-Mar-08	15734.02	=""	="The Valspar (Australia) Corporation Pty Ltd"	07-Mar-08 02:48 PM	

+="CN64576"	"Purchase of additional E5 Licences"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	01-Mar-08	31-Dec-08	44000.00	=""	="QSP Asia Pacific"	07-Mar-08 03:13 PM	

+="CN64577"	"Venue hire and Catering for FCS Launch"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	54000.00	=""	="Hilton Airport Canberra"	07-Mar-08 03:13 PM	

+="CN64578-A1"	"Software Engineer for AQIS Business Software Solutions - reference RFQ 0056-01"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	14-Mar-07	13-Mar-08	173800.00	=""	="Wildpeak Pty Ltd"	07-Mar-08 03:13 PM	

+="CN64579-A1"	" Facilitate the development of a strategic framework for the Bureau including forming clear mission and vision statements, understanding current priorities and eliciting staffing/morale issues.  "	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	25-Feb-08	12-Mar-08	12100.00	=""	="Intelligence Dynamics"	07-Mar-08 03:13 PM	

+="CN64580"	"sponsorship AARES conference"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	01-Jan-08	11000.00	=""	="All Occasions Management"	07-Mar-08 03:13 PM	

+="CN64582-A4"	"Software Engineer for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	01-Jul-07	30-Jun-10	475200.00	=""	="Peoplebank Australia Pty Ltd"	07-Mar-08 03:14 PM	

+="CN64583"	"Payment of NAAH-TWG travel expenses for Aquatic Animal Health Education Strategy Workshop"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	29-Feb-08	30-Apr-08	11000.00	=""	="Fisheries Department of WA"	07-Mar-08 03:14 PM	

+="CN64584"	"Recruitment - Advertising"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	02-Feb-08	02-Feb-08	56854.83	=""	="HMA Blaze"	07-Mar-08 03:14 PM	

+="CN64585"	"AR statement Development"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	01-Mar-08	31-Mar-08	14850.00	=""	="Indigo Pacific"	07-Mar-08 03:14 PM	

+="CN64586"	"FEE FOR SERVICE ACTIVITIES AS PER CONTRACT"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	13-Nov-07	14-Feb-08	12720.00	=""	="MOWANJUM ABORIGINAL CORPORATION"	07-Mar-08 03:14 PM	

+="CN64587"	"Technical implementation services and system licence"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	21-Feb-08	29-Aug-08	429880.00	=""	="Bay Technologies Pty Ltd"	07-Mar-08 03:14 PM	

+="CN64588"	"Provision of data services on the food industry"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	31-Oct-07	31-Oct-08	31150.90	=""	="Datamonitor"	07-Mar-08 03:14 PM	

+="CN64589"	"Development of a user interface with TRIM Context."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	01-Jan-08	08-Feb-08	38500.00	=""	="Icognition Pty Ltd"	07-Mar-08 03:15 PM	

+="CN64590-A1"	"Health Futures individual assessment of staff's health status."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Comprehensive health services"	24-Jan-08	21-Mar-08	35981.00	=""	="Health Futures Pty Ltd"	07-Mar-08 03:15 PM	

+="CN64591"	"Purchase of ABS Data"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	25-Feb-08	26-Feb-08	12415.00	=""	="Australian Bureau of Statistics"	07-Mar-08 03:15 PM	

+="CN64592"	"Consultancy agreement for the investigation of the impacts of contaminants in fertilizer and fertilizer ingredients, including industrial residues."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	03-Dec-07	03-Dec-08	350739.00	=""	="CSIRO Land and Water"	07-Mar-08 03:15 PM	

+="CN64594"	"Administration, facilitation and delivery of the 2008 Graduate Development Program"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	07-Feb-08	31-Dec-08	237839.63	=""	="People and Strategy ACT Pty Ltd"	07-Mar-08 03:15 PM	

+="CN64595-A1"	" Evaluation of the current administration and effectiveness of the Australian Centre of Excellence for Risk Analysis. Scope of evaluation will include assessing the centre's effectiveness at achieveing its stated objectives, the appropriateness of current structures and administrative mechanisms, and analysis of strengths and weaknesses. "	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	20-Feb-08	18-Apr-08	44000.00	=""	="Allen Consulting Group"	07-Mar-08 03:15 PM	

+="CN64596"	"Technical Services for report development Workflow systems"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	12-Feb-08	14-Mar-08	40000.00	=""	="Bay Technologies Pty Ltd"	07-Mar-08 03:16 PM	

+="CN64597"	"Supply of 200 ABN-DSC VPN Certificates"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	20-Feb-08	16500.00	=""	="Verisign Australia"	07-Mar-08 03:16 PM	

+="CN64598"	"Visual Analysis initial purchase and licence fee for 1 year"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	01-Mar-08	28-Feb-09	35695.00	=""	="Visual Analysis Australia and New Zealand"	07-Mar-08 03:16 PM	

+="CN64599"	"ANIMAL FOOD"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	01-Jan-09	14702.26	=""	="ANIMAL SUPPLIES"	07-Mar-08 03:16 PM	

+="CN64600"	"CBFCA Regional Convention Sponsorship 2008 Sponsorship includes events listed in letter of 11/2/08; NSW Regional Conference 4-5/4/08; WA Regional Conference 23-24/5/08; Vic Regional Convention 3/5/08; and CBFCA National Conference and Exhibition 2008 11-13/9/08."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	31-Dec-08	15950.00	=""	="Customs Brokers and Forwarders Council of Australia Inc"	07-Mar-08 03:16 PM	

+="CN64601-A1"	"Venue for the delivery of training for the AQIS Management and Devlopment Workshops"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	26-Feb-08	26-Feb-09	55000.00	=""	="Cliftons Operations Pty Ltd"	07-Mar-08 03:16 PM	

+="CN64602"	"Provision of agricultural biotechnology information forums for WA"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	19-Dec-07	30-May-08	25000.00	=""	="West Australian Farmers Federation"	07-Mar-08 03:16 PM	

+="CN64603"	"2008 Sydney Royal Easter Show: 1st instalment security bond"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	15-Mar-08	31-Mar-08	14613.01	=""	="Royal Agricultural Society of NSW"	07-Mar-08 03:16 PM	

+="CN64604"	"Provide assistance with DAFF procurement process"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	01-Mar-08	31-May-08	59048.00	=""	="RPV Consultants"	07-Mar-08 03:17 PM	

+="CN64605"	"Provision of 'Dear Minister' training course tailored to the needs ot the Department.  Specific request by PIAPH/RPI Division."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	12-Mar-08	14-Mar-08	35700.00	=""	="Rushworth Consultancy Pty ltd"	07-Mar-08 03:17 PM	

+="CN64606"	"Independent assessment of Tasmanian Community Forest Agreement Industry Development Programme grant applications."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	29-Oct-07	29-Jun-08	38500.00	=""	="PricewaterhouseCoopers"	07-Mar-08 03:17 PM	

+="CN64607-A2"	"'Re E Castro' Contractor to fill vacated position for a few months and where no suitable applicants were identified through a recruitment process. Also, specialist skills in relation to property leasing was required."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	24-Feb-08	30-Oct-08	57750.00	=""	="Frontier Group"	07-Mar-08 03:17 PM	

+="CN64608"	"Blackberry access Jan 08"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Jan-08	14526.49	=""	="Telstra Corporation Ltd"	07-Mar-08 03:17 PM	

+="CN64609"	"Supply of permanent, temporary and contract staff"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	01-Feb-08	30-Jun-08	37400.00	=""	="Professional Careers Australia Pty Limited"	07-Mar-08 03:17 PM	

+="CN64610"	"Annual Support and Maintenance Fees"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	05-Feb-08	05-Jul-08	20900.00	=""	="BMS Solutions Pty Ltd"	07-Mar-08 03:17 PM	

+="CN64611"	"Dairy Development - February 2008"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	01-Feb-08	29-Feb-08	30162.00	=""	="Aladn System Solutions"	07-Mar-08 03:18 PM	

+="CN64612"	"Cleanance of Furniture from EBB"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="General building construction"	01-Aug-07	28-Feb-08	30000.00	=""	="Ex-Government Furniture"	07-Mar-08 03:18 PM	

+="CN64613-A1"	"Prepare a tool/checklist to inform vegetable growers of those business processes and practices that represent the greatest opportunities for improvement in their business performance. Also to provide an implementation plan to the industry to roll out the tool/checklist."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Insurance and retirement services"	05-Mar-08	30-Jun-08	80000.00	=""	="IQ Agribusiness"	07-Mar-08 03:18 PM	

+="CN64614"	"Provision of services to assist with updating monthly estimates profiles, and performed detailed reconciliation of GEUS to CBMS."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	01-Dec-07	10-Jan-08	11943.25	=""	="Excelerated Consulting"	07-Mar-08 03:18 PM	

+="CN64615"	"Supply of virtual Data Room and Q and A Respository for IT Services Tender activities"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	01-Apr-08	01-Mar-10	25795.00	=""	="Managed Business IT Solutions"	07-Mar-08 03:18 PM	

+="CN64616"	"Accomodation and conference factlites"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	26-Feb-08	30-May-08	24570.00	=""	="Pavilion on Northbourne"	07-Mar-08 03:18 PM	

+="CN64617-A5"	"Senior Software Engineer for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	07-Mar-08	30-Jun-11	528026.40	=""	="GREYTHORN P/L"	07-Mar-08 03:18 PM	

+="CN64618"	"Accomodation for Graduates"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	02-Jan-08	06-Mar-08	21680.00	=""	="Clifton on Northbourne"	07-Mar-08 03:18 PM	

+="CN64619"	"OPV Weekend"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Education and Training Services"	05-Mar-08	05-Jun-08	10950.00	=""	="Comfort Inn Hallmark"	07-Mar-08 03:19 PM	

+="CN64620-A1"	"Develop Communications tools in support of the National Indigenous Forestry Strategy"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	03-Mar-08	30-Sep-08	74800.00	=""	="Origin Communications Pty Ltd"	07-Mar-08 03:19 PM	

+="CN64621-A1"	"Provision of General Accountancy Services"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	01-Feb-08	30-Jun-08	55000.00	="DAFF 18/05"	="Ascent Governance"	07-Mar-08 03:19 PM	

+="CN64622-A4"	"Network Engineer for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	01-Jul-07	30-Jun-10	702900.00	=""	="Peoplebank Australia Pty Ltd"	07-Mar-08 03:19 PM	

+="CN64624"	"CHILDCARE PLACEMENTS RESERVATION SERVICES JAN TO JUNE 2008"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Jun-08	50000.00	=""	="Northside Community Service"	07-Mar-08 03:19 PM	

+="CN64625"	"Variation for workstation contact to furnish level 4a, 7 London Circuit."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	28-Mar-08	192654.43	=""	="CITE Office Design Pty Ltd"	07-Mar-08 03:19 PM	

+="CN64626"	"Contract Services for Staff."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	03-Mar-08	31-Dec-08	22000.00	=""	="Careers Unlimited Pty Ltd"	07-Mar-08 03:19 PM	

+="CN64627"	"Qvalent Procurement System annual maintenance fee - 10/12/07 to 09/12/08"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Computer services"	10-Dec-07	09-Dec-08	65450.00	=""	="QVALENT Pty Ltd"	07-Mar-08 03:20 PM	

+="CN64628"	"Purchase of Inspection Manual, spiral bind finishing with clear cover and card back 13 protective sleeves per book. Quantity: 200."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Printed media"	03-Mar-08	14-Mar-08	14675.76	=""	="QPrint"	07-Mar-08 03:20 PM	

+="CN64630"	"Provision of conference facilities and accomodation for thrity five Quarantine Officers at Quality Cambridge hotel over a period of two days."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	20-Feb-08	15000.00	=""	="Cambridge Management PTY LTD for Cambridge Quality Hotel"	07-Mar-08 03:20 PM	

+="CN64631"	"Review of the National Management Group (NMG) Consultancy Committee on Emergency Animal Disease (CCEAD), Aquatic Consultative Committee on Emergency Animal Disease (AqCCEAD)and Consultative Committee on Emergency Plant Pests (CCEPP)."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Insurance and retirement services"	25-Feb-08	31-May-08	72270.00	=""	="Bioassure Pty Ltd"	07-Mar-08 03:20 PM	

+="CN64632"	"Supply, delivery and installation of Planex tambour units"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Mar-08	132031.67	=""	="PlanexSales Pty Ltd"	07-Mar-08 03:20 PM	

+="CN64633"	"Provision of advice to UAE Government on the implementation of Animal Welfare Legislation."	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Passenger transport"	07-Mar-08	30-Jun-08	35000.00	=""	="Dr Robin Vandegraaff"	07-Mar-08 03:20 PM	

+="CN64634"	"Supply 3 PDRS-201 Portable Digital Interview Recording Systems"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Office machines and their supplies and accessories"	29-Feb-08	25-Apr-08	36052.50	=""	="TPR Systems"	07-Mar-08 03:20 PM	

+="CN64635"	"Production of diagnostic images of exotic plant pests from the priority list"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Insurance and retirement services"	15-Feb-08	15-Jun-08	19800.00	=""	="Museums Board of Victoria"	07-Mar-08 03:21 PM	

+="CN64636"	"Production of diagnostic images of exotic plant pests from the priority list"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Human resources services"	15-Feb-08	15-Jun-08	19800.00	=""	="Museums Board of Victoria"	07-Mar-08 03:21 PM	

+="CN64637"	"Preparation of CRIS"	="Department of Agriculture Fisheries and Forestry"	07-Mar-08	="Management advisory services"	02-Jan-08	30-Jun-08	55000.00	=""	="AA Services Pty Limited"	07-Mar-08 03:21 PM	

+="CN64640"	"Toshiba - Laptop Purchases"	="Department of the Senate"	07-Mar-08	="Computer Equipment and Accessories"	04-Feb-08	04-Feb-09	15943.70	=""	="Toshiba Australia Pty Ltd"	07-Mar-08 04:23 PM	

+="CN64641"	"Cord Fibrous"	="Department of Defence"	07-Mar-08	="Ropes"	07-Mar-08	17-Mar-08	18720.00	=""	="Austral Rope and Cordage"	07-Mar-08 04:40 PM	

+="CN64642"	"Gymnasium mat and fastener tape"	="Department of Defence"	07-Mar-08	="Gymnastics equipment"	28-Feb-08	17-Mar-08	18555.20	=""	="Hart Sport"	07-Mar-08 04:48 PM	

+="CN64643"	"Mens Pyjamas"	="Department of Defence"	07-Mar-08	="Mens pyjamas or nightshirts or robes"	27-Feb-08	12-Mar-08	39150.00	=""	="Higginson Menswear"	07-Mar-08 04:53 PM 

--- /dev/null
+++ b/admin/partialdata/06Apr2008to10Apr2008valto.xls
@@ -1,1 +1,932 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68174"	" 9150 66-068-0440  Engine Lubricating oil  OMD 113 in 205L X 20 DRUMS "	="Defence Materiel Organisation"	07-Apr-08	="Lubricants and oils and greases and anti corrosives"	28-Feb-08	10-Mar-08	14521.24	=""	="CASTROL"	07-Apr-08 08:13 AM	

+="CN68175-A1"	" 9150 66-088-7467  Petroleum Base Hydraulic Fluid  OM-33 in 20Lx100DR "	="Defence Materiel Organisation"	07-Apr-08	="Lubricants and oils and greases and anti corrosives"	06-Mar-08	05-May-08	13369.40	=""	="Fuchs"	07-Apr-08 08:22 AM	

+="CN68182-A1"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Apr-08	="Military fixed wing aircraft"	28-Mar-08	30-May-08	22177.15	=""	="BERMIL"	07-Apr-08 09:03 AM	

+="CN68184"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Apr-08	="Military fixed wing aircraft"	28-Mar-08	30-May-08	11597.98	=""	="BERMIL"	07-Apr-08 09:16 AM	

+="CN68185"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Apr-08	="Military fixed wing aircraft"	28-Mar-08	30-May-08	15566.23	=""	="BERMIL"	07-Apr-08 09:20 AM	

+="CN68186"	"SES / EL2 forum venue and catering"	="Department of Veterans' Affairs"	07-Apr-08	="Travel and Food and Lodging and Entertainment Services"	02-Apr-08	04-Apr-08	47105.00	=""	="Intercontinental Hotels Group (Australia) Pty Ltd"	07-Apr-08 09:20 AM	

+="CN68187-A1"	"Provision of Cleaning & Maintenance at the Hellfire Pass Memorial Museum"	="Department of Veterans' Affairs"	07-Apr-08	="Building construction and support and maintenance and repair services"	01-Apr-08	31-Mar-09	57770.00	=""	="GP Construction Co Ltd"	07-Apr-08 09:20 AM	

+="CN68188"	"Construction for the redevelopment of the Australian Corps Memorial Park, Le Hamel"	="Department of Veterans' Affairs"	07-Apr-08	="Building construction and support and maintenance and repair services"	25-Feb-08	25-Jul-08	2714837.00	=""	="Eurovia Picardie"	07-Apr-08 09:20 AM	

+="CN68189"	"Site Supervisor for the Redevelopment of the Australian Corps Memorial Park, Le Hamel, France."	="Department of Veterans' Affairs"	07-Apr-08	="Building construction and support and maintenance and repair services"	20-Feb-08	31-Jul-08	192000.00	=""	="SERAU SA"	07-Apr-08 09:20 AM	

+="CN68190"	"IBM DB2 Warehouse Edition Renewal"	="Department of Veterans' Affairs"	07-Apr-08	="Computer services"	01-Mar-08	28-Feb-09	59776.00	=""	="IBM Australia Ltd"	07-Apr-08 09:20 AM	

+="CN68191"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	07-Apr-08	="Military fixed wing aircraft"	28-Mar-08	30-May-08	32154.76	=""	="BERMIL"	07-Apr-08 09:24 AM	

+="CN68196"	"Senior Business Analyst"	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	04-Mar-08	30-Jun-08	84311.00	="07/208-00"	="Hays Personnel Services"	07-Apr-08 10:14 AM	

+="CN68199"	" Provision of Air Charter Services to Department of Defence RAAF Base Tindal    "	="Department of Defence"	07-Apr-08	="Aircraft"	01-Sep-06	31-Aug-08	1102280.00	=""	="Air Frontier Pty Ltd"	07-Apr-08 10:18 AM	

+="CN68197-A11"	"Debt Collection Services"	="Australian Taxation Office"	07-Apr-08	="Credit agencies"	05-Oct-07	27-Sep-11	13879046.19	="06.155"	="National Credit Management Limited"	07-Apr-08 10:20 AM	

+="CN68201"	" SUPPLY OF MONITOR, PATIENT VITAL SIGNS "	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	31-Mar-08	31-May-08	65215.08	=""	="GE HEALTHCARE AUSTRALIA PTY LTD"	07-Apr-08 10:28 AM	

+="CN68202"	"Business Analyst for TRIM project"	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	25-Feb-08	30-Jun-08	92928.00	="07/234-00"	="Ross Human Directions Group (Julia Ross)"	07-Apr-08 10:37 AM	

+="CN68203"	"Brisbane Office Fitout"	="Civil Aviation Safety Authority"	07-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Feb-08	30-May-08	3032229.00	="07/236"	="Ray White Clayfield"	07-Apr-08 10:45 AM	

+="CN68204"	"BOOTS, FIREMENS. BLACK"	="Defence Materiel Organisation"	07-Apr-08	="Boots"	03-Apr-08	30-Sep-08	1889250.00	="1027723"	="OLIVER FOOTWEAR"	07-Apr-08 10:47 AM	

+="CN68205"	"a/c spares, 5306-01-178-0784, bolt, qty 150"	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	04-Mar-08	08-Aug-08	15012.00	=""	="sikorsky aust"	07-Apr-08 10:48 AM	

+="CN68206"	"a/c spares, 3120-00-966-6348, bearings, qty60."	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	28-Feb-08	20-Mar-08	23490.06	=""	="sikorsky aust"	07-Apr-08 10:57 AM	

+="CN68207"	"Field Pack, Large"	="Defence Materiel Organisation"	07-Apr-08	="Harnesses or its accessories"	03-Apr-08	17-Apr-09	2287560.00	="CC1U9S"	="Trade Partners International Pty Ltd"	07-Apr-08 11:01 AM	

+="CN68209"	"Voice Facilities Manager"	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	14-Mar-08	13-Mar-09	110000.00	="07/248-00"	="GMT People Pty Ltd"	07-Apr-08 11:03 AM	

+="CN68210"	"Temporary Admin Staff"	="Civil Aviation Safety Authority"	07-Apr-08	="Temporary clerical or administrative assistance"	03-Mar-08	09-May-08	11689.00	="07/253-00"	="Green and Green (Catalyst Recruitment)"	07-Apr-08 11:09 AM	

+="CN68211"	"Provide public relations, marketing and communications services for a project for world IP day"	="Australian Federal Police"	07-Apr-08	="Project management"	20-Mar-08	30-Apr-08	28050.00	=""	="Cornerstone PR"	07-Apr-08 11:15 AM	

+="CN68212"	"HD Video conferencing endpoint & maintenance"	="Civil Aviation Safety Authority"	07-Apr-08	="Video conferencing software"	15-May-08	14-May-09	19126.00	="07/254-00"	="Integrated Vision"	07-Apr-08 11:16 AM	

+="CN68215"	"Project Scheduler - Oversight"	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	25-Mar-08	30-Jun-08	48000.00	="07/258-00"	="GMT People Pty Ltd"	07-Apr-08 11:25 AM	

+="CN68217-A1"	" 04-0479 Variations to Customs Information Services Agreement "	="Australian Customs and Border Protection Service"	07-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	31-Aug-08	45695098.00	=""	="EDS Australia"	07-Apr-08 11:27 AM	

+="CN68219"	"Venue Hire - Manufacturing and Certification workshop"	="Civil Aviation Safety Authority"	07-Apr-08	="Workshops"	01-May-08	02-May-08	14297.00	="07/259-00"	="Novotel Brighton Beach"	07-Apr-08 11:31 AM	

+="CN68220"	"Consultancy extension"	="Australian Securities and Investments Commission"	07-Apr-08	="Accounting and auditing"	01-Jan-08	14-Mar-08	31625.00	=""	="Russell Walker"	07-Apr-08 11:38 AM	

+="CN68221"	"Flying Training"	="Civil Aviation Safety Authority"	07-Apr-08	="Aircraft"	03-Apr-08	30-Apr-08	17600.00	="07/301-00"	="Pearl Air International"	07-Apr-08 11:39 AM	

+="CN68222"	"Battery Charger, Maintenance and Trickle.110/240 VAC"	="Defence Materiel Organisation"	07-Apr-08	="Battery chargers"	05-Mar-08	27-Mar-08	10907.16	="J8197"	="Hotwire Pty Ltd"	07-Apr-08 11:41 AM	

+="CN68224"	"a/c spares: 3120-01-097-5011, bushing, qty 50."	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	04-Mar-08	04-Nov-08	11213.00	=""	="sikorsky aust"	07-Apr-08 11:50 AM	

+="CN68226"	"Office furniture for Perth Office"	="Civil Aviation Safety Authority"	07-Apr-08	="Office furniture"	12-Mar-08	31-May-08	55062.00	="07/260-00"	="Cube Furniture"	07-Apr-08 11:52 AM	

+="CN68227"	"Legal Services - Drug and Alcohol Testing"	="Civil Aviation Safety Authority"	07-Apr-08	="Legal services"	25-Jan-08	26-Feb-08	21644.00	="07/261-00"	="Mallesons Stephen Jaques Solicitors - ACT"	07-Apr-08 11:55 AM	

+="CN68228"	"Finance Contractor - Budget Team"	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	27-Mar-08	09-May-08	19853.00	="07/263-00"	="Hays Personnel Services"	07-Apr-08 11:58 AM	

+="CN68229"	"Safety Promotion Staff Conference"	="Civil Aviation Safety Authority"	07-Apr-08	="Conference centres"	17-Mar-08	31-May-08	22000.00	="07/264-00"	="Peppers Retreats Resorts Hotels"	07-Apr-08 12:02 PM	

+="CN68231"	"a/c spares: 4820-01-096-1111, Valve, qty10."	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	04-Mar-08	03-Apr-09	17685.90	=""	="sikorsky aust"	07-Apr-08 12:05 PM	

+="CN68230"	" SUPPLY OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	07-Apr-08	="Motor vehicles"	07-Apr-08	21-Apr-08	17509.20	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	07-Apr-08 12:05 PM	

+="CN68232"	"ASIC Production for February 2008"	="Civil Aviation Safety Authority"	07-Apr-08	="Security and control equipment"	18-Mar-08	13-Apr-08	67000.00	="07/269-00"	="Aviation ID Australia"	07-Apr-08 12:06 PM	

+="CN68234"	"Scanning services for Unexploded ordinance Assessment"	="Australian Federal Police"	07-Apr-08	="National Defence and Public Order and Security and Safety Services"	01-May-08	30-Jun-08	37664.00	=""	="Milsearch Pty Ltd"	07-Apr-08 12:14 PM	

+="CN68233"	"AusCheck Security Checks - February 2008"	="Civil Aviation Safety Authority"	07-Apr-08	="Reference or background check services"	18-Mar-08	18-Apr-08	49000.00	="07/270-00"	="Attorney General's Department (ACT)"	07-Apr-08 12:15 PM	

+="CN68235"	"REPAIR AND OH OF BLACK HAWK HOIST ASSY"	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	07-Apr-08	30-Jun-08	48204.04	=""	="SAAL"	07-Apr-08 12:48 PM	

+="CN68236"	"REPAIR AND OH OF BLACK HAWK HOIST ASSY"	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	07-Apr-08	30-Jun-08	48204.04	=""	="SAAL"	07-Apr-08 12:58 PM	

+="CN68237"	"R3 SERVICE AND REPAIRS ON BLACK HAWK A25-222."	="Defence Materiel Organisation"	07-Apr-08	="Military rotary wing aircraft"	07-Apr-08	30-Jun-08	330000.00	=""	="BAE SYSTEMS AUSTRALIA"	07-Apr-08 01:37 PM	

+="CN68239"	"Telephony calls"	="Civil Aviation Safety Authority"	07-Apr-08	="Telephone call sequencers"	23-Jul-07	29-Jun-09	430000.00	="07/276-00"	="AAPT Telecommunications"	07-Apr-08 01:52 PM	

+="CN68238"	" SUPPLY OF MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	18-Mar-07	19-Apr-08	49079.50	="N/A"	="LAERDAL PTY LTD"	07-Apr-08 01:53 PM	

+="CN68240"	"Fees associated with Cyber Exam Assessments"	="Civil Aviation Safety Authority"	07-Apr-08	="Financial accounting"	01-Jul-07	30-Jun-08	33000.00	="07/278-00"	="Assessment Services Pty Ltd"	07-Apr-08 01:55 PM	

+="CN68242"	"Executive Search - Manager Corporate Communications"	="Civil Aviation Safety Authority"	07-Apr-08	="Business and corporate management consultation services"	26-Mar-08	30-Apr-08	38000.00	="07/280-00"	="Hansen & Searson Executive Search"	07-Apr-08 02:03 PM	

+="CN68244"	"Advertising for Exec Search Manager Corporate Relations"	="Civil Aviation Safety Authority"	07-Apr-08	="Newspaper advertising"	27-Mar-08	30-Jun-08	16500.00	="07/284-00"	="HMA Blaze Pty Ltd"	07-Apr-08 02:10 PM	

+="CN68245"	"Workstation screens components for new Western Region Office"	="Civil Aviation Safety Authority"	07-Apr-08	="Workstations and office packages"	28-Mar-08	28-Apr-08	13990.00	="07/285-00"	="925 Interiors Canberra Contract Furniture"	07-Apr-08 02:13 PM	

+="CN68248"	"Postage for PLET"	="Civil Aviation Safety Authority"	07-Apr-08	="Postal and small parcel and courier services"	01-Jul-07	30-Jun-08	65000.00	="07/286-00"	="Australia Post"	07-Apr-08 02:17 PM	

+="CN68247"	"Service support for Hardware & Software"	="Australian Crime Commission"	07-Apr-08	="Software"	10-Dec-07	09-Dec-08	159000.00	=""	="Verint Systems Ltd"	07-Apr-08 02:19 PM	

+="CN68250"	"Development of Field Safety Advisor Mini Site"	="Civil Aviation Safety Authority"	07-Apr-08	="Web page creation and editing software"	18-Oct-07	29-Feb-08	22000.00	="07/288-00"	="Visual Jazz Pty Ltd"	07-Apr-08 02:21 PM	

+="CN68246"	" SUPPLY OF VACCINES "	="Defence Materiel Organisation"	07-Apr-08	="Drugs and Pharmaceutical Products"	18-Mar-08	19-Apr-08	16236.00	=""	="SANOFI PASTEUR"	07-Apr-08 02:21 PM	

+="CN68251-A1"	"Contractor"	="Australian Crime Commission"	07-Apr-08	="Personnel recruitment"	14-Apr-08	01-Aug-08	71104.00	=""	="Icon Recruitment"	07-Apr-08 02:23 PM	

+="CN67872-A1"	"2020 Summit - Contract for Program Development Service"	="Department of the Prime Minister and Cabinet"	07-Apr-08	="Meeting planning services"	24-Mar-08	30-Apr-08	317559.00	=""	="University of Melbourne, Vice Chancellor's Office"	07-Apr-08 02:26 PM	

+="CN68252"	" Recruitment fees for Team Leader Coms and Reporting "	="Civil Aviation Safety Authority"	07-Apr-08	="Recruitment services"	07-Apr-08	07-May-08	15747.00	="07/290-00"	="Hudson Global Resources (Aust) Pty Ltd"	07-Apr-08 02:26 PM	

+="CN68249-A1"	"2020 Summit - Legal Advice Services"	="Department of the Prime Minister and Cabinet"	07-Apr-08	="Legal services"	13-Mar-08	30-Apr-08	18000.00	=""	="Clayton Utz"	07-Apr-08 02:27 PM	

+="CN68254"	"ASIC IDs for March"	="Civil Aviation Safety Authority"	07-Apr-08	="Security surveillance and detection"	01-Mar-08	31-Mar-08	117000.00	="07/291-00"	="Aviation ID Australia Pty Ltd"	07-Apr-08 02:32 PM	

+="CN68256"	"SUPPLY OF VARIOUS MEDICAL CONSUMABLE PRODUCTS."	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	18-Mar-08	19-Apr-08	24816.00	="N/A"	="3D SAFETY SERVICES PTY LTD"	07-Apr-08 02:46 PM	

+="CN68257"	" SUPPLY OF FURNACE, DENTAL LABORATORY "	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	01-Apr-08	30-Apr-08	14077.80	=""	="HENRY SCHEIN HALAS PTY LTD"	07-Apr-08 02:49 PM	

+="CN68258"	"Services of a consultant to provide a comprehensive and integrated induction programme and kit to meet the needs of new inspectorate and office staff."	="National Offshore Petroleum Safety Authority"	07-Apr-08	="Human resources services"	25-Mar-07	30-Jun-07	21300.00	="RFQ 37/2007"	="Carole V & Associates"	07-Apr-08 03:00 PM	

+="CN68260"	" Period Contract for the Provision of Freight Services to the AAD "	="Australian Antarctic Division"	07-Apr-08	="Freight forwarders services"	01-Jul-08	30-Jun-11	262000.00	="AAD 08/36"	="TNT Exoress"	07-Apr-08 03:13 PM	

+="CN68261"	"Mack Truck spares"	="Department of Defence"	07-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Oct-07	07-Apr-08	14203.64	=""	="Volvo Commercial Vehicles - Darwin"	07-Apr-08 03:25 PM	

+="CN68263"	"website redevelopment work"	="Office of the Australian Information Commissioner"	07-Apr-08	="Information technology consultation services"	18-Mar-08	27-Jun-08	14646.95	=""	="Bernard Silva"	07-Apr-08 03:28 PM	

+="CN68265"	" SUPPLY OF VARIOUS MEDICAL ITEMS. "	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	18-Mar-08	19-Apr-08	56782.00	="N/A"	="LMA PACMED"	07-Apr-08 03:30 PM	

+="CN68266-A1"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	07-Apr-08	="Community and social services"	01-Jul-07	30-Jun-08	35102.05	=""	="Yuendumu Community Government Council (Willowra)"	07-Apr-08 03:33 PM	

+="CN68271"	" NSN 1620/01-263-6733  PURCHASE OF BALLSCREW ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	07-Apr-08	="Military transport aircraft"	14-Feb-08	24-Apr-08	124960.00	=""	="Qantas Defence Services Pty Ltd"	07-Apr-08 03:39 PM	

+="CN68274"	" SUPPLY OF MEDICAL ITEMS "	="Defence Materiel Organisation"	07-Apr-08	="Medical Equipment and Accessories and Supplies"	18-Mar-08	18-Apr-08	27500.00	="N/A"	="GKE AUSTRALIA"	07-Apr-08 03:52 PM	

+="CN68275-A1"	" Printing of: JS8163 - Tax Agent Newsletter Issue 4.   Qty: 25000 "	="Australian Taxation Office"	07-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Mar-08	07-Apr-08	15666.20	=""	="Blue Star Print Group t/a National Capital Printing"	07-Apr-08 03:54 PM	

+="CN68293"	"Vehicle parts required to fulfill SDSS order"	="Department of Defence"	08-Apr-08	="Motor vehicles"	26-Mar-08	30-Apr-08	11944.15	=""	="Mercedes Benz"	08-Apr-08 08:37 AM	

+="CN68294"	"ICT Contractor Services"	="Child Support Agency"	08-Apr-08	="Human resources services"	11-Mar-08	30-Jun-08	59136.00	=""	="ELITE IT"	08-Apr-08 08:37 AM	

+="CN68295"	"Leased Office Equipment"	="Child Support Agency"	08-Apr-08	="Office machines and their supplies and accessories"	07-Mar-08	16-Mar-11	74606.40	=""	="FUJI XEROX AUSTRALIA PTY LTD"	08-Apr-08 08:37 AM	

+="CN68296"	"In-House Website Measurement and Reporting Tool"	="Child Support Agency"	08-Apr-08	="Computer services"	06-Mar-08	30-Jun-08	23941.50	=""	="DIGITAL NETWORKS AUSTRALIA PTY LTD"	08-Apr-08 08:37 AM	

+="CN68297"	"Fitout Services"	="Child Support Agency"	08-Apr-08	="Building and Construction Machinery and Accessories"	06-Mar-08	31-Mar-08	16500.00	=""	="INTERIORS AUSTRALIA PTY LTD"	08-Apr-08 08:37 AM	

+="CN68298"	"Leased Office Equipment"	="Child Support Agency"	08-Apr-08	="Office machines and their supplies and accessories"	05-Mar-08	10-Mar-11	12592.80	=""	="FUJI XEROX AUST PTY LTD"	08-Apr-08 08:37 AM	

+="CN68299"	"Leased Office Equipment"	="Child Support Agency"	08-Apr-08	="Office machines and their supplies and accessories"	05-Mar-08	10-Mar-11	12592.80	=""	="FUJI XEROX AUST PTY LTD"	08-Apr-08 08:37 AM	

+="CN68300"	"Printing Services"	="Child Support Agency"	08-Apr-08	="Printed media"	04-Mar-08	30-Jun-08	169400.00	=""	="SALMAT DOCUMENT"	08-Apr-08 08:38 AM	

+="CN68301"	"Temporary Contractor Services"	="Child Support Agency"	08-Apr-08	="Information services"	31-Mar-08	31-Aug-08	90000.00	=""	="NOETIC SOLUTIONS PTY LTD"	08-Apr-08 08:38 AM	

+="CN68302"	"Temporary Contractor Services"	="Child Support Agency"	08-Apr-08	="Human resources services"	28-Mar-08	30-Jun-08	100000.00	=""	="PEOPLEBANK"	08-Apr-08 08:38 AM	

+="CN68303"	"Printing Services"	="Child Support Agency"	08-Apr-08	="Printed media"	28-Mar-08	31-Mar-08	10126.60	=""	="NEW MILLENNIUM"	08-Apr-08 08:38 AM	

+="CN68304"	"Market Rent Review Valuation"	="Child Support Agency"	08-Apr-08	="Real estate services"	27-Mar-08	31-May-08	22000.00	=""	="M3 PROPERTY STRATEGISTS"	08-Apr-08 08:38 AM	

+="CN68305"	"External Training"	="Child Support Agency"	08-Apr-08	="Information services"	27-Mar-08	14-Apr-08	25025.00	=""	="UNITED GROUP SERVICES"	08-Apr-08 08:38 AM	

+="CN68306"	"External Training"	="Child Support Agency"	08-Apr-08	="Information services"	26-Mar-08	15-Apr-08	20000.00	=""	="RYDGES EAGLE HAWK RESORT (ECS"	08-Apr-08 08:38 AM	

+="CN68307"	"External Training"	="Child Support Agency"	08-Apr-08	="Information services"	13-Mar-08	01-Apr-08	12400.00	=""	="SAP AUSTRALIA PTY LTD"	08-Apr-08 08:39 AM	

+="CN68308"	"Credit Searches"	="Child Support Agency"	08-Apr-08	="Credit agencies"	03-Mar-08	03-Mar-08	16500.00	=""	="VEDA ADVANTAGE"	08-Apr-08 08:39 AM	

+="CN68309"	"Credit Searches"	="Child Support Agency"	08-Apr-08	="Credit agencies"	03-Mar-08	03-Mar-08	16500.00	=""	="VEDA ADVANTAGE"	08-Apr-08 08:39 AM	

+="CN68310"	"External Training"	="Child Support Agency"	08-Apr-08	="Information services"	21-Nov-07	30-Nov-08	13200.00	=""	="AUSTRALIAN PUBLIC SERVICE"	08-Apr-08 08:39 AM	

+="CN68311"	"Cleaning Services"	="Child Support Agency"	08-Apr-08	="Environmental Services"	13-Mar-08	30-Apr-08	16192.55	=""	="JANI-KING (WA) PTY LTD"	08-Apr-08 08:39 AM	

+="CN68312"	"Printing Services for Bulk Publications"	="Child Support Agency"	08-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Jul-07	25-Mar-09	3157401.64	=""	="ROTHFIELD PRINT MANAGEMENT"	08-Apr-08 08:39 AM	

+="CN68313"	"Information Services"	="Child Support Agency"	08-Apr-08	="Information services"	15-Oct-07	30-Sep-09	30800.00	=""	="HELEMATT PTY LTD"	08-Apr-08 08:39 AM	

+="CN68314"	"Supply of Electricity"	="Child Support Agency"	08-Apr-08	="Utilities"	17-Mar-08	30-Sep-08	32411.29	=""	="ORIGIN ENERGY ELECTRICITY LTD"	08-Apr-08 08:39 AM	

+="CN68315"	"Temporary Contractor Services"	="Child Support Agency"	08-Apr-08	="Business administration services"	04-Mar-08	18-Apr-08	18000.00	=""	="MACALL CONSULTING"	08-Apr-08 08:40 AM	

+="CN68316"	"Audit Services"	="Child Support Agency"	08-Apr-08	="Accounting and auditing"	04-Mar-08	31-May-08	79200.00	=""	="KPMG"	08-Apr-08 08:40 AM	

+="CN68317"	"Legal Advice"	="Child Support Agency"	08-Apr-08	="Legal services"	03-Mar-08	30-Jun-08	22000.00	=""	="DEACONS"	08-Apr-08 08:40 AM	

+="CN68318"	"Interpreting Services"	="Child Support Agency"	08-Apr-08	="Writing and translations"	03-Mar-08	03-Mar-08	23100.00	=""	="DEPARTMENT OF IMMIGRATION AND"	08-Apr-08 08:40 AM	

+="CN68319"	"Interpreting Services"	="Child Support Agency"	08-Apr-08	="Writing and translations"	03-Mar-08	03-Mar-08	22000.00	=""	="DEPARTMENT OF IMMIGRATION AND"	08-Apr-08 08:40 AM	

+="CN68320"	"Government Searches"	="Child Support Agency"	08-Apr-08	="Work related organisations"	03-Mar-08	03-Mar-08	17600.00	=""	="CITEC"	08-Apr-08 08:40 AM	

+="CN68321"	"Government Searches"	="Child Support Agency"	08-Apr-08	="Work related organisations"	03-Mar-08	03-Mar-08	17600.00	=""	="CITEC"	08-Apr-08 08:40 AM	

+="CN68322"	"Cloth, Disruptive Camouflage Pattern, 500 Denier, Cordura, Windstopper"	="Defence Materiel Organisation"	08-Apr-08	="Specialty fabrics or cloth"	03-Apr-08	20-Jun-08	99019.80	="2480011"	="Bradmill Outdoor Fabrics Pty Ltd"	08-Apr-08 08:43 AM	

+="CN68324"	"Overflow speechwiritng requirements"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Graphic design"	10-Jan-07	10-Jan-10	33000.00	="TRS06/036"	="Porter Novelli Australia P/L"	08-Apr-08 08:43 AM	

+="CN68325"	"Temp Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Human resources services"	25-Feb-08	23-May-08	38500.00	=""	="CAREERS UNLIMITED PTY LTD"	08-Apr-08 08:44 AM	

+="CN68323"	"COVER FITTED FOR MACK CONLO55"	="Department of Defence"	08-Apr-08	="Motor vehicles"	27-Mar-08	30-Apr-08	12215.41	=""	="VOLVO COMMERCIAL VEHICLES"	08-Apr-08 08:44 AM	

+="CN68326"	"The Provision of a Survey of Airport Screening  Employee Recruitment and Retention Issues"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Information services"	01-Apr-08	02-Jun-08	49995.00	="TRS08/046"	="HART SECURITY AUSTRALIA PTY LIMITED"	08-Apr-08 08:44 AM	

+="CN68327"	"CONTRACT STAFF MEMBER - ANTHONY HANSSON"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Community and social services"	07-Apr-08	30-Sep-08	50292.00	="TRS05/251"	="AMBIT GROUP PTY LTD"	08-Apr-08 08:44 AM	

+="CN68329"	"Contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Community and social services"	07-Apr-08	02-Jun-08	11700.00	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	08-Apr-08 08:44 AM	

+="CN68330"	"Venue for OTH"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Business administration services"	13-Mar-08	30-Apr-08	25000.00	=""	="THE OBSERVATORY HOTEL"	08-Apr-08 08:44 AM	

+="CN68331"	"Printing and Production 2006/07 Local Govt National Report"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Business administration services"	01-Apr-08	30-Jun-08	24999.70	=""	="CPP INSTANT PRINTING"	08-Apr-08 08:44 AM	

+="CN68332"	"Geospatial Data Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Computer Equipment and Accessories"	02-Apr-08	02-Apr-09	21500.00	=""	="NAVIGATE PTY LTD"	08-Apr-08 08:45 AM	

+="CN68333"	"Geospatial Data Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Software"	02-Apr-08	04-Apr-09	58000.00	=""	="NAVIGATE PTY LTD"	08-Apr-08 08:45 AM	

+="CN68334"	"GeoSamba Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Management advisory services"	07-Apr-08	06-Apr-09	17600.00	="T2004/0699"	="NGIS AUSTRALIA PTY LTD"	08-Apr-08 08:45 AM	

+="CN68335"	"System Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Management advisory services"	01-Apr-08	30-Jun-08	70000.00	="T2004/0699"	="SMS Management & Technology"	08-Apr-08 08:45 AM	

+="CN68336"	"Sharepoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Management advisory services"	01-Apr-08	30-Jun-08	110000.00	="TRS06/017"	="SME GATEWAY LTD"	08-Apr-08 08:45 AM	

+="CN68337"	"TESTER"	="Department of Infrastructure Transport Regional Development and Local Government"	08-Apr-08	="Management advisory services"	01-Apr-08	30-Jun-08	49999.99	="T2004/0699"	="SMS Management & Technology"	08-Apr-08 08:45 AM	

+="CN68328-A1"	"Performance Audit of ACT Policing Training"	="Australian Federal Police"	08-Apr-08	="Audit services"	16-May-07	30-Sep-07	41140.00	="RFT 01-2005"	="PriceWaterhouseCoopers"	08-Apr-08 08:46 AM	

+="CN68340"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Apr-08	02-May-08	20230.28	=""	="Rover Australia"	08-Apr-08 09:08 AM	

+="CN68342"	"Legal Services"	="Australian Electoral Commission"	08-Apr-08	="Legal services"	05-Jan-07	05-Jan-10	20000.00	="AEC06/032"	="Australian Government Solicitor"	08-Apr-08 09:10 AM	

+="CN68345"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Apr-08	03-May-08	30646.09	=""	="Rover Australia"	08-Apr-08 09:12 AM	

+="CN68347"	"Legal Services"	="Australian Electoral Commission"	08-Apr-08	="Legal services"	05-Jan-07	05-Jan-10	100000.00	="AEC06/032"	="Australian Government Solicitor"	08-Apr-08 09:15 AM	

+="CN68348"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	24441.12	=""	="Rover Australia"	08-Apr-08 09:16 AM	

+="CN68350"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	29799.22	=""	="Rover Australia"	08-Apr-08 09:21 AM	

+="CN68351"	"Legal Services"	="Australian Electoral Commission"	08-Apr-08	="Legal services"	05-Jan-07	05-Jan-10	20000.00	="AEC06/032"	="Australian Government Solicitor"	08-Apr-08 09:21 AM	

+="CN68356"	"Printing of Forms"	="Civil Aviation Safety Authority"	08-Apr-08	="Offset printing presses"	02-Apr-08	30-Apr-08	12900.00	="07/293-00"	="Paragon Printers"	08-Apr-08 09:30 AM	

+="CN68361"	"Printing of Forms"	="Civil Aviation Safety Authority"	08-Apr-08	="Offset printing presses"	02-Apr-08	30-Apr-08	99000.00	="07/294-00"	="Canprint Communications Pty Ltd"	08-Apr-08 09:32 AM	

+="CN68362"	"Printing of Forms"	="Civil Aviation Safety Authority"	08-Apr-08	="Offset printing presses"	02-Apr-08	30-Apr-08	17300.00	="07/295-00"	="Pirion Pty Ltd"	08-Apr-08 09:34 AM	

+="CN68354"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	30933.10	=""	="LAND ROVER AUSTRALIA"	08-Apr-08 09:36 AM	

+="CN68365"	"Placement Fee for 8 ATO Apprentices"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	01-Apr-08	14800.00	=""	="EXCELIOR PTY LTD"	08-Apr-08 09:42 AM	

+="CN68366"	"Hecs Fees for 8 Cadets"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	17-Apr-08	10447.20	=""	="THE AUSTRALIAN NATIONAL UNIVERSITY"	08-Apr-08 09:42 AM	

+="CN68367"	"DB2 Database Administration"	="Australian Taxation Office"	08-Apr-08	="Education and Training Services"	04-Apr-08	18-Apr-08	29260.00	=""	="IBM AUSTRALIA LIMITED"	08-Apr-08 09:42 AM	

+="CN68368"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	04-Apr-08	06-Oct-08	120120.00	=""	="ICON RECRUITMENT"	08-Apr-08 09:43 AM	

+="CN68369"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	04-Apr-08	31-Oct-08	141350.00	=""	="M&T Resources (SMS Group)"	08-Apr-08 09:43 AM	

+="CN68370"	"RECRUITMENT"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	07-Apr-08	12749.99	=""	="Hays Personnel Services"	08-Apr-08 09:44 AM	

+="CN68371"	"RECRUITMENT"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	07-Apr-08	12749.99	=""	="Hays Personnel Services"	08-Apr-08 09:44 AM	

+="CN68364"	"Maintenance and Support - P-4-10612-000-4 renewal"	="Civil Aviation Safety Authority"	08-Apr-08	="License management software"	30-Nov-07	28-Nov-08	14328.00	="07/297-00"	="Oracle Systems (Australia) Pty Ltd"	08-Apr-08 09:45 AM	

+="CN68372"	"RISK ASSESSMENTS & SITE INSPECTIONS"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-08	16505.28	=""	="GHD PTY LTD"	08-Apr-08 09:45 AM	

+="CN68373"	"CORP MEMBERSHIP"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	03-Apr-08	13710.00	=""	="AIM - Australian Institute of"	08-Apr-08 09:45 AM	

+="CN68374"	"COURSES"	="Australian Taxation Office"	08-Apr-08	="Education and Training Services"	25-Mar-08	02-Apr-08	39600.00	=""	="COREFILING PTY LTD"	08-Apr-08 09:45 AM	

+="CN68375"	"VENUE HIRE"	="Australian Taxation Office"	08-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	15000.00	=""	="PARAMOUNT MANAGEMENT SERVICES P/L"	08-Apr-08 09:45 AM	

+="CN68376"	"42RU Server Racks"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	30-Jun-08	41207.76	=""	="PRECISION METALS QUEANBEYAN PTY LTD"	08-Apr-08 09:46 AM	

+="CN68377"	"Assistance with development of Data Mining softwar"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	30-Jun-08	12474.00	=""	="DENNY DENNY"	08-Apr-08 09:46 AM	

+="CN68378"	"COURIER COSTS - 07/08"	="Australian Taxation Office"	08-Apr-08	="Transportation and Storage and Mail Services"	03-Dec-07	30-Jun-08	13000.00	=""	="TOLL TRANSPORT PTY LTD"	08-Apr-08 09:46 AM	

+="CN68379"	"Translating and Interpreting Services for 3 months"	="Australian Taxation Office"	08-Apr-08	="Public Utilities and Public Sector Related Services"	18-Mar-08	30-Jun-08	220000.00	=""	="DIMIA TIS"	08-Apr-08 09:46 AM	

+="CN68380"	"TELECOMMUNICATION"	="Australian Taxation Office"	08-Apr-08	="Information Technology Broadcasting and Telecommunications"	17-Jul-07	30-Jun-08	10000.00	=""	="OPTUS BILLING SERVICES"	08-Apr-08 09:46 AM	

+="CN68382"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	01-Apr-08	30-Sep-08	258076.67	=""	="HEWLETT PACKARD PTY LTD"	08-Apr-08 09:47 AM	

+="CN68383"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	30-Apr-09	240240.00	=""	="BIZI BYTES"	08-Apr-08 09:47 AM	

+="CN68384"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	31-Mar-08	31-Mar-09	226512.00	=""	="COMPAS PTY LTD"	08-Apr-08 09:47 AM	

+="CN68381"	"Temporary Staff"	="Civil Aviation Safety Authority"	08-Apr-08	="Recruitment services"	02-Apr-08	30-May-08	50000.00	="07/298-00"	="Tanner Menzies Pty Ltd (Melbourne)"	08-Apr-08 09:47 AM	

+="CN68385"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	31-Mar-08	30-Apr-08	21054.00	=""	="COMPAS PTY LTD"	08-Apr-08 09:47 AM	

+="CN68387"	"IT Contractor"	="Australian Taxation Office"	08-Apr-08	="Engineering and Research and Technology Based Services"	31-Mar-08	07-Oct-08	105248.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	08-Apr-08 09:47 AM	

+="CN68386"	"37 photocopiers for the Serviced Accommodation Photocopier Replacement Program in April 2008. "	="Australian Taxation Office"	08-Apr-08	="Photocopiers"	02-Apr-08	31-Jul-08	309442.10	=""	="Toshiba Australia"	08-Apr-08 09:49 AM	

+="CN68388"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	22956.95	=""	="LAND ROVER AUSTRALIA"	08-Apr-08 09:52 AM	

+="CN68389"	"Protective Security eLearning training"	="Civil Aviation Safety Authority"	08-Apr-08	="Security surveillance and detection"	20-Feb-08	19-Feb-09	29700.00	="07/299-00"	="Attorney General's Department (ACT)"	08-Apr-08 09:56 AM	

+="CN68390"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	14300.00	=""	="Drawline Fuel PTY LTD"	08-Apr-08 09:57 AM	

+="CN67230-A1"	"Legal Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	15-Jan-08	29-Feb-08	12000.00	=""	="Michael Green Pty Ltd"	08-Apr-08 09:59 AM	

+="CN67224"	" Legal Services "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	27-Feb-08	30-Jun-08	25000.00	=""	="Mr John Halley"	08-Apr-08 10:03 AM	

+="CN68393-A2"	"Media Monitoring Services"	="Australian Electoral Commission"	08-Apr-08	="Printed media"	18-Feb-08	18-Feb-11	342500.00	=""	="Media Monitors Pty Ltd"	08-Apr-08 10:05 AM	

+="CN68391"	"motor vehicle spare parts"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Apr-08	02-May-08	19225.60	=""	="MERCEDES BENZ AUST"	08-Apr-08 10:06 AM	

+="CN67220"	" Legal services "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Feb-08	30-Jun-08	33300.00	=""	="Mr Gregory A. Farmer"	08-Apr-08 10:11 AM	

+="CN67218"	"18 months PABX Maintenance for 77 Castlereagh St. Sydney."	="Australian Securities and Investments Commission"	08-Apr-08	="Integrated maintenance information systems"	01-Jul-07	31-Dec-08	52808.80	=""	="3D Networks (Australia) Pty Ltd"	08-Apr-08 10:13 AM	

+="CN67116"	"Contract for the supply of legal services for the conduct of litigation."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Dec-07	30-Jun-10	3600000.00	=""	="Australian Government Solicitor"	08-Apr-08 10:16 AM	

+="CN68394"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Apr-08	07-May-08	13470.73	=""	="MERCEDES BENZ AUST"	08-Apr-08 10:26 AM	

+="CN67103"	"contract for the supply of forensic IT services."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	06-Feb-08	29-Feb-08	20850.00	=""	="Ferrior Hodgson"	08-Apr-08 10:33 AM	

+="CN67054"	" Accounting Expert Opinion "	="Australian Securities and Investments Commission"	08-Apr-08	="Accounting services"	18-Dec-07	01-Feb-08	30000.00	=""	="Ferrior Hodgson"	08-Apr-08 10:38 AM	

+="CN67052"	"Software Licences & Support."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	01-Jan-08	31-Jan-10	135300.00	=""	="CCH Workflow Solutions"	08-Apr-08 10:40 AM	

+="CN68397-A1"	"Licenses and software for Isolated LAN, to ensure Tender/Contract details not available on ATONET"	="Australian Taxation Office"	08-Apr-08	="Business function specific software"	08-Apr-08	07-Apr-09	12164.49	=""	="Synergistic Network Solutions Pty Ltd"	08-Apr-08 10:44 AM	

+="CN66497"	"PABX Software and Hardware Upgrade."	="Australian Securities and Investments Commission"	08-Apr-08	="Software patches or upgrades"	20-Dec-07	30-Jun-08	278243.57	=""	="3D Networks (Australia) P/L"	08-Apr-08 10:56 AM	

+="CN66494"	"Provision of IT Contracting Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	29-Aug-07	29-Feb-08	122760.00	=""	="Software Cybernetics Pty Ltd"	08-Apr-08 10:59 AM	

+="CN66477-A1"	"IT Contractor"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	14-Dec-07	30-Jun-08	144100.00	=""	="Catrinya Pty Ltd"	08-Apr-08 11:03 AM	

+="CN68403"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	08-Apr-08	="Motor vehicles"	07-Apr-08	07-May-08	12289.62	=""	="LAND ROVER AUSTRALIA"	08-Apr-08 11:13 AM	

+="CN66300"	"Provision of IT contracting services."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	02-Oct-07	31-Mar-08	132422.00	=""	="Zenith Management Services Group Pty Ltd"	08-Apr-08 11:15 AM	

+="CN66296"	"Provision of IT Contracting Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	08-Oct-07	07-Apr-08	122780.00	=""	="Fleming SAAD & Associates Pty Ltd"	08-Apr-08 11:17 AM	

+="CN68405"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	08-Apr-08	="Motor vehicles"	07-Apr-08	07-May-08	18381.90	=""	="MERCEDES-BENZ"	08-Apr-08 11:19 AM	

+="CN66294"	" Provision of software licence & maintainance. "	="Australian Securities and Investments Commission"	08-Apr-08	="Integrated maintenance information systems"	20-Sep-07	20-Oct-08	107145.28	=""	="Oracle Corporation Australia Pty Ltd"	08-Apr-08 11:20 AM	

+="CN66288-A1"	"Legal services - Lawyers"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Sep-07	30-Jun-09	944385.00	=""	="Blake Dawson"	08-Apr-08 11:24 AM	

+="CN66285"	"Mailing of InFocus magazine."	="Australian Securities and Investments Commission"	08-Apr-08	="Printed publications"	10-Sep-07	10-Mar-08	18000.00	=""	="Chandler Direct Personalised Communication"	08-Apr-08 11:26 AM	

+="CN66283"	"Printing In Focus magazine."	="Australian Securities and Investments Commission"	08-Apr-08	="Publication printing"	10-Sep-07	10-Mar-08	12000.00	=""	="Printlinx Pty Ltd"	08-Apr-08 11:29 AM	

+="CN66282"	"Remote Lending Forum  - Venue and Official Hospitality."	="Australian Securities and Investments Commission"	08-Apr-08	="Conference centres"	21-Feb-08	13-Mar-08	12893.50	=""	="Sheraton by Four Points Hotel"	08-Apr-08 11:31 AM	

+="CN66138"	"Legal Services Counsel."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Dec-07	15-Jun-08	15000.00	=""	="Mr Paul Mcguire"	08-Apr-08 11:33 AM	

+="CN66170"	"Legal Services"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	17-Dec-07	31-May-08	50000.00	=""	="Mr Guy Reynolds"	08-Apr-08 11:39 AM	

+="CN66133"	"Purchase of Two Nuix Legal Desktop Software Licenses."	="Australian Securities and Investments Commission"	08-Apr-08	="Procurement software"	01-Feb-08	28-Feb-11	27720.00	=""	="Nuix Pty Ltd"	08-Apr-08 11:41 AM	

+="CN66126"	"Recruitment Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Recruitment services"	16-Nov-07	16-Nov-07	22849.20	=""	="Hudson Global Resources (Aust) Pty Limited"	08-Apr-08 11:44 AM	

+="CN68411"	" various vehicles parts "	="Department of Defence"	08-Apr-08	="Underground mining service vehicles"	04-Dec-07	26-Mar-08	17133.84	=""	="Land Rover Australia"	08-Apr-08 11:45 AM	

+="CN66099"	"Annual renewal of hard copy subscriptions for Sydney Information Resource Centre."	="Australian Securities and Investments Commission"	08-Apr-08	="News and publicity services"	01-Jan-08	31-Dec-08	27038.47	=""	="LexisNexis"	08-Apr-08 11:46 AM	

+="CN66090"	" National electronic subscriptions for Information Resource Centres. "	="Australian Securities and Investments Commission"	08-Apr-08	="News and publicity services"	01-Jan-08	30-Jun-08	91077.44	=""	="Thomson Legal & Regulatory Ltd"	08-Apr-08 11:48 AM	

+="CN65567"	"Annual subscription to Factiva electronic research service."	="Australian Securities and Investments Commission"	08-Apr-08	="News and publicity services"	02-Aug-07	01-Aug-08	63987.00	=""	="FACTIVA (AUSTRALIA) PTY LTD"	08-Apr-08 11:51 AM	

+="CN68416"	"Software maintenance Support"	="Australian Crime Commission"	08-Apr-08	="Software"	25-Mar-08	25-Mar-09	509268.28	=""	="Infront System P/L"	08-Apr-08 11:55 AM	

+="CN66068"	"Annual subscription to AAP eClips electronic service."	="Australian Securities and Investments Commission"	08-Apr-08	="News and publicity services"	21-Jun-07	20-Jun-08	20000.00	=""	="Australian Associated Press Pty Ltd"	08-Apr-08 11:58 AM	

+="CN68418-A1"	"motor vehicle spare parts"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Apr-08	03-May-08	38243.71	=""	="MACK"	08-Apr-08 11:59 AM	

+="CN65701"	"Annual subcription to News Centre electronic service."	="Australian Securities and Investments Commission"	08-Apr-08	="News and publicity services"	11-Nov-07	10-Nov-08	71610.12	=""	="Australian Associated Press Pty Ltd"	08-Apr-08 12:00 PM	

+="CN65507"	"Data analysis, Financial Analysis and Research Link Electronic Research services."	="Australian Securities and Investments Commission"	08-Apr-08	="Market research"	01-Jan-08	31-Dec-08	31680.00	=""	="Huntleys' Investment Information Pty Ltd"	08-Apr-08 12:03 PM	

+="CN68420"	" Lubricatin Gun, Hand Lever Operated; NSN: 4930-66-102-4283 "	="Defence Materiel Organisation"	08-Apr-08	="Armoured fighting vehicles"	08-Apr-08	11-Apr-08	24024.00	=""	="KENTOOL PTY LTD"	08-Apr-08 12:05 PM	

+="CN65501"	"Recruitment services"	="Australian Securities and Investments Commission"	08-Apr-08	="Recruitment services"	23-Nov-07	23-Nov-07	22214.50	=""	="Shearn HR Legal"	08-Apr-08 12:05 PM	

+="CN68422"	"Aircraft Spares"	="Defence Materiel Organisation"	08-Apr-08	="Aircraft"	11-Mar-08	11-Nov-08	12433.88	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	08-Apr-08 12:06 PM	

+="CN65399"	"Legal Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	29-Feb-08	55000.00	=""	="Mr Peter Flanagan"	08-Apr-08 12:09 PM	

+="CN65344"	" Legal services. "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	29-Feb-08	36000.00	=""	="Mr Mark Stunden"	08-Apr-08 12:12 PM	

+="CN65326"	"Supply of plants to No1 martin place."	="Australian Securities and Investments Commission"	08-Apr-08	="Live Plant and Animal Material and Accessories and Supplies"	01-Dec-07	01-Dec-09	43559.28	=""	="Lease a leaf"	08-Apr-08 12:14 PM	

+="CN68430"	" AIRCRAFT SPARES "	="Defence Materiel Organisation"	08-Apr-08	="Aircraft"	11-Mar-08	11-Nov-08	11190.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	08-Apr-08 12:19 PM	

+="CN64575"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	100000.00	=""	="Mr Robert D Strong"	08-Apr-08 12:21 PM	

+="CN68431"	"FOAM INSERTS"	="Defence Materiel Organisation"	08-Apr-08	="Communications Devices and Accessories"	08-Apr-08	10-Oct-08	74481.00	="RFQ-C7079"	="OWEN INTERNATIONAL"	08-Apr-08 12:21 PM	

+="CN64574"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	20-Nov-07	31-Jan-08	20000.00	=""	="Mr Alain Musikanth"	08-Apr-08 12:23 PM	

+="CN64573"	"Legal Services Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	31-Dec-08	25000.00	=""	="Mr Jeremy Clarke"	08-Apr-08 12:27 PM	

+="CN64569"	"Counsel Fees - legal services"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	03-Dec-07	30-Jun-09	60000.00	=""	="Mr Michael L Sifris SC"	08-Apr-08 12:29 PM	

+="CN64567"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	30-Jan-08	30-Jun-08	10000.00	=""	="Mr Simon Davis"	08-Apr-08 12:32 PM	

+="CN68436"	"Purchase of Qty 10 each NSN 5996-12-363-3132 Amplifier, Immediate Frequency and NSN 5915-12-351-8049 Filter, Band PSS"	="Defence Materiel Organisation"	08-Apr-08	="Communications Devices and Accessories"	04-Apr-08	29-Jun-08	423737.60	=""	="BAE SYSTEMS"	08-Apr-08 12:33 PM	

+="CN64552"	"Legal services counsel."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	02-Nov-07	31-Dec-08	12000.00	=""	="Mr David Stack"	08-Apr-08 12:34 PM	

+="CN64549"	"Legal Services counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	31-Dec-08	10000.00	=""	="Mr David Stack"	08-Apr-08 12:36 PM	

+="CN63711"	"Legal Services - Counsel."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	150000.00	=""	="Mr Norman O'Bryan SC"	08-Apr-08 12:39 PM	

+="CN63731"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	100000.00	=""	="Mr Charles Shaw"	08-Apr-08 12:42 PM	

+="CN68439"	"Purchase of Qty 10 each NSN 7010-66-156-3658 Computer System, Digital, NSN 5895-66-156-3600 Control, Keyer, 5930-99-980-0221 Switch, Foot and 7025-66-156-3702 Interface Unit, Automatic Data Processing"	="Defence Materiel Organisation"	08-Apr-08	="Communications Devices and Accessories"	02-Apr-08	25-Jun-08	259462.50	=""	="C4I Pty Ltd"	08-Apr-08 12:45 PM	

+="CN67056"	"Software Licences & Support."	="Australian Securities and Investments Commission"	08-Apr-08	="Software"	01-Feb-08	30-Jan-10	15360.00	=""	="CCH Workflow Solutions"	08-Apr-08 12:47 PM	

+="CN67111-A1"	" Contract for the provision of Information Technology services. "	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	12-Jan-08	30-Apr-08	45584.00	=""	="Nisling Pty Ltd"	08-Apr-08 12:51 PM	

+="CN63674"	"Temporary staff"	="Australian Securities and Investments Commission"	08-Apr-08	="Recruitment services"	01-Feb-08	31-May-08	21065.00	=""	="Robert Walters"	08-Apr-08 12:55 PM	

+="CN63656"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Feb-08	30-Jun-08	25000.00	=""	="Ms Elizabeth Cheeseman"	08-Apr-08 12:58 PM	

+="CN68440"	"repairs to s'liner arn-51253 on w/o-35903"	="Department of Defence"	08-Apr-08	="Motor vehicles"	21-Feb-08	01-May-08	62543.29	=""	="RGM MAINTENANCE"	08-Apr-08 12:59 PM	

+="CN68441"	"Purchase of various NSN's for SACTU Switch Training System"	="Defence Materiel Organisation"	08-Apr-08	="Communications Devices and Accessories"	04-Apr-08	27-Jun-08	211055.90	=""	="C4I Pty Ltd"	08-Apr-08 12:59 PM	

+="CN63651"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	30-Jun-08	15000.00	=""	="Mr Oren Bigos"	08-Apr-08 01:37 PM	

+="CN63519"	"Legal Services"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Dec-07	31-Dec-08	75000.00	=""	="Mr Mathew Howard"	08-Apr-08 01:40 PM	

+="CN68445"	"Inflation Devices"	="Defence Materiel Organisation"	08-Apr-08	="Endoscopic dilators or inflation devices or related products"	08-Apr-08	16-Jul-08	39198.50	=""	="Light Aircraft"	08-Apr-08 01:42 PM	

+="CN63650"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	21-Jan-08	16-May-08	64152.00	=""	="Interpro Australia Pty Ltd"	08-Apr-08 01:42 PM	

+="CN63508"	"Contract for the provision of Information Technology services."	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	17-Dec-07	17-Apr-08	61952.00	=""	="Mantech International Systems Pty Ltd"	08-Apr-08 01:46 PM	

+="CN68447"	"motor vehicle spare parts"	="Department of Defence"	08-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Apr-08	08-May-08	10844.19	=""	="LAND ROVER AUSTRALIA"	08-Apr-08 01:46 PM	

+="CN68449"	"Provision of Desktop Engineer Services"	="Family Court of Australia"	08-Apr-08	="Temporary information technology software developers"	12-May-08	25-Jul-08	36517.00	=""	="Commander Intergrated Networks Pty Ltd"	08-Apr-08 01:51 PM	

+="CN63664"	" Legal Counsel "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	06-Nov-07	31-Dec-07	20000.00	=""	="Robert Macfarlan"	08-Apr-08 01:53 PM	

+="CN68450-A1"	" Legal services "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Oct-07	31-Oct-09	350000.00	=""	="Ms Elizabeth A. Collins"	08-Apr-08 02:00 PM	

+="CN68451"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Oct-07	30-Apr-08	10000.00	=""	="Mr Christopher Young"	08-Apr-08 02:05 PM	

+="CN68452"	" Screen Design and intergration with the Commonwealth Courts Portal "	="Family Court of Australia"	08-Apr-08	="Temporary information technology software developers"	31-Mar-08	30-May-08	16555.00	=""	="Different Solutions Pty Ltd"	08-Apr-08 02:06 PM	

+="CN68454"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Oct-07	30-Apr-08	10000.00	=""	="Mr Cameron Macaulay"	08-Apr-08 02:10 PM	

+="CN68460-A1"	" Legal services "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Feb-08	30-Jun-11	240000.00	=""	="Mr Thomas P Sullivan"	08-Apr-08 02:15 PM	

+="CN68461"	"GST Treatment advice"	="Australian Securities and Investments Commission"	08-Apr-08	="Tax advisory services"	03-Apr-08	30-Apr-08	11000.00	=""	="PriceWaterhouse Coopers"	08-Apr-08 02:21 PM	

+="CN68467"	"Provision and installation of memory upgrade"	="Australian Crime Commission"	08-Apr-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	12997.60	=""	="Sun Microsystems"	08-Apr-08 02:42 PM	

+="CN68463-A1"	"Legal services"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	30-Jun-11	264000.00	=""	="Mr Thomas P Sullivan"	08-Apr-08 02:45 PM	

+="CN68469"	"Property Rental"	="Workplace Authority"	08-Apr-08	="Lease and rental of property or building"	16-Oct-07	16-Oct-07	386678.57	=""	="United Group Services"	08-Apr-08 02:48 PM	

+="CN68466"	"Changes to IT Infrustructure"	="Workplace Authority"	08-Apr-08	="Information technology consultation services"	16-Oct-07	30-Jun-08	121000.00	=""	="DEEWR"	08-Apr-08 02:49 PM	

+="CN68465"	"Advert - Workplace Relations Fact Sheets"	="Workplace Authority"	08-Apr-08	="Advertising"	17-Oct-07	19-Oct-07	84695.82	=""	="HMA Blaze Pty Ltd"	08-Apr-08 02:50 PM	

+="CN68470"	"Legal Services"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	01-Nov-07	30-Jun-09	242000.00	=""	="Mr John Peden"	08-Apr-08 02:52 PM	

+="CN68462"	"IT application works - Intr. Mgmt Captial"	="Workplace Authority"	08-Apr-08	="Information technology consultation services"	17-Oct-07	30-Jun-08	390500.00	=""	="DEEWR"	08-Apr-08 02:53 PM	

+="CN56923-A1"	" Tuncurry CSC.  Fitout Contractor  - contract for undertaking building work at Tuncurry CSC, to Centrelink specifications.    "	="Centrelink"	08-Apr-08	="Building and Construction Machinery and Accessories"	30-Jan-08	30-Jun-08	164739.30	=""	="Formula Interiors"	08-Apr-08 02:57 PM	

+="CN68471-A1"	"Guarding Services"	="Australian Crime Commission"	08-Apr-08	="Guard services"	01-Nov-07	31-Mar-08	22592.49	=""	="Scope Guarding Services"	08-Apr-08 02:57 PM	

+="CN68459"	"Telephones"	="Workplace Authority"	08-Apr-08	="IP phones"	17-Oct-07	30-Jun-08	19712.58	=""	="Telstra (VIC)"	08-Apr-08 02:59 PM	

+="CN68458"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	18-Oct-07	30-Nov-07	33280.00	=""	="Clubs Australia"	08-Apr-08 03:02 PM	

+="CN68455"	" Investigations "	="Workplace Authority"	08-Apr-08	="Private investigation services"	25-Sep-07	30-Sep-07	13985.00	=""	="Warren Hart & Associates Pty Ltd"	08-Apr-08 03:03 PM	

+="CN68453"	"Consultancy Service"	="Workplace Authority"	08-Apr-08	="Work related organisations"	26-Sep-07	30-Sep-07	104373.30	=""	="Master Builders Australia Incorporation"	08-Apr-08 03:04 PM	

+="CN68473"	" AIRCRAFT SPARES  NSN 1560-66-155-9369, BRACKET, QTY 5  NSN 1680-66-155-9367, SUPPORT, QTY 5   NSN 1560-66-155-9361, BRACKET, QTY 5  NSN 1680-66-155-9359, SUPPORT, QTY 5  NSN 1680-66-155-9356, SUPPORT, QTY 5  NSN 1680-66-155-9358, SUPPORT, QTY 5 "	="Defence Materiel Organisation"	08-Apr-08	="Military transport helicopters"	08-Apr-08	27-Jun-08	12155.00	=""	="EAS TOOLCRAFT"	08-Apr-08 03:04 PM	

+="CN55440"	"Night Vision Goggle Spares"	="Defence Materiel Organisation"	08-Apr-08	="Surveillance and detection equipment"	04-Dec-07	01-May-08	271741.25	=""	="Point Trading"	08-Apr-08 03:05 PM	

+="CN68448"	"Consultancy Services"	="Workplace Authority"	08-Apr-08	="Work related organisations"	27-Sep-07	30-Sep-07	168172.62	=""	="The Pharmacy Guild of Australia"	08-Apr-08 03:05 PM	

+="CN68446"	" Consultancy Services "	="Workplace Authority"	08-Apr-08	="Work related organisations"	27-Sep-07	30-Sep-07	160500.00	=""	="Housing Industry Association Ltd"	08-Apr-08 03:15 PM	

+="CN68444"	"HR Specialists"	="Workplace Authority"	08-Apr-08	="Human resources services"	27-Sep-07	30-Nov-07	325693.98	=""	="HR Matters"	08-Apr-08 03:16 PM	

+="CN68472-A1"	" Qty 300 Mask, Face, NIght Vision and Qty 300 Helmet Mount for NIght Vision Goggles. "	="Defence Materiel Organisation"	08-Apr-08	="Surveillance and detection equipment"	08-Apr-08	30-Jun-08	441804.00	=""	="Point Trading"	08-Apr-08 03:17 PM	

+="CN68443"	"Legal Services"	="Workplace Authority"	08-Apr-08	="Legal services"	27-Sep-07	30-Sep-07	20214.63	=""	="Aust Government Solicitor (NSW)"	08-Apr-08 03:17 PM	

+="CN68442-A1"	" Printing Services "	="Workplace Authority"	08-Apr-08	="Printing and publishing equipment"	13-Mar-08	30-Jun-08	4195684.85	=""	="Hermes Precisa Pty Ltd"	08-Apr-08 03:26 PM	

+="CN68433"	"Property expenses"	="Workplace Authority"	08-Apr-08	="Lease and rental of property or building"	27-Sep-07	30-Sep-07	13749.02	=""	="United Group Services"	08-Apr-08 03:27 PM	

+="CN68474"	"Conference venue"	="Australian Crime Commission"	08-Apr-08	="Conference centres"	12-Mar-08	30-Apr-08	10375.75	=""	="Rendezvous Allegra Hotel Adelaide"	08-Apr-08 03:27 PM	

+="CN68432"	"Services for Recruitment ads"	="Workplace Authority"	08-Apr-08	="Human resources services"	28-Sep-07	28-Sep-07	204297.58	=""	="HMA Blaze Pty Ltd"	08-Apr-08 03:28 PM	

+="CN68429"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	28-Sep-07	30-Sep-07	88000.00	=""	="ACT & Region Chamber of Commerce"	08-Apr-08 03:29 PM	

+="CN68427"	"Secondment of Legal Officers"	="Workplace Authority"	08-Apr-08	="Legal services"	28-Sep-07	31-Dec-07	1065197.71	=""	="Australian Government Solicitors (ACT)"	08-Apr-08 03:31 PM	

+="CN68426"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	28-Sep-07	30-Sep-07	93500.00	=""	="Recruitment and Consulting"	08-Apr-08 03:32 PM	

+="CN68423"	"Production of How to Guide CD's"	="Workplace Authority"	08-Apr-08	="Compact disk CD duplication and printing services"	03-Oct-07	31-Oct-07	13909.50	=""	="HMA Blaze Pty Ltd"	08-Apr-08 03:33 PM	

+="CN68419"	"Training consultants"	="Workplace Authority"	08-Apr-08	="Vocational training"	04-Oct-07	31-Dec-07	226000.00	=""	="Walter and Turnbull Pty Ltd"	08-Apr-08 03:34 PM	

+="CN68417"	"Marketing/Display for Sept and Oct"	="Workplace Authority"	08-Apr-08	="Marketing and distribution"	04-Oct-07	31-Oct-07	12758.79	=""	="HMA Blaze Pty Ltd"	08-Apr-08 03:36 PM	

+="CN68476"	"Fitout management services"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Mar-08	30-Jun-08	17049.49	=""	="James Millar Architects"	08-Apr-08 03:36 PM	

+="CN68477"	"Security officer, Lismore, NSW"	="Centrelink"	08-Apr-08	="Security surveillance and detection"	06-Sep-07	30-Jun-08	13200.00	=""	="Summerland Security Service"	08-Apr-08 03:36 PM	

+="CN68478"	"Engineering services for 340 Adelaide St, Brisbane, QLD"	="Centrelink"	08-Apr-08	="Professional engineering services"	24-Sep-07	30-Jun-08	11240.00	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:37 PM	

+="CN68479"	"Engineering services for Terrica Pl, Brisbane, QLD"	="Centrelink"	08-Apr-08	="Professional engineering services"	24-Sep-07	30-Jun-08	14815.00	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:37 PM	

+="CN68480"	"Security and personal safety"	="Centrelink"	08-Apr-08	="Security and personal safety"	04-Oct-07	30-Jun-08	46200.00	=""	="Attorney Generals Department"	08-Apr-08 03:37 PM	

+="CN68481"	"Recruitment Services"	="Centrelink"	08-Apr-08	="Human resources services"	05-Oct-07	30-Jun-08	55000.00	=""	="Chandler Macleod Group"	08-Apr-08 03:37 PM	

+="CN68482"	"Architect Services"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Mar-08	30-Jun-08	17270.00	=""	="James Millar Architects"	08-Apr-08 03:37 PM	

+="CN68483"	" Fitout management services "	="Centrelink"	08-Apr-08	="Building support services"	27-Mar-08	30-Jun-08	15730.00	=""	="James Millar Architects"	08-Apr-08 03:37 PM	

+="CN68484"	"Office Fitout Management at Toowong, QLD"	="Centrelink"	08-Apr-08	="Management advisory services"	06-Mar-08	30-Jun-08	13244.80	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:38 PM	

+="CN68485"	"Office Refurbishment"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Mar-08	11-Apr-08	13901.36	=""	="Formula Interiors NSW"	08-Apr-08 03:38 PM	

+="CN68486-A1"	"Recruitment Services"	="Centrelink"	08-Apr-08	="Human resources services"	20-Mar-08	30-Jun-08	44629.99	="RFT07/0021"	="Chandler Macleod Group"	08-Apr-08 03:38 PM	

+="CN68487"	"Health Care Services"	="Centrelink"	08-Apr-08	="Healthcare Services"	01-Feb-08	30-Jun-08	16500.00	=""	="Health for Industry"	08-Apr-08 03:38 PM	

+="CN68488"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	21-Feb-08	09-Mar-08	11270.60	=""	="Desa Australia (QLD) Pty Ltd"	08-Apr-08 03:38 PM	

+="CN68489"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	03-Mar-08	12-Mar-08	17000.01	=""	="IBM Australia Pty Ltd"	08-Apr-08 03:38 PM	

+="CN68490"	"Office Fitout Management"	="Centrelink"	08-Apr-08	="Management advisory services"	03-Mar-08	29-Aug-08	29205.67	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:38 PM	

+="CN68491"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	03-Mar-08	27-Apr-08	32604.00	=""	="Heyday Group Pty Ltd"	08-Apr-08 03:38 PM	

+="CN68492"	"Office Fitout Management, Roma, QLD"	="Centrelink"	08-Apr-08	="Management advisory services"	03-Mar-08	29-Aug-08	14516.00	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:39 PM	

+="CN68493-A1"	"Office relocation services"	="Centrelink"	08-Apr-08	="Transport operations"	04-Mar-08	30-Jun-08	304999.99	=""	="Balfran Removals"	08-Apr-08 03:39 PM	

+="CN68494"	"Office relocation services"	="Centrelink"	08-Apr-08	="Transport operations"	04-Mar-08	30-Jun-08	304999.99	=""	="Atlantis = Pty Ltd"	08-Apr-08 03:39 PM	

+="CN68495"	"Front Office Design Services"	="Centrelink"	08-Apr-08	="Graphic design"	04-Mar-08	30-Jun-08	59999.99	=""	="Retail Environment Design"	08-Apr-08 03:39 PM	

+="CN68496"	"Office Fitout Management"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Mar-08	30-Jun-08	11000.00	=""	="Interior Dynamics Australia Pty Ltd"	08-Apr-08 03:39 PM	

+="CN68497"	"Engineering Services"	="Centrelink"	08-Apr-08	="Professional engineering services"	31-Mar-08	18-Apr-08	16720.00	=""	="GHD Pty Ltd"	08-Apr-08 03:39 PM	

+="CN68498"	"Fitout management for Baukham Hills, NSW"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Nov-06	30-Jun-08	12127.50	=""	="GHD Pty Ltd"	08-Apr-08 03:40 PM	

+="CN68501"	"Courier Services"	="Centrelink"	08-Apr-08	="Mail and cargo transport"	20-Feb-08	30-Jun-08	39363.64	=""	="Toll Priority"	08-Apr-08 03:40 PM	

+="CN68502"	"Transport operations"	="Centrelink"	08-Apr-08	="Transport operations"	14-Mar-08	30-Jun-08	11000.00	=""	="Cabcharge Australia Pty Ltd"	08-Apr-08 03:40 PM	

+="CN68503"	"Recruitment Services"	="Centrelink"	08-Apr-08	="Human resources services"	11-Mar-08	30-Jun-08	27500.00	=""	="DFP Recruitment Services Pty Ltd"	08-Apr-08 03:40 PM	

+="CN68504"	"Seaches"	="Centrelink"	08-Apr-08	="Business administration services"	27-Mar-08	30-Jun-08	11000.00	=""	="Australian Business Research"	08-Apr-08 03:40 PM	

+="CN68505"	"Early Intervention and Rehabilitation Programs"	="Centrelink"	08-Apr-08	="Human resources services"	18-Mar-08	30-Jun-08	15950.00	=""	="JRJ REHABILITATION PTY LTD"	08-Apr-08 03:40 PM	

+="CN68506"	"Advertising"	="Centrelink"	08-Apr-08	="Printed media"	19-Mar-08	30-Jun-08	52096.25	=""	="HMA Blaze Pty Ltd"	08-Apr-08 03:41 PM	

+="CN68507"	"Access Control System maintenance"	="Centrelink"	08-Apr-08	="Security surveillance and detection"	25-Mar-08	30-Jun-08	16500.00	=""	="Chubb Electronic Security"	08-Apr-08 03:41 PM	

+="CN68508"	"Work Environment Equipment"	="Centrelink"	08-Apr-08	="Human resources services"	06-Jul-07	30-Jun-08	11000.00	=""	="Backcare and Seating"	08-Apr-08 03:41 PM	

+="CN68509"	"Staff medical expenses"	="Centrelink"	08-Apr-08	="Human resources services"	20-Mar-08	30-Jun-08	16500.00	=""	="SRC Solutions"	08-Apr-08 03:41 PM	

+="CN68510"	"Staff counselling"	="Centrelink"	08-Apr-08	="Human resources services"	04-Apr-08	30-Jun-08	33000.00	=""	="ITIM Australia"	08-Apr-08 03:41 PM	

+="CN68511"	"Searches"	="Centrelink"	08-Apr-08	="Security surveillance and detection"	20-Mar-08	30-Jun-08	22000.00	=""	="Australian Business Research"	08-Apr-08 03:41 PM	

+="CN68512"	"Searches"	="Centrelink"	08-Apr-08	="Security surveillance and detection"	12-Jul-07	30-Jun-08	11000.00	=""	="CITEC"	08-Apr-08 03:41 PM	

+="CN68513"	"Healthcare Services"	="Centrelink"	08-Apr-08	="Healthcare Services"	26-Feb-08	30-Jun-08	15000.00	=""	="OTR Consultants"	08-Apr-08 03:42 PM	

+="CN68514"	"Data comms"	="Centrelink"	08-Apr-08	="Communications Devices and Accessories"	17-Jan-08	30-Jun-08	520314.30	=""	="Telstra"	08-Apr-08 03:42 PM	

+="CN68516"	"Searches"	="Centrelink"	08-Apr-08	="Information services"	11-Oct-07	30-Jun-08	18690.00	=""	="Australian Business Research"	08-Apr-08 03:42 PM	

+="CN68517"	"Medical assessments for staff"	="Centrelink"	08-Apr-08	="Healthcare Services"	04-Mar-08	30-Jun-08	11000.00	=""	="Health for Industry"	08-Apr-08 03:42 PM	

+="CN68415"	"IT Software/Telecommunication items"	="Workplace Authority"	08-Apr-08	="Software"	04-Oct-07	31-Oct-07	11352.00	=""	="City Software Pty Ltd"	08-Apr-08 03:42 PM	

+="CN68518"	"Office Fitout Management"	="Centrelink"	08-Apr-08	="Management advisory services"	08-Nov-07	04-Sep-08	15642.48	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:42 PM	

+="CN68515"	"Contract for the provision of information technology services"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	17-Mar-08	20-Jun-08	59895.00	=""	="Beluba Group Pty Ltd"	08-Apr-08 03:42 PM	

+="CN68519"	"Hotels and lodging and meeting facilities"	="Centrelink"	08-Apr-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Jun-08	50000.01	=""	="Ampol Elliott"	08-Apr-08 03:43 PM	

+="CN68520"	"Workstations and storage units"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	14-Mar-08	25-Apr-08	18896.02	=""	="Schiavello (WA) Pty Ltd"	08-Apr-08 03:43 PM	

+="CN68522"	"Fitout Project Management"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	17-Mar-08	30-Jun-09	21125.67	=""	="Interior Dynamics Australia Pty Ltd"	08-Apr-08 03:43 PM	

+="CN68413"	"Recruitment Services"	="Workplace Authority"	08-Apr-08	="Human resources services"	19-Oct-07	19-Oct-07	11550.00	=""	="Manpower Services"	08-Apr-08 03:43 PM	

+="CN68523"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	17-Mar-08	20-Apr-08	58927.00	=""	="DESA Australia Pty Ltd"	08-Apr-08 03:43 PM	

+="CN68521"	" Update to WCM software "	="Family Court of Australia"	08-Apr-08	="Software"	07-Apr-08	08-Jun-08	142408.00	=""	="IBM"	08-Apr-08 03:43 PM	

+="CN68524"	"Computer Equipment"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-08	18341.40	=""	="Hewlett Packard Australia Pty Ltd"	08-Apr-08 03:43 PM	

+="CN68525"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	19-Mar-08	30-Jun-08	14000.00	=""	="Art of Service"	08-Apr-08 03:43 PM	

+="CN68526"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	19-Mar-08	30-Jun-08	14000.00	=""	="Art of Service"	08-Apr-08 03:44 PM	

+="CN68527"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	19-Mar-08	30-Jun-08	24000.00	=""	="Excom Education Pty Ltd"	08-Apr-08 03:44 PM	

+="CN68528"	"Internet searches"	="Centrelink"	08-Apr-08	="Electronic reference material"	20-Mar-08	30-Jun-08	11276.82	=""	="Australian Business Research"	08-Apr-08 03:44 PM	

+="CN68412"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	31-Oct-07	31-Oct-07	17424.60	=""	="Printing Industries Association"	08-Apr-08 03:44 PM	

+="CN68529-A1"	"Recruitment Services"	="Centrelink"	08-Apr-08	="Human resources services"	20-Mar-08	30-Jun-08	44999.90	=""	="Regent Recruitment"	08-Apr-08 03:44 PM	

+="CN68530"	"Facilities Management Services to the Caroline Chisholm Centre, ACT"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Mar-08	30-Jun-08	49500.00	=""	="Brookfield Multiplex Services Pty Ltd"	08-Apr-08 03:44 PM	

+="CN68531"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	20-Mar-08	06-Apr-08	15119.50	=""	="Diverse Data Communications (ACT)"	08-Apr-08 03:44 PM	

+="CN68532"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	20-Mar-08	30-Jun-08	19290.00	=""	="Team Systems Pty Ltd"	08-Apr-08 03:45 PM	

+="CN68533"	"Office fitout"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Mar-08	20-Mar-08	180616.72	=""	="Scope Interiors (1997) Pty Ltd"	08-Apr-08 03:45 PM	

+="CN68534"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	25-Mar-08	30-Jun-08	24750.00	=""	="Tactics Consulting Pty Ltd"	08-Apr-08 03:45 PM	

+="CN68535"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	25-Mar-08	30-Jun-08	19500.00	=""	="Minessence Group"	08-Apr-08 03:45 PM	

+="CN68536"	"Security upgrades at Level 1, 24 Knuckey St, Darwin, NT"	="Centrelink"	08-Apr-08	="Security and personal safety"	26-Mar-08	11-Apr-08	12245.20	=""	="MSC Alarms"	08-Apr-08 03:45 PM	

+="CN68537"	"Advertising"	="Centrelink"	08-Apr-08	="Advertising"	26-Mar-08	30-Jun-08	38500.00	=""	="HMA Blaze Pty Ltd"	08-Apr-08 03:45 PM	

+="CN68538"	"Workstations"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	27-Mar-08	30-Jun-08	658887.90	=""	="Schiavello (Vic) Pty Ltd"	08-Apr-08 03:45 PM	

+="CN68539"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	27-Mar-08	27-May-08	14674.00	=""	="Diverse Data Communications (ACT)"	08-Apr-08 03:46 PM	

+="CN68409"	" Employer Advisor Programme "	="Workplace Authority"	08-Apr-08	="Work related organisations"	31-Oct-07	31-Oct-07	110544.00	=""	="The Furnishing Industry Association"	08-Apr-08 03:46 PM	

+="CN68540"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	27-Mar-08	04-Jun-08	28600.00	=""	="Bayley and Associates Pty Ltd"	08-Apr-08 03:46 PM	

+="CN68541-A1"	"Market Research"	="Centrelink"	08-Apr-08	="Marketing and distribution"	28-Mar-08	30-Apr-08	45000.00	=""	="DBM Consultants Pty Ltd"	08-Apr-08 03:46 PM	

+="CN68542"	"Office fitout for Centrelink, Curtin University, Bentley, WA"	="Centrelink"	08-Apr-08	="Office supplies"	05-Mar-08	18-May-08	98555.60	=""	="Schiavello (WA) Pty Ltd"	08-Apr-08 03:46 PM	

+="CN68543"	"Install and Supply Floor Covering"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	06-Mar-08	15-May-08	17425.93	=""	="Interface Flor"	08-Apr-08 03:46 PM	

+="CN68544"	"Venue hire and sustenance"	="Centrelink"	08-Apr-08	="Office supplies"	07-Mar-08	30-Jun-08	22000.00	=""	="Campbelltown Catholic Club"	08-Apr-08 03:47 PM	

+="CN68408"	" Employer Advisor Programme "	="Workplace Authority"	08-Apr-08	="Work related organisations"	31-Oct-07	31-Oct-07	11318.01	=""	="Minter Ellison"	08-Apr-08 03:47 PM	

+="CN68545"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	07-Mar-08	23-Mar-08	68503.60	=""	="DESA Australia Pty Ltd"	08-Apr-08 03:47 PM	

+="CN68546-A1"	"Customer Service Centre Refurbishment, Noarlunga Centre, SA"	="Centrelink"	08-Apr-08	="Building and Construction Machinery and Accessories"	07-Mar-08	03-Mar-09	334824.51	=""	="Mossop Group Pty Ltd"	08-Apr-08 03:47 PM	

+="CN68548"	"Management advisory services"	="Centrelink"	08-Apr-08	="Management advisory services"	11-Mar-08	30-Jun-08	82916.00	=""	="Ernst and Young"	08-Apr-08 03:47 PM	

+="CN68549"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	12-Mar-08	20-Apr-08	13952.40	=""	="DESA Australia Pty Ltd"	08-Apr-08 03:47 PM	

+="CN68550"	"Market Research"	="Centrelink"	08-Apr-08	="Management advisory services"	12-Mar-08	04-Apr-08	35000.00	=""	="NWC Research"	08-Apr-08 03:48 PM	

+="CN68407"	"Recruitment Services - Legal"	="Workplace Authority"	08-Apr-08	="Human resources services"	25-Jan-08	25-Jan-08	110590.15	=""	="Australian Government Solicitors"	08-Apr-08 03:48 PM	

+="CN68551"	"Mail opening services"	="Centrelink"	08-Apr-08	="Material packing and handling"	12-Mar-08	30-Jun-08	16500.00	=""	="Mailhouse Tasmania"	08-Apr-08 03:48 PM	

+="CN68552"	"Hotel, lodging and meeting facilities"	="Centrelink"	08-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	50000.01	=""	="Walkabout Lodge and Tavern"	08-Apr-08 03:48 PM	

+="CN68553"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	13-Mar-08	30-Jun-08	25000.00	=""	="Dimension Data Learning Solutions"	08-Apr-08 03:48 PM	

+="CN68554"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	13-Mar-08	30-Jun-08	25000.00	=""	="Dimension Data Learning Solutions"	08-Apr-08 03:48 PM	

+="CN68555"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	13-Mar-08	30-Jun-08	15000.00	=""	="Lucid IT Pty Ltd"	08-Apr-08 03:48 PM	

+="CN68556"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	13-Mar-08	30-Jun-08	15000.00	=""	="Lucid IT Pty Ltd"	08-Apr-08 03:49 PM	

+="CN68557"	"Hotel, lodging and meeting facilities"	="Centrelink"	08-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	11000.00	=""	="R M Steele"	08-Apr-08 03:49 PM	

+="CN68558"	"Transport operations"	="Centrelink"	08-Apr-08	="Transport operations"	13-Mar-08	30-Jun-08	20000.00	=""	="Air Frontier Pty Ltd"	08-Apr-08 03:49 PM	

+="CN68559"	"Hotel lodging and meeting facilities"	="Centrelink"	08-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	50000.01	=""	="Alawa Aboriginal Corporation"	08-Apr-08 03:49 PM	

+="CN68560"	"Hotel, lodging and meeting facilities"	="Centrelink"	08-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	50000.01	=""	="Angurugu Community Govt Council"	08-Apr-08 03:49 PM	

+="CN68561"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	14-Mar-08	30-Jun-08	13000.00	=""	="Art of Service"	08-Apr-08 03:49 PM	

+="CN68563"	"IT Cabling"	="Centrelink"	08-Apr-08	="Computer services"	14-Mar-08	14-Apr-08	33916.30	=""	="DESA Australia Pty Ltd"	08-Apr-08 03:49 PM	

+="CN68564"	"Workstations and storage units"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	14-Mar-08	25-Apr-08	12094.50	=""	="Schiavello (WA) Pty Ltd"	08-Apr-08 03:50 PM	

+="CN68565"	"Office Fitout"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	31-Mar-08	31-Mar-08	12652.20	=""	="Cordwell Lane Building Pty Ltd"	08-Apr-08 03:50 PM	

+="CN68562"	" Contract for the provision of Information Technology services "	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	17-Feb-08	20-Mar-08	23375.00	=""	="Ethos Corporation Pty Ltd"	08-Apr-08 03:50 PM	

+="CN68566"	"Roller blinds"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	03-Mar-08	04-Apr-08	13551.41	=""	="Turner Bros Furnishings Pty Ltd"	08-Apr-08 03:50 PM	

+="CN68567"	"Office furniture, Bendigo, VIC"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	03-Mar-08	30-Jun-08	10765.70	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 03:50 PM	

+="CN68568"	"Architectural design and fitout management"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Mar-08	30-Jun-09	57750.00	=""	="James Millar Architects"	08-Apr-08 03:50 PM	

+="CN68569"	"Supply and install carpet"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	04-Mar-08	30-Jun-08	99075.19	=""	="Interface Flor"	08-Apr-08 03:50 PM	

+="CN68570"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	04-Mar-08	30-Jun-08	481466.04	=""	="Schiavello Systems (QLD) Pty Ltd"	08-Apr-08 03:50 PM	

+="CN68571"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	04-Mar-08	20-Mar-08	16480.20	=""	="Schiavello Systems (QLD) Pty Ltd"	08-Apr-08 03:51 PM	

+="CN68572"	"Storage Units"	="Centrelink"	08-Apr-08	="Office supplies"	05-Mar-08	30-Jun-08	18128.00	=""	="Schiavello Systems (NSW) Pty Ltd"	08-Apr-08 03:51 PM	

+="CN68573"	"Camera Operator"	="Centrelink"	08-Apr-08	="Telecommunications media services"	05-Mar-08	31-Mar-08	11060.50	=""	="Drew Llewelyn Production Pty Ltd"	08-Apr-08 03:51 PM	

+="CN68574"	"office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	05-Mar-08	30-Jun-08	796849.68	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 03:51 PM	

+="CN68575"	"Office fitout"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Mar-08	30-Jun-08	13350.15	=""	="Quadric Interiors (NSW) Pty Ltd"	08-Apr-08 03:51 PM	

+="CN68576"	"Class B Fire safes"	="Centrelink"	08-Apr-08	="Storage"	05-Mar-08	01-May-08	23730.30	=""	="CMI Safe Co"	08-Apr-08 03:51 PM	

+="CN68577"	"Removals"	="Centrelink"	08-Apr-08	="Office supplies"	06-Mar-08	30-Mar-08	19206.00	=""	="Allied Pickfords"	08-Apr-08 03:51 PM	

+="CN68578"	"External training"	="Centrelink"	08-Apr-08	="Human resources services"	07-Mar-08	20-Apr-08	16118.58	=""	="Conflict Resolution Training and Consulting Pty Ltd"	08-Apr-08 03:52 PM	

+="CN68579"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	07-Mar-08	08-Mar-09	187387.20	=""	="Encore It Services Pty Ltd"	08-Apr-08 03:52 PM	

+="CN68580"	"SBS Radio Broadcasting"	="Centrelink"	08-Apr-08	="Advertising"	11-Mar-08	31-Mar-08	13200.00	=""	="Special Broadcasting Service"	08-Apr-08 03:52 PM	

+="CN68581"	"Office furniture"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Mar-08	30-Jun-08	207844.16	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 03:52 PM	

+="CN68582"	"SBS Radio Broadcasting"	="Centrelink"	08-Apr-08	="Advertising"	11-Mar-08	31-Mar-08	13750.00	=""	="Special Broadcasting Service"	08-Apr-08 03:52 PM	

+="CN68583"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	11-Mar-08	30-Jun-08	79695.00	=""	="Encore It Services Pty Ltd"	08-Apr-08 03:52 PM	

+="CN68584"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	11-Mar-08	30-Jun-08	154073.70	=""	="Schiavello Systems (NSW) Pty Ltd"	08-Apr-08 03:53 PM	

+="CN68406"	"Workstation supplies for Brisbane office"	="Workplace Authority"	08-Apr-08	="Workstations and office packages"	25-Jan-08	25-Jan-08	10584.20	=""	="Queensland Installations"	08-Apr-08 03:53 PM	

+="CN68586"	"Software Licences"	="Centrelink"	08-Apr-08	="Software"	12-Mar-08	12-Mar-08	22366.65	=""	="Kaz Group Pty Ltd"	08-Apr-08 03:53 PM	

+="CN68588"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	19-Mar-08	19-Mar-08	69300.00	=""	="Rosslogic Pty Ltd"	08-Apr-08 03:53 PM	

+="CN68590"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	01-Apr-08	29-Sep-08	99608.30	=""	="Compas Pty Ltd"	08-Apr-08 03:54 PM	

+="CN68591"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	13-Dec-07	30-Jun-08	46126.08	=""	="Integrating Software"	08-Apr-08 03:54 PM	

+="CN68404"	"Consultants"	="Workplace Authority"	08-Apr-08	="Business administration services"	13-Nov-07	30-Jun-08	12276.00	=""	="Hudson Global Resource (Aust) Pty"	08-Apr-08 03:54 PM	

+="CN68592"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	14-Jan-08	14-Mar-08	49896.00	=""	="Write Once Pty Ltd"	08-Apr-08 03:54 PM	

+="CN68594"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	17-Mar-08	16-Sep-08	114114.00	=""	="Compas Pty Ltd"	08-Apr-08 03:54 PM	

+="CN68595"	"Engineering services"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Sep-07	30-Jun-08	13842.50	=""	="IA Group Pty Ltd (Interiors Australia)"	08-Apr-08 03:55 PM	

+="CN68596"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	12-Dec-07	01-Apr-08	72072.00	=""	="Integrating Software"	08-Apr-08 03:55 PM	

+="CN68597"	"Utilities"	="Centrelink"	08-Apr-08	="Utilities"	08-Oct-07	30-Jun-08	17952.00	=""	="Maningrida Community Council"	08-Apr-08 03:55 PM	

+="CN68598"	"Office fitout"	="Centrelink"	08-Apr-08	="Office supplies"	22-Nov-07	15-Mar-08	11407.00	=""	="J D C Flooring Pty Ltd"	08-Apr-08 03:55 PM	

+="CN68599"	"Computer services"	="Centrelink"	08-Apr-08	="Computer services"	03-Apr-08	30-Jun-08	526968.79	=""	="CSC Australia Pty Ltd"	08-Apr-08 03:55 PM	

+="CN68600"	"Computer services"	="Centrelink"	08-Apr-08	="Computer services"	25-Feb-08	30-Jun-08	206960.68	=""	="Kaz Group Pty Ltd"	08-Apr-08 03:55 PM	

+="CN68601"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	17-Mar-08	31-Mar-08	60660.60	=""	="Peoplebank Australia Pty Ltd"	08-Apr-08 03:56 PM	

+="CN68396"	"Strategic Plan Presentation and Poster"	="Workplace Authority"	08-Apr-08	="Printing and publishing equipment"	13-Nov-07	13-Nov-07	11930.77	=""	="Fox Badger Ferret Pty Ltd"	08-Apr-08 03:56 PM	

+="CN68602"	"Office Fitout at Biloela, QLD"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Mar-08	30-Jun-08	21824.75	=""	="Quadric Pty Ltd"	08-Apr-08 03:56 PM	

+="CN68603"	"Office Fitout of Bowen, QLD"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Mar-08	30-Jun-08	19663.60	=""	="Quadric Pty Ltd"	08-Apr-08 03:56 PM	

+="CN68604"	"Office Fitout of Ayr, QLD"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Mar-08	30-Jun-08	255141.70	=""	="Quadric Pty Ltd"	08-Apr-08 03:56 PM	

+="CN68605"	"Fit out management, Mornington, VIC"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Mar-08	30-Apr-08	14338.12	=""	="James Millar Architects"	08-Apr-08 03:56 PM	

+="CN68606"	"Ceiling mount lite pros, Bendigo, VIC"	="Centrelink"	08-Apr-08	="Electronic Components and Supplies"	02-Feb-08	30-Jun-08	10191.50	=""	="Dr Audio"	08-Apr-08 03:56 PM	

+="CN68589"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	22-Feb-08	18-Apr-08	39600.00	=""	="Madfish Solutions Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68607"	"Data Entry Services"	="Centrelink"	08-Apr-08	="Computer services"	20-Feb-08	31-Dec-08	154300.19	=""	="Searson Buck Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68395"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	13-Mar-08	30-Jun-08	2304299.68	=""	="Australian Chamber Alliance Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68608"	"External painting, Bendigo, VIC"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Mar-08	30-Jun-08	11132.00	=""	="L and A Petruccelli"	08-Apr-08 03:57 PM	

+="CN68609"	"Computer Equipment and Accessories"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	03-Mar-08	04-Mar-08	56486.18	=""	="Dimension Data Australia Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68610"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	12-Mar-08	30-Jun-09	42777.78	=""	="Citrix Systems Asia Pacific Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68611"	"Computer services"	="Centrelink"	08-Apr-08	="Computer services"	20-Mar-08	11-Jul-08	64842.80	=""	="Hewlett Packard Australia Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68612"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	20-Mar-08	30-Jun-08	18513.00	=""	="Schiavello Systems (NSW) Pty Ltd"	08-Apr-08 03:57 PM	

+="CN68613"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	20-Mar-08	30-Apr-08	29656.00	=""	="Accent Office Interiors"	08-Apr-08 03:58 PM	

+="CN68614"	"Office Fiout at Greenfields, WA"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Mar-08	30-Jun-08	274015.50	=""	="Quadric Pty Ltd"	08-Apr-08 03:58 PM	

+="CN68360"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	15-Nov-07	15-Nov-07	467380.88	=""	="Australian Retailers Association"	08-Apr-08 03:58 PM	

+="CN68615"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	25-Mar-08	30-Jun-08	20271.08	=""	="Schiavello SA Pty Ltd"	08-Apr-08 03:58 PM	

+="CN68616"	"Workstations"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	25-Mar-08	30-Jun-08	334656.65	=""	="Schiavello (Vic) Pty Ltd"	08-Apr-08 03:58 PM	

+="CN68617"	"Signage"	="Centrelink"	08-Apr-08	="Signage and accessories"	25-Mar-08	30-Jun-08	13938.38	=""	="Signshop"	08-Apr-08 03:58 PM	

+="CN68618"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	25-Mar-08	30-Jun-08	37650.80	=""	="Emtek Furniture"	08-Apr-08 03:59 PM	

+="CN68619"	"Signage"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	25-Mar-08	18-Apr-08	15235.00	=""	="Wilsons Sign Solutions"	08-Apr-08 03:59 PM	

+="CN68620"	"Supply and install carpet"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	26-Mar-08	30-Jun-08	114788.52	=""	="Interface Flor"	08-Apr-08 03:59 PM	

+="CN68621"	"Office Refurbishment"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	26-Mar-08	24-Apr-08	35008.60	=""	="Solitaire Seating"	08-Apr-08 03:59 PM	

+="CN68622"	"Computer services"	="Centrelink"	08-Apr-08	="Computer services"	27-Mar-08	31-May-08	112079.00	=""	="IBM Australia Pty Ltd"	08-Apr-08 03:59 PM	

+="CN68623"	"Office furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	27-Mar-08	30-Jun-08	23886.50	=""	="Schiavello SA Pty Ltd"	08-Apr-08 03:59 PM	

+="CN68624"	"Computer Equipment and Accessories"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	27-Mar-08	30-Mar-08	1124323.86	=""	="Dimension Data Australia Pty Ltd"	08-Apr-08 04:00 PM	

+="CN68625"	"Office Furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	27-Mar-08	30-May-08	27787.10	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 04:00 PM	

+="CN68626"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	28-Mar-08	31-Mar-09	177777.60	=""	="Peoplebank Australia Pty Ltd"	08-Apr-08 04:00 PM	

+="CN68355"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	15-Nov-07	15-Nov-07	415882.50	=""	="Australian Industry Group"	08-Apr-08 04:00 PM	

+="CN68628"	"Access control and electronic security systems"	="Centrelink"	08-Apr-08	="National Defence and Public Order and Security and Safety Services"	28-Mar-08	30-Jun-08	20278.50	=""	="Intelligent Services"	08-Apr-08 04:00 PM	

+="CN68629-A2"	" Technical services "	="Department of Human Services"	08-Apr-08	="Software maintenance and support"	28-Mar-08	30-Sep-11	8314740.50	=""	="Compuware Asia-Pacific Pty Ltd"	08-Apr-08 04:00 PM	

+="CN68630"	"External Training"	="Centrelink"	08-Apr-08	="Vocational training"	31-Mar-08	31-Dec-08	16280.00	=""	="The Benevolent Society"	08-Apr-08 04:01 PM	

+="CN68627"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	03-Mar-08	18-Apr-08	31581.00	=""	="Sharewin Pty Ltd"	08-Apr-08 04:01 PM	

+="CN68631"	"IT Specialist Services by Specified Personnel"	="Centrelink"	08-Apr-08	="Computer services"	31-Mar-08	30-Oct-08	114576.00	=""	="Omaha IT Services Pty Ltd"	08-Apr-08 04:01 PM	

+="CN68632-A1"	"Software"	="Centrelink"	08-Apr-08	="Software"	31-Mar-08	30-Jun-08	728291.30	=""	="Actividentity"	08-Apr-08 04:01 PM	

+="CN68352"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	15-Nov-07	15-Nov-07	168172.62	=""	="The Pharmacy Guild of Australia"	08-Apr-08 04:01 PM	

+="CN68633"	"Office Refurbishment Workstations"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	12-Mar-08	30-Apr-08	259827.02	=""	="Schiavello SA Pty Ltd"	08-Apr-08 04:01 PM	

+="CN68634"	"External training"	="Centrelink"	08-Apr-08	="Vocational training"	13-Mar-08	30-Jun-08	47333.00	=""	="CA (Pacific) Pty Ltd"	08-Apr-08 04:02 PM	

+="CN68635-A3"	" Software "	="Department of Human Services"	08-Apr-08	="Software"	13-Mar-08	24-Jan-12	2443635.66	=""	="Symantec Asia Pacific Pty Ltd"	08-Apr-08 04:02 PM	

+="CN68349"	"Employer Advisor Programme"	="Workplace Authority"	08-Apr-08	="Work related organisations"	19-Nov-07	19-Nov-07	61600.00	=""	="Recruitment and Consulting"	08-Apr-08 04:02 PM	

+="CN68638"	"Portable Interview Recorder"	="Centrelink"	08-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Mar-08	09-May-08	24035.00	=""	="Tape Products Research"	08-Apr-08 04:02 PM	

+="CN68639"	"Data Projectors"	="Centrelink"	08-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Mar-08	28-Mar-08	12338.44	=""	="Electroboard Solutions Pty Ltd"	08-Apr-08 04:02 PM	

+="CN68640"	"Office Furniture"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	17-Mar-08	30-May-08	61814.50	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 04:03 PM	

+="CN68641"	"Software Licence"	="Centrelink"	08-Apr-08	="Software"	17-Mar-08	30-Mar-08	18026.16	=""	="Infront Systems Pty Ltd"	08-Apr-08 04:03 PM	

+="CN68642"	"Workstations"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	17-Mar-08	15-May-08	70677.20	=""	="Schiavello Systems (NSW) Pty Ltd"	08-Apr-08 04:03 PM	

+="CN68643"	"Computer Equipment and Accessories"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	18-Mar-08	30-Jun-08	116902.50	=""	="Schiavello (Vic) Pty Ltd"	08-Apr-08 04:03 PM	

+="CN68644"	"Office Fitout"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Mar-08	28-Mar-08	31350.00	=""	="National Interiors"	08-Apr-08 04:03 PM	

+="CN68645"	"Computer equipment"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-08	17000.01	=""	="Forensic Digital Services Pty Ltd"	08-Apr-08 04:03 PM	

+="CN68646"	"Supply and install carpet"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	19-Mar-08	30-Jun-08	96480.84	=""	="Interface Flor"	08-Apr-08 04:03 PM	

+="CN68647"	"Supply and install carpet tiles"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	19-Mar-08	30-Jun-08	139403.94	=""	="Interface Flor"	08-Apr-08 04:04 PM	

+="CN68648"	"Workstations and Storage Units"	="Centrelink"	08-Apr-08	="Office and desk accessories"	19-Mar-08	30-May-08	189558.60	=""	="Schiavello (Vic) Pty Ltd"	08-Apr-08 04:04 PM	

+="CN68649"	"Office Refurbishment Storage Units"	="Centrelink"	08-Apr-08	="Furniture and Furnishings"	19-Mar-08	30-Apr-08	11096.80	=""	="GO Shelving"	08-Apr-08 04:04 PM	

+="CN68650"	"Workstations and storage units"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Mar-08	25-May-08	410803.23	=""	="Schiavello (Vic) Pty  Ltd"	08-Apr-08 04:04 PM	

+="CN68651"	"Computer Equipment and Accessories"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	20-Mar-08	31-Mar-08	351648.16	=""	="IBM Australia Pty Ltd"	08-Apr-08 04:04 PM	

+="CN68652"	"Recruitment Services"	="Centrelink"	08-Apr-08	="Human resources services"	20-Mar-08	30-Jun-08	57543.03	=""	="Dept of Families, Housing, and  Commununity Services"	08-Apr-08 04:04 PM	

+="CN68654"	"Minor Office Fitout Work"	="Centrelink"	08-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Mar-08	07-Apr-08	15950.00	=""	="Topline Partitions and Interiors Pty"	08-Apr-08 04:04 PM	

+="CN68655"	"Computer Equipment and Accessories"	="Centrelink"	08-Apr-08	="Computer Equipment and Accessories"	20-Mar-08	30-Jun-08	10560.00	=""	="Pacific Datacom"	08-Apr-08 04:05 PM	

+="CN68653"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	08-Apr-08	="Information technology consultation services"	03-Mar-08	18-Apr-08	26194.00	=""	="Wisemate Pty, Ltd"	08-Apr-08 04:05 PM	

+="CN68656"	" Legal services - counsel "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	18-Feb-08	30-Jun-08	50000.00	=""	="Ms Lisa Nichols"	08-Apr-08 04:09 PM	

+="CN67222"	"Copying Services."	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	19-Oct-07	26-Oct-07	11423.00	=""	="CCH Workflow Solutions"	08-Apr-08 04:18 PM	

+="CN68657-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	30000.00	=""	="Mr Christopher Caleo SC"	08-Apr-08 04:20 PM	

+="CN68659-A1"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	04-Mar-08	30-Jun-08	10000.00	=""	="Mr Peter Brereton"	08-Apr-08 04:31 PM	

+="CN68660-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	28-Feb-08	30-Jun-08	15000.00	=""	="Matthew C. L. Dicker"	08-Apr-08 04:36 PM	

+="CN68661-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	17-Jan-08	30-Jun-08	49500.00	=""	="Mr Thomas F Bathurst QC"	08-Apr-08 04:41 PM	

+="CN68662-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	17-Jan-08	30-Jun-08	10000.00	=""	="Mr Thomas F Bathurst QC"	08-Apr-08 04:46 PM	

+="CN68663-A1"	" Legal services - counsel "	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	22-Feb-08	30-Jun-08	15000.00	=""	="John V. Gooley"	08-Apr-08 04:52 PM	

+="CN68664-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-Apr-08	="Legal services"	21-Jan-08	30-Jun-08	25000.00	=""	="Mr Jonathon Moore"	08-Apr-08 04:56 PM	

+="CN68668"	"Repair of Input Module"	="Defence Materiel Organisation"	09-Apr-08	="Aircraft"	13-Mar-08	08-Apr-08	91404.03	=""	="Sikorsky Aircraft Australia"	09-Apr-08 08:17 AM	

+="CN68669"	"Spectrum Analyser"	="Defence Materiel Organisation"	09-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Apr-08	10-Jun-08	120560.00	=""	="Rohde & Schwarz"	09-Apr-08 08:25 AM	

+="CN68670-A1"	" Legal services - counsel "	="Australian Securities and Investments Commission"	09-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	45000.00	=""	="Mr Matthew N. Connock SC"	09-Apr-08 09:07 AM	

+="CN68672-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	09-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	45000.00	=""	="Mr Matthew N. Connock SC"	09-Apr-08 09:15 AM	

+="CN68673"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	09-Apr-08	="Aircraft spars"	09-Apr-08	09-Jun-08	12383.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	09-Apr-08 09:15 AM	

+="CN68677-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	09-Apr-08	="Legal services"	03-Mar-08	30-Jun-08	20000.00	=""	="Mr Gregory McNally SC"	09-Apr-08 09:22 AM	

+="CN68680"	"Newspaper Supply"	="Australian Securities and Investments Commission"	09-Apr-08	="Newspapers"	01-Jul-07	30-Jun-08	20000.00	=""	="Glasshouse Newsagency"	09-Apr-08 09:32 AM	

+="CN68682"	"Computer Server"	="Australian Electoral Commission"	09-Apr-08	="Computer servers"	18-Mar-08	20-Mar-08	35939.77	=""	="Datacom Systems (QLD) Pty Ltd"	09-Apr-08 09:33 AM	

+="CN68679"	"repair aircraft component"	="Defence Materiel Organisation"	09-Apr-08	="Anti submarine aircraft"	08-Apr-08	30-Jun-08	11511.00	=""	="Bellinger Instruments"	09-Apr-08 09:33 AM	

+="CN68681-A1"	"Repair of Intermediate Gearbox"	="Defence Materiel Organisation"	09-Apr-08	="Aerospace systems and components and equipment"	18-Mar-08	18-Apr-08	57264.87	=""	="Sikorsky Aircraft Australia"	09-Apr-08 09:33 AM	

+="CN68684"	"Storage of records"	="Australian Federal Police"	09-Apr-08	="File archive storage"	31-Jan-08	30-Jan-10	16410.24	=""	="Iron Mountain Australia Pty Ltd"	09-Apr-08 09:40 AM	

+="CN68685"	"Telephone Account"	="Australian Electoral Commission"	09-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	29-Feb-08	53447.91	=""	="Telstra"	09-Apr-08 09:41 AM	

+="CN68686"	" Temporary staff - Executive Support "	="Australian Securities and Investments Commission"	09-Apr-08	="Temporary legal staffing needs"	01-Feb-08	31-May-08	20925.00	=""	="Law Solutions"	09-Apr-08 09:43 AM	

+="CN68346"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	19-Nov-07	19-Nov-07	200706.95	=""	="Aged and Community Services Australia"	09-Apr-08 09:46 AM	

+="CN68687"	"Legal Services"	="Australian Electoral Commission"	09-Apr-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	="AEC06/032"	="Australian Government Solicitor"	09-Apr-08 09:49 AM	

+="CN68343"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	19-Nov-07	19-Nov-07	80960.00	=""	="Australian Hotels Association"	09-Apr-08 09:51 AM	

+="CN68292"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	13-Mar-08	30-Jun-08	29080.00	=""	="Electrical and Communications Association"	09-Apr-08 09:52 AM	

+="CN68690"	"Aircraft Spares"	="Defence Materiel Organisation"	09-Apr-08	="Aircraft"	09-Apr-08	10-Dec-08	47191.10	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	09-Apr-08 09:54 AM	

+="CN68691"	"Temporary IT Personnel"	="Australian Electoral Commission"	09-Apr-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	18849.60	="AEC06/019"	="Peoplebank Recruitment Pty Ltd"	09-Apr-08 09:56 AM	

+="CN68291"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	19-Nov-07	19-Nov-07	349122.31	=""	="Australian Medical Association Ltd"	09-Apr-08 09:57 AM	

+="CN68290"	"A4 Snap sign frames"	="Workplace Authority"	09-Apr-08	="Signage and accessories"	22-Nov-07	22-Nov-07	12391.50	=""	="Signcraft Pty Ltd"	09-Apr-08 09:59 AM	

+="CN68289"	"2nd Instalment - Employer Advisor Program"	="Workplace Authority"	09-Apr-08	="Work related organisations"	22-Oct-07	22-Oct-07	224840.00	=""	="Aust Mines & Metals Association"	09-Apr-08 10:00 AM	

+="CN68287-A1"	"IT Consultancy"	="Workplace Authority"	09-Apr-08	="Information technology consultation services"	23-Oct-07	23-Oct-07	108900.00	=""	="Compas Pty Ltd"	09-Apr-08 10:01 AM	

+="CN68286"	"Printing for Fairness Testing Workshops"	="Workplace Authority"	09-Apr-08	="Business and corporate management consultation services"	23-Oct-07	23-Oct-07	10810.00	=""	="Snap Printing"	09-Apr-08 10:02 AM	

+="CN68692-A1"	"Creation of web-based calculators"	="Australian Securities and Investments Commission"	09-Apr-08	="Information technology consultation services"	09-Nov-07	21-Dec-08	32450.00	=""	="Infochoice"	09-Apr-08 10:08 AM	

+="CN68285"	"Printing for Fairness Testing related training"	="Workplace Authority"	09-Apr-08	="Business and corporate management consultation services"	23-Oct-07	23-Oct-07	11987.60	=""	="Snap Printing"	09-Apr-08 10:12 AM	

+="CN68284-A1"	"IT Consultant Services"	="Workplace Authority"	09-Apr-08	="Information technology consultation services"	23-Oct-07	23-Oct-07	106260.00	=""	="Gartner Australasia Pty Ltd"	09-Apr-08 10:14 AM	

+="CN68281"	" Employer Advisor Programme "	="Workplace Authority"	09-Apr-08	="Work related organisations"	24-Oct-07	24-Oct-07	140930.00	=""	="Restaurant and Catering Australia"	09-Apr-08 10:15 AM	

+="CN68695-A1"	" Temporary Staff - Executive Support "	="Australian Securities and Investments Commission"	09-Apr-08	="Temporary financial staffing needs"	01-Mar-08	30-Jun-08	24500.00	=""	="Robert Walters"	09-Apr-08 10:17 AM	

+="CN68278"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	24-Oct-07	24-Oct-07	168172.62	=""	="National Farmers Federation Ltd"	09-Apr-08 10:19 AM	

+="CN68276"	"Property rent payment"	="Workplace Authority"	09-Apr-08	="Lease and rental of property or building"	31-Oct-07	31-Oct-07	599269.95	=""	="DEEWR"	09-Apr-08 10:20 AM	

+="CN68696"	"VEH REPAIR TO TADANO ARN-46774 W/O-28929/2"	="Department of Defence"	09-Apr-08	="Motor vehicles"	09-Apr-08	22-May-08	28995.14	=""	="HITACHI"	09-Apr-08 10:23 AM	

+="CN68273"	"Translation and typesetting of CA, GA and AWA"	="Workplace Authority"	09-Apr-08	="Business and corporate management consultation services"	31-Oct-07	31-Oct-07	169686.00	=""	="HMA Blaze Pty Ltd"	09-Apr-08 10:25 AM	

+="CN68272"	"Project Management consultancy fees Sept 07"	="Workplace Authority"	09-Apr-08	="Project management"	31-Oct-07	31-Oct-07	27420.44	=""	="AAP Corporation"	09-Apr-08 10:29 AM	

+="CN68270"	"Translations of AWA's and CA's"	="Workplace Authority"	09-Apr-08	="Business intelligence consulting services"	31-Oct-07	31-Oct-07	59925.80	=""	="HMA Blaze Pty Ltd"	09-Apr-08 10:30 AM	

+="CN68698"	" Temporary staff - Executive support "	="Australian Securities and Investments Commission"	09-Apr-08	="Temporary legal staffing needs"	01-Feb-08	31-May-08	20925.00	=""	="Law Solutions"	09-Apr-08 10:31 AM	

+="CN68267"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	24-Oct-07	24-Oct-07	72431.60	=""	="COSBOA"	09-Apr-08 10:31 AM	

+="CN68264"	"Charges for depreciation of Assets"	="Workplace Authority"	09-Apr-08	="Information technology consultation services"	30-Oct-07	30-Oct-07	194756.00	=""	="DEEWR"	09-Apr-08 10:32 AM	

+="CN68262"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Human resources services"	30-Oct-07	30-Oct-07	12264.12	=""	="Hudson Global Resources (Aust) Pty Ltd"	09-Apr-08 10:33 AM	

+="CN68259-A1"	"Printing"	="Workplace Authority"	09-Apr-08	="Printing and writing paper"	30-Oct-07	30-Jun-08	30000.00	=""	="McMillian Print Group Pty Ltd"	09-Apr-08 10:35 AM	

+="CN68701-A1"	"Online Graduate Recruitment"	="Australian Securities and Investments Commission"	09-Apr-08	="Recruitment services"	28-Feb-08	30-Jun-08	36850.00	=""	="PreVisor Pty Ltd"	09-Apr-08 10:36 AM	

+="CN68703"	"Legal services"	="Australian Securities and Investments Commission"	09-Apr-08	="Legal services"	01-Nov-07	30-Jun-08	70000.00	=""	="Australian Government Solicitor"	09-Apr-08 10:40 AM	

+="CN68705"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	16-Oct-07	30-Jun-08	2208910.20	=""	="DEEWR"	09-Apr-08 10:45 AM	

+="CN68706-A2"	"Forensic Accounting Services"	="Australian Securities and Investments Commission"	09-Apr-08	="Accounting services"	19-Mar-08	31-Dec-09	535920.00	=""	="Axiom Forensics Pty Ltd"	09-Apr-08 10:47 AM	

+="CN68708"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	15-Oct-07	15-Oct-07	11000.00	=""	="DEEWR"	09-Apr-08 10:48 AM	

+="CN68710"	"REPAIR MACK DUMP ARN-36241 W/O-34856/3"	="Department of Defence"	09-Apr-08	="Motor vehicles"	09-Apr-08	29-May-08	12347.35	=""	="MACK VOLVO AUSTRALIA"	09-Apr-08 10:49 AM	

+="CN68711"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	15-Oct-07	15-Oct-07	29768.98	=""	="Workplace Ombudsman"	09-Apr-08 10:51 AM	

+="CN68713"	"Property Rental / Cleaning"	="Workplace Authority"	09-Apr-08	="Lease and rental of property or building"	11-Oct-07	30-Oct-07	414827.11	=""	="DEEWR"	09-Apr-08 10:55 AM	

+="CN68714"	"Office Supplies"	="Workplace Authority"	09-Apr-08	="Office supplies"	11-Oct-07	30-Jun-08	26000.00	=""	="JS McMillan Pty Ltd"	09-Apr-08 10:59 AM	

+="CN68715"	"Conference"	="Workplace Authority"	09-Apr-08	="Conference centres"	10-Oct-07	30-Oct-07	17000.00	=""	="BT Australasia Pty Ltd"	09-Apr-08 11:05 AM	

+="CN68717"	"Rental of Office"	="Federal Magistrates Court"	09-Apr-08	="Lease and rental of property or building"	01-Mar-08	31-Mar-08	41752.74	=""	="Attorney Generals Department - NSW"	09-Apr-08 11:09 AM	

+="CN68658-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	09-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	30000.00	=""	="Mr Christopher Caleo SC"	09-Apr-08 11:15 AM	

+="CN68719"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	09-Apr-08	="Transcribing services"	01-Mar-08	31-Mar-08	16538.46	=""	="Auscript Australasia Pty Ltd"	09-Apr-08 11:15 AM	

+="CN68720"	"Recover Costs Rental, Outgoings, Car Parking - March 2008"	="Federal Magistrates Court"	09-Apr-08	="Commercial or industrial facility rental"	01-Mar-08	31-Mar-08	14982.12	=""	="Charter Hall Limited - Savills"	09-Apr-08 11:20 AM	

+="CN68721"	"Security Monitoring"	="Federal Magistrates Court"	09-Apr-08	="Security surveillance and detection"	01-Mar-08	31-Mar-08	17056.13	=""	="Chubb Protective Services"	09-Apr-08 11:25 AM	

+="CN68723"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	09-Apr-08	="Stationery"	01-Mar-08	31-Mar-08	28635.38	=""	="Corporate Express Australia"	09-Apr-08 11:30 AM	

+="CN68725"	"Various Computer Equipment"	="Federal Magistrates Court"	09-Apr-08	="Computer Equipment and Accessories"	01-Mar-08	31-Mar-08	20460.00	=""	="Dell Australia Pty Ltd"	09-Apr-08 11:34 AM	

+="CN68728"	"Consulting Services for Federal Magistrates Court"	="Federal Magistrates Court"	09-Apr-08	="Organisational structure consultation"	01-Mar-08	31-Mar-08	40759.54	=""	="Des Semple & Associates"	09-Apr-08 11:40 AM	

+="CN68732"	"Family Law Conference and  Accommodation 6-11 April 2008"	="Federal Magistrates Court"	09-Apr-08	="Events management"	01-Mar-08	31-Mar-08	70378.00	=""	="Event Planners Australia Pty Ltd"	09-Apr-08 11:48 AM	

+="CN68734"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	10-Oct-07	30-Jun-08	415882.50	=""	="Australian Industry Group"	09-Apr-08 11:52 AM	

+="CN68735"	" Temp Staff - Federal Magistrates Court "	="Federal Magistrates Court"	09-Apr-08	="Temporary clerical or administrative assistance"	01-Mar-08	31-Mar-08	11432.19	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	09-Apr-08 11:52 AM	

+="CN68740"	" AIRCRAFT SPARES  NSN 1680-66-138-2149, PAD ASSY, QTY 25 "	="Defence Materiel Organisation"	09-Apr-08	="Military transport helicopters"	09-Apr-08	27-Aug-08	13255.00	=""	="W&G MACHINE COMPANY"	09-Apr-08 12:14 PM	

+="CN68736"	"Professional Fees"	="Workplace Authority"	09-Apr-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	30-Jun-08	24101.33	=""	="Australian Government Solicitors (ACT)"	09-Apr-08 12:14 PM	

+="CN68746"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	05-Oct-07	30-Jun-08	23731.43	=""	="Hudson Global Resource (Aust) Pty"	09-Apr-08 01:17 PM	

+="CN68747"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	05-Oct-07	30-Jun-08	30195.00	=""	="DEEWR"	09-Apr-08 01:20 PM	

+="CN68750"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	19-Nov-07	19-Nov-07	84028.00	=""	="National Electrical & Communication"	09-Apr-08 01:25 PM	

+="CN68749-A1"	"Aircraft Spares"	="Defence Materiel Organisation"	09-Apr-08	="Aircraft"	09-Apr-08	10-Jun-09	20984.71	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	09-Apr-08 01:28 PM	

+="CN68751"	"Powdersafe system units x 7"	="Workplace Authority"	09-Apr-08	="Securing and protecting supplies"	21-Jan-08	30-Nov-08	33880.00	=""	="Powdersafe Pty Ltd"	09-Apr-08 01:29 PM	

+="CN68752"	"Provision of Quantum Tapes"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	13491.50	="RFT6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 01:32 PM	

+="CN68753"	"Lease for vehicles"	="Workplace Authority"	09-Apr-08	="Vehicle leasing"	16-Jan-08	30-Jun-08	280000.00	=""	="LeasePlan Australia Ltd"	09-Apr-08 01:35 PM	

+="CN68754"	"Provision of Quantum maintenance Renewal"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	15262.50	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 01:41 PM	

+="CN68756"	"Business Analyst"	="Workplace Authority"	09-Apr-08	="Recruitment services"	25-Jan-08	29-Feb-08	89100.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	09-Apr-08 01:46 PM	

+="CN68758"	"Fitout - Sydney office"	="Workplace Authority"	09-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Jan-08	30-Apr-08	4930000.00	=""	="Interiors Australia Pty Ltd"	09-Apr-08 01:59 PM	

+="CN68759"	"Provision of VM ware Software licences"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	32582.00	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:00 PM	

+="CN68761"	"Third deposit on Accommodation for FM Plenary 4 day conference April 2008."	="Federal Magistrates Court"	09-Apr-08	="Hotels and motels and inns"	01-Mar-08	31-Mar-08	18440.00	=""	="Hyatt Regency - Adelaide"	09-Apr-08 02:06 PM	

+="CN68762"	"Provision of EMC 4gb fibre channel switch port upgrade"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	49610.00	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:08 PM	

+="CN68764-A1"	" Permeation tube and Permeation Ammonia Device    "	="Defence Materiel Organisation"	09-Apr-08	="Permeability testing apparatus"	09-Apr-08	30-Apr-08	21978.00	=""	="BENFIELD MARKETING LTD"	09-Apr-08 02:12 PM	

+="CN68766"	"repairs to s'liner arn-51247 w/o-36828"	="Department of Defence"	09-Apr-08	="Motor vehicles"	09-Apr-08	30-May-08	18073.00	=""	="MC IMPORTS"	09-Apr-08 02:17 PM	

+="CN68693"	"EMS Certification Services"	="Australian Securities and Investments Commission"	09-Apr-08	="Building environmental control systems"	01-Feb-08	31-Jan-11	12000.00	=""	="NCS International"	09-Apr-08 02:21 PM	

+="CN68767"	"Cabling Services Stage 2, Level 12, FMC Melbourne"	="Federal Magistrates Court"	09-Apr-08	="Electrical cable and accessories"	01-Mar-08	31-Mar-08	11778.80	=""	="Intravision Pty Ltd"	09-Apr-08 02:25 PM	

+="CN68768"	"Consulting Services - Family Report"	="Federal Magistrates Court"	09-Apr-08	="Court reporting services"	01-Mar-08	31-Mar-08	10065.00	=""	="Jay Manya"	09-Apr-08 02:29 PM	

+="CN68770"	"Provision of EMC Hardware - Quarterly storage area network growth payment"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	1759066.76	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:31 PM	

+="CN68771"	"36 month Lease on photocopiers"	="Workplace Authority"	09-Apr-08	="Photocopiers"	14-Jan-08	30-Jun-10	22775.16	=""	="Ricoh Australia (ROA)"	09-Apr-08 02:33 PM	

+="CN68773"	"Vehicle Leases"	="Federal Magistrates Court"	09-Apr-08	="Vehicle rental"	01-Mar-08	31-Mar-08	87457.01	=""	="Lease Plan"	09-Apr-08 02:34 PM	

+="CN68772"	"SEALING COMPOUND"	="Defence Materiel Organisation"	09-Apr-08	="Adhesives and sealants"	09-Apr-08	24-Jun-08	35656.43	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	09-Apr-08 02:34 PM	

+="CN68769-A1"	"Aircraft Spares"	="Defence Materiel Organisation"	09-Apr-08	="Aircraft"	09-Apr-08	29-Jan-09	121278.03	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	09-Apr-08 02:34 PM	

+="CN68774"	" Recruitment Services "	="Workplace Authority"	09-Apr-08	="Recruitment services"	14-Jan-08	29-Feb-08	38500.00	=""	="Select Appointments"	09-Apr-08 02:36 PM	

+="CN68775"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	09-Apr-08	="Transcribing services"	01-Mar-08	31-Mar-08	141854.67	=""	="National Transcription Services Pty Ltd"	09-Apr-08 02:38 PM	

+="CN68776"	"Citrix Subscription Advantage Renewal"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	59702.14	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:41 PM	

+="CN68777"	"Consulting fees for Fairness Test training"	="Workplace Authority"	09-Apr-08	="Human resources services"	11-Jan-08	11-Jan-08	65784.60	=""	="Walter and Turnbull Pty Ltd"	09-Apr-08 02:42 PM	

+="CN68778"	"Supply & Intstall 12 Workstations - FMC Brisbane"	="Federal Magistrates Court"	09-Apr-08	="Office furniture"	01-Mar-08	31-Mar-08	27742.00	=""	="Office Furniture Systems Pty Ltd"	09-Apr-08 02:43 PM	

+="CN68781"	"Interpreting Services"	="Federal Magistrates Court"	09-Apr-08	="Interpreters"	01-Mar-08	31-Mar-08	19739.50	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	09-Apr-08 02:49 PM	

+="CN68782"	"Provision of SAN Systems"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	55880.00	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:50 PM	

+="CN68783"	"Consulting Services - Family Report"	="Federal Magistrates Court"	09-Apr-08	="Court reporting services"	01-Mar-08	31-Mar-08	11093.99	=""	="Paris Consultancy Pty Ltd"	09-Apr-08 02:55 PM	

+="CN68784"	"Cable assembly, radio frequency, qty 60 for use with military radios."	="Defence Materiel Organisation"	09-Apr-08	="Electrical wire and cable and harness"	08-Apr-08	28-Aug-08	25872.00	="RFQ-C7132"	="MILSPEC SERVICES PTY LTD"	09-Apr-08 02:57 PM	

+="CN68785"	"Provision of IBM P6 570 series system bundle"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	872228.28	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 02:59 PM	

+="CN68788"	"CleaningServices"	="National Archives of Australia"	09-Apr-08	="Cleaning and janitorial services"	01-Apr-08	17-Feb-10	281806.07	=""	="ALLCLEAN PTY LTD"	09-Apr-08 03:06 PM	

+="CN68789"	"Audit Committee Consultancy"	="National Archives of Australia"	09-Apr-08	="Business and corporate management consultation services"	03-Mar-08	12-Mar-11	11250.00	=""	="Leslie Neilson"	09-Apr-08 03:06 PM	

+="CN68790"	"Contractor services"	="National Archives of Australia"	09-Apr-08	="Temporary personnel services"	03-Mar-08	30-Jun-08	50000.00	=""	="DFP Recruitment Services"	09-Apr-08 03:06 PM	

+="CN68791"	"Access Programming Services"	="National Archives of Australia"	09-Apr-08	="Software"	04-Apr-08	05-Jun-08	28046.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA) PTY"	09-Apr-08 03:06 PM	

+="CN68792"	"Tridion support and maintenance"	="National Archives of Australia"	09-Apr-08	="Software maintenance and support"	05-Mar-08	14-Mar-08	19592.58	=""	="The Reading Room Australia Pty Ltd"	09-Apr-08 03:06 PM	

+="CN68794"	"Supply of Humidity Chamber"	="National Archives of Australia"	09-Apr-08	="Tools and General Machinery"	05-Mar-08	30-Apr-08	37693.50	=""	="Furnace Engineering Pty Ltd"	09-Apr-08 03:06 PM	

+="CN68795"	"Recruitment advertising"	="National Archives of Australia"	09-Apr-08	="Print advertising"	07-Mar-08	14-Mar-08	10984.16	=""	="HMA Blaze Pty Ltd"	09-Apr-08 03:07 PM	

+="CN68796"	"Fujitsu Maintenance"	="National Archives of Australia"	09-Apr-08	="Maintenance or support fees"	07-Mar-08	14-Mar-08	13977.98	=""	="ASI Solutions - Canberra"	09-Apr-08 03:07 PM	

+="CN68797"	"Delivery of Design and Project"	="National Archives of Australia"	09-Apr-08	="Exhibitions"	11-Mar-08	17-Jul-08	33000.00	=""	="IONA WALSH ART"	09-Apr-08 03:07 PM	

+="CN68798"	"Printing"	="National Archives of Australia"	09-Apr-08	="Publication printing"	11-Mar-08	21-Mar-08	19531.47	=""	="NATIONAL CAPITAL PRINTING"	09-Apr-08 03:07 PM	

+="CN68787"	"Provision of IBM P Series system bundle"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	165105.05	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 03:07 PM	

+="CN68799"	"Supply of magnetic film sound stock"	="National Archives of Australia"	09-Apr-08	="Photographic filmmaking supplies"	17-Mar-08	28-Mar-08	38211.25	=""	="CassetteandTape Supplies"	09-Apr-08 03:07 PM	

+="CN68800"	"Conduct staff opinion survey"	="National Archives of Australia"	09-Apr-08	="Business and corporate management consultation services"	17-Mar-08	30-Jun-08	28135.00	=""	="ORIMA RESEARCH"	09-Apr-08 03:07 PM	

+="CN68801"	"Supply of archival boxes"	="National Archives of Australia"	09-Apr-08	="Paper materials"	17-Mar-08	30-Jun-08	66550.00	=""	="Archival Survival Pty Ltd"	09-Apr-08 03:08 PM	

+="CN68802"	"Parkes Building Works"	="National Archives of Australia"	09-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-Jun-08	27964.42	=""	="Multiplex Facilities Management"	09-Apr-08 03:08 PM	

+="CN68803"	"Transport of touring exhibition"	="National Archives of Australia"	09-Apr-08	="Material handling services"	26-Feb-08	29-Feb-08	21904.47	=""	="Agility FairsandEvents Logistics Pty Ltd"	09-Apr-08 03:08 PM	

+="CN68804"	"Supply and lay new carpet to WA"	="National Archives of Australia"	09-Apr-08	="Flooring"	27-Mar-08	30-Jun-08	19131.20	=""	="Park Carpet Company"	09-Apr-08 03:08 PM	

+="CN68805"	"Provision of business analysis"	="National Archives of Australia"	09-Apr-08	="Business and corporate management consultation services"	27-Mar-08	30-Jun-08	67760.00	=""	="Enicash Pty Ltd"	09-Apr-08 03:08 PM	

+="CN68806"	"Fujitsu Scanner"	="National Archives of Australia"	09-Apr-08	="Computer Equipment and Accessories"	27-Mar-08	31-Mar-08	14858.97	=""	="ASI Solutions - Canberra"	09-Apr-08 03:08 PM	

+="CN68807"	"Scanning of Transparencies"	="National Archives of Australia"	09-Apr-08	="Temporary personnel services"	28-Mar-04	30-Jun-08	17000.00	=""	="TECHNOLOGICAL MICRO DATA (AUST)"	09-Apr-08 03:08 PM	

+="CN68808"	"Technical Documenter"	="National Archives of Australia"	09-Apr-08	="Temporary personnel services"	28-Mar-08	30-Jun-08	44000.00	=""	="Ross Human Directions Ltd"	09-Apr-08 03:09 PM	

+="CN68809"	"Chester Hill Security"	="National Archives of Australia"	09-Apr-08	="Security systems services"	31-Mar-08	21-Feb-10	130173.98	=""	="CASTILLE SECURITY"	09-Apr-08 03:09 PM	

+="CN68810"	"Technical Documenter"	="National Archives of Australia"	09-Apr-08	="Temporary personnel services"	31-Mar-08	30-Jun-08	44000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA) PTY"	09-Apr-08 03:09 PM	

+="CN68812"	"Development of commercial release of FBI Nuix software."	="Australian Taxation Office"	09-Apr-08	="Business function specific software"	09-Apr-08	08-Apr-09	13200.00	=""	="Nuix PTY LTD"	09-Apr-08 03:10 PM	

+="CN68813"	"TAPE"	="Defence Materiel Organisation"	09-Apr-08	="Office supplies"	09-Apr-08	30-Jun-08	31356.87	=""	="INTERTURBINE ADVANCED COMPOSITES"	09-Apr-08 03:12 PM	

+="CN68811"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	11-Jan-08	11-Jan-08	81442.86	=""	="Select Appointments"	09-Apr-08 03:13 PM	

+="CN68733"	"Research and Development - Capital Markets Taskforcee"	="Australian Securities and Investments Commission"	09-Apr-08	="Business and corporate management consultation services"	25-Mar-08	24-Feb-09	85800.00	=""	="Allen James Turton"	09-Apr-08 03:13 PM	

+="CN68814"	"Provision of EMC Switch and brocade switch bundles"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	639007.60	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 03:14 PM	

+="CN68815"	"Airfares "	="Federal Magistrates Court"	09-Apr-08	="Commercial aeroplane travel"	01-Mar-08	31-Mar-08	97264.60	=""	="Qantas - QAEBTA"	09-Apr-08 03:16 PM	

+="CN68816"	"Property Fitout - Saraton, Canberra"	="Workplace Authority"	09-Apr-08	="Property management"	10-Jan-08	01-Feb-08	191000.00	=""	="Interiors Australia Pty Ltd"	09-Apr-08 03:17 PM	

+="CN68817"	"Computer equipment"	="Workplace Authority"	09-Apr-08	="Computers"	08-Jan-08	30-Jun-08	44616.00	=""	="Dataflex Pty Ltd"	09-Apr-08 03:23 PM	

+="CN68819-A1"	"Symantec Software maintenance renewal 1/7/08 to 31/6/09"	="Australian Federal Police"	09-Apr-08	="Computer servers"	01-Jul-08	30-Jun-09	205687.36	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 03:26 PM	

+="CN68820"	"Workstation assessment"	="Workplace Authority"	09-Apr-08	="Occupational health or safety services"	08-Jan-08	30-Jun-08	12090.00	=""	="SRC Solutions Pty Ltd"	09-Apr-08 03:26 PM	

+="CN68688-A1"	"Financial Markets and Investments Program"	="Australian Securities and Investments Commission"	09-Apr-08	="Vocational training"	01-Feb-08	31-Jan-09	125100.00	=""	="Financial Education Professionals Pty Ltd"	09-Apr-08 03:26 PM	

+="CN68821-A1"	"Scale Weighing 20000lb Max Weight Digital Readout LCD display"	="Defence Materiel Organisation"	09-Apr-08	="Weight measuring instruments"	09-Apr-08	09-Jun-08	28050.00	=""	="Salter Weigh-Tronix"	09-Apr-08 03:28 PM	

+="CN68823"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	24-Dec-07	31-Dec-07	54323.70	=""	="COSBOA"	09-Apr-08 03:28 PM	

+="CN68825"	"Supply of EMC Server switches and upgrade kits"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	235252.74	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 03:36 PM	

+="CN68826"	"Establishment of Certificate of Compliance tool"	="Workplace Authority"	09-Apr-08	="Business and corporate management consultation services"	25-Sep-07	07-Jan-09	11000.00	=""	="KPMG (CANBERRA)"	09-Apr-08 03:39 PM	

+="CN68828"	"Service Fee and Recoup cost of 3 Motorola portable radios and accessories for FMC"	="Federal Magistrates Court"	09-Apr-08	="Sheriffs services"	01-Mar-08	31-Mar-08	12093.68	=""	="Sheriff's Office - NSW"	09-Apr-08 03:40 PM	

+="CN68829"	"Supply of EMC SAN Storage Modules"	="Australian Federal Police"	09-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	213571.78	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	09-Apr-08 03:43 PM	

+="CN68830"	"Employer Advisor Programme"	="Workplace Authority"	09-Apr-08	="Work related organisations"	21-Dec-07	21-Dec-07	168172.62	=""	="National Farmers Federation Ltd"	09-Apr-08 03:43 PM	

+="CN68831"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	09-Apr-08	="Transcribing services"	01-Mar-08	31-Mar-08	64877.71	=""	="Spark & Cannon Australasia Pty Ltd"	09-Apr-08 03:44 PM	

+="CN68832"	"Legal advice"	="Workplace Authority"	09-Apr-08	="Legal services"	25-Sep-07	30-Jun-08	10000.00	=""	="Australian Government Solicitors (ACT)"	09-Apr-08 03:47 PM	

+="CN68678"	" Consultancy services - market research into reverse equity products for the ASIC Consumber Advisory Panel "	="Australian Securities and Investments Commission"	09-Apr-08	="Market research"	21-Feb-08	21-Aug-08	48334.00	=""	="Chant Link & Associates"	09-Apr-08 03:49 PM	

+="CN68834"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	09-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Mar-08	31-Mar-08	21673.56	=""	="Telstra Corporation Limited"	09-Apr-08 03:50 PM	

+="CN68833"	" Refrigerator/Freezer, Mechanical Food. 40L "	="Defence Materiel Organisation"	09-Apr-08	="Industrial refrigeration"	09-Apr-08	30-Jun-08	224870.80	="G8108"	="Norcoast Refrigeration Company"	09-Apr-08 03:50 PM	

+="CN68737"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	09-Apr-08	="Computer services"	03-Mar-08	18-Apr-08	23595.00	=""	="VC Tradeconsult Pty Ltd"	09-Apr-08 03:53 PM	

+="CN68837"	"Freight Forwarding Service"	="Federal Magistrates Court"	09-Apr-08	="Freight forwarders services"	01-Mar-08	31-Mar-08	10964.49	=""	="Toll IPEC Pty Ltd"	09-Apr-08 03:55 PM	

+="CN68838"	"Internet Expenses"	="Federal Magistrates Court"	09-Apr-08	="Internet or intranet server application development services"	01-Mar-08	31-Mar-08	10418.63	=""	="Web Enter"	09-Apr-08 04:00 PM	

+="CN68836"	"Recruitment Services - Fairness Test, Melbourne"	="Workplace Authority"	09-Apr-08	="Recruitment services"	21-Dec-08	21-Dec-08	306017.80	=""	="Select Appointments"	09-Apr-08 04:05 PM	

+="CN68729"	" Temporary Staff "	="Australian Securities and Investments Commission"	09-Apr-08	="Temporary personnel services"	18-Feb-08	02-May-08	60000.00	=""	="Julia Ross"	09-Apr-08 04:06 PM	

+="CN68839-A8"	" 06/1701 - ICT Hardware "	="Australian Customs and Border Protection Service"	09-Apr-08	="Computer Equipment and Accessories"	13-Mar-07	30-Jun-14	9058923.96	=""	="Unisys Australia Pty Ltd"	09-Apr-08 04:09 PM	

+="CN68712"	"Forensic IT services"	="Australian Securities and Investments Commission"	09-Apr-08	="Computer services"	01-Apr-08	30-Apr-08	15000.00	=""	="KPMG"	09-Apr-08 04:16 PM	

+="CN68697"	"Forensic IT Services"	="Australian Securities and Investments Commission"	09-Apr-08	="Computer services"	01-Nov-07	30-Nov-07	60975.00	=""	="Ernst & Young"	09-Apr-08 04:17 PM	

+="CN68841"	"Recruitment Services"	="Workplace Authority"	09-Apr-08	="Recruitment services"	13-Mar-08	30-Jun-08	53460.00	=""	="Compas Pty Ltd"	09-Apr-08 04:24 PM	

+="CN68843-A2"	"08/2744 - ICT Hardware (Linked to 06/1701)"	="Australian Customs and Border Protection Service"	09-Apr-08	="Computer Equipment and Accessories"	01-Feb-08	30-Jun-11	810165.00	=""	="Unisys Australia Pty Ltd"	09-Apr-08 04:27 PM	

+="CN68844-A1"	"Video Production Services"	="Australian Taxation Office"	09-Apr-08	="Video production services"	01-Apr-08	24-Jan-09	85522.69	=""	="Great Southern Communication (Australia) Pty"	09-Apr-08 04:37 PM	

+="CN68475-A1"	" Contract for the Provision of Services number CPD2008/3856 and Deed of Variation "	="Australian Securities and Investments Commission"	09-Apr-08	="Research programs"	14-Mar-08	14-Jun-08	128899.29	=""	="Eureka Strategic Research Pty Ltd t/as Ipsos-Eureka Social Research Institute"	09-Apr-08 04:41 PM	

+="CN68845"	"Tool Kit Hygiene Dutymans"	="Defence Materiel Organisation"	10-Apr-08	="Tool kits"	09-Apr-08	09-May-08	11550.00	=""	="Kentool"	10-Apr-08 07:56 AM	

+="CN68847"	"Labour hire - Accounting and Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Accounting and auditing"	10-Mar-08	30-May-08	20218.50	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	10-Apr-08 08:45 AM	

+="CN68848"	"Labour hire - Accounting and Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	03-Sep-07	21-Dec-07	26958.00	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	10-Apr-08 08:57 AM	

+="CN68849-A1"	"Labour hire - Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	02-Oct-07	22-Feb-08	30913.57	=""	="SMALL AND ASSOCIATES PTY LTD"	10-Apr-08 08:57 AM	

+="CN68850"	"Services to upgrade DFAT's HRMIS"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	04-Jul-07	30-Jun-08	627550.00	=""	="OAKTON AA SERVICES PTY LTD"	10-Apr-08 08:57 AM	

+="CN68851"	"REPAIRS TO LET ARN-203247 W/O-35954 WALLY"	="Department of Defence"	10-Apr-08	="Motor vehicles"	01-Apr-08	30-Jun-08	27971.90	=""	="TWINE MACHINERY PTY LTD"	10-Apr-08 08:59 AM	

+="CN68852"	"REPAIRS TO RURAL FIRE TRUCK ARN-31715 W/O-36131 WALLY"	="Department of Defence"	10-Apr-08	="Motor vehicles"	01-Apr-08	30-Jun-08	12667.24	=""	="RGM MAINTENANCE"	10-Apr-08 09:02 AM	

+="CN68853"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	12-Mar-08	02-May-08	65614.13	=""	="Dixon Appointments"	10-Apr-08 09:21 AM	

+="CN68854"	"Legal Services"	="Workplace Authority"	10-Apr-08	="Legal services"	11-Mar-08	30-Jun-08	25465.77	=""	="Australian Government Solicitors (ACT)"	10-Apr-08 09:35 AM	

+="CN68855-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	150000.00	=""	="Mr Norman J. O'Bryan"	10-Apr-08 09:38 AM	

+="CN68856"	"Employer Advisory Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	07-Mar-08	07-Mar-08	29577.00	=""	="NT Working Women's Centre"	10-Apr-08 09:40 AM	

+="CN68858"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	15000.00	=""	="Mr Norman J. O'Bryan"	10-Apr-08 09:43 AM	

+="CN68859"	"Employer Advisory Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	07-Mar-08	30-Jun-08	75914.30	=""	="NT Working Women's Centre"	10-Apr-08 09:45 AM	

+="CN68862-A3"	" Copyright licence fee covering copying of radio and television broadcasts.  The agreement was negotiated by Attorney-General's Department on behalf of the Commonwealth. "	="Australian Taxation Office"	10-Apr-08	="Components for information technology or broadcasting or telecommunications"	05-Dec-07	31-Dec-10	18880.18	=""	="Audio-Visual Copyright Society Limited t/a Screenrights"	10-Apr-08 09:54 AM	

+="CN68861"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	10-Apr-08	="Temporary personnel services"	01-Feb-08	30-May-08	21065.00	=""	="Boston Kennedy"	10-Apr-08 09:56 AM	

+="CN68863"	"Financial Services"	="Workplace Authority"	10-Apr-08	="Re financing services"	05-Mar-08	30-Jun-08	11000.00	=""	="KPMG (CANBERRA)"	10-Apr-08 10:01 AM	

+="CN68748"	"Purchase of HP EVA Hard Disks"	="Australian Securities and Investments Commission"	10-Apr-08	="Notebook computers"	01-Oct-07	01-Oct-07	53286.29	=""	="Commander Communications Limited"	10-Apr-08 10:11 AM	

+="CN68743"	"Provision of 4 x HP NC6400 notebooks and ASIC standard docking station bundles"	="Australian Securities and Investments Commission"	10-Apr-08	="Notebook computers"	01-Oct-07	01-Oct-07	12618.36	=""	="Commander Integrated Networks Pty Ltd"	10-Apr-08 10:13 AM	

+="CN68683"	"Indoor Plants"	="Australian Securities and Investments Commission"	10-Apr-08	="Floral plants"	01-Mar-08	28-Feb-10	11880.00	=""	="Helbray Pty Ltd trading as Custom Tropical Plant Hire"	10-Apr-08 10:17 AM	

+="CN68865"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	10000.00	=""	="Mr Charles Shaw"	10-Apr-08 10:24 AM	

+="CN68464"	"Licence and Support Contract - Commercial off-the-shelf Software"	="Australian Securities and Investments Commission"	10-Apr-08	="License management software"	17-Nov-07	17-Nov-10	2185151.10	=""	="Objective Corporation Limited"	10-Apr-08 10:35 AM	

+="CN68866-A1"	"Risk Management Advisor to the ICT Sourcing Program."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	30-Jun-08	35475.00	="07.102"	="Oakton Services Pty Ltd"	10-Apr-08 10:35 AM	

+="CN68867-A1"	"Provide support to EUC bundle strategy."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	28-Mar-08	219346.60	="07.102"	="The Boston Consulting Group Pty Ltd"	10-Apr-08 10:56 AM	

+="CN68870"	"Development of Security Documentation"	="National Capital Authority"	10-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Apr-08	17820.00	=""	="Oakton AA Services Pty Ltd"	10-Apr-08 11:07 AM	

+="CN68872-A1"	"Strategic Advisor to ICT Sourcing Program."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	436818.80	="07.102"	="The Boston Consulting Group Pty Ltd"	10-Apr-08 11:18 AM	

+="CN68873"	"  Provision of Training in   Diploma of Government (Investigations)    Contract Value is GST exempt  "	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	11-Apr-08	16680.00	=""	="KPS and Associates Pty Ltd"	10-Apr-08 11:19 AM	

+="CN66301-A1"	"Project Solution Design Services."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	26-Nov-07	31-Jan-08	159661.00	=""	="IBM Australia Ltd"	10-Apr-08 11:20 AM	

+="CN66302-A1"	"eBusiness Migration Development."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	03-Dec-07	15-Feb-08	423771.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:22 AM	

+="CN68280-A1"	"fitout contractor building works for Taree Centrelink office refurbishment."	="Centrelink"	10-Apr-08	="Building construction management"	18-Apr-08	30-Jun-08	278294.72	=""	="David J Smith Pty Ltd"	10-Apr-08 11:23 AM	

+="CN66303"	"Proof of concept - eBusiness Migration."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	01-Oct-07	02-Nov-07	148968.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:25 AM	

+="CN66479"	"Project Management services."	="Australian Securities and Investments Commission"	10-Apr-08	="Project management"	22-Sep-07	31-Aug-08	139962.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:28 AM	

+="CN68874"	" REPAIR DIVE EQUIPMENT "	="Department of Defence"	10-Apr-08	="Diving instruments or accessories"	01-Apr-08	30-May-08	16998.48	=""	="QUEENSLAND BREATHING SYSTEMS"	10-Apr-08 11:31 AM	

+="CN67037"	"Provision of Business Architect Services."	="Australian Securities and Investments Commission"	10-Apr-08	="Project management"	03-Sep-07	31-Aug-08	141075.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:39 AM	

+="CN68875"	"MANUFACTURE LCM8 WELLDECK TARPS"	="Department of Defence"	10-Apr-08	="Commercial marine craft"	31-Mar-08	30-Apr-08	10175.00	=""	="BEEHIVE VINYL PRODUCTS PTY LTD"	10-Apr-08 11:40 AM	

+="CN67032"	"Development of an Enterprise Data Model."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	22-Oct-07	05-Feb-08	209715.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:41 AM	

+="CN68468"	"Contract for the Provision of Services number ITS2006/21665"	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	15-Nov-07	15-Nov-09	1032054.38	=""	="Objective Corporation Limited"	10-Apr-08 11:44 AM	

+="CN68877"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	10010.00	=""	="SKF Bearing Supplies"	10-Apr-08 11:51 AM	

+="CN68878"	"qty 500 adapters, antenna to antenna base; qty 100 instructiob plates, qty 500 instruction plates; spares for military communications equipment"	="Defence Materiel Organisation"	10-Apr-08	="Communications Devices and Accessories"	09-Apr-08	23-Jul-08	12936.00	="RFQ-C76122"	="BAE Systems Australia Ltd"	10-Apr-08 11:57 AM	

+="CN68879"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	45247.98	=""	="LAND ROVER AUSTRALIA"	10-Apr-08 11:58 AM	

+="CN68880"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	42224.11	=""	="LAND ROVER AUSTRALIA"	10-Apr-08 12:05 PM	

+="CN68881-A1"	"Consultancy Services - Investigation"	="Workplace Authority"	10-Apr-08	="Private investigation services"	04-Mar-08	04-Mar-08	18064.50	=""	="Quality Management Solutions"	10-Apr-08 12:06 PM	

+="CN68882"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	18480.00	=""	="Drawline Fuel PTY LTD"	10-Apr-08 12:12 PM	

+="CN68884-A1"	"Wave 4 of ATO Professionalism Survey. Related contracts (GAPS ID) 1620332 (Wave 1), 1672428 (Wave 2), CN42078 (Wave 3)"	="Australian Taxation Office"	10-Apr-08	="Market research"	16-Jan-08	31-Aug-09	416993.00	=""	="DBM Consultants Pty Ltd"	10-Apr-08 12:16 PM	

+="CN68727"	"Expert opinion - financial adviser"	="Australian Securities and Investments Commission"	10-Apr-08	="Accounting services"	17-Oct-07	30-Jun-08	45000.00	=""	="Hugo Graves"	10-Apr-08 12:39 PM	

+="CN68885"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	13273.39	=""	="Rover Australia"	10-Apr-08 12:49 PM	

+="CN68888"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	39004.78	=""	="LANDROVER"	10-Apr-08 12:58 PM	

+="CN68887"	" BLASER SNIPER RIFLES "	="Defence Materiel Organisation"	10-Apr-08	="Military rifles"	08-Aug-07	01-Dec-08	161716.66	=""	="XTEK"	10-Apr-08 12:58 PM	

+="CN68889"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	15628.89	=""	="Rover Australia"	10-Apr-08 01:08 PM	

+="CN68890"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	21538.76	=""	="Rover Australia"	10-Apr-08 01:13 PM	

+="CN68891"	"Fleet Management and Vehicle Leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Apr-08	="Vehicle leasing"	08-Apr-08	07-Apr-10	39532.15	=""	="LeasePlan"	10-Apr-08 01:13 PM	

+="CN68892"	"Transport official visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	21-Jan-08	23-Apr-08	10800.00	=""	="COMCAR"	10-Apr-08 01:32 PM	

+="CN68893"	"PO 23258 Additional Funds"	="Geoscience Australia"	10-Apr-08	="Business and corporate management consultation services"	04-Apr-08	30-Jun-08	14850.00	=""	="Minter Ellison Lawyers"	10-Apr-08 01:44 PM	

+="CN68894"	"FMIS Database and Application Support for period February 2008 to June 2008"	="Geoscience Australia"	10-Apr-08	="Computer services"	03-Mar-08	19-Jan-10	165000.00	=""	="Red Rock Consulting"	10-Apr-08 01:44 PM	

+="CN68896"	"Invoice no. GDA-08-035 Remastering project - RP00250 Browse Basin consisting of 359x21 track tapes & 8x9 track tape"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	04-Mar-08	30-Jun-08	20486.17	=""	="CGGVeritas (Guardian Data Seismic)"	10-Apr-08 01:44 PM	

+="CN68897"	"Training - Executive Capability Program & Practice of Leadership Program"	="Geoscience Australia"	10-Apr-08	="Education and Training Services"	05-Mar-08	30-Jun-08	41400.03	=""	="The Leadership Consortium Inc"	10-Apr-08 01:45 PM	

+="CN68898"	"Contract services - to 30 Jun 08"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	05-Mar-08	30-Jun-08	101200.00	=""	="Frontier Group Australia Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68899"	"G2304  GeoSciMl,  Provision Contract Staff to 29 August 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	05-Mar-08	29-Aug-08	121000.00	=""	="RPV Consultants Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68900"	"I-Expense Oracle Licences and  Support"	="Geoscience Australia"	10-Apr-08	="Software"	07-Mar-08	19-Mar-08	19791.00	=""	="Red Rock Consulting"	10-Apr-08 01:45 PM	

+="CN68901"	"RSA SecureID Authenticator SID700"	="Geoscience Australia"	10-Apr-08	="Software"	07-Mar-08	19-Mar-08	17044.06	=""	="Loop Technology Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68902"	"Light reflectors for GA light fitting"	="Geoscience Australia"	10-Apr-08	="Real estate management services"	07-Mar-08	30-Jun-08	22798.60	=""	="Skilled Group Limited"	10-Apr-08 01:45 PM	

+="CN68903"	"Reference Data Sets for Tsunami Shoaling"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	11-Mar-08	31-Mar-08	16555.00	=""	="Coastal Environmental Consultants Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68904"	"Lease of Ricoh 2500 Multi Function Device"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	11-Mar-08	21-Mar-08	10890.00	=""	="Ricoh Australia Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68905"	"Refurbishment of the GA Sales Centre as per work order EB113052"	="Geoscience Australia"	10-Apr-08	="General building construction"	12-Mar-08	30-Jun-08	39050.00	=""	="Skilled Group Limited"	10-Apr-08 01:46 PM	

+="CN68906"	"100 x Western Digital 1TB Essentials Hard Drives"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	17-Mar-08	27-Mar-08	61600.00	=""	="Ethan Group Canberra Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68895"	" Development Approval Assistance "	="National Capital Authority"	10-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	25-Apr-08	15000.00	=""	="4th Dimension Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68907"	"Short Term Personnel hire of a ICT Analyst for the GEMD Information Management project - 11 February 2008 to 30 June 2008."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	80300.00	=""	="MPM Group Pty Ltd T/as Nova IT"	10-Apr-08 01:46 PM	

+="CN68908"	"Java Developer contract"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	55000.00	=""	="AUREC Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68909"	"Business Analyst for the Corporate IM SPOT initiative 2007/8"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	25058.00	=""	="Verossity Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68910"	"G1155 Provision for Multifunction device lease and copy costs for 28 machines,  for quarter ending 31/3/08"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	13-Mar-08	31-Mar-08	38500.00	=""	="Ricoh Australia Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68911"	"Contract services  - Wirelog Work for Northern Perth Basin - CMC: G2215"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Apr-08	16500.00	=""	="Cohesion Geodata Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68912"	"3 sets of freewave radios"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	13-Mar-08	30-Jun-08	10653.06	=""	="Control Synergy Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68913"	"ODPS Software licence and Maintenance Services for the period 1 February 2008 to 31 January 2009."	="Geoscience Australia"	10-Apr-08	="Software"	13-Mar-08	30-Jun-08	120000.00	=""	="Macdonald Dettwiler and Associates Ltd MDA"	10-Apr-08 01:47 PM	

+="CN68914"	"100 x Western Digital 1TB External Hard Drives"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	14-Mar-08	28-Mar-08	29999.20	=""	="Ethan Group Canberra Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68915"	"Consultancy payments and travel expenses associated with the RVO Twinning Program."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	14-Mar-08	30-Jun-08	43500.00	=""	="Wally Johnson Consultancies"	10-Apr-08 01:47 PM	

+="CN68916"	"Westmoreland - Normanton Gravity Survey (inclusive of full stand-by) {Ref: 2007/3777]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	674150.84	=""	="Integrated Mapping Technologies Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68917"	"Byro Airborne Magnetic and Radiometric Survey (inclusive of full stand-by) [Ref 2007/4542]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	705857.33	=""	="GPX Aeroscience Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68918"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by) [Ref: 2007/3575]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	338238.23	=""	="Thomson Aviation Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68919"	"Bass Strait Airborne Magnetic Survey (inclusive of full stand-by) [Ref: 2007/3573]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	426926.50	=""	="Thomson Aviation Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68920"	"2008 Darling Rankins Springs Seismic Survey"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	935000.00	=""	="Terrex Seismic"	10-Apr-08 01:48 PM	

+="CN68921"	"4 x Dell PowerEdge Rack Mount servers, 42u Deeper rack and Remote Console Switch"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	18-Mar-08	01-Apr-08	53650.12	=""	="Dell Australia Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68922"	"G2335  Provision for Business Analyst N W 18 March to 30 June 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	71500.00	=""	="Verossity Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68923"	"Greenhouse Gas Monitoring Advice - Contract Number G2317"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	40000.00	=""	="Cansyd Australia Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68924"	"Invoice no. PER-07/08-045 Transcription project - RP00793 - Transcription of WA-276, 277 & 278 (Oryx) Marine Seismic 1998 (Bonaparte 98 MSS) consisting of 182x3590 cartridges."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	17523.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68925"	"Invoice: PER-07/08-049 Transcription Project RP00913 - ACME 3D Marine Seismic Survey consisting of 193x3590 cartridges"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	18529.50	="2006-3933"	="Phoenix Data Services Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68927"	"Oracle maintenance renewal"	="Geoscience Australia"	10-Apr-08	="Software"	25-Mar-08	02-Apr-08	43358.89	=""	="Oracle Corporation"	10-Apr-08 01:49 PM	

+="CN68928"	"ERDAS Imagine Maintenance Renewal"	="Geoscience Australia"	10-Apr-08	="Software"	25-Mar-08	02-Apr-08	23050.50	=""	="Leica Geosystems Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68929"	"Geospatial Analyst"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	55000.00	=""	="Keenyear Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68930"	"Geospatial Analyst - January to June 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	55000.00	=""	="Keenyear Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68931"	"Invoice no. 23168 Transcription projects RP00854 - Moon 2D Marine Seismic Survey, RP00907 GDW99 Marine Seismic Survey."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	47800.21	="2006/3933"	="DataCom IT"	10-Apr-08 01:50 PM	

+="CN68932"	"26 x ID-TIMS U-Pb zircon analyses"	="Geoscience Australia"	10-Apr-08	="Professional engineering services"	26-Mar-08	31-Mar-08	12456.08	=""	="The University of British Columbia"	10-Apr-08 01:50 PM	

+="CN68933"	"Annual subscription to Auscope Ltd"	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	30-Jun-08	41250.00	=""	="AuScope"	10-Apr-08 01:50 PM	

+="CN68934"	"Works at Norfolk Island"	="Geoscience Australia"	10-Apr-08	="General building construction"	27-Mar-08	30-Apr-08	52087.00	=""	="Norfolk Island Block Factory"	10-Apr-08 01:50 PM	

+="CN68935"	"Wind Damage Costing Module Refinement and Supplementation"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	27-Mar-08	30-Apr-08	14014.00	=""	="Turner & Townsend Pty Ltd"	10-Apr-08 01:50 PM	

+="CN68936"	"Uranium Group Contribution - Australia's International Uranium Conference 2008"	="Geoscience Australia"	10-Apr-08	="Meeting facilities"	27-Mar-08	30-Apr-08	16500.00	=""	="AusIMM"	10-Apr-08 01:50 PM	

+="CN68937"	"Satellite data ingest board set, as per quote 2080110, TRIM ref 2008/426 & D2007-168060."	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Jun-08	17446.00	=""	="Scitech Pty Ltd"	10-Apr-08 01:50 PM	

+="CN68938"	"4 x MSD replacement drives including installation"	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	09-Apr-08	38205.00	=""	="MOOG Australia Pty Ltd"	10-Apr-08 01:51 PM	

+="CN68939"	"6 Leica GNSS Receivers with AT504 Choke-ring Antennas plus maintenance"	="Geoscience Australia"	10-Apr-08	="Computer services"	27-Mar-08	30-Jun-08	145590.01	="2007/3419"	="CR Kennedy & Company Pty Ltd"	10-Apr-08 01:51 PM	

+="CN68940"	"SQL, Spatial Fund, PLSF and 10gNFA training as per email quote 27 Mar 2008"	="Geoscience Australia"	10-Apr-08	="Education and Training Services"	27-Mar-08	30-Jun-08	34298.55	=""	="Atlas Business Services A/T/F ABS Trust"	10-Apr-08 01:51 PM	

+="CN68941"	"Microsoft Exchange and Windows Server Software"	="Geoscience Australia"	10-Apr-08	="Software"	27-Mar-08	10-Apr-08	35397.98	=""	="City Software Pty Ltd  (CSW)"	10-Apr-08 01:51 PM	

+="CN68942"	"Bureau of Meteorology WAM Wave Data"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	28-Mar-08	30-Jun-08	19800.00	=""	="Bureau of Meteorology"	10-Apr-08 01:51 PM	

+="CN68943"	"RADARSAT Satellite data."	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	28-Mar-08	30-Jun-08	15000.00	=""	="Macdonald Dettwiler and Associates Ltd MDA"	10-Apr-08 01:51 PM	

+="CN68944"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by) [Ref 2007/3575]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	31-Mar-08	30-Jun-08	236766.76	=""	="Fugro Airborne Surveys"	10-Apr-08 01:51 PM	

+="CN68926"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	06-Feb-08	11-Feb-08	16500.00	=""	="COMCAR"	10-Apr-08 01:52 PM	

+="CN68945"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	17-Feb-08	23-Feb-08	13800.00	=""	="COMCAR"	10-Apr-08 01:55 PM	

+="CN68883"	" Recruitment Services "	="Workplace Authority"	10-Apr-08	="Recruitment services"	27-Feb-08	27-Feb-08	24163.32	=""	="HMA Blaze Pty Ltd"	10-Apr-08 01:56 PM	

+="CN68946"	"Portfolio Property Project Management Services"	="Workplace Authority"	10-Apr-08	="Property management services"	25-Feb-08	30-Jun-08	132600.00	=""	="AAP Corporation"	10-Apr-08 01:59 PM	

+="CN68947"	"Hospitality"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Banquet and catering services"	22-Feb-08	22-Feb-08	24600.00	=""	="HYATT Hotel Canberra"	10-Apr-08 02:00 PM	

+="CN68948-A1"	"Production of Video clips"	="Australian Federal Police"	10-Apr-08	="Promotional material or annual reports"	04-Apr-08	20-Jun-08	18551.50	=""	="Screencraft Media Pty Ltd"	10-Apr-08 02:02 PM	

+="CN68949"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Grounds maintenance services"	25-Feb-08	26-Mar-08	11683.68	=""	="Trim Lawns & Complete Garden Services"	10-Apr-08 02:06 PM	

+="CN68950-A2"	"Professional Services"	="Workplace Authority"	10-Apr-08	="Business and corporate management consultation services"	07-Feb-08	07-Feb-08	15781.70	=""	="HBA Consulting"	10-Apr-08 02:09 PM	

+="CN68953"	"Infoor Air Quality Study"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	25-Jan-08	31-Mar-08	64983.00	="0708-533"	="CSIRO Marine Research"	10-Apr-08 02:15 PM	

+="CN68955"	"Relocation of staff"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	15-Feb-08	15106.25	="0708-882"	="Chris Bell & Bell Removals"	10-Apr-08 02:15 PM	

+="CN68956"	"Indigenous Australians' views on biodiversity"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	41123.50	="0708-532"	="Smyth and Bahrdt Consultants"	10-Apr-08 02:15 PM	

+="CN68957"	"Installation and subscription for pay tv services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jan-08	30-Jun-10	24627.15	="0708-876"	="FOXTEL Cable TV P/L"	10-Apr-08 02:15 PM	

+="CN68958"	"Advertising material"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	24-Jan-08	28-Feb-08	11584.07	="0708-893"	="National Mailing & Marketing P/L"	10-Apr-08 02:15 PM	

+="CN68959"	"Legal Services fees - National Lifestyle Villages"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Legal services"	24-Jan-08	29-Feb-08	14736.15	=""	="Australian Government Solicitor"	10-Apr-08 02:16 PM	

+="CN68960"	"Remote Sensing Business Analysis"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	01-Feb-08	02-Jun-08	27500.00	="0708-846"	="Spatial Strategies Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68954"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Grounds maintenance services"	01-Feb-08	29-Feb-08	10042.40	=""	="Ian Spencer - VIP Homes Services"	10-Apr-08 02:16 PM	

+="CN68961"	"Software Licence & Support - Program Administrator"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	22-Jan-08	30-Oct-08	29094.19	="0708-914"	="Oracle Corp Aust P/L"	10-Apr-08 02:16 PM	

+="CN68962"	"Legal Advice on Statutory Functions of the Murray Darling Basin and Murray Darling Basin Authority"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	22-Jan-08	31-Mar-08	45188.00	="0708-638"	="Megan Dyson"	10-Apr-08 02:16 PM	

+="CN68963"	"Advertising Services for the Call for Public Submissions"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	22-Jan-08	30-Jun-08	12834.01	="0708-923"	="HMA Blaze Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68964"	"Review of Current Work and Institutional Practice of Murray Darling Basin Commission"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	11-Jan-08	30-Jun-08	79635.00	="0708-639"	="Nous Group"	10-Apr-08 02:16 PM	

+="CN68965"	"Independent expert review hydrological modelling as part of EIS proposed Traveston Crossing dam"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	22-Jan-08	31-Mar-08	39776.00	="0708-732"	="Bewsher Consulting Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68966-A1"	"Change Management Services to assist with the mySAP Strategy Stage III Initiatives."	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Software"	29-Jan-08	31-May-08	209660.00	="0708-877"	="Oakton AA Services Pty Limited"	10-Apr-08 02:17 PM	

+="CN68967"	"Maintenance and redevelopment of the Departmental website required to meet machinery of Gov changes"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	29-Jan-08	30-May-08	28000.00	="0708-891"	="Unique Ideas Australia Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68968"	"Enagement of Stratsec to undertake Threat Risk Ass Online Integrated Travel Solution"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	22-Jan-08	31-Jan-08	11800.00	="0708-809"	="Stratsec.Net Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68969"	"Feral animals on SA Islands agreement"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	13860.00	="0708-607"	="Department For The Environment"	10-Apr-08 02:17 PM	

+="CN68970"	"Design and Implementation of National Water Quality Management Strategy Regional Workshops"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	31-Jan-08	10-Jan-09	528170.00	="0607-126"	="Gutteridge Haskins & Davey pty ltd"	10-Apr-08 02:17 PM	

+="CN68971"	"Provision of Market Information on Permanent Water Entitlements in the Murray Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	31-Jan-08	30-Jun-08	60005.00	="0708-376"	="Hassall & Associates Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68972"	"Maintenance Service Order for DAIMS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	29-Jan-08	30-Jun-08	17952.00	="0708-906"	="Toldark Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68973"	"Advertising services for Qantas in-flight magazine"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	29-Jan-08	30-Jun-08	75000.00	="0708-907"	="ACP Magazines LTd"	10-Apr-08 02:17 PM	

+="CN68974"	"Validation and updating of Australian Gastropoda and Bivalvia names of the Aust. Faunal Directory"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Wildlife and flora"	29-Jan-08	30-May-08	22000.00	="0708-900"	="Australian Museum"	10-Apr-08 02:18 PM	

+="CN68975"	"2008 Payment for project ' Seed biology research - rehabilitation of the Ranger Mine site'"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	29-Jan-08	30-Jun-08	16500.00	="0708-894"	="Charles Darwin University"	10-Apr-08 02:18 PM	

+="CN68976"	"Design of SSD Office extension"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="General building construction"	25-Jan-08	30-Mar-08	14075.93	="0708-908"	="RND Architects Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68977"	"Printing Services to Print Calenders"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	25-Jan-08	31-Jan-08	19120.20	="0708-895"	="Digital Ink Tasmania"	10-Apr-08 02:18 PM	

+="CN68978"	"Survey to Identify the existence of Quokka near Muddy Lakes in Western Australia"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-May-08	24530.00	="0708-402"	="Botanic Gardens & Parks Authority"	10-Apr-08 02:18 PM	

+="CN68979"	"Advertising services for employee vacancy"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	16-Jan-08	31-Jan-08	10831.22	="0708-852"	="HMA Blaze Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68980"	"Data will be used by E3 for following publications Fact Sheet, Technical Report, Regulatroy Impact S"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	28-Feb-08	16830.00	="0708-313"	="IDC Australia Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68981"	"Australian Heritage Database work"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	10000.00	="0708-812"	="Toldark Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68982"	"ABRS Honours Scholarship 208-H07"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-866"	="University of Sydney"	10-Apr-08 02:19 PM	

+="CN68983"	"ABRS Honours Scholarship 208-H09"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-860"	="University of Western Australia"	10-Apr-08 02:19 PM	

+="CN68984"	"ABRS Honours Scholarship 208-H08"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-859"	="Australian National University"	10-Apr-08 02:19 PM	

+="CN68985"	"ABRS Honours Scholarship 208-H06"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-858"	="University of Wollongong"	10-Apr-08 02:19 PM	

+="CN68986"	"ABRS Honours Scholarship 208-H05"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-857"	="University of Wollongong"	10-Apr-08 02:19 PM	

+="CN68988"	"ABRS Honours Scholarship 208-H04"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-856"	="The University of Queensland"	10-Apr-08 02:19 PM	

+="CN68989"	"ABRS Honours Scholarship 208-H03"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-855"	="Queensland University of Technology"	10-Apr-08 02:20 PM	

+="CN68990"	"Map governance arrangements in Australian states & territories"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	29-Feb-08	38913.60	="0708-710"	="HLA ENVIROSCIENCES PTY LTD"	10-Apr-08 02:20 PM	

+="CN68991"	"Performance Story for WA - Strategic tree farming"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	20-Jun-08	79970.00	="0708-368"	="URS Australia Pty Ltd"	10-Apr-08 02:20 PM	

+="CN68987"	" Passenger and Transportf "	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	14-Nov-07	23-Nov-07	13058.07	=""	="COMCAR"	10-Apr-08 02:20 PM	

+="CN68992"	"Performance Story for Northern Territory Fire Management Outcome"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	20-Jun-08	77880.00	="0708-714"	="TUNA BLUE PTY LTD (TRADING AS"	10-Apr-08 02:20 PM	

+="CN68993"	"New Australian Faunal Directory: Scrutiny, correction andediting of transferred Platypus file"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	18-Jan-08	30-May-08	14300.00	="0708-847"	="Eclipse Systems Pty Ltd"	10-Apr-08 02:20 PM	

+="CN68994"	"Maintenance of EASY Development Work"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	18-Jan-08	30-Jun-08	30749.70	="0708-946_"	="Dialog Information Technology"	10-Apr-08 02:20 PM	

+="CN68995"	"Property Maintenance - Painting & Retiling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Building and Construction and Maintenance Services"	17-Jan-08	31-Jan-08	17405.27	="0708-840"	="Kakadu Contracting"	10-Apr-08 02:21 PM	

+="CN66103"	"Journal Subscriptions for 2008"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	19-Oct-07	31-Dec-08	73925.28	=""	="Ebsco Australia Subscription Services"	10-Apr-08 02:21 PM	

+="CN68996"	"Identification of regional ecosystems relevant to thretened species in far north Queensland"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	17-Jan-08	31-Mar-08	34991.00	="0708-130"	="CSIRO Accounts Receivable"	10-Apr-08 02:21 PM	

+="CN68997"	"Digital Video Equipment for Media Streaming"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Photographic or filming or video equipment"	17-Jan-08	21-Feb-08	20012.56	="0708-796"	="Canberra Professional Equipment"	10-Apr-08 02:21 PM	

+="CN68998"	"Text Contribution for the Inspirational Landscape Publication"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	16-Jan-08	30-May-08	13000.00	="0708-712"	="Context Pty Ltd"	10-Apr-08 02:21 PM	

+="CN68999"	"travel consultant to manage international travel arrangements"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	16-Jan-08	30-Jun-08	25000.00	="0708-707"	="Flight Centre Limited"	10-Apr-08 02:21 PM	

+="CN69000"	"Ad Hoc Advice on technical engineering issues -  labelling & MEPs - Electrical"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	50000.00	="0708-770"	="Punchline Energy"	10-Apr-08 02:21 PM	

+="CN69001"	"AdHoc AdviceTechnical Engineering issues Labelling AND MINIMUM ENERGY PERFORMANCE STANDARDS- Lightin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	25-Jun-08	49500.00	="0708-772"	="Syneca Consulting Pty Ltd"	10-Apr-08 02:21 PM	

+="CN69002"	"COST BENEFIT ANALYSIS OF LIGHTING PRODUCTS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	60000.00	="0708-774"	="Syneca Consulting Pty Ltd"	10-Apr-08 02:22 PM	

+="CN69003"	"Ad hoc advice on Technical Issues -Labelling and MINIMUM ENERGY PERFORMANCE STANDARDS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	79500.00	="0708-764"	="Energy Efficient Strategies"	10-Apr-08 02:22 PM	

+="CN69004"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	01-Feb-08	29-Apr-08	13345.60	=""	="COMCAR"	10-Apr-08 02:24 PM	

+="CN68952"	"Motor Vehicle Parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	19841.55	=""	="Volvo Commericial Vehicles"	10-Apr-08 02:25 PM	

+="CN69006"	"Employer Advisor Programme - Extension of existing contract"	="Workplace Authority"	10-Apr-08	="Work related organisations"	05-Feb-08	30-Jun-08	53232.50	=""	="Working Women's Centre SA Inc"	10-Apr-08 02:33 PM	

+="CN69007"	"Assistance with a pricing model for AIPM Business"	="Australian Federal Police"	10-Apr-08	="Cost accounting"	01-Apr-08	30-May-08	25562.00	=""	="Analytics Group Pty Ltd"	10-Apr-08 02:38 PM	

+="CN69009"	" Recruitment Services "	="Workplace Authority"	10-Apr-08	="Recruitment services"	01-Feb-08	30-Jun-08	68068.95	=""	="Professional Careers Australia"	10-Apr-08 02:50 PM	

+="CN69010"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	30-Jan-08	31-Mar-08	25410.00	=""	="Select Appointments"	10-Apr-08 02:53 PM	

+="CN69011"	"Project Management Fees"	="Workplace Authority"	10-Apr-08	="Project management"	29-Jan-08	31-May-08	41349.45	=""	="ACT & Region Chamber of Commerce"	10-Apr-08 02:56 PM	

+="CN69012-A1"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF "	="Defence Materiel Organisation"	10-Apr-08	="Camping and outdoor equipment and accessories"	11-Apr-08	07-Jul-08	439340.00	=""	="DOMINION EXPORTERS"	10-Apr-08 02:57 PM	

+="CN69015"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	10-Mar-08	30-Jun-08	177478.40	=""	="Select Appointments"	10-Apr-08 03:10 PM	

+="CN69017-A1"	"Cost Benefit Analysis Report"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-May-08	89645.21	="0708-0193"	="McLennan Magasanik Associates P/L"	10-Apr-08 03:11 PM	

+="CN69018-A1"	"Temporary staff services for Water Efficiency Division"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	21-Feb-08	31-May-08	55000.00	="0708-1024"	="Staffing and Office Solutions"	10-Apr-08 03:11 PM	

+="CN69019"	"Temporary staff services for Water Efficiency Division"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	21-Feb-08	30-Jun-08	44000.00	="0708-1014"	="Staffing and Office Solutions"	10-Apr-08 03:11 PM	

+="CN69020"	"Supply and Distribution of GA Satellite Image Data Products"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	01-Sep-10	1404260.00	="0708-0408"	="Geoscience Australia"	10-Apr-08 03:11 PM	

+="CN69021"	"Draw B class safes for New Department"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Office Equipment and Accessories and Supplies"	21-Feb-08	04-Apr-08	46893.00	="0708-1017"	="OfficeMax Australia Limited"	10-Apr-08 03:12 PM	

+="CN69022"	"Provision of services of traditional owner transportation, catering and administration"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	20-Feb-08	21-Feb-08	10000.00	="0708-1016"	="Kimberley Land Council"	10-Apr-08 03:12 PM	

+="CN69023"	"Aquatic Ecology Professional Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	20-Feb-08	30-Jun-08	33001.00	="0708-0683"	="Jennifer Hale"	10-Apr-08 03:12 PM	

+="CN69024"	"Professional Association Membership"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	31-Dec-09	35014.77	="0708-1032"	="Hart Downstream Energy Services"	10-Apr-08 03:12 PM	

+="CN69025-A1"	"Removals & Relocations Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Accommodation furniture"	20-Feb-08	30-Jun-10	494306.54	="0607-063"	="Balfran Removals"	10-Apr-08 03:12 PM	

+="CN69026"	"Analysis impacts on Carnaby's Black Cockatoo habit by proposed or future developments Swan coas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	20-Feb-08	30-Apr-08	20000.00	="0708-0928"	="Department of Environment & Conserv"	10-Apr-08 03:12 PM	

+="CN69027"	"Misc. Digital Photographic Equipment"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Photographic or filming or video equipment"	19-Feb-08	27-Mar-08	27230.00	="0708-795"	="Ted's Camera Store"	10-Apr-08 03:12 PM	

+="CN69028"	"Australian National Historic Shipwrecks Database Redevelopment"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Software"	19-Feb-08	20-Jun-08	264000.00	="0708-333"	="SRA Information Technology"	10-Apr-08 03:12 PM	

+="CN69029"	"Further Feedstock Biofuels Study"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	01-Feb-08	31-Mar-08	16500.00	="0708-834"	="Duncan Seddon and Associates"	10-Apr-08 03:13 PM	

+="CN69030"	"Review of a Conservation Value Index for the Box Gum Grassy Woodland Project"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	31-Mar-08	24750.00	="0708-0819"	="EcoInsights"	10-Apr-08 03:13 PM	

+="CN69032-A1"	"Provision of monitoring and evaluation services for the Environmental Stewardship Programme"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	18-Feb-08	10160.00	="0708-0474"	="Clear Horizon Consulting Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69033"	"Venue Services for a Facilitator Forum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Hotels and lodging and meeting facilities"	18-Feb-08	25-Mar-08	15000.00	="0708-1013"	="Fountaindale Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69031"	"Computer Software"	="Workplace Authority"	10-Apr-08	="Software"	20-Dec-07	30-Jun-08	13662.00	=""	="City Software Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69034"	"Consultancy to help write a policy discussion paper on actoins to manage water activities"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	10-Dec-07	31-Mar-08	27500.00	="0708-654"	="Hamstead Consulting Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69035-A2"	"Media Monitoring services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Communications Devices and Accessories"	18-Feb-08	30-Jun-08	445256.04	="0708-797"	="Media Monitors Australia Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69036"	"Rectification and Improvemetns to Count Room"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Building and Construction and Maintenance Services"	15-Feb-08	30-Jun-08	26290.00	="0708-997"	="NT Energy Contracting"	10-Apr-08 03:14 PM	

+="CN69037"	"salinity mapping Services for the Murray-Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	12-Feb-08	30-Jun-08	953700.00	="0708-881"	="Dept. Agriculture, Fisheries &"	10-Apr-08 03:14 PM	

+="CN69038"	"Contractor for Program Administrator"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Human resources services"	15-Feb-08	18-Apr-08	13695.00	="0708-1001"	="Kowalski Recruitment"	10-Apr-08 03:14 PM	

+="CN69039"	"Production of a communication strategy on Marine Protected Areas Management"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	15-Mar-08	10750.00	="0708-693"	="Beyond PR"	10-Apr-08 03:14 PM	

+="CN69040"	"Recruitment Advertising Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	29-Feb-08	28-Mar-08	45610.10	="0708-1125"	="HMA Blaze Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69041"	"Supply and installation of fibre optic cabling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Feb-08	31-Mar-08	14945.70	="0708-1083"	="MRB Communications Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69042"	"consultancy for supply of electricity distribution"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	16-Jun-08	74872.60	="0708-948"	="Geoscience Australia"	10-Apr-08 03:15 PM	

+="CN69043"	"Advice on ecological effects of removal of snags from the Murray river"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	28-Feb-08	31-Mar-08	10485.92	="0708-586"	="Harris Research Pty Ltd"	10-Apr-08 03:15 PM	

+="CN69044"	"Provision of a mechanism through which data can be made available to international initiatives"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	28-Feb-08	30-May-08	44607.20	="0708-1008"	="Museum Victoria"	10-Apr-08 03:15 PM	

+="CN69045"	"Web server and infrastructure Services to faciliitate the delivery of collections data"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	28-Feb-08	30-May-08	16500.00	="0708-1006"	="South Australian Museum"	10-Apr-08 03:15 PM	

+="CN69046"	"Cost benefit analysis of alternative ballast water management within Great Barrier Reef"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Marine transport"	28-Feb-08	30-Jun-08	75762.50	="0708-1057"	="International Economics"	10-Apr-08 03:15 PM	

+="CN69047-A3"	"Electronic Grants Management System Implementation Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	30-Nov-10	1452592.00	="0607-061"	="CA(Pacific) PTY.LTD"	10-Apr-08 03:15 PM	

+="CN69048"	"Marketing Materials"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	15-Mar-08	13350.00	="0708-056"	="Kaye Kessing Productions"	10-Apr-08 03:15 PM	

+="CN69049"	"Oracle licenses for grants use"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	03-Mar-09	84620.07	="0708-717"	="Oracle Corp Aust P/L"	10-Apr-08 03:16 PM	

+="CN69050"	"Information Technology Project Management Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	09-Apr-08	38000.00	="0708-993"	="Paxus Australia Pty Limited"	10-Apr-08 03:16 PM	

+="CN69051"	"Expert Tech advice - sediment & erosion control assessment against conditions of approval"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	04-Mar-08	31-May-08	23149.50	="0708-1038"	="Natural Resource Assessments"	10-Apr-08 03:16 PM	

+="CN69053-A1"	"Hosting of Australian Government Natural Resource Management Facilitators"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Mar-09	104070.93	="0708-0990"	="CSIRO Corporate Finance"	10-Apr-08 03:16 PM	

+="CN69054"	"National Heritage List plaques, plinths & brochure"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Printing and publishing equipment"	27-Feb-08	30-Jun-08	70400.00	="0708-953"	="Fusebox  Design"	10-Apr-08 03:16 PM	

+="CN69056"	"North Marine Regional Bioregional Profile Publication"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	45351.20	="0708-646"	="Imaginocean Productions"	10-Apr-08 03:16 PM	

+="CN69057"	"Advertisement of several positions vacant"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	26-Feb-08	31-Mar-08	12420.87	="0708-1040"	="HMA Blaze Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69055"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	88935.00	=""	="Victorian Automobile Chamber of Commerce"	10-Apr-08 03:17 PM	

+="CN69058"	"Development of a Monitoring and Evaluation Strategy for Biodiversity Programme"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	01-May-08	30965.00	="0708-827"	="O'Connor Nrm Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69052"	"Power Splitters"	="Defence Materiel Organisation"	10-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Apr-08	30-May-08	18996.98	=""	="AGILENT TECHNOLOGIES"	10-Apr-08 03:17 PM	

+="CN69059"	"Mercury in Health Industry National Pollutant Inventory Review"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	18-Feb-08	29-Feb-08	17347.00	="0708-823"	="ECS Assist Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69060"	"Facilitation of national monitoring evaluation and reporting conference"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	25-Feb-08	20-Jun-08	13200.00	="0708-1056"	="Possibilities Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69061"	"Branch Ministerial Writing Course"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Vocational training"	21-Feb-08	29-Feb-08	28510.00	="0708-738"	="Rushworth Consultancy"	10-Apr-08 03:18 PM	

+="CN69062"	"Research into Water Use and Catchment Economic Status in the Murray Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	21-Dec-07	28-Feb-08	27500.00	="0708-688"	="Dept. Agriculture, Fisheries &"	10-Apr-08 03:18 PM	

+="CN69063"	"Database Administration Support Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	07-Feb-08	28-Mar-08	27000.00	="0708-965"	="SRA Information Technology"	10-Apr-08 03:18 PM	

+="CN69064"	"Application Migration of Departments"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	07-Feb-08	29-Feb-08	41998.50	="0708-964"	="SRA Information Technology"	10-Apr-08 03:18 PM	

+="CN69065"	"Long-term monitoring of sea temperature in tropical Marine Protected Areas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	22000.00	="0708-562"	="Aust Institute of Marine Science"	10-Apr-08 03:18 PM	

+="CN69066"	"Flyway Partnership Interim Secretariat - Drafting of Working Papers"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	25520.00	="0708-022"	="Wetlands International Oceania"	10-Apr-08 03:18 PM	

+="CN69067"	"Identification of invertebrate fauna from the Coringa-Herald National Nature Reserve"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	36621.75	="0708-616"	="XCS Consulting"	10-Apr-08 03:18 PM	

+="CN69068"	"Provision of services for the identification of habitats occupied by Western Ringtail Possum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-Jun-08	79629.00	="0708-504"	="ENV.AUSTRALIA PTY LTD"	10-Apr-08 03:19 PM	

+="CN69069"	"GAS STORAGE CYLINDERS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Containers and storage"	07-Feb-08	29-Feb-08	107800.00	="0708-396"	="R.R.A. Environment Trust"	10-Apr-08 03:19 PM	

+="CN69070-A1"	"Provision of Procurement Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	06-Feb-08	31-May-08	20322.50	="0708-375"	="David Jess and Associates"	10-Apr-08 03:19 PM	

+="CN69071"	"Monthly Blackberry Charges"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	29-Feb-08	32474.77	="0708-938"	="Telstra Corporation Limited"	10-Apr-08 03:19 PM	

+="CN69072"	"MONTHLY BLACKBERRY CHARGES"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	29-Feb-08	20473.40	="0708-939"	="Telstra Corporation Limited"	10-Apr-08 03:19 PM	

+="CN69073"	"Research to Track the Uptake of  Water Efficiency Labelling and Standards (WELS) rated Products"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	10-Dec-07	29-Feb-08	24950.00	="0708-672"	="ICLEI Australia /New Zealand"	10-Apr-08 03:19 PM	

+="CN69074-A1"	"Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	06-Feb-08	28-Mar-08	19650.90	="0708-945"	="Toldark Pty Ltd"	10-Apr-08 03:19 PM	

+="CN69075"	"Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	06-Feb-08	06-Feb-08	27000.00	="0708-944"	="Toldark Pty Ltd"	10-Apr-08 03:19 PM	

+="CN69076"	"Updating of species information sheets for migratory bird species"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	06-Feb-08	30-May-08	41231.00	="0708-831"	="Royal Australasian Ornithologists U"	10-Apr-08 03:20 PM	

+="CN69077"	"Envirofund round 9 merchandise"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	05-Feb-08	29-Feb-08	33567.60	="0708-910"	="National Promotions Aust P/L"	10-Apr-08 03:20 PM	

+="CN69078"	"Development of Water Databases"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	04-Feb-08	30-Dec-08	16500.00	="0708-889"	="PROQUEST INFORMATION AND LEARNING"	10-Apr-08 03:20 PM	

+="CN69079"	"Consultancy Agreement for Water Recycling for Pastures and Crops"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	04-Feb-08	30-Jun-08	66000.00	="0708-949"	="RMCG Consulting Group"	10-Apr-08 03:20 PM	

+="CN69080"	"Rental of Accommodation Space"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Transportation services equipment"	04-Feb-08	22-Feb-08	19800.00	="0607-555"	="Jones Lang LaSalle (NSW) P/L"	10-Apr-08 03:20 PM	

+="CN69081"	"Development of an Environmental Benefit Index for Box Gum Grassy Woodlands"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	09-Nov-07	30-Apr-08	43367.50	="0708-0213"	="Australian National University"	10-Apr-08 03:20 PM	

+="CN69082"	"Australian Marine Conservation Society workshop Kimberely Marine and Coastal Scientific Forum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Education and Training Services"	16-Jan-08	11-Feb-08	10000.00	=""	="Australian Marine Conservation"	10-Apr-08 03:20 PM	

+="CN69083"	"Forklift truck"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Material handling machinery and equipment"	15-Feb-08	01-May-08	35000.00	="0708-996"	="Crown Lift Trucks"	10-Apr-08 03:21 PM	

+="CN69085"	"Supply and install of fibre optic cabling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Feb-08	29-Feb-08	13445.30	="0708-991"	="MRB Communications Pty Ltd"	10-Apr-08 03:21 PM	

+="CN69087-A2"	"Provision of secretariate and support services to the great artesian basin coordinating committee"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	18-Jan-08	31-Oct-10	539962.50	="0708-040"	="The Trustee for Secretariat Australia"	10-Apr-08 03:21 PM	

+="CN69088"	"Accomodation for conference for Indonesian Ministry Officials"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	18-Feb-08	16240.00	=""	="NOVOTEL CANBERRA"	10-Apr-08 03:21 PM	

+="CN69089"	"Technical research paper on domestic irrigation flow controllers & interaction Water Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	18-Jan-08	31-Mar-08	17490.00	="0708-720"	="Irrigation Association of Australia"	10-Apr-08 03:21 PM	

+="CN69090-A2"	"Advice and Guidance of the development of a Box Gum Grassy Woodland field & training manual"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	30-Jun-08	47740.00	="0708-571"	="O'Connor Nrm Pty Ltd"	10-Apr-08 03:22 PM	

+="CN69091"	"Subscription to online service"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Electronic reference material"	12-Feb-08	02-Mar-09	20350.00	="0708-950"	="BUTLER DIRECT PTY LTD"	10-Apr-08 03:22 PM	

+="CN69092"	"Ad hock project work on Gas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	25-May-08	30000.00	="0708-767"	="Enertech Australia P/L"	10-Apr-08 03:22 PM	

+="CN69093"	"Expansion of ReefTemp processing framework to all Commonwealth Marine Reserves"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	30-Jun-08	39500.00	="0708-0724"	="Jeffrey Maynard"	10-Apr-08 03:22 PM	

+="CN69094"	"Australia Post Account for January 2008"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Transportation and Storage and Mail Services"	12-Feb-08	12-Feb-08	15033.77	="0708-968"	="Australia Post"	10-Apr-08 03:22 PM	

+="CN69095"	"Southern Right Whales - 2008 population dynamics review and photo ID catalogue cross match"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Dec-07	31-Dec-08	73500.00	="0708-972"	="Eubalaena Pty Ltd"	10-Apr-08 03:22 PM	

+="CN69096"	"Professional services in relation to the Executive Leadership tender evaluation project"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Business administration services"	12-Feb-08	30-Jun-08	29766.00	="0708-978"	="Lange Consulting & Software"	10-Apr-08 03:22 PM	

+="CN69097"	"Provide Market Research Services for the Hot Water System Purchasing Behaviour"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	04-Jan-08	14-Apr-08	78870.00	="0708-780"	="Winton Sustainable"	10-Apr-08 03:23 PM	

+="CN69098"	"Ad Hoc Advice on Technical Engineering issues - Labelling and MEPs"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	20-Jun-08	79499.99	="0708-761"	="EnergyConsult Pty Ltd"	10-Apr-08 03:23 PM	

+="CN69099"	"Provide ad hoc advice on Technical Engineering Issues on Labelling & MEPs"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	20-Jun-08	22000.00	="0708-776"	="George Wilkenfeld & Associates"	10-Apr-08 03:23 PM	

+="CN69100"	"Dialog Easy Maintenance"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	12-Feb-08	30-Jun-08	29870.88	="0708-976"	="Dialog Information Technology"	10-Apr-08 03:23 PM	

+="CN69102"	"Envirofund round 9 merchandise"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	11-Feb-08	29-Feb-08	18080.76	="0708-955"	="National Promotions Aust P/L"	10-Apr-08 03:23 PM	

+="CN69103"	"Chemical Assessment Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental protection"	04-Jan-08	30-Jun-08	14520.00	="0708-816"	="Australian Environment"	10-Apr-08 03:23 PM	

+="CN69014"	"Workers Comp premium"	="Workplace Authority"	10-Apr-08	="Healthcare Services"	28-Jan-08	30-Jun-08	350987.00	=""	="Comcare"	10-Apr-08 03:25 PM	

+="CN69104"	"Building Services"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Building and Construction and Maintenance Services"	01-Oct-07	30-Jan-08	17790.00	=""	="GHD Pty Ltd"	10-Apr-08 03:29 PM	

+="CN69106"	"Fairness Test Training"	="Workplace Authority"	10-Apr-08	="Work related organisations"	05-Dec-07	27-Jun-08	68003.38	=""	="Walter and Turnbull Pty Ltd"	10-Apr-08 03:30 PM	

+="CN69109-A2"	"Security Risk Review"	="Workplace Authority"	10-Apr-08	="Securing and protecting supplies"	25-Jan-08	30-Apr-08	30000.00	=""	="Intec 1"	10-Apr-08 03:36 PM	

+="CN69110"	"E-Recruitment software"	="Workplace Authority"	10-Apr-08	="Software"	25-Jan-08	08-Nov-08	37840.00	=""	="NGA.Net Pty Ltd"	10-Apr-08 03:40 PM	

+="CN69111"	"Publications of WR Act and Regs"	="Workplace Authority"	10-Apr-08	="Printed publications"	25-Jan-08	25-Jan-08	13178.00	=""	="Canprint Communications Pty Ltd"	10-Apr-08 03:43 PM	

+="CN69185"	"Supply of Stationery"	="Bureau of Meteorology"	10-Apr-08	="Office supplies"	02-Apr-08	30-Apr-08	24174.55	=""	="Corporate Express Australia Limited"	10-Apr-08 03:58 PM	

+="CN69187"	"Telecommunication services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	18-Mar-08	30-Apr-08	32436.10	=""	="Stratos"	10-Apr-08 03:58 PM	

+="CN69189"	"NTRO Phone charges rantal Apr 08 Call Feb 08"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	18-Mar-08	31-May-08	13759.04	=""	="Telstra  (ID No. 740)"	10-Apr-08 03:58 PM	

+="CN69191"	"Lease of 11 tape drives"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	38313.66	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69193"	"Buyout of equipment"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	102625.27	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69194"	"Furniture for Capital Jet Building"	="Bureau of Meteorology"	10-Apr-08	="Furniture and Furnishings"	25-Mar-08	31-Mar-08	12488.28	=""	="Planex Sales Pty Ltd"	10-Apr-08 03:58 PM	

+="CN69195"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	16471.52	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69196"	"Salaries - eWater Project"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	31-Mar-08	16673.79	=""	="The University Of Melbourne"	10-Apr-08 03:59 PM	

+="CN69197"	"Lease extension for NSW AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-08	79346.96	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69198"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	41253.64	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69199"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	35878.66	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69200"	"Lease extension for QLD AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-08	38001.21	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69201"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	82479.83	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69202"	"Lease extension for WA AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-09	146073.47	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69203"	"Professional services - Centenary Activities"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	31-Mar-08	15950.00	=""	="Prose Media"	10-Apr-08 04:00 PM	

+="CN69204"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	02-Apr-08	30-Apr-08	11985.01	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69205"	"Telephone A/c"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	27-Mar-08	27-Mar-08	20111.74	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69206"	"Construction Works"	="Bureau of Meteorology"	10-Apr-08	="General building construction"	01-Apr-08	30-Apr-08	77000.00	=""	="KLM GROUP"	10-Apr-08 04:00 PM	

+="CN69207"	"Construction Works"	="Bureau of Meteorology"	10-Apr-08	="General building construction"	01-Apr-08	30-Apr-08	30453.71	=""	="KLM GROUP"	10-Apr-08 04:00 PM	

+="CN69208"	"VEHICLE LEASES APRIL  2008"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	01-Apr-08	15-Apr-08	13107.95	=""	="Leaseplan Australia"	10-Apr-08 04:00 PM	

+="CN69209"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	68786.92	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69210"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	24105.47	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:01 PM	

+="CN69211"	"AIFS IBM LICENSE/MAINTENANCE RENEWALS 27-MAR-2008 - 31-MAR-2009"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	02-Apr-08	31-Mar-09	57956.42	=""	="IBM Australia Limited"	10-Apr-08 04:01 PM	

+="CN69212"	"Car Lease Costs"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	03-Apr-08	03-Apr-08	13326.83	=""	="Leaseplan Australia"	10-Apr-08 04:01 PM	

+="CN69213"	"Audit Services"	="Bureau of Meteorology"	10-Apr-08	="Accounting and auditing"	03-Apr-08	30-Apr-08	20251.00	=""	="Deloitte Touche Tohmatsu"	10-Apr-08 04:01 PM	

+="CN69173"	"Processing for AWA & Fairness Test"	="Workplace Authority"	10-Apr-08	="Work related organisations"	30-Nov-07	30-Jun-08	80674.00	=""	="DEEWR"	10-Apr-08 04:01 PM	

+="CN69214"	"2 TOYOTA HILUX MOTOR VEHICLES FOR COCOS ISLAND"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	25-Mar-08	30-Apr-08	44009.10	=""	="Melville Toyota"	10-Apr-08 04:01 PM	

+="CN69215"	"Drifting BuoysSVP-B & SVP-BW"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	26-Mar-08	30-May-08	35870.92	=""	="Metocean Data Systems Ltd"	10-Apr-08 04:01 PM	

+="CN69216"	"Supply of ASLOS NG-AWS 4A & 4B including battery shelter & battery shelter roof."	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	26-Mar-08	01-May-08	238345.97	=""	="Telvent Almos"	10-Apr-08 04:01 PM	

+="CN69217"	"ICS Equipment Shelter for use by Metro France Supply and installation"	="Bureau of Meteorology"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	18-Apr-08	101536.00	=""	="ICS Industries"	10-Apr-08 04:02 PM	

+="CN69218"	"Acquisition of Hardware & support services associated with RT018/2007"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	28-Mar-08	09-Apr-08	669844.98	=""	="Dell Australia  Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69219"	"Net Display Test Equipment"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	07-Apr-08	18650.50	=""	="Dell Australia  Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69220"	"Submerged Pressure Sensors"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	31-Mar-08	10-Apr-08	86013.39	=""	="Biolab (Aust) Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69221"	"2 x SQL 2005 Licences; 2 x SQL 2005 Media kits"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	02-Apr-08	52312.02	=""	="Leading Solutions Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69222"	"Renewal of Software Licence & support for Oracle"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	31-Mar-08	13-May-09	54672.48	=""	="Oracle Corporation Australia"	10-Apr-08 04:02 PM	

+="CN69223"	"Visibility Meter Qty 5 Present Weather Upgrade Kit  Qty 5 Thunderstorm Sensors Qty 3 Comm Kits Qty 1"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	15-May-08	201872.00	=""	="Vaisala Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69225"	"Humidity Sensor"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	15-May-08	53394.00	=""	="Pryde Measurement Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69226"	"CHARTER AIRCRAFT EUCLA/GOLDFIELDS"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-May-08	18729.26	=""	="Complete Aviation Services"	10-Apr-08 04:03 PM	

+="CN69151"	"Legal Services"	="Workplace Authority"	10-Apr-08	="Legal services"	25-Jan-08	25-Jan-08	10179.01	=""	="Australian Government Solicitors (ACT)"	10-Apr-08 04:03 PM	

+="CN69228"	"Temp probe 100  + Connectors 50 Surface sensor 10 Sub surface sensor 50 Agromet sensors100"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	30-May-08	67771.00	=""	="Temperature Controls Pty Ltd"	10-Apr-08 04:03 PM	

+="CN69229"	"MacBook Pro 17" Monitor Qty 2 Macbook Pro 15"Qty 2"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	23405.80	=""	="Next Byte Pty Ltd"	10-Apr-08 04:03 PM	

+="CN69230"	"Ptotege R500 Laptops Qty 5"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	22380.00	=""	="Leading Solutions Pty Ltd"	10-Apr-08 04:04 PM	

+="CN69231"	"Gazettal advertising"	="Workplace Authority"	10-Apr-08	="Advertising"	25-Jan-08	25-Jan-08	33792.00	=""	="Attorney Generals Department"	10-Apr-08 04:07 PM	

+="CN69232"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	149253.30	=""	="Housing Industry Association Ltd"	10-Apr-08 04:11 PM	

+="CN69233"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	91408.80	=""	="Master Builders Australia Incorporation"	10-Apr-08 04:14 PM	

+="CN69234"	" TOOLS AND ACCESSORIES FOR THE .338 SNIPER WEAPONS. "	="Defence Materiel Organisation"	10-Apr-08	="Light weapons and ammunition"	05-Dec-07	03-Apr-08	366442.38	=""	="XTEC"	10-Apr-08 04:16 PM	

+="CN69235"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	27-Nov-07	25-Jan-08	108020.00	=""	="Hotel Motel & Accommodation"	10-Apr-08 04:16 PM	

+="CN69236"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	40657.40	=""	="Printing Industries Association"	10-Apr-08 04:19 PM	

+="CN69237"	"TOOLS AND ACCESSORIES FOR FOR THE .338 SNIPER RIFLE."	="Defence Materiel Organisation"	10-Apr-08	="Light weapons and ammunition"	03-Dec-07	03-Apr-08	52727.44	=""	="XTEK"	10-Apr-08 04:23 PM	

+="CN69238"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	138863.30	=""	="Aust Mines & Metals Association"	10-Apr-08 04:26 PM	

+="CN69239"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	33280.00	=""	="Clubs Australia"	10-Apr-08 04:28 PM	

+="CN68739"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	10-Apr-08	="Computer services"	17-Dec-07	18-Apr-08	63910.00	=""	="Aurec"	10-Apr-08 04:30 PM	

+="CN69241"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	22-Nov-07	30-Jun-08	160000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	10-Apr-08 04:32 PM	

+="CN69244"	"Property Rental"	="Workplace Authority"	10-Apr-08	="Lease and rental of property or building"	20-Nov-07	30-Jun-08	3732542.40	=""	="United Group Services"	10-Apr-08 04:39 PM	

+="CN69245"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	20-Dec-07	30-Jun-08	117645.00	=""	="Compas Pty Ltd"	10-Apr-08 04:42 PM	

+="CN69246"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	19-Dec-07	15-Feb-08	34320.00	=""	="HiTech Personnel"	10-Apr-08 04:44 PM	

+="CN69243"	"SHIPPING AND STORAGE CONTAINERS"	="Defence Materiel Organisation"	10-Apr-08	="Storage chests and cabinets and trunks"	25-Jan-08	10-Mar-08	12903.00	=""	="TRIMCAST"	10-Apr-08 04:47 PM	

+="CN69247"	"Removalist Services"	="Workplace Authority"	10-Apr-08	="Accommodation furniture"	19-Dec-07	10-Jan-08	11224.36	=""	="Chess Hanley's Moving"	10-Apr-08 04:52 PM	

+="CN69248"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	19-Nov-07	31-Dec-07	91035.75	=""	="National Retail Association Ltd"	10-Apr-08 04:56 PM	

+="CN69249"	"Geotechnical Services - RG Menzies Walk"	="National Capital Authority"	10-Apr-08	="Geophysical and geotechnical instruments"	12-Feb-08	26-Apr-08	16940.00	=""	="Coffey Geotechnics Pty Ltd"	10-Apr-08 05:29 PM 

--- /dev/null
+++ b/admin/partialdata/06Feb2008to10Feb2008valto.xls
@@ -1,1 +1,522 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN58680"	"Tool Kit Plumbers & Pipefitters"	="Defence Materiel Organisation"	06-Feb-08	="Tool kits"	05-Feb-08	04-Mar-08	84898.00	=""	="J Blackwood & Son"	06-Feb-08 09:03 AM	

+="CN58681"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	06-Feb-08	="Aircraft"	05-Feb-08	25-Feb-08	44652.00	=""	="SIKORSKY AIRCRAFT AUST LTD"	06-Feb-08 09:08 AM	

+="CN58682"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	06-Feb-08	="Aircraft"	05-Feb-08	25-Feb-08	55947.39	=""	="SIKORSKY AIRCRAFT AUST LTD"	06-Feb-08 09:15 AM	

+="CN58683-A2"	" Lease at Murray Bridge SA "	="Department of Human Services"	06-Feb-08	="Real estate services"	05-Aug-02	04-Aug-14	2491143.00	=""	="Commsyndicate - MB"	06-Feb-08 09:23 AM	

+="CN58684"	"LIGNOCAINE HYDROCHLORIDE AND BENZYDAMINE HYDROCHLORIDE LOZENGE LIGNOCAINE HCL 4MG DICHLORABENZYL ALCOHOL 1.25 MG, AND BENZYDOMINE HCL 3MG, 16'S"	="Defence Materiel Organisation"	06-Feb-08	="Medical health associations"	01-Feb-08	06-Feb-08	15143.04	=""	="BAYER AUSTRALIA LTD"	06-Feb-08 09:33 AM	

+="CN58685"	"Media Information Services"	="Australian Electoral Commission"	06-Feb-08	="Information services"	30-Nov-07	30-Dec-07	12185.28	=""	="AAP Information Services"	06-Feb-08 09:42 AM	

+="CN58686"	"Postal Vote / Display Fees"	="Australian Electoral Commission"	06-Feb-08	="Postal and small parcel and courier services"	21-Dec-07	21-Jan-08	74650.00	=""	="Australia Post"	06-Feb-08 09:50 AM	

+="CN58687"	"Temporary Election Personnel"	="Australian Electoral Commission"	06-Feb-08	="Temporary personnel services"	20-Nov-07	24-Dec-07	127331.99	=""	="McArthur Management Services (Qld)"	06-Feb-08 10:04 AM	

+="CN58689"	"leave liability- craig revell"	="Royal Australian Mint"	06-Feb-08	="Financial accounting"	02-Jan-08	02-Jan-08	15242.87	=""	="AUSTRALIAN FILM COMMISSION"	06-Feb-08 10:35 AM	

+="CN58690"	"css/pss contributers"	="Royal Australian Mint"	06-Feb-08	="Pension funds"	02-Jan-08	02-Jan-08	11730.95	=""	="COMSUPER"	06-Feb-08 10:52 AM	

+="CN58691"	"Election Security Services"	="Australian Electoral Commission"	06-Feb-08	="Security guard services"	20-Nov-07	25-Nov-07	37838.34	=""	="Australian Security Company Pty Ltd"	06-Feb-08 11:07 AM	

+="CN58692"	"Update MOU wit RBA and Treasury"	="Royal Australian Mint"	06-Feb-08	="Legal services"	03-Jan-08	03-Jan-08	27500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	06-Feb-08 11:08 AM	

+="CN58693"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	06-Feb-08	="Medical Equipment and Accessories and Supplies"	11-Jan-08	27-Jan-08	28127.00	=""	="Australian Therapeutic Supplies"	06-Feb-08 11:10 AM	

+="CN58695"	" Purchase of Qty 20 Support Assy's for Black Hawk.  PN: 70361-05060-042  Cage: 78286 "	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	23-Jul-07	06-Feb-08	50875.40	=""	="SAAL"	06-Feb-08 11:28 AM	

+="CN58696"	"Annual maintenance of EOS software for period 01/02/2008-31/01/2009"	="Australian Taxation Office"	06-Feb-08	="Software"	01-Feb-08	31-Jan-09	151757.05	=""	="Document Solutions International"	06-Feb-08 11:34 AM	

+="CN58697"	"It contracting service"	="Royal Australian Mint"	06-Feb-08	="Temporary technician staffing needs"	07-Jan-08	07-Jan-08	49566.00	=""	="DRAKE IT PTY LTD"	06-Feb-08 11:35 AM	

+="CN58701"	"AGM agreed charges - 12 months"	="Royal Australian Mint"	06-Feb-08	="Temporary production staffing needs"	09-Jan-08	09-Jan-08	24343.31	=""	="ADP EMPLOYER SERVICES"	06-Feb-08 11:59 AM	

+="CN58702"	"Quantity Surveyor Services"	="National Capital Authority"	06-Feb-08	="Land surveying"	12-Oct-07	30-Jun-08	11825.00	=""	="Donald Cants Watts Corke Pty Ltd"	06-Feb-08 12:08 PM	

+="CN58704"	"qty 200 radio frequency cable assemblies for use with military radios."	="Defence Materiel Organisation"	06-Feb-08	="Electrical cable and accessories"	01-Feb-08	06-Jun-08	33000.00	="RFQ-C7089"	="Interconnect Systems Pty Ltd"	06-Feb-08 12:30 PM	

+="CN58705"	"Media monitoring services"	="Australian Electoral Commission"	06-Feb-08	="Telecommunications media services"	01-Nov-07	31-Jan-08	55033.16	=""	="Media Monitors Pty Ltd"	06-Feb-08 12:32 PM	

+="CN58706"	"Provision for internal Audit and Related Services"	="Comsuper"	06-Feb-08	="Internal audits"	10-Jan-08	30-Sep-08	222750.00	=""	="Oakton Services Pty Ltd"	06-Feb-08 12:40 PM	

+="CN58708"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR BLADE."	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	39983.20	=""	="SAAL"	06-Feb-08 12:46 PM	

+="CN58709"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR BLADE."	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	48245.62	=""	="SAAL"	06-Feb-08 12:50 PM	

+="CN58710-A1"	"Services as chair of Centrelink's Audit Committee"	="Centrelink"	06-Feb-08	="Management advisory services"	30-Jul-07	30-Sep-09	121000.00	=""	="Oliver Winder Pty Ltd"	06-Feb-08 01:12 PM	

+="CN58711"	"Project Management of Capital works - Canberra"	="Australian Federal Police"	06-Feb-08	="Project management"	04-Jun-07	27-Jul-07	744373.00	=""	="Manteena Pty Ltd"	06-Feb-08 01:30 PM	

+="CN58712"	"Aircraft Towlines"	="Defence Materiel Organisation"	06-Feb-08	="Military seaplanes"	21-Dec-07	02-Jun-08	128700.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	06-Feb-08 01:46 PM	

+="CN58713"	"Project Management of capital works - Sydney"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Jul-07	30-Aug-07	24361.00	=""	="Manteena Pty Ltd"	06-Feb-08 01:48 PM	

+="CN58716"	"Project Management of Capital Works - Fairbairn"	="Australian Federal Police"	06-Feb-08	="Project management"	28-Jun-07	02-Aug-08	4641543.50	=""	="Manteena Pty Ltd"	06-Feb-08 01:56 PM	

+="CN58715"	"staff renumeration services"	="Australian Institute of Family Studies"	06-Feb-08	="Employment"	20-Feb-06	31-Jan-08	106707.50	=""	="La Trobe University"	06-Feb-08 01:58 PM	

+="CN58717-A1"	"DA 63 - consultation"	="National Capital Authority"	06-Feb-08	="Business and corporate management consultation services"	01-Jul-07	31-Dec-07	29208.00	=""	="Purdon Associates Pty Ltd"	06-Feb-08 02:02 PM	

+="CN58718"	"Project Management of Capital works - Sydney NSW"	="Australian Federal Police"	06-Feb-08	="Project management"	30-May-07	30-Aug-07	467326.20	=""	="Manteena Pty Ltd"	06-Feb-08 02:05 PM	

+="CN58719-A1"	"Project Management of Capital Works Brisbane - QLD"	="Australian Federal Police"	06-Feb-08	="Project management"	20-Aug-07	22-Feb-08	2981000.00	="21/2005"	="Manteena Pty Ltd"	06-Feb-08 02:13 PM	

+="CN58720-A1"	"Project Management of Capital works Weston ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Jan-08	31-Jan-08	14485.90	=""	="Manteena Pty Ltd"	06-Feb-08 02:21 PM	

+="CN58721"	"Project Management of Capital Works Fairbairn ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	15-Feb-08	10-Mar-08	150180.80	=""	="Manteena Pty Ltd"	06-Feb-08 02:28 PM	

+="CN58722"	" Witness required to give Technical Evidence "	="Office of the Director of Public Prosecutions"	06-Feb-08	="Legal services"	06-Nov-07	30-Nov-07	30106.43	=""	="AMC Consultants"	06-Feb-08 02:34 PM	

+="CN58724"	"Project Management of Capital Works Weston ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	03-Aug-07	31-Aug-07	190343.94	=""	="Manteena Pty Ltd"	06-Feb-08 02:37 PM	

+="CN58725"	"Legal Services"	="Australian Electoral Commission"	06-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	=""	="Australian Government Solicitor"	06-Feb-08 02:41 PM	

+="CN58726"	"holder printed coin set 2 UNC 2008"	="Royal Australian Mint"	06-Feb-08	="Printed inserts or instructions"	10-Jan-08	24-Apr-08	13544.30	=""	="NEXUS PRINT SOLUTIONS"	06-Feb-08 02:45 PM	

+="CN58727"	"Project Management of Capital works Canberra ACT"	="Australian Federal Police"	06-Feb-08	="Project management"	01-Dec-07	31-Jan-08	148825.60	=""	="Manteena Pty Ltd"	06-Feb-08 02:46 PM	

+="CN58729"	" REPAIR AND OH OF BLACK HAWK LANDING GEAR ASSY. "	="Defence Materiel Organisation"	06-Feb-08	="Military rotary wing aircraft"	06-Feb-08	30-Jun-08	21877.62	=""	="SAAL"	06-Feb-08 02:52 PM	

+="CN58728"	"Consultancy services to provide advice in relation to the use of Organisational Suitability Assessments for staff within Intelligence Organisations."	="Office of the Inspector-General of Intelligence and Security"	06-Feb-08	="Psychologists services"	31-Aug-07	21-Jan-08	17105.00	=""	="Workplace Research Associates"	06-Feb-08 02:55 PM	

+="CN58730"	"Transport - Official Visit"	="Department of the Prime Minister and Cabinet"	06-Feb-08	="Passenger transport"	19-Dec-07	20-Dec-07	12900.00	=""	="COMCAR"	06-Feb-08 02:56 PM	

+="CN58731"	" Cold Weather Wool Hoods "	="Defence Materiel Organisation"	06-Feb-08	="Insulated clothing for cold environments"	06-Feb-08	30-Jun-08	46431.00	="2480021"	="Amare Safety"	06-Feb-08 02:57 PM	

+="CN58734-A1"	" Equipment Hire "	="Department of the Prime Minister and Cabinet"	06-Feb-08	="Marquees"	10-Dec-07	20-Dec-07	15900.00	=""	="KENNARDS EVENTS PTY LTD"	06-Feb-08 03:15 PM	

+="CN58735-A1"	"Professional Assistance for tender preparation"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Professional procurement services"	01-Mar-06	31-Mar-08	24178.22	=""	="G & K Conn"	06-Feb-08 03:18 PM	

+="CN58736"	"motor vehicle spare parts"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	07-Mar-08	23568.82	=""	="LANDROVER"	06-Feb-08 03:24 PM	

+="CN58739"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	07-Mar-08	13421.45	=""	="Rover Australia"	06-Feb-08 03:33 PM	

+="CN58740"	"Motor Vehicle Parts"	="Department of Defence"	06-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	06-Mar-08	21928.72	=""	="Volvo Commericial Vehicles"	06-Feb-08 03:38 PM	

+="CN58742-A1"	" Purchase off-shelf mail classification products "	="Office of the Director of Public Prosecutions"	06-Feb-08	="Software"	16-Nov-07	30-Nov-10	34764.73	=""	="Titus Labs"	06-Feb-08 03:44 PM	

+="CN58743-A6"	"Provision of capacity building and administrative support services in Timor Leste"	="Australian Federal Police"	06-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Jan-09	3641862.00	=""	="Hassall & Associates Pty. Ltd."	06-Feb-08 03:47 PM	

+="CN58752"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	06-Feb-08	="Community and social services"	10-Dec-07	30-Jun-08	23508.31	=""	="Wardaman Aboriginal Corporation (Binjari)"	06-Feb-08 04:17 PM	

+="CN58756"	"LIGHT, MARKER, DISTRESS"	="Defence Materiel Organisation"	06-Feb-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Mar-08	16439.50	=""	="RFD (AUSTRALIA) PTY LTD"	06-Feb-08 04:28 PM	

+="CN58757"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	06-Feb-08	="Community and social services"	01-Jan-08	30-Jun-08	28884.55	=""	="Nauiyu Nambiyu Community Government Council"	06-Feb-08 04:33 PM	

+="CN58758"	"Engineering Consultancy Services - Sydney Office"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Strategic planning consultation services"	08-Jan-08	31-Aug-08	47410.00	=""	="Medland Metropolis"	06-Feb-08 04:46 PM	

+="CN58760"	"Legal Services"	="Australian Electoral Commission"	06-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	500000.00	="AEC06/032"	="Australian Government Solicitor"	06-Feb-08 04:47 PM	

+="CN58761"	"NSN 1680-01-066-5644, Guide Assemblies"	="Defence Materiel Organisation"	06-Feb-08	="Aerospace systems and components and equipment"	23-Nov-07	04-Aug-08	14770.14	=""	="Milspec Services Pty Ltd"	06-Feb-08 04:49 PM	

+="CN58762"	"Purchase of PC's, Monitor's & Notebooks"	="Office of the Director of Public Prosecutions"	06-Feb-08	="Computer Equipment and Accessories"	20-Nov-07	19-Mar-12	1567068.37	=""	="HP Australia"	06-Feb-08 05:09 PM	

+="CN58763"	"M113 Upgrade parts - Valve Linear"	="Department of Defence"	07-Feb-08	="Armoured fighting vehicles"	06-Feb-08	06-May-08	54634.58	=""	="HIAB AUSTRALIA PTY LTD"	07-Feb-08 07:58 AM	

+="CN58764"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	07-Feb-08	="Aircraft spars"	06-Feb-08	06-May-09	10774.51	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	07-Feb-08 08:03 AM	

+="CN58765"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	07-Feb-08	="Aircraft spars"	06-Feb-08	03-Oct-08	28109.40	=""	="MILSPEC SERVICES PTY LTD"	07-Feb-08 08:10 AM	

+="CN58768"	" 9150 00-961-8995 AIRCRAFT AND INSTRUMENT GREASE  KRYTOX 240 AC IN 80Z TUBES  QTY 55 "	="Defence Materiel Organisation"	07-Feb-08	="Lubricants and oils and greases and anti corrosives"	01-Feb-08	08-Feb-08	16865.54	=""	="A S Harrison & CO"	07-Feb-08 08:43 AM	

+="CN58769"	" Provision of advice on FBT and salary packaging arrangements "	="Future Fund Management Agency"	07-Feb-08	="Accounting services"	06-Feb-08	29-Feb-08	10000.00	=""	="PricewaterhouseCoopers"	07-Feb-08 08:47 AM	

+="CN58772"	" Building Joinery to Building 179 Black Mountain  2007-045 "	="CSIRO"	07-Feb-08	="General building construction"	03-Dec-07	13-Aug-08	22415.25	="CSIRORFT2007-045"	="Interior Constructions Pty Ltd"	07-Feb-08 08:58 AM	

+="CN58773"	"Remuneration consulting services"	="Future Fund Management Agency"	07-Feb-08	="Accounting services"	06-Feb-08	18-Feb-08	16500.00	=""	="PricewaterhouseCoopers"	07-Feb-08 08:59 AM	

+="CN58774"	" Laboratory Joinery to Building 179 Black Mountain  2007-046 "	="CSIRO"	07-Feb-08	="General building construction"	14-Dec-07	13-Aug-08	257979.70	="CSIRORFT2007-046"	="Pioneer Kitchens and Joinery Pty Ltd"	07-Feb-08 09:03 AM	

+="CN58775"	" Partitions and Ceilings to Building 179 Black Mountain  2007-053 "	="CSIRO"	07-Feb-08	="General building construction"	03-Dec-07	30-Jun-08	586363.30	="CSIRORFT2007-053"	="AK Commercial Linings Pty Ltd"	07-Feb-08 09:08 AM	

+="CN58778-A3"	"wire services"	="Australian Office of Financial Management"	07-Feb-08	="Data services"	20-Dec-07	19-Dec-11	1570327.00	=""	="Thomson Reuters Aust Pty Ltd"	07-Feb-08 09:50 AM	

+="CN58780"	" REPAIR OF AIRCRAFT COMPONENTS: NSN 6695-01-279-8671  TRANSDUCER SERIAL NO: 1708 "	="Department of Defence"	07-Feb-08	="Military rotary wing aircraft"	21-Jan-08	01-Jul-08	10230.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	07-Feb-08 10:09 AM	

+="CN58750"	"Court Building Repair and Maintenance (Federal Court proportion)"	="Federal Court of Australia"	07-Feb-08	="Building and Construction and Maintenance Services"	01-Jan-07	31-Dec-10	2868820.00	=""	="SPOTLESS GROUP LIMITED"	07-Feb-08 10:13 AM	

+="CN58782"	"Supply and deliver quantity 3ea of Cylinder assembly actuating linear : Hitch Lift ,HRV"	="Defence Materiel Organisation"	07-Feb-08	="Hydraulic cylinders"	31-Jan-08	05-May-08	21384.00	=""	="VOLVO COMMERCIAL VEHICLES"	07-Feb-08 10:13 AM	

+="CN58781"	" Motor Cycle Parts. "	="Department of Defence"	07-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	29-Feb-08	15545.42	=""	="Polaris Sales Australia"	07-Feb-08 10:19 AM	

+="CN58783"	"Motor vehicle parts."	="Department of Defence"	07-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Feb-08	27-Feb-08	11060.76	=""	="Mercedes Benz Aust. Pacific"	07-Feb-08 10:21 AM	

+="CN58784"	"Stave wood targets."	="Department of Defence"	07-Feb-08	="National Defence and Public Order and Security and Safety Services"	06-Feb-08	05-Mar-08	17820.00	=""	="Harper Timber"	07-Feb-08 10:34 AM	

+="CN58786-A2"	"Supply and deliver Qantity 30 KT of WHEELSTUD KIT,VEHICLE AXLES: FRONT STEER and REAR DRIVE WHEEL"	="Defence Materiel Organisation"	07-Feb-08	="Axle repair kits"	01-Feb-08	30-Apr-08	69630.00	=""	="VOLVO COMMERCIAL VEHICLES"	07-Feb-08 10:38 AM	

+="CN58792"	"Security Services Adelaide Court Building (Federal Court proportion)"	="Federal Court of Australia"	07-Feb-08	="Security or access control systems"	01-Dec-06	31-Mar-08	374205.00	=""	="CHUBB"	07-Feb-08 10:50 AM	

+="CN58793-A1"	"Provision for Project Manager"	="Comsuper"	07-Feb-08	="Human resources services"	06-Feb-08	30-Apr-08	70000.00	=""	="Oakton AA Services"	07-Feb-08 10:56 AM	

+="CN58785"	"Provision of facilitation services"	="Office of the Commonwealth Ombudsman"	07-Feb-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	03-Nov-07	11880.00	=""	="ThinkPlace Pty Ltd t/a Thinkplace Trust"	07-Feb-08 11:06 AM	

+="CN58797"	"Provision For Training and Development"	="Department of Immigration and Citizenship"	07-Feb-08	="Human resources services"	12-Dec-07	31-Mar-08	68200.00	=""	="Total Learn Pty Ltd"	07-Feb-08 11:15 AM	

+="CN58798"	"Cleaning Services Brisbane Court Building (Federal Court proportion)"	="Federal Court of Australia"	07-Feb-08	="Management and Business Professionals and Administrative Services"	17-May-04	16-May-08	539330.00	=""	="ELLEMS CLEANING SERVICES"	07-Feb-08 11:16 AM	

+="CN58801"	"motor vehicle spare parts"	="Department of Defence"	07-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Feb-08	08-Mar-08	38956.83	=""	="LANDROVER"	07-Feb-08 11:25 AM	

+="CN58802"	"Electricty Supply Canberra Court Building (Federal Court proportion)"	="Federal Court of Australia"	07-Feb-08	="Supply of three phase electricity"	01-Jul-07	30-Jun-09	147422.00	=""	="ACTEW"	07-Feb-08 11:27 AM	

+="CN58803-A1"	"Provision of services in relation to IT Security architecture."	="Australian Federal Police"	07-Feb-08	="Engineering and Research and Technology Based Services"	22-Oct-07	30-Jun-08	163592.00	=""	="Greythorn Pty Ltd"	07-Feb-08 11:29 AM	

+="CN58804"	"Project Manager Video Conferencing"	="Civil Aviation Safety Authority"	07-Feb-08	="Recruitment services"	02-Feb-08	30-Jun-08	126720.00	="06/114-04"	="Verossity Pty Ltd"	07-Feb-08 11:29 AM	

+="CN58808"	"Provision for Training and Development"	="Department of Immigration and Citizenship"	07-Feb-08	="Human resources services"	31-May-07	31-Dec-07	82500.00	=""	="Total Learn Pty Ltd"	07-Feb-08 11:36 AM	

+="CN58807"	" M113 CARRIER UPGRADE, HIAB CRANE  "	="Department of Defence"	07-Feb-08	="Armoured fighting vehicles"	06-Feb-08	30-Apr-08	83061.97	=""	="HIAB AUSTRALIA PTY LTD"	07-Feb-08 11:37 AM	

+="CN58810"	"Property Lease - Division of Forrest"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	155000.00	=""	="Minister for Works"	07-Feb-08 11:44 AM	

+="CN58812-A4"	"Engineering Advise provided to AFP Projects"	="Australian Federal Police"	07-Feb-08	="Engineering and Research and Technology Based Services"	03-Dec-07	03-Mar-08	363000.00	=""	="B. Armstrong and CO Pty Ltd"	07-Feb-08 11:49 AM	

+="CN58814"	"Cleaning Services melbourne Court Building (Federal Court Proportion)"	="Federal Court of Australia"	07-Feb-08	="Management and Business Professionals and Administrative Services"	06-Aug-03	05-Aug-08	991562.00	=""	="MUTUAL CLEANING"	07-Feb-08 11:49 AM	

+="CN58813"	"M113 CARRIER UPGRADE, HIAB CRANE PARTS"	="Department of Defence"	07-Feb-08	="Armoured fighting vehicles"	07-Feb-08	07-May-08	22894.72	=""	="HIAB AUSTRALIA PTY LTD"	07-Feb-08 11:49 AM	

+="CN58816"	"Property Lease - Division of Forde"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	13-Feb-08	12-Feb-11	200000.00	=""	="Permanent Trustee Australia Ltd"	07-Feb-08 11:50 AM	

+="CN58820"	"Electricity Supply Adelaide Court Building (Federal Court proportion)"	="Federal Court of Australia"	07-Feb-08	="Supply of three phase electricity"	06-Jul-07	30-Jun-10	299023.00	=""	="COUNTRY ENERGY"	07-Feb-08 12:00 PM	

+="CN58823"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	07-Feb-08	="Aircraft"	07-Feb-08	07-Apr-08	25976.92	=""	="Sikorsky Aircraft Australia LTD"	07-Feb-08 12:19 PM	

+="CN58825-A1"	"Contract Labour Hire - Refer 1690334"	="Department of the Prime Minister and Cabinet"	07-Feb-08	="Temporary information technology software developers"	01-Sep-07	31-Dec-08	63300.00	=""	="Westbourne Group Pty Ltd"	07-Feb-08 12:32 PM	

+="CN58826-A1"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	07-Feb-08	="Aircraft"	07-Feb-08	07-Apr-08	25976.92	=""	="Sikorsky Aircraft Australia LTD"	07-Feb-08 12:33 PM	

+="CN58829"	" SERVICE AND REPAIR TO CORAL SNAKE FASSI CRANE "	="Department of Defence"	07-Feb-08	="Crane vehicles"	03-Aug-07	17-Sep-07	23813.24	=""	="MACHFORCE WA PTY LTD"	07-Feb-08 01:06 PM	

+="CN58830"	"Geotechnical Investigation"	="National Capital Authority"	07-Feb-08	="Land surveying"	04-Dec-07	15-Feb-08	75680.00	=""	="Coffey Geotechnics"	07-Feb-08 01:14 PM	

+="CN58834"	"MONITOR PATIENT VITAL SIGNS PORTABLE & ACCESSORIES"	="Defence Materiel Organisation"	07-Feb-08	="Medical Equipment and Accessories and Supplies"	09-Jan-08	19-Feb-08	23344.64	=""	="WELCH ALLYN AUSTRALIA P/L"	07-Feb-08 01:39 PM	

+="CN58835"	"FMIS Support Services"	="Civil Aviation Safety Authority"	07-Feb-08	="Application programming services"	02-Jan-08	30-Jun-08	257400.00	="06/093-02"	="Oracle Systems (Australia) Pty Ltd"	07-Feb-08 01:43 PM	

+="CN58837"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	210085.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:57 PM	

+="CN58838"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	210085.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:57 PM	

+="CN58839"	"Temporary Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	04-Jan-08	30-Apr-08	55440.00	=""	="PEOPLEBANK"	07-Feb-08 01:57 PM	

+="CN58840"	"Electricity Supply"	="Child Support Agency"	07-Feb-08	="Utilities"	09-Jan-08	30-Jun-08	15000.00	=""	="ACTEWAGL RETAIL"	07-Feb-08 01:57 PM	

+="CN58841"	"Re-Engineering of Human Resource Functions"	="Child Support Agency"	07-Feb-08	="Human resources services"	11-Jan-08	31-Mar-08	20000.00	=""	="YELLOW EDGE PTY LTD"	07-Feb-08 01:57 PM	

+="CN58842"	"Exhibition Stands"	="Child Support Agency"	07-Feb-08	="Advertising"	14-Jan-08	30-Jun-08	22778.91	=""	="PREGNANCY BABIES & CHILDRENS"	07-Feb-08 01:57 PM	

+="CN58843"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	173283.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:57 PM	

+="CN58844"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	58099.80	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58845"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	39549.40	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58846"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	39549.40	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58847"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	174625.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58848"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	174625.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58849"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	173283.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 01:58 PM	

+="CN58850"	"Stationery Supplies"	="Child Support Agency"	07-Feb-08	="Office supplies"	14-Jan-08	30-Jun-08	10000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	07-Feb-08 01:58 PM	

+="CN58851"	"External Training"	="Child Support Agency"	07-Feb-08	="Information services"	21-Jan-08	21-Feb-08	10000.00	=""	="ROYAL AGRICULTURAL SOCIETY OF NSW"	07-Feb-08 01:59 PM	

+="CN58852"	"Temporary ICT Contractor"	="Child Support Agency"	07-Feb-08	="Human resources services"	22-Jan-08	29-Feb-08	30800.00	=""	="FREELANCE GLOBAL LIMITED"	07-Feb-08 01:59 PM	

+="CN58853"	"ICT Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	24-Jan-08	30-Jun-08	400000.00	=""	="F1 SOLUTIONS PTY LTD"	07-Feb-08 01:59 PM	

+="CN58854"	"Property Lease"	="Child Support Agency"	07-Feb-08	="Real estate services"	24-Jan-08	31-Jan-08	89422.30	=""	="JONES LANG LASALLE"	07-Feb-08 01:59 PM	

+="CN58856"	"Leased Vehicles"	="Child Support Agency"	07-Feb-08	="Travel facilitation"	24-Jan-08	01-Aug-10	51721.04	=""	="LEASEPLAN AUSTRALIA LIMITED"	07-Feb-08 01:59 PM	

+="CN58857"	"Staff Removals"	="Child Support Agency"	07-Feb-08	="Mail and cargo transport"	30-Jan-08	30-Jan-08	13269.30	=""	="WRIDGWAYS LIMITED"	07-Feb-08 01:59 PM	

+="CN58858"	"External Training"	="Child Support Agency"	07-Feb-08	="Information services"	18-Jan-08	21-Feb-08	14000.00	=""	="PETER ROWLAND CATERING PTY LTD"	07-Feb-08 02:00 PM	

+="CN58859"	"Recruitment Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	15-Jan-08	15-Jan-08	16632.00	=""	="DFP RECRUITMENT SERVICES"	07-Feb-08 02:00 PM	

+="CN58860"	"Rent & Building Outgoings"	="Child Support Agency"	07-Feb-08	="Building and Construction Machinery and Accessories"	16-Jan-08	31-May-14	6880528.93	=""	="JONES LANG LASALLE (VIC) P/L"	07-Feb-08 02:00 PM	

+="CN58855"	"IT Infrastructure Project Manager"	="Civil Aviation Safety Authority"	07-Feb-08	="Application programming services"	29-Mar-08	30-Jun-08	90000.00	="06/157-03"	="Opcomm Pty Ltd"	07-Feb-08 02:00 PM	

+="CN58862"	"Cleaning Services"	="Child Support Agency"	07-Feb-08	="Cleaning Equipment and Supplies"	17-Jan-08	30-Apr-08	149999.99	=""	="MENZIES INTERNATIONAL (AUST) PTY LT"	07-Feb-08 02:00 PM	

+="CN58863"	"Production of DVD"	="Child Support Agency"	07-Feb-08	="Business administration services"	17-Jan-08	30-Jan-08	55000.00	=""	="BEARCAGE PRODUCTIONS"	07-Feb-08 02:00 PM	

+="CN58864"	"Rent and Building Outgoings"	="Child Support Agency"	07-Feb-08	="Building and Construction Machinery and Accessories"	18-Jan-08	28-Feb-18	12485462.59	=""	="BELLALA PTY LTD"	07-Feb-08 02:00 PM	

+="CN58865"	"Credit Searches"	="Child Support Agency"	07-Feb-08	="Information services"	18-Jan-08	30-Jun-08	10000.00	=""	="VEDA ADVANTAGE"	07-Feb-08 02:01 PM	

+="CN58861"	"Property Lease - Division of Dunkley"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	130000.00	=""	="RAM Nominees Pty Ltd"	07-Feb-08 02:01 PM	

+="CN58866"	"Temporary Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	27-Sep-07	23-Jan-08	12313.56	=""	="HAYS METIER PERSONNEL"	07-Feb-08 02:01 PM	

+="CN58867"	"Staff Short Term Accommodation"	="Child Support Agency"	07-Feb-08	="Hotels and lodging and meeting facilities"	18-Jan-08	31-Jan-08	15400.00	=""	="MALONEY'S REAL ESTATE"	07-Feb-08 02:01 PM	

+="CN58868"	"Provision of BPAY Services"	="Child Support Agency"	07-Feb-08	="Banking and investment"	04-Sep-07	31-Dec-07	250514.41	=""	="COMMONWEALTH BANK"	07-Feb-08 02:01 PM	

+="CN58869"	"Leased Vehicles"	="Child Support Agency"	07-Feb-08	="Travel facilitation"	08-Aug-07	30-Jun-08	22163.02	=""	="LEASEPLAN AUSTRALIA LIMITED"	07-Feb-08 02:01 PM	

+="CN58870"	"Temporary Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	10-Dec-07	20-Feb-08	95040.00	=""	="COLLECTIVE RESOURCES (OXFORD"	07-Feb-08 02:01 PM	

+="CN58871"	"External Training"	="Child Support Agency"	07-Feb-08	="Educational facilities"	10-Dec-07	30-Jun-08	49500.00	=""	="UNIVERSITY OF ADELAIDE"	07-Feb-08 02:01 PM	

+="CN58872"	"License Upgrade"	="Child Support Agency"	07-Feb-08	="Computer Equipment and Accessories"	24-Jul-07	28-Feb-08	48362.04	=""	="IDENTITY SYSTEMS PTY LTD"	07-Feb-08 02:02 PM	

+="CN58873"	"Courier Services"	="Child Support Agency"	07-Feb-08	="Mail and cargo transport"	31-Aug-07	30-Apr-08	17371.34	=""	="TOLL PRIORITY"	07-Feb-08 02:02 PM	

+="CN58875"	"ICT Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	17-Jan-08	30-Jun-08	103511.10	=""	="PAXUS AUSTRALIA PTY LTD"	07-Feb-08 02:02 PM	

+="CN58876"	"ICT Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	17-Aug-07	30-Jun-09	133452.00	=""	="ACUMEN CONTRACTING PTY LTD"	07-Feb-08 02:02 PM	

+="CN58877"	"ICT Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	17-Jan-08	30-Jun-09	217360.00	=""	="SECURELINK"	07-Feb-08 02:02 PM	

+="CN58878"	"ICT Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	17-Aug-07	30-Jun-08	56980.00	=""	="BCT GROUP"	07-Feb-08 02:02 PM	

+="CN58879"	"Legal Advice"	="Child Support Agency"	07-Feb-08	="Legal services"	07-Dec-07	30-Jun-08	19999.99	=""	="BLAKE DAWSON"	07-Feb-08 02:03 PM	

+="CN58880"	"Temporary ICT Contractors"	="Child Support Agency"	07-Feb-08	="Business administration services"	11-Jan-08	31-Jan-08	33066.50	=""	="F1 SOLUTIONS PTY LTD"	07-Feb-08 02:03 PM	

+="CN58874-A2"	"Provision of services in relation to business analysis activities for AFP applications/systems"	="Australian Federal Police"	07-Feb-08	="Engineering and Research and Technology Based Services"	09-Jan-07	11-Feb-08	246109.60	=""	="Greythorn Pty Ltd"	07-Feb-08 02:03 PM	

+="CN58881"	"Credit Searches"	="Child Support Agency"	07-Feb-08	="Credit agencies"	02-Jan-08	31-Jan-08	24200.00	=""	="VEDA ADVANTAGE"	07-Feb-08 02:03 PM	

+="CN58882"	"Government Searches"	="Child Support Agency"	07-Feb-08	="Work related organisations"	02-Jan-08	31-Jan-08	17600.00	=""	="CITEC"	07-Feb-08 02:03 PM	

+="CN58883"	"Government Searches"	="Child Support Agency"	07-Feb-08	="Work related organisations"	02-Jan-08	31-Jan-08	17600.00	=""	="CITEC"	07-Feb-08 02:03 PM	

+="CN58884"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	344215.30	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 02:03 PM	

+="CN58885"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	344215.30	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 02:04 PM	

+="CN58886"	"Legal Services"	="Child Support Agency"	07-Feb-08	="Legal services"	03-Jan-08	30-Jun-08	58099.80	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	07-Feb-08 02:04 PM	

+="CN58887"	"Security Services"	="Child Support Agency"	07-Feb-08	="Security surveillance and detection"	02-Jan-08	30-Jun-08	22000.00	=""	="CHUBB PROTECTIVE SERVICES (NSW)"	07-Feb-08 02:04 PM	

+="CN58888"	"Design of Reporting Tool"	="Child Support Agency"	07-Feb-08	="Business administration services"	04-Jan-08	31-Jan-08	41800.00	=""	="XGLOBAL"	07-Feb-08 02:04 PM	

+="CN58889"	"Cleaning Services"	="Child Support Agency"	07-Feb-08	="Cleaning Equipment and Supplies"	04-Feb-08	30-Jun-08	25740.00	=""	="BUILDING & INDUSTRIAL CLEANING"	07-Feb-08 02:04 PM	

+="CN58891"	"Contractor Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	10-Jan-08	30-Jan-08	10800.00	=""	="CHARTER MASON ATF ANTZ SERVICES TRU"	07-Feb-08 02:04 PM	

+="CN58890"	"Support and Maintenance extension for CASA's FMIS System Peoplesoft"	="Civil Aviation Safety Authority"	07-Feb-08	="Application programming services"	11-Aug-07	10-Aug-08	11179.00	="06/161-02"	="Oracle Systems (Australia) Pty Ltd"	07-Feb-08 02:05 PM	

+="CN58892"	"Recruitment Services"	="Child Support Agency"	07-Feb-08	="Human resources services"	21-Dec-07	30-Jun-08	20955.00	=""	="VEDIOR ASIA PACIFIC PTY LTD"	07-Feb-08 02:05 PM	

+="CN58893"	"Interpreting Services"	="Child Support Agency"	07-Feb-08	="Writing and translations"	02-Jan-08	31-Jan-08	26400.00	=""	="DEPARTMENT OF IMMIGRATION AND"	07-Feb-08 02:05 PM	

+="CN58895"	"Property Lease - Division of Brand"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	80000.00	=""	="Westplan Engineering Pty Ltd"	07-Feb-08 02:08 PM	

+="CN58896"	"Melbourne Office Refurbishment"	="Civil Aviation Safety Authority"	07-Feb-08	="Refurbishing services"	01-Aug-07	01-Jan-08	133429.00	="06/211-00"	="Interior Contracts Pty Ltd"	07-Feb-08 02:12 PM	

+="CN58897"	"Property Lease - Division of Chifley"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-10	93000.00	=""	="Formton Pty Ltd"	07-Feb-08 02:14 PM	

+="CN58898"	"Consultancy Service - Development of Capital Budget Plan"	="Civil Aviation Safety Authority"	07-Feb-08	="Government budgeting services"	25-Nov-07	28-Feb-08	62000.00	="06/223-00"	="Ascent Governance Pty Ltd"	07-Feb-08 02:17 PM	

+="CN58899"	"Property Lease - Division of Hughes"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	135000.00	=""	="Grosvenor No. 19 Pty Ltd"	07-Feb-08 02:19 PM	

+="CN58900"	"Safety Auditor services - Self Administered associations"	="Civil Aviation Safety Authority"	07-Feb-08	="Recruitment services"	22-Jan-08	21-Jul-08	70000.00	="07/007-00"	="GMT People Pty Ltd"	07-Feb-08 02:23 PM	

+="CN58902"	"Property Lease - Division of Lowe"	="Australian Electoral Commission"	07-Feb-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	135000.00	=""	="MEMO Corporation Australia Pty Ltd"	07-Feb-08 02:25 PM	

+="CN58904"	"Adobe Forms Consultancy and Training - Additional Consultancy Services"	="Civil Aviation Safety Authority"	07-Feb-08	="Information technology consultation services"	16-Jan-08	29-Aug-08	24100.00	="07/044-01"	="Avoka Technologies"	07-Feb-08 02:32 PM	

+="CN58907"	"IT Tester"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology systems or database administrators"	01-Feb-08	30-Jun-08	76032.00	="07/054-01"	="Oakton AA Services Pty Ltd"	07-Feb-08 02:52 PM	

+="CN58908"	" Agricultural workshop "	="Australian Centre for International Agricultural Research"	07-Feb-08	="Workshops"	31-Jan-08	12-Nov-08	16500.00	=""	="University of New England"	07-Feb-08 02:52 PM	

+="CN58909"	"Temporary Staff - IT Testers"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology systems or database administrators"	01-Feb-08	30-Jun-08	24640.00	="07/055-02"	="Oakton AA Services Pty Ltd"	07-Feb-08 03:00 PM	

+="CN58912"	"Printing of NAT5196-1.2003 Dual WF DL Envelopes"	="Australian Taxation Office"	07-Feb-08	="Window envelopes"	08-Feb-08	22-Feb-08	71244.90	=""	="Envotec t/a Australian Envelopes"	07-Feb-08 03:08 PM	

+="CN58913"	"Project review"	="Australian Centre for International Agricultural Research"	07-Feb-08	="Agricultural research services"	13-Apr-08	30-Apr-08	12000.00	=""	="Dr David Connor"	07-Feb-08 03:15 PM	

+="CN58918"	"Drug & Alcohol Data collection"	="Civil Aviation Safety Authority"	07-Feb-08	="Legal services"	01-Nov-07	31-Oct-08	74800.00	="07/070-00"	="DAVPAC Pty Ltd"	07-Feb-08 03:22 PM	

+="CN58919"	"Agricultural training"	="Australian Centre for International Agricultural Research"	07-Feb-08	="Agriculture and forestry and other natural resources training services"	01-Feb-08	31-May-08	29920.00	=""	="NACA"	07-Feb-08 03:24 PM	

+="CN58920"	"IT Testing Services"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology networking specialists"	01-Feb-08	30-Jun-08	101376.00	="07/082-02"	="Oakton AA Services Pty Ltd"	07-Feb-08 03:26 PM	

+="CN58921"	"CRS Aust - Gladstone, Shop 3/135 Goondoon Street, Gladstone QLD"	="CRS Australia"	07-Feb-08	="Lease and rental of property or building"	01-Oct-07	30-Sep-09	41066.75	=""	="Grace Swenson"	07-Feb-08 03:29 PM	

+="CN58914"	"CRS - Albury Suite 8, First Floor, 539-541 Kiewa Street Albury NSW"	="CRS Australia"	07-Feb-08	="Lease and rental of property or building"	01-Sep-07	30-Jun-10	211519.62	=""	="Alessi Aust Pty Ltd"	07-Feb-08 03:34 PM	

+="CN58923"	"Temporary Staff - IT testers"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology networking specialists"	01-Feb-08	30-Jun-08	76032.00	="07/099-01"	="Oakton AA Services Pty Ltd"	07-Feb-08 03:38 PM	

+="CN58928"	"IT Infrastructure Market Testing"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology networking specialists"	07-Jan-08	30-Jun-08	492200.00	="07/100-00"	="Acumen Alliance (ACT) Pyt Ltd"	07-Feb-08 03:56 PM	

+="CN58931"	"Press Clippings"	="Department of the Prime Minister and Cabinet"	07-Feb-08	="Printed media"	01-Nov-07	30-Nov-07	16100.00	=""	="MEDIA MONITORS PTY LTD"	07-Feb-08 03:57 PM	

+="CN58934"	"PRESS CLIPPINGS "	="Department of the Prime Minister and Cabinet"	07-Feb-08	="Printed media"	01-Oct-07	31-Oct-07	17000.00	=""	="MEDIA MONITORS"	07-Feb-08 04:03 PM	

+="CN58938"	"Software Contract Review"	="Civil Aviation Safety Authority"	07-Feb-08	="Financial accounting"	21-Jan-08	30-Apr-08	55000.00	="07/124-00"	="Total Decision Support Pty Ltd"	07-Feb-08 04:03 PM	

+="CN58939"	"Provision of SAP Enterprise Portal Consulting Services"	="CRS Australia"	07-Feb-08	="Operating system programming services"	01-Aug-07	31-Aug-07	32340.00	=""	="Supply Chain Consulting Pty Ltd"	07-Feb-08 04:06 PM	

+="CN58940-A1"	"Supply and installation of computer cabling"	="Australian Federal Police"	07-Feb-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	28256.80	="37-2005"	="Absolute Cabling Systems Pty Ltd"	07-Feb-08 04:07 PM	

+="CN58942"	"Development of a Drug & Alcohol Mini Web Site"	="Civil Aviation Safety Authority"	07-Feb-08	="World wide web WWW site design services"	04-Jan-08	29-Feb-08	11220.00	="07/132-00"	="Visual Jazz Pty Ltd"	07-Feb-08 04:11 PM	

+="CN58944"	"Business Support Office Contractor"	="Civil Aviation Safety Authority"	07-Feb-08	="Recruitment services"	09-Jan-08	30-Jun-08	95700.00	="07/133-00"	="Hudson Global Resources (Aust) Pty Ltd"	07-Feb-08 04:15 PM	

+="CN58943"	"Repair carried out to Black Hawk Helicopter Tail Rotor Pylon assembly, P/N 70083-06050-041, Ser No. A330-00919 at SAAL. "	="Defence Materiel Organisation"	07-Feb-08	="Military rotary wing aircraft"	31-Jan-08	04-Feb-08	29058.25	=""	="Sikorsky Aircraft Austalia Limited"	07-Feb-08 04:16 PM	

+="CN58945"	" Computer Maintenance "	="Department of the Prime Minister and Cabinet"	07-Feb-08	="Computer hardware maintenance or support"	14-Jan-08	28-Jan-08	63800.00	=""	="TECHNOLOGY ONE PTY LTD"	07-Feb-08 04:17 PM	

+="CN58947-A1"	"Supply and instalation of cabling services."	="Australian Federal Police"	07-Feb-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	54439.72	="37-2005"	="Absolute Cabling Systems Pty Ltd"	07-Feb-08 04:21 PM	

+="CN58950"	"Softrware Maintenance"	="Department of the Prime Minister and Cabinet"	07-Feb-08	="Software maintenance and support"	04-Feb-08	03-Feb-09	20500.00	=""	="INFRA CORPORATION Pty Ltd"	07-Feb-08 04:23 PM	

+="CN58955"	" 1. 9150 66-089-6558 Engine Lubricating Oil oOMD 115 in 20L x200 Drums  2. 9150 66-083-9744 Air Compressor Lubricating Oil OM-58 in 20Lx40 Drums "	="Defence Materiel Organisation"	07-Feb-08	="Lubricants and oils and greases and anti corrosives"	07-Feb-08	15-Feb-08	15813.60	=""	="CALTEX"	07-Feb-08 04:28 PM	

+="CN58957"	"Purchase of Aircraft spares"	="Defence Materiel Organisation"	07-Feb-08	="Aircraft"	07-Feb-08	24-Mar-08	80102.20	=""	="Helitech Pty Ltd"	07-Feb-08 04:29 PM	

+="CN58958"	"Repair of Black Hawk Axial Fan assembly, P/N 70361-03005-107, Ser No. 9D95R0037"	="Defence Materiel Organisation"	07-Feb-08	="Military rotary wing aircraft"	25-Jan-08	04-Feb-08	11855.58	=""	="Sikorsky Aircraft Australia Limited"	07-Feb-08 04:29 PM	

+="CN58946"	"Temporary staff - IT Testers"	="Civil Aviation Safety Authority"	07-Feb-08	="Temporary information technology networking specialists"	01-Mar-08	30-Jun-08	88704.00	="07/149-01"	="Oakton AA Services Pty Ltd"	07-Feb-08 04:41 PM	

+="CN58963"	" Design Contractor Services for new facility at CSIRO Sustainable Ecosystems at Desert Knowledge Precinct Alice Springs  2007-056 "	="CSIRO"	07-Feb-08	="Building support services"	05-Dec-07	30-Nov-08	294294.00	="CSIRORFT2007-056"	="MKEA Architects Pty Ltd"	07-Feb-08 04:46 PM	

+="CN58968"	"Property Consultant"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	16-Jan-08	30-Jun-08	70000.00	="07/156-00"	="Hays Personnel Services (Australia) Pty Ltd"	08-Feb-08 08:50 AM	

+="CN58969"	"Business Support Officer Contractor - Additional Staff"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	09-Jan-08	30-Jun-08	95700.00	="07/160-00"	="Hays Personnel Services (Australia) Pty Ltd"	08-Feb-08 08:54 AM	

+="CN58971"	"Provision of Business Analyst - Replacement"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	04-Feb-08	30-Jun-08	80256.00	="07/161-00"	="Peoplebank Australian Ltd (ACT)"	08-Feb-08 08:57 AM	

+="CN58937"	"Software Contract Review"	="Civil Aviation Safety Authority"	08-Feb-08	="Financial accounting"	21-Jan-08	30-Apr-08	55000.00	="07/124-00"	="Total Decision Support Pty Ltd"	08-Feb-08 09:00 AM	

+="CN58972"	"IT Infrastructure Market testing - Probity Services"	="Civil Aviation Safety Authority"	08-Feb-08	="Temporary information technology networking specialists"	14-Jan-08	30-Jun-08	30000.00	="07/172-00"	="Walter Turnbull Pyt Ltd"	08-Feb-08 09:07 AM	

+="CN58974"	"WAN Optimisation Appliance Implementation"	="Civil Aviation Safety Authority"	08-Feb-08	="Temporary information technology systems or database administrators"	02-Jan-08	01-Jan-11	480000.00	="07/108-00"	="XSI Data Solutions"	08-Feb-08 09:14 AM	

+="CN58977"	"Removals"	="Department of the Prime Minister and Cabinet"	08-Feb-08	="Freight loading or unloading"	08-Oct-07	08-Oct-07	15300.00	=""	="KENT Moving and Storage"	08-Feb-08 09:32 AM	

+="CN58978"	"Consultancy Costs"	="Department of Finance and Administration"	08-Feb-08	="Management and Business Professionals and Administrative Services"	27-Oct-07	31-Dec-07	759000.00	="FIN07/BUD001"	="BOSTON CONSULTING GROUP PTY LTD"	08-Feb-08 09:32 AM	

+="CN58979"	" Supply Packing "	="Department of the Prime Minister and Cabinet"	08-Feb-08	="Packing"	08-Oct-07	08-Oct-07	11700.00	=""	="KENT MOVING AND STORAGE"	08-Feb-08 09:38 AM	

+="CN58980"	"motor vehicle spare parts"	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	18439.52	=""	="LANDROVER"	08-Feb-08 09:39 AM	

+="CN58982"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	10381.53	=""	="LANDROVER"	08-Feb-08 09:44 AM	

+="CN58984"	"Industry Oversight Project - Policy & Procedures Development"	="Civil Aviation Safety Authority"	08-Feb-08	="Management advisory services"	04-Feb-08	30-Jun-08	98000.00	="07/173-01"	="Redwand Pty Ltd t/a Thirty South Consulting"	08-Feb-08 09:45 AM	

+="CN58985"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	10582.88	=""	="LANDROVER"	08-Feb-08 09:48 AM	

+="CN58986-A5"	" Lease at Muswellbrook, NSW "	="Department of Human Services"	08-Feb-08	="Lease and rental of property or building"	01-Oct-03	30-Sep-14	1292592.58	=""	="Shore Holdings Pty Ltd"	08-Feb-08 09:49 AM	

+="CN58987"	"Industry Oversight Project - Training Development Scope of Work"	="Civil Aviation Safety Authority"	08-Feb-08	="Management advisory services"	04-Feb-08	30-Jun-08	472000.00	="07/173-02"	="Aviation Projects Pty Ltd"	08-Feb-08 09:49 AM	

+="CN58988"	"Industry Oversight Project"	="Civil Aviation Safety Authority"	08-Feb-08	="Management advisory services"	04-Feb-08	30-Jun-08	240000.00	="07/173-03"	="Aviation Consultants International"	08-Feb-08 09:53 AM	

+="CN58989"	"Temporary Staff - Admin Assistant"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	08-Jan-08	31-Mar-08	16000.00	="07/174-00"	="Hays Personnel Services (Australia) Pty Ltd"	08-Feb-08 09:56 AM	

+="CN58991-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	01-May-09	689040.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:04 AM	

+="CN58992"	"Training Course"	="Civil Aviation Safety Authority"	08-Feb-08	="Evening courses"	08-Jan-08	03-Mar-08	14300.00	="07/175-00"	="Strategic Airspace Pty Ltd"	08-Feb-08 10:06 AM	

+="CN58995"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	498300.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:10 AM	

+="CN58994"	"Installation of a fixed monopile aid to navigation structure at Joan Reef and Miles Reef, North Queensland"	="Australian Maritime Safety Authority"	08-Feb-08	="Transport operations"	21-Dec-07	30-Jun-08	1149335.00	="RFT 850/37381"	="Giles Contractors Pty Ltd"	08-Feb-08 10:10 AM	

+="CN58997"	"Copyright and digital licence fees"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Insurance and retirement services"	01-Jan-08	31-Dec-08	11063.00	=""	="Copyright Agency Limited"	08-Feb-08 10:11 AM	

+="CN58998"	"Laboratory space rental"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Personal and Domestic Services"	01-Jan-07	31-Dec-09	33000.00	=""	="The Australian National University"	08-Feb-08 10:11 AM	

+="CN58999"	"Detector Dog Courier"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	12354.10	=""	="It's A Dog's Life Boarding and Breeding Kennels"	08-Feb-08 10:11 AM	

+="CN59001-A1"	" Provision of an independent assessment of the design and code base for the National Agricultural Monitoring System database in determining it's ability to be maintained and extended. "	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	31-Jan-08	29-Feb-08	17360.00	=""	="StratsecNet Pty Ltd"	08-Feb-08 10:12 AM	

+="CN59002"	"CAPA additional editor licence + Maintenance"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Computer services"	10-Jan-08	09-Jan-09	22440.00	=""	="Computer Associates Pty Ltd"	08-Feb-08 10:12 AM	

+="CN59003-A1"	"Licence renewal and Updates from 1 February 2008 to 31 January 2009"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Computer services"	01-Feb-08	31-Jan-09	155881.00	=""	="SAS Institute Australia Pty Ltd"	08-Feb-08 10:12 AM	

+="CN59004"	"Country Matters Publication"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Printed media"	04-Feb-08	30-Jun-08	40000.00	=""	="Paper Monkey"	08-Feb-08 10:12 AM	

+="CN59005"	"Ranger Training"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	22-Jan-08	22-Jan-08	10420.00	=""	="Layhnapuy Homelands Association Inc"	08-Feb-08 10:12 AM	

+="CN59006"	"Copyright charges"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	100000.00	=""	="Copyright Agency Limited"	08-Feb-08 10:12 AM	

+="CN59007-A1"	"Onsite Facilities Manager to deal with defect liability period of new premises in Civic."	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	14-Nov-07	28-Mar-08	59000.00	=""	="United Group Services"	08-Feb-08 10:12 AM	

+="CN59008"	"Assist with procurement process"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	01-Mar-08	30-Jun-08	50000.00	=""	="GMT Recruitment Pty Ltd"	08-Feb-08 10:13 AM	

+="CN59009"	"Onsite technical resource 29/1/08 - 22/2/08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	29-Jan-08	22-Feb-08	24444.44	=""	="Telstra Business Systems"	08-Feb-08 10:13 AM	

+="CN59010"	"Assess Organisation culture of AQIS"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	29-Jan-08	31-Mar-08	58000.00	=""	="Workplace Research Associates Pty Ltd"	08-Feb-08 10:13 AM	

+="CN59011-A1"	"OPV Seminar 12 -13 April 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	30-Apr-08	22835.00	=""	="Downtowner on Lygon"	08-Feb-08 10:13 AM	

+="CN59012"	"SMI Conference 19 -22 Aug 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	31-Aug-08	41380.00	=""	="Chifley at Lennons Brisbane"	08-Feb-08 10:13 AM	

+="CN59013"	"OPV Seminar 13 - 15 June 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	30-Jun-08	10749.70	=""	="Best Western Adelaide Riviera"	08-Feb-08 10:13 AM	

+="CN59014"	"AFMA to provide training exercise in coordination with Malaysian Authorities"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	02-Mar-08	15000.00	=""	="Australian Fisheries Management Authority"	08-Feb-08 10:13 AM	

+="CN59015"	"Provision of light aircraft for locust surveys"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Transportation and Storage and Mail Services"	01-Feb-08	31-Mar-08	33000.00	=""	="South West Air Service"	08-Feb-08 10:13 AM	

+="CN59017"	"Survey, analyis and report"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	04-Feb-08	28-Mar-08	46090.00	=""	="South Australian Centere for Economic Studies"	08-Feb-08 10:14 AM	

+="CN59018"	"Rental payment for staff housing at 24 Husness Ave, Nhulunbuy NT 0880, for the period of 1st April 08 - 31st March 09."	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Personal and Domestic Services"	01-Apr-08	31-Mar-09	40000.00	=""	="Defence Housing Australia"	08-Feb-08 10:14 AM	

+="CN59019"	"Consultancy Agreement to conduct Regional Agricultural Biotechnology Forums"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	19-Dec-07	30-May-08	25000.00	=""	="Pastoralists and Graziers Association of Western Australia"	08-Feb-08 10:14 AM	

+="CN59016-A2"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	473000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:14 AM	

+="CN59020"	"PABX maintenance and on site tech for Jan 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Computer services"	01-Jan-08	31-Jan-08	18642.88	=""	="Telstra Business Systems"	08-Feb-08 10:14 AM	

+="CN59022"	"AGNRM PEP TRAINING"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management and Business Professionals and Administrative Services"	31-Dec-07	31-Mar-08	13200.00	=""	="DEW"	08-Feb-08 10:14 AM	

+="CN59024-A2"	"Provide prefessional counselling and case management services."	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	01-Feb-08	31-Jan-12	554400.00	=""	="Davidson Trahaire Corpsych"	08-Feb-08 10:15 AM	

+="CN59025"	"ARLP Course"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	07-Feb-08	07-Mar-08	50600.00	=""	="Australian Rural Leadership Foundation"	08-Feb-08 10:15 AM	

+="CN59021"	"Attend and provide advise to CASA FRMS steering group"	="Civil Aviation Safety Authority"	08-Feb-08	="Management advisory services"	08-Jan-08	31-Dec-08	50000.00	="07/177-00"	="Sirius Safety Pty Ltd"	08-Feb-08 10:15 AM	

+="CN59026"	"Reference Services"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Human resources services"	03-Dec-07	30-May-08	24000.00	=""	="Informed Sources Pty Ltd"	08-Feb-08 10:15 AM	

+="CN59027"	"Private voice network access 0/4/07 - 30/6/07"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Telecommunications media services"	01-Apr-07	30-Jun-07	27131.50	=""	="Commander Aust Ltd"	08-Feb-08 10:15 AM	

+="CN59028"	"Specialist consultancy seravices & associated costs"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	18-Jan-08	30-Jun-08	22000.00	=""	="Dr Allan Christopher Hayward"	08-Feb-08 10:15 AM	

+="CN59029"	"OPV Seminar 16th & 17th Feb 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	29-Feb-08	12760.00	=""	="All Seasons Pavilion Hotel"	08-Feb-08 10:15 AM	

+="CN59030"	"OPV Seminar 29th Feb- 2 Mar 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	31-Mar-08	16995.00	=""	="Chifley at Lennons Brisbane"	08-Feb-08 10:16 AM	

+="CN59031"	"OPV Seminar 16 - 18 May 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	31-May-08	16995.00	=""	="Chifley at Lennons Brisbane"	08-Feb-08 10:16 AM	

+="CN59032"	"OPV Seminar 23 -25 May 08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	29-Jan-08	31-May-08	16645.00	=""	="Sunmoon"	08-Feb-08 10:16 AM	

+="CN59033"	"Licence Fees for the provisioon of the NGA.NET e-Recruitment solution for DAFF. Licence Term: 12 months 28/11/2007 - 27/11/2008"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Telecommunications media services"	28-Nov-07	27-Nov-08	72842.00	=""	="NGA NET PTY LTD"	08-Feb-08 10:16 AM	

+="CN59034"	"Facilitation of aquatic animal health education strategy workshop"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management advisory services"	13-Feb-08	30-May-08	11690.00	=""	="Global Learning"	08-Feb-08 10:16 AM	

+="CN59035"	"PABX call costs 15/12/07 - 14/1/08"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Telecommunications media services"	15-Dec-07	14-Jan-08	15270.22	=""	="AAPT Telecommunications"	08-Feb-08 10:16 AM	

+="CN59038"	"Freight Services 01 Feb 08 - 31 Jan 09"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Transportation and Storage and Mail Services"	01-Feb-08	31-Jan-09	24500.00	=""	="Seaswift"	08-Feb-08 10:17 AM	

+="CN59039-A1"	"Psychometric Assessments (Values and Inventory and Work Preference Profiles) for candidates"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Education and Training Services"	01-Jan-08	30-Jun-08	50000.00	=""	="Hoban Recruitment"	08-Feb-08 10:17 AM	

+="CN59041"	"Supply Automatic Weather Station"	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Furniture and Furnishings"	15-Feb-08	31-Mar-08	10400.50	=""	="Measurement Engineering Austeralia Pty Ltd"	08-Feb-08 10:17 AM	

+="CN59042"	"Design, preperation and facilitation of the AQIS SMC."	="Department of Agriculture Fisheries and Forestry"	08-Feb-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	16-Nov-07	15400.00	=""	="Palm Consulting Group"	08-Feb-08 10:17 AM	

+="CN59043-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	28-Aug-08	28-Aug-08	554037.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:18 AM	

+="CN59044"	"Temporary Staff - SDR Program Officer"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	02-Jan-08	25-Mar-08	35268.00	="07/178-00"	="Green and Green (Catalyst Recruitment)"	08-Feb-08 10:20 AM	

+="CN59045"	"File Sentencing Contractor"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	23-Jan-08	30-Jun-08	34117.00	="07/180-00"	="GMT People Pty Ltd"	08-Feb-08 10:23 AM	

+="CN59049"	"REPAIR AND OH OF BLACK HAWK YAW BOOST SERVO."	="Defence Materiel Organisation"	08-Feb-08	="Military rotary wing aircraft"	08-Feb-08	30-Jun-08	32699.44	=""	="SAAL"	08-Feb-08 10:27 AM	

+="CN59050"	"DCU Temporary Staff"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	02-Jan-08	18-Jan-08	16000.00	="07/181-00"	="Green and Green (Catalyst Recruitment)"	08-Feb-08 10:27 AM	

+="CN59052-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	759000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:28 AM	

+="CN59053"	"VALISE LIFE PERSERVER"	="Defence Materiel Organisation"	08-Feb-08	="Aerospace systems and components and equipment"	07-Feb-08	10-Apr-08	15323.44	=""	="SAFETY MARINE AUSTRALIA"	08-Feb-08 10:29 AM	

+="CN59055"	"Lease survey plan fee"	="Civil Aviation Safety Authority"	08-Feb-08	="Property management"	21-Dec-07	01-Feb-08	11000.00	="07/183-00"	="OPUS Capital Limited"	08-Feb-08 10:31 AM	

+="CN59056-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	19-Dec-08	810700.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:33 AM	

+="CN59054"	"Provision of Software Licensing, Support and Maintenance Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Software"	27-Jun-07	30-Jun-09	2850000.00	=""	="Blue Phoenix Pty Ltd"	08-Feb-08 10:36 AM	

+="CN59057-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	01-Mar-09	576400.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:37 AM	

+="CN59058-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	784520.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 10:41 AM	

+="CN59059-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	31-Jul-06	30-Jun-09	578600.00	=""	="Greythorn Pty Ltd"	08-Feb-08 10:46 AM	

+="CN59061"	"Lease negotiation services - Brisbane Head Office"	="Civil Aviation Safety Authority"	08-Feb-08	="Property management"	15-Jan-08	15-Feb-08	33000.00	="07/186-00"	="Mallesons Stephen Jaques Solicitors - ACT"	08-Feb-08 10:49 AM	

+="CN59062"	"Temporary Staff - Admin staff for DCU"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	04-Feb-08	25-Apr-08	22000.00	="07/187-00"	="Green and Green (Catalyst Recruitment)"	08-Feb-08 10:52 AM	

+="CN59064"	"Courier Services"	="Australian Electoral Commission"	08-Feb-08	="Postal and small parcel and courier services"	01-Sep-02	30-Aug-08	100000.00	=""	="Metrostate Security Courier Pty Ltd"	08-Feb-08 10:55 AM	

+="CN59065"	"Document authoring, editing & conversion services"	="Civil Aviation Safety Authority"	08-Feb-08	="Data conversion service"	02-Jan-08	30-Jun-08	55000.00	="07/190-00"	="WordsWorth Writing"	08-Feb-08 10:56 AM	

+="CN59066-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	03-Jul-06	30-Jun-09	684930.00	=""	="Finite Recuitment Pty. Ltd."	08-Feb-08 10:56 AM	

+="CN59068"	" Document authoring , editing & conversion services "	="Civil Aviation Safety Authority"	08-Feb-08	="Data conversion service"	02-Jan-08	30-Jun-08	55000.00	="07/191-00"	="NetImpact Online Publishing Pty Ltd"	08-Feb-08 11:01 AM	

+="CN59070"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	14-Aug-06	30-Jun-08	345950.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 11:03 AM	

+="CN59071"	"Election Premises Hire"	="Australian Electoral Commission"	08-Feb-08	="Lease and rental of property or building"	23-Oct-07	31-Jan-08	14674.92	=""	="Davinlee Pty Ltd - L J Hooker Wyong"	08-Feb-08 11:03 AM	

+="CN59072"	"Document authoring, editing & conversion services"	="Civil Aviation Safety Authority"	08-Feb-08	="Data conversion service"	02-Jan-08	30-Jun-08	55000.00	="07/192-00"	="Wordware Pty Ltd"	08-Feb-08 11:05 AM	

+="CN59073"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	14-Aug-06	30-Jun-08	389840.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 11:08 AM	

+="CN59075-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	07-Aug-06	30-Jun-09	584650.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:12 AM	

+="CN59076"	"Information Architecture"	="Civil Aviation Safety Authority"	08-Feb-08	="Temporary personnel services"	28-Jan-08	30-Jun-08	188760.00	="07/194-00"	="Opcomm Pty Ltd"	08-Feb-08 11:13 AM	

+="CN59077-A2"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	484440.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:15 AM	

+="CN59079"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	07-Aug-06	31-Aug-07	260150.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:19 AM	

+="CN59080"	"Documentum Maintenance Renewal"	="Civil Aviation Safety Authority"	08-Feb-08	="Library or documentation services"	01-Jul-07	30-Jun-08	165000.00	="07/196-00"	="EMC Corporation"	08-Feb-08 11:20 AM	

+="CN59081"	" DETENT 28.6  TUBE 28.6 MACHINED  DETENT 32  TUBE, 32 MACHINED  DETENT, 36  TUBE, 36 MACHINED   DETENT, 40  TUBE, 40 MACHINED  DETENT, 44  TUBE, 44 MACHINED  SAFETY FLAG ASSEMBLY NYLON RIPSTOP REINFORCED VINYL & BRASS & STAINLESS STEEL & NYLON CORD  SHEAR WIRE 1.2MM, 18SWG, TINNED COPPER "	="Defence Materiel Organisation"	08-Feb-08	="Telescoping poles"	08-Feb-08	09-Apr-08	43934.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	08-Feb-08 11:21 AM	

+="CN59082"	"File Sentencing Contractor"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	24-Jan-08	30-Jun-08	36900.00	="07/197-00"	="GMT People Pty Ltd"	08-Feb-08 11:23 AM	

+="CN59085"	"Provision for Personnel Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	31-Jul-06	30-Jun-08	450450.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:26 AM	

+="CN59087-A2"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	31-Jul-06	30-Jun-08	581570.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:30 AM	

+="CN58993-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	03-Apr-06	01-Aug-08	705925.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:31 AM	

+="CN59036-A4"	" Provision of Business Analyst Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Permanent information technology systems or database administrators"	01-May-06	30-Jun-09	610280.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:32 AM	

+="CN59086"	"File Sentencing Contractor"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	31-Jan-08	30-Apr-08	18216.00	="07/199-00"	="GMT People Pty Ltd"	08-Feb-08 11:33 AM	

+="CN59074-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology networking specialists"	13-Jun-06	30-Jun-09	573183.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:34 AM	

+="CN59089-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	26-Jun-06	30-Jun-09	897600.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:34 AM	

+="CN59067-A2"	"Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Project management"	19-May-06	30-Jun-08	486115.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 11:35 AM	

+="CN59090"	"SEAL NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Oct-07	24-Mar-08	32935.10	=""	="GENERAL DYNAMIC LANDS SYSTEMS AUST P/L"	08-Feb-08 11:36 AM	

+="CN59060-A6"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Permanent information technology systems or database administrators"	23-May-06	30-Jun-09	568227.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:36 AM	

+="CN59092"	" CYLINDER, GAS, CO2 "	="Defence Materiel Organisation"	08-Feb-08	="Aerospace systems and components and equipment"	08-Feb-08	21-Mar-08	18405.20	=""	="AERO & MILITARY PRODUCTS"	08-Feb-08 11:36 AM	

+="CN59093"	"Legal Services"	="Australian Electoral Commission"	08-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	23155.00	="AEC06/032"	="Australian Government Solicitor"	08-Feb-08 11:37 AM	

+="CN59083-A3"	" Provision of Business Analysis Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology networking specialists"	18-Apr-06	18-Mar-09	615725.00	=""	="Paxus Australia Limited"	08-Feb-08 11:37 AM	

+="CN59094-A3"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jun-06	30-Jun-09	699194.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:39 AM	

+="CN59098"	"Legal Services"	="Australian Electoral Commission"	08-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	16000.00	="AEC06/032"	="Australian Government Solicitor"	08-Feb-08 11:44 AM	

+="CN59099-A4"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	04-May-06	30-Jun-09	808825.00	=""	="Greythorn Pty Ltd"	08-Feb-08 11:44 AM	

+="CN59101"	"Provision For Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	26-Jul-06	31-Jul-07	358875.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:46 AM	

+="CN59095"	"File Sentencing Contractor"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	31-Jan-08	30-Apr-08	19272.00	="07/200-00"	="GMT People Pty Ltd"	08-Feb-08 11:48 AM	

+="CN59103-A3"	"Provision of Data Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Data base management system software"	17-May-06	07-Mar-08	431160.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 11:50 AM	

+="CN59104"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	389400.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:53 AM	

+="CN59091-A1"	"Design Construct and deliver of 3 twin hull boats for Indian Ocean Territories"	="Australian Federal Police"	08-Feb-08	="Fishing ship or boat building services"	10-Jan-08	19-Jun-08	726658.96	=""	="LeisureCat Australia Pty Ltd"	08-Feb-08 11:54 AM	

+="CN59105"	"Legal advise and representation in the terms and conditions of CASA's Lease premises"	="Civil Aviation Safety Authority"	08-Feb-08	="Property management"	01-Feb-08	01-Feb-08	10361.00	="07/201-00"	="Mallesons Stephen Jaques Solicitors"	08-Feb-08 11:55 AM	

+="CN59106-A2"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	12-Jun-06	30-Jun-08	452870.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:56 AM	

+="CN59107-A3"	"Provision of Information Technology Tool Support Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	29-May-06	30-Jun-09	599995.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 11:57 AM	

+="CN59109"	"Legal Services"	="Australian Electoral Commission"	08-Feb-08	="Legal services"	05-Jan-07	05-Jan-10	150000.00	="AEC06/032"	="Australian Government Solicitor"	08-Feb-08 12:00 PM	

+="CN59110"	"Provision of Information Technology Programming Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	22-May-06	30-Jun-08	396000.00	=""	="Ambit Group Pty Limited"	08-Feb-08 12:02 PM	

+="CN59111-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	21-Aug-06	01-May-09	500500.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 12:03 PM	

+="CN59113-A4"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	21-Aug-06	08-Sep-08	750145.00	=""	="Greythorn Pty Ltd"	08-Feb-08 12:08 PM	

+="CN59114"	"AusCheck Fees"	="Civil Aviation Safety Authority"	08-Feb-08	="Financial accounting"	02-Jan-08	30-Jan-08	31510.00	="07/203-01"	="Attorney General's Department (ACT)"	08-Feb-08 12:08 PM	

+="CN59115-A2"	"Provision for Personnel Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	580800.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 12:11 PM	

+="CN59116-A2"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jun-06	30-Jun-08	426800.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 12:15 PM	

+="CN59119"	"06.030-1007 Printing of NAT2024-11.2007"	="Australian Taxation Office"	08-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Jan-08	31-Jan-08	24619.10	=""	="Paragon Printers"	08-Feb-08 12:17 PM	

+="CN59120-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	04-Sep-06	24-Apr-08	320980.00	=""	="Greythorn Pty Ltd"	08-Feb-08 12:20 PM	

+="CN59121-A3"	" Immigration Advice and Application Assistance Scheme (IAAAS) provide IAAAS services in Detention and in the Community. "	="Department of Immigration and Citizenship"	08-Feb-08	="Legal services"	01-Jul-06	30-Jun-09	350000.00	=""	="Victoria Legal Aid"	08-Feb-08 12:29 PM	

+="CN58819"	"Project Managment for refit of Darwin DIAC Office"	="Department of Immigration and Citizenship"	08-Feb-08	="Project management"	28-Nov-07	30-Sep-08	85342.00	=""	="The Trustee for INTERIORS AUSTRALIA UNIT TRUST"	08-Feb-08 12:35 PM	

+="CN59122-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	04-Sep-06	30-Jun-09	516450.00	=""	="Greythorn Pty Ltd"	08-Feb-08 12:36 PM	

+="CN59124-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	15-May-06	24-Apr-08	433840.00	=""	="Greythorn Pty Ltd"	08-Feb-08 12:44 PM	

+="CN59125-A2"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	09-Aug-06	30-Jun-09	789800.00	=""	="Ambit Group Pty Limited"	08-Feb-08 12:49 PM	

+="CN59126-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	825000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 12:53 PM	

+="CN59127-A2"	"Provision of Legal Services to DIAC clients"	="Department of Immigration and Citizenship"	08-Feb-08	="Legal services"	21-Jul-06	30-Jun-09	380000.00	=""	="Legal Aid Commission (NSW)"	08-Feb-08 12:56 PM	

+="CN59129-A1"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	04-Sep-06	30-Jun-08	471750.00	=""	="Ross Human Directions Limited"	08-Feb-08 12:57 PM	

+="CN59132"	"Satellite Modem, Avionic Communications equipment."	="Defence Materiel Organisation"	08-Feb-08	="Air transportation support systems and equipment"	30-Jul-07	12-Mar-08	15760.00	=""	="Stanford Technologies Pty Ltd"	08-Feb-08 01:18 PM	

+="CN59131"	"Power Supplies for AMACCS systems"	="Defence Materiel Organisation"	08-Feb-08	="Air transportation support systems and equipment"	10-Oct-07	12-Mar-08	28882.88	=""	="BAE Systems Australia Pty Ltd"	08-Feb-08 01:23 PM	

+="CN59123"	"RAAF Oak & Amb pre furbishment ILS scoping Inspection"	="Defence Materiel Organisation"	08-Feb-08	="Air transportation support systems and equipment"	28-Nov-07	08-Feb-08	16860.58	=""	="Air Services Australia"	08-Feb-08 01:26 PM	

+="CN59134"	"ASIC Fees"	="Civil Aviation Safety Authority"	08-Feb-08	="Financial accounting"	01-Dec-07	30-Dec-07	24598.00	="07/204-00"	="Aviation ID Australia Pty Ltd"	08-Feb-08 01:32 PM	

+="CN59135-A1"	"Temporary Services - Admin Assistant"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	07-Jan-08	06-Apr-08	18700.00	="07/205-00"	="Hays Personnel Services (Australia) Pty Ltd"	08-Feb-08 01:36 PM	

+="CN59137"	"Temporary Admin Staff"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	12-Dec-07	28-Mar-08	17400.00	="07/206-00"	="Vedior Asia Pacific (Select Australasia)"	08-Feb-08 01:43 PM	

+="CN59138"	"Services relating to administrative support to the information services division of the AFP"	="Australian Federal Police"	08-Feb-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Jun-08	24833.60	=""	="Clicks Recruit Pty Ltd"	08-Feb-08 01:48 PM	

+="CN59139"	"Audit of Financial Statement and Financial information"	="Civil Aviation Safety Authority"	08-Feb-08	="Government auditing services"	24-Jan-08	24-Feb-08	43230.00	="07/207-00"	="Australian National Audit Office"	08-Feb-08 01:50 PM	

+="CN59140-A3"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Project management"	26-Jun-06	30-Jun-09	836638.00	=""	="Ambit Group Pty Limited"	08-Feb-08 01:52 PM	

+="CN59141"	" SUPPLY OF 50 X SPLINT, LEG "	="Defence Materiel Organisation"	08-Feb-08	="Medical Equipment and Accessories and Supplies"	08-Feb-08	31-Mar-08	34925.00	=""	="FERNO AUSTRALIA PTY LTD"	08-Feb-08 01:54 PM	

+="CN59142-A4"	"Provision of Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	18-Aug-06	21-Mar-08	219450.00	=""	="Greythorn Pty Ltd"	08-Feb-08 01:55 PM	

+="CN59143-A6"	" ICT Contract Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	20-Jun-06	30-Jul-09	740465.00	=""	="Finite Recruitment Pty Ltd"	08-Feb-08 01:57 PM	

+="CN59144"	"Barcode scanners for TRIM Project"	="Civil Aviation Safety Authority"	08-Feb-08	="Office Equipment and Accessories and Supplies"	01-Jan-08	31-Jan-08	10791.00	="07/210-00"	="ASP Micro Computers"	08-Feb-08 01:59 PM	

+="CN59145-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	11-Sep-06	30-Jun-09	603680.00	=""	="Finite Recuitment Pty. Ltd."	08-Feb-08 01:59 PM	

+="CN59146-A3"	"Provision of Architectural Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Systems architecture"	15-May-06	31-Dec-08	702515.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:01 PM	

+="CN59147"	"AusCheck Post Implementation Review"	="Civil Aviation Safety Authority"	08-Feb-08	="Recruitment services"	01-Feb-08	29-Feb-08	13200.00	="07/211-00"	="Oakton AA Services Pty Ltd"	08-Feb-08 02:02 PM	

+="CN59148"	"6 month rental lease for contractor"	="Civil Aviation Safety Authority"	08-Feb-08	="Residential rental"	11-Feb-08	30-Jun-08	12480.00	="07/216-00"	="Elders Real Estate"	08-Feb-08 02:05 PM	

+="CN59149"	"Printing of Binders and Slip Covers"	="Civil Aviation Safety Authority"	08-Feb-08	="Publishing"	18-Jan-08	29-Feb-08	43645.00	="07/219-00"	="Sanderson"	08-Feb-08 02:09 PM	

+="CN59150-A3"	" Database Design Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	528000.00	=""	="Paxus Australia Pty Ltd"	08-Feb-08 02:11 PM	

+="CN59151"	"Printing of Safety management booklets"	="Civil Aviation Safety Authority"	08-Feb-08	="Publishing"	05-Feb-08	29-Feb-08	19177.00	="07/220-00"	="Canberra Publishing Co Pty Ltd"	08-Feb-08 02:13 PM	

+="CN59152"	"Provision for Software"	="Department of Immigration and Citizenship"	08-Feb-08	="Software"	06-May-06	04-Jun-08	26250.00	=""	="Dragon Dictate Australia Pty Ltd"	08-Feb-08 02:14 PM	

+="CN59153-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Programming for Java"	04-May-09	30-Jun-09	684431.50	=""	="Paxus Australia Pty Ltd"	08-Feb-08 02:15 PM	

+="CN59155-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	603064.00	=""	="Paxus Australia Pty Ltd"	08-Feb-08 02:19 PM	

+="CN59156"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	18-Sep-06	30-Jun-08	336600.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 02:20 PM	

+="CN59157"	" 06/1488 - Extension #1 - IT Contractor - 0717-0860 - ICT Panel 05/0717 "	="Australian Customs and Border Protection Service"	08-Feb-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	217500.00	="05/0717"	="Ambit Group Pty Ltd"	08-Feb-08 02:22 PM	

+="CN59158-A4"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	26-Jun-06	30-Jun-09	572132.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:25 PM	

+="CN59159-A2"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	18-Sep-06	30-Jun-08	191125.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:26 PM	

+="CN59163"	" Provision for Personnel "	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	05-Sep-06	31-Aug-07	369600.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:33 PM	

+="CN59161-A1"	"Pouch 200 Round, Belt Elastic, Pouch ASP Baton & Bag Textile"	="Defence Materiel Organisation"	08-Feb-08	="Arms and ammunition accessories"	15-Jan-08	30-May-08	147173.40	="CC1T2S"	="Platypus Outdoors Group Pty Ltd"	08-Feb-08 02:34 PM	

+="CN59164-A2"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	18-Sep-06	05-Mar-08	362780.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:39 PM	

+="CN59117-A1"	"Provision of Community Care Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Community and social services"	15-Jun-06	30-Jun-09	5472212.00	=""	="The International Organisation for Migration"	08-Feb-08 02:39 PM	

+="CN59165-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	03-Oct-06	30-Jun-08	478950.00	=""	="Ambit Group Pty Limited"	08-Feb-08 02:43 PM	

+="CN59166-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	03-Oct-06	30-Jun-09	398123.00	=""	="Greythorn Pty Ltd"	08-Feb-08 02:47 PM	

+="CN59168-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	09-Oct-06	30-Jun-09	413000.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 02:51 PM	

+="CN59170-A4"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	755750.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:54 PM	

+="CN59171-A3"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	30-Oct-06	30-Jun-09	455620.00	=""	="Greythorn Pty Ltd"	08-Feb-08 02:56 PM	

+="CN59172-A3"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	26-Apr-06	30-Jun-09	1013298.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 02:59 PM	

+="CN59174-A7"	" ICT Contract Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	26-Jun-06	31-Dec-09	647900.00	=""	="Paxus Australia Pty Ltd"	08-Feb-08 03:05 PM	

+="CN59177"	"Legal Fees"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Legal services"	01-Dec-07	31-Dec-07	11100.00	=""	="Australian Government Solicitor Legal Pratice Agencies"	08-Feb-08 03:10 PM	

+="CN59178"	"Legal Fees"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Legal services"	14-Nov-07	14-Feb-08	15000.00	=""	="Australian Government Solicitor"	08-Feb-08 03:10 PM	

+="CN59179"	"Legal Fees"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Legal services"	20-Dec-07	20-Apr-08	20000.00	=""	="Australian Government Solicitor"	08-Feb-08 03:10 PM	

+="CN59175-A2"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	06-Apr-06	29-Aug-08	661072.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:10 PM	

+="CN59180"	"IT Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	08-Jan-08	07-Jul-08	105200.00	=""	="Ambit Recruitment"	08-Feb-08 03:10 PM	

+="CN59183"	"Office Refurbishment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Furniture and Furnishings"	21-Jan-08	21-Feb-08	46300.00	=""	="Bentley House"	08-Feb-08 03:11 PM	

+="CN59184"	"IT Consultancy Services."	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Business administration services"	14-Dec-07	14-Jan-08	10100.00	=""	="Biz3"	08-Feb-08 03:11 PM	

+="CN59185"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	01-Oct-07	30-Sep-08	217800.00	=""	="Candle IT&T Recruitment"	08-Feb-08 03:11 PM	

+="CN59187"	"Bankruptcy Act 8th Edition"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Printed media"	13-Dec-07	13-Dec-07	27500.00	=""	="CCH Australia Ltd"	08-Feb-08 03:11 PM	

+="CN59188"	"Computer Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-07	10900.00	=""	="Cerulean Solutions Ltd"	08-Feb-08 03:11 PM	

+="CN59189"	"Computing Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-07	10900.00	=""	="Cerulean Solutions Ltd"	08-Feb-08 03:12 PM	

+="CN59190-A1"	" PROPERTY LEASE SYDNEY "	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Real estate services"	01-Nov-07	31-Oct-17	12442300.00	=""	="Colliers International (NSW) Pty Ltd (PERPETUAL TRUSTEE AND PERRON INVESTMENTS)"	08-Feb-08 03:12 PM	

+="CN59191"	"Computer Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer Equipment and Accessories"	28-Nov-07	30-Jun-08	18800.00	=""	="Commander Australia Ltd"	08-Feb-08 03:12 PM	

+="CN59192"	"Insurance"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Insurance and retirement services"	30-Sep-07	31-Dec-07	12900.00	=""	="Comsuper"	08-Feb-08 03:12 PM	

+="CN59193"	"Computer Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-07	12900.00	=""	="Dell Computer Ltd"	08-Feb-08 03:12 PM	

+="CN59194"	"Computer Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	31-Jan-08	29-Feb-08	17500.00	=""	="Dell Computer Ltd"	08-Feb-08 03:12 PM	

+="CN59195"	"Costs of sale of property"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	10100.00	=""	="Eastern Seaboard Marine Services"	08-Feb-08 03:12 PM	

+="CN59196"	"IT Consultancy"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Business administration services"	01-Oct-07	01-Oct-07	12500.00	=""	="Eclipse Group Pty Ltd"	08-Feb-08 03:12 PM	

+="CN59197"	"Office Refurbishment"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	13-Dec-07	303500.00	=""	="Elite Office Environments Pty Ltd"	08-Feb-08 03:13 PM	

+="CN59198"	"ICON Levy 07/08"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	22000.00	=""	="Department of Finance & Administration Collector of Public Monies"	08-Feb-08 03:13 PM	

+="CN59199"	"ICON Levy  - Admn"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	11000.00	=""	="Department of Finance & Administration Collector of Public Monies"	08-Feb-08 03:13 PM	

+="CN59200"	"Conference venue"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Hotels and lodging and meeting facilities"	26-Nov-07	29-Nov-07	11100.00	=""	="The Grange At Cleveland Winery Pty Ltd"	08-Feb-08 03:13 PM	

+="CN59201"	"Architectural & Engineering Service"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	06-Dec-07	27600.00	=""	="IDW Architecture & Interiors"	08-Feb-08 03:13 PM	

+="CN59202"	"Redevelopment of forms"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	100000.00	=""	="Indigo Pacific Pty Ltd"	08-Feb-08 03:13 PM	

+="CN59203"	"Employee Opinion Survey"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management advisory services"	01-Sep-07	30-Sep-07	29700.00	=""	="InsightSRC Pty Ltd"	08-Feb-08 03:13 PM	

+="CN59204"	"Make good of rental property."	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Real estate services"	18-Dec-07	31-Jan-08	139700.00	=""	="Knight Frank (NSW) Pty Ltd"	08-Feb-08 03:13 PM	

+="CN59205"	"Feb 08  Rent"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	53100.00	=""	="Knight Frank (NSW) Pty Ltd"	08-Feb-08 03:14 PM	

+="CN59206-A1"	" PROPERTY LEASE HOBART "	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Real estate services"	18-Oct-07	17-Oct-11	692455.00	=""	="Knight Frank Tasmania (FOR ES & A Holdings)"	08-Feb-08 03:14 PM	

+="CN59207"	"Lease Car"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Tools and General Machinery"	18-Sep-07	18-Sep-09	33000.00	=""	="Lease Plan Australia Ltd"	08-Feb-08 03:14 PM	

+="CN59208"	"Professional Services"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	30-Sep-07	30-Sep-07	21900.00	=""	="Meinhardt (Vic) Pty Ltd"	08-Feb-08 03:14 PM	

+="CN59209"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	17-Sep-07	16-Sep-08	165900.00	=""	="M & T Resources"	08-Feb-08 03:14 PM	

+="CN59210"	"Relocation of NSW Branch"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jan-08	26-Jan-08	23000.00	=""	="Officemovers"	08-Feb-08 03:14 PM	

+="CN59211"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	24-Sep-07	23-Sep-08	159500.00	=""	="Paxus"	08-Feb-08 03:14 PM	

+="CN59212"	"Computer Software Lease"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	07-Dec-07	07-Dec-07	14500.00	=""	="QAS Pty"	08-Feb-08 03:14 PM	

+="CN59213"	"Printing Services"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Printed media"	01-Nov-07	30-Nov-07	14700.00	=""	="Quantum Ideas Bureau Design House"	08-Feb-08 03:14 PM	

+="CN59214"	"Printing Services"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Printed media"	01-Dec-07	31-Dec-07	16400.00	=""	="Quantum Ideas Bureau Design House"	08-Feb-08 03:15 PM	

+="CN59215"	"Printing Services"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Printed media"	01-Jul-06	30-Jun-07	32900.00	=""	="Quantum Ideas Bureau Design House"	08-Feb-08 03:15 PM	

+="CN59216"	"Office Furniture"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Furniture and Furnishings"	21-Dec-07	21-Jan-08	22300.00	=""	="Rack & File Commercial Pty Ltd"	08-Feb-08 03:15 PM	

+="CN59217"	"Legal Fees"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Legal services"	14-Aug-07	12-Nov-07	12500.00	=""	="Sally Nash & Co"	08-Feb-08 03:15 PM	

+="CN59218"	"Legal Fees"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Legal services"	18-Jul-07	10-Nov-07	22700.00	=""	="Sally Nash & Co"	08-Feb-08 03:15 PM	

+="CN59219"	"Furniture"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Furniture and Furnishings"	30-Nov-07	30-Dec-07	17400.00	=""	="Stylecraft Australia"	08-Feb-08 03:15 PM	

+="CN59220"	"White pages listing"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Telecommunications media services"	01-Jan-05	31-Dec-06	33800.00	=""	="Telstra"	08-Feb-08 03:15 PM	

+="CN59221"	"Audio Digital Interview Recorder"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Office machines and their supplies and accessories"	08-Jan-08	23-Jan-08	19800.00	=""	="TPR Systems"	08-Feb-08 03:15 PM	

+="CN59223"	"Property consultancy services."	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Business administration services"	23-Nov-07	23-Nov-08	30200.00	=""	="United Group Services"	08-Feb-08 03:16 PM	

+="CN59224"	"Printing of Publications"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Printed media"	09-Nov-07	15-Dec-07	15300.00	=""	="Union Offset Co"	08-Feb-08 03:16 PM	

+="CN59228"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	01-Oct-07	31-Oct-07	17200.00	=""	="WIZARD INFORMATION SERVICES Pty Ltd"	08-Feb-08 03:16 PM	

+="CN59229"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Human resources services"	01-Mar-06	01-Mar-06	11200.00	=""	="WIZARD INFORMATION SERVICES Pty Ltd"	08-Feb-08 03:16 PM	

+="CN59230"	"IT Contractor"	="Insolvency and Trustee Service Australia (ITSA)"	08-Feb-08	="Computer services"	01-Nov-07	30-Nov-07	17400.00	=""	="WIZARD INFORMATION SERVICES Pty Ltd"	08-Feb-08 03:16 PM	

+="CN59227-A4"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	03-Oct-06	17-Jun-09	564025.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:17 PM	

+="CN59248-A5"	"Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	06-Aug-07	02-May-08	145530.00	=""	="Finite Recruitment P/L"	08-Feb-08 03:21 PM	

+="CN59249-A3"	"Provision of Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	25-Sep-06	11-May-08	401830.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:24 PM	

+="CN59250-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	512600.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:24 PM	

+="CN59252-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology networking specialists"	29-May-06	30-Jun-09	878240.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:27 PM	

+="CN59253-A2"	"Provision for Personnel"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	28-Sep-06	30-Jun-08	646525.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:28 PM	

+="CN59254-A4"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	09-Oct-06	02-Jul-08	698775.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:32 PM	

+="CN59255-A1"	" Provision of Website Design Services "	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology software developers"	03-Mar-06	31-Jan-08	956986.25	=""	="Squiz Pty Ltd"	08-Feb-08 03:33 PM	

+="CN59257"	"Probity Advisory Services for the Do Not Call Register"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Legal services"	29-Jan-08	11-Feb-11	20000.00	="07/AMCA032"	="Sparke Helmore"	08-Feb-08 03:37 PM	

+="CN59256-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	06-Nov-06	08-Feb-08	453640.00	=""	="Ambit Group Pty Limited"	08-Feb-08 03:37 PM	

+="CN59258-A2"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	28-Apr-06	30-Jun-08	591800.00	=""	="Greythorn Pty Ltd"	08-Feb-08 03:37 PM	

+="CN59259-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	30-Oct-06	03-Aug-08	535440.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:41 PM	

+="CN59260"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	17-May-06	31-Dec-07	373750.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 03:41 PM	

+="CN59262-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	08-Nov-06	30-Jun-09	636845.00	=""	="Greythorn Pty Ltd"	08-Feb-08 03:45 PM	

+="CN59264"	" Provision of Construction Management Services for the fit out of Level 12, Tower 3, Darling Park, Sydney NSW "	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Building and Construction and Maintenance Services"	29-Jan-08	25-Apr-08	109061.70	="07/ACMA024"	="MPA Construction Group Pty Ltd"	08-Feb-08 03:46 PM	

+="CN59263"	"Provision of Information Technology Architectural Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	06-Jun-06	30-Sep-07	371250.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:47 PM	

+="CN59267"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	15-Nov-06	30-Sep-07	52500.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 03:49 PM	

+="CN59268-A5"	"Provision of Project Coordination Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	01-Jun-06	30-Jun-09	421080.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:51 PM	

+="CN59271-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	20-Nov-06	30-Jun-09	612150.00	=""	="Ambit Group Pty Limited"	08-Feb-08 03:52 PM	

+="CN59272-A3"	"Provision of Information Technology Programming Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology software developers"	01-Jul-06	30-Jun-09	517000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 03:55 PM	

+="CN59273-A1"	"Contractor for Engineering Services"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Temporary personnel services"	31-Jan-08	30-Aug-08	32120.00	="07ACMA048"	="Rohde & Schwarz (Australia) Pty Ltd"	08-Feb-08 03:55 PM	

+="CN59274-A2"	"Infoormation Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	18-Sep-06	30-Jun-08	460570.00	=""	="Greythorn Pty Ltd"	08-Feb-08 03:57 PM	

+="CN59275-A3"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	01-Jun-06	30-Jun-09	828740.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 04:00 PM	

+="CN59276"	"Design and Development of Style Guide"	="Australian Electoral Commission"	08-Feb-08	="Art design services"	27-Jun-07	03-Jan-08	11440.00	=""	="Cre8ive Australasia Pty Ltd"	08-Feb-08 04:06 PM	

+="CN59277-A2"	"Provision of Project Management Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-08	561000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 04:07 PM	

+="CN56672"	"Net Alert DVD update and artwork design for 'Wise Up To It'"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Computer services"	01-Jan-08	31-Jan-08	73975.00	=""	="Flicks Australia Pty Ltd"	08-Feb-08 04:08 PM	

+="CN56671"	"Voice, video and data upgrade consultatnt"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Information technology consultation services"	20-Nov-07	20-Dec-07	41426.00	="05/ACMA100"	="Gibson Quai - AAS Pty Ltd"	08-Feb-08 04:09 PM	

+="CN59279-A3"	"Provision of Architectural Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	715000.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 04:11 PM	

+="CN59278-A1"	"Legal Services"	="Australian Electoral Commission"	08-Feb-08	="Legal services"	01-Jan-08	30-Jun-09	60000.00	="AEC06/032"	="Australian Government Solicitor"	08-Feb-08 04:11 PM	

+="CN59280-A3"	"Provision of Information Technology Programming Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	594000.00	=""	="Ross Human Directions Limited"	08-Feb-08 04:17 PM	

+="CN59281-A5"	" Information Technology Specialist Services  "	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	04-May-09	30-Jun-09	598207.00	="07/129"	="Ambit Group Pty Limited"	08-Feb-08 04:18 PM	

+="CN59283-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	11-Jan-07	01-Sep-08	693770.00	=""	="Paxus Australia Pty Limited"	08-Feb-08 04:22 PM	

+="CN59284-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	07-Feb-07	14-Jul-09	508090.00	=""	="Ambit Group Pty Limited"	08-Feb-08 04:27 PM	

+="CN59286"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Human resources services"	08-Feb-07	30-Jun-08	307230.00	=""	="Ambit Group Pty Limited"	08-Feb-08 04:31 PM	

+="CN59285"	"MANUFACTURE LCM8 WELL DECK TARPS."	="Department of Defence"	08-Feb-08	="Tarpaulins"	29-Jan-08	28-Mar-08	10175.00	=""	="BEEHIVE VINYL PRODUCTS PTY LTD"	08-Feb-08 04:31 PM	

+="CN59287-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-Feb-08	="Information technology consultation services"	17-Jul-08	30-Jun-09	547700.00	=""	="Finite Recruitment Pty. Ltd."	08-Feb-08 04:38 PM	

+="CN59289"	"Motor Vehicle Parts."	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	44931.66	=""	="Mercedes Benz Aust. Pacific"	08-Feb-08 04:47 PM	

+="CN59290"	"Motor Vehicle Parts."	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	29157.30	=""	="Mercedes Benz Aust. Pacific"	08-Feb-08 04:50 PM	

+="CN59291"	"Printing NAT 1908-7.2007"	="Australian Taxation Office"	08-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Feb-08	22-Feb-08	17983.90	=""	="Paragon Printers"	08-Feb-08 04:52 PM	

+="CN59292"	"Motor Vehicle Parts."	="Department of Defence"	08-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	16511.64	=""	="Mercedes Benz Aust. Pacific"	08-Feb-08 04:56 PM	

+="CN58965-A1"	"CHIRPLUS Broadcast Planning System Quarterly mainenance"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Software maintenance and support"	23-Dec-07	22-Mar-08	44259.00	=""	="Rhode and Schwartz (Aust) Pty Ltd"	08-Feb-08 05:24 PM	

+="CN59265-A1"	"Contract for Service Management Coordinator"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Temporary personnel services"	01-Feb-08	30-Apr-08	26884.00	="06/ACMA107"	="Leo Microsystems Pty Ltd"	08-Feb-08 05:30 PM	

+="CN59269"	"Consulting Services on TRIM Upgrade Project"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Computer services"	25-Jan-08	29-Feb-08	16638.84	=""	="Ipex ITG Pty Ltd"	08-Feb-08 05:34 PM	

+="CN59232"	"Supply of IT Business Continuity Infrastructure"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Computer Equipment and Accessories"	06-Feb-08	07-Apr-08	49143.09	=""	="Infront Systems Pty Ltd"	08-Feb-08 05:38 PM	

+="CN59176"	"Nortel Support and Maintainance"	="Australian Communications and Media Authority (ACMA)"	08-Feb-08	="Computer services"	06-Feb-08	06-Feb-09	10426.06	=""	="Infront Systems Pty Ltd"	08-Feb-08 05:38 PM	

+="CN59294"	"Training"	="Attorney-General's Department"	09-Feb-08	="Education and Training Services"	11-Dec-07	11-Dec-07	25954.67	=""	="Centrelink"	09-Feb-08 07:04 PM	

+="CN59295"	"Parking costs"	="Attorney-General's Department"	09-Feb-08	="Parking fees"	11-Dec-07	31-May-08	10500.00	=""	="Mint Inc"	09-Feb-08 07:04 PM	

+="CN59296"	"IT Fees"	="Attorney-General's Department"	09-Feb-08	="Maintenance or support fees"	12-Dec-07	24-Apr-08	38347.82	="07/13009"	="3D Networks Australia Pty Ltd"	09-Feb-08 07:04 PM	

+="CN59297"	"Contract Employment"	="Attorney-General's Department"	09-Feb-08	="Temporary personnel services"	12-Dec-07	03-Mar-08	23946.00	="06/18397"	="Clicks Recruit Pty Ltd"	09-Feb-08 07:04 PM	

+="CN59298"	"Contract Employment"	="Attorney-General's Department"	09-Feb-08	="Temporary personnel services"	13-Dec-07	13-Dec-07	11864.71	="06/8503"	="The Net-Effects Group Pty Ltd"	09-Feb-08 07:04 PM	

+="CN59299"	"Course"	="Attorney-General's Department"	09-Feb-08	="Education and Training Services"	13-Dec-07	30-Jun-08	28848.00	=""	="Bayley and Associates Pty Ltd"	09-Feb-08 07:04 PM	

+="CN59300"	"IT Software"	="Attorney-General's Department"	09-Feb-08	="Software"	13-Dec-07	31-Dec-07	361883.97	="07/13009"	="Data#3 Ltd"	09-Feb-08 07:04 PM	

+="CN59301"	"Repairs"	="Attorney-General's Department"	09-Feb-08	="Roofing installation or repair"	13-Dec-07	31-Jan-08	20652.50	=""	="Gregory, Stephen P"	09-Feb-08 07:05 PM	

+="CN59302"	"IT Equipment"	="Attorney-General's Department"	09-Feb-08	="Computer Equipment and Accessories"	06-Dec-07	27-Nov-11	28291.46	="07/22472"	="Dimension Data Australia Pty Ltd"	09-Feb-08 07:05 PM	

+="CN59303"	"Project"	="Attorney-General's Department"	09-Feb-08	="Project administration or planning"	04-Dec-07	20-Aug-08	13860.00	="07/13009"	="DEBORAH NANSCHILD & ASSOCIATES"	09-Feb-08 07:05 PM	

+="CN59304"	"Software"	="Attorney-General's Department"	09-Feb-08	="Software"	04-Dec-07	04-Dec-08	10560.00	="07/13009"	="Quest Software Pty Ltd"	09-Feb-08 07:05 PM	

+="CN59305"	"Rent"	="Attorney-General's Department"	09-Feb-08	="Lease and rental of property or building"	04-Dec-07	30-Jun-08	41840.92	=""	="DEPT OF PRIME MINISTER AND CABINET"	09-Feb-08 07:05 PM	

+="CN59307"	"Contract Employment"	="Attorney-General's Department"	09-Feb-08	="Temporary personnel services"	05-Dec-07	30-Dec-07	11620.84	=""	="Clicks Recruit Pty Ltd"	09-Feb-08 07:05 PM	

+="CN59308"	"Communication Services"	="Attorney-General's Department"	09-Feb-08	="Telecommunications media services"	05-Dec-07	30-Dec-07	29292.51	=""	="Telstra"	09-Feb-08 07:05 PM	

+="CN59309"	"Review"	="Attorney-General's Department"	09-Feb-08	="Professional standards review boards"	05-Dec-07	19-Dec-07	26004.00	=""	="AUSTRALIAN INSTITUTE OF CRIMINOLOGY"	09-Feb-08 07:05 PM	

+="CN59310"	"Report"	="Attorney-General's Department"	09-Feb-08	="Technical writing"	06-Dec-07	31-May-08	12650.00	=""	="NDY Management Pty Ltd"	09-Feb-08 07:06 PM	

+="CN59312"	"Water Charges"	="Attorney-General's Department"	09-Feb-08	="Water"	19-Dec-07	30-Jun-09	49602.20	=""	="Knight Frank Australia Pty Ltd"	09-Feb-08 07:06 PM	

+="CN59313"	"Consultancy Fees"	="Attorney-General's Department"	09-Feb-08	="Management advisory services"	19-Dec-07	30-Jan-08	55000.00	=""	="Serco Australia Pty Limited"	09-Feb-08 07:06 PM	

+="CN59314"	"Lease Costs"	="Attorney-General's Department"	09-Feb-08	="Data storage"	20-Dec-07	01-Dec-10	2613600.00	="07/13009"	="Commonwealth Bank"	09-Feb-08 07:06 PM	

+="CN59315"	"Software"	="Attorney-General's Department"	09-Feb-08	="Software"	21-Dec-07	31-Dec-07	15510.00	="07/13009"	="Quest Software Pty Ltd"	09-Feb-08 07:06 PM	

+="CN59316"	"Data Work"	="Attorney-General's Department"	09-Feb-08	="Data services"	21-Dec-07	31-Jan-08	17006.00	=""	="DATAVOICE COMMUNICATIONS"	09-Feb-08 07:06 PM	

+="CN59317"	"Consultancy Fees"	="Attorney-General's Department"	09-Feb-08	="Education and Training Services"	21-Dec-07	31-Dec-07	27113.63	="07/13009"	="DEBORAH NANSCHILD & ASSOCIATES"	09-Feb-08 07:06 PM	

+="CN59318"	"Scibe Services"	="Attorney-General's Department"	09-Feb-08	="Scribers"	21-Dec-07	30-Jun-08	16500.00	=""	="Claudia Morris"	09-Feb-08 07:06 PM	

+="CN59319"	"Maintenance Fees"	="Attorney-General's Department"	09-Feb-08	="Maintenance or support fees"	21-Dec-07	30-Dec-07	15334.35	="05/4274"	="Chubb Electronic Security"	09-Feb-08 07:06 PM	

+="CN59320"	"Equipment"	="Attorney-General's Department"	09-Feb-08	="Security and control equipment"	19-Dec-07	01-Mar-08	610657.52	=""	="Zangold Pty Ltd"	09-Feb-08 07:07 PM	

+="CN59321"	"Equipment"	="Attorney-General's Department"	09-Feb-08	="Security and control equipment"	14-Dec-07	31-Mar-08	17637.40	=""	="FLIR Systems Australia Pty Ltd"	09-Feb-08 07:07 PM	

+="CN59322"	"ISDN Services"	="Attorney-General's Department"	09-Feb-08	="Local telephone service"	14-Dec-07	03-Jan-08	32485.19	=""	="Telstra"	09-Feb-08 07:07 PM	

+="CN59323"	"Legal fees"	="Attorney-General's Department"	09-Feb-08	="Legal services"	14-Dec-07	30-Jun-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:07 PM	

+="CN59324"	"Rent"	="Attorney-General's Department"	09-Feb-08	="Lease and rental of property or building"	17-Dec-07	17-Dec-07	15949.51	="07/12931"	="Finlease Equipment Rentals"	09-Feb-08 07:07 PM	

+="CN59325"	"Internet Charges"	="Attorney-General's Department"	09-Feb-08	="Internet services"	17-Dec-07	17-Dec-07	66687.72	="07/16097"	="Cybertrust Australia Pty Ltd"	09-Feb-08 07:07 PM	

+="CN59326-A1"	"Reporting"	="Attorney-General's Department"	09-Feb-08	="Quarterly reviews"	17-Dec-07	17-Dec-07	10780.00	=""	="COURAGE PARTNERS"	09-Feb-08 07:07 PM	

+="CN59327"	"Service"	="Attorney-General's Department"	09-Feb-08	="OSS wireless access network equipment and components"	18-Dec-07	30-Jun-08	540100.00	=""	="DEPARTMENT OF DEFENCE"	09-Feb-08 07:07 PM	

+="CN59328"	"Accounting fees"	="Attorney-General's Department"	09-Feb-08	="Accounting services"	19-Dec-07	31-Jul-10	10472.00	="06/16740"	="Deloitte Touche Tohmatsu"	09-Feb-08 07:07 PM	

+="CN59329"	"Software"	="Attorney-General's Department"	09-Feb-08	="Software"	04-Dec-07	04-Dec-07	31646.00	="07/5870"	="Total Learn Pty Ltd"	09-Feb-08 07:08 PM	

+="CN59330"	"AML brochures, business card, buttons & Translation Services"	="Attorney-General's Department"	09-Feb-08	="Engineering and Research and Technology Based Services"	04-Dec-07	04-Dec-07	13673.17	=""	="Cultural Partners"	09-Feb-08 07:08 PM	

+="CN59331"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	21-Nov-07	04-Dec-17	120918.70	="06#195748DOC"	="Australian Government Solictor"	09-Feb-08 07:08 PM	

+="CN59333"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	15-Nov-07	10-Dec-17	20564.50	="06#195748DOC"	="Australian Government Solicitor"	09-Feb-08 07:08 PM	

+="CN59334"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	14-Nov-07	10-Dec-17	29866.65	="06#195748DOC"	="Australian Government Solictor"	09-Feb-08 07:08 PM	

+="CN59335"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	01-Nov-07	11-Dec-17	11600.01	="06#195748"	="Australian Government Solictor"	09-Feb-08 07:08 PM	

+="CN59336"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	01-Nov-07	11-Dec-17	17600.00	="06#195748DOC"	="Australian Government Solictor"	09-Feb-08 07:08 PM	

+="CN59337"	"Legal Professional Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	16-Aug-07	10-Dec-09	13714.69	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:08 PM	

+="CN59338"	"Contribution to the establishment of the AML/CTF Customer Information Line"	="Attorney-General's Department"	09-Feb-08	="Engineering and Research and Technology Based Services"	14-Nov-07	14-Nov-07	11440.00	=""	="Australian Transaction Reports"	09-Feb-08 07:09 PM	

+="CN59339"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	15-Nov-07	29-Dec-07	10091.90	="06#195748DOC"	="Australian Government Solictor"	09-Feb-08 07:09 PM	

+="CN59344"	"Funding for Family Pathways Network 2007/08"	="Attorney-General's Department"	09-Feb-08	="Family planning programs or services"	04-Dec-07	30-Jun-08	33000.00	=""	="Centacare Catholic Fam Services"	09-Feb-08 07:09 PM	

+="CN59345"	"Because it's for the Kids- Children in Focus Booklets"	="Attorney-General's Department"	09-Feb-08	="Printing"	31-Oct-07	30-Jun-08	43837.81	=""	="Bambra Press Proprietary Limited"	09-Feb-08 07:09 PM	

+="CN59346"	"Fee for Services"	="Attorney-General's Department"	09-Feb-08	="Legal Research Services"	23-Nov-07	23-Nov-07	26336.30	=""	="James Gilkerson"	09-Feb-08 07:09 PM	

+="CN59347"	"Legal Professional Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	12-Nov-07	11-Dec-07	22932.06	="06#199427DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:09 PM	

+="CN59348"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	30-Oct-07	30-Oct-07	30409.20	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:10 PM	

+="CN59349"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	19-Sep-07	19-Sep-07	13821.38	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:10 PM	

+="CN59350"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	02-Nov-07	02-Nov-07	21479.11	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-Feb-08 07:10 PM	

+="CN59351"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	31-Oct-07	31-Oct-07	10619.73	="06#199427DOC"	="Blake Dawson"	09-Feb-08 07:10 PM	

+="CN59352"	"Contract Services"	="Attorney-General's Department"	09-Feb-08	="Temporary personnel services"	30-Jun-08	30-Jun-08	102186.00	=""	="HEDLOC"	09-Feb-08 07:10 PM	

+="CN59353"	"Contract employment"	="Attorney-General's Department"	09-Feb-08	="Temporary personnel services"	14-Jan-08	07-Feb-08	27999.40	=""	="Hays Personnel Services (Aust) PL"	09-Feb-08 07:10 PM	

+="CN59354"	"Translation"	="Attorney-General's Department"	09-Feb-08	="Writing and translations"	04-Dec-07	04-Dec-07	14106.40	=""	="Cultural Partners"	09-Feb-08 07:10 PM	

+="CN59355"	"Shelving"	="Attorney-General's Department"	09-Feb-08	="Office furniture"	04-Dec-07	28-Feb-08	14000.00	=""	="DESIGN SYSTEMS OFFICE INTERIORS P/L"	09-Feb-08 07:10 PM	

+="CN59356"	"Advertising"	="Attorney-General's Department"	09-Feb-08	="Personnel recruitment"	30-Jun-06	20-Dec-07	29943.19	="STANDING OFFER"	="HMA BLAZE"	09-Feb-08 07:11 PM	

+="CN59357"	"Legal Training Program"	="Attorney-General's Department"	09-Feb-08	="Legal services"	21-Nov-07	11-Dec-07	10700.00	="06#199427DOC"	="Australian Government Solicitor"	09-Feb-08 07:11 PM	

+="CN59358"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	21-Nov-07	21-Nov-17	17933.30	="06#197548DOC"	="Australian Government Solicitor"	09-Feb-08 07:11 PM	

+="CN59359"	"Fees for Professional Services"	="Attorney-General's Department"	09-Feb-08	="Internal audits"	10-Dec-07	31-Jul-10	33539.00	=""	="Deloitte Touche Tohmatsu"	09-Feb-08 07:11 PM	

+="CN59360"	"Printing Services"	="Attorney-General's Department"	09-Feb-08	="Security or financial instruments printing"	30-Nov-07	30-Nov-07	13871.00	=""	="Canprint Communications Pty Ltd"	09-Feb-08 07:11 PM	

+="CN59361"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	21-Nov-07	19-Dec-17	18853.56	="06#197548DOC"	="Australian Government Solicitor"	09-Feb-08 07:11 PM	

+="CN59362"	"Fee for Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	30-Apr-07	19-Dec-07	15172.39	="06#199427DOC"	="Blake Dawson"	09-Feb-08 07:11 PM	

+="CN59363"	"Legal Services"	="Attorney-General's Department"	09-Feb-08	="Legal services"	30-Nov-07	19-Dec-07	11931.66	=""	="Dept of Foreign Affairs & Trade"	09-Feb-08 07:11 PM	

+="CN59364"	"Printing Services PAB"	="Attorney-General's Department"	09-Feb-08	="Printing"	08-Nov-07	19-Dec-07	40050.24	=""	="ZOO Communications Pty Ltd"	09-Feb-08 07:12 PM 

--- a/admin/partialdata/08Dec2007to12Dec2007valto.xls
+++ b/admin/partialdata/08Dec2007to12Dec2007valto.xls
@@ -1,505 +1,505 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN50375"	"Enhancement of Commonwealth Portal Project"	="Family Court of Australia"	10-Dec-07	="Temporary information technology networking specialists"	26-Nov-07	18-Jan-08	22063.00	=""	="Different Solutions Pty Ltd"	10-Dec-07 08:57 AM	
-="CN50377"	"Relocation of personal effects for K Clarke to CKI"	="Department of Transport and Regional Services"	10-Dec-07	="Material packing and handling"	07-Dec-07	31-Jan-08	15012.00	="TRS07/385"	="GRACE REMOVALS GROUP"	10-Dec-07 09:04 AM	
-="CN50378"	"Legal Service Expenditure"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	11-Aug-07	30-Jun-09	11928.00	="TRS06/175"	="PHILLIPS FOX"	10-Dec-07 09:05 AM	
-="CN50379"	"Consultancy"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	01-Oct-07	09-Jan-08	44047.77	="TRS07/325"	="APIS CONSULTING"	10-Dec-07 09:05 AM	
-="CN50380"	"Contract staff Stewart Murray"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	22-Oct-07	31-Jan-08	45000.00	="TRS06/017"	="Peoplebank Australia Ltd"	10-Dec-07 09:05 AM	
-="CN50381"	"*Seafreight -Personal Effects for M Kawi"	="Department of Transport and Regional Services"	10-Dec-07	="Material packing and handling"	01-Jul-07	30-Jun-08	10875.00	="TRS07/384"	="CHRISTMAS ISLAND REMOVALS"	10-Dec-07 09:05 AM	
-="CN50382"	"Contracted to assist with TSP assessment"	="Department of Transport and Regional Services"	10-Dec-07	="Community and social services"	25-Oct-07	24-Jan-08	37451.13	="TRS05/251"	="FIRSTWATER PTY LTD"	10-Dec-07 09:05 AM	
-="CN50383"	"Legal Service Expenditure LG 6340"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	04-Dec-07	30-Jun-09	27848.15	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	10-Dec-07 09:05 AM	
-="CN50384"	"Training delivery - Staff selection and Recruitmen"	="Department of Transport and Regional Services"	10-Dec-07	="Specialised educational services"	28-Nov-07	30-Jun-08	15097.50	="WOT06/100"	="PEOPLE AND STRATEGY"	10-Dec-07 09:05 AM	
-="CN50385"	"Legal Service Expenditure LG070807-6735"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	05-Dec-07	30-Jun-09	14850.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	10-Dec-07 09:06 AM	
-="CN50386"	"*Water & Wastewater Mngmt & Operation CI *Water & Wastewater Mngmt & Operation CKI #"	="Department of Transport and Regional Services"	10-Dec-07	="Water resources development and oversight"	29-Nov-07	30-Jun-08	263000.00	="TRS06/109"	="WATER CORPORATION"	10-Dec-07 09:06 AM	
-="CN50387"	"Consultancy - OTS Compliance Framework"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	03-Dec-07	31-Jan-08	23100.00	="TRS06/512"	="Thinkplace Pty Ltd"	10-Dec-07 09:06 AM	
-="CN50388"	"SuperStar Software"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	31-Aug-07	10-Dec-07	51668.95	="TRS07/015"	="Space Time Research Pty Ltd"	10-Dec-07 09:06 AM	
-="CN50390"	"mailout of two mail packs to approximately 80,000 clients"	="Australian Taxation Office"	10-Dec-07	="Transportation and Storage and Mail Services"	03-Dec-07	30-Jun-08	10686.50	=""	="SEMA Group Pty Ltd"	10-Dec-07 09:22 AM	
-="CN50392"	"Printing of NAT10129-12.2007. Qty: 25,000"	="Australian Taxation Office"	10-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	06-Dec-07	14-Dec-07	14527.70	="06.030"	="Paragon Printers"	10-Dec-07 09:40 AM	
-="CN50391-A1"	" PROTRACTOR, SEMICIRCULAR. "	="Defence Materiel Organisation"	10-Dec-07	="Protractors"	07-Dec-07	11-Mar-08	58168.00	=""	="W & G EDUCATION PTY LTD"	10-Dec-07 09:45 AM	
-="CN50393"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Computer Equipment and Accessories"	28-Aug-07	30-Jun-08	54800.00	=""	="INFRONT SYSTEMS PTY LTD"	10-Dec-07 09:49 AM	
-="CN50394"	"Facilitation of workshop for ICT"	="Australian Taxation Office"	10-Dec-07	="Project management"	03-Dec-07	21-Dec-07	14100.00	=""	="Fyusion Asia Pacific P/L"	10-Dec-07 10:02 AM	
-="CN50395"	"Lease at Goondiwindi, Queensland"	="Centrelink"	10-Dec-07	="Real estate services"	21-Oct-08	20-Oct-09	45316.45	=""	="AM Billsborough & RC Billsborough"	10-Dec-07 10:23 AM	
-="CN50396"	"Building Services  "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Blinds and shades"	01-Aug-07	30-Sep-07	31200.00	=""	="TURNER BROTHERS FURNISHINGS PTY LTD"	10-Dec-07 10:30 AM	
-="CN50397"	"IT System Support - Installation"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Computer services"	01-Feb-07	28-Feb-07	10000.00	=""	="ATTORNEY GENERALS DEPT"	10-Dec-07 10:40 AM	
-="CN50400"	"Property Management Services"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Property management"	01-Jul-07	30-Jun-08	65000.00	=""	="UNITED GROUP SERVICES PTY LTD"	10-Dec-07 10:46 AM	
-="CN50403"	"Scribing Services for IP Australia"	="IP Australia"	10-Dec-07	="Human resources services"	24-Oct-07	30-Jun-08	15000.00	="IPA05/14475-24"	="GREG RYAN & ASSOCIATES"	10-Dec-07 11:21 AM	
-="CN50404"	"XML Developer C2007/14336"	="IP Australia"	10-Dec-07	="Temporary personnel services"	09-Nov-07	07-Jan-08	22176.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	10-Dec-07 11:22 AM	
-="CN50405"	"Review and Develop Modular Training Program for ES&S and PBR Admin"	="IP Australia"	10-Dec-07	="Human resource development"	13-Nov-07	22-Feb-08	35006.00	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	10-Dec-07 11:22 AM	
-="CN50406"	"Isys adhoc consultation services"	="IP Australia"	10-Dec-07	="Computer services"	15-Nov-07	29-Feb-08	10000.00	="IPAC2007/13772"	="KAZ Group PTY LTD"	10-Dec-07 11:22 AM	
-="CN50407"	"Consultative Committee Training Programs"	="IP Australia"	10-Dec-07	="Human resource development"	20-Nov-07	30-Nov-07	10000.00	="IPA05/14475-16"	="LIVINGSTONES SERVICES (AUST) PTY LT"	10-Dec-07 11:22 AM	
-="CN50408"	"BA J2EE Developer C2007/14442"	="IP Australia"	10-Dec-07	="Temporary personnel services"	20-Nov-07	08-Feb-08	52800.00	="IPA2006/11854-5"	="CCS INDEX (AUSTRALIA) PTY LTD"	10-Dec-07 11:22 AM	
-="CN50409"	"J2EE Developer  C200714443"	="IP Australia"	10-Dec-07	="Temporary personnel services"	20-Nov-07	08-Feb-08	44000.00	="IPA2006/11854-5"	="CCS INDEX (AUSTRALIA) PTY LTD"	10-Dec-07 11:22 AM	
-="CN50410"	"Stage 1 Disaster Recovery Management Program"	="IP Australia"	10-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	31-Jan-08	64000.00	="IPAC2007/12304-01"	="AJILON AUSTRALIA PTY LTD"	10-Dec-07 11:22 AM	
-="CN50411"	"Snap Mirror Software T4C and Subscription"	="IP Australia"	10-Dec-07	="Computer services"	26-Nov-07	30-Nov-07	72885.80	="IPAC2006/11280"	="ASI SOLUTIONS"	10-Dec-07 11:23 AM	
-="CN50412"	"Brisbane State office Fit Out ( New Building)"	="IP Australia"	10-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	28-Nov-07	110704.00	="IPAC2007/14855"	="TDA Interiors Australia (QLD) Pty L"	10-Dec-07 11:23 AM	
-="CN50413"	"User site Licence + 12 months maintenance/support"	="IP Australia"	10-Dec-07	="Software maintenance and support"	29-Nov-07	19-Nov-08	50765.00	="IPAC2007/15188"	="KAROFOX PTY LTD"	10-Dec-07 11:23 AM	
-="CN50414"	"Software Tester C2007/14869"	="IP Australia"	10-Dec-07	="Temporary personnel services"	03-Dec-07	03-Dec-08	160600.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	10-Dec-07 11:23 AM	
-="CN50415"	"Technical Support Officer C2007/14117"	="IP Australia"	10-Dec-07	="Temporary personnel services"	03-Dec-07	30-Nov-08	169400.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	10-Dec-07 11:23 AM	
-="CN50416"	"Activity Based Costings Review"	="IP Australia"	10-Dec-07	="Accounting and auditing"	05-Dec-07	05-Dec-07	28050.00	="IPAC2007/13655"	="Cogent Business Solutions Pty Ltd"	10-Dec-07 11:23 AM	
-="CN50417"	"ISO 9001:2000 Certification Services Offical Order 1"	="IP Australia"	10-Dec-07	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-07	15280.00	="IPAC2007/13395"	="NCS INTERNATIONAL PTY LIMITED"	10-Dec-07 11:23 AM	
-="CN50418"	"Legal Services -Euro-Celtique SA"	="IP Australia"	10-Dec-07	="Legal services"	04-Dec-07	30-Jun-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:24 AM	
-="CN50419"	"Brisbane State Office Makegood Payment"	="IP Australia"	10-Dec-07	="Property management services"	12-Nov-07	12-Nov-07	57552.00	=""	="Colliers International"	10-Dec-07 11:24 AM	
-="CN50420"	"Canon DR 9080C Scanner with 4 year warranty"	="IP Australia"	10-Dec-07	="Office machines and their supplies and accessories"	14-Nov-07	19-Nov-07	11686.40	=""	="CANON AUSTRALIA PTY LTD (ACT)"	10-Dec-07 11:24 AM	
-="CN50421"	"Oracle Database Enterprise Edition with 1 year Support"	="IP Australia"	10-Dec-07	="Software maintenance and support"	16-Nov-07	16-Nov-07	38913.91	=""	="ASG Group Ltd"	10-Dec-07 11:24 AM	
-="CN50422"	"2X WS- C3750 48PS-S Catalyst Switches 2X WS-X6748- GE-TX Cat 6500 Switches"	="IP Australia"	10-Dec-07	="Computer services"	16-Nov-07	16-Nov-07	39516.49	=""	="CERULEAN SOLUTION LTD C/O IBM AUSTR"	10-Dec-07 11:24 AM	
-="CN50423"	"Advertised position on 27OCT07 in two newspapers"	="IP Australia"	10-Dec-07	="Personnel recruitment"	27-Nov-07	27-Nov-07	15188.83	=""	="HMA Blaze Pty Ltd"	10-Dec-07 11:24 AM	
-="CN50424"	"5402064QS Adobe Acrobat 8 Upgrade"	="IP Australia"	10-Dec-07	="Software"	27-Nov-07	11-Dec-07	79320.54	="IPA"	="Dimension Data Australia Pty Ltd"	10-Dec-07 11:24 AM	
-="CN50425"	"Legal Services - Sherman v Merck & Co."	="IP Australia"	10-Dec-07	="Legal services"	04-Dec-07	10-Nov-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:25 AM	
-="CN50426"	"Positions advertisement"	="IP Australia"	10-Dec-07	="Advertising"	05-Dec-07	05-Dec-07	16535.89	=""	="HMA Blaze Pty Ltd"	10-Dec-07 11:25 AM	
-="CN50427"	"Legal Appeal-Patent application No. 2001276418"	="IP Australia"	10-Dec-07	="Legal services"	05-Dec-07	30-Jun-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:25 AM	
-="CN50428"	"Internal Audit Services"	="IP Australia"	10-Dec-07	="Business administration services"	06-Oct-06	07-Sep-08	27500.00	="IPAC2005/13177"	="KPMG"	10-Dec-07 11:25 AM	
-="CN50429"	"Provision of SAP Maintenance and Support for My SAP ERP 2004"	="IP Australia"	10-Dec-07	="Temporary personnel services"	12-Dec-06	29-Jan-09	159500.00	="IPAC2006/10216"	="SOUTHERN CROSS COMPUTING PTY LTD"	10-Dec-07 11:25 AM	
-="CN50430"	"Mental Health Awareness Training"	="IP Australia"	10-Dec-07	="Education and Training Services"	09-Oct-07	29-Feb-08	29320.00	="IPA05/14475-39"	="Jakeman Business Solutions Pty Ltd"	10-Dec-07 11:25 AM	
-="CN50431"	"Relocation of IP Australia"	="IP Australia"	10-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	28-Nov-07	23000.00	="IPAC2007/14108"	="RELOCATION RULES PTY LTD"	10-Dec-07 11:25 AM	
-="CN50432"	"Team Building Program TMS"	="IP Australia"	10-Dec-07	="Human resources services"	17-Oct-07	16-Nov-07	10849.90	="IPA05/14475-09"	="INTERACTION CONSULTING GROUP"	10-Dec-07 11:25 AM	
-="CN50434"	"A24N AIRCAFT SPARES"	="Defence Materiel Organisation"	10-Dec-07	="Aircraft"	10-Dec-07	16-Aug-08	45145.10	=""	="MILSPEC SERVICES PTY LTD"	10-Dec-07 11:39 AM	
-="CN50435"	"Aviation Spares, Purchase of 3-Point Harness Kits"	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	06-Dec-07	29-Feb-08	137363.19	=""	="Australian Aerospace"	10-Dec-07 11:53 AM	
-="CN50437"	"PURCHASE OF QTY 100 FIELD PACKS"	="Department of Defence"	10-Dec-07	="Luggage and handbags and packs and cases"	17-Oct-07	31-Oct-07	13726.90	=""	="FERNO AUSTRALIA"	10-Dec-07 12:06 PM	
-="CN50438"	"Vehicle Repair Parts"	="Defence Materiel Organisation"	10-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	17515.12	=""	="Premier Automotive Group Australia Pty Ltd"	10-Dec-07 12:55 PM	
-="CN50439"	"NSN 5180-01-378-8873, Aircraft Maintenance Tool Kit"	="Defence Materiel Organisation"	10-Dec-07	="Aerospace systems and components and equipment"	06-Nov-07	06-Apr-08	77071.10	=""	="Milspec Services Pty Ltd"	10-Dec-07 01:07 PM	
-="CN50440"	"For the purchase of Qty 25 Tri Axis Accelerometers P/N: 17A542-03-00 for fitment to Black Hawk Helicopters as part of the Flight Data Recorder/CVDR upgrade. "	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	10-Dec-07	30-Apr-08	151250.00	=""	="FLIGHT DATA SYSTEMS"	10-Dec-07 01:58 PM	
-="CN50441"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	39790.55	=""	="Australian Customs Service"	10-Dec-07 02:04 PM	
-="CN50443"	"Provision of a Communications Review"	="Comsuper"	10-Dec-07	="Human resources services"	29-Oct-07	19-Nov-07	20000.00	=""	="YellowEdge Pty Ltd"	10-Dec-07 02:08 PM	
-="CN50442"	"Motor Vehicle Parts."	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	09-Jan-08	16150.74	=""	="Daimler Chrysler AUST Pacific"	10-Dec-07 02:09 PM	
-="CN50444"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	308716.12	=""	="Austrac"	10-Dec-07 02:10 PM	
-="CN50446"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	494928.34	=""	="NSW Police Service"	10-Dec-07 02:14 PM	
-="CN50445"	"Gear, Spur, Gear & Splink"	="Defence Materiel Organisation"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Aug-07	23-Jan-08	11935.44	=""	="General Dynamics"	10-Dec-07 02:16 PM	
-="CN50447"	"CAP SERVICE WHITE PEAKED, CAP SERVICE WHITE CHAPLAIN & CAP SERVICE WHITE COMMANDER"	="Defence Materiel Organisation"	10-Dec-07	="Clothing accessories"	19-Jul-07	31-Jan-08	146280.75	=""	="MOUNTCASTLE PTY LTD"	10-Dec-07 02:26 PM	
-="CN50448"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	61017.75	=""	="NT Police Fire and Emergency Service"	10-Dec-07 02:26 PM	
-="CN50449"	" Salary and Oncosts for Police Secondees "	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	396680.63	=""	="Queensland Police Service"	10-Dec-07 02:30 PM	
-="CN50450"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	401445.99	=""	="South Australia Police"	10-Dec-07 02:33 PM	
-="CN50451"	"Air Travel Booking Services"	="Australian Electoral Commission"	10-Dec-07	="Travel facilitation"	30-Nov-07	30-Sep-12	10000000.00	=""	="American Express Australia - QBT"	10-Dec-07 02:42 PM	
-="CN50452"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	352698.40	=""	="Tasmania Police - Department of police & Public Finance Branch"	10-Dec-07 02:48 PM	
-="CN50454"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	425488.16	=""	="Victoria Police"	10-Dec-07 02:52 PM	
-="CN50459"	"Building Services"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Speed stoppers"	01-Sep-07	01-Sep-07	24400.00	=""	="UNITED GROUP SERVICES PTY LTD"	10-Dec-07 02:54 PM	
-="CN50461"	"Air Travel Booking Services"	="Australian Electoral Commission"	10-Dec-07	="Travel facilitation"	01-Jul-07	29-Nov-07	697388.23	=""	="American Express Australia - QBT"	10-Dec-07 02:55 PM	
-="CN50462"	"ASLAV BOLT AND TRACK"	="Defence Materiel Organisation"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	08-Mar-08	32175.00	=""	="Trimcast"	10-Dec-07 03:01 PM	
-="CN50463"	" Furniture "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Furniture"	01-Jun-07	30-Sep-07	10300.00	=""	="INO CONTRACT FURNITURE PTY"	10-Dec-07 03:01 PM	
-="CN50464"	"Centrelink Agent at West Wyalong NSW for period 1/7/07 to 30/6/08"	="Centrelink"	10-Dec-07	="Community and social services"	01-Jul-07	30-Jun-08	33880.69	=""	="Bland Shire Council"	10-Dec-07 03:13 PM	
-="CN50466"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	26822.09	=""	="Australian Taxation Office"	10-Dec-07 03:23 PM	
-="CN50467"	"Furniture"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Furniture"	01-May-07	30-Sep-07	25700.00	=""	="STYLECRAFT AUSTRALIA"	10-Dec-07 03:28 PM	
-="CN50468"	"LAFIA - Asian Study Tour & Airfares"	="Australian Crime Commission"	10-Dec-07	="Development"	01-Jul-07	31-Dec-07	26822.09	=""	="Australian Public Service Commission"	10-Dec-07 03:28 PM	
-="CN50469-A1"	"Courier Services"	="Australian Electoral Commission"	10-Dec-07	="Road cargo transport"	27-Aug-07	31-Dec-09	222964.00	="05/06/40"	="Toll Prority"	10-Dec-07 03:35 PM	
-="CN50471"	"Printing and Binding"	="Australian Electoral Commission"	10-Dec-07	="Industrial printing services"	12-Nov-07	12-Dec-07	12100.00	=""	="Australian Envelopes"	10-Dec-07 03:42 PM	
-="CN50476"	"Printing and Binding"	="Australian Electoral Commission"	10-Dec-07	="Industrial printing services"	12-Nov-07	12-Dec-07	14300.00	=""	="Australian Envelopes"	10-Dec-07 03:48 PM	
-="CN50477"	"Printing"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Publication printing"	24-Jul-07	24-Jul-07	10500.00	=""	="ZOO COMMUNICATIONS PTY LTD"	10-Dec-07 03:55 PM	
-="CN50478"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	10-Dec-07	="Community and social services"	01-Jul-07	30-Jun-08	28079.42	=""	="Wallace Rockhole Community Government Council"	10-Dec-07 03:57 PM	
-="CN50481"	"Modification Kits for and Modification of F88S Weapons into WTSS Simulated Weapons."	="Defence Materiel Organisation"	10-Dec-07	="Weapon system teaching aids or materials"	15-Nov-07	13-Jun-08	460977.00	="Q1293"	="Firearms Training Systems Aust Pty Ltd"	10-Dec-07 03:59 PM	
-="CN50482"	"Ballot Paper Development"	="Australian Electoral Commission"	10-Dec-07	="Graphic design"	20-Apr-07	19-Sep-07	24232.73	="S06/07/043"	="Swell Design Group Pty Ltd"	10-Dec-07 04:03 PM	
-="CN50484"	"Temporary Personnel"	="Australian Electoral Commission"	10-Dec-07	="Temporary personnel services"	09-Nov-07	09-Dec-07	55602.00	="S07/08/089"	="Locher & Associates Pty Ltd"	10-Dec-07 04:15 PM	
-="CN50485"	"Training"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Education and Training Services"	01-Jun-07	01-Jul-07	10500.00	=""	="DEPARTMENT OF DEFENCE"	10-Dec-07 04:17 PM	
-="CN50488"	"motor vehicle spare parts"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	09-Jan-08	21105.69	=""	="Volvo Commercial Vehicles Albury"	10-Dec-07 04:21 PM	
-="CN50490"	"Motor Vehicle Parts."	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Dec-07	09-Jan-08	33502.91	=""	="Daimler Chrysler AUST Pacific"	10-Dec-07 04:25 PM	
-="CN50491-A11"	"Debt Collection Services panel"	="Australian Taxation Office"	10-Dec-07	="Credit agencies"	28-Sep-07	27-Sep-11	17885348.14	="06.155"	="Dun and Bradstreet (Australia) Pty Ltd as trustee to the Dun & Bradstreet Unit Trust"	10-Dec-07 04:28 PM	
-="CN50489"	"Procurement of Paint and Painting products"	="Department of Defence"	10-Dec-07	="Paints and primers and finishes"	02-Aug-07	16-Dec-07	14410.07	=""	="PROTEC Pty Ltd"	10-Dec-07 04:31 PM	
-="CN50492"	"Protective Guard Security"	="Australian Electoral Commission"	10-Dec-07	="Security guard services"	19-Nov-07	19-Dec-07	12500.00	="S07/08/113"	="SNP Security"	10-Dec-07 04:33 PM	
-="CN50493"	"motor vehicle spare parts"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	19481.26	=""	="ROVER AUSTRALIA"	10-Dec-07 04:33 PM	
-="CN50494"	" LicensiE Support Fee "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Proprietary or licensed systems maintenance or support"	01-Jul-06	30-Jun-07	10100.00	=""	="AURION CORPORATION PTY LTD"	10-Dec-07 04:37 PM	
-="CN50495"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	41338.31	=""	="ROVER AUSTRALIA"	10-Dec-07 04:41 PM	
-="CN50496"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	22189.60	=""	="ROVER AUSTRALIA"	10-Dec-07 04:49 PM	
-="CN50497"	"Software Maintenance"	="Australian Electoral Commission"	10-Dec-07	="Software maintenance and support"	22-Jun-07	21-Jun-08	26985.40	=""	="Alphawest Services Pty Ltd"	10-Dec-07 05:00 PM	
-="CN50498"	"Production & Installation of precast concrete fence rails at Lae War Cememtery"	="Department of Veterans' Affairs"	10-Dec-07	="General building construction"	06-Dec-07	05-Mar-08	18338.00	=""	="Morobe Concrete Products"	10-Dec-07 05:00 PM	
-="CN50499"	" Computing Database Services "	="Australian Electoral Commission"	10-Dec-07	="Temporary information technology systems or database administrators"	01-Jun-07	13-Jul-07	10000.00	=""	="Don O'Connor"	10-Dec-07 05:10 PM	
-="CN50501"	" CONNECTING LINK RIGID P/No 206-001-096-001 MC 97499  QUANTITY 10 "	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	10-Dec-07	19-Jun-08	11278.52	=""	="HELITECH A DIVISION OF SIKORSKY"	10-Dec-07 05:15 PM	
-="CN50502-A12"	"Debt Collection Services"	="Australian Taxation Office"	10-Dec-07	="Credit agencies"	05-Oct-07	27-Sep-11	15339704.87	="06.155"	="Recoveries Corporation Pty Ltd"	10-Dec-07 05:26 PM	
-="CN50503"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Dec-07	="Vehicle leasing"	10-Jun-06	09-Jun-08	42776.64	=""	="LeasePlan"	10-Dec-07 09:07 PM	
-="CN50504"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Dec-07	="Vehicle leasing"	27-Aug-07	26-Aug-09	36349.20	=""	="LeasePlan"	10-Dec-07 09:15 PM	
-="CN50515"	"Purchase of replacement Notebooks for FCoA"	="Family Court of Australia"	11-Dec-07	="Notebook computers"	11-Dec-07	10-Jan-08	40910.00	=""	="Dell Australia Pty Ltd"	11-Dec-07 08:29 AM	
-="CN50516"	" Recruitment services "	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	23-Aug-07	29-Feb-08	77000.00	=""	="Spencer Stuart"	11-Dec-07 08:51 AM	
-="CN50517"	"Recruitment services"	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	17-Sep-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 08:54 AM	
-="CN50518"	"Recruitment services"	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	03-Oct-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 08:57 AM	
-="CN50519"	" Recruitment services "	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	01-Nov-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 09:00 AM	
-="CN50521"	"Crates for Billy Hughes at War Exhib"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	07-Dec-07	21-Jan-08	14008.50	="ATM2007/00738"	="T.E.D. AUSTRALIA"	11-Dec-07 09:20 AM	
-="CN50522"	"Fini Frames fot Billy Hughes at War Exhib"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	07-Dec-07	24-Dec-07	12428.83	="ATM2007/00739"	="FINI FRAMES PTY LTD"	11-Dec-07 09:20 AM	
-="CN50523"	"Advertising Position vacant"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13008.80	="2007/720"	="HMA BLAZE PTY LTD"	11-Dec-07 09:20 AM	
-="CN50524"	"Data entry for the PLR Manual Survey Data"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Jan-08	16500.00	="ATM07/722"	="RECALL INFORMATION MANAGEMENT Pty L"	11-Dec-07 09:20 AM	
-="CN50525"	"Supply and install workstations- 38 Sydney"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	04-Dec-07	30-Jun-08	22293.70	="ATM 07/721"	="Schiavello (ACT) Pty Ltd"	11-Dec-07 09:20 AM	
-="CN50526"	"Consultancy Services for ICT Options"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	50000.01	="DCON05/143"	="WALTER TURNBULL"	11-Dec-07 09:20 AM	
-="CN50528"	"New Lift to MDR - Building Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	29-Nov-07	01-Jun-08	266742.30	="ATM 2007/00697"	="FM Projects Australia Pty Ltd"	11-Dec-07 09:21 AM	
-="CN50529"	"SW Wing Basement storage - Building Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	29-Nov-07	30-Apr-08	235103.00	="ATM 2007/00693"	="FM Projects Australia Pty Ltd"	11-Dec-07 09:21 AM	
-="CN50530-A1"	"Book, Wollstonecraft, Mary A Vindication of The Rights of Women"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	29-Nov-07	29-Nov-07	12100.00	="ATM2007/00696"	="Justin Croft Antiquarian Books"	11-Dec-07 09:21 AM	
-="CN50531"	"Senate Press Galleries Painting Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	14-Jan-08	30834.95	="ATM 07/692"	="Picasso Building Pty Ltd"	11-Dec-07 09:21 AM	
-="CN50532"	"New Lift to the Rear of OPH"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	30-Jun-08	103840.00	="ATM 2007/00690"	="SCHINDLER LIFTS AUSTRALIA P/L"	11-Dec-07 09:21 AM	
-="CN50533-A1"	"Contractor services"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	31-Jan-08	12794.14	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	11-Dec-07 09:21 AM	
-="CN50534"	"SW Wing Basement storage projuce - Architectural services through construction"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Apr-08	34210.00	="ATM 2007/07/154"	="HBO+EMTB Interiors (ACT) Pty Ltd"	11-Dec-07 09:21 AM	
-="CN50535"	"airfares - 1-31/10/07"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	27-Nov-07	27-Nov-07	10035.22	=""	="CARLSON WAGONLIT TRAVEL"	11-Dec-07 09:21 AM	
-="CN50536-A1"	"Legal Services - contract for BART"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	27-Nov-07	30-Jun-08	19250.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Dec-07 09:21 AM	
-="CN50537"	"Redevelopment of OPH Website"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	16-Nov-07	28-Feb-08	70455.00	="ATM2007/00694"	="ZOO Communications"	11-Dec-07 09:22 AM	
-="CN50538"	"2007 Contribution to ARC Linkage Project Grant"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	28-Jul-05	30-Dec-07	11000.00	="2007/00691"	="UNIVERSITY OF CANBERRA"	11-Dec-07 09:22 AM	
-="CN50539-A1"	"Contractor services"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	28-Nov-07	31-Jan-08	23989.94	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	11-Dec-07 09:22 AM	
-="CN50540-A3"	"Telstra Constitutional Challenge in High Court"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Legal services"	20-Apr-07	30-Jun-09	397092.04	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Dec-07 09:22 AM	
-="CN50543"	"Laser Power Amplifier Upgrade to increase laser power output."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	01-Nov-07	30-Jun-08	93500.00	=""	="EOS Space Systems Pty Ltd"	11-Dec-07 09:39 AM	
-="CN50544"	"PRINCE2 Practitioner Package, 3 sessions through November and December 2007"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	02-Nov-07	10-Dec-07	32670.00	=""	="Tanner James Management Consultants"	11-Dec-07 09:39 AM	
-="CN50545"	"Analysis and processing of remote sensing image and time-series data"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	02-Nov-07	30-Nov-07	11000.00	=""	="Monash University"	11-Dec-07 09:39 AM	
-="CN50546"	"Implementation/Consultancy services and ITBM training for Oct/Nov. 07"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	02-Nov-07	30-Nov-07	29040.00	=""	="Touchpaper Australasia Pty Ltd T/As Helpdesk Solutions"	11-Dec-07 09:39 AM	
-="CN50547"	"Analysis and Design using UML course (for 6 OEMD participants)"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	05-Nov-07	30-Nov-07	29698.90	=""	="Object Consulting Pty Ltd"	11-Dec-07 09:39 AM	
-="CN50548"	"G1346 EBSCO Serials Renewal for Calender Year 2008"	="Geoscience Australia"	11-Dec-07	="Printed publications"	05-Nov-07	31-Dec-08	357547.92	=""	="EBSCO Australia"	11-Dec-07 09:39 AM	
-="CN50549"	"G2030 Services in relation to ICT Storage Review Oct/Nov 2007"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	12-Nov-07	10725.00	=""	="CCS Index Pty Ltd"	11-Dec-07 09:39 AM	
-="CN50550"	"REF No: RP00748/SYD0421; Transcription of H93S Stag 3D Marine Seismic Survey Data (894 x 3480 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	30-Jun-08	11388.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:40 AM	
-="CN50551"	"REF No: RP00874/SYD0507; Transcription of Baylis 3D Project 506 Marine Seismic and Magnetic Survey Data (146 x 3590 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	30-Jun-08	12915.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:40 AM	
-="CN50553"	"ASNET Installation"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	30-Nov-07	105000.00	=""	="Attorney-General's Department"	11-Dec-07 09:40 AM	
-="CN50554"	"Supply of temperature logging equipment as per your Quote No. 1710"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	07-Nov-07	30-Jun-08	76995.60	=""	="Auslog Pty Ltd"	11-Dec-07 09:40 AM	
-="CN50555"	"APS Job Subscription 2007-2008"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	14659.43	=""	="Australian Public Service Commission APSC"	11-Dec-07 09:40 AM	
-="CN50556"	"Secuirty Clearances"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	15-Nov-07	28-Nov-07	66600.00	=""	="Dept of Industry Tourism & Resources"	11-Dec-07 09:40 AM	
-="CN50557"	"Contract services - Ceduna Sub-Basin Teclink & Petroleum Systems Modelling (USD$22,750)"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	08-Nov-07	31-Dec-07	25000.00	=""	="IES GmbH"	11-Dec-07 09:41 AM	
-="CN50558"	"Consultancy - Regional Geological Analysis of the Lord Howe Rise Region"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	08-Nov-07	31-May-08	41470.00	=""	="Dr Martin Simeon Norvick"	11-Dec-07 09:41 AM	
-="CN50559"	"G2159 HP Project id: AU3-03535.  G.A. Data Centre Facility Assessment (Risk & Thermal)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	09-Nov-07	30-Nov-07	25025.00	=""	="Hewlett Packard Australia Ltd"	11-Dec-07 09:41 AM	
-="CN50560"	"PCI Geomatica software maintenance for period 1 Oct 2007 to 30 Sep 2008 as per quote WA08-0093"	="Geoscience Australia"	11-Dec-07	="Software"	09-Nov-07	30-Sep-08	10994.01	=""	="Geoimage Pty Ltd"	11-Dec-07 09:41 AM	
-="CN50561"	"Reimbursment to the University of Sydney for their part in Leg 1 Tangaroa Survey"	="Geoscience Australia"	11-Dec-07	="Passenger air transportation"	09-Nov-07	30-Nov-07	27499.99	=""	="University of Sydney"	11-Dec-07 09:41 AM	
-="CN50562"	"Upgrade for Core Research Advisor to EXP Premier Seat to cover period 1/11/2007 to 30/6/2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	09-Nov-07	30-Jun-08	62150.00	=""	="Gartner Australasia Pty Ltd"	11-Dec-07 09:41 AM	
-="CN50563"	"Apparatus Licence Renewal Fees, Earth Receive and Fixed, Alice Springs and TERSS."	="Geoscience Australia"	11-Dec-07	="Telecommunications media services"	11-Nov-07	13-Dec-08	32256.00	=""	="Australian Communications and Media Authority"	11-Dec-07 09:41 AM	
-="CN50564"	"Icon Annual Levy 07/08"	="Geoscience Australia"	11-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	49500.00	=""	="Dept of Finance & Administration"	11-Dec-07 09:42 AM	
-="CN50565"	"Serials Subscription 01/2008 -12/2008"	="Geoscience Australia"	11-Dec-07	="Printed publications"	12-Nov-07	31-Dec-08	12363.00	=""	="American Geophysical Union"	11-Dec-07 09:42 AM	
-="CN50566"	"Maintenance of Victorian JUMP stations"	="Geoscience Australia"	11-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	11000.00	=""	="ES&S Environmental Systems & Services Pty Ltd"	11-Dec-07 09:42 AM	
-="CN50567"	"Canning Basin Airborne Magnetic and Radiometric Survey, including full stand-by. [Ref 2006/4271] Residual from 06_07 PO 20949."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	13-Nov-07	31-Dec-07	210536.41	=""	="Fugro Airborne Surveys"	11-Dec-07 09:42 AM	
-="CN50568"	"K3155 - K950X Turbo carbon evaporator; K3115 - K150X Film thickness monitor (free standing)"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	13-Nov-07	30-Jan-08	26676.10	=""	="ProSciTech"	11-Dec-07 09:42 AM	
-="CN50569"	"SHRIMP automation software"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	13-Nov-07	30-Jun-08	31900.00	=""	="Australian Scientific Instruments Pty Ltd"	11-Dec-07 09:42 AM	
-="CN50570"	"RC Contract Services 60 days from 08/10/07 with option to extend 60 days. Cost to GA @ $70 per hour."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	13-Nov-07	30-Jun-08	73920.00	=""	="Finite Recruitment Pty Ltd"	11-Dec-07 09:42 AM	
-="CN50571"	"Final two payments for the SHRIMP"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	14-Nov-07	30-Jun-08	1037850.00	=""	="Australian Scientific Instruments Pty Ltd"	11-Dec-07 09:43 AM	
-="CN50572"	"Core Spring Training for 5 OEMDIS staff and 1 ISB staff"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	14-Nov-07	31-Jan-08	19668.00	=""	="Interface21 Pty Limited"	11-Dec-07 09:43 AM	
-="CN50573"	"Contract Services for Technical advice on Geophysical Data Interpretation and a Slope Failure Survey Study. (USD$30877)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	14-Nov-07	31-Dec-07	38500.00	=""	="RPS Energy Pty Ltd"	11-Dec-07 09:43 AM	
-="CN50574"	"2D Move training course - 11-13 Dec 2007. Quote Ref: 162.0"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	14-Nov-07	31-Dec-07	14173.50	=""	="FaultSeal Finance Pty Ltd"	11-Dec-07 09:43 AM	
-="CN50576"	"GeoFrameRunTime Environment and GeoFrame IESX Seis2DV Licences"	="Geoscience Australia"	11-Dec-07	="Software"	15-Nov-07	27-Nov-07	321649.94	=""	="Schlumberger Oilfield Australia Pty ltd"	11-Dec-07 09:43 AM	
-="CN50577"	"Advertisements in the Australian Saturday 6.10.07 3 Positions Law of the Sea"	="Geoscience Australia"	11-Dec-07	="Personnel recruitment"	15-Nov-07	30-Nov-07	10063.81	=""	="HMA Blaze Pty Limited"	11-Dec-07 09:43 AM	
-="CN50578"	"Contract Staff PMD 3 December 2007 - 13 December 2007"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Dec-07	16170.00	=""	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:43 AM	
-="CN50579"	"OzCoast Database and Web Development Contract Staff October 2007 to April 2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	15-Nov-07	30-Apr-08	100100.00	=""	="Data Vantage Australia Pty Ltd"	11-Dec-07 09:44 AM	
-="CN50580"	"2007-2008 fuel costs for executive vehicles"	="Geoscience Australia"	11-Dec-07	="Fuels"	19-Nov-07	30-Jun-08	18900.00	=""	="Lease Plan Aust Limited"	11-Dec-07 09:44 AM	
-="CN50582"	"Contract services - Offshore Canning Magnetic Interpretation (RFT2007/2855)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	19-Nov-07	31-Mar-08	308110.00	=""	="Encom Technology Pty Ltd"	11-Dec-07 09:44 AM	
-="CN50584"	"RP00897 transcription of 3D Marine Seismic Seismic consisting of 194 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	11504.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:44 AM	
-="CN50585"	"RP00896 Transcription of 3D Marine Seismic consisting of 237 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	14148.20	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50586"	"RP00895 transcription of  2D Marine Seismic consisting of 266 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	15464.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50581"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	11-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	308716.14	=""	="Western Australia Police"	11-Dec-07 09:45 AM	
-="CN50587"	"RP00894 Transcription of  3D Marine Seismic consisting of 203 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	11999.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50588"	"Re: G00865 Quality control services  (PO: 21307) 126 x 3590 cartridge pairs"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	10892.97	=""	="GeoCom Services Australia Pty  Ltd"	11-Dec-07 09:45 AM	
-="CN50589"	"Provide property advice for Geoscience Australia accomodation issues including strategic accomodation planning and lease issues"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	20-Nov-07	30-Jun-08	22000.00	=""	="Property Concept & Management Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50590"	"REF: RP00867/SYD0491; Transcription of Mescal 3D Marine Seismic (Consisting of 1548 x 3590 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Jun-08	136395.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50591"	"contract Services for Tech Writer 7 Nov 2007 to 20 feb 2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	21-Nov-07	31-Mar-08	41800.00	=""	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:45 AM	
-="CN50592"	"2 x Dell PowerEdge 1950 Servers"	="Geoscience Australia"	11-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	06-Dec-07	26334.00	=""	="Dell Australia Pty Ltd"	11-Dec-07 09:46 AM	
-="CN50593"	"Provision for Cabcharge Services Corporate/ISB Branch for FY 2007/08"	="Geoscience Australia"	11-Dec-07	="Passenger road transportation"	22-Nov-07	30-Jun-08	24000.00	=""	="Cabcharge Australia Pty Ltd"	11-Dec-07 09:46 AM	
-="CN50583"	"Vehicle Repair Parts"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	25-Jul-07	08-Aug-07	21824.92	=""	="Premier Automotive Group Pty Ltd"	11-Dec-07 09:46 AM	
-="CN50595"	"Current Profiler Autonomous System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	67845.80	=""	="Biolab (Aust) Pty Limited"	11-Dec-07 09:46 AM	
-="CN50596"	"Transceiver and Transponder for Portable Underwater Video System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	32558.66	=""	="Linkquest Inc"	11-Dec-07 09:46 AM	
-="CN50597"	"Portable Underwater Video System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	47782.90	=""	="Raytech Services Pty Ltd"	11-Dec-07 09:46 AM	
-="CN50598"	"CRC LEME 2007-08 Payment"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	100000.00	=""	="CRC LEME (CRC for Landscape Environments & Mineral Exploration)"	11-Dec-07 09:46 AM	
-="CN50599"	"Petrosys software maintenance 30 Nov 2007 to 29 Nov 2008"	="Geoscience Australia"	11-Dec-07	="Software"	23-Nov-07	29-Nov-08	45220.92	=""	="Petrosys Pty Ltd"	11-Dec-07 09:47 AM	
-="CN50600-A1"	"G2201 Provision of Staff Under Deed of Standing Offer to 30 June 2008."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	23-Nov-07	30-Jun-08	93500.00	=""	="AUREC Pty Ltd"	11-Dec-07 09:47 AM	
-="CN50594"	"Software Support"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Software"	01-Jul-07	30-Jun-08	34000.00	=""	="CITRIX SYSTEMS ASIA PACIFIC PTY LTD"	11-Dec-07 09:47 AM	
-="CN50601"	"G2173 Provision of Staff Under Deed of Standing Offer to 30 June 2008 Project Manager"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	23-Nov-07	30-Jun-08	99000.00	=""	="Verossity Pty Ltd"	11-Dec-07 09:47 AM	
-="CN50602"	"Employment of technical assistant within Mineral Resources and Advice Group"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-May-08	12100.00	=""	="Keenyear Pty Ltd"	11-Dec-07 09:47 AM	
-="CN50603"	"WP1042 Glenelg-Hopkins #1 -  Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	119570.77	=""	="Sinclair Knight Merz"	11-Dec-07 09:47 AM	
-="CN50604"	"Overview of Natural Hazard Risk for the Asia-Pacific Region"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	31-Dec-07	162250.00	="2007/1368"	="Access Macquarie Limited"	11-Dec-07 09:47 AM	
-="CN50605"	"WP1067 Glenelg-Hopkins #3 - Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	136354.68	=""	="Photo Mapping Services Pty Ltd"	11-Dec-07 09:47 AM	
-="CN50606"	"WP1066 Glenelg-Hopkins #2 - Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	135458.40	=""	="Photo Mapping Services Pty Ltd"	11-Dec-07 09:48 AM	
-="CN50607"	"WP1055 Townsville - Production & Supply of Topographic Maps and Data.  Deed G1688D; CMC G2196."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	114922.50	=""	="Terranean Mapping Technologies"	11-Dec-07 09:48 AM	
-="CN50608"	"G2161 Provision of Staff Under Deed of Standing Offer to 23 May 2008 Director"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	23-May-08	143000.00	=""	="MPM Group Pty Ltd T/as Nova IT"	11-Dec-07 09:48 AM	
-="CN50609"	"ERSDEM Support Agreement - 1 July 2007 to 30 June 2008."	="Geoscience Australia"	11-Dec-07	="Computer services"	27-Nov-07	30-Jun-08	28050.00	=""	="University of South Australia"	11-Dec-07 09:48 AM	
-="CN50610"	"Replacement Towfish - 4200FS TowFish, Pressure Sensor, Mag/USBL interface"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	27-Nov-07	30-Dec-07	50000.00	=""	="EdgeOne LLC"	11-Dec-07 09:48 AM	
-="CN50611"	"G2166 Funnelback Enterprise Search  annual support for 9 Nov 2007 to 8 Nov 2008"	="Geoscience Australia"	11-Dec-07	="Software"	27-Nov-07	08-Nov-08	22000.00	=""	="Funnelback Pty Ltd"	11-Dec-07 09:48 AM	
-="CN50612"	"WP1053 Upper South-East South Australia (North Tatiara; The Coorong) Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-08	106884.54	=""	="Sinclair Knight Merz"	11-Dec-07 09:48 AM	
-="CN50613"	"Contract Services 17 December 2007 - 30 June 2008 PMD Division Contract: G1881"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	114048.00	="2005/1773"	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:49 AM	
-="CN50614"	"Rental of Latitude Scanner for 24 months Rental Contract # 21788 Contract G1980"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	30-Nov-07	30-Nov-09	53900.00	=""	="Enterprise Finance Solutions"	11-Dec-07 09:49 AM	
-="CN50615"	"RP00696 Transcription  of 7070 x 3480 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Jun-08	17437.00	="2006/3933"	="SpectrumData"	11-Dec-07 09:49 AM	
-="CN50616"	"Supply of Struers TegraSystem"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	30-Nov-07	28-Feb-08	30244.50	=""	="Intellection Pty Ltd"	11-Dec-07 09:49 AM	
-="CN50617"	"Transcription of data consisting of 117 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Jun-08	13021.55	="2006/3933"	="DataCom IT"	11-Dec-07 09:49 AM	
-="CN50618-A2"	"Security Vetting Services"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	20000.00	=""	="STAFF CHECK PTY LTD"	11-Dec-07 09:55 AM	
-="CN50620"	"Compass,Magnetic, Unmounted"	="Defence Materiel Organisation"	11-Dec-07	="Direction finding compasses"	10-Dec-07	28-Feb-08	68447.50	=""	="Luminous Processors"	11-Dec-07 10:00 AM	
-="CN50621-A1"	"Provision of Commercial Cleaning Services"	="CRS Australia"	11-Dec-07	="Cleaning and janitorial services"	31-Oct-07	30-Oct-10	22297.42	=""	="Jani-King (SA) Pty Ltd"	11-Dec-07 10:01 AM	
-="CN50622-A2"	"SECURITY VETTING SERVICES"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	49500.00	=""	="MITCHELL PERSONNEL SOLUTIONS"	11-Dec-07 10:02 AM	
-="CN50626"	"CMDM Fix Pack 6 Software Upgrade"	="Australian Taxation Office"	11-Dec-07	="Software"	07-Sep-07	31-Dec-07	287760.00	=""	="IBM Australia Ltd"	11-Dec-07 10:10 AM	
-="CN50627-A1"	"SECURITY VETTING SERVICES"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	49500.00	=""	="BARRINGTON CORPORATE RISK PTY LTD"	11-Dec-07 10:13 AM	
-="CN50628"	"Omegamon Implementation"	="Australian Taxation Office"	11-Dec-07	="Software"	11-Dec-07	30-Jun-08	289450.00	=""	="IBM Australa Ltd"	11-Dec-07 10:15 AM	
-="CN50629"	"PRIVATE PLATED MOTOR VEHICLE LEASE"	="Administrative Appeals Tribunal"	11-Dec-07	="Passenger motor vehicles"	09-Nov-07	08-Nov-09	26970.50	=""	="Lease Plan Australia Pty Ltd"	11-Dec-07 10:30 AM	
-="CN50630"	" Security Services "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Public administration and finance services"	27-Aug-07	21-Dec-07	55000.00	=""	="CORDELTA PTY LTD"	11-Dec-07 10:42 AM	
-="CN50631"	"Furniture and Fittings"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Furniture and Furnishings"	24-Sep-07	24-Oct-07	15500.00	=""	="DE DE CE"	11-Dec-07 10:50 AM	
-="CN50632"	" FURNITURE "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Furniture and Furnishings"	04-Jun-07	30-Sep-07	25400.00	=""	="DE DE CE"	11-Dec-07 10:54 AM	
-="CN50633"	" VEHICLE REPARIS "	="Department of Defence"	11-Dec-07	="Motor vehicles"	23-Jul-07	23-Aug-07	11066.18	=""	="R.G.M"	11-Dec-07 10:56 AM	
-="CN50636-A1"	" Review of Centrelink Authoring and Publishing for Internal Communication Delivery "	="Centrelink"	11-Dec-07	="Management advisory services"	12-Oct-07	31-Dec-07	68200.00	=""	="Hugh Watson Consulting Pty Ltd"	11-Dec-07 11:00 AM	
-="CN50637-A1"	" CONSULTANCY SERVICES "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Strategic planning consultation services"	12-Jun-07	02-Jul-07	19800.00	=""	="RESOLUTION COUNSULTING SERVICES"	11-Dec-07 11:03 AM	
-="CN50638"	"vehicle repair PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	30-Jul-07	13-Aug-07	17181.34	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 11:10 AM	
-="CN50639"	"Security Monitoring"	="Federal Magistrates Court"	11-Dec-07	="Security surveillance and detection"	01-Nov-07	30-Nov-07	13813.54	=""	="ADT Security"	11-Dec-07 11:17 AM	
-="CN50640"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Aug-07	20-Aug-07	27002.35	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 11:18 AM	
-="CN50641-A3"	"Provision for Project Manager"	="Comsuper"	11-Dec-07	="Human resources services"	23-Dec-07	30-Jun-08	166320.00	=""	="Candle Australia Ltd"	11-Dec-07 11:21 AM	
-="CN50642"	"Rental of Office"	="Federal Magistrates Court"	11-Dec-07	="Lease and rental of property or building"	01-Nov-07	30-Nov-07	151368.72	=""	="Attorney Generals Department - NSW"	11-Dec-07 11:24 AM	
-="CN50643"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Aug-07	20-Aug-07	12965.48	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 11:24 AM	
-="CN50644"	" VEhicle Repair Parts "	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	28-Aug-07	11-Sep-07	12698.21	=""	="DAIMLER CHRYSLER"	11-Dec-07 11:26 AM	
-="CN50645"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	17603.03	=""	="Auscript Australasia Pty Ltd"	11-Dec-07 11:28 AM	
-="CN50646"	"Purchase Ancillary Equipment for a SUN Microsystems V890 Server"	="Comsuper"	11-Dec-07	="Computer Equipment and Accessories"	10-Dec-07	10-Dec-08	49863.00	=""	="Vectra Corporation Limited"	11-Dec-07 11:31 AM	
-="CN50647"	"HYDRAULIC JACK, HAND, TOOLS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	08-Aug-07	29-Aug-07	11220.00	=""	="FORDHAM ENGINEERING"	11-Dec-07 11:32 AM	
-="CN50649"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	08-Aug-07	22-Aug-07	17591.64	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:38 AM	
-="CN50650"	"Installation of Audio Equipment FMC Adelaide"	="Federal Magistrates Court"	11-Dec-07	="Audioconferencing systems"	01-Nov-07	30-Nov-07	20053.00	=""	="B & H Australia Pty Ltd"	11-Dec-07 11:38 AM	
-="CN50648-A1"	"Set-up and data entry of Looking After Children Assessment and Action Records"	="Australian Institute of Family Studies"	11-Dec-07	="Data processing or preparation services"	26-Nov-07	07-Jan-08	36454.00	=""	="Strategic Data Pty Ltd"	11-Dec-07 11:40 AM	
-="CN50652-A2"	"Variation to the Provision for Business Analyst; Previous Gazzete Number 21806"	="Comsuper"	11-Dec-07	="Human resources services"	02-Jul-07	30-Jun-08	213924.00	=""	="Eurolink Consulting Pty Ltd"	11-Dec-07 11:43 AM	
-="CN50653"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	13-Aug-07	27-Aug-07	11810.92	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:45 AM	
-="CN50651"	"VEHCILE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	17515.12	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:46 AM	
-="CN50654"	"Taxi & Cabcharges"	="Federal Magistrates Court"	11-Dec-07	="Taxicab services"	01-Nov-07	30-Nov-07	26665.25	=""	="Cabcharge Australia Pty Ltd"	11-Dec-07 11:49 AM	
-="CN50655"	"Community Policing Partnership Project"	="Australian Human Rights Commission"	11-Dec-07	="Community and social services"	03-Aug-07	31-Oct-10	385000.00	=""	="Australian Multicultural Foundation"	11-Dec-07 11:53 AM	
-="CN50656"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	11734.56	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:59 AM	
-="CN50659"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	15708.62	=""	="VOLVO COMMERCIAL VEHICLES"	11-Dec-07 12:23 PM	
-="CN50660"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	10-Sep-07	24-Sep-07	16898.95	=""	="DAIMLER CHRYSLER"	11-Dec-07 12:25 PM	
-="CN50661"	" IT CONTRACTOR "	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	05-Sep-07	06-Aug-08	217047.60	=""	="ICON RECRUITMENT"	11-Dec-07 12:34 PM	
-="CN50662"	"APRA WAN AND INTERNET"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Internet services"	07-Nov-07	07-Nov-07	358112.66	=""	="OPTUS BILLING SERVICES"	11-Dec-07 12:43 PM	
-="CN50665"	"TEMPORARY ADMIN PERSONNEL"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Human resources services"	29-Oct-07	29-Oct-07	41795.25	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY LTD"	11-Dec-07 12:43 PM	
-="CN50674"	"ANNUAL SOFTWARE MAINTENANCE FEES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software maintenance and support"	08-Nov-07	08-Nov-07	39790.30	=""	="EDEN TECHNOLOGY PTY LTD"	11-Dec-07 12:44 PM	
-="CN50676"	"PRINTING OF 2007 APRA ANNUAL REPORT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Oct-07	29-Oct-07	25893.42	=""	="GEON GROUP AUSTRALIA PTY LTD (DYNAMIC PRESS)"	11-Dec-07 12:44 PM	
-="CN50677"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	29-Oct-07	29-Oct-07	37400.00	=""	="ERNST AND YOUNG"	11-Dec-07 12:44 PM	
-="CN50678"	"SERVER MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software or hardware engineering"	31-Oct-07	31-Oct-07	11963.60	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	11-Dec-07 12:45 PM	
-="CN50679"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	01-Nov-07	01-Nov-07	15400.00	=""	="GAIL WOODGATE CONSULTANCY PTY LTD"	11-Dec-07 12:45 PM	
-="CN50680"	"CONSULTANTS FOR INSTALLATION OF ITSM"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Information technology consultation services"	02-Nov-07	02-Nov-07	54340.00	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	11-Dec-07 12:45 PM	
-="CN50681"	"RACK SPACE TO HOUSE BLADE EQUIPMENT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	02-Nov-07	02-Nov-07	25080.00	=""	="OPTUS NETWORKS PTY LIMITED"	11-Dec-07 12:45 PM	
-="CN50682"	"STAMP DUTY"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Facilities management"	05-Nov-07	05-Nov-07	24961.75	=""	="ACT DEPARTMENT OF TREASURY (ACT REVENUE OFFICE)"	11-Dec-07 12:45 PM	
-="CN50683"	"RECRUITMENT FEE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	05-Nov-07	05-Nov-07	22000.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	11-Dec-07 12:45 PM	
-="CN50685"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	06-Aug-07	09-Nov-07	62400.00	=""	="OBJECT CONSULTING PTY LTD"	11-Dec-07 12:45 PM	
-="CN50686"	"PROVISION OF SOFTWARE AND CONSULTANCY"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software"	06-Nov-07	06-Nov-07	34870.00	=""	="AURION CORPORATION PTY LTD"	11-Dec-07 12:45 PM	
-="CN50688"	"ELECTRICAL MAINTENANCE AND SUPPLY OF UPS"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Electronic Components and Supplies"	08-Nov-07	08-Nov-07	10405.96	=""	="CONTRAX SOLUTIONS PTY LTD"	11-Dec-07 12:46 PM	
-="CN50689"	"PROVISION OF CONTRACT SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	12-Nov-07	12-Nov-07	17650.16	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	11-Dec-07 12:46 PM	
-="CN50690"	"RECRUITMENT FEES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	13-Nov-07	13-Nov-07	14300.00	=""	="MCS CONSULTING (MARINOV)"	11-Dec-07 12:46 PM	
-="CN50691"	"LEADERSHIP TEAM MEETING"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	14-Nov-07	14-Nov-07	19250.00	=""	="NOVOTEL SYDNEY DARLING HARBOUR"	11-Dec-07 12:46 PM	
-="CN50693"	"CONFERENCE EXPENSES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	15-Nov-07	15-Nov-07	12936.00	=""	="CROWNE PLAZA (HANZ VICTORIA PTY LTD)"	11-Dec-07 12:46 PM	
-="CN50694"	"GRADUATE RECRUITMENT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Advertising"	15-Nov-07	15-Nov-07	12677.50	=""	="GRADUATE CAREERS AUSTRALIA"	11-Dec-07 12:46 PM	
-="CN50695"	"TEMPORARY CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	19-Nov-07	19-Nov-07	73397.50	=""	="INTERPRO AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	
-="CN50696"	"HARDWARE - NETWORK INFRASTRUCTURE UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	16-Nov-07	53564.28	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	
-="CN50698"	"HARDWARE - SERVER UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	64321.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	
-="CN50699"	"DESKTOP COMPUTER REFRESH"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Desktop computers"	21-Nov-07	21-Nov-07	134886.19	=""	="DATA#3 LIMITED"	11-Dec-07 12:47 PM	
-="CN50700"	"COMPUTER ROOM UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	301412.10	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	
-="CN50701"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Building and Construction and Maintenance Services"	22-Nov-07	22-Nov-07	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	11-Dec-07 12:47 PM	
-="CN50703"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Building and Construction and Maintenance Services"	22-Nov-07	22-Nov-07	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	11-Dec-07 12:48 PM	
-="CN50706"	"POST IMPLEMENTATION REVIEW"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	16-Nov-07	14-Dec-07	29500.00	=""	="PLANPOWER"	11-Dec-07 12:48 PM	
-="CN50707"	"CISCO SWITCHES FOR BCP PROJECT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software or hardware engineering"	27-Nov-07	27-Nov-07	24659.80	=""	="INTEGRATION SYSTEMS AUST (DIVISION OF ETHAN GROUP)"	11-Dec-07 12:48 PM	
-="CN50709"	"PLACEMENT FEE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	27-Nov-07	27-Nov-07	10890.00	=""	="RECRUITMENT COMPANY (TRC TECHNOLOGY)"	11-Dec-07 12:48 PM	
-="CN50710"	"STAFF FUNCTION"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	03-Dec-07	03-Dec-07	25281.30	=""	="SYDNEY CONVENTION AND EXHIBITION CENTRE"	11-Dec-07 12:48 PM	
-="CN50711"	"Provision for Procurement sevices Ad Hoc"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	01-Sep-07	31-Oct-07	10406.00	=""	="DAVID JESS & ASSOCIATES PTY LTD"	11-Dec-07 12:51 PM	
-="CN50712"	"Provision of Procurement Advice on an AD Hoc Basis"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	30-Sep-07	30-Jun-08	36300.00	="111/0607"	="DAVID JESS & ASSOCIATES PTY LTD"	11-Dec-07 12:51 PM	
-="CN50713"	"Review of the NHMRC Communication functions by Buchan Consulting"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	35000.00	=""	="BUCHAN CONSULTING PTY LTD"	11-Dec-07 12:51 PM	
-="CN50714"	"general fraud and risk management training for all NHMRC staff as per the Fraud Control Plan"	="National Health and Medical Research Council"	11-Dec-07	="Financial and Insurance Services"	02-Nov-07	30-Nov-07	30331.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	11-Dec-07 12:51 PM	
-="CN50715"	"Internet providers"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	30000.00	=""	="UECOMM OPERATIONS PTY LTD"	11-Dec-07 12:51 PM	
-="CN50716"	"Production of Podcast interviews  Staff workshop on new media technologies"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	18650.00	=""	="APTUS STRATEGY PTY LTD"	11-Dec-07 12:51 PM	
-="CN50717"	"NICS-VTF Fellowship Terry Marshall 07/08 and 08/09 ."	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Jun-09	95685.00	=""	="METROPOLITAN AMBULANCE SERVICE"	11-Dec-07 12:52 PM	
-="CN50718"	"Fitout of Lever 5 Reception"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	22-Nov-07	30-Jun-08	20000.00	=""	="DOWSE NORWOOD ARCHITECTS PTY. LTD"	11-Dec-07 12:52 PM	
-="CN50719"	"A qualitative analysis of consumers views and attitudes re donation embryos & human eggs"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	07-Nov-07	30-Jun-08	69591.00	=""	="ACCESS AUSTRALIA'S NATIONAL INFERTI"	11-Dec-07 12:52 PM	
-="CN50720"	"Technical Development Team Leader services for the  Data Mart for the NHMRC's RIMES project"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	08-May-07	07-May-08	182512.00	="RFT310 0607"	="PEOPLEBANK AUSTRALIA LTD"	11-Dec-07 12:52 PM	
-="CN50721"	"Departmental travel"	="National Health and Medical Research Council"	11-Dec-07	="Travel and Food and Lodging and Entertainment Services"	20-Nov-07	20-Nov-07	10356.60	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	11-Dec-07 12:52 PM	
-="CN50722"	"PAINT PRODUCTS"	="Defence Materiel Organisation"	11-Dec-07	="Paints and primers and finishes"	12-Sep-07	26-Sep-07	14786.97	=""	="PROTEC PTY LTD"	11-Dec-07 12:55 PM	
-="CN50723"	"Recover Costs Rental, Outgoings, Car Parking - November 2007"	="Federal Magistrates Court"	11-Dec-07	="Commercial or industrial facility rental"	01-Nov-07	30-Nov-07	14485.18	=""	="Charter Hall Limited - Savills"	11-Dec-07 01:12 PM	
-="CN50724"	" Manufacture & fitting of furniture FMC LBB & JMT "	="Federal Magistrates Court"	11-Dec-07	="Carpentry"	01-Nov-07	30-Nov-07	28009.30	=""	="Claremont Joinery"	11-Dec-07 01:27 PM	
-="CN50726"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	11-Dec-07	="Stationery"	01-Nov-07	30-Nov-07	50056.20	=""	="Corporate Express Australia"	11-Dec-07 01:33 PM	
-="CN50727"	"Various Computer Equipment FMC"	="Federal Magistrates Court"	11-Dec-07	="Computer Equipment and Accessories"	01-Nov-07	30-Nov-07	148075.40	=""	="Dell Australia Pty Ltd"	11-Dec-07 01:40 PM	
-="CN50729"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	11-Dec-07	="Temporary legal staffing needs"	01-Nov-07	30-Nov-07	21562.10	=""	="Drake Australia Pty Ltd"	11-Dec-07 01:45 PM	
-="CN50728"	"MANUFACTURE LARCV RUDDER CABLES"	="Department of Defence"	11-Dec-07	="Marine transport"	21-Sep-07	19-Nov-07	10535.25	=""	="F.B  AUTO REPAIRS"	11-Dec-07 01:46 PM	
-="CN50731"	" HOSE ASSEMBLY NON METALLIC P/No 1741251-01 MC 9005  QUANTITY 10 "	="Defence Materiel Organisation"	11-Dec-07	="Military rotary wing aircraft"	11-Dec-07	17-Jun-08	13846.80	=""	="MILSPEC SERVICES PTY LTD"	11-Dec-07 01:52 PM	
-="CN50732"	"Design & Engineering Consultancy Services"	="Federal Magistrates Court"	11-Dec-07	="Professional engineering services"	01-Nov-07	30-Nov-07	55004.68	=""	="Group GSA Pty Ltd"	11-Dec-07 01:56 PM	
-="CN50735"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	17485.88	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	11-Dec-07 02:01 PM	
-="CN50733"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	17-Sep-07	01-Oct-07	10375.08	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:04 PM	
-="CN50736"	"Advertising"	="Federal Magistrates Court"	11-Dec-07	="Advertising"	01-Nov-07	30-Nov-07	21670.20	=""	="HMA Blaze Intergrated Communications"	11-Dec-07 02:05 PM	
-="CN50725"	"  CHARGER,BATTERY, LITHIUM ION, 24VDC, 10AMP    BATTERY ASSEMBLY , 18AH LITHIUM ION CELLS  "	="Defence Materiel Organisation"	11-Dec-07	="Battery chargers"	06-Dec-07	05-Jan-08	16368.00	=""	="ELECTRONIC POWER SYSTEMS PTY LTD"	11-Dec-07 02:08 PM	
-="CN50738"	"Consulting Services - Family Report"	="Federal Magistrates Court"	11-Dec-07	="Court reporting services"	01-Nov-07	30-Nov-07	21573.90	=""	="Jay Manya"	11-Dec-07 02:10 PM	
-="CN50739"	"Provision of Services in relation to testing new and existing software applications"	="Australian Federal Police"	11-Dec-07	="Business function specific software"	19-Dec-07	29-Feb-08	35112.00	=""	="Diversiti Pty Ltd"	11-Dec-07 02:11 PM	
-="CN50741"	"Various Photocopier Equipment & Accessories"	="Federal Magistrates Court"	11-Dec-07	="Printer and photocopier and facsimile accessories"	01-Nov-07	30-Nov-07	17681.91	=""	="Kyocera Mita Australia Pty Ltd"	11-Dec-07 02:15 PM	
-="CN50742"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	19-Sep-07	03-Oct-07	13306.96	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:19 PM	
-="CN50743"	"Valuation of Assets"	="National Capital Authority"	11-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Apr-08	80000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	11-Dec-07 02:19 PM	
-="CN50745-A1"	"Information Technology business analysis activity services"	="Australian Federal Police"	11-Dec-07	="Information technology consultation services"	29-Oct-07	31-Jan-08	50195.00	=""	="Aurec Pty Ltd"	11-Dec-07 02:24 PM	
-="CN50746-A2"	"Provision of cleaning services - Goodna CRS Australia Premises"	="CRS Australia"	11-Dec-07	="General building and office cleaning and maintenance services"	19-Dec-06	17-Dec-09	19272.78	=""	="JDL Cleaning and Property Services"	11-Dec-07 02:25 PM	
-="CN50747"	" Electronic mail software "	="Australian Electoral Commission"	11-Dec-07	="Electronic mail software"	14-Nov-07	14-Nov-08	17325.00	=""	="Preemptive Consulting Pty Ltd"	11-Dec-07 02:29 PM	
-="CN50748"	"Facilitation of workshop for GST on Complex Audit"	="Australian Taxation Office"	11-Dec-07	="Management and Business Professionals and Administrative Services"	05-Oct-07	26-Oct-07	16307.09	="06.028"	="Fyusion Asia Pacific P/L"	11-Dec-07 02:31 PM	
-="CN50744"	"Professional translation, checking, typesetting and proofreading of a brochure in twenty languages"	="Federal Magistrates Court"	11-Dec-07	="Written translation services"	01-Nov-07	30-Nov-07	17699.00	=""	="Language Professionals"	11-Dec-07 02:34 PM	
-="CN50749"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	19-Sep-07	03-Oct-07	13255.51	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 02:38 PM	
-="CN50751"	"Vehicle Leases"	="Federal Magistrates Court"	11-Dec-07	="Vehicle rental"	01-Nov-07	30-Nov-07	71700.29	=""	="Lease Plan"	11-Dec-07 02:38 PM	
-="CN50752-A3"	"Provision of high level technical support and management of the AFP's corporate IT environment"	="Australian Federal Police"	11-Dec-07	="Business and corporate management consultation services"	17-Dec-07	30-Sep-08	105846.40	=""	="Aurec Pty Ltd"	11-Dec-07 02:39 PM	
-="CN50753-A3"	"Provision of Cleaning services - Inala Premises of CRS Australia"	="CRS Australia"	11-Dec-07	="General building and office cleaning and maintenance services"	19-Dec-06	14-Jan-10	28571.05	=""	="JDL Cleaning and Property Services"	11-Dec-07 02:41 PM	
-="CN50754"	"Computer Server"	="Australian Electoral Commission"	11-Dec-07	="Computer servers"	10-Aug-07	09-Aug-08	109454.40	=""	="Hewlett Packard"	11-Dec-07 02:41 PM	
-="CN50755"	"Temp Staff - Payroll"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	10535.41	=""	="Micropay Pty Ltd"	11-Dec-07 02:43 PM	
-="CN50756"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	01-Oct-07	15-Oct-07	10511.59	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:45 PM	
-="CN50737"	"Purchase of Relay - Switch"	="Defence Materiel Organisation"	11-Dec-07	="Military fixed wing aircraft"	23-Nov-07	11-Dec-07	10560.00	=""	="Aerospace & Defence Products"	11-Dec-07 02:45 PM	
-="CN50758"	"Consulting Fees October 2007"	="Federal Magistrates Court"	11-Dec-07	="Business and corporate management consultation services"	01-Nov-07	30-Nov-07	11000.00	=""	="MP Consulting Pty Ltd"	11-Dec-07 02:48 PM	
-="CN50757"	"Cover, Water Canteen"	="Defence Materiel Organisation"	11-Dec-07	="Canteen"	07-Dec-07	30-May-08	528000.00	="CPE0708032"	="COMBAT CLOTHING AUST PTY LTD"	11-Dec-07 02:49 PM	
-="CN50759"	"Production of Computing User Guides"	="Australian Electoral Commission"	11-Dec-07	="Owner or user manuals"	01-May-07	31-May-07	14368.75	=""	="Total Learn Pty Ltd"	11-Dec-07 02:49 PM	
-="CN50761"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	159105.62	=""	="National Transcription Services Pty Ltd"	11-Dec-07 02:54 PM	
-="CN50762"	"Hire of Electoral Premises"	="Australian Electoral Commission"	11-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11660.00	=""	="Randazzo Investments"	11-Dec-07 02:58 PM	
-="CN50763"	"Supply of Conference Phones"	="Federal Magistrates Court"	11-Dec-07	="Teleconference equipment"	01-Nov-07	30-Nov-07	18222.27	=""	="Noisebox"	11-Dec-07 03:02 PM	
-="CN50764"	"Computing Machinery"	="Australian Electoral Commission"	11-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	16-Dec-07	11761.42	=""	="ASI Solutions"	11-Dec-07 03:04 PM	
-="CN50765"	"Provision of consulting services for Business Strategy for I.T August, September & October 2007"	="Federal Magistrates Court"	11-Dec-07	="Strategic planning consultation services"	01-Nov-07	30-Nov-07	87236.86	=""	="Oakton Services Pty Ltd"	11-Dec-07 03:10 PM	
-="CN50766-A1"	"Supply of synchronous datalink transceivers"	="Australian Federal Police"	11-Dec-07	="Communications Devices and Accessories"	18-Jan-08	01-Apr-08	139150.00	="RFQ 48-2006"	="Vertical Telecoms"	11-Dec-07 03:14 PM	
-="CN50767"	"Interpreting Services"	="Federal Magistrates Court"	11-Dec-07	="Interpreters"	01-Nov-07	30-Nov-07	10758.00	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	11-Dec-07 03:15 PM	
-="CN50768-A1"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	06-Sep-07	17-Sep-08	226512.00	=""	="INFOSYS SOLUTIONS P/L"	11-Dec-07 03:20 PM	
-="CN50769"	"    supply and maintenance of data multiplex/de-multiplex systems    "	="Australian Federal Police"	11-Dec-07	="Communications Devices and Accessories"	02-Apr-07	01-Apr-08	89259.00	="RFT NO 49-2006"	="Vertical Telecoms"	11-Dec-07 03:22 PM	
-="CN50770"	"Translating and interpreting for study visit of National Population and Family Planning Commission of the People's Republic of China."	="Australian Human Rights Commission"	11-Dec-07	="Writing and translations"	29-Oct-07	09-Nov-07	10998.00	=""	="Jack Meng Immigration & Translation"	11-Dec-07 03:29 PM	
-="CN50771"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	01-Oct-07	15-Oct-07	11567.45	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:36 PM	
-="CN50772"	" Consulting and Development of Practitioner Survey "	="Federal Magistrates Court"	11-Dec-07	="Development"	01-Nov-07	30-Nov-07	16500.00	=""	="Profmark Consulting Pty Limited"	11-Dec-07 03:39 PM	
-="CN50773"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	12-Oct-07	26-Oct-07	12678.86	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:41 PM	
-="CN50774"	" IT CONTRACTOR "	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	06-Sep-07	28-Sep-08	203424.00	=""	="COMPAS P/L"	11-Dec-07 03:42 PM	
-="CN50775"	"Airfares"	="Federal Magistrates Court"	11-Dec-07	="Commercial aeroplane travel"	01-Nov-07	30-Nov-07	89733.99	=""	="Qantas - QAEBTA"	11-Dec-07 03:43 PM	
-="CN50777"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	18971.58	=""	="Robert Half Australia"	11-Dec-07 03:48 PM	
-="CN50778"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	02-Nov-07	16-Nov-07	10915.63	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:48 PM	
-="CN50779"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	22194.28	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:51 PM	
-="CN50780"	"FIBRE OPTIC NETWORK CONNECTIONS"	="Australian Taxation Office"	11-Dec-07	="Furniture and Furnishings"	23-Jul-07	10-Sep-07	33000.00	=""	="DEPARTMENT OF FINANCE"	11-Dec-07 03:52 PM	
-="CN50782"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	55463.00	=""	="Spark & Cannon Australasia Pty Ltd"	11-Dec-07 03:52 PM	
-="CN50781"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	07-Nov-07	21-Nov-07	11886.18	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:53 PM	
-="CN50783"	"Additional equipment to rigid hull inflatable boats"	="Australian Federal Police"	11-Dec-07	="Marine craft systems and subassemblies"	04-May-07	21-Dec-07	22000.00	="RFT 78-2006"	="Britton Marine Australia"	11-Dec-07 03:55 PM	
-="CN50784"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	16602.75	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:55 PM	
-="CN50785"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	25-Jul-07	24-Jul-08	248600.00	=""	="PEOPLEBANK AUSTRALIA PTY"	11-Dec-07 03:57 PM	
-="CN50786"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	19166.95	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:59 PM	
-="CN50787"	"Consultancy FMC IT capability and sourcing arrangements September & October 2007"	="Federal Magistrates Court"	11-Dec-07	="Information technology consultation services"	01-Nov-07	30-Nov-07	13637.40	=""	="Surote Pty Ltd"	11-Dec-07 04:01 PM	
-="CN50789"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Power sources"	12-Nov-07	12-Dec-07	13453.04	=""	="MINELAB ELCTRONICS PTY LTD"	11-Dec-07 04:04 PM	
-="CN50790"	" Office Refurbishment FMC Levels 6 & 7 JMT Building "	="Federal Magistrates Court"	11-Dec-07	="Refurbishing services"	01-Nov-07	30-Nov-07	249801.82	=""	="TDA Interiors Australia Pty Ltd"	11-Dec-07 04:07 PM	
-="CN50788"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	25-Jul-07	29-Jan-08	129600.00	=""	="OMAHA IT SERVICES P/L"	11-Dec-07 04:08 PM	
-="CN50791"	" SUPPLY OF REPAIR VEHICLE PARTS "	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	22-Aug-07	05-Sep-07	21648.32	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 04:09 PM	
-="CN50793"	"Hire of Electoral Premises"	="Australian Electoral Commission"	11-Dec-07	="Lease and rental of property or building"	11-Nov-07	24-Nov-07	11000.00	=""	="Eastgardens Pty Ltd"	11-Dec-07 04:11 PM	
-="CN50794"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	11-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	30-Nov-07	20369.83	=""	="Telstra Corporation Limited"	11-Dec-07 04:12 PM	
-="CN50792"	" FLAMMABLE LIQUID CABINET STORAGE "	="Defence Materiel Organisation"	11-Dec-07	="Prefabricated structures"	07-Dec-07	04-Jan-08	24453.00	=""	="F G P COMPANY PTY LTD"	11-Dec-07 04:14 PM	
-="CN50795"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	17511.63	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 04:15 PM	
-="CN50796"	"Freight Forwarding Service"	="Federal Magistrates Court"	11-Dec-07	="Freight forwarders services"	01-Nov-07	30-Nov-07	15278.56	=""	="Toll IPEC Pty Ltd"	11-Dec-07 04:16 PM	
-="CN50797-A1"	" Supply 2 IBM servers and SAN components. "	="Australian Human Rights Commission"	11-Dec-07	="Computer Equipment and Accessories"	11-Dec-07	03-Jan-08	18100.35	=""	="Klikon Solutions Pty Ltd"	11-Dec-07 04:16 PM	
-="CN50799"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-08	15202.11	=""	="HMA Blaze"	11-Dec-07 04:18 PM	
-="CN50798"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	30672.53	=""	="DAIMLER CHRYLSER AUSTRALIA"	11-Dec-07 04:19 PM	
-="CN50801"	"Recover Costs Rental, Outgoings, Car Parking"	="Federal Magistrates Court"	11-Dec-07	="Commercial or industrial facility rental"	01-Nov-07	30-Nov-07	200891.80	=""	="Law Courts Ltd-United Group Services (United KFPW)"	11-Dec-07 04:21 PM	
-="CN50800"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Dec-07	20-Dec-07	14229.60	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:21 PM	
-="CN50803"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	20-Aug-07	03-Sep-07	45390.68	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 04:24 PM	
-="CN50804"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-07	25300.00	=""	="HMA Blaze"	11-Dec-07 04:24 PM	
-="CN50802"	"Leasing 225 PCs and monitors"	="Australian Human Rights Commission"	11-Dec-07	="Computers"	01-Nov-07	04-Dec-07	435454.24	=""	="JEAS Solutions"	11-Dec-07 04:25 PM	
-="CN50806"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	07-Nov-07	21-Nov-07	13597.19	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:25 PM	
-="CN50805"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	26-Jul-07	03-Jul-08	284212.50	=""	="PEOPLEBANK AUSTRALIA PTY"	11-Dec-07 04:27 PM	
-="CN50807"	"Office Furniture - FMC"	="Federal Magistrates Court"	11-Dec-07	="Office furniture"	01-Nov-07	30-Nov-07	29307.30	=""	="Workspace Commercial Furniture Pty Ltd"	11-Dec-07 04:28 PM	
-="CN50808"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	23-Aug-07	06-Sep-07	48128.86	=""	="PREMIER AUROMOTIVE GROUP"	11-Dec-07 04:29 PM	
-="CN50811"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Nov-07	29-Nov-07	17136.19	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:36 PM	
-="CN50812"	"RESEARCH AND REPORT"	="Australian Taxation Office"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Jul-07	04-Jul-07	27500.00	=""	="AUSTRLIAN INSTITUTE OF CRIMINOLOGY"	11-Dec-07 04:41 PM	
-="CN50813"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	14799.22	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:43 PM	
-="CN50810"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-07	31900.00	=""	="HMA Blaze"	11-Dec-07 04:47 PM	
-="CN50814"	"BROADBAND & INTERNET 07/08"	="Australian Taxation Office"	11-Dec-07	="Information Technology Broadcasting and Telecommunications"	04-Jul-07	04-Jul-07	17700.00	=""	="TELSTRA"	11-Dec-07 04:52 PM	
-="CN50815"	" SEAL ASSEMBLY TRANS P/No 206-040-156-001; MC 97499  QUANTITY 10 "	="Defence Materiel Organisation"	11-Dec-07	="Military rotary wing aircraft"	11-Dec-07	11-Jan-08	17856.52	=""	="HELITECH A DIVISION OF SIKORSKY"	11-Dec-07 05:03 PM	
-="CN50816"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Medical Equipment and Accessories and Supplies"	08-Aug-07	15-Aug-07	14973.75	=""	="Hospira Pty Ltd"	12-Dec-07 08:15 AM	
-="CN50817"	"ASLAV PARTS - DOOR HATCH VEHICLE RH ASSY"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	28-Jun-08	12299.05	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:09 AM	
-="CN50818"	"ASLAV PARTS - HOUSING STEERING COLUMN"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	18-Jun-08	17502.10	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:14 AM	
-="CN50819"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust. Pacific"	12-Dec-07 09:23 AM	
-="CN50820"	"Security Services Camera Monitoring"	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	11900.00	=""	="JEWELL & BUCKLEY PTY LTD"	12-Dec-07 09:24 AM	
-="CN50821"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust Pacific"	12-Dec-07 09:31 AM	
-="CN50823"	"Office Rent"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	12-Oct-07	15-Oct-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:08 AM	
-="CN50824"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	25332.95	=""	="Kaz Technology Services Pty Ltd"	12-Dec-07 10:33 AM	
-="CN50826"	"ESRI Maintenance 2008 -2009"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	03-Dec-07	31-Jan-09	61105.00	=""	="ESRI Australia Pty Ltd"	12-Dec-07 10:38 AM	
-="CN50827"	"Supply of Stationery"	="Bureau of Meteorology"	12-Dec-07	="Office supplies"	05-Dec-07	31-Dec-07	20006.38	=""	="Corporate Express Australia Limited"	12-Dec-07 10:38 AM	
-="CN50828"	"Consulting"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10725.00	=""	="Access Macquarie Limited."	12-Dec-07 10:38 AM	
-="CN50829"	"Car Hire for October 2007"	="Bureau of Meteorology"	12-Dec-07	="Transportation and Storage and Mail Services"	05-Dec-07	31-Dec-07	10399.40	=""	="AVIS"	12-Dec-07 10:38 AM	
-="CN50830"	"Telephone A/c"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	19-Nov-07	12-Dec-07	12803.50	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	
-="CN50831"	"Telecommunication Services"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	17559.92	=""	="AAPT LIMITED"	12-Dec-07 10:38 AM	
-="CN50832"	"Darwin 50MHz upgrade - Profiler Transmitter"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	27520.40	=""	="University Of Colorado"	12-Dec-07 10:38 AM	
-="CN50833"	"TELEPHONE ACCOUNT"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	27-Nov-07	03-Dec-07	16063.99	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	
-="CN50834"	"VEHICLE LEASES"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	27-Nov-07	27-Nov-07	11584.49	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	
-="CN50835"	"Vehicle Lease"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	28-Nov-07	28-Nov-07	12850.53	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	
-="CN50836"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	11033.29	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50837"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	14586.60	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50838"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	20049.79	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50839"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	42170.39	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50840"	"Accommodation"	="Bureau of Meteorology"	12-Dec-07	="Hotels and lodging and meeting facilities"	29-Nov-07	30-Nov-07	23241.00	=""	="Quest Docklands"	12-Dec-07 10:39 AM	
-="CN50841"	"DBCP Trust Fund for 2008"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Dec-08	18346.50	=""	="WORLD METEOROLOGICAL ORGANIZATION"	12-Dec-07 10:39 AM	
-="CN50842"	"Job ads for Professional Appointments"	="Bureau of Meteorology"	12-Dec-07	="Marketing and distribution"	04-Dec-07	31-Dec-07	34844.21	=""	="HMA BLAZE PTY LTD"	12-Dec-07 10:39 AM	
-="CN50843"	"AUSAID PROJECT"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10000.00	=""	="SPREP"	12-Dec-07 10:40 AM	
-="CN50844"	"Vehicle Fuel"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	06-Dec-07	06-Dec-07	12358.14	=""	="Leaseplan Australia"	12-Dec-07 10:40 AM	
-="CN50845"	"SA REGION AIR FARES NOV/DEC 2007"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	07-Dec-07	07-Dec-07	13928.33	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:40 AM	
-="CN50846"	"DIGICOR 3U Server"	="Bureau of Meteorology"	12-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	04-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	12-Dec-07 10:40 AM	
-="CN50847"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50849"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50850"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50851"	"Software implementation services B Williamson"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	29-Nov-07	21-Dec-07	19949.47	=""	="Hays Specialist Recruitment"	12-Dec-07 10:41 AM	
-="CN50852"	"Cannister MET Beacon Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	28-Dec-07	28595.56	=""	="Metocean Data Systems Ltd"	12-Dec-07 10:41 AM	
-="CN50853"	"Ceilometer Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	05-Dec-07	76428.00	=""	="Vaisala Pty Ltd"	12-Dec-07 10:41 AM	
-="CN50854"	"Data cartridge Qty 870"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	07-Dec-07	03-May-09	98561.43	=""	="Officemax Australia Ltd"	12-Dec-07 10:41 AM	
-="CN50855"	"Specialized cord"	="Bureau of Meteorology"	12-Dec-07	="Fibres and threads and yarns"	07-Dec-07	14-May-08	20717.40	=""	="Donaghys"	12-Dec-07 10:41 AM	
-="CN50848"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	17-Oct-07	19-Nov-07	22000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:42 AM	
-="CN50856"	"Software"	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	11000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:47 AM	
-="CN50857"	" Office rent "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	13-Nov-07	19-Nov-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:54 AM	
-="CN50858"	"Airfares"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Travel agents"	29-Oct-07	19-Nov-07	43176.46	=""	="American Express Travel"	12-Dec-07 11:00 AM	
-="CN50859"	"NSN 6850-66-156-0064, Inhibitor, Corrosion, Liquid Cooling, Qty 10"	="Defence Materiel Organisation"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	20-Dec-07	13475.00	=""	="Burson Automotive Pty Ltd"	12-Dec-07 11:12 AM	
-="CN50860"	"RAAF SERVICE DRESS WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	01-Dec-08	513381.00	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 11:14 AM	
-="CN50861"	" NSN 5996/66-101-9162  PURCHASE OF AMPLIFIER, AUDIO FREQUENCY  EX GST "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	12-Dec-07	10500.00	=""	="Flite Path Pty Ltd"	12-Dec-07 11:20 AM	
-="CN50862"	"SEALING COMPOUND"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	12-Dec-07	30-Jan-08	11791.08	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	12-Dec-07 11:21 AM	
-="CN50863"	"Services for the implementation of Stage 1 of the Diabetes Medication Assistance Service "	="Department of Health and Ageing"	12-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Mar-10	1142988.00	="RFT392/0607"	="University of Sydney"	12-Dec-07 11:23 AM	
-="CN50864"	" NSN 1680/01-550-3045  PURCHASE OF TRANSDUCER, AIRCRAFT  EX SGT "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	24-Mar-08	14807.73	=""	="Military Aviation Spares Pty Ltd"	12-Dec-07 11:26 AM	
-="CN50865-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	12-Dec-07	="Software"	19-Nov-07	29-Feb-08	50864.00	=""	="Cordelta Pty. Ltd."	12-Dec-07 11:27 AM	
-="CN50866"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	23-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:27 AM	
-="CN50867-A1"	"Provision of services in relation to project officer support for IT Services"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Sep-08	138336.00	=""	="Icon Recruitment Pty Ltd"	12-Dec-07 11:30 AM	
-="CN50868"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	27-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:36 AM	
-="CN50869-A1"	"PANTS, CYCLIST, VARIOUS"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	11-Dec-07	29-Feb-08	405379.70	=""	="WALKABOUT LEISUREWEAR PTY LTD"	12-Dec-07 11:38 AM	
-="CN50870-A1"	"Provision of services in relation to SharePoint and K2 Development"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Aug-08	242871.20	=""	="Paxus Australia Pty Ltd"	12-Dec-07 11:39 AM	
-="CN50871"	" Publication printing "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Printed publications"	07-Nov-07	10-Dec-07	22627.00	=""	="UNION OFFSET PRINTERS"	12-Dec-07 11:46 AM	
-="CN50872"	"Procurement Panel Services to the AFP"	="Australian Federal Police"	12-Dec-07	="Professional procurement services"	05-Dec-07	15-Jan-08	29744.00	="22-2005"	="Ball Solutions Group"	12-Dec-07 11:46 AM	
-="CN50875"	" Publication production "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Editing services"	08-Nov-07	10-Dec-07	24255.00	=""	="CORETEXT"	12-Dec-07 11:52 AM	
-="CN50876-A1"	"Provision of a Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	03-Dec-07	30-Jun-08	114240.00	=""	="Oakton Services Pty Ltf"	12-Dec-07 12:00 PM	
-="CN50877-A1"	"adhesive film"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	01-Dec-07	25-Feb-08	20738.95	=""	="Interturbine Advanced Composies"	12-Dec-07 12:36 PM	
-="CN50878"	"Heritage Management Plan - Park"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	52860.00	=""	="Duncan Marshall"	12-Dec-07 12:49 PM	
-="CN50879"	"ASLAV PARTS - LEAD ASSY SLIP"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	108389.88	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 12:53 PM	
-="CN50880"	"Heritage Management Plan - Canberra Central Parklands"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	61585.00	=""	="Duncan Marshall"	12-Dec-07 12:54 PM	
-="CN50881"	"ASLAV PARTS - BRUSH BLOCK ASSY "	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	214915.25	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 01:02 PM	
-="CN50882"	"Commemorative Works Guidelines"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	28-Mar-08	10000.00	=""	="David Headon"	12-Dec-07 01:16 PM	
-="CN50883"	" NSN 5340/01-422-0982  PURCHASE OF CLAMP, LOOP  GST INCL. "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	06-Dec-07	04-Apr-08	10849.08	=""	="Milspec Services Pty Ltd"	12-Dec-07 01:16 PM	
-="CN50884"	"CPE004278-1 - Supply of security project services - 0859-1284 - IT Security Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	30-Nov-07	30-Nov-07	19800.00	="05/0859"	="Cybertrust Australia Pty Ltd"	12-Dec-07 01:25 PM	
-="CN50885-A1"	"Provision for Senior Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	02-Jan-08	30-Jun-08	120000.00	=""	="Aristotle (Eurolink)"	12-Dec-07 01:30 PM	
-="CN50886"	"07/2328 - Management consultancy services - 1599-1938 - Consultancy and Business Services Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Oct-07	01-Feb-08	300000.00	="06/1599"	="Booz Allen Hamilton"	12-Dec-07 01:37 PM	
-="CN50888"	" Supply of communications equipment "	="Australian Federal Police"	12-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	213424.00	=""	="Motorola Australia Pty Ltd"	12-Dec-07 01:44 PM	
-="CN50887"	"06/1343 - Project Coordinator (Ext #3) - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	217000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 01:45 PM	
-="CN50890"	"Provision of Oracle Software Structure Analysis and Consultancy"	="Comsuper"	12-Dec-07	="Human resources services"	21-Aug-07	31-Aug-07	11550.00	=""	="Dataweave Pty Ltd"	12-Dec-07 01:48 PM	
-="CN50891"	"SHIRT, MENS, STEWARD SHORTS, MALE, KHAKI, RAAF"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	29-May-08	97891.20	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 01:50 PM	
-="CN50892"	" 3 Years maintenance and support for Reflection X Software "	="Comsuper"	12-Dec-07	="Software"	30-Jun-07	30-Jun-10	10411.00	=""	="Loop Technology Pty Ltd"	12-Dec-07 01:54 PM	
-="CN50895"	"07/2381 - Technical Analyst - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	133000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 02:02 PM	
-="CN50897-A1"	"07/2392 - Specialist IT Transitional Manager - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Dec-07	30-Jun-08	161289.60	="05/0717"	="Paxus Australia"	12-Dec-07 02:05 PM	
-="CN50458"	" Security Services - Monitoring "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	65600.00	=""	="JEWEL & BUCKELY PTY LTD"	12-Dec-07 02:06 PM	
-="CN50898"	" Security Services - Doors "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	17-Apr-07	24-Jul-08	20100.00	=""	="JEWELL & BUCKLEY PTY LTF"	12-Dec-07 02:14 PM	
-="CN50899"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	10232.41	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:15 PM	
-="CN50900"	"07/2198 -  Supply of Building Equipment (CPE004116-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	28538.46	=""	="Sea Swift Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50901"	"07/2233 - Supply of Building Equipment (CPO014456)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	23-Aug-07	31-Dec-07	15930.20	=""	="Precision Metals Queanbeyan Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50902"	"CPO017457 - Online learning"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	27-Nov-07	31-Oct-08	29822.00	=""	="Total Learn Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50904"	"CPE003886 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	30-Jun-08	33447.70	=""	="KW McCulloch Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50905"	"07/2291 - Specialised equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer Equipment and Accessories"	25-Sep-07	30-Jun-08	190750.83	=""	="Department of Defence"	12-Dec-07 02:19 PM	
-="CN50906"	"CPO017611 - Construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	22495.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50907"	"CPO015288 - Materials for the construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	14168.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50908-A1"	"07/2200 - Building Services/ Office Installation (CPE004115-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	118140.00	=""	="Robert Clarke Builders Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50909"	"CPO017645 - Information/Reporting Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13311.47	=""	="B-Line Edit Services Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50910"	"CPO017734 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	18931.00	=""	="Australian Institute of Forensic Psychology"	12-Dec-07 02:19 PM	
-="CN50911-A2"	"07/2340 - Supply of IT Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	25-Oct-07	24-Apr-12	561328.10	=""	="KAZ Group Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50912"	"CPO017535 - Training Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	29-Nov-07	02-Dec-07	10786.00	=""	="Australian Institute of Education and Training"	12-Dec-07 02:19 PM	
-="CN50903"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	28-Nov-07	12-Dec-07	10201.72	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:20 PM	
-="CN50913"	"CPO016973 - Metal detection system trial"	="Australian Customs and Border Protection Service"	12-Dec-07	="Measuring and observing and testing instruments"	04-Dec-07	04-Dec-07	32692.00	=""	="QR Sciences Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50914-A1"	"07/1909 - Training services (CPO017584)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	20-Nov-07	05-Dec-07	39649.50	=""	="D'Arcy Consulting Group"	12-Dec-07 02:20 PM	
-="CN50915"	"CPO017699 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Apr-07	30-Dec-07	16225.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	
-="CN50916"	"CPO017698 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Oct-07	30-Jun-08	61455.49	=""	="Dataline Visual Link"	12-Dec-07 02:20 PM	
-="CN50917"	"07/2286 - Compueter servers"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	12-Oct-07	11-Oct-10	149374.25	=""	="Sun Microsystems Australia Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50918"	"CPO017722 - Charter Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Passenger transport"	15-Nov-07	04-Dec-07	11024.24	=""	="Australian Helicopters Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50919-A1"	"07/2228 - Consultancy Services (CPO017401)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	13-Sep-07	31-Jan-08	38500.00	=""	="ESRI Australia"	12-Dec-07 02:20 PM	
-="CN50920"	"CPO017830 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	16801.40	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50921"	"CPO017821 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	37156.90	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50922"	"CPO017718 - CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	30-Jun-08	15840.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	
-="CN50926"	"CPO017889 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	53755.00	=""	="Trade Import Services"	12-Dec-07 02:21 PM	
-="CN50927"	"CPO017891 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	42212.50	=""	="Trade Import Services"	12-Dec-07 02:21 PM	
-="CN50928-A2"	"07/2194 - Project Management Services (CPE004306-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	24-Sep-07	30-Mar-08	49232.00	=""	="URS Australia"	12-Dec-07 02:21 PM	
-="CN50929"	"07/1884 - Development of On-Line Learning Program"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	15-Apr-07	15-Jul-07	15000.00	=""	="Leonie A David"	12-Dec-07 02:21 PM	
-="CN50930"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	18943.72	=""	="DAIMLER CHRYSLER AUSTRALIA"	12-Dec-07 02:24 PM	
-="CN50931"	"06/1334 - Data quality programme and training services (Ext #1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Jan-07	31-Dec-07	50000.00	=""	="Centre for Customs and Excise Studies Pty Ltd"	12-Dec-07 02:28 PM	
-="CN50932"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	12710.39	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:30 PM	
-="CN50933"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	03-Dec-07	10-Dec-07	12366.20	=""	="BRIAN ROGERS"	12-Dec-07 02:34 PM	
-="CN50934"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	11-Dec-07	16-Dec-07	20496.11	=""	="KALMAR EQUIPMENT (AUSTRALIA)"	12-Dec-07 02:39 PM	
-="CN50935"	"DECONTAMINATING ITEMS/EQUIPMENT"	="Defence Materiel Organisation"	12-Dec-07	="Decontamination services"	10-Dec-07	12-Dec-07	22248.33	=""	="TOTALLY WORKWEAR (TOWNSVILLE)"	12-Dec-07 02:46 PM	
-="CN50936"	"For the Provision of Financial  Accounting Services"	="Child Support Agency"	12-Dec-07	="Business administration services"	10-Dec-07	06-Jun-08	78000.00	=""	="Professional Careers Australia Pty Ltd"	12-Dec-07 02:50 PM	
-="CN50938"	"Flammable Liquid Storage Cabinet"	="Department of Defence"	12-Dec-07	="Storage chests and cabinets and trunks"	19-Nov-07	07-Jan-08	13112.00	=""	="FGP COMPANY PTY LTD"	12-Dec-07 03:04 PM	
-="CN50941"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	12-Dec-07	22-Dec-07	11614.05	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-Dec-07 03:10 PM	
-="CN50943"	"Vaccines For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Drugs and Pharmaceutical Products"	27-Sep-07	07-Oct-07	341275.00	=""	="GLAXOSMITHKLINE AUST P/L"	12-Dec-07 03:22 PM	
-="CN50946"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	10017.15	=""	="Rover Australia"	12-Dec-07 03:35 PM	
-="CN50949"	"Call Centre Satisfaction Survey Wave 12"	="Australian Taxation Office"	12-Dec-07	="Market research"	19-Oct-07	28-Jan-08	50000.00	=""	="ORC Aus Pty Ltd t/a NWC Research"	12-Dec-07 03:47 PM	
-="CN50947"	"Altitude Warning Device"	="Defence Materiel Organisation"	12-Dec-07	="Parachute equipment"	28-Nov-07	09-Jan-08	21714.00	=""	="Aerospace Composites Pty Ltd"	12-Dec-07 03:48 PM	
-="CN50950"	"Conduct Investigations as directed by Group Director, Support. "	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Private investigation services"	26-Feb-07	25-May-07	13750.00	=""	="Quality Management Solutions Pty Ltd"	12-Dec-07 03:50 PM	
-="CN50952"	"Provision of Cleaning - Sutherland CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	03-Apr-06	09-Nov-07	10888.51	=""	="Professional Lightning Cleaning"	12-Dec-07 03:58 PM	
-="CN50953"	"Print 10,000 copies of 'Us Taken-Away Kids."	="Australian Human Rights Commission"	12-Dec-07	="Publishing"	26-Sep-07	09-Nov-07	11653.40	=""	="Bloxham and Chambers"	12-Dec-07 04:08 PM	
-="CN50954"	"Provision of cleaning services - Hurstville CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	01-Oct-05	09-Nov-07	11616.00	=""	="Professional Lightning Cleaning"	12-Dec-07 04:08 PM	
-="CN50956"	"Conduct Survey of Athletes' Opinions"	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Educational and research structures"	01-Mar-07	28-May-07	22000.00	=""	="Curtin University"	12-Dec-07 04:17 PM	
-="CN50957"	" Compensation Process System Improvements "	="Australian Taxation Office"	12-Dec-07	="Computer services"	11-Dec-07	10-Mar-08	25000.00	=""	="CA Pacific Pty Ltd"	12-Dec-07 04:20 PM	
-="CN50958"	" MOTOR VEHILCE SPARE PARTS "	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	24957.78	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:00 PM	
-="CN50959"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	16159.43	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:04 PM	
-="CN50960"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	15588.52	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:06 PM	
-="CN50961"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	41458.12	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:10 PM	
-="CN50962"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	17-Jul-07	17-Jul-07	10046.53	=""	="Qantas"	12-Dec-07 05:22 PM	
-="CN50965"	"Air fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10099.10	=""	="Qantas Airways"	12-Dec-07 05:27 PM	
-="CN50966"	"Air Fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	10100.42	=""	="Qantas Airways"	12-Dec-07 05:38 PM	
-="CN50969"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Aug-07	03-Aug-07	10180.50	=""	="Qantas Airways"	12-Dec-07 05:55 PM	
-="CN50970"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	23-Nov-07	23-Nov-07	10192.38	=""	="Qantas Airways"	12-Dec-07 06:02 PM	
-="CN50971"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	24-Aug-07	24-Aug-07	10205.47	=""	="Qantas Airways"	12-Dec-07 06:06 PM	
-="CN50972"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Oct-07	05-Oct-07	10257.61	=""	="Qantas Airways"	12-Dec-07 06:09 PM	
-="CN50973"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	18-Oct-07	18-Oct-07	10260.03	=""	="Qantas Airways"	12-Dec-07 06:11 PM	
-="CN50974"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Sep-07	05-Sep-07	10345.06	=""	="Qantas Airways"	12-Dec-07 06:14 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN50375"	"Enhancement of Commonwealth Portal Project"	="Family Court of Australia"	10-Dec-07	="Temporary information technology networking specialists"	26-Nov-07	18-Jan-08	22063.00	=""	="Different Solutions Pty Ltd"	10-Dec-07 08:57 AM	

+="CN50377"	"Relocation of personal effects for K Clarke to CKI"	="Department of Transport and Regional Services"	10-Dec-07	="Material packing and handling"	07-Dec-07	31-Jan-08	15012.00	="TRS07/385"	="GRACE REMOVALS GROUP"	10-Dec-07 09:04 AM	

+="CN50378"	"Legal Service Expenditure"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	11-Aug-07	30-Jun-09	11928.00	="TRS06/175"	="PHILLIPS FOX"	10-Dec-07 09:05 AM	

+="CN50379"	"Consultancy"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	01-Oct-07	09-Jan-08	44047.77	="TRS07/325"	="APIS CONSULTING"	10-Dec-07 09:05 AM	

+="CN50380"	"Contract staff Stewart Murray"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	22-Oct-07	31-Jan-08	45000.00	="TRS06/017"	="Peoplebank Australia Ltd"	10-Dec-07 09:05 AM	

+="CN50381"	"*Seafreight -Personal Effects for M Kawi"	="Department of Transport and Regional Services"	10-Dec-07	="Material packing and handling"	01-Jul-07	30-Jun-08	10875.00	="TRS07/384"	="CHRISTMAS ISLAND REMOVALS"	10-Dec-07 09:05 AM	

+="CN50382"	"Contracted to assist with TSP assessment"	="Department of Transport and Regional Services"	10-Dec-07	="Community and social services"	25-Oct-07	24-Jan-08	37451.13	="TRS05/251"	="FIRSTWATER PTY LTD"	10-Dec-07 09:05 AM	

+="CN50383"	"Legal Service Expenditure LG 6340"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	04-Dec-07	30-Jun-09	27848.15	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	10-Dec-07 09:05 AM	

+="CN50384"	"Training delivery - Staff selection and Recruitmen"	="Department of Transport and Regional Services"	10-Dec-07	="Specialised educational services"	28-Nov-07	30-Jun-08	15097.50	="WOT06/100"	="PEOPLE AND STRATEGY"	10-Dec-07 09:05 AM	

+="CN50385"	"Legal Service Expenditure LG070807-6735"	="Department of Transport and Regional Services"	10-Dec-07	="Legal services"	05-Dec-07	30-Jun-09	14850.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	10-Dec-07 09:06 AM	

+="CN50386"	"*Water & Wastewater Mngmt & Operation CI *Water & Wastewater Mngmt & Operation CKI #"	="Department of Transport and Regional Services"	10-Dec-07	="Water resources development and oversight"	29-Nov-07	30-Jun-08	263000.00	="TRS06/109"	="WATER CORPORATION"	10-Dec-07 09:06 AM	

+="CN50387"	"Consultancy - OTS Compliance Framework"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	03-Dec-07	31-Jan-08	23100.00	="TRS06/512"	="Thinkplace Pty Ltd"	10-Dec-07 09:06 AM	

+="CN50388"	"SuperStar Software"	="Department of Transport and Regional Services"	10-Dec-07	="Management advisory services"	31-Aug-07	10-Dec-07	51668.95	="TRS07/015"	="Space Time Research Pty Ltd"	10-Dec-07 09:06 AM	

+="CN50390"	"mailout of two mail packs to approximately 80,000 clients"	="Australian Taxation Office"	10-Dec-07	="Transportation and Storage and Mail Services"	03-Dec-07	30-Jun-08	10686.50	=""	="SEMA Group Pty Ltd"	10-Dec-07 09:22 AM	

+="CN50392"	"Printing of NAT10129-12.2007. Qty: 25,000"	="Australian Taxation Office"	10-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	06-Dec-07	14-Dec-07	14527.70	="06.030"	="Paragon Printers"	10-Dec-07 09:40 AM	

+="CN50391-A1"	" PROTRACTOR, SEMICIRCULAR. "	="Defence Materiel Organisation"	10-Dec-07	="Protractors"	07-Dec-07	11-Mar-08	58168.00	=""	="W & G EDUCATION PTY LTD"	10-Dec-07 09:45 AM	

+="CN50393"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Computer Equipment and Accessories"	28-Aug-07	30-Jun-08	54800.00	=""	="INFRONT SYSTEMS PTY LTD"	10-Dec-07 09:49 AM	

+="CN50394"	"Facilitation of workshop for ICT"	="Australian Taxation Office"	10-Dec-07	="Project management"	03-Dec-07	21-Dec-07	14100.00	=""	="Fyusion Asia Pacific P/L"	10-Dec-07 10:02 AM	

+="CN50395"	"Lease at Goondiwindi, Queensland"	="Centrelink"	10-Dec-07	="Real estate services"	21-Oct-08	20-Oct-09	45316.45	=""	="AM Billsborough & RC Billsborough"	10-Dec-07 10:23 AM	

+="CN50396"	"Building Services  "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Blinds and shades"	01-Aug-07	30-Sep-07	31200.00	=""	="TURNER BROTHERS FURNISHINGS PTY LTD"	10-Dec-07 10:30 AM	

+="CN50397"	"IT System Support - Installation"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Computer services"	01-Feb-07	28-Feb-07	10000.00	=""	="ATTORNEY GENERALS DEPT"	10-Dec-07 10:40 AM	

+="CN50400"	"Property Management Services"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Property management"	01-Jul-07	30-Jun-08	65000.00	=""	="UNITED GROUP SERVICES PTY LTD"	10-Dec-07 10:46 AM	

+="CN50403"	"Scribing Services for IP Australia"	="IP Australia"	10-Dec-07	="Human resources services"	24-Oct-07	30-Jun-08	15000.00	="IPA05/14475-24"	="GREG RYAN & ASSOCIATES"	10-Dec-07 11:21 AM	

+="CN50404"	"XML Developer C2007/14336"	="IP Australia"	10-Dec-07	="Temporary personnel services"	09-Nov-07	07-Jan-08	22176.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	10-Dec-07 11:22 AM	

+="CN50405"	"Review and Develop Modular Training Program for ES&S and PBR Admin"	="IP Australia"	10-Dec-07	="Human resource development"	13-Nov-07	22-Feb-08	35006.00	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	10-Dec-07 11:22 AM	

+="CN50406"	"Isys adhoc consultation services"	="IP Australia"	10-Dec-07	="Computer services"	15-Nov-07	29-Feb-08	10000.00	="IPAC2007/13772"	="KAZ Group PTY LTD"	10-Dec-07 11:22 AM	

+="CN50407"	"Consultative Committee Training Programs"	="IP Australia"	10-Dec-07	="Human resource development"	20-Nov-07	30-Nov-07	10000.00	="IPA05/14475-16"	="LIVINGSTONES SERVICES (AUST) PTY LT"	10-Dec-07 11:22 AM	

+="CN50408"	"BA J2EE Developer C2007/14442"	="IP Australia"	10-Dec-07	="Temporary personnel services"	20-Nov-07	08-Feb-08	52800.00	="IPA2006/11854-5"	="CCS INDEX (AUSTRALIA) PTY LTD"	10-Dec-07 11:22 AM	

+="CN50409"	"J2EE Developer  C200714443"	="IP Australia"	10-Dec-07	="Temporary personnel services"	20-Nov-07	08-Feb-08	44000.00	="IPA2006/11854-5"	="CCS INDEX (AUSTRALIA) PTY LTD"	10-Dec-07 11:22 AM	

+="CN50410"	"Stage 1 Disaster Recovery Management Program"	="IP Australia"	10-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	31-Jan-08	64000.00	="IPAC2007/12304-01"	="AJILON AUSTRALIA PTY LTD"	10-Dec-07 11:22 AM	

+="CN50411"	"Snap Mirror Software T4C and Subscription"	="IP Australia"	10-Dec-07	="Computer services"	26-Nov-07	30-Nov-07	72885.80	="IPAC2006/11280"	="ASI SOLUTIONS"	10-Dec-07 11:23 AM	

+="CN50412"	"Brisbane State office Fit Out ( New Building)"	="IP Australia"	10-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	28-Nov-07	110704.00	="IPAC2007/14855"	="TDA Interiors Australia (QLD) Pty L"	10-Dec-07 11:23 AM	

+="CN50413"	"User site Licence + 12 months maintenance/support"	="IP Australia"	10-Dec-07	="Software maintenance and support"	29-Nov-07	19-Nov-08	50765.00	="IPAC2007/15188"	="KAROFOX PTY LTD"	10-Dec-07 11:23 AM	

+="CN50414"	"Software Tester C2007/14869"	="IP Australia"	10-Dec-07	="Temporary personnel services"	03-Dec-07	03-Dec-08	160600.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	10-Dec-07 11:23 AM	

+="CN50415"	"Technical Support Officer C2007/14117"	="IP Australia"	10-Dec-07	="Temporary personnel services"	03-Dec-07	30-Nov-08	169400.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	10-Dec-07 11:23 AM	

+="CN50416"	"Activity Based Costings Review"	="IP Australia"	10-Dec-07	="Accounting and auditing"	05-Dec-07	05-Dec-07	28050.00	="IPAC2007/13655"	="Cogent Business Solutions Pty Ltd"	10-Dec-07 11:23 AM	

+="CN50417"	"ISO 9001:2000 Certification Services Offical Order 1"	="IP Australia"	10-Dec-07	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-07	15280.00	="IPAC2007/13395"	="NCS INTERNATIONAL PTY LIMITED"	10-Dec-07 11:23 AM	

+="CN50418"	"Legal Services -Euro-Celtique SA"	="IP Australia"	10-Dec-07	="Legal services"	04-Dec-07	30-Jun-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:24 AM	

+="CN50419"	"Brisbane State Office Makegood Payment"	="IP Australia"	10-Dec-07	="Property management services"	12-Nov-07	12-Nov-07	57552.00	=""	="Colliers International"	10-Dec-07 11:24 AM	

+="CN50420"	"Canon DR 9080C Scanner with 4 year warranty"	="IP Australia"	10-Dec-07	="Office machines and their supplies and accessories"	14-Nov-07	19-Nov-07	11686.40	=""	="CANON AUSTRALIA PTY LTD (ACT)"	10-Dec-07 11:24 AM	

+="CN50421"	"Oracle Database Enterprise Edition with 1 year Support"	="IP Australia"	10-Dec-07	="Software maintenance and support"	16-Nov-07	16-Nov-07	38913.91	=""	="ASG Group Ltd"	10-Dec-07 11:24 AM	

+="CN50422"	"2X WS- C3750 48PS-S Catalyst Switches 2X WS-X6748- GE-TX Cat 6500 Switches"	="IP Australia"	10-Dec-07	="Computer services"	16-Nov-07	16-Nov-07	39516.49	=""	="CERULEAN SOLUTION LTD C/O IBM AUSTR"	10-Dec-07 11:24 AM	

+="CN50423"	"Advertised position on 27OCT07 in two newspapers"	="IP Australia"	10-Dec-07	="Personnel recruitment"	27-Nov-07	27-Nov-07	15188.83	=""	="HMA Blaze Pty Ltd"	10-Dec-07 11:24 AM	

+="CN50424"	"5402064QS Adobe Acrobat 8 Upgrade"	="IP Australia"	10-Dec-07	="Software"	27-Nov-07	11-Dec-07	79320.54	="IPA"	="Dimension Data Australia Pty Ltd"	10-Dec-07 11:24 AM	

+="CN50425"	"Legal Services - Sherman v Merck & Co."	="IP Australia"	10-Dec-07	="Legal services"	04-Dec-07	10-Nov-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:25 AM	

+="CN50426"	"Positions advertisement"	="IP Australia"	10-Dec-07	="Advertising"	05-Dec-07	05-Dec-07	16535.89	=""	="HMA Blaze Pty Ltd"	10-Dec-07 11:25 AM	

+="CN50427"	"Legal Appeal-Patent application No. 2001276418"	="IP Australia"	10-Dec-07	="Legal services"	05-Dec-07	30-Jun-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-Dec-07 11:25 AM	

+="CN50428"	"Internal Audit Services"	="IP Australia"	10-Dec-07	="Business administration services"	06-Oct-06	07-Sep-08	27500.00	="IPAC2005/13177"	="KPMG"	10-Dec-07 11:25 AM	

+="CN50429"	"Provision of SAP Maintenance and Support for My SAP ERP 2004"	="IP Australia"	10-Dec-07	="Temporary personnel services"	12-Dec-06	29-Jan-09	159500.00	="IPAC2006/10216"	="SOUTHERN CROSS COMPUTING PTY LTD"	10-Dec-07 11:25 AM	

+="CN50430"	"Mental Health Awareness Training"	="IP Australia"	10-Dec-07	="Education and Training Services"	09-Oct-07	29-Feb-08	29320.00	="IPA05/14475-39"	="Jakeman Business Solutions Pty Ltd"	10-Dec-07 11:25 AM	

+="CN50431"	"Relocation of IP Australia"	="IP Australia"	10-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	28-Nov-07	23000.00	="IPAC2007/14108"	="RELOCATION RULES PTY LTD"	10-Dec-07 11:25 AM	

+="CN50432"	"Team Building Program TMS"	="IP Australia"	10-Dec-07	="Human resources services"	17-Oct-07	16-Nov-07	10849.90	="IPA05/14475-09"	="INTERACTION CONSULTING GROUP"	10-Dec-07 11:25 AM	

+="CN50434"	"A24N AIRCAFT SPARES"	="Defence Materiel Organisation"	10-Dec-07	="Aircraft"	10-Dec-07	16-Aug-08	45145.10	=""	="MILSPEC SERVICES PTY LTD"	10-Dec-07 11:39 AM	

+="CN50435"	"Aviation Spares, Purchase of 3-Point Harness Kits"	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	06-Dec-07	29-Feb-08	137363.19	=""	="Australian Aerospace"	10-Dec-07 11:53 AM	

+="CN50437"	"PURCHASE OF QTY 100 FIELD PACKS"	="Department of Defence"	10-Dec-07	="Luggage and handbags and packs and cases"	17-Oct-07	31-Oct-07	13726.90	=""	="FERNO AUSTRALIA"	10-Dec-07 12:06 PM	

+="CN50438"	"Vehicle Repair Parts"	="Defence Materiel Organisation"	10-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	17515.12	=""	="Premier Automotive Group Australia Pty Ltd"	10-Dec-07 12:55 PM	

+="CN50439"	"NSN 5180-01-378-8873, Aircraft Maintenance Tool Kit"	="Defence Materiel Organisation"	10-Dec-07	="Aerospace systems and components and equipment"	06-Nov-07	06-Apr-08	77071.10	=""	="Milspec Services Pty Ltd"	10-Dec-07 01:07 PM	

+="CN50440"	"For the purchase of Qty 25 Tri Axis Accelerometers P/N: 17A542-03-00 for fitment to Black Hawk Helicopters as part of the Flight Data Recorder/CVDR upgrade. "	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	10-Dec-07	30-Apr-08	151250.00	=""	="FLIGHT DATA SYSTEMS"	10-Dec-07 01:58 PM	

+="CN50441"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	39790.55	=""	="Australian Customs Service"	10-Dec-07 02:04 PM	

+="CN50443"	"Provision of a Communications Review"	="Comsuper"	10-Dec-07	="Human resources services"	29-Oct-07	19-Nov-07	20000.00	=""	="YellowEdge Pty Ltd"	10-Dec-07 02:08 PM	

+="CN50442"	"Motor Vehicle Parts."	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	09-Jan-08	16150.74	=""	="Daimler Chrysler AUST Pacific"	10-Dec-07 02:09 PM	

+="CN50444"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	308716.12	=""	="Austrac"	10-Dec-07 02:10 PM	

+="CN50446"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	494928.34	=""	="NSW Police Service"	10-Dec-07 02:14 PM	

+="CN50445"	"Gear, Spur, Gear & Splink"	="Defence Materiel Organisation"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Aug-07	23-Jan-08	11935.44	=""	="General Dynamics"	10-Dec-07 02:16 PM	

+="CN50447"	"CAP SERVICE WHITE PEAKED, CAP SERVICE WHITE CHAPLAIN & CAP SERVICE WHITE COMMANDER"	="Defence Materiel Organisation"	10-Dec-07	="Clothing accessories"	19-Jul-07	31-Jan-08	146280.75	=""	="MOUNTCASTLE PTY LTD"	10-Dec-07 02:26 PM	

+="CN50448"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	61017.75	=""	="NT Police Fire and Emergency Service"	10-Dec-07 02:26 PM	

+="CN50449"	" Salary and Oncosts for Police Secondees "	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	396680.63	=""	="Queensland Police Service"	10-Dec-07 02:30 PM	

+="CN50450"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	401445.99	=""	="South Australia Police"	10-Dec-07 02:33 PM	

+="CN50451"	"Air Travel Booking Services"	="Australian Electoral Commission"	10-Dec-07	="Travel facilitation"	30-Nov-07	30-Sep-12	10000000.00	=""	="American Express Australia - QBT"	10-Dec-07 02:42 PM	

+="CN50452"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	352698.40	=""	="Tasmania Police - Department of police & Public Finance Branch"	10-Dec-07 02:48 PM	

+="CN50454"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	425488.16	=""	="Victoria Police"	10-Dec-07 02:52 PM	

+="CN50459"	"Building Services"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Speed stoppers"	01-Sep-07	01-Sep-07	24400.00	=""	="UNITED GROUP SERVICES PTY LTD"	10-Dec-07 02:54 PM	

+="CN50461"	"Air Travel Booking Services"	="Australian Electoral Commission"	10-Dec-07	="Travel facilitation"	01-Jul-07	29-Nov-07	697388.23	=""	="American Express Australia - QBT"	10-Dec-07 02:55 PM	

+="CN50462"	"ASLAV BOLT AND TRACK"	="Defence Materiel Organisation"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	08-Mar-08	32175.00	=""	="Trimcast"	10-Dec-07 03:01 PM	

+="CN50463"	" Furniture "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Furniture"	01-Jun-07	30-Sep-07	10300.00	=""	="INO CONTRACT FURNITURE PTY"	10-Dec-07 03:01 PM	

+="CN50464"	"Centrelink Agent at West Wyalong NSW for period 1/7/07 to 30/6/08"	="Centrelink"	10-Dec-07	="Community and social services"	01-Jul-07	30-Jun-08	33880.69	=""	="Bland Shire Council"	10-Dec-07 03:13 PM	

+="CN50466"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	10-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	26822.09	=""	="Australian Taxation Office"	10-Dec-07 03:23 PM	

+="CN50467"	"Furniture"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Furniture"	01-May-07	30-Sep-07	25700.00	=""	="STYLECRAFT AUSTRALIA"	10-Dec-07 03:28 PM	

+="CN50468"	"LAFIA - Asian Study Tour & Airfares"	="Australian Crime Commission"	10-Dec-07	="Development"	01-Jul-07	31-Dec-07	26822.09	=""	="Australian Public Service Commission"	10-Dec-07 03:28 PM	

+="CN50469-A1"	"Courier Services"	="Australian Electoral Commission"	10-Dec-07	="Road cargo transport"	27-Aug-07	31-Dec-09	222964.00	="05/06/40"	="Toll Prority"	10-Dec-07 03:35 PM	

+="CN50471"	"Printing and Binding"	="Australian Electoral Commission"	10-Dec-07	="Industrial printing services"	12-Nov-07	12-Dec-07	12100.00	=""	="Australian Envelopes"	10-Dec-07 03:42 PM	

+="CN50476"	"Printing and Binding"	="Australian Electoral Commission"	10-Dec-07	="Industrial printing services"	12-Nov-07	12-Dec-07	14300.00	=""	="Australian Envelopes"	10-Dec-07 03:48 PM	

+="CN50477"	"Printing"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Publication printing"	24-Jul-07	24-Jul-07	10500.00	=""	="ZOO COMMUNICATIONS PTY LTD"	10-Dec-07 03:55 PM	

+="CN50478"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	10-Dec-07	="Community and social services"	01-Jul-07	30-Jun-08	28079.42	=""	="Wallace Rockhole Community Government Council"	10-Dec-07 03:57 PM	

+="CN50481"	"Modification Kits for and Modification of F88S Weapons into WTSS Simulated Weapons."	="Defence Materiel Organisation"	10-Dec-07	="Weapon system teaching aids or materials"	15-Nov-07	13-Jun-08	460977.00	="Q1293"	="Firearms Training Systems Aust Pty Ltd"	10-Dec-07 03:59 PM	

+="CN50482"	"Ballot Paper Development"	="Australian Electoral Commission"	10-Dec-07	="Graphic design"	20-Apr-07	19-Sep-07	24232.73	="S06/07/043"	="Swell Design Group Pty Ltd"	10-Dec-07 04:03 PM	

+="CN50484"	"Temporary Personnel"	="Australian Electoral Commission"	10-Dec-07	="Temporary personnel services"	09-Nov-07	09-Dec-07	55602.00	="S07/08/089"	="Locher & Associates Pty Ltd"	10-Dec-07 04:15 PM	

+="CN50485"	"Training"	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Education and Training Services"	01-Jun-07	01-Jul-07	10500.00	=""	="DEPARTMENT OF DEFENCE"	10-Dec-07 04:17 PM	

+="CN50488"	"motor vehicle spare parts"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	09-Jan-08	21105.69	=""	="Volvo Commercial Vehicles Albury"	10-Dec-07 04:21 PM	

+="CN50490"	"Motor Vehicle Parts."	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Dec-07	09-Jan-08	33502.91	=""	="Daimler Chrysler AUST Pacific"	10-Dec-07 04:25 PM	

+="CN50491-A11"	"Debt Collection Services panel"	="Australian Taxation Office"	10-Dec-07	="Credit agencies"	28-Sep-07	27-Sep-11	17885348.14	="06.155"	="Dun and Bradstreet (Australia) Pty Ltd as trustee to the Dun & Bradstreet Unit Trust"	10-Dec-07 04:28 PM	

+="CN50489"	"Procurement of Paint and Painting products"	="Department of Defence"	10-Dec-07	="Paints and primers and finishes"	02-Aug-07	16-Dec-07	14410.07	=""	="PROTEC Pty Ltd"	10-Dec-07 04:31 PM	

+="CN50492"	"Protective Guard Security"	="Australian Electoral Commission"	10-Dec-07	="Security guard services"	19-Nov-07	19-Dec-07	12500.00	="S07/08/113"	="SNP Security"	10-Dec-07 04:33 PM	

+="CN50493"	"motor vehicle spare parts"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	19481.26	=""	="ROVER AUSTRALIA"	10-Dec-07 04:33 PM	

+="CN50494"	" LicensiE Support Fee "	="Department of the Prime Minister and Cabinet"	10-Dec-07	="Proprietary or licensed systems maintenance or support"	01-Jul-06	30-Jun-07	10100.00	=""	="AURION CORPORATION PTY LTD"	10-Dec-07 04:37 PM	

+="CN50495"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	41338.31	=""	="ROVER AUSTRALIA"	10-Dec-07 04:41 PM	

+="CN50496"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Dec-07	05-Jan-08	22189.60	=""	="ROVER AUSTRALIA"	10-Dec-07 04:49 PM	

+="CN50497"	"Software Maintenance"	="Australian Electoral Commission"	10-Dec-07	="Software maintenance and support"	22-Jun-07	21-Jun-08	26985.40	=""	="Alphawest Services Pty Ltd"	10-Dec-07 05:00 PM	

+="CN50498"	"Production & Installation of precast concrete fence rails at Lae War Cememtery"	="Department of Veterans' Affairs"	10-Dec-07	="General building construction"	06-Dec-07	05-Mar-08	18338.00	=""	="Morobe Concrete Products"	10-Dec-07 05:00 PM	

+="CN50499"	" Computing Database Services "	="Australian Electoral Commission"	10-Dec-07	="Temporary information technology systems or database administrators"	01-Jun-07	13-Jul-07	10000.00	=""	="Don O'Connor"	10-Dec-07 05:10 PM	

+="CN50501"	" CONNECTING LINK RIGID P/No 206-001-096-001 MC 97499  QUANTITY 10 "	="Defence Materiel Organisation"	10-Dec-07	="Military rotary wing aircraft"	10-Dec-07	19-Jun-08	11278.52	=""	="HELITECH A DIVISION OF SIKORSKY"	10-Dec-07 05:15 PM	

+="CN50502-A12"	"Debt Collection Services"	="Australian Taxation Office"	10-Dec-07	="Credit agencies"	05-Oct-07	27-Sep-11	15339704.87	="06.155"	="Recoveries Corporation Pty Ltd"	10-Dec-07 05:26 PM	

+="CN50503"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Dec-07	="Vehicle leasing"	10-Jun-06	09-Jun-08	42776.64	=""	="LeasePlan"	10-Dec-07 09:07 PM	

+="CN50504"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Dec-07	="Vehicle leasing"	27-Aug-07	26-Aug-09	36349.20	=""	="LeasePlan"	10-Dec-07 09:15 PM	

+="CN50515"	"Purchase of replacement Notebooks for FCoA"	="Family Court of Australia"	11-Dec-07	="Notebook computers"	11-Dec-07	10-Jan-08	40910.00	=""	="Dell Australia Pty Ltd"	11-Dec-07 08:29 AM	

+="CN50516"	" Recruitment services "	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	23-Aug-07	29-Feb-08	77000.00	=""	="Spencer Stuart"	11-Dec-07 08:51 AM	

+="CN50517"	"Recruitment services"	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	17-Sep-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 08:54 AM	

+="CN50518"	"Recruitment services"	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	03-Oct-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 08:57 AM	

+="CN50519"	" Recruitment services "	="Future Fund Management Agency"	11-Dec-07	="Recruitment services"	01-Nov-07	29-Feb-08	62700.00	=""	="Spencer Stuart"	11-Dec-07 09:00 AM	

+="CN50521"	"Crates for Billy Hughes at War Exhib"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	07-Dec-07	21-Jan-08	14008.50	="ATM2007/00738"	="T.E.D. AUSTRALIA"	11-Dec-07 09:20 AM	

+="CN50522"	"Fini Frames fot Billy Hughes at War Exhib"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	07-Dec-07	24-Dec-07	12428.83	="ATM2007/00739"	="FINI FRAMES PTY LTD"	11-Dec-07 09:20 AM	

+="CN50523"	"Advertising Position vacant"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13008.80	="2007/720"	="HMA BLAZE PTY LTD"	11-Dec-07 09:20 AM	

+="CN50524"	"Data entry for the PLR Manual Survey Data"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Jan-08	16500.00	="ATM07/722"	="RECALL INFORMATION MANAGEMENT Pty L"	11-Dec-07 09:20 AM	

+="CN50525"	"Supply and install workstations- 38 Sydney"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	04-Dec-07	30-Jun-08	22293.70	="ATM 07/721"	="Schiavello (ACT) Pty Ltd"	11-Dec-07 09:20 AM	

+="CN50526"	"Consultancy Services for ICT Options"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	50000.01	="DCON05/143"	="WALTER TURNBULL"	11-Dec-07 09:20 AM	

+="CN50528"	"New Lift to MDR - Building Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	29-Nov-07	01-Jun-08	266742.30	="ATM 2007/00697"	="FM Projects Australia Pty Ltd"	11-Dec-07 09:21 AM	

+="CN50529"	"SW Wing Basement storage - Building Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	29-Nov-07	30-Apr-08	235103.00	="ATM 2007/00693"	="FM Projects Australia Pty Ltd"	11-Dec-07 09:21 AM	

+="CN50530-A1"	"Book, Wollstonecraft, Mary A Vindication of The Rights of Women"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	29-Nov-07	29-Nov-07	12100.00	="ATM2007/00696"	="Justin Croft Antiquarian Books"	11-Dec-07 09:21 AM	

+="CN50531"	"Senate Press Galleries Painting Works"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction and Maintenance Services"	28-Nov-07	14-Jan-08	30834.95	="ATM 07/692"	="Picasso Building Pty Ltd"	11-Dec-07 09:21 AM	

+="CN50532"	"New Lift to the Rear of OPH"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	30-Jun-08	103840.00	="ATM 2007/00690"	="SCHINDLER LIFTS AUSTRALIA P/L"	11-Dec-07 09:21 AM	

+="CN50533-A1"	"Contractor services"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	31-Jan-08	12794.14	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	11-Dec-07 09:21 AM	

+="CN50534"	"SW Wing Basement storage projuce - Architectural services through construction"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Apr-08	34210.00	="ATM 2007/07/154"	="HBO+EMTB Interiors (ACT) Pty Ltd"	11-Dec-07 09:21 AM	

+="CN50535"	"airfares - 1-31/10/07"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	27-Nov-07	27-Nov-07	10035.22	=""	="CARLSON WAGONLIT TRAVEL"	11-Dec-07 09:21 AM	

+="CN50536-A1"	"Legal Services - contract for BART"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	27-Nov-07	30-Jun-08	19250.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Dec-07 09:21 AM	

+="CN50537"	"Redevelopment of OPH Website"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	16-Nov-07	28-Feb-08	70455.00	="ATM2007/00694"	="ZOO Communications"	11-Dec-07 09:22 AM	

+="CN50538"	"2007 Contribution to ARC Linkage Project Grant"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Public Utilities and Public Sector Related Services"	28-Jul-05	30-Dec-07	11000.00	="2007/00691"	="UNIVERSITY OF CANBERRA"	11-Dec-07 09:22 AM	

+="CN50539-A1"	"Contractor services"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	28-Nov-07	31-Jan-08	23989.94	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	11-Dec-07 09:22 AM	

+="CN50540-A3"	"Telstra Constitutional Challenge in High Court"	="Department of Communications, Information Technology and the Arts"	11-Dec-07	="Legal services"	20-Apr-07	30-Jun-09	397092.04	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Dec-07 09:22 AM	

+="CN50543"	"Laser Power Amplifier Upgrade to increase laser power output."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	01-Nov-07	30-Jun-08	93500.00	=""	="EOS Space Systems Pty Ltd"	11-Dec-07 09:39 AM	

+="CN50544"	"PRINCE2 Practitioner Package, 3 sessions through November and December 2007"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	02-Nov-07	10-Dec-07	32670.00	=""	="Tanner James Management Consultants"	11-Dec-07 09:39 AM	

+="CN50545"	"Analysis and processing of remote sensing image and time-series data"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	02-Nov-07	30-Nov-07	11000.00	=""	="Monash University"	11-Dec-07 09:39 AM	

+="CN50546"	"Implementation/Consultancy services and ITBM training for Oct/Nov. 07"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	02-Nov-07	30-Nov-07	29040.00	=""	="Touchpaper Australasia Pty Ltd T/As Helpdesk Solutions"	11-Dec-07 09:39 AM	

+="CN50547"	"Analysis and Design using UML course (for 6 OEMD participants)"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	05-Nov-07	30-Nov-07	29698.90	=""	="Object Consulting Pty Ltd"	11-Dec-07 09:39 AM	

+="CN50548"	"G1346 EBSCO Serials Renewal for Calender Year 2008"	="Geoscience Australia"	11-Dec-07	="Printed publications"	05-Nov-07	31-Dec-08	357547.92	=""	="EBSCO Australia"	11-Dec-07 09:39 AM	

+="CN50549"	"G2030 Services in relation to ICT Storage Review Oct/Nov 2007"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	12-Nov-07	10725.00	=""	="CCS Index Pty Ltd"	11-Dec-07 09:39 AM	

+="CN50550"	"REF No: RP00748/SYD0421; Transcription of H93S Stag 3D Marine Seismic Survey Data (894 x 3480 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	30-Jun-08	11388.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:40 AM	

+="CN50551"	"REF No: RP00874/SYD0507; Transcription of Baylis 3D Project 506 Marine Seismic and Magnetic Survey Data (146 x 3590 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	07-Nov-07	30-Jun-08	12915.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:40 AM	

+="CN50553"	"ASNET Installation"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	30-Nov-07	105000.00	=""	="Attorney-General's Department"	11-Dec-07 09:40 AM	

+="CN50554"	"Supply of temperature logging equipment as per your Quote No. 1710"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	07-Nov-07	30-Jun-08	76995.60	=""	="Auslog Pty Ltd"	11-Dec-07 09:40 AM	

+="CN50555"	"APS Job Subscription 2007-2008"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	14659.43	=""	="Australian Public Service Commission APSC"	11-Dec-07 09:40 AM	

+="CN50556"	"Secuirty Clearances"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	15-Nov-07	28-Nov-07	66600.00	=""	="Dept of Industry Tourism & Resources"	11-Dec-07 09:40 AM	

+="CN50557"	"Contract services - Ceduna Sub-Basin Teclink & Petroleum Systems Modelling (USD$22,750)"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	08-Nov-07	31-Dec-07	25000.00	=""	="IES GmbH"	11-Dec-07 09:41 AM	

+="CN50558"	"Consultancy - Regional Geological Analysis of the Lord Howe Rise Region"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	08-Nov-07	31-May-08	41470.00	=""	="Dr Martin Simeon Norvick"	11-Dec-07 09:41 AM	

+="CN50559"	"G2159 HP Project id: AU3-03535.  G.A. Data Centre Facility Assessment (Risk & Thermal)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	09-Nov-07	30-Nov-07	25025.00	=""	="Hewlett Packard Australia Ltd"	11-Dec-07 09:41 AM	

+="CN50560"	"PCI Geomatica software maintenance for period 1 Oct 2007 to 30 Sep 2008 as per quote WA08-0093"	="Geoscience Australia"	11-Dec-07	="Software"	09-Nov-07	30-Sep-08	10994.01	=""	="Geoimage Pty Ltd"	11-Dec-07 09:41 AM	

+="CN50561"	"Reimbursment to the University of Sydney for their part in Leg 1 Tangaroa Survey"	="Geoscience Australia"	11-Dec-07	="Passenger air transportation"	09-Nov-07	30-Nov-07	27499.99	=""	="University of Sydney"	11-Dec-07 09:41 AM	

+="CN50562"	"Upgrade for Core Research Advisor to EXP Premier Seat to cover period 1/11/2007 to 30/6/2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	09-Nov-07	30-Jun-08	62150.00	=""	="Gartner Australasia Pty Ltd"	11-Dec-07 09:41 AM	

+="CN50563"	"Apparatus Licence Renewal Fees, Earth Receive and Fixed, Alice Springs and TERSS."	="Geoscience Australia"	11-Dec-07	="Telecommunications media services"	11-Nov-07	13-Dec-08	32256.00	=""	="Australian Communications and Media Authority"	11-Dec-07 09:41 AM	

+="CN50564"	"Icon Annual Levy 07/08"	="Geoscience Australia"	11-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	49500.00	=""	="Dept of Finance & Administration"	11-Dec-07 09:42 AM	

+="CN50565"	"Serials Subscription 01/2008 -12/2008"	="Geoscience Australia"	11-Dec-07	="Printed publications"	12-Nov-07	31-Dec-08	12363.00	=""	="American Geophysical Union"	11-Dec-07 09:42 AM	

+="CN50566"	"Maintenance of Victorian JUMP stations"	="Geoscience Australia"	11-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	11000.00	=""	="ES&S Environmental Systems & Services Pty Ltd"	11-Dec-07 09:42 AM	

+="CN50567"	"Canning Basin Airborne Magnetic and Radiometric Survey, including full stand-by. [Ref 2006/4271] Residual from 06_07 PO 20949."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	13-Nov-07	31-Dec-07	210536.41	=""	="Fugro Airborne Surveys"	11-Dec-07 09:42 AM	

+="CN50568"	"K3155 - K950X Turbo carbon evaporator; K3115 - K150X Film thickness monitor (free standing)"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	13-Nov-07	30-Jan-08	26676.10	=""	="ProSciTech"	11-Dec-07 09:42 AM	

+="CN50569"	"SHRIMP automation software"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	13-Nov-07	30-Jun-08	31900.00	=""	="Australian Scientific Instruments Pty Ltd"	11-Dec-07 09:42 AM	

+="CN50570"	"RC Contract Services 60 days from 08/10/07 with option to extend 60 days. Cost to GA @ $70 per hour."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	13-Nov-07	30-Jun-08	73920.00	=""	="Finite Recruitment Pty Ltd"	11-Dec-07 09:42 AM	

+="CN50571"	"Final two payments for the SHRIMP"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	14-Nov-07	30-Jun-08	1037850.00	=""	="Australian Scientific Instruments Pty Ltd"	11-Dec-07 09:43 AM	

+="CN50572"	"Core Spring Training for 5 OEMDIS staff and 1 ISB staff"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	14-Nov-07	31-Jan-08	19668.00	=""	="Interface21 Pty Limited"	11-Dec-07 09:43 AM	

+="CN50573"	"Contract Services for Technical advice on Geophysical Data Interpretation and a Slope Failure Survey Study. (USD$30877)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	14-Nov-07	31-Dec-07	38500.00	=""	="RPS Energy Pty Ltd"	11-Dec-07 09:43 AM	

+="CN50574"	"2D Move training course - 11-13 Dec 2007. Quote Ref: 162.0"	="Geoscience Australia"	11-Dec-07	="Education and Training Services"	14-Nov-07	31-Dec-07	14173.50	=""	="FaultSeal Finance Pty Ltd"	11-Dec-07 09:43 AM	

+="CN50576"	"GeoFrameRunTime Environment and GeoFrame IESX Seis2DV Licences"	="Geoscience Australia"	11-Dec-07	="Software"	15-Nov-07	27-Nov-07	321649.94	=""	="Schlumberger Oilfield Australia Pty ltd"	11-Dec-07 09:43 AM	

+="CN50577"	"Advertisements in the Australian Saturday 6.10.07 3 Positions Law of the Sea"	="Geoscience Australia"	11-Dec-07	="Personnel recruitment"	15-Nov-07	30-Nov-07	10063.81	=""	="HMA Blaze Pty Limited"	11-Dec-07 09:43 AM	

+="CN50578"	"Contract Staff PMD 3 December 2007 - 13 December 2007"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Dec-07	16170.00	=""	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:43 AM	

+="CN50579"	"OzCoast Database and Web Development Contract Staff October 2007 to April 2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	15-Nov-07	30-Apr-08	100100.00	=""	="Data Vantage Australia Pty Ltd"	11-Dec-07 09:44 AM	

+="CN50580"	"2007-2008 fuel costs for executive vehicles"	="Geoscience Australia"	11-Dec-07	="Fuels"	19-Nov-07	30-Jun-08	18900.00	=""	="Lease Plan Aust Limited"	11-Dec-07 09:44 AM	

+="CN50582"	"Contract services - Offshore Canning Magnetic Interpretation (RFT2007/2855)"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	19-Nov-07	31-Mar-08	308110.00	=""	="Encom Technology Pty Ltd"	11-Dec-07 09:44 AM	

+="CN50584"	"RP00897 transcription of 3D Marine Seismic Seismic consisting of 194 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	11504.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:44 AM	

+="CN50585"	"RP00896 Transcription of 3D Marine Seismic consisting of 237 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	14148.20	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50586"	"RP00895 transcription of  2D Marine Seismic consisting of 266 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	15464.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50581"	"Salary and Oncosts for Police Secondees"	="Australian Crime Commission"	11-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	308716.14	=""	="Western Australia Police"	11-Dec-07 09:45 AM	

+="CN50587"	"RP00894 Transcription of  3D Marine Seismic consisting of 203 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	11999.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50588"	"Re: G00865 Quality control services  (PO: 21307) 126 x 3590 cartridge pairs"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Dec-07	10892.97	=""	="GeoCom Services Australia Pty  Ltd"	11-Dec-07 09:45 AM	

+="CN50589"	"Provide property advice for Geoscience Australia accomodation issues including strategic accomodation planning and lease issues"	="Geoscience Australia"	11-Dec-07	="Business and corporate management consultation services"	20-Nov-07	30-Jun-08	22000.00	=""	="Property Concept & Management Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50590"	"REF: RP00867/SYD0491; Transcription of Mescal 3D Marine Seismic (Consisting of 1548 x 3590 cartridges)."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	20-Nov-07	30-Jun-08	136395.00	=""	="Phoenix Data Services Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50591"	"contract Services for Tech Writer 7 Nov 2007 to 20 feb 2008"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	21-Nov-07	31-Mar-08	41800.00	=""	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:45 AM	

+="CN50592"	"2 x Dell PowerEdge 1950 Servers"	="Geoscience Australia"	11-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	06-Dec-07	26334.00	=""	="Dell Australia Pty Ltd"	11-Dec-07 09:46 AM	

+="CN50593"	"Provision for Cabcharge Services Corporate/ISB Branch for FY 2007/08"	="Geoscience Australia"	11-Dec-07	="Passenger road transportation"	22-Nov-07	30-Jun-08	24000.00	=""	="Cabcharge Australia Pty Ltd"	11-Dec-07 09:46 AM	

+="CN50583"	"Vehicle Repair Parts"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	25-Jul-07	08-Aug-07	21824.92	=""	="Premier Automotive Group Pty Ltd"	11-Dec-07 09:46 AM	

+="CN50595"	"Current Profiler Autonomous System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	67845.80	=""	="Biolab (Aust) Pty Limited"	11-Dec-07 09:46 AM	

+="CN50596"	"Transceiver and Transponder for Portable Underwater Video System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	32558.66	=""	="Linkquest Inc"	11-Dec-07 09:46 AM	

+="CN50597"	"Portable Underwater Video System"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	22-Nov-07	30-Jun-08	47782.90	=""	="Raytech Services Pty Ltd"	11-Dec-07 09:46 AM	

+="CN50598"	"CRC LEME 2007-08 Payment"	="Geoscience Australia"	11-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	100000.00	=""	="CRC LEME (CRC for Landscape Environments & Mineral Exploration)"	11-Dec-07 09:46 AM	

+="CN50599"	"Petrosys software maintenance 30 Nov 2007 to 29 Nov 2008"	="Geoscience Australia"	11-Dec-07	="Software"	23-Nov-07	29-Nov-08	45220.92	=""	="Petrosys Pty Ltd"	11-Dec-07 09:47 AM	

+="CN50600-A1"	"G2201 Provision of Staff Under Deed of Standing Offer to 30 June 2008."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	23-Nov-07	30-Jun-08	93500.00	=""	="AUREC Pty Ltd"	11-Dec-07 09:47 AM	

+="CN50594"	"Software Support"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Software"	01-Jul-07	30-Jun-08	34000.00	=""	="CITRIX SYSTEMS ASIA PACIFIC PTY LTD"	11-Dec-07 09:47 AM	

+="CN50601"	"G2173 Provision of Staff Under Deed of Standing Offer to 30 June 2008 Project Manager"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	23-Nov-07	30-Jun-08	99000.00	=""	="Verossity Pty Ltd"	11-Dec-07 09:47 AM	

+="CN50602"	"Employment of technical assistant within Mineral Resources and Advice Group"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-May-08	12100.00	=""	="Keenyear Pty Ltd"	11-Dec-07 09:47 AM	

+="CN50603"	"WP1042 Glenelg-Hopkins #1 -  Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	119570.77	=""	="Sinclair Knight Merz"	11-Dec-07 09:47 AM	

+="CN50604"	"Overview of Natural Hazard Risk for the Asia-Pacific Region"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	31-Dec-07	162250.00	="2007/1368"	="Access Macquarie Limited"	11-Dec-07 09:47 AM	

+="CN50605"	"WP1067 Glenelg-Hopkins #3 - Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	136354.68	=""	="Photo Mapping Services Pty Ltd"	11-Dec-07 09:47 AM	

+="CN50606"	"WP1066 Glenelg-Hopkins #2 - Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	135458.40	=""	="Photo Mapping Services Pty Ltd"	11-Dec-07 09:48 AM	

+="CN50607"	"WP1055 Townsville - Production & Supply of Topographic Maps and Data.  Deed G1688D; CMC G2196."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	30-Jun-08	114922.50	=""	="Terranean Mapping Technologies"	11-Dec-07 09:48 AM	

+="CN50608"	"G2161 Provision of Staff Under Deed of Standing Offer to 23 May 2008 Director"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	26-Nov-07	23-May-08	143000.00	=""	="MPM Group Pty Ltd T/as Nova IT"	11-Dec-07 09:48 AM	

+="CN50609"	"ERSDEM Support Agreement - 1 July 2007 to 30 June 2008."	="Geoscience Australia"	11-Dec-07	="Computer services"	27-Nov-07	30-Jun-08	28050.00	=""	="University of South Australia"	11-Dec-07 09:48 AM	

+="CN50610"	"Replacement Towfish - 4200FS TowFish, Pressure Sensor, Mag/USBL interface"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	27-Nov-07	30-Dec-07	50000.00	=""	="EdgeOne LLC"	11-Dec-07 09:48 AM	

+="CN50611"	"G2166 Funnelback Enterprise Search  annual support for 9 Nov 2007 to 8 Nov 2008"	="Geoscience Australia"	11-Dec-07	="Software"	27-Nov-07	08-Nov-08	22000.00	=""	="Funnelback Pty Ltd"	11-Dec-07 09:48 AM	

+="CN50612"	"WP1053 Upper South-East South Australia (North Tatiara; The Coorong) Production & Supply of Topographic Maps and Data."	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-08	106884.54	=""	="Sinclair Knight Merz"	11-Dec-07 09:48 AM	

+="CN50613"	"Contract Services 17 December 2007 - 30 June 2008 PMD Division Contract: G1881"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	114048.00	="2005/1773"	="Frontier Group Australia Pty Ltd"	11-Dec-07 09:49 AM	

+="CN50614"	"Rental of Latitude Scanner for 24 months Rental Contract # 21788 Contract G1980"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	30-Nov-07	30-Nov-09	53900.00	=""	="Enterprise Finance Solutions"	11-Dec-07 09:49 AM	

+="CN50615"	"RP00696 Transcription  of 7070 x 3480 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Jun-08	17437.00	="2006/3933"	="SpectrumData"	11-Dec-07 09:49 AM	

+="CN50616"	"Supply of Struers TegraSystem"	="Geoscience Australia"	11-Dec-07	="Tools and General Machinery"	30-Nov-07	28-Feb-08	30244.50	=""	="Intellection Pty Ltd"	11-Dec-07 09:49 AM	

+="CN50617"	"Transcription of data consisting of 117 x 3590 cartridges"	="Geoscience Australia"	11-Dec-07	="Temporary personnel services"	30-Nov-07	30-Jun-08	13021.55	="2006/3933"	="DataCom IT"	11-Dec-07 09:49 AM	

+="CN50618-A2"	"Security Vetting Services"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	20000.00	=""	="STAFF CHECK PTY LTD"	11-Dec-07 09:55 AM	

+="CN50620"	"Compass,Magnetic, Unmounted"	="Defence Materiel Organisation"	11-Dec-07	="Direction finding compasses"	10-Dec-07	28-Feb-08	68447.50	=""	="Luminous Processors"	11-Dec-07 10:00 AM	

+="CN50621-A1"	"Provision of Commercial Cleaning Services"	="CRS Australia"	11-Dec-07	="Cleaning and janitorial services"	31-Oct-07	30-Oct-10	22297.42	=""	="Jani-King (SA) Pty Ltd"	11-Dec-07 10:01 AM	

+="CN50622-A2"	"SECURITY VETTING SERVICES"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	49500.00	=""	="MITCHELL PERSONNEL SOLUTIONS"	11-Dec-07 10:02 AM	

+="CN50626"	"CMDM Fix Pack 6 Software Upgrade"	="Australian Taxation Office"	11-Dec-07	="Software"	07-Sep-07	31-Dec-07	287760.00	=""	="IBM Australia Ltd"	11-Dec-07 10:10 AM	

+="CN50627-A1"	"SECURITY VETTING SERVICES"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Security and personal safety"	01-Jul-07	30-Jun-08	49500.00	=""	="BARRINGTON CORPORATE RISK PTY LTD"	11-Dec-07 10:13 AM	

+="CN50628"	"Omegamon Implementation"	="Australian Taxation Office"	11-Dec-07	="Software"	11-Dec-07	30-Jun-08	289450.00	=""	="IBM Australa Ltd"	11-Dec-07 10:15 AM	

+="CN50629"	"PRIVATE PLATED MOTOR VEHICLE LEASE"	="Administrative Appeals Tribunal"	11-Dec-07	="Passenger motor vehicles"	09-Nov-07	08-Nov-09	26970.50	=""	="Lease Plan Australia Pty Ltd"	11-Dec-07 10:30 AM	

+="CN50630"	" Security Services "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Public administration and finance services"	27-Aug-07	21-Dec-07	55000.00	=""	="CORDELTA PTY LTD"	11-Dec-07 10:42 AM	

+="CN50631"	"Furniture and Fittings"	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Furniture and Furnishings"	24-Sep-07	24-Oct-07	15500.00	=""	="DE DE CE"	11-Dec-07 10:50 AM	

+="CN50632"	" FURNITURE "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Furniture and Furnishings"	04-Jun-07	30-Sep-07	25400.00	=""	="DE DE CE"	11-Dec-07 10:54 AM	

+="CN50633"	" VEHICLE REPARIS "	="Department of Defence"	11-Dec-07	="Motor vehicles"	23-Jul-07	23-Aug-07	11066.18	=""	="R.G.M"	11-Dec-07 10:56 AM	

+="CN50636-A1"	" Review of Centrelink Authoring and Publishing for Internal Communication Delivery "	="Centrelink"	11-Dec-07	="Management advisory services"	12-Oct-07	31-Dec-07	68200.00	=""	="Hugh Watson Consulting Pty Ltd"	11-Dec-07 11:00 AM	

+="CN50637-A1"	" CONSULTANCY SERVICES "	="Department of the Prime Minister and Cabinet"	11-Dec-07	="Strategic planning consultation services"	12-Jun-07	02-Jul-07	19800.00	=""	="RESOLUTION COUNSULTING SERVICES"	11-Dec-07 11:03 AM	

+="CN50638"	"vehicle repair PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	30-Jul-07	13-Aug-07	17181.34	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 11:10 AM	

+="CN50639"	"Security Monitoring"	="Federal Magistrates Court"	11-Dec-07	="Security surveillance and detection"	01-Nov-07	30-Nov-07	13813.54	=""	="ADT Security"	11-Dec-07 11:17 AM	

+="CN50640"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Aug-07	20-Aug-07	27002.35	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 11:18 AM	

+="CN50641-A3"	"Provision for Project Manager"	="Comsuper"	11-Dec-07	="Human resources services"	23-Dec-07	30-Jun-08	166320.00	=""	="Candle Australia Ltd"	11-Dec-07 11:21 AM	

+="CN50642"	"Rental of Office"	="Federal Magistrates Court"	11-Dec-07	="Lease and rental of property or building"	01-Nov-07	30-Nov-07	151368.72	=""	="Attorney Generals Department - NSW"	11-Dec-07 11:24 AM	

+="CN50643"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Aug-07	20-Aug-07	12965.48	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 11:24 AM	

+="CN50644"	" VEhicle Repair Parts "	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	28-Aug-07	11-Sep-07	12698.21	=""	="DAIMLER CHRYSLER"	11-Dec-07 11:26 AM	

+="CN50645"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	17603.03	=""	="Auscript Australasia Pty Ltd"	11-Dec-07 11:28 AM	

+="CN50646"	"Purchase Ancillary Equipment for a SUN Microsystems V890 Server"	="Comsuper"	11-Dec-07	="Computer Equipment and Accessories"	10-Dec-07	10-Dec-08	49863.00	=""	="Vectra Corporation Limited"	11-Dec-07 11:31 AM	

+="CN50647"	"HYDRAULIC JACK, HAND, TOOLS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	08-Aug-07	29-Aug-07	11220.00	=""	="FORDHAM ENGINEERING"	11-Dec-07 11:32 AM	

+="CN50649"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	08-Aug-07	22-Aug-07	17591.64	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:38 AM	

+="CN50650"	"Installation of Audio Equipment FMC Adelaide"	="Federal Magistrates Court"	11-Dec-07	="Audioconferencing systems"	01-Nov-07	30-Nov-07	20053.00	=""	="B & H Australia Pty Ltd"	11-Dec-07 11:38 AM	

+="CN50648-A1"	"Set-up and data entry of Looking After Children Assessment and Action Records"	="Australian Institute of Family Studies"	11-Dec-07	="Data processing or preparation services"	26-Nov-07	07-Jan-08	36454.00	=""	="Strategic Data Pty Ltd"	11-Dec-07 11:40 AM	

+="CN50652-A2"	"Variation to the Provision for Business Analyst; Previous Gazzete Number 21806"	="Comsuper"	11-Dec-07	="Human resources services"	02-Jul-07	30-Jun-08	213924.00	=""	="Eurolink Consulting Pty Ltd"	11-Dec-07 11:43 AM	

+="CN50653"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	13-Aug-07	27-Aug-07	11810.92	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:45 AM	

+="CN50651"	"VEHCILE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	17515.12	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:46 AM	

+="CN50654"	"Taxi & Cabcharges"	="Federal Magistrates Court"	11-Dec-07	="Taxicab services"	01-Nov-07	30-Nov-07	26665.25	=""	="Cabcharge Australia Pty Ltd"	11-Dec-07 11:49 AM	

+="CN50655"	"Community Policing Partnership Project"	="Australian Human Rights Commission"	11-Dec-07	="Community and social services"	03-Aug-07	31-Oct-10	385000.00	=""	="Australian Multicultural Foundation"	11-Dec-07 11:53 AM	

+="CN50656"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	29-Aug-07	12-Sep-07	11734.56	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 11:59 AM	

+="CN50659"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	15708.62	=""	="VOLVO COMMERCIAL VEHICLES"	11-Dec-07 12:23 PM	

+="CN50660"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	10-Sep-07	24-Sep-07	16898.95	=""	="DAIMLER CHRYSLER"	11-Dec-07 12:25 PM	

+="CN50661"	" IT CONTRACTOR "	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	05-Sep-07	06-Aug-08	217047.60	=""	="ICON RECRUITMENT"	11-Dec-07 12:34 PM	

+="CN50662"	"APRA WAN AND INTERNET"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Internet services"	07-Nov-07	07-Nov-07	358112.66	=""	="OPTUS BILLING SERVICES"	11-Dec-07 12:43 PM	

+="CN50665"	"TEMPORARY ADMIN PERSONNEL"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Human resources services"	29-Oct-07	29-Oct-07	41795.25	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY LTD"	11-Dec-07 12:43 PM	

+="CN50674"	"ANNUAL SOFTWARE MAINTENANCE FEES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software maintenance and support"	08-Nov-07	08-Nov-07	39790.30	=""	="EDEN TECHNOLOGY PTY LTD"	11-Dec-07 12:44 PM	

+="CN50676"	"PRINTING OF 2007 APRA ANNUAL REPORT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Oct-07	29-Oct-07	25893.42	=""	="GEON GROUP AUSTRALIA PTY LTD (DYNAMIC PRESS)"	11-Dec-07 12:44 PM	

+="CN50677"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	29-Oct-07	29-Oct-07	37400.00	=""	="ERNST AND YOUNG"	11-Dec-07 12:44 PM	

+="CN50678"	"SERVER MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software or hardware engineering"	31-Oct-07	31-Oct-07	11963.60	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	11-Dec-07 12:45 PM	

+="CN50679"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	01-Nov-07	01-Nov-07	15400.00	=""	="GAIL WOODGATE CONSULTANCY PTY LTD"	11-Dec-07 12:45 PM	

+="CN50680"	"CONSULTANTS FOR INSTALLATION OF ITSM"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Information technology consultation services"	02-Nov-07	02-Nov-07	54340.00	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	11-Dec-07 12:45 PM	

+="CN50681"	"RACK SPACE TO HOUSE BLADE EQUIPMENT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	02-Nov-07	02-Nov-07	25080.00	=""	="OPTUS NETWORKS PTY LIMITED"	11-Dec-07 12:45 PM	

+="CN50682"	"STAMP DUTY"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Facilities management"	05-Nov-07	05-Nov-07	24961.75	=""	="ACT DEPARTMENT OF TREASURY (ACT REVENUE OFFICE)"	11-Dec-07 12:45 PM	

+="CN50683"	"RECRUITMENT FEE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	05-Nov-07	05-Nov-07	22000.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	11-Dec-07 12:45 PM	

+="CN50685"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	06-Aug-07	09-Nov-07	62400.00	=""	="OBJECT CONSULTING PTY LTD"	11-Dec-07 12:45 PM	

+="CN50686"	"PROVISION OF SOFTWARE AND CONSULTANCY"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software"	06-Nov-07	06-Nov-07	34870.00	=""	="AURION CORPORATION PTY LTD"	11-Dec-07 12:45 PM	

+="CN50688"	"ELECTRICAL MAINTENANCE AND SUPPLY OF UPS"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Electronic Components and Supplies"	08-Nov-07	08-Nov-07	10405.96	=""	="CONTRAX SOLUTIONS PTY LTD"	11-Dec-07 12:46 PM	

+="CN50689"	"PROVISION OF CONTRACT SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	12-Nov-07	12-Nov-07	17650.16	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	11-Dec-07 12:46 PM	

+="CN50690"	"RECRUITMENT FEES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	13-Nov-07	13-Nov-07	14300.00	=""	="MCS CONSULTING (MARINOV)"	11-Dec-07 12:46 PM	

+="CN50691"	"LEADERSHIP TEAM MEETING"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	14-Nov-07	14-Nov-07	19250.00	=""	="NOVOTEL SYDNEY DARLING HARBOUR"	11-Dec-07 12:46 PM	

+="CN50693"	"CONFERENCE EXPENSES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	15-Nov-07	15-Nov-07	12936.00	=""	="CROWNE PLAZA (HANZ VICTORIA PTY LTD)"	11-Dec-07 12:46 PM	

+="CN50694"	"GRADUATE RECRUITMENT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Advertising"	15-Nov-07	15-Nov-07	12677.50	=""	="GRADUATE CAREERS AUSTRALIA"	11-Dec-07 12:46 PM	

+="CN50695"	"TEMPORARY CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Temporary personnel services"	19-Nov-07	19-Nov-07	73397.50	=""	="INTERPRO AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	

+="CN50696"	"HARDWARE - NETWORK INFRASTRUCTURE UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	16-Nov-07	53564.28	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	

+="CN50698"	"HARDWARE - SERVER UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	64321.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	

+="CN50699"	"DESKTOP COMPUTER REFRESH"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Desktop computers"	21-Nov-07	21-Nov-07	134886.19	=""	="DATA#3 LIMITED"	11-Dec-07 12:47 PM	

+="CN50700"	"COMPUTER ROOM UPGRADE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	301412.10	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	11-Dec-07 12:47 PM	

+="CN50701"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Building and Construction and Maintenance Services"	22-Nov-07	22-Nov-07	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	11-Dec-07 12:47 PM	

+="CN50703"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Building and Construction and Maintenance Services"	22-Nov-07	22-Nov-07	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	11-Dec-07 12:48 PM	

+="CN50706"	"POST IMPLEMENTATION REVIEW"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Business and corporate management consultation services"	16-Nov-07	14-Dec-07	29500.00	=""	="PLANPOWER"	11-Dec-07 12:48 PM	

+="CN50707"	"CISCO SWITCHES FOR BCP PROJECT"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Software or hardware engineering"	27-Nov-07	27-Nov-07	24659.80	=""	="INTEGRATION SYSTEMS AUST (DIVISION OF ETHAN GROUP)"	11-Dec-07 12:48 PM	

+="CN50709"	"PLACEMENT FEE"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Recruitment services"	27-Nov-07	27-Nov-07	10890.00	=""	="RECRUITMENT COMPANY (TRC TECHNOLOGY)"	11-Dec-07 12:48 PM	

+="CN50710"	"STAFF FUNCTION"	="Australian Prudential Regulation Authority (APRA)"	11-Dec-07	="Hotels and lodging and meeting facilities"	03-Dec-07	03-Dec-07	25281.30	=""	="SYDNEY CONVENTION AND EXHIBITION CENTRE"	11-Dec-07 12:48 PM	

+="CN50711"	"Provision for Procurement sevices Ad Hoc"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	01-Sep-07	31-Oct-07	10406.00	=""	="DAVID JESS & ASSOCIATES PTY LTD"	11-Dec-07 12:51 PM	

+="CN50712"	"Provision of Procurement Advice on an AD Hoc Basis"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	30-Sep-07	30-Jun-08	36300.00	="111/0607"	="DAVID JESS & ASSOCIATES PTY LTD"	11-Dec-07 12:51 PM	

+="CN50713"	"Review of the NHMRC Communication functions by Buchan Consulting"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	35000.00	=""	="BUCHAN CONSULTING PTY LTD"	11-Dec-07 12:51 PM	

+="CN50714"	"general fraud and risk management training for all NHMRC staff as per the Fraud Control Plan"	="National Health and Medical Research Council"	11-Dec-07	="Financial and Insurance Services"	02-Nov-07	30-Nov-07	30331.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	11-Dec-07 12:51 PM	

+="CN50715"	"Internet providers"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	30000.00	=""	="UECOMM OPERATIONS PTY LTD"	11-Dec-07 12:51 PM	

+="CN50716"	"Production of Podcast interviews  Staff workshop on new media technologies"	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	18650.00	=""	="APTUS STRATEGY PTY LTD"	11-Dec-07 12:51 PM	

+="CN50717"	"NICS-VTF Fellowship Terry Marshall 07/08 and 08/09 ."	="National Health and Medical Research Council"	11-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Jun-09	95685.00	=""	="METROPOLITAN AMBULANCE SERVICE"	11-Dec-07 12:52 PM	

+="CN50718"	"Fitout of Lever 5 Reception"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	22-Nov-07	30-Jun-08	20000.00	=""	="DOWSE NORWOOD ARCHITECTS PTY. LTD"	11-Dec-07 12:52 PM	

+="CN50719"	"A qualitative analysis of consumers views and attitudes re donation embryos & human eggs"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	07-Nov-07	30-Jun-08	69591.00	=""	="ACCESS AUSTRALIA'S NATIONAL INFERTI"	11-Dec-07 12:52 PM	

+="CN50720"	"Technical Development Team Leader services for the  Data Mart for the NHMRC's RIMES project"	="National Health and Medical Research Council"	11-Dec-07	="Healthcare Services"	08-May-07	07-May-08	182512.00	="RFT310 0607"	="PEOPLEBANK AUSTRALIA LTD"	11-Dec-07 12:52 PM	

+="CN50721"	"Departmental travel"	="National Health and Medical Research Council"	11-Dec-07	="Travel and Food and Lodging and Entertainment Services"	20-Nov-07	20-Nov-07	10356.60	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	11-Dec-07 12:52 PM	

+="CN50722"	"PAINT PRODUCTS"	="Defence Materiel Organisation"	11-Dec-07	="Paints and primers and finishes"	12-Sep-07	26-Sep-07	14786.97	=""	="PROTEC PTY LTD"	11-Dec-07 12:55 PM	

+="CN50723"	"Recover Costs Rental, Outgoings, Car Parking - November 2007"	="Federal Magistrates Court"	11-Dec-07	="Commercial or industrial facility rental"	01-Nov-07	30-Nov-07	14485.18	=""	="Charter Hall Limited - Savills"	11-Dec-07 01:12 PM	

+="CN50724"	" Manufacture & fitting of furniture FMC LBB & JMT "	="Federal Magistrates Court"	11-Dec-07	="Carpentry"	01-Nov-07	30-Nov-07	28009.30	=""	="Claremont Joinery"	11-Dec-07 01:27 PM	

+="CN50726"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	11-Dec-07	="Stationery"	01-Nov-07	30-Nov-07	50056.20	=""	="Corporate Express Australia"	11-Dec-07 01:33 PM	

+="CN50727"	"Various Computer Equipment FMC"	="Federal Magistrates Court"	11-Dec-07	="Computer Equipment and Accessories"	01-Nov-07	30-Nov-07	148075.40	=""	="Dell Australia Pty Ltd"	11-Dec-07 01:40 PM	

+="CN50729"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	11-Dec-07	="Temporary legal staffing needs"	01-Nov-07	30-Nov-07	21562.10	=""	="Drake Australia Pty Ltd"	11-Dec-07 01:45 PM	

+="CN50728"	"MANUFACTURE LARCV RUDDER CABLES"	="Department of Defence"	11-Dec-07	="Marine transport"	21-Sep-07	19-Nov-07	10535.25	=""	="F.B  AUTO REPAIRS"	11-Dec-07 01:46 PM	

+="CN50731"	" HOSE ASSEMBLY NON METALLIC P/No 1741251-01 MC 9005  QUANTITY 10 "	="Defence Materiel Organisation"	11-Dec-07	="Military rotary wing aircraft"	11-Dec-07	17-Jun-08	13846.80	=""	="MILSPEC SERVICES PTY LTD"	11-Dec-07 01:52 PM	

+="CN50732"	"Design & Engineering Consultancy Services"	="Federal Magistrates Court"	11-Dec-07	="Professional engineering services"	01-Nov-07	30-Nov-07	55004.68	=""	="Group GSA Pty Ltd"	11-Dec-07 01:56 PM	

+="CN50735"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	17485.88	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	11-Dec-07 02:01 PM	

+="CN50733"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	17-Sep-07	01-Oct-07	10375.08	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:04 PM	

+="CN50736"	"Advertising"	="Federal Magistrates Court"	11-Dec-07	="Advertising"	01-Nov-07	30-Nov-07	21670.20	=""	="HMA Blaze Intergrated Communications"	11-Dec-07 02:05 PM	

+="CN50725"	"  CHARGER,BATTERY, LITHIUM ION, 24VDC, 10AMP    BATTERY ASSEMBLY , 18AH LITHIUM ION CELLS  "	="Defence Materiel Organisation"	11-Dec-07	="Battery chargers"	06-Dec-07	05-Jan-08	16368.00	=""	="ELECTRONIC POWER SYSTEMS PTY LTD"	11-Dec-07 02:08 PM	

+="CN50738"	"Consulting Services - Family Report"	="Federal Magistrates Court"	11-Dec-07	="Court reporting services"	01-Nov-07	30-Nov-07	21573.90	=""	="Jay Manya"	11-Dec-07 02:10 PM	

+="CN50739"	"Provision of Services in relation to testing new and existing software applications"	="Australian Federal Police"	11-Dec-07	="Business function specific software"	19-Dec-07	29-Feb-08	35112.00	=""	="Diversiti Pty Ltd"	11-Dec-07 02:11 PM	

+="CN50741"	"Various Photocopier Equipment & Accessories"	="Federal Magistrates Court"	11-Dec-07	="Printer and photocopier and facsimile accessories"	01-Nov-07	30-Nov-07	17681.91	=""	="Kyocera Mita Australia Pty Ltd"	11-Dec-07 02:15 PM	

+="CN50742"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	19-Sep-07	03-Oct-07	13306.96	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:19 PM	

+="CN50743"	"Valuation of Assets"	="National Capital Authority"	11-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Apr-08	80000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	11-Dec-07 02:19 PM	

+="CN50745-A1"	"Information Technology business analysis activity services"	="Australian Federal Police"	11-Dec-07	="Information technology consultation services"	29-Oct-07	31-Jan-08	50195.00	=""	="Aurec Pty Ltd"	11-Dec-07 02:24 PM	

+="CN50746-A2"	"Provision of cleaning services - Goodna CRS Australia Premises"	="CRS Australia"	11-Dec-07	="General building and office cleaning and maintenance services"	19-Dec-06	17-Dec-09	19272.78	=""	="JDL Cleaning and Property Services"	11-Dec-07 02:25 PM	

+="CN50747"	" Electronic mail software "	="Australian Electoral Commission"	11-Dec-07	="Electronic mail software"	14-Nov-07	14-Nov-08	17325.00	=""	="Preemptive Consulting Pty Ltd"	11-Dec-07 02:29 PM	

+="CN50748"	"Facilitation of workshop for GST on Complex Audit"	="Australian Taxation Office"	11-Dec-07	="Management and Business Professionals and Administrative Services"	05-Oct-07	26-Oct-07	16307.09	="06.028"	="Fyusion Asia Pacific P/L"	11-Dec-07 02:31 PM	

+="CN50744"	"Professional translation, checking, typesetting and proofreading of a brochure in twenty languages"	="Federal Magistrates Court"	11-Dec-07	="Written translation services"	01-Nov-07	30-Nov-07	17699.00	=""	="Language Professionals"	11-Dec-07 02:34 PM	

+="CN50749"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	19-Sep-07	03-Oct-07	13255.51	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 02:38 PM	

+="CN50751"	"Vehicle Leases"	="Federal Magistrates Court"	11-Dec-07	="Vehicle rental"	01-Nov-07	30-Nov-07	71700.29	=""	="Lease Plan"	11-Dec-07 02:38 PM	

+="CN50752-A3"	"Provision of high level technical support and management of the AFP's corporate IT environment"	="Australian Federal Police"	11-Dec-07	="Business and corporate management consultation services"	17-Dec-07	30-Sep-08	105846.40	=""	="Aurec Pty Ltd"	11-Dec-07 02:39 PM	

+="CN50753-A3"	"Provision of Cleaning services - Inala Premises of CRS Australia"	="CRS Australia"	11-Dec-07	="General building and office cleaning and maintenance services"	19-Dec-06	14-Jan-10	28571.05	=""	="JDL Cleaning and Property Services"	11-Dec-07 02:41 PM	

+="CN50754"	"Computer Server"	="Australian Electoral Commission"	11-Dec-07	="Computer servers"	10-Aug-07	09-Aug-08	109454.40	=""	="Hewlett Packard"	11-Dec-07 02:41 PM	

+="CN50755"	"Temp Staff - Payroll"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	10535.41	=""	="Micropay Pty Ltd"	11-Dec-07 02:43 PM	

+="CN50756"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	01-Oct-07	15-Oct-07	10511.59	=""	="DAIMLER CHRYSLER"	11-Dec-07 02:45 PM	

+="CN50737"	"Purchase of Relay - Switch"	="Defence Materiel Organisation"	11-Dec-07	="Military fixed wing aircraft"	23-Nov-07	11-Dec-07	10560.00	=""	="Aerospace & Defence Products"	11-Dec-07 02:45 PM	

+="CN50758"	"Consulting Fees October 2007"	="Federal Magistrates Court"	11-Dec-07	="Business and corporate management consultation services"	01-Nov-07	30-Nov-07	11000.00	=""	="MP Consulting Pty Ltd"	11-Dec-07 02:48 PM	

+="CN50757"	"Cover, Water Canteen"	="Defence Materiel Organisation"	11-Dec-07	="Canteen"	07-Dec-07	30-May-08	528000.00	="CPE0708032"	="COMBAT CLOTHING AUST PTY LTD"	11-Dec-07 02:49 PM	

+="CN50759"	"Production of Computing User Guides"	="Australian Electoral Commission"	11-Dec-07	="Owner or user manuals"	01-May-07	31-May-07	14368.75	=""	="Total Learn Pty Ltd"	11-Dec-07 02:49 PM	

+="CN50761"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	159105.62	=""	="National Transcription Services Pty Ltd"	11-Dec-07 02:54 PM	

+="CN50762"	"Hire of Electoral Premises"	="Australian Electoral Commission"	11-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11660.00	=""	="Randazzo Investments"	11-Dec-07 02:58 PM	

+="CN50763"	"Supply of Conference Phones"	="Federal Magistrates Court"	11-Dec-07	="Teleconference equipment"	01-Nov-07	30-Nov-07	18222.27	=""	="Noisebox"	11-Dec-07 03:02 PM	

+="CN50764"	"Computing Machinery"	="Australian Electoral Commission"	11-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	16-Dec-07	11761.42	=""	="ASI Solutions"	11-Dec-07 03:04 PM	

+="CN50765"	"Provision of consulting services for Business Strategy for I.T August, September & October 2007"	="Federal Magistrates Court"	11-Dec-07	="Strategic planning consultation services"	01-Nov-07	30-Nov-07	87236.86	=""	="Oakton Services Pty Ltd"	11-Dec-07 03:10 PM	

+="CN50766-A1"	"Supply of synchronous datalink transceivers"	="Australian Federal Police"	11-Dec-07	="Communications Devices and Accessories"	18-Jan-08	01-Apr-08	139150.00	="RFQ 48-2006"	="Vertical Telecoms"	11-Dec-07 03:14 PM	

+="CN50767"	"Interpreting Services"	="Federal Magistrates Court"	11-Dec-07	="Interpreters"	01-Nov-07	30-Nov-07	10758.00	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	11-Dec-07 03:15 PM	

+="CN50768-A1"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	06-Sep-07	17-Sep-08	226512.00	=""	="INFOSYS SOLUTIONS P/L"	11-Dec-07 03:20 PM	

+="CN50769"	"    supply and maintenance of data multiplex/de-multiplex systems    "	="Australian Federal Police"	11-Dec-07	="Communications Devices and Accessories"	02-Apr-07	01-Apr-08	89259.00	="RFT NO 49-2006"	="Vertical Telecoms"	11-Dec-07 03:22 PM	

+="CN50770"	"Translating and interpreting for study visit of National Population and Family Planning Commission of the People's Republic of China."	="Australian Human Rights Commission"	11-Dec-07	="Writing and translations"	29-Oct-07	09-Nov-07	10998.00	=""	="Jack Meng Immigration & Translation"	11-Dec-07 03:29 PM	

+="CN50771"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	01-Oct-07	15-Oct-07	11567.45	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:36 PM	

+="CN50772"	" Consulting and Development of Practitioner Survey "	="Federal Magistrates Court"	11-Dec-07	="Development"	01-Nov-07	30-Nov-07	16500.00	=""	="Profmark Consulting Pty Limited"	11-Dec-07 03:39 PM	

+="CN50773"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	12-Oct-07	26-Oct-07	12678.86	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:41 PM	

+="CN50774"	" IT CONTRACTOR "	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	06-Sep-07	28-Sep-08	203424.00	=""	="COMPAS P/L"	11-Dec-07 03:42 PM	

+="CN50775"	"Airfares"	="Federal Magistrates Court"	11-Dec-07	="Commercial aeroplane travel"	01-Nov-07	30-Nov-07	89733.99	=""	="Qantas - QAEBTA"	11-Dec-07 03:43 PM	

+="CN50777"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	11-Dec-07	="Temporary clerical or administrative assistance"	01-Nov-07	30-Nov-07	18971.58	=""	="Robert Half Australia"	11-Dec-07 03:48 PM	

+="CN50778"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	02-Nov-07	16-Nov-07	10915.63	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:48 PM	

+="CN50779"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	22194.28	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:51 PM	

+="CN50780"	"FIBRE OPTIC NETWORK CONNECTIONS"	="Australian Taxation Office"	11-Dec-07	="Furniture and Furnishings"	23-Jul-07	10-Sep-07	33000.00	=""	="DEPARTMENT OF FINANCE"	11-Dec-07 03:52 PM	

+="CN50782"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	11-Dec-07	="Transcribing services"	01-Nov-07	30-Nov-07	55463.00	=""	="Spark & Cannon Australasia Pty Ltd"	11-Dec-07 03:52 PM	

+="CN50781"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	07-Nov-07	21-Nov-07	11886.18	=""	="DAIMLER CHRYSLER"	11-Dec-07 03:53 PM	

+="CN50783"	"Additional equipment to rigid hull inflatable boats"	="Australian Federal Police"	11-Dec-07	="Marine craft systems and subassemblies"	04-May-07	21-Dec-07	22000.00	="RFT 78-2006"	="Britton Marine Australia"	11-Dec-07 03:55 PM	

+="CN50784"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Aug-07	29-Aug-07	16602.75	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:55 PM	

+="CN50785"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	25-Jul-07	24-Jul-08	248600.00	=""	="PEOPLEBANK AUSTRALIA PTY"	11-Dec-07 03:57 PM	

+="CN50786"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	19166.95	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 03:59 PM	

+="CN50787"	"Consultancy FMC IT capability and sourcing arrangements September & October 2007"	="Federal Magistrates Court"	11-Dec-07	="Information technology consultation services"	01-Nov-07	30-Nov-07	13637.40	=""	="Surote Pty Ltd"	11-Dec-07 04:01 PM	

+="CN50789"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Power sources"	12-Nov-07	12-Dec-07	13453.04	=""	="MINELAB ELCTRONICS PTY LTD"	11-Dec-07 04:04 PM	

+="CN50790"	" Office Refurbishment FMC Levels 6 & 7 JMT Building "	="Federal Magistrates Court"	11-Dec-07	="Refurbishing services"	01-Nov-07	30-Nov-07	249801.82	=""	="TDA Interiors Australia Pty Ltd"	11-Dec-07 04:07 PM	

+="CN50788"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	25-Jul-07	29-Jan-08	129600.00	=""	="OMAHA IT SERVICES P/L"	11-Dec-07 04:08 PM	

+="CN50791"	" SUPPLY OF REPAIR VEHICLE PARTS "	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	22-Aug-07	05-Sep-07	21648.32	=""	="PREMIER AUTOMOTIVE GROUP"	11-Dec-07 04:09 PM	

+="CN50793"	"Hire of Electoral Premises"	="Australian Electoral Commission"	11-Dec-07	="Lease and rental of property or building"	11-Nov-07	24-Nov-07	11000.00	=""	="Eastgardens Pty Ltd"	11-Dec-07 04:11 PM	

+="CN50794"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	11-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	30-Nov-07	20369.83	=""	="Telstra Corporation Limited"	11-Dec-07 04:12 PM	

+="CN50792"	" FLAMMABLE LIQUID CABINET STORAGE "	="Defence Materiel Organisation"	11-Dec-07	="Prefabricated structures"	07-Dec-07	04-Jan-08	24453.00	=""	="F G P COMPANY PTY LTD"	11-Dec-07 04:14 PM	

+="CN50795"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	17511.63	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 04:15 PM	

+="CN50796"	"Freight Forwarding Service"	="Federal Magistrates Court"	11-Dec-07	="Freight forwarders services"	01-Nov-07	30-Nov-07	15278.56	=""	="Toll IPEC Pty Ltd"	11-Dec-07 04:16 PM	

+="CN50797-A1"	" Supply 2 IBM servers and SAN components. "	="Australian Human Rights Commission"	11-Dec-07	="Computer Equipment and Accessories"	11-Dec-07	03-Jan-08	18100.35	=""	="Klikon Solutions Pty Ltd"	11-Dec-07 04:16 PM	

+="CN50799"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-08	15202.11	=""	="HMA Blaze"	11-Dec-07 04:18 PM	

+="CN50798"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	16-Aug-07	30-Aug-07	30672.53	=""	="DAIMLER CHRYLSER AUSTRALIA"	11-Dec-07 04:19 PM	

+="CN50801"	"Recover Costs Rental, Outgoings, Car Parking"	="Federal Magistrates Court"	11-Dec-07	="Commercial or industrial facility rental"	01-Nov-07	30-Nov-07	200891.80	=""	="Law Courts Ltd-United Group Services (United KFPW)"	11-Dec-07 04:21 PM	

+="CN50800"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	06-Dec-07	20-Dec-07	14229.60	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:21 PM	

+="CN50803"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	20-Aug-07	03-Sep-07	45390.68	=""	="DAIMLER CHRYSLER AUSTRALIA"	11-Dec-07 04:24 PM	

+="CN50804"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-07	25300.00	=""	="HMA Blaze"	11-Dec-07 04:24 PM	

+="CN50802"	"Leasing 225 PCs and monitors"	="Australian Human Rights Commission"	11-Dec-07	="Computers"	01-Nov-07	04-Dec-07	435454.24	=""	="JEAS Solutions"	11-Dec-07 04:25 PM	

+="CN50806"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	07-Nov-07	21-Nov-07	13597.19	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:25 PM	

+="CN50805"	"IT CONTRACTOR"	="Australian Taxation Office"	11-Dec-07	="Engineering and Research and Technology Based Services"	26-Jul-07	03-Jul-08	284212.50	=""	="PEOPLEBANK AUSTRALIA PTY"	11-Dec-07 04:27 PM	

+="CN50807"	"Office Furniture - FMC"	="Federal Magistrates Court"	11-Dec-07	="Office furniture"	01-Nov-07	30-Nov-07	29307.30	=""	="Workspace Commercial Furniture Pty Ltd"	11-Dec-07 04:28 PM	

+="CN50808"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	23-Aug-07	06-Sep-07	48128.86	=""	="PREMIER AUROMOTIVE GROUP"	11-Dec-07 04:29 PM	

+="CN50811"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	15-Nov-07	29-Nov-07	17136.19	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:36 PM	

+="CN50812"	"RESEARCH AND REPORT"	="Australian Taxation Office"	11-Dec-07	="Management and Business Professionals and Administrative Services"	04-Jul-07	04-Jul-07	27500.00	=""	="AUSTRLIAN INSTITUTE OF CRIMINOLOGY"	11-Dec-07 04:41 PM	

+="CN50813"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	14799.22	=""	="LAND ROVER AUSTRALIA"	11-Dec-07 04:43 PM	

+="CN50810"	"Electoral Advertisements"	="Australian Electoral Commission"	11-Dec-07	="Advertising"	12-Nov-07	12-Dec-07	31900.00	=""	="HMA Blaze"	11-Dec-07 04:47 PM	

+="CN50814"	"BROADBAND & INTERNET 07/08"	="Australian Taxation Office"	11-Dec-07	="Information Technology Broadcasting and Telecommunications"	04-Jul-07	04-Jul-07	17700.00	=""	="TELSTRA"	11-Dec-07 04:52 PM	

+="CN50815"	" SEAL ASSEMBLY TRANS P/No 206-040-156-001; MC 97499  QUANTITY 10 "	="Defence Materiel Organisation"	11-Dec-07	="Military rotary wing aircraft"	11-Dec-07	11-Jan-08	17856.52	=""	="HELITECH A DIVISION OF SIKORSKY"	11-Dec-07 05:03 PM	

+="CN50816"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Medical Equipment and Accessories and Supplies"	08-Aug-07	15-Aug-07	14973.75	=""	="Hospira Pty Ltd"	12-Dec-07 08:15 AM	

+="CN50817"	"ASLAV PARTS - DOOR HATCH VEHICLE RH ASSY"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	28-Jun-08	12299.05	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:09 AM	

+="CN50818"	"ASLAV PARTS - HOUSING STEERING COLUMN"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	18-Jun-08	17502.10	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:14 AM	

+="CN50819"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust. Pacific"	12-Dec-07 09:23 AM	

+="CN50820"	"Security Services Camera Monitoring"	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	11900.00	=""	="JEWELL & BUCKLEY PTY LTD"	12-Dec-07 09:24 AM	

+="CN50821"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust Pacific"	12-Dec-07 09:31 AM	

+="CN50823"	"Office Rent"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	12-Oct-07	15-Oct-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:08 AM	

+="CN50824"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	25332.95	=""	="Kaz Technology Services Pty Ltd"	12-Dec-07 10:33 AM	

+="CN50826"	"ESRI Maintenance 2008 -2009"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	03-Dec-07	31-Jan-09	61105.00	=""	="ESRI Australia Pty Ltd"	12-Dec-07 10:38 AM	

+="CN50827"	"Supply of Stationery"	="Bureau of Meteorology"	12-Dec-07	="Office supplies"	05-Dec-07	31-Dec-07	20006.38	=""	="Corporate Express Australia Limited"	12-Dec-07 10:38 AM	

+="CN50828"	"Consulting"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10725.00	=""	="Access Macquarie Limited."	12-Dec-07 10:38 AM	

+="CN50829"	"Car Hire for October 2007"	="Bureau of Meteorology"	12-Dec-07	="Transportation and Storage and Mail Services"	05-Dec-07	31-Dec-07	10399.40	=""	="AVIS"	12-Dec-07 10:38 AM	

+="CN50830"	"Telephone A/c"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	19-Nov-07	12-Dec-07	12803.50	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	

+="CN50831"	"Telecommunication Services"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	17559.92	=""	="AAPT LIMITED"	12-Dec-07 10:38 AM	

+="CN50832"	"Darwin 50MHz upgrade - Profiler Transmitter"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	27520.40	=""	="University Of Colorado"	12-Dec-07 10:38 AM	

+="CN50833"	"TELEPHONE ACCOUNT"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	27-Nov-07	03-Dec-07	16063.99	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	

+="CN50834"	"VEHICLE LEASES"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	27-Nov-07	27-Nov-07	11584.49	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	

+="CN50835"	"Vehicle Lease"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	28-Nov-07	28-Nov-07	12850.53	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	

+="CN50836"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	11033.29	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50837"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	14586.60	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50838"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	20049.79	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50839"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	42170.39	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50840"	"Accommodation"	="Bureau of Meteorology"	12-Dec-07	="Hotels and lodging and meeting facilities"	29-Nov-07	30-Nov-07	23241.00	=""	="Quest Docklands"	12-Dec-07 10:39 AM	

+="CN50841"	"DBCP Trust Fund for 2008"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Dec-08	18346.50	=""	="WORLD METEOROLOGICAL ORGANIZATION"	12-Dec-07 10:39 AM	

+="CN50842"	"Job ads for Professional Appointments"	="Bureau of Meteorology"	12-Dec-07	="Marketing and distribution"	04-Dec-07	31-Dec-07	34844.21	=""	="HMA BLAZE PTY LTD"	12-Dec-07 10:39 AM	

+="CN50843"	"AUSAID PROJECT"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10000.00	=""	="SPREP"	12-Dec-07 10:40 AM	

+="CN50844"	"Vehicle Fuel"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	06-Dec-07	06-Dec-07	12358.14	=""	="Leaseplan Australia"	12-Dec-07 10:40 AM	

+="CN50845"	"SA REGION AIR FARES NOV/DEC 2007"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	07-Dec-07	07-Dec-07	13928.33	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:40 AM	

+="CN50846"	"DIGICOR 3U Server"	="Bureau of Meteorology"	12-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	04-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	12-Dec-07 10:40 AM	

+="CN50847"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50849"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50850"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50851"	"Software implementation services B Williamson"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	29-Nov-07	21-Dec-07	19949.47	=""	="Hays Specialist Recruitment"	12-Dec-07 10:41 AM	

+="CN50852"	"Cannister MET Beacon Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	28-Dec-07	28595.56	=""	="Metocean Data Systems Ltd"	12-Dec-07 10:41 AM	

+="CN50853"	"Ceilometer Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	05-Dec-07	76428.00	=""	="Vaisala Pty Ltd"	12-Dec-07 10:41 AM	

+="CN50854"	"Data cartridge Qty 870"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	07-Dec-07	03-May-09	98561.43	=""	="Officemax Australia Ltd"	12-Dec-07 10:41 AM	

+="CN50855"	"Specialized cord"	="Bureau of Meteorology"	12-Dec-07	="Fibres and threads and yarns"	07-Dec-07	14-May-08	20717.40	=""	="Donaghys"	12-Dec-07 10:41 AM	

+="CN50848"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	17-Oct-07	19-Nov-07	22000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:42 AM	

+="CN50856"	"Software"	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	11000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:47 AM	

+="CN50857"	" Office rent "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	13-Nov-07	19-Nov-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:54 AM	

+="CN50858"	"Airfares"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Travel agents"	29-Oct-07	19-Nov-07	43176.46	=""	="American Express Travel"	12-Dec-07 11:00 AM	

+="CN50859"	"NSN 6850-66-156-0064, Inhibitor, Corrosion, Liquid Cooling, Qty 10"	="Defence Materiel Organisation"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	20-Dec-07	13475.00	=""	="Burson Automotive Pty Ltd"	12-Dec-07 11:12 AM	

+="CN50860"	"RAAF SERVICE DRESS WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	01-Dec-08	513381.00	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 11:14 AM	

+="CN50861"	" NSN 5996/66-101-9162  PURCHASE OF AMPLIFIER, AUDIO FREQUENCY  EX GST "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	12-Dec-07	10500.00	=""	="Flite Path Pty Ltd"	12-Dec-07 11:20 AM	

+="CN50862"	"SEALING COMPOUND"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	12-Dec-07	30-Jan-08	11791.08	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	12-Dec-07 11:21 AM	

+="CN50863"	"Services for the implementation of Stage 1 of the Diabetes Medication Assistance Service "	="Department of Health and Ageing"	12-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Mar-10	1142988.00	="RFT392/0607"	="University of Sydney"	12-Dec-07 11:23 AM	

+="CN50864"	" NSN 1680/01-550-3045  PURCHASE OF TRANSDUCER, AIRCRAFT  EX SGT "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	24-Mar-08	14807.73	=""	="Military Aviation Spares Pty Ltd"	12-Dec-07 11:26 AM	

+="CN50865-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	12-Dec-07	="Software"	19-Nov-07	29-Feb-08	50864.00	=""	="Cordelta Pty. Ltd."	12-Dec-07 11:27 AM	

+="CN50866"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	23-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:27 AM	

+="CN50867-A1"	"Provision of services in relation to project officer support for IT Services"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Sep-08	138336.00	=""	="Icon Recruitment Pty Ltd"	12-Dec-07 11:30 AM	

+="CN50868"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	27-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:36 AM	

+="CN50869-A1"	"PANTS, CYCLIST, VARIOUS"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	11-Dec-07	29-Feb-08	405379.70	=""	="WALKABOUT LEISUREWEAR PTY LTD"	12-Dec-07 11:38 AM	

+="CN50870-A1"	"Provision of services in relation to SharePoint and K2 Development"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Aug-08	242871.20	=""	="Paxus Australia Pty Ltd"	12-Dec-07 11:39 AM	

+="CN50871"	" Publication printing "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Printed publications"	07-Nov-07	10-Dec-07	22627.00	=""	="UNION OFFSET PRINTERS"	12-Dec-07 11:46 AM	

+="CN50872"	"Procurement Panel Services to the AFP"	="Australian Federal Police"	12-Dec-07	="Professional procurement services"	05-Dec-07	15-Jan-08	29744.00	="22-2005"	="Ball Solutions Group"	12-Dec-07 11:46 AM	

+="CN50875"	" Publication production "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Editing services"	08-Nov-07	10-Dec-07	24255.00	=""	="CORETEXT"	12-Dec-07 11:52 AM	

+="CN50876-A1"	"Provision of a Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	03-Dec-07	30-Jun-08	114240.00	=""	="Oakton Services Pty Ltf"	12-Dec-07 12:00 PM	

+="CN50877-A1"	"adhesive film"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	01-Dec-07	25-Feb-08	20738.95	=""	="Interturbine Advanced Composies"	12-Dec-07 12:36 PM	

+="CN50878"	"Heritage Management Plan - Park"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	52860.00	=""	="Duncan Marshall"	12-Dec-07 12:49 PM	

+="CN50879"	"ASLAV PARTS - LEAD ASSY SLIP"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	108389.88	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 12:53 PM	

+="CN50880"	"Heritage Management Plan - Canberra Central Parklands"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	61585.00	=""	="Duncan Marshall"	12-Dec-07 12:54 PM	

+="CN50881"	"ASLAV PARTS - BRUSH BLOCK ASSY "	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	214915.25	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 01:02 PM	

+="CN50882"	"Commemorative Works Guidelines"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	28-Mar-08	10000.00	=""	="David Headon"	12-Dec-07 01:16 PM	

+="CN50883"	" NSN 5340/01-422-0982  PURCHASE OF CLAMP, LOOP  GST INCL. "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	06-Dec-07	04-Apr-08	10849.08	=""	="Milspec Services Pty Ltd"	12-Dec-07 01:16 PM	

+="CN50884"	"CPE004278-1 - Supply of security project services - 0859-1284 - IT Security Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	30-Nov-07	30-Nov-07	19800.00	="05/0859"	="Cybertrust Australia Pty Ltd"	12-Dec-07 01:25 PM	

+="CN50885-A1"	"Provision for Senior Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	02-Jan-08	30-Jun-08	120000.00	=""	="Aristotle (Eurolink)"	12-Dec-07 01:30 PM	

+="CN50886"	"07/2328 - Management consultancy services - 1599-1938 - Consultancy and Business Services Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Oct-07	01-Feb-08	300000.00	="06/1599"	="Booz Allen Hamilton"	12-Dec-07 01:37 PM	

+="CN50888"	" Supply of communications equipment "	="Australian Federal Police"	12-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	213424.00	=""	="Motorola Australia Pty Ltd"	12-Dec-07 01:44 PM	

+="CN50887"	"06/1343 - Project Coordinator (Ext #3) - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	217000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 01:45 PM	

+="CN50890"	"Provision of Oracle Software Structure Analysis and Consultancy"	="Comsuper"	12-Dec-07	="Human resources services"	21-Aug-07	31-Aug-07	11550.00	=""	="Dataweave Pty Ltd"	12-Dec-07 01:48 PM	

+="CN50891"	"SHIRT, MENS, STEWARD SHORTS, MALE, KHAKI, RAAF"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	29-May-08	97891.20	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 01:50 PM	

+="CN50892"	" 3 Years maintenance and support for Reflection X Software "	="Comsuper"	12-Dec-07	="Software"	30-Jun-07	30-Jun-10	10411.00	=""	="Loop Technology Pty Ltd"	12-Dec-07 01:54 PM	

+="CN50895"	"07/2381 - Technical Analyst - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	133000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 02:02 PM	

+="CN50897-A1"	"07/2392 - Specialist IT Transitional Manager - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Dec-07	30-Jun-08	161289.60	="05/0717"	="Paxus Australia"	12-Dec-07 02:05 PM	

+="CN50458"	" Security Services - Monitoring "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	65600.00	=""	="JEWEL & BUCKELY PTY LTD"	12-Dec-07 02:06 PM	

+="CN50898"	" Security Services - Doors "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	17-Apr-07	24-Jul-08	20100.00	=""	="JEWELL & BUCKLEY PTY LTF"	12-Dec-07 02:14 PM	

+="CN50899"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	10232.41	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:15 PM	

+="CN50900"	"07/2198 -  Supply of Building Equipment (CPE004116-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	28538.46	=""	="Sea Swift Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50901"	"07/2233 - Supply of Building Equipment (CPO014456)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	23-Aug-07	31-Dec-07	15930.20	=""	="Precision Metals Queanbeyan Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50902"	"CPO017457 - Online learning"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	27-Nov-07	31-Oct-08	29822.00	=""	="Total Learn Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50904"	"CPE003886 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	30-Jun-08	33447.70	=""	="KW McCulloch Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50905"	"07/2291 - Specialised equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer Equipment and Accessories"	25-Sep-07	30-Jun-08	190750.83	=""	="Department of Defence"	12-Dec-07 02:19 PM	

+="CN50906"	"CPO017611 - Construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	22495.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50907"	"CPO015288 - Materials for the construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	14168.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50908-A1"	"07/2200 - Building Services/ Office Installation (CPE004115-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	118140.00	=""	="Robert Clarke Builders Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50909"	"CPO017645 - Information/Reporting Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13311.47	=""	="B-Line Edit Services Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50910"	"CPO017734 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	18931.00	=""	="Australian Institute of Forensic Psychology"	12-Dec-07 02:19 PM	

+="CN50911-A2"	"07/2340 - Supply of IT Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	25-Oct-07	24-Apr-12	561328.10	=""	="KAZ Group Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50912"	"CPO017535 - Training Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	29-Nov-07	02-Dec-07	10786.00	=""	="Australian Institute of Education and Training"	12-Dec-07 02:19 PM	

+="CN50903"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	28-Nov-07	12-Dec-07	10201.72	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:20 PM	

+="CN50913"	"CPO016973 - Metal detection system trial"	="Australian Customs and Border Protection Service"	12-Dec-07	="Measuring and observing and testing instruments"	04-Dec-07	04-Dec-07	32692.00	=""	="QR Sciences Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50914-A1"	"07/1909 - Training services (CPO017584)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	20-Nov-07	05-Dec-07	39649.50	=""	="D'Arcy Consulting Group"	12-Dec-07 02:20 PM	

+="CN50915"	"CPO017699 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Apr-07	30-Dec-07	16225.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	

+="CN50916"	"CPO017698 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Oct-07	30-Jun-08	61455.49	=""	="Dataline Visual Link"	12-Dec-07 02:20 PM	

+="CN50917"	"07/2286 - Compueter servers"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	12-Oct-07	11-Oct-10	149374.25	=""	="Sun Microsystems Australia Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50918"	"CPO017722 - Charter Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Passenger transport"	15-Nov-07	04-Dec-07	11024.24	=""	="Australian Helicopters Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50919-A1"	"07/2228 - Consultancy Services (CPO017401)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	13-Sep-07	31-Jan-08	38500.00	=""	="ESRI Australia"	12-Dec-07 02:20 PM	

+="CN50920"	"CPO017830 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	16801.40	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50921"	"CPO017821 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	37156.90	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50922"	"CPO017718 - CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	30-Jun-08	15840.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	

+="CN50926"	"CPO017889 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	53755.00	=""	="Trade Import Services"	12-Dec-07 02:21 PM	

+="CN50927"	"CPO017891 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	42212.50	=""	="Trade Import Services"	12-Dec-07 02:21 PM	

+="CN50928-A2"	"07/2194 - Project Management Services (CPE004306-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	24-Sep-07	30-Mar-08	49232.00	=""	="URS Australia"	12-Dec-07 02:21 PM	

+="CN50929"	"07/1884 - Development of On-Line Learning Program"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	15-Apr-07	15-Jul-07	15000.00	=""	="Leonie A David"	12-Dec-07 02:21 PM	

+="CN50930"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	18943.72	=""	="DAIMLER CHRYSLER AUSTRALIA"	12-Dec-07 02:24 PM	

+="CN50931"	"06/1334 - Data quality programme and training services (Ext #1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Jan-07	31-Dec-07	50000.00	=""	="Centre for Customs and Excise Studies Pty Ltd"	12-Dec-07 02:28 PM	

+="CN50932"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	12710.39	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:30 PM	

+="CN50933"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	03-Dec-07	10-Dec-07	12366.20	=""	="BRIAN ROGERS"	12-Dec-07 02:34 PM	

+="CN50934"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	11-Dec-07	16-Dec-07	20496.11	=""	="KALMAR EQUIPMENT (AUSTRALIA)"	12-Dec-07 02:39 PM	

+="CN50935"	"DECONTAMINATING ITEMS/EQUIPMENT"	="Defence Materiel Organisation"	12-Dec-07	="Decontamination services"	10-Dec-07	12-Dec-07	22248.33	=""	="TOTALLY WORKWEAR (TOWNSVILLE)"	12-Dec-07 02:46 PM	

+="CN50936"	"For the Provision of Financial  Accounting Services"	="Child Support Agency"	12-Dec-07	="Business administration services"	10-Dec-07	06-Jun-08	78000.00	=""	="Professional Careers Australia Pty Ltd"	12-Dec-07 02:50 PM	

+="CN50938"	"Flammable Liquid Storage Cabinet"	="Department of Defence"	12-Dec-07	="Storage chests and cabinets and trunks"	19-Nov-07	07-Jan-08	13112.00	=""	="FGP COMPANY PTY LTD"	12-Dec-07 03:04 PM	

+="CN50941"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	12-Dec-07	22-Dec-07	11614.05	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-Dec-07 03:10 PM	

+="CN50943"	"Vaccines For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Drugs and Pharmaceutical Products"	27-Sep-07	07-Oct-07	341275.00	=""	="GLAXOSMITHKLINE AUST P/L"	12-Dec-07 03:22 PM	

+="CN50946"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	10017.15	=""	="Rover Australia"	12-Dec-07 03:35 PM	

+="CN50949"	"Call Centre Satisfaction Survey Wave 12"	="Australian Taxation Office"	12-Dec-07	="Market research"	19-Oct-07	28-Jan-08	50000.00	=""	="ORC Aus Pty Ltd t/a NWC Research"	12-Dec-07 03:47 PM	

+="CN50947"	"Altitude Warning Device"	="Defence Materiel Organisation"	12-Dec-07	="Parachute equipment"	28-Nov-07	09-Jan-08	21714.00	=""	="Aerospace Composites Pty Ltd"	12-Dec-07 03:48 PM	

+="CN50950"	"Conduct Investigations as directed by Group Director, Support. "	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Private investigation services"	26-Feb-07	25-May-07	13750.00	=""	="Quality Management Solutions Pty Ltd"	12-Dec-07 03:50 PM	

+="CN50952"	"Provision of Cleaning - Sutherland CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	03-Apr-06	09-Nov-07	10888.51	=""	="Professional Lightning Cleaning"	12-Dec-07 03:58 PM	

+="CN50953"	"Print 10,000 copies of 'Us Taken-Away Kids."	="Australian Human Rights Commission"	12-Dec-07	="Publishing"	26-Sep-07	09-Nov-07	11653.40	=""	="Bloxham and Chambers"	12-Dec-07 04:08 PM	

+="CN50954"	"Provision of cleaning services - Hurstville CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	01-Oct-05	09-Nov-07	11616.00	=""	="Professional Lightning Cleaning"	12-Dec-07 04:08 PM	

+="CN50956"	"Conduct Survey of Athletes' Opinions"	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Educational and research structures"	01-Mar-07	28-May-07	22000.00	=""	="Curtin University"	12-Dec-07 04:17 PM	

+="CN50957"	" Compensation Process System Improvements "	="Australian Taxation Office"	12-Dec-07	="Computer services"	11-Dec-07	10-Mar-08	25000.00	=""	="CA Pacific Pty Ltd"	12-Dec-07 04:20 PM	

+="CN50958"	" MOTOR VEHILCE SPARE PARTS "	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	24957.78	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:00 PM	

+="CN50959"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	16159.43	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:04 PM	

+="CN50960"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	15588.52	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:06 PM	

+="CN50961"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	41458.12	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:10 PM	

+="CN50962"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	17-Jul-07	17-Jul-07	10046.53	=""	="Qantas"	12-Dec-07 05:22 PM	

+="CN50965"	"Air fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10099.10	=""	="Qantas Airways"	12-Dec-07 05:27 PM	

+="CN50966"	"Air Fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	10100.42	=""	="Qantas Airways"	12-Dec-07 05:38 PM	

+="CN50969"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Aug-07	03-Aug-07	10180.50	=""	="Qantas Airways"	12-Dec-07 05:55 PM	

+="CN50970"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	23-Nov-07	23-Nov-07	10192.38	=""	="Qantas Airways"	12-Dec-07 06:02 PM	

+="CN50971"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	24-Aug-07	24-Aug-07	10205.47	=""	="Qantas Airways"	12-Dec-07 06:06 PM	

+="CN50972"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Oct-07	05-Oct-07	10257.61	=""	="Qantas Airways"	12-Dec-07 06:09 PM	

+="CN50973"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	18-Oct-07	18-Oct-07	10260.03	=""	="Qantas Airways"	12-Dec-07 06:11 PM	

+="CN50974"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Sep-07	05-Sep-07	10345.06	=""	="Qantas Airways"	12-Dec-07 06:14 PM	

 ="CN50975"	" Earth Stake Assembly's manufactured in accordance with Drawings; DE59050001, DE590370000, DE590500002, DE590500000, DE590500003 & DE590500004. "	="Defence Materiel Organisation"	12-Dec-07	="Motor or generator components"	12-Dec-07	03-Mar-08	31269.81	="RFQ G5598"	="Milspec Manufacturing"	12-Dec-07 07:02 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val0to16000.xls
@@ -1,1 +1,958 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73915"	"Printing Services for Report 115, Regional Aviation"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Management advisory services"	18-Apr-08	15-May-08	12479.01	="TRS08/086"	="CPP INSTANT PRINTING"	08-May-08 08:52 AM	

+="CN73920"	"Recruitment services for APS4"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	23-Apr-08	30-May-08	11000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:53 AM	

+="CN73923"	"Competency Assessment"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Specialised educational services"	14-Apr-08	30-Jun-08	10000.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	08-May-08 08:53 AM	

+="CN73927"	"LEGAL SERVICES EXPENDITURE 7013 Legal Services Expenditure 7013"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	11604.01	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73928"	"contractor services - Michele Shepperd"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	31-Mar-08	09-May-08	14243.63	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	08-May-08 08:54 AM	

+="CN73933"	"Legal SErvices Expenditure 6823 Legal Services Expenditure 6823"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	11-Aug-06	30-Jun-09	15143.26	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	08-May-08 08:55 AM	

+="CN73943-A1"	"Design documentation & briefs"	="Australian Federal Police"	08-May-08	="Document management software"	01-May-08	30-Jun-08	14359.42	=""	="Manteena Pty Ltd"	08-May-08 10:00 AM	

+="CN73957"	" SLEEVE, PISTON  NSN - 1610/006287169 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	03-May-08	24-May-08	10251.94	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:42 AM	

+="CN73958"	"Supply and install patitions as per quotes - Sydney Registry"	="National Native Title Tribunal"	08-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	21-May-08	14160.41	=""	="Intermain Pty Ltd"	08-May-08 10:45 AM	

+="CN73960"	" HOSE ASSEMBLY, NON METALLIC  NSN - 4720/008147764 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	16-Apr-08	08-Oct-08	10340.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:46 AM	

+="CN73964"	" SHELF ASSEMBLY, EXIT LIGHT; ALUMINUM AND PLASTIC  NSN - 6220/000035293 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	06-Mar-08	12-Apr-08	10692.00	=""	="AEROSPACE COMPOSITES PTY LTD"	08-May-08 10:55 AM	

+="CN73967"	"REPAIR ANDE OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	08-May-08	="Military rotary wing aircraft"	08-May-08	30-Jun-08	15372.29	=""	="SAAL"	08-May-08 10:59 AM	

+="CN73969"	" FILTER ELEMENT, FLUID  NSN - 1650/14721430 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	08-Apr-08	05-Sep-08	15553.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	08-May-08 10:59 AM	

+="CN73972"	" REPAIRS "	="Department of Defence"	08-May-08	="Motor vehicles"	08-May-08	08-Jun-08	10431.34	=""	="RGM"	08-May-08 11:04 AM	

+="CN73992"	"Provision for office furniture"	="Comsuper"	08-May-08	="Furniture and Furnishings"	04-Sep-07	11-Nov-08	14542.00	=""	="Iken Commercial Interiors"	08-May-08 11:43 AM	

+="CN74020"	"Development & facilitation of Exporter Services Realignment Workshop"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	08-Apr-08	12127.50	=""	="In Corporate Pty Ltd"	08-May-08 12:30 PM	

+="CN74009"	"Supply of Printers, Patient X-Ray Identification"	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-Jun-08	14436.00	=""	="Carestream Health Australia Pty Ltd"	08-May-08 01:06 PM	

+="CN74043"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	08-May-08	="Motor vehicles"	17-Apr-08	01-May-08	11185.67	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	08-May-08 01:54 PM	

+="CN74056"	"ARH PMR, PMSG in Australia and DGAAS Eurocopter CEO meeting in Germany"	="Defence Materiel Organisation"	08-May-08	="Travel facilitation"	19-Feb-08	19-Feb-08	13086.17	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74058"	"Visit to Adelaide for Alliance Program SFR"	="Defence Materiel Organisation"	08-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Mar-08	08-Apr-08	15638.87	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74059"	"Hire Cars"	="Defence Materiel Organisation"	08-May-08	="Motor vehicles"	04-Apr-08	04-Apr-08	10627.00	=""	="TERRY TRUCK RENTALS TA HERTZ"	08-May-08 02:34 PM	

+="CN74060"	"Airfares to Spain & Washington April 2008"	="Defence Materiel Organisation"	08-May-08	="Passenger transport"	16-Apr-08	16-Apr-08	12482.15	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74061"	"Biometric Telemetry Equipment (Heart Rate Monitors)"	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	20-Feb-08	20-Feb-08	10676.25	=""	="CHALLENGE SPORTS PTY L"	08-May-08 02:35 PM	

+="CN74062"	"PCIL 0003/2008"	="Defence Materiel Organisation"	08-May-08	="Education and Training Services"	24-Mar-08	24-Mar-08	11050.04	=""	="CMU-ENGINEERING INSTUT"	08-May-08 02:35 PM	

+="CN74063"	"CAAL 0105/2008"	="Defence Materiel Organisation"	08-May-08	="Management support services"	28-Mar-08	28-Mar-08	14343.00	=""	="CANBERRA PUBLISHING"	08-May-08 02:35 PM	

+="CN74069"	"    March 08 Geneva WP 29 Folio 190    "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 02:42 PM	

+="CN74071"	"    Expense for Peter to travel to Geneva for WP29 conference, 10-14 March 2008.    "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 02:56 PM	

+="CN74074"	"Air Fare"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	14-Mar-08	14-Mar-08	10430.30	=""	="QANTAS"	08-May-08 03:16 PM	

+="CN74080"	" AIR FARES "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	28-Mar-08	28-Mar-08	13605.17	=""	="QANTAS"	08-May-08 03:21 PM	

+="CN74082"	"AIR FARES"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	18-Apr-08	18-Apr-08	10509.85	=""	="QANTAS"	08-May-08 03:28 PM	

+="CN74083"	"AIR FARES"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	17-Apr-08	17-Apr-08	10525.90	=""	="QANTAS"	08-May-08 03:29 PM	

+="CN74079-A1"	"     Airfares for Alan Hobbs lecturer at HF course in Jakarta under ITSAP.     "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	04-Apr-08	04-Apr-08	10540.70	=""	="CATHAY PACIFIC"	08-May-08 03:33 PM	

+="CN74078-A1"	" AIR FARES "	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Commercial aeroplane travel"	07-Mar-08	07-Mar-08	10157.18	=""	="QANTAS"	08-May-08 03:33 PM	

+="CN74093"	"CASTER, SWIVEL NSN - 5340/661554797"	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	12-Mar-08	02-Apr-08	14100.00	=""	="RICHMOND WHEEL AND CASTOR"	08-May-08 04:00 PM	

+="CN74098"	"Curatorial Servicesfor Strike a Pose"	="National Archives of Australia"	08-May-08	="Exhibitions"	10-Apr-08	30-Jun-08	12000.00	=""	="Lee Lin Chin"	08-May-08 04:03 PM	

+="CN74101"	"Disaster recovery link Parkes - Mitchell"	="National Archives of Australia"	08-May-08	="Fixed network equipment and components"	11-Apr-08	30-Jun-08	13750.00	=""	="Servitel Communications Pty Ltd"	08-May-08 04:03 PM	

+="CN74103"	"Printing of Footprints Book"	="National Archives of Australia"	08-May-08	="Printed publications"	14-Apr-08	12-May-08	13228.00	=""	="NATIONAL CAPITAL PRINTING"	08-May-08 04:03 PM	

+="CN74109"	"4th instalment to Dr. Jenny Hocking"	="National Archives of Australia"	08-May-08	="Awards"	28-Apr-08	02-May-08	11000.00	=""	="MONASH UNIVERSITY (Sundry Invoices)"	08-May-08 04:04 PM	

+="CN74111"	"Piction Annual Support"	="National Archives of Australia"	08-May-08	="Computer support parts or accessories"	28-Apr-08	09-May-08	14437.50	=""	="Piction Digital Image Systems"	08-May-08 04:04 PM	

+="CN74113"	"Chester Hill Painting"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	13420.00	=""	="Priority One Coatings Pty Ltd"	08-May-08 04:04 PM	

+="CN74115"	" STORAGE CONTAINER,MISCELLANEOUS  NSN - 8145/661535805 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	17-Apr-08	02-May-08	10350.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:13 PM	

+="CN74047"	"Project support"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	21-Apr-08	27-Jun-08	14850.00	=""	="Greythorn P/L"	08-May-08 04:14 PM	

+="CN74116"	" CONTAINER COMPRESSOR  NSN - 8145/661338613 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	17-Apr-08	10340.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:16 PM	

+="CN74044"	"Purchase of 60 Meeting Room chairs"	="Australian Securities and Investments Commission"	08-May-08	="Office Equipment and Accessories and Supplies"	26-Nov-07	26-Nov-07	11700.00	=""	="KROST Furniture"	08-May-08 04:17 PM	

+="CN73963"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	14-Jan-08	14-Mar-08	10000.00	=""	="Katter (Dominic)"	08-May-08 04:35 PM	

+="CN74126"	" ACTUATOR, MECHANICAL, AIRCRAFT REPAIR  NSN - 1680/010094075 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	21-Feb-08	18-Oct-08	13782.12	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:45 PM	

+="CN74148"	"Reprinting of Recreational Water Guidelines"	="National Health and Medical Research Council"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Feb-08	24-Apr-08	13134.00	=""	="PARAGON PRINTERS"	09-May-08 08:37 AM	

+="CN74150"	"Telephone Servcie and Usage NHMRC"	="National Health and Medical Research Council"	09-May-08	="Healthcare Services"	01-Nov-07	30-Jun-08	11500.00	=""	="TELSTRA"	09-May-08 08:37 AM	

+="CN74159"	"TIMEBASE SUBSCRIPTION 1/5/08-30/4/09"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	03-Apr-08	30-Apr-09	13000.00	=""	="TIME BASE PTY LTD"	09-May-08 09:28 AM	

+="CN74163"	"INTERNET SERVICE FEES MAR 08"	="Administrative Appeals Tribunal"	09-May-08	="Computer services"	14-Mar-08	31-Mar-08	13264.90	=""	="CYBERTRUST AUSTRALIA PTY LTD"	09-May-08 09:29 AM	

+="CN74164"	"BACKUP EXEC LICENCE FEES"	="Administrative Appeals Tribunal"	09-May-08	="Computer services"	30-Mar-08	30-Apr-08	14100.16	=""	="DATA #3 LIMITED"	09-May-08 09:29 AM	

+="CN74167"	"12 * REGISTRATION AIJA CONFERENCE JUNE 08"	="Administrative Appeals Tribunal"	09-May-08	="Organisations and Clubs"	15-Apr-08	06-Jun-08	10529.00	=""	="AIJA"	09-May-08 09:29 AM	

+="CN74177"	"Legal services - counsel"	="Australian Securities and Investments Commission"	09-May-08	="Legal services"	01-Aug-07	31-Dec-08	15000.00	=""	="Hill (Graeme)"	09-May-08 10:24 AM	

+="CN73998"	"Contract for the supply of additional Ringtail Casebook licences"	="Australian Securities and Investments Commission"	09-May-08	="Software"	17-Apr-08	31-Mar-09	11520.00	=""	="CCH Workflow Solutions"	09-May-08 10:53 AM	

+="CN74196"	"Provisions for Panel Member Training"	="Department of Immigration and Citizenship"	09-May-08	="Employee education"	11-Apr-08	30-Jun-08	15208.00	=""	="Workplace Research Associates Pty Ltd"	09-May-08 11:02 AM	

+="CN74206"	"Provision of internal audit services Contract (DPS04163   )"	="Department of Parliamentary Services"	09-May-08	="Audit services"	02-May-08	06-Jun-08	12653.44	=""	="WalterTurnbull Pty Ltd"	09-May-08 11:20 AM	

+="CN74215"	"Provision of Duct work maintenance and rehabilitation services (Contract JH00057M)"	="Department of Parliamentary Services"	09-May-08	="Air conditioning installation or maintenance or repair services"	18-Apr-08	30-Jun-08	11000.00	=""	="Chubb Fire Safety Limited"	09-May-08 11:21 AM	

+="CN74217"	"Conservation of art works Contract DPS05057"	="Department of Parliamentary Services"	09-May-08	="Art related services"	17-Apr-08	06-Jun-08	14822.50	=""	="International Conservation Services"	09-May-08 11:21 AM	

+="CN74221"	"Supply of uniforms"	="Department of Parliamentary Services"	09-May-08	="Uniforms"	04-Oct-07	06-Jun-08	13200.00	=""	="Career Dressing"	09-May-08 11:22 AM	

+="CN74223"	"Provision of Industrial cleaning and related services (Contract JH01037)"	="Department of Parliamentary Services"	09-May-08	="Cleaning Equipment and Supplies"	23-Apr-08	30-Jun-08	10120.00	=""	="Canberra Queanbeyan Cleaning"	09-May-08 11:22 AM	

+="CN74225"	"Provision of indexing services (Contract DPS05044)"	="Department of Parliamentary Services"	09-May-08	="Library or documentation services"	05-May-08	30-Jun-08	10230.00	=""	="Janeece Pty Ltd"	09-May-08 11:22 AM	

+="CN74233"	" SHIPPING CONTAINER REPAIRS "	="Department of Defence"	09-May-08	="Containers and storage"	14-Apr-08	14-May-08	13739.15	=""	="WILTRADING"	09-May-08 11:36 AM	

+="CN74240"	"NEW COMFLOT VISITING HIS EQUIVALENT POSITIONS IN THE RN AND TO VALIDATE THE CURRENT MR PROCESS BY VISIT THE MEAO"	="Department of Defence"	09-May-08	="Travel facilitation"	05-Sep-07	05-Sep-07	13303.50	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:47 AM	

+="CN74241"	"Accompany Minister for Defence to Vilnius (Lithuania) for Regional Defence Ministers Meetin on 8 Feb 08"	="Department of Defence"	09-May-08	="Passenger transport"	05-Feb-08	05-Feb-08	15014.23	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:47 AM	

+="CN74243"	"POA Accommodation Mariners Court - Sydney"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	06-Feb-08	05-May-08	10150.00	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:48 AM	

+="CN74244"	"Airfares"	="Department of Defence"	09-May-08	="Passenger transport"	13-Feb-08	13-Feb-08	13241.19	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:48 AM	

+="CN74251"	"DTR-A TR0708/194"	="Department of Defence"	09-May-08	="Travel facilitation"	09-Mar-08	09-Mar-08	11200.00	=""	="HARBOUR VILLAGE EXEC APART"	09-May-08 11:48 AM	

+="CN74253"	"CANCELLED TRIP TO GERMANY FOR VISIT GERMAN MRE"	="Department of Defence"	09-May-08	="Aircraft"	09-Mar-08	09-Mar-08	12872.57	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74254"	"POA Accommodation Macleay Apartments - Sydney"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	21-Mar-08	05-May-08	13995.00	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74255"	"OS FARE RODERICK FIL REF: 2008/6280ATTEND VARIOUS MTG & CONF"	="Department of Defence"	09-May-08	="Transport operations"	25-Mar-08	25-Mar-08	13207.91	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74256"	"AUSDIL 70 - PTE McNAMARA Flights for Parents and MSO"	="Department of Defence"	09-May-08	="Travel facilitation"	30-Mar-08	30-Mar-08	14422.53	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74257"	"Airfares"	="Department of Defence"	09-May-08	="Passenger transport"	30-Mar-08	30-Mar-08	10928.38	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74258"	"airfares"	="Department of Defence"	09-May-08	="Passenger transport"	30-Mar-08	30-Mar-08	10928.38	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74259"	"Flights.  Adelaide Tel Aviv on 27-28 March,  back to London 4th April and home to Adelaide 9-11 April 2008.Trip was on behalf of CIED-TF"	="Department of Defence"	09-May-08	="Passenger transport"	30-Mar-08	30-Mar-08	15356.27	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:49 AM	

+="CN74263"	"flights to Bucharest (later refunded and charged again) 000026"	="Department of Defence"	09-May-08	="Passenger transport"	04-Apr-08	06-Apr-08	11274.68	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74264"	"000026 Flights to Bucharest"	="Department of Defence"	09-May-08	="Passenger transport"	04-Apr-08	06-Apr-08	14030.68	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74265"	"Overseas Meetings"	="Department of Defence"	09-May-08	="Passenger transport"	06-Apr-08	06-Apr-08	13541.24	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74267"	"Travel to Israel to audit IAI for JP129"	="Department of Defence"	09-May-08	="Aircraft equipment"	10-Apr-08	19-Apr-08	12809.61	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74268"	"AIRFARES AUSTRALIA/USA/UK"	="Department of Defence"	09-May-08	="Passenger transport"	08-Apr-08	08-Apr-08	12827.96	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74269"	"AIRFARES AUSTRALIA/USA/UK"	="Department of Defence"	09-May-08	="Passenger transport"	08-Apr-08	08-Apr-08	12827.96	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74271"	"SHAPE Conference Belgium - QANTAS Airfare"	="Department of Defence"	09-May-08	="Travel facilitation"	16-Apr-08	30-Jun-08	14453.52	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74273"	"LYNCH/MARK MR TKT: 08124693715920 R/N: Not Supplied QF: Y PDX/LAX - QF: Y LAX/BNE DATE TRAVEL: 05/05/08 REF:3TYQNJ ONO: 253700-788460 GWT: 8095348"	="Department of Defence"	09-May-08	="Passenger transport"	22-Apr-08	22-Apr-08	10592.47	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74274"	"Hall S SCHA 20Apr-03May08 Pacific Islands Pastoral Visit"	="Department of Defence"	09-May-08	="Travel facilitation"	22-Apr-08	03-May-08	12186.78	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74276"	"DAVIS/FORD MIDN TKT: 08144800130530 R/N: Not Supplied QF: C SYD/SCL - : SCL/ DATE TRAVEL: 21/04/08 REF:ZLSOCP ONO: 241440-21303 GWT: 8530967"	="Department of Defence"	09-May-08	="Passenger transport"	25-Apr-08	25-Apr-08	10147.48	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:52 AM	

+="CN74277"	"Westhoek Five reinterment - Accommodation for HQ Party and Families of Deceased"	="Department of Defence"	09-May-08	="Military services and national defence"	28-Sep-07	28-Sep-07	12450.98	=""	="NOVOTEL IEPER"	09-May-08 11:52 AM	

+="CN74278"	"Accommodation for crew"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	25-Jan-08	04-Apr-08	10450.00	=""	="MARINERS COURT"	09-May-08 11:52 AM	

+="CN74280"	"Payment HMA Blaze Press ads Civilian Recruitment Vacancies -Invoice-CM07120009"	="Department of Defence"	09-May-08	="Personnel recruitment"	12-Feb-08	12-Feb-08	10395.61	=""	="HMA BLAZE"	09-May-08 11:52 AM	

+="CN74281"	"PO98038"	="Department of Defence"	09-May-08	="Location and navigation systems and components"	18-Feb-08	18-Feb-08	13778.39	=""	="RAPID MAP GLOBAL P/L"	09-May-08 11:52 AM	

+="CN74282"	"Accommodation for crew"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	18-Feb-08	04-Apr-08	12667.40	=""	="CROWNE PLAZA"	09-May-08 11:53 AM	

+="CN74283"	"ADE 0423 REQUIRED FOR JUNIOR SAILOR ACCOMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	22-Feb-08	22-Feb-08	10287.00	=""	="MARINERS COURT"	09-May-08 11:53 AM	

+="CN74284"	"Accommodation for crew"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	25-Feb-08	04-Apr-08	14838.19	=""	="CROWNE PLAZA"	09-May-08 11:53 AM	

+="CN74285"	"Furniture - WR Stock DWN"	="Department of Defence"	09-May-08	="Accommodation furniture"	27-Feb-08	27-Feb-08	14800.01	=""	="BED POST"	09-May-08 11:53 AM	

+="CN74286"	"Furniture"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	28-Feb-08	28-Feb-08	13592.00	=""	="JAPE FURNISHINGS SUPER"	09-May-08 11:53 AM	

+="CN74287"	"Payment of overdue Kaz invoices dating back to Aug 2006."	="Department of Defence"	09-May-08	="Software"	06-Mar-08	06-Mar-08	10186.03	=""	="ASPECT COMPUTING P/L"	09-May-08 11:53 AM	

+="CN74289"	"STATIONERY"	="Department of Defence"	09-May-08	="Office supplies"	13-Mar-08	13-Mar-08	10394.72	=""	="NATIONAL OFFICE PRODUC"	09-May-08 11:53 AM	

+="CN74292"	"STRATEGIC PLANNING CONFERENCE"	="Department of Defence"	09-May-08	="Human resource development"	14-Mar-08	14-Mar-08	10483.70	=""	="LAKE CRCKNBCK RST MNG"	09-May-08 11:54 AM	

+="CN74293"	"04/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Medical practice"	17-Mar-08	17-Mar-08	12007.15	=""	="DR BENJAMIN ERZETIC"	09-May-08 11:54 AM	

+="CN74296"	"Saferight Invoice No 00013556 required for replace of NIC Safety Equipment for Southern Ocean Stores"	="Department of Defence"	09-May-08	="Safety apparel"	18-Mar-08	18-Mar-08	12100.00	=""	="SCOT PAC-ST GEORGE"	09-May-08 11:54 AM	

+="CN74298"	"Health expenditure"	="Department of Defence"	09-May-08	="Healthcare Services"	19-Mar-08	09-Apr-08	12451.83	=""	="ST VINCENTS PRV HOSP"	09-May-08 11:55 AM	

+="CN74299"	"Deposit for Mid Year Workshop/Confernce 23-25 July 2008 - Murramarang Resort"	="Department of Defence"	09-May-08	="Education and Training Services"	19-Mar-08	25-Jul-08	14886.25	=""	="ECOPOINT MURRAMARANG"	09-May-08 11:55 AM	

+="CN74301"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	19-Mar-08	18-Apr-08	14099.14	=""	="ST JOHN OF GOD HOSPIT"	09-May-08 11:55 AM	

+="CN74302"	"15/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	25-Mar-08	30-Apr-08	10417.88	=""	="OPSM 8921"	09-May-08 11:55 AM	

+="CN74303"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	20-Mar-08	19-Apr-08	10724.35	=""	="ST JOHN OF GOD SU"	09-May-08 11:55 AM	

+="CN74304"	"07/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	25-Mar-08	30-Apr-08	10000.00	=""	="QML PATHOLOGY"	09-May-08 11:55 AM	

+="CN74305"	"FREIGHT FOR EXERCISE JABIRU TINDAL 2008"	="Department of Defence"	09-May-08	="Mail and cargo transport"	27-Mar-08	27-Mar-08	10228.58	=""	="TOLL TRANSPORT PL"	09-May-08 11:55 AM	

+="CN74306"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	27-Mar-08	26-Apr-08	11430.80	=""	="HOLLYWOOD PRIV HOSP"	09-May-08 11:56 AM	

+="CN74311"	"medical appointment inv 1154390-1"	="Department of Defence"	09-May-08	="Medical practice"	28-Mar-08	28-Mar-08	11168.00	=""	="ALFRED HOSPITAL"	09-May-08 11:57 AM	

+="CN74313"	"ACCOMMODATION FOR SQNLDR BLAKE BARRETT - 8157997CHECK IN 17/01/2008  CHECK OUT 28/02/2008"	="Department of Defence"	09-May-08	="Accommodation furniture"	28-Mar-08	28-Apr-08	11960.70	=""	="MT OMMANEY HOTEL"	09-May-08 11:57 AM	

+="CN74315"	"08/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	28-Mar-08	30-Apr-08	13768.25	=""	="THE WESLEY HOSPITAL"	09-May-08 11:57 AM	

+="CN74317"	"Watches, Timepieces"	="Department of Defence"	09-May-08	="Timepieces"	17-Mar-08	26-Mar-08	11939.99	=""	="SHRIRO AUSTRALIA"	09-May-08 11:57 AM	

+="CN74318"	"Course sponsorship"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	01-Apr-08	01-Apr-08	11000.00	=""	="WCEI"	09-May-08 11:58 AM	

+="CN74319"	"PO58289"	="Department of Defence"	09-May-08	="Domestic pet products"	02-Apr-08	02-Apr-08	13181.76	=""	="HARDDOGS REQUISITES"	09-May-08 11:58 AM	

+="CN74320"	"Health expenditure"	="Department of Defence"	09-May-08	="Healthcare Services"	02-Apr-08	16-Apr-08	12208.08	=""	="ST VINCENTS PRV HOSP"	09-May-08 11:58 AM	

+="CN74321"	"REQUIRED FOR EXERCISE BLACKWOODS 2008"	="Department of Defence"	09-May-08	="Lease and rental of property or building"	02-Apr-08	02-Apr-08	13049.44	=""	="UNITED FLIGHT ACCESORIES"	09-May-08 11:58 AM	

+="CN74322"	"11/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	02-Apr-08	30-Apr-08	14813.75	=""	="SYMBION IMAGING"	09-May-08 11:58 AM	

+="CN74323"	"Materials for 8/12 Mdm Regt to build a FSB with Engineer Spt."	="Department of Defence"	09-May-08	="Hardware"	02-Apr-08	17-Apr-08	12674.64	=""	="BUNNINGS 364000"	09-May-08 11:58 AM	

+="CN74324"	"10/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	04-Apr-08	30-Apr-08	11559.17	=""	="BRISBANE PRIVATE HOSP"	09-May-08 11:59 AM	

+="CN74326"	"HOSTELS. CREW ACCOMMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	03-Apr-08	30-Apr-08	15820.00	=""	="MILLER APARTMENTS"	09-May-08 11:59 AM	

+="CN74327"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	04-Apr-08	04-May-08	11927.50	=""	="Dr Peter Ammon"	09-May-08 11:59 AM	

+="CN74329"	"Furniture - WR Stock DWN"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	03-Apr-08	03-Apr-08	14800.01	=""	="BED POST"	09-May-08 11:59 AM	

+="CN74331"	"payment of end of month bill for Office Max"	="Department of Defence"	09-May-08	="Office supplies"	03-Apr-08	03-Apr-08	11021.18	=""	="NATIONAL OFFICE PRODUC"	09-May-08 11:59 AM	

+="CN74332"	"Mobile Crane Slewing 100561V4 + work cover licence AST"	="Department of Defence"	09-May-08	="Vocational training"	07-Apr-08	07-Apr-08	10368.00	=""	="AUST SKILLS TRAING"	09-May-08 11:59 AM	

+="CN74333"	"SLG Event 20 May 2008 Hire of the Great Hall Parliament House and Catering *Deposit*"	="Department of Defence"	09-May-08	="Restaurants and catering"	07-Apr-08	30-May-08	10000.00	=""	="HYATT CANBERRA"	09-May-08 12:00 PM	

+="CN74338"	"Furniture - WR Stock DWN"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	09-Apr-08	09-Apr-08	14800.01	=""	="BED POST"	09-May-08 12:01 PM	

+="CN74342"	"D.BLOOMER 12/03/08-17/03/08"	="Department of Defence"	09-May-08	="Medical facility products"	10-Apr-08	10-Apr-08	15557.00	=""	="ST VINCENTS/MERCY DEBTORS"	09-May-08 12:01 PM	

+="CN74344"	"Health expenditure"	="Department of Defence"	09-May-08	="Medical diagnostic imaging and nuclear medicine products"	08-Apr-08	08-Apr-08	11043.75	=""	="SYMBION IMAGING"	09-May-08 12:02 PM	

+="CN74346"	"ADFA Indoor Cricket Sides for March to September 2008"	="Department of Defence"	09-May-08	="Other sports"	10-Apr-08	30-Sep-08	11040.00	=""	="NATIONAL INDOOR CRICKET C"	09-May-08 12:02 PM	

+="CN74347"	"DICED ONIONS"	="Department of Defence"	09-May-08	="Food and Beverage Products"	11-Apr-08	11-Apr-08	10068.00	=""	="NO FRILLS W7599"	09-May-08 12:02 PM	

+="CN74348"	"CATERING COSTS - ABCA AGM 08 FINAL PAYMENT"	="Department of Defence"	09-May-08	="Restaurants and catering"	10-Apr-08	10-Apr-08	11752.95	=""	="BAYLEAF FINE FOOD CO"	09-May-08 12:02 PM	

+="CN74349"	"Medical Expenses Incurred"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	10-Apr-08	10-May-08	12605.60	=""	="ST JOHN OF GOD HOSPIT"	09-May-08 12:02 PM	

+="CN74350"	"18/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	11-Apr-08	30-Apr-08	14228.21	=""	="ST ANDREWS WAR MEM HO"	09-May-08 12:02 PM	

+="CN74351"	"Weekend Australian & Brisbane courier ad for positions for Negative Vetting Central 02 Jun 07, includes 1.4% surcharge"	="Department of Defence"	09-May-08	="Advertising"	15-Apr-08	15-Apr-08	15039.96	=""	="HMA BLAZE"	09-May-08 12:02 PM	

+="CN74352"	"Health expenditure"	="Department of Defence"	09-May-08	="Medical diagnostic imaging and nuclear medicine products"	14-Apr-08	14-Apr-08	12831.85	=""	="SYMBION IMAGING"	09-May-08 12:02 PM	

+="CN74353"	"23/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	15-Apr-08	30-Apr-08	10283.90	=""	="QLD FERTILITY GROUP PT"	09-May-08 12:03 PM	

+="CN74354"	"Furniture - WR Stock DWN"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	16-Apr-08	16-Apr-08	14800.01	=""	="BED POST"	09-May-08 12:03 PM	

+="CN74355"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	18-Apr-08	18-Apr-08	12472.00	=""	="DR A G MILLER"	09-May-08 12:03 PM	

+="CN74356"	"63 task chairs and 1 x exec leather chair - 3hsb"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	18-Apr-08	18-Apr-08	14551.46	=""	="CORPORATE EXPRESS"	09-May-08 12:03 PM	

+="CN74357"	"PDL MANAGEMENT, BERTHING, RUBBSH REMOVAL AND HIRE VEHICLES FOR HMAS LAUNCESTON AT CHRISTMAS ISLAND."	="Department of Defence"	09-May-08	="Transportation services equipment"	11-Mar-08	13-Mar-08	10249.38	=""	="PATRICKDEFENCELOGI"	09-May-08 12:03 PM	

+="CN74358"	"23/04/08 stationery"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	18-Apr-08	30-Apr-08	13480.50	=""	="THE WESLEY HOSPITAL"	09-May-08 12:03 PM	

+="CN74360"	"MEDICAL SERVICES FOR:8485555,8513569,8440654,8511560,8501971,8248447,8070521,8508078,8236296,8529182,8517577,8240750,8496916,8270287,8513044,8165861,8162692,8484971,8200273,8197288,8165702,8520144,8200273,8526981,8212460,8088763,8299039"	="Department of Defence"	09-May-08	="Medical practice"	22-Apr-08	22-Apr-08	11016.00	=""	="DARWIN CONSULTANT"	09-May-08 12:03 PM	

+="CN74361"	"MSA Bandicoot Refit Port Macquaire accommodation 4-22Apr08"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	22-Apr-08	05-May-08	10370.00	=""	="RYDGESPORTMACQ"	09-May-08 12:04 PM	

+="CN74363"	"HSFWAG MEDICAL APPTS"	="Department of Defence"	09-May-08	="Healthcare Services"	23-Apr-08	23-Apr-08	12355.85	=""	="CALVARY HEALTH CARE"	09-May-08 12:04 PM	

+="CN74365"	"Print Production LWP-G 0-2-4 x 400 Copies"	="Department of Defence"	09-May-08	="Published Products"	21-Apr-08	21-Apr-08	10978.00	=""	="PRINT MINT PTY LTD"	09-May-08 12:04 PM	

+="CN74367"	"Health expenditure"	="Department of Defence"	09-May-08	="Healthcare Services"	23-Apr-08	06-May-08	11053.17	=""	="ST VINCENTS PRV HOSP"	09-May-08 12:04 PM	

+="CN74371"	"Helicopter Underwater Evacuation Training (HUET) Surge Training to 3 RAR for deployment on TLBG."	="Department of Defence"	09-May-08	="Water safety"	03-Feb-08	03-Feb-08	12816.91	=""	="CAREFLIGHT FLGT FR LF"	09-May-08 12:05 PM	

+="CN74372"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	29-Apr-08	29-Apr-08	12795.00	=""	="DR A G MILLER"	09-May-08 12:05 PM	

+="CN74373"	"Health Expenditure"	="Department of Defence"	09-May-08	="Healthcare Services"	24-Apr-08	08-May-08	11613.77	=""	="SOUTH PATHOLOGY SERV"	09-May-08 12:05 PM	

+="CN74375"	"Hospital accommodation - ICU Mr Jose Amaral"	="Department of Defence"	09-May-08	="Medical practice"	30-Apr-08	30-Apr-08	14129.00	=""	="HEALTH & COMM SERVS"	09-May-08 12:05 PM	

+="CN74390"	" Provision of IT services "	="Australian Securities and Investments Commission"	09-May-08	="Information technology consultation services"	01-May-08	16-May-08	10560.00	=""	="Interpro Australia P/L Ltd."	09-May-08 02:01 PM	

+="CN74398"	" CLEANING PRODUCTS "	="Department of Defence"	09-May-08	="Cleaning rags and cloths and wipes"	09-May-08	16-May-08	12296.92	=""	="CORPORATE EXPRESS AUST LTD"	09-May-08 02:11 PM	

+="CN74401"	"Printing of NAT71568 - Payment slip. Qty: 500,000"	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	30-Jun-08	13783.00	=""	="The Camerons Group"	09-May-08 02:15 PM	

+="CN74408"	"IT System Development Services"	="Department of Finance and Deregulation"	09-May-08	="Information Technology Broadcasting and Telecommunications"	30-Apr-08	16-May-08	10281.92	=""	="PANALYSIS PTY LTD"	09-May-08 02:24 PM	

+="CN74409"	"Contractor Costs"	="Department of Finance and Deregulation"	09-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	29-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	09-May-08 02:24 PM	

+="CN74414"	"Probity Services"	="Department of Finance and Deregulation"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	11000.00	="NA because pre-1/1/05"	="DELOITTE TOUCHE TOHMATSU - ACT"	09-May-08 02:25 PM	

+="CN74418"	"    ATP aircraft manufacturers data library B2K for investigation purposes INV R144407 - emergency purchase    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Surface data logging units"	28-Mar-08	28-Mar-08	10846.68	=""	="Aircraft Technical Publishers"	09-May-08 02:36 PM	

+="CN74419"	"    Tickets Qantas/Air Canada to Montreal for ICAO FAL Panel meeting    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	25-Mar-08	25-Mar-08	11111.24	=""	="Air Canada"	09-May-08 02:41 PM	

+="CN74422"	"    Airfare - guest of the department at Over the Horizon - Sydney April 2008    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	03-Apr-08	03-Apr-08	11785.69	=""	="Air New Zealand"	09-May-08 02:48 PM	

+="CN74427"	"    ATP aircraft manufacturers data library BKR for investigation purposes INV R146516 - emergency purchase    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Surface data logging units"	28-Mar-08	28-Mar-08	12633.32	=""	="Aircraft Technical Publishers"	09-May-08 03:14 PM	

+="CN74428"	"     Travel for the Transport Colloquium 2008 -  Itinerary: Los Angeles - Auckland - Sydney - Auckland - Los Angeles      "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	14-Apr-08	14-Apr-08	15196.50	=""	="Air New Zealand"	09-May-08 03:22 PM	

+="CN74430"	"    Helicopter hire for on-site support, retrieve engine for technical examination. AO-2008-010, 54 km WNW Gascoyne Junction, WA.    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Helicopter services"	31-Mar-08	31-Mar-08	13241.50	=""	="Heliwest"	09-May-08 03:27 PM	

+="CN74449"	"S5101, WR 300079222. Carry out independent investi discharge into bulk fuel tank."	="Department of Defence"	09-May-08	="Fuel tanks and systems"	06-Mar-08	30-Jun-08	13200.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	09-May-08 03:41 PM	

+="CN74453"	"Basic ICAO PANS-OPS Instrument Procedure Design Co urse"	="Department of Defence"	09-May-08	="Vocational training"	06-Mar-08	14-Mar-08	14300.00	=""	="STRATEGIC AIRSPACE"	09-May-08 03:42 PM	

+="CN74454"	"FURNITURE BID"	="Department of Defence"	09-May-08	="Office and desk accessories"	06-Mar-08	31-Mar-08	14877.50	=""	="INTERWORX PTY LTD"	09-May-08 03:42 PM	

+="CN74462"	"Microsoft Customised Training"	="Department of Defence"	09-May-08	="Office supplies"	07-Mar-08	10-Mar-08	13900.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	09-May-08 03:44 PM	

+="CN74464"	"Health and wellbeing"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	07-Mar-08	31-Mar-08	11000.00	=""	="CAPITAL HEALTH CARE PTY LTD"	09-May-08 03:44 PM	

+="CN74466"	"AIR CONDITIONER"	="Department of Defence"	09-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	07-Mar-08	04-Apr-08	14230.00	=""	="HAWKESBURY REFRIGERATION PTY LTD"	09-May-08 03:44 PM	

+="CN74467"	"RAAF ENSIGN FLAGS, QTY 100"	="Department of Defence"	09-May-08	="Mineral and Textile and Inedible Plant and Animal Materials"	07-Mar-08	07-Mar-08	11880.00	=""	="NATIONAL FLAGS"	09-May-08 03:44 PM	

+="CN74470"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 03:45 PM	

+="CN74478"	"license"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	07-Mar-08	07-Mar-08	11220.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	09-May-08 03:46 PM	

+="CN74493"	"Job Ads - Hydrology campaign"	="Bureau of Meteorology"	09-May-08	="Marketing and distribution"	17-Apr-08	30-Apr-08	10780.55	=""	="HMA BLAZE PTY LTD"	09-May-08 03:49 PM	

+="CN74499"	"Software Licence 01.04.2008 - 31.03.2009"	="Bureau of Meteorology"	09-May-08	="Computer services"	16-Apr-08	31-Mar-09	11000.00	=""	="Global Position & Tracking Systems"	09-May-08 03:49 PM	

+="CN74501"	"Telecommunications Services - February 2008"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	07-May-08	31-May-08	15836.27	=""	="Belong Pty Ltd (Formerly LEGION)"	09-May-08 03:49 PM	

+="CN74513"	"*Voice serv NTRO rental - 12/5/08 Calls - 12/4/08"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	22-Apr-08	30-Jun-08	13316.09	=""	="Telstra  (ID No. 740)"	09-May-08 03:50 PM	

+="CN74515"	"Patch cables for DSN"	="Department of Defence"	09-May-08	="Electronic Components and Supplies"	05-Mar-08	14-Mar-08	10616.76	=""	="MM ELECTRICAL MERCHANDING"	09-May-08 03:50 PM	

+="CN74517"	"TECRA NOTEBOOKS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	14-Apr-08	12210.00	=""	="PORTABLE COMPUTER SYSTEMS"	09-May-08 03:50 PM	

+="CN74519"	"Consulting"	="Bureau of Meteorology"	09-May-08	="Management advisory services"	23-Apr-08	30-Apr-08	10734.16	=""	="Mary O'Kane and Associates P/L"	09-May-08 03:50 PM	

+="CN74520"	"Software"	="Department of Defence"	09-May-08	="Software"	18-Mar-08	03-Apr-08	13323.75	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	09-May-08 03:50 PM	

+="CN74526"	"DEFENCE EXPORTS - ROS KENWAY MEETING ATTENDANC"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-08	10863.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 03:50 PM	

+="CN74528"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	01-May-08	31-May-08	10346.47	=""	="Telstra  (ID No. 740)"	09-May-08 03:50 PM	

+="CN74529"	"REPAIR AND SERVICE VIDEO EQUIPMENT"	="Department of Defence"	09-May-08	="Photographic or filming or video equipment"	18-Mar-08	30-Jun-08	10294.34	=""	="INSIGHT TECHNICAL SUPPORT"	09-May-08 03:50 PM	

+="CN74530"	"IT equipment"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	16-Apr-08	12226.50	=""	="COMPUTERCORP PTY LTD"	09-May-08 03:50 PM	

+="CN74534-A1"	"Repeater Station, Antenna, Power Supply, Rain Guag"	="Bureau of Meteorology"	09-May-08	="Measuring and observing and testing instruments"	21-Apr-08	21-Apr-08	12403.60	=""	="Elpro Technologies Pty Ltd"	09-May-08 03:51 PM	

+="CN74536"	"HIRE OF CONFERENCE FACILITIES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	05-Mar-08	05-Mar-08	15470.00	=""	="DEFENCE MATERIEL ORGANISATION -"	09-May-08 03:51 PM	

+="CN74538"	"MILK PRODUCTS FOR RATIONS"	="Department of Defence"	09-May-08	="Dairy products and eggs"	18-Mar-08	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	09-May-08 03:51 PM	

+="CN74541"	"BREAD FOR RATIONS"	="Department of Defence"	09-May-08	="Bread and bakery products"	18-Mar-08	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	09-May-08 03:51 PM	

+="CN74543"	"Dell Precision T3400 Desktop PC Qty 3"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	23-Apr-08	30-May-08	14190.00	=""	="DELL COMPUTER PTY LTD"	09-May-08 03:51 PM	

+="CN74558-A1"	"Field canisters"	="Bureau of Meteorology"	09-May-08	="Electronic hardware and component parts and accessories"	28-Apr-08	28-Apr-08	12910.59	=""	="Elpro Technologies Pty Ltd"	09-May-08 03:52 PM	

+="CN74564"	"HP2510 Laptops Including software and Accessories"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	05-May-08	23-Apr-08	10580.99	=""	="Leading Solutions Pty Ltd"	09-May-08 03:52 PM	

+="CN74566"	"Venue required for hire to facilitate Transition S POC Jeremy Alam on 02 93772866"	="Department of Defence"	09-May-08	="Education and Training Services"	06-Mar-08	20-Mar-08	13310.00	=""	="MUSEUM OF APPLIED ARTS & SCIENCES"	09-May-08 03:52 PM	

+="CN74568"	"SUPPLY SPECIALIST CURRENT TRANSFORMERS FOR ELECTRI"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	18-Mar-08	30-Jun-08	11000.00	=""	="STEMAR ELECTRICAL PRODUCTS"	09-May-08 03:52 PM	

+="CN74570"	"Sunshine Measurement Cards winter, Summer and Equinox"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	13695.00	=""	="Stantron Australia Pty Ltd"	09-May-08 03:52 PM	

+="CN74572"	"Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	11-Mar-08	14027.20	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 03:53 PM	

+="CN74574"	"Office Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	20-Mar-08	30-Apr-08	14960.00	=""	="CITE OFFICE DESIGN"	09-May-08 03:53 PM	

+="CN74575"	"Data Loggers"	="Bureau of Meteorology"	09-May-08	="Measuring and observing and testing instruments"	06-May-08	30-May-08	12859.00	=""	="Campbell Scientific Australia"	09-May-08 03:53 PM	

+="CN74581"	"MDP INTEGRATED VIEWER SOFTWARE DEVELOPMENT"	="Bureau of Meteorology"	09-May-08	="Computer services"	08-May-08	30-Jun-08	12680.88	=""	="IT & T VISUAL SYSTEMS"	09-May-08 03:53 PM	

+="CN74587"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	20-Mar-08	30-Jun-08	13998.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 03:53 PM	

+="CN74588"	"Computer hardware"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	14-Mar-08	13854.50	=""	="ALTIUM LIMITED"	09-May-08 03:53 PM	

+="CN74604"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	06-Mar-08	12705.00	=""	="NOETIC SOLUTIONS PTY LTD"	09-May-08 03:54 PM	

+="CN74629"	"poc: Chris McColl Contact: 02 6266 0001"	="Department of Defence"	09-May-08	="Industrial process machinery and equipment and supplies"	20-Mar-08	30-Apr-08	11273.11	=""	="ROCKWELL COLLINS AUSTRALIA"	09-May-08 03:56 PM	

+="CN74635"	"Nortel 1-Port 1000Base Smal Form Factor GBIC"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	31-Mar-08	15870.25	=""	="COMPUTERCORP PTY LTD"	09-May-08 03:57 PM	

+="CN74638"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	14590.00	=""	="ALLIED CONSULTANTS"	09-May-08 03:57 PM	

+="CN74642"	"Cabling"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	11-Mar-08	31-Mar-08	11357.50	=""	="RIVERCORP PTY LTD"	09-May-08 03:58 PM	

+="CN74643"	"ON-LINE LEGAL RESOURCES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	01-Jul-08	12408.00	=""	="SAI GLOBAL"	09-May-08 03:58 PM	

+="CN74656"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Mar-08	30-Apr-08	11583.50	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 03:59 PM	

+="CN74658"	"AUDITORS COURSE"	="Department of Defence"	09-May-08	="Classroom and instructional and institutional furniture and fixtures"	11-Mar-08	31-May-08	15950.00	=""	="LOSS CONTROL MANAGEMENT SYSTEMS"	09-May-08 04:00 PM	

+="CN74664"	"CAMP REIMBURSEMENT FEES"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Mar-08	11-Mar-08	14025.00	=""	="THE SCOTS COLLEGE CADET UNIT"	09-May-08 04:00 PM	

+="CN74667"	"Training"	="Department of Defence"	09-May-08	="Medical training and education supplies"	20-Mar-08	28-Mar-08	13221.64	=""	="SOURCEFIRE INC."	09-May-08 04:00 PM	

+="CN74676"	"Fujitsu Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	14145.62	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:01 PM	

+="CN74682"	"Training Course- Planning & Budgeting for Success"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Mar-08	28-Mar-08	10273.13	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:01 PM	

+="CN74686"	"Computer Equip"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	15278.07	=""	="DATA 3 GROUP"	09-May-08 04:01 PM	

+="CN74687"	"LITEPROS FOR TUASSC CLASSROOMS"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	19-Mar-08	27-Mar-08	13525.60	=""	="WEST COAST HI FI ROCKINGHAM"	09-May-08 04:01 PM	

+="CN74688"	"Regional Consultancies"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	11000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	09-May-08 04:01 PM	

+="CN74692"	"SDK/API"	="Department of Defence"	09-May-08	="Software"	12-Mar-08	28-Mar-08	10632.60	=""	="APPLICATIONS TECHNOLOGY INC"	09-May-08 04:02 PM	

+="CN74697"	"Communications Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	19-Mar-08	28-Mar-08	15006.12	=""	="DATAFLEX PTY LTD"	09-May-08 04:02 PM	

+="CN74702"	"Cabling"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	11-Mar-08	31-Mar-08	10401.60	=""	="RIVERCORP PTY LTD"	09-May-08 04:02 PM	

+="CN74706"	"LCD MONITORS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	15725.60	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	09-May-08 04:02 PM	

+="CN74718"	"Monitors/wall mounts"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	04-Apr-08	12886.01	=""	="GM MULTIMEDIA PTY LTD"	09-May-08 04:04 PM	

+="CN74720"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	19-Mar-08	30-Jun-08	11880.00	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	09-May-08 04:04 PM	

+="CN74727"	"WHITE GOODS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	10-Mar-08	31-Mar-08	13838.00	=""	="MIELE AUSTRALIA PTY LTD"	09-May-08 04:05 PM	

+="CN74732"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	10-Mar-08	30-Jun-08	12468.50	=""	="DIRECT ERGONOMICS PTY LTD"	09-May-08 04:05 PM	

+="CN74738"	"REPLACE VARIABLE SPEED DRIVE ON SUPPLY FAN RAAF BASE AMBERLEY"	="Department of Defence"	09-May-08	="Heating and ventilation and air circulation"	10-Mar-08	30-Jun-08	14848.90	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	09-May-08 04:06 PM	

+="CN74739"	"Green Hills Reference Quote #:,,RJW200803100753. Power Architecture processors maintenance"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	31-Mar-09	10056.32	=""	="GREEN HILLS SOFTWARE INC."	09-May-08 04:06 PM	

+="CN74745"	"Annual software & maintenance support agreement PULSE Licence"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	02-Apr-08	10912.01	=""	="BRUEL AND KJAER AUST PTY LTD"	09-May-08 04:06 PM	

+="CN74747"	"CONGERENCE FEES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	20-Mar-08	20-Mar-08	14000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	09-May-08 04:06 PM	

+="CN74750"	"Annual software maintenance support agreement"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	07-Mar-08	11-Mar-08	12158.30	=""	="BRUEL AND KJAER AUST PTY LTD"	09-May-08 04:07 PM	

+="CN74752"	"CLASS ROOM FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	07-Mar-08	28-Mar-08	15312.00	=""	="ACCENT OFFICE INTERIORS"	09-May-08 04:07 PM	

+="CN74753"	"upgrade safety & environment reporting system"	="Department of Defence"	09-May-08	="Personal safety devices or weapons"	20-Mar-08	30-Jun-08	13200.00	=""	="THE FRAME GROUP"	09-May-08 04:07 PM	

+="CN74767"	"Research Agreement"	="Department of Defence"	09-May-08	="Professional engineering services"	07-Mar-08	07-Mar-08	15922.50	=""	="UNIVERSITY OF ADELAIDE"	09-May-08 04:08 PM	

+="CN74769"	"S5101, WR 300072965. Undertake fauna survey swamp Provide strategy for how the area is going to be r"	="Department of Defence"	09-May-08	="Environmental control systems"	10-Mar-08	30-Jun-08	12672.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:08 PM	

+="CN74774"	"NQ2081 - HMAS Cairns Network Redevelopment Network"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	19-Mar-08	30-Jun-08	15450.60	=""	="EMAK COMMUNICATIONS"	09-May-08 04:09 PM	

+="CN74775"	"4x4 and ATV Driver Training - SWBTA"	="Department of Defence"	09-May-08	="Education and Training Services"	10-Mar-08	30-Jun-08	14300.00	=""	="FOUR WHEEL DRIVE TRAINING PTY LTD"	09-May-08 04:09 PM	

+="CN74782"	"2 x 20ft New shipping containers with shelves"	="Department of Defence"	09-May-08	="Storage"	19-Mar-08	03-Apr-08	11440.00	=""	="RURAL CONTAINERS SUPPLIERS PTY"	09-May-08 04:09 PM	

+="CN74784"	"Software"	="Department of Defence"	09-May-08	="Software"	19-Mar-08	28-Mar-08	12276.33	=""	="SILVER TRAK DIGITAL"	09-May-08 04:09 PM	

+="CN74785"	"Accomodation - Ramingining Community Council OP OUTREACH"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	11-Mar-08	12-Mar-08	13200.00	=""	="RAMINGINING COMMUNITY COUNCIL"	09-May-08 04:09 PM	

+="CN74787"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	13200.00	=""	="THE REHABILITATION COMPANY PTY LTD"	09-May-08 04:09 PM	

+="CN74793"	"LCD MONITORS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	13640.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:10 PM	

+="CN74803"	"PREFAB GRANDSTAND"	="Department of Defence"	09-May-08	="Prefabricated structures"	11-Mar-08	10-Apr-08	10736.00	=""	="ACT FENCING & METALWORK"	09-May-08 04:10 PM	

+="CN74807"	"DIGITISATION OF JOURNALS"	="Department of Defence"	09-May-08	="Printing and publishing equipment"	11-Mar-08	11-Mar-08	15691.50	=""	="NETIMPACT ONLINE PUBLISHING"	09-May-08 04:11 PM	

+="CN74808"	"PABX Systems"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	13-Mar-08	30-Apr-08	14273.60	=""	="NEC AUSTRALIA PTY LTD"	09-May-08 04:11 PM	

+="CN74818"	"REPLACE REFRIGERATION UNIT ON VAPOR DEGREASER RAAF BASE AMBERLEY"	="Department of Defence"	09-May-08	="Industrial refrigeration"	11-Mar-08	30-Jun-08	14875.91	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	09-May-08 04:11 PM	

+="CN74822"	"POC: GEOFFREY ABBOTT CONTACT: 02 6266 5774"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	21-Apr-08	15196.50	=""	="TENIX DATAGATE PTY LTD"	09-May-08 04:11 PM	

+="CN74841"	"Acerack Longspan Shelving  8 shelves per bay"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	13-Mar-08	27-Mar-08	15019.40	=""	="DICKMAN PALLET RACKING & SHELVING"	09-May-08 04:13 PM	

+="CN74842"	"S5101, WR 300078701. GI Bld 104 - Investigate and loading."	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	29-Feb-08	30-Jun-08	12334.74	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:13 PM	

+="CN74844"	"HP MSA RAID enclosure"	="Department of Defence"	09-May-08	="Electronic hardware and component parts and accessories"	29-Feb-08	28-Mar-08	13158.77	=""	="LOGITECH PTY LTD"	09-May-08 04:13 PM	

+="CN74849"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Mar-08	30-Jun-08	12964.05	=""	="HUTCHINSON COMMUNICATIONS"	09-May-08 04:13 PM	

+="CN74853"	"Agilent/HP 8517B Microwave Test  Set. Serial # 360 2A00523 with Accessories"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	13-Mar-08	04-Apr-08	12759.12	=""	="NAPTECH TEST EQUIPMENT INC. DBA NAP"	09-May-08 04:13 PM	

+="CN74854"	"Delivery of Project Management Methodology Trainin"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Mar-08	20-Aug-08	10142.00	=""	="PS MANAGEMENT CONSULTANTS"	09-May-08 04:13 PM	

+="CN74855"	"Manufactor and installation of curtains and blinds"	="Department of Defence"	09-May-08	="Accommodation furniture"	13-Mar-08	31-Mar-08	12194.01	=""	="PARADISE WINDOW FURNISHINGS"	09-May-08 04:14 PM	

+="CN74858"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	29-Feb-08	16000.00	=""	="KEITH THOMAS & ASSOCIATES"	09-May-08 04:14 PM	

+="CN74862"	"TRAINING"	="Department of Defence"	09-May-08	="Classroom and instructional and institutional furniture and fixtures"	29-Feb-08	31-Mar-08	14080.00	=""	="SOUTHPAC AEROSPACE"	09-May-08 04:14 PM	

+="CN74868"	"COMPACTUS'S"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	29-Feb-08	30-Jun-08	13424.40	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 04:14 PM	

+="CN74871"	"CARIS Hips/Sips and CARIS HOM AML subscriptions"	="Department of Defence"	09-May-08	="Software"	13-Mar-08	31-Mar-08	15770.27	=""	="CARIS"	09-May-08 04:15 PM	

+="CN74875"	"IVS Annual Maintenance Agreement"	="Department of Defence"	09-May-08	="Software"	13-Mar-08	31-Mar-08	15826.80	=""	="ACOUSTIC IMAGING"	09-May-08 04:15 PM	

+="CN74892"	"Computer hardware"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Mar-08	21-Mar-08	11206.26	=""	="CERULEAN SOLUTIONS LTD"	09-May-08 04:16 PM	

+="CN74896"	"Protective Clothing"	="Department of Defence"	09-May-08	="Clothing"	12-Mar-08	30-Jun-08	10989.66	=""	="TOTALLY WORKWEAR (TOOWOOMBA)"	09-May-08 04:16 PM	

+="CN74902"	"25mm Green Binders x Qty 2000, 38mm Green Binders x Qty 2000"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	12-Mar-08	12-Mar-08	12540.00	=""	="BANG STATIONARY AND PACKAGING"	09-May-08 04:17 PM	

+="CN74904"	"Training"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	12-Mar-08	30-Jun-08	13418.83	=""	="JIM VLANGOS"	09-May-08 04:17 PM	

+="CN74909"	"PERSONAL EFFICIENCY PROGRAM TRAINING-IAD BRANCH."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	03-Mar-08	30-Jun-08	13915.00	=""	="D'ARCY CONSULTING GROUP"	09-May-08 04:17 PM	

+="CN74912"	"Manufacture of Diesel Tank"	="Department of Defence"	09-May-08	="Fuels"	12-Mar-08	24-Apr-08	11165.00	=""	="AUSTANK"	09-May-08 04:17 PM	

+="CN74919"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	12980.00	=""	="PROGRAM IT PTY LTD"	09-May-08 04:18 PM	

+="CN74926"	"MEDIA ADVERTISING"	="Department of Defence"	09-May-08	="Advertising"	03-Mar-08	03-Mar-08	11132.50	=""	="HMA BLAZE PTY LTD"	09-May-08 04:18 PM	

+="CN74928"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	12028.82	=""	="HMA BLAZE PTY LTD"	09-May-08 04:18 PM	

+="CN74933"	"Software upgrade of analogue station cards"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	12-Mar-08	14-Mar-08	15812.85	=""	="FUJITSU AUSTRALIA LTD"	09-May-08 04:19 PM	

+="CN74938"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	10560.00	=""	="ROBERT B TRELOAR"	09-May-08 04:19 PM	

+="CN74939"	"Seminar"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Mar-08	31-Mar-08	12540.00	=""	="GLOBAL ACHIEVERS COMPANY PTY LTD"	09-May-08 04:19 PM	

+="CN74952"	"Beds & Matteress"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	28-Feb-08	31-Mar-08	14150.40	=""	="TUBEND INDUSTRIES AUSTRALIA PTY LTD"	09-May-08 04:20 PM	

+="CN74954"	"Repair to 83651B Signal Generator on 8510C VNA system, Calibration of 83651B source"	="Department of Defence"	09-May-08	="Leatherworking repairing machinery and equipment"	29-Feb-08	08-Apr-08	11400.46	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	09-May-08 04:20 PM	

+="CN74964"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	28-Feb-08	28-Feb-08	14750.00	=""	="EXCOM EDUCATION PTY LTD"	09-May-08 04:20 PM	

+="CN74971"	"PRESENTATION AND INFLUENCING SKILLS TRAINING COURS COMMUNICATION."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	10725.00	=""	="ENGAGE COMMUNICATION PTY LTD"	09-May-08 04:21 PM	

+="CN74973"	"JLU(SQ) 0406 Labour Hire assistance to Reconstruct ion Task Force 4 Qty 6 Pers 17 Mar - 4 Apr 08"	="Department of Defence"	09-May-08	="Containers and storage"	12-Mar-08	04-Apr-08	12234.73	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:21 PM	

+="CN74975"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	25-Mar-08	15444.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:21 PM	

+="CN74989"	"Provide a Project Officer associated with the maintenance of Facilities & FP&E"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	13150.01	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	09-May-08 04:22 PM	

+="CN74999"	"FLUSH AND DE-SLUDGE OF  SETTLING TANK, DIRTY WATER TANK AND WATER HOLDING TANK PAINT SHOP OAKEY"	="Department of Defence"	09-May-08	="Paints and primers and finishes"	29-Feb-08	28-Mar-08	12828.20	=""	="ADTECH ENVIRONMENTAL PTY LTD"	09-May-08 04:23 PM	

+="CN75001"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	29-Feb-08	31-Mar-08	11355.30	=""	="IKEN COMMERCIAL INTERIORS (NSW)"	09-May-08 04:23 PM	

+="CN75006"	"R&D CONTRACT"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	30-May-08	11000.00	=""	="RMIT - SCHOOL OF ELECTRICAL AND"	09-May-08 04:23 PM	

+="CN75017"	"Air compressor, hoses and tool kit"	="Department of Defence"	09-May-08	="Hardware"	17-Mar-08	27-Mar-08	10213.06	=""	="TOTAL TOOLS WINGFIELD"	09-May-08 04:24 PM	

+="CN75028"	"PROTECT VITAL DEFENCE CIRCUITS FROM FAILURE DUE TO INSTALLATION WORK BY HQJOC PROJECT."	="Department of Defence"	09-May-08	="Electronic hardware and component parts and accessories"	29-Feb-08	30-Apr-08	15078.53	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	09-May-08 04:25 PM	

+="CN75031"	"POC: B.Turrell Quotation: 2007141"	="Department of Defence"	09-May-08	="Hardware"	14-Mar-08	11-Apr-08	10593.00	=""	="SECURE SYSTEMS LTD"	09-May-08 04:25 PM	

+="CN75039"	"All terrain gas power lift & drive pallet truck, shipping container, lid, pallett and freight"	="Department of Defence"	09-May-08	="Transportation components and systems"	17-Mar-08	28-Mar-08	11255.67	=""	="GLOBAL EQUIPMENT CO. INC."	09-May-08 04:25 PM	

+="CN75040"	"BAC STORAGE MODULES"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	04-Mar-08	01-Apr-08	13750.00	=""	="BAC SYSTEMS PTY LTD"	09-May-08 04:25 PM	

+="CN75042"	"Mechnical Drafting SON 40552"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	04-Mar-08	30-Apr-08	12634.05	=""	="BLUE SWIMMER CONSULTING"	09-May-08 04:26 PM	

+="CN75046"	"5 METRE SQUARE HEAVY COMMERCIAL UMBRELLA"	="Department of Defence"	09-May-08	="Vehicle trim and exterior covering"	04-Mar-08	01-Apr-08	14190.00	=""	="THE GAZEBO & SHADE CENTRE"	09-May-08 04:26 PM	

+="CN75052"	"FRICTION DRIVE MOTOR"	="Department of Defence"	09-May-08	="Motor vehicles"	05-Mar-08	10-Mar-08	14872.88	=""	="INTERSERV CORP"	09-May-08 04:26 PM	

+="CN75055"	"Installation of SMS-E-mail extension @ HQ NORCOM, Larrakeyah Barracks."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	17-Mar-08	30-Apr-08	11292.99	=""	="FAST NETWORKS PTY LTD"	09-May-08 04:26 PM	

+="CN75057"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	10863.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:26 PM	

+="CN75065"	"Provision of Minor Reactive Maintenance and Works"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	17-Mar-08	30-Jun-08	12242.52	=""	="TRANSFIELD SERVICES AUSTRALIA LTD"	09-May-08 04:27 PM	

+="CN75071"	"storage tape decks"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	25-Mar-08	12141.60	=""	="SUN MICROSYSTEMS AUST PTY LTD"	09-May-08 04:27 PM	

+="CN75072"	"replace doors"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	04-Mar-08	31-Mar-08	14046.98	=""	="M & P BUILDERS PTY LTD"	09-May-08 04:27 PM	

+="CN75074"	"Technical Contact: Darren McCard"	="Department of Defence"	09-May-08	="Vocational training"	04-Mar-08	07-Mar-08	11376.50	=""	="LUCID IT PTY LTD"	09-May-08 04:28 PM	

+="CN75081"	"Training"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	05-Jun-08	15400.00	=""	="OZ TRAIN PTY LTD"	09-May-08 04:28 PM	

+="CN75087"	"C3ID Corporate Training."	="Department of Defence"	09-May-08	="Education and Training Services"	17-Mar-08	30-May-08	14095.38	=""	="LAND MANAGEMENT CORPORATION"	09-May-08 04:28 PM	

+="CN75094"	"Consolidation of Cargo, Sea Cargo, Road Freight OP OUTREACH"	="Department of Defence"	09-May-08	="Mail and cargo transport"	17-Mar-08	20-Mar-08	13014.98	=""	="PDL TOLL"	09-May-08 04:29 PM	

+="CN75097"	"UPS UNITS, BATTERY PACKS, WEB ADAPTORS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	31-Mar-08	14040.36	=""	="COMMANDER INTEGRATED NETWORKS PTY"	09-May-08 04:29 PM	

+="CN75098"	"SUSPENSION FILES"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	30-Jun-08	13200.00	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 04:29 PM	

+="CN75105"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	05-Mar-08	31-Mar-08	13200.00	=""	="TELELOGIC AUSTRALIA PTY LTD"	09-May-08 04:30 PM	

+="CN75108"	"Comms/IT"	="Department of Defence"	09-May-08	="Hardware"	14-Mar-08	11-Apr-08	10270.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:30 PM	

+="CN75111"	"PARTS"	="Department of Defence"	09-May-08	="Workshop machinery and equipment and supplies"	05-Mar-08	19-Mar-08	13282.50	=""	="BAXTERS PTY LTD"	09-May-08 04:30 PM	

+="CN75104-A1"	"Provsion of Actuarial valuation of employee benefit liabilities"	="CRS Australia"	09-May-08	="Government auditing services"	21-Apr-08	30-Jun-08	10415.90	=""	="Australian Government Actuary"	09-May-08 04:31 PM	

+="CN75117"	"Geo-acoustic Model of Magnetic Treatment Facility"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	05-Mar-08	30-May-08	10118.24	=""	="MIDSPAR SYSTEMS"	09-May-08 04:31 PM	

+="CN75118"	"COMPUTER CONTROLLED PULSE VALVE & UHV LEAK VALVE"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	14-Mar-08	30-Jun-08	12226.50	=""	="BRUKER BIOSCIENCES PTY LIMITED"	09-May-08 04:31 PM	

+="CN75120"	"2 MacBooks with DVD Burners for PTS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Mar-08	30-Jun-08	11891.46	=""	="COMPUTERS NOW PTY LTD"	09-May-08 04:31 PM	

+="CN75121"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Mar-08	11454.30	=""	="TONY GORMLEY CONSULTING"	09-May-08 04:31 PM	

+="CN75122"	"Executive coaching for DSTO-HPPD staff"	="Department of Defence"	09-May-08	="Vocational training"	14-Mar-08	30-Jun-08	11000.00	=""	="GLOBAL LEADERSHIP FOUNDATION"	09-May-08 04:31 PM	

+="CN75124"	"OUTBOARD ENGINE"	="Department of Defence"	09-May-08	="Marine transport"	14-Mar-08	31-Mar-08	10033.00	=""	="RISING SUN MARINE"	09-May-08 04:31 PM	

+="CN75126"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Apr-08	15139.93	=""	="ROBERT BRENNAN & ASSOCIATES"	09-May-08 04:31 PM	

+="CN75139"	"JUNIOR SAILORS SERVERY"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	05-Mar-08	30-Jun-08	11550.00	=""	="MAJESTIC JOINERY"	09-May-08 04:32 PM	

+="CN75143"	"Phage Display Library Screening"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	05-Mar-08	15-May-08	10632.60	=""	="CREATIVE DYNAMICS INC"	09-May-08 04:32 PM	

+="CN75151"	"INSTALL FIRING POSTS AND BLDG CONDITION ASSESSMENT"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Jun-08	10739.30	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:33 PM	

+="CN75166"	"RAAF WILLIAMTOWN: REDEVELOPMENT WORKS"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	10450.00	=""	="BLAKE DAWSON WALDRON"	09-May-08 04:34 PM	

+="CN75167"	"PAC300 Wireless 8 channel cardio entertainment sys"	="Department of Defence"	09-May-08	="Recreation and playground and swimming and spa equipment and supplies"	04-Mar-08	18-Mar-08	11220.00	=""	="SOUNDFREQ"	09-May-08 04:34 PM	

+="CN75185"	"ELECTRICAL SUPPLIES, ITT UPGRADE Army Logistic Training Centre, Bandiana"	="Department of Defence"	09-May-08	="Electrical components"	03-Mar-08	18-Mar-08	12578.34	=""	="MIDDENDORP ELECTRIC CO PTY LTD"	09-May-08 04:35 PM	

+="CN75186"	"Operator training"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	14-Mar-08	28-Apr-08	14850.00	=""	="SURVEILLANCE AUSTRALIA"	09-May-08 04:36 PM	

+="CN75189"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	03-Mar-08	30-Jun-08	10890.00	=""	="UNIVERSITY OF CANBERRA"	09-May-08 04:36 PM	

+="CN75191"	"supply of 8 window,  ladar"	="Department of Defence"	09-May-08	="Temporary personnel services"	03-Mar-08	15-May-08	13255.00	=""	="JUNG PRECISION OPTICS PTY LTD"	09-May-08 04:36 PM	

+="CN75195"	"L-BAND CIRCULATOR"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Mar-08	18-Apr-08	15031.50	=""	="BRAEMAC (SA) PTY LTD"	09-May-08 04:36 PM	

+="CN75200"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	04-Mar-08	30-Jun-08	12700.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:37 PM	

+="CN75201"	"OFFICE EQUIPMENT"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	14-Mar-08	25-Apr-08	10247.60	=""	="OFFICELINE"	09-May-08 04:37 PM	

+="CN75212"	"Transport of containers  - OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	15719.66	=""	="PDL TOLL"	09-May-08 04:38 PM	

+="CN75222"	"EPSON EMP-1700 LCD Projectors (5 for Deakin and 1 for RAAF Wagga"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	12-Feb-08	30-Jun-08	15183.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 04:39 PM	

+="CN75238"	"MANUFACTURE P-3C SPANWISE SPLICE COMPONENTS & GRIP S UNDER BOEING STANDING OFFER 873864"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	20-Jun-08	13273.70	=""	="BOEING AEROSPACE SUPPORT"	09-May-08 04:40 PM	

+="CN75247"	"Scientific goods"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	12-Feb-08	07-Mar-08	13486.00	=""	="COHERENT SCIENTIFIC PTY LTD"	09-May-08 04:40 PM	

+="CN75249"	"Freight Distribution for NT Police to Minjilang for OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	13035.00	=""	="PDL TOLL"	09-May-08 04:40 PM	

+="CN75257"	"DEMAND NO. CTFC-7BDDW9 OP ANODE"	="Department of Defence"	09-May-08	="Lamps and lightbulbs and lamp components"	12-Feb-08	04-Apr-08	14456.98	=""	="MOUNTAIN DESIGNS PTY LTD"	09-May-08 04:41 PM	

+="CN75261"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-08	16000.00	=""	="SPARKE HELMORE LAWYERS"	09-May-08 04:41 PM	

+="CN75262"	"PRINTING FOR HQ TC-A"	="Department of Defence"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Feb-08	28-Feb-08	10700.00	=""	="MBE BUSINESS SERVICE CENTRE"	09-May-08 04:41 PM	

+="CN75274"	"Upgrade Voicemail"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	13-Feb-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	09-May-08 04:42 PM	

+="CN75275"	"POC: NEIL BRADBURY CONTACT: 02 626 60077"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	30-Jun-08	14784.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	09-May-08 04:42 PM	

+="CN75281"	"Projectors x 2 and Translator x 2"	="Department of Defence"	09-May-08	="Electrical equipment and components and supplies"	18-Mar-08	28-Mar-08	14322.00	=""	="INSIGHT SYSTEMS GROUP PTY LTD"	09-May-08 04:42 PM	

+="CN75291"	"QUALITY ASSURANCE"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	11605.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	09-May-08 04:43 PM	

+="CN75293"	"Fireworks"	="Department of Defence"	09-May-08	="Entertainment services"	18-Mar-08	16-Apr-08	10500.00	=""	="FIREWORKS AUSTRALIA"	09-May-08 04:43 PM	

+="CN75296"	"Technical equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Feb-08	26-Feb-08	11825.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:43 PM	

+="CN75297"	"CONTACT DALLAS WYNNE 08 8935 4176."	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	18-Mar-08	30-Jun-08	15000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	09-May-08 04:43 PM	

+="CN75299"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-08	12945.00	=""	="MINTER ELLISON"	09-May-08 04:44 PM	

+="CN75300"	"EHI Server upgrade"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Feb-08	14-Mar-08	10950.50	=""	="TENIX SYSTEMS PTY LTD"	09-May-08 04:44 PM	

+="CN75311"	"ADVERTISING FOR HQJOC APS 4 BULK RECRUITMENT."	="Department of Defence"	09-May-08	="Printed media"	08-Feb-08	31-Mar-08	10120.75	=""	="HMA BLAZE PTY LTD"	09-May-08 04:44 PM	

+="CN75325"	"VENUE HIRE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	11-Feb-08	05-Mar-08	10657.84	=""	="MELBOURNE EXHIBITION &"	09-May-08 04:45 PM	

+="CN75335"	"Training course"	="Department of Defence"	09-May-08	="Office supplies"	11-Feb-08	30-Jun-08	12951.97	=""	="ROBERT BRENNAN & ASSOCIATES"	09-May-08 04:46 PM	

+="CN75336"	"CAMERA & ASSESSORIES"	="Department of Defence"	09-May-08	="Photographic or filming or video equipment"	18-Mar-08	31-Mar-08	10970.00	=""	="TED'S CAMERA STORE"	09-May-08 04:46 PM	

+="CN75339"	"HELICOPTER FLIGHT"	="Department of Defence"	09-May-08	="Aircraft equipment"	11-Feb-08	30-Jun-08	10835.00	=""	="ANOUSHKA BELLA DESIGNS PTY LTD"	09-May-08 04:46 PM	

+="CN75346"	"Cisco equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	25-Mar-08	11546.40	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	09-May-08 04:47 PM	

+="CN75353"	"TOOLS AND CABLING ACCESSORIES"	="Department of Defence"	09-May-08	="Tools and General Machinery"	11-Feb-08	28-Feb-09	11883.41	=""	="REXEL AUSTRALIA LTD"	09-May-08 04:47 PM	

+="CN75371"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	14034.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:49 PM	

+="CN75378"	"COACH CHARTER"	="Department of Defence"	09-May-08	="Transportation services equipment"	12-Feb-08	13-Mar-08	14240.00	=""	="SUNSTATE CHARTERS PTY LTD"	09-May-08 04:49 PM	

+="CN75386"	"WATSONIA:DEFENCE FORCE SCHOOL OF SIGNALS (DFSS) HMA BLAZE-ITR FOR HC."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-08	15833.66	=""	="HMA BLAZE PTY LTD"	09-May-08 04:49 PM	

+="CN75387"	"SRA"	="Department of Defence"	09-May-08	="Herbs and spices and extracts"	17-Mar-08	30-Jun-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	09-May-08 04:50 PM	

+="CN75388"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	12-Feb-08	30-May-08	13090.00	=""	="COGNOS PTY LTD"	09-May-08 04:50 PM	

+="CN75391"	"beverages"	="Department of Defence"	09-May-08	="Beverages"	17-Mar-08	30-Jun-08	11000.00	=""	="COCA-COLA PTY LTD"	09-May-08 04:50 PM	

+="CN75393"	"dog food"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	17-Mar-08	30-Jun-08	11000.00	=""	="WESTERN PET FOODS"	09-May-08 04:50 PM	

+="CN75398"	"Training"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Feb-08	29-Feb-08	14983.19	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	09-May-08 04:50 PM	

+="CN75404"	"Antennas & Power Supply"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	11-Feb-08	29-Feb-08	10552.32	=""	="ELECTRO-COM (AUSTRALIA) PTY LTD"	09-May-08 04:51 PM	

+="CN75406"	"software"	="Department of Defence"	09-May-08	="Software"	11-Feb-08	14-Feb-08	14903.90	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	09-May-08 04:51 PM	

+="CN75408"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	11-Feb-08	30-Jun-08	14597.00	=""	="CLAYTON UTZ"	09-May-08 04:51 PM	

+="CN75410"	"Licence renewal"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	11-Feb-08	18-Feb-08	11654.50	=""	="ANALYTICA INTERNATIONAL PTY LTD"	09-May-08 04:51 PM	

+="CN75413"	"Hire of Storeman IAW Drake Standing Offer LH 01/05"	="Department of Defence"	09-May-08	="Motor vehicles"	18-Mar-08	30-Jun-08	14786.20	=""	="DRAKE INTERNATIONAL"	09-May-08 04:51 PM	

+="CN75414"	"PROVISION OF THESE 3 PHASE POWER OUTLETS IS REQUIRED TO ENABLE THE BREAKFIX OF RECTIFIER SUITE"	="Department of Defence"	09-May-08	="Electrical equipment and components and supplies"	12-Feb-08	30-Mar-08	10890.00	=""	="NORTHERN TERRITORY COMMUNICATIONS"	09-May-08 04:51 PM	

+="CN75415"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	30-Jun-08	11011.50	=""	="SUN MICROSYSTEMS"	09-May-08 04:51 PM	

+="CN75416"	"Freight forwarding & management along with MHE Hire"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	19-Feb-08	12372.93	=""	="PDL TOLL"	09-May-08 04:51 PM	

+="CN75424"	"Photocopying and printing services"	="Department of Defence"	09-May-08	="Service Industry Machinery and Equipment and Supplies"	15-Feb-08	30-Jun-13	13200.00	=""	="KONICA MINOLTA BUSINESS"	09-May-08 04:52 PM	

+="CN75426"	"SOFTWARE TRAINING"	="Department of Defence"	09-May-08	="Software"	15-Feb-08	04-Mar-08	14410.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	09-May-08 04:52 PM	

+="CN75432"	"SPONSORSHIP FOR NORTH WEST EXPO 3 AND 4 MAY 08"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	14-Feb-08	30-Jun-08	14880.00	=""	="NORTH WEST EXPO INC"	09-May-08 04:53 PM	

+="CN75438"	"SQ REGIONAL CONSULTANCY - BELLMAN HANGAR AT OAKEY"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	14-Feb-08	30-Jun-08	10155.75	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:54 PM	

+="CN75440"	"Colour Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	10296.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:54 PM	

+="CN75448"	"DCWR: NOISE AND TRAFFIC CONSULTANCY - AD HOC SERVI"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	15-Feb-08	30-Jun-08	14879.15	=""	="PARSONS BRINCKERHOFF AUSTRALIA PTY"	09-May-08 04:55 PM	

+="CN75449"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	15-Feb-08	30-Jun-09	14054.70	=""	="T4 PROTECTIVE SECURITY"	09-May-08 04:55 PM	

+="CN75452"	"Receiver maintenance"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	29-Feb-08	14879.70	=""	="JENKINS ENGINEERING DEFENCE"	09-May-08 04:55 PM	

+="CN75456"	"Receiver maintenance"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	29-Feb-08	12463.00	=""	="JENKINS ENGINEERING DEFENCE"	09-May-08 04:56 PM	

+="CN75464"	"Jet RHIB boat handling Course for HS Red Crew"	="Department of Defence"	09-May-08	="Marine transport"	15-Feb-08	29-Feb-08	12838.28	=""	="DEFENCE MARITIME SERVICES PTY LTD"	09-May-08 04:56 PM	

+="CN75473"	"Operating systems"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	13-Feb-08	15-Feb-08	10802.00	=""	="INTERWORLD ELECTRONICS &"	09-May-08 04:57 PM	

+="CN75476"	"Imagery Package"	="Department of Defence"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	29-Feb-08	10909.80	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	09-May-08 04:58 PM	

+="CN75484"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	14-Feb-08	30-Jun-08	15618.24	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	10-May-08 08:32 AM	

+="CN75492"	"Upgrade of mixer system"	="Department of Defence"	10-May-08	="Mixers and their parts and accessories"	13-Feb-08	15-Feb-08	15989.60	=""	="APC INTEGRATION PTY LTD"	10-May-08 08:33 AM	

+="CN75494"	"Please annotate Purchase Order No on all packages, invoice."	="Department of Defence"	10-May-08	="Tools and General Machinery"	13-Feb-08	13-Feb-08	11132.00	=""	="DELAHENTY MACHINERY PTY LTD"	10-May-08 08:33 AM	

+="CN75495"	"STAFF RETREAT"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	13-Feb-08	03-Mar-08	12421.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 08:33 AM	

+="CN75496"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	13-Feb-08	22-Feb-08	14877.40	=""	="HMA BLAZE PTY LTD"	10-May-08 08:33 AM	

+="CN75497"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	13-Feb-08	16-Feb-08	14267.14	=""	="HMA BLAZE PTY LTD"	10-May-08 08:33 AM	

+="CN75501"	"Maintenance to GPU's located at RAAF ESL"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	14-Feb-08	31-Mar-08	15840.00	=""	="ADVANCED POWER MACHINERY"	10-May-08 08:34 AM	

+="CN75506"	"Mono Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	11935.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:34 AM	

+="CN75512"	"IU IPEX SERVER INTEL QUAD CORE XEON 2.0 OGHZ CPU 2X 512MB FB ECC 667MHZ"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	06-Mar-08	13142.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 08:35 AM	

+="CN75529"	"BAKERY PRODUCTS FOR RATIONS"	="Department of Defence"	10-May-08	="Bread and bakery products"	06-Feb-08	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	10-May-08 08:37 AM	

+="CN75533"	"GROCERIES FOR RATIONS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	06-Feb-08	30-Jun-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	10-May-08 08:37 AM	

+="CN75534"	"MILK RATIONS"	="Department of Defence"	10-May-08	="Dairy products and eggs"	06-Feb-08	30-Jun-08	11650.00	=""	="USS-UBS INTERNATIONAL"	10-May-08 08:37 AM	

+="CN75538"	"Z Mirco ZXT workstation"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	29-Feb-08	13280.91	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	10-May-08 08:37 AM	

+="CN75543"	"Communications equipment"	="Department of Defence"	10-May-08	="Environmental control systems"	05-Feb-08	11-Feb-08	13237.18	=""	="PACIFIC COMMUNICATIONS PTY LTD"	10-May-08 08:38 AM	

+="CN75550"	"MetalSCAN Sensor - 3/8" sensor & MetalSCAN Monitor Software upgrade."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	06-Feb-08	26-Feb-08	10134.75	=""	="GASTOPS LTD"	10-May-08 08:39 AM	

+="CN75559"	"Software migration and upgrade"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	30-Jun-08	12437.40	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	10-May-08 08:39 AM	

+="CN75566"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	30-Jun-08	15740.00	=""	="CLAYTON UTZ"	10-May-08 08:40 AM	

+="CN75567"	"SUPPLY BLINDS TO ACCOMMODATION"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	06-Feb-08	12-Mar-08	14989.00	=""	="BLINDWERX"	10-May-08 08:40 AM	

+="CN75575"	"BEVERAGES FOR RATIONS"	="Department of Defence"	10-May-08	="Non alcoholic beverages"	06-Feb-08	30-Jun-08	11000.00	=""	="COCA-COLA PTY LTD"	10-May-08 08:41 AM	

+="CN75576"	"Mac OsX Maintenance Licences"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Feb-08	11-Feb-08	10900.00	=""	="APPLE CENTRE CANBERRA CITY"	10-May-08 08:41 AM	

+="CN75579"	"Generator"	="Department of Defence"	10-May-08	="Power Generation and Distribution Machinery and Accessories"	04-Feb-08	08-Feb-08	12118.70	=""	="PRIME POWER PRODUCTS PTY LTD"	10-May-08 08:41 AM	

+="CN75583"	"POC: PAUL BINOS CONTACT: 02 626 50970"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	05-Feb-08	29-Feb-08	11412.75	=""	="CANON AUSTRALIA PTY LTD"	10-May-08 08:42 AM	

+="CN75585"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	13442.66	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:42 AM	

+="CN75588"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	15-Feb-08	10384.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:42 AM	

+="CN75591"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	31-Dec-08	12375.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 08:43 AM	

+="CN75593"	"Pressure Transducer"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	04-Feb-08	21-May-08	13601.50	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 08:43 AM	

+="CN75595"	"TONER CARTRIDGES"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	04-Feb-08	07-Feb-08	10990.39	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	10-May-08 08:43 AM	

+="CN75597"	"SEA FREIGHT OP CATALYST"	="Department of Defence"	10-May-08	="Marine transport"	04-Feb-08	29-Feb-08	11262.65	=""	="APL LOGISTICS"	10-May-08 08:43 AM	

+="CN75600"	"Maintenance Support"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Feb-08	05-Feb-08	10120.00	=""	="SIMULATION MODELLING SERVICES PTY"	10-May-08 08:44 AM	

+="CN75606"	"REQUIRED TO IDENTIFY WHICH ELEMENTS OF DFMS SUPPORT & MANAGEMENT MECHANISMS."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Feb-08	11-Mar-08	15378.00	=""	="CONNELL WAGNER PTY LTD"	10-May-08 08:44 AM	

+="CN75608"	"MATH REFRESHER CRSE FOR NAVAL NOYO STUDENTS"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Feb-08	15-Feb-08	15543.49	=""	="SCIENTIFIC MANAGEMENT ASSC (OPS)"	10-May-08 08:44 AM	

+="CN75617"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Feb-08	30-Apr-08	15235.00	=""	="LOSS CONTROL MANAGEMENT SYSTEMS"	10-May-08 08:45 AM	

+="CN75620"	"SC Media Converters"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	15-Feb-08	12848.00	=""	="RITECH"	10-May-08 08:45 AM	

+="CN75631"	"Design workshop"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	31-Mar-08	12489.32	=""	="STOLMACK GROUP PTY LTD"	10-May-08 08:47 AM	

+="CN75633"	"Mikron M300 Blackbody IR Calibration standard"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Feb-08	15-Feb-08	15400.00	=""	="W & B INSTRUMENTS PTY LTD"	10-May-08 08:47 AM	

+="CN75634"	"BACKUP AND RESTORE  SOFTWARE AND HARDWARE FOR DRN NETWORK"	="Department of Defence"	10-May-08	="Computer services"	08-Feb-08	28-Feb-08	11352.00	=""	="PARTNER IT"	10-May-08 08:47 AM	

+="CN75638"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	10296.00	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 08:47 AM	

+="CN75639"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	13842.40	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 08:47 AM	

+="CN75644"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	30-Jun-08	11664.00	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 08:48 AM	

+="CN75645"	"Training"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	08-Feb-08	15400.00	=""	="NOBEL CONSULTING GROUP PTY LTD"	10-May-08 08:48 AM	

+="CN75646"	"training"	="Department of Defence"	10-May-08	="Electronic reference material"	08-Feb-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	10-May-08 08:48 AM	

+="CN75647"	"Cables"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	08-Feb-08	14-Mar-08	12277.10	=""	="NUCLETRON PTY LTD"	10-May-08 08:48 AM	

+="CN75648"	"CX-SA07-010U 1000GB 7200RPM SATA II UPG FOR 4G DAE"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Feb-08	29-Feb-08	10840.17	=""	="LOGITECH PTY LTD"	10-May-08 08:48 AM	

+="CN75649"	"Clean and Spray painting of Pendulum Test Rig"	="Department of Defence"	10-May-08	="Paints and primers and finishes"	08-Feb-08	07-Mar-08	13737.39	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 08:48 AM	

+="CN75650"	"Standard Service Contract for the Oxford EDS detector"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	16-Mar-09	10450.00	=""	="OXFORD SERVICES AUSTRALIA"	10-May-08 08:48 AM	

+="CN75653"	"SERVICE & REPAIR L/ROVER"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	25-Mar-08	11350.86	=""	="WILLIS & SON AUTOMOTIVE REPAIRS"	10-May-08 08:49 AM	

+="CN75656"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	10740.00	=""	="RICHARD LEAVER"	10-May-08 08:49 AM	

+="CN75657"	"Groceries FEBRUARY"	="Department of Defence"	10-May-08	="Confectionary products"	08-Feb-08	29-Feb-08	11165.61	=""	="TOWNSVILLE WHOLESALE FRUIT &"	10-May-08 08:49 AM	

+="CN75663"	"folding tables"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	11-Feb-08	11-Feb-08	11321.20	=""	="IDEAL OFFICE FURNITURE PTY LTD"	10-May-08 08:50 AM	

+="CN75678"	"rotomoulding cases"	="Department of Defence"	10-May-08	="Manufacturing support services"	08-Feb-08	14-Mar-08	11000.00	=""	="ROTAPRO"	10-May-08 08:51 AM	

+="CN75696"	"Ballistic gelatine"	="Department of Defence"	10-May-08	="Chemicals including Bio Chemicals and Gas Materials"	06-Feb-08	29-Feb-08	11000.00	=""	="ADELAIDE T & E SYSTEMS"	10-May-08 08:53 AM	

+="CN75700"	"Components"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	06-Feb-08	14-Mar-08	12188.55	=""	="BRAEMAC (SA) PTY LTD"	10-May-08 08:53 AM	

+="CN75712"	"NEW CARPET AND UNDERLAY AND REMOVALOF OLD CARPET"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	07-Feb-08	29-Feb-08	11205.81	=""	="EASTWOOD CARPET CHOICE"	10-May-08 08:54 AM	

+="CN75713"	"Please annotat MEOMS Job ref number (RO-08/138) on order number"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Feb-08	21-Mar-08	12045.00	=""	="GOULD INSTRUMENTS PTY LTD"	10-May-08 08:54 AM	

+="CN75720"	"REPLACE LIGHTNING DAMAGED RECTIFIERS AT NODE 2 & NODE 3 AT HOLSWORTHY."	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	07-Feb-08	31-Mar-08	15070.00	=""	="CENTURY YUASA BATTERIES PTY LTD"	10-May-08 08:55 AM	

+="CN75722"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	30-Jun-08	14144.00	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 08:55 AM	

+="CN75724"	"POC: JOHN DRUMMOND CONTACT: 02 626 50985"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	30-Jun-08	14432.00	=""	="ZALLCOM PTY LTD"	10-May-08 08:56 AM	

+="CN75727"	"KONICA BIZHUB MULTI FUNCTION DEVICE-COLOUR COPIES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	07-Feb-08	30-Jun-08	11000.00	=""	="KONICA MINOLTA BUSINESS"	10-May-08 08:56 AM	

+="CN75728"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	30-Jun-08	11446.40	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 08:56 AM	

+="CN75731"	"FLIGHT SIMULATOR EVALUATION TRAINING"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	07-Feb-08	17-Mar-08	11000.00	=""	="SIMULINC"	10-May-08 08:56 AM	

+="CN75733"	"LCD computer monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	07-Mar-08	13029.50	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:56 AM	

+="CN75736"	"Dell precision laptop (specific confriguration)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	11-Mar-08	10500.38	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75737"	"Pallet Racking, Electrical & Electronics Systems Army Logistic Training Centre, Bandiana"	="Department of Defence"	10-May-08	="Containers and storage"	25-Feb-08	10-Mar-08	13819.50	=""	="FORMACH (CANBERRA) PTY LTD"	10-May-08 08:57 AM	

+="CN75738"	"Panasonic camera & accessories"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	25-Feb-08	14-Mar-08	13352.95	=""	="REXEL AUSTRALIA VIDEO SYSTEMS"	10-May-08 08:57 AM	

+="CN75740"	"ADVERTISING MAY-JUNE 2008. CAMPAIGN DESIGNED TARGE USING ON-SCREEN CINEMA ADVERTISING IN CONJUNCTION"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	25-Feb-08	30-Jun-08	10524.80	=""	="REGENT CINEMAS"	10-May-08 08:57 AM	

+="CN75746"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	10361.80	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 08:58 AM	

+="CN75747"	"POC: SIMON CARR CONTACT: 02 626 50678"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	11282.70	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:58 AM	

+="CN75749"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	11024.04	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 08:58 AM	

+="CN75750"	"POC: SIMON CARR CONTACT: 02 626 50678"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	15400.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:58 AM	

+="CN75754"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	25-Feb-08	31-Mar-08	15432.89	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 08:58 AM	

+="CN75757"	"Transport Charges for month of January 2008 OP ASTUTE"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	25-Feb-08	01-Mar-08	10229.01	=""	="PDL TOLL"	10-May-08 08:59 AM	

+="CN75772"	"Centre of Expertise in Aerodynamic Loading: Task A greement for Task Number AL-2007-02"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	25-Feb-08	30-Jun-08	11000.00	=""	="RMIT UNIVERSITY"	10-May-08 09:00 AM	

+="CN75779"	"IRONING BOARDS AND COVERS"	="Department of Defence"	10-May-08	="Domestic appliances"	25-Feb-08	10-Mar-08	12686.86	=""	="CRAZY JIMS MITRE 10"	10-May-08 09:01 AM	

+="CN75783"	"WATSONIA:DEFENCE FORCE SCHOOL OF SIGNALS (DFSS). HAZMAT AUDIT B62,DFSS SIMPSON BKS,WATSONIA VIC."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	12489.40	=""	="AMCOSH PTY LTD"	10-May-08 09:01 AM	

+="CN75784"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	25-Feb-08	30-Jun-08	12020.80	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 09:01 AM	

+="CN75789"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	29-Feb-08	14304.40	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:02 AM	

+="CN75797"	"Machining"	="Department of Defence"	10-May-08	="Manufacturing technologies"	22-Feb-08	12-Mar-08	13904.00	=""	="HEAVYMECH PTY LTD"	10-May-08 09:03 AM	

+="CN75800"	"COMPUTERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	22-Feb-08	13307.58	=""	="APPLE COMPUTER AUST PTY LTD"	10-May-08 09:03 AM	

+="CN75801"	"tool kits"	="Department of Defence"	10-May-08	="Hand tools"	22-Feb-08	25-Mar-08	12666.50	=""	="TRADE TOOLS DIRECT"	10-May-08 09:03 AM	

+="CN75808"	"hard disk SATA Drive"	="Department of Defence"	10-May-08	="Computer services"	22-Feb-08	11-Mar-08	10784.23	=""	="LOGITECH PTY LTD"	10-May-08 09:04 AM	

+="CN75810"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	11000.00	=""	="AFFILIATE MARKETING SOLUTIONS PTY"	10-May-08 09:04 AM	

+="CN75812"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	10933.65	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75818"	"MINE BLAST DRIVER/PASSENGER SEAT"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Feb-08	20-May-08	12567.73	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	10-May-08 09:05 AM	

+="CN75819"	"POC: MARK RUTHERFORD CONTACT: 02 626 69157"	="Department of Defence"	10-May-08	="Software"	23-Feb-08	30-Jun-08	12636.00	=""	="EMBARCADERO TECHNOLOGIES AUSTRALIA"	10-May-08 09:05 AM	

+="CN75820"	"POC: PAUL BINOS CONTACT: 02 626 50970"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Feb-08	30-Jun-08	11682.00	=""	="UCI"	10-May-08 09:05 AM	

+="CN75825"	"ACCOMMODATION"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	22-Feb-08	22-Feb-08	12138.00	=""	="CANBERRA CITY YHA"	10-May-08 09:05 AM	

+="CN75827"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	22-Feb-08	22-Feb-08	10388.40	=""	="PIRION PTY LTD"	10-May-08 09:06 AM	

+="CN75838"	"lamps"	="Department of Defence"	10-May-08	="Lamps and lightbulbs and lamp components"	28-Feb-08	28-Mar-08	13319.90	=""	="AIRPORT LIGHTING SPECIALISTS"	10-May-08 09:07 AM	

+="CN75847"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	28-Feb-09	10167.00	=""	="HEALTH SERVICES INTERNATIONAL P/L"	10-May-08 09:07 AM	

+="CN75849"	"Business Planning Conference for two days"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	28-Feb-08	31-Mar-08	13309.31	=""	="PEPPERS BLUE ON BLUE RESORT"	10-May-08 09:08 AM	

+="CN75850"	"Shipping Containers X 5 & Freight Cost"	="Department of Defence"	10-May-08	="Containers and storage"	28-Feb-08	31-Mar-08	12474.00	=""	="ROYAL WOLF TRADING AUSTRALIA"	10-May-08 09:08 AM	

+="CN75851"	"HIRE OF VAN AND FUEL COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	28-Feb-08	30-Nov-08	13464.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 09:08 AM	

+="CN75856"	"BEEF TOPSIDE (2010) TYPE 1 AS PER ADFFS 5-6-2 V1 P REVIOUSLY SUPPLIED"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Feb-08	02-May-08	11760.00	=""	="TASMAN MEATS"	10-May-08 09:08 AM	

+="CN75862"	"BEEF DICED TYPE 1 KNUCKLE (2070) AS PER ADFFS 5-6- 12 PREVIOUSLY SUPPLIED"	="Department of Defence"	10-May-08	="Meat and poultry"	28-Feb-08	06-Jun-08	11284.00	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	10-May-08 09:09 AM	

+="CN75863"	"PWO K45-60 air/water cooler, Sub contract removal of water from oil, hoses & fittings, labour"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Feb-08	29-Feb-08	13586.43	=""	="VICTORIAN HYDRAULICS PTY LTD"	10-May-08 09:09 AM	

+="CN75867"	"Consultancy for A/C"	="Department of Defence"	10-May-08	="General building construction"	28-Feb-08	30-Jun-08	10615.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:09 AM	

+="CN75869"	"Consultancy for A/C"	="Department of Defence"	10-May-08	="General building construction"	28-Feb-08	30-Jun-08	10615.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:10 AM	

+="CN75872"	"SPORTS EQUIPMENT"	="Department of Defence"	10-May-08	="Sports equipment and accessories"	28-Feb-08	28-Mar-08	13662.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	10-May-08 09:10 AM	

+="CN75878"	"COURSE ATTENDANCE"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	03-Mar-08	10780.00	=""	="SOFTWARE EDUCATION AUSTRALIA"	10-May-08 09:10 AM	

+="CN75880"	"ROAD CHTR OP ASTUTE 3RAR MRE"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	28-Feb-08	10472.00	=""	="ROD PILON TRANSPORT"	10-May-08 09:11 AM	

+="CN75887"	"INTERIM MESSING SOLUTION - CONSTRUCT FENCE"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	28-Feb-08	30-Jun-08	10796.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:11 AM	

+="CN75889"	"DAIRY"	="Department of Defence"	10-May-08	="Dairy products and eggs"	26-Feb-08	31-Mar-08	12200.70	=""	="MLK DISTRIBUTORS"	10-May-08 09:12 AM	

+="CN75890"	"IQ Invision 752 Day/Night Network Camera & V6 Lens"	="Department of Defence"	10-May-08	="Photographic and recording media"	26-Feb-08	27-Feb-08	15719.00	=""	="TUNSUNA PTY LTD"	10-May-08 09:12 AM	

+="CN75893"	""CONFIRMATION ORDER ONLY""	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	26-Feb-08	26-Mar-08	11239.71	=""	="CAMERON & ASSOCIATES"	10-May-08 09:12 AM	

+="CN75894"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Feb-08	30-Apr-08	12973.40	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 09:12 AM	

+="CN75896"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	12083.78	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 09:12 AM	

+="CN75898"	"DSTO Sponsorship of the 2nd Asia Pacific Workshop on Structural Health Monitoring to be held in Melb"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Feb-08	29-Feb-08	14300.00	=""	="MONASH UNI - CASHIER"	10-May-08 09:12 AM	

+="CN75901"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Feb-08	30-Apr-08	10906.50	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 09:13 AM	

+="CN75912"	"MAINTAIN DURABILITY RIGS & PERFORM REGULAR MEASURE MENTS OF BMI PANELS TO ASSESS MOISTURE CONDIT"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Feb-08	15-May-08	11271.00	=""	="INNISFAIL SCIENTIFIC SERVICES"	10-May-08 09:14 AM	

+="CN75914"	"Health & Wellbeing Personal Trainer REF 1107/07-08"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	26-Feb-08	30-Jun-08	12000.00	=""	="SUE'S PERSONAL TRAINING"	10-May-08 09:14 AM	

+="CN75921"	"OVERHAUL AND REPAIR"	="Department of Defence"	10-May-08	="Hydraulic machinery and equipment"	28-Feb-08	13-Mar-08	13928.75	=""	="FORDHAM ENGINEERING PTY LTD"	10-May-08 09:15 AM	

+="CN75922"	"2008 CONTENT FEE FOR AIP SUBSCRIPTIONS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Feb-08	29-Feb-08	13231.74	=""	="AMERICAN INSTITUTE OF PHYSICS"	10-May-08 09:15 AM	

+="CN75923"	"FINANCE INDUCTION SUITE"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	09-Apr-08	14167.07	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:15 AM	

+="CN75933"	"ELMA TYPE 32 TOWER CHASIS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	02-May-08	13618.00	=""	="DEDICATED SYSTEMS AUSTRALIA"	10-May-08 09:16 AM	

+="CN75934"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	26-Feb-08	29-Feb-08	11000.00	=""	="OUTWARD BOUND AUSTRALIA"	10-May-08 09:16 AM	

+="CN75935"	"Cantilever Racking for C17 AME Kits"	="Department of Defence"	10-May-08	="Fabricated structural assemblies"	26-Feb-08	12-Mar-08	13214.30	=""	="MACRACK"	10-May-08 09:16 AM	

+="CN75942"	"dsto software"	="Department of Defence"	10-May-08	="Software"	18-Feb-08	31-Mar-08	12605.04	=""	="CHEMRING COUNTERMEASURES LIMITED"	10-May-08 09:17 AM	

+="CN75948"	"Stationery / Promotional Goods"	="Department of Defence"	10-May-08	="Paper Materials and Products"	19-Feb-08	26-Feb-08	12301.99	=""	="PADDYWACK PROMOTIONAL PRODUCTS"	10-May-08 09:17 AM	

+="CN75954"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	10182.00	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 09:18 AM	

+="CN75955"	"MANGEMENT FEE FOR POST EX WALLABY 07 WORKS"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Feb-08	30-Jun-08	11958.84	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 09:18 AM	

+="CN75956"	"CONTAINERS"	="Department of Defence"	10-May-08	="Containers and storage"	18-Feb-08	01-May-08	14115.20	=""	="TOLL EXPRESS"	10-May-08 09:18 AM	

+="CN75957"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	11041.89	=""	="SAAB SYSTEMS PTY LTD"	10-May-08 09:18 AM	

+="CN75960"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	10182.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 09:18 AM	

+="CN75963"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	10813.60	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 09:19 AM	

+="CN75965"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	10182.00	=""	="IBM GLOBAL SERVICES AUST LTD"	10-May-08 09:19 AM	

+="CN75966"	"Board Member"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	10182.00	=""	="RLM PTY LTD"	10-May-08 09:19 AM	

+="CN75974"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	19-Feb-08	20-Jun-08	11000.00	=""	="FORTBURN PTY LTD"	10-May-08 09:20 AM	

+="CN75975"	"ST942-Black Sled Stacker-Black with chrome frame"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	19-Feb-08	05-Mar-08	12540.00	=""	="STURDY FRAMAC"	10-May-08 09:20 AM	

+="CN75978"	"METTLER TOLEDO T50M EXCELLENCE TITRATION SYSTEM"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	19-Feb-08	11-Mar-08	15801.50	=""	="METTLER TOLEDO PTY LTD"	10-May-08 09:20 AM	

+="CN75979"	"Computer Accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	29-Feb-08	15449.79	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 09:20 AM	

+="CN75984"	"TRAINING FACILITIES"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	22-Nov-07	30-Nov-07	15429.00	=""	="HOCKEY ACT INC"	10-May-08 09:58 AM	

+="CN75995"	"TAMPER EVIDENT SEALS FOR ICT SVCS"	="Department of Defence"	10-May-08	="Security and control equipment"	16-Nov-07	16-Nov-07	10494.00	=""	="MIKOH IMAGING SYSTEMS PTY LTD"	10-May-08 09:58 AM	

+="CN76001"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	23-Nov-07	15093.61	=""	="PEOPLE & STRATEGY (ACT) PTY LTD"	10-May-08 09:59 AM	

+="CN76006"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Nov-07	28-Dec-07	13497.55	=""	="BAC SYSTEMS PTY LTD"	10-May-08 09:59 AM	

+="CN76010"	"PROCUREMENT OF PETROL OUTBOARD ENGINE (POE)"	="Department of Defence"	10-May-08	="Marine transport"	21-Nov-07	30-Jun-08	11368.50	=""	="DEFENCE MARITIME SERVICES"	10-May-08 09:59 AM	

+="CN76011"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	31-Dec-07	15551.07	=""	="AVOLUTION PTY LTD"	10-May-08 09:59 AM	

+="CN76021"	"Audio Visual System for streaming video"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	19-Nov-07	30-Dec-07	11348.47	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76026"	"Provide a New Truck Access Crossing from the Road Storage Shed."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	15570.01	=""	="CARPENTARIA SHIRE COUNCIL"	10-May-08 10:00 AM	

+="CN76030"	"LABOUR HIRE CONDUCTED IAW STANDING OFFER LH01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Nov-07	30-Jun-08	10436.80	=""	="DRAKE INTERNATIONAL"	10-May-08 10:00 AM	

+="CN76042"	"COMPUTER HARDWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	10078.13	=""	="CPL NOTTINGHILL PTY LTD"	10-May-08 10:01 AM	

+="CN76047"	"SPONSORSHIP PAYMENT"	="Department of Defence"	10-May-08	="Business administration services"	19-Nov-07	19-Nov-07	11000.00	=""	="AUSTRALIAN LOGISTICS COUNCIL"	10-May-08 10:01 AM	

+="CN76048"	"Pallet Wrapper"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	15290.00	=""	="SIGNET PTY LTD"	10-May-08 10:01 AM	

+="CN76050"	"Push to Talk analogue phone"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	21-Nov-07	30-Nov-07	11594.99	=""	="INTERQUARTZ (A'ASIA) PTY LTD"	10-May-08 10:01 AM	

+="CN76060"	"THIS P.O. IS FOR THE PROVISION OF LABOUR HIRE FOR REPACK CAMP EARMARK STORES RETURNED BY 2/14LHR."	="Department of Defence"	10-May-08	="Material packing and handling"	21-Nov-07	14-Dec-07	12552.96	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 10:02 AM	

+="CN76061"	"Supply of Analogue & Digital Line Cards To Be Installed."	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	30-Jun-08	13695.00	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 10:02 AM	

+="CN76064"	"HP xw9400 Workstation and 20" LCD Monitor"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Nov-07	15059.00	=""	="COMMANDER AUSTRALIA LTD"	10-May-08 10:02 AM	

+="CN76082"	"APP-MON2 Monitor 30 Inch Dell 30 HC ultra sharp wi"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	28-Nov-07	10395.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76087"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	09-Jun-07	30-Jun-08	15030.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:03 AM	

+="CN76091"	"Training"	="Department of Defence"	10-May-08	="Office supplies"	16-Apr-08	30-Apr-09	12651.86	=""	="EFFECTIVE PEOPLE PTY LTD"	10-May-08 10:04 AM	

+="CN76100"	"YEARLY SOFTWARE LICENSE FOR ALTAIR ENGINEERING "HY PERWORKS" SOFTWARE"	="Department of Defence"	10-May-08	="Software"	21-Nov-07	31-Oct-08	10047.81	=""	="ALTAIR ENGINEERING INC."	10-May-08 10:04 AM	

+="CN76103"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Apr-07	30-Jun-09	11170.00	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:04 AM	

+="CN76104"	"TRANSPORTATION OF VEHICLES"	="Department of Defence"	10-May-08	="Transportation services equipment"	21-Nov-07	15-Dec-07	13200.00	=""	="FREIGHTWEST"	10-May-08 10:04 AM	

+="CN76105"	"Project Echidna Supply and Installation of a Demountable Facility at 5 Aviation Regiment"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	10227.84	=""	="COATES HIRE OPERATONS PTY LTD"	10-May-08 10:04 AM	

+="CN76118"	"Office Supplies"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	26-Nov-07	30-Dec-07	11979.00	=""	="TONER EXPRESS (A'ASIA) PTY LTD"	10-May-08 10:05 AM	

+="CN76119"	"Change Champions Workshops"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	21-Nov-07	30-Nov-07	14624.99	=""	="GLOBAL LEADERSHIP FOUNDATION"	10-May-08 10:05 AM	

+="CN76121"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Jun-07	30-Jun-08	10696.25	=""	="LAW BRANKO MARIC"	10-May-08 10:05 AM	

+="CN76125"	"PVO - FILING & MAINTENANCE"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	25-Jun-08	10000.00	=""	="SMOORENBURG PATENT & TRADE MARK"	10-May-08 10:05 AM	

+="CN76128"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	14766.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:05 AM	

+="CN76135"	"POC: Kathy Elliott 6127 7234"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	02-Jul-07	30-Jun-08	12100.00	=""	="CAMPBELL NEWSAGENCY"	10-May-08 10:06 AM	

+="CN76137"	"Additional Works Air Craft Maintenance."	="Department of Defence"	10-May-08	="Aircraft"	03-Jul-07	31-Oct-07	10091.30	=""	="THE OLD AEROPLANE COMPANY"	10-May-08 10:06 AM	

+="CN76146"	"BAC WORKBENCHES 884MM X 2430MM WITH GALVANIZED BENCHTOP STANDS TYPE 84/74 BENCH BACK TYPE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	10-Dec-07	10010.00	=""	="BAC SYSTEMS PTY LTD"	10-May-08 10:06 AM	

+="CN76149"	"Health service provider - RAAF Base Richmond"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	19-Jun-07	30-Jun-08	14000.80	=""	="S NAVARATNAM"	10-May-08 10:07 AM	

+="CN76152"	"Software"	="Department of Defence"	10-May-08	="Software"	26-Nov-07	01-Feb-08	12320.00	=""	="RADIAL SOFTWARE DEVELOPMENT"	10-May-08 10:07 AM	

+="CN76154"	"ArcGIS ArcEditor 9.2 cc / ArcGIS Spatial Analyst 9.2 CC ArcGIS 3D Analyst 9.2 CC"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	28-Nov-07	10439.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 10:07 AM	

+="CN76159"	"MILK, CREAM AND YOGHURT"	="Department of Defence"	10-May-08	="Milk and butter products"	22-Apr-08	30-Jun-08	10000.00	=""	="QUEENSCO-UNITY DAIRYFOODS"	10-May-08 10:07 AM	

+="CN76168"	"Locum Physiotherapist"	="Department of Defence"	10-May-08	="Medical training and education supplies"	27-Jun-07	30-Jun-08	10508.88	=""	="CHANDLER MACLEOD GROUP"	10-May-08 10:08 AM	

+="CN76172"	"ENGINEERING SERVICES"	="Department of Defence"	10-May-08	="Professional engineering services"	12-Nov-07	30-Jun-08	11314.26	=""	="PROLOGUE EMS, PROLOGUE TELEMETRY"	10-May-08 10:08 AM	

+="CN76176"	"CPAP MACHINE"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	26-Sep-06	15-Mar-08	11625.00	=""	="ANSTEY SURGICAL PTY LTD"	10-May-08 10:08 AM	

+="CN76180"	"MAINTENANCE"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Sep-06	30-Jun-08	13258.08	=""	="ANDY LAUNDRY EQUIPMENT SERVICES"	10-May-08 10:08 AM	

+="CN76182"	"rental housing costs"	="Department of Defence"	10-May-08	="Lease and rental of property or building"	02-May-08	30-Jun-08	14080.00	=""	="DHA - CENTRAL OFFICE"	10-May-08 10:08 AM	

+="CN76184"	"toll"	="Department of Defence"	10-May-08	="Transportation components and systems"	06-Oct-06	30-Jun-08	15893.47	=""	="INTERLINK ROADS PTY LTD"	10-May-08 10:09 AM	

+="CN76191"	"Hire of casual contract staff to build rations for HWR trial"	="Department of Defence"	10-May-08	="Food and beverage industries"	27-Nov-07	12-Feb-08	14300.00	=""	="SEARSON BUCK PTY LTD"	10-May-08 10:09 AM	

+="CN76194"	"AIR 9000 PH 2."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Apr-08	30-Jun-08	15398.90	=""	="THINC PROJECTS PTY LTD"	10-May-08 10:09 AM	

+="CN76201"	"ELECTRICAL TEST TAG AND REPLACEMENT"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	27-Nov-07	19-Dec-07	15291.10	=""	="PERTH TESTING AND TAGGING"	10-May-08 10:09 AM	

+="CN76208"	"Develop & Implementation of Flora&Fauna Management Plans for the Central & Northern NSW"	="Department of Defence"	10-May-08	="Environmental management"	08-Feb-08	30-Jun-08	11979.57	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76209"	"R &D task  Soldier Combat Systems  with Swinburne"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	27-Nov-07	30-Jun-08	14850.00	=""	="SWINBURNE UNIVERSITY OF"	10-May-08 10:10 AM	

+="CN76223"	"manufacture of housing split, insulator and clamp laser as per drawing supplied."	="Department of Defence"	10-May-08	="Machinery and transport equipment manufacture"	23-Nov-07	31-Jan-08	10582.00	=""	="EAS TOOLCRAFT PTY LTD"	10-May-08 10:11 AM	

+="CN76227"	"DS-NQ-TS FURNITURE STORE 237-07/08"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	30-Jun-08	11088.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:11 AM	

+="CN76229"	"DS-NQ-TS ACCOMMODATION 238-07/08"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	30-Jun-08	12630.00	=""	="AMAZING CLEAN TOWNSVILLE"	10-May-08 10:11 AM	

+="CN76231"	"Quotation number: F-AU-136223-A"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	30-Jun-08	14411.90	=""	="SUN MICROSYSTEMS"	10-May-08 10:11 AM	

+="CN76238"	"Provision of ENGINEERING services"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	23-Mar-07	31-Jan-08	11000.00	=""	="CSIRO"	10-May-08 10:11 AM	

+="CN76240"	"Contact : Mr Dennis Keating Phone : 08 8935 4623"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	26-Mar-07	30-Jul-08	10838.85	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 10:12 AM	

+="CN76247"	"Dell 1950 Dual Quad Core with 8GB RAM"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	30-Dec-07	15061.86	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76254"	"GSS Clenaing Contract"	="Department of Defence"	10-May-08	="Floriculture and silviculture products"	12-Nov-07	30-Nov-08	13728.00	=""	="GENERAL AND WINDOW CLEANING PTY LTD"	10-May-08 10:12 AM	

+="CN76255"	"STUDENT CHAIR WITH TABLET ARM"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	14-Dec-07	12650.00	=""	="STURDY FRAMAC"	10-May-08 10:12 AM	

+="CN76257"	"FURNITURE - TAMBOUR DOOR CABINETS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	14-Dec-07	10197.00	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 10:12 AM	

+="CN76258"	"PROVISION OF MEDICAL / DENTAL SERVICES"	="Department of Defence"	10-May-08	="Medical facility products"	16-Apr-08	15-May-08	11011.00	=""	="CHANDLER MACLEOD GROUP"	10-May-08 10:13 AM	

+="CN76267"	"DRN/DSN OUTLETS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	30-Nov-07	12342.00	=""	="INTERACTIVE CABLING PTY LTD"	10-May-08 10:13 AM	

+="CN76280"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	13240.60	=""	="CANBERRA INTERNATIONAL AIRPORT PTY"	10-May-08 10:14 AM	

+="CN76284"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	13842.18	=""	="BELVISTA PROPERTIES"	10-May-08 10:14 AM	

+="CN76286"	"TRANSCRIPTION SERVICE"	="Department of Defence"	10-May-08	="Photographic and recording media"	16-Apr-08	30-Jun-08	10000.00	=""	="NATIONAL TRANSCRIPTION SERVICES"	10-May-08 10:14 AM	

+="CN76289"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	10443.00	=""	="MINTER ELLISON"	10-May-08 10:14 AM	

+="CN76290"	"REPAIRS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	13-Aug-07	30-Jun-08	12983.30	=""	="STUART BLINDS PTY LTD"	10-May-08 10:14 AM	

+="CN76295"	"PREPARATIVE HIGH-FLOW PUMP"	="Department of Defence"	10-May-08	="Industrial pumps and compressors"	23-Nov-07	07-Dec-07	12518.00	=""	="EXTECH EQUIPMENT PTY LTD"	10-May-08 10:15 AM	

+="CN76299"	"COMMUNICATIONS ITEMS"	="Department of Defence"	10-May-08	="Telecommunications media services"	23-Nov-07	23-Nov-07	12841.40	=""	="TC COMMUNICATIONS PTY LTD"	10-May-08 10:15 AM	

+="CN76300"	"Electrical Portable Appliance Testing of Equip At RAAF Base East Sale"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	12-Nov-07	30-Jun-08	13270.13	=""	="HAZCON"	10-May-08 10:15 AM	

+="CN76301"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	23-Nov-07	10120.00	=""	="ENGINEERS AUSTRALIA"	10-May-08 10:15 AM	

+="CN76302"	"Garden Maintenance Avenue of Honour"	="Department of Defence"	10-May-08	="Environmental Services"	25-Jul-07	30-Jun-08	11738.10	=""	="BIZEE BEE GARDEN SERVICES"	10-May-08 10:15 AM	

+="CN76309"	"TO REMEDIATE INFRASTRUCTURE"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	23-Nov-07	12153.90	=""	="NBC COMMUNICATIONS"	10-May-08 10:15 AM	

+="CN76321"	"LABOUR HIRE P4 ANNUAL CAM"	="Department of Defence"	10-May-08	="Temporary personnel services"	10-Oct-07	10-Jan-08	13414.13	=""	="DRAKE AUSTRALIA PTY LTD"	10-May-08 10:16 AM	

+="CN76322"	"Line rental"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	07-Aug-07	15-Feb-08	12965.40	=""	="TELSTRA"	10-May-08 10:16 AM	

+="CN76326"	"Prof serv"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Sep-07	30-Jun-08	15545.45	=""	="KEY PEOPLE SOLUTIONS PTY LTD"	10-May-08 10:16 AM	

+="CN76328"	"PUCKAPUNYAL MILITARY AREA CERTIFICATION AUDITS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	11550.00	=""	="DAVIS LANGDON AUSTRALIA"	10-May-08 10:16 AM	

+="CN76329"	"CLIENT SERVICES"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	07-Dec-07	10-Jan-08	13818.27	=""	="THE VALUE CREATION GROUP PTY LTD"	10-May-08 10:16 AM	

+="CN76330"	"VENUE HIRE"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	05-Sep-07	19-Dec-07	12315.02	=""	="THE KOKODA FOUNDATION"	10-May-08 10:16 AM	

+="CN76334"	"TECHNICAL CONTACT: Greg Hemsley PHONE: (08) 8259 5339"	="Department of Defence"	10-May-08	="Temporary personnel services"	06-Sep-07	30-Apr-08	12671.51	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 10:17 AM	

+="CN76337"	"CONSTRUCTION OF POOL SHADE CLOTH FLLA B"	="Department of Defence"	10-May-08	="General building construction"	08-Jan-08	11-Jan-08	10246.81	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:17 AM	

+="CN76340"	"supply of groceries seqld"	="Department of Defence"	10-May-08	="Processed and prepared meats"	11-Sep-07	30-Jun-08	12700.00	=""	="WOOLWORTHS (Q'LAND) PTY LIMITED"	10-May-08 10:17 AM	

+="CN76343"	"50% DEPOSIT SUPPLY AND INSTALLATION OF BLINDS 204, 208, 212 LAGOS CIRCLE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	31-Jan-08	10275.80	=""	="HUNTER DOUGLAS SINGAPORE PTE LTD"	10-May-08 10:17 AM	

+="CN76348"	"Team building activity for staff and long course participants ,regional Defence Cooperation ( Junga"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Sep-07	05-Oct-07	12818.63	=""	="THE JUNGAI CENTRE"	10-May-08 10:17 AM	

+="CN76353"	"CONTAINER HIRE FLLA B"	="Department of Defence"	10-May-08	="Containers and storage"	02-Jan-08	08-Jan-08	12621.13	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:18 AM	

+="CN76358"	"Services under Standing Offer SO 03/21"	="Department of Defence"	10-May-08	="Temporary personnel services"	23-Apr-08	30-Apr-08	14286.80	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 10:18 AM	

+="CN76359"	"Provide Executive Support and advice for Division"	="Department of Defence"	10-May-08	="Additives"	30-Aug-07	31-Dec-07	13062.50	=""	="CWCC GROUP PTY LTD"	10-May-08 10:18 AM	

+="CN76362"	"Catering - Financial Management"	="Department of Defence"	10-May-08	="Food and beverage industries"	28-Aug-07	30-Jun-08	10350.00	=""	="LOBBY CAFE"	10-May-08 10:18 AM	

+="CN76365"	"advertising costs SW Wtown ads"	="Department of Defence"	10-May-08	="Advertising"	14-Dec-07	11-Jan-08	10805.44	=""	="HMA BLAZE PTY LTD"	10-May-08 10:18 AM	

+="CN76367"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	15835.18	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76372"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	31-Aug-07	31-Jan-08	13622.99	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:19 AM	

+="CN76380"	"EXTRA HIGH PRESSURE CYLINDER MAINTENANCE"	="Department of Defence"	10-May-08	="Chemicals including Bio Chemicals and Gas Materials"	29-Apr-08	30-Jun-08	11000.00	=""	="BOC LIMITED"	10-May-08 10:19 AM	

+="CN76383"	"6 x Air-Conditioners"	="Department of Defence"	10-May-08	="Heating and ventilation and air circulation"	16-Jan-08	17-Jan-08	11249.96	=""	="SAUDI NAVAL SUPPORT COMPANY"	10-May-08 10:20 AM	

+="CN76390"	"BOTTLED SPRING WATER FOR DS CNNSW WLM"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	09-Jul-07	30-Jun-08	10200.00	=""	="PALM SPRINGS HUNTER"	10-May-08 10:20 AM	

+="CN76391"	"CLEANING EQUIPMENT AND SUPPLIES  REQUIRED FOR RTF-4 CONCENTRATION / TRAINING"	="Department of Defence"	10-May-08	="Cleaning Equipment and Supplies"	07-Dec-07	20-Jan-08	10181.95	=""	="BUNZL LTD"	10-May-08 10:20 AM	

+="CN76392"	"Freight of DS-WA Registries"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	09-Jul-07	30-Jun-08	10450.00	=""	="STAR TRACK EXPRESS"	10-May-08 10:20 AM	

+="CN76396"	"Approved by Bruce Sheffield - OH&S requirements"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	10-Jul-07	30-Jun-08	13000.00	=""	="CRS AUSTRALIA"	10-May-08 10:20 AM	

+="CN76397"	"MARQUEE HIRE FOR FBW RECEPTION 02 NOV 2007"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	02-Nov-07	02-Nov-07	10040.20	=""	="BLUE BAY PARTY HIRE"	10-May-08 10:20 AM	

+="CN76404"	"Technical Contact - Karen Wilson Phone 08 8259 6709"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	03-Jul-07	21-Dec-07	10219.80	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:21 AM	

+="CN76408"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Published Products"	21-Apr-08	30-Jun-08	11619.30	=""	="INFOFOCUS AUSTRALIA"	10-May-08 10:21 AM	

+="CN76409"	"QANTAS ACCOUNT HMAS COLLINS DEC 2007"	="Department of Defence"	10-May-08	="Transportation components and systems"	31-Dec-07	01-Feb-08	11500.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76411"	"QANTAS ACCOUNT HMAS WALLER DEC 2007"	="Department of Defence"	10-May-08	="Transportation components and systems"	31-Dec-07	01-Feb-08	11518.06	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76413"	"TRAVEL FOR OP ANODE"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Dec-07	01-Feb-08	14292.20	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76415"	"AIRFARES QANTAS"	="Department of Defence"	10-May-08	="Transportation services equipment"	30-Nov-07	15-Jan-08	13950.72	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76418"	"GAS"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	04-Jul-07	30-Jun-08	12100.00	=""	="KLEANHEAT GAS"	10-May-08 10:22 AM	

+="CN76423"	"QANTAS STATEMENT 9RQR 30 NOV 07"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	21-Dec-07	15292.52	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:22 AM	

+="CN76426"	"services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	05-Jul-07	30-Jun-08	11000.00	=""	="AIMTEC PTY LTD"	10-May-08 10:22 AM	

+="CN76431"	"BBQ MEAT FOR XMAS IN IRAQ"	="Department of Defence"	10-May-08	="Industrial food and beverage equipment"	18-Dec-07	19-Dec-07	10816.81	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76432"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	18-Jul-07	30-Jun-08	11264.44	=""	="SAI GLOBAL LTD"	10-May-08 10:22 AM	

+="CN76437"	"Provision of photo copy services as per standing Defence contract"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	19-Jul-07	30-Jun-08	10000.00	=""	="FUJI XEROX AUST PTY LTD"	10-May-08 10:23 AM	

+="CN76439"	"Hydraulic Maintenance and repair to LIF rig during test running phase"	="Department of Defence"	10-May-08	="Hydraulic machinery and equipment"	19-Jul-07	30-Jun-08	13200.00	=""	="FORTBURN PTY LTD"	10-May-08 10:23 AM	

+="CN76445"	"PROVISION OF SECURE FREIGHT SERVICES FOR ICT FOR FY 2007-2008 AT RAAF BASE WILLIAMTOWN"	="Department of Defence"	10-May-08	="Transport operations"	29-Apr-08	30-Jun-08	11000.00	=""	="TNT EXPRESS"	10-May-08 10:23 AM	

+="CN76448"	"Caps"	="Department of Defence"	10-May-08	="Clothing"	30-Sep-07	21-Dec-07	10375.00	=""	="ACCESS PROMOTIONAL PRODUCTS PTY"	10-May-08 10:23 AM	

+="CN76454"	"FOODSTUFFS"	="Department of Defence"	10-May-08	="Food and Beverage Products"	20-Dec-07	20-Dec-07	10947.28	=""	="SYARIKAT OOI MINI MARKET"	10-May-08 10:24 AM	

+="CN76456"	"QANTAS BILL NOV, C/2 HSB"	="Department of Defence"	10-May-08	="Recreational aircraft"	20-Dec-07	03-Aug-08	10504.27	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:24 AM	

+="CN76458"	"LEASING OF MANITOU FORKLIFT IN IRAQ"	="Department of Defence"	10-May-08	="Truck tractors"	14-Dec-07	20-Dec-07	11541.12	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:24 AM	

+="CN76462"	"DEFENSIVE DRIVING COURSES MAY TO JULY 2007"	="Department of Defence"	10-May-08	="Specialised and recreational vehicles"	18-Oct-07	20-Dec-07	10743.74	=""	="ARMORGROUP"	10-May-08 10:24 AM	

+="CN76463"	"Contact Officer Brendan Mckeon Phone 89354203"	="Department of Defence"	10-May-08	="Scrap and waste materials"	12-Jul-07	30-Jul-08	11000.00	=""	="DARWIN CITY COUNCIL"	10-May-08 10:24 AM	

+="CN76464"	"DEFENSIVE DRIVING COURSES SEP TO OCT 2007"	="Department of Defence"	10-May-08	="Specialised and recreational vehicles"	18-Oct-07	20-Dec-07	10743.74	=""	="ARMORGROUP"	10-May-08 10:24 AM	

+="CN76466"	"MEDICAL SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	10911.20	=""	="ROBERT HOSKING"	10-May-08 10:24 AM	

+="CN76467"	"TELSTRA LINE RENTAL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jul-07	30-Jun-08	10822.33	=""	="TELSTRA"	10-May-08 10:25 AM	

+="CN76468"	"HIRE CAR"	="Department of Defence"	10-May-08	="Transportation components and systems"	29-Sep-07	21-Dec-07	14479.79	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:25 AM	

+="CN76473"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	17-Jul-07	30-Jun-08	11451.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:25 AM	

+="CN76474"	"FOOD REQUIRED BY SECDET FOR XMAS DAY LUNCH"	="Department of Defence"	10-May-08	="Meat and poultry products"	20-Dec-07	04-Jan-08	15129.87	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:25 AM	

+="CN76475"	"MINOR EXPENSE GOODS"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Dec-07	29-Dec-07	11974.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:25 AM	

+="CN76477"	"MINOR EXPENSE GOODS"	="Department of Defence"	10-May-08	="Paints and primers and finishes"	07-Nov-07	31-Dec-07	11483.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:25 AM	

+="CN76480"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	17-Jul-07	30-Jun-08	11000.00	=""	="DAVIS EDITORIAL SERVICES"	10-May-08 10:25 AM	

+="CN76482"	"SERVICE AND REPAIRS TO FORKLIFTS"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	18-Jul-07	30-Jun-08	11924.00	=""	="TOYOTA MATERIAL HANDLING AUSTRALIA"	10-May-08 10:25 AM	

+="CN76492"	"TRAINING COURSES"	="Department of Defence"	10-May-08	="Human resources services"	29-Nov-07	30-Jan-08	12078.00	=""	="ALPHAWEST PTY LTD"	10-May-08 10:26 AM	

+="CN76495"	"QANTAS PASSENGER  AIRFARES FOR AUSTRALIAN DEFENCE BASIC FLYING SCHOOL AT TAMWORTH FOR NOVEMBER 2007"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	10208.26	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76496"	"FURNITURE FOR SFTC SINGLETON"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	29-Nov-07	21-Dec-07	14998.12	=""	="NOM OFFICE SOLUTIONS"	10-May-08 10:26 AM	

+="CN76502"	"Technical Contact: N Tay PH: 02 6128 6411"	="Department of Defence"	10-May-08	="Medical training and education supplies"	29-Nov-07	12-Dec-07	10294.00	=""	="UMART ONLINE"	10-May-08 10:27 AM	

+="CN76505"	"VEHICLE LEASE FLLA   - DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	03-Dec-08	13287.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76506"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	31-Mar-08	10956.00	=""	="CLAYTON UTZ"	10-May-08 10:27 AM	

+="CN76508"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Nov-07	13278.37	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:27 AM	

+="CN76511"	"TRUCK AND TRAILOR LEASE DEC 07 FLLA K"	="Department of Defence"	10-May-08	="Truck tractors"	31-Dec-07	03-Jan-08	10062.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76513"	"RESEARCH SERVICES- PROJECT DENGUE"	="Department of Defence"	10-May-08	="Medical science research and experimentation"	05-Sep-07	04-Jan-08	12714.27	=""	="QUT STUDENT FEES OFFICE"	10-May-08 10:27 AM	

+="CN76516"	"ELECTRICAL SERVICING AND REPAIR"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	28-Nov-07	30-Jun-08	11000.00	=""	="SUPERLEA AUSTEST ELEC PTY LTD"	10-May-08 10:28 AM	

+="CN76517"	"Medical Services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Dec-07	20-Jan-08	14678.86	=""	="AVPHARM PTY LTD"	10-May-08 10:28 AM	

+="CN76518"	"traning for Tec Support"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Nov-07	31-Dec-07	13695.00	=""	="PINK ELEPHANT INTERNATIONAL PTY LTD"	10-May-08 10:28 AM	

+="CN76519"	"Medical Services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	11-Dec-07	13-Jan-08	14485.84	=""	="MONEY"	10-May-08 10:28 AM	

+="CN76530"	"FURNITURE FOR 310SQN"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	29-Nov-07	21-Dec-07	15544.69	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:28 AM	

+="CN76531"	"SN02525 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Dec-07	30-Jun-08	15965.31	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:28 AM	

+="CN76535"	"RCB 80 FRESH RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	13-Jan-08	01-Feb-08	14713.92	=""	="SINGAPORE FOOD INDUSTRIES LIMITED"	10-May-08 10:29 AM	

+="CN76537"	"MSL TRAVEL BILLS JANUARY"	="Department of Defence"	10-May-08	="Aircraft"	01-Feb-08	01-Feb-08	14853.76	=""	="MSL TRAVEL DN BHD"	10-May-08 10:29 AM	

+="CN76544"	"SCPE - INTERCONNECTING CISCO NETWORKING DEVICES"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Feb-08	31-Dec-08	11900.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 10:29 AM	

+="CN76548"	"QANTAS ACCOUNT"	="Department of Defence"	10-May-08	="Recreational aircraft"	30-Nov-07	05-Feb-08	10084.28	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:29 AM	

+="CN76552"	"QANTAS BILL"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Jun-08	12808.68	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76556"	"FOOD SERVICES"	="Department of Defence"	10-May-08	="Bread and bakery products"	28-Dec-07	30-Jun-08	12139.57	=""	="PDL TOLL"	10-May-08 10:30 AM	

+="CN76562"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	15480.54	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76563"	"VIDEO/DVD PRODUCTION"	="Department of Defence"	10-May-08	="Photographic and recording media"	30-Nov-07	30-Nov-07	12804.00	=""	="DYNAMIC MEDIA PTY LTD"	10-May-08 10:30 AM	

+="CN76565"	"warehousing and storage of circuit cards"	="Department of Defence"	10-May-08	="Containers and storage"	29-Nov-07	27-Dec-07	12279.30	=""	="BAC SYSTEMS PTY LTD"	10-May-08 10:31 AM	

+="CN76568"	"HIRE CAR FOR RLLT AND COURSE TRAVEL DEFENCE MBRS"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	22-Jan-08	31-Dec-08	12848.03	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:31 AM	

+="CN76577"	"MEDICAL EXPRENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	07-Jan-08	14-Feb-08	12700.00	=""	="PIVET MEDICAL CENTRE"	10-May-08 10:31 AM	

+="CN76579"	"02-239906 30NOV07 LINE ITEM 10602 - 10635"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	11833.82	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76582"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	13594.45	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 10:32 AM	

+="CN76584"	"Purchase of Communications Equipment"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Nov-07	26-Dec-07	10236.60	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 10:32 AM	

+="CN76588"	"Purchase of IT Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	04-Dec-07	13564.28	=""	="COMMANDER (ACT)"	10-May-08 10:32 AM	

+="CN76589"	"SEA FREIGHT"	="Department of Defence"	10-May-08	="Marine transport"	06-Feb-08	06-Feb-08	11514.80	=""	="TOLL INTERNATIONAL PTY LTD"	10-May-08 10:32 AM	

+="CN76590"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	10248.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:32 AM	

+="CN76591"	"ARMOURED WINDSCREEN FOR UA TOYOTA LANDCRUISER"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	06-Feb-08	10952.28	=""	="STOOF INTERNATIONAL GMBH"	10-May-08 10:32 AM	

+="CN76595"	"PAYMENT FOR LIVE TISSUE TRAINING"	="Department of Defence"	10-May-08	="Wound care products"	15-Jan-08	31-Jan-08	10155.62	=""	="THE UNIVERSITY OF WESTERN AUSTRALIA"	10-May-08 10:32 AM	

+="CN76605"	"LACE - ROBERT WYNNE COMCARE OH&S INVESTIGATION"	="Department of Defence"	10-May-08	="Legal services"	29-Jan-08	05-Feb-08	11365.20	=""	="DLA PHILLIPS FOX"	10-May-08 10:33 AM	

+="CN76606"	"SUPPLY OF 4 x LABOURERS FOR PERIOD 07 DEC TO 21 DEC 2007 AT RAAF AMBERLEY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	21-Dec-07	11523.07	=""	="RECRUITMENT QUEENSLAND"	10-May-08 10:33 AM	

+="CN76609"	"HIRE CAR FOR RLLT AND COURSE TRAVEL DEFENCE MBRS"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	23-Jan-08	31-Dec-08	13330.45	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:33 AM	

+="CN76620"	"fresh fish brisbane"	="Department of Defence"	10-May-08	="Fish"	27-Nov-07	30-Jul-08	15400.00	=""	="GERMAIN SEAFOODS"	10-May-08 10:34 AM	

+="CN76624"	"REPLACEMENT/UPGRADE OF EXTERNAL VOICE CABLING BLDGS A28, A30 & A26"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	27-Nov-07	21-Dec-07	15815.91	=""	="MULTISYSTEM COMMUNICATIONS"	10-May-08 10:34 AM	

+="CN76626"	"AIR CONDITIONING"	="Department of Defence"	10-May-08	="Environmental control systems"	27-Nov-07	30-Jan-08	15675.00	=""	="CAPITAL INTERIORS"	10-May-08 10:34 AM	

+="CN76627"	"CYSYS AWARDS 21/11/2007"	="Department of Defence"	10-May-08	="Sales and business promotion activities"	21-Nov-07	21-Jan-08	14563.15	=""	="DMA"	10-May-08 10:34 AM	

+="CN76629"	"ArcGIS ArcEditor 9.2 cc / ArcGIS Spatial Analyst 9.2 CC ArcGIS 3D Analyst 9.2 CC"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	22-Jan-08	10439.00	=""	="ESRI AUSTRALIA PTY LTD"	10-May-08 10:34 AM	

+="CN76631"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2335675"	="Department of Defence"	10-May-08	="Legal services"	28-Sep-06	22-Jan-08	11882.20	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:35 AM	

+="CN76632"	"LOUNGES"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	27-Nov-07	25-Dec-07	12820.50	=""	="CUIR CARE TECHNOLOGY"	10-May-08 10:35 AM	

+="CN76645"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	09-Dec-07	12-Jan-08	12825.00	=""	="ROYAL PERTH HOSPITAL"	10-May-08 10:35 AM	

+="CN76651"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	21-Jan-08	15082.79	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76663"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	13410.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76666"	"DEMAND NO. PGIS-79CD9P"	="Department of Defence"	10-May-08	="Defrosting and defogging systems"	28-Nov-07	05-Dec-07	11167.20	=""	="GARRARDS PESITCIDES"	10-May-08 10:37 AM	

+="CN76669"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	22-Jan-08	14358.41	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:37 AM	

+="CN76671"	"QANTAS INVOICE HMAS HUON DEC 07"	="Department of Defence"	10-May-08	="Passenger transport"	31-Dec-07	23-Jan-08	15625.27	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:37 AM	

+="CN76680"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	28-Nov-07	08-Feb-08	13389.42	=""	="UNIVERSITY OF KANSAS"	10-May-08 10:37 AM	

+="CN76687"	"QANTAS BILL NOV 07"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	30-Nov-07	29-Jan-08	10056.43	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:38 AM	

+="CN76693"	"VEHICLE LEASE FLLA"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	29-Jan-08	13923.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76713"	"QANTAS ACCOUNT JMCO ADL DEC 07"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Dec-07	31-Dec-07	12515.47	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:39 AM	

+="CN76717"	"AUSTRALIA DAY BBQ PACK"	="Department of Defence"	10-May-08	="Processed and prepared meats"	22-Jan-08	22-Jan-08	12098.55	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:39 AM	

+="CN76719"	"AUSTRALIA DAY BBQ PACK"	="Department of Defence"	10-May-08	="Processed and prepared meats"	22-Jan-08	22-Jan-08	15043.22	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76720"	"TRANSCRIPTION SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	12950.00	=""	="NATIONAL TRANSCRIPTION SERVICES"	10-May-08 10:40 AM	

+="CN76723"	"STORAGE FEE FLLA AFG"	="Department of Defence"	10-May-08	="Containers and storage"	22-Jan-08	24-Jan-08	12766.34	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76726"	"LEASE OF 1 13K MANITOU FORKLIFT"	="Department of Defence"	10-May-08	="Truck tractors"	14-Jan-08	14-Jan-08	11190.17	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:40 AM	

+="CN76730"	"Routine -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Nov-07	30-Jun-08	12154.41	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:40 AM	

+="CN76731"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	07-Jan-08	13860.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:40 AM	

+="CN76745"	"Project Support to WSD"	="Department of Defence"	10-May-08	="Management support services"	03-Dec-07	30-Apr-08	14850.01	=""	="BLUE SWIMMER CONSULTING"	10-May-08 10:41 AM	

+="CN76747"	"COMPUTER INCLUDES DVD BURNER AND AT2701 SC NIC CAR"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	21-Dec-07	11328.77	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:41 AM	

+="CN76755"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	04-Dec-07	30-Jun-08	12564.13	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:42 AM	

+="CN76760"	"CP Routine - 4500602441"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	15164.34	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76763"	"SAM Key Management System"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	04-Dec-07	13-Dec-07	15595.80	=""	="CIC SECURE PTY LTD"	10-May-08 10:42 AM	

+="CN76765"	"Freight for excercise Afghan Dusk"	="Department of Defence"	10-May-08	="Mass transfer equipment"	04-Dec-07	18-Dec-07	10220.00	=""	="SIMON NATIONAL CARRIERS"	10-May-08 10:42 AM	

+="CN76768"	"NWCC DOCUMENTATION SCANNING COSTS"	="Department of Defence"	10-May-08	="Reproduction services"	26-Nov-07	26-Nov-07	11030.48	=""	="IRON MOUNTAIN DATASHRED"	10-May-08 10:42 AM	

+="CN76769"	"Sun products"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Dec-07	21-Dec-07	11494.73	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 10:42 AM	

+="CN76772"	"Imm / Urg -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Nov-07	30-Jun-08	12547.96	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76778"	"Routine -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Nov-07	30-Jun-08	15026.51	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:43 AM	

+="CN76782"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	31-Oct-07	10383.80	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:43 AM	

+="CN76784"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	31-Oct-07	14535.12	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:43 AM	

+="CN76786"	"server"	="Department of Defence"	10-May-08	="Hardware"	30-Jul-07	30-Jun-08	12487.20	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 10:43 AM	

+="CN76788"	"COURSE TRANSPORT (HIRE VEHICLES)"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	24-Oct-07	30-Jun-08	15156.38	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:43 AM	

+="CN76790"	"STUDNET AND STAFF MOVT"	="Department of Defence"	10-May-08	="Aircraft passenger restraints"	31-Oct-07	30-Jun-08	12353.54	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:44 AM	

+="CN76794"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	01-Nov-07	05-Dec-07	10000.00	=""	="PIVET MEDICAL CENTRE"	10-May-08 10:44 AM	

+="CN76795"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	04-Dec-07	04-Dec-07	10100.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:44 AM	

+="CN76796"	"VEHICLE LEASE FLLA  3"	="Department of Defence"	10-May-08	="Motor vehicles"	20-Nov-07	30-Nov-07	13931.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76800"	"OFFICE BUILDING HIRE"	="Department of Defence"	10-May-08	="Prefabricated structures"	27-Oct-07	30-Nov-07	15693.47	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76805"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	15000.00	=""	="MWT GROUP"	10-May-08 10:44 AM	

+="CN76806"	"AFPO 11 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	13887.70	=""	="AUSTRALIA POST"	10-May-08 10:44 AM	

+="CN76813"	"MULTILAYERS, PRE DEVELOPMENT SERVICE, TESTING"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	11637.16	=""	="COMMANDER (ACT)"	10-May-08 10:45 AM	

+="CN76843"	"fees"	="Department of Defence"	10-May-08	="Paper Materials and Products"	11-Oct-07	30-Nov-07	10759.10	=""	="OFFICE TO THE OFFICIAL SECRETARY"	10-May-08 10:47 AM	

+="CN76844"	"Payment for Tax Invoice 1369442 for scanners for O"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jun-08	10973.60	=""	="RICOH AUSTRALIA PTY LTD"	10-May-08 10:47 AM	

+="CN76847"	"QANTAS PAYMENT FOR 4 FD REGT"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	13764.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:47 AM	

+="CN76850"	"POC:Kevin Dolley 02 626 50864"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	30-Nov-07	30-Jun-08	13939.72	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 10:47 AM	

+="CN76851"	"modify 13 foot containers"	="Department of Defence"	10-May-08	="Containers and storage"	14-Nov-07	22-Nov-07	15510.00	=""	="IB SUPPLIES PTY LTD"	10-May-08 10:48 AM	

+="CN76852"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Nov-07	29-Feb-08	11674.30	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:48 AM	

+="CN76861"	"QANTAS ACCOUNT"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Dec-07	12376.80	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:48 AM	

+="CN76865"	"LEGAL PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-Nov-07	20-Nov-07	10349.11	=""	="THOMSON RICH O'CONNOR"	10-May-08 10:48 AM	

+="CN76867"	"DEFENCE MEMBER TRAVEL HERTZ"	="Department of Defence"	10-May-08	="Transportation services equipment"	24-Jun-07	14-Nov-07	10294.22	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76871"	"DEFENCE MEMBER TRAVEL HERTZ"	="Department of Defence"	10-May-08	="Transportation services equipment"	24-Aug-07	14-Nov-07	10785.25	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:49 AM	

+="CN76873"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	18-Oct-07	23-Nov-07	12825.00	=""	="HEALTH CORPORATE NETWORK"	10-May-08 10:49 AM	

+="CN76875"	"STUDNET AND STAFF MOVT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	30-Sep-07	30-Jun-08	14185.55	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76877"	"QANTAS"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Oct-07	16-Nov-07	12572.43	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76879"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	01-Nov-07	05-Dec-07	10800.00	=""	="PIVET MEDICAL CENTRE"	10-May-08 10:49 AM	

+="CN76882"	"Modify pipework and model components of CH-47D IR rig, rockwool insulation and aluminium cladding"	="Department of Defence"	10-May-08	="Fabricated pipe assemblies"	30-Nov-07	14-Dec-07	14579.84	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:49 AM	

+="CN76883"	"Supply of Passport Photos to 3 Brigade"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Nov-07	31-Dec-07	13775.81	=""	="TERRY WHITE CHEMIST"	10-May-08 10:49 AM	

+="CN76888"	"NPI NEPM IMPLEMENTATION STUDY-ALTERNATE OPTION REP PARSONS BRINCKERHOFF AUSTRALIA PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	13179.65	=""	="PARSON BRINKERHOFF AUSTRALIA"	10-May-08 10:50 AM	

+="CN76889"	"Air Conditioners"	="Department of Defence"	10-May-08	="Heating and ventilation and air circulation"	10-Nov-07	23-Nov-07	10851.57	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76891"	"vehicle lease"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Oct-07	23-Nov-07	13433.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76893"	"CONTAINER HIRE"	="Department of Defence"	10-May-08	="Containers and storage"	04-Nov-07	23-Nov-07	12671.61	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76896"	"Travel S/0 45910"	="Department of Defence"	10-May-08	="Computer services"	30-Nov-07	30-May-08	11550.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 10:50 AM	

+="CN76898"	"Server Cabinates"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	05-Dec-07	13251.70	=""	="SERVER RACKS AUSTRALIA"	10-May-08 10:50 AM	

+="CN76921"	"LEGAL PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	22-Aug-07	30-Nov-07	10273.20	=""	="MORGAN BUCKLEY"	10-May-08 10:52 AM	

+="CN76928"	"SERVICE AGREEMENT FOR VARIAN INSTRUMENT IN AVD"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	30-Nov-07	12430.00	=""	="VARIAN AUSTRALIA PTY LTD"	10-May-08 10:52 AM	

+="CN76930"	"SANYO PROJECTOR"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	22-Nov-07	30-Jun-08	11757.34	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 10:52 AM	

+="CN76937"	"04-422354 OCTOBER 2007 STATEMENT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	13-Dec-07	11266.59	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:53 AM	

+="CN76941"	"CATERING SERVICES FOR PACIFIC REACH CONFERENCE 27-28/3/2007"	="Department of Defence"	10-May-08	="Packaged combination meals"	02-Nov-07	30-Dec-07	14301.99	=""	="HEYDER & SHEARS CATERING"	10-May-08 10:53 AM	

+="CN76944"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	12510.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 10:53 AM	

+="CN76946"	"Hudraulic support and parts for CB Test rigs"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	30-Jun-08	10000.00	=""	="FORTBURN PTY LTD"	10-May-08 10:53 AM	

+="CN76947"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	15965.31	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76949"	"QANTAS INVOICES 31 AUG 07 AND 30 SEP 07"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Sep-07	14-Nov-07	13888.48	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:53 AM	

+="CN76957"	"Provision of SW J Mcnaughton for DCO DArwin"	="Department of Defence"	10-May-08	="Human resources services"	14-Nov-07	14-Dec-07	14209.14	=""	="REED PERSONNEL SERVICES PT LTD"	10-May-08 10:54 AM	

+="CN76959"	"Enterprise thinking September 07"	="Department of Defence"	10-May-08	="Environmental Services"	30-Sep-07	30-Jun-08	11626.07	=""	="ENTERPRISE CLARITY PTY LTD"	10-May-08 10:54 AM	

+="CN76965"	"INSTALLATION OF CCTV AND ACCESS"	="Department of Defence"	10-May-08	="Security and control equipment"	20-Jun-07	12-Dec-07	14734.50	=""	="CHUBB SECURITY AUSTRALIA"	10-May-08 10:54 AM	

+="CN76974"	"PROVISION OF ICE MACHINE, REQUIRED TO COMBAT HEAT STRESS DURING TRAINING."	="Department of Defence"	10-May-08	="Domestic Appliances and Supplies and Consumer Electronic Products"	22-Nov-07	18-Dec-07	12155.00	=""	="ICE MACHINES QLD"	10-May-08 10:55 AM	

+="CN76977"	"Flights for DCO related. Assesment Centres, educ"	="Department of Defence"	10-May-08	="Aircraft"	30-Sep-07	12-Dec-07	15101.20	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:55 AM	

+="CN76981"	"CATERING"	="Department of Defence"	10-May-08	="Restaurants and catering"	22-Nov-07	22-Nov-07	11117.13	=""	="SERCO SODEXHO DEFENCE SERVICES"	10-May-08 10:55 AM	

+="CN76989"	"Research Agreement"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	01-Feb-08	14547.40	=""	="SWINBURNE UNIVERSITY OF"	10-May-08 11:41 AM	

+="CN76999"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	27-Jun-08	11769.60	=""	="AUSTRAINING NSW PTY LTD"	10-May-08 11:41 AM	

+="CN77004"	"Sartorius ME614S Analytical balance with old balan -ce trade in discount  & shipping"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	16-Jan-08	31-Jan-08	15463.80	=""	="SARTORIUS AUSTRALIA PTY LTD"	10-May-08 11:41 AM	

+="CN77011"	"INTERIM WORKS - TRAINEE REHABILITATION WING, MOORE NSW."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	14572.80	=""	="ACCESS HEALTH PTY LTD"	10-May-08 11:42 AM	

+="CN77019"	"OFFICE FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Jan-08	15-Feb-08	14744.40	=""	="OFFICEMAX"	10-May-08 11:42 AM	

+="CN77022"	"GROCERIES"	="Department of Defence"	10-May-08	="Industrial food and beverage equipment"	16-Jan-08	24-Feb-08	12264.85	=""	="BID VEST BURLEIGH MARR"	10-May-08 11:43 AM	

+="CN77024"	"Replacement of projector bulbs for HQJOC Projector"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	12260.78	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:43 AM	

+="CN77026"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printed media"	16-Jan-08	30-Mar-08	11506.00	=""	="CANBERRA MAILING & ENVELOPES"	10-May-08 11:43 AM	

+="CN77044"	"warranties"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	30-Mar-08	10258.60	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	10-May-08 11:44 AM	

+="CN77046"	"Onsite consulting"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	17-Jan-08	04-Feb-08	10419.95	=""	="GREEN HILLS SOFTWARE INC."	10-May-08 11:44 AM	

+="CN77052"	"ENC ANALYSER AND ENC DESIGNER SUPPORT"	="Department of Defence"	10-May-08	="Software"	17-Jan-08	16-Jan-09	13901.80	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:44 AM	

+="CN77057"	"HP xw8400 server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	18-Feb-08	10099.10	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 11:45 AM	

+="CN77059"	"manufacture wave shaper components"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	01-Feb-08	18-Feb-08	11033.22	=""	="ESSTEK CNC"	10-May-08 11:45 AM	

+="CN77061"	"PARTS"	="Department of Defence"	10-May-08	="Hardware"	01-Feb-08	28-Mar-08	11322.54	=""	="TENIX DEFENCE PTY LTD, LAND"	10-May-08 11:45 AM	

+="CN77063"	"Training program"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Feb-08	29-Feb-08	12650.02	=""	="D'ARCY CONSULTING GROUP"	10-May-08 11:45 AM	

+="CN77067"	"Colour Plotter"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	14-Feb-08	11509.30	=""	="ASI SOLUTIONS"	10-May-08 11:45 AM	

+="CN77088"	"Manufacture of cable/freight"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	04-Feb-08	30-May-08	10694.53	=""	="UNDERWATER VIDEO SYSTEMS PTY LTD"	10-May-08 11:46 AM	

+="CN77094"	"Training for 6 Staff"	="Department of Defence"	10-May-08	="Medical training and education supplies"	04-Feb-08	05-Mar-08	10998.90	=""	="MASER TECHNOLOGY GROUP PTY LTD"	10-May-08 11:47 AM	

+="CN77104"	"Office Furniture"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	04-Feb-08	29-Feb-08	15582.60	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	10-May-08 11:48 AM	

+="CN77105"	"STANDING OFFER 002/84-53"	="Department of Defence"	10-May-08	="Material handling machinery and equipment"	15-Jan-08	31-Jan-08	10953.80	=""	="FORDHAM ENGINEERING PTY LTD"	10-May-08 11:48 AM	

+="CN77115"	"Road tpt of containers and MHI ISO Op Outreach for WARRURI"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	13310.00	=""	="PDL TOLL"	10-May-08 11:48 AM	

+="CN77116"	"Training"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Feb-08	29-Feb-08	15290.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 11:48 AM	

+="CN77118"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN POINT COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	15810.43	=""	="E S D R ELECTRONICS PTY LTD"	10-May-08 11:49 AM	

+="CN77125"	"Road tpt of containers and MHI ISO Op Outreach for Yarralin"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	14918.15	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77129"	"Cargo tpt, air fares and sea prep ISO Op Outreach for WARRURI"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	10197.00	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77130"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	04-Feb-08	10120.00	=""	="THERAPEUTIC GUIDELINES"	10-May-08 11:50 AM	

+="CN77137"	"Video Cards"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	31-Jan-08	10764.56	=""	="COMPUTERCORP PTY LTD"	10-May-08 11:50 AM	

+="CN77149"	"Fasteners, fittings, fans"	="Department of Defence"	10-May-08	="Industrial process machinery and equipment and supplies"	31-Jan-08	30-May-08	11000.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:51 AM	

+="CN77151"	"Solid State Disck Drive"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	10593.00	=""	="CDT TECHNOLOGY PTY LTD"	10-May-08 11:51 AM	

+="CN77155"	"Matlab software"	="Department of Defence"	10-May-08	="Software"	31-Jan-08	15-Feb-08	10285.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 11:51 AM	

+="CN77161"	"Monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	13-Feb-08	14608.77	=""	="CONNECTED SOLUTIONS GROUP"	10-May-08 11:52 AM	

+="CN77170"	"Cabling & cabinets for DNSDC"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Jan-08	07-Apr-08	11267.53	=""	="HEYDAY GROUP PTY LTD"	10-May-08 11:52 AM	

+="CN77176"	"Computer equiptment and support"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	31-Jan-08	14411.89	=""	="SUN MICROSYSTEMS"	10-May-08 11:53 AM	

+="CN77177"	"NORTEL COURSES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	30-Apr-08	12295.80	=""	="NORTEL AUSTRALIA"	10-May-08 11:53 AM	

+="CN77197"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. ENGAGE CONNELL WAGNER AS PM/CA FOR THE PROJECT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	11000.00	=""	="CONNELL WAGNER PTY LTD"	10-May-08 11:54 AM	

+="CN77198"	"Dell sever with processor & 3 yr warranty"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	31-Jan-08	13860.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 11:54 AM	

+="CN77203"	"2*QC Xenon 5460 Deal and 30" TFT Monitor"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	14-Mar-08	15351.38	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 11:54 AM	

+="CN77208"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	21-Jan-08	21-Jan-08	10970.30	=""	="PARAGON PRINTERS"	10-May-08 11:55 AM	

+="CN77214"	"EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Jan-08	31-Jan-08	10505.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77217"	"Mirror assembly mount & lens Transloator"	="Department of Defence"	10-May-08	="Manufacturing technologies"	31-Jan-08	18-Feb-08	13215.40	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 11:55 AM	

+="CN77241"	"Bowers Bore mics"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jan-08	01-Feb-08	14340.70	=""	="MEASUREMENT AND AUTOMATION SYSTEMS"	10-May-08 11:57 AM	

+="CN77242"	"Modification on NaMOS application"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	23-Jan-08	30-Jun-08	11000.00	=""	="DIBA GROUP PTY LTD"	10-May-08 11:57 AM	

+="CN77245"	"ENVELOPES"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	21-Jan-08	21-Jan-08	12752.80	=""	="AUSTRALIA POST"	10-May-08 11:57 AM	

+="CN77250"	"Furniture"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Jan-08	05-Mar-08	11178.53	=""	="IKEN COMMERCIAL INTERIORS (ACT)"	10-May-08 11:57 AM	

+="CN77275"	"Electromet 4, Electro/Polisher Unit"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	21-Jan-08	26-Feb-08	15209.70	=""	="DAVIDSON MEASUREMENT"	10-May-08 11:59 AM	

+="CN77281"	"Computers/server and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Jan-08	25-Jan-08	11556.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 11:59 AM	

+="CN77295"	"Agilent"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	22-Feb-08	12406.86	=""	="TRIO SMARTCAL PTY LTD"	10-May-08 12:00 PM	

+="CN77297"	"lamps for airfield lighting"	="Department of Defence"	10-May-08	="Lamps and lightbulbs and lamp components"	23-Jan-08	20-Feb-08	13462.80	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 12:00 PM	

+="CN77299"	"Accommodation & room hire 322ECSS Planning Conference 2008"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Jan-08	30-Jan-08	10212.50	=""	="LAKE BENNETT WILDERNESS RESORT"	10-May-08 12:00 PM	

+="CN77309"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	24-Jan-08	30-Jun-08	13929.30	=""	="DEAKINPRIME"	10-May-08 12:01 PM	

+="CN77311"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	24-Jan-08	30-Jun-08	15389.00	=""	="DEAKINPRIME"	10-May-08 12:01 PM	

+="CN77320"	"STANDING OFFER 002/84-53"	="Department of Defence"	10-May-08	="Aircraft equipment"	17-Jan-08	15-Feb-08	10065.00	=""	="FORDHAM ENGINEERING PTY LTD"	10-May-08 12:01 PM	

+="CN77321"	"2.2GHz AMD Opteron dual-core processors to expand existing computer cluster"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	22-Feb-08	11836.00	=""	="ALEXANDER TECHNOLOGY"	10-May-08 12:01 PM	

+="CN77323"	"COMMONWEALTH AGREEMENT CONTRIBUTION FOR PERIOD 1/0 7/08 - 03/06/08 FOR SUPPLEMENTARY PROGRAM-ADV COM"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	30-Jun-08	11000.00	=""	="CRC-ACS LTD"	10-May-08 12:01 PM	

+="CN77325"	"LCD Monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	15725.60	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 12:02 PM	

+="CN77327"	"lens and accessories"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Jan-08	31-Jan-08	15488.00	=""	="LASTEK PTY LTD"	10-May-08 12:02 PM	

+="CN77328"	"Technical and research assistance,  access to Swin burne gas gun facility. Nitrogen &Helium cyli"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	17-Jan-08	29-Feb-08	13134.00	=""	="VCAMM LTD"	10-May-08 12:02 PM	

+="CN77335"	"UPGRADE DSTO CFD SOFTWARE (IO:  18660)"	="Department of Defence"	10-May-08	="Software"	23-Jan-08	25-Jan-08	15543.00	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 12:02 PM	

+="CN77346"	"ADVICE & SUPPORT IN THE REPARATION OF THE ESI MONI TOR MK2"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	17-Jan-08	28-Feb-08	10500.00	=""	="NORTHERN INTERFACE SERVICES"	10-May-08 12:03 PM	

+="CN77347"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	15000.00	=""	="JEFF ISAACS"	10-May-08 12:03 PM	

+="CN77348"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	17-Jan-08	10000.00	=""	="ACUMEN ALLIANCE"	10-May-08 12:03 PM	

+="CN77349"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="MARK WAHLERT"	10-May-08 12:03 PM	

+="CN77363"	"Office Chairs"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Jan-08	19-Feb-08	13090.00	=""	="SITZ"	10-May-08 12:04 PM	

+="CN77369"	"Security Equiptment"	="Department of Defence"	10-May-08	="Vehicle safety and security systems and components"	21-Jan-08	30-Jun-08	10384.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	10-May-08 12:04 PM	

+="CN77372"	"Whole ship noise assessment & report @HMAS Tobruk from 14/2-10/3/08"	="Department of Defence"	10-May-08	="Personal safety and protection"	18-Jan-08	30-Jun-08	15351.52	=""	="CAREY MURPHY & ASSOCIATES"	10-May-08 12:04 PM	

+="CN77374"	"Metal Plate"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	29-Feb-08	15471.50	=""	="ALLSTEEL"	10-May-08 12:04 PM	

+="CN77377"	"Switches & Cooling Fins"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	21-Jan-08	28-Jan-08	10228.44	=""	="BEHLKE ELECTRONIC GMBH"	10-May-08 12:05 PM	

+="CN77387"	"Office Chairs"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Jan-08	22-Feb-08	13402.40	=""	="SITZ"	10-May-08 12:05 PM	

+="CN77392"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	17-Jan-08	17-Jan-08	12569.57	=""	="AGFA-GEVAERT LTD"	10-May-08 12:06 PM	

+="CN77395"	"Communiction Toolbox & Licences"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	25-Jan-08	14679.50	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77398"	"Engineering Services"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	29-Feb-08	12164.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 12:06 PM	

+="CN77400"	"IMPORT SHIPMENT FOR DSTO FISHERMANS BEND"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	22-Jan-08	11335.15	=""	="FEDEX EXPRESS"	10-May-08 12:06 PM	

+="CN77402"	"Electrical Testing"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	10-Jan-08	31-Mar-08	13065.15	=""	="TESTEL AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77404"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:06 PM	

+="CN77405"	"COMMERCIAL WASHER DRYERS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Jan-08	14-Feb-08	10358.70	=""	="COMMERCIAL LAUNDRY APPLIANCES"	10-May-08 12:06 PM	

+="CN77406"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:06 PM	

+="CN77411"	"SAFETY CHECK"	="Department of Defence"	10-May-08	="Personal safety and protection"	22-Jan-08	23-Jan-08	10219.00	=""	="HEGGIES AUSTRALIA PTY LTD"	10-May-08 12:07 PM	

+="CN77412"	"RICOH SPC411DN MONO COLOUR PRINTER & IS200E DOCUMENT SCANNER"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	10-Jan-08	15-Jan-08	11185.19	=""	="RICOH AUSTRALIA"	10-May-08 12:07 PM	

+="CN77414"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	15253.70	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77416"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12797.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77417"	"SN02732"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	12202.30	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:07 PM	

+="CN77420"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	15000.00	=""	="CATHERINE MCCULLAGH"	10-May-08 12:07 PM	

+="CN77424"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	11000.00	=""	="JOHN DONOVAN"	10-May-08 12:07 PM	

+="CN77426"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="PROF PETER J DENNIS"	10-May-08 12:07 PM	

+="CN77427"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77428"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="EMMA ROBERTSON"	10-May-08 12:08 PM	

+="CN77429"	"HPLC TRAINING"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	09-Jan-08	30-Apr-08	14547.50	=""	="WATERS AUSTRALIA PTY LTD"	10-May-08 12:08 PM	

+="CN77431"	"CISCO Products"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	14-Jan-08	12014.20	=""	="IPTEL SOLUTIONS PTY LTD"	10-May-08 12:08 PM	

+="CN77432"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="FIONA FOX"	10-May-08 12:08 PM	

+="CN77433"	"MICROSOFT WINDOWS XP PRO X64 EDITION OS AUSTRALIA & NEW AMD 2X OPTERON 2216 2.4 1MB AIR COOL CPU"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	18-Jan-08	13088.90	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 12:08 PM	

+="CN77434"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="RICHARD PELVIN"	10-May-08 12:08 PM	

+="CN77436"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	31-Dec-08	10000.00	=""	="KEITH D MITCHELL"	10-May-08 12:08 PM	

+="CN77438"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-Jan-08	30-Jan-08	10710.00	=""	="EXCOM EDUCATION PTY LTD"	10-May-08 12:08 PM	

+="CN77439"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77441"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77443"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77447"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77450"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77454"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77468"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:10 PM	

+="CN77470"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:10 PM	

+="CN77471"	"DSTO RATIONALISATION PROJECT. HONEYWELL-ACCESS CONTROL."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-08	12290.30	=""	="HONEYWELL LIMITED INC IN NSW SPACE"	10-May-08 12:10 PM	

+="CN77474"	"Stereo equiptment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	31-Jan-08	14107.50	=""	="INITION PTY LTD"	10-May-08 12:10 PM	

+="CN77479"	"Brocade Fibre Channel Switch"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	25-Jan-08	08-Feb-08	10336.30	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:10 PM	

+="CN77483"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77484"	"DS TVL STH - GYM 308-07/08"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Jan-08	01-Feb-08	14410.00	=""	="JEFF SYKES AND ASSOCIATES PTY LTD"	10-May-08 12:11 PM	

+="CN77485"	"IBM STORAGE STSTEM"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	22-Jan-08	13190.10	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 12:11 PM	

+="CN77486"	"Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	31-Jan-08	10017.02	=""	="ENGINEERING IT"	10-May-08 12:11 PM	

+="CN77487"	"INSTALL DRN/DSN OUTLETS"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	08-Feb-08	14157.00	=""	="COMMUNICATIONS AUSTRALIA PTY LTD"	10-May-08 12:11 PM	

+="CN77489"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77491"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77492"	"Manufacture of Objective Lens of various magnifica tions, numerical apertures"	="Department of Defence"	10-May-08	="Manufacture of electrical goods and precision instruments"	25-Jan-08	26-Jun-08	12702.80	=""	="LEICA MICROSYSTEMS PTY LTD"	10-May-08 12:11 PM	

+="CN77495"	"DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Jan-08	31-Dec-08	14800.00	=""	="CLAYTON UTZ"	10-May-08 12:11 PM	

+="CN77498"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	06-Feb-08	14019.86	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:11 PM	

+="CN77499"	"HP 4GB (1X4GB) DDR2-533 ECC REG"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	15-Jan-08	12930.98	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:12 PM	

+="CN77501"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:12 PM	

+="CN77502"	"Misc hardware"	="Department of Defence"	10-May-08	="Hardware"	29-Jan-08	01-Feb-08	12724.25	=""	="JOHN MORRIS SCIENTIFIC PTY LTD"	10-May-08 12:12 PM	

+="CN77504"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	12-Feb-08	13401.86	=""	="ASI SOLUTIONS"	10-May-08 12:12 PM	

+="CN77505"	"Big Disk gigabit & Quadra USB"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	04-Feb-08	10774.00	=""	="HARRIS TECHNOLOGY"	10-May-08 12:12 PM	

+="CN77508"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	10-May-08 12:12 PM	

+="CN77509"	"80 HRS IN-HOUSE ON-CALL SUPPORT"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	29-Jan-08	25-Feb-08	14970.70	=""	="AERO SYSTEMS ENGINEERING INC"	10-May-08 12:12 PM	

+="CN77510"	"Altium Designer 6"	="Department of Defence"	10-May-08	="Software"	08-Jan-08	11-Jan-08	15855.41	=""	="ALTIUM LIMITED"	10-May-08 12:12 PM	

+="CN77529"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	13200.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	10-May-08 12:13 PM	

+="CN77537"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	11550.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:14 PM	

+="CN77538"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	31-Mar-08	13150.50	=""	="ARK GROUP AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77543"	"DEFENCE WEEKLY / DEFENCE REVIEW / INTELLIGENCE REVIEW / NAVY INTERNATIONAL PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper products"	29-Jan-08	31-Jan-08	12298.00	=""	="IHS AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77551"	"Fire fighting equipment"	="Department of Defence"	10-May-08	="Fire fighting equipment"	24-Jan-08	29-Feb-08	10630.85	=""	="LION APPAREL ASIA PACIFIC"	10-May-08 12:14 PM	

+="CN77555"	"Rackmount Tyan 4980 Processor"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	08-Feb-08	11290.00	=""	="IPS INTELLIGENT SYSTEMS PTY LTD"	10-May-08 12:15 PM	

+="CN77562"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	09-Jan-08	29-Feb-08	11425.70	=""	="BAC SYSTEMS PTY LTD"	10-May-08 12:15 PM	

+="CN77566"	"HP compaq Custom DSN Built small form factor"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	09-Jan-08	10150.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:15 PM	

+="CN77568"	"TWO AS-PE1950 DELL RACK MOUNT SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	18-Jan-08	13453.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:15 PM	

+="CN77581"	"Pendulum Timer counter  & other items"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	24-Jan-08	29-Feb-08	12903.10	=""	="VICOM AUST PTY LTD"	10-May-08 12:16 PM	

+="CN77583"	"Training Course"	="Department of Defence"	10-May-08	="Software"	24-Jan-08	23-May-08	10415.90	=""	="SKILLED GROUP LIMITED"	10-May-08 12:16 PM	

+="CN77584"	"Leica Objective Lens' and Leica cold light source"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	09-Jan-08	30-Apr-08	14635.50	=""	="LEICA MICROSYSTEMS PTY LTD"	10-May-08 12:16 PM	

+="CN77601"	"Advertising of positions in Friday Australian and Melbourne Age"	="Department of Defence"	10-May-08	="Printed media"	09-Jan-08	31-Jan-08	13782.13	=""	="HMA BLAZE PTY LTD"	10-May-08 12:17 PM	

+="CN77609"	"VEHICLE AT99LS"	="Department of Defence"	10-May-08	="Motor vehicles"	09-Jan-08	30-Jun-08	11620.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:18 PM	

+="CN77612"	"IT DEVICES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	27-Mar-08	14285.71	=""	="RAVEN RESEARCH LTD"	10-May-08 12:18 PM	

+="CN77613"	"PROCUREMENT REF: 972/07-08"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-08	14097.05	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 12:18 PM	

+="CN77622"	"ROAD BASE FOR CONSTRUSTION CIVIL PLANT CSE"	="Department of Defence"	10-May-08	="Roads and landscape"	25-Jan-08	06-Feb-08	13161.28	=""	="M COLLINS AND SONS (CONTRACTORS)"	10-May-08 12:18 PM	

+="CN77624"	"HP DC 7700 1.86GHZ Dual Core desktops computer"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	14402.85	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:18 PM	

+="CN77633"	"HDN Pinters"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	01-Feb-08	10384.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 12:19 PM	

+="CN77636"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	10863.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 12:19 PM	

+="CN77646"	"Matlab Statistics Toolbox"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	09-Feb-08	11827.75	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 12:20 PM	

+="CN77649"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO PROBITY ADVISER SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-08	13187.57	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:20 PM	

+="CN77651"	"GIGABIT MEDIA CONVERTERS SC TO UTP 13 10NM"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	17-Jan-08	14137.20	=""	="ALLOY COMPUTER PRODUCTS"	10-May-08 12:20 PM	

+="CN77652"	"Fraction collector, tray for well-plates, tray for holding 40 tubes"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Dec-07	21-Dec-07	14691.60	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 12:20 PM	

+="CN77676"	"RESEARCH CONTRACTOR SUPPORT FROM MARK RYAN FOR DST O. WORK CONDUCTED FOR LONG RANGE RESEARCH TASK"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Dec-07	17-Jan-08	11000.00	=""	="RMIT UNIVERSITY CITY CAMPUS"	10-May-08 12:21 PM	

+="CN77681"	"purchase of fax machines"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	15-Jan-08	18-Jan-08	11979.00	=""	="TOSHIBA AUSTRALIA PTY LTD"	10-May-08 12:22 PM	

+="CN77686"	"Telephone Handsets"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Dec-07	20-Dec-07	15262.50	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:22 PM	

+="CN77692"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	11-Dec-07	30-Jun-08	14205.40	=""	="HMA BLAZE PTY LTD"	10-May-08 12:22 PM	

+="CN77697"	"Self Serving Display Unit"	="Department of Defence"	10-May-08	="Food and beverage industries"	14-Jan-08	23-Feb-08	15650.80	=""	="MVO SERVICES"	10-May-08 12:22 PM	

+="CN77699"	"dsto equipment"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	14-Jan-09	13149.20	=""	="IHP MICROELECTRONICS"	10-May-08 12:22 PM	

+="CN77715"	"Repairs"	="Department of Defence"	10-May-08	="Aircraft equipment"	15-Jan-08	28-Feb-08	14668.50	=""	="STATIC ENGINEERING PTY LTD"	10-May-08 12:23 PM	

+="CN77727"	"LASER SYSTEM OPERATING AT 405NM & SM OPTICAL FIBRE COUPLER OF 405NM LASER SYSTEM"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	07-Mar-08	13728.00	=""	="OPTOTECH PTY LTD"	10-May-08 12:24 PM	

+="CN77735"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	11-Jan-08	30-Jun-08	13560.50	=""	="SAI GLOBAL LTD"	10-May-08 12:24 PM	

+="CN77746"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	15187.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:25 PM	

+="CN77748"	"PURCHASE LCD PROJECTORS"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	31-Jan-08	10134.08	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:25 PM	

+="CN77750"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	12138.10	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:25 PM	

+="CN77752"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:25 PM	

+="CN77754"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:25 PM	

+="CN77756"	"SINGLE ELEMENT TESTER, HOSE & COUPLING"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	10-Jan-08	11-Apr-08	12743.80	=""	="LIQUIP INTERNATIONAL PTY LTD"	10-May-08 12:26 PM	

+="CN77760"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:26 PM	

+="CN77762"	"Determination of vitamins in foods"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jan-08	31-Mar-08	11500.50	=""	="TENTH ANNUAL FOOD ANALYSIS CONFEREN"	10-May-08 12:26 PM	

+="CN77766"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	10-May-08 12:26 PM	

+="CN77768"	"WEED MANAGEMENT AT VARIOUS DEFENCE SITES"	="Department of Defence"	10-May-08	="Environmental management"	10-Jan-08	29-Feb-08	10180.01	=""	="WILDMAN LAND MANAGEMENT"	10-May-08 12:26 PM	

+="CN77779"	"License renewals"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Dec-07	21-Dec-07	13031.92	=""	="COMMANDER INTEGRATED NETWORKS"	10-May-08 12:27 PM	

+="CN77780"	"Spare Parts for submarine Combat System simulator"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	12-Jan-08	22-Feb-08	15811.74	=""	="GERMANE SYSTEMS LC"	10-May-08 12:27 PM	

+="CN77782"	"DEMAND NO.CTAR-78S8CR JOHN R TURK QUOTE NO. 682593"	="Department of Defence"	10-May-08	="Electrical components"	14-Jan-08	21-Jan-08	13420.88	=""	="JOHN R TURK"	10-May-08 12:27 PM	

+="CN77791"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Dec-07	30-Jun-08	13259.40	=""	="PHILLIPS FOX SYDNEY"	10-May-08 12:27 PM	

+="CN77793"	"MOVEMENT OF LR110'S FM CAIRNS TO BANDIANA"	="Department of Defence"	10-May-08	="Transportation components and systems"	10-Dec-07	21-Dec-07	10050.02	=""	="NORTHLINE FREIGHT PTY LTD"	10-May-08 12:28 PM	

+="CN77794"	"Computer accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	25-Jan-08	12764.27	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:28 PM	

+="CN77806"	"Custom designed Linear dipcoater mechanism and Linear Dipcoating software"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	17-Mar-08	11350.00	=""	="NIMA TECHNOLOGY LTD"	10-May-08 12:28 PM	

+="CN77807"	"VMIC Analogue Input Card"	="Department of Defence"	10-May-08	="Software"	10-Dec-07	22-Feb-08	10758.00	=""	="BRAETEC PTY LTD"	10-May-08 12:28 PM	

+="CN77821"	"VIENIANE CHANCERY RELOCATION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	15136.85	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 12:29 PM	

+="CN77823"	"SM-16X8-AV-LCD 16 IN 8 OUT NTI AUDIO VIDEO MATRIX SWITCH"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Dec-07	20-Dec-07	10037.50	=""	="INTERWORLD ELECTRONICS &"	10-May-08 12:29 PM	

+="CN77833"	"DFR PROMOTIONAL SHIRTS FOR COMPETITIORS AND OFFICI BASS SURFBOAT MARATHON. TR 10.12.07."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Jun-08	11479.99	=""	="PAULA M PROMOTIONS"	10-May-08 12:30 PM	

+="CN77840"	"FITNESS MEMBERSHIP"	="Department of Defence"	10-May-08	="Sports equipment and accessories"	31-Jan-08	30-Jun-08	11000.00	=""	="FERNWOOD WOMEN'S HEALTH CLUB"	10-May-08 12:30 PM	

+="CN77843"	"ACCOMMODATION COSTS/CATERING"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	15589.90	=""	="THE SEBEL & CITIGATE KING GEORGE SQ"	10-May-08 12:30 PM	

+="CN77844"	"DKART INSPECTOR LICENCE RENEWAL AND HASP REPLACE"	="Department of Defence"	10-May-08	="Software"	31-Jan-08	18-Feb-08	11164.23	=""	="JEPPESEN MARINE"	10-May-08 12:30 PM	

+="CN77846"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	31-Jan-08	30-Jun-08	10318.00	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:31 PM	

+="CN77849"	"Desktop Installation"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	14-Dec-07	15750.30	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 12:31 PM	

+="CN77853"	"HP/HDD/VMWARE SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	30-Dec-07	10868.00	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 12:31 PM	

+="CN77855"	"Managing your career training."	="Department of Defence"	10-May-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	14020.00	=""	="DAVIDSON TRAHAIRE CORPSYCH"	10-May-08 12:31 PM	

+="CN77860"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	30-Jan-08	30-Jun-08	11066.00	=""	="CLAYTON UTZ"	10-May-08 12:31 PM	

+="CN77867"	"POC: Hin Chan Contact: 02 6265 0311"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Jan-08	15345.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 12:32 PM	

+="CN77873"	"Lease Voice & Data Lines"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	13-Dec-07	31-Dec-07	15985.77	=""	="VERIZON"	10-May-08 12:32 PM	

+="CN77877"	"Computer equiptment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	13668.72	=""	="SUN MICROSYSTEMS"	10-May-08 12:32 PM	

+="CN77885"	"Composites technical work on JSTAB-AAR Phase 2"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	13-Dec-07	30-Jun-08	12690.00	=""	="FORTBURN PTY LTD"	10-May-08 12:33 PM	

+="CN77893"	"CISCO Switches"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	13-Dec-07	14-Dec-07	14304.02	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77897"	"Development of an Administrators' Guide for the Training Management Package Support System"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	29-Feb-08	15510.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 12:33 PM	

+="CN77900"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	11-Feb-08	10230.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77915"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	12186.00	=""	="MINTER ELLISON"	10-May-08 12:34 PM	

+="CN77924"	"Single mode lasers"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	31-Jan-08	29-Feb-08	14144.57	=""	="LASTEK PTY LTD"	10-May-08 12:35 PM	

+="CN77928"	"E2M28FX PFPE 3 PHASE PUMP WITH FILTER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	31-Jan-08	15050.86	=""	="AVT SERVICES PTY LTD"	10-May-08 12:35 PM	

+="CN77932"	"Computers/server and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	15-Feb-08	10910.90	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:35 PM	

+="CN77934"	"Matlab License"	="Department of Defence"	10-May-08	="Software"	29-Jan-08	01-Feb-08	10098.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 12:35 PM	

+="CN77935"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	13-Dec-07	13-Dec-07	14553.00	=""	="ROSSLOGIC PTY LTD"	10-May-08 12:35 PM	

+="CN77936"	"Harmonic Mixer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	14-Mar-08	10320.15	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 12:35 PM	

+="CN77937"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Dec-07	30-Jun-09	13199.97	=""	="KONICA MINOLTA BUSINESS"	10-May-08 12:36 PM	

+="CN77939"	"Order placed under terms &conditions of SO 873864 Manufacture of 126P-3C Total Life Coupons"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	13-Dec-07	29-Feb-08	12074.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 12:36 PM	

+="CN77942"	"purchase of fax machines"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	30-Jan-08	30-Jun-08	11979.00	=""	="TOSHIBA AUSTRALIA PTY LTD"	10-May-08 12:36 PM	

+="CN77943"	"Supply of Rental Shed No 3"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Dec-07	02-Oct-08	12012.00	=""	="IJ & GD MUSKER"	10-May-08 12:36 PM	

+="CN77946"	"SERVICING OF OXYGEN & ACETYLENE EQUIPMENT"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	30-Jan-08	30-Jun-08	13349.60	=""	="BOC LIMITED"	10-May-08 12:36 PM	

+="CN77947"	"Office Machine"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Dec-07	12475.10	=""	="RICOH AUSTRALIA"	10-May-08 12:36 PM	

+="CN77954"	"Channel Analog Input Modules and Power Supplies"	="Department of Defence"	10-May-08	="Power Generation and Distribution Machinery and Accessories"	29-Jan-08	24-Mar-08	10055.76	=""	="ITECH CORPORATION PTY LTD"	10-May-08 12:36 PM	

+="CN77955"	"Scoping study to determine the applicability of granting an Advanced Diploma In Public Safety (DM)"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	03-Feb-08	10000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 12:37 PM	

+="CN77977"	"Rental of Comms Equipment for Air Pagent RAAF Point Cook"	="Department of Defence"	10-May-08	="Security surveillance and detection"	29-Jan-08	07-Mar-08	11697.40	=""	="MOTOROLA AUSTRALIA PTY LTD"	10-May-08 12:38 PM	

+="CN77979"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	28-Mar-08	13476.32	=""	="INSITEC"	10-May-08 12:38 PM	

+="CN77980"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	12-Dec-07	07-Jan-08	10040.80	=""	="IDEAL OFFICE FURNITURE PTY LTD"	10-May-08 12:38 PM	

+="CN77983"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	30-Jan-08	30-Dec-08	10000.00	=""	="GILLIAN GOULD"	10-May-08 12:38 PM	

+="CN77987"	"OFFICE FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Jan-08	20-Feb-08	14058.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 12:38 PM	

+="CN77988"	"Computers/server and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	29-Feb-08	12448.70	=""	="COMMANDER INTEGRATED NETWORKS"	10-May-08 12:38 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val16000to20000.xls
@@ -1,1 +1,379 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73907"	"POCKET RADIO SURVIVAL"	="Defence Materiel Organisation"	08-May-08	="Lifelines or lifeline equipment"	07-May-08	06-Jul-08	18641.70	=""	="LIGHT AIRCRAFT"	08-May-08 08:30 AM	

+="CN73910"	"Contractor - Chairperson to SACF"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Human resources services"	11-Jan-08	30-Jun-08	20000.00	=""	="VIC SMITH INVESTMENT TRUST"	08-May-08 08:52 AM	

+="CN73913"	"Editorial Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	29-Jun-07	29-Jun-10	20000.00	="TRS06/036"	="Morris Walker"	08-May-08 08:52 AM	

+="CN73918"	"Employment of Contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	18-Apr-08	06-Jun-08	17000.01	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:53 AM	

+="CN73922"	"14 McConnell 2/3 Educator bus seats BUs Floor Module"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Transportation components and systems"	01-May-08	30-Jun-08	17997.10	=""	="McConnell Seats Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN73929"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Management advisory services"	01-May-08	31-May-08	19448.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	08-May-08 08:54 AM	

+="CN73936"	"Temporary staff placement"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Public administration and finance services"	25-Mar-08	30-May-08	18000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	08-May-08 08:55 AM	

+="CN73908"	"Consultancy service for Peace and Conflict Studies"	="National Native Title Tribunal"	08-May-08	="Corporate divestiture consultation services"	25-Feb-08	01-Mar-08	16307.50	=""	="The University of Queensland"	08-May-08 08:57 AM	

+="CN73962"	" BEARING, ROLLER, CYLINDRICAL  NSN - 3110/000785676 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	27-Mar-08	03-Jul-08	17886.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:49 AM	

+="CN73830"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	31-Oct-07	19140.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:17 PM	

+="CN74017"	"HP Maintenance Support for Cisco Equipment"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-May-08	18126.04	=""	="Hewlett Packard Australia Pty Ltd"	08-May-08 12:29 PM	

+="CN74064"	"Hire of venue"	="Defence Materiel Organisation"	08-May-08	="Hotels and lodging and meeting facilities"	08-Apr-08	08-Apr-08	17943.96	=""	="MEL CONV/EXHIB TST"	08-May-08 02:35 PM	

+="CN74086"	"motor vehicle spare parts"	="Department of Defence"	08-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	07-Jun-08	18035.31	=""	="LAND ROVER AUSTRALIA"	08-May-08 03:34 PM	

+="CN73973-A1"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Mar-08	30-Jun-08	18480.00	=""	="McGrath Nicol"	08-May-08 03:58 PM	

+="CN73984"	" Recruitment "	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:31 PM	

+="CN73977"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:33 PM	

+="CN73954"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	08-May-08 04:48 PM	

+="CN74127"	" DRAG LINK, LANDING GEAR REPAIR  NSN - 1620/010098660 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	10-Mar-08	09-Apr-08	19259.24	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:49 PM	

+="CN74128"	" REGULATOR, O, YGEN REPAIR  NSN - 1660/009564032 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17085.44	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:52 PM	

+="CN74149"	"Cabcharge"	="National Health and Medical Research Council"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Jun-08	20000.00	=""	="CABCHARGE AUSTRALIA LIMITED"	09-May-08 08:37 AM	

+="CN74151"	" C130J PROPULSION MAINTENANCE "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	21-Apr-08	30-Apr-08	17749.62	=""	="STANDARD AERO AUSTRALIA PTY LTD"	09-May-08 08:48 AM	

+="CN74160"	"SUBSCRIPTIONS MARCH 2008"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	25-Feb-08	31-Mar-09	19362.95	=""	="LEXISNEXIS"	09-May-08 09:29 AM	

+="CN74168"	"Supply and maintenance of plants at 77 Castlereagh Street"	="Australian Securities and Investments Commission"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	27-Jul-07	27-Jul-09	18252.96	=""	="Lease A Leaf"	09-May-08 09:41 AM	

+="CN74173-A1"	"Insolvency administration (variation)"	="Australian Securities and Investments Commission"	09-May-08	="Accounting services"	01-Dec-07	31-Mar-08	20000.00	=""	="Grant Thornton Services"	09-May-08 10:38 AM	

+="CN74205"	"Provision of quainity surveying services"	="Department of Parliamentary Services"	09-May-08	="Surveying systems"	02-May-08	06-Jun-08	17820.00	=""	="Donald Cant Watts Corke Pty Ltd"	09-May-08 11:20 AM	

+="CN74209"	"Supply of elevating work platform"	="Department of Parliamentary Services"	09-May-08	="Elevating platform vehicles or scissor lifts"	01-May-08	30-May-08	19030.00	=""	="Instant Access Australia Pty Ltd"	09-May-08 11:20 AM	

+="CN74222"	"Provision of removal services"	="Department of Parliamentary Services"	09-May-08	="Specialised warehousing and storage"	27-Sep-07	30-Jun-08	17432.25	=""	="Can Do Australia Pty Ltd"	09-May-08 11:22 AM	

+="CN74242"	"POA Accommodation Mariners Court - Sydney"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	06-Feb-08	05-May-08	18850.00	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:47 AM	

+="CN74246"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74248"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74249"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74252"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	10-Mar-08	10-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:49 AM	

+="CN74261"	"WHELAN/GEORGEINA MS TKT: 08124686894840 R/N: Not Supplied QF: D SYD/LAX - QF: D LAX/DFW DATE TRAVEL: 03/04/08 REF:ZK8ITV ONO: 352472-21303 GWT: 8249544"	="Department of Defence"	09-May-08	="Passenger transport"	04-Apr-08	04-Apr-08	17017.18	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74291"	"JFK School of Government - Cate Byrne Attendance"	="Department of Defence"	09-May-08	="Education and Training Services"	14-Mar-08	14-Mar-08	16691.30	=""	="JFK SCHOOL OF GOVT. EXEC"	09-May-08 11:54 AM	

+="CN74309"	"Sponsorship"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	27-Mar-08	27-Mar-08	16500.00	=""	="PRECEDENT PRODUCTION"	09-May-08 11:56 AM	

+="CN74310"	"03/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	31-Mar-08	30-Apr-08	18284.84	=""	="BRISBANE NTH PODIATRY P/L"	09-May-08 11:56 AM	

+="CN74312"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	28-Mar-08	27-Apr-08	16609.40	=""	="ST JOHN OF GOD HOSPIT"	09-May-08 11:57 AM	

+="CN74337"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	08-Apr-08	08-Apr-08	17435.00	=""	="JANAK A. MEHTA"	09-May-08 12:01 PM	

+="CN74341"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	09-Apr-08	09-Apr-08	18063.50	=""	="DARWIN PRIVATE HOSP"	09-May-08 12:01 PM	

+="CN74343"	"Patient Treatment"	="Department of Defence"	09-May-08	="Healthcare Services"	09-Apr-08	23-Apr-08	17746.45	=""	="ST VINCENTS PRV HOSP"	09-May-08 12:01 PM	

+="CN74369"	"Replace existing carpet in RMC-D SGT's mess"	="Department of Defence"	09-May-08	="Accommodation furniture"	24-Apr-08	24-Apr-08	19118.00	=""	="GARYS CARPET LAYING"	09-May-08 12:04 PM	

+="CN74370"	"DSTN386/08, 798-08-TK - Workstations, Desks, Chairs, Mobile Pedestals"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	25-Mar-08	06-May-08	17053.30	=""	="OFFICEMAX AUSTRALIA"	09-May-08 12:05 PM	

+="CN74374"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	01-May-08	31-May-08	18367.50	=""	="HOLLYWOOD PRIV HOSP"	09-May-08 12:05 PM	

+="CN74380"	"VEHICLE REPAIRS"	="Department of Defence"	09-May-08	="Motor vehicles"	16-Apr-08	16-May-08	18934.25	=""	="MACK AUSTRALIA"	09-May-08 12:13 PM	

+="CN74394"	"Printing of NAT11075 Base Stock for HELP Information Statements. Qty: 1,155,000"	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-May-08	28-May-08	17105.00	=""	="Canprint Communications"	09-May-08 02:11 PM	

+="CN74400"	"Printing of NAT14554 C4 Machine insertable envelope. Qty: 192,000."	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	30-Jun-08	16135.70	=""	="The Camerons Group"	09-May-08 02:12 PM	

+="CN74424"	" PROVISION OF PAINT PRODUCTS "	="Defence Materiel Organisation"	09-May-08	="Paints and primers and finishes"	09-May-08	23-May-08	17259.71	=""	="PROTEC"	09-May-08 02:57 PM	

+="CN74426"	"Laminated Shims"	="Defence Materiel Organisation"	09-May-08	="Parts of guns or pistols"	09-May-08	29-Aug-08	18341.40	=""	="G A Hanrahan Pty Ltd"	09-May-08 03:07 PM	

+="CN74432"	"    Airfare London-Sydney, Sydney -Manila, Manila-Hong Kong, Hong Kong - Vancouver April 2008    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	01-Apr-08	01-Apr-08	17219.73	=""	="British Airways"	09-May-08 03:32 PM	

+="CN74433"	"    Airfares - PNG delegation attending the APEC Emissions Conference in Kuala Lumpur, 3-4 April 2008 (Return airfare from Port Moresby to Kuala Lumpur)    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	28-Mar-08	28-Mar-08	18292.07	=""	="Flight Centre"	09-May-08 03:35 PM	

+="CN74444"	"SOFTWARE LICENSES FOR COBALT-64 LICENSES FOR FLOW SOLVER COBALT-UNLIMITED NUMBER FOR UTILITIES"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	07-Mar-08	07-Mar-08	19224.80	=""	="COBALT SOLUTIONS LLC"	09-May-08 03:41 PM	

+="CN74469"	"Horse equipment required by NORFORCE"	="Department of Defence"	09-May-08	="Saddlery and harness goods"	07-Mar-08	31-Mar-08	16165.89	=""	="NT GRAIN FEEDBARN & SADDLERY"	09-May-08 03:45 PM	

+="CN74475"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	19928.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 03:46 PM	

+="CN74480"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	17888.00	=""	="BLAKE DAWSON WALDRON"	09-May-08 03:47 PM	

+="CN74492"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	17382.20	=""	="URS AUSTRALIA PTY LTD"	09-May-08 03:48 PM	

+="CN74497"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	15-Apr-08	30-Apr-08	17334.96	=""	="Telstra  (ID No. 740)"	09-May-08 03:49 PM	

+="CN74506"	"DISPOSAL-JENNINGS RAILWAY SIDING-TREE REMOVAL AND"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	17270.33	=""	="SPOTLESS SERVICES LTD"	09-May-08 03:49 PM	

+="CN74522"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	24-Apr-08	31-May-08	17501.00	=""	="AAPT LIMITED"	09-May-08 03:50 PM	

+="CN74537"	"Optima Chilled Mirror Hygrometer Qty 1"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	21-Apr-08	13-Jun-08	16364.70	=""	="Biolab (Aust) Pty Ltd"	09-May-08 03:51 PM	

+="CN74539"	"CONFERENCE EXPENSES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	05-Mar-08	05-Mar-08	18300.00	=""	="NOVOTEL NORTHBEACH"	09-May-08 03:51 PM	

+="CN74548"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	06-Mar-08	19360.00	=""	="KAMASIN HOLDINGS PTY LTD"	09-May-08 03:51 PM	

+="CN74552"	"Gauge Surveys and Repairs"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	12-May-08	18040.00	=""	="EAST COAST HYDROGRAPHICS"	09-May-08 03:51 PM	

+="CN74555"	"Gauge Surveys and Repairs"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	12-May-08	19250.00	=""	="EAST COAST HYDROGRAPHICS"	09-May-08 03:52 PM	

+="CN74576"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	06-Mar-08	30-Jun-08	18345.00	=""	="MINTER ELLISON"	09-May-08 03:53 PM	

+="CN74577"	"Sibelius, Auralia and Quickeys Licenses for School of Music"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	30-Jun-08	19374.99	=""	="BILLY HYDE MUSIC BLACKBURN"	09-May-08 03:53 PM	

+="CN74579"	"Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	14-Mar-08	18590.00	=""	="KEEN OFFICE FURNITURE"	09-May-08 03:53 PM	

+="CN74586"	"501952 - Electron Tubes"	="Bureau of Meteorology"	09-May-08	="Electrical equipment and components and supplies"	08-May-08	30-May-08	19569.00	=""	="Richardson Electronics Pty Limited"	09-May-08 03:53 PM	

+="CN74593"	"poc: Jacob Lindsay Contact: 02 6265 0471"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	20-Mar-08	31-Mar-08	19481.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	09-May-08 03:53 PM	

+="CN74595"	"POC: Jacob Lindsay Contact: 02 6265 0471"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	31-Mar-08	18150.00	=""	="STATSEEKER PTY LTD"	09-May-08 03:54 PM	

+="CN74605"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	09-May-08	="Paper Materials and Products"	20-Mar-08	20-Mar-08	18454.57	=""	="AGFA-GEVAERT LTD"	09-May-08 03:54 PM	

+="CN74618"	"UPGRADE WILL ALLOW THE USE OF THE NEW DCAC PROXIMITY CARDS."	="Department of Defence"	09-May-08	="Locks and security hardware and accessories"	11-Mar-08	30-Apr-08	17190.80	=""	="CHUBB SECURITY AUSTRALIA"	09-May-08 03:55 PM	

+="CN74649"	"1 SR - Fibre optic repair tools kit"	="Department of Defence"	09-May-08	="Electronic hardware and component parts and accessories"	25-Mar-08	24-Apr-08	17323.90	=""	="AUSOPTIC PTY LTD"	09-May-08 03:59 PM	

+="CN74653"	"DEMANDNO.JPOL-7CE3J7"	="Department of Defence"	09-May-08	="Electrical equipment and components and supplies"	25-Mar-08	31-Mar-08	18714.30	=""	="GO ELECTRICAL PTY LTD"	09-May-08 03:59 PM	

+="CN74680"	"ENGEL FRIDGE FREEZER / ENGEL BATTERY PACK / ENGEL BATTERY CHARGER"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Mar-08	14-Mar-08	18235.86	=""	="RAYS OUTDOORS"	09-May-08 04:01 PM	

+="CN74681"	"Communications Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	08-Apr-08	16745.21	=""	="ASI SOLUTIONS"	09-May-08 04:01 PM	

+="CN74691"	"Copy Editor"	="Department of Defence"	09-May-08	="Office supplies"	19-Mar-08	30-Sep-08	19809.90	=""	="MORRIS WALKER"	09-May-08 04:01 PM	

+="CN74707"	"TRAINING COURSE"	="Department of Defence"	09-May-08	="Office supplies"	19-Mar-08	30-Jun-08	18900.00	=""	="MEDIA GURUS"	09-May-08 04:02 PM	

+="CN74731"	"SA 2484 Supply & Installation Deployable Storage B"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	19-Mar-08	30-Jun-08	17776.00	=""	="EMAC SYSTEMS PTY LTD"	09-May-08 04:05 PM	

+="CN74764"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-08	17291.20	=""	="ROSS HUMAN DIRECTIONS"	09-May-08 04:08 PM	

+="CN74773"	"SOFTWARE"	="Department of Defence"	09-May-08	="Software"	10-Mar-08	31-Mar-08	18633.77	=""	="KAZ GROUP LTD"	09-May-08 04:09 PM	

+="CN74779"	"POC: RYAN CAMPBELL CONTACT: 02 6266 5735"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	18-Mar-08	19037.69	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:09 PM	

+="CN74789"	"Upgrade eCOS database for Fleet Command"	="Department of Defence"	09-May-08	="Software"	11-Mar-08	30-Jun-08	17050.00	=""	="THE FRAME GROUP"	09-May-08 04:09 PM	

+="CN74801"	"FOR THE PURCHASE OF 500 SAMSUNG A412 BATTERIES AT $36.32 GST EXCL. PER BATTERY"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	11-Mar-08	31-Mar-08	19976.00	=""	="TELSTRA"	09-May-08 04:10 PM	

+="CN74817"	"STUDENT CHAIRS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	12-Mar-08	09-Apr-08	18480.00	=""	="STURDY FRAMAC"	09-May-08 04:11 PM	

+="CN74825"	"JLUSQ-0406 Labour Hire support to RFS from 1 Apr to 30 Jun 08"	="Department of Defence"	09-May-08	="Transportation repair or maintenance services"	12-Mar-08	30-Jun-08	18175.72	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74838"	"Will assist in unit re-structure and provide much"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	29-Feb-08	01-Apr-08	16521.23	=""	="HAMMETT TECHNOLOGIES"	09-May-08 04:12 PM	

+="CN74845"	"AIRFARES"	="Department of Defence"	09-May-08	="Travel facilitation"	13-Mar-08	29-Mar-08	18835.56	=""	="HARVEY WORLD TRAVEL"	09-May-08 04:13 PM	

+="CN74858"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	29-Feb-08	16000.00	=""	="KEITH THOMAS & ASSOCIATES"	09-May-08 04:14 PM	

+="CN74859"	"ALEC Model CTD Lite Depth Recorder"	="Department of Defence"	09-May-08	="Laboratory supplies and fixtures"	13-Mar-08	30-Apr-08	16511.00	=""	="ANALYTICAL SOLUTIONS AUSTRALIA"	09-May-08 04:14 PM	

+="CN74878"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	29-Feb-08	04-Mar-08	16802.02	=""	="3D NETWORKS (AUSTRALIA) PTY LTD"	09-May-08 04:15 PM	

+="CN74910"	"SN02767 - AIR CONDITIONING, HEATING AND EXTRACTION SYSTEM DUNTROON D015"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	17881.40	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:17 PM	

+="CN74918"	"INSTALLATION OF LITEPROS IN CLASSROOMS AT ENGINEER CERBERUS"	="Department of Defence"	09-May-08	="Components for information technology or broadcasting or telecommunications"	12-Mar-08	31-Mar-08	18848.50	=""	="AUSTRALIAN PRESENTATION SYSTEMS"	09-May-08 04:18 PM	

+="CN74937"	"POC: RICK PFEIFFER"	="Department of Defence"	09-May-08	="Live animals"	12-Mar-08	30-Jun-08	17105.00	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	09-May-08 04:19 PM	

+="CN74945"	"PUBLICATIONS"	="Department of Defence"	09-May-08	="Paper products"	12-Mar-08	30-Jun-08	19704.00	=""	="TRENDSETTING PTY LTD"	09-May-08 04:19 PM	

+="CN74960"	"RECREATIONAL EQUIPMENT"	="Department of Defence"	09-May-08	="Recreation and playground and swimming and spa equipment and supplies"	28-Feb-08	28-Mar-08	17226.00	=""	="CALGYM"	09-May-08 04:20 PM	

+="CN74986"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	16293.69	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:22 PM	

+="CN74993"	"SUPPLY ROTARY OFFICE CHAIRS"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	29-Feb-08	14-Mar-08	19522.80	=""	="SITZ"	09-May-08 04:22 PM	

+="CN75004"	"Replacement Server Racks"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	31-Mar-08	19995.80	=""	="SERVER RACKS AUSTRALIA"	09-May-08 04:23 PM	

+="CN75007"	"CS3 Design Premium Windows Licence (10) and CS3 Premium 3.0 Windows DVD Set"	="Department of Defence"	09-May-08	="Software"	29-Feb-08	28-Mar-08	17919.00	=""	="ZALLCOM PTY LTD"	09-May-08 04:23 PM	

+="CN75011"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	29-Feb-08	31-Mar-08	19263.20	=""	="INTERWORX PTY LTD"	09-May-08 04:24 PM	

+="CN75013"	"AGGREGATION TAPS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Apr-08	17226.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	09-May-08 04:24 PM	

+="CN75018"	"TRAINING"	="Department of Defence"	09-May-08	="Live animals"	29-Feb-08	30-Jun-08	17373.79	=""	="CLIFTONS"	09-May-08 04:24 PM	

+="CN75025"	"Training"	="Department of Defence"	09-May-08	="Education and Training Services"	14-Mar-08	05-Jun-08	17314.00	=""	="PHIL SCHLUTER CONSULTING"	09-May-08 04:25 PM	

+="CN75036"	"Sponsorship"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	16500.00	=""	="NATIONAL ICT AUSTRALIA LTD"	09-May-08 04:25 PM	

+="CN75093"	"SCANNING OF SURVEYS"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	16720.00	=""	="AUSTRALIAN SURVEY RESEARCH PTY"	09-May-08 04:29 PM	

+="CN75114"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	19200.00	=""	="INSIGHT SERVICES GROUP"	09-May-08 04:31 PM	

+="CN75131"	"ACCOMMODATION PACKAGE FEES"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	05-Mar-08	16181.00	=""	="HORIZONS ON THE LAKE"	09-May-08 04:32 PM	

+="CN75132"	"SN02753 - R5-3 South End Refurbishment"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	13-Mar-08	30-Jun-08	18260.00	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:32 PM	

+="CN75137"	"Research Agreement 2007/*1154707/1"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Mar-08	30-Jun-08	19800.00	=""	="RMIT UNIVERSITY"	09-May-08 04:32 PM	

+="CN75150"	"OFFICE DESKS & MOBILE PEDISTALS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	13-Mar-08	12-Apr-08	16005.00	=""	="OFFICEMAX"	09-May-08 04:33 PM	

+="CN75170"	"SA2684 Rebalance of A/C in Bldg 733"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	16830.00	=""	="AVANTEX AUSTRALASIA PTY LTD"	09-May-08 04:34 PM	

+="CN75172"	"LIVERPOOL MILITARY AREA HIGH VOLTAGE ELECTRICAL DI UPGRADE."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	18480.00	=""	="GRIDX POWER PTY LTD"	09-May-08 04:34 PM	

+="CN75179"	"POINT OF CONTACT FOR ALL QUERIES: SGT DAVID TYMENSEN (03) 6055 2520"	="Department of Defence"	09-May-08	="Electronic Components and Supplies"	03-Mar-08	30-Jun-08	18110.51	=""	="MIDDENDORP ELECTRIC CO PTY LTD"	09-May-08 04:35 PM	

+="CN75181"	"HP DL360R05 Server and options"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	21-Mar-08	16892.70	=""	="ALFA COMPUTERS PTY LTD"	09-May-08 04:35 PM	

+="CN75213"	"Hire of Toilet Blocks for Air Pagean on 24 Feb 08."	="Department of Defence"	09-May-08	="Public order and safety"	04-Mar-08	07-Mar-08	18050.00	=""	="SPLASHDOWN"	09-May-08 04:38 PM	

+="CN75215"	"RMIT Research Agreement for PHD student"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	28-Feb-09	20000.00	=""	="RMIT UNIVERSITY"	09-May-08 04:38 PM	

+="CN75224"	"ADF CAREERS ON-SCREEN ADVERTISING FEB-APR 2008. CA SPECIFICALLY TO TARGET CORE DEMOGRAPHICS USING ON"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	30-Jun-08	17365.92	=""	="REGENT CINEMAS"	09-May-08 04:39 PM	

+="CN75229"	"Manufacture of P-3C DNH & Cold Working Coupons from 7075-T6 Aluminium Sheet"	="Department of Defence"	09-May-08	="Manufacturing support services"	12-Feb-08	30-Apr-08	16737.60	=""	="BOEING AEROSPACE SUPPORT"	09-May-08 04:39 PM	

+="CN75248"	"Research Agreement"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	04-Mar-08	04-Mar-08	16500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	09-May-08 04:40 PM	

+="CN75261"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-08	16000.00	=""	="SPARKE HELMORE LAWYERS"	09-May-08 04:41 PM	

+="CN75273"	"4GB USB Thumb Drive - K ingston DTSP/4GB-GOV"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	07-Apr-08	18672.17	=""	="ATC IT SUPPLIES"	09-May-08 04:42 PM	

+="CN75279"	"SERVICES FOR ASSESSING & REPORTING ON QUALITY MGMT SYSTEMS OF THE DIRECTORATE OF NAVY WARFARE SY"	="Department of Defence"	09-May-08	="Naval weapons"	18-Mar-08	30-Jun-08	18150.00	=""	="REQUAL BUSINESS SERVICES PTY LTD"	09-May-08 04:42 PM	

+="CN75280"	"CONFERENCE VENUE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	13-Feb-08	19-Feb-08	17980.00	=""	="RYDGES WOLLONGONG"	09-May-08 04:42 PM	

+="CN75306"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	13-Feb-08	17910.00	=""	="HISTORICAL AIRCRAFT RESTORATION"	09-May-08 04:44 PM	

+="CN75331"	"Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	11-Feb-08	05-Mar-08	19387.50	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 04:46 PM	

+="CN75341"	"SN01736 - Support to review OEMP"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	19800.00	=""	="ENSR AUSTRALIA PTY LTD"	09-May-08 04:46 PM	

+="CN75343"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Feb-08	30-Jun-08	18976.32	=""	="C I T SOLUTIONS PTY LTD"	09-May-08 04:47 PM	

+="CN75367"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	18348.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:48 PM	

+="CN75376"	"KOBRA Optical Media Shredder 400HS 240V 1 for ICT-WA Leeuwin Bks and 1 for FFGSPO (Gd Isl)"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	16555.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	09-May-08 04:49 PM	

+="CN75399"	"Wyse Terminals"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	25-Mar-08	18235.80	=""	="FIND IT HERE PTY LTD"	09-May-08 04:50 PM	

+="CN75420"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	17404.20	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:52 PM	

+="CN75423"	"ACCOMMODATION EXPENSES"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	15-Feb-08	18-Feb-08	16744.99	=""	="AUSGLOBAL TRAVEL"	09-May-08 04:52 PM	

+="CN75441"	"Mono Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	17050.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:54 PM	

+="CN75457"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	15-Feb-08	19974.90	=""	="THOMSON LEGAL & REGULATORY LTD"	09-May-08 04:56 PM	

+="CN75465"	"LIBRARY MATERIALS"	="Department of Defence"	09-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Feb-08	15-Feb-08	20000.00	=""	="THOMSON LEGAL & REGULATORY LTD"	09-May-08 04:56 PM	

+="CN75468"	"Canon M350 Microfiche Reader for Combined Office Complex HMAS Melbourne"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	15-Feb-08	30-Jun-08	18262.20	=""	="PROSCAN AUSTRALIA PTY LTD"	09-May-08 04:57 PM	

+="CN75469"	"REPAIRS TO CMV COACH REG: 237029 SVC Doc No: RKO226"	="Department of Defence"	09-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Feb-08	31-Mar-08	18393.86	=""	="CMV TRUCK AND BUS PTY LTD"	09-May-08 04:57 PM	

+="CN75488"	"Employment of PSP at Oakey"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	13-Feb-08	26-Jun-08	16720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 08:32 AM	

+="CN75505"	"TRAINING PROGRAM"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Feb-08	14-Feb-08	18700.00	=""	="D'ARCY CONSULTING GROUP"	10-May-08 08:34 AM	

+="CN75539"	"DSN Infrastructure"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	05-Feb-08	30-Mar-08	16187.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 08:38 AM	

+="CN75540"	"Training"	="Department of Defence"	10-May-08	="Education and Training Services"	05-Feb-08	10-Apr-08	19800.00	=""	="M W ROSSITER PTY LTD"	10-May-08 08:38 AM	

+="CN75551"	"IT Training Courses"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Feb-08	29-Feb-08	16676.00	=""	="CONTENTWISE PTY LTD"	10-May-08 08:39 AM	

+="CN75555"	"Condition assessment of Sea Scout building at HMAS Penguin"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	06-Feb-08	30-Jun-08	16838.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:39 AM	

+="CN75580"	"Aircraft Communication Equipment"	="Department of Defence"	10-May-08	="Flight communications related systems"	05-Feb-08	25-Feb-08	18389.06	=""	="NOVA ENGINEERING INC."	10-May-08 08:42 AM	

+="CN75582"	"PDA fitted bullseye"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	05-Feb-08	22-Feb-08	19745.00	=""	="OPENTEC SOLUTIONS PTY LTD"	10-May-08 08:42 AM	

+="CN75584"	"NET PRESENT VALUE ANALYSIS-HOSPITAL FACILITIES IN REGION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	16500.00	=""	="KPMG CORPORATE FINANCE (AUST)"	10-May-08 08:42 AM	

+="CN75592"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	18002.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 08:43 AM	

+="CN75604"	"CONDUCT DRIVER TRAINING"	="Department of Defence"	10-May-08	="Truck tractors"	05-Feb-08	30-Jun-08	18150.00	=""	="DECA TRAINING"	10-May-08 08:44 AM	

+="CN75626"	"LICENSE  & MAINTENANCE PROGRAMMING SOFTWARE"	="Department of Defence"	10-May-08	="Software"	05-Feb-08	29-Feb-08	16995.00	=""	="CYON KNOWLEDGE COMPUTING"	10-May-08 08:46 AM	

+="CN75630"	"POC: EMIL RATHOUSKI CONTACT: 02 626 50939"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17776.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 08:46 AM	

+="CN75636"	"TECHNICAL CONTACT: MR M FOOTNER PHONE:             (08) 8259 6967"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	07-May-08	17396.50	=""	="BRAETEC PTY LTD"	10-May-08 08:47 AM	

+="CN75641-A1"	"Stock Discrepancy Liability Review"	="Department of Defence"	10-May-08	="Industrial Production and Manufacturing Services"	24-Jan-08	28-Mar-08	18388.62	=""	="OWEN ANFRUNS CONSULTING"	10-May-08 08:48 AM	

+="CN75654"	"NWCC NEWSLETTER FOR OPERATIONS DEC07"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	08-Feb-08	15-Feb-08	16721.58	=""	="CENTRICA"	10-May-08 08:49 AM	

+="CN75664"	"Electronic Apparatus"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Feb-08	14-Mar-08	18888.10	=""	="OLYMPUS AUSTRALIA PTY LTD"	10-May-08 08:50 AM	

+="CN75668"	"breakfast pack groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	08-Feb-08	30-Jun-08	16500.00	=""	="LE PACK"	10-May-08 08:50 AM	

+="CN75672"	"Mikron M190Q-TS Infrared Calibration Transfer Stan dard"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Feb-08	21-Mar-08	16445.00	=""	="W & B INSTRUMENTS PTY LTD"	10-May-08 08:51 AM	

+="CN75688"	"Music on Hold units"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	15-Feb-08	18480.00	=""	="TELEMALL PTY LTD"	10-May-08 08:52 AM	

+="CN75714"	"POC: SIMON CARR CONTACT: 02 626 50678"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17358.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:55 AM	

+="CN75716"	"Software Maintenance Contract for period 31 March 2008 - 30 March 2009"	="Department of Defence"	10-May-08	="Software"	08-Feb-08	30-Mar-09	16280.64	=""	="TERRASIM INC."	10-May-08 08:55 AM	

+="CN75732"	"Vehicle Lease"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	15-Feb-08	28-Feb-10	18514.10	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 08:56 AM	

+="CN75744"	"Software License - Mathworks"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	28-Feb-08	19635.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75745"	"PA SYSTEM"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Feb-08	25-Mar-08	17442.70	=""	="ARROW COMMUNICATION SERVICES"	10-May-08 08:58 AM	

+="CN75751"	"EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	18665.09	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:58 AM	

+="CN75769"	"To provide intructor support and the adjustment of and assessment tools for the Training Development"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Feb-08	30-Jun-08	18000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 09:00 AM	

+="CN75773"	"CONSULTANCY FOR BUILDING INSPECTION  AND RECOMMENDATIONS RAAF BASE AMBERLEY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	19811.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:00 AM	

+="CN75774"	"POC:  DAVID MAXWELL CONTACT: 02 626 50227"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	25-Feb-08	30-Jun-08	17600.00	=""	="COMPUCAT RESEARCH PTY LTD"	10-May-08 09:00 AM	

+="CN75778"	"WBTA FIRE HAZARD REDUCTION"	="Department of Defence"	10-May-08	="Fire prevention"	25-Feb-08	30-Jun-08	19580.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:01 AM	

+="CN75790"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer services"	22-Feb-08	25-Mar-08	17250.20	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 09:02 AM	

+="CN75822"	"POC: ATTILA HORVATH CONTACT: 02 626 50688"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16577.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	10-May-08 09:05 AM	

+="CN75823"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16251.95	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 09:05 AM	

+="CN75840"	"C CLASS RACKS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	19756.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 09:07 AM	

+="CN75871"	"INDUSTRIAL TRAINING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19800.00	=""	="BLUELINE CONSULTING SERVICES"	10-May-08 09:10 AM	

+="CN75877"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19470.00	=""	="SCOTWORK NEGOTIATING SKILLS"	10-May-08 09:10 AM	

+="CN75882"	"QFI SEMINAR"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	14-Mar-08	16800.00	=""	="HYATT REGENCY PERTH"	10-May-08 09:11 AM	

+="CN75899"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	19547.41	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 09:13 AM	

+="CN75909"	"ESTATE PLANNING BRANCH-BRANCH PLANNING & TEAM BUIL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	18740.50	=""	="THREDBO ALPINE HOTEL"	10-May-08 09:14 AM	

+="CN75915"	"StoreVault S500 Base System"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	20-Mar-08	19339.10	=""	="COMMANDER INTEGRATED NETWORKS PTY"	10-May-08 09:14 AM	

+="CN75917"	"Magnesium Alloy Cast Billet"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Feb-08	30-Apr-08	18895.03	=""	="AIRPORT METALS (AUSTRALIA)"	10-May-08 09:14 AM	

+="CN75920"	"Fencing"	="Department of Defence"	10-May-08	="Security and control equipment"	27-Feb-08	31-Mar-08	16814.28	=""	="PORTCULLIS PERIMETER SECURITY PTY L"	10-May-08 09:15 AM	

+="CN75930"	"Supply cables as per quote; 23986. Items required to provide ongoing support to all s"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	19150.45	=""	="ALLOY COMPUTER PRODUCTS"	10-May-08 09:16 AM	

+="CN75936"	"This order is raised to cover the container servic Army units within South Australia."	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	26-Feb-08	30-Jul-08	17600.00	=""	="BOC LIMITED"	10-May-08 09:16 AM	

+="CN75947"	"Stationery / Promotional Goods"	="Department of Defence"	10-May-08	="Paper Materials and Products"	19-Feb-08	26-Feb-08	16500.00	=""	="EXPRESSIONS"	10-May-08 09:17 AM	

+="CN75970"	"ACCOMMODATION FOR STAFF TRAINING"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	19-Feb-08	19-Feb-08	19267.05	=""	="NOVOTEL ST KILDA"	10-May-08 09:19 AM	

+="CN75973"	"Software and computer accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	22-Feb-08	19888.00	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 09:20 AM	

+="CN75987"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	18900.00	=""	="UNITY COLLEGE AUSTRALIA"	10-May-08 09:58 AM	

+="CN75992"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	01-Jul-08	16500.00	=""	="REALVIEW TECHNOLOGIES PTY LTD"	10-May-08 09:58 AM	

+="CN76003"	"MEDIA SUPPORT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	18480.00	=""	="MEDIA GURUS"	10-May-08 09:59 AM	

+="CN76013"	"FURNITURE FOR DS-NQ-TS ACCOMMODATION CELL"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	17490.55	=""	="GARRY THYERS BETTA SUPERSTORE"	10-May-08 09:59 AM	

+="CN76016"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	16760.70	=""	="TENIX DATAGATE PTY LTD"	10-May-08 09:59 AM	

+="CN76017"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	16089.06	=""	="ASI SOLUTIONS"	10-May-08 09:59 AM	

+="CN76019"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18870.72	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76033"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76037"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	19203.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76039"	"Delivery of MILAN Training"	="Department of Defence"	10-May-08	="Medical training and education supplies"	19-Nov-07	19-Nov-07	16060.00	=""	="CLIFFORD CRAIG MEDICAL RESEARCH"	10-May-08 10:01 AM	

+="CN76040"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	10-May-08	="Flight communications related systems"	21-Nov-07	30-Jun-08	19349.00	=""	="WORMALD"	10-May-08 10:01 AM	

+="CN76043"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	16500.00	=""	="VISION TRAINING AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76046"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	21-Nov-07	30-Jun-08	19967.57	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:01 AM	

+="CN76058"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18419.02	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:02 AM	

+="CN76063"	"Technical Service Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	19-Nov-07	30-Jun-08	16500.00	=""	="FORTBURN PTY LTD"	10-May-08 10:02 AM	

+="CN76076"	"Bioprecision stage stepper motor"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	03-Dec-07	16594.60	=""	="SCITECH PTY LTD"	10-May-08 10:03 AM	

+="CN76081"	"REFUSE & TIP FEES"	="Department of Defence"	10-May-08	="Refuse disposal and treatment"	06-Jun-07	30-Jun-08	18150.00	=""	="TOWNSVILLE CITY COUNCIL"	10-May-08 10:03 AM	

+="CN76086"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	05-Dec-07	17655.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:03 AM	

+="CN76090"	"CATERING"	="Department of Defence"	10-May-08	="Restaurants and catering"	21-Nov-07	21-Nov-07	17600.00	=""	="FRESH CATERING PTY LTD"	10-May-08 10:03 AM	

+="CN76102"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18549.45	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:04 AM	

+="CN76108"	"Refridgerated tabletop centrifuge, culture tube, sealing caps, bucket for adapters, carrier"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	21-Dec-07	17939.09	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:04 AM	

+="CN76142"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	19553.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:06 AM	

+="CN76163"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	18591.80	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:07 AM	

+="CN76181"	"Refrigerated tabletop centrifuge and accessories"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Nov-07	28-Nov-07	16741.74	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:08 AM	

+="CN76192"	"SURVEYS & MAINTENANCE"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	21-Apr-08	30-Jun-08	16668.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:09 AM	

+="CN76204"	"CHP"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	30-Jul-08	16200.00	=""	="MALCZEWSKI FAMILY TRUST"	10-May-08 10:10 AM	

+="CN76214"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	16500.01	=""	="SAGE LEGAL SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76245"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	05-Dec-07	19423.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76259"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Nov-07	29-Nov-07	18900.00	=""	="MEDIA GURUS"	10-May-08 10:13 AM	

+="CN76266"	"Rehabilitation Services"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Jan-07	30-Jun-08	16500.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	10-May-08 10:13 AM	

+="CN76275"	"CD PRODUCTION"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	26-Nov-07	31-Aug-08	16123.80	=""	="CD MANUFACTURERS PTY LTD"	10-May-08 10:13 AM	

+="CN76278"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	16508.00	=""	="HAMERSLEY IRON PTY LTD"	10-May-08 10:14 AM	

+="CN76292"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Aug-07	31-Dec-08	16999.17	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:14 AM	

+="CN76311"	"Cable gable markers, steel pegs."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	23-Nov-07	07-Dec-07	16391.10	=""	="AIRPORT TECHNICAL SERVICES PTY LTD"	10-May-08 10:15 AM	

+="CN76314"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	16894.00	=""	="CLAYTON UTZ"	10-May-08 10:16 AM	

+="CN76325"	"HIRE OF TOILETS"	="Department of Defence"	10-May-08	="Cleaning and janitorial supplies"	10-Oct-07	10-Jan-08	19758.20	=""	="COATES PRESTIGE"	10-May-08 10:16 AM	

+="CN76327"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	03-Dec-07	04-Jan-08	17100.00	=""	="SIR CHARLES GAIRDNER HOSPITAL"	10-May-08 10:16 AM	

+="CN76333"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	18196.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76338"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	18480.00	=""	="MINTER ELLISON"	10-May-08 10:17 AM	

+="CN76342"	"Student Transport 07/08."	="Department of Defence"	10-May-08	="Passenger transport"	12-Nov-07	30-Jun-08	17600.00	=""	="WESTRANS"	10-May-08 10:17 AM	

+="CN76360"	"Support to Operations Support Centre DSTO"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18671.40	=""	="ICON RECRUITMENT"	10-May-08 10:18 AM	

+="CN76370"	"Shoalwater Bay Training Area - Power Supply Feasibility Study"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	16500.00	=""	="PARSONS BRINCKERHOFF"	10-May-08 10:19 AM	

+="CN76377"	"HMAS Hawkesbury QANTAS Invoice 30Nov07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	17517.14	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76385"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Personnel recruitment"	17-Jan-08	28-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:20 AM	

+="CN76393"	"PADLOCKS TO SECURE AMMUNITION CONTAINERS"	="Department of Defence"	10-May-08	="Hardware"	14-Dec-07	22-Jan-08	16606.30	=""	="LOCKWOOD SECURITY PRODUCTS PTY LTD"	10-May-08 10:20 AM	

+="CN76398"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	10-Jul-07	30-Jun-08	16500.00	=""	="HMA BLAZE PTY LTD"	10-May-08 10:20 AM	

+="CN76399"	"LEASE OF VEHICLES FOR HQJTF633 DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	14-Jan-08	17218.75	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:20 AM	

+="CN76406"	"TECHNICAL CONTACT:  K SMITH PHONE:  08 8259 6737"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jul-07	30-Jun-08	19965.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 10:21 AM	

+="CN76419"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Hand tools"	12-Jan-08	12-Jan-08	18910.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76422"	"CABLING"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Jul-07	30-Jun-08	16500.00	=""	="RIVERCORP PTY LTD"	10-May-08 10:22 AM	

+="CN76428"	"LIA ELECTRICAL MAINTENANCE LAVARACK BARRACKS"	="Department of Defence"	10-May-08	="Domestic appliances"	16-Apr-08	30-Jun-08	16500.00	=""	="MAZLIN ELECTRICAL SERVICES"	10-May-08 10:22 AM	

+="CN76434"	"FINISHER ATTACHMENT FOR XEROX WORKCENTRE 7245"	="Department of Defence"	10-May-08	="Paper Materials and Products"	01-Dec-07	01-Dec-07	16161.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76504"	"Class C Rack Cabinet Ph: 08 9553 3617"	="Department of Defence"	10-May-08	="Hardware"	29-Nov-07	21-Dec-07	17109.87	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:27 AM	

+="CN76507"	"TRUCK AND TRAILOR LEASE DEC 07 FLLA K"	="Department of Defence"	10-May-08	="Truck tractors"	31-Dec-07	03-Jan-08	16082.34	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76509"	"CONTRACT ADMIN"	="Department of Defence"	10-May-08	="Environmental Services"	31-Dec-07	03-Jan-08	18115.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76515"	"AIRFARES OCTOBER 2007"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	15-Jan-08	16499.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76521"	"Medical Services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	24-Dec-07	23-Jan-08	17644.31	=""	="PETER NEWBERY"	10-May-08 10:28 AM	

+="CN76522"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Nov-07	17-Dec-07	18777.31	=""	="LASER QUANTUM"	10-May-08 10:28 AM	

+="CN76523"	"FOOD REQUIRED BY HQ JTF 633 FOR XMAS DAY LUNCH"	="Department of Defence"	10-May-08	="Meat and poultry products"	20-Dec-07	04-Jan-08	18951.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:28 AM	

+="CN76524"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	29-Nov-07	02-Jan-08	17394.96	=""	="BARTINGTON INSTRUMENTS LTD"	10-May-08 10:28 AM	

+="CN76527"	"CHP WAGES DEC/JAN"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	01-Feb-08	01-Feb-08	17191.60	=""	="VIMALA MENON  A/P PB MENON"	10-May-08 10:28 AM	

+="CN76529"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	09-Jan-08	09-Jan-08	18600.16	=""	="MONEY"	10-May-08 10:28 AM	

+="CN76541"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	17930.00	=""	="CLAYTON UTZ"	10-May-08 10:29 AM	

+="CN76542"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	02-Feb-08	04-Feb-08	19519.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76564"	"LACE ROBERT WYNNE - COMCARE OH&S INVESTIGATION"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	31-Jan-08	16013.80	=""	="DLA PHILLIPS FOX"	10-May-08 10:30 AM	

+="CN76570"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	19879.00	=""	="MINTER ELLISON"	10-May-08 10:31 AM	

+="CN76571"	"RENTAL PAYMENTS SRI PANGKOR APPARTMENTS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	01-Feb-08	01-Feb-08	18191.49	=""	="ELCEETEE TRUST -E-"	10-May-08 10:31 AM	

+="CN76575"	"02-239906 30NOV07 LINE ITEM 10560 - 10601"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	16558.79	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76580"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	29-Nov-07	30-Jun-08	19608.38	=""	="TRANS GLOBAL TRADERS PTY LTD"	10-May-08 10:31 AM	

+="CN76610"	"As detailed in contract 0708-210"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	28-Nov-07	28-Mar-08	19829.43	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:33 AM	

+="CN76615"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	30-Jan-08	30-Jan-08	17933.89	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:34 AM	

+="CN76616"	"Stationery"	="Department of Defence"	10-May-08	="Paper products"	28-Nov-07	31-Dec-07	17821.33	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:34 AM	

+="CN76617"	"Business Travel"	="Department of Defence"	10-May-08	="Aircraft"	17-Dec-07	06-Feb-08	19171.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76644"	"WATER TANK"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	28-Nov-07	21-Jan-08	16920.03	=""	="POLYWORLD"	10-May-08 10:35 AM	

+="CN76648"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	30-Nov-07	16170.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:36 AM	

+="CN76655"	"QANTAS PAYMENT FOR THE MONTH OF DEC 07"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Jan-08	17066.13	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76672"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	16644.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:37 AM	

+="CN76684"	"CONFERENCE COSTS"	="Department of Defence"	10-May-08	="Restaurants and catering"	28-Nov-07	28-Nov-07	19494.70	=""	="PANTHERS ENTERTAINMENT GROUP"	10-May-08 10:38 AM	

+="CN76686"	"APC SMART UPS FOR ICT SVCS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	28-Nov-07	28-Nov-07	16815.28	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 10:38 AM	

+="CN76695"	"VEHICLE LEASE FLLA"	="Department of Defence"	10-May-08	="Motor vehicles"	05-Jan-08	29-Jan-08	17023.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76708"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="HARCOURT ASSESSMENT"	10-May-08 10:39 AM	

+="CN76712"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	10-May-08 10:39 AM	

+="CN76716"	"INMARSAT CALL CHARGES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	03-Dec-07	16088.72	=""	="ELECTROTECH AUSTRALIA PTY LTD"	10-May-08 10:39 AM	

+="CN76741"	"Large Display LCDs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	12-Dec-07	16467.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:41 AM	

+="CN76742"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	09-Oct-07	30-Jun-08	17160.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76748"	"Aircraft Charter AirTravel to remote Bare Bases RAAF Learmonth and"	="Department of Defence"	10-May-08	="Aircraft"	26-Oct-07	26-Oct-07	19715.00	=""	="INDEPENDENT AVIATION PTY LTD"	10-May-08 10:41 AM	

+="CN76756"	"Imm / Urg -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	16110.53	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76779"	"REPAIRS OF 9 SAFE AT RAAF BASE DARWIN AS PER QUOTE 07"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	30-Dec-07	16307.83	=""	="ARCHITECTURAL HARDWARE"	10-May-08 10:43 AM	

+="CN76780"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	08-Nov-07	30-Nov-07	17725.02	=""	="THOMSON RICH O'CONNOR"	10-May-08 10:43 AM	

+="CN76793"	"Various Aust WW1 and WW2 flying Corps Group O, Cross Vic. Junior Sect. Aust Korea SQN, etc."	="Department of Defence"	10-May-08	="Collectibles and awards"	03-Dec-07	21-Dec-07	18644.60	=""	="IAN S WRIGHT"	10-May-08 10:44 AM	

+="CN76798"	"CONTRACT SERVICES FLLA"	="Department of Defence"	10-May-08	="Cleaning and janitorial services"	31-Oct-07	30-Nov-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76802"	"VEHICLE LEASE FLLA  NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Oct-07	30-Nov-07	16022.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76817"	"GRAPHIC DESIGN AND PRINTING"	="Department of Defence"	10-May-08	="Printed media"	30-Nov-07	30-Jun-08	16500.00	=""	="WISDOM GRAPHIC DESIGN & ADVERT"	10-May-08 10:45 AM	

+="CN76822"	"AFPO Airline Costs (Line 1 fo AFPO 5) / Line 2 for AFPO 16 and Line 3 for AFPO 20"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	16093.72	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76834"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	19093.98	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76846"	"HQJOC PROJECT-SERVER RACKS AUSTRALIA-JUNCTION BOX SERVER RACKS AUSTRALIA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	18810.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 10:47 AM	

+="CN76866"	"POC: Jason Yap PHONE: 02 6265 0001"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	19250.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76870"	"MAINTENANCE FY 2007/2008"	="Department of Defence"	10-May-08	="Tools and General Machinery"	03-Dec-07	30-Jun-08	16396.60	=""	="AXIS MACHINE TOOLS PTY LTD"	10-May-08 10:49 AM	

+="CN76885"	"wis services"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Nov-07	01-Nov-07	19172.25	=""	="NEWSAT LTD"	10-May-08 10:49 AM	

+="CN76892"	"PRINTING & DISTRIBUTION OF CIVILIAN PAYMENT ADVICE SLIPS"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	30-Nov-07	30-Jun-08	19000.00	=""	="HERMES PRECISA PTY LTD"	10-May-08 10:50 AM	

+="CN76909"	"Professional Services  - Author's brief for LWP 9-3-2"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-Oct-07	30-Jun-08	19744.34	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:51 AM	

+="CN76912"	"SUN STORAGE TEK SL500 DRIVE EXPANSION MODULES"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	23-Nov-07	19277.15	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:51 AM	

+="CN76923"	"ADDP 3.3.1 SUBMISSION OF FIRST DRAFT"	="Department of Defence"	10-May-08	="Printed media"	08-Nov-07	28-Feb-08	17050.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:52 AM	

+="CN76931"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	31-Oct-07	30-Nov-07	16632.00	=""	="CLAYTON UTZ"	10-May-08 10:52 AM	

+="CN76938"	"Technical Contact Roger Henwood Ph: 08 8674 3207"	="Department of Defence"	10-May-08	="Medical training and education supplies"	22-Nov-07	30-Jun-08	17481.00	=""	="ORICA EXPLOSIVES"	10-May-08 10:53 AM	

+="CN76951"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	18445.50	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76955"	"CHP WAGES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	31-Dec-07	18171.58	=""	="MONEY"	10-May-08 10:54 AM	

+="CN76964"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	17-Dec-07	17450.00	=""	="CENTRE STATE PRINTING"	10-May-08 10:54 AM	

+="CN76970"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	22-Nov-07	22-Nov-07	16654.00	=""	="CANBERRA MAILING & ENVELOPES"	10-May-08 10:54 AM	

+="CN76980"	"High Accuracy receiver"	="Department of Defence"	10-May-08	="Satellites"	23-Nov-07	30-Nov-07	16225.00	=""	="ULTIMATE POSITIONING"	10-May-08 10:55 AM	

+="CN77000"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Jan-08	16-Jan-08	17857.14	=""	="RPC TELECOMMUNICATIONS LTD"	10-May-08 11:41 AM	

+="CN77014"	"Access Control System"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	31-Jan-08	16945.50	=""	="CHUBB AUSTRALIA PTY LTD"	10-May-08 11:42 AM	

+="CN77028"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	01-Mar-08	19248.00	=""	="TOUR HOSTS PTY LTD"	10-May-08 11:43 AM	

+="CN77034"	"manufacture and supply covers etc"	="Department of Defence"	10-May-08	="Industrial Manufacturing and Processing Machinery and Accessories"	16-Jan-08	17-Mar-08	16412.00	=""	="AUSTEK ENGINEERING TRADING PTY"	10-May-08 11:43 AM	

+="CN77048"	"Training"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	30-Jun-08	16610.00	=""	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	10-May-08 11:44 AM	

+="CN77055"	"Construct Antenna Gantry RAAF Williams Pt Cook BCP"	="Department of Defence"	10-May-08	="Prefabricated structures"	01-Feb-08	07-Mar-08	19800.00	=""	="ROGERS FABRICATIONS PTY LTD"	10-May-08 11:44 AM	

+="CN77058"	"TV and ceiling brackets"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	17-Jan-08	24-Jan-08	17853.00	=""	="AV CENTRAL"	10-May-08 11:45 AM	

+="CN77060"	"AMPS 5.0 SEA ADMINISTRATION COURSE FOR NAVAL PERSO"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	07-Mar-08	19800.00	=""	="EDEN TECHNOLOGY PTY LTD"	10-May-08 11:45 AM	

+="CN77086"	"Antennas"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	04-Feb-08	02-May-08	18744.00	=""	="RAMIS HOLDINGS PTY LTD"	10-May-08 11:46 AM	

+="CN77098"	"technical supprot services"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	04-Feb-08	30-Jun-08	16457.78	=""	="VIPAC ENGINEERS & SCIENTISTS"	10-May-08 11:47 AM	

+="CN77112"	"PROJECT MANAGEMENT SERVICES FOR HYCAUSE CLOSURE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Feb-08	02-Feb-08	16299.67	=""	="BLUE SWIMMER CONSULTING"	10-May-08 11:48 AM	

+="CN77117"	"Battery Marathon external, turbine and housing, Transducer, Barometer, regulator, charger"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	15-Jan-08	29-Feb-08	16097.00	=""	="TECHNIPRO MARKETING PTY LTD"	10-May-08 11:49 AM	

+="CN77121"	"JOHN GARDNER CONTRACT UNDER SON45190"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Feb-08	30-Jun-08	18700.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:49 AM	

+="CN77122"	"VMWare Software"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	27-Feb-08	17715.50	=""	="HARRIS TECHNOLOGY"	10-May-08 11:49 AM	

+="CN77167"	"SERVER HARDWARE AND SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	03-Mar-08	16222.80	=""	="PARTNER IT"	10-May-08 11:52 AM	

+="CN77184"	"SOFTWARE REQUIRED FOR SET UP OF NIDA CLASSROOM ENGINEERING FACULTY HMAS CERBERUS"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	16-Jan-08	17699.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:53 AM	

+="CN77189"	"SECURITY CONTRACT"	="Department of Defence"	10-May-08	="Security and control equipment"	01-Feb-08	08-Feb-08	16319.66	=""	="HIGH RISK SECURITY PTY LTD"	10-May-08 11:54 AM	

+="CN77211"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	01-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77213"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77219"	"Computer Accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	16669.40	=""	="DIGICOR PTY LTD"	10-May-08 11:55 AM	

+="CN77220"	"kangaroo exclusion fence- maintainence"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	18-Jan-08	30-Jun-08	19686.03	=""	="SERCO AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77224"	"Computer Gear"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	07-Feb-08	17357.29	=""	="AVNET ELECTRONICS MARKETING"	10-May-08 11:56 AM	

+="CN77227"	"SN02714 - PM FEES FOR R1-C FITOUT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	18810.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77228"	"Heat Exchanger"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	31-Jan-08	28-Feb-08	16588.00	=""	="ANALYTICAL EQUIPMENT CO"	10-May-08 11:56 AM	

+="CN77233"	"AUTOZOC TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	18-Jan-08	15-Feb-08	18392.00	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:56 AM	

+="CN77246"	"Army Museum Plaques"	="Department of Defence"	10-May-08	="Signage and accessories"	23-Jan-08	23-Jan-08	19382.06	=""	="A1 PLAQUES AUSTRALIA"	10-May-08 11:57 AM	

+="CN77248"	"DSM Dyneema HB26 Panels"	="Department of Defence"	10-May-08	="Exterior finishing materials"	23-Jan-08	29-Feb-08	18020.07	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:57 AM	

+="CN77249"	"Research Agreement"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Jan-08	30-Jun-08	16500.00	=""	="UNI OF SA - REVENUE OFFICE"	10-May-08 11:57 AM	

+="CN77252"	"Bulk LPG, Fire fighting training, Army Logistic Training Centre, Bandiana"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	23-Jan-08	25-Jan-08	18424.00	=""	="KLEENHEAT GAS CENTRE"	10-May-08 11:57 AM	

+="CN77256"	"BOC-D-900-CLASS C SECURITY MAXTOR COMPACTUS 6 BAY FOR BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	12-Mar-08	18427.20	=""	="BROWNBUILT PTY LTD"	10-May-08 11:57 AM	

+="CN77261"	"VARIOUS PLACES -  VTC - YEARLY AMEND SERVICES FOR AIRSERVICES - Grace Donato"	="Department of Defence"	10-May-08	="Leatherworking repairing machinery and equipment"	21-Jan-08	31-Jul-08	18752.69	=""	="AIRSERVICES AUSTRALIA"	10-May-08 11:58 AM	

+="CN77304"	"1X1.47 METER GEMINI RIB 1670 HYPALON TUBES AS NAVY SPECIFICATIONS WITH 40HP MERCURY"	="Department of Defence"	10-May-08	="Safety and rescue vehicles"	17-Jan-08	22-Jan-08	18480.00	=""	="BRITTON MARINE PTY LTD"	10-May-08 12:00 PM	

+="CN77305"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	24-Jan-08	30-Jun-08	17375.93	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:00 PM	

+="CN77317"	"PROLIANT DL380 / HP PCI -X /PCI-E NHP380G5/385G2 R HP DVD+RW 24X SLIM CBT DRV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	30-Jan-08	18915.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:01 PM	

+="CN77352"	"Compactus B.O.C. "A" Base 4 bay, "D" base 6 bay"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	15-Feb-08	17534.00	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 12:03 PM	

+="CN77373"	"Training - Managing your Career"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Jan-08	30-Jun-08	16750.00	=""	="TWYFORD CONSULTING"	10-May-08 12:04 PM	

+="CN77376"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	17-Jan-08	15-Feb-08	18583.40	=""	="J S MCMILLAN PRINTING GROUP"	10-May-08 12:04 PM	

+="CN77384"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Jun-08	20000.00	=""	="CHRISTIE BETRO MANAGMENT"	10-May-08 12:05 PM	

+="CN77419"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	30-Jun-08	20000.00	=""	="MARGARET MCNALLY"	10-May-08 12:07 PM	

+="CN77421"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	16672.70	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77445"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77462"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77497"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77506"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	17131.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:12 PM	

+="CN77533"	"Leader 1025HS Telephones"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Jan-08	11-Feb-08	17325.00	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:13 PM	

+="CN77549"	"Acer LCD Monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	06-Feb-08	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77567"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	18400.00	=""	="DEACONS"	10-May-08 12:15 PM	

+="CN77599"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Jan-08	31-Jan-08	19475.50	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 12:17 PM	

+="CN77600"	"ELECT COMPONETS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	24-Jan-08	28-Feb-08	17221.60	=""	="AUSTRALIAN BALDOR PTY LTD"	10-May-08 12:17 PM	

+="CN77617"	"MANNEQUIN FIGURES"	="Department of Defence"	10-May-08	="Structural materials and basic shapes"	14-Jan-08	14-Jan-08	16500.00	=""	="ROB SMALL"	10-May-08 12:18 PM	

+="CN77644"	"REPAIRS TO BUILDINGS AND FACILITIES SWBTA POST EX WALLABY 07"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	16467.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:20 PM	

+="CN77653"	"KEY SAFE"	="Department of Defence"	10-May-08	="Containers and storage"	14-Jan-08	14-Jan-08	16435.00	=""	="CIC SECURE PTY LTD"	10-May-08 12:20 PM	

+="CN77656"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="ACTSAFE AUSTRALIA PTY LTD"	10-May-08 12:20 PM	

+="CN77658"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="INSIGHT SERVICES GROUP"	10-May-08 12:20 PM	

+="CN77660"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="NELSON-TYERS CONSULTING PTY LTD"	10-May-08 12:20 PM	

+="CN77690"	"DISPOSAL OF MINE DETECTOR KITS"	="Department of Defence"	10-May-08	="Scrap and waste materials"	11-Dec-07	18-Dec-07	16840.76	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 12:22 PM	

+="CN77701"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	22-Jan-08	19693.22	=""	="COMMANDER (ACT)"	10-May-08 12:23 PM	

+="CN77712"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	19-Dec-07	19772.21	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77729"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	19800.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:24 PM	

+="CN77747"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:25 PM	

+="CN77764"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Jan-08	31-May-08	18886.20	=""	="LANCEMORE HILL"	10-May-08 12:26 PM	

+="CN77772"	"RENEW TECHNICAL ENHANCEMENTS & CUSTOMER SUPPORT FO R ANSYS AUTODYN SOFTWARE FROM 01/03/08-28/02/"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	21-Jan-08	19888.00	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77786"	"Subscription Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Jan-08	18-Jan-08	16500.00	=""	="SYDNEY INSTITUTE OF MARINE SCIENCE"	10-May-08 12:27 PM	

+="CN77792"	"HIRE OF PLANE"	="Department of Defence"	10-May-08	="Aircraft"	14-Jan-08	14-Jan-08	19863.25	=""	="KESTREL AVIATION"	10-May-08 12:28 PM	

+="CN77797"	"Provision of Risk Assessment Services"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	10-Dec-07	15-Jan-08	17333.25	=""	="LAMBERT REHBEIN (VIC) PTY LTD"	10-May-08 12:28 PM	

+="CN77814"	"Monitor Receiver housings and covers"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	11-Jan-08	30-Jan-08	17078.60	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 12:29 PM	

+="CN77845"	"Pan tilt unit/power supply"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	10-Dec-07	30-Jan-08	19381.30	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 12:30 PM	

+="CN77862"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	12-Feb-08	16323.23	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:31 PM	

+="CN77865"	"Standing offer"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	14-Mar-08	18618.60	=""	="BLUE SWIMMER CONSULTING"	10-May-08 12:32 PM	

+="CN77879"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	13-Dec-07	13-Dec-07	18894.57	=""	="AGFA-GEVAERT LTD"	10-May-08 12:32 PM	

+="CN77882"	"Employment of PSP at Enoggera / Amberley"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	19250.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:33 PM	

+="CN77904"	"rack mount configued server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Dec-07	17409.70	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77906"	"ELECTRICAL WINCH AND CABLES"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	13-Dec-07	13-Jan-08	18976.32	=""	="VELDEMAN AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77907"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	19254.40	=""	="AUSTRAINING NSW PTY LTD"	10-May-08 12:34 PM	

+="CN77916"	"Engagement of Security Architect"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	29-Feb-08	17856.35	=""	="ENTRUST LTD"	10-May-08 12:34 PM	

+="CN77917"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	16430.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:34 PM	

+="CN77952"	"Class B Security Containers"	="Department of Defence"	10-May-08	="Containers and storage"	30-Jan-08	29-Feb-08	16918.00	=""	="FILEGUARD CO (MFG) PTY LTD"	10-May-08 12:36 PM	

+="CN77959"	"LEASE OF CONTAINERS FOR STORAGE OF ICT EQUIPMENT"	="Department of Defence"	10-May-08	="Containers and storage"	29-Jan-08	30-Jun-08	16500.00	=""	="DAWSON MOVING & STORAGE"	10-May-08 12:37 PM	

+="CN77964"	"EXERCISE TOUCHSTONE 29-30 Oct 07"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Dec-07	12-Dec-07	16470.00	=""	="HOLIDAY INN SYDNEY AIRPORT"	10-May-08 12:37 PM	

+="CN77976"	"Fit Emergency Exits"	="Department of Defence"	10-May-08	="Doors and windows and glass"	12-Dec-07	30-Aug-08	17802.40	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:38 PM	

+="CN77978"	"Transmission at Cultana 05-23 Sep 2007"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	31-Dec-07	19068.60	=""	="TELSTRA"	10-May-08 12:38 PM	

+="CN77984"	"CATALYST 3750 48 10/100/1000 4 SFP ENHANCED MULTILAYER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	21-Dec-07	19049.48	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 12:38 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val20000to30000.xls
@@ -1,1 +1,581 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73904"	"Battery Storage"	="Defence Materiel Organisation"	08-May-08	="Lead acid batteries"	07-May-08	30-May-08	24554.64	=""	="M & H POWER SYSTEMS PTY LTD"	08-May-08 07:12 AM	

+="CN73905"	"Repair of Accumulator APU"	="Defence Materiel Organisation"	08-May-08	="Aircraft"	23-Apr-08	30-Apr-08	27048.00	=""	="Sikorsky Aircraft Australia Ltd"	08-May-08 07:57 AM	

+="CN73906"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	08-May-08	="Aircraft spars"	08-May-08	09-Mar-09	24481.22	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	08-May-08 08:16 AM	

+="CN73910"	"Contractor - Chairperson to SACF"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Human resources services"	11-Jan-08	30-Jun-08	20000.00	=""	="VIC SMITH INVESTMENT TRUST"	08-May-08 08:52 AM	

+="CN73911"	"Printed Perspex Panels for Resource Cent"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	18-Apr-08	30-May-08	23100.00	="TRS06/036"	="Zoo Communications Pty Ltd"	08-May-08 08:52 AM	

+="CN73912"	"50% payment of Event Host Sponsor Pkg Final 50% payment of Event Host Sponsor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	06-Oct-08	25000.00	=""	="Informa Australia Pty Ltd"	08-May-08 08:52 AM	

+="CN73913"	"Editorial Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	29-Jun-07	29-Jun-10	20000.00	="TRS06/036"	="Morris Walker"	08-May-08 08:52 AM	

+="CN73914"	"Consultancy - SES workshop"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Hotels and lodging and meeting facilities"	15-Feb-08	30-Jun-08	28547.20	=""	="THE NOUS GROUP"	08-May-08 08:52 AM	

+="CN73919"	"Help for peak period in processing TSPs"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	21-Apr-08	30-Jun-08	21701.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	08-May-08 08:53 AM	

+="CN73924"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	24045.13	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73925"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	08-May-08 08:54 AM	

+="CN73926"	"Legal Services Expenditure 6757"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	28-Apr-08	30-Jun-09	24329.80	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73930"	"Legal Services Expenditure 6847"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	11-Aug-06	30-Jun-09	22600.82	="TRS06/175"	="MINTER ELLISON LAWYERS"	08-May-08 08:54 AM	

+="CN73932"	"Desktop Research Analysis -Human Factors"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Information services"	22-Apr-08	24-Jun-08	27580.93	="TRS08/052"	="HART SECURITY AUSTRALIA PTY LIMITED"	08-May-08 08:55 AM	

+="CN73935"	"Financial Services - Review of MOG Changes"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Accounting and auditing"	11-Mar-08	31-May-08	24516.39	="TRS06/037"	="WALTER & TURNBULL  PTY LTD"	08-May-08 08:55 AM	

+="CN73937"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	28-Apr-08	06-Jun-08	20592.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:55 AM	

+="CN73947"	"Supply of 10 x Propellor Shafts for Fire Trucks"	="Defence Materiel Organisation"	08-May-08	="Drive shafts"	07-May-08	31-Oct-09	22770.00	="FV8019"	="A & D International"	08-May-08 10:17 AM	

+="CN73837"	"Provision of Information Technology Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	06-Aug-07	09-Nov-07	24750.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:31 AM	

+="CN74006"	"Licence for ValueFinancials (CaseWare Software for the Court's Annual Financial Statements)"	="Family Court of Australia"	08-May-08	="Software"	08-May-08	30-Jun-08	20240.00	=""	="PriceWaterHouse Coopers"	08-May-08 12:08 PM	

+="CN74034-A1"	"Centralised Audit Logging System (CAL)"	="Australian Taxation Office"	08-May-08	="Information technology consultation services"	12-May-08	13-Jun-08	29620.80	="RFQ 02-2008"	="Electronic Warfare Associates"	08-May-08 01:59 PM	

+="CN73970"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Sep-07	03-Dec-07	27500.00	=""	="Greythorn Pty Ltd"	08-May-08 03:36 PM	

+="CN74091"	"Provision of professional services - Client Survey"	="Department of Health and Ageing"	08-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	26436.00	=""	="Orima Research Pty Ltd"	08-May-08 03:50 PM	

+="CN74072-A1"	"Forensic Accounting"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	28-Apr-08	30-Jun-08	28000.00	=""	="PPB Forensic"	08-May-08 03:51 PM	

+="CN74070"	"Foxtel intallation"	="Australian Securities and Investments Commission"	08-May-08	="Cable television services"	01-Apr-08	30-Apr-10	20380.80	=""	="IRESS Market Technology Limited"	08-May-08 03:55 PM	

+="CN74096"	"Monitors, Computer and accessories"	="National Archives of Australia"	08-May-08	="Computer Equipment and Accessories"	02-May-08	02-Jun-08	22077.00	=""	="DELL COMPUTERS PTY LTD"	08-May-08 04:03 PM	

+="CN74099"	"ProjectorsandWarranty"	="National Archives of Australia"	08-May-08	="Computer accessories"	11-Apr-08	11-May-08	23377.20	=""	="Electroboard Solutions Pty Ltd"	08-May-08 04:03 PM	

+="CN74106"	"Omnibus Survey"	="National Archives of Australia"	08-May-08	="Promotional or advertising printing"	23-Apr-08	30-Apr-08	25683.00	=""	="Newspoll"	08-May-08 04:04 PM	

+="CN74107"	"Rebuild web application"	="National Archives of Australia"	08-May-08	="Software maintenance and support"	23-Apr-08	30-Jun-08	28765.00	=""	="The Reading Room Australia Pty Ltd"	08-May-08 04:04 PM	

+="CN74112"	"Working Field to Vault"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	20-Jun-08	26493.50	=""	="Remedial Building Services Aust Pty Ltd"	08-May-08 04:04 PM	

+="CN74114"	" PART NUMBER BS220110117T56GBOX CAGE CODE - Z5047  NSN - 8145/661512289 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	21-Feb-08	22-Mar-08	24465.00	=""	="TRIMCAST PTY LTD"	08-May-08 04:07 PM	

+="CN73966-A1"	" Expert Witness "	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Jan-08	30-Jun-08	27000.00	=""	="McGrath Nicol"	08-May-08 04:08 PM	

+="CN73959"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Apr-08	30-Jun-08	30000.00	=""	="Ernst & Young"	08-May-08 04:11 PM	

+="CN74041"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	15-Nov-07	30-Jun-08	30000.00	=""	="Mr Alan MacSporran"	08-May-08 04:21 PM	

+="CN74039"	" Legal services - Counsel "	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	26-Feb-08	30-Jun-08	25000.00	=""	="Mr Michael Pearce SC"	08-May-08 04:22 PM	

+="CN74002"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	01-Nov-07	31-Oct-08	25000.00	=""	="Mr David J. Batt"	08-May-08 04:27 PM	

+="CN74119"	" REGULATOR, AIR PRESSURE, AIRCRAFT CABIN REPAIR - EXTERNAL  NSN - 1660/661019173 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	17-May-08	21047.00	=""	="QANTAS AIRWAYS LTD"	08-May-08 04:27 PM	

+="CN73991"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	06-May-08	31-Aug-08	25700.00	=""	="Slade Group"	08-May-08 04:30 PM	

+="CN73987"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	06-May-08	31-Aug-08	25700.00	=""	="Robert Walters"	08-May-08 04:30 PM	

+="CN74123"	" WINDOW PANEL - REPAIR  NSN - 1560/014796632 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	08-May-08	30-Nov-08	24833.38	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:42 PM	

+="CN74124"	"2008 Regional Directors Conference: building capability Through Collaboration."	="National Native Title Tribunal"	08-May-08	="Meetings events"	31-Mar-08	01-Apr-08	22750.00	=""	="Australian Public Service Commission"	08-May-08 04:43 PM	

+="CN73954"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	08-May-08 04:48 PM	

+="CN74143"	"Web site services"	="National Health and Medical Research Council"	09-May-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	30-Jun-08	26430.40	=""	="ICE MEDIA PTY LTD"	09-May-08 08:36 AM	

+="CN74146"	"Audio and visual requirments for Council Meetings"	="National Health and Medical Research Council"	09-May-08	="Information Technology Broadcasting and Telecommunications"	18-Feb-08	30-Jun-09	21600.00	=""	="ONE VISION PTY LTD"	09-May-08 08:36 AM	

+="CN74149"	"Cabcharge"	="National Health and Medical Research Council"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Jun-08	20000.00	=""	="CABCHARGE AUSTRALIA LIMITED"	09-May-08 08:37 AM	

+="CN74175"	"To upgrade & modify power distribution panel, master switches/video monitor to switching control console. To repaint, test and certify."	="Defence Materiel Organisation"	09-May-08	="Specialty aircraft"	05-May-08	04-Jun-08	23650.00	=""	="Air Affairs"	09-May-08 10:19 AM	

+="CN74173-A1"	"Insolvency administration (variation)"	="Australian Securities and Investments Commission"	09-May-08	="Accounting services"	01-Dec-07	31-Mar-08	20000.00	=""	="Grant Thornton Services"	09-May-08 10:38 AM	

+="CN74204"	"Provision of carpet laying and floor covering services"	="Department of Parliamentary Services"	09-May-08	="Carpeting"	05-May-08	30-May-08	28155.60	=""	="Chesta's Floors"	09-May-08 11:19 AM	

+="CN74211"	"Provision of removal services"	="Department of Parliamentary Services"	09-May-08	="Personnel relocation"	24-Apr-08	30-May-08	27500.00	=""	="Sirva Group (NZ) Ltd T/a"	09-May-08 11:20 AM	

+="CN74212"	"Supply for server equipment Supply,warranty and maintenace Contract DPS05054"	="Department of Parliamentary Services"	09-May-08	="Computer servers"	21-Apr-08	06-Jun-08	20809.93	=""	="Hewlett Packard Australia Pty Ltd"	09-May-08 11:21 AM	

+="CN74214"	"SAS Systemsfor window licensees Contract (DPS06065 )"	="Department of Parliamentary Services"	09-May-08	="Software"	21-Apr-08	21-May-08	25608.00	=""	="SAS Institute Australia Pty Ltd"	09-May-08 11:21 AM	

+="CN74216"	"Supply of Art Works"	="Department of Parliamentary Services"	09-May-08	="Visual art services"	18-Apr-08	31-May-08	25758.70	=""	="Tolarno Galleries"	09-May-08 11:21 AM	

+="CN74218"	"Waste removal and recycling services Contract (DPS05003 )"	="Department of Parliamentary Services"	09-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	06-Jun-08	22000.00	=""	="SITA Australia Pty Ltd"	09-May-08 11:21 AM	

+="CN74226"	"valuation, replacement and maintenance strategy for catering equipment in Parliament House"	="Department of Parliamentary Services"	09-May-08	="Catering services"	06-May-08	30-Jun-08	26400.00	=""	="Foodservice Consultants Aust P/L"	09-May-08 11:22 AM	

+="CN74245"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	06-Mar-08	06-Mar-08	21064.56	=""	="HOLIDAY INN ADELAIDE"	09-May-08 11:48 AM	

+="CN74246"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74248"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74249"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74250"	"Airfares"	="Department of Defence"	09-May-08	="Passenger transport"	06-Mar-08	06-Mar-08	28395.09	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:48 AM	

+="CN74252"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	10-Mar-08	10-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:49 AM	

+="CN74260"	"P/N: DEFENCECAIROGRPAPRZEROEIGHT TKT: 08147026437680 R/N: Not Supplied SINGAPORE AIRL ONO: 332281-21300 GWT: 10292-0794"	="Department of Defence"	09-May-08	="Aircraft"	04-Apr-08	04-Apr-08	20980.08	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74266"	"ACSC OST 2008 - Vietnam Flights"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	08-Apr-08	08-Apr-08	22180.40	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74279"	"LSE # 399 07/08 - Assorted Freight Charges: LSE-ME Freight / Freight BAH-NAS NOWRA / Freight DUB-BAH"	="Department of Defence"	09-May-08	="Mail and cargo transport"	14-Jan-08	14-Jan-08	22453.73	=""	="DHL INTERNATIONAL W.L.L."	09-May-08 11:52 AM	

+="CN74288"	"20080303 Water Charges"	="Department of Defence"	09-May-08	="Water and wastewater treatment supply and disposal"	08-Mar-08	18-Mar-08	22288.00	=""	="IPSWICH CITY COUNCIL"	09-May-08 11:53 AM	

+="CN74290"	"Travelodge hotel charges for Drydock Newcastle"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	14-Mar-08	05-May-08	24009.60	=""	="TRAVELODGE NEWCASTLE"	09-May-08 11:53 AM	

+="CN74294"	"Medical Appointment"	="Department of Defence"	09-May-08	="Medical practice"	19-Mar-08	19-Mar-08	23665.70	=""	="EPWORTH FOUNDATION"	09-May-08 11:54 AM	

+="CN74297"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	19-Mar-08	18-Apr-08	23664.00	=""	="DR PAUL BANNAN"	09-May-08 11:54 AM	

+="CN74300"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	21-Mar-08	20-Apr-08	26427.00	=""	="THE MOUNT PRIVATE"	09-May-08 11:55 AM	

+="CN74307"	"HSFWAG MEDICAL"	="Department of Defence"	09-May-08	="Healthcare Services"	26-Mar-08	26-Mar-08	25100.00	=""	="DR ROBERT FRANCIS DRIE"	09-May-08 11:56 AM	

+="CN74314"	"HSFWAG MEDICAL APPT"	="Department of Defence"	09-May-08	="Healthcare Services"	31-Mar-08	31-Mar-08	25000.00	=""	="M O F S PTY LTD"	09-May-08 11:57 AM	

+="CN74316"	"08/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	31-Mar-08	30-Apr-08	27817.33	=""	="LANDSTUHL REG MED CENTER"	09-May-08 11:57 AM	

+="CN74325"	"HOSTELS. CREW ACCOMMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	03-Apr-08	30-Apr-08	22020.00	=""	="MANTRA ON FROME"	09-May-08 11:59 AM	

+="CN74328"	"Furniture - WR Stock DWN"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	31-Mar-08	31-Mar-08	23190.30	=""	="HPA INCORPORATED"	09-May-08 11:59 AM	

+="CN74330"	"Fencing, Towers, Lighting  and Delivery and Pick up BB1A 08-5040-04-01ABR Hire grouped all transactions together for their services."	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	02-Apr-08	04-Apr-08	20133.60	=""	="ABR HIRE P/L"	09-May-08 11:59 AM	

+="CN74336"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	07-Apr-08	07-May-08	27198.54	=""	="ST JOHN OF GOD HOSPIT"	09-May-08 12:00 PM	

+="CN74339"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	09-Apr-08	09-Apr-08	23850.86	=""	="DARWIN PRIVATE HOSP"	09-May-08 12:01 PM	

+="CN74340"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	09-Apr-08	09-Apr-08	21085.32	=""	="DARWIN PRIVATE HOSP"	09-May-08 12:01 PM	

+="CN74362"	"HSFWAG MEDICAL APPT"	="Department of Defence"	09-May-08	="Healthcare Services"	14-Apr-08	14-Apr-08	25000.00	=""	="H E STONE PTY LTD"	09-May-08 12:04 PM	

+="CN74366"	"Health expenditure"	="Department of Defence"	09-May-08	="Healthcare Services"	23-Apr-08	07-May-08	22429.57	=""	="ST VINCENTS PRV HOSP"	09-May-08 12:04 PM	

+="CN74368"	"Furniture - PO 4500624771"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	28-Apr-08	28-Apr-08	22140.80	=""	="COMP OFFICE SUPPLIES"	09-May-08 12:04 PM	

+="CN74393"	"Software maintenance and support renewal agreement"	="Australian Securities and Investments Commission"	09-May-08	="Information technology consultation services"	01-May-08	30-Apr-09	29964.21	=""	="OpenText Corporation"	09-May-08 02:07 PM	

+="CN74415"	"Legal Costs"	="Department of Finance and Deregulation"	09-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	29900.00	="N/A"	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 02:26 PM	

+="CN74387"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	09-Nov-07	30-Nov-07	20020.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:10 PM	

+="CN74436"	"FURNITURE - 2 CAV - ROBERTSON BARRACKS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	30-Jun-08	29887.00	=""	="COMPLETE OFFICE SUPPLIES"	09-May-08 03:39 PM	

+="CN74441"	"    Venue and accommodation costs - APEC Aviation Emissions Seminar    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	05-Apr-08	05-Apr-08	22599.16	=""	="Shangri-la International"	09-May-08 03:41 PM	

+="CN74446"	"Supply and install 5 x Plasma screens"	="Department of Defence"	09-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	07-Mar-08	31-Mar-08	25861.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 03:41 PM	

+="CN74451"	"CLERICAL OFFICE CHAIRS DRAUGHTING CHAIRS"	="Department of Defence"	09-May-08	="Office and desk accessories"	06-Mar-08	20-Mar-08	24035.00	=""	="STURDY FRAMAC"	09-May-08 03:42 PM	

+="CN74455"	"Bid 17 ASI FAMIS"	="Department of Defence"	09-May-08	="Aircraft equipment"	06-Mar-08	30-Jun-08	28165.28	=""	="TENIX DEFENCE PTY LTD"	09-May-08 03:43 PM	

+="CN74457"	"GYM EQUIPMENT"	="Department of Defence"	09-May-08	="Fitness equipment"	06-Mar-08	03-Apr-08	24964.50	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	09-May-08 03:43 PM	

+="CN74471"	"Replace Six (6) Safety Showers/Eye Wash Stations"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	07-Mar-08	30-Jun-08	26400.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 03:45 PM	

+="CN74472"	"Notebook Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	23996.72	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:45 PM	

+="CN74477"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	23665.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 03:46 PM	

+="CN74482"	"ALUMINIUM STRETCHERS, QTY 501"	="Department of Defence"	09-May-08	="Camping and outdoor equipment and accessories"	07-Mar-08	07-Mar-08	21988.89	=""	="OZTRAIL PTY LTD"	09-May-08 03:47 PM	

+="CN74487"	"REC EQUIPMENT"	="Department of Defence"	09-May-08	="Recreation and playground and swimming and spa equipment and supplies"	05-Mar-08	31-Mar-08	20399.52	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	09-May-08 03:48 PM	

+="CN74502"	"6-CHANNEL UPPER NECK LOAD CELL"	="Department of Defence"	09-May-08	="Consumer electronics"	06-Mar-08	05-May-08	26862.57	=""	="ROBERT A. DENTON INC."	09-May-08 03:49 PM	

+="CN74503"	"Licence & Support  Renewal 27.03.2008 - 26.03.2009"	="Bureau of Meteorology"	09-May-08	="Computer services"	17-Apr-08	26-Mar-09	20099.98	=""	="Oracle Corporation Australia"	09-May-08 03:49 PM	

+="CN74504"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	06-Mar-08	30-Jun-08	24965.00	=""	="DEACONS"	09-May-08 03:49 PM	

+="CN74507"	"ARGOS satellite services Feb 2008"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	31-May-08	26156.39	=""	="CLS"	09-May-08 03:50 PM	

+="CN74510"	"National Corporate Licence for May 08 to April 09"	="Bureau of Meteorology"	09-May-08	="Computer services"	22-Apr-08	30-Apr-09	21340.00	=""	="Chemwatch"	09-May-08 03:50 PM	

+="CN74516"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	22-Apr-08	31-May-08	22365.26	=""	="Telstra  (ID No. 740)"	09-May-08 03:50 PM	

+="CN74523"	"Bid 23 SCI Training"	="Department of Defence"	09-May-08	="Aircraft equipment"	18-Mar-08	30-Jun-08	27485.27	=""	="ABELIA CORPORATION"	09-May-08 03:50 PM	

+="CN74525"	"Furniture for Capital Jet Building"	="Bureau of Meteorology"	09-May-08	="Furniture and Furnishings"	24-Apr-08	30-Apr-08	25998.50	=""	="Schiavello (Act) Pty Ltd"	09-May-08 03:50 PM	

+="CN74527"	"ACCOMMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	05-Mar-08	24-May-08	26037.00	=""	="CULLEN BAY HOLIDAY APARTMENTS"	09-May-08 03:50 PM	

+="CN74540"	"Laptop HP Compaq HP 6910P"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	23-Apr-08	07-May-08	28664.00	=""	="Leading Solutions Pty Ltd"	09-May-08 03:51 PM	

+="CN74546"	"Twinhead Durabook S15ST2 Qty 10"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	24-Apr-08	30-Apr-08	27159.00	=""	="Newcomputers.com.au Pty Ltd"	09-May-08 03:51 PM	

+="CN74547"	"FRUIT AND VEGETABLES FOR RATIONS"	="Department of Defence"	09-May-08	="Fruits and vegetables and nuts and seeds"	18-Mar-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	09-May-08 03:51 PM	

+="CN74554"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	06-Mar-08	27720.00	=""	="RAPID FLEET COMPUTING PTY LTD"	09-May-08 03:52 PM	

+="CN74565"	"Training Course"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Mar-08	31-Mar-08	22683.65	=""	="DATA STREAM SOLUTIONS"	09-May-08 03:52 PM	

+="CN74584"	"TRAINING PROGRAM HYDROLOGISTS"	="Bureau of Meteorology"	09-May-08	="Education and Training Services"	08-May-08	08-May-08	30000.00	=""	="SINCLAIR KNIGHT MERZ"	09-May-08 03:53 PM	

+="CN74590"	"Energy Conservation Measures"	="Department of Defence"	09-May-08	="Insulation"	20-Mar-08	30-Jun-08	24610.50	=""	="RESOLVE FM"	09-May-08 03:53 PM	

+="CN74596"	"Digital recievers and Equiptment"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	06-Mar-08	21-Mar-08	25399.00	=""	="AV CENTRAL"	09-May-08 03:54 PM	

+="CN74597"	"CONTACT NEV IRISH 08 8935 4468 WR: 150147980"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Jun-08	25895.00	=""	="WILDMAN LAND MANAGEMENT"	09-May-08 03:54 PM	

+="CN74610"	"PRINTING OF MAPS GAC 11/2008"	="Department of Defence"	09-May-08	="Paper Materials and Products"	06-Mar-08	02-Apr-08	28540.60	=""	="PERKICH & ASSOCIATES"	09-May-08 03:55 PM	

+="CN74617"	"PROMOTIONAL PRODUCTS"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	20-Mar-08	14-May-08	24815.67	=""	="RANCCF SALT SHOP"	09-May-08 03:55 PM	

+="CN74630"	"ENGRAVING AND DISPATCH OF MEDALS"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	11-Mar-08	30-Jun-08	21670.00	=""	="CASHS AUSTRALIA PTY LTD"	09-May-08 03:56 PM	

+="CN74646"	"VIDEO CONFERENCING EQUIPMENT"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	11-Mar-08	15-Mar-08	22709.50	=""	="EVIDEO COMMUNICATIONS"	09-May-08 03:59 PM	

+="CN74647"	"ON-LINE LEGAL RESOURCES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	01-Jul-08	20383.23	=""	="CCH AUSTRALIA LIMITED"	09-May-08 03:59 PM	

+="CN74651"	"BREAK FIX SOLUTION TO REPLACE FAULTY CABLE."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	25-Mar-08	31-Mar-08	22880.00	=""	="ADVANCED COMMUNICATIONS"	09-May-08 03:59 PM	

+="CN74657"	"PARTS"	="Department of Defence"	09-May-08	="Workshop machinery and equipment and supplies"	20-Mar-08	17-Apr-08	26241.60	=""	="HOLMWOOD HIGHGATE"	09-May-08 03:59 PM	

+="CN74675"	"Advanced Ms Project Scheduler"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	19-Apr-08	25000.00	=""	="CODARRA ADVANCED SYSTEMS PTY LTD"	09-May-08 04:01 PM	

+="CN74678"	"Remove Kubota Diesal generator and replace with Onan 8Kva"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	11-Mar-08	30-Apr-08	23716.00	=""	="CENTRAL DIESEL PTY LTD"	09-May-08 04:01 PM	

+="CN74679"	"This order is placed under the terms and condition Standing Offer."	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	30-Jun-08	21378.01	="DMOSS"	="PS MANAGEMENT CONSULTANTS"	09-May-08 04:01 PM	

+="CN74683"	"COAC (AR) TMP & TNA"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-Mar-08	25-Jun-08	29999.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	09-May-08 04:01 PM	

+="CN74684"	"amphlifier"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	11-Mar-08	30-May-08	22126.50	=""	="ASD TECHNOLOGY PTY LTD"	09-May-08 04:01 PM	

+="CN74690"	"CCSM DIESEL EMERGENCY LAGGING REPAIR KITS"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	11-Mar-08	28-Mar-08	26004.00	=""	="NAVCOM PIPING"	09-May-08 04:01 PM	

+="CN74694"	"COACH HIRE"	="Department of Defence"	09-May-08	="Specialised and recreational vehicles"	12-Mar-08	12-Mar-08	21939.75	=""	="COACH CHARTERS AUSTRALIA PTY LTD"	09-May-08 04:02 PM	

+="CN74698"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Mar-08	11-Mar-08	25000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	09-May-08 04:02 PM	

+="CN74701"	"NQ2081 - HMAS CAIRNS Redevelopment Additional Equi Requirements."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	19-Mar-08	30-Jun-08	25383.60	=""	="EMAK COMMUNICATIONS"	09-May-08 04:02 PM	

+="CN74708"	"Contact: Chris Hein 6265 0713"	="Department of Defence"	09-May-08	="Computer services"	11-Mar-08	30-May-08	27423.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	09-May-08 04:03 PM	

+="CN74709"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	29-Jun-08	24393.60	=""	="ICON RECRUITMENT PTY LTD"	09-May-08 04:03 PM	

+="CN74714"	"HAGENUK RADIO MAINTENANCE COURSE 31 MAR 08 - 9 APR 08"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-Mar-08	10-Apr-08	27508.80	=""	="THALES AUSTRALIA"	09-May-08 04:03 PM	

+="CN74717"	"Additional works due to damaged and blocked cable conduits"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	11-Mar-08	31-Mar-08	21503.90	=""	="ADVANCED COMMUNICATIONS"	09-May-08 04:04 PM	

+="CN74722"	"Payment for Chair of Tender Evaluation Team and Travel Expenses"	="Department of Defence"	09-May-08	="Temporary personnel services"	19-Mar-08	30-Sep-08	23000.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	09-May-08 04:04 PM	

+="CN74728"	"TNA & TMP PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	19-Mar-08	25-Jun-08	29892.55	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	09-May-08 04:05 PM	

+="CN74736"	"REPLACE AIR CON COMPRESSOR RAAF BASE AMBERLEY"	="Department of Defence"	09-May-08	="Industrial pumps and compressors"	10-Mar-08	30-Jun-08	22200.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:05 PM	

+="CN74737"	"Monitor 22" DVIWS & Land Warfare Modelling"	="Department of Defence"	09-May-08	="Electronic Components and Supplies"	19-Mar-08	30-May-08	20230.10	=""	="MSY TECHNOLOGY SA PTY LTD"	09-May-08 04:06 PM	

+="CN74744"	"fresh fruit & vegetables wbta"	="Department of Defence"	09-May-08	="Fruits and vegetables and nuts and seeds"	10-Mar-08	30-Jul-08	28380.00	=""	="FARMERS FRUIT EXCHANGE"	09-May-08 04:06 PM	

+="CN74746"	"supply of fresh meat wbta"	="Department of Defence"	09-May-08	="Meat and poultry"	10-Mar-08	30-Jul-08	27500.00	=""	="RENA WHOLESALE MEATS"	09-May-08 04:06 PM	

+="CN74748"	"groceries and smallgoods wbta"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	10-Mar-08	30-Jul-08	22000.00	=""	="GYMPIE COOLOOLA FOODSERVICE"	09-May-08 04:07 PM	

+="CN74751"	"Recreational Gym Equipment - Borneo Barracks Cabarlah"	="Department of Defence"	09-May-08	="Sports equipment and accessories"	20-Mar-08	01-May-08	28517.50	=""	="BLISS FITNESS SYSTEMS"	09-May-08 04:07 PM	

+="CN74771"	"5 PIECE SICILY LEATHER LOUNGE SUITE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	10-Mar-08	19-May-08	28000.02	=""	="THE GALLERY"	09-May-08 04:08 PM	

+="CN74780"	"INSTALL TIMBERLINE"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	19-Mar-08	16-Apr-08	23320.00	=""	="A HAMILTON BUILDING PTY LTD"	09-May-08 04:09 PM	

+="CN74796"	"PAYMENT FOR ARMY BIRTHDAY COCKTAIL PARTY"	="Department of Defence"	09-May-08	="Beverages"	13-Mar-08	04-Apr-08	21816.89	=""	="COMPASS GROUP (AUSTRALIA) PTY LTD"	09-May-08 04:10 PM	

+="CN74805"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	24914.80	=""	="INSTRU LABS"	09-May-08 04:11 PM	

+="CN74819"	"Aircraft Technical Support"	="Department of Defence"	09-May-08	="Aircraft equipment"	12-Mar-08	30-Jun-08	26700.30	=""	="OBJECT CONSULTING PTY LTD"	09-May-08 04:11 PM	

+="CN74835"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	04-Apr-08	22630.72	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:12 PM	

+="CN74836"	"S5091, WR 300078814. Removal of vinyl floor tiles being laid"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	29-Feb-08	30-Jun-08	24698.30	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:12 PM	

+="CN74837"	"ENDRESS + HAUSER INSTRUMENTATION SOLUTION"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	12-Mar-08	17-Mar-08	20128.90	=""	="ENDRESS & HAUSER AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74846"	"Purchase of software"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	14-Mar-08	25370.40	=""	="CANON AUSTRALIA PTY LTD"	09-May-08 04:13 PM	

+="CN74850"	"supply of fresh bread wbta"	="Department of Defence"	09-May-08	="Bread and biscuits and cookies"	02-Mar-08	30-Jul-08	27500.00	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	09-May-08 04:13 PM	

+="CN74851"	"TRAINING COURSE"	="Department of Defence"	09-May-08	="Education and Training Services"	13-Mar-08	16-Apr-08	23030.15	=""	="RESOLVE ADVISORS PTY LTD"	09-May-08 04:13 PM	

+="CN74866"	"RELOCATION OF DSTO FROM PYRMONT TO ATP REFERN."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	29-Feb-08	30-Jun-08	23984.90	=""	="TAC PACIFIC PTY LTD"	09-May-08 04:14 PM	

+="CN74876"	"CHIEF OF AIR FORCE'S VIDEO CONFERENCING CAPABILITY REQUIRES UPGRADE."	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	29-Feb-08	30-May-08	29050.97	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:15 PM	

+="CN74881"	"S5218, WR 300074182. HMAS Kuttabul - Security Ligh"	="Department of Defence"	09-May-08	="Security and control equipment"	13-Mar-08	30-Jun-08	22252.12	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:15 PM	

+="CN74883"	"S5217, WR 300074198. Randwick Barracks - Pool heat"	="Department of Defence"	09-May-08	="Environmental Services"	13-Mar-08	30-Jun-08	29534.20	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:15 PM	

+="CN74890"	"This order is Raised for the provision of Contract Period of 4 Months IAW Contract Number: PS 28/200"	="Department of Defence"	09-May-08	="Temporary personnel services"	03-Mar-08	30-Jun-08	27112.80	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:16 PM	

+="CN74895"	"SERVICES & EQUIPMENT RENATL FOR FAIRBAIRN FROM TELSTRA"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	03-Mar-08	30-Jun-08	27970.78	=""	="TELSTRA"	09-May-08 04:16 PM	

+="CN74923"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	12-Mar-08	30-Jun-08	20200.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:18 PM	

+="CN74922"	"PUBLICATIONS"	="Department of Defence"	09-May-08	="Paper products"	03-Mar-08	30-Jun-08	22000.00	=""	="DAVID M HORNER"	09-May-08 04:18 PM	

+="CN74931"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	12-Mar-08	04-Mar-09	24132.00	=""	="CLAYTON UTZ"	09-May-08 04:18 PM	

+="CN74943"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	12-Mar-08	31-Dec-08	29818.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:19 PM	

+="CN74946"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	28-Feb-08	29-Mar-08	25436.84	=""	="INSITEC"	09-May-08 04:19 PM	

+="CN74950"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	28-Feb-08	30-Jun-08	22030.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:20 PM	

+="CN74951"	"Server Racks"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	26-Mar-08	21450.00	=""	="SERVER RACKS AUSTRALIA"	09-May-08 04:20 PM	

+="CN74970"	"Custom packaging and removal services - domestic"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	28-Feb-08	30-Jun-08	25000.00	=""	="PACK AND SEND CANBERRA"	09-May-08 04:21 PM	

+="CN74974"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	29-Feb-08	25687.20	=""	="UNISYS AUSTRALIA LTD"	09-May-08 04:21 PM	

+="CN74982"	"SANYO LCD PROJECTOR"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	28-Feb-08	07-Apr-08	20035.03	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 04:22 PM	

+="CN75003"	"RATIONS - FIELD RATIONS"	="Department of Defence"	09-May-08	="Food and Beverage Products"	29-Feb-08	30-Jun-08	25847.28	=""	="ASIAN IMPORTERS EXPORTERS CO"	09-May-08 04:23 PM	

+="CN75010"	"POC: EVAN PEARCE CONTACT: 02 626 50434"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Jun-08	21144.41	=""	="ASI SOLUTIONS"	09-May-08 04:23 PM	

+="CN75012"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	17-Mar-08	01-May-09	25210.08	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	09-May-08 04:24 PM	

+="CN75019"	"Consolidation of Cargo, Sea Cargo, Road Freight"	="Department of Defence"	09-May-08	="Mail and cargo transport"	17-Mar-08	20-Mar-08	20748.17	=""	="PDL TOLL"	09-May-08 04:24 PM	

+="CN75024"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	29-Feb-08	30-Apr-08	20240.00	=""	="OPTIMA TECHNOLOGY SOLUTIONS PTY LTD"	09-May-08 04:24 PM	

+="CN75027"	"Annual maintenance"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	31-Mar-08	27502.20	=""	="DSTA PTY LTD"	09-May-08 04:25 PM	

+="CN75029"	"UPS UNITS & WEBCARDS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Mar-08	31-Mar-08	29566.74	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:25 PM	

+="CN75041"	"IT SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	31-Dec-08	28776.00	=""	="KAZ GROUP PTY LTD"	09-May-08 04:26 PM	

+="CN75050"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Mar-08	20093.81	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:26 PM	

+="CN75051"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	17-Mar-08	01-May-08	25210.08	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	09-May-08 04:26 PM	

+="CN75070"	"Liicense"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	04-Mar-08	10-Mar-08	22646.80	=""	="REPTECHNIC PTY LTD"	09-May-08 04:27 PM	

+="CN75077"	"Consolidation of Cargo, Sea Cargo, Road Freight OP OUTREACH"	="Department of Defence"	09-May-08	="Mail and cargo transport"	17-Mar-08	20-Mar-08	20797.12	=""	="PDL TOLL"	09-May-08 04:28 PM	

+="CN75079"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	17-Mar-08	31-Mar-08	28786.45	=""	="FUJITSU AUSTRALIA LTD"	09-May-08 04:28 PM	

+="CN75092"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	06-Aug-08	29205.00	=""	="BLAKE DAWSON WALDRON"	09-May-08 04:29 PM	

+="CN75096"	"PRINTING OF DEFENCE MAGAZINE"	="Department of Defence"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Mar-08	05-Mar-08	29720.48	=""	="RURAL PRESS PTY LTD"	09-May-08 04:29 PM	

+="CN75099"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	09-Apr-08	29452.50	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:29 PM	

+="CN75101"	"Provision of Consultancy - JAN - FEB 08 OP OUTREACH"	="Department of Defence"	09-May-08	="Project management"	17-Mar-08	30-Apr-08	26400.00	=""	="PDL TOLL"	09-May-08 04:30 PM	

+="CN75112"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Mar-08	30-Jun-08	29890.47	=""	="SUN MICROSYSTEMS"	09-May-08 04:30 PM	

+="CN75119"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Mar-08	23815.44	=""	="HINE TRAINING SERVICES PTY LTD"	09-May-08 04:31 PM	

+="CN75127"	"hire vehicle for sf commitment cell"	="Department of Defence"	09-May-08	="Motor vehicles"	05-Mar-08	30-Jun-08	22000.00	=""	="HERTZ AUSTRALIA PTY LTD"	09-May-08 04:31 PM	

+="CN75136"	"Supplement payment on modified task agreement exec ution on turbine engine vibration diagnostics"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	13-Mar-08	26-Mar-08	24200.00	=""	="UNI OF NSW - RESEARCH OFFICE ADMIN"	09-May-08 04:32 PM	

+="CN75142"	"Mechincal drafting"	="Department of Defence"	09-May-08	="Professional engineering services"	13-Mar-08	11-Apr-08	29590.28	=""	="BLUE SWIMMER CONSULTING"	09-May-08 04:32 PM	

+="CN75154"	"RESEARCH AGREEMENT: HYPERSTEREOPSIS, EXTENSION OF CONTRACT"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	14-Mar-08	30-May-08	22000.00	=""	="DEAKIN UNIVERSITY"	09-May-08 04:33 PM	

+="CN75156"	"Imagery Package"	="Department of Defence"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Mar-08	31-Mar-08	25837.90	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	09-May-08 04:33 PM	

+="CN75160"	"ERNST & YOUNG."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	27500.00	=""	="ERNST & YOUNG"	09-May-08 04:33 PM	

+="CN75163"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	20-Jun-08	22000.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	09-May-08 04:34 PM	

+="CN75208"	"ICT Training Course 7-11APR 08. Managing & maintaining MS Windows Server"	="Department of Defence"	09-May-08	="Education and Training Services"	14-Mar-08	11-Apr-08	25800.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	09-May-08 04:37 PM	

+="CN75214"	"upgrade OHSIR & Environmental reporting system"	="Department of Defence"	09-May-08	="Personal safety devices or weapons"	12-Feb-08	30-Jun-08	28600.00	=""	="THE FRAME GROUP"	09-May-08 04:38 PM	

+="CN75215"	"RMIT Research Agreement for PHD student"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	28-Feb-09	20000.00	=""	="RMIT UNIVERSITY"	09-May-08 04:38 PM	

+="CN75216"	"Manufacture of a Replacement Virtual MANPADS Launcher"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Feb-08	16-May-08	29447.00	=""	="SYDAC PTY LTD"	09-May-08 04:38 PM	

+="CN75218"	"Transport of containers  - OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	20999.00	=""	="PDL TOLL"	09-May-08 04:38 PM	

+="CN75220"	"PROVISION OF CONTRACTOR SUPPORT TO EXERCISE CUSTOMISATION OF VNR PRODUCT TO SUPPORT OBJECTIVES"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Feb-08	12-Apr-08	28182.00	=""	="EBOR COMPUTING"	09-May-08 04:38 PM	

+="CN75225"	"Technical contractor services to assist in the V &  V testing of an autonomous data logger syste"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	30-May-08	21708.32	=""	="FORTBURN PTY LTD"	09-May-08 04:39 PM	

+="CN75231"	"Services under standing offer 0607-271"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	12-Feb-08	30-Jun-08	26326.26	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	09-May-08 04:39 PM	

+="CN75234"	"GPS and Accessories"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	04-Mar-08	07-Mar-08	22364.10	=""	="ULTIMATE POSITIONING"	09-May-08 04:40 PM	

+="CN75237"	"EPSON EMP-1700 LCD Projectors (for 5 locs at RAAF Townsville"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	12-Feb-08	30-Jun-08	22198.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 04:40 PM	

+="CN75250"	"Protective Equipment"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	12-Mar-08	01-May-08	26259.20	=""	="OWEN INTERNATIONAL PTY LTD"	09-May-08 04:40 PM	

+="CN75251"	"SN02773- White Paper Accom Planning for PM Fees"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-08	25302.59	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:41 PM	

+="CN75252"	"Multimedia"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Mar-08	17-Apr-08	22142.00	=""	="NOVA MULTIMEDIA"	09-May-08 04:41 PM	

+="CN75260"	"Sanyo PLC-XU101 LCD Projectors for Robertson Bks Derwent Bks / Lavarack Bks and Deakin"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	12-Feb-08	30-Jun-08	27709.82	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 04:41 PM	

+="CN75266"	"TRAINING DEVELOPMENT"	="Department of Defence"	09-May-08	="Education and Training Services"	13-Feb-08	30-Jun-09	22000.00	=""	="FRESH WEB SOLUTIONS PTY LTD"	09-May-08 04:42 PM	

+="CN75267"	"EMPLOYMENT ENGAGEMENT"	="Department of Defence"	09-May-08	="Office supplies"	18-Mar-08	30-Jun-08	20904.40	=""	="CAREERS MULTILIST LIMITED"	09-May-08 04:42 PM	

+="CN75268"	"HARDWARE - IT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Feb-08	30-Mar-08	22509.93	=""	="SUN MICROSYSTEMS"	09-May-08 04:42 PM	

+="CN75270"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-Jun-08	24420.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	09-May-08 04:42 PM	

+="CN75278"	"Site Electrical Survey"	="Department of Defence"	09-May-08	="Electronic reference material"	13-Feb-08	23-Apr-08	28275.50	=""	="ISAS - INTEGRATED SWITCHGEAR &"	09-May-08 04:42 PM	

+="CN75282"	"SPORTS EQUIPMENT"	="Department of Defence"	09-May-08	="Sports equipment and accessories"	13-Feb-08	30-Mar-08	28693.51	=""	="SYDNEY KAYAK CENTRE"	09-May-08 04:43 PM	

+="CN75307"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	18-Mar-08	18-Mar-08	28595.60	=""	="INTEGRATED VISION"	09-May-08 04:44 PM	

+="CN75321"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	23871.60	=""	="COMMANDER (ACT)"	09-May-08 04:45 PM	

+="CN75327"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	09-May-08	="Paper Materials and Products"	11-Feb-08	05-Mar-08	24183.50	=""	="NEW MILLIGANS PTY LTD"	09-May-08 04:45 PM	

+="CN75337"	"ENHANCED LANDFORCE-STAGE 1. P4 SWAN ISLAND UXO SURVEY."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	28058.80	=""	="CSG DEMINING CONSULTANTS PTY LTD"	09-May-08 04:46 PM	

+="CN75342"	"Cisco equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	25-Mar-08	23249.09	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	09-May-08 04:47 PM	

+="CN75344"	"Hire of TRO IAW Drake Standing Offer LH 01/05"	="Department of Defence"	09-May-08	="Motor vehicles"	18-Mar-08	30-Jun-08	27677.10	=""	="DRAKE INTERNATIONAL"	09-May-08 04:47 PM	

+="CN75349"	"Maintenance and Support"	="Department of Defence"	09-May-08	="Software"	11-Feb-08	27-Feb-08	21949.89	=""	="LOGITECH PTY LTD"	09-May-08 04:47 PM	

+="CN75350"	"COFFEE STAND"	="Department of Defence"	09-May-08	="Infant foods and beverages"	18-Mar-08	30-May-08	27878.40	=""	="AFFINITY CONSTRUCTION MANAGEMENT"	09-May-08 04:47 PM	

+="CN75352"	"CAMPING EQUIPMENT"	="Department of Defence"	09-May-08	="Camping and outdoor equipment and accessories"	18-Mar-08	18-Mar-08	28864.00	=""	="OZTRAIL PTY LTD"	09-May-08 04:47 PM	

+="CN75358"	"OFFSHORE QUARANTINE INSPECTIONS ANODE & ASTUTE"	="Department of Defence"	09-May-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	17-Mar-08	31-Mar-08	27973.70	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	09-May-08 04:48 PM	

+="CN75363"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	30000.00	=""	="CAPITAL RECRUITMENT SERVICES"	09-May-08 04:48 PM	

+="CN75368"	"SUPPLY AND INSTALL REPLACEMENT ENGINE TASLU"	="Department of Defence"	09-May-08	="Material handling machinery and equipment"	12-Feb-08	25-Mar-08	20825.91	=""	="MTU DETROIT DIESEL AUSTRALIA"	09-May-08 04:48 PM	

+="CN75369"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	20460.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:48 PM	

+="CN75372"	"Sanyo PLC-XU101 LCD Projectors for Leeuwin Barrack 1 to Board Room / 1 to Trg Room (Both in Bld 20)"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	12-Feb-08	30-Jun-08	22219.29	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	09-May-08 04:49 PM	

+="CN75373"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	20250.00	=""	="DEACONS"	09-May-08 04:49 PM	

+="CN75375"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	22665.00	=""	="SPARKE HELMORE LAWYERS"	09-May-08 04:49 PM	

+="CN75380"	"Supply and Install Shelter for Instavault"	="Department of Defence"	09-May-08	="Prefabricated structures"	12-Feb-08	30-May-08	20240.00	=""	="AUSCO MODULAR PTY LTD"	09-May-08 04:49 PM	

+="CN75384"	"R&D CONTRACT"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Feb-08	18-Mar-08	22600.66	=""	="ICON RECRUITMENT"	09-May-08 04:49 PM	

+="CN75390"	"supply of poultry brisbane"	="Department of Defence"	09-May-08	="Meat and poultry"	12-Feb-08	30-Jul-08	21450.00	=""	="A B D POULTRY"	09-May-08 04:50 PM	

+="CN75397"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	17-Mar-08	30-Jun-08	28666.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:50 PM	

+="CN75411"	"Hire of Prod Clerk IAW Drake Standing Offer LH 01/"	="Department of Defence"	09-May-08	="Motor vehicles"	18-Mar-08	30-Jun-08	20295.00	=""	="DRAKE INTERNATIONAL"	09-May-08 04:51 PM	

+="CN75417"	"Misc Equiptment, compressors, cylinders"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	18-Mar-08	31-Mar-08	29339.20	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	09-May-08 04:51 PM	

+="CN75427"	"SA2317 - Investigation of Heating & Cooling Option Phone: 08 8259 3135"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	15-Feb-08	30-Jun-08	24970.00	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:52 PM	

+="CN75437"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	23044.56	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:53 PM	

+="CN75442"	"LCD Monitors"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	20443.28	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	09-May-08 04:54 PM	

+="CN75450"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	30-Jun-08	26862.00	=""	="THE LEARNING GROUP PTY LTD"	09-May-08 04:55 PM	

+="CN75453"	"Transport of containers and hire of MHE for ALPURURULAM ISO Op Outreach"	="Department of Defence"	09-May-08	="Transportation services equipment"	15-Feb-08	18-Feb-08	22232.38	=""	="PDL TOLL"	09-May-08 04:55 PM	

+="CN75461"	"ANNUAL CAMP REIMBURSEMENT -"	="Department of Defence"	09-May-08	="Camping and outdoor equipment and accessories"	15-Feb-08	15-Feb-08	20460.00	=""	="THE ARMIDALE SCHOOL"	09-May-08 04:56 PM	

+="CN75465"	"LIBRARY MATERIALS"	="Department of Defence"	09-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Feb-08	15-Feb-08	20000.00	=""	="THOMSON LEGAL & REGULATORY LTD"	09-May-08 04:56 PM	

+="CN75472"	"CONFERENCE FEES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	13-Feb-08	28-Feb-08	21956.00	=""	="LIQUID LEARNING GROUP PTY LTD"	09-May-08 04:57 PM	

+="CN75474"	"MicroPatent 'Aureka' IP Analytical tools  - Gold renewal fee - 26/2/08 to 25/2/09"	="Department of Defence"	09-May-08	="Software"	14-Feb-08	25-Feb-09	22541.11	=""	="MICROPATENT LLC"	09-May-08 04:58 PM	

+="CN75486"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Feb-08	30-Jun-08	21250.00	=""	="MINTER ELLISON"	10-May-08 08:32 AM	

+="CN75490"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	13-Feb-08	12-Mar-08	21850.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 08:32 AM	

+="CN75504"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	29-Feb-08	22297.00	=""	="LAND AND PROPERTY INFORMATION"	10-May-08 08:34 AM	

+="CN75511"	"CAMERAS & PROJECTORS"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	14-Feb-08	22-Feb-08	20696.39	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 08:35 AM	

+="CN75525"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-Sep-08	29700.00	=""	="EXECUTIVE CENTRAL GROUP PTY LTD"	10-May-08 08:36 AM	

+="CN75547"	"VARIOUS CISCO ITEMS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	20549.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 08:38 AM	

+="CN75548"	"A3 COLOUR HDN PRINTERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	25960.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:38 AM	

+="CN75565"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	30-Jun-08	21400.00	=""	="MINTER ELLISON"	10-May-08 08:40 AM	

+="CN75571"	"CONTRACT NO: CSI-SC05/2005 FRUITS AND VEGETABLES RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	06-Feb-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	10-May-08 08:41 AM	

+="CN75578"	"GROCERIES"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	04-Feb-08	14-Mar-08	20422.83	=""	="BID VEST BURLEIGH MARR"	10-May-08 08:41 AM	

+="CN75587"	"A4 Mono Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	15-Feb-08	20460.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:42 AM	

+="CN75601"	"provision of JMPC"	="Department of Defence"	10-May-08	="Medical training and education supplies"	04-Feb-08	30-Apr-08	25214.00	=""	="JPG PARTNERS PTY LTD"	10-May-08 08:44 AM	

+="CN75602"	"MATLAB GROUP LICENCE - SIGNAL PROCESSING TOOLBOX"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	25-Feb-08	25385.25	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 08:44 AM	

+="CN75605"	"Engineering Services"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	05-Feb-08	12-Mar-08	21744.80	=""	="ECOTECH PTY LTD"	10-May-08 08:44 AM	

+="CN75611"	"ICT Instalation Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	21-Apr-08	23046.66	=""	="MACQUARIE TECHNOLOGY"	10-May-08 08:45 AM	

+="CN75612"	"4 year service contract for in house vacuum system"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Feb-08	03-Mar-11	20653.60	=""	="AVT SERVICES PTY LTD"	10-May-08 08:45 AM	

+="CN75615"	"Head Mounted Display"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	20680.00	=""	="INITION PTY LTD"	10-May-08 08:45 AM	

+="CN75618"	"S5180, WR's 300050935, 300064853. Carry out IA inv sites on inground services and provide repor"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	28939.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75660"	"SN02572 - MTA - Exclusion Fence"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Feb-08	30-Jun-08	23911.00	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 08:49 AM	

+="CN75666"	"SN01736 - OEMP Performance Review"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	22000.00	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 08:50 AM	

+="CN75670"	"POC: EMIL RATHOUSKI CONTACT: 02 626 50939"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	20860.18	=""	="XSI DATA SOLUTIONS PTY LTD"	10-May-08 08:50 AM	

+="CN75691"	"Portable comms for Flight Line"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	14-Mar-08	22667.92	=""	="IMARK COMMUNICATIONS PTY LTD"	10-May-08 08:52 AM	

+="CN75706"	"QUOTATION NO. 18 (REV) DISPOSAL OF REDUNDANT ITEMS (CLOTHING, WEBBING  "	="Department of Defence"	10-May-08	="Refuse disposal and treatment"	07-Feb-08	07-Feb-08	21036.96	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 08:54 AM	

+="CN75742"	"REF 1108/07-08 PROJECT # D1087101"	="Department of Defence"	10-May-08	="Environmental management"	25-Feb-08	30-Jun-08	22000.00	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75764"	"SA2366 REGIONAL WEED CONTROL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:59 AM	

+="CN75765"	"WRE - Weed Management 2007-2009 (VH)"	="Department of Defence"	10-May-08	="Environmental control systems"	25-Feb-08	30-Jun-08	25201.99	=""	="TRANSFIELD SERVICES AUSTRALIA"	10-May-08 08:59 AM	

+="CN75766"	"SA2366 regional weed control CUTA"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:00 AM	

+="CN75767"	"HDTV Study for Integration of DEAP"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	25-Feb-08	16-Apr-08	22000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	10-May-08 09:00 AM	

+="CN75770"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Feb-08	30-Jun-08	24194.41	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:00 AM	

+="CN75782"	"LEA MARIBYRNONG:TEST SERVICES RELOCATION. C8890 PROBITY ADVICE,SOLE SOURCED."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	22000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 09:01 AM	

+="CN75786"	"PSP Contractor - Procurement Officer"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	23173.13	=""	="AMBIT GROUP PTY LTD"	10-May-08 09:02 AM	

+="CN75787"	"PSP Contractor - ICT Support Officer"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	29803.13	=""	="CAREERS MULTILIST LIMITED"	10-May-08 09:02 AM	

+="CN75788"	"KG-175 FAMILY OF NETWORK ENCRYPTION DEVICES USED WITH THE DEFENCE WIDE AREA NETWORK."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	22-Feb-08	30-Jun-08	22000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 09:02 AM	

+="CN75798"	"OP OUTREACH ION: 19964"	="Department of Defence"	10-May-08	="Food and Beverage Products"	22-Feb-08	30-Jun-08	25500.00	=""	="MANINGRIDA STORE"	10-May-08 09:03 AM	

+="CN75799"	"Skyline Globe Eterprise Solution License"	="Department of Defence"	10-May-08	="Software"	22-Feb-08	30-Jun-08	22000.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	10-May-08 09:03 AM	

+="CN75802"	"OP OUTREACH - FRESH RATIONS ION 19964"	="Department of Defence"	10-May-08	="Food and Beverage Products"	22-Feb-08	30-Jun-08	25500.00	=""	="MURRINHPATHA NIMMIPA STORE"	10-May-08 09:03 AM	

+="CN75803"	"Equipment Specific Training"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Feb-08	31-Mar-08	23842.50	=""	="SOUTHTECH PROFESSIONAL SRVS PTY LTD"	10-May-08 09:03 AM	

+="CN75804"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Feb-08	31-Mar-08	22638.00	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:03 AM	

+="CN75805"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Feb-08	31-Mar-08	24431.17	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:03 AM	

+="CN75831"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	10-Mar-08	29275.96	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 09:06 AM	

+="CN75832"	"Computer Consumables"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	31-Mar-08	21860.06	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 09:06 AM	

+="CN75834"	"SCI Tecnologies Bid 22"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	20555.23	=""	="TRANS GLOBAL TRADERS PTY LTD"	10-May-08 09:06 AM	

+="CN75837"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	04-Mar-08	29700.00	=""	="A & M PACKAGING PTY LTD"	10-May-08 09:07 AM	

+="CN75839"	"Expand the access control in building 77 with additional 6 card readers"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	28-Feb-08	19-Mar-08	25364.90	=""	="HONEYWELL LIMITED INC IN NSW SPACE"	10-May-08 09:07 AM	

+="CN75842"	"RATIONS"	="Department of Defence"	10-May-08	="Packaged combination meals"	28-Feb-08	01-Mar-08	26862.00	=""	="COLUMBA CATHOLIC COLLEGE"	10-May-08 09:07 AM	

+="CN75860"	"supply of fresh bread brisbane"	="Department of Defence"	10-May-08	="Bread and biscuits and cookies"	28-Feb-08	30-Jul-08	22630.84	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	10-May-08 09:09 AM	

+="CN75861"	"SESSIONAL PSYCH SBHC 4HPW - CONTRACT FOR PSYCHIATRIST - EVERY THURSDAY."	="Department of Defence"	10-May-08	="Patient exam and monitoring products"	28-Feb-08	30-Jul-08	22000.00	=""	="DR WILLIAM ATKIN"	10-May-08 09:09 AM	

+="CN75868"	"COMPLEX PROCUREMENT TRAINING"	="Department of Defence"	10-May-08	="Medical training and education supplies"	28-Feb-08	29-Feb-08	28816.04	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:09 AM	

+="CN75881"	"Provision of Command Instrument Rating training"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	09-Apr-08	25498.00	=""	="ROTOR LIFT AVIATION"	10-May-08 09:11 AM	

+="CN75884"	"FINANCIAL ADVISER"	="Department of Defence"	10-May-08	="Accounting and auditing"	28-Feb-08	03-Mar-08	29733.00	=""	="BLACKDOG & ASSOCIATES PTY LTD"	10-May-08 09:11 AM	

+="CN75888"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	28-Feb-08	04-Apr-08	20306.00	=""	="J S MCMILLAN PRINTING GROUP"	10-May-08 09:11 AM	

+="CN75892"	"SN02537"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	20687.70	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:12 AM	

+="CN75905"	"NQ2081 - 11BDE Active Equipment Requirements."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	23239.92	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 09:13 AM	

+="CN75907"	"NQ1927 - DRN, DSN and Cooper Remediation Works for"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	24376.00	=""	="EMAK COMMUNICATIONS"	10-May-08 09:13 AM	

+="CN75924"	"DEMAND NO.RBRN-7BUUSX"	="Department of Defence"	10-May-08	="Electrical components"	28-Feb-08	20-Mar-08	22019.03	=""	="GO ELECTRICAL PTY LTD"	10-May-08 09:15 AM	

+="CN75931"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	26-Feb-08	26411.00	=""	="MULTISYSTEM COMMUNICATIONS"	10-May-08 09:16 AM	

+="CN75937"	"FRUIT & VEG"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	26-Feb-08	31-Mar-08	24545.80	=""	="TOWNSVILLE WHOLESALE FRUIT &"	10-May-08 09:16 AM	

+="CN75938"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	28-Feb-08	22330.77	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:16 AM	

+="CN75943"	"ANALYSIS ID TEC SUPPORT AIR9000 PROJECT"	="Department of Defence"	10-May-08	="Medical training and education supplies"	19-Feb-08	30-Jun-08	29400.00	=""	="ART OF JIMBO"	10-May-08 09:17 AM	

+="CN75959"	"Aircrew Engineer for LearJet Trial"	="Department of Defence"	10-May-08	="Aircraft"	18-Feb-08	10-Jun-08	25000.00	=""	="PEL-AIR AVIATION PTY LTD"	10-May-08 09:18 AM	

+="CN75961"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	18-Feb-08	29-Feb-08	29337.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:19 AM	

+="CN75962"	"PABX Cabling and Installation - R3"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	18-Feb-08	30-Apr-08	25760.90	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 09:19 AM	

+="CN75964"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	18-Feb-08	29-Feb-08	23249.60	=""	="THE MICROCARE CD GROUP PTY LTD"	10-May-08 09:19 AM	

+="CN75976"	"FIRE RISK MITIGATION-VEGETATION CONTROL AT REMOTR"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	21979.10	=""	="WILDMAN LAND MANAGEMENT"	10-May-08 09:20 AM	

+="CN75991"	"POC Mike Ryves:Quote No 10000504 v2"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	30-Nov-07	27963.97	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN75996"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	29-Nov-07	23100.00	=""	="PERKICH & ASSOCIATES"	10-May-08 09:58 AM	

+="CN76002"	"HP dc7700 small form factor Base DT PC"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	30-Nov-07	25654.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:59 AM	

+="CN76005"	"Data Cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	30-Nov-07	29502.00	=""	="ASI SOLUTIONS"	10-May-08 09:59 AM	

+="CN76009"	"FURNITURE FOR DS-NQ-TS ACCOMMODATION CELL"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	22000.00	=""	="SYMES FURNITURE"	10-May-08 09:59 AM	

+="CN76014"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	07-Dec-07	21242.29	=""	="COMMANDER (ACT)"	10-May-08 09:59 AM	

+="CN76015"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	21098.43	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 09:59 AM	

+="CN76025"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	21124.18	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76029"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	19-Nov-07	25000.00	=""	="JEREMY TROTMAN & ASSOCIATES PTY LTD"	10-May-08 10:00 AM	

+="CN76038"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	24739.00	=""	="NATHAN ELECTRICAL PTY LTD"	10-May-08 10:01 AM	

+="CN76044"	"Water Bladders"	="Department of Defence"	10-May-08	="Camping and outdoor equipment and accessories"	21-Nov-07	28-Nov-07	21208.00	=""	="RIVERINA CAMPING WORLD"	10-May-08 10:01 AM	

+="CN76051"	"CAMERA EQUIPMENT"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	19-Nov-07	24-Nov-07	23940.05	=""	="TED'S CAMERA STORE"	10-May-08 10:01 AM	

+="CN76055"	"CONTACT: MATT FAULKNER 08 8935 2705 WR: 150099655"	="Department of Defence"	10-May-08	="Live animals"	19-Nov-07	30-Jun-08	22632.28	=""	="ASSET SERVICES"	10-May-08 10:02 AM	

+="CN76056"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jan-08	22541.20	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76073"	"Project management fees Russell refurb"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-May-07	30-Jun-08	20538.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:03 AM	

+="CN76084"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	22788.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76085"	"BUILDING MAINTENANCE"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	21-Apr-08	30-Jun-08	23497.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:03 AM	

+="CN76099"	"lease transportable Bldg"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	20-Mar-08	30-Jun-08	26377.09	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:04 AM	

+="CN76110"	"Air and land freight charges for purchase orders"	="Department of Defence"	10-May-08	="Transportation services equipment"	26-Nov-07	26-Nov-07	25404.72	=""	="VELDEMAN AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76111"	"TRAINING/EDUCATION"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Dec-07	30-Jun-08	27224.00	=""	="TACTICS CONSULTING PTY LTD"	10-May-08 10:05 AM	

+="CN76114"	"MOBILE PHONES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	26038.32	=""	="TELSTRA"	10-May-08 10:05 AM	

+="CN76131"	"Photography"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jul-07	30-Jun-08	22000.00	=""	="PETER HOARE PHOTOGRAPHY"	10-May-08 10:06 AM	

+="CN76132"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24838.00	=""	="MINTER ELLISON"	10-May-08 10:06 AM	

+="CN76134"	"REFURBISHMENT WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	27-Nov-07	29-Feb-08	21303.63	=""	="TERRANOVA CONSTRUCTION NSW PTY LTD"	10-May-08 10:06 AM	

+="CN76139"	"Provision of Health services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Apr-08	20887.26	=""	="ACCLAIM RECRUITMENT"	10-May-08 10:06 AM	

+="CN76141"	"MEDICAL/DENTAL SERVICES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	05-May-08	30-Jun-08	20493.00	=""	="DR JANET SCOTT"	10-May-08 10:06 AM	

+="CN76144"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	26-Nov-07	30-Apr-08	22000.00	=""	="BOEING AUSTRALIA LTD"	10-May-08 10:06 AM	

+="CN76148"	"Provide advise into human factors"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	26-Nov-07	26-Feb-08	24750.00	=""	="TENIX DEFENCE PTY LTD"	10-May-08 10:07 AM	

+="CN76160"	"FURNITURE"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	26-Nov-07	21-Dec-07	28978.40	=""	="INTERWORX PTY LTD"	10-May-08 10:07 AM	

+="CN76161"	"Signature Measurement Tracking System"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Apr-08	30-May-08	21454.40	=""	="VIPAC ENGINEERS & SCIENTISTS"	10-May-08 10:07 AM	

+="CN76174"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	27500.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 10:08 AM	

+="CN76178"	"Install Vehicle Washpoint Deseeder CBTA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Sep-06	30-Jun-07	24555.57	=""	="SPOTLESS"	10-May-08 10:08 AM	

+="CN76197"	"supply of sra groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	27-Nov-07	30-Jun-08	27500.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 10:09 AM	

+="CN76224"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	31-Aug-08	23000.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	10-May-08 10:11 AM	

+="CN76232"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	28-Feb-10	27512.10	=""	="ICON RECRUITMENT"	10-May-08 10:11 AM	

+="CN76235"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	23-Nov-07	23-Nov-07	25139.14	=""	="AGFA-GEVAERT LTD"	10-May-08 10:11 AM	

+="CN76239"	"TOOLKITS"	="Department of Defence"	10-May-08	="Tools and General Machinery"	23-Nov-07	23-Nov-07	23197.92	=""	="MTU DETROIT DIESEL AUSTRALIA"	10-May-08 10:11 AM	

+="CN76250"	"COMPLETION OF COMMS AUDIT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Nov-07	30-Jun-08	21997.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 10:12 AM	

+="CN76251"	"Provision of TAA04 upgrade for instructors at the Parachute Training School Nowra"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Nov-07	07-Dec-07	22109.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:12 AM	

+="CN76265"	"VEHICLE LEASE"	="Department of Defence"	10-May-08	="Motor vehicles"	23-Nov-07	31-Oct-09	21388.20	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:13 AM	

+="CN76276"	"Strain Guage Support"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	09-Aug-07	30-Jun-08	22000.00	=""	="FORTBURN PTY LTD"	10-May-08 10:13 AM	

+="CN76277"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24438.00	=""	="MINTER ELLISON"	10-May-08 10:14 AM	

+="CN76282"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	26407.40	=""	="BHP IRON ORE LTD"	10-May-08 10:14 AM	

+="CN76283"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Nov-07	31-Dec-07	27133.70	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 10:14 AM	

+="CN76287"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24238.00	=""	="MINTER ELLISON"	10-May-08 10:14 AM	

+="CN76306"	"FFS PAYMENTS"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	29-Apr-08	30-Jun-08	27500.00	=""	="WODEN DENTAL CARE"	10-May-08 10:15 AM	

+="CN76316"	"CTD"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Mar-08	01-Sep-09	25668.85	=""	="DARONMONT TECHOLOGIES PTY LTD"	10-May-08 10:16 AM	

+="CN76319"	"LABOUR HIRE PH2 ANNUAL CA"	="Department of Defence"	10-May-08	="Temporary personnel services"	26-Sep-07	10-Jan-08	20557.53	=""	="DRAKE AUSTRALIA PTY LTD"	10-May-08 10:16 AM	

+="CN76324"	"MONTHLY USAGE CHARGES FOR MOD VISEOCONFERENCING FACILITY FY 07/08"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Apr-08	25-Jun-08	20020.00	=""	="TELSTRA CORPORATION LIMITED"	10-May-08 10:16 AM	

+="CN76336"	"RAAF BASES TOWNSVILLE AND SCHERGER PAVEMENT MAINTENANCE - PROJECT CONSULTANCY SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	28600.00	=""	="AUSTRALIAN PAVEMENT MAINTENANCE"	10-May-08 10:17 AM	

+="CN76346"	"BHER US EYES ONLY ROOM"	="Department of Defence"	10-May-08	="Security surveillance and detection"	12-Nov-07	30-Jun-08	27910.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:17 AM	

+="CN76355"	"FREIGHT SERVICES"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	31-Dec-07	08-Jan-08	24379.05	=""	="DHLA INT TRANSPORTATION CO WLL"	10-May-08 10:18 AM	

+="CN76368"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Apr-08	30-Jun-08	22176.00	=""	="CLAYTON UTZ"	10-May-08 10:19 AM	

+="CN76371"	"RENTAL OF 30 CODRINTON PENANG"	="Department of Defence"	10-May-08	="Floriculture and silviculture products"	16-Jan-08	16-Jan-08	29268.12	=""	="CHOONG LYE HOCK ESTATES SDN BHD"	10-May-08 10:19 AM	

+="CN76374"	"Variable Invoices 07/08 Garrison Support. RAAF Tindal - Devolved"	="Department of Defence"	10-May-08	="Management support services"	24-Apr-08	30-Jun-08	25722.59	=""	="SERCO SODEXHO DEFENCE SERVICES"	10-May-08 10:19 AM	

+="CN76385"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Personnel recruitment"	17-Jan-08	28-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:20 AM	

+="CN76386"	"Repairs and Maint 92WG Aircraft Jacks"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	20130.00	=""	="FORDHAM ENGINEERING"	10-May-08 10:20 AM	

+="CN76394"	"Supply and maint of Gas and Cylinders"	="Department of Defence"	10-May-08	="Industrial pumps and compressors"	29-Apr-08	30-Jun-08	22000.00	=""	="BOC LTD"	10-May-08 10:20 AM	

+="CN76401"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Jan-08	20-Feb-08	28094.87	=""	="FRANZ FELFER PTY LTD"	10-May-08 10:21 AM	

+="CN76403"	"Cash advance to official bank account"	="Department of Defence"	10-May-08	="Banking and investment"	15-Jan-08	15-Jan-08	29787.74	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:21 AM	

+="CN76430"	"POSTAL SERVICES VBM MAILROOM"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Apr-08	30-Jun-08	28505.77	=""	="AUSTRALIA POST"	10-May-08 10:22 AM	

+="CN76436"	"GENERAL STORES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	16-Dec-07	17-Dec-07	24473.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76438"	"XMAS BBQ PACK"	="Department of Defence"	10-May-08	="Meat and poultry products"	22-Dec-07	23-Dec-07	21789.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76440"	"XMAS STOCK"	="Department of Defence"	10-May-08	="Desserts and dessert toppings"	22-Dec-07	23-Dec-07	22769.12	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76447"	"Supply of Veterinary services for MWDS as per contract"	="Department of Defence"	10-May-08	="Veterinary equipment and supplies"	23-Jul-07	30-Jun-08	21977.88	=""	="PALMS VETERINARY GROUP"	10-May-08 10:23 AM	

+="CN76451"	"AIR 6000 PH 2A/2B - New Air Combat Capability"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	27500.00	=""	="SKM"	10-May-08 10:24 AM	

+="CN76452"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Dec-07	20-Dec-07	25000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:24 AM	

+="CN76487"	"RESERVE LEGAL OFFICER FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	07-Jan-08	23022.00	=""	="FEDERAL MAGISTRATES COURT OF"	10-May-08 10:26 AM	

+="CN76514"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	20100.00	=""	="MINTER ELLISON"	10-May-08 10:27 AM	

+="CN76526"	"CLEARTRAN"	="Department of Defence"	10-May-08	="Resins and rosins and other resin derived materials"	29-Nov-07	30-Dec-07	25994.59	=""	="QUALITY THIN FILMS INC"	10-May-08 10:28 AM	

+="CN76543"	"Purchase of IT Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	12-Dec-07	26909.61	=""	="COMMANDER (ACT)"	10-May-08 10:29 AM	

+="CN76549"	"FIBRE OPTIC CORROSION SENSORS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	30-Nov-07	30-May-08	27500.00	=""	="MONASH UNI - CASHIER"	10-May-08 10:29 AM	

+="CN76560"	"DSS POST HQIADS OCT TO DEC 2007"	="Department of Defence"	10-May-08	="Office supplies"	30-Jan-08	30-Jan-08	20219.29	=""	="NEW ZEALAND DEFENCE ADVISER"	10-May-08 10:30 AM	

+="CN76566"	"AUSCDT ONE QANTAS STATEMENT NOV 07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	01-Feb-08	20301.37	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76567"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	29-Nov-07	18-Jan-08	24208.25	=""	="GLAMA PAK PTY LTD"	10-May-08 10:31 AM	

+="CN76572"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Nov-07	21176.41	=""	="NEXT BYTE"	10-May-08 10:31 AM	

+="CN76574"	"Enhanced Operations within the SIL-VMANPADS-HIL Network Phase II"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	29-Nov-07	28-Mar-08	26632.32	=""	="BALL SOLUTIONS GROUP"	10-May-08 10:31 AM	

+="CN76598"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	15-Oct-08	25999.90	=""	="TE & JL DEECKE - USD"	10-May-08 10:33 AM	

+="CN76608"	"furniture"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	27-Nov-07	19-Dec-07	21409.30	=""	="OFFICEMAX"	10-May-08 10:33 AM	

+="CN76614"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Nov-07	22000.00	=""	="MICROSOFT EVENTS PTY LTD"	10-May-08 10:34 AM	

+="CN76618"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	27500.00	=""	="KAZ GROUP PTY LTD"	10-May-08 10:34 AM	

+="CN76619"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	06-Feb-08	06-Feb-08	28289.58	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76621"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	27-Dec-07	24-Feb-08	20115.00	=""	="ROYAL PERTH HOSPITAL"	10-May-08 10:34 AM	

+="CN76641"	"QANTAS NOVEMBER INVOICE AEF"	="Department of Defence"	10-May-08	="Military services and national defence"	30-Nov-07	30-Nov-07	20150.34	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:35 AM	

+="CN76643"	"QANTAS DECEMBER INVOICE AEF"	="Department of Defence"	10-May-08	="Military services and national defence"	31-Dec-07	31-Dec-07	27116.16	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:35 AM	

+="CN76652"	"MAINTENANCE & REPAIR VOICE SERVICES CABLE BLDG 35"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	28-Nov-07	30-Dec-07	20405.00	=""	="MULTISYSTEM COMMUNICATIONS"	10-May-08 10:36 AM	

+="CN76656"	"PRINTING NWCC"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	28-Nov-07	30-Jun-08	22000.00	=""	="CENTRICA"	10-May-08 10:36 AM	

+="CN76659"	"QA"	="Department of Defence"	10-May-08	="Powered fixed wing aircraft"	31-Dec-07	21-Jan-08	23375.42	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76660"	"MATLAB MAINTENANCE RENEWAL LICENCE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	01-Dec-08	24552.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 10:36 AM	

+="CN76668"	"Installation at RAAF Base Est Sale"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	03-Dec-07	23507.00	=""	="NETWORKS BROKERS PTY LTD"	10-May-08 10:37 AM	

+="CN76674"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	30-Nov-07	24603.70	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:37 AM	

+="CN76681"	"airfare qantas contract"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	28407.17	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:38 AM	

+="CN76688"	"BANNER BUGS FOR ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	28-Nov-07	31-Jan-08	28600.00	=""	="HUMPHREYS COMMUNICATION GROUP"	10-May-08 10:38 AM	

+="CN76699"	"IT CABLING AND ACCESSORIES FLLAK"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Jan-08	29-Jan-08	22322.32	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76711"	"QANTAS ACCOUNT JMCO ADL NOV 07"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	30-Nov-07	30-Nov-07	24380.47	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:39 AM	

+="CN76721"	"CONTAINER  FLLA AFG"	="Department of Defence"	10-May-08	="Containers and storage"	22-Jan-08	24-Jan-08	22048.94	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76724"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	23-Jan-08	23-Jan-08	21857.90	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76732"	"HIRE CAR FOR RLLT AND COURSE TRAVEL DEFENCE MBRS"	="Department of Defence"	10-May-08	="Transportation services equipment"	14-Nov-07	28-Jun-08	21508.64	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:40 AM	

+="CN76736"	"AIRFARES FOR MONTH OF OCT.2007"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	31-Dec-07	24910.26	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:41 AM	

+="CN76737"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	03-Dec-07	29568.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:41 AM	

+="CN76740"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	09-Oct-07	30-Jun-08	28223.80	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76752"	"MARINE DIESEL FOR PALAU & FSM - DEC 2006"	="Department of Defence"	10-May-08	="Project management"	21-Jun-07	30-Jun-10	28836.09	=""	="DEPARTMENT OF DEFENCE"	10-May-08 10:41 AM	

+="CN76753"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	22500.01	=""	="RICHARD PELVIN"	10-May-08 10:41 AM	

+="CN76759"	"INSTALLATION & REMOVAL OF ADDITIONAL COOKING EQUIP"	="Department of Defence"	10-May-08	="Industrial food and beverage equipment"	04-Dec-07	30-Jun-08	22306.60	=""	="CATERING EQUIPMENT REPAIRS PTY LTD"	10-May-08 10:42 AM	

+="CN76771"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	04-Dec-07	30-Jun-08	29923.00	=""	="MINTER ELLISON"	10-May-08 10:42 AM	

+="CN76773"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	28160.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 10:43 AM	

+="CN76781"	"Bahama lounge suite packages for Canungra's Office PO contact: Sue Scott (07) 33326731"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	31-Jan-08	20453.40	=""	="D AND K SOFAS"	10-May-08 10:43 AM	

+="CN76783"	"ICCD CCIR Camera"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	03-Dec-07	29-May-08	27119.40	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 10:43 AM	

+="CN76785"	"Hagenuck Radio Maintenance Course"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Dec-07	12-Dec-07	28256.80	=""	="THALES AUSTRALIA"	10-May-08 10:43 AM	

+="CN76789"	"LOUNGE SUITE PACKAGE 2  FOR CANUNGRA SARGANTS MESS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	31-Jan-08	20231.20	=""	="D AND K SOFAS"	10-May-08 10:44 AM	

+="CN76816"	"AFPO 18 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	22293.75	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76829"	"SPONSORSHIP RE-ENGINEERING AUST FORUM"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	30-Nov-07	28-Feb-08	22000.00	=""	="RE-ENGINEERING AUSTRALIA FORUM LTD"	10-May-08 10:46 AM	

+="CN76831"	"Item Reclamation, Fabrication, Installatio & Const"	="Department of Defence"	10-May-08	="Containers and storage"	30-Nov-07	01-Feb-08	25000.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:46 AM	

+="CN76836"	"PASSENGER TPT BY AIR"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	30-Jun-08	21184.97	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76845"	"QANTAS STATEMENT SEMPTEMBER 2007"	="Department of Defence"	10-May-08	="Aircraft"	30-Sep-07	30-Sep-07	20356.51	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:47 AM	

+="CN76853"	"Professional Services  - first drafts of various publications."	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Oct-07	30-Jun-08	29450.80	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:48 AM	

+="CN76855"	"Professional Services  - Final draft & completion of Working Group LWD 5-1-4"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Oct-07	30-Jun-08	25150.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:48 AM	

+="CN76860"	"FUEL - AIR CHTR OP DELUGE"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	31-Dec-07	27896.00	=""	="INDEPENDENT AVIATION PTY LTD"	10-May-08 10:48 AM	

+="CN76869"	"QANTAS INVOICE AUSCDT 1 OCT"	="Department of Defence"	10-May-08	="Aircraft passenger restraints"	31-Oct-07	14-Nov-07	20261.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76874"	"WORKZONE TILE SCREENS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	14-Jan-08	29933.20	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:49 AM	

+="CN76890"	"Provision of TF2 Training and Support"	="Department of Defence"	10-May-08	="Management support services"	30-Nov-07	30-Jun-08	24999.70	=""	="TILFORTH CONSULTING SERVICES"	10-May-08 10:50 AM	

+="CN76903"	"SHORT TERM VEHICLE HIRE FLLA 3"	="Department of Defence"	10-May-08	="Motor vehicles"	15-Nov-07	25-Nov-07	20877.82	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76911"	"Professional Services  - Author first draft LWD2-2 co-facilitate First Draft working group"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Oct-07	30-Jun-08	24779.09	=""	="O2C"	10-May-08 10:51 AM	

+="CN76924"	"site survey"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	22-Nov-07	30-Jun-08	23391.72	=""	="GENERAL DYNAMICS SATCOM"	10-May-08 10:52 AM	

+="CN76926"	"Remediation work on Antenna"	="Department of Defence"	10-May-08	="Heavy construction machinery and equipment"	22-Nov-07	22-Jan-08	23798.58	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:52 AM	

+="CN76932"	"Provision of TAA04 upgrade for Instructors at the Parachute Training School Nowra"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Nov-07	07-Dec-07	22109.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:52 AM	

+="CN76943"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Nov-07	30-Jun-08	26641.97	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76960"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	10-Dec-07	22941.60	=""	="PETTARAS PRESS PTY LTD"	10-May-08 10:54 AM	

+="CN76963"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	29-Aug-07	11-Dec-07	23321.60	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76966"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	12-Dec-07	25190.00	=""	="NEW MILLIGANS PTY LTD"	10-May-08 10:54 AM	

+="CN76972"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	20075.00	=""	="ICS TRAINING GROUP"	10-May-08 10:54 AM	

+="CN76973"	"TRADESMAN TOOL UPGRADES AS PER BLOCK SCALES FOR DEPLOYMENT RTF-4"	="Department of Defence"	10-May-08	="Hand tools"	29-Nov-07	12-Dec-07	21779.18	=""	="HARRISONS TIMBER HARDWARE"	10-May-08 10:55 AM	

+="CN76978"	"FURNITURE FOR LIA"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Nov-07	14-Dec-07	22704.00	=""	="ACCENT OFFICE INTERIORS"	10-May-08 10:55 AM	

+="CN76992"	"Physiotherapist - Williantown FY07/08"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	01-Feb-08	23144.88	=""	="LAMBTON PHYSIOTHERAPY & SPORTS"	10-May-08 11:41 AM	

+="CN76993"	"Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory supplies and fixtures"	30-Jan-08	14-Feb-08	23936.00	=""	="TEKMARK AUSTRALIA PTY LTD"	10-May-08 11:41 AM	

+="CN76995"	"HQJOC PROJECT - THALES (DELL - FLAT PANEL LCS MONI"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	20383.32	=""	="THALES AUSTRALIA"	10-May-08 11:41 AM	

+="CN76997"	"Hi-res Manual C Mount etc"	="Department of Defence"	10-May-08	="Consumer electronics"	30-Jan-08	01-Feb-08	22421.30	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 11:41 AM	

+="CN77007"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	30-Jan-08	31-Mar-08	22000.00	=""	="ANU - GENERAL ACCOUNTS"	10-May-08 11:42 AM	

+="CN77009"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	22-Feb-08	26180.00	=""	="SERCO SODEXHO DEFENCE SERVICES"	10-May-08 11:42 AM	

+="CN77018"	"Software License"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	18-Jan-08	22443.30	=""	="EMBEDDED LOGIC SOLUTIONS PTY LTD"	10-May-08 11:42 AM	

+="CN77020"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Jan-08	30-Jun-08	22000.00	=""	="AUSTRALIAN LAW IN PRACTICE"	10-May-08 11:42 AM	

+="CN77030"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Jan-08	30-Jun-08	28340.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 11:43 AM	

+="CN77056"	"WOODWORK BENCHES MADE TO MEASURE"	="Department of Defence"	10-May-08	="Commercial and industrial furniture"	17-Jan-08	30-Jun-08	21803.21	=""	="STEEL SKILL"	10-May-08 11:44 AM	

+="CN77079"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	29-Feb-08	20940.69	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 11:46 AM	

+="CN77084"	"POC: BERT HUNTER CONTACT:  08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	29-Feb-08	29722.00	=""	="HI-POTENTIAL TECHNOLOGIES"	10-May-08 11:46 AM	

+="CN77101"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	27272.68	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:48 AM	

+="CN77108"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	07-Mar-08	28003.65	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77110"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	06-Jun-08	25825.00	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77124"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Feb-08	04-Feb-08	26800.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 11:49 AM	

+="CN77127"	"Transport of containers to Yarralin ISO OP Outreach"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	28293.60	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77128"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	04-Feb-08	23159.99	=""	="KPMG AUSTRALIA"	10-May-08 11:49 AM	

+="CN77133"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	29647.36	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:50 AM	

+="CN77134"	"Building repairs"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	31-Jan-08	26-Mar-08	20805.94	=""	="ARCHITECTURAL HARDWARE"	10-May-08 11:50 AM	

+="CN77140"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	27344.02	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:50 AM	

+="CN77148"	"SERVERS REQUIRED FOR NIDA CLASSROOM ENGINEERING FA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	16-Jan-08	26950.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:51 AM	

+="CN77150"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	31-May-08	25499.99	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 11:51 AM	

+="CN77152"	"NQ2197 - RAAF Base Townsville - Repairs to BFI Ret"	="Department of Defence"	10-May-08	="Aircraft fuel tanks and systems"	16-Jan-08	30-Jun-08	22000.00	=""	="SPOTLESS"	10-May-08 11:51 AM	

+="CN77178"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	29-Feb-08	23667.60	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:53 AM	

+="CN77180"	"MANHOLE COVERS TO BE ALARMED AT R5"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	30-Jun-08	21650.59	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:53 AM	

+="CN77183"	"COMMS EQUIPMENT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	31-Jan-08	30-Jun-08	20436.19	=""	="KAZ GROUP LTD"	10-May-08 11:53 AM	

+="CN77186"	"labour hire"	="Department of Defence"	10-May-08	="Human resources services"	16-Jan-08	30-Apr-08	20492.50	=""	="DRAKE INTERNATIONAL"	10-May-08 11:53 AM	

+="CN77188"	"LABOUR HIRE"	="Department of Defence"	10-May-08	="Human resources services"	16-Jan-08	30-Apr-08	27900.40	=""	="DRAKE INTERNATIONAL"	10-May-08 11:53 AM	

+="CN77190"	"Repairs to GSE"	="Department of Defence"	10-May-08	="Hydraulic systems and components"	16-Jan-08	31-Jan-08	27526.40	=""	="EYRE & OWEN SMASH REPAIRS"	10-May-08 11:54 AM	

+="CN77196"	"HMAS PENGUIN REDEVELOPMENT STAGE 1 PROBITY SERVICES-HMAS PENGUIN PROGRAM OF WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	24198.92	=""	="SPARKE HELMORE LAWYERS"	10-May-08 11:54 AM	

+="CN77207"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102 SPOIL INVESTIGAT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	21905.40	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77209"	"TEST EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	28-Feb-08	21840.50	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	10-May-08 11:55 AM	

+="CN77218"	"Comms/IT"	="Department of Defence"	10-May-08	="Software"	21-Jan-08	11-Feb-08	26031.50	=""	="ENCOM TECHNOLOGY PTY LIMITED"	10-May-08 11:55 AM	

+="CN77259"	"mixed signal Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Jan-08	22-Feb-08	26712.53	=""	="TRIO SMARTCAL PTY LTD"	10-May-08 11:58 AM	

+="CN77260"	"ASSEMBLY & WIRING OF 4 PH & CONDUCTIVITY CONTROL S YSTEMS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	19-Mar-08	24823.70	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 11:58 AM	

+="CN77262"	"Exhibition Space"	="Department of Defence"	10-May-08	="Sales and business promotion activities"	23-Jan-08	29-Feb-08	25300.00	=""	="HANNOVER FAIRS AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77264"	"Denton Hybrid III upper neck channel load cell, Pe lvis mounting block, Head Denton mounting block"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Jan-08	21-Mar-08	22121.00	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 11:58 AM	

+="CN77268"	"Desk top PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	25250.94	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77277"	"ASSORTED OFFICE FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	14-Feb-08	27749.31	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 11:59 AM	

+="CN77282"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	23406.16	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:59 AM	

+="CN77284"	"dsto development contract"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	23-Jan-08	15-Mar-08	21008.40	=""	="QINETIQ LTD"	10-May-08 11:59 AM	

+="CN77301"	"dsto software"	="Department of Defence"	10-May-08	="Software"	24-Jan-08	30-Nov-08	27814.89	=""	="EM SOFTWARE & SYSTEMS SA PTY LTD"	10-May-08 12:00 PM	

+="CN77318"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jan-08	31-Jan-08	28380.00	=""	="AAMHATCH  PTY LTD"	10-May-08 12:01 PM	

+="CN77342"	"REQUIRED FOR SASR POC PETER HECTOR ON 9285 6197 METEOR JACKET'S"	="Department of Defence"	10-May-08	="Clothing"	17-Jan-08	17-Feb-08	26400.00	=""	="MAINPEAK PTY LTD"	10-May-08 12:02 PM	

+="CN77361"	"groceries and smallgoods wbta"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	22-Jan-08	30-Jun-08	22179.61	=""	="GYMPIE COOLOOLA FOODSERVICE"	10-May-08 12:04 PM	

+="CN77364"	"GARMIN GPS AND ACCESSORIES"	="Department of Defence"	10-May-08	="Location and navigation systems and components"	18-Jan-08	28-Feb-08	20702.08	=""	="CAPRICORN COMMUNICATIONS"	10-May-08 12:04 PM	

+="CN77366"	"Mixed Signal Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	29-Jan-08	21720.66	=""	="TEKMARK AUSTRALIA PTY LTD"	10-May-08 12:04 PM	

+="CN77370"	"GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Fitness equipment"	18-Jan-08	18-Feb-08	23701.53	=""	="WORLD OF SPORT WHOLESALERS PTY LTD"	10-May-08 12:04 PM	

+="CN77380"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	28353.60	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77383"	"SERVICES OF CONTRACTOR"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	30-May-08	21874.16	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 12:05 PM	

+="CN77384"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Jun-08	20000.00	=""	="CHRISTIE BETRO MANAGMENT"	10-May-08 12:05 PM	

+="CN77388"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	17-Jan-08	15-Feb-08	25300.00	=""	="TLE ELECTRICAL"	10-May-08 12:05 PM	

+="CN77390"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	29282.00	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77397"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	22-Jan-08	27439.50	=""	="AUSTRALIAN HUMAN RESOURCE INSTITUTE"	10-May-08 12:06 PM	

+="CN77408"	"PROPERTY STUDIES-JEZZINE BARRACKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Jan-08	30-Jun-08	27500.00	=""	="PMM TOWNSVILLE PTY LTD"	10-May-08 12:06 PM	

+="CN77418"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	26886.20	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77419"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	30-Jun-08	20000.00	=""	="MARGARET MCNALLY"	10-May-08 12:07 PM	

+="CN77422"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	22-Jan-08	30-Jun-08	24750.00	=""	="QUANTITATIVE AERONAUTICS"	10-May-08 12:07 PM	

+="CN77423"	"Annual LS-DYNA Maintenance"	="Department of Defence"	10-May-08	="Software"	10-Jan-08	31-Mar-09	22966.42	=""	="LIVERMORE SOFTWARE TECHNOLOGY"	10-May-08 12:07 PM	

+="CN77430"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	30-May-08	28600.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 12:08 PM	

+="CN77442"	"Purchase Order is placed under Boeing Engineering Standing Offer 873864."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Jan-08	30-Apr-08	22000.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 12:08 PM	

+="CN77451"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	11-May-08	25405.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:09 PM	

+="CN77452"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Jan-08	30-Jun-08	29375.20	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:09 PM	

+="CN77455"	"POWERWARE"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Jan-08	01-Feb-08	22281.60	=""	="SERVERBITS"	10-May-08 12:09 PM	

+="CN77457"	"1 RU PC Systems"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	01-Feb-08	20020.00	=""	="SERVERBITS"	10-May-08 12:09 PM	

+="CN77461"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	07-Apr-08	28353.14	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:09 PM	

+="CN77467"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	01-Feb-08	24871.00	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:10 PM	

+="CN77480"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	21631.46	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:10 PM	

+="CN77488"	"Complex Procurement, Contract 0607-230 To carry out Operational level Maintenace of Selec"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Jan-08	30-Jun-08	26950.00	=""	="SALE BRAKES & ENGINEERING"	10-May-08 12:11 PM	

+="CN77507"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	28050.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:12 PM	

+="CN77511"	"FUNDING"	="Department of Defence"	10-May-08	="Education and Training Services"	29-Jan-08	29-Jan-08	25564.00	=""	="KAPOOKA EARLY CHILDHOOD CENTRE INC"	10-May-08 12:12 PM	

+="CN77512"	"DEFENCE JOBS SITE WOMENS PAGES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	30-Jun-08	20846.38	=""	="VISUAL JAZZ PTY LTD"	10-May-08 12:12 PM	

+="CN77526"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Jan-08	08-Jan-08	26095.14	=""	="AUSTRALIAN MARITIME COLLEGE"	10-May-08 12:13 PM	

+="CN77530"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	08-Jan-08	27644.76	=""	="COGNITIVE EDGE PTE LTD"	10-May-08 12:13 PM	

+="CN77542"	"RADIO MECH HIRE 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	27151.61	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77545"	"Desktop computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	06-Feb-08	24004.75	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77546"	"2 PERS HIRE (1 X VM, 1 X PROD CLK) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	21257.06	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77548"	"2 PERS HIRE (1 X VM, 1 X VI) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	22863.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77558"	"RANDWICK DISPOSAL & RATIONALISATION PROJECT-INTERI PB ENGAGED TO CARRY OUT A RISK ASSESSMENT ON"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	25795.00	=""	="PARSONS BRINCKERHOFF PTY LTD"	10-May-08 12:15 PM	

+="CN77559"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	29796.80	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:15 PM	

+="CN77560"	"Perform load testing on ROMAN"	="Department of Defence"	10-May-08	="Public administration and finance services"	08-Jan-08	08-Jan-08	21876.80	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	10-May-08 12:15 PM	

+="CN77569"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	24004.75	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:15 PM	

+="CN77571"	"NEWPORT 150W SOLAR SIMIULATOR 2"X2" OUTPUT"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	24-Jan-08	31-Jan-08	24556.40	=""	="NEWSPEC PTY LTD"	10-May-08 12:15 PM	

+="CN77574"	"MARS FUEL 07/08 Technical Authority: Rob Pointon"	="Department of Defence"	10-May-08	="Fuels"	09-Jan-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:16 PM	

+="CN77575"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	24-Jan-08	20-Feb-08	23600.50	=""	="PERKICH & ASSOCIATES"	10-May-08 12:16 PM	

+="CN77578"	"POC:ANTHONY WARNOCK 02 62669354"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	30-Mar-08	24225.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 12:16 PM	

+="CN77582"	"POC:STEVE CAUSER 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	30-Jan-08	24871.00	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:16 PM	

+="CN77585"	"Renewal of Annual Maintenance-RightAnswers Perpetual Licence from 28/11/07 to 28/11/2008."	="Department of Defence"	10-May-08	="Software"	09-Jan-08	28-Nov-08	25135.47	=""	="RIGHTANSWERS LLC"	10-May-08 12:16 PM	

+="CN77592"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	21032.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77595"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	08-Jan-08	31-Mar-08	28475.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77606"	"Quantum Well Modulator"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	25-Jan-08	26-Mar-08	24720.80	=""	="IQE INC"	10-May-08 12:17 PM	

+="CN77607"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	09-Jan-08	30-Jun-08	21950.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 12:18 PM	

+="CN77614"	"SUBSCRIPTION RENEWAL TO KNOVEL"	="Department of Defence"	10-May-08	="Software"	25-Jan-08	30-Jan-08	25142.45	=""	="DA INFORMATION SERVICES PTY LTD"	10-May-08 12:18 PM	

+="CN77626"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	26072.20	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:18 PM	

+="CN77639"	"VRTS SF HA 5.0 WIN ENTERPRISE EDITION ESSENTIAL 1SR YEAR GOV BAND SRNW"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	16-Jan-08	24739.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 12:19 PM	

+="CN77669"	"Computers/server and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	18-Jan-08	21479.70	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77687"	"Road tpt of containers and MHI ISO Op Outreach for Peppimenarti"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	20452.52	=""	="PDL TOLL"	10-May-08 12:22 PM	

+="CN77698"	"traning"	="Department of Defence"	10-May-08	="Vocational training"	11-Dec-07	30-Jun-08	25331.00	=""	="BARRIER REEF INSTITUTE OF TAFE"	10-May-08 12:22 PM	

+="CN77700"	"Dynamic finite element model for Active Smart Patch on F111 LWS structurally detailed specimen"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Dec-07	30-Apr-08	27500.00	=""	="MONASH UNI - CASHIER"	10-May-08 12:22 PM	

+="CN77710"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	25136.74	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77713"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	15-Jan-08	22000.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 12:23 PM	

+="CN77733"	"841 Titrando Titration Package as per Option 2 quote SDEQ8612."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	08-Feb-08	25861.00	=""	="MEP INSTRUMENTS"	10-May-08 12:24 PM	

+="CN77738"	"TSS ContractProvision of Comparison of Sonar Tranmission Models"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Dec-07	23-Apr-08	22000.00	=""	="CURTIN UNI - CENTRE FOR MARINE"	10-May-08 12:25 PM	

+="CN77741"	"VM4-310 Micro-optical attachment for 6 objectives VM4-364 and delivery."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	28-Mar-08	21972.29	=""	="MELLOR MICRONET PTY LTD"	10-May-08 12:25 PM	

+="CN77745"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	28175.97	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:25 PM	

+="CN77755"	"Design ADFA LIA refurb"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	10-Dec-07	30-Jun-08	29502.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:25 PM	

+="CN77757"	"PAPER A4 WHITE AUSTRALIAN COPY"	="Department of Defence"	10-May-08	="Paper materials"	10-Dec-07	31-Jan-08	22651.20	=""	="BARKERS OFFICE SUPPLIES"	10-May-08 12:26 PM	

+="CN77774"	"biosecurity riska database upgrade"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-08	21494.00	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 12:26 PM	

+="CN77775"	"HARDWARE DEVELOPMENT OF SSI IMPEDANCE ANALYSER II"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	10-Dec-07	31-Jan-08	23551.00	=""	="CPE SYSTEMS PTY LTD"	10-May-08 12:27 PM	

+="CN77781"	"CONSTRUCTION"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	28-Feb-08	23331.00	=""	="BORDER STAINLESS STEEL PTY LTD"	10-May-08 12:27 PM	

+="CN77795"	"Airside Refueling Roadway"	="Department of Defence"	10-May-08	="Roads and landscape"	10-Dec-07	31-Jan-08	27456.00	=""	="PMP BITUMEN"	10-May-08 12:28 PM	

+="CN77799"	"Russell6-G install aircon"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	10-Dec-07	30-Jun-08	20851.60	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:28 PM	

+="CN77802"	"Laserbird 2 tracker"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	11-Jan-08	25014.00	=""	="INITION PTY LTD"	10-May-08 12:28 PM	

+="CN77808"	"Emulex Host Bus Adaptor cards"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	29731.02	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 12:28 PM	

+="CN77828"	"Scientific Equipment"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	01-Mar-08	25969.67	=""	="IMAR GMBH"	10-May-08 12:30 PM	

+="CN77838"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	31-Jan-08	30-Jun-08	21350.00	=""	="MINTER ELLISON"	10-May-08 12:30 PM	

+="CN77847"	"ACCOMMODATION COSTS/CATERING"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	28598.70	=""	="STAMFORD PLAZA BRISBANE"	10-May-08 12:31 PM	

+="CN77851"	"SAM 96 position security system."	="Department of Defence"	10-May-08	="Security and control equipment"	10-Dec-07	21-Dec-07	21835.83	=""	="CIC SECURE PTY LTD"	10-May-08 12:31 PM	

+="CN77872"	"Invoice Plan"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	30-Jan-08	23-Jan-09	29880.00	=""	="DANIEL WANASILI"	10-May-08 12:32 PM	

+="CN77881"	"Network Engineering Design"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	15-Dec-07	21191.32	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:32 PM	

+="CN77890"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	27571.69	=""	="DEVELOPING POTENTIAL AUSTRALIA"	10-May-08 12:33 PM	

+="CN77911"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	01-Aug-08	20350.00	=""	="MINTER ELLISON"	10-May-08 12:34 PM	

+="CN77920"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	21190.02	=""	="DEVELOPING POTENTIAL AUSTRALIA"	10-May-08 12:35 PM	

+="CN77925"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	01-Jun-08	25410.00	=""	="WORKPLACE RESEARCH ASSOCIATES PTY"	10-May-08 12:35 PM	

+="CN77927"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	27205.00	=""	="CLAYTON UTZ"	10-May-08 12:35 PM	

+="CN77929"	"TSS Contract - Provision of Research Services to Multi-Source Network Coding"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Dec-07	31-Mar-08	22000.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	10-May-08 12:35 PM	

+="CN77931"	"REQUIRED FOR THE TRAINING OF ABPF PERSONNEL Point Williams Laverton Flight Sergeant David McCubbin M"	="Department of Defence"	10-May-08	="Personal safety and protection"	13-Dec-07	28-Mar-08	26130.00	=""	="ARMAMENT SYSTEMS & PROCEDURES"	10-May-08 12:35 PM	

+="CN77933"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	13-Dec-07	30-Jun-08	26732.20	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:35 PM	

+="CN77938"	"Quest 15xx Data Aquisition and Processing"	="Department of Defence"	10-May-08	="Software"	30-Jan-08	31-Mar-08	29558.63	=""	="COMPUQUEST INC"	10-May-08 12:36 PM	

+="CN77944"	"DOCTRINE SCOPING STUDY RELATING TO BATTLE MANAGEMENT SYSTEM"	="Department of Defence"	10-May-08	="Military services and national defence"	30-Jan-08	01-May-08	24480.50	=""	="O2C"	10-May-08 12:36 PM	

+="CN77951"	"PARTS"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	13-Dec-07	23-May-08	21527.97	=""	="VOLVO COMMERCIAL VEHICLES - ALBURY"	10-May-08 12:36 PM	

+="CN77960"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	01-Aug-08	20800.00	=""	="MINTER ELLISON"	10-May-08 12:37 PM	

+="CN77961"	"EXTERNAL LAND USE APPLICATION PROCESS TRAINING PAC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	29-Jan-08	30-Jun-08	29139.00	=""	="ALLIED CONSULTANTS"	10-May-08 12:37 PM	

+="CN77973"	"Design, supply and install of audio visuasl system"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Jan-08	30-Jan-08	26461.46	=""	="LIVE DIGITAL TRUST"	10-May-08 12:37 PM	

+="CN77974"	"Defence - ICON Annual Levy Administration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	31-Dec-07	27500.00	=""	="DEPT OF FINANCE & ADMINISTRATION"	10-May-08 12:38 PM	

+="CN77975"	"On-site maintenance support for Transonic Wind Tunnel"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	29-Jan-08	21-Apr-08	24361.41	=""	="AERO SYSTEMS ENGINEERING INC"	10-May-08 12:38 PM	

+="CN77989"	"SECURITY"	="Department of Defence"	10-May-08	="Security and control equipment"	30-Jan-08	29-Feb-08	20872.50	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	10-May-08 12:39 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val300000to999999999.xls
@@ -1,1 +1,332 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73946-A1"	"Project Management of Capital Works - Port Villa"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	18-Feb-09	463374.00	=""	="Manteena Pty Ltd"	08-May-08 10:09 AM	

+="CN73950-A2"	"Project Management of Capital Works -   Beirut"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-10	1114000.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 10:19 AM	

+="CN73953-A1"	"08/2747 - Project Manager - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	332640.00	="05/0717"	="Clicks Recruit Pty Ltd"	08-May-08 10:35 AM	

+="CN73956-A1"	"Project Management of Capital Works - Dili"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	16-Oct-08	370695.00	=""	="Manteena Pty Ltd"	08-May-08 10:39 AM	

+="CN73961-A1"	"Project Management of Capital Works - Jakarta"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	11-Sep-08	408464.00	=""	="Manteena Pty Ltd"	08-May-08 10:49 AM	

+="CN73968-A2"	"Project Management of Capital Works - Islamabad"	="Australian Federal Police"	08-May-08	="Project management"	14-Mar-08	31-Dec-09	583000.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 10:59 AM	

+="CN73976-A1"	"Project Management of Capital Works - Bali"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	05-Nov-08	367810.00	=""	="Manteena Pty Ltd"	08-May-08 11:10 AM	

+="CN73751-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Mar-08	30-Jun-09	384285.00	=""	="Greythorn Pty Ltd"	08-May-08 11:17 AM	

+="CN73753-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	31-Jan-08	30-Jun-09	344850.00	=""	="Greythorn Pty Ltd"	08-May-08 11:19 AM	

+="CN73981-A2"	"Project Management of Capital Works - Dubai"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-09	935137.00	="RFT 74-2007"	="Manteena Pty Ltd"	08-May-08 11:20 AM	

+="CN73806-A4"	"Provision of Information Technology Administrative Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	09-Jul-07	30-Jun-09	473000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:22 AM	

+="CN73996-A1"	"Project Management of Capital Works - Suva"	="Australian Federal Police"	08-May-08	="Project management"	13-Apr-08	05-Sep-08	549328.00	=""	="Manteena Pty Ltd"	08-May-08 11:47 AM	

+="CN73999-A2"	"Project Management of Capital Works - Pretoria"	="Australian Federal Police"	08-May-08	="Project management"	14-Apr-08	31-Dec-09	478500.00	="RFT21/2005"	="Manteena Pty Ltd"	08-May-08 11:53 AM	

+="CN73835-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	08-Oct-07	30-Jun-09	423500.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:18 PM	

+="CN73861-A3"	"Provision of Information Technology Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	367070.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:27 PM	

+="CN73863-A4"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	12-Jun-07	29-May-09	608850.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:29 PM	

+="CN74023"	"Lease at Ararat, VIC"	="Department of Human Services"	08-May-08	="Real estate services"	01-Dec-08	30-Nov-15	1293580.75	=""	="Zhomic PTY LTD"	08-May-08 01:08 PM	

+="CN73873-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	27-Jun-08	303600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 01:24 PM	

+="CN74028-A2"	"08/2742 - Human Resources Consultancy Service - 1599-1997 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	21-Apr-08	30-Sep-08	355000.00	=""	="Yellow Edge Pty Ltd"	08-May-08 01:27 PM	

+="CN74035-A1"	"08/2648 - IT Contractor - 1599-2004 - C&B Services Panel 06/1599 (CPE004803-1)"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	28-Apr-08	01-Sep-08	499400.00	=""	="2nd Road Pty Ltd"	08-May-08 01:41 PM	

+="CN74037-A1"	"08/2570 - Supply of X-Ray Units - 0109-1067 - X-Ray Panel 03/0109 (CPO019784)(CPO019785)(CPO019787)"	="Australian Customs and Border Protection Service"	08-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Feb-08	10-Apr-08	436194.00	=""	="Smiths Detection Australia"	08-May-08 01:48 PM	

+="CN74048-A7"	"08/2737 - Professional Services - 1599-1944 - C&B Services Panel 06/1599 (CPE004784-1)"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	15-Feb-08	17-Aug-09	1145952.00	=""	="Oakton AA Services Pty Ltd"	08-May-08 02:14 PM	

+="CN73886-A3"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	30-Jun-09	396495.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:45 PM	

+="CN73891-A3"	"Provision of Information Technology Enterprise Design Services"	="Department of Immigration and Citizenship"	08-May-08	="Systems architecture"	09-Oct-07	30-Jun-09	635250.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:47 PM	

+="CN73894-A6"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	01-Aug-07	30-Jun-09	432300.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:49 PM	

+="CN73900-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	03-Mar-08	19-Sep-08	462000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:57 PM	

+="CN73903-A6"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	536030.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 03:18 PM	

+="CN74075"	"Upgrade the front Science Forecourt at Questacon Parkes"	="Questacon"	08-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Mar-08	30-Jun-08	671260.00	=""	="Complete Consrtuctions"	08-May-08 03:19 PM	

+="CN74004-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	31-Jan-08	30-Jun-09	343200.00	=""	="Greythorn Pty Ltd"	08-May-08 03:20 PM	

+="CN73993-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	27-Aug-07	30-Jun-09	332482.00	=""	="Greythorn Pty Ltd"	08-May-08 03:26 PM	

+="CN73990-A2"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	06-Aug-07	22-Feb-08	416295.00	=""	="Greythorn Pty Ltd"	08-May-08 03:27 PM	

+="CN73965-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	09-Jul-07	30-Jun-09	374000.00	=""	="Greythorn Pty Ltd"	08-May-08 03:37 PM	

+="CN74122-A6"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	02-Jan-08	30-Jun-09	333234.00	=""	="Greythorn Pty Ltd"	08-May-08 04:41 PM	

+="CN74125-A2"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	02-Jan-08	30-Jun-09	333234.00	=""	="Greythorn Pty Ltd"	08-May-08 04:44 PM	

+="CN74129-A3"	"Provision of Information Technology Network Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	03-Dec-07	30-Jun-09	506880.00	=""	="Greythorn Pty Ltd"	08-May-08 04:55 PM	

+="CN74130-A3"	"Provision of Information Technology Network Administration Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	14-Nov-07	30-Jun-09	440631.00	=""	="Greythorn Pty Ltd"	08-May-08 04:59 PM	

+="CN74135-A4"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	25-Jun-07	26-Sep-08	378675.00	=""	="Greythorn Pty Ltd"	08-May-08 05:10 PM	

+="CN74136-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	21-May-07	30-Jun-09	329945.00	=""	="Greythorn Pty Ltd"	08-May-08 05:15 PM	

+="CN74137-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	09-Jul-07	30-Jun-09	530200.00	=""	="Greythorn Pty Ltd"	08-May-08 05:20 PM	

+="CN74171-A3"	"Provision for IT Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	02-Jul-07	30-Jun-09	420200.00	=""	="Paxus Australia Pty Limited"	09-May-08 10:09 AM	

+="CN74174-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	25-Jun-07	30-Jun-09	514052.00	=""	="Paxus Australia Pty Limited"	09-May-08 10:18 AM	

+="CN74200-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	23-Jul-07	30-Jun-09	351780.00	=""	="Ambit Group Pty Limited"	09-May-08 11:12 AM	

+="CN74203-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	17-Mar-08	30-Jun-09	348920.00	=""	="Ambit Group Pty Limited"	09-May-08 11:18 AM	

+="CN74232-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	07-Jan-08	30-Jun-08	313500.00	=""	="Ambit Group Pty Limited"	09-May-08 11:34 AM	

+="CN74235-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	31-Jul-07	30-Jun-08	326040.00	=""	="Ross Human Directions Limited"	09-May-08 11:39 AM	

+="CN74407"	"Insurance Advice & Management Costs"	="Department of Finance and Deregulation"	09-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	28-Feb-09	318907.00	="FIN07AMG002"	="JARDINE LLOYD THOMPSON PTY LTD"	09-May-08 02:24 PM	

+="CN74413-A1"	"OH&S and OR Services to Staff of Members of Parliament"	="Department of Finance and Deregulation"	09-May-08	="Management advisory services"	07-May-08	19-Feb-13	7141120.00	="FIN06/MPS023"	="KONEKT AUSTRALIA PTY LTD"	09-May-08 02:25 PM	

+="CN74404-A1"	"Variation for new security systems in Adelaide office in 2008"	="Australian Securities and Investments Commission"	09-May-08	="Security and control equipment"	01-Jul-07	30-Jun-12	404644.00	=""	="Intec 1 Pty Limited"	09-May-08 02:30 PM	

+="CN74423-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	31-Oct-08	323070.00	=""	="Paxus Australia Pty Limited"	09-May-08 02:58 PM	

+="CN74405-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	23-Jul-07	15-Mar-09	351780.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:02 PM	

+="CN74402-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	07-Jan-08	30-Jun-09	346500.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:03 PM	

+="CN74392-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	22-Oct-07	30-Jun-09	322300.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:05 PM	

+="CN74452"	"SENIOR MO RAAF BASE WILLIAMTOWN"	="Department of Defence"	09-May-08	="Emergency and field medical services products"	06-Mar-08	30-Jun-08	987008.35	=""	="DR MICHAEL O'DONOGHUE"	09-May-08 03:42 PM	

+="CN74468"	"AIR 5349-BRIDGING AIR COMBAT CAPABILITY(BACC)-RAAF MC FEES-LEIGHTON CONTRACTORS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	07-Mar-08	30-Jun-09	1629574.10	=""	="LEIGHTON CONTRACTORS PTY LTD"	09-May-08 03:45 PM	

+="CN74479"	"POC: Daniel Garrard Contact: 02 6265 0627"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	30-Jun-08	602956.20	=""	="JENKINS ENGINEERING DEFENCE"	09-May-08 03:47 PM	

+="CN74509"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	02-Mar-10	601040.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	09-May-08 03:50 PM	

+="CN74524"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	05-Mar-08	01-Jul-10	467500.00	=""	="MEDIA MANOEUVRES"	09-May-08 03:50 PM	

+="CN74533"	"AIR CHTR ASTUTE TLBG MRE"	="Department of Defence"	09-May-08	="Aircraft"	05-Mar-08	06-Mar-08	387400.20	=""	="ADAGOLD AVIATION PTY LTD"	09-May-08 03:51 PM	

+="CN74557"	"SAP SAFEGUARD AND NEW GL MIGRATION SERVICES FOR"	="Department of Defence"	09-May-08	="Public administration and finance services"	06-Mar-08	31-Oct-08	327250.00	=""	="CSC AUSTRALIA PTY LTD"	09-May-08 03:52 PM	

+="CN74598"	" Education and training development "	="Department of Defence"	09-May-08	="Education and Training Services"	06-Mar-08	30-Jun-08	530090.00	=""	="DAVID MIERS & ASSOCIATES"	09-May-08 03:54 PM	

+="CN74614"	"HQJOC PROJECT-LAN SYSTEMS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	528124.11	=""	="WESTCON GROUP"	09-May-08 03:55 PM	

+="CN74626"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	323171.00	=""	="APERIUM PTY LTD"	09-May-08 03:56 PM	

+="CN74639"	"Hot Water System conversion & water saving devices in LIA facilities at Singleton Military Area"	="Department of Defence"	09-May-08	="General building construction"	21-Mar-08	30-Jun-08	327267.33	=""	="SSL ASSET SERVICES PTY LTD"	09-May-08 03:57 PM	

+="CN74644"	"1000 SAMSUNG A412 HANDSETS $326.36 EX GST PER HAND SET & $13.64 EX GST PER ACCESSORY PACK."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	11-Mar-08	30-Apr-08	374000.00	=""	="TELSTRA"	09-May-08 03:58 PM	

+="CN74384"	" Provisions for Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Oct-07	30-Jun-08	315810.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:59 PM	

+="CN74650"	"Contact: Chris Hein 02 6265 0713"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	11-Mar-08	13-Jun-08	762300.00	=""	="IKEN COMMERCIAL INTERIORS (ACT)"	09-May-08 03:59 PM	

+="CN74671"	"Repairs to Underground Infrastructure"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	20-Mar-08	30-Jun-08	649310.81	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	09-May-08 04:00 PM	

+="CN74699"	"CONTRACT SERVICES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-12	366520.00	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:02 PM	

+="CN74711"	"HMAS Penguin - Water and energy conservation measures"	="Department of Defence"	09-May-08	="Environmental control systems"	19-Mar-08	30-Jun-08	318594.81	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:03 PM	

+="CN74381-A4"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	31-Oct-07	10-Dec-08	581570.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:03 PM	

+="CN74723"	"Direcctor Medical Services FY 07/08"	="Department of Defence"	09-May-08	="Emergency and field medical services products"	10-Mar-08	30-Jun-08	1085819.17	=""	="HELEN MALOOF"	09-May-08 04:04 PM	

+="CN74725"	"DNSDC SUPPORT OF OPERATIONS THROUGH CCP ACTIVITIES"	="Department of Defence"	09-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	10-Mar-08	30-Nov-08	1375000.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	09-May-08 04:04 PM	

+="CN74734"	"Refurbish Obstacle Course LB"	="Department of Defence"	09-May-08	="Project management"	10-Mar-08	30-Jul-08	751000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	09-May-08 04:05 PM	

+="CN74742"	"SWBTA Weed Mgt Program Mar - Jun 08"	="Department of Defence"	09-May-08	="Forestry"	10-Mar-08	30-Jun-08	396000.00	=""	="GREENING AUSTRALIA (QLD)"	09-May-08 04:06 PM	

+="CN74759"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	23-Jun-08	4731892.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:07 PM	

+="CN74729-A4"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	31-Oct-08	369600.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:08 PM	

+="CN74766"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Sep-08	455000.00	=""	="ERNST & YOUNG"	09-May-08 04:08 PM	

+="CN74792"	"JLUSQ-0406 Labour Hire support to 7BDE from 1 Apr to 30 Jun 08"	="Department of Defence"	09-May-08	="Transportation repair or maintenance services"	13-Mar-08	30-Jun-08	586537.93	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:10 PM	

+="CN74804"	"MAINTENANCE SERVICES FEE ISO DCC SUPPORT CONTRACT CIOG 335/07"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Mar-08	31-Jan-09	502774.80	=""	="AVAYA AUSTRALIA PTY LTD"	09-May-08 04:11 PM	

+="CN74810"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	500000.00	=""	="KPMG"	09-May-08 04:11 PM	

+="CN74897"	""This order is subject to the terms and conditions Defence Material Organisation Support Services (D"	="Department of Defence"	09-May-08	="Software"	03-Mar-08	31-Jul-08	2894445.03	=""	="KPMG"	09-May-08 04:16 PM	

+="CN74905"	"POC: JASON YAP CONTACT: 02 626 50913"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	30-Jun-08	1324109.60	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:17 PM	

+="CN74908"	"PROVISION OF SERVICES - 2007/08 HMAS ALBATROSS AND MAINTENANCE PROJECT."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	1127055.74	=""	="WORKS INFRASTRUCTURE PTY LTD"	09-May-08 04:17 PM	

+="CN74914"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	28-Feb-10	561000.00	=""	="PEOPLEBANK AUSTRALIA LTD"	09-May-08 04:17 PM	

+="CN74917"	"Change of Vendor number, Old PO 4500484054 closed"	="Department of Defence"	09-May-08	="Software"	03-Mar-08	30-Jun-08	324112.67	=""	="DUPLICATE - USE V ENDOR 1050211"	09-May-08 04:18 PM	

+="CN74979"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	11-Mar-10	677875.00	=""	="M5 NETWORKS AUSTRALIA PTY LTD"	09-May-08 04:21 PM	

+="CN74980"	"2 AIRFIELD DEFENCE GUARD - ADDITIONAL RIFLE FLIGHT AMBERLEY."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	28-Feb-08	30-Jun-09	576862.00	=""	="THINC PROJECTS PTY LTD"	09-May-08 04:22 PM	

+="CN74981"	"WPNI Reactive Maintenance"	="Department of Defence"	09-May-08	="Project management"	12-Mar-08	30-Jul-08	756085.01	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	09-May-08 04:22 PM	

+="CN75002"	"SOFTWARE LICENCE"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	08-Jun-08	1129106.78	=""	="CSC AUSTRALIA PTY LTD"	09-May-08 04:23 PM	

+="CN75005"	"Enterprise Management System"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	29-Feb-08	01-Jun-08	412955.21	=""	="GETRONICS (AUSTRALIA) PTY LTD"	09-May-08 04:23 PM	

+="CN75021"	"TS POINEER RELOCATION TO KOMIATUM BARRACKS NEW ACCOMMODATION BUILDING"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	17-Mar-08	30-Jun-08	683431.10	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:24 PM	

+="CN75043"	"SOFTWARE LICENCE"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	20-Dec-08	574121.90	=""	="CSC AUSTRALIA PTY LTD"	09-May-08 04:26 PM	

+="CN75047"	"annual software maintenance"	="Department of Defence"	09-May-08	="Software"	17-Mar-08	30-Apr-08	328926.44	=""	="CSC AUSTRALIA PTY LTD"	09-May-08 04:26 PM	

+="CN75080"	"681912 (NT0838) RAAF Darwin Water Tower Relocation"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	400000.00	=""	="MCMAHON SERVICES AUST NT PTY LTD"	09-May-08 04:28 PM	

+="CN75084"	"681912 (NT1588) RAAF Darwin Water Tower Relocation"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	833000.26	=""	="MCMAHON SERVICES AUST NT PTY LTD"	09-May-08 04:28 PM	

+="CN75095"	"Purchase of Tape Infrastructure"	="Centrelink"	09-May-08	="Mainframe computers"	09-May-08	09-May-09	1296921.05	=""	="Sun Microsystems Australia Pty Ltd"	09-May-08 04:29 PM	

+="CN75140"	"Enterprise Lic - Mentor/ Specialist time,materials"	="Department of Defence"	09-May-08	="Software"	13-Mar-08	30-Jun-08	428560.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	09-May-08 04:32 PM	

+="CN75153"	"ASBESTOS REMEDIATION WORKS - BULIMBA NAD"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Jun-08	856166.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:33 PM	

+="CN75165"	"Research agreement"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Mar-08	30-Jun-10	421300.00	=""	="MACQUARIE UNI - OFFICE OF FINANCIAL"	09-May-08 04:34 PM	

+="CN75192-A3"	"PROVISION OF PROFESSIONS SERVICES"	="Department of Defence"	09-May-08	="Management advisory services"	04-Mar-08	30-Jun-10	593487.30	=""	="CANBERRA CONSULTING RESOURCES PTY"	09-May-08 04:36 PM	

+="CN75194"	"REGIONAL ICT SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	01-Nov-14	277572983.60	=""	="UNISYS AUSTRALIA LTD"	09-May-08 04:36 PM	

+="CN75197"	"INTERIM WORKS-ROBERTSON BARRACKS,DARWIN NT. THOMAS & COFFEY FOR A4504."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	4741000.00	=""	="THOMAS & COFFEY LTD"	09-May-08 04:37 PM	

+="CN75198"	"WATSONIA:DEFENCE FORCE SCHOOL OF SIGNALS(DFSS). DSC-SKM."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-10	3595776.80	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	09-May-08 04:37 PM	

+="CN75206"	"RAIL CHTR EX SOUTHERN REACH"	="Department of Defence"	09-May-08	="Railway and tramway cars"	04-Mar-08	14-May-08	1400000.00	=""	="FREIGHT LINK PTY LTD"	09-May-08 04:37 PM	

+="CN75209"	"HQJOC PROJECT-THALES-TAC SATCOM EXTERNAL & INTERNA"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	2361968.26	=""	="THALES AUSTRALIA"	09-May-08 04:37 PM	

+="CN75210-A1"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Jun-09	455245.30	=""	="SMS CONSULTING GROUP PTY LTD"	09-May-08 04:38 PM	

+="CN75221"	"ICT Network & Datalinks"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Mar-08	30-Jun-08	612311.24	=""	="GETRONICS (AUSTRALIA) PTY LTD"	09-May-08 04:38 PM	

+="CN75207"	"CDR027 - Production and distribution of e-tax CD mail packs"	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	11-Jul-08	307230.00	=""	="Media Technology Pty Ltd"	09-May-08 04:39 PM	

+="CN75227"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	12-Feb-08	31-Mar-08	768766.90	="2006/1130871"	="DIRECT ERGONOMICS PTY LTD"	09-May-08 04:39 PM	

+="CN75235"	"SOFTWARE SERVICES"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	306705.01	=""	="CASWA PTY LTD"	09-May-08 04:40 PM	

+="CN75241"	"WATSONIA:DEFENCE FORCE SCHOOL OF SIGNALS (DFSS) PM/CA-WOODS BAGOT."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-11	1339800.00	=""	="WOODS BAGOT PTY LTD"	09-May-08 04:40 PM	

+="CN75259-A3"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	24-Dec-09	375133.02	=""	="PEOPLEBANK"	09-May-08 04:41 PM	

+="CN75272"	"ELECTRICITY SUPPLY"	="Department of Defence"	09-May-08	="Utilities"	13-Feb-08	04-Jun-08	8710000.00	=""	="INTEGRAL ENERGY"	09-May-08 04:42 PM	

+="CN75276"	"PROVISION OF REGION HEALTH PRACTITIONER WORKFORCE AND CONTRACTED HEALTH PRACTITIONER"	="Department of Defence"	09-May-08	="Healthcare Services"	13-Feb-08	31-Mar-11	5396175.98	=""	="ASPEN MEDICAL PTY LTD"	09-May-08 04:42 PM	

+="CN75287"	"GSS Contract for F/Y 2008/2009, F/Y 2009/2010, F/Y 2010/2011, and F/Y 2011/2012."	="Department of Defence"	09-May-08	="Project management"	18-Mar-08	31-Jul-12	278256000.00	=""	="TRANSFIELD SERVICES (AUSTRALIA)"	09-May-08 04:43 PM	

+="CN75289"	"Labour Hire - 4th quarter"	="Department of Defence"	09-May-08	="Manufacturing support services"	18-Mar-08	30-Jun-08	1100000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:43 PM	

+="CN74238-A3"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	15-Oct-07	30-Jun-09	474375.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:44 PM	

+="CN75303"	"Site works for classrooms, offices and ablutions at TS Kybra"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	430000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:44 PM	

+="CN75314"	"Refurbishment and Upgrade of Facility 622 at RAAF Base Williamtown"	="Department of Defence"	09-May-08	="General building construction"	11-Feb-08	30-Jun-08	418449.90	=""	="SSL ASSET SERVICES PTY LTD"	09-May-08 04:44 PM	

+="CN75322"	"CONTRACT EXTENSION CHTR OF A330 FOR MEAO SUSTAINMENT"	="Department of Defence"	09-May-08	="Aircraft"	18-Mar-08	28-Oct-08	37214100.00	=""	="STRATEGIC AVIATION - USD"	09-May-08 04:45 PM	

+="CN75324"	"CONTRACT EXTENSION CHTR OF A330 FOR MEAO AUD"	="Department of Defence"	09-May-08	="Aircraft"	18-Mar-08	28-Oct-08	357772.50	=""	="STRATEGIC AVIATION - USD"	09-May-08 04:45 PM	

+="CN75319-A3"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	23-Jul-07	30-Jun-09	514800.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:46 PM	

+="CN75345"	"CONTRACTED HEALTH PROFESSIONALS"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	11-Feb-08	31-Dec-10	56837478.22	=""	="CHANDLER MACLEOD HEALTH PTY LTD"	09-May-08 04:47 PM	

+="CN75356"	"TRAINING AND SUPPORT"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	1081406.15	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	09-May-08 04:47 PM	

+="CN75362"	"AIR CHTR TLBG 3 & 4 RIP OP ASTUTE"	="Department of Defence"	09-May-08	="Aircraft"	17-Mar-08	26-Apr-08	1745000.00	=""	="ADAGOLD AVIATION PTY LTD"	09-May-08 04:48 PM	

+="CN75382"	"AIR 8000 PHASE 3-HEAVY AIR LIFT (HAL) FACILITIES. MC MANAGEMENT FEE & CONTRACTOR'S WORK FEE"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-10	17034889.30	=""	="JOHN HOLLAND CONSTRUCTION PTY LTD"	09-May-08 04:49 PM	

+="CN75383"	"The aim of this project is to replace the exisitin perimeter fence with a Class 2 animal control fen"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	17-Mar-08	30-Jun-08	1320000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:49 PM	

+="CN74229-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	19-Nov-07	30-Jun-09	375375.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:50 PM	

+="CN75421"	"SERVERS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	30-Apr-08	357241.00	=""	="DEFENCE MATERIEL ORGANISATION -"	09-May-08 04:52 PM	

+="CN75422"	"Consltant and Professional Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	30-Jun-08	768223.50	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	09-May-08 04:52 PM	

+="CN74210-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Dec-07	30-Jun-09	448663.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:54 PM	

+="CN75451"	"POC:  J A BURGESS CONTACT: 02 626 50462"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	30-Jun-08	464200.00	=""	="CRAY AUSTRALIA PTY LTD"	09-May-08 04:55 PM	

+="CN75460"	"CONTACT LUCY MCNICOL 08 8923 5116"	="Department of Defence"	09-May-08	="Environmental control systems"	15-Feb-08	30-Jun-08	396929.01	=""	="ASSET SERVICES"	09-May-08 04:56 PM	

+="CN75466"	"CRP - CONTRACTED SERVICES TO SOURCE, SCREEN AND RE CANDIDATES FOR CRITICAL TRADE CATEGORIES FOR DFR"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	30-Nov-09	6529200.00	=""	="ALLIANCE PEOPLE SOLUTIONS"	09-May-08 04:57 PM	

+="CN75471"	"SN01943 - BNTS Kangaroo Management"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	15-Feb-08	30-Jun-08	314319.94	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:57 PM	

+="CN75480"	"INTERIM WORKS  - TRAINEE REHABILITATION WING, MOOR NSW."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	1098332.40	=""	="CORDUKES"	09-May-08 04:58 PM	

+="CN75485"	"Enterprise Project Management Solution"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Feb-08	30-Jun-08	519981.76	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 08:32 AM	

+="CN75560"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.THANGARA 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	650001.00	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75561"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.WHEELER)"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	650001.00	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75573"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	397017.19	=""	="E S D R ELECTRONICS PTY LTD"	10-May-08 08:41 AM	

+="CN75596"	"STAGE 4 REGIONAL NAD"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	04-Feb-08	30-Jun-08	1193190.00	=""	="ASSET SERVICES"	10-May-08 08:43 AM	

+="CN75632"	"Refurbish the Albury Wodonga Health Centre LB101 RV0563"	="Department of Defence"	10-May-08	="Project management"	08-Feb-08	30-Jun-09	825000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 08:47 AM	

+="CN75665"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	31-Jul-08	2750000.00	=""	="DHA - CENTRAL OFFICE"	10-May-08 08:50 AM	

+="CN75673"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	776000.01	=""	="KPMG"	10-May-08 08:51 AM	

+="CN75686"	"CTD Millimetere Wave Digital Receiver"	="Department of Defence"	10-May-08	="Professional engineering services"	07-Feb-08	09-Nov-09	2489300.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:52 AM	

+="CN75690"	"GP SERVICES - DEFENCE"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	31-Mar-11	872085.12	=""	="DR JAMES T PROVAN"	10-May-08 08:52 AM	

+="CN75698"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	06-Feb-08	31-Dec-10	306436.37	=""	="GLENDA RAE WEEDON"	10-May-08 08:53 AM	

+="CN75701"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	06-Feb-08	31-Dec-10	300960.00	=""	="VERA GRIFFIN"	10-May-08 08:53 AM	

+="CN75704"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	07-Feb-08	31-Dec-10	519183.37	=""	="DR DAVID REES"	10-May-08 08:54 AM	

+="CN75715"	"DeBI Integration Team for MLFF Interfaces"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	08-Feb-08	29-Aug-08	894543.10	=""	="IBM AUSTRALIA LTD"	10-May-08 08:55 AM	

+="CN75719"	"GP SERVICES - RAAF"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	31-Mar-11	907892.70	=""	="NGAPOLI BEACH PTY LTD"	10-May-08 08:55 AM	

+="CN75721"	"Defence Contact Centre Project"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	20-Feb-08	421784.00	=""	="CLEAR LEAD PTY LTD"	10-May-08 08:55 AM	

+="CN75743"	"OFF ROAD RUNNING CIRCUIT CONSTRUCTION"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Feb-08	30-Jun-08	333170.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75796"	"ASSET ROAD MAINTENANCE SWBTA"	="Department of Defence"	10-May-08	="Roads and landscape"	22-Feb-08	30-Jun-08	1950000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:03 AM	

+="CN75817"	"ASi Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	389378.99	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:05 AM	

+="CN75844"	"PRODUCT SUPPORT AND MAINTENANCE RENEWAL"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Mar-08	537039.29	=""	="COGNOS PTY LTD"	10-May-08 09:07 AM	

+="CN75845"	"DEVELOPMENT OF REGIONAL BUSHFIRE MANAGEMENT PLANS"	="Department of Defence"	10-May-08	="Fire protection"	28-Feb-08	30-Jun-08	327000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:07 AM	

+="CN75883"	"CONTACT MATT FAULKNER 08 8935 2705"	="Department of Defence"	10-May-08	="Environmental control systems"	28-Feb-08	30-Jun-08	397232.00	=""	="ASSET SERVICES"	10-May-08 09:11 AM	

+="CN75908"	"Provide support accommodation in support of the ADF GAP Year at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="General building construction"	26-Feb-08	30-Jun-08	500000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 09:13 AM	

+="CN75910"	"CONTACT ADAM TAYLOR 08 8935 5161"	="Department of Defence"	10-May-08	="Environmental control systems"	26-Feb-08	30-Jun-08	359220.07	=""	="ASSET SERVICES"	10-May-08 09:14 AM	

+="CN75953"	"Unplanned Asbestos Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	330000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 09:18 AM	

+="CN75969"	"PROVISION OF SERVICES-RAAF RICHMOND & WILLIAMTOWN PROJECT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	8156752.41	=""	="PIONEER ROAD SERVICE"	10-May-08 09:19 AM	

+="CN75982"	"Peng Bld 17 Non Single LEAP LIA refurbishment"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Feb-08	30-Jun-08	2151203.52	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 09:21 AM	

+="CN75990"	"Contract 0708-206 under Standing Offer 0506-271-29"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	22-Nov-07	30-Jun-08	566280.00	=""	="YTEK PTY LTD"	10-May-08 09:58 AM	

+="CN75998"	"AIR CHTR OP ASTUTE"	="Department of Defence"	10-May-08	="Aircraft"	22-Nov-07	30-Nov-07	315065.20	=""	="HEAVYLIFT CARGO AIRLINES"	10-May-08 09:58 AM	

+="CN76000"	"ASdditional works to support refurbishment  and works on Caisson No 2"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	22-Nov-07	30-Jun-08	617301.30	=""	="THALES AUSTRALIA"	10-May-08 09:59 AM	

+="CN76034"	"HOLSWORTHY: SPECIAL FORCES TRAINING FACILITY ZAKNIC PAGANO-CONSTRUCTION OF CT400 SHED AND SLAB"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	450731.09	=""	="D&B ZAKNIC CONSTRUCTIONS"	10-May-08 10:00 AM	

+="CN76054"	"Environmental Audits"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	31-Jan-08	754688.00	=""	="HITACHI DATA SYSTEMS"	10-May-08 10:01 AM	

+="CN76059"	"Accomodation works Campbell Park & Brindabella Par"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Nov-07	30-Jun-08	8492573.98	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76065"	"Project Management fees"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Nov-07	30-Jun-08	707651.80	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76071"	"Upgrade Fire Detection"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	28-May-07	30-Jun-08	640795.71	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:02 AM	

+="CN76097"	"BORIS Sustainment"	="Department of Defence"	10-May-08	="Public administration and finance services"	14-Apr-08	31-Dec-08	1862641.61	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:04 AM	

+="CN76101"	"ROMAN UPGRADE IMPLIMENTATION"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	21-Apr-08	31-Oct-08	1731613.40	=""	="CSC AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76107"	"IIE SPATIAL DATA REMEDIATION"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	1720565.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 10:04 AM	

+="CN76109"	"Replacement external security fence."	="Department of Defence"	10-May-08	="Horticulture"	02-May-07	30-Jun-08	446658.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:04 AM	

+="CN76116"	"Critical Jobs - Media"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	825781.95	=""	="HMA BLAZE PTY LIMITED"	10-May-08 10:05 AM	

+="CN76122"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	12-Dec-07	582714.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:05 AM	

+="CN76150"	"IBM server equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	25-Jan-08	325131.40	=""	="IBM AUSTRALIA LIMITED"	10-May-08 10:07 AM	

+="CN76151"	"UPGRADE FIRE SECURITY SYSTEMS"	="Department of Defence"	10-May-08	="Fire prevention"	19-Jun-07	30-Jun-08	837194.73	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:07 AM	

+="CN76156"	"FEES-JEZZINE BARRACKS-DESIGN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Nov-07	30-Jun-09	658077.20	=""	="LAMBERT & REHBEIN PTY LTD"	10-May-08 10:07 AM	

+="CN76157"	"ENCOGGERA REDEVELOPMENT STAGE 1."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	30-Jun-08	425387.60	=""	="JOHN HOLLAND PTYLTD NORTHERN REGION"	10-May-08 10:07 AM	

+="CN76158"	"ARES careers day media schedules"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	352919.20	=""	="HMA BLAZE PTY LIMITED"	10-May-08 10:07 AM	

+="CN76183"	"BUILDEV PROPERTIES PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4789400.00	=""	="BUILDEV PROPERTIES PTY LTD"	10-May-08 10:09 AM	

+="CN76185"	"AUSTRALIAN CUSTOMS SERVICE"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	749043.11	=""	="AUSTRALIAN CUSTOMS SERVICE"	10-May-08 10:09 AM	

+="CN76205"	"RAAF WILLIAMTOWN - AIRCRAFT CLEAN WATER RINSE FACI CONSTRUCTION OF AN AIRCRAFT WATER FACILITY."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4993802.00	=""	="CORDUKES"	10-May-08 10:10 AM	

+="CN76210"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	11-Jan-08	30-Jun-08	330259.20	=""	="SERCO AUSTRALIA PTY LTD"	10-May-08 10:10 AM	

+="CN76216"	"CADETNET ENHANCEMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	300000.00	=""	="DIALOG INFORMATION TECHNOLOGY"	10-May-08 10:10 AM	

+="CN76234"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	350102.58	=""	="ROSS HUMAN DIRECTIONS"	10-May-08 10:11 AM	

+="CN76241"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-10	1152250.00	=""	="SYNERCON MANAGEMENT CONSULTING PTY"	10-May-08 10:12 AM	

+="CN76270"	"ASBESTOS REMEDIATION"	="Department of Defence"	10-May-08	="Environmental control systems"	21-Apr-08	30-Jun-08	877500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:13 AM	

+="CN76294"	"Provision of Aeronautical Publications 01.06.2007- 31.07.2008"	="Department of Defence"	10-May-08	="Published Products"	16-Aug-07	31-Jul-08	370000.00	=""	="AIRSERVICES AUSTRALIA"	10-May-08 10:14 AM	

+="CN76297"	"SUPPLY OF SERIALS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	23-Nov-07	30-Jun-08	499313.20	=""	="EBSCO AUSTRALIA SUBSCRIPTON"	10-May-08 10:15 AM	

+="CN76345"	"QANTAS 02-245988 OP CATALYST"	="Department of Defence"	10-May-08	="Aircraft"	08-Nov-07	30-Jan-08	617102.56	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76366"	"REPAIRS TO THE ROOF OF JUNIOR SAILORS GALLEY"	="Department of Defence"	10-May-08	="General building construction"	28-Aug-07	30-Jun-08	386593.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:19 AM	

+="CN76402"	"IN-FLIGHT CATERING"	="Department of Defence"	10-May-08	="Food and beverage industries"	12-Nov-07	30-Jun-08	440000.00	=""	="ALPHA FLIGHT SERVICES PTY LTD"	10-May-08 10:21 AM	

+="CN76410"	"HOLSWORTHY : 171 SQUADRON RELOCATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Apr-08	30-Jun-09	378007.30	=""	="HANSEN YUNCKEN PTY LTD"	10-May-08 10:21 AM	

+="CN76421"	"QANTAS ACCOUNT JUL07/NOV07"	="Department of Defence"	10-May-08	="Aircraft"	10-Jan-08	19-Jan-08	442207.38	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:22 AM	

+="CN76435"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-09	351780.00	=""	="INFORMATION IDENTITY PTY LTD"	10-May-08 10:23 AM	

+="CN76449"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management support services"	24-Jul-07	31-Jan-08	322135.05	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:23 AM	

+="CN76450"	"qantas flights op catalyst Nov 07"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Jun-08	480199.37	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:24 AM	

+="CN76455"	"IMMED/URG REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	415348.65	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:24 AM	

+="CN76459"	"Routine GEW Reactive Maintenance Western Region"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Jun-08	387742.82	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 10:24 AM	

+="CN76465"	"Comms Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Mar-07	17-Jul-07	600862.90	=""	="OPTUS BILLING SERVICES PTY LTD"	10-May-08 10:24 AM	

+="CN76484"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	31-Oct-10	331200.00	=""	="AUSTRALIAN RECEIVABLES LTD"	10-May-08 10:25 AM	

+="CN76490"	"AIR CHTR OP PNG ASSIST"	="Department of Defence"	10-May-08	="Aircraft"	29-Nov-07	31-Dec-07	440000.00	=""	="HEAVYLIFT CARGO AIRLINES"	10-May-08 10:26 AM	

+="CN76510-A2"	" Professional services "	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	471257.79	=""	="CONQUEST ENTERPRISE"	10-May-08 10:27 AM	

+="CN76520"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	321716.00	=""	="DEACONS"	10-May-08 10:28 AM	

+="CN76587"	"02-22408130NOV07 LINE 6983 - 7337"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	963187.24	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76596"	"RAAF TINDAL AEW and C OPERATIONS FACILITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4950000.00	=""	="LAING O'ROURKE (BMC) LIMITED"	10-May-08 10:32 AM	

+="CN76638"	"INSTALLATION OF FIBRE OPTIC CONDUIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Apr-08	496610.40	=""	="VISIONSTREAM PTY LTD"	10-May-08 10:35 AM	

+="CN76664"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	26-Jun-09	313500.00	=""	="UNIVERSITY OF SYDNEY"	10-May-08 10:37 AM	

+="CN76700"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Nov-08	1770000.00	=""	="KPMG AUSTRALIA"	10-May-08 10:39 AM	

+="CN76702"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Nov-08	994000.00	=""	="ERNST & YOUNG"	10-May-08 10:39 AM	

+="CN76703"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	24-Jan-08	320000.00	=""	="MINTER ELLISON"	10-May-08 10:39 AM	

+="CN76710"	"Flight Test Aircrew Training"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	03-Dec-07	31-Dec-08	1026890.59	=""	="QINETIQ LTD"	10-May-08 10:39 AM	

+="CN76777"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-10	750000.00	=""	="CASHS AUSTRALIA PTY LTD"	10-May-08 10:43 AM	

+="CN76809"	"RAAF BASE AMBERLEY ENGINEERING SERVICES PURCHASE OF ENERGEX ASSETS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	653549.14	=""	="AGL SALES (QLD)"	10-May-08 10:45 AM	

+="CN76825"	"S4945, WR 300044538, 300044539. HMAS Watson minor 5"	="Department of Defence"	10-May-08	="Fire prevention"	30-Nov-07	30-Jun-08	332021.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:46 AM	

+="CN76856"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	474790.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 10:48 AM	

+="CN76862"	"AIR CHTR OP ASTUTE ROCL"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	31-Mar-08	809700.00	=""	="STRATEGIC AVIATION - USD"	10-May-08 10:48 AM	

+="CN76884"	"POC: Mark McClure Contact: 02 6265 0420"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	20-Nov-10	1240305.00	=""	="RED HAT ASIA-PACIFIC PTY LTD"	10-May-08 10:49 AM	

+="CN76900"	"SN02730 - PM Fees - Install 4 additional workstati"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	9382336.57	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:50 AM	

+="CN76916"	"Reinstate safety fence & provide a sealed surface and new carpark"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	341819.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:51 AM	

+="CN76967"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	11-Dec-07	15-Dec-07	475000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76971"	"02-224081 31OCT07 LINE ITEMS 6666-6982"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Oct-07	30-Jun-08	837709.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:54 AM	

+="CN76988"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	22-Dec-08	330000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 11:41 AM	

+="CN76994"	"Asbestos Remeditaion"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Mar-08	404614.10	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:41 AM	

+="CN76996"	"Senior Medical Officer FY 07/08 - FY10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	992990.22	=""	="DARRELL J DUNCAN"	10-May-08 11:41 AM	

+="CN77006"	"hangar Works"	="Department of Defence"	10-May-08	="Transportation services equipment"	16-Jan-08	30-Jun-08	1068259.50	=""	="PA & CI MARTIN PTY LTD"	10-May-08 11:42 AM	

+="CN77008"	"Project Management Fees"	="Department of Defence"	10-May-08	="Transportation services equipment"	16-Jan-08	30-Jun-08	700590.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 11:42 AM	

+="CN77010"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	14-May-08	534160.00	=""	="ERNST & YOUNG CONSULTING"	10-May-08 11:42 AM	

+="CN77023"	"Standing Offer Number:  "SON97" STANDING ID:  2545"	="Department of Defence"	10-May-08	="Master control systems"	30-Jan-08	31-Jul-09	808000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 11:43 AM	

+="CN77036"	"Director Medical Services"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	855407.24	=""	="GEORGE BLACKWOOD"	10-May-08 11:43 AM	

+="CN77041"	"PROVISION OF MEDICAL SERVICES KESWICK BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	352000.00	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77043"	"PROVISION OF MEDICAL SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	348000.40	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77064"	"NQ1744 - Regional ESD Water Efficiency Project Imp"	="Department of Defence"	10-May-08	="Environmental management"	16-Jan-08	30-Jun-08	400000.00	=""	="SPOTLESS"	10-May-08 11:45 AM	

+="CN77074"	"Demountables"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	16-Jan-08	30-Jun-08	598125.00	=""	="EMAC SYSTEMS PTY LTD"	10-May-08 11:46 AM	

+="CN77077"	"MISSION SPECIFIC TRAINING SUPPORT"	="Department of Defence"	10-May-08	="Education and Training Services"	01-Feb-08	30-Jun-08	440000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 11:46 AM	

+="CN77078"	"MO-SMO LMA FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	803963.16	=""	="POWEL PROCIUK"	10-May-08 11:46 AM	

+="CN77081"	"Installation of Communications Infrastucture"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	04-Feb-08	20-Feb-08	334415.04	=""	="CLEAR LEAD PTY LTD"	10-May-08 11:46 AM	

+="CN77083"	"Training Area Road Repairs"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	567009.30	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:46 AM	

+="CN77087"	"Medical Officer FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	1282732.00	=""	="J STEPHENSON"	10-May-08 11:46 AM	

+="CN77096"	"WATSONIA: DEFENCE FORCE SCHOOL OF SIGNALS(DFSS). DSC-SKM."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-10	3396800.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 11:47 AM	

+="CN77156"	"POC: CHRIS MCCOLL CONTACT: 02 626 60001"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	30-Jun-08	355621.65	=""	="BOEING AUSTRALIA LTD"	10-May-08 11:51 AM	

+="CN77204"	"ADFA 62 & 63 LIA  CADET UPGRADE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Jan-08	30-Jun-08	4105530.01	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:54 AM	

+="CN77212"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	21-Jan-08	366432.00	=""	="ORACLE CORPORATION AUSTRALIA"	10-May-08 11:55 AM	

+="CN77225"	"MEDICAL SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	31-Dec-10	1183200.00	=""	="MICHAEL J STACEY"	10-May-08 11:56 AM	

+="CN77231"	"MEDICAL SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	31-Dec-10	1183200.00	=""	="MONEY"	10-May-08 11:56 AM	

+="CN77237"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Jun-08	320000.00	=""	="HAYS SPECIALIST RECRUITMENT"	10-May-08 11:56 AM	

+="CN77243"	"ENGINEER SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-09	5064690.00	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 11:57 AM	

+="CN77244"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	23-Jan-08	01-Feb-11	346964.64	=""	="KNEL GROUP PTY LTD"	10-May-08 11:57 AM	

+="CN77266"	"MEDICAL & DENTAL SERVICES CMC CDC"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	1961015.11	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77267"	"CONTACT: GREG REARDON 08 8935 4244."	="Department of Defence"	10-May-08	="Environmental Services"	21-Jan-08	30-Jun-08	847000.00	=""	="ASSET SERVICES"	10-May-08 11:58 AM	

+="CN77270"	"MEDICAL SERVICES RBMC"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	4818320.17	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77274"	"MEDICAL SERVICES MANUNDA WARD"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	3855295.40	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77278"	"MEDICAL & DENTAL SERVICES 1 BDE"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	11419626.89	=""	="NT MEDIC PTY LTD"	10-May-08 11:59 AM	

+="CN77279"	"Removal of unsued, unsafe & unapproved facilities at Fort Wallace"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	300000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:59 AM	

+="CN77288"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Utilities"	23-Jan-08	30-Jun-08	1700000.00	=""	="ACTEWAGL RETAIL LTD"	10-May-08 11:59 AM	

+="CN77290"	"AIR 8000 PHASE 3-HEAVY AIR LIFT(HAL) FACILITIES DESIGN SERVICES CONSULTANT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	334635.98	=""	="LAMBERT REHBEIN ACT PTY LTD"	10-May-08 11:59 AM	

+="CN77314"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	17-Jan-08	17-Jan-08	9799999.98	=""	="POWER AND WATER AUTHORITY"	10-May-08 12:01 PM	

+="CN77324"	"Medical Officer 2ATHS FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	1052808.90	=""	="VINCENT DUFFY & ASSOCIATES PTY LTD"	10-May-08 12:01 PM	

+="CN77330"	"Senior Dentist  FY 07/08 - FY10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	968165.46	=""	="DAVID M HARMATA"	10-May-08 12:02 PM	

+="CN77336"	"Aviation/GP Trainer FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	987008.35	=""	="G ABRAHAM PTY LTD"	10-May-08 12:02 PM	

+="CN77338"	"HEALTH SERVICE  FY 07/08 - 09/10"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	30-Jun-10	102553935.00	=""	="CHANDLER MACLEOD GROUP LTD"	10-May-08 12:02 PM	

+="CN77339"	"Director Medical Services FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	23-Jan-08	31-Dec-10	897280.32	=""	="CHIASMA HOLDINGS PTY LTD"	10-May-08 12:02 PM	

+="CN77340"	"Security Clearance Costs"	="Department of Defence"	10-May-08	="Security surveillance and detection"	17-Jan-08	30-Jun-08	435285.90	=""	="CAREERS MULTILIST LIMITED"	10-May-08 12:02 PM	

+="CN77353"	"SA2480 - Asbestos Removal - DSTO EDN Technical Authority: Fess Parker"	="Department of Defence"	10-May-08	="Environmental management"	22-Jan-08	30-Jun-08	361042.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:03 PM	

+="CN77371"	"PHARMACISTS & OTHER"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	1899579.01	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:04 PM	

+="CN77375"	"PHYSIO SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	4490530.98	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:04 PM	

+="CN77385"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	15-Apr-08	331860.54	=""	="KPMG"	10-May-08 12:05 PM	

+="CN77394"	"SN02523 - OJAG & AMC FITOUT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	2730200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:06 PM	

+="CN77403"	"Desktop PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	01-May-08	7641624.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77409"	"Professional Service and Tech Support"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	31-Jan-08	1308201.47	=""	="AVAYA AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77410"	"ENHANCED LANDFORCE-STAGE 1 GHD2 PMCA PACKAGE 2-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Jan-08	30-Jun-08	2125574.00	=""	="GHD PTY LTD"	10-May-08 12:07 PM	

+="CN77415"	"MEDICAL SERVICES 321"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	2963842.39	=""	="NT MEDIC PTY LTD"	10-May-08 12:07 PM	

+="CN77435"	"nt1676 REGIONAL BUSHFIRE RESPONSE"	="Department of Defence"	10-May-08	="Environmental control systems"	09-Jan-08	30-Jun-08	473890.00	=""	="ASSET SERVICES"	10-May-08 12:08 PM	

+="CN77444"	"NQ1721 - Lavarack Bks - CSI NQ - Surge Mess Refurb"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-08	1771601.01	=""	="SPOTLESS"	10-May-08 12:08 PM	

+="CN77446"	"SA2433 Reburbishment of LIA"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	25-Jan-08	30-Jun-08	1843609.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:08 PM	

+="CN77453"	"CTD Contract"	="Department of Defence"	10-May-08	="Military science and research"	25-Jan-08	03-Dec-09	1553200.00	=""	="THALES UNDERWATER SYSTEMS P/L"	10-May-08 12:09 PM	

+="CN77456"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Aug-09	1596512.50	=""	="COGNOS PTY LTD"	10-May-08 12:09 PM	

+="CN77476"	"WR 300076182, S5134. Capital component of Non sing of building 807 HMAS Kuttabul."	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Jan-08	30-Jun-08	357500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:10 PM	

+="CN77490-A1"	"AHS-NQ General Practitioner services"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	31-Dec-10	36649604.22	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 12:11 PM	

+="CN77527"	"CTD Contract"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	29-Jan-08	03-Sep-10	4527600.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	10-May-08 12:13 PM	

+="CN77532"	"ADVERTISING"	="Department of Defence"	10-May-08	="Photographic and recording media"	08-Jan-08	30-Jun-08	385000.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 12:13 PM	

+="CN77539"	"Hardware required for the gateways repair facility for disaster recovery."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	31-Jan-08	348831.84	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	10-May-08 12:14 PM	

+="CN77540"	"25 PERS HIRE (10 X VM'S, 5 X VI'S, 7 X RPS/STM, 3"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	483913.10	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77589"	"DEFENCE FACILITIES TRAINING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-09	1855987.10	=""	="FMEDGE"	10-May-08 12:16 PM	

+="CN77594"	"CONTACT: GEOFF MACKENZIE 08 8935 4619 WR: 150139277"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	24-Jan-08	30-Jun-08	403237.42	=""	="ASSET SERVICES"	10-May-08 12:17 PM	

+="CN77598"	"NQ2015 - Construction of a new Workshop Vehicle Store and Cylone Shelter"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	1080725.00	=""	="SPOTLESS"	10-May-08 12:17 PM	

+="CN77619"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CIVIL/STRUCTURAL DESIGN-DELIVERY PHASE FEES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	1307349.89	=""	="BONACCI GROUP (QLD) PTY LTD"	10-May-08 12:18 PM	

+="CN77620"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	01-Feb-11	968880.00	=""	="AUSTRALASIAN AEROMEDICAL"	10-May-08 12:18 PM	

+="CN77621"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE GCON-SECURITY & COMMUNICATIONS-DELIVERY PHASE SERV"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	405450.77	=""	="GCON SOLUTIONS PTY LTD"	10-May-08 12:18 PM	

+="CN77625"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CONRAD GARGETT(ARCHITECT)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	709872.87	=""	="CONRAD GARGETT ARCHITECTS"	10-May-08 12:18 PM	

+="CN77630"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	30-Jun-08	334999.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 12:19 PM	

+="CN77631"	"Surge Manning for 1 BDE, Robertson Barracks"	="Department of Defence"	10-May-08	="Motor vehicles"	24-Jan-08	31-Mar-08	383703.63	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:19 PM	

+="CN77632"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE MECH/ELEC/FIRE/ACOUSTIC DESIGN SERVICES-DELIVERY P"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-11	1075708.12	=""	="S2F PTY LTD"	10-May-08 12:19 PM	

+="CN77635"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CONRAD GARGETT(ARCHITECT)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-09	785251.17	=""	="CONRAD GARGETT ARCHITECTS"	10-May-08 12:19 PM	

+="CN77637"	"S5123, WR 300060653. HMAS Watson - Blgd 6 Non sing"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Jan-08	30-Jun-08	812623.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:19 PM	

+="CN77659"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE COST PLANNING/BOQ SERVICES-DELIVERY PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	968835.22	=""	="WILDE AND WOOLARD (QLD) PTY LTD"	10-May-08 12:20 PM	

+="CN77671"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 2/20 PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN V"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-11	2218138.10	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:21 PM	

+="CN77672"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	384453.30	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77674"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	366613.50	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77677"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/20 PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN V"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	31-Dec-08	652298.85	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:21 PM	

+="CN77688"	"HQJOC PROJECT-ADI LIMITED(THALES)-DESKTOPS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	2667886.10	=""	="THALES AUSTRALIA"	10-May-08 12:22 PM	

+="CN77695"	""DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/2"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	14-Jan-08	31-Dec-08	912469.46	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:22 PM	

+="CN77704"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	01-Jul-08	332750.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 12:23 PM	

+="CN77707"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/20"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-08	1474840.62	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:23 PM	

+="CN77709"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	28-Jun-08	300000.01	=""	="DAVID ARNOLD MCCANN"	10-May-08 12:23 PM	

+="CN77717"	"9.4Tesla Fourier Transform Ion Mass Spectrometer"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	10-Jan-08	30-Jun-09	1423643.48	=""	="BRUKER BIOSCIENCES PTY LIMITED"	10-May-08 12:23 PM	

+="CN77723"	"PROVISION OF GENERAL PRACTITIONER SERVICES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	10-Jan-08	31-Dec-10	748013.05	=""	="DR ANDREW JOHNSTON"	10-May-08 12:24 PM	

+="CN77726"	"ABU DHABI CHANCERY EXTENSION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-09	447120.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 12:24 PM	

+="CN77730"	"OP OUTREACH - POLICE COMPOUNDS - WARRUWI CMMTY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	361439.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77732"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	386805.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77736"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	404790.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77740"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	409223.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:25 PM	

+="CN77742"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	574421.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:25 PM	

+="CN77744"	"INTERNAL FIXTURE UPGRADE TO INFRASTRUCTURE UPGRADES TO MURRAY BARRACKS (PNG)"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	854385.00	=""	="LAE PLUMBING SERVICES LIMITED"	10-May-08 12:25 PM	

+="CN77767"	"CRMC PROJECT AND REFORM OF DFR REQUIREMENTS IDENTI IMPLEMENTATION PLAN OF THE NEW DFR AS SPECIFIED I"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Jun-08	19736925.99	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:26 PM	

+="CN77784"	"PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN VI CTORIA - DEFENCE FORCE HEALTH CENTRE MELBOURNE"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	14-Jan-08	30-Jun-11	704685.05	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:27 PM	

+="CN77790"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE HASSELL(ARCHITECT 1)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-11	1298097.34	=""	="HASSELL PTY LTD"	10-May-08 12:27 PM	

+="CN77798"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-10	740000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 12:28 PM	

+="CN77800"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES PM/CA AMBERLEY, C-17 INFRASTRUCTURE."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-10	1402500.00	=""	="CONNELL WAGNER PTY LTD"	10-May-08 12:28 PM	

+="CN77811"	"WR 300074542, S5113, FBE Hammer Head Crane - Works Deterioration"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Dec-07	30-Jun-08	1619092.78	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:29 PM	

+="CN77816"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	621579.63	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:29 PM	

+="CN77837"	"ENHANCED LANDFORCE-STAGE 1 GHD4 PMCA PACKAGE 4-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	2583108.00	=""	="GHD PTY LTD"	10-May-08 12:30 PM	

+="CN77858"	"RANDWICK REDEVELOPMENT PROJECT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	366105.76	=""	="GHD PTY LTD"	10-May-08 12:31 PM	

+="CN77889"	"PASSPORT SWITCH  CARDS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Apr-08	724976.02	=""	="WESTCON GROUP"	10-May-08 12:33 PM	

+="CN77908"	"Provide DRN Internet connection to LIA blocks at Singleton Military Area"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	905439.58	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:34 PM	

+="CN77941"	"Design and Construct a new facility at Singleton Military Area"	="Department of Defence"	10-May-08	="General building construction"	13-Dec-07	30-Jun-08	327267.32	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:36 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val30000to40000.xls
@@ -1,1 +1,363 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73916"	"Software for Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Software"	01-Feb-08	01-Feb-11	39600.00	=""	="Lex Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN74010"	"Develop rules for migration; thesaurus and administer international service standards for Core Business System"	="Austrade"	08-May-08	="Computer services"	03-Mar-08	30-Jun-08	33000.00	=""	="Information Solutions Pty Ltd"	08-May-08 12:28 PM	

+="CN74018"	"Tandberg Content Server - Recording Ports, Installation & Training"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	19-Mar-08	20-Mar-08	36553.00	=""	="Integrated Vision Pty Ltd"	08-May-08 12:30 PM	

+="CN74054"	"Fleet Management and Leasing Services (REf Standing Offer ID 12383)"	="Family Court of Australia"	08-May-08	="Vehicle leasing"	02-May-08	01-May-10	31972.51	=""	="LeasePlan"	08-May-08 02:26 PM	

+="CN74057"	"Return to Australia posting travel for Major Peter Scullard and family"	="Defence Materiel Organisation"	08-May-08	="Travel facilitation"	30-Mar-08	30-Mar-08	31986.00	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74095"	"Traffic Charges and access fees"	="National Archives of Australia"	08-May-08	="Data services"	01-Oct-07	31-Dec-07	30349.00	=""	="AARNET"	08-May-08 04:02 PM	

+="CN74100"	"Cannon Digital Micrographic"	="National Archives of Australia"	08-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	34883.20	=""	="Sydney Micro Pty Ltd"	08-May-08 04:03 PM	

+="CN73959"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Apr-08	30-Jun-08	30000.00	=""	="Ernst & Young"	08-May-08 04:11 PM	

+="CN74065"	"Newspapers"	="Australian Securities and Investments Commission"	08-May-08	="Printed media"	01-Jan-08	31-Dec-08	35000.00	=""	="Fairfax Media"	08-May-08 04:13 PM	

+="CN74117"	" TURBINE COMPRESSOR - REPAIR EXTERNAL (RIM)  NSN - 1660/661022102 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	30-Apr-08	32397.71	=""	="QANTAS AIRWAYS LTD"	08-May-08 04:20 PM	

+="CN74041"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	15-Nov-07	30-Jun-08	30000.00	=""	="Mr Alan MacSporran"	08-May-08 04:21 PM	

+="CN74147"	"Class B filing cabinets"	="National Health and Medical Research Council"	09-May-08	="Office Equipment and Accessories and Supplies"	21-Aug-07	28-Apr-08	38479.20	=""	="PLANEX SALES PTY. LTD."	09-May-08 08:37 AM	

+="CN74153"	" REPAIR ORDER PROPELLER, AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	25-Jan-08	30905.58	=""	="SAFE AIR LTD"	09-May-08 08:56 AM	

+="CN74155"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	09-May-08	="Medical health associations"	05-May-08	04-Jun-08	35463.10	=""	="SYMBION PHARMACY SERVICES"	09-May-08 09:02 AM	

+="CN74156"	" REPAIR ORDER PROPELLER AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	25-Jan-08	30905.58	=""	="SAFE AIR LTD"	09-May-08 09:12 AM	

+="CN74157"	" REPAIR ORDER PROPELLER, AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	26-Dec-07	30905.58	=""	="SAFE AIR LTD"	09-May-08 09:15 AM	

+="CN74161"	"SUBSCRIPTIONS MARCH 2008"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	03-Mar-08	31-Mar-09	30439.85	=""	="THOMSON LEGAL & REGULATORY"	09-May-08 09:29 AM	

+="CN74207"	"Supply of Power Supply Protection equipment"	="Department of Parliamentary Services"	09-May-08	="Uninterruptible power supplies"	02-May-08	30-May-08	31108.00	=""	="MGE-UPS Sytems Australia P/L"	09-May-08 11:20 AM	

+="CN74270"	"BARTLEYBLAKELEESLATER TKT: 08147026442510 R/N: Not Supplied EMIRATES ONO: 332281-21300 GWT: 0828-15040 - HAMISH AND ANDY TO AFGHANISTAN"	="Department of Defence"	09-May-08	="Aircraft"	16-Apr-08	16-Apr-08	31397.96	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74308"	"Print Production AAP 2002.001(AM1) Issue 1 x 466 copies (Variance of $180.00 + gst from previous approval - 2 additional proofs required due to authors corrections)"	="Department of Defence"	09-May-08	="Published Products"	28-Mar-08	28-Mar-08	30393.00	=""	="SNAP PRINTING LAVE"	09-May-08 11:56 AM	

+="CN74335"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	04-Apr-08	04-May-08	39450.00	=""	="ST JOHN OF GOD SU"	09-May-08 12:00 PM	

+="CN74411"	"Training & Education Costs"	="Department of Finance and Deregulation"	09-May-08	="Education and Training Services"	09-May-08	04-Jul-08	34000.00	=""	="THE LEADERSHIP CONSORTIUM"	09-May-08 02:25 PM	

+="CN74420-A1"	"Contract for the provisioin of Information Technology Services - Solution Architect"	="Australian Securities and Investments Commission"	09-May-08	="Information technology consultation services"	17-Apr-08	03-Jul-08	38016.00	=""	="Taylor Solutions Pty Ltd"	09-May-08 02:43 PM	

+="CN74437"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	06-Mar-08	35147.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 03:39 PM	

+="CN74439"	"Universal pulse generator"	="Department of Defence"	09-May-08	="Manufacturing Components and Supplies"	06-Mar-08	16-Apr-08	36092.10	=""	="NUCLETRON PTY LTD"	09-May-08 03:40 PM	

+="CN74442"	"3 x QUAD MOTORCYCLES - ROBERTSON BARRACKS RANGE CONTROL"	="Department of Defence"	09-May-08	="Motorised cycles"	06-Mar-08	30-Jun-08	36630.00	=""	="R & M MOTORCYCLES"	09-May-08 03:40 PM	

+="CN74445"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	07-Mar-08	37549.33	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 03:41 PM	

+="CN74458"	"Provision of clerical & admin support to DEWSAR Developmenty Team"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	06-Mar-08	30-May-08	33000.00	=""	="DAINTREE SYSTEMS PTY LTD"	09-May-08 03:43 PM	

+="CN74494"	"Stockhorses and Transport from Cairns to Darwin NORFORCE"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	05-Mar-08	16-Mar-08	37620.00	=""	="BLAZING SADDLES"	09-May-08 03:49 PM	

+="CN74512"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	30582.50	=""	="BAYLEY AND ASSOCIATES PTY LTD"	09-May-08 03:50 PM	

+="CN74514"	"OFFICE FUNRITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	18-Mar-08	14-Apr-08	37416.50	=""	="SWANBRITE PTY LTD"	09-May-08 03:50 PM	

+="CN74521"	"SME Deployable Communication Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	05-Mar-08	26-May-08	39184.20	=""	="EYLEX PTY LTD"	09-May-08 03:50 PM	

+="CN74542"	"ADVERTISING"	="Department of Defence"	09-May-08	="Advertising"	05-Mar-08	31-Oct-08	33440.64	=""	="HMA BLAZE PTY LTD"	09-May-08 03:51 PM	

+="CN74545"	"TELSTRA VIDCON LINE FEES"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	05-Mar-08	38500.00	=""	="TELSTRA CORPORATION (ACCOUNTS)"	09-May-08 03:51 PM	

+="CN74547"	"FRUIT AND VEGETABLES FOR RATIONS"	="Department of Defence"	09-May-08	="Fruits and vegetables and nuts and seeds"	18-Mar-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	09-May-08 03:51 PM	

+="CN74559"	"Contact: Peter Davey 02 6266 9212"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	08-Apr-08	37555.43	=""	="TENIX DATAGATE PTY LTD"	09-May-08 03:52 PM	

+="CN74571"	"DISK SHELF"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	30-Apr-08	38527.50	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	09-May-08 03:53 PM	

+="CN74584"	"TRAINING PROGRAM HYDROLOGISTS"	="Bureau of Meteorology"	09-May-08	="Education and Training Services"	08-May-08	08-May-08	30000.00	=""	="SINCLAIR KNIGHT MERZ"	09-May-08 03:53 PM	

+="CN74589"	"Disdrometer"	="Bureau of Meteorology"	09-May-08	="Measuring and observing and testing instruments"	08-May-08	16-Jun-08	34206.06	=""	="DISTROMET LTD"	09-May-08 03:53 PM	

+="CN74612"	"FURNITURE FOR SGT VIP ACCOMMODATION ROBERTSON BARRACKS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	30-Jun-08	32156.30	=""	="JAPE FURNISHING SUPERSTORE"	09-May-08 03:55 PM	

+="CN74615"	"ACMS JUNIOR DEVELOPER SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	39560.40	=""	="FOURAY PTY LTD"	09-May-08 03:55 PM	

+="CN74619"	"Ricoh secure Facsimile"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	31-Mar-08	39270.00	=""	="RICOH AUSTRALIA"	09-May-08 03:55 PM	

+="CN74636"	"NQ2081 - RAAF TOWNSVILLE BLD 291 COMMS CABINET CON"	="Department of Defence"	09-May-08	="Industrial optics"	11-Mar-08	30-Jun-08	33642.79	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	09-May-08 03:57 PM	

+="CN74641"	"SOFTWARE LICENCE"	="Department of Defence"	09-May-08	="Software"	25-Mar-08	12-Apr-08	30553.60	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	09-May-08 03:58 PM	

+="CN74662"	"POSTERS"	="Department of Defence"	09-May-08	="Paper Materials and Products"	11-Mar-08	30-Mar-08	33220.00	=""	="BLACKWELL MOUNTING & FRAMING"	09-May-08 04:00 PM	

+="CN74666"	"Calibrated & embedded measurements"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	11-Mar-08	30-Apr-08	31375.21	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	09-May-08 04:00 PM	

+="CN74672"	"Lexmark A4 Mono Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	31350.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:00 PM	

+="CN74673"	"Switches and Converters"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	08-Apr-08	31456.25	=""	="ASI SOLUTIONS"	09-May-08 04:00 PM	

+="CN74677"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	20-Mar-08	01-Jul-08	32600.00	=""	="COMCARE"	09-May-08 04:01 PM	

+="CN74695"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	19-Mar-08	30-Jun-09	39710.00	=""	="CONNELL WAGNER PTY LTD"	09-May-08 04:02 PM	

+="CN74713"	"Aircraft Technical Support"	="Department of Defence"	09-May-08	="Aircraft equipment"	11-Mar-08	30-Jun-08	34129.15	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	09-May-08 04:03 PM	

+="CN74716"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	01-Jul-08	38813.89	=""	="MINTER ELLISON"	09-May-08 04:03 PM	

+="CN74754"	"PROMOTIONAL PRODUCTS"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	20-Mar-08	14-May-08	38278.79	=""	="RANCCF SALT SHOP"	09-May-08 04:07 PM	

+="CN74777"	"VENUE HIRE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	11-Mar-08	30-Jun-08	33000.00	=""	="CLIFTONS OPERATIONS PTY LTD"	09-May-08 04:09 PM	

+="CN74788"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	30-Apr-08	36095.04	=""	="BOEING AUSTRALIA LIMITED"	09-May-08 04:09 PM	

+="CN74812"	"Multimode fibre cables and Media converters"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Mar-08	31-Mar-08	33253.66	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	09-May-08 04:11 PM	

+="CN74813"	"VEHICLE LEASE"	="Department of Defence"	09-May-08	="Motor vehicles"	11-Mar-08	30-Jun-08	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	09-May-08 04:11 PM	

+="CN74832"	"Mechanical Trades Person"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	31779.00	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	09-May-08 04:12 PM	

+="CN74840"	"Mechanical Trades Person"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	31015.60	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	09-May-08 04:13 PM	

+="CN74843"	"S5267, WR 300074261 - Pymble, WR 300074262 - Suthe Lancer. SC Region - Installation of rainwater tan"	="Department of Defence"	09-May-08	="Environmental control systems"	13-Mar-08	30-Jun-08	38115.38	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:13 PM	

+="CN74857"	"UNIQUE ONE-OFF PAYMENT FOR 3 YEARS MAINTENANCE OF DELL EQUIPMENT ISO DCC SUPPORT CONTRACT"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Mar-08	31-Mar-08	33000.00	=""	="AVAYA AUSTRALIA PTY LTD"	09-May-08 04:14 PM	

+="CN74860"	"POC: Geoffrey Abbott Contact: 02 6266 5774"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	14-Apr-08	38563.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	09-May-08 04:14 PM	

+="CN74863"	"VARIOUS FOOD ITEMS"	="Department of Defence"	09-May-08	="Packaged combination meals"	13-Mar-08	28-Mar-08	30411.38	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	09-May-08 04:14 PM	

+="CN74865"	"ACCOMMODATION"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	13-Mar-08	31-May-08	39600.00	=""	="CANBERRA REX HOTEL"	09-May-08 04:14 PM	

+="CN74885"	"SUPPLY AND INSTALL COMPACTUS TO CLOTHING STORE 2700X9000MM 3 BAY"	="Department of Defence"	09-May-08	="Containers and storage"	13-Mar-08	30-Jun-08	32978.00	=""	="DEXION NORTH QUEENSLAND"	09-May-08 04:15 PM	

+="CN74893"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	03-Mar-08	04-Aug-08	33138.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:16 PM	

+="CN74906"	"PUBLICATIONS"	="Department of Defence"	09-May-08	="Paper products"	12-Mar-08	30-Jun-08	31142.10	=""	="PIRION DIGITAL PTY LTD"	09-May-08 04:17 PM	

+="CN74913"	"RAAF RICHMOND REINVESTMENT PROJECT. LANDSCAPING WORK FOR TANKER PARKING AREA."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	03-Mar-08	30-Jun-08	35178.00	=""	="EMAVALE PTY LTD"	09-May-08 04:17 PM	

+="CN74915"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	03-Mar-08	31-Mar-08	31980.00	=""	="SAI GLOBAL LTD"	09-May-08 04:17 PM	

+="CN74916"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	25-Mar-08	31350.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:18 PM	

+="CN74925"	"Office supplies"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	32778.90	=""	="SUN MICROSYSTEMS"	09-May-08 04:18 PM	

+="CN74929"	"LEASE PAYMENTS"	="Department of Defence"	09-May-08	="Motor vehicles"	12-Mar-08	30-Jun-10	34638.90	=""	="LEASEPLAN AUSTRALIA LTD"	09-May-08 04:18 PM	

+="CN74932"	"OFFICE FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	03-Mar-08	17-Mar-08	32793.19	=""	="INTERWORX PTY LTD"	09-May-08 04:19 PM	

+="CN74941"	"DRN/DSN CABLING"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	12-Mar-08	30-Jun-08	33110.00	=""	="STOWE AUSTRALIA"	09-May-08 04:19 PM	

+="CN74944"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	30128.74	=""	="TOLL PRIORITY"	09-May-08 04:19 PM	

+="CN74956"	"Planned Preventative Service Programme for LEO FESEM and Oxford Inca System"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	29-Feb-08	29-Feb-08	31185.00	=""	="CARL ZEISS SYDNEY"	09-May-08 04:20 PM	

+="CN74957"	"BTT Task - ILS Professional Labour - 13 March 2008 up to and including 6 June"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	12-Mar-08	06-Jun-08	37225.00	=""	="DEAKIN UNI"	09-May-08 04:20 PM	

+="CN74967"	"POINT PERPENDICULAR LIGHTHOUSE RESTORATION PHASE ("	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	35596.00	=""	="ARCHITECTS EDMISTON JONES"	09-May-08 04:21 PM	

+="CN74969"	"POINT PERPENDICULAR LIGHTHOUSE RESTORATION PHASE ("	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	36784.00	=""	="ARCHITECTS EDMISTON JONES"	09-May-08 04:21 PM	

+="CN74997"	"POC:PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	39196.86	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:23 PM	

+="CN75008"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Apr-08	35679.00	=""	="MAC A&C PTY LTD"	09-May-08 04:23 PM	

+="CN75030"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	29-Feb-08	31-Dec-08	32818.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:25 PM	

+="CN75034"	"THE SUPPORT FOR THE OLD SOFTWARE IS BEING PHASED OUT."	="Department of Defence"	09-May-08	="Locks and security hardware and accessories"	29-Feb-08	01-May-08	30210.00	=""	="CIC SECURE PTY LTD"	09-May-08 04:25 PM	

+="CN75038"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	05-Jun-08	31291.80	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:25 PM	

+="CN75044"	"MAYTAG WASHING MACHINES"	="Department of Defence"	09-May-08	="Cleaning Equipment and Supplies"	04-Mar-08	01-Apr-08	35842.38	=""	="RICHARD JAY LAUNDRY EQUIPMENT PTY L"	09-May-08 04:26 PM	

+="CN75045"	"Software Upgrade"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	17-Mar-08	31-Mar-08	30204.90	=""	="ACTIVE VOICE LLC"	09-May-08 04:26 PM	

+="CN75048"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Mar-08	38802.71	=""	="ASI SOLUTIONS"	09-May-08 04:26 PM	

+="CN75056"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	31-Jul-08	33862.00	=""	="QUALITY MANAGEMENT SOLUTIONS"	09-May-08 04:26 PM	

+="CN75064"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Mar-08	35053.92	=""	="BLANCHARD PERFORMANCE MANAGEMENT"	09-May-08 04:27 PM	

+="CN75102"	"INSTALL PIPE UP ONE CORNER OF 10 STOREY FIRING POI"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	05-Mar-08	30-Jun-08	40000.00	=""	="MULTITECH ENGINEERING"	09-May-08 04:30 PM	

+="CN75113"	"GRAD DEV PROGRAM TRG"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	32930.37	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:31 PM	

+="CN75130"	"S5231, WR Rockdale - 300074194, Banksmeadow - 3000 300074196. Consultancy to determine requirements"	="Department of Defence"	09-May-08	="Environmental control systems"	14-Mar-08	30-Jun-08	38115.38	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:32 PM	

+="CN75155"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	18-Mar-08	35078.74	=""	="ASI SOLUTIONS"	09-May-08 04:33 PM	

+="CN75157"	"PSP SERVICES 02 62650232"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-Jun-08	38718.90	=""	="REMOTE PTY LTD"	09-May-08 04:33 PM	

+="CN75161"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	20-Feb-09	33000.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	09-May-08 04:34 PM	

+="CN75169"	"Professional Services"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	30-May-08	39706.48	=""	="ARTHUR CARDRICK (FARNBOROUGH) LTD"	09-May-08 04:34 PM	

+="CN75171"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	32680.00	=""	="JACOBS AUSTRALIA"	09-May-08 04:34 PM	

+="CN75180"	"VENDOR HAS INVOICED DFR LATE FOR WORK CARRIEED OUT YEAR. EXISTING P/O WBS HAS EXPIRED - APPROVED TO"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	30-Jun-08	32066.36	=""	="GEORGE PATTERSON Y & R"	09-May-08 04:35 PM	

+="CN75188"	"6 x Hallam Cabinets - ICT"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	14-Mar-08	30-Jun-08	34001.96	=""	="MM ELECTRICAL MERCHANDING"	09-May-08 04:36 PM	

+="CN75202"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	18-Mar-08	31951.10	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:37 PM	

+="CN75232"	"UPDATE AMBERLEY BASE PLAN INCLUDING GSS GROUNDS MAINTENANCE OVERLAYS"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	04-Mar-08	30-Jun-08	34980.00	=""	="SKM"	09-May-08 04:39 PM	

+="CN75240"	"DISPOSAL OF GUNGHALIN ACT-SITE AUDITOR."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	34012.00	=""	="GHD PTY LTD"	09-May-08 04:40 PM	

+="CN75269"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	09-May-08	="Paper Materials and Products"	18-Mar-08	16-Apr-08	32657.63	=""	="GLAMA PAK PTY LTD"	09-May-08 04:42 PM	

+="CN75285"	"Labour Hire - 4th quarter"	="Department of Defence"	09-May-08	="Manufacturing support services"	18-Mar-08	30-Jun-08	39000.01	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:43 PM	

+="CN75302"	"SUPPORT FINANCE EVALUATION OF RFT"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	13-Feb-08	16-Nov-08	32960.40	=""	="GROSVENOR MANAGEMENT CONSULTING"	09-May-08 04:44 PM	

+="CN75305"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	05-May-08	35767.88	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	09-May-08 04:44 PM	

+="CN75315"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	09-May-08	="Paper Materials and Products"	18-Mar-08	22-Apr-08	34688.50	=""	="CENTRE STATE PRINTING"	09-May-08 04:44 PM	

+="CN75326"	"shelving"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	18-Mar-08	18-Apr-08	35645.50	=""	="CAM SHELVING OFFICE INTERIORS"	09-May-08 04:45 PM	

+="CN75329"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Feb-08	03-Mar-08	36212.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:46 PM	

+="CN75330"	"GYM EQUIPMENT"	="Department of Defence"	09-May-08	="Gymnastics and boxing equipment"	19-Mar-08	05-May-08	30046.50	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	09-May-08 04:46 PM	

+="CN75332"	"Cisco equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	25-Mar-08	33894.12	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	09-May-08 04:46 PM	

+="CN75334"	"AERONAUTICAL ENGINEER"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	18-Mar-08	30-Jun-08	33000.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	09-May-08 04:46 PM	

+="CN75348"	"Contract: File 2008-1020636 refers"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	18-Mar-08	30-Jun-08	38500.00	=""	="AEROSPACE CONCEPTS PTY LTD"	09-May-08 04:47 PM	

+="CN75355"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	11-Feb-08	30-Jun-08	30600.31	=""	="IN RENT"	09-May-08 04:47 PM	

+="CN75361"	"MOVEMENT OF CONTROLLED WASTE NATIONAL ENVIRONMENTA INVESTIGATIONS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	31240.00	=""	="ENSR AUSTRALIA PTY LIMITED"	09-May-08 04:48 PM	

+="CN75363"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	30000.00	=""	="CAPITAL RECRUITMENT SERVICES"	09-May-08 04:48 PM	

+="CN75394"	"C6 MULTI SENSOR PLATFORM"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Feb-08	17-Mar-08	30701.00	=""	="AQUALAB SCIENTIFIC PTY LTD"	09-May-08 04:50 PM	

+="CN75396"	"labour hire"	="Department of Defence"	09-May-08	="Manufacturing support services"	11-Feb-08	30-Jun-08	35200.00	=""	="DRAKE INTERNATIONAL"	09-May-08 04:50 PM	

+="CN75403"	"This Contract is placed under the Terms and Condit 4500509192"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	30-Jun-08	36298.90	=""	="NGA.NET PTY LTD"	09-May-08 04:51 PM	

+="CN75412"	"dsto equipment"	="Department of Defence"	09-May-08	="Aircraft"	11-Feb-08	01-Mar-08	36087.04	=""	="SUNDANCE ASIA LTD"	09-May-08 04:51 PM	

+="CN75425"	"ACOUSTICS DETECTION TRIAL - ST LEONRDS VIC AUV"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	15-Feb-08	29-Feb-08	38183.20	=""	="AEROSONDE PTY LTD"	09-May-08 04:52 PM	

+="CN75439"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	38407.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:54 PM	

+="CN75463"	"UB-5815 2 screen electronic whiteboard for different locations across Australia"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	15-Feb-08	30-Jun-08	34512.10	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	09-May-08 04:56 PM	

+="CN75481"	"TESTER/DEVELOPER CBLP FOR TTC-D SYDNEY"	="Department of Defence"	09-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	37125.00	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	09-May-08 04:58 PM	

+="CN75508"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	31152.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:34 AM	

+="CN75514"	"Install DSN Desktop Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	17-Mar-08	32307.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 08:35 AM	

+="CN75528"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	01-Jun-08	34000.00	=""	="SIRSIDYNIX PTY LTD"	10-May-08 08:36 AM	

+="CN75546"	"STK/INTEGRATION RENEWAL ANNULA SUPPORT - DONGLE STK PROFESSIONAL EDITION RENEWAL ANNUAL SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	22-Feb-08	30936.40	=""	="AUSPACE LIMITED"	10-May-08 08:38 AM	

+="CN75568"	"CONTRACT NO: CSI-SC06/2005 MEAT RATIONS"	="Department of Defence"	10-May-08	="Meat and poultry"	06-Feb-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	10-May-08 08:40 AM	

+="CN75571"	"CONTRACT NO: CSI-SC05/2005 FRUITS AND VEGETABLES RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	06-Feb-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	10-May-08 08:41 AM	

+="CN75586"	"COMPLEX PROCUREMENT TRAINING-IAD BRANCH."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	33308.00	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 08:42 AM	

+="CN75589"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	31650.00	=""	="CLAYTON UTZ"	10-May-08 08:42 AM	

+="CN75598"	"Allowances for trainers"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Feb-08	15-Feb-08	37458.40	=""	="THE UNITED KINGDOM HYDROGRAPHIC OFF"	10-May-08 08:43 AM	

+="CN75599"	"Software Maintenance"	="Department of Defence"	10-May-08	="Software"	04-Feb-08	15-Feb-08	31680.00	=""	="OPEN SYSTEMS PTY LTD"	10-May-08 08:43 AM	

+="CN75610"	"Computer Products"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	32214.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 08:45 AM	

+="CN75613"	"VTC CAPABILITY IS REQUIRED TO SUSTAIN THE DEAKIN VNOC HELPDESK & CONCIERGE SERVICES IAW THE DSVE"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	05-Feb-08	30-Apr-08	34369.31	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 08:45 AM	

+="CN75635"	"POSTGRADUATE SCHOLARSHIP RESEARCH AGREEMENT IN CONJUNCTION WITH pROF. LAKHMI"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Feb-08	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	10-May-08 08:47 AM	

+="CN75640"	"Office supplies"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	29-Feb-08	36367.10	=""	="ASI SOLUTIONS"	10-May-08 08:47 AM	

+="CN75651"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	08-Feb-08	35666.40	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:48 AM	

+="CN75658"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	33000.00	=""	="ROUNA MACNIVEN"	10-May-08 08:49 AM	

+="CN75680"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	25-Feb-08	31372.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:51 AM	

+="CN75682"	"NQ2081 - HSPO Comms Room - Kenny Street High Secur"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	30-Jun-08	34089.00	=""	="CHUBB ELECTRONIC SECURITY"	10-May-08 08:52 AM	

+="CN75685"	"HACTS Accreditation - Phase 1 Scoping for 78/81WG"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	07-Feb-08	30-Jun-08	37136.40	=""	="MILSKIL PTY LTD"	10-May-08 08:52 AM	

+="CN75707"	"CUSTOM 17" NOTEBOOK BUNDLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	07-Mar-08	31702.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:54 AM	

+="CN75709"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	07-Feb-08	29-Feb-08	37092.07	=""	="SLEEP CITY PENRITH"	10-May-08 08:54 AM	

+="CN75711"	"sra groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	07-Feb-08	30-Jun-08	33000.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 08:54 AM	

+="CN75753"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	25-Feb-08	30-Jun-08	34210.00	=""	="DUPLICATE - USE V ENDOR 1050211"	10-May-08 08:58 AM	

+="CN75759"	"PSAV WORKS A10 CABARLAH"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	25-Feb-08	30-Jun-08	30653.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75760"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	31-Mar-08	32763.17	=""	="IDP EDUCATION AUSTRALIA"	10-May-08 08:59 AM	

+="CN75776"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	07-Mar-08	33440.00	=""	="S-3 CONSULTING PTY LTD"	10-May-08 09:01 AM	

+="CN75785"	"DATE LEARNING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	33660.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 09:02 AM	

+="CN75791"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	06-Mar-08	30000.01	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 09:02 AM	

+="CN75792"	"NAVY CHARTS X 25"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Feb-08	26-Mar-08	31958.30	=""	="GLAMA PAK PTY LTD"	10-May-08 09:02 AM	

+="CN75794"	"Training Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	30-Apr-08	37139.26	=""	="COMPUTING SERVICES"	10-May-08 09:02 AM	

+="CN75809"	"PSP Contractor - Trg Coord"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	33770.25	=""	="HAYS PERSONNEL SERVICES"	10-May-08 09:04 AM	

+="CN75811"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	34543.47	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:04 AM	

+="CN75814"	"ASI Engineering Sevices"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	32346.16	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75824"	"FBT INTERIM REVIEW"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	15-Jun-08	38247.00	=""	="ERNST & YOUNG CONSULTING"	10-May-08 09:05 AM	

+="CN75835"	"NDT Engineering"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	37180.25	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:06 AM	

+="CN75836"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	36519.38	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:06 AM	

+="CN75873"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	34186.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:10 AM	

+="CN75876"	"UPGRADE ARCVIEW LICENCES"	="Department of Defence"	10-May-08	="Software"	28-Feb-08	20-Mar-08	37576.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:10 AM	

+="CN75891"	"GROCERIES"	="Department of Defence"	10-May-08	="Meat and poultry products"	26-Feb-08	31-Mar-08	35753.60	=""	="BID VEST BURLEIGH MARR"	10-May-08 09:12 AM	

+="CN75897"	"ONLINE TRAINING DEVELOPMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	16-Jun-08	35005.00	=""	="CATALYST INTERACTIVE"	10-May-08 09:12 AM	

+="CN75902"	"NQ2085 - Frontline Canteen Refurbishment (Building"	="Department of Defence"	10-May-08	="Project management"	26-Feb-08	30-Jun-08	31680.00	=""	="JON KUSKOPF & ASSOCIATES PTY LTD"	10-May-08 09:13 AM	

+="CN75903"	"SN02586 - RMC & HARMAN -Provision of Voice Cabling between SSDS Buildings"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	35000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:13 AM	

+="CN75926"	"COMPLEX PROCUREMENT COURSE"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	30-May-08	31733.21	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:15 AM	

+="CN75940"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	36646.83	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:17 AM	

+="CN75941"	"PROCUREMENT REFERENCE: 1018/07-08 KOBRA HIGH VOLUME INDUSTRIAL SHREDDER"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	18-Feb-08	07-Mar-08	32015.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 09:17 AM	

+="CN75951"	"SPECTRAA - 55B ATOMIC ABSORPTION SPECTRO METER STAND ALONE SYSTEM"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Feb-08	18-Apr-08	33078.10	=""	="VARIAN AUSTRALIA PTY LTD"	10-May-08 09:18 AM	

+="CN75952"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	29-Feb-08	31064.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 09:18 AM	

+="CN75958"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-Jun-08	36484.61	=""	="BOEING AUSTRALIA LTD"	10-May-08 09:18 AM	

+="CN75981"	"Dell Poweredge server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	07-Mar-08	30798.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:20 AM	

+="CN75997"	"Manufacture housing"	="Department of Defence"	10-May-08	="Fabricated structural assemblies"	16-Nov-07	02-Jan-08	30214.80	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 09:58 AM	

+="CN76012"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	39751.00	=""	="MINTER ELLISON"	10-May-08 09:59 AM	

+="CN76027"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76031"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	31659.10	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76035"	"Web Development Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	30-Aug-08	30744.65	=""	="INFOFOCUS AUSTRALIA"	10-May-08 10:00 AM	

+="CN76057"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Mar-08	38255.80	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:02 AM	

+="CN76066"	"Complex Procurement 0708-187 under Standing Service Category:Level 2,  Aeronautical Engineer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-Nov-07	30-Jun-08	32972.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:02 AM	

+="CN76067"	"FP&E Related Latent Conditions Western Region"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	17-Jan-08	30-Jun-08	33301.51	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76074"	"IP GATEWAY ALLOWS FOR THE DSVE TO INTERCONNECT TO IP & ISDN VIDEO CONFERENCES."	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	21-Nov-07	30-Jun-08	37715.44	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76077"	"Develop and Certify DSTO IT Security Architecture for SCIS"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	26-Jun-08	34100.00	=""	="KAZ GROUP PTY LTD"	10-May-08 10:03 AM	

+="CN76078"	"HIRE OF DEMOUNTABLE BUILDING IN SUPPORT OF RTF4 (O BASE GALLIPOLI BARRACKS ENOGGERA, DEC 07 - APR 08"	="Department of Defence"	10-May-08	="Prefabricated structures"	21-Nov-07	01-Apr-08	37451.96	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:03 AM	

+="CN76112"	"ENHANCED LANDFORCE-STAGE 1 MCGRATH NICOL"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	26-Nov-07	30-Jun-08	38500.00	=""	="MCGRATH NICOL"	10-May-08 10:05 AM	

+="CN76133"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Apr-08	30-Dec-08	33000.00	=""	="LACEY PERSONNEL CONSULTING"	10-May-08 10:06 AM	

+="CN76140"	"CONTACT: S. CAUSER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	02-Jan-08	31213.57	=""	="SUN MICROSYSTEMS"	10-May-08 10:06 AM	

+="CN76143"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	31968.20	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:06 AM	

+="CN76165"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	30-Jun-08	39560.50	=""	="MINTER ELLISON"	10-May-08 10:07 AM	

+="CN76167"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Nov-07	34748.93	=""	="SUN MICROSYSTEMS AUST PTY LTD"	10-May-08 10:08 AM	

+="CN76179"	"TABLES"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jun-08	30272.00	=""	="EASTERN COMMERCIAL FURNITURE PTY"	10-May-08 10:08 AM	

+="CN76190"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	39999.99	=""	="BRODTMANN COMMUNICATIONS"	10-May-08 10:09 AM	

+="CN76198"	"CULTANA TRAINING AREA EXPANSION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	33000.00	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:09 AM	

+="CN76212"	"WATER & SEWER RATES"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	11-Feb-08	30-Jun-08	33880.45	=""	="SYDNEY WATER CORPORATION"	10-May-08 10:10 AM	

+="CN76236"	"HQJOC PROJECT - GHD PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	32890.00	=""	="GHD PTY LTD"	10-May-08 10:11 AM	

+="CN76243"	"OFFICE ROTARY CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Nov-07	14-Dec-07	39303.00	=""	="STURDY FRAMAC"	10-May-08 10:12 AM	

+="CN76260"	"Consultancies for developing projects for Defence Support Central & Northern NSW"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Dec-06	30-Jun-08	38248.30	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:13 AM	

+="CN76308"	"Haz Sub Management Review-HMAS Mermaid, Benalla Haz Sub Risk Assessment-HMAS Newcastle"	="Department of Defence"	10-May-08	="Personal safety and protection"	12-Nov-07	30-Jun-08	32388.38	=""	="COAST TO COAST SAFETY SOLUTIONS"	10-May-08 10:15 AM	

+="CN76332"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	16-Apr-08	33440.00	=""	="ROYAL AUST COLLEGE OF SURGEONS"	10-May-08 10:17 AM	

+="CN76350"	"Woomera Stage 3 Remediation and Validation Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Sep-07	30-Jun-08	37353.80	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:18 AM	

+="CN76379"	"MCD TG QANTAS Invoice 30NOV07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	35464.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76395"	"QANTAS PAYMENT FOR 4 FD REGT"	="Department of Defence"	10-May-08	="Powered fixed wing aircraft"	30-Nov-07	21-Jan-08	37276.88	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:20 AM	

+="CN76412"	"GAS REQUIREMENTS FOR FY 07/08"	="Department of Defence"	10-May-08	="Elements and gases"	23-Apr-08	30-Jun-08	38500.00	=""	="BOC LIMITED"	10-May-08 10:21 AM	

+="CN76416"	"OP FREIGHT AND CARTAGE 2OCU"	="Department of Defence"	10-May-08	="Transportation services equipment"	04-Jul-07	30-Jun-08	33000.00	=""	="STAR TRACK EXPRESS"	10-May-08 10:22 AM	

+="CN76420"	"Vacation Care"	="Department of Defence"	10-May-08	="Office supplies"	14-Apr-08	30-Jun-08	31000.00	=""	="YMCA OF CANBERRA"	10-May-08 10:22 AM	

+="CN76442"	"SHORT TERM VEHICLE HIRE FLLA K"	="Department of Defence"	10-May-08	="Motor vehicles"	24-Dec-07	26-Dec-07	35201.14	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76443"	"LIF PROJECT MAINTENANCE & REPAIR FOR ARISINGS 29-2  & FUTURE ARISINGS DURING TEST RUNNING PH"	="Department of Defence"	10-May-08	="Aircraft"	30-Jun-08	30-Jun-08	38500.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:23 AM	

+="CN76472"	"AIR FARES"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	21-Dec-07	33906.54	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:25 AM	

+="CN76485"	"VEHICLE HIRE NOVEMBER 2007"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	24-Nov-07	15-Jan-08	32389.15	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:26 AM	

+="CN76486"	"AIR MOVT OP CATALYST"	="Department of Defence"	10-May-08	="Aircraft"	29-Nov-07	31-Dec-07	39053.56	=""	="ALLTRANS INTERNATIONAL"	10-May-08 10:26 AM	

+="CN76533"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Dec-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:28 AM	

+="CN76539"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Jan-08	04-Feb-08	39503.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76557"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	30-Jun-08	37370.00	=""	="MINTER ELLISON"	10-May-08 10:30 AM	

+="CN76561"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	39712.20	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76612"	"AIR FORCE GRADUATE OFFICER PUBLIC RELATIONS PROGRA"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Nov-07	30-Jun-08	33264.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 10:33 AM	

+="CN76622"	"CATALYST 3750 24 10/100/1000 4 SFP ENH CD MULTIPLA MULTIPLAYER CISCO STACK WISE STACKING CABLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Nov-07	32709.75	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 10:34 AM	

+="CN76625"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2400878"	="Department of Defence"	10-May-08	="Legal services"	29-Mar-07	22-Jan-08	32608.40	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:34 AM	

+="CN76647"	"RANDHAWA KITTU DUMMY PAYMENT"	="Department of Defence"	10-May-08	="Legal services"	31-Jul-06	23-Jan-08	37455.51	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:36 AM	

+="CN76649"	"TAXI FARES"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	07-Jan-08	39265.34	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:36 AM	

+="CN76650"	"ADDITIONAL CONPUTATIONAL NODES TO EXPAND EXISTING  COMPUTER CLUSTER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	11-Feb-08	31768.00	=""	="ALEXANDER TECHNOLOGY"	10-May-08 10:36 AM	

+="CN76653"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	31250.93	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76654"	"S4930, WR 300026038, Upgrade existing security cam more effective coverage of entry points, perimete"	="Department of Defence"	10-May-08	="Security and control equipment"	28-Nov-07	30-Jun-08	35750.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:36 AM	

+="CN76657"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	21-Jan-08	32793.78	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76661"	"QANTAS ACCOUNT"	="Department of Defence"	10-May-08	="Transportation services equipment"	19-Dec-07	31-Dec-07	31549.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76667"	"ARTC DECEMBER 2007 CABCHARGE STATEMENT"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	22-Jan-08	35644.25	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:37 AM	

+="CN76670"	"MAWS HIL Truthing System Study"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	29-Feb-08	33010.56	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 10:37 AM	

+="CN76677"	"To transport periscope to HMAS STIRLING from Adela"	="Department of Defence"	10-May-08	="General building construction"	22-Dec-07	17-Dec-08	30918.25	=""	="TNT EXPRESS"	10-May-08 10:37 AM	

+="CN76683"	"TIMOR TELECOM"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	29-Jan-08	29-Jan-08	35902.93	=""	="TIMOR TELECOM"	10-May-08 10:38 AM	

+="CN76706"	"TECHNICAL REPORT & SIMULATION SOFTWARE (MATLAB)"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	03-Dec-07	31-Dec-07	39600.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 10:39 AM	

+="CN76709"	"US LANDING FEES - TALISMAN SABRE 2007"	="Department of Defence"	10-May-08	="Aircraft"	20-Dec-07	30-Jun-10	30826.65	=""	="ROCKHAMPTON CITY COUNCIL"	10-May-08 10:39 AM	

+="CN76718"	"ENGINEERING SERVICES"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	21-Dec-07	33715.00	=""	="TAYCOR INTERNATIONAL PTY LTD"	10-May-08 10:40 AM	

+="CN76727"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	32725.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:40 AM	

+="CN76739"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	31548.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76743"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	33000.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76750"	"02-231353 31AUG07 LINE ITEMS 4572 - 4593"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	32172.84	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:41 AM	

+="CN76757"	"CONTACT PAUL MEULENBROEK 08 8935 4622 WR: 150134134"	="Department of Defence"	10-May-08	="Power generation"	04-Dec-07	30-Jun-08	31700.00	=""	="PDL TOLL"	10-May-08 10:42 AM	

+="CN76761"	"Design of the Training & Education Standards officer Course TMP"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Dec-07	27-Jun-08	32679.90	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:42 AM	

+="CN76775"	"LCR Meter"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Dec-07	18-Dec-07	32719.56	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 10:43 AM	

+="CN76799"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	04-Dec-07	30-Jun-08	31399.34	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:44 AM	

+="CN76801"	"Consultancy for the drawings and specifications for the FIMA and FLSE buildings at HMAS Cairns"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	30-Nov-07	30-Jun-08	37400.00	=""	="SPOTLESS"	10-May-08 10:44 AM	

+="CN76808"	"AFPO 12 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	31145.89	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76815"	"IVS ANNUAL MAINTENANCE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	31-Dec-07	31658.00	=""	="ACOUSTIC IMAGING"	10-May-08 10:45 AM	

+="CN76819"	"blade controllers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	33723.80	=""	="IBM AUSTRALIA LTD"	10-May-08 10:45 AM	

+="CN76832"	"QANTAS BILL"	="Department of Defence"	10-May-08	="Recreational aircraft"	29-Oct-07	30-Nov-07	36288.43	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76837"	"CAB FARES"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Oct-07	15-Oct-07	39756.29	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:46 AM	

+="CN76840"	"FORKLIFT TRUCK TCM MODEL FG25T3 DUAL FUEL"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	30-Nov-07	30-Jan-08	30520.60	=""	="N T P FORKLIFTS PTY LTD"	10-May-08 10:46 AM	

+="CN76842"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Nov-07	30-Jun-08	39600.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:47 AM	

+="CN76858"	"SN02730 - - Install 4 additional workstati"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	30630.60	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:48 AM	

+="CN76868"	"POC: James Ahern PHONE: 02 6265 0962"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	31246.60	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76872"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	31-Dec-07	34673.12	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:49 AM	

+="CN76878"	"Marine Seismic Reflection Profilinng Survey"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	03-Dec-07	21-Dec-07	39050.00	=""	="GOLDER ASSOCIATES PTY LTD"	10-May-08 10:49 AM	

+="CN76886"	"Oversea Travel in support of LAND17PH1"	="Department of Defence"	10-May-08	="Domestic appliances"	30-Nov-07	10-Dec-07	37330.07	=""	="RAYTHEON COMPANY"	10-May-08 10:49 AM	

+="CN76902"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	07-Dec-07	38500.00	=""	="INNOVATION TECHNOLOGY SERVICES"	10-May-08 10:50 AM	

+="CN76913"	"PROTOTYPE MWD MODULE FITTED TO TOYOTA R07001"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	16-Nov-07	28-Dec-07	37950.00	=""	="IB SUPPLIES PTY LTD"	10-May-08 10:51 AM	

+="CN76918"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	22-Nov-07	33133.07	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:51 AM	

+="CN76934"	"APPSENSE MANAGEMENT SUITE & SOFTWARE"	="Department of Defence"	10-May-08	="Software"	21-Nov-07	23-Nov-07	39168.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:52 AM	

+="CN76940"	"LIVERPOOL MILITARY AREA HIGH VOLTAGE ELECTRICAL DI UPGRADE"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	22-Nov-07	30-Jun-08	37840.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:53 AM	

+="CN76945"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76952"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	14-Dec-07	34771.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:53 AM	

+="CN76953"	"Support RSAF Deployment 01-08 Oct 07"	="Department of Defence"	10-May-08	="Aircraft"	08-Nov-07	30-Jun-08	30447.87	=""	="DEFENCE SUPPORT CENTRE WOOMERA (DSC"	10-May-08 10:53 AM	

+="CN77012"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO TO PROVIDE A HERITAGE IMPACT ASSESSMENT REPOR"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	33000.00	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 11:42 AM	

+="CN77013"	"373 NVIS FACILITY UPGRADE"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jan-08	30-Jun-08	34569.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 11:42 AM	

+="CN77054"	"STEP ATTENUATOR FPR PSG ANALOG ANALOG SIGNAL GENERATOR , PULSE MODULATION OPTION FOR PSG SIGNAL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	19-Feb-08	33169.41	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:44 AM	

+="CN77065"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	37876.41	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:45 AM	

+="CN77071"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN POINT COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36510.62	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 11:45 AM	

+="CN77073"	"PROVISION OF AGL CABLE-AIRFIELD LIGHTING MAINTENAN COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36104.75	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	10-May-08 11:45 AM	

+="CN77075"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE FUEL FARM DESIGN-DELIVERY PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36360.50	=""	="MOORE CONSULTING & ENGINEERING"	10-May-08 11:46 AM	

+="CN77080"	"PROFESSIONAL SERVICES PROVIDER - CONTRACTOR"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	16-Jan-08	30-Jun-08	33000.00	=""	="AERO SUPPORT GROUP PTY LTD"	10-May-08 11:46 AM	

+="CN77089"	"Additional warehousing labour costs to support CMSS vehicles."	="Department of Defence"	10-May-08	="Transport operations"	15-Jan-08	19-Dec-08	33352.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 11:47 AM	

+="CN77091"	"400 batteries to support PDETS at DIDS sites nationally."	="Department of Defence"	10-May-08	="Electrical components"	15-Jan-08	28-Feb-08	30360.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:47 AM	

+="CN77100"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	04-Feb-08	29-May-08	34000.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 11:47 AM	

+="CN77103"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	15-Jan-08	15-Feb-08	38276.70	=""	="PETTARAS PRESS PTY LTD"	10-May-08 11:48 AM	

+="CN77106"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	22-Feb-08	33772.86	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77107"	"VEHICLE LEASE"	="Department of Defence"	10-May-08	="Motor vehicles"	15-Jan-08	15-Jan-08	39265.09	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:48 AM	

+="CN77109"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	15-Feb-08	37154.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:48 AM	

+="CN77123"	"Transport of cargo Darwin - Bulman - ISO OP Outrea"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	34658.11	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77132"	"Security Locks"	="Department of Defence"	10-May-08	="Containers and storage"	31-Jan-08	05-Mar-08	30662.94	=""	="ARCHITECTURAL HARDWARE"	10-May-08 11:50 AM	

+="CN77143"	"Supply & Install Keywatch Management System"	="Department of Defence"	10-May-08	="Security and control equipment"	31-Jan-08	14-Feb-08	30910.00	=""	="KEYWATCH SYSTEMS QUEENSLAND"	10-May-08 11:51 AM	

+="CN77146"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	16-Jan-08	30-Jun-08	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:51 AM	

+="CN77166"	"Technical equipment"	="Department of Defence"	10-May-08	="Forensic equipment and supplies and accessories"	16-Jan-08	31-Jan-08	32631.45	=""	="TEEL INC"	10-May-08 11:52 AM	

+="CN77171"	"S5180, WR 300069263. Sydney Central Infrastructure Technical Services Aspects. Carry out IA investig"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	32872.13	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 11:52 AM	

+="CN77191"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	30-Mar-08	34146.56	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:54 AM	

+="CN77199"	"Seminar"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Feb-08	29-Feb-08	35471.00	=""	="ANU - FINANCE & BUSINESS SERVICES"	10-May-08 11:54 AM	

+="CN77205"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. ENGAGE BAULDERSTONE HORNIBROOK AS MANAGING CONTRAC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	33000.00	=""	="A W BAULDERSTONE HOLDINGS PTY LTD"	10-May-08 11:54 AM	

+="CN77206"	"ADVERTISING EXPENSES (WILL APPEAR IN 7 ADITIONS OF NEWSPAPERS."	="Department of Defence"	10-May-08	="Advertising"	21-Jan-08	21-Jan-08	33000.00	=""	="HMA BLAZE PTY LTD"	10-May-08 11:54 AM	

+="CN77215"	"Laser stinger II arm system"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	38016.00	=""	="SCANNING & INSPECTION PTY LTD"	10-May-08 11:55 AM	

+="CN77216"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	33880.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77226"	"Giles Uni Scholarship"	="Department of Defence"	10-May-08	="Market research"	31-Jan-08	04-Feb-08	34000.00	=""	="UNI OF ADELAIDE - STUDENT"	10-May-08 11:56 AM	

+="CN77238"	"QSA Global Sources"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	28-Apr-08	32958.82	=""	="AUSTRALIAN RADIATION SERVICES PTY L"	10-May-08 11:56 AM	

+="CN77254"	"Establish Chem Alert Stock Management module"	="Department of Defence"	10-May-08	="Plastic and chemical industries"	23-Jan-08	28-Feb-08	32450.00	=""	="RISK MANAGEMENT TECHNOLOGIES"	10-May-08 11:57 AM	

+="CN77257"	"AS PER QUOTE DATED 6 DEC 07 ATT SONIA FURNITURE FOR SGT MESS RAAF DARWIN"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	29-Feb-08	30795.06	=""	="JAPE FURNISHING SUPERSTORE"	10-May-08 11:57 AM	

+="CN77269"	"Supply of Comms cabinets for Bldg upgrade at Amb."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	34991.03	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 11:58 AM	

+="CN77285"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77286"	"RECUITMENT NON ONGOING APS3 POSITION"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	30-Jan-09	37488.58	=""	="CAREERS MULTILIST LIMITED"	10-May-08 11:59 AM	

+="CN77289"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	34496.00	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77293"	"Studies supporting Defence logistics"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	23-Jan-08	31-Mar-08	38500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 12:00 PM	

+="CN77337"	"OMNI ANTENNA  WITH AUDIO / TRANSMITTER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Jan-08	30-Jan-08	35891.99	=""	="LINCAST AUSTRALIA"	10-May-08 12:02 PM	

+="CN77343"	"Headset"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	14-Mar-08	30072.90	=""	="VR SOLUTIONS PTY LTD"	10-May-08 12:03 PM	

+="CN77345"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Jan-08	31-Dec-08	40000.00	=""	="AUSTRALIAN MILITARY HISTORY"	10-May-08 12:03 PM	

+="CN77355"	"COMPUTER TRAINING FOR ARTC RECRUITS"	="Department of Defence"	10-May-08	="Vocational training"	22-Jan-08	31-Dec-08	36630.00	=""	="CLASS TRAINING"	10-May-08 12:03 PM	

+="CN77378"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77379"	"HSM - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	39864.00	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:05 PM	

+="CN77382"	"HIRE OF STAFF IAW DRAKE STANDING OFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	31857.10	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77386"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77391"	"Provision of Support to Assist in Stocktake"	="Department of Defence"	10-May-08	="Business administration services"	22-Jan-08	30-Apr-08	31697.70	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 12:06 PM	

+="CN77399"	"Delivery of Dental Training"	="Department of Defence"	10-May-08	="Dental equipment and supplies"	22-Jan-08	02-Feb-09	39600.00	=""	="DEPARTMENT OF EMPLOYMENT & TRAINING"	10-May-08 12:06 PM	

+="CN77401"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	28-Feb-08	36520.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 12:06 PM	

+="CN77437"	"sra groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	10-Jan-08	30-Jun-08	35200.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 12:08 PM	

+="CN77460"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	33516.47	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:09 PM	

+="CN77469"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Jan-08	25-Jan-08	38765.95	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	10-May-08 12:10 PM	

+="CN77472"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	32078.64	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:10 PM	

+="CN77478"	"DELL MONITORS & DELL FLATSCREEN PANEL MONITOR"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	17-Jan-08	31669.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:10 PM	

+="CN77482"	"GS TVL STH - GYM 307-07/08"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Jan-08	01-Feb-08	31928.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:11 PM	

+="CN77493"	"Environmental Clearance EDN Pks - Stages5, 8, 10 Technical Authority: Mark Donaghey"	="Department of Defence"	10-May-08	="Environmental Services"	10-Jan-08	30-Jun-08	33132.11	=""	="PARSONS BRINCKERHOFF"	10-May-08 12:11 PM	

+="CN77513"	"Admin support."	="Department of Defence"	10-May-08	="Temporary personnel services"	29-Jan-08	27-Jun-08	31539.75	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	10-May-08 12:12 PM	

+="CN77517"	"SPONSORSHIP FAMILY DAY CARE"	="Department of Defence"	10-May-08	="Education and Training Services"	29-Jan-08	29-Jan-08	31388.50	=""	="PORT STEPHENS COUNCIL"	10-May-08 12:12 PM	

+="CN77519"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	26-Jan-08	28-Apr-08	31530.08	=""	="SME GATEWAY LIMITED"	10-May-08 12:13 PM	

+="CN77523"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	29-Jan-08	23-Mar-08	39977.31	=""	="CRAFT INPRINT GROUP"	10-May-08 12:13 PM	

+="CN77524"	"SUPPLY LPG GAS BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Heating and ventilation and air circulation"	08-Jan-08	30-Jun-08	33000.00	=""	="ORIGIN ENERGY"	10-May-08 12:13 PM	

+="CN77535"	"AXIEM-PF 3D PLANAR ELECTROMAGNETIC SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	31-Jan-08	32109.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 12:13 PM	

+="CN77536"	"ADMINSTRATIVE SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	35939.90	=""	="TOP OFFICE PERSONNEL PTY LTD"	10-May-08 12:13 PM	

+="CN77541"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	06-Feb-08	33508.57	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:14 PM	

+="CN77554"	"WEST HEAD GUNNERY RANGE:REDEVELOPMENT SPARKE HELMORE PROBITY ADVICE DELIVERY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	33550.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:14 PM	

+="CN77565"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	01-Feb-08	39108.30	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:15 PM	

+="CN77570"	"WA991914 - WRE - OHS RISK MITIGATION (MEDIUM LEVEL) - FY 07/08"	="Department of Defence"	10-May-08	="Personal safety and protection"	09-Jan-08	30-Jun-08	36300.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 12:15 PM	

+="CN77588"	"TSS Contract Analysis of Experiments in HARC Proj"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	24-Jan-08	28-Mar-08	33000.00	=""	="UNIQUEST PTY LTD"	10-May-08 12:16 PM	

+="CN77602"	"PADLOCKS & KEYS"	="Department of Defence"	10-May-08	="Locks and security hardware and accessories"	25-Jan-08	29-Feb-08	34911.25	=""	="API SECURITY PTY LTD"	10-May-08 12:17 PM	

+="CN77604"	"SUN ULTRA 45 WORKSTATION - SOLARIS PRE INSTALLED INTERNAL 250GB 7200RPM SERIEL ATA HARD DISK"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Jan-08	38762.50	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:17 PM	

+="CN77611"	"SN02578 - 270170787 & 270166642 - Fit out for R8-G"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	09-Jan-08	30-Jun-08	35200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:18 PM	

+="CN77616"	"ADVERTISING"	="Department of Defence"	10-May-08	="Office supplies"	25-Jan-08	30-Jun-08	32801.24	=""	="UNIVERSAL MCCANN"	10-May-08 12:18 PM	

+="CN77648"	"Cabinets"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	24-Jan-08	12-Mar-08	34050.20	=""	="M F B PRODUCTS PTY LTD"	10-May-08 12:20 PM	

+="CN77663"	"HP LAPTOP COMPUTERS (20)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	08-Feb-08	35662.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:21 PM	

+="CN77673"	"SUN V490 SERVER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	38613.30	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77675"	"Navigation System"	="Department of Defence"	10-May-08	="Location and navigation systems and components"	15-Jan-08	15-Feb-08	32237.70	=""	="DAVIDSON MEASUREMENT"	10-May-08 12:21 PM	

+="CN77720"	"Ongoing Maintenance of the AT-MURLIN"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	29-May-08	33000.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 12:24 PM	

+="CN77721"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	10-Jan-08	10-Jan-08	32748.10	=""	="PARAGON PRINTERS"	10-May-08 12:24 PM	

+="CN77737"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	38392.84	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 12:24 PM	

+="CN77761"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Dec-07	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 12:26 PM	

+="CN77769"	"VARIOUS FURNITURE FOR FURNITURE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	15-Jan-08	37201.73	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:26 PM	

+="CN77787"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	35860.00	=""	="MERCER (AUSTRALIA) PTY LTD"	10-May-08 12:27 PM	

+="CN77789"	"VARIOUS FURNITURE FOR FURNITUE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	20-Dec-07	30778.00	=""	="STRATEGIC STORAGE SOLUTIONS"	10-May-08 12:27 PM	

+="CN77813"	"Spacial Allocation Surveys"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	33000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:29 PM	

+="CN77819"	"SPARES 08/257"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	11-Dec-07	31-Jan-08	38323.23	=""	="GILBARCO AUSTRALIA LIMITED"	10-May-08 12:29 PM	

+="CN77832"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77834"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77869"	"INSTALLAION OF COMPS EQUIPMENT"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Dec-07	31-Jan-08	36031.09	=""	="NSC CARRIER TECHNOLOGIES PTY LTD"	10-May-08 12:32 PM	

+="CN77875"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	37121.74	=""	="INSITEC"	10-May-08 12:32 PM	

+="CN77878"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	33880.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:32 PM	

+="CN77883"	"Labour Hire"	="Department of Defence"	10-May-08	="Manufacturing support services"	13-Dec-07	31-Mar-08	33171.44	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:33 PM	

+="CN77892"	"S5180, WR's 300051674, 300051676, 300071218, 30007 Sydney Central Physical Infrastructure Appra"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	39664.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:33 PM	

+="CN77894"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	13-Mar-08	33876.70	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77895"	"CISCO Switches"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	13-Dec-07	14-Dec-07	34487.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77901"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	13-Dec-07	31-Jan-08	36893.98	=""	="ABLE OFFICE FURNITURE PTY LTD"	10-May-08 12:34 PM	

+="CN77912"	"NET ACCESS BDSL SYMMETRICAL"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	29-Feb-08	39600.00	=""	="OPTUS INTERNET"	10-May-08 12:34 PM	

+="CN77913"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Dec-07	30-Jun-09	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:34 PM	

+="CN77926"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	38720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:35 PM	

+="CN77940"	"Quest 1541 Data Aquisition and Processing"	="Department of Defence"	10-May-08	="Software"	30-Jan-08	31-Mar-08	33705.34	=""	="COMPUQUEST INC"	10-May-08 12:36 PM	

+="CN77950"	"KOBRA 400HS ENERGY SMART HD SCEC ENDORSED A CLASS PAPER SHREDDER"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	30-Jan-08	04-Feb-08	30954.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 12:36 PM	

+="CN77962"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	28-Feb-08	31900.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 12:37 PM	

+="CN77982"	"CONCRETE SLAB FOR VAULT AREA at RAAF WILLIAMS POIN Contact for RAAF - WGCDR Bob Coopes"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	31-Jan-08	35695.00	=""	="PMP BITUMEN"	10-May-08 12:38 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val40000to80000.xls
@@ -1,1 +1,781 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73909"	"Review of Australian Freight Councils"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Printed media"	17-Jan-08	30-Apr-08	55000.00	=""	="JOHN BOWDLER & ASSOC PTY LTD"	08-May-08 08:52 AM	

+="CN73917"	"Provision of legal services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Legal services"	15-Feb-08	20-Jun-08	70000.01	=""	="Philippa May Horner"	08-May-08 08:53 AM	

+="CN73921"	"HR Payroll Disbursement and Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Software"	01-Apr-08	30-Jun-08	60244.80	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	08-May-08 08:53 AM	

+="CN73934"	"Expert Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Security and personal safety"	16-Apr-08	30-Jun-08	47575.00	=""	="CHANGEDRIVERS"	08-May-08 08:55 AM	

+="CN73938"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	21-Apr-08	17-Oct-08	52552.50	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:55 AM	

+="CN73939"	"Provision of a Professional Development Tool"	="Child Support Agency"	08-May-08	="Educational facilities"	01-May-08	01-Jun-09	73018.00	=""	="SHL Australia Pty Ltd"	08-May-08 09:17 AM	

+="CN73941-A2"	"Provision of cleaning services at the Wallsend and Charlestown premises of CRS Australia."	="CRS Australia"	08-May-08	="General building and office cleaning and maintenance services"	01-Dec-06	30-Nov-09	45628.45	=""	="C & L Scowen Pty Ltd t/a Daisybee Services"	08-May-08 09:47 AM	

+="CN73942"	" LABEL TO SPEC AD370, FULLY FUNCTIONAL, SMALL PRE PRINTED, QUANTITY 3500 PACKS. "	="Defence Materiel Organisation"	08-May-08	="Self adhesive labels"	07-May-08	30-May-08	69300.00	="2680043"	="PROMARK PTY LTD"	08-May-08 09:49 AM	

+="CN73945"	"ASIC software licence review - IT consultancy."	="Australian Securities and Investments Commission"	08-May-08	="Information technology consultation services"	11-Apr-08	06-Jun-08	52800.00	=""	="Oakton Services P/L"	08-May-08 10:05 AM	

+="CN73952-A1"	" SPACER, BONDED  NSN - 5365/008580766 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Mar-08	09-Jan-09	58940.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:36 AM	

+="CN73980"	" REPAIR ORDER  UNIT ASSY, REDUCTION - EXTERNAL RIM   NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	26-Mar-08	24-Jun-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:16 AM	

+="CN73983"	" REPAIR ORDER  COMPRESSOR ASSEMBLY - EXTERNAL (RIM)  NSN - 1680/011015499 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	26-Mar-08	24-Jun-08	72611.30	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:21 AM	

+="CN73986"	" REPAIR ORDER UNIT ASSY, REDUCTION - EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	29-Apr-08	28-Jul-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:31 AM	

+="CN73988"	" REPAIR ORDER COMPRESSOR ASSEMBLY - EXTERNAL (RIM)  NSN - 1680/011015499 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Apr-08	27-Jul-08	72611.30	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:37 AM	

+="CN73994"	"Provision for legal services"	="Comsuper"	08-May-08	="Legal services"	01-Mar-08	30-Jun-08	70000.00	=""	="Australian Government Solicitors"	08-May-08 11:45 AM	

+="CN73997"	" REPAIR ORDER UNIT ASSY, REDUCTION - REPAIR EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	28-Apr-08	27-Jul-08	58985.25	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:51 AM	

+="CN74001"	" REPAIR ORDER UNIT ASSY, REDUCTION - EXTERNAL (RIM)  NSN - 2840/002250950 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	11-Mar-08	10-Apr-08	61842.96	=""	="Qantas Defence Services PTY LTD"	08-May-08 11:56 AM	

+="CN74012"	"Property Lease - Newcastle Office"	="Austrade"	08-May-08	="Real estate services"	01-Sep-07	31-Aug-11	51321.60	=""	="NSW Department of State & Regional Development"	08-May-08 12:29 PM	

+="CN74014"	"Provide installation, maintenance, enhancement, support & documentation for systems & services"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	27-Jun-08	43400.00	=""	="GMT Canberra Pty Ltd"	08-May-08 12:29 PM	

+="CN74016"	"McAfee Total Protection Gold Support"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	31-Mar-08	30-Mar-09	45248.01	=""	="Data#3 Limited"	08-May-08 12:29 PM	

+="CN74021"	" Upgrade of internal computer network "	="Office of the Inspector-General of Intelligence and Security"	08-May-08	="Fixed network equipment and components"	01-Apr-08	30-Apr-08	58295.94	=""	="Department of Defence"	08-May-08 12:56 PM	

+="CN74042-A1"	"08/2666 - Relocate and Installation Connection - 0859-1284 - IT Security Services Panel - 05/0859"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	10-Apr-08	30-Jun-08	62700.00	="05/0859"	="Cybertrust Australia Pty Ltd"	08-May-08 01:55 PM	

+="CN74050-A1"	"08/2595 - Technical Writer - 0717-0875 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	07-Apr-08	06-Aug-08	50000.00	=""	="Frontier Group Australia Pty Ltd"	08-May-08 02:21 PM	

+="CN74052-A1"	"08/2690 - Specialist Services - 0717-0881 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	01-Apr-08	30-Jun-08	62400.00	="05/0717"	="Inforail Pty Ltd"	08-May-08 02:24 PM	

+="CN73898"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	06-Aug-07	31-Dec-07	64680.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:54 PM	

+="CN73995-A1"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	13-Feb-08	30-Jun-08	61875.00	=""	="Greythorn Pty Ltd"	08-May-08 03:24 PM	

+="CN74084"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	08-May-08	="Vehicle leasing"	21-Apr-08	20-Apr-10	41794.63	=""	="LeasePlan"	08-May-08 03:32 PM	

+="CN74085"	"Science Exhibits"	="Questacon"	08-May-08	="Exhibitions"	28-Apr-08	30-Sep-08	79330.00	=""	="Exploratorium"	08-May-08 03:32 PM	

+="CN74087"	"Installation Set Stowage - M113"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	67256.20	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:35 PM	

+="CN74097"	"Temp Labour"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	49500.00	=""	="Vedior Asia Pacific Pty Ltd"	08-May-08 04:03 PM	

+="CN74102"	"Contract software tester"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	12-May-08	30-Jun-09	50000.00	=""	="Frontiergroup Australia Pty Ltd"	08-May-08 04:03 PM	

+="CN74104"	"Temporary labour"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	50000.00	=""	="Drake Australia Pty  Ltd"	08-May-08 04:04 PM	

+="CN74105"	"Data Entry Operators"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	17-Apr-06	30-Jun-08	61600.00	=""	="KEY PEOPLE"	08-May-08 04:04 PM	

+="CN74110"	"Light Fitting Replacement"	="National Archives of Australia"	08-May-08	="Building construction and support and maintenance and repair services"	28-Apr-08	05-Jun-08	42751.50	=""	="MSP Electrical"	08-May-08 04:04 PM	

+="CN73971"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	10-Jan-08	30-Jun-08	43540.00	=""	="McGrath Nicol"	08-May-08 04:07 PM	

+="CN74118-A3"	" Lease at Cherbourg, QLD "	="Department of Human Services"	08-May-08	="Lease and rental of property or building"	01-Aug-08	31-Jul-12	44720.54	=""	="Cherbourg Aboriginal Shire Council"	08-May-08 04:24 PM	

+="CN74145"	"Bibliometric study from ANU"	="National Health and Medical Research Council"	09-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Jun-08	78182.00	=""	="AUST NAT UNI - CTR CONTINUING EDUC"	09-May-08 08:36 AM	

+="CN74162"	"SUBSCRIPTIONS APRIL 2008"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	01-Apr-08	30-Apr-09	41485.08	=""	="THOMSON LEGAL & REGULATORY"	09-May-08 09:29 AM	

+="CN74166"	"AIRFARES APRIL 08"	="Administrative Appeals Tribunal"	09-May-08	="Passenger transport"	28-Apr-08	30-Apr-08	43006.45	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	09-May-08 09:29 AM	

+="CN74184"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	06-Aug-07	29-Feb-08	79200.00	=""	="Ambit Group Pty Limited"	09-May-08 10:34 AM	

+="CN74185-A2"	"Provision for Specialist IT Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	29-Jan-08	30-Jun-08	42075.00	=""	="Ambit Group Pty Limited"	09-May-08 10:37 AM	

+="CN73951-A2"	"Insolvency administration"	="Australian Securities and Investments Commission"	09-May-08	="Accounting services"	01-Dec-07	31-Mar-08	48000.00	=""	="Grant Thornton Services"	09-May-08 10:43 AM	

+="CN74198"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	14-Mar-07	30-Jun-07	65065.00	=""	="Ambit Group Pty Limited"	09-May-08 11:02 AM	

+="CN74208"	"Supply of elevating work platform"	="Department of Parliamentary Services"	09-May-08	="Elevating platform vehicles or scissor lifts"	01-May-08	30-May-08	46788.50	=""	="Force Access Pty Ltd"	09-May-08 11:20 AM	

+="CN74220"	"Supply of computer aided transcription equipment"	="Department of Parliamentary Services"	09-May-08	="Stenotype machines"	15-Apr-08	31-May-08	49619.90	=""	="Right Touch Stenographic Services"	09-May-08 11:21 AM	

+="CN74334"	"Curtains for Tin City"	="Department of Defence"	09-May-08	="Window treatments"	08-Apr-08	08-Apr-08	48814.56	=""	="SPOTLIGHT 057"	09-May-08 12:00 PM	

+="CN74345"	"15/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	10-Apr-08	30-Apr-08	45893.61	=""	="GREENSLOPES PRIV H"	09-May-08 12:02 PM	

+="CN74364"	"EX CDS 08/38 SQN ACCOMMODATION AT HOTEL LA PROMENADE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	14-Apr-08	63246.62	=""	="SAS STAV II"	09-May-08 12:04 PM	

+="CN74378"	"Production of Declaration Vote Envelopes"	="Australian Electoral Commission"	09-May-08	="Specialty envelopes"	27-Feb-04	30-Jun-08	58300.00	=""	="Camerons Envelopes"	09-May-08 12:08 PM	

+="CN74386"	"Counsel fees"	="Australian Securities and Investments Commission"	09-May-08	="Legal services"	05-Nov-07	30-Jun-09	80000.00	=""	="John V. Gooley"	09-May-08 01:49 PM	

+="CN74410"	"Training & Education Costs"	="Department of Finance and Deregulation"	09-May-08	="Education and Training Services"	06-May-08	27-Jun-08	59500.00	=""	="THE LEADERSHIP CONSORTIUM"	09-May-08 02:25 PM	

+="CN74416"	"Consultancy Costs"	="Department of Finance and Deregulation"	09-May-08	="Management and Business Professionals and Administrative Services"	09-May-08	28-Feb-09	69500.00	="SON144"	="BLAKE DAWSON - ACT"	09-May-08 02:26 PM	

+="CN74169-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	58806.00	=""	="Ross Human Directions Limited"	09-May-08 02:57 PM	

+="CN74435"	"INTRUSION PROVENTION APPLIANCE"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	31-Mar-08	50167.99	=""	="IBM AUSTRALIA LTD"	09-May-08 03:39 PM	

+="CN74438"	"FURNITURE 1 BRIGADE - ROBERTSON BARRACKS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	30-Jun-08	54318.00	=""	="CAM SHELVING OFFICE INTERIORS"	09-May-08 03:40 PM	

+="CN74440"	"Maintenance Renewal Network VirusWall enforcer 2500"	="Department of Defence"	09-May-08	="Software"	06-Mar-08	14-Mar-08	40291.15	=""	="TREND MICRO AUSTRALIA PTY LTD"	09-May-08 03:40 PM	

+="CN74443"	"CABLE ACCESS AND TRAINING FOR DSTO"	="Department of Defence"	09-May-08	="Software"	06-Mar-08	06-Mar-08	55730.77	=""	="VPISYSTEMS PTE LTD"	09-May-08 03:40 PM	

+="CN74448"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	80000.00	=""	="SELECT ACCOUNTANCY"	09-May-08 03:41 PM	

+="CN74450"	"HQJOC PROJECT-THALES-KILOMUX."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	44275.00	=""	="THALES AUSTRALIA"	09-May-08 03:41 PM	

+="CN74456"	"PROVISION OF SOPVET PROJECT MANAGER"	="Department of Defence"	09-May-08	="Software"	03-Mar-08	30-Jun-08	44000.00	=""	="SMS CONSULTING GROUP LIMITED"	09-May-08 03:43 PM	

+="CN74459"	"POC:  BRADLEY HANSEN CONTACT:  02 626 50969"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	30-Jun-08	69679.50	=""	="INQUIRION PTY LTD"	09-May-08 03:43 PM	

+="CN74461"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	60331.62	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:43 PM	

+="CN74463"	"Training Courses"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Mar-08	31-Mar-08	55000.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	09-May-08 03:44 PM	

+="CN74465"	"Computer equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	49170.00	=""	="ITE AUSTRALIA PTY LTD"	09-May-08 03:44 PM	

+="CN74481"	"TENT, QTY 126"	="Department of Defence"	09-May-08	="Camping and outdoor equipment and accessories"	07-Mar-08	07-Mar-08	60845.40	=""	="OZTRAIL PTY LTD"	09-May-08 03:47 PM	

+="CN74483"	"NQ1804 - Pollution Prevention & Contamination"	="Department of Defence"	09-May-08	="Environmental control systems"	07-Mar-08	30-Jun-08	50568.10	=""	="EARTH TECH ENGINEERING PTY LTD"	09-May-08 03:47 PM	

+="CN74484"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	30-Jun-08	63251.10	=""	="BRUEL AND KJAER AUST PTY LTD"	09-May-08 03:47 PM	

+="CN74486"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	61514.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:48 PM	

+="CN74488"	"HMAS ALBATROSS REDEVELOPMENT STAGE 3. BLAKE DAWSON PROBITY SERVICES FOR HMAS ALBATROSS S"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	05-Mar-08	30-Jun-10	42484.30	=""	="BLAKE DAWSON WALDRON"	09-May-08 03:48 PM	

+="CN74491"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	21-Apr-08	30-Apr-08	66522.32	=""	="Nextgen Networks P/L"	09-May-08 03:48 PM	

+="CN74495"	"ADOS System Development Plan"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-May-08	66000.00	=""	="Aviation Data Systems(Aust) Pty Ltd"	09-May-08 03:49 PM	

+="CN74496"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	05-Mar-08	20-Mar-08	66246.49	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:49 PM	

+="CN74498"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	05-Mar-08	20-Mar-08	68612.43	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:49 PM	

+="CN74500"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	05-Mar-08	20-Mar-08	40221.08	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:49 PM	

+="CN74508"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	30-Jun-08	64636.86	=""	="SUN MICROSYSTEMS"	09-May-08 03:50 PM	

+="CN74518"	"681910 (NT1989) RAAF Tindal 75 SQN Upggrade Oxygen Maintenance Facility Airconditioning."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	05-Mar-08	30-Jun-08	60500.00	=""	="ASSET SERVICES"	09-May-08 03:50 PM	

+="CN74531"	"Job Ads - Hydrology campaign"	="Bureau of Meteorology"	09-May-08	="Marketing and distribution"	06-May-08	31-May-08	50994.24	=""	="HMA BLAZE PTY LTD"	09-May-08 03:50 PM	

+="CN74544"	"TEMPORARY STAFF"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	18-Mar-08	42750.00	=""	="LYNN FARKAS INFORMATION"	09-May-08 03:51 PM	

+="CN74549"	"Hydrological Electronic Equipment"	="Bureau of Meteorology"	09-May-08	="Electrical equipment and components and supplies"	28-Apr-08	12-May-08	60693.60	=""	="Elpro Technologies Pty Ltd"	09-May-08 03:51 PM	

+="CN74550"	"MEAT FOR RATIONS"	="Department of Defence"	09-May-08	="Meat and poultry products"	18-Mar-08	30-Jun-08	60000.00	=""	="TOP CUT SYDNEY PTY LTD"	09-May-08 03:51 PM	

+="CN74551"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	31-Mar-08	70000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	09-May-08 03:51 PM	

+="CN74553"	"SYSTEM UPGRADE"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	31-Aug-08	66000.00	=""	="THINKEVANS PTY LTD"	09-May-08 03:51 PM	

+="CN74561"	"CONTRACTOR SERVICES -  SOFTWARE DEVELOPMENT"	="Bureau of Meteorology"	09-May-08	="Computer services"	29-Apr-08	07-Aug-08	44000.00	=""	="Hays Specialist Recruitment"	09-May-08 03:52 PM	

+="CN74567"	"Power Meters (Qty 6)"	="Bureau of Meteorology"	09-May-08	="Electrical equipment and components and supplies"	05-May-08	27-Jun-08	48284.67	=""	="TRIO Smartcal Pty Ltd"	09-May-08 03:52 PM	

+="CN74573"	"Red Hat operating system licences."	="Bureau of Meteorology"	09-May-08	="Computer services"	05-May-08	12-May-08	46861.10	=""	="RED HAT ASIA-PACIFIC PTY LTD"	09-May-08 03:53 PM	

+="CN74578"	"OPERATIONAL SERVERS"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	07-May-08	15-May-08	70809.20	=""	="Dell Australia  Pty Ltd"	09-May-08 03:53 PM	

+="CN74580"	"Computer equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	04-Apr-08	54549.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	09-May-08 03:53 PM	

+="CN74582"	"LCD Monitors"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	31-Mar-08	49445.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 03:53 PM	

+="CN74600"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	27-Mar-08	64837.30	=""	="IKEN COMMERCIAL INTERIORS (NSW)"	09-May-08 03:54 PM	

+="CN74601"	"POC: Kyla Arentz Contact: 02 6265 0195"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	18-Apr-08	47506.80	=""	="EFFECTIVE NEGOTIATION SERVICES"	09-May-08 03:54 PM	

+="CN74602"	"ARMOURED FIGHTING VEHICLE FIELD FIRING TRAINING SI"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	44618.20	=""	="PARSONS BRINCKERHOFF"	09-May-08 03:54 PM	

+="CN74606"	"security advice contract."	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	06-Mar-08	30-Jun-08	49250.87	=""	="JACOBS AUSTRALIA"	09-May-08 03:54 PM	

+="CN74607"	"ACMS ASSISTANT ARCHITECTURE SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	78408.00	=""	="PAXUS AUSTRALIA PTY LTD"	09-May-08 03:54 PM	

+="CN74608"	"UPGRADE OF CAROUSELS 8 AT JLU(SQ) AMBERLEY"	="Department of Defence"	09-May-08	="Storage"	06-Mar-08	30-Jun-08	43395.00	=""	="KARDEX VCA PTY LTD"	09-May-08 03:55 PM	

+="CN74609"	"ACMS SENIOR DEVELOPER SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	73612.00	=""	="TARAKAN CONSULTING PTY LTD"	09-May-08 03:55 PM	

+="CN74613"	"ACMS SENIOR DEVELOPER SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	71280.00	=""	="TARAKAN CONSULTING PTY LTD"	09-May-08 03:55 PM	

+="CN74616"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	06-Mar-08	31-Mar-08	49360.30	=""	="RMIT TRAINING CELL"	09-May-08 03:55 PM	

+="CN74621"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	58093.20	=""	="COSGRIFF LOGISTIC SERVICES PTY LTD"	09-May-08 03:55 PM	

+="CN74622"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Mar-08	30-Jun-08	79200.00	=""	="CHANGEDRIVERS PTY LTD"	09-May-08 03:56 PM	

+="CN74623"	"Office Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	20-Mar-08	30-Apr-08	43802.55	=""	="IKEN COMMERCIAL INTERIORS (ACT)"	09-May-08 03:56 PM	

+="CN74624"	"REMOVAL OF ASBESTOS BLDG G32, GALLIPOLI BKS"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	11-Mar-08	28-Apr-08	54861.99	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 03:56 PM	

+="CN74628"	"OFFICE SUPPLIES"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	11-Mar-08	31-Mar-08	41140.00	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 03:56 PM	

+="CN74631"	"GAS GUN UPDATE"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	30-May-08	55330.00	=""	="DEMATEC PTY LTD"	09-May-08 03:56 PM	

+="CN74632"	"MEDALS"	="Department of Defence"	09-May-08	="Minerals and ores and metals"	11-Mar-08	30-Jun-08	64350.00	=""	="CASHS AUSTRALIA PTY LTD"	09-May-08 03:57 PM	

+="CN74634"	"TRAINING"	="Department of Defence"	09-May-08	="Medical training and education supplies"	11-Mar-08	11-Mar-08	58750.00	=""	="TAFE NSW - SYDNEY INSTITUTE"	09-May-08 03:57 PM	

+="CN74640"	"TRAINING"	="Department of Defence"	09-May-08	="Medical training and education supplies"	11-Mar-08	01-Apr-08	47000.00	=""	="TAFE NSW - SYDNEY INSTITUTE"	09-May-08 03:58 PM	

+="CN74652"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	76178.25	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 03:59 PM	

+="CN74655"	"ELECTRONIC SECURITY SYSTEM"	="Department of Defence"	09-May-08	="Vehicle safety and security systems and components"	25-Mar-08	20-Jul-08	72356.68	=""	="CHUBB ELECTRONIC SECURITY PTY LTD"	09-May-08 03:59 PM	

+="CN74659"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	68785.20	=""	="FOURAY PTY LTD"	09-May-08 04:00 PM	

+="CN74660"	"SPILL BOOM"	="Department of Defence"	09-May-08	="Environmental management"	11-Mar-08	30-Jun-08	61710.00	=""	="ALPHA ENVIRONMENTAL SERVICES P/L"	09-May-08 04:00 PM	

+="CN74661"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	71280.00	=""	="FOURAY PTY LTD"	09-May-08 04:00 PM	

+="CN74663"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	64152.00	=""	="FOURAY PTY LTD"	09-May-08 04:00 PM	

+="CN74665"	"POC: Susan Hanson Contact: 02 6265 0203"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	27-Jun-08	76800.00	=""	="RICHARDSON O'ROURKE CONSULTING"	09-May-08 04:00 PM	

+="CN74668"	"SAFETY HELMETS"	="Department of Defence"	09-May-08	="Clothing"	11-Mar-08	11-Mar-08	78012.00	=""	="GATH SPORTS PTY LTD"	09-May-08 04:00 PM	

+="CN74670"	"NQ2081 - NQ MASTER SECURITY ALARM SYSTEM - RAAF TO UPGRADE."	="Department of Defence"	09-May-08	="Electrical equipment and components and supplies"	11-Mar-08	30-Jun-08	69707.00	=""	="CHUBB ELECTRONIC SECURITY"	09-May-08 04:00 PM	

+="CN74674"	"NOTEBOOKS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	45045.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:01 PM	

+="CN74685"	"Computer hardware"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	28-Mar-08	43725.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:01 PM	

+="CN74689"	"MULTI USER DEPOTS ENVIRONMENTAL MNAGEMENT SYSTEM D"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	19-Mar-08	30-Jun-08	44000.00	=""	="SMEC AUSTRALIA"	09-May-08 04:01 PM	

+="CN74693"	"Manufacture MB Simulation Unit"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	19-Mar-08	30-May-08	54969.72	=""	="TENIX SYSTEMS PTY LTD"	09-May-08 04:02 PM	

+="CN74700"	"LCD MONITORS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	64474.96	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	09-May-08 04:02 PM	

+="CN74705"	"PSP SERVICES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	05-Jun-08	60174.18	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	09-May-08 04:02 PM	

+="CN74710"	"HMAS STIRLING - REDEVELOPMENT STAGE 2. WESTERN POWER."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	50000.50	=""	="WESTERN POWER"	09-May-08 04:03 PM	

+="CN74715"	"MEDALS"	="Department of Defence"	09-May-08	="Paper products"	11-Mar-08	30-Jun-08	53900.00	=""	="CASHS AUSTRALIA PTY LTD"	09-May-08 04:03 PM	

+="CN74712"	"Printing of NAT6931 Outer Envelope. Qty: 3,008,000"	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	25-May-08	60069.76	=""	="Envotec t/a Australian Envelopes"	09-May-08 04:04 PM	

+="CN74719"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	04-Jul-08	44670.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	09-May-08 04:04 PM	

+="CN74721"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	50944.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	09-May-08 04:04 PM	

+="CN74741"	"Facility Maintenance Survey"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Apr-08	46990.99	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:06 PM	

+="CN74755"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	47300.00	=""	="CLAYTON UTZ"	09-May-08 04:07 PM	

+="CN74756"	"POC: BOB GROSS CONTACT: 02 626 60001"	="Department of Defence"	09-May-08	="Components for information technology or broadcasting or telecommunications"	20-Mar-08	30-Jun-08	60725.78	=""	="MEASUREMENT INNOVATION PTY LTD"	09-May-08 04:07 PM	

+="CN74757"	"Sentry Micro Environmental Monitors"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	04-Apr-08	54120.00	=""	="ACAS GREEN TECHNOLOGY PTY LTD"	09-May-08 04:07 PM	

+="CN74758"	"PROVISION OF CONSULTANCY SERVICES TO SUPPORT BRANC OPERATIONS COMMNAD."	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	20-Mar-08	30-Jun-08	76000.00	=""	="NOETIC SOLUTIONS PTY LTD"	09-May-08 04:07 PM	

+="CN74760"	"SENIOR DEVELOPER SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	68785.20	=""	="FOURAY PTY LTD"	09-May-08 04:08 PM	

+="CN74761"	"SINGLE LEAP PHASE 2-HOMEBUSH-ARM HOLDINGS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	07-Mar-08	30-Jun-08	52400.44	=""	="ARM HOLDINGS PTY LTD"	09-May-08 04:08 PM	

+="CN74772"	"Admin Asst Level 2 at 1ATHS"	="Department of Defence"	09-May-08	="Office supplies"	19-Mar-08	30-Jun-08	56848.00	=""	="TOP OFFICE PERSONNEL PTY LTD"	09-May-08 04:09 PM	

+="CN74778"	"Computer equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	28-Mar-08	43725.00	=""	="LENOVO AUSTRALIA"	09-May-08 04:09 PM	

+="CN74781"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	31-May-08	71696.90	=""	="RYDA DOT COM"	09-May-08 04:09 PM	

+="CN74791"	"MRH90 CONTRACTOR  TECH DEVELOPER CBLP"	="Department of Defence"	09-May-08	="Medical training and education supplies"	11-Mar-08	30-Jun-08	66000.00	=""	="PROGRESSIVE PEOPLE(AUSTRALIA) PTY L"	09-May-08 04:10 PM	

+="CN74794"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Mar-08	23-May-08	53548.04	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:10 PM	

+="CN74795"	"SN02296 - Heritage Consultancy"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	60402.10	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:10 PM	

+="CN74797"	"POC: Robert Lee Phone: 02 626 9043"	="Department of Defence"	09-May-08	="Office supplies"	11-Mar-08	20-Mar-08	56805.10	=""	="OPTUS NETWORKS PTY LTD"	09-May-08 04:10 PM	

+="CN74798"	"Project Management for Task MSTC4"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	13-Mar-08	30-Jun-08	54953.97	=""	="BLUE SWIMMER CONSULTING"	09-May-08 04:10 PM	

+="CN74802"	"DATA MINING AND MODELLING"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	43560.00	=""	="COMPLEXIA PTY LTD"	09-May-08 04:10 PM	

+="CN74806"	"S5266, WR 300074201. HMAS Watson - Stormwater reus"	="Department of Defence"	09-May-08	="Water and wastewater treatment supply and disposal"	13-Mar-08	30-Jun-08	52030.52	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:11 PM	

+="CN74814"	"Contractor Support for operational level combat analysis"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	12-Mar-08	30-Jun-08	42240.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	09-May-08 04:11 PM	

+="CN74820"	"ACCOMMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	11-Mar-08	06-Jun-08	45000.00	=""	="CROWNE PLAZA CANBERRA & NATIONAL"	09-May-08 04:11 PM	

+="CN74824"	"PROJECT MANAGEMENT OF THE DEFENCE SECURE VIDEO- CONFERENCING CONFIGURATION MANAGEMENT DATABASE."	="Department of Defence"	09-May-08	="Software"	11-Mar-08	28-Mar-08	78834.80	=""	="CONNELL WAGNER PTY LTD"	09-May-08 04:12 PM	

+="CN74827"	"JLUSQ 0406 Labour Hire support to 20 STA REGT from 1 Apr to 30 Jun 08"	="Department of Defence"	09-May-08	="Transportation repair or maintenance services"	12-Mar-08	30-Jun-08	63000.12	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74828"	"LCD MONITORS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	51894.48	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74830"	"POC: RYAN CAMPBELL CONTACT: 02 626 65735"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	30-Jun-08	50050.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:12 PM	

+="CN74833"	"Carry out modifications and repairs to raft"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	12-Mar-08	03-Jun-08	51032.30	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	09-May-08 04:12 PM	

+="CN74834"	"Ad Hoc Work Proposal"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	29-Feb-08	06-Jun-08	76661.23	=""	="BOEING AUSTRALIA LIMITED"	09-May-08 04:12 PM	

+="CN74847"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	73920.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	09-May-08 04:13 PM	

+="CN74848"	"to undertake bugfix & Systems changes to the TMPSS Work comprises bug fixes;heading &functio"	="Department of Defence"	09-May-08	="Software"	29-Feb-08	30-Jun-08	57750.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	09-May-08 04:13 PM	

+="CN74856"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	78264.49	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:14 PM	

+="CN74861"	"HOUSEHOLD ITEMS NAVY ACCOMODATION HOMEBUSH & STRATHFIELD"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	13-Mar-08	01-Apr-08	64071.54	=""	="KMART EAST GARDENS"	09-May-08 04:14 PM	

+="CN74864"	"THE CDF VIDEO CONFERENCING CAPABILITY REQUIRES THIS UPGRADE TO SUSTAIN & MAINTAIN OPERATIONAL RE"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	29-Feb-08	30-May-08	78670.13	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:14 PM	

+="CN74867"	"S5263, WR 300074197. Victoria Barracks - Consultan technical specifications to optimise energy effic"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	13-Mar-08	30-Jun-08	63164.83	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:14 PM	

+="CN74869"	"Future concept of operations for Maritime Geospatial Forces 2025"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	13-Mar-08	30-Jun-08	58142.00	=""	="QUICKSTRIKE DEFENCE & AEROSPACE PTY"	09-May-08 04:15 PM	

+="CN74870"	"CHIEF OF NAVY'S VIDEO CONFERENCING CAPABILITY REQUIRES UPGRADE."	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	29-Feb-08	30-May-08	50457.43	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:15 PM	

+="CN74872"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	30-Jun-08	58443.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:15 PM	

+="CN74874"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	64130.00	=""	="PROVIDENCE CONSULTING GROUP PL"	09-May-08 04:15 PM	

+="CN74880"	"6 x 3 DAY PERSONAL EFFICIENCY PROGRAMS - NORCOM"	="Department of Defence"	09-May-08	="Education and Training Services"	29-Feb-08	30-Jun-08	71100.01	=""	="D'ARCY CONSULTING GROUP"	09-May-08 04:15 PM	

+="CN74882"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	80000.00	=""	="AUSTRALIAN VALUATION OFFICE"	09-May-08 04:15 PM	

+="CN74884"	"Contact : Mr Dallas Wynne Telephone : 08 8935 4176"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Jun-08	42529.28	=""	="ASSET SERVICES"	09-May-08 04:15 PM	

+="CN74886"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	03-Mar-08	30-Jun-08	57992.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:15 PM	

+="CN74898"	"REHAB SERVICES"	="Department of Defence"	09-May-08	="Healthcare Services"	12-Mar-08	30-Jun-09	48000.00	=""	="ACTIVE REHAB CONSULTANTS"	09-May-08 04:16 PM	

+="CN74899"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	76590.00	=""	="CODARRA ADVANCED SYSTEMS"	09-May-08 04:16 PM	

+="CN74900"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	17-Jun-08	74012.40	=""	="HAYS ACCOUNTANCY AND FINANCE"	09-May-08 04:17 PM	

+="CN74901"	"Deliver ZINT8301 to 17 ATSOC Students Session One"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Mar-08	15-Apr-08	78550.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	09-May-08 04:17 PM	

+="CN74903"	"Collabratoin Agreement REF# 207/1151879/DSTO"	="Department of Defence"	09-May-08	="Market research"	03-Mar-08	31-Mar-08	66000.00	=""	="NATIONAL HEALTH AND MEDICAL"	09-May-08 04:17 PM	

+="CN74907"	"Delivery of Project Management to 17 ATSOC in Sess"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Mar-08	30-Jun-08	49388.96	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	09-May-08 04:17 PM	

+="CN74911"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	03-Mar-08	31-May-08	60500.00	=""	="GWA CONSULTING"	09-May-08 04:17 PM	

+="CN74920"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	12-Mar-08	55000.00	=""	="EDS (AUSTRALIA) PTY LTD"	09-May-08 04:18 PM	

+="CN74921"	"Delivery of ZITE7203 to 17 ATSOC Students Session"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Mar-08	30-Jun-08	49388.96	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	09-May-08 04:18 PM	

+="CN74924"	"Software Licence renewal"	="Department of Defence"	09-May-08	="Software"	03-Mar-08	31-Dec-08	68200.00	=""	="OAKTON AA SERVICES PTY LTD"	09-May-08 04:18 PM	

+="CN74930"	"Deliver ZITE8226 to 17 ATSOC Students Sesson One 2"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Mar-08	30-Jun-08	49388.96	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	09-May-08 04:18 PM	

+="CN74935"	"Research Agreement"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Mar-08	16-May-08	72600.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	09-May-08 04:19 PM	

+="CN74936"	"Provisions of Corporate Communication Management"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	28-Feb-08	27-Jun-08	50679.34	=""	="VEDIOR AISA PACIFIC PTY LTD"	09-May-08 04:19 PM	

+="CN74940"	"Provisions of Graphic Designer"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	28-Feb-08	25-Sep-08	70760.26	=""	="VEDIOR AISA PACIFIC PTY LTD"	09-May-08 04:19 PM	

+="CN74942"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	40409.60	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	09-May-08 04:19 PM	

+="CN74947"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	76893.25	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:19 PM	

+="CN74948"	"Software engineering"	="Department of Defence"	09-May-08	="Professional engineering services"	28-Feb-08	22-Jul-08	42636.00	=""	="ASSOCIATED ELECTRONIC SERVICES"	09-May-08 04:19 PM	

+="CN74949"	"fruit & vegetables brisbane"	="Department of Defence"	09-May-08	="Fruits and vegetables and nuts and seeds"	12-Mar-08	30-Jul-08	49500.00	=""	="GMN VEGIPREPI"	09-May-08 04:20 PM	

+="CN74955"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	79259.19	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:20 PM	

+="CN74958"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	14-Apr-08	59278.51	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:20 PM	

+="CN74959"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	73344.33	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:20 PM	

+="CN74961"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-May-08	52366.93	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:20 PM	

+="CN74963"	"POINT WILSON HERITAGE MANAGEMENT PLAN."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	40568.00	=""	="SMEC AUSTRALIA"	09-May-08 04:20 PM	

+="CN74965"	"POINT PERPENDICULAR LIGHTHOUSE RESTORATION PHASE ("	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	52514.00	=""	="ARCHITECTS EDMISTON JONES"	09-May-08 04:20 PM	

+="CN74968"	"Multi Asset - Steel Storage Cabinets. Steel Storage Cabinets including delivery charge."	="Department of Defence"	09-May-08	="Furniture and Furnishings"	28-Feb-08	30-Apr-08	45753.40	=""	="ATLAS METAL INDUSTRIES PTY LTD"	09-May-08 04:21 PM	

+="CN74972"	"RENEWAL OF LICENCES"	="Department of Defence"	09-May-08	="Software"	28-Feb-08	28-Mar-08	78129.50	=""	="KAZ GROUP LTD"	09-May-08 04:21 PM	

+="CN74978"	"Installation and Licensing of MV122 Microwave Link PCK-LAV with Maintenance Agreement."	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	28-Feb-08	31-Jul-08	58994.10	=""	="WAVE1 PTY LTD"	09-May-08 04:21 PM	

+="CN74983"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	70318.38	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:22 PM	

+="CN74985"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	76893.25	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:22 PM	

+="CN74987"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	79259.19	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:22 PM	

+="CN74991"	"supply of fresh meat brisbane"	="Department of Defence"	09-May-08	="Meat and poultry"	29-Feb-08	30-Jul-08	49500.00	=""	="TENDER PLUS PTY LTD"	09-May-08 04:22 PM	

+="CN74994"	"groceries brisbane"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	12-Mar-08	30-Jul-08	52800.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	09-May-08 04:22 PM	

+="CN74995"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	29-Feb-08	30-Aug-08	68295.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:23 PM	

+="CN74998"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	76893.25	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:23 PM	

+="CN75014"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	22-Apr-08	52387.61	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:24 PM	

+="CN75016"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	22-Apr-08	49684.22	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:24 PM	

+="CN75020"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	09-Jun-08	72176.17	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:24 PM	

+="CN75023"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	17-Mar-08	31-Mar-08	40260.00	=""	="ICP GLOBAL PTY LTD"	09-May-08 04:24 PM	

+="CN75037"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Jun-08	75480.77	=""	="SUN MICROSYSTEMS"	09-May-08 04:25 PM	

+="CN75058"	"POC: JASON YAP CONTACT NO: 02 6265 0913"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	05-Mar-08	30-Mar-08	64860.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:27 PM	

+="CN75059"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	31-Aug-08	69009.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:27 PM	

+="CN75062"	"S5090, WR's - 300050429, 300050430, 300050432. Eng monitoring to detect the location of any new"	="Department of Defence"	09-May-08	="Fertilisers and plant nutrients and herbicides"	05-Mar-08	30-Jun-09	44367.40	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:27 PM	

+="CN75067"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Temporary personnel services"	17-Mar-08	30-Jun-09	49294.86	=""	="NOETIC SOLUTIONS PTY LTD"	09-May-08 04:27 PM	

+="CN75073"	"GROCERIES"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	17-Mar-08	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	09-May-08 04:28 PM	

+="CN75075"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Project management"	17-Mar-08	30-Jun-09	68798.03	=""	="O2C"	09-May-08 04:28 PM	

+="CN75078"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-May-08	58160.00	=""	="ROCKWELL COLLINS AUST PTY LTD"	09-May-08 04:28 PM	

+="CN75082"	"ICT System Hardware"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Mar-08	30-Jun-08	75517.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:28 PM	

+="CN75083"	"COMPANION STUDY"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-May-08	62310.00	=""	="CAPGEMINI PTY LTD"	09-May-08 04:28 PM	

+="CN75088"	"FURNITURE - OLA'S RAAF BASE DARWIN"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	04-Mar-08	30-Jun-08	67697.36	=""	="S B A DISTRIBUTORS PTY LTD"	09-May-08 04:28 PM	

+="CN75089"	"Consolidation of Cargo, Sea Cargo, Road Freight, Air Charter - OP OUTREACH"	="Department of Defence"	09-May-08	="Mail and cargo transport"	17-Mar-08	20-Mar-08	40308.51	=""	="PDL TOLL"	09-May-08 04:29 PM	

+="CN75090"	"HIRE VEHICLE FOR RSM AND TARAGO FOR SOHQ"	="Department of Defence"	09-May-08	="Motor vehicles"	04-Mar-08	30-Jun-08	55000.00	=""	="HERTZ AUSTRALIA PTY LTD"	09-May-08 04:29 PM	

+="CN75100"	"Quote Numbers: AB080203 dated 22 Feb 08"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	05-Mar-08	16-Apr-08	53064.00	=""	="UCI"	09-May-08 04:30 PM	

+="CN75102"	"INSTALL PIPE UP ONE CORNER OF 10 STOREY FIRING POI"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	05-Mar-08	30-Jun-08	40000.00	=""	="MULTITECH ENGINEERING"	09-May-08 04:30 PM	

+="CN75107"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	05-Mar-08	30-Jun-08	73365.99	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	09-May-08 04:30 PM	

+="CN75123"	"Development of FLEWSE distributed EW Study"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	05-Mar-08	27-Aug-08	54978.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	09-May-08 04:31 PM	

+="CN75125"	"Development of FLEWSE / DARNOS"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	05-Mar-08	27-Jun-08	54978.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	09-May-08 04:31 PM	

+="CN75129"	"VIDEO EQUIPMENT"	="Department of Defence"	09-May-08	="Photographic or filming or video equipment"	05-Mar-08	30-May-08	51579.69	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:32 PM	

+="CN75133"	"fresh milk brisbane"	="Department of Defence"	09-May-08	="Milk and butter products"	05-Mar-08	30-Jul-08	51700.00	=""	="PAULS LIMITED"	09-May-08 04:32 PM	

+="CN75135"	"groceries brisbane gst free"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	05-Mar-08	30-Jul-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	09-May-08 04:32 PM	

+="CN75145"	"contract for provide research into advanced modell for conflict analysis to assist existing research"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	44000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	09-May-08 04:33 PM	

+="CN75147"	"Project Management Support to LOD"	="Department of Defence"	09-May-08	="Business facilities oversight"	03-Mar-08	27-Jun-08	58017.61	=""	="JACOBS AUSTRALIA"	09-May-08 04:33 PM	

+="CN75152"	"SUPPLIES FOR SHIPS VISIT"	="Department of Defence"	09-May-08	="Marine transport"	13-Mar-08	30-Jun-08	42389.04	=""	="PDL TOLL"	09-May-08 04:33 PM	

+="CN75159"	"Hardware Maintenance"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-Jun-09	72315.35	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	09-May-08 04:33 PM	

+="CN75162"	"SUPPLY , DELIVERY AND INSTALLATION OF PALLET RACKS"	="Department of Defence"	09-May-08	="General building construction"	17-Mar-08	02-Jun-08	48218.50	=""	="DEXION SEVEN HILLS"	09-May-08 04:34 PM	

+="CN75164"	"HMAS PENGUIN PROGRAM OF WORKS. GML - ENVIRONMENTAL HERITAGE SERVICES"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	57398.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	09-May-08 04:34 PM	

+="CN75168"	"Contractor Services for  (3) Accounts Officers"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	78100.00	=""	="DFP RECRUITMENT SERVICES"	09-May-08 04:34 PM	

+="CN75173"	"PRINTING SERVICES"	="Department of Defence"	09-May-08	="Printing and publishing equipment"	03-Mar-08	31-May-08	58168.00	=""	="CANBERRA MAILING & ENVELOPES"	09-May-08 04:34 PM	

+="CN75174"	"FEES-INGLEBURN-SITE AUDITOR(COFFEY ENVIRONMENTS)"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	44000.00	=""	="COFFEY ENVIRONMENTS PTY LTD"	09-May-08 04:34 PM	

+="CN75175"	"RV0682 RGN Refurb Frontline Wet Canteens"	="Department of Defence"	09-May-08	="Project management"	03-Mar-08	30-Jun-08	70500.01	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	09-May-08 04:35 PM	

+="CN75177"	"POC: SAM ISBISTER CONTACT: 02 626 69334"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	30-Jun-08	74299.50	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:35 PM	

+="CN75178"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Mar-08	07-Jun-08	43683.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:35 PM	

+="CN75184"	"HQJOC PROJECT-DMO"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	70569.40	=""	="DEFENCE MATERIEL ORGANISATION -"	09-May-08 04:35 PM	

+="CN75187"	"WATER QUALITY MONITORING AT SWBTA"	="Department of Defence"	09-May-08	="Environmental Services"	03-Mar-08	30-Jun-08	50716.60	=""	="ENVIRONMENTAL PROTECTION AGENCY"	09-May-08 04:36 PM	

+="CN75199"	"PROJECT CONSULTANCY SERVICES TO UNDERTAKE REVIEW A ENGINEERING POLICY."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	48013.41	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	09-May-08 04:37 PM	

+="CN75203"	"Software Licence"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	25-Mar-08	44506.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	09-May-08 04:37 PM	

+="CN75205"	"NSW PAVEMENT INSPECTIONS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	60269.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	09-May-08 04:37 PM	

+="CN75236"	"Repair & maintenance of night sky simulator"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	23-May-08	56980.00	=""	="AERO & MILITARY PRODUCTS"	09-May-08 04:40 PM	

+="CN75239"	"Complex Systems Engineering Analysis"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Feb-08	12-Jun-08	44000.00	=""	="UNI OF SA"	09-May-08 04:40 PM	

+="CN75243"	"Transport of containers and hire of MHE for OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	70503.76	=""	="PDL TOLL"	09-May-08 04:40 PM	

+="CN75244"	"Xeon Harpertown 5440 - computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	28-Mar-08	45000.01	=""	="IPS INTELLIGENT SYSTEMS PTY LTD"	09-May-08 04:40 PM	

+="CN75245"	"Road Transport of containers and hire of MHE for OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	45912.37	=""	="PDL TOLL"	09-May-08 04:40 PM	

+="CN75246"	"Replacement spare parts: night sky simulator"	="Department of Defence"	09-May-08	="Machine made parts"	04-Mar-08	23-May-08	42603.00	=""	="AERO & MILITARY PRODUCTS"	09-May-08 04:40 PM	

+="CN75263"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	30-Jun-08	52086.67	=""	="SUN MICROSYSTEMS"	09-May-08 04:41 PM	

+="CN75264"	"LEADERSHIP TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	13-Feb-08	13-Feb-08	71984.00	=""	="HCA LEADERSHIP PROGRAMS PTY LTD"	09-May-08 04:42 PM	

+="CN75265"	"Install Eye Wash stations"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	80000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:42 PM	

+="CN75277"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	68750.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	09-May-08 04:42 PM	

+="CN75283"	"PERSONNEL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	18-Mar-08	75418.72	=""	="HAYS SPECIALIST RECRUITMENT"	09-May-08 04:43 PM	

+="CN75284"	"Video Conferencing Equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Feb-08	29-Feb-08	65494.66	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:43 PM	

+="CN75286"	"COMPARISON OF TENDERED CONTRACTS WITH LATEST CMS T"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	13-Feb-08	30-Jun-08	65706.30	=""	="GROSVENOR MANAGEMENT CONSULTING"	09-May-08 04:43 PM	

+="CN75290"	"Source and manufacture freeze dried meal pouches"	="Department of Defence"	09-May-08	="Packaging materials"	13-Feb-08	30-Mar-08	51167.60	=""	="WESTS PACKAGING SERVICES PTY LTD"	09-May-08 04:43 PM	

+="CN75292"	"STAGE Scenario Software and Maintenance Agreement"	="Department of Defence"	09-May-08	="Software"	13-Feb-08	28-Mar-09	75278.80	=""	="ENGENUITY TECHNOLOGIES INC"	09-May-08 04:43 PM	

+="CN75294"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-Jun-08	72600.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	09-May-08 04:43 PM	

+="CN75308"	"risk assess x 3, haz sub management review x 9 & haz sub review x 10"	="Department of Defence"	09-May-08	="Personal safety and protection"	13-Feb-08	30-Jun-08	58675.90	=""	="COAST TO COAST SAFETY SOLUTIONS"	09-May-08 04:44 PM	

+="CN75309"	"Contact: David Knox 02 6265 0387"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	29-Apr-08	41690.00	=""	="ARGUS SOLUTIONS LTD"	09-May-08 04:44 PM	

+="CN75310"	"ACCOMMODATION"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	13-Feb-08	13-Feb-08	68200.00	=""	="ARGUS APARTMENTS PTY LTD"	09-May-08 04:44 PM	

+="CN75316"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	54929.14	=""	="HMA BLAZE PTY LTD"	09-May-08 04:45 PM	

+="CN75317"	"Contract for Coloured Petri Net Modelling of Defence Logistics"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	18-Mar-08	30-Jun-08	68310.00	=""	="UNIVERSITY OF SA - SEEC"	09-May-08 04:45 PM	

+="CN75318"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	48000.00	=""	="REHAB MANAGEMENT"	09-May-08 04:45 PM	

+="CN75320"	"Contract: File 2008-1017497 refers"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	18-Mar-08	30-Jun-08	44000.00	=""	="UNI OF SA - FINANCIAL SERVICES"	09-May-08 04:45 PM	

+="CN75323"	"TS Contract  Programming Support"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	11-Feb-08	15-Jun-08	77000.00	=""	="EBOR COMPUTING"	09-May-08 04:45 PM	

+="CN75328"	"Consultancy services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	28-May-08	49090.90	=""	="SYMANTEC ASIA PACIFIC PTE LTD"	09-May-08 04:46 PM	

+="CN75347"	"Maintenance and Support"	="Department of Defence"	09-May-08	="Software"	11-Feb-08	18-Feb-08	64414.90	=""	="NOBEL CONSULTING GROUP PTY LTD"	09-May-08 04:47 PM	

+="CN75351"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	60924.80	=""	="METAVR INC."	09-May-08 04:47 PM	

+="CN75354"	"Cisco equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	25-Mar-08	42624.44	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	09-May-08 04:47 PM	

+="CN75357"	"MFU"	="Department of Defence"	09-May-08	="Office machines and their supplies and accessories"	11-Feb-08	07-May-08	45566.40	=""	="RICOH AUSTRALIA"	09-May-08 04:47 PM	

+="CN75359"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	28-Mar-08	43769.00	=""	="NOETIC SOLUTIONS PTY LTD"	09-May-08 04:48 PM	

+="CN75366"	"RENTAL AGREEMENT FOR PLOTTERS AND SCANNERS FY07/08 AND LATE FEES."	="Department of Defence"	09-May-08	="Master control systems"	12-Feb-08	31-Jul-08	62102.49	=""	="CIT FINANCIAL (AUSTRALIA) LTD"	09-May-08 04:48 PM	

+="CN75370"	"HIRE OF DOMESTIC VEHICLES IN SUPPORT OF OPERATIONS"	="Department of Defence"	09-May-08	="Motor vehicles"	12-Feb-08	30-Jun-08	55000.00	=""	="HERTZ AUSTRALIA PTY LTD"	09-May-08 04:49 PM	

+="CN75374"	"Model and Software Development in Support of Moving Target Assessment for AIR 5418"	="Department of Defence"	09-May-08	="Professional engineering services"	12-Feb-08	30-Jun-08	63360.00	=""	="ASSOCIATED ELECTRONIC SERVICES"	09-May-08 04:49 PM	

+="CN75377"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	31-Dec-08	66845.00	=""	="SPARKE HELMORE LAWYERS"	09-May-08 04:49 PM	

+="CN75379"	"This Project is to ensure this training area is pr relation to UXO issues and an appropriate managme"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	17-Mar-08	30-Jun-08	55000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:49 PM	

+="CN75385"	"GROCERIES"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	17-Mar-08	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	09-May-08 04:49 PM	

+="CN75389"	"This order placed under SON45190 - Software development SWAT model Development WSD"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	30-Jun-08	54899.90	=""	="DAINTREE SYSTEMS PTY LTD"	09-May-08 04:50 PM	

+="CN75395"	"Professional Service Provider to support ADFPAY applications"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	73163.75	=""	="AMBIT GROUP PTY LTD"	09-May-08 04:50 PM	

+="CN75400"	"MISCITCOPT2A - CUSTOM MANUFACTURE OF 400 KHZ TRANSDUCER"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Feb-08	27-Jun-08	49720.00	=""	="BIOLAB AUSTRALIA LTD"	09-May-08 04:50 PM	

+="CN75401"	"Contact: Peter Davey 02 6266 9212"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	28-Apr-08	51975.00	=""	="DELL AUSTRALIA PTY LTD"	09-May-08 04:50 PM	

+="CN75402"	"Radio Sondes/meteorological balloons"	="Department of Defence"	09-May-08	="Software"	11-Feb-08	05-Mar-08	44630.30	=""	="VAISALA PTY LTD"	09-May-08 04:50 PM	

+="CN75409"	"MOVT OF PAX & VEHICLES OP SLIPPER"	="Department of Defence"	09-May-08	="Aircraft"	17-Mar-08	31-Mar-08	60605.82	=""	="DFAS OMAHA OPERATING LOCATION"	09-May-08 04:51 PM	

+="CN75418"	"Computer Switches"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	14-Feb-08	25-Feb-08	68610.56	=""	="TENIX DATAGATE PTY LTD"	09-May-08 04:51 PM	

+="CN75428"	"Total Station and Smart Station"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	15-Feb-08	28-Mar-08	47608.00	=""	="C R KENNEDY & COMPANY PTY LTD"	09-May-08 04:52 PM	

+="CN75429"	"UB-5815 2 Screen Electronic Whiteboard - Wall Moun"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	15-Feb-08	30-Jun-08	42033.20	=""	="ESC TECHNOLOGY PTY LTD"	09-May-08 04:52 PM	

+="CN75434"	"LAPTOPS FOR AMPS TRAINING AT ENGINEERING FACULTY H"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	14-Mar-08	45365.87	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:53 PM	

+="CN75435"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	41288.17	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:53 PM	

+="CN75436"	"Maritime Air Radar (MAR) Technical Support"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	14-Feb-08	31-May-08	44000.00	=""	="BAE SYSTEMS"	09-May-08 04:53 PM	

+="CN75443"	"FURNITURE FOR SGT MESS RAAF TINDAL KATHERINE"	="Department of Defence"	09-May-08	="Office supplies"	14-Feb-08	30-Apr-08	42373.04	=""	="JAPE FURNISHING SUPERSTORE"	09-May-08 04:54 PM	

+="CN75444"	"Multiple Computer Switches (MCS units)"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	14-Feb-08	25-Feb-08	60987.17	=""	="TENIX DATAGATE PTY LTD"	09-May-08 04:54 PM	

+="CN75454"	"W061 - Design, writing & editing services for Compliance Program 2008/09"	="Australian Taxation Office"	09-May-08	="Management and Business Professionals and Administrative Services"	09-May-08	29-Aug-08	63360.00	=""	="Evans-Smith & Dando Pty Ltd"	09-May-08 04:56 PM	

+="CN75462"	"Training"	="Department of Defence"	09-May-08	="Office supplies"	15-Feb-08	30-Apr-08	44770.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	09-May-08 04:56 PM	

+="CN75467"	"Ref 1075/07-08"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	15-Feb-08	29-Feb-08	57916.04	=""	="JAPE FURNISHING SUPERSTORE"	09-May-08 04:57 PM	

+="CN75470"	"BMAT & PDOT SOFTWARE DEVELOPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	30-Jun-08	44598.40	=""	="DAVTEC IT PTY LTD"	09-May-08 04:57 PM	

+="CN75475"	"VAPOR JET CALIBRATOR MODEL 2 VERSION 4"	="Department of Defence"	09-May-08	="Tools and General Machinery"	14-Feb-08	02-May-08	72833.31	=""	="MICROFAB TECHNOLOGIES INC."	09-May-08 04:58 PM	

+="CN75482"	"PROTECTIVE DRESS CLOTHING"	="Department of Defence"	09-May-08	="Personal safety and protection"	14-Feb-08	30-Jun-08	40821.00	=""	="CTE PTY LTD"	09-May-08 04:59 PM	

+="CN75487"	"LECTURER SERVICES"	="Department of Defence"	10-May-08	="Education and Training Services"	13-Feb-08	28-Feb-08	67859.40	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 08:32 AM	

+="CN75491"	"Provision of service to Support MEP as per DTR-A V oucher 0708 61 linked to DMO  PO 4500621176"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	30-Jun-08	80000.00	=""	="KPMG"	10-May-08 08:33 AM	

+="CN75498"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	14-Feb-08	30-Jun-08	40876.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 08:33 AM	

+="CN75502"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Editorial and Design and Graphic and Fine Art Services"	14-Feb-08	06-Mar-08	75000.00	=""	="STRATEGIC PERSPECTIVES"	10-May-08 08:34 AM	

+="CN75503"	"Communications Network Infrastructure Audit Area F"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	74030.00	=""	="SKM"	10-May-08 08:34 AM	

+="CN75507"	"NQ2081 - AREA G Comms Cable, Room and Cabinet Audi"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	74030.00	=""	="SKM"	10-May-08 08:34 AM	

+="CN75509"	"Vehicle Lease"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	14-Feb-08	30-Jun-11	41085.62	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 08:35 AM	

+="CN75510"	"Communications Network Infrastructure Audit Area H Cables Supporting Area H Commencing at Building 3"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	53350.00	=""	="SKM"	10-May-08 08:35 AM	

+="CN75513"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	18-Apr-08	47466.98	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 08:35 AM	

+="CN75517"	"REPLACEMENT COMPUTER CPUs"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Mar-08	43116.70	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 08:35 AM	

+="CN75518"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	31-May-08	71500.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:36 AM	

+="CN75519"	"MRH90 ANIMATION  & MODELS"	="Department of Defence"	10-May-08	="Medical training and education supplies"	14-Feb-08	30-Sep-08	74250.00	=""	="VIRTUO CITY"	10-May-08 08:36 AM	

+="CN75520"	"SN01988 - GIS Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	55813.23	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:36 AM	

+="CN75521"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	29-Feb-08	77761.20	=""	="ASI SOLUTIONS"	10-May-08 08:36 AM	

+="CN75522"	"Fit Safety Duards to Machine Tools"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	25-Mar-08	70049.10	=""	="CPR SAFE - IND"	10-May-08 08:36 AM	

+="CN75523"	"SN02739- R3 Corridor Lighting Upgrade- Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	69256.62	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:36 AM	

+="CN75524"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	06-Feb-08	46617.30	=""	="QUT STUDENT FEES OFFICE"	10-May-08 08:36 AM	

+="CN75526"	"PROVIDE ELECTRONIC DESIGN & MANUFACTURE TECHNICAL SUPPORT FOR HEAT FLUX II PRE FIELD TRIAL PREP"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	06-Feb-08	06-Feb-08	42760.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 08:36 AM	

+="CN75530"	"GROCERIES FOR RATIONS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	06-Feb-08	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	10-May-08 08:37 AM	

+="CN75531"	"GROCERIES FOR RATIONS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	06-Feb-08	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	10-May-08 08:37 AM	

+="CN75532"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	20-Feb-08	48009.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:37 AM	

+="CN75535"	"Implementation of Communications Links for Integr- ation and Control of UAV's in the SIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	06-Feb-08	31-May-08	55000.00	=""	="BALL SOLUTIONS GROUP"	10-May-08 08:37 AM	

+="CN75536"	"ARCGIS ARC EDITOR 9.2 CUI INDICATIVE 2ND YEAR MAINTENANCE / ARCGIS3D ANALYST 9.2 CUI INDICATIVE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	07-Feb-08	79728.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 08:37 AM	

+="CN75541"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	75752.82	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75542"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	58271.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75544"	"provision of contractors"	="Department of Defence"	10-May-08	="Office supplies"	06-Feb-08	30-Jun-08	41580.00	=""	="ICON RECRUITMENT"	10-May-08 08:38 AM	

+="CN75545"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	52855.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75549"	"Gym equipment"	="Department of Defence"	10-May-08	="Gymnastics and boxing equipment"	06-Feb-08	30-Mar-08	40593.30	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 08:39 AM	

+="CN75552"	"PROVISION OF PHYSIOTHERAPY SERVICES - HSF EDN RAAF 1/1/08 - 1/1/09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	72000.50	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75554"	"PROVISION OF SENIOR PHARMACY STOREPERSON SERVICES RAAF EDINBURGH 1 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	73000.40	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75563"	"BANDIANA:JLU (V) WAREHOUSING FACILITIES. JLU(V) SITE CONTAMINATION SURVEYS."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	49252.50	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 08:40 AM	

+="CN75564"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	30-Jun-08	46070.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 08:40 AM	

+="CN75568"	"CONTRACT NO: CSI-SC06/2005 MEAT RATIONS"	="Department of Defence"	10-May-08	="Meat and poultry"	06-Feb-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	10-May-08 08:40 AM	

+="CN75574"	"ICT User App & Data"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	30-Jun-08	65604.00	=""	="SUN MICROSYSTEMS"	10-May-08 08:41 AM	

+="CN75577"	"PROJECT DEPT SUSTAINABILITY & ENVIRONMENT"	="Department of Defence"	10-May-08	="Project management"	04-Feb-08	30-Jun-08	70000.00	=""	="DEPARTMENT OF SUSTAINABILITY"	10-May-08 08:41 AM	

+="CN75581"	"Antenna Certification Kit"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	05-Feb-08	16-May-08	44687.75	=""	="CACI TECHNOLOGIES INC"	10-May-08 08:42 AM	

+="CN75607"	"Development and Support of the Materiel Sustainability Analysis Tool (MSAT) Model"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	05-Feb-08	30-May-08	77550.00	=""	="INTERDYNAMICS PTY LTD"	10-May-08 08:44 AM	

+="CN75609"	"REMEDIATE AGEING RECTIFIER/BATTERY SUITES WHICH HAVE REACHED END OF LIFE."	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	05-Feb-08	30-Apr-08	54034.20	=""	="CENTURY YUASA BATTERIES PTY LTD"	10-May-08 08:44 AM	

+="CN75614"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	55357.83	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:45 AM	

+="CN75619"	"S5180, WR 300076872. Carry out IA investigations o inground services and provide report and document"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	42524.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75621"	"S5180, WR 300065141. Carry out IA investigations o inground services and provide report and document"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	41380.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:46 AM	

+="CN75622"	"CONDUCT FDPT RECTIFICATION WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	64240.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:46 AM	

+="CN75623"	"QUICKLOOK 026 TECHNICAL LEAD Labour - up to 40 days from 23 January 2008 to 30"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	30-Mar-08	49960.01	=""	="QINETIQ NOVARE PTY LTD"	10-May-08 08:46 AM	

+="CN75629"	"professional services - stocktaking staff to condu stocktake of ICT assets within Canberra and Melbo"	="Department of Defence"	10-May-08	="Accounting and auditing"	08-Feb-08	30-Apr-08	57354.00	=""	="ACROSS BUSINESS CONSULTING PTY LTD"	10-May-08 08:46 AM	

+="CN75643"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	21-Mar-08	50773.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 08:48 AM	

+="CN75655"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	30-Jun-08	50490.00	=""	="CRAN CONSULTING"	10-May-08 08:49 AM	

+="CN75662"	"Training Courses"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Feb-08	30-Jun-08	67129.70	=""	="ROBERT BRENNAN & ASSOCIATES"	10-May-08 08:50 AM	

+="CN75675"	"Remove Asbestos & Replace doors"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Feb-08	09-Apr-08	42526.00	=""	="M & P BUILDERS PTY LTD"	10-May-08 08:51 AM	

+="CN75676"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	31-May-08	68805.00	=""	="PS MANAGEMENT CONSULTANTS"	10-May-08 08:51 AM	

+="CN75679"	"Dimension 3D Printer"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	08-Feb-08	31-Mar-08	50820.00	=""	="CAMPLEX PTY LTD"	10-May-08 08:51 AM	

+="CN75692"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	23-May-08	61669.08	=""	="HARVARD UNIVERSITY"	10-May-08 08:52 AM	

+="CN75697"	"miscitcopt3a custom manufacture of 800 khz transducer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	27-Jun-08	49720.00	=""	="BIOLAB AUSTRALIA LTD"	10-May-08 08:53 AM	

+="CN75702"	"implementation of jSWAT planning environment"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	59972.00	=""	="CHINNERS CONSULTING"	10-May-08 08:53 AM	

+="CN75703"	"REQUIRED TO ENSURE THAT DEVELOPMENTS REQUIRED IN DSVE ARE DEVELOPED IN AN INTEGRATED/TIMELY MANNER."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-08	30-Sep-08	56176.12	=""	="CONNELL WAGNER PTY LTD"	10-May-08 08:54 AM	

+="CN75705"	"Implementation of a generic Jammer into the HWIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	50000.01	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:54 AM	

+="CN75708"	"RANGES & TAs BOUNDARY FENCE AND SIGNAGE UPGRADES AT CANUNGRA"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Feb-08	30-Jun-08	52228.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:54 AM	

+="CN75710"	"fruit & vegetables brisbane"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	07-Feb-08	30-Jun-08	49500.00	=""	="GMN VEGIPREPI"	10-May-08 08:54 AM	

+="CN75717"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	08-Feb-08	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 08:55 AM	

+="CN75725"	"PROVISION FOR DENTAL ASSISTANT SERVICES"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	44000.00	=""	="NASANSB"	10-May-08 08:56 AM	

+="CN75726"	"HWIL distributedSimulation Hardware Architecture - Design Study"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	55000.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:56 AM	

+="CN75729"	"PERFORMANCE TESTING CARDS AND DELIVERY COSTS FOR N"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	21-Feb-08	43670.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 08:56 AM	

+="CN75730"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	07-Feb-08	41612.16	=""	="ATTORNEY GENERALS DEPARTMENT"	10-May-08 08:56 AM	

+="CN75735"	"POC: RYAN CAMPBELL CONTACT: 02 626 65735"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	25-Feb-08	30-Jun-08	50840.90	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75741"	"WBTA PEST ANIMAL MANAGEMENT"	="Department of Defence"	10-May-08	="Environmental management"	25-Feb-08	30-Jun-08	67026.74	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75748"	"POC: ROBYN NICHOLAS CONTACT: 02 626 50765"	="Department of Defence"	10-May-08	="Medical training and education supplies"	23-Feb-08	30-Jun-08	41551.62	=""	="APIS CONSULTING GROUP"	10-May-08 08:58 AM	

+="CN75752"	"POC: DAVE BEGGS CONTACT: 02 626 69158"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	53234.69	=""	="SUN MICROSYSTEMS"	10-May-08 08:58 AM	

+="CN75761"	"[PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Feb-08	25-Feb-08	56534.50	=""	="LAMB PRINT PTY LTD"	10-May-08 08:59 AM	

+="CN75762"	"sa2366 regional weed control"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:59 AM	

+="CN75780"	"Research agreement for CIEAM project AS302 Title: "Industrial Applications of Corrosion Sensing"."	="Department of Defence"	10-May-08	="Market research"	25-Feb-08	29-Feb-08	55000.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	10-May-08 09:01 AM	

+="CN75793"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	25-Feb-08	59407.50	=""	="MORISON CONSULTING PTY LTD"	10-May-08 09:02 AM	

+="CN75806"	"Network Aanlysis Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Feb-08	13-Jun-08	67800.00	=""	="EBOR COMPUTING"	10-May-08 09:04 AM	

+="CN75813"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	42063.98	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:04 AM	

+="CN75816"	"ASI Technology Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	52127.79	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75821"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	45656.40	=""	="SUN MICROSYSTEMS"	10-May-08 09:05 AM	

+="CN75826"	"Supply & Install Keysafe SAM 192 - IO 18283"	="Department of Defence"	10-May-08	="Vehicle safety and security systems and components"	22-Feb-08	30-Mar-08	51928.88	=""	="RUSWIN LOCKSMITHS & SECURITY"	10-May-08 09:05 AM	

+="CN75828"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	10-Mar-08	77695.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:06 AM	

+="CN75830"	"DEVELO SPECIFICATIONS"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	63519.89	=""	="SMS CONSULTING GROUP PTY LTD"	10-May-08 09:06 AM	

+="CN75841"	"PABX Systems"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	28-Feb-08	31-Mar-08	55679.30	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 09:07 AM	

+="CN75853"	"PABX Systems"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Feb-08	30-May-08	69264.80	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 09:08 AM	

+="CN75864"	"Freight - various equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	30-Jun-08	44000.00	=""	="TNT FAILSAFE"	10-May-08 09:09 AM	

+="CN75865"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	03-Mar-08	51455.25	=""	="FJ GEYSEN & ASSOCIATES"	10-May-08 09:09 AM	

+="CN75866"	"BEDS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	28-Feb-08	31-Mar-08	40194.00	=""	="AUSTRALIAN BEDDING COMPANY PTY LTD"	10-May-08 09:09 AM	

+="CN75870"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	29-Jun-09	40425.00	=""	="MAINSTAR INTERNATIONAL LTD"	10-May-08 09:10 AM	

+="CN75879"	"RF SIGNAL GENERATOR R&S SM 300PN"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Feb-08	28-Mar-08	76230.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 09:11 AM	

+="CN75885"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Feb-08	74580.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 09:11 AM	

+="CN75886"	"DEMS SERVER MIGRATION PHASE 2-APA 083."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	28-Feb-08	30-Jun-08	45375.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 09:11 AM	

+="CN75900"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	26-Feb-08	02-Jun-08	55000.00	=""	="NATIONAL ICT AUSTRALIA LTD"	10-May-08 09:13 AM	

+="CN75904"	"NQ2081 - HMAS Cairns Redevelopment Covering Works."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	43419.20	=""	="EMAK COMMUNICATIONS"	10-May-08 09:13 AM	

+="CN75906"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	26-Feb-08	30-Jul-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 09:13 AM	

+="CN75913"	"Consultant"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	26-Feb-08	30-Apr-08	79200.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 09:14 AM	

+="CN75925"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS"	="Department of Defence"	10-May-08	="Roads and landscape"	28-Feb-08	30-Jun-08	75601.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:15 AM	

+="CN75927"	"PEST ANIMAL MANAGEMENT - GBTA, ECTA, AMB AND PURGA"	="Department of Defence"	10-May-08	="Environmental management"	28-Feb-08	30-Jun-08	52525.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:15 AM	

+="CN75928"	"NQ1842 - CSI NQ Reticulate Irrigation System to 2"	="Department of Defence"	10-May-08	="Project management"	26-Feb-08	30-Jun-08	76465.95	=""	="SPOTLESS"	10-May-08 09:15 AM	

+="CN75929"	"Liberty Data Acquisition system,and Perception Sta"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Feb-08	03-Mar-08	75625.00	=""	="DAVIDSON MEASUREMENT"	10-May-08 09:15 AM	

+="CN75939"	"CISCO FIBRE SWITCHMODEL WS-C33750-24FS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	06-Mar-08	48741.11	=""	="LOGITECH PTY LTD"	10-May-08 09:16 AM	

+="CN75950"	"WAVE SENTRY PLUS SPARES, MICRO AIR-LAUNCHED EXPEND ABLE WAVE BUOYS PLUS SPARES"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	19-Feb-08	28-Mar-08	78684.22	=""	="PLANNING SYSTEMS INC"	10-May-08 09:17 AM	

+="CN75968"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	22-Feb-08	49359.81	=""	="FIND IT HERE PTY LTD"	10-May-08 09:19 AM	

+="CN75971"	"Video Conferencing Equipment"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	20-May-08	65767.86	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 09:20 AM	

+="CN75972"	"DSTO RA Contract"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	19-Feb-08	22-Feb-08	55000.00	=""	="NATIONAL ICT AUSTRALIA LTD"	10-May-08 09:20 AM	

+="CN75983"	"vector sensor"	="Department of Defence"	10-May-08	="Aircraft"	17-Nov-07	30-Mar-08	78954.50	=""	="WILCOXON RESEARCH INC."	10-May-08 09:58 AM	

+="CN75986"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	18-Mar-08	49500.01	=""	="MINTER ELLISON"	10-May-08 09:58 AM	

+="CN75988"	"To correct the direct connectivity required to resolve an ongoing earthing problem."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	22-Nov-07	23-Dec-07	42614.47	=""	="STOWE AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN75989"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	17-Mar-08	79200.01	=""	="NOVA AEROSPACE"	10-May-08 09:58 AM	

+="CN75993"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	61859.16	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN75999"	"Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	66682.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 09:58 AM	

+="CN76007"	"PAINTING OF AIRCRAFT"	="Department of Defence"	10-May-08	="Aircraft"	16-Nov-07	16-Nov-07	42128.13	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 09:59 AM	

+="CN76020"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	40970.60	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76022"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	61455.90	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76023"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	49929.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76024"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jan-08	46960.84	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:00 AM	

+="CN76032"	"Software development service for the virtual battl"	="Department of Defence"	10-May-08	="Manufacturing support services"	21-Nov-07	20-May-08	55000.00	=""	="ICON RECRUITMENT"	10-May-08 10:00 AM	

+="CN76045"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Mar-08	78540.00	=""	="FLAVOUR SOLUTIONS PTY LTD"	10-May-08 10:01 AM	

+="CN76049"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	19-Nov-07	30-Oct-10	47141.21	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:01 AM	

+="CN76068"	"Fax Server Kit"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Nov-07	73575.70	=""	="CANON AUSTRALIA PTY LTD"	10-May-08 10:02 AM	

+="CN76069"	"Casual Staff as per standing offer 0506-211"	="Department of Defence"	10-May-08	="Environmental management"	24-May-07	30-Jun-08	50000.00	=""	="SEARSON BUCK WORKFORCE PTY LTD"	10-May-08 10:02 AM	

+="CN76070"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	12-Dec-07	62634.03	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76079"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	03-Jun-08	55000.00	=""	="LOTU'S BRIDGE"	10-May-08 10:03 AM	

+="CN76080"	"Desktop Installation Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	18-Jan-08	62284.50	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 10:03 AM	

+="CN76088"	"DEVELOP EDUCATION TOOLS FOR GREEN BUILDING REQUIRE"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	21-Nov-07	30-Jun-08	62150.00	=""	="GHD PTY LTD"	10-May-08 10:03 AM	

+="CN76089"	"LANDSCAPE MANAGEMENT"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Jun-07	30-Jun-08	60852.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:03 AM	

+="CN76092"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-SITE AUDITOR"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	21-Nov-07	30-Jun-08	56392.10	=""	="SMEC AUSTRALIA"	10-May-08 10:04 AM	

+="CN76094"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	07-Dec-07	69552.21	=""	="COMMANDER (ACT)"	10-May-08 10:04 AM	

+="CN76095"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	30-Jun-08	49500.00	=""	="DELOITTE TOUCHE TOHMATSU"	10-May-08 10:04 AM	

+="CN76096"	"FILM AND DVD PRODUCTION"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	21-Nov-07	30-Apr-08	56062.70	=""	="INNERPLAY"	10-May-08 10:04 AM	

+="CN76115"	"INSTALL, TEST & DOCUMENT FIBRE OPTIC CABLE INFRAST RUCTURE AS SPECIFIED INCL CABINET EARTH/INSTA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jun-07	26-Jun-07	48763.75	=""	="HEYDAY GROUP PTY LTD"	10-May-08 10:05 AM	

+="CN76117"	"Reconfigure Removable Walls of RFCR Swanbourne"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	56000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 10:05 AM	

+="CN76120"	"Notebook Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	21-Dec-07	79189.19	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:05 AM	

+="CN76130"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	71648.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:06 AM	

+="CN76138"	"Amended WBS for the Line item 3 as requested"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	30-Jun-08	45100.00	=""	="DEDALE ASIA PTY LTD"	10-May-08 10:06 AM	

+="CN76147"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	02-Apr-08	30-Jun-08	42677.80	=""	="DR E RUSSELL VICKERS"	10-May-08 10:06 AM	

+="CN76162"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Nov-07	51413.98	=""	="SUN MICROSYSTEMS AUST PTY LTD"	10-May-08 10:07 AM	

+="CN76166"	"IT user applications"	="Department of Defence"	10-May-08	="Seeds and bulbs and seedlings and cuttings"	24-Apr-08	30-Jun-08	79200.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	10-May-08 10:08 AM	

+="CN76170"	"AIR 9000 PH 4 & 6A - BLACKHAWK AND SEA KING REPLACEMENT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	76466.50	=""	="SKM"	10-May-08 10:08 AM	

+="CN76171"	"CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jul-08	63250.00	=""	="STURDY SEATING SYSTEMS"	10-May-08 10:08 AM	

+="CN76173"	"MOBILE PHONES"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Jun-08	43397.20	=""	="TELSTRA"	10-May-08 10:08 AM	

+="CN76188"	"SIMPSON BARRACKS, WATSONIA - LAND WARFARE ENTRE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Apr-08	30-Jun-09	41052.41	=""	="GROCON CONSTRUCTIONS PTY LTD"	10-May-08 10:09 AM	

+="CN76189"	"TRAINING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	78928.00	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 10:09 AM	

+="CN76193"	"supply of fresh meat brisbane"	="Department of Defence"	10-May-08	="Meat and poultry"	27-Nov-07	30-Jun-08	44000.00	=""	="TENDER PLUS PTY LTD"	10-May-08 10:09 AM	

+="CN76195"	"supply of groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	27-Nov-07	30-Jun-08	49500.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 10:09 AM	

+="CN76199"	"supply of fresh  milk"	="Department of Defence"	10-May-08	="Milk and butter products"	27-Nov-07	30-Jun-08	49500.00	=""	="PAULS LIMITED"	10-May-08 10:09 AM	

+="CN76202"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Apr-08	30-Jun-08	79572.45	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:10 AM	

+="CN76206"	"Implementation of Bushfire Management Plans at Singleton SAWR and RAAF Base Williamtown"	="Department of Defence"	10-May-08	="Fire prevention"	20-Mar-08	30-Jun-08	61499.90	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76207"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Software"	27-Nov-07	01-Mar-08	72907.44	=""	="CAE PROFESSIONAL SERVICES"	10-May-08 10:10 AM	

+="CN76211"	"Contract 0708-189 Under Standing Offer 0506-271-26"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	27-Nov-07	30-Jun-08	65950.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:10 AM	

+="CN76215"	"Dell poweredge computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	03-Dec-07	41958.40	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:10 AM	

+="CN76217"	"TRAINING"	="Department of Defence"	10-May-08	="Medical training and education supplies"	23-Nov-07	23-Nov-07	48000.00	=""	="TAFE NSW - SYDNEY INSTITUTE"	10-May-08 10:10 AM	

+="CN76218"	"Extra Regional Courier Services - SQld"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	44000.00	=""	="TOLL PRIORITY"	10-May-08 10:10 AM	

+="CN76219"	"MOVEMENT OF 10 X IMV'S FROM CULTANA TO 2/14 LHR (Q USE SOTG FUNDS"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	23-Nov-07	07-Dec-07	79750.00	=""	="FREIGHTWEST PTY LTD"	10-May-08 10:10 AM	

+="CN76221"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-09	45377.95	=""	="SME GATEWAY LIMITED"	10-May-08 10:11 AM	

+="CN76225"	"RESEARCH AGREMENT WITH SUE TYREMAN FROM THE SCHOOL OF COMPUTER & INFORMATION SCIENCE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Nov-07	23-Nov-07	47850.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	10-May-08 10:11 AM	

+="CN76233"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-May-08	54791.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:11 AM	

+="CN76237"	"Professional engineering support services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	23-Nov-07	20-Jun-08	55000.00	=""	="ADVANCED VTOL TECHNOLOGIES"	10-May-08 10:11 AM	

+="CN76244"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	02-Apr-07	31-Jan-08	49647.40	=""	="UNIVERSITY OF QUEENSLAND,"	10-May-08 10:12 AM	

+="CN76248"	"AIRFIELD LIGHTING MAINTENANCE AMBERLEY ALER FITOUT & ASSOCIATED WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	02-Apr-08	30-Jun-08	71504.40	=""	="NILSEN ELECTRIC (SA) PTY LTD"	10-May-08 10:12 AM	

+="CN76249"	"Miscellaneous minor new work , ACT/SNSW"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	23-Nov-07	30-Jun-08	52293.79	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:12 AM	

+="CN76252"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	55000.00	=""	="SME GATEWAY LIMITED"	10-May-08 10:12 AM	

+="CN76261"	"Contract 0708-190 Under Standing Offer 0506-271-26"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Nov-07	30-Jun-08	44990.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:13 AM	

+="CN76273"	"STINGER III 306M PORTABLE ARM1 DAY BASIC SETUP & T RAINING"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Nov-07	07-Dec-07	41356.48	=""	="SCANNING & INSPECTION PTY LTD"	10-May-08 10:13 AM	

+="CN76279"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Jun-08	50050.00	=""	="SMS CONSULTING GROUP LIMITED"	10-May-08 10:14 AM	

+="CN76281"	"Site Integration"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	16-Dec-07	60327.30	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:14 AM	

+="CN76291"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	31-Dec-07	51942.00	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:14 AM	

+="CN76296"	"4032"	="Department of Defence"	10-May-08	="Traffic control"	17-Aug-07	30-Jun-08	69300.00	=""	="RESOLVE FM"	10-May-08 10:15 AM	

+="CN76303"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-Jun-08	59840.00	=""	="ICON RECRUITMENT"	10-May-08 10:15 AM	

+="CN76304"	"SECURITY COMLIANCE WORKS - VARIOUS LOCATIONS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	50800.26	=""	="SPOTLESS"	10-May-08 10:15 AM	

+="CN76305"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-Jun-08	53856.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:15 AM	

+="CN76312"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Other sports"	05-May-08	30-Jun-08	57574.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:15 AM	

+="CN76313"	"POC: JON VAHLBERG CONTACT: 02 626 50751"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	14-Dec-07	48405.50	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 10:16 AM	

+="CN76317"	"contract coding for Air9000 Project"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	29-Jun-08	75075.00	=""	="PROGRESSIVE PEOPLE(AUSTRALIA) PTY L"	10-May-08 10:16 AM	

+="CN76320"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Utilities"	07-Aug-07	30-Sep-08	59700.00	=""	="NHULUNBUY CORPORATION LTD"	10-May-08 10:16 AM	

+="CN76323"	"HIRE OF BUSES ANNUAL CAMP"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	07-Oct-07	10-Jan-08	49489.00	=""	="BRISBANE BUS LINES"	10-May-08 10:16 AM	

+="CN76331"	"SECURE MOBILE PHONES FOR FLLA K"	="Department of Defence"	10-May-08	="Consumer electronics"	08-Jan-08	10-Jan-08	45327.99	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:17 AM	

+="CN76344"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	14-Apr-08	30-Jun-08	60972.77	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:17 AM	

+="CN76347"	"Financial Management Services"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	27-Jun-07	08-Jan-08	75786.50	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 10:17 AM	

+="CN76349"	"DEFENCE MEMBERS TRAVEL - QANTAS"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Nov-07	46360.91	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76357"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	79321.78	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76364"	"LANDING FEES AT AIRPORT"	="Department of Defence"	10-May-08	="Lease and rental of property or building"	28-Apr-08	30-Jun-08	44000.00	=""	="CANBERRA INTERNATIONAL AIRPORT PTY"	10-May-08 10:18 AM	

+="CN76373"	"MERIT SELECTION ADVISORY COMMITTEE"	="Department of Defence"	10-May-08	="Personnel recruitment"	10-Jan-08	28-Jan-08	48062.48	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 10:19 AM	

+="CN76375"	"Cash advance to official bank account"	="Department of Defence"	10-May-08	="Banking and investment"	17-Jan-08	17-Jan-08	73000.00	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:19 AM	

+="CN76376"	"PROVISION OF MAINTENANCE SUPPORT FOR DEPARTMENT OF DEFENCE VOICEMAIL."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Apr-08	30-Jun-08	69034.76	=""	="ACTIVE VOICE LLC"	10-May-08 10:19 AM	

+="CN76378"	"WATER & SEWERAGE"	="Department of Defence"	10-May-08	="Environmental management"	12-Nov-07	30-Jun-08	50000.00	=""	="WATER CORPORATION"	10-May-08 10:19 AM	

+="CN76382"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	23-Apr-08	30-Jun-08	44000.00	=""	="TOLL PRIORITY"	10-May-08 10:20 AM	

+="CN76384"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-May-08	30-Jun-08	44698.50	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 10:20 AM	

+="CN76387"	"building of Exhibition Booths for Land Warfare Con"	="Department of Defence"	10-May-08	="Sales and business promotion activities"	24-Oct-07	24-Oct-07	65415.74	=""	="HARRY THE HIRER PTY LTD"	10-May-08 10:20 AM	

+="CN76389"	"QANTAS ACCOUNT 05-511894 31DEC07"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	42759.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:20 AM	

+="CN76407"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	48289.77	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76417"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	67428.30	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:22 AM	

+="CN76427"	"VEHICLE LEASE FLLA  NOV - DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	02-Dec-07	21-Dec-07	49113.89	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76429"	"VEHICLE LEASE FLLA  NOV - DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Dec-07	21-Dec-07	47586.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76433"	"DEC UP ARMOURED VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	16-Dec-07	24-Dec-07	40690.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76444"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Dec-07	30-Dec-07	71330.39	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:23 AM	

+="CN76446"	"Venue hire for GPSL particiapnts accommodation and"	="Department of Defence"	10-May-08	="Accommodation furniture"	30-Nov-07	02-Jan-08	50987.75	=""	="HOLMESGLEN INSTITUTE OF TAFE"	10-May-08 10:23 AM	

+="CN76457"	"TSS CONTRACT"	="Department of Defence"	10-May-08	="Temporary personnel services"	30-Jan-08	30-Jan-08	66000.00	=""	="ASSOCIATED ELECTRONIC SERVICES"	10-May-08 10:24 AM	

+="CN76461"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	44000.00	=""	="CLEARZ PTY LTD"	10-May-08 10:24 AM	

+="CN76469"	"RAAF TINDAL FUEL FARM UPGRADE PHASE 1"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	30-Jun-08	40315.00	=""	="NORTHERN REFUELING MAINTENANCE P/L"	10-May-08 10:25 AM	

+="CN76471"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	12-Nov-07	30-Jun-08	41439.75	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:25 AM	

+="CN76476"	"Supply Industrial Gas RAAF Edinburgh"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	21-Apr-08	30-Jun-08	49500.00	=""	="BOC LIMITED"	10-May-08 10:25 AM	

+="CN76479"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	31-Dec-07	70746.63	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:25 AM	

+="CN76481"	"LEASING OF MANITENANCE OF 15 VEHICLES"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	31-Dec-07	40826.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:25 AM	

+="CN76488"	"SUPPLY OF 1 X DESKTOP SUPPORT OFFICER FOR PERIOD 07 JAN TO 26 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	26-Jun-08	49500.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	10-May-08 10:26 AM	

+="CN76491"	"BUILDING CONSTRUCTION FLLA AFG"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	23-Dec-07	07-Jan-08	50406.40	=""	="RECON INTERNATIONAL KANDAHAR"	10-May-08 10:26 AM	

+="CN76494"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	50000.01	=""	="BUSINESS CATALYST INTERNATIONAL"	10-May-08 10:26 AM	

+="CN76499"	"CAB FARES"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	10-Dec-07	10-Dec-07	43472.54	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:26 AM	

+="CN76500"	"FUJITSU FLEXSET 280-HS"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Nov-07	31-Jan-08	69877.50	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 10:26 AM	

+="CN76501"	"ARTC NOVEMBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	03-Jan-08	73417.08	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76503"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	42038.39	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76525"	"RENTAL PAYMENTS GURNEY BEACH APPARTMENTS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	01-Feb-08	01-Feb-08	47304.98	=""	="TAN SIEW CHIN SDN BHD"	10-May-08 10:28 AM	

+="CN76528"	"VENUE FOR THE ENVIRONMENTAL CONFERENCE 2007."	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-Nov-07	30-Jun-08	40384.00	=""	="MARQUE HOTEL CANBERRA"	10-May-08 10:28 AM	

+="CN76534"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	46068.00	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 10:29 AM	

+="CN76538"	"TECHNICAL CONTACT: GLYN DONALDSON PHONE; 08 8259 7704"	="Department of Defence"	10-May-08	="Medical training and education supplies"	29-Nov-07	12-Dec-07	71268.30	=""	="SOLIPSYS CORPORATION DBA RAYTHEON S"	10-May-08 10:29 AM	

+="CN76540"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	04-Feb-08	55770.12	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76547"	"WTSS OAKLEY. TO PROVIDE PM/CA SERVICES FOR DELIVERY FOR THE WTS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	30-Nov-07	30-Jun-08	51516.30	=""	="SKM"	10-May-08 10:29 AM	

+="CN76550"	"02-231986 DEC 07"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	31-Dec-07	30-Jan-08	50113.72	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76551"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	30-Nov-07	30-Jun-08	50872.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:30 AM	

+="CN76553"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	54390.99	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76555"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	58118.50	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76559"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	42876.99	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76573"	"02-244891 30NOV07 LINE ITEM 3073 - 3144"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	46927.39	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76576"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	64542.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:31 AM	

+="CN76578"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	46035.00	=""	="CLAYTON UTZ"	10-May-08 10:31 AM	

+="CN76586"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	44000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:32 AM	

+="CN76594"	"SPONSORSHIP FEES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	55000.00	=""	="RE-ENGINEERING AUSTRALIA FORUM LTD"	10-May-08 10:32 AM	

+="CN76599"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	22-Jan-08	31-Dec-08	58888.95	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76600"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	01-Oct-08	54180.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:33 AM	

+="CN76602"	"SUPPLY OF 1 X DESKTOP SUPPORT OFFICER FOR PERIOD 07 JAN TO 26 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	26-Jun-08	49500.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 10:33 AM	

+="CN76603"	"CLEANING AND AQIS INSPECTION  27JUL- 8 AUG 2007"	="Department of Defence"	10-May-08	="Aircraft"	04-Feb-08	29-Feb-08	49045.10	=""	="PDL TOLL"	10-May-08 10:33 AM	

+="CN76604"	"CONTACT: ROSS CRUDEN 08 723 6037 WR: 150130310"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	27-Nov-07	30-Jun-08	64797.33	=""	="CIC SECURE PTY LTD"	10-May-08 10:33 AM	

+="CN76613"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	31-Dec-07	05-Feb-08	57406.11	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76628"	"File 2007/1142912 refers Hourly rate of $70 + $7 GST for 400 hours"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	27-Nov-07	01-Apr-08	52800.00	=""	="NKL SERVICES PTY LTD"	10-May-08 10:34 AM	

+="CN76635"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2406142"	="Department of Defence"	10-May-08	="Legal services"	30-Mar-07	22-Jan-08	40127.78	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:35 AM	

+="CN76636"	"Provision of research services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	27-Nov-07	27-Jun-08	68200.00	=""	="DIBA GROUP PTY LTD"	10-May-08 10:35 AM	

+="CN76639"	"LEASING OF MANITENANCE OF 15 VEHICLES"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Nov-07	30-Nov-07	41916.44	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:35 AM	

+="CN76658"	"This order is placed IAW the Terms and Conditions 06/32"	="Department of Defence"	10-May-08	="Medical training and education supplies"	28-Nov-07	12-Dec-07	59618.33	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 10:36 AM	

+="CN76662"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	01-Jun-08	59840.00	=""	="ICON RECRUITMENT"	10-May-08 10:36 AM	

+="CN76665"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	22-Jan-08	41941.58	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:37 AM	

+="CN76678"	"MANUFACTURE BASE PLATES AS PER DRAWINGS"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Nov-07	31-Mar-08	48312.00	=""	="AUSTEK ENGINEERING TRADING PTY"	10-May-08 10:37 AM	

+="CN76679"	"Test & Tag"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	28-Feb-08	62351.33	=""	="SPOTLESS"	10-May-08 10:37 AM	

+="CN76682"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	41167.59	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:38 AM	

+="CN76685"	"PAYMENT TO OFFICAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	10-May-08	="Project management"	29-Jan-08	30-Jun-10	62471.09	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:38 AM	

+="CN76689"	"VEHICLE LEASE FLLA   -"	="Department of Defence"	10-May-08	="Motor vehicles"	05-Jan-08	29-Jan-08	47496.94	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76690"	"Purchase of IT Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	12-Mar-08	46228.47	=""	="COMMANDER (ACT)"	10-May-08 10:38 AM	

+="CN76691"	"CONTAINER  FLLA K"	="Department of Defence"	10-May-08	="Containers and storage"	15-Jan-08	29-Jan-08	41487.95	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76694"	"Contractor Support accessories and other manufactured goods."	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	30-Nov-07	75406.76	=""	="EBOR COMPUTING"	10-May-08 10:38 AM	

+="CN76698"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	30-Jun-08	64790.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:38 AM	

+="CN76701"	"CONTAINER  FLLA K"	="Department of Defence"	10-May-08	="Containers and storage"	26-Jan-08	29-Aug-08	74764.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:39 AM	

+="CN76707"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	30-Jun-10	57883.50	=""	="MSA CONTINGENT ACCOUNT"	10-May-08 10:39 AM	

+="CN76738"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	29-Jun-07	30-Jun-08	68640.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76744"	"PAYMENT TO OFFICAL BANK ACCOUNT PALAU"	="Department of Defence"	10-May-08	="Project management"	26-Nov-07	30-Jun-10	58388.12	=""	="MARITIME SURVEILLANCE"	10-May-08 10:41 AM	

+="CN76746"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	10-May-08	="Project management"	28-Nov-07	30-Jun-10	56908.50	=""	="MSA CONTINGENT ACCOUNT"	10-May-08 10:41 AM	

+="CN76751"	"For the services of engineer for F-111 SIS"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	04-Dec-07	30-Jun-08	65945.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:41 AM	

+="CN76754"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	30-Nov-07	49452.75	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76758"	"Harman Routine - 4500602441"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	43881.03	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76762"	"TAXI FARES"	="Department of Defence"	10-May-08	="Transportation services equipment"	12-Nov-07	12-Nov-07	44695.12	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:42 AM	

+="CN76767"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Dec-07	20-Dec-07	79677.40	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:42 AM	

+="CN76787"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	20-Dec-07	70114.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:43 AM	

+="CN76791"	"Development of Task Tracking System"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	30-Jun-08	54912.00	=""	="EDS (AUSTRALIA) PTY LTD"	10-May-08 10:44 AM	

+="CN76792"	"QANTAS ACCOUNT 1 AVN REGT OCTOBER 2007"	="Department of Defence"	10-May-08	="Passenger transport"	31-Oct-07	30-Nov-07	59991.25	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:44 AM	

+="CN76797"	"Working smart with MS Outlook Training"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Dec-07	31-Jan-08	46508.00	=""	="PRIORITY MANAGEMENT NSW"	10-May-08 10:44 AM	

+="CN76803"	"FREEZE DRYER VACUUM PRESSURE CAHMBER-DISMANTLE, SA NDBLAST, APPLY PROTECTIVE COATINGS & RE-ASSEM"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	30-Nov-07	08-Feb-08	46213.50	=""	="C & C BURROWS MAINTENANCE"	10-May-08 10:44 AM	

+="CN76807"	"TOUGHEND MONITORS FOR HMAS TOOWOOMBA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	21-Dec-07	46084.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:44 AM	

+="CN76811"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 10:45 AM	

+="CN76812"	"AFPO 14 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	40392.85	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76814"	"AFPO 16 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	49002.35	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76818"	"AFPO 19 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	67197.80	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76820"	"AFPO 20 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	56787.35	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76821"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	28-Dec-07	41944.21	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:45 AM	

+="CN76824"	"QANTAS PAYMENT 31 OCT07"	="Department of Defence"	10-May-08	="Transportation services equipment"	13-Nov-07	30-Dec-07	41326.18	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:45 AM	

+="CN76826"	"AFPO 5 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	47133.85	=""	="AUSTRALIA POST"	10-May-08 10:46 AM	

+="CN76835"	"Office Chairs JCC"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	30-Nov-07	30-Nov-07	50326.65	=""	="KAB SEATING SYSTEMS"	10-May-08 10:46 AM	

+="CN76838"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	30-Jun-08	63561.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76848"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	75339.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:47 AM	

+="CN76849"	"Payment for Custom Built Computers for Headline 07"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	62172.00	=""	="SEYMOUR COMPUTERS"	10-May-08 10:47 AM	

+="CN76854"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	07-Dec-07	49500.00	=""	="INNOVATION TECHNOLOGY SERVICES"	10-May-08 10:48 AM	

+="CN76863"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	09-Nov-07	20-Nov-07	69000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:48 AM	

+="CN76864"	"POC: Charles Bateson PHONE: 02 6265 0197"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	02-Dec-07	12-Dec-07	43500.00	=""	="EXCOM EDUCATION"	10-May-08 10:48 AM	

+="CN76880"	"Kuttabul Bld 807 Non Single leap LIA refurbishment"	="Department of Defence"	10-May-08	="Domestic kitchenware"	30-Nov-07	30-Jun-08	68060.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:49 AM	

+="CN76881"	"ARTC OCTOBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	19-Nov-07	56017.35	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76887"	"SHOWTIME TV SUBSCRIPTION"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	28-Aug-07	23-Nov-07	65933.57	=""	="GULF DTH FZ LLC"	10-May-08 10:50 AM	

+="CN76899"	"VEHICLE LEASE FLLA K NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	03-Nov-07	24-Nov-07	53820.57	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76901"	"VEHICLE LEASE FLLA K NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	18-Nov-07	24-Nov-07	40475.88	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76905"	"VEHICLE LEASE FLLA  NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	04-Nov-07	25-Nov-07	48225.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:51 AM	

+="CN76906"	"INSTRUCTIONS"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	11-Feb-08	57344.95	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 10:51 AM	

+="CN76907"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	30-Nov-07	75000.00	=""	="MINTER ELLISON"	10-May-08 10:51 AM	

+="CN76910"	"Provision of Contractor Services-Julianne Thornton for period Dec 2007-June 2008"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	22-Nov-07	25-Jun-08	44000.00	=""	="UNIVERSAL RECRUITMENT"	10-May-08 10:51 AM	

+="CN76915"	"op astute RPT airfares"	="Department of Defence"	10-May-08	="Aircraft"	30-Sep-07	30-Jun-08	59016.48	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:51 AM	

+="CN76919"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Nov-07	22-Nov-07	48845.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:51 AM	

+="CN76935"	"RENTAL OF APPARTMENTS AT SRI PANGKOR"	="Department of Defence"	10-May-08	="Accommodation furniture"	13-Dec-07	13-Dec-07	71938.03	=""	="ELCEETEE TRUST -E-"	10-May-08 10:52 AM	

+="CN76936"	"Terms and Conditions of this contract are as negot Commonwealth of Australia and METAVR."	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	28-Feb-09	43062.03	=""	="METAVR INC."	10-May-08 10:53 AM	

+="CN76939"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	09-Dec-07	13-Dec-07	53254.43	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:53 AM	

+="CN76942"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	22-Nov-07	30-Jun-12	62283.62	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:53 AM	

+="CN76948"	"Contract no: 0708-199"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	22-Nov-07	30-Jun-08	60054.83	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:53 AM	

+="CN76950"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	21-Dec-07	47049.31	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:53 AM	

+="CN76954"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	03-Dec-07	77638.00	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:53 AM	

+="CN76956"	"FREIGHT CHARGES 0708"	="Department of Defence"	10-May-08	="Transportation services equipment"	22-Nov-07	30-Jun-08	44000.00	=""	="TNT AUSTRALIA"	10-May-08 10:54 AM	

+="CN76982"	"PSP for Environment team"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	22-Nov-07	30-Jun-08	79511.20	=""	="SMEC HOLDINGS PTY LTD"	10-May-08 10:55 AM	

+="CN76990"	"OFFICE CHAIRS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Jan-08	28-Jun-08	59840.00	=""	="ARTEIL PTY LTD"	10-May-08 11:41 AM	

+="CN76998"	"Project management services"	="Department of Defence"	10-May-08	="Temporary personnel services"	16-Jan-08	30-Jun-08	65945.44	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:41 AM	

+="CN77002"	"Server equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	30-Mar-08	67526.25	=""	="COMPUTERCORP PTY LTD"	10-May-08 11:41 AM	

+="CN77005"	"HARDWARE FOR NIDA CLASSROOM SETUP"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	31-Jan-08	68002.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:42 AM	

+="CN77015"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Apr-08	77000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 11:42 AM	

+="CN77021"	"TRAINING FOR NIDA STAFF"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	29-Feb-08	72600.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:42 AM	

+="CN77025"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	30-Jan-08	30-Jul-08	47190.00	=""	="L E MCDOWELL PTY LTD"	10-May-08 11:43 AM	

+="CN77027"	"order is placed against Standing offer SON 32916 ."	="Department of Defence"	10-May-08	="Professional engineering services"	01-Feb-08	24-Apr-08	49500.00	=""	="AMBROSE LOGISTICS CONSULTING"	10-May-08 11:43 AM	

+="CN77029"	"SN02493- HQJOC Project C41 External Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	70847.22	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:43 AM	

+="CN77031"	"TSS Contract -  Documentation of Underwater Acoust ic Measuring Apparatus"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	01-Feb-08	16-May-08	49600.00	=""	="CANTAB SCIENTIFIC"	10-May-08 11:43 AM	

+="CN77038"	"GT186-300 Amplifier"	="Department of Defence"	10-May-08	="Electrical components"	17-Jan-08	15-Apr-08	61669.08	=""	="INSTRUMENTS FOR INDUSTRIES INC. DBA"	10-May-08 11:43 AM	

+="CN77047"	"PROVISION OF DENTAL ASSISTANT SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	48999.50	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77051"	"Accommodation Venue hire & catering for conference"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	29-Feb-08	59450.00	=""	="HEMISPHERE CONFERENCE CENTRE"	10-May-08 11:44 AM	

+="CN77053"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	11-Feb-08	48243.15	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:44 AM	

+="CN77066"	"portable tunablediode CO monitor with datalogging"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	16-Jan-08	29-Feb-08	45294.88	=""	="SOUTHWEST SCIENCES INC"	10-May-08 11:45 AM	

+="CN77069"	"38 SQN COLLOCATION DELIVERY-PMCA 38SQN VARIATION TO PMCA AIR 9000 PHA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	64900.00	=""	="THINC PROJECTS PTY LTD"	10-May-08 11:45 AM	

+="CN77076"	"Building Modifications"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	16-Jan-08	30-Jun-08	79200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:46 AM	

+="CN77092"	"WATSONIA:EFENCE FORCE SCHOOL OF SIGNALS(DFSS) PROVIDE PROBITY ADVICE TO THE PROJECT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	48400.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 11:47 AM	

+="CN77095"	"FIELD PACKS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	15-Jan-08	15-Jan-08	46612.50	=""	="AUS WEBGEAR PTY LTD"	10-May-08 11:47 AM	

+="CN77099"	"POC: MATTHEW EDWARDS CONTACT: 02 626 50789"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	28-Mar-08	60500.00	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:47 AM	

+="CN77114"	"E8257D-PSG-ANALOG SIGNAL GENERATOR / E8257D HIGH OUTPUT POWER OPTION / LOW NOISE PERFORMANCE OPTION"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Feb-08	14-Mar-08	68536.57	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:48 AM	

+="CN77131"	"Cargo tpt, Vehicle hire for Numbulwar ISO OP Outreach"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	56665.40	=""	="PDL TOLL"	10-May-08 11:50 AM	

+="CN77138"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	14-Feb-08	69952.49	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:50 AM	

+="CN77139"	"SIGNAL GENERATOR"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	15-Jan-08	28-Feb-08	63822.88	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:50 AM	

+="CN77141"	"Software design and Development"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	30-May-08	63360.00	="2007/1066149"	="EBOR COMPUTING"	10-May-08 11:50 AM	

+="CN77142"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	60439.50	=""	="ROBERT A EDWARDS"	10-May-08 11:51 AM	

+="CN77147"	"Phase 2 - Agreement"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	04-Feb-08	55000.00	=""	="THE FLINDERS UNIVERSITY OF SA"	10-May-08 11:51 AM	

+="CN77157"	"Time domain and simulator"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	14-Feb-08	45287.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 11:51 AM	

+="CN77158"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	53460.00	=""	="FREEBODY COGENT PTY LTD"	10-May-08 11:52 AM	

+="CN77160"	"HARDWARE COMPONENTS REQUIRED BY NIDA CLASSROOM ENG CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	16-Jan-08	66000.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:52 AM	

+="CN77162"	"TSS Contract Firing Officer for High Explosives Firing Comples WSD"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jan-08	30-Jun-08	50723.75	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:52 AM	

+="CN77163"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	14-Feb-08	52648.12	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:52 AM	

+="CN77165"	"SA2292 ROAD MOVEMENTS FUEL AWNING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:52 AM	

+="CN77169"	"S5180, WR's 300051546, 300051545, 300051541, 30005 300071215, 300051539. Sydney Central Infrast"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	46099.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 11:52 AM	

+="CN77174"	"RELOCATION OF DSTO FROM PYRMONT TO ATP REFERN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	61600.00	=""	="NTSS"	10-May-08 11:53 AM	

+="CN77175"	" Facility Refurbishment "	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:53 AM	

+="CN77179"	"POC:STEVE CAUSER IT DEVICES 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	05-Mar-08	54820.17	=""	="SUN MICROSYSTEMS"	10-May-08 11:53 AM	

+="CN77181"	"INTERIM WORKS-ARMY RECRUIT TRAINING CENTRE, KAPOOK MEDICRAFT HILL-ROM FOR KAPOOKA A4500."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46046.00	=""	="MEDICRAFT HILL-ROM AUSTRALIA PTY"	10-May-08 11:53 AM	

+="CN77187"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	31-Mar-08	55312.28	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:53 AM	

+="CN77192"	"C-130J Structural integrity Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	16-Jan-08	30-Jun-08	58502.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 11:54 AM	

+="CN77200"	"Vinyl & carpet"	="Department of Defence"	10-May-08	="Interior finishing materials"	18-Jan-08	31-Jan-08	63027.80	=""	="DARWIN CARPETS & VINYLS PTY LTD"	10-May-08 11:54 AM	

+="CN77202"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	18-Jan-08	25-Jan-08	55000.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 11:54 AM	

+="CN77210"	"AIR MOBILE MISSION AND TASK ANALYSIS REPORT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	21-Jan-08	21-Jan-08	65340.00	=""	="TENIX DEFENCE PTY LTD"	10-May-08 11:55 AM	

+="CN77230"	"SA1271 VEHICLE RAMP & WASHDOWN FAC WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	01-Feb-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77234"	"Complex Procurement: Contract 0708-229 Human Factor - Lvl 2, Project Air 7000, Conduct re"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Feb-08	30-Jun-08	50999.30	=""	="DEDALE ASIA PTY LTD"	10-May-08 11:56 AM	

+="CN77247"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	51830.00	=""	="CLAYTON UTZ"	10-May-08 11:57 AM	

+="CN77253"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	44300.00	=""	="CLAYTON UTZ"	10-May-08 11:57 AM	

+="CN77255"	"HQJOC PROJECT-THALES (SUBCOMMCEN PC & KVM EQUIPTME"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	46242.75	=""	="THALES AUSTRALIA"	10-May-08 11:57 AM	

+="CN77258"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	66040.92	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:57 AM	

+="CN77265"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	21-Jan-08	23-Jun-08	48462.92	=""	="YTEK PTY LTD"	10-May-08 11:58 AM	

+="CN77271"	"Provision of Network Centric Warfare (NCW) Study Data Analysis Support Services"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Jan-08	12-May-08	65000.00	=""	="JACOBS AUSTRALIA"	10-May-08 11:58 AM	

+="CN77273"	"POC:Greg Lightfoot IT DEVICES 02 626 60083"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Jan-08	15-Feb-08	42680.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 11:58 AM	

+="CN77276"	"ADVERTISING"	="Department of Defence"	10-May-08	="Office supplies"	22-Jan-08	30-Jun-08	42660.75	=""	="GEORGE PATTERSON Y & R"	10-May-08 11:59 AM	

+="CN77280"	"MEDICAL SERVICES 322HSF TINDAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	61900.00	=""	="NT MEDIC PTY LTD"	10-May-08 11:59 AM	

+="CN77296"	"RAAF RICHMOND TRI METS PROJECT CONTRACT ADMINISTRATION FOR TRI-METS DELIVERY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	46200.00	=""	="CARSON GROUP PTY LTD"	10-May-08 12:00 PM	

+="CN77298"	"Manufacture of a Duplicate Virtual MANPADS Environment"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Apr-08	67645.60	=""	="SYDAC PTY LTD"	10-May-08 12:00 PM	

+="CN77300"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	28-Mar-08	41382.23	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:00 PM	

+="CN77302"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	56971.01	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:00 PM	

+="CN77310"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	73330.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:01 PM	

+="CN77313"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	30-Mar-08	63800.00	=""	="IBM AUSTRALIA PTY LTD"	10-May-08 12:01 PM	

+="CN77315"	"Lexmark Mono Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	78430.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 12:01 PM	

+="CN77326"	"HQJOC PROJECT-CORPORATE EXPRESS (ENCRYPTORS)"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	42801.68	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:02 PM	

+="CN77329"	"Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	79640.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 12:02 PM	

+="CN77331"	"PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	50209.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:02 PM	

+="CN77333"	"S5180, WR 300069472. DS-SC Regional Physical Infra 07-08. Develop an EMS for HMAS Watson that is int"	="Department of Defence"	10-May-08	="Environmental control systems"	23-Jan-08	30-Jun-08	54909.80	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:02 PM	

+="CN77341"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	22-Jan-08	01-Jun-10	45853.70	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:02 PM	

+="CN77345"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Jan-08	31-Dec-08	40000.00	=""	="AUSTRALIAN MILITARY HISTORY"	10-May-08 12:03 PM	

+="CN77350"	"HARDWARE ITEMS REQUIRED FOR NIDA CLASSROOM SET UP HMAS CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	18-Jan-08	65041.90	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 12:03 PM	

+="CN77357"	"fresh meat wbta"	="Department of Defence"	10-May-08	="Meat and poultry"	22-Jan-08	30-Jun-08	53182.93	=""	="RENA WHOLESALE MEATS"	10-May-08 12:03 PM	

+="CN77358"	"additional disk shelf"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	28-Feb-08	43283.30	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	10-May-08 12:03 PM	

+="CN77359"	"fresh fruit & vegetables wbta"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	22-Jan-08	30-Jun-08	42653.00	=""	="FARMERS FRUIT EXCHANGE"	10-May-08 12:03 PM	

+="CN77360"	"HAND HELD RADIOS - DEFENCE NETWORK"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	18-Jan-08	28-Feb-08	44517.00	=""	="CAPRICORN COMMUNICATIONS"	10-May-08 12:04 PM	

+="CN77367"	"BULK GROCERY SUPPLIES FOR HMAS CAIRNS BASED VESSEL FOR THIS FINANCIAL YEAR (07/08)"	="Department of Defence"	10-May-08	="Food and beverage industries"	21-Jan-08	30-Jun-08	80000.00	=""	="BID VEST"	10-May-08 12:04 PM	

+="CN77440"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	09-May-08	55000.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:08 PM	

+="CN77449"	"HOLSWORTHY-SPECIAL OPERATIONS WORKING ACCODATION & STAGE 1"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-08	60891.60	=""	="BACTEC SE ASIA PTY LTD"	10-May-08 12:09 PM	

+="CN77463"	"POC: BERT HUNTER CONTACT 08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	30-May-08	63234.00	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:09 PM	

+="CN77464"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Jan-08	30-Jun-08	65500.00	=""	="CLAYTON UTZ"	10-May-08 12:10 PM	

+="CN77465"	"Under SO 45190 Provision Of Project & Engineering Services to DSTO"	="Department of Defence"	10-May-08	="Professional engineering services"	26-Jan-08	20-Jun-08	76703.00	=""	="DARONMONT TECHNOLOGIES PTY LTD"	10-May-08 12:10 PM	

+="CN77466"	"BACKUP SYSTEM TAPE UNIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 12:10 PM	

+="CN77473"	"POC: Michael Mitchell Contact: 02 62650340"	="Department of Defence"	10-May-08	="Office supplies"	25-Jan-08	20-Mar-08	55407.01	=""	="HUTCHINSON COMMUNICATIONS"	10-May-08 12:10 PM	

+="CN77500"	"Replace faulty lines and cabling to multiple buildings within DEOG."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	29-Jan-08	01-Mar-08	48180.00	=""	="STOWE AUSTRALIA PTY LTD"	10-May-08 12:12 PM	

+="CN77514"	"bottled water"	="Department of Defence"	10-May-08	="Non alcoholic beverages"	08-Jan-08	30-Jun-08	49500.00	=""	="COOROY MOUNTAIN SPRING WATER"	10-May-08 12:12 PM	

+="CN77518"	"MILITARY LANDINGS AT GILGANDRA AERODROME JULY 07 TO JUNE 08"	="Department of Defence"	10-May-08	="Transport operations"	08-Jan-08	30-Jun-08	55000.00	=""	="GILGANDRA SHIRE COUNCIL"	10-May-08 12:13 PM	

+="CN77521"	"Software engineer/ Computer programmer"	="Department of Defence"	10-May-08	="Temporary personnel services"	29-Jan-08	27-Jun-08	57340.80	=""	="DAVTEC IT PTY LTD"	10-May-08 12:13 PM	

+="CN77522"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-May-08	40480.00	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 12:13 PM	

+="CN77525"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	58950.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	10-May-08 12:13 PM	

+="CN77544"	"2 PERS HIRE (1 X VM,1 X RPS CLK/STM) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	48823.07	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77556"	"Professional service for a composites engineer to to test aerospace grade adhesives"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Jan-08	30-Jun-08	66000.00	=""	="AVIATION & GENERAL PTY LTD"	10-May-08 12:15 PM	

+="CN77557"	"2 X 5700 BASE RECEIVERS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	24-Jan-08	15-Feb-08	55990.00	=""	="ULTIMATE POSITIONING"	10-May-08 12:15 PM	

+="CN77561"	"Acer Veriton T661 Mini Tower PC & Acer P223WB 22" widescreen LCD Monitor x Qty 35"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	15-Feb-08	54846.00	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:15 PM	

+="CN77563"	"Avision Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	46332.12	=""	="COMMANDER (ACT)"	10-May-08 12:15 PM	

+="CN77564"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	09-Jan-08	30-Jun-08	43175.00	=""	="BALLISTIC SYSTEMS PTY LTD"	10-May-08 12:15 PM	

+="CN77572"	"POC:ANDREW MCCAHON 02 626 50394"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	08-Feb-08	66292.63	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:15 PM	

+="CN77576"	"RAAF EDN FUEL - 07/08 Technical Authority: Robyn Williams"	="Department of Defence"	10-May-08	="Fuels"	09-Jan-08	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:16 PM	

+="CN77580"	"meat brisbane"	="Department of Defence"	10-May-08	="Meat and poultry"	09-Jan-08	30-Jul-08	44000.00	=""	="TENDER PLUS PTY LTD"	10-May-08 12:16 PM	

+="CN77586"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	30-Apr-08	46711.98	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:16 PM	

+="CN77597"	"Building removal"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	27-Feb-08	42183.72	=""	="WATTS CONSTRUCTIONS"	10-May-08 12:17 PM	

+="CN77603"	"Deleading of 23m range"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	09-Jan-08	30-Jun-08	51506.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:17 PM	

+="CN77605"	"ETHERDRIVE STORAGE PLATFORM / REDUNDANT LINUX NAS GATEWAY / CUDA 7200"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	16-Jan-08	61941.00	=""	="MCR COMPUTER RESOURCES PTY LTD"	10-May-08 12:17 PM	

+="CN77608"	"AHS-NQ Aspen Service Provider Transition Commercial Effort - $4435.14"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	31-Dec-11	43581.05	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 12:18 PM	

+="CN77610"	"POC: J.McClusky 02 6127 7069"	="Department of Defence"	10-May-08	="Hardware"	25-Jan-08	22-Feb-08	59070.00	=""	="IBM AUSTRALIA LTD"	10-May-08 12:18 PM	

+="CN77618"	"POC:ANDREW WATSON IT DEVICES 02 626 50379"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	15-Feb-08	70209.94	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:18 PM	

+="CN77628"	" PROFESSIONAL FEES "	="Department of Defence"	10-May-08	="Legal services"	14-Jan-08	30-Jun-08	57758.14	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:19 PM	

+="CN77629"	"SN02298 - ACT/SNSW WATER & AIR QUALITY MONITORING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	48250.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:19 PM	

+="CN77634"	"1200 SERIES BINARY PUMP SL & 1200 SERIES STANDARD AUTOSAMPLER"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	14-Jan-08	11-Feb-08	74052.02	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 12:19 PM	

+="CN77638"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	71471.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:19 PM	

+="CN77640"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	24-Jan-08	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 12:19 PM	

+="CN77641"	"WA994948 COC-MINOR REPAIRS & MAINTENANCE TO ISLAND FACILITIES"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	14-Jan-08	30-Jun-08	49545.45	=""	="COCOS MANPOWER"	10-May-08 12:19 PM	

+="CN77642"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	49768.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:19 PM	

+="CN77654"	"R2 vault re-certification"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	11-Dec-07	30-Jun-08	48389.01	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:20 PM	

+="CN77655"	"POC: DAVID BEGGS CONTACT: 02 626 69158"	="Department of Defence"	10-May-08	="Software"	14-Jan-08	28-Jan-08	47077.39	=""	="PLANWELL TECHNOLOGY"	10-May-08 12:20 PM	

+="CN77662"	"Aeronautical Engineer for Com pendium work"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Dec-07	30-Jun-08	48633.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:21 PM	

+="CN77664"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	11-Dec-07	21-Dec-07	59664.00	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:21 PM	

+="CN77665"	"SUN STORAGE TEK 6140 ARRAY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	68216.50	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77667"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	15-Jan-08	30-Sep-08	59015.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:21 PM	

+="CN77668"	"LAUNDRY FOR DENTAL AND HOSPITAL FY0708"	="Department of Defence"	10-May-08	="Cleaning Equipment and Supplies"	11-Dec-07	30-Jun-08	49500.00	=""	="PALEYS DRY CLEANERS"	10-May-08 12:21 PM	

+="CN77679"	"AIR 8000 PHASE 3-HEAVY AIR LIFT(HAL)FACILITIES PROVIDE PROBITY ADVICE TO THE PROJECT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	15-Jan-08	30-Jun-08	55000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:21 PM	

+="CN77680"	"Upgrading of HQACG Video Conferencing Facility"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	11-Dec-07	30-Jun-08	59328.30	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 12:21 PM	

+="CN77683"	"VR-Forces and VR-Link Runtime Licences and Annual Maintenance"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	31-Mar-08	43505.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	10-May-08 12:22 PM	

+="CN77684"	"ACCOMMODATION"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	11-Dec-07	11-Dec-07	46299.46	=""	="WALDORF APARTMENT HOTEL"	10-May-08 12:22 PM	

+="CN77691"	"Ken Gutterson for stocktake"	="Department of Defence"	10-May-08	="Tools and General Machinery"	14-Jan-08	30-Jun-08	55440.00	=""	="CORDELTA PTY LTD"	10-May-08 12:22 PM	

+="CN77693"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Jan-08	23-Jun-08	56799.60	=""	="BALL SOLUTIONS GROUP PTY LTD"	10-May-08 12:22 PM	

+="CN77694"	"INSTALLATION OF DSN / DRN AT CANUNGRA"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	11-Dec-07	30-Jun-08	47564.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:22 PM	

+="CN77696"	"Consultancy Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Dec-07	07-Mar-08	71224.99	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 12:22 PM	

+="CN77702"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	48375.72	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77708"	"AUDIT OF TELECOMMUNICATIONS"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	01-Feb-08	43835.00	=""	="ALLIED TECHNOLOGIES"	10-May-08 12:23 PM	

+="CN77711"	"Professional Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Jun-08	65298.54	=""	="REMOTE PTY LTD"	10-May-08 12:23 PM	

+="CN77714"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	22-Feb-08	41580.00	=""	="TELEPHONE WRECKERS PTY LTD"	10-May-08 12:23 PM	

+="CN77718"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	22-Feb-08	69960.00	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:23 PM	

+="CN77724"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	12-Dec-07	20-Nov-10	56592.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:24 PM	

+="CN77734"	"Supply and Installation of 26 Blister Safes"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	11-Dec-07	30-Jun-08	46092.04	=""	="BRISBANE LOCKSMITHS PTY LTD"	10-May-08 12:24 PM	

+="CN77739"	"Specialist Training"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jan-08	30-Jun-08	67500.13	=""	="CENTRAL QLD UNI"	10-May-08 12:25 PM	

+="CN77743"	"BACKUP SYSTEM TAPE UNIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 12:25 PM	

+="CN77749"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	30-Jun-08	54965.63	=""	="FCS PREMIER PTY LTD"	10-May-08 12:25 PM	

+="CN77753"	"SUPPLY & INSTALL 5 X POWER RECTIFIERS TO REPLACE THE FAULTY ITEMS."	="Department of Defence"	10-May-08	="Distribution and Conditioning Systems and Equipment and Components"	10-Dec-07	31-Jan-08	78347.50	=""	="CPS NATIONAL"	10-May-08 12:25 PM	

+="CN77758"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 12:26 PM	

+="CN77763"	"COMPUTER TAPES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	10-Dec-07	45100.00	=""	="ENIGMA BUSINESS PRODUCTS"	10-May-08 12:26 PM	

+="CN77765"	"EDUCATIONAL DELIVERY OF AEROSPACE VEHICLE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:26 PM	

+="CN77777"	"NON CAMPAIGN ADVERTISING WILL ASSIST IN DELIVERING FOR AIR FORCE RECRUITING PRIORITIES. TR 10.12.07"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Jun-08	43109.06	=""	="HMA BLAZE PTY LIMITED"	10-May-08 12:27 PM	

+="CN77778"	"Executive support to DSAD"	="Department of Defence"	10-May-08	="Temporary personnel services"	11-Jan-08	30-Jun-08	60885.00	=""	="HAYS SPECIALIST RECRUITMENT"	10-May-08 12:27 PM	

+="CN77783"	"CONSTRUCTION"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	31-Jan-08	44370.70	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:27 PM	

+="CN77796"	"GSS Facilities Appraisal Technical Authority: Fess Parker"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	11-Jan-08	30-Jun-08	42900.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	10-May-08 12:28 PM	

+="CN77801"	"HIRE OF PERSONNEL IAW STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	10-Dec-07	30-Jun-08	49168.90	=""	="DRAKE INTERNATIONAL"	10-May-08 12:28 PM	

+="CN77803"	"NBS Reference: CDM 362-06-52-08 CIOG Activity: CIOG597/07"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	04-Jan-08	49468.35	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:28 PM	

+="CN77804"	"CISCO Switches"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	69910.50	=""	="EMC GLOBAL HOLDINGS COMPANY"	10-May-08 12:28 PM	

+="CN77805"	"VALUE BASED ORDER FOR TELEPHONE COSTS"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Dec-07	28-May-08	44000.00	=""	="TELSTRA CORPORATION LTD"	10-May-08 12:28 PM	

+="CN77815"	"Replace alarm system"	="Department of Defence"	10-May-08	="Security systems services"	11-Dec-07	17-Dec-07	72370.10	=""	="HONEYWELL LIMITED INC IN NSW SPACE"	10-May-08 12:29 PM	

+="CN77817"	"NAVIGATIONAL CHARTS FOR ADF PILOTS"	="Department of Defence"	10-May-08	="Paper products"	11-Dec-07	31-Oct-08	69154.89	=""	="AIRSERVICES AUSTRALIA"	10-May-08 12:29 PM	

+="CN77818"	"Contract No. 0708-212 JSTAB"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Jan-08	30-Jun-08	41540.40	=""	="FORTBURN PTY LTD"	10-May-08 12:29 PM	

+="CN77825"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	11-Dec-07	30-Jun-08	47048.67	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:29 PM	

+="CN77827"	"Provision of Professional Engineering Services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Dec-07	30-Jun-08	54942.62	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:29 PM	

+="CN77829"	"Remedial Works in ADFRU, APA and Medical Centre to Comms Cabinets and Active Equipment to Comply wit"	="Department of Defence"	10-May-08	="Components for information technology or broadcasting or telecommunications"	11-Dec-07	30-Jun-08	50575.61	=""	="HAMMETT TECHNOLOGIES"	10-May-08 12:30 PM	

+="CN77831"	"DELIVER ZBUS8401 TEAM PROJECT TO ATSOC STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77835"	"DELIVER ZITE7205 FUNDAMENTS OF SURVEILLANCE TECHNOLOGIES TO STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77839"	"DELIVER ZITE8226 SYSTEMS ENGINEERING PRACTICE TO ATSOC STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77842"	"PRE ENGAGEMENT MEDICALS FOR APS EMPLOYEES"	="Department of Defence"	10-May-08	="Patient exam and monitoring products"	31-Jan-08	30-Jun-08	44000.00	=""	="HEALTH FOR INDUSTRY"	10-May-08 12:30 PM	

+="CN77848"	"Switches/LC connectors"	="Department of Defence"	10-May-08	="Electrical components"	31-Jan-08	29-Feb-08	55565.62	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 12:31 PM	

+="CN77850"	"Admin XP Professional, SOE Support, Fast Track Project Management - all Training"	="Department of Defence"	10-May-08	="Master control systems"	30-Jan-08	14-Apr-08	78784.40	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 12:31 PM	

+="CN77854"	"SUSTAINMENT FLIGHTS (01FEB - 30JUN08) FOR 114MCRU"	="Department of Defence"	10-May-08	="Transport operations"	30-Jan-08	30-Jun-08	53106.90	=""	="PDL TOLL"	10-May-08 12:31 PM	

+="CN77859"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	62387.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77861"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	56806.20	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77863"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	62387.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77871"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Mar-08	65648.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 12:32 PM	

+="CN77874"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	40814.40	=""	="DRAKE INTERNATIONAL"	10-May-08 12:32 PM	

+="CN77876"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	40131.08	=""	="SUN MICROSYSTEMS"	10-May-08 12:32 PM	

+="CN77880"	"S5180, WR's 300066414, 300066427. Sydney Central P Apprasials FY 07-08 Technical Services Aspec"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	41094.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:32 PM	

+="CN77884"	"100kHz transducer."	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	27-Jun-08	51700.00	=""	="BIOLAB (AUST) PTY LTD"	10-May-08 12:33 PM	

+="CN77886"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	31-Jan-08	28-Feb-08	47668.54	=""	="SECOM TECHNICAL SERVICES"	10-May-08 12:33 PM	

+="CN77888"	"Develope SSI serial converter and power manager as per quote 847a."	="Department of Defence"	10-May-08	="Master control systems"	31-Jan-08	18-Apr-08	67867.80	=""	="CPE SYSTEMS PTY LTD"	10-May-08 12:33 PM	

+="CN77891"	"MAR Data Analysis Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	66220.00	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:33 PM	

+="CN77896"	"Communications Modelling for Red and Blue Teaming in the SIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	18-Apr-08	55000.00	=""	="BALL SOLUTIONS GROUP"	10-May-08 12:33 PM	

+="CN77898"	"CONTRACTOR PROVIDE CDD FOR CCDG"	="Department of Defence"	10-May-08	="Project management"	31-Jan-08	30-Jun-08	73920.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	10-May-08 12:33 PM	

+="CN77905"	"HQJOC PROJECT-SCEL PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	76774.50	=""	="SCEL PTY LTD"	10-May-08 12:34 PM	

+="CN77909"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	53900.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77918"	"Prosthodontist"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	31-Jan-08	30-Jun-08	77394.24	=""	="G & E WOOLLEY PROSTHODONIST &"	10-May-08 12:34 PM	

+="CN77921"	"ACCOMMODATION AND FACILITIES HIRE"	="Department of Defence"	10-May-08	="Education and Training Services"	13-Dec-07	13-Dec-07	59919.60	=""	="SEA WORLD NARA HOTEL PTY LTD"	10-May-08 12:35 PM	

+="CN77922"	"Machine parts for repair and maintenance services on Transonic Wind Tunnel"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	31-Jan-08	31-Mar-08	47450.73	=""	="AERO SYSTEMS ENGINEERING INC"	10-May-08 12:35 PM	

+="CN77948"	"Conservation Management Plan Officers Mess"	="Department of Defence"	10-May-08	="Environmental management"	30-Jan-08	30-Jun-08	64350.00	=""	="RESOLVE FM"	10-May-08 12:36 PM	

+="CN77953"	"INCREASED CAPACITY TO DSVE NATIONAL BRIDGE."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	13-Dec-07	28-Feb-08	73921.18	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 12:36 PM	

+="CN77956"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-May-08	73700.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77958"	"SOCIAL FACTORS IN RADICALISATION IN THE AUSTRALIAN CONTEXT DEVELOPMENT."	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	30-May-08	60209.14	=""	="KAZ GROUP PTY LTD"	10-May-08 12:37 PM	

+="CN77963"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	29-Jan-08	30-Jun-08	72176.94	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:37 PM	

+="CN77965"	"janes publications - aircraft upgrades yearbook / all the worlds aircraft yearbook"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	30-May-08	63094.90	=""	="IHS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77969"	"Cabinets for R1 and R8"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	30-Jun-08	57785.41	=""	="CIC SECURE PTY LTD"	10-May-08 12:37 PM	

+="CN77970"	"BOOKS"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	12-Dec-07	19-Dec-07	45401.76	=""	="IHS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77981"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	29-Feb-08	40890.12	=""	="INSITEC"	10-May-08 12:38 PM	

+="CN77985"	"CONSULTANCY FOR UPGRADE OF SECURITY PANELS"	="Department of Defence"	10-May-08	="Security and control equipment"	30-Jan-08	30-Jun-08	79700.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:38 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to10May2008val80000to300000.xls
@@ -1,1 +1,678 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73931"	"CMS Licence Renewal 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-Mar-08	20-Mar-09	109613.00	=""	="Interwoven Australia Pty Ltd"	08-May-08 08:55 AM	

+="CN73940"	"Legal services"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	18-Dec-07	30-Jun-08	230000.00	=""	="Lipman Karas (Barristers and Solicitors)"	08-May-08 09:46 AM	

+="CN73975"	"  Printing of: NAT 5196-1.2003.   Qty: 8000000  "	="Australian Taxation Office"	08-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	20-Jun-08	157960.00	=""	="The Camerons Group"	08-May-08 11:08 AM	

+="CN73805"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	15-Aug-07	31-Dec-07	96800.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:20 AM	

+="CN73812-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology networking specialists"	26-Sep-07	30-Jun-08	176550.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:25 AM	

+="CN73811-A4"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	123236.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 11:26 AM	

+="CN74003"	" Supply of Electrosurgical Apparatus's, Major Unit "	="Defence Materiel Organisation"	08-May-08	="Medical Equipment and Accessories and Supplies"	23-Apr-08	30-May-08	206250.00	=""	="CONMED LINVATEC"	08-May-08 11:58 AM	

+="CN73814"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	04-Feb-08	30-Jun-08	84480.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:13 PM	

+="CN73816-A2"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-08	295680.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:15 PM	

+="CN73838-A3"	"Provision of Information Technology Management Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	07-Mar-08	112640.00	=""	="Finite Recruitment Services Pty. Ltd."	08-May-08 12:20 PM	

+="CN73840-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Dec-07	30-Jun-08	171600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:21 PM	

+="CN73842-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	19-Nov-07	30-Jun-09	286000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:22 PM	

+="CN73845-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	20-Aug-07	30-Jun-09	268125.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:24 PM	

+="CN73847-A5"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	03-Mar-08	19-Dec-08	242550.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:25 PM	

+="CN73857-A4"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Jun-07	30-Jun-09	204600.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:26 PM	

+="CN74013-A1"	"Consultant for Project Connect activities"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	27-Feb-09	154000.00	=""	="Peoplebank Australia Limited"	08-May-08 12:29 PM	

+="CN74015-A1"	" Delivery of Project Connect activities & milestones, including integration & review.  Extension of contract. Value increased by $38500. "	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Nov-08	203500.00	=""	="Sebrec Pty Limited"	08-May-08 12:29 PM	

+="CN74019-A1"	"Creation of an Export Market Development Grant Document Catalogue & Library within Connect/MOSS"	="Austrade"	08-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	98175.00	=""	="Unique World Pty Ltd"	08-May-08 12:30 PM	

+="CN73866-A4"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Jul-07	23-Jan-09	285450.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:30 PM	

+="CN73869-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	01-Jan-09	253000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:35 PM	

+="CN74022-A2"	"Legal services"	="Office of the Inspector-General of Intelligence and Security"	08-May-08	="Legal services"	01-Feb-08	31-Jul-08	94000.00	=""	="Australian Government Solicitors"	08-May-08 01:09 PM	

+="CN73875"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	30-Jun-08	101200.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 01:26 PM	

+="CN74031-A1"	"08/2664 - Review Consultancy Service - 1599-1976 - C&B Services Panel"	="Australian Customs and Border Protection Service"	08-May-08	="Business and corporate management consultation services"	09-Apr-08	20-Jun-08	176550.00	="06/1599"	="Workplace Research Associates Pty Ltd"	08-May-08 01:33 PM	

+="CN74030"	"Provision of Visual Basic Programming Services"	="National Native Title Tribunal"	08-May-08	="Information technology consultation services"	01-Jan-08	30-Aug-08	101610.00	=""	="Dialog Information Technology"	08-May-08 01:40 PM	

+="CN74046-A1"	"08/2660 - Project Manager - 0717-0890 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	08-May-08	="Temporary personnel services"	01-Apr-08	20-Sep-08	120000.00	="05/0717"	="Paxus Australia Pty Ltd"	08-May-08 02:09 PM	

+="CN74049-A1"	"08/2698 - ICT Strategic Planning Advisor - 0299-1006 - IT Business Advisory Panel 04/0299"	="Australian Customs and Border Protection Service"	08-May-08	="Information technology consultation services"	01-Mar-08	30-Jun-09	245000.00	=""	="CPT Global"	08-May-08 02:18 PM	

+="CN73879-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	11-Jul-07	30-Jun-08	165000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:43 PM	

+="CN73896-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	246400.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 02:51 PM	

+="CN73901-A1"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	154000.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 03:14 PM	

+="CN74073"	"Annual license renewal of NOMAD Archival 01/04/2008-31/03/2009"	="Australian Taxation Office"	08-May-08	="License management software"	01-Apr-08	31-Mar-09	132825.00	=""	="Fujitsu Australia Ltd"	08-May-08 03:17 PM	

+="CN74000-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	24-Oct-08	249645.00	=""	="Greythorn Pty Ltd"	08-May-08 03:23 PM	

+="CN73989-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	29-Jan-08	28-Nov-08	274890.00	=""	="Greythorn Pty Ltd"	08-May-08 03:29 PM	

+="CN73985-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	30-Jun-08	249645.00	=""	="Greythorn Pty Ltd"	08-May-08 03:31 PM	

+="CN73979-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology software developers"	18-Dec-07	30-Sep-08	191180.00	=""	="Greythorn Pty Ltd"	08-May-08 03:34 PM	

+="CN73974-A3"	"Provision of Information Technology Software Development Services"	="Department of Immigration and Citizenship"	08-May-08	="Computer services"	03-Mar-08	30-Jun-09	220275.00	="RFT05/67"	="Greythorn Pty Ltd"	08-May-08 03:35 PM	

+="CN74089"	"Stowage installation Kit - M806AS4 ARVL"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	96211.50	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:39 PM	

+="CN74090"	"Stowage Installation Kit M113AS4 APC"	="Department of Defence"	08-May-08	="Armoured fighting vehicles"	07-May-08	25-Sep-08	81789.40	=""	="TENIX DEFENCE PTY LTD LAND DIV"	08-May-08 03:47 PM	

+="CN74094"	"Java Programmer"	="National Archives of Australia"	08-May-08	="Temporary personnel services"	01-Jul-08	30-Jul-09	160000.00	=""	="Frontiergroup Australia Pty Ltd"	08-May-08 04:02 PM	

+="CN74005"	"Consultancy services - accounting"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	03-Jan-08	30-Jun-08	105000.00	=""	="Grant Thornton"	08-May-08 04:25 PM	

+="CN74120-A2"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	30-Jun-09	252450.00	=""	="Greythorn Pty Ltd"	08-May-08 04:32 PM	

+="CN74131-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	25-Feb-08	24-Oct-08	190905.00	=""	="Greythorn Pty Ltd"	08-May-08 05:03 PM	

+="CN74133-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	26-Jun-07	30-Jun-08	150150.00	=""	="Greythorn Pty Ltd"	08-May-08 05:07 PM	

+="CN74138-A1"	" FITOUT WORK AT WERRIBEE CUSTOMER SERVICE CENTRE, VICTORIA "	="Centrelink"	08-May-08	="Furniture and Furnishings"	08-May-08	30-May-08	167920.50	=""	="Schiavello (VIC) Pty Ltd"	08-May-08 05:29 PM	

+="CN74144"	"Provision of Team Leader IT Project Manager"	="National Health and Medical Research Council"	09-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	25-Nov-08	178492.71	="RFT0610708"	="Oakton Services Pty Ltd"	09-May-08 08:36 AM	

+="CN74180-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	12-Jun-07	07-May-08	196350.00	=""	="Paxus Australia Pty Limited"	09-May-08 10:26 AM	

+="CN74182-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	04-Mar-08	30-Jun-09	279015.00	=""	="Ambit Group Pty Limited"	09-May-08 10:30 AM	

+="CN74187-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	27-Feb-08	30-Jun-08	258456.00	=""	="Ambit Group Pty Limited"	09-May-08 10:39 AM	

+="CN74189"	"Provision of IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	09-Jul-07	09-Mar-08	189750.00	=""	="Ambit Group Pty Limited"	09-May-08 10:42 AM	

+="CN74190-A4"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	22-Nov-07	13-Feb-09	148940.00	=""	="Ambit Group Pty Limited"	09-May-08 10:45 AM	

+="CN74192"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	12-Jun-07	18-Dec-07	117370.00	=""	="Ambit Group Pty Limited"	09-May-08 10:49 AM	

+="CN74195-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	03-Sep-07	30-Jun-09	180675.00	=""	="Ambit Group Pty Limited"	09-May-08 10:55 AM	

+="CN74199"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	08-May-07	09-Nov-07	104995.00	=""	="Ambit Group Pty Limited"	09-May-08 11:05 AM	

+="CN74202-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	05-Sep-06	30-Jun-09	278850.00	=""	="Ambit Group Pty Limited"	09-May-08 11:15 AM	

+="CN74219"	"PABX Supply and Installation management services (Contract DPS04082)"	="Department of Parliamentary Services"	09-May-08	="Telecommunications media services"	16-Apr-08	30-Apr-08	139864.87	=""	="Telstra Corporation Ltd"	09-May-08 11:21 AM	

+="CN74213"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	06-Aug-07	30-Jun-08	148500.00	=""	="Ambit Group Pty Limited"	09-May-08 11:22 AM	

+="CN74224"	"Industrail Cleaning & related Services Contract (JH01037)"	="Department of Parliamentary Services"	09-May-08	="Cleaning and janitorial services"	30-Apr-08	30-Jun-08	176000.00	=""	="Canberra Queanbeyan Cleaning"	09-May-08 11:22 AM	

+="CN74227-A2"	" Provision for IT Specialist Services "	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	04-Feb-08	30-Jun-09	215600.00	=""	="Ambit Group Pty Limited"	09-May-08 11:24 AM	

+="CN74228-A3"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	23-Jul-07	09-May-08	117040.00	=""	="Ambit Group Pty Limited"	09-May-08 11:27 AM	

+="CN74230"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	06-Aug-07	31-Dec-07	85360.00	=""	="Ambit Group Pty Limited"	09-May-08 11:30 AM	

+="CN74236-A3"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	91025.00	=""	="Ross Human Directions Limited"	09-May-08 11:42 AM	

+="CN74237-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	09-May-08 11:45 AM	

+="CN74239"	"Fitout contract"	="Centrelink"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-May-08	30-Jun-08	281028.00	=""	="Schiavello (Vic) Pty Ltd"	09-May-08 11:47 AM	

+="CN74247-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	09-May-08 11:49 AM	

+="CN74275-A2"	"Provision for IT Specialist Services"	="Department of Immigration and Citizenship"	09-May-08	="Information technology consultation services"	27-Aug-07	30-Jun-08	121550.00	=""	="Ross Human Directions"	09-May-08 11:52 AM	

+="CN74359"	"08/042 - 10x Toshiba Laptops and 9x Panasonic Toughbooks"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	21-Apr-08	21-Apr-08	82205.62	=""	="DATA FLEX PTY LTD"	09-May-08 12:03 PM	

+="CN74386"	"Counsel fees"	="Australian Securities and Investments Commission"	09-May-08	="Legal services"	05-Nov-07	30-Jun-09	80000.00	=""	="John V. Gooley"	09-May-08 01:49 PM	

+="CN74406"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	09-May-08	="Building and Construction and Maintenance Services"	06-May-08	31-Jan-10	173245.69	="ISEC007905"	="CONNELL WAGNER PTY LTD"	09-May-08 02:24 PM	

+="CN74412"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	09-May-08	="Engineering and Research and Technology Based Services"	07-May-08	30-Jun-08	86702.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	09-May-08 02:25 PM	

+="CN74421-A5"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	20-Dec-07	30-Jun-09	253330.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:01 PM	

+="CN74388"	"Provision of Specialist Information Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	07-Aug-07	15-Nov-07	84700.00	=""	="Paxus Australia Pty Limited"	09-May-08 03:08 PM	

+="CN74434"	"Vmetro Analog Input Module"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	28-May-08	178238.50	=""	="DEDICATED SYSTEMS AUSTRALIA"	09-May-08 03:39 PM	

+="CN74447"	"KEY SAFE LOCKS"	="Department of Defence"	09-May-08	="Security and control equipment"	07-Mar-08	30-Apr-08	185401.32	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	09-May-08 03:41 PM	

+="CN74448"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	80000.00	=""	="SELECT ACCOUNTANCY"	09-May-08 03:41 PM	

+="CN74460"	"Supply of fresh rations to Woodside Barracks"	="Department of Defence"	09-May-08	="Prepared and preserved foods"	06-Mar-08	30-Jun-08	96500.00	=""	="KLOSE'S SUPERMARKETS PTY LTD"	09-May-08 03:43 PM	

+="CN74473"	"AUDIT OF FIXED PLANT AND EQUIPTMENT MAINTENANCE PL"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	07-Mar-08	30-Jun-08	100178.10	=""	="WORLEYPARSONS SERVICES PTY LTD"	09-May-08 03:46 PM	

+="CN74476"	"Computer equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	30-Apr-08	199517.78	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	09-May-08 03:46 PM	

+="CN74485"	"Bid 17 ASI F/A-18 A/B"	="Department of Defence"	09-May-08	="Aircraft equipment"	07-Mar-08	30-Jun-09	111598.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	09-May-08 03:48 PM	

+="CN74489"	"ENVIRONMENTAL PLANNING SYSTEM."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	05-Mar-08	30-Jun-08	100870.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	09-May-08 03:48 PM	

+="CN74490"	"Provision of professional services by Mr. Bernard to ICT Services. (01 May - 31 October 2008.)"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	31-Oct-08	80757.18	=""	="PEOPLEBANK AUSTRALIA LTD"	09-May-08 03:48 PM	

+="CN74505"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	17-Apr-08	30-Apr-08	86403.01	=""	="Powertel Ltd"	09-May-08 03:49 PM	

+="CN74511"	"support maintenance agreements for Network equipmt"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	26-Mar-08	193860.70	=""	="ALPHAWEST SERVICES PTY LTD"	09-May-08 03:50 PM	

+="CN74532"	"Design and construct grenande assault range as an Breaching Lane"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	17-Mar-08	30-Jun-08	240000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 03:51 PM	

+="CN74535"	"Aviation Software Design Workshop"	="Department of Defence"	09-May-08	="Aerospace systems and components and equipment"	18-Mar-08	01-Apr-08	94496.17	=""	="CERTIFICATION SERVICES INC."	09-May-08 03:51 PM	

+="CN74556"	"CARDIO GYMNASIUM EQUIPMENT"	="Department of Defence"	09-May-08	="Manufacture of electrical goods and precision instruments"	18-Mar-08	30-Jun-08	80817.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	09-May-08 03:52 PM	

+="CN74560"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	21-Apr-08	95500.00	=""	="KPMG"	09-May-08 03:52 PM	

+="CN74562"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-09	104396.00	=""	="BLAKE DAWSON WALDRON"	09-May-08 03:52 PM	

+="CN74563"	"Gym Equipment - RAAF Base Darwin"	="Department of Defence"	09-May-08	="Fitness equipment"	06-Mar-08	30-Jun-08	134542.55	=""	="TRUE FITNESS SOLUTIONS"	09-May-08 03:52 PM	

+="CN74569"	"ROOF REPAIRS EESW"	="Department of Defence"	09-May-08	="Project management"	06-Mar-08	30-Jun-08	110000.01	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	09-May-08 03:52 PM	

+="CN74583"	"PERFORMANCE & RISK MGT. SYSTEM"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Mar-08	30-Jun-08	84969.50	=""	="KPMG CORPORATE FINANCE (AUST)"	09-May-08 03:53 PM	

+="CN74585"	"IT Equipment"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	30-Jun-08	141054.10	=""	="COMPUTERCORP PTY LTD"	09-May-08 03:53 PM	

+="CN74591"	"STAGE 1 SUPPLEMENTARY GARDEN ISLAND ENVIRONMENTAL CONSULTANT."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	136735.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	09-May-08 03:53 PM	

+="CN74592"	"Digicora 111 Extension of life contract"	="Bureau of Meteorology"	09-May-08	="Industrial Manufacturing and Processing Machinery and Accessories"	08-May-08	22-May-08	106920.00	=""	="Vaisala Pty Ltd"	09-May-08 03:53 PM	

+="CN74594"	"Support to Intro into Service of RSTT-ASRAAM"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	06-Mar-08	30-Jun-08	88870.10	=""	="AEROSPACE CONCEPTS PTY LTD"	09-May-08 03:54 PM	

+="CN74599"	"POC: Matthew Dickson Contact: 02 6265 0777"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Mar-08	91681.70	=""	="BEA SYSTEMS PTY LTD"	09-May-08 03:54 PM	

+="CN74603"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	84110.40	=""	="PAXUS AUSTRALIA PTY LTD"	09-May-08 03:54 PM	

+="CN74611"	"Recreational Gym Equipment - Army Aviation Centre Oakey"	="Department of Defence"	09-May-08	="Sports equipment and accessories"	20-Mar-08	01-May-08	130399.50	=""	="BLISS FITNESS SYSTEMS"	09-May-08 03:55 PM	

+="CN74620"	"Purchase of video conferencing equipment for 7 LWC units"	="Department of Defence"	09-May-08	="Photographic or filming or video equipment"	11-Mar-08	30-Jun-08	126285.97	=""	="VIVID TECHNOLOGIES AUSTRALIA"	09-May-08 03:55 PM	

+="CN74625"	"REFURBISH SERVICE BAY"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	20-Mar-08	30-Jun-08	146732.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 03:56 PM	

+="CN74627"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	01-Jul-08	114048.00	=""	="PAXUS AUSTRALIA PTY LTD"	09-May-08 03:56 PM	

+="CN74633"	"Multiple Computer Switches"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	08-Apr-08	206134.39	=""	="TENIX DATAGATE PTY LTD"	09-May-08 03:57 PM	

+="CN74637"	"KING AIR SIM TRAINING"	="Department of Defence"	09-May-08	="Aircraft"	21-Mar-08	31-Dec-08	158213.09	=""	="CAE SIMUFLITE INC"	09-May-08 03:57 PM	

+="CN74645"	"TRAINING MANAGEMENT PACKAGES"	="Department of Defence"	09-May-08	="Project management"	25-Mar-08	24-Sep-08	234809.99	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	09-May-08 03:58 PM	

+="CN74648"	"NetApps Storage Solution for Collab Tools Project"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	11-Mar-08	31-Mar-08	80531.76	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	09-May-08 03:59 PM	

+="CN74654"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	08-Jun-08	187106.24	=""	="CUBIC DEFENSE APPLICATIONS INC"	09-May-08 03:59 PM	

+="CN74669"	"BLADE CENTER"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	31-May-08	184576.70	=""	="IBM AUSTRALIA PTY LTD"	09-May-08 04:00 PM	

+="CN74696"	"AERONAUTICAL ENGINEER"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	11-Mar-08	30-Jun-08	93500.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	09-May-08 04:02 PM	

+="CN74703"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	01-Mar-10	107444.00	=""	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	09-May-08 04:02 PM	

+="CN74704"	"DISPOSAL OF GUNGAHLIN ACT - REMEDIATION WORKS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	238755.00	=""	="EARTH TECH ENGINEERING PTY LTD"	09-May-08 04:02 PM	

+="CN74724"	"Technical and business support for the development ROMAN store and forward (RSF)"	="Department of Defence"	09-May-08	="Public administration and finance services"	19-Mar-08	31-Oct-08	193336.00	=""	="JOB COMMUNICATIONS"	09-May-08 04:04 PM	

+="CN74726"	"HQJOC PROJECT - THALES - OTAM."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	19-Mar-08	30-Jun-08	156753.55	=""	="THALES AUSTRALIA"	09-May-08 04:04 PM	

+="CN74730"	"PORTABLE COMPUTERS AND ACCESSORIES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	10-Mar-08	21-Mar-08	107015.80	=""	="PORTABLE COMPUTER SYSTEMS"	09-May-08 04:05 PM	

+="CN74379-A5"	"Provision for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	18-Feb-08	30-Jun-09	263912.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:05 PM	

+="CN74733"	"CONTRACT NEGOTIATION - GROSVENOR MANAGEMENT CONSUL"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	19-Mar-08	30-Jun-08	165000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	09-May-08 04:05 PM	

+="CN74735"	"CARRY OUT REPAIRS AND UPGRADE LIA FACILITIES AT LE"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	19-Mar-08	30-Jun-08	187000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:05 PM	

+="CN74740"	"CONTACT: PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	10-Mar-08	30-Jun-08	190960.00	=""	="ASSET SERVICES"	09-May-08 04:06 PM	

+="CN74743"	"DEMS PROJECT DESIGN SPECIFICATION  RMV DEMS GSS DA"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	20-Mar-08	30-Jun-08	149861.25	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	09-May-08 04:06 PM	

+="CN74749"	"DEMS CONTAMINATED SITES REGISTER REDEVELOPMENT(NET"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	20-Mar-08	30-Jun-08	154143.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	09-May-08 04:07 PM	

+="CN74762"	"Provide Operational Support Tier 2 to ROMAN ECC6"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	19-Mar-08	31-Oct-08	192230.84	=""	="EDS (AUSTRALIA) PTY LTD"	09-May-08 04:08 PM	

+="CN74763"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	129800.00	=""	="COFFEY ENVIRONMENTS PTY LTD"	09-May-08 04:08 PM	

+="CN74765"	"Contract 0708-246 under Standing Offer 0506-271-27 Contractor: Jovan Talevski, Professional Material"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Mar-08	30-Jun-08	121000.00	=""	="FORTBURN PTY LTD"	09-May-08 04:08 PM	

+="CN74768"	"POC: John Burgess Contact: 02 6265 0462"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	28-Feb-09	112390.97	=""	="ENTRUST LTD"	09-May-08 04:08 PM	

+="CN74770"	"X BAND SERVICES"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	19-Mar-08	19-Mar-08	278955.84	=""	="MINISTRY OF DEFENCE"	09-May-08 04:08 PM	

+="CN74776"	"CONSULTANTS"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	28-Jun-08	178492.00	=""	="DEVER CLARK & ASSOCIATES"	09-May-08 04:09 PM	

+="CN74783"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	20-Jun-08	176000.00	=""	="TENIX SYSTEMS PTY LTD"	09-May-08 04:09 PM	

+="CN74786"	"EXTERNAL SERVICE PROVIDER - CONTRACTOR"	="Department of Defence"	09-May-08	="Management advisory services"	19-Mar-08	12-Mar-09	256073.40	=""	="ICON RECRUITMENT"	09-May-08 04:09 PM	

+="CN74790"	"Tss Contract: Open Architecture CTD (Phase 3)"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Mar-08	30-Jun-08	281766.10	=""	="THALES AUSTRALIA"	09-May-08 04:10 PM	

+="CN74799"	"Contract CIOG628/07 - PMKeyS LRLI 01/08."	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	174811.20	=""	="UXC LIMITED"	09-May-08 04:10 PM	

+="CN74800"	"TRANSITION DELIVERABLES FEE ISO DCC SUPPORT CONTRACT - CIOG 335/07"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Mar-08	30-Jun-08	151046.50	=""	="AVAYA AUSTRALIA PTY LTD"	09-May-08 04:10 PM	

+="CN74809"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	138066.60	=""	="MUNITION SAFETY INFORMATION ANALYSI"	09-May-08 04:11 PM	

+="CN74811"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	31-Jul-08	82500.00	=""	="CAZIQUE SOLUTIONS PTY LTD"	09-May-08 04:11 PM	

+="CN74815"	"SN02293 - ACT/SNSW Land Remediation Planning"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	103870.00	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:11 PM	

+="CN74821"	"Maintenance support for SenSage"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	28-Feb-09	126778.76	=""	="SENSAGE INC"	09-May-08 04:11 PM	

+="CN74823"	"OFFICE FURNITURE"	="Department of Defence"	09-May-08	="Accommodation furniture"	12-Mar-08	30-Jun-08	82498.30	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 04:12 PM	

+="CN74826"	"PROMOTIONAL MATERIAL, DRINK BOTTLES, CAPS BACK PACKS"	="Department of Defence"	09-May-08	="Luggage and handbags and packs and cases"	11-Mar-08	31-May-08	109890.00	=""	="PAULA M PROMOTIONS"	09-May-08 04:12 PM	

+="CN74829"	"JLUSQ-0406 Labour Hire support to 1 SIG REGT from 1 Apr to 30 Jun 08"	="Department of Defence"	09-May-08	="Transportation repair or maintenance services"	12-Mar-08	30-Jun-08	90457.30	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74831"	"DEMOUNTABLE BUILDING"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	12-Mar-08	12-Apr-08	97809.80	=""	="ATCO STRUCTURES PTY LTD"	09-May-08 04:12 PM	

+="CN74839"	"TSS Contract:Phase 3 Open Architecture Concept Demonstrator"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Mar-08	30-Jun-08	255898.50	=""	="SAAB SYSTEMS PTY LTD"	09-May-08 04:12 PM	

+="CN74852"	"Computer equipment and support"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	30-Jun-08	128969.18	=""	="ENDACE MEASUREMENT SYSTEMS LTD"	09-May-08 04:13 PM	

+="CN74873"	"Security Containers"	="Department of Defence"	09-May-08	="Containers and storage"	13-Mar-08	31-Mar-08	91377.00	=""	="FILEGUARD CO (MFG) PTY LTD"	09-May-08 04:15 PM	

+="CN74877"	"Network Analyzer & internal modulator"	="Department of Defence"	09-May-08	="Electronic Components and Supplies"	13-Mar-08	30-Apr-08	286243.88	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	09-May-08 04:15 PM	

+="CN74879"	"Secure Transportable Videoconferencing Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	13-Mar-08	26-May-08	184095.73	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	09-May-08 04:15 PM	

+="CN74882"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	80000.00	=""	="AUSTRALIAN VALUATION OFFICE"	09-May-08 04:15 PM	

+="CN74887"	"SA2684 - Re-balance A/C in Bldg 733"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	13-Mar-08	30-Jun-08	101475.00	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:16 PM	

+="CN74888"	"681900 (NT1382) Regional Energy and Sustainability Strategy to achieve ESD Energy Reduction Targets."	="Department of Defence"	09-May-08	="Environmental control systems"	03-Mar-08	30-Jun-08	199284.10	=""	="ASSET SERVICES"	09-May-08 04:16 PM	

+="CN74889"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	113177.60	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	09-May-08 04:16 PM	

+="CN74894"	"Research Agreement"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	12-Mar-08	30-Apr-08	104500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	09-May-08 04:16 PM	

+="CN74927"	"S5219, WR 300074260. Undertake consultation to det meter type and locations for of water sub-meters"	="Department of Defence"	09-May-08	="Water and wastewater treatment supply and disposal"	12-Mar-08	30-Jun-08	90268.20	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:18 PM	

+="CN74934"	"Woomera hanger operating spaces"	="Department of Defence"	09-May-08	="Professional engineering services"	28-Feb-08	30-Jun-08	110000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	09-May-08 04:19 PM	

+="CN74953"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	81158.00	=""	="PEOPLEBANK AUSTRALIA LTD"	09-May-08 04:20 PM	

+="CN74962"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	31-Dec-08	243222.67	=""	="UNISYS AUSTRALIA LTD"	09-May-08 04:20 PM	

+="CN74966"	"SCCM Solution Servers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	90303.40	=""	="COMPUTERCORP (LOGISTICS)"	09-May-08 04:21 PM	

+="CN74976"	"SA2230 - Regional Asbestos Audit"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	28-Feb-08	30-Jun-08	100549.90	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:21 PM	

+="CN74977"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	03-Oct-08	225403.99	=""	="ACUMEN ALLIANCE"	09-May-08 04:21 PM	

+="CN74984"	"KOSA project management"	="Department of Defence"	09-May-08	="Professional engineering services"	28-Feb-08	30-Jun-08	80148.62	=""	="KELLOGG BROWN & ROOT PTY LTD"	09-May-08 04:22 PM	

+="CN74990"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	09-May-08	="Fire protection"	12-Mar-08	30-Jun-08	112303.81	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:22 PM	

+="CN74992"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	23-Apr-08	85217.48	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:22 PM	

+="CN74996"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	04-Jun-08	117586.48	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:23 PM	

+="CN75000"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Mar-10	140800.00	=""	="ETHOS CRS CONSULTING"	09-May-08 04:23 PM	

+="CN75009"	"REPLACES PO 4500630109 WHICH WAS RAISED WITH INCOR CPO & PO ATT TRAINING AT  RMIT"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	29-Feb-08	30-Jun-08	185680.60	=""	="RMIT UNIVERSITY"	09-May-08 04:23 PM	

+="CN75015"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	17-Mar-08	31-May-08	81932.76	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	09-May-08 04:24 PM	

+="CN75022"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	01-Apr-08	110469.08	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:24 PM	

+="CN75026"	"Professional Services"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-May-08	220000.00	=""	="DUPLICATE - USE V ENDOR 1050211"	09-May-08 04:25 PM	

+="CN75032"	"Contract with Searson Buck & DS-Tas"	="Department of Defence"	09-May-08	="Office supplies"	29-Feb-08	31-Dec-08	136400.00	=""	="SEARSON BUCK PTY LTD"	09-May-08 04:25 PM	

+="CN75033"	"ICT Storage Solution"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	31-Mar-08	80531.76	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	09-May-08 04:25 PM	

+="CN75035"	"Technical Contact: Ken Whatt Phone: (08) 8259 7368"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	17-Mar-08	30-Jun-08	80178.01	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:25 PM	

+="CN75049"	"POC: SNADY OGILVIE CONTACT: 02 626 506934"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Jun-08	126357.95	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:26 PM	

+="CN75053"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	23-May-08	110000.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	09-May-08 04:26 PM	

+="CN75054"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	09-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Mar-08	28-Jun-08	99000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:26 PM	

+="CN75060"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	180500.00	=""	="DELOITTE TOUCHE TOHMATSU"	09-May-08 04:27 PM	

+="CN75061"	"WATER PUMP & SECURITY WORKS"	="Department of Defence"	09-May-08	="Water and wastewater treatment supply and disposal"	17-Mar-08	30-Jun-08	92560.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:27 PM	

+="CN75063"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-09	187886.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:27 PM	

+="CN75066"	"ICT Network & Datalinks"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Mar-08	30-Jun-08	81129.66	=""	="GETRONICS (AUSTRALIA) PTY LTD"	09-May-08 04:27 PM	

+="CN75068"	"Enhancement to Deployable Data Network"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	04-Mar-08	31-Mar-08	84517.17	=""	="FUJITSU AUSTRALIA LIMITED"	09-May-08 04:27 PM	

+="CN75069"	"POC: ANDREW TRACKSON CONTACT:02 6265 0502"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Mar-08	187509.55	=""	="SUN MICROSYSTEMS"	09-May-08 04:27 PM	

+="CN75076"	"Provision of consultancy to conduct fire safety su assets in accordance with the requirements of the"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	04-Mar-08	30-Jun-08	198000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:28 PM	

+="CN75085"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Jun-08	175033.16	=""	="KAZ GROUP PTY LTD"	09-May-08 04:28 PM	

+="CN75086"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	04-Mar-08	30-Jun-08	120495.65	=""	="DEAKINPRIME"	09-May-08 04:28 PM	

+="CN75091"	"CONFERENCE EXPENSES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Apr-08	120000.00	=""	="TOUR HOSTS PTY LTD"	09-May-08 04:29 PM	

+="CN75103"	"CAMPING EQUIPMENT"	="Department of Defence"	09-May-08	="Camping and outdoor equipment and accessories"	17-Mar-08	31-May-08	89985.50	=""	="THE KIT BAG"	09-May-08 04:30 PM	

+="CN75106"	"S5216, WR 300074192. Consultancy to determine wate options for stormwater run-off from HMAS Waterhen"	="Department of Defence"	09-May-08	="Environmental control systems"	14-Mar-08	30-Jun-08	91960.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:30 PM	

+="CN75109"	"Development of Generic Electro-Optical Systems Model"	="Department of Defence"	09-May-08	="Professional engineering services"	05-Mar-08	18-Jun-08	170456.00	=""	="ACACIA RESEARCH PTY LTD"	09-May-08 04:30 PM	

+="CN75110"	"CONSULTANCY SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	01-Aug-08	208407.38	=""	="TELSTRA BUSINESS & GOVERNMENT"	09-May-08 04:30 PM	

+="CN75115"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	05-Mar-08	30-Jun-08	127215.05	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:31 PM	

+="CN75116"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	31-Jul-08	96800.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	09-May-08 04:31 PM	

+="CN75128"	"Completion of Bradshaw Field Readiness Project"	="Department of Defence"	09-May-08	="Environmental Services"	14-Mar-08	30-Jun-08	80378.93	=""	="MRC CONSULTING PTY LTD"	09-May-08 04:31 PM	

+="CN75134"	"Air Weapons Simulations Review"	="Department of Defence"	09-May-08	="Professional engineering services"	13-Mar-08	26-Jun-08	83768.00	=""	="**USE VENDOR 1079329**"	09-May-08 04:32 PM	

+="CN75138"	"Contract Project Management Services"	="Department of Defence"	09-May-08	="Business administration services"	13-Mar-08	27-Feb-09	190483.37	=""	="PAXUS AUSTRALIA PTY LTD"	09-May-08 04:32 PM	

+="CN75141"	"DUNTROON HERITAGE MANAGEMENT PLAN."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	05-Mar-08	30-Jun-08	96987.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	09-May-08 04:32 PM	

+="CN75144"	"PSP Fees (time and materials)"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Mar-08	30-Jun-08	121440.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	09-May-08 04:32 PM	

+="CN75146"	"PSP Fees/travel"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Mar-08	30-Jun-08	190140.01	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	09-May-08 04:33 PM	

+="CN75148"	"PSP Fees/travel"	="Department of Defence"	09-May-08	="Professional engineering services"	13-Mar-08	30-Jun-08	171893.87	=""	="PROJECT OUTCOMES PTY LTD"	09-May-08 04:33 PM	

+="CN75149"	"ASBESTOS REMEDIATION WORKS - CONTROL AND CLEARANCE MONITORING"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Jun-08	275000.01	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:33 PM	

+="CN75158"	"ENHANCED PROTECTIVE SECURITY  SQ REGION"	="Department of Defence"	09-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	14-Mar-08	30-Jun-08	253000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:33 PM	

+="CN75176"	"Project Definition Study for Classroom 21"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Mar-08	30-Jun-08	88000.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:35 PM	

+="CN75182"	"FIRE UPGRADE WORKS - MACKAY GRES DEPOT"	="Department of Defence"	09-May-08	="Fire protection"	14-Mar-08	30-Jun-08	96403.73	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:35 PM	

+="CN75183"	"Installation Cooling Hangar 200"	="Department of Defence"	09-May-08	="Project management"	03-Mar-08	30-Jun-08	134000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	09-May-08 04:35 PM	

+="CN75190"	"Install of water and energy saving devices"	="Department of Defence"	09-May-08	="Environmental control systems"	14-Mar-08	30-Jun-08	106239.21	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:36 PM	

+="CN75193"	"Support to High Level C2 Interface for Multi-UAVs"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	03-Mar-08	30-Jun-08	164964.80	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	09-May-08 04:36 PM	

+="CN75196"	"HOUSEHOLD ITEMS NAVY ACCOMODATION HOMEBUSH & STRATHFIELD"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	14-Mar-08	30-Apr-08	137865.10	=""	="THE GOOD GUYS ALEXANDRIA"	09-May-08 04:36 PM	

+="CN75204"	"Decktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Mar-08	211752.17	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:37 PM	

+="CN75211"	"Technical Contact: Anthony Finn"	="Department of Defence"	09-May-08	="Military rotary wing aircraft"	04-Mar-08	21-Mar-08	216510.80	=""	="AEROSONDE PTY LTD"	09-May-08 04:38 PM	

+="CN75217"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Mar-08	209386.22	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:38 PM	

+="CN75219"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	20-Jun-08	261155.40	=""	="TENIX SYSTEMS PTY LTD"	09-May-08 04:38 PM	

+="CN75223"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	04-Mar-08	04-Mar-08	88000.00	=""	="CHARLES DARWIN UNI - THE CASHIERS"	09-May-08 04:39 PM	

+="CN74376-A2"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	13-Jun-08	91025.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:39 PM	

+="CN75226"	"UPGRADE ADMIN & TRG FACILITIES RAAF BASE AMBERLEY"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	04-Mar-08	30-Jun-08	179522.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	09-May-08 04:39 PM	

+="CN75228"	"Commercial Management Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-Jun-08	124872.00	=""	="SIGMA BRAVO PTY LTD"	09-May-08 04:39 PM	

+="CN75230"	"REMOVALOF HYPERBARIC CHAMBER RAAF RICHMOND"	="Department of Defence"	09-May-08	="Medical Equipment and Accessories and Supplies"	04-Mar-08	30-Jun-08	84389.68	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:39 PM	

+="CN75233"	"P/O REQUIRED FOR SPECIALIST MEDICAL COSTS REIMBURS"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	30-Jun-08	110000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:39 PM	

+="CN74272-A4"	" Provision of Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	14-Jan-08	28-May-09	270600.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:40 PM	

+="CN75242"	"UOTF-TOWNSVILLE,FIELD FIRING TRAINING AREA. DAVIS LANGDON PM/CA PH 1"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	98594.10	=""	="DAVIS LANGDON AUSTRALIA PTY LTD"	09-May-08 04:40 PM	

+="CN75253"	"SN02773- White Paper Accom Planning for works"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Feb-08	30-Jun-08	281138.40	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:41 PM	

+="CN75254"	"Resurvey asbestos situations RAAF Pearce"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	264000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:41 PM	

+="CN75255"	"Freight Distribution for NT Police to Gapuwiak for OP OUTREACH"	="Department of Defence"	09-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	13-Feb-08	103435.98	=""	="PDL TOLL"	09-May-08 04:41 PM	

+="CN75256"	"Nortel 7400 Passport Assembly"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	30-May-08	227051.50	=""	="AT & T GLOBAL NETWORK SERVICES"	09-May-08 04:41 PM	

+="CN75258"	"The requirement is for the installation of an over (gantry crane) as originally specified in the con"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	122452.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:41 PM	

+="CN75265"	"Install Eye Wash stations"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	80000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:42 PM	

+="CN75271"	"TEMPORARY AIRFIELD LIGHTING EQUIPMENT"	="Department of Defence"	09-May-08	="Lighting and fixtures and accessories"	18-Mar-08	30-Jun-08	132000.00	=""	="KENNARDS HIRE"	09-May-08 04:42 PM	

+="CN75288"	"To undertake water efficiency works at various locations to support regional & national ESD"	="Department of Defence"	09-May-08	="Heavy construction machinery and equipment"	12-Feb-08	30-Jun-08	107800.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:43 PM	

+="CN75295"	"Design and construct FD firing range for SASR PLT courses"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	100000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:43 PM	

+="CN75298"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	13-Feb-08	131986.80	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	09-May-08 04:44 PM	

+="CN75301"	"Manage bushfire environment aspects in WA region t stretegy and site plans:  excludes routine firebr"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	18-Mar-08	30-Jun-08	247500.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	09-May-08 04:44 PM	

+="CN75304"	"Employment of PSP's within P&Bs Branch"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-Jun-08	121000.00	=""	="HAYS PERSONNEL SERVICES"	09-May-08 04:44 PM	

+="CN75312"	"AIR CHTR OP ASTUTE"	="Department of Defence"	09-May-08	="Aircraft"	13-Feb-08	29-Feb-08	112750.00	=""	="ADAGOLD AVIATION PTY LTD"	09-May-08 04:44 PM	

+="CN75313"	"Replacement of Common Access Cards on various buildings at RAAF Base Williamtown"	="Department of Defence"	09-May-08	="Locks and security hardware and accessories"	18-Mar-08	30-Jun-08	168649.80	=""	="SSL ASSET SERVICES PTY LTD"	09-May-08 04:44 PM	

+="CN74234"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	21-Dec-07	121908.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:46 PM	

+="CN75333"	"MAPOWER LABOUR HIRE"	="Department of Defence"	09-May-08	="Vehicle servicing equipment"	11-Feb-08	30-May-08	99000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:46 PM	

+="CN75338"	"S5264, WR:-  Kuttabul - 300074183, Garden Island - Watson - 300074185, HMAS Waterhen - 300074186."	="Department of Defence"	09-May-08	="Environmental control systems"	18-Mar-08	30-Jun-08	266202.66	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:46 PM	

+="CN75340"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Aug-08	157630.00	=""	="CORNERSTONE PUBLIC RELATIONS"	09-May-08 04:46 PM	

+="CN74231"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	09-May-08	="Temporary information technology systems or database administrators"	12-Sep-07	30-Jun-08	226875.00	=""	="Paxus Australia Pty Limited"	09-May-08 04:47 PM	

+="CN75360"	"AIR CHTR TLBG 3 & 4 RIP OP ASTUTE"	="Department of Defence"	09-May-08	="Aircraft"	17-Mar-08	26-Apr-08	285000.00	=""	="PDL TOLL"	09-May-08 04:48 PM	

+="CN75364"	"Contract file 2008-1021627 refers"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	30-Jun-08	84480.00	=""	="VIPAC ENGINEERS & SCIENTISTS"	09-May-08 04:48 PM	

+="CN75365"	"Replacement of Air Conditioning Chiller Unit at Facility 537 RAAF Base Williamtown"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	119528.20	=""	="SSL ASSET SERVICES PTY LTD"	09-May-08 04:48 PM	

+="CN75381"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	121070.00	=""	="MINTER ELLISON"	09-May-08 04:49 PM	

+="CN75392"	"TENDER EVALUATION TOOL & CONTRACTOR TRAVEL"	="Department of Defence"	09-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Feb-08	30-Dec-08	111115.40	=""	="SME GATEWAY LIMITED"	09-May-08 04:50 PM	

+="CN75405"	"FIRE MANAGEMENT PLAN"	="Department of Defence"	09-May-08	="Fire prevention"	17-Mar-08	30-Jun-08	114980.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:51 PM	

+="CN75407"	"FIRE MANAGEMENT PLAN DEOH"	="Department of Defence"	09-May-08	="Fire protection"	17-Mar-08	30-Jun-08	147994.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:51 PM	

+="CN75419"	"RAAF RICHMOND REINVESTMENT PROJECT. DESIGN WORK FOR HV WORKS AT RAAF RICHMOND."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	18-Mar-08	30-Jun-08	108897.80	=""	="GHD PTY LTD"	09-May-08 04:52 PM	

+="CN75430"	"Research Agreement"	="Department of Defence"	09-May-08	="Temporary personnel services"	15-Feb-08	06-Jun-08	110000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	09-May-08 04:53 PM	

+="CN75431"	"ADATS Maintenance Training for HQ 44WG"	="Department of Defence"	09-May-08	="Medical training and education supplies"	15-Feb-08	30-Jun-09	288481.60	=""	="THALES AUSTRALIA"	09-May-08 04:53 PM	

+="CN75433"	"CONTACT GEOFF MACKENZIE 08 8935 4619 WR: 150140246"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	14-Feb-08	30-Jun-08	90200.00	=""	="ASSET SERVICES"	09-May-08 04:53 PM	

+="CN75445"	"HIRE OF CONTRACTOR"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	08-Mar-08	81510.00	=""	="PEOPLEBANK"	09-May-08 04:54 PM	

+="CN75446"	"COMPUTER TESTING"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	15-Feb-08	90376.01	=""	="PEOPLEBANK"	09-May-08 04:54 PM	

+="CN75447"	"COMPUTER SERVICES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	15-Feb-08	15-Feb-08	97240.00	=""	="PEOPLEBANK"	09-May-08 04:54 PM	

+="CN75455"	"FORT DIRECTION : EXPLOSIVE STORAGE UPGRADE."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	15-Feb-08	30-Jun-08	195668.00	=""	="CONNELL WAGNER VIC PTY LTD"	09-May-08 04:55 PM	

+="CN75458"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	15-Feb-08	30-Jun-08	80437.07	=""	="BOX HILL INSTITUTE OF TAFE"	09-May-08 04:56 PM	

+="CN75459"	"SURVEY OF BROKEN BAY"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	15-Feb-08	01-Apr-08	97625.00	=""	="COFFEY GEOTECHNICS PTY LTD"	09-May-08 04:56 PM	

+="CN75477"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	30-Jun-08	145974.40	=""	="SYPAQ SYSTEMS PTY LTD"	09-May-08 04:58 PM	

+="CN75478"	"PURCHASE OF 1000 NOKIA 6070 MOBILE HANDSETS AND ACCESSORIES."	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	14-Feb-08	14-Mar-08	170000.05	=""	="CRAZY JOHNS"	09-May-08 04:58 PM	

+="CN75479"	"Professional Service Provider"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	30-Jun-08	108054.50	=""	="INQUIRION PTY LTD"	09-May-08 04:58 PM	

+="CN75483"	"WEST HEAD GUNNERY RANGE : REDEVELOPMENT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-09	226363.50	=""	="CONNELL WAGNER VIC PTY LTD"	10-May-08 08:31 AM	

+="CN75489"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-Jun-08	199056.00	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 08:32 AM	

+="CN75491"	"Provision of service to Support MEP as per DTR-A V oucher 0708 61 linked to DMO  PO 4500621176"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	30-Jun-08	80000.00	=""	="KPMG"	10-May-08 08:33 AM	

+="CN75493"	"Computer Software"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	29-Feb-08	93825.60	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 08:33 AM	

+="CN75499"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	116600.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:33 AM	

+="CN75500"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	132000.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:33 AM	

+="CN75515"	"AIRFIELD LIGHTING SERVICES AND REVIEW OF PROJECT D"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	88000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 08:35 AM	

+="CN75516"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	90200.00	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	10-May-08 08:35 AM	

+="CN75527"	"Develop a joint unmanned aerial system concept & small/tactical unmanned aerial system future ne"	="Department of Defence"	10-May-08	="Project management"	06-Feb-08	30-Jun-08	244736.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 08:36 AM	

+="CN75537"	"provision of contractors"	="Department of Defence"	10-May-08	="Office supplies"	05-Feb-08	30-Jun-08	83952.00	=""	="ICON RECRUITMENT"	10-May-08 08:37 AM	

+="CN75553"	"PROVISION OF SENIOR PHARMACY SERVICES (S.PAPASTAMA EDINBURGH 1 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	218000.20	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75556"	"PROVISION OF DENTIST SERVICES (DR. R. GOYNE) HSFED 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	290000.70	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75557"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS AT EVANS HEAD AIR WEAPONS RANGE"	="Department of Defence"	10-May-08	="Roads and landscape"	06-Feb-08	30-Jun-08	267307.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:39 AM	

+="CN75558"	"PROVISION OF DENTIST SERVICES (DR.P.WONG) HSFEDN R - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	290000.70	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75562"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.PICKERIN 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	203000.60	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75569"	"TSS Contract Support to Migration of the Sonar Concept Demonstrators to GOANNA Architecture"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	06-Feb-08	30-Jun-08	132000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 08:40 AM	

+="CN75570"	"PROVISION OF AGL CABLE-AIRFIELD LIGHTING MAINTENAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	214094.10	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	10-May-08 08:41 AM	

+="CN75572"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	153386.96	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 08:41 AM	

+="CN75590"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-08	196938.28	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 08:43 AM	

+="CN75594"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	04-Feb-08	01-May-08	110000.00	=""	="UNIVERSITY OF SYDNEY"	10-May-08 08:43 AM	

+="CN75603"	"DMOS CONTRACT MR WICKS AND MR HARRISON 11 FEB 08 - 9 FEB 09"	="Department of Defence"	10-May-08	="Aircraft"	05-Feb-08	09-Feb-09	287955.80	=""	="NOVA AEROSPACE"	10-May-08 08:44 AM	

+="CN75616"	"S5180, WR's 300077030, 300077033, 300077035, 30007 investigations on various sites on inground"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-08	91430.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75624"	"ABM-TDM SYSTEMS ENGINEER"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	10-Jun-08	117277.01	=""	="C-E SOLUTIONS"	10-May-08 08:46 AM	

+="CN75625"	"BTT TEAM LEAD"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	06-Jun-08	119056.06	=""	="NOVA AEROSPACE"	10-May-08 08:46 AM	

+="CN75627"	"Access Costs ISO WPSS"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Feb-08	30-Jun-08	220000.00	=""	="TELSTRA"	10-May-08 08:46 AM	

+="CN75628"	"CONTACT CASPER MCDERMOTT 08 89354 622"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Feb-08	30-Jun-08	143000.00	=""	="NORTHERN LAND COUNCIL"	10-May-08 08:46 AM	

+="CN75637"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	97968.75	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	10-May-08 08:47 AM	

+="CN75642"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	30-Jun-08	153550.46	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 08:48 AM	

+="CN75652"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	220000.00	=""	="RAYTHEON AEROSPACE SYS ITEG SER"	10-May-08 08:49 AM	

+="CN75659"	"Project LAND 400 Human Factors Risk Analysis"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	08-Feb-08	16-May-08	157787.30	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 08:49 AM	

+="CN75661"	"RESEARCH AGREEMENT TITLED :"DEVELOPMENT OF TECHNOLOGY FOR PRCISIO ATOM""	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Feb-08	02-May-08	88000.00	=""	="DEPARTMENT OF PHYSICS"	10-May-08 08:49 AM	

+="CN75667"	"MEDALS"	="Department of Defence"	10-May-08	="Alloys"	08-Feb-08	15-Apr-08	95700.93	=""	="THE ROYAL MINT"	10-May-08 08:50 AM	

+="CN75669"	"CENTRE OF EXPERTISE IN PHOTONICS TASK AGREEMENT PHONE: 8259 7012"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Feb-08	30-Jun-08	132000.00	=""	="THE UNIVERSITY OF ADELAIDE"	10-May-08 08:50 AM	

+="CN75671"	"Developing Concepts for Integrated ISR"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	08-Feb-08	30-Dec-08	80080.00	=""	="VCORP CONSULTING PTY LTD"	10-May-08 08:50 AM	

+="CN75677"	"Senior Health Adviser Services"	="Department of Defence"	10-May-08	="Healthcare Services"	08-Feb-08	30-Jun-08	97743.70	=""	="DR ROSLYN BLAKLEY"	10-May-08 08:51 AM	

+="CN75681"	"NQ2081 - Area E Comms Cable, Room and Cabinet Audi"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-08	30-Jun-08	81510.00	=""	="SKM"	10-May-08 08:51 AM	

+="CN75683"	"NQ2081 - B SQN to Bldg 811 Pit and Conduit Works L"	="Department of Defence"	10-May-08	="Components for information technology or broadcasting or telecommunications"	07-Feb-08	30-Jun-08	238984.90	=""	="EMAK COMMUNICATIONS"	10-May-08 08:52 AM	

+="CN75684"	"RAAF BASE AMBERLEY HERITAGE MANAGMENT PLAN."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	07-Feb-08	30-Jun-08	93164.50	=""	="WOODHEAD INTERNATIONAL"	10-May-08 08:52 AM	

+="CN75687"	"Provision of Contract Development Support for 81WG"	="Department of Defence"	10-May-08	="Manufacturing support services"	07-Feb-08	30-Jun-08	112100.00	=""	="BALL SERVICES SOLUTIONS"	10-May-08 08:52 AM	

+="CN75689"	"PROVISION OF PHARMACY SERVICES (J.CHRISTIE, A.CHRI EDN RAAF EDINBURGH 01 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	175999.98	=""	="NASANSB"	10-May-08 08:52 AM	

+="CN75693"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.WORTHLEY 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	174000.20	=""	="NASANSB"	10-May-08 08:53 AM	

+="CN75694"	"NQ2081 - B SQN Hammet Way Pit and Conduit Works La"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	30-Jun-08	147312.00	=""	="EMAK COMMUNICATIONS"	10-May-08 08:53 AM	

+="CN75695"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	105620.90	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:53 AM	

+="CN75699"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	150534.45	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:53 AM	

+="CN75718"	"HQJOC PROJECT-HEWLETT PACKARD AUSTRALIA PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Feb-08	30-Jun-08	115835.06	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:55 AM	

+="CN75723"	"PROVISION OF DENTAL ASSISTANT SERVICES - HSF EDN 0"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	129000.30	=""	="NASANSB"	10-May-08 08:55 AM	

+="CN75734"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-PROJECT MANAG ADMINISTRATOR."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-09	137995.00	=""	="FORESITE PTY LTD"	10-May-08 08:56 AM	

+="CN75739"	"FITOUT WORKS AT 1 TOPO SURVEY WORKING ACCOMM"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	25-Feb-08	30-Jun-08	156926.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75755"	"2008 Sponsorship of EOC Group. EOC will conduct ex centres around Australia, targeting school leaver"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	25-Feb-08	30-Jun-08	204530.70	=""	="EOC GROUP"	10-May-08 08:59 AM	

+="CN75756"	"REFURB TO FIRE SIMULATORS SFS"	="Department of Defence"	10-May-08	="Fire protection"	25-Feb-08	30-Jun-08	173910.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75758"	"EXTERNAL REPAINT BLDG E067"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	80639.59	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75763"	"Road cartage and consolidation of cargo OP OUTREACH"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	25-Feb-08	01-Mar-08	81396.70	=""	="PDL TOLL"	10-May-08 08:59 AM	

+="CN75768"	"Provision of storage facilities for Edinburgh and Fishermans Bend."	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Nov-08	113995.20	=""	="EMC GLOBAL HOLDINGS COMPANY"	10-May-08 09:00 AM	

+="CN75771"	"THERMOMETRIC 3208-3 MULTICALORIMETER WITH 12 CHANEL INTERFACE MODULE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Feb-08	30-May-08	100402.50	=""	="WATERS AUSTRALIA PTY LTD"	10-May-08 09:00 AM	

+="CN75775"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS AT WIDE BAY TRAINING AREA"	="Department of Defence"	10-May-08	="Roads and landscape"	25-Feb-08	30-Jun-08	276807.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:00 AM	

+="CN75777"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Jun-08	140970.51	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 09:01 AM	

+="CN75781"	"SQ REG PROJECT DEVELOPMENT - CONDITION REPORT RAAF BASE AMBERLEY ROADS"	="Department of Defence"	10-May-08	="Roads and landscape"	25-Feb-08	30-Jun-08	87725.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:01 AM	

+="CN75795"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Apr-08	143000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	10-May-08 09:02 AM	

+="CN75807"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	140000.00	=""	="DIMENSION DATA LEARNING"	10-May-08 09:04 AM	

+="CN75815"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	86612.33	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75829"	"IBM Computing Equipment and support"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	22-Feb-08	27-Feb-08	205664.80	=""	="TAPESTRY SYSTEMS PTY LTD"	10-May-08 09:06 AM	

+="CN75833"	"POC: MARK MCCLURE CONTACT: 02 626 50420"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	22-Feb-08	30-Jun-09	199886.60	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 09:06 AM	

+="CN75843"	"AIR CHTR OP ANODE FACE TOUR"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	173000.00	=""	="PDL TOLL"	10-May-08 09:07 AM	

+="CN75846"	"AIR CHTR OP ASTUTE AFP INSERTION"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	108900.00	=""	="PDL TOLL"	10-May-08 09:07 AM	

+="CN75848"	"AIR CHTR ASTUTE TLAG 6"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	115230.00	=""	="ALLTRANS INTERNATIONAL"	10-May-08 09:08 AM	

+="CN75852"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	06-Mar-08	91068.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 09:08 AM	

+="CN75854"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	176836.82	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 09:08 AM	

+="CN75855"	"WATER CONSERVATION MEASURES - BRISBANE WATER TANKS"	="Department of Defence"	10-May-08	="Environmental management"	28-Feb-08	30-Jun-08	105127.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:08 AM	

+="CN75857"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	118438.01	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 09:08 AM	

+="CN75858"	"SEAHOUND HARD EROSION REMEDIATION SWBTA"	="Department of Defence"	10-May-08	="Roads and landscape"	28-Feb-08	30-Jun-08	183315.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:08 AM	

+="CN75859"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	145990.41	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 09:09 AM	

+="CN75874"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	29-Feb-08	95983.68	=""	="ALPHAWEST PTY LTD"	10-May-08 09:10 AM	

+="CN75875"	"LOED SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	119572.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:10 AM	

+="CN75895"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102/146 (AREA H) DEM"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	139355.95	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:12 AM	

+="CN75911"	"PROP STUDIES-STOCKTON RIFLE RANGE-PROJECT MANAGER."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-09	105728.70	=""	="URS AUSTRALIA PTY LTD"	10-May-08 09:14 AM	

+="CN75916"	"FCI Targets Contract Development Support for ACG"	="Department of Defence"	10-May-08	="Military fixed wing aircraft"	27-Feb-08	30-Jun-09	94061.00	=""	="NOVA AEROSPACE"	10-May-08 09:14 AM	

+="CN75918"	"Engagement of a programmer / analyst to carry out maintenance & development work."	="Department of Defence"	10-May-08	="Software"	27-Feb-08	31-Jul-08	176000.00	=""	="HAYS PERSONNEL SERVICES"	10-May-08 09:14 AM	

+="CN75919"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	27-Feb-08	114520.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	10-May-08 09:15 AM	

+="CN75932"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	143880.00	=""	="BCT GROUP"	10-May-08 09:16 AM	

+="CN75944"	"BUSINESS SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	02-May-08	170000.00	=""	="TOTAL DECISION SUPPORT PTY LTD"	10-May-08 09:17 AM	

+="CN75945"	"Software procurement"	="Department of Defence"	10-May-08	="Software"	19-Feb-08	30-Jun-09	96764.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:17 AM	

+="CN75946"	"NT1326 Repair Mt Bundy AFV Field Training Area"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Feb-08	30-Jun-08	106554.00	=""	="NORBUILT PTY LTD"	10-May-08 09:17 AM	

+="CN75949"	"HP Notebooks"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	10-Mar-08	92217.24	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:17 AM	

+="CN75967"	"POC RAAF Group Captain Jo Hamwood; DPRA Mr Josh Co"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	19-Feb-08	27-Jun-08	183000.00	=""	="DPRA AUSTRALASIA PTY LTD"	10-May-08 09:19 AM	

+="CN75977"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	164500.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 09:20 AM	

+="CN75980"	"S5128, WR 300060675. HMAS Penguin Refurbishment of Bldg 17 to approx Level 3 standard as per the SoW"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	154836.48	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 09:20 AM	

+="CN75985"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	15-Feb-08	190738.01	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 09:58 AM	

+="CN75994"	"CONTRACT SERVICES"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	22-Nov-07	30-Jun-08	208882.50	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN76004"	"Computer PCI Combo card"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	21-Dec-07	97000.20	=""	="SCITECH PTY LTD"	10-May-08 09:59 AM	

+="CN76008"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	13-Dec-07	87463.21	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 09:59 AM	

+="CN76018"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	82500.00	=""	="CAZIQUE SOLUTIONS PTY LTD"	10-May-08 09:59 AM	

+="CN76028"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	132000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:00 AM	

+="CN76036"	"VIDEO AND AUDIO SYSTEM"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	21-Nov-07	21-Nov-07	90893.71	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76041"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	04-Jul-08	180994.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:01 AM	

+="CN76052"	"ANNUAL MAINTENANCE ON SOFTWARE - CANBERRA BATTLELA B, MELB DEVELOPMENT LAB, ADELAIDE NET WARRIOR"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	21-Nov-07	134090.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	10-May-08 10:01 AM	

+="CN76053"	"Contract to support CFD"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	19-Nov-07	30-Jun-08	111842.50	=""	="ADVANCED VTOL TECHNOLOGIES"	10-May-08 10:01 AM	

+="CN76062"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Jan-08	99307.44	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76072"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	82551.15	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:02 AM	

+="CN76075"	"Provision of profession support for BORIS BASIS"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	03-Jan-08	30-Jun-08	96228.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:03 AM	

+="CN76083"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Apr-08	80850.00	=""	="SME GATEWAY LIMITED"	10-May-08 10:03 AM	

+="CN76093"	"PROJECT MANAGER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Oct-08	143000.00	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 10:04 AM	

+="CN76098"	"HERITAGE-JEZZINE BARRACKS HERITAGE/INFRASTRUCTURE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-09	93702.62	=""	="GODDEN MACKAY LOGAN PTY LTD"	10-May-08 10:04 AM	

+="CN76106"	"Video Teleconferencing Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	31-Dec-07	109749.05	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76113"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	81020.50	=""	="GHD PTY LTD"	10-May-08 10:05 AM	

+="CN76123"	"Fixed Plant and Equipment maintenance program for RAAF Edinburgh and Jindalee for FY 07/08"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	15-Jan-08	30-Jun-08	185500.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:05 AM	

+="CN76124"	"UNDER THE BRADSHAW INDIGENOUS LAND USE AGREEMENT"	="Department of Defence"	10-May-08	="Business administration services"	26-Nov-07	26-Nov-07	136092.00	=""	="NORTHERN LAND COUNCIL"	10-May-08 10:05 AM	

+="CN76126"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	255454.00	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:05 AM	

+="CN76127"	"FP&E REACTIVE MAINTENANCE REIMBURSEABLES"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	30-Apr-08	30-Jun-08	185743.02	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:05 AM	

+="CN76129"	"Management Fees for FY 07/08 in accordance with NQ Comprehensive Maintenance Contract"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	02-May-08	30-Jun-08	167413.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:06 AM	

+="CN76136"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Dec-08	278300.00	=""	="ACUMEN ALLIANCE"	10-May-08 10:06 AM	

+="CN76145"	"Provide Support to the SAP R/3 (ROMAN) BASIS"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	117304.00	="ESD SAP 01/2005"	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:06 AM	

+="CN76153"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	10-May-08	="Medical facility products"	05-May-08	30-Jun-08	100438.80	=""	="PARKER, STEVEN WAYNE"	10-May-08 10:07 AM	

+="CN76155"	"ENCGGERA REDEVELOPMENT STAGE 1."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	30-Jun-08	211957.90	=""	="JOHN HOLLAND CONSTRUCTION PTY LTD"	10-May-08 10:07 AM	

+="CN76164"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	125176.70	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 10:07 AM	

+="CN76169"	"HOLSWORTHY : SPECIAL FORCES TRAINING FACILITY."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	167119.34	=""	="HANSEN YUNCKEN PTY LTD"	10-May-08 10:08 AM	

+="CN76175"	"CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jun-08	109219.00	=""	="STURDY SEATING SYSTEMS"	10-May-08 10:08 AM	

+="CN76177"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	30-Dec-08	212523.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:08 AM	

+="CN76186"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	28-Apr-08	116678.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 10:09 AM	

+="CN76187"	"DISIP Panel Stage Two Order for Site Integration Services at RAAF Waggga and East Sale"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	13-Dec-07	172986.00	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:09 AM	

+="CN76196"	"Undertake road repairs at the range & cantonment areas at the Singleton Military Area"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	20-Feb-08	30-Jun-08	299985.10	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:09 AM	

+="CN76200"	"CONSULTANCY & REPORTING"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	30-Jun-08	244343.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:09 AM	

+="CN76203"	"3D MICE"	="Department of Defence"	10-May-08	="Paper Materials and Products"	27-Nov-07	11-Dec-07	88888.54	=""	="IMMERSION CORPORATION"	10-May-08 10:10 AM	

+="CN76213"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	239522.96	=""	="KAZ GROUP PTY LTD"	10-May-08 10:10 AM	

+="CN76216"	"CADETNET ENHANCEMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	300000.00	=""	="DIALOG INFORMATION TECHNOLOGY"	10-May-08 10:10 AM	

+="CN76220"	"R&D Contract Support for CMD&V Project"	="Department of Defence"	10-May-08	="Professional engineering services"	18-Sep-06	30-Jun-08	107442.50	=""	="IGATECH CONSULTING PTY LTD"	10-May-08 10:10 AM	

+="CN76222"	"Penguin - Refurbishment of BNH - Phase 3"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	21-Apr-08	30-Jun-08	244981.02	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:11 AM	

+="CN76226"	"PARAMEDICAL SERVICES HMAS ALBATROSS JAN-JUN 2007"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	03-Apr-08	30-Jun-08	237084.10	=""	="PARAMEDICAL SERVICES PTY LTD"	10-May-08 10:11 AM	

+="CN76228"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	164978.00	=""	="ICON RECRUITMENT"	10-May-08 10:11 AM	

+="CN76230"	"PROOF & EXPERIMENTAL ESTABLISHMENT GRAYTOWN REFURBISHMENT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Apr-08	30-Jun-09	136208.60	=""	="COLIN JOSS & CO PTY LTD"	10-May-08 10:11 AM	

+="CN76242"	"JP2077 2B1 MILIS solution"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	21-Nov-07	30-May-08	205920.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76246"	"Professional Services"	="Department of Defence"	10-May-08	="Office supplies"	28-Apr-08	30-Jun-08	295292.12	=""	="CONTINUUM SERVICES PTY LTD"	10-May-08 10:12 AM	

+="CN76253"	"REFURBISH RECOVERY BUILDING"	="Department of Defence"	10-May-08	="Project management"	23-Nov-07	30-Jun-08	163599.67	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 10:12 AM	

+="CN76256"	"GSS Contract Hospitality and Catering"	="Department of Defence"	10-May-08	="Saddlery and harness goods"	30-Jun-07	30-Jun-07	185900.04	=""	="SEARSON BUCK PTY LTD"	10-May-08 10:12 AM	

+="CN76262"	"Provision of Services for Zones of Confidence (ZOC) project."	="Department of Defence"	10-May-08	="Business administration services"	01-May-08	30-May-08	157986.40	=""	="HSA SYSTEMS PTY LTD"	10-May-08 10:13 AM	

+="CN76263"	"DS-NQ-TS FURNITURE STORE 232-07/08"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	30-Jun-08	86321.40	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:13 AM	

+="CN76264"	"11 BRIGADE FACILITIES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	28-Apr-08	30-Jun-09	155674.30	=""	="THIESS PTY LTD"	10-May-08 10:13 AM	

+="CN76268"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	289872.00	=""	="ICON RECRUITMENT"	10-May-08 10:13 AM	

+="CN76269"	"contract coding for Air9000 Project"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	29-Jun-08	80437.50	=""	="PROGRESSIVE PEOPLE(AUSTRALIA) PTY L"	10-May-08 10:13 AM	

+="CN76271"	"GRAPHICS"	="Department of Defence"	10-May-08	="Editorial and Design and Graphic and Fine Art Services"	26-Nov-07	30-Jun-09	88000.00	=""	="FAIRHURST GRAPHICS"	10-May-08 10:13 AM	

+="CN76272"	"Hire of contracting services"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	18-Dec-08	230783.61	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:13 AM	

+="CN76274"	"CTD"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Mar-08	01-Sep-08	104719.45	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	10-May-08 10:13 AM	

+="CN76285"	"CONCRETE BARRIERS"	="Department of Defence"	10-May-08	="Concrete and cement and plaster"	26-Nov-07	31-Jan-08	141046.40	=""	="HANSON PRECAST"	10-May-08 10:14 AM	

+="CN76288"	"REFURBISHMENT IT EQUIPMENT"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Aug-07	30-Jun-08	183615.77	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:14 AM	

+="CN76293"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	23-Nov-07	261180.01	=""	="KPMG AUSTRALIA"	10-May-08 10:14 AM	

+="CN76298"	"Construct a storage facility and workshop for ICT at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	110000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:15 AM	

+="CN76307"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-May-09	138563.37	=""	="URBIS PTY LTD"	10-May-08 10:15 AM	

+="CN76310"	"FP&E REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-Apr-08	30-Jun-08	286000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:15 AM	

+="CN76315"	"POC: JON VAHLBERG CONTACT: 02 626 50751"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	14-Dec-07	141900.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 10:16 AM	

+="CN76318"	"ELECTRICITY"	="Department of Defence"	10-May-08	="Utilities"	02-May-08	30-Sep-08	110000.00	=""	="ACTEWAGL - WATER & ELECTRICITY"	10-May-08 10:16 AM	

+="CN76335"	"QANTAS BILL NOV 07"	="Department of Defence"	10-May-08	="Recreational aircraft"	10-Jan-08	11-Jan-08	93018.05	=""	="QANTAS"	10-May-08 10:17 AM	

+="CN76339"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	10-May-08	="Aircraft"	17-Dec-07	16-Jan-08	96976.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76341"	"MSL TRAVEL BILLS"	="Department of Defence"	10-May-08	="Aircraft"	14-Jan-08	14-Jan-08	82691.53	=""	="MSL TRAVEL DN BHD"	10-May-08 10:17 AM	

+="CN76351"	"RMIT HECS Payment"	="Department of Defence"	10-May-08	="Educational institutions"	07-Sep-07	07-Jun-08	131968.20	=""	="RMIT UNIVERSITY"	10-May-08 10:18 AM	

+="CN76352"	"ARMY PRODUCTION  DURING FY07/08"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	151039.28	=""	="GEORGE PATTERSON Y & R"	10-May-08 10:18 AM	

+="CN76354"	"FACOPS"	="Department of Defence"	10-May-08	="Temporary personnel services"	12-Nov-07	30-Jun-08	224950.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:18 AM	

+="CN76356"	"FACOPS"	="Department of Defence"	10-May-08	="Temporary personnel services"	12-Nov-07	30-Jun-08	137437.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:18 AM	

+="CN76363"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	09-Jan-08	31-Dec-08	145918.07	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76369"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	09-Jan-08	10-Jan-08	275000.00	=""	="MINTER ELLISON"	10-May-08 10:19 AM	

+="CN76381"	"TRAVEL SERVICES"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	191472.50	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76388"	"RV0645-RGN-FALL FROM HEIGHT LEGISLATION COMPLIANCE WORKS"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Apr-08	30-Jun-08	250000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 10:20 AM	

+="CN76400"	"SUPPLY OF TIMBER FOR CARPENTER WKSP AT RAAFWLM"	="Department of Defence"	10-May-08	="Non edible plant and forestry products"	10-Mar-08	30-Jun-08	99000.00	=""	="HUDSON BUILDING SUPPLIES"	10-May-08 10:21 AM	

+="CN76414"	"SUPPLY OF TECHNICAL GASES AND HIRE OF CYCLINDERS FOR RAAF BASE WILLIAMTOWN"	="Department of Defence"	10-May-08	="Elements and gases"	24-Apr-08	30-Jun-08	98911.36	=""	="BOC LIMITED"	10-May-08 10:21 AM	

+="CN76424"	"WATER & SEWERAGE RATES - FY 07/08"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	27-Mar-08	30-Jun-08	190950.00	=""	="SYDNEY WATER CORPORATION"	10-May-08 10:22 AM	

+="CN76425"	"GARRISON SUPPORT ACTIVITIES - ADDITIONAL REQUIRE- MENTS - NOV 2007"	="Department of Defence"	10-May-08	="Security surveillance and detection"	13-Dec-07	31-Jul-09	203059.44	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:22 AM	

+="CN76441"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	31-Aug-08	96492.00	=""	="ROSS"	10-May-08 10:23 AM	

+="CN76453"	"FOOD SERVICES"	="Department of Defence"	10-May-08	="Bread and bakery products"	15-Apr-08	30-Jun-08	151418.69	=""	="PDL TOLL"	10-May-08 10:24 AM	

+="CN76460"	"Signature Series, Sprung Structure 60ft x 75ft"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Sep-07	20-Dec-07	219618.24	=""	="SPRUNG INSTANT STRUCTURES (BAHRAIN)"	10-May-08 10:24 AM	

+="CN76470"	"AWHC Division 1 Nursing Hours"	="Department of Defence"	10-May-08	="Medical facility products"	12-Dec-07	31-Dec-07	138572.45	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 10:25 AM	

+="CN76478"	"PAPER SUPPLIES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	29-Apr-08	30-Jun-08	220000.00	=""	="CORPORATE EXPRESS"	10-May-08 10:25 AM	

+="CN76483"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	27-Dec-07	07-Jan-08	132156.21	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:25 AM	

+="CN76489"	"N0V 2007 DS-NT/K QANTAS DEFENCE MEMBERS TRAVEL"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Nov-07	243346.76	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76493"	"QANTAS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	09-Jan-08	210992.99	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76497"	"QANTAS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	08-Jan-08	200265.74	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76498"	"Comms equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	15-Jan-08	169036.04	=""	="MASER TECHNOLOGY GROUP PTY LTD"	10-May-08 10:26 AM	

+="CN76512"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	248210.00	=""	="CLAYTON UTZ"	10-May-08 10:27 AM	

+="CN76532"	"CONSULTANCY SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	31-Mar-08	115797.00	=""	="INTOTALITY PTY LTD"	10-May-08 10:28 AM	

+="CN76536"	"Project Management Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Jun-08	257372.50	=""	="SMS CONSULTING GROUP PTY LTD"	10-May-08 10:29 AM	

+="CN76545"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	01-Sep-08	284650.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:29 AM	

+="CN76546"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	22-Jan-08	31-Dec-08	92576.81	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:29 AM	

+="CN76554"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	92442.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76558"	"RAAF 4TH QUARTER CONTRIBUTION TO RMAF BUTTERWORTH FOR BASE SERVICES"	="Department of Defence"	10-May-08	="Manufacturing support services"	30-Jan-08	30-Jan-08	149427.03	=""	="KETUA AKAUNTAN KEMMENTERIAN"	10-May-08 10:30 AM	

+="CN76581"	"02-24435630NOV07 LINE 3868 - 3990"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	115175.31	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76583"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	01-Feb-08	31-Dec-08	123458.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76585"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	108696.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76592"	"TAS4076 STA Fire Management"	="Department of Defence"	10-May-08	="Environmental management"	27-Nov-07	30-Jun-08	110000.00	=""	="RESOLVE FM"	10-May-08 10:32 AM	

+="CN76593"	"Supply and installation of Intrusion Alarm System"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	27-Nov-07	27-Nov-08	105465.98	=""	="PROSEC SECURITY & COMMUNICATIONS LT"	10-May-08 10:32 AM	

+="CN76597"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	07-Feb-08	82505.45	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:32 AM	

+="CN76601"	"PAYMENT TO OFFICAL BANK ACCOUNT PALAU"	="Department of Defence"	10-May-08	="Project management"	04-Feb-08	30-Jun-10	83230.66	=""	="MARITIME SURVEILLANCE"	10-May-08 10:33 AM	

+="CN76607"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	05-Feb-08	115000.00	=""	="MINTER ELLISON"	10-May-08 10:33 AM	

+="CN76611"	"ARTC DECEMBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Dec-07	05-Feb-08	223929.03	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76623"	"DECEMBER 2007 STATEMENT"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Jan-08	271249.67	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76630"	"2007-08 NATIONAL AIRFIELDS PROJECTS - PACKAGE 1 - SERVICES."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	238876.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	10-May-08 10:35 AM	

+="CN76633"	"Fit out of CSIRO premises for Defence use"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	12-Oct-07	21-Dec-07	220000.00	=""	="CSIRO"	10-May-08 10:35 AM	

+="CN76634"	"Consultancy Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	27-Nov-07	30-Jun-08	94325.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:35 AM	

+="CN76637"	"GSS CUSTOMER PAYS INVOICES DEC 07"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	14-Jan-08	30-Jun-08	166606.89	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:35 AM	

+="CN76640"	"BMTA Fire Management 2008"	="Department of Defence"	10-May-08	="Environmental management"	27-Nov-07	30-Jun-08	110000.00	=""	="RESOLVE FM"	10-May-08 10:35 AM	

+="CN76642"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	232525.01	=""	="ERNST & YOUNG CONSULTING"	10-May-08 10:35 AM	

+="CN76646"	"HMAS ALBATROSS:REDEVELOPMENT STAGE1 AND 2 FDPT"	="Department of Defence"	10-May-08	="Heavy construction machinery and equipment"	28-Nov-07	30-Jun-09	101200.00	=""	="CARSON GROUP PTY LTD"	10-May-08 10:36 AM	

+="CN76673-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	27-Feb-08	240721.78	=""	="STRATOS"	10-May-08 10:37 AM	

+="CN76675-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	27-Feb-08	110884.77	=""	="STRATOS"	10-May-08 10:37 AM	

+="CN76676"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	107463.44	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:37 AM	

+="CN76692"	"ASRAAM SOFTWARE SUPPORT CAPABILITY (AASSC) SIMULATION CAPABILITY SOFTWARE ENGINEER"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Nov-07	30-Jun-08	88000.00	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 10:38 AM	

+="CN76696"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	28-Feb-08	233748.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:38 AM	

+="CN76697"	"SECDET VEHICLE LEASE FOR DECEMBER 2007"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Dec-07	29-Jan-08	81172.08	=""	="SAUDI NAVAL SUPPORT COMPANY"	10-May-08 10:38 AM	

+="CN76704"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	21-Dec-07	104491.25	=""	="KAZ GROUP PTY LTD"	10-May-08 10:39 AM	

+="CN76705"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	24-Jan-08	125000.00	=""	="MINTER ELLISON"	10-May-08 10:39 AM	

+="CN76714"	"PAYMENT OF FUNDS"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	03-Dec-07	03-Dec-07	135916.00	=""	="AFS INTERCULTURAL PROGRAMS"	10-May-08 10:39 AM	

+="CN76715"	"QANTAS BILL HQJOC  OCT NOV 2007"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	30-Jan-08	115849.51	=""	="QANTAS"	10-May-08 10:39 AM	

+="CN76722"	"SYSTEM, PHAROSFX (AUST/NZ), 488NM/635NM EXTERNAL L ASER, FX, PDQ 1-USER NETWORK LICENSE"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	03-Dec-07	31-Jan-08	124806.00	=""	="BIO-RAD LABORATORIES PTY LTD"	10-May-08 10:40 AM	

+="CN76725"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	162829.70	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76729"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	153224.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76733"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	246446.20	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76734"	"FLIGHTS FOR MEMBERS AND FAMILY"	="Department of Defence"	10-May-08	="Recreational aircraft"	14-Nov-07	20-Dec-08	124119.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:40 AM	

+="CN76735"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	195985.90	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76749"	"S5180, WR 300071523, 300071524, 300071525, 3000715 300071354. DS-SC Regional Physcial Infrastructure"	="Department of Defence"	10-May-08	="Fabricated pipe assemblies"	04-Dec-07	30-Jun-08	92688.75	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:41 AM	

+="CN76764"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	15-Nov-07	30-Nov-07	130000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76766"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	19-Nov-07	30-Nov-07	119128.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76770"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Nov-07	161000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76774"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	12-Nov-07	30-Nov-07	190000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:43 AM	

+="CN76776"	"Routine -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Nov-07	30-Jun-08	98005.72	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:43 AM	

+="CN76804"	"TRAILER CONSTRUCTION, SUPPLY CABBLING AND WATER SE"	="Department of Defence"	10-May-08	="Transportation components and systems"	02-Oct-07	30-Nov-07	104047.23	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76810"	"AFPO 13 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	118917.39	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76823"	"RemoteView Software"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	10-Dec-07	96406.20	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	10-May-08 10:45 AM	

+="CN76827"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	07-May-08	84700.00	=""	="BLUELINE CONSULTING SERVICES"	10-May-08 10:46 AM	

+="CN76828"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	28-Nov-07	86328.06	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76830"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	28-Nov-07	107993.76	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76833"	"SUBSCRIPTION TO DEFENCE SEARCHABLE NEWS"	="Department of Defence"	10-May-08	="Computer services"	30-Nov-07	01-Dec-07	287650.00	=""	="SAI GLOBAL LTD"	10-May-08 10:46 AM	

+="CN76839"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Nov-07	20-Nov-07	180000.00	=""	="ROBERTS NEHMER MCKEE"	10-May-08 10:46 AM	

+="CN76841"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	12-Nov-07	20-Nov-07	275000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76857"	"20080213-LCUR - SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	13-Feb-08	13-Feb-08	275000.00	=""	="MINTER ELLISON"	10-May-08 10:48 AM	

+="CN76859"	"20080214-LCUR"	="Department of Defence"	10-May-08	="Legal services"	14-Feb-08	19-Feb-08	240000.00	=""	="MINTER ELLISON"	10-May-08 10:48 AM	

+="CN76876"	"Replace beds"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	03-Dec-07	30-Jun-08	88995.50	=""	="KENT"	10-May-08 10:49 AM	

+="CN76894"	"BNTS and MTA Grassland Management Strategies"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	100390.40	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 10:50 AM	

+="CN76895"	"HIRE OF UPARMOURED VEHICLES FOR SECDET"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Oct-07	24-Nov-07	82416.96	=""	="SAUDI NAVAL SUPPORT COMPANY"	10-May-08 10:50 AM	

+="CN76897"	"SITE PREPARATION, SUPPY AND SET TO WORK TWO ACCOM TRAILERS FOR AUST PRECINCT CAMP VICTORY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	06-Nov-07	24-Nov-07	103287.91	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76904"	"AIR CHTR PNG DEPLOY OP ANODE"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	101790.00	=""	="PDL TOLL"	10-May-08 10:50 AM	

+="CN76908"	"CONSTRUCTION OF OFFICE AREA"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jan-08	86548.00	=""	="CAPITAL INTERIORS"	10-May-08 10:51 AM	

+="CN76914"	"ULTIMATE 3000 NANO LC (2-D SALT PLUG)"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	20-Dec-07	123555.58	=""	="DIONEX PTY LTD"	10-May-08 10:51 AM	

+="CN76920"	"Comms/IT"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	05-May-09	97175.39	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	10-May-08 10:52 AM	

+="CN76922"	"Fluent Software licences"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	03-Dec-07	81685.24	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 10:52 AM	

+="CN76925"	"GSS CUSTOMER PAYS INVOICES"	="Department of Defence"	10-May-08	="Cleaning and janitorial services"	19-Nov-07	30-Jul-10	192822.27	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:52 AM	

+="CN76927"	"TRAVEL SERVICES"	="Department of Defence"	10-May-08	="Passenger transport"	31-Oct-07	22-Nov-07	197363.36	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:52 AM	

+="CN76929"	"02-244356 30SEP07 LINE ITEMS 3643-3653,3655-3748, 3750,3752-3773"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Sep-07	30-Jun-08	120272.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:52 AM	

+="CN76933"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	23-Nov-07	250000.00	=""	="MINTER ELLISON"	10-May-08 10:52 AM	

+="CN76958"	"WR 300074541, S5113, Consultancy to determine the required"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	257626.27	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:54 AM	

+="CN76961"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	05-Dec-07	11-Dec-07	245000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76962"	"CMS Mgt Fee - Expert Estate Advice (ESD Projects)"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	128821.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:54 AM	

+="CN76968"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	83389.90	=""	="ROBERT BARNETT & ASSOCIATES PTY LTD"	10-May-08 10:54 AM	

+="CN76969-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Nov-07	30-Jun-08	279434.82	=""	="STRATOS"	10-May-08 10:54 AM	

+="CN76975"	"02-244356 31AUG07 LINE ITEMS 3538-3562,3572-3640"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	154450.56	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:55 AM	

+="CN76976"	"AIR CHTR OP ASTUTE REDEPLOY"	="Department of Defence"	10-May-08	="Aircraft"	22-Nov-07	09-Dec-07	291699.00	=""	="PDL TOLL"	10-May-08 10:55 AM	

+="CN76979"	"Computer Components"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	30-Nov-07	97762.50	=""	="COMMANDER (ACT)"	10-May-08 10:55 AM	

+="CN76991"	"ROCKINGHAM - ANZSPO - OFFICE REFURBISHMENT. PM/CA SERVICES FOR THE DELIVERY PHASE OF PROJECT N"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	83738.60	=""	="COFFEY PROJECTS PTY LTD"	10-May-08 11:41 AM	

+="CN77001"	"TAS4095 - TAS Region Conduct Asbestos Inspections"	="Department of Defence"	10-May-08	="Environmental Services"	30-Jan-08	30-Jun-08	117700.00	=""	="RESOLVE FM"	10-May-08 11:41 AM	

+="CN77003"	"10 RAN MK3 TOWED TARGETS"	="Department of Defence"	10-May-08	="Military watercraft"	30-Jan-08	30-Jun-08	128700.00	=""	="DEFENCE MARITIME SERVICES"	10-May-08 11:41 AM	

+="CN77016"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Jan-08	01-Jun-08	288332.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 11:42 AM	

+="CN77017"	"Upgrade Communications Cabling"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	150083.40	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 11:42 AM	

+="CN77032"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	137500.00	=""	="SECURELINK PTY LTD"	10-May-08 11:43 AM	

+="CN77033"	"PROVISION OF PHARMACIST SERVICES - KESWICK BKS JAN"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	129000.30	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77035"	"PROVISION OF DENTAL ASSISTANT SERVICES - KESWICK B JAN 08 -JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	81000.70	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77037"	"PROVISION OF DENTIST SERVICES KESWICK BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	197989.00	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77039"	"PROVISION OF DENTAL PRACTICE MANAGER - KESWICK BARRACKS JAN 08- JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	122001.00	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77040"	"Research and Development"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	31-Dec-09	94823.30	=""	="DEAKIN UNIVERSITY RESEARCH"	10-May-08 11:44 AM	

+="CN77042"	"General Research and Development"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	30-Jun-10	244750.00	=""	="QUEENSLAND UNIVERSITY OF"	10-May-08 11:44 AM	

+="CN77045"	"PROVISION OF DENTIST SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	162000.30	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77049"	"PROVISION OF PHYSIOTHERAPIST SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	159000.60	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77050"	"PSG ANALOG SIGNAL GENERATOR 250KHZ TO 40 GHZ MXA SIGNAL ANALYSER 20HZ TO 26.5 GHZ"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	19-Feb-08	114361.98	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:44 AM	

+="CN77062"	"Cabling to Demountables"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	16-Jan-08	30-Jun-08	92802.00	=""	="BTEC COMMUNICATIONS PTY LTD"	10-May-08 11:45 AM	

+="CN77068"	"E8267D- PSG VECTOR SIGNAL GENERATOR WITH OPTIONS"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jan-08	01-Feb-08	218741.96	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:45 AM	

+="CN77070"	"Security to hangar"	="Department of Defence"	10-May-08	="Personal safety and protection"	16-Jan-08	30-Jun-08	249506.40	=""	="CHUBB SECURITY AUST PTY LTD"	10-May-08 11:45 AM	

+="CN77072"	"Security"	="Department of Defence"	10-May-08	="Personal safety and protection"	16-Jan-08	30-Jun-08	94996.00	=""	="CHUBB SECURITY AUST PTY LTD"	10-May-08 11:45 AM	

+="CN77085"	"Environmental Clearance"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	30-Jun-08	283584.41	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 11:46 AM	

+="CN77090"	"SN02305 - Asbestos Removal"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	224999.50	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:47 AM	

+="CN77093"	"Dev. & Evaluate Networked UAV EW Systems"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Jan-08	30-May-08	88000.00	=""	="CONSUNET PTY LTD"	10-May-08 11:47 AM	

+="CN77097"	"SUN FIRE V443 SERVER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	93753.00	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 11:47 AM	

+="CN77102"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Sep-08	264000.04	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 11:48 AM	

+="CN77111"	"servers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Mar-08	269587.92	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:48 AM	

+="CN77113"	"ArcGIS Software"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	01-Feb-08	93878.40	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 11:48 AM	

+="CN77120"	"PSP"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Jun-08	97268.16	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:49 AM	

+="CN77126"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-11	269556.11	=""	="TELSTRA"	10-May-08 11:49 AM	

+="CN77135"	"PROVISION OF SOFTWARE DEVELOPMENT PHASE 2"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Jan-08	21-Jan-08	104345.85	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 11:50 AM	

+="CN77136"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	28-Jun-08	150000.00	=""	="MR ANDREW JOHN KIRKHAM"	10-May-08 11:50 AM	

+="CN77144"	"Firepower study for L17 Against standing offer 07/022"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	16-Jan-08	24-Jun-08	110000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 11:51 AM	

+="CN77145"	"Software design and Development"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	30-May-08	131994.50	="2007/1066149"	="EBOR COMPUTING"	10-May-08 11:51 AM	

+="CN77153"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	31-Mar-08	105600.00	=""	="UNIVERSITY OF CANBERRA"	10-May-08 11:51 AM	

+="CN77154"	"ENHANCED LANDFORCE-STAGE 1 ERM-ENVIRONMENTAL SCOPING STUDY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	109675.50	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 11:51 AM	

+="CN77159"	"Antenna Jackscrew"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	31-Jan-08	30-May-08	137765.10	=""	="MOTION TECHNOLOGIES PTY LTD"	10-May-08 11:52 AM	

+="CN77164"	"HOLSWORTHY: SPECIAL FORCES TRAINING FACILITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	92077.70	=""	="CROWN LIFT TRUCKS"	10-May-08 11:52 AM	

+="CN77168"	"Refurbishment of wet canteen area at Singleton Military Area"	="Department of Defence"	10-May-08	="General building construction"	15-Jan-08	30-Jun-08	110999.90	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:52 AM	

+="CN77172"	"POC: Amelia Charton COntact: 02 62650273"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	16-Jan-08	31-Jan-08	81290.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 11:52 AM	

+="CN77173"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	245275.64	=""	="SUN MICROSYSTEMS"	10-May-08 11:52 AM	

+="CN77182"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	146080.00	=""	="HAY GROUP PTY LTD"	10-May-08 11:53 AM	

+="CN77185"	"AMX NETLINX NI13100 / MODERO 10" TOUCH PANEL WITH DESKTOP TILT BASE / IR TX MODULE / POWER CONTROL"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	01-Feb-08	20-Feb-08	103679.40	=""	="INTEGRATED VISION PTY LTD"	10-May-08 11:53 AM	

+="CN77193"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	30-Mar-08	124571.86	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 11:54 AM	

+="CN77194"	"STAGE 2 ENVIRONMENTAL INVESTIGATIONS RAAF BASE TIN MANUAL)"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	98380.70	=""	="GHD PTY LTD"	10-May-08 11:54 AM	

+="CN77195"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	15-Jun-08	200000.00	=""	="PETER RAYMOND CALLAGHAN"	10-May-08 11:54 AM	

+="CN77201"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. BAULDERSTONE HORNIBROOK(MANAGING CONTRACTOR)TRUST"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	153908.70	=""	="BAULDERSTONE HORNIBROOK TRUST"	10-May-08 11:54 AM	

+="CN77222"	"Engineering Services under SON45190"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	20-May-08	110000.00	="2007-1055889"	="VCORP CONSULTING PTY LTD"	10-May-08 11:55 AM	

+="CN77221"	"Comms/IT"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	23-Jun-08	159170.04	=""	="GENERAL DYNAMICS C4 SYSTEMS INC."	10-May-08 11:55 AM	

+="CN77223"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	18-Jan-08	30-Jun-08	80796.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 11:56 AM	

+="CN77229"	"R1-C REFURB OF DEPSEC AREA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	209000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77232"	"STRATEGIC ADVISORY SERVICES TO THE UNFUNDED LIABIL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	86350.00	=""	="MCGRATH NICOL & PARTNERS"	10-May-08 11:56 AM	

+="CN77235"	"PROCURE / UPGRADE SEAFARER VIEWER TOOL"	="Department of Defence"	10-May-08	="Computer services"	18-Jan-08	30-Jun-08	149171.00	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:56 AM	

+="CN77236"	"Cryptographic Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	31-Mar-08	94043.79	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 11:56 AM	

+="CN77239"	"SN02523 - PM Fees for Tennant St OJAC & AMC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	130900.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77240"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	03-Apr-08	86257.35	=""	="PAULA KELLY & ASSOCIATES"	10-May-08 11:56 AM	

+="CN77251"	"CONTRACTOR PROVIDE CDD & INITIAL JP2047PH3"	="Department of Defence"	10-May-08	="Project management"	21-Jan-08	30-Jun-08	198088.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 11:57 AM	

+="CN77263"	"FURNITURE FOR OFFICER MESS LARRAKAYAH BARRACKS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	28-Mar-08	89974.24	=""	="JAPE FURNISHING SUPERSTORE"	10-May-08 11:58 AM	

+="CN77272"	"Desktop COMPTERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	133053.03	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77279"	"Removal of unsued, unsafe & unapproved facilities at Fort Wallace"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	300000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:59 AM	

+="CN77283"	"ENHANCED LANDFORCE-STAGE 1 PB1 PMCA PACKAGE 1-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	208377.40	=""	="PARSONS BRINCKERHOFF"	10-May-08 11:59 AM	

+="CN77287"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	29-Mar-08	90058.12	=""	="CORPORATE EXECUTIVE BOARD COMPANY"	10-May-08 11:59 AM	

+="CN77291"	"UGLS REIMBURSEMENT-WILLIAMTOWN BUSINESS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	220000.00	=""	="UNITED GROUP SERVICES"	10-May-08 12:00 PM	

+="CN77292"	"SUSTAINABLE AMANGEMENT OF DEFENCE TRAINING AREAS-C"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	104599.00	=""	="GHD PTY LTD"	10-May-08 12:00 PM	

+="CN77294"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	93124.00	=""	="CLAYTON UTZ"	10-May-08 12:00 PM	

+="CN77303"	"PSP PROVIDE GUIDANCE ADVICE FOR NCWPO"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	120174.78	=""	="JACOBS AUSTRALIA"	10-May-08 12:00 PM	

+="CN77306"	"Engagement of Senior Delivery Manager"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	30-Jun-08	137500.00	=""	="KELLAWAY PTY LTD"	10-May-08 12:00 PM	

+="CN77307"	"PSP: ANNA McCARTHY PERIOD:17/03/08 - 19/08/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	114168.34	=""	="JACOBS AUSTRALIA"	10-May-08 12:01 PM	

+="CN77308"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	17-Feb-08	102699.65	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:01 PM	

+="CN77312"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	20-Feb-08	171065.86	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:01 PM	

+="CN77316"	"TEST CONSOLES REQUIRED FOR SET UP OF NIDA CLASSROO HMAS CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	17-Jan-08	191400.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 12:01 PM	

+="CN77319"	"ADVANCED TECHNICAL TRAINING FOR SENIOR SAILORS"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Jan-08	30-Jun-08	90919.40	=""	="RMIT TRAINING CELL"	10-May-08 12:01 PM	

+="CN77322"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	98108.66	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:01 PM	

+="CN77332"	"SSPA AMPLIFIER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Apr-08	121748.00	=""	="RICHARDSON ELECTRONICS PTY LTD"	10-May-08 12:02 PM	

+="CN77334"	"ROBERTSON BARRACKS-1ST AVIATION REGIMENT FACILITIE PROJECT MANAGEMENT/CONTRACT ADMINISTRATOR SERVICE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	96189.50	=""	="CONNELL WAGNER"	10-May-08 12:02 PM	

+="CN77344"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	17-Jan-08	165000.00	=""	="RIGHT MANAGEMENT CONSULTANTS"	10-May-08 12:03 PM	

+="CN77351"	"Complex Procurement 0708-228"	="Department of Defence"	10-May-08	="Distribution and Conditioning Systems and Equipment and Components"	22-Jan-08	30-Jun-08	103053.01	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	10-May-08 12:03 PM	

+="CN77354"	"Engagement of Project Manager for NVV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-08	110000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:03 PM	

+="CN77356"	"TSS  Contract - Provision of Technical Assistance Services for JP2042 Support"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jan-08	20-May-08	190344.00	=""	="EBOR COMPUTING"	10-May-08 12:03 PM	

+="CN77362"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	18-Jan-08	16-May-08	83600.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:04 PM	

+="CN77365"	"SN02698 - GLADSTONE ST SECURITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	123093.62	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:04 PM	

+="CN77367"	"BULK GROCERY SUPPLIES FOR HMAS CAIRNS BASED VESSEL FOR THIS FINANCIAL YEAR (07/08)"	="Department of Defence"	10-May-08	="Food and beverage industries"	21-Jan-08	30-Jun-08	80000.00	=""	="BID VEST"	10-May-08 12:04 PM	

+="CN77368"	"Engagement of Project Manager for NVV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-08	121000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:04 PM	

+="CN77381"	"DEVELOP EXERCISE PITCH BLACK SCENARIO"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-Jan-08	30-Jun-08	132500.50	=""	="MILSKIL PTY LTD"	10-May-08 12:05 PM	

+="CN77389"	"DEMS INFRASTRUCTURE APPRAISAL MODULE STAGE 2 ENHAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	176000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 12:05 PM	

+="CN77393"	"ACCOMMODATION"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	22-Jan-08	22-Jan-08	93993.68	=""	="SOUTHERN CROSS UNIVERSITY"	10-May-08 12:06 PM	

+="CN77396"	"MSCT-lite perpetual licence & TDF perpetual licenc e"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	20-Feb-08	253052.80	=""	="DARONMONT TECHOLOGIES PTY LTD"	10-May-08 12:06 PM	

+="CN77407"	"SN01923 - REGIONAL FIRE PREVENTION WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	282889.44	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:06 PM	

+="CN77413"	"JP2048 PH4A/B-AMPHIBIOUS SHIPS,INFRASTRUCTURE AT G SBC CONSULTANT FOR THE ADAS INFRASTRUCTURE PROJEC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	132495.00	=""	="WORLEY PARSONS SERVICES PTY LTD"	10-May-08 12:07 PM	

+="CN77448"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	14-Apr-08	97936.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:09 PM	

+="CN77458"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	81145.26	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:09 PM	

+="CN77459"	"RESEARCH AGREEMENT - "COHERANT TRANSFER BY ADIABATIC PASSAGE FEASIBILITY STUDY""	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Jan-08	30-Jun-08	148553.90	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:09 PM	

+="CN77475"	"Consltant and Professional Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Jun-08	253176.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 12:10 PM	

+="CN77477"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	31-May-08	114950.00	=""	="TOTAL DECISION SUPPORT PTY LTD"	10-May-08 12:10 PM	

+="CN77481"	"PAYMENT FOR AAR SUPPORT FOR RED FLAG DURING NOV 05"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	25-Jan-08	25-Jan-08	281098.83	=""	="DFAS OMAHA OPERATING LOCATION"	10-May-08 12:10 PM	

+="CN77494"	"Maintenance support of the DNSA defence contract centre hardware."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	18-Dec-08	93667.55	=""	="AVAYA AUSTRALIA PTY LTD"	10-May-08 12:11 PM	

+="CN77496"	"Provision of wireless data cards in support of Dreams"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Jan-08	29-Feb-08	80000.80	=""	="TELSTRA"	10-May-08 12:11 PM	

+="CN77503"	"WR 300060683, S5134. HMAS Kuttabul Expense compone refurbishment of Building 807."	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Jan-08	30-Jun-08	285877.67	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:12 PM	

+="CN77515"	"Design of 1/4 scale model of components of the AP-3C aircraft"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	29-Jan-08	30-Apr-08	172260.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	10-May-08 12:12 PM	

+="CN77516"	"CONTACT: PAUL MEULENBROEK 08 8935 4622. WR: 150085395"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Jan-08	30-Jun-08	245177.50	=""	="ASSET SERVICES"	10-May-08 12:12 PM	

+="CN77520"	"Storage system"	="Department of Defence"	10-May-08	="Containers and storage"	08-Jan-08	31-Jan-08	84920.00	=""	="BROWNBUILT PTY LTD"	10-May-08 12:13 PM	

+="CN77528"	"2008 subs for Elsevier Electronic Journals for DST ORL & content fee for Elsevier Electronic Jou"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Jan-08	09-Jan-08	190791.45	=""	="ELSEVIER B.V."	10-May-08 12:13 PM	

+="CN77531"	"CONSTRUCTIONS"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	29-Jan-08	30-Jun-08	115159.37	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:13 PM	

+="CN77534"	"LKH BUILDING 4 REFURBISHMENT"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Jan-08	30-Jun-08	118580.00	=""	="G H D PTY LTD"	10-May-08 12:13 PM	

+="CN77547"	"PROVISION OF SOFTWARE ENGINEER"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	24-Jan-08	30-Jun-08	105354.48	=""	="RAYTHEON AUST PTY LTD"	10-May-08 12:14 PM	

+="CN77550"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Software"	08-Jan-08	30-May-08	143000.00	=""	="LOCKHEED MARTIN AUSTRALIA P / L"	10-May-08 12:14 PM	

+="CN77552"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	26-Jun-08	99000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:14 PM	

+="CN77553"	"DEVELOP  PROJECT DOCUMENTATION JP2057 PH3"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	30-Jun-08	152400.00	=""	="SME GATEWAY LIMITED"	10-May-08 12:14 PM	

+="CN77573"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	24-Jan-08	30-Jun-08	88207.59	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 12:15 PM	

+="CN77577"	"PSP:STEPHEN BERGMAN PERIOD:04/02/08 - 11/07/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	180322.67	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 12:16 PM	

+="CN77579"	"Provision of three PSP contractors ICT service sup 08"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	24-Jan-08	30-Jun-08	153945.00	=""	="ICON RECRUITMENT"	10-May-08 12:16 PM	

+="CN77587"	"DEMS INFRASTRUCTURE APPRAISAL MODULE STAGE 1 ENHAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	94501.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 12:16 PM	

+="CN77590"	"PSP: RAYMOND WINN PERIOD:18/2/08 - 23/07/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Jul-08	160930.00	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 12:16 PM	

+="CN77591"	"FACOPS REVIEW CONSULTANCY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	176000.00	=""	="EVANS & PECK PTY LTD"	10-May-08 12:17 PM	

+="CN77593"	"NATIONAL POLLUTION INVENTORY EMS IMPLEMENTATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	176000.00	=""	="PARSON BRINKERHOFF AUSTRALIA"	10-May-08 12:17 PM	

+="CN77596"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	113128.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77615"	"PABX System"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Jan-08	01-Apr-08	278062.31	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:18 PM	

+="CN77623"	"Professional support to the RUP Stage 2"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	14-Jan-08	31-Dec-08	266200.00	=""	="ACSPRO PTY LTD"	10-May-08 12:18 PM	

+="CN77627"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	29-Feb-08	140890.83	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:19 PM	

+="CN77643"	"Multimode interface"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	24-Mar-08	94600.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 12:19 PM	

+="CN77645"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO PROJECT MANAGER/CONTRACTOR ADMINISTRATOR DURI"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-09	184526.10	=""	="CONNELL WAGNER (SA) PTY LTD"	10-May-08 12:20 PM	

+="CN77647"	"F/A-18 FEA Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Jan-08	30-Jun-08	110000.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:20 PM	

+="CN77650"	"PASSPORT EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Dec-07	31-Dec-07	98160.68	=""	="WESTCON GROUP"	10-May-08 12:20 PM	

+="CN77657"	"PABX System"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Jan-08	06-May-08	140750.85	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:20 PM	

+="CN77661"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE GHD-HYDRAULIC DESIGN-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	175719.15	=""	="GHD PTY LTD"	10-May-08 12:20 PM	

+="CN77666"	"ACMS-1493191 PRN: AVOP030/08 CH47 SIMULATOR TRAINING UK"	="Department of Defence"	10-May-08	="Military rotary wing aircraft"	11-Dec-07	12-Dec-07	208672.24	=""	="CAE AIRCREW TRAINING SERVICES PLC"	10-May-08 12:21 PM	

+="CN77670"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	274330.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77678"	"Provide SEI Support to DSTO and the ADO through the establishment of a SEI Industry Cell"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Dec-07	29-May-08	277116.40	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:21 PM	

+="CN77682"	"FLIGHT INFORMATION PUBLICATIONS FOR ADF PILOTS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	11-Dec-07	31-Oct-08	226713.40	=""	="AIRSERVICES AUSTRALIA"	10-May-08 12:22 PM	

+="CN77685"	"Conversion of lunch room to office accommodation at Facility 142 at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="General building construction"	15-Jan-08	30-Jun-08	142308.10	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:22 PM	

+="CN77689"	"DEFENCE HEALTH SERVICES PROVISION OF REGIONAL PRAC VICTORIA - HEALTH SERVICES FLIGHT WILLIAMS."	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-08	124790.00	=""	="ROSEMARY J VANDENBERG"	10-May-08 12:22 PM	

+="CN77703"	"RANDWICK DISPOSAL 7 RATIONALISATION PROJECT-INTERI REMEDIATION OF ASBESTOS FROM SOUTHERN BANK AT THE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	15-Jan-08	30-Jun-08	254468.12	=""	="WARD CIVIL AND ENVIRONMENT ENGINEER"	10-May-08 12:23 PM	

+="CN77705"	"Cybird 5 Air Vehicles"	="Department of Defence"	10-May-08	="Specialty aircraft"	15-Jan-08	29-Feb-08	101200.00	=""	="CYBER TECHNOLOGY"	10-May-08 12:23 PM	

+="CN77706"	"ADVERTISING"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	110000.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 12:23 PM	

+="CN77716"	"PAYMENT FOR LOGISTIC SUPPORT TO KUJARRA III 24 SEP 2007"	="Department of Defence"	10-May-08	="Transport operations"	12-Dec-07	19-Dec-07	232578.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 12:23 PM	

+="CN77719"	"Dual Digital Monitor Receivers"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	10-Jan-08	30-Apr-08	177040.19	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 12:23 PM	

+="CN77722"	"PABX system upgrade"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	01-Dec-08	224964.52	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 12:24 PM	

+="CN77725"	"DSTO servers for COTS laboratory set hardware for RAN submarines"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	14-Mar-08	129570.99	=""	="GERMANE SYSTEMS LC"	10-May-08 12:24 PM	

+="CN77728"	"OP OUTREACH - POLICE COMPOUNDS - MINJILANG CMMTY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	274220.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77731"	"2007-08 NATIONAL AIRFIELDS PROJECTS-PACKAGE 2-PROJ SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-09	237150.10	=""	="COFFEY PROJECTS"	10-May-08 12:24 PM	

+="CN77751"	"DEFENCE FITOUT WORKS - AUSTRALIAN CHANCERY MADRID"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-09	165490.60	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 12:25 PM	

+="CN77759"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Nov-08	162800.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77770"	"REVIEW OF MONITORING INDICTORS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-08	101008.60	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 12:26 PM	

+="CN77771"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	137374.00	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 12:26 PM	

+="CN77773"	"22 Photocopiers"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	10-Dec-07	14-Jan-08	230142.00	=""	="CANON AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77776"	"Team Lead"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	11-Jan-08	30-Apr-08	101252.01	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	10-May-08 12:27 PM	

+="CN77785"	"REFURBISH FIRE SIMULATORS & SUPPORT STRUCTURES CONSULTANCY FOR STRUCTURAL INTEGRITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	106150.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:27 PM	

+="CN77788"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Jan-08	30-Jun-08	119942.66	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 12:27 PM	

+="CN77809"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	82500.00	=""	="DSW CONSULTING"	10-May-08 12:28 PM	

+="CN77810"	"SUPPLY OF 1 X PRINCIPLE SCIENTIFIC ADVISOR FOR PERIOD 16 JAN TO 30 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	94468.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:29 PM	

+="CN77812"	"S5089, WR 300076174. FBE Berths 2-5 Repair Subside consultancy firm to produce a report and sepcific"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	30-Jun-08	239409.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:29 PM	

+="CN77820"	"TENDER AZ 3826-GALLIPOLI BARRACKS,ENOGGERA ZONE PL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-09	180364.80	=""	="SKM"	10-May-08 12:29 PM	

+="CN77822"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	21-Jan-08	30-Jun-08	88000.00	=""	="APT BUSINESS SOLUTIONS PTY LTD"	10-May-08 12:29 PM	

+="CN77836"	"tape cartridges and cleaning cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	30-Apr-08	155320.00	=""	="PRODATA PTY LTD"	10-May-08 12:30 PM	

+="CN77841"	"POC: CHRIS MCCOLL CONTACT: 02 626 60001"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Dec-07	22-Dec-08	151313.37	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:30 PM	

+="CN77852"	"HMAS STIRLING REDEVELOPMENT STAGE 3A. PMCA FOR SBC PHASE."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	263692.00	=""	="CONNELL WAGNER (WA) PTY LTD"	10-May-08 12:31 PM	

+="CN77857"	"Maritime Air Radr Modelling Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	87967.00	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:31 PM	

+="CN77887"	"Professional Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	31-Dec-07	240900.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	10-May-08 12:33 PM	

+="CN77899"	"Mobile Scadas Analyser"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	13-Dec-07	15-Feb-08	114008.40	=""	="DAVIDSON MEASUREMENT"	10-May-08 12:33 PM	

+="CN77903"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	31-Jan-08	30-Nov-08	153307.00	=""	="CLAYTON UTZ"	10-May-08 12:34 PM	

+="CN77902"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	81431.70	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:34 PM	

+="CN77910"	"7114LR12 RECEIVER INCL LICENCES, CASES, CABLES"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	31-Jan-08	29-Feb-08	167101.00	=""	="BELLINGER INSTRUMENTS PTY LTD"	10-May-08 12:34 PM	

+="CN77914"	"long term strategic analysis - JLU-N infrastractur"	="Department of Defence"	10-May-08	="Information services"	31-Jan-08	30-Jul-08	81906.00	=""	="BILL ROSS & ASSOCIATES PTY LTD"	10-May-08 12:34 PM	

+="CN77919"	"Benefits Manager"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	13-Dec-07	21-Jan-10	176852.92	=""	="CONNELL WAGNER VIC PTY LTD"	10-May-08 12:35 PM	

+="CN77923"	"MAINTENANCE FOR IPOD & EPOD PLOTTERS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	13-Dec-07	31-Oct-08	88569.80	=""	="AGFA-GEVAERT LTD"	10-May-08 12:35 PM	

+="CN77930"	"JSAF MODELLING DEVELOPMENT FOR PROJECT AIR 7000"	="Department of Defence"	10-May-08	="Professional engineering services"	29-Jan-08	30-Apr-08	128587.80	=""	="SYDAC PTY LTD"	10-May-08 12:35 PM	

+="CN77945"	"RISK MANAGER"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	13-Dec-07	31-Dec-09	126783.82	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 12:36 PM	

+="CN77949"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	165000.00	=""	="APIS CONSULTING GROUP"	10-May-08 12:36 PM	

+="CN77957"	"TWE RF Capability in the SIL - Phase II"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	135724.60	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:37 PM	

+="CN77966"	"Licence renewals Phone:  08 8259 6127"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	14-Dec-07	195351.20	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77967"	"Construct an impervious burn pit at Salt Ash Weapons Range"	="Department of Defence"	10-May-08	="General building construction"	29-Jan-08	30-Jun-08	250000.30	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:37 PM	

+="CN77968"	"UPGRADE POWER"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	12-Dec-07	30-Jun-08	110053.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:37 PM	

+="CN77971"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	31-Jul-08	135238.40	=""	="DELTEK AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77972"	"POC: ROBYN NICHOLAS CONTACT: 02 626 50765"	="Department of Defence"	10-May-08	="Chicken processing machinery and equipment"	12-Dec-07	30-Jun-08	153010.00	=""	="APIS CONSULTING GROUP"	10-May-08 12:37 PM	

+="CN77986"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	90274.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 12:38 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to12May2008val16000to20000.xls
@@ -1,1 +1,728 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73907"	"POCKET RADIO SURVIVAL"	="Defence Materiel Organisation"	08-May-08	="Lifelines or lifeline equipment"	07-May-08	06-Jul-08	18641.70	=""	="LIGHT AIRCRAFT"	08-May-08 08:30 AM	

+="CN73910"	"Contractor - Chairperson to SACF"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Human resources services"	11-Jan-08	30-Jun-08	20000.00	=""	="VIC SMITH INVESTMENT TRUST"	08-May-08 08:52 AM	

+="CN73913"	"Editorial Support"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Graphic design"	29-Jun-07	29-Jun-10	20000.00	="TRS06/036"	="Morris Walker"	08-May-08 08:52 AM	

+="CN73918"	"Employment of Contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Community and social services"	18-Apr-08	06-Jun-08	17000.01	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	08-May-08 08:53 AM	

+="CN73922"	"14 McConnell 2/3 Educator bus seats BUs Floor Module"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Transportation components and systems"	01-May-08	30-Jun-08	17997.10	=""	="McConnell Seats Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN73929"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Management advisory services"	01-May-08	31-May-08	19448.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	08-May-08 08:54 AM	

+="CN73936"	"Temporary staff placement"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Public administration and finance services"	25-Mar-08	30-May-08	18000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	08-May-08 08:55 AM	

+="CN73908"	"Consultancy service for Peace and Conflict Studies"	="National Native Title Tribunal"	08-May-08	="Corporate divestiture consultation services"	25-Feb-08	01-Mar-08	16307.50	=""	="The University of Queensland"	08-May-08 08:57 AM	

+="CN73962"	" BEARING, ROLLER, CYLINDRICAL  NSN - 3110/000785676 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	27-Mar-08	03-Jul-08	17886.00	=""	="PACIFIC AERODYNE PTY LTD"	08-May-08 10:49 AM	

+="CN73830"	"Provision of Information Technology Support Services"	="Department of Immigration and Citizenship"	08-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	31-Oct-07	19140.00	=""	="Finite Recruitment Pty. Ltd."	08-May-08 12:17 PM	

+="CN74017"	"HP Maintenance Support for Cisco Equipment"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-May-08	18126.04	=""	="Hewlett Packard Australia Pty Ltd"	08-May-08 12:29 PM	

+="CN74064"	"Hire of venue"	="Defence Materiel Organisation"	08-May-08	="Hotels and lodging and meeting facilities"	08-Apr-08	08-Apr-08	17943.96	=""	="MEL CONV/EXHIB TST"	08-May-08 02:35 PM	

+="CN74086"	"motor vehicle spare parts"	="Department of Defence"	08-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	07-Jun-08	18035.31	=""	="LAND ROVER AUSTRALIA"	08-May-08 03:34 PM	

+="CN73973-A1"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Mar-08	30-Jun-08	18480.00	=""	="McGrath Nicol"	08-May-08 03:58 PM	

+="CN73984"	" Recruitment "	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:31 PM	

+="CN73977"	"Recruitment"	="Australian Securities and Investments Commission"	08-May-08	="Temporary personnel services"	07-Apr-08	27-Jun-08	16755.00	=""	="Robert Walters"	08-May-08 04:33 PM	

+="CN73954"	"Legal services - counsel"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	08-May-08 04:48 PM	

+="CN74127"	" DRAG LINK, LANDING GEAR REPAIR  NSN - 1620/010098660 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	10-Mar-08	09-Apr-08	19259.24	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:49 PM	

+="CN74128"	" REGULATOR, O, YGEN REPAIR  NSN - 1660/009564032 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17085.44	=""	="ROSEBANK ENGINEERING PTY LTD"	08-May-08 04:52 PM	

+="CN74149"	"Cabcharge"	="National Health and Medical Research Council"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Jun-08	20000.00	=""	="CABCHARGE AUSTRALIA LIMITED"	09-May-08 08:37 AM	

+="CN74151"	" C130J PROPULSION MAINTENANCE "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	21-Apr-08	30-Apr-08	17749.62	=""	="STANDARD AERO AUSTRALIA PTY LTD"	09-May-08 08:48 AM	

+="CN74160"	"SUBSCRIPTIONS MARCH 2008"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	25-Feb-08	31-Mar-09	19362.95	=""	="LEXISNEXIS"	09-May-08 09:29 AM	

+="CN74168"	"Supply and maintenance of plants at 77 Castlereagh Street"	="Australian Securities and Investments Commission"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	27-Jul-07	27-Jul-09	18252.96	=""	="Lease A Leaf"	09-May-08 09:41 AM	

+="CN74173-A1"	"Insolvency administration (variation)"	="Australian Securities and Investments Commission"	09-May-08	="Accounting services"	01-Dec-07	31-Mar-08	20000.00	=""	="Grant Thornton Services"	09-May-08 10:38 AM	

+="CN74205"	"Provision of quainity surveying services"	="Department of Parliamentary Services"	09-May-08	="Surveying systems"	02-May-08	06-Jun-08	17820.00	=""	="Donald Cant Watts Corke Pty Ltd"	09-May-08 11:20 AM	

+="CN74209"	"Supply of elevating work platform"	="Department of Parliamentary Services"	09-May-08	="Elevating platform vehicles or scissor lifts"	01-May-08	30-May-08	19030.00	=""	="Instant Access Australia Pty Ltd"	09-May-08 11:20 AM	

+="CN74222"	"Provision of removal services"	="Department of Parliamentary Services"	09-May-08	="Specialised warehousing and storage"	27-Sep-07	30-Jun-08	17432.25	=""	="Can Do Australia Pty Ltd"	09-May-08 11:22 AM	

+="CN74242"	"POA Accommodation Mariners Court - Sydney"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	06-Feb-08	05-May-08	18850.00	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:47 AM	

+="CN74246"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74248"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74249"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	07-Mar-08	07-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:48 AM	

+="CN74252"	"Cap Tour 2008"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	10-Mar-08	10-Mar-08	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	09-May-08 11:49 AM	

+="CN74261"	"WHELAN/GEORGEINA MS TKT: 08124686894840 R/N: Not Supplied QF: D SYD/LAX - QF: D LAX/DFW DATE TRAVEL: 03/04/08 REF:ZK8ITV ONO: 352472-21303 GWT: 8249544"	="Department of Defence"	09-May-08	="Passenger transport"	04-Apr-08	04-Apr-08	17017.18	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:50 AM	

+="CN74291"	"JFK School of Government - Cate Byrne Attendance"	="Department of Defence"	09-May-08	="Education and Training Services"	14-Mar-08	14-Mar-08	16691.30	=""	="JFK SCHOOL OF GOVT. EXEC"	09-May-08 11:54 AM	

+="CN74309"	"Sponsorship"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	27-Mar-08	27-Mar-08	16500.00	=""	="PRECEDENT PRODUCTION"	09-May-08 11:56 AM	

+="CN74310"	"03/04/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	31-Mar-08	30-Apr-08	18284.84	=""	="BRISBANE NTH PODIATRY P/L"	09-May-08 11:56 AM	

+="CN74312"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	28-Mar-08	27-Apr-08	16609.40	=""	="ST JOHN OF GOD HOSPIT"	09-May-08 11:57 AM	

+="CN74337"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	08-Apr-08	08-Apr-08	17435.00	=""	="JANAK A. MEHTA"	09-May-08 12:01 PM	

+="CN74341"	"MEDICAL SERVICES"	="Department of Defence"	09-May-08	="Medical practice"	09-Apr-08	09-Apr-08	18063.50	=""	="DARWIN PRIVATE HOSP"	09-May-08 12:01 PM	

+="CN74343"	"Patient Treatment"	="Department of Defence"	09-May-08	="Healthcare Services"	09-Apr-08	23-Apr-08	17746.45	=""	="ST VINCENTS PRV HOSP"	09-May-08 12:01 PM	

+="CN74369"	"Replace existing carpet in RMC-D SGT's mess"	="Department of Defence"	09-May-08	="Accommodation furniture"	24-Apr-08	24-Apr-08	19118.00	=""	="GARYS CARPET LAYING"	09-May-08 12:04 PM	

+="CN74370"	"DSTN386/08, 798-08-TK - Workstations, Desks, Chairs, Mobile Pedestals"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	25-Mar-08	06-May-08	17053.30	=""	="OFFICEMAX AUSTRALIA"	09-May-08 12:05 PM	

+="CN74374"	"MEDICAL EXPENCES INCURRED"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	01-May-08	31-May-08	18367.50	=""	="HOLLYWOOD PRIV HOSP"	09-May-08 12:05 PM	

+="CN74380"	"VEHICLE REPAIRS"	="Department of Defence"	09-May-08	="Motor vehicles"	16-Apr-08	16-May-08	18934.25	=""	="MACK AUSTRALIA"	09-May-08 12:13 PM	

+="CN74394"	"Printing of NAT11075 Base Stock for HELP Information Statements. Qty: 1,155,000"	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-May-08	28-May-08	17105.00	=""	="Canprint Communications"	09-May-08 02:11 PM	

+="CN74400"	"Printing of NAT14554 C4 Machine insertable envelope. Qty: 192,000."	="Australian Taxation Office"	09-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-May-08	30-Jun-08	16135.70	=""	="The Camerons Group"	09-May-08 02:12 PM	

+="CN74424"	" PROVISION OF PAINT PRODUCTS "	="Defence Materiel Organisation"	09-May-08	="Paints and primers and finishes"	09-May-08	23-May-08	17259.71	=""	="PROTEC"	09-May-08 02:57 PM	

+="CN74426"	"Laminated Shims"	="Defence Materiel Organisation"	09-May-08	="Parts of guns or pistols"	09-May-08	29-Aug-08	18341.40	=""	="G A Hanrahan Pty Ltd"	09-May-08 03:07 PM	

+="CN74432"	"    Airfare London-Sydney, Sydney -Manila, Manila-Hong Kong, Hong Kong - Vancouver April 2008    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	01-Apr-08	01-Apr-08	17219.73	=""	="British Airways"	09-May-08 03:32 PM	

+="CN74433"	"    Airfares - PNG delegation attending the APEC Emissions Conference in Kuala Lumpur, 3-4 April 2008 (Return airfare from Port Moresby to Kuala Lumpur)    "	="Department of Infrastructure Transport Regional Development and Local Government"	09-May-08	="Commercial aeroplane travel"	28-Mar-08	28-Mar-08	18292.07	=""	="Flight Centre"	09-May-08 03:35 PM	

+="CN74444"	"SOFTWARE LICENSES FOR COBALT-64 LICENSES FOR FLOW SOLVER COBALT-UNLIMITED NUMBER FOR UTILITIES"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	07-Mar-08	07-Mar-08	19224.80	=""	="COBALT SOLUTIONS LLC"	09-May-08 03:41 PM	

+="CN74469"	"Horse equipment required by NORFORCE"	="Department of Defence"	09-May-08	="Saddlery and harness goods"	07-Mar-08	31-Mar-08	16165.89	=""	="NT GRAIN FEEDBARN & SADDLERY"	09-May-08 03:45 PM	

+="CN74475"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	19928.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 03:46 PM	

+="CN74480"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	07-Mar-08	30-Jun-08	17888.00	=""	="BLAKE DAWSON WALDRON"	09-May-08 03:47 PM	

+="CN74492"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	17382.20	=""	="URS AUSTRALIA PTY LTD"	09-May-08 03:48 PM	

+="CN74497"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	15-Apr-08	30-Apr-08	17334.96	=""	="Telstra  (ID No. 740)"	09-May-08 03:49 PM	

+="CN74506"	"DISPOSAL-JENNINGS RAILWAY SIDING-TREE REMOVAL AND"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	06-Mar-08	30-Jun-08	17270.33	=""	="SPOTLESS SERVICES LTD"	09-May-08 03:49 PM	

+="CN74522"	"Telecommunications Services"	="Bureau of Meteorology"	09-May-08	="Telecommunications media services"	24-Apr-08	31-May-08	17501.00	=""	="AAPT LIMITED"	09-May-08 03:50 PM	

+="CN74537"	"Optima Chilled Mirror Hygrometer Qty 1"	="Bureau of Meteorology"	09-May-08	="Computer Equipment and Accessories"	21-Apr-08	13-Jun-08	16364.70	=""	="Biolab (Aust) Pty Ltd"	09-May-08 03:51 PM	

+="CN74539"	"CONFERENCE EXPENSES"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	05-Mar-08	05-Mar-08	18300.00	=""	="NOVOTEL NORTHBEACH"	09-May-08 03:51 PM	

+="CN74548"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	06-Mar-08	19360.00	=""	="KAMASIN HOLDINGS PTY LTD"	09-May-08 03:51 PM	

+="CN74552"	"Gauge Surveys and Repairs"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	12-May-08	18040.00	=""	="EAST COAST HYDROGRAPHICS"	09-May-08 03:51 PM	

+="CN74555"	"Gauge Surveys and Repairs"	="Bureau of Meteorology"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	12-May-08	19250.00	=""	="EAST COAST HYDROGRAPHICS"	09-May-08 03:52 PM	

+="CN74576"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	06-Mar-08	30-Jun-08	18345.00	=""	="MINTER ELLISON"	09-May-08 03:53 PM	

+="CN74577"	"Sibelius, Auralia and Quickeys Licenses for School of Music"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	30-Jun-08	19374.99	=""	="BILLY HYDE MUSIC BLACKBURN"	09-May-08 03:53 PM	

+="CN74579"	"Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	14-Mar-08	18590.00	=""	="KEEN OFFICE FURNITURE"	09-May-08 03:53 PM	

+="CN74586"	"501952 - Electron Tubes"	="Bureau of Meteorology"	09-May-08	="Electrical equipment and components and supplies"	08-May-08	30-May-08	19569.00	=""	="Richardson Electronics Pty Limited"	09-May-08 03:53 PM	

+="CN74593"	"poc: Jacob Lindsay Contact: 02 6265 0471"	="Department of Defence"	09-May-08	="Construction and maintenance support equipment"	20-Mar-08	31-Mar-08	19481.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	09-May-08 03:53 PM	

+="CN74595"	"POC: Jacob Lindsay Contact: 02 6265 0471"	="Department of Defence"	09-May-08	="Software"	20-Mar-08	31-Mar-08	18150.00	=""	="STATSEEKER PTY LTD"	09-May-08 03:54 PM	

+="CN74605"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	09-May-08	="Paper Materials and Products"	20-Mar-08	20-Mar-08	18454.57	=""	="AGFA-GEVAERT LTD"	09-May-08 03:54 PM	

+="CN74618"	"UPGRADE WILL ALLOW THE USE OF THE NEW DCAC PROXIMITY CARDS."	="Department of Defence"	09-May-08	="Locks and security hardware and accessories"	11-Mar-08	30-Apr-08	17190.80	=""	="CHUBB SECURITY AUSTRALIA"	09-May-08 03:55 PM	

+="CN74649"	"1 SR - Fibre optic repair tools kit"	="Department of Defence"	09-May-08	="Electronic hardware and component parts and accessories"	25-Mar-08	24-Apr-08	17323.90	=""	="AUSOPTIC PTY LTD"	09-May-08 03:59 PM	

+="CN74653"	"DEMANDNO.JPOL-7CE3J7"	="Department of Defence"	09-May-08	="Electrical equipment and components and supplies"	25-Mar-08	31-Mar-08	18714.30	=""	="GO ELECTRICAL PTY LTD"	09-May-08 03:59 PM	

+="CN74680"	"ENGEL FRIDGE FREEZER / ENGEL BATTERY PACK / ENGEL BATTERY CHARGER"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Mar-08	14-Mar-08	18235.86	=""	="RAYS OUTDOORS"	09-May-08 04:01 PM	

+="CN74681"	"Communications Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	08-Apr-08	16745.21	=""	="ASI SOLUTIONS"	09-May-08 04:01 PM	

+="CN74691"	"Copy Editor"	="Department of Defence"	09-May-08	="Office supplies"	19-Mar-08	30-Sep-08	19809.90	=""	="MORRIS WALKER"	09-May-08 04:01 PM	

+="CN74707"	"TRAINING COURSE"	="Department of Defence"	09-May-08	="Office supplies"	19-Mar-08	30-Jun-08	18900.00	=""	="MEDIA GURUS"	09-May-08 04:02 PM	

+="CN74731"	"SA 2484 Supply & Installation Deployable Storage B"	="Department of Defence"	09-May-08	="Building and Construction and Maintenance Services"	19-Mar-08	30-Jun-08	17776.00	=""	="EMAC SYSTEMS PTY LTD"	09-May-08 04:05 PM	

+="CN74764"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-08	17291.20	=""	="ROSS HUMAN DIRECTIONS"	09-May-08 04:08 PM	

+="CN74773"	"SOFTWARE"	="Department of Defence"	09-May-08	="Software"	10-Mar-08	31-Mar-08	18633.77	=""	="KAZ GROUP LTD"	09-May-08 04:09 PM	

+="CN74779"	"POC: RYAN CAMPBELL CONTACT: 02 6266 5735"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	18-Mar-08	19037.69	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 04:09 PM	

+="CN74789"	"Upgrade eCOS database for Fleet Command"	="Department of Defence"	09-May-08	="Software"	11-Mar-08	30-Jun-08	17050.00	=""	="THE FRAME GROUP"	09-May-08 04:09 PM	

+="CN74801"	"FOR THE PURCHASE OF 500 SAMSUNG A412 BATTERIES AT $36.32 GST EXCL. PER BATTERY"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	11-Mar-08	31-Mar-08	19976.00	=""	="TELSTRA"	09-May-08 04:10 PM	

+="CN74817"	"STUDENT CHAIRS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	12-Mar-08	09-Apr-08	18480.00	=""	="STURDY FRAMAC"	09-May-08 04:11 PM	

+="CN74825"	"JLUSQ-0406 Labour Hire support to RFS from 1 Apr to 30 Jun 08"	="Department of Defence"	09-May-08	="Transportation repair or maintenance services"	12-Mar-08	30-Jun-08	18175.72	=""	="DRAKE AUSTRALIA PTY LTD"	09-May-08 04:12 PM	

+="CN74838"	"Will assist in unit re-structure and provide much"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	29-Feb-08	01-Apr-08	16521.23	=""	="HAMMETT TECHNOLOGIES"	09-May-08 04:12 PM	

+="CN74845"	"AIRFARES"	="Department of Defence"	09-May-08	="Travel facilitation"	13-Mar-08	29-Mar-08	18835.56	=""	="HARVEY WORLD TRAVEL"	09-May-08 04:13 PM	

+="CN74858"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	29-Feb-08	16000.00	=""	="KEITH THOMAS & ASSOCIATES"	09-May-08 04:14 PM	

+="CN74859"	"ALEC Model CTD Lite Depth Recorder"	="Department of Defence"	09-May-08	="Laboratory supplies and fixtures"	13-Mar-08	30-Apr-08	16511.00	=""	="ANALYTICAL SOLUTIONS AUSTRALIA"	09-May-08 04:14 PM	

+="CN74878"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	29-Feb-08	04-Mar-08	16802.02	=""	="3D NETWORKS (AUSTRALIA) PTY LTD"	09-May-08 04:15 PM	

+="CN74910"	"SN02767 - AIR CONDITIONING, HEATING AND EXTRACTION SYSTEM DUNTROON D015"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	17881.40	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:17 PM	

+="CN74918"	"INSTALLATION OF LITEPROS IN CLASSROOMS AT ENGINEER CERBERUS"	="Department of Defence"	09-May-08	="Components for information technology or broadcasting or telecommunications"	12-Mar-08	31-Mar-08	18848.50	=""	="AUSTRALIAN PRESENTATION SYSTEMS"	09-May-08 04:18 PM	

+="CN74937"	"POC: RICK PFEIFFER"	="Department of Defence"	09-May-08	="Live animals"	12-Mar-08	30-Jun-08	17105.00	=""	="RADIO FREQUENCY SYSTEMS AUST PTY LT"	09-May-08 04:19 PM	

+="CN74945"	"PUBLICATIONS"	="Department of Defence"	09-May-08	="Paper products"	12-Mar-08	30-Jun-08	19704.00	=""	="TRENDSETTING PTY LTD"	09-May-08 04:19 PM	

+="CN74960"	"RECREATIONAL EQUIPMENT"	="Department of Defence"	09-May-08	="Recreation and playground and swimming and spa equipment and supplies"	28-Feb-08	28-Mar-08	17226.00	=""	="CALGYM"	09-May-08 04:20 PM	

+="CN74986"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	16293.69	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:22 PM	

+="CN74993"	"SUPPLY ROTARY OFFICE CHAIRS"	="Department of Defence"	09-May-08	="Commercial and industrial furniture"	29-Feb-08	14-Mar-08	19522.80	=""	="SITZ"	09-May-08 04:22 PM	

+="CN75004"	"Replacement Server Racks"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	31-Mar-08	19995.80	=""	="SERVER RACKS AUSTRALIA"	09-May-08 04:23 PM	

+="CN75007"	"CS3 Design Premium Windows Licence (10) and CS3 Premium 3.0 Windows DVD Set"	="Department of Defence"	09-May-08	="Software"	29-Feb-08	28-Mar-08	17919.00	=""	="ZALLCOM PTY LTD"	09-May-08 04:23 PM	

+="CN75011"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	29-Feb-08	31-Mar-08	19263.20	=""	="INTERWORX PTY LTD"	09-May-08 04:24 PM	

+="CN75013"	"AGGREGATION TAPS"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Apr-08	17226.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	09-May-08 04:24 PM	

+="CN75018"	"TRAINING"	="Department of Defence"	09-May-08	="Live animals"	29-Feb-08	30-Jun-08	17373.79	=""	="CLIFTONS"	09-May-08 04:24 PM	

+="CN75025"	"Training"	="Department of Defence"	09-May-08	="Education and Training Services"	14-Mar-08	05-Jun-08	17314.00	=""	="PHIL SCHLUTER CONSULTING"	09-May-08 04:25 PM	

+="CN75036"	"Sponsorship"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	16500.00	=""	="NATIONAL ICT AUSTRALIA LTD"	09-May-08 04:25 PM	

+="CN75093"	"SCANNING OF SURVEYS"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	16720.00	=""	="AUSTRALIAN SURVEY RESEARCH PTY"	09-May-08 04:29 PM	

+="CN75114"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	19200.00	=""	="INSIGHT SERVICES GROUP"	09-May-08 04:31 PM	

+="CN75131"	"ACCOMMODATION PACKAGE FEES"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	05-Mar-08	16181.00	=""	="HORIZONS ON THE LAKE"	09-May-08 04:32 PM	

+="CN75132"	"SN02753 - R5-3 South End Refurbishment"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	13-Mar-08	30-Jun-08	18260.00	=""	="SPOTLESS P & F PTY LTD"	09-May-08 04:32 PM	

+="CN75137"	"Research Agreement 2007/*1154707/1"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Mar-08	30-Jun-08	19800.00	=""	="RMIT UNIVERSITY"	09-May-08 04:32 PM	

+="CN75150"	"OFFICE DESKS & MOBILE PEDISTALS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	13-Mar-08	12-Apr-08	16005.00	=""	="OFFICEMAX"	09-May-08 04:33 PM	

+="CN75170"	"SA2684 Rebalance of A/C in Bldg 733"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	16830.00	=""	="AVANTEX AUSTRALASIA PTY LTD"	09-May-08 04:34 PM	

+="CN75172"	"LIVERPOOL MILITARY AREA HIGH VOLTAGE ELECTRICAL DI UPGRADE."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	14-Mar-08	30-Jun-08	18480.00	=""	="GRIDX POWER PTY LTD"	09-May-08 04:34 PM	

+="CN75179"	"POINT OF CONTACT FOR ALL QUERIES: SGT DAVID TYMENSEN (03) 6055 2520"	="Department of Defence"	09-May-08	="Electronic Components and Supplies"	03-Mar-08	30-Jun-08	18110.51	=""	="MIDDENDORP ELECTRIC CO PTY LTD"	09-May-08 04:35 PM	

+="CN75181"	"HP DL360R05 Server and options"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	21-Mar-08	16892.70	=""	="ALFA COMPUTERS PTY LTD"	09-May-08 04:35 PM	

+="CN75213"	"Hire of Toilet Blocks for Air Pagean on 24 Feb 08."	="Department of Defence"	09-May-08	="Public order and safety"	04-Mar-08	07-Mar-08	18050.00	=""	="SPLASHDOWN"	09-May-08 04:38 PM	

+="CN75215"	"RMIT Research Agreement for PHD student"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	28-Feb-09	20000.00	=""	="RMIT UNIVERSITY"	09-May-08 04:38 PM	

+="CN75224"	"ADF CAREERS ON-SCREEN ADVERTISING FEB-APR 2008. CA SPECIFICALLY TO TARGET CORE DEMOGRAPHICS USING ON"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	30-Jun-08	17365.92	=""	="REGENT CINEMAS"	09-May-08 04:39 PM	

+="CN75229"	"Manufacture of P-3C DNH & Cold Working Coupons from 7075-T6 Aluminium Sheet"	="Department of Defence"	09-May-08	="Manufacturing support services"	12-Feb-08	30-Apr-08	16737.60	=""	="BOEING AEROSPACE SUPPORT"	09-May-08 04:39 PM	

+="CN75248"	"Research Agreement"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	04-Mar-08	04-Mar-08	16500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	09-May-08 04:40 PM	

+="CN75261"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	18-Mar-08	30-Jun-08	16000.00	=""	="SPARKE HELMORE LAWYERS"	09-May-08 04:41 PM	

+="CN75273"	"4GB USB Thumb Drive - K ingston DTSP/4GB-GOV"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	07-Apr-08	18672.17	=""	="ATC IT SUPPLIES"	09-May-08 04:42 PM	

+="CN75279"	"SERVICES FOR ASSESSING & REPORTING ON QUALITY MGMT SYSTEMS OF THE DIRECTORATE OF NAVY WARFARE SY"	="Department of Defence"	09-May-08	="Naval weapons"	18-Mar-08	30-Jun-08	18150.00	=""	="REQUAL BUSINESS SERVICES PTY LTD"	09-May-08 04:42 PM	

+="CN75280"	"CONFERENCE VENUE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	13-Feb-08	19-Feb-08	17980.00	=""	="RYDGES WOLLONGONG"	09-May-08 04:42 PM	

+="CN75306"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	13-Feb-08	17910.00	=""	="HISTORICAL AIRCRAFT RESTORATION"	09-May-08 04:44 PM	

+="CN75331"	"Furniture"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	11-Feb-08	05-Mar-08	19387.50	=""	="OFFICEMAX AUSTRALIA LTD"	09-May-08 04:46 PM	

+="CN75341"	"SN01736 - Support to review OEMP"	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	19800.00	=""	="ENSR AUSTRALIA PTY LTD"	09-May-08 04:46 PM	

+="CN75343"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	11-Feb-08	30-Jun-08	18976.32	=""	="C I T SOLUTIONS PTY LTD"	09-May-08 04:47 PM	

+="CN75367"	"PROFESSIONAL FEES"	="Department of Defence"	09-May-08	="Legal services"	17-Mar-08	30-Jun-08	18348.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:48 PM	

+="CN75376"	"KOBRA Optical Media Shredder 400HS 240V 1 for ICT-WA Leeuwin Bks and 1 for FFGSPO (Gd Isl)"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	16555.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	09-May-08 04:49 PM	

+="CN75399"	"Wyse Terminals"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	17-Mar-08	25-Mar-08	18235.80	=""	="FIND IT HERE PTY LTD"	09-May-08 04:50 PM	

+="CN75420"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	17404.20	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:52 PM	

+="CN75423"	"ACCOMMODATION EXPENSES"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	15-Feb-08	18-Feb-08	16744.99	=""	="AUSGLOBAL TRAVEL"	09-May-08 04:52 PM	

+="CN75441"	"Mono Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	17050.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:54 PM	

+="CN75457"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	15-Feb-08	19974.90	=""	="THOMSON LEGAL & REGULATORY LTD"	09-May-08 04:56 PM	

+="CN75465"	"LIBRARY MATERIALS"	="Department of Defence"	09-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Feb-08	15-Feb-08	20000.00	=""	="THOMSON LEGAL & REGULATORY LTD"	09-May-08 04:56 PM	

+="CN75468"	"Canon M350 Microfiche Reader for Combined Office Complex HMAS Melbourne"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	15-Feb-08	30-Jun-08	18262.20	=""	="PROSCAN AUSTRALIA PTY LTD"	09-May-08 04:57 PM	

+="CN75469"	"REPAIRS TO CMV COACH REG: 237029 SVC Doc No: RKO226"	="Department of Defence"	09-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Feb-08	31-Mar-08	18393.86	=""	="CMV TRUCK AND BUS PTY LTD"	09-May-08 04:57 PM	

+="CN75488"	"Employment of PSP at Oakey"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	13-Feb-08	26-Jun-08	16720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 08:32 AM	

+="CN75505"	"TRAINING PROGRAM"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Feb-08	14-Feb-08	18700.00	=""	="D'ARCY CONSULTING GROUP"	10-May-08 08:34 AM	

+="CN75539"	"DSN Infrastructure"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	05-Feb-08	30-Mar-08	16187.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 08:38 AM	

+="CN75540"	"Training"	="Department of Defence"	10-May-08	="Education and Training Services"	05-Feb-08	10-Apr-08	19800.00	=""	="M W ROSSITER PTY LTD"	10-May-08 08:38 AM	

+="CN75551"	"IT Training Courses"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Feb-08	29-Feb-08	16676.00	=""	="CONTENTWISE PTY LTD"	10-May-08 08:39 AM	

+="CN75555"	"Condition assessment of Sea Scout building at HMAS Penguin"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	06-Feb-08	30-Jun-08	16838.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:39 AM	

+="CN75580"	"Aircraft Communication Equipment"	="Department of Defence"	10-May-08	="Flight communications related systems"	05-Feb-08	25-Feb-08	18389.06	=""	="NOVA ENGINEERING INC."	10-May-08 08:42 AM	

+="CN75582"	"PDA fitted bullseye"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	05-Feb-08	22-Feb-08	19745.00	=""	="OPENTEC SOLUTIONS PTY LTD"	10-May-08 08:42 AM	

+="CN75584"	"NET PRESENT VALUE ANALYSIS-HOSPITAL FACILITIES IN REGION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	16500.00	=""	="KPMG CORPORATE FINANCE (AUST)"	10-May-08 08:42 AM	

+="CN75592"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	18002.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 08:43 AM	

+="CN75604"	"CONDUCT DRIVER TRAINING"	="Department of Defence"	10-May-08	="Truck tractors"	05-Feb-08	30-Jun-08	18150.00	=""	="DECA TRAINING"	10-May-08 08:44 AM	

+="CN75626"	"LICENSE  & MAINTENANCE PROGRAMMING SOFTWARE"	="Department of Defence"	10-May-08	="Software"	05-Feb-08	29-Feb-08	16995.00	=""	="CYON KNOWLEDGE COMPUTING"	10-May-08 08:46 AM	

+="CN75630"	"POC: EMIL RATHOUSKI CONTACT: 02 626 50939"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17776.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 08:46 AM	

+="CN75636"	"TECHNICAL CONTACT: MR M FOOTNER PHONE:             (08) 8259 6967"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	07-May-08	17396.50	=""	="BRAETEC PTY LTD"	10-May-08 08:47 AM	

+="CN75641-A1"	"Stock Discrepancy Liability Review"	="Department of Defence"	10-May-08	="Industrial Production and Manufacturing Services"	24-Jan-08	28-Mar-08	18388.62	=""	="OWEN ANFRUNS CONSULTING"	10-May-08 08:48 AM	

+="CN75654"	"NWCC NEWSLETTER FOR OPERATIONS DEC07"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	08-Feb-08	15-Feb-08	16721.58	=""	="CENTRICA"	10-May-08 08:49 AM	

+="CN75664"	"Electronic Apparatus"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Feb-08	14-Mar-08	18888.10	=""	="OLYMPUS AUSTRALIA PTY LTD"	10-May-08 08:50 AM	

+="CN75668"	"breakfast pack groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	08-Feb-08	30-Jun-08	16500.00	=""	="LE PACK"	10-May-08 08:50 AM	

+="CN75672"	"Mikron M190Q-TS Infrared Calibration Transfer Stan dard"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Feb-08	21-Mar-08	16445.00	=""	="W & B INSTRUMENTS PTY LTD"	10-May-08 08:51 AM	

+="CN75688"	"Music on Hold units"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	15-Feb-08	18480.00	=""	="TELEMALL PTY LTD"	10-May-08 08:52 AM	

+="CN75714"	"POC: SIMON CARR CONTACT: 02 626 50678"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17358.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:55 AM	

+="CN75716"	"Software Maintenance Contract for period 31 March 2008 - 30 March 2009"	="Department of Defence"	10-May-08	="Software"	08-Feb-08	30-Mar-09	16280.64	=""	="TERRASIM INC."	10-May-08 08:55 AM	

+="CN75732"	"Vehicle Lease"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	15-Feb-08	28-Feb-10	18514.10	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 08:56 AM	

+="CN75744"	"Software License - Mathworks"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	28-Feb-08	19635.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75745"	"PA SYSTEM"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Feb-08	25-Mar-08	17442.70	=""	="ARROW COMMUNICATION SERVICES"	10-May-08 08:58 AM	

+="CN75751"	"EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	18665.09	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:58 AM	

+="CN75769"	"To provide intructor support and the adjustment of and assessment tools for the Training Development"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Feb-08	30-Jun-08	18000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 09:00 AM	

+="CN75773"	"CONSULTANCY FOR BUILDING INSPECTION  AND RECOMMENDATIONS RAAF BASE AMBERLEY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	19811.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:00 AM	

+="CN75774"	"POC:  DAVID MAXWELL CONTACT: 02 626 50227"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	25-Feb-08	30-Jun-08	17600.00	=""	="COMPUCAT RESEARCH PTY LTD"	10-May-08 09:00 AM	

+="CN75778"	"WBTA FIRE HAZARD REDUCTION"	="Department of Defence"	10-May-08	="Fire prevention"	25-Feb-08	30-Jun-08	19580.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:01 AM	

+="CN75790"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer services"	22-Feb-08	25-Mar-08	17250.20	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 09:02 AM	

+="CN75822"	"POC: ATTILA HORVATH CONTACT: 02 626 50688"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16577.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	10-May-08 09:05 AM	

+="CN75823"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16251.95	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 09:05 AM	

+="CN75840"	"C CLASS RACKS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	19756.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 09:07 AM	

+="CN75871"	"INDUSTRIAL TRAINING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19800.00	=""	="BLUELINE CONSULTING SERVICES"	10-May-08 09:10 AM	

+="CN75877"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19470.00	=""	="SCOTWORK NEGOTIATING SKILLS"	10-May-08 09:10 AM	

+="CN75882"	"QFI SEMINAR"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	14-Mar-08	16800.00	=""	="HYATT REGENCY PERTH"	10-May-08 09:11 AM	

+="CN75899"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	19547.41	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 09:13 AM	

+="CN75909"	"ESTATE PLANNING BRANCH-BRANCH PLANNING & TEAM BUIL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	18740.50	=""	="THREDBO ALPINE HOTEL"	10-May-08 09:14 AM	

+="CN75915"	"StoreVault S500 Base System"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	20-Mar-08	19339.10	=""	="COMMANDER INTEGRATED NETWORKS PTY"	10-May-08 09:14 AM	

+="CN75917"	"Magnesium Alloy Cast Billet"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Feb-08	30-Apr-08	18895.03	=""	="AIRPORT METALS (AUSTRALIA)"	10-May-08 09:14 AM	

+="CN75920"	"Fencing"	="Department of Defence"	10-May-08	="Security and control equipment"	27-Feb-08	31-Mar-08	16814.28	=""	="PORTCULLIS PERIMETER SECURITY PTY L"	10-May-08 09:15 AM	

+="CN75930"	"Supply cables as per quote; 23986. Items required to provide ongoing support to all s"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	19150.45	=""	="ALLOY COMPUTER PRODUCTS"	10-May-08 09:16 AM	

+="CN75936"	"This order is raised to cover the container servic Army units within South Australia."	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	26-Feb-08	30-Jul-08	17600.00	=""	="BOC LIMITED"	10-May-08 09:16 AM	

+="CN75947"	"Stationery / Promotional Goods"	="Department of Defence"	10-May-08	="Paper Materials and Products"	19-Feb-08	26-Feb-08	16500.00	=""	="EXPRESSIONS"	10-May-08 09:17 AM	

+="CN75970"	"ACCOMMODATION FOR STAFF TRAINING"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	19-Feb-08	19-Feb-08	19267.05	=""	="NOVOTEL ST KILDA"	10-May-08 09:19 AM	

+="CN75973"	"Software and computer accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	22-Feb-08	19888.00	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 09:20 AM	

+="CN75987"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	18900.00	=""	="UNITY COLLEGE AUSTRALIA"	10-May-08 09:58 AM	

+="CN75992"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	01-Jul-08	16500.00	=""	="REALVIEW TECHNOLOGIES PTY LTD"	10-May-08 09:58 AM	

+="CN76003"	"MEDIA SUPPORT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	18480.00	=""	="MEDIA GURUS"	10-May-08 09:59 AM	

+="CN76013"	"FURNITURE FOR DS-NQ-TS ACCOMMODATION CELL"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	17490.55	=""	="GARRY THYERS BETTA SUPERSTORE"	10-May-08 09:59 AM	

+="CN76016"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	16760.70	=""	="TENIX DATAGATE PTY LTD"	10-May-08 09:59 AM	

+="CN76017"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	16089.06	=""	="ASI SOLUTIONS"	10-May-08 09:59 AM	

+="CN76019"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18870.72	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76033"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76037"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	19203.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76039"	"Delivery of MILAN Training"	="Department of Defence"	10-May-08	="Medical training and education supplies"	19-Nov-07	19-Nov-07	16060.00	=""	="CLIFFORD CRAIG MEDICAL RESEARCH"	10-May-08 10:01 AM	

+="CN76040"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	10-May-08	="Flight communications related systems"	21-Nov-07	30-Jun-08	19349.00	=""	="WORMALD"	10-May-08 10:01 AM	

+="CN76043"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	16500.00	=""	="VISION TRAINING AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76046"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	21-Nov-07	30-Jun-08	19967.57	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:01 AM	

+="CN76058"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18419.02	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:02 AM	

+="CN76063"	"Technical Service Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	19-Nov-07	30-Jun-08	16500.00	=""	="FORTBURN PTY LTD"	10-May-08 10:02 AM	

+="CN76076"	"Bioprecision stage stepper motor"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	03-Dec-07	16594.60	=""	="SCITECH PTY LTD"	10-May-08 10:03 AM	

+="CN76081"	"REFUSE & TIP FEES"	="Department of Defence"	10-May-08	="Refuse disposal and treatment"	06-Jun-07	30-Jun-08	18150.00	=""	="TOWNSVILLE CITY COUNCIL"	10-May-08 10:03 AM	

+="CN76086"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	05-Dec-07	17655.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:03 AM	

+="CN76090"	"CATERING"	="Department of Defence"	10-May-08	="Restaurants and catering"	21-Nov-07	21-Nov-07	17600.00	=""	="FRESH CATERING PTY LTD"	10-May-08 10:03 AM	

+="CN76102"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18549.45	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:04 AM	

+="CN76108"	"Refridgerated tabletop centrifuge, culture tube, sealing caps, bucket for adapters, carrier"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	21-Dec-07	17939.09	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:04 AM	

+="CN76142"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	19553.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:06 AM	

+="CN76163"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	18591.80	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:07 AM	

+="CN76181"	"Refrigerated tabletop centrifuge and accessories"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Nov-07	28-Nov-07	16741.74	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:08 AM	

+="CN76192"	"SURVEYS & MAINTENANCE"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	21-Apr-08	30-Jun-08	16668.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:09 AM	

+="CN76204"	"CHP"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	30-Jul-08	16200.00	=""	="MALCZEWSKI FAMILY TRUST"	10-May-08 10:10 AM	

+="CN76214"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	16500.01	=""	="SAGE LEGAL SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76245"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	05-Dec-07	19423.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76259"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Nov-07	29-Nov-07	18900.00	=""	="MEDIA GURUS"	10-May-08 10:13 AM	

+="CN76266"	"Rehabilitation Services"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Jan-07	30-Jun-08	16500.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	10-May-08 10:13 AM	

+="CN76275"	"CD PRODUCTION"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	26-Nov-07	31-Aug-08	16123.80	=""	="CD MANUFACTURERS PTY LTD"	10-May-08 10:13 AM	

+="CN76278"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	16508.00	=""	="HAMERSLEY IRON PTY LTD"	10-May-08 10:14 AM	

+="CN76292"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Aug-07	31-Dec-08	16999.17	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:14 AM	

+="CN76311"	"Cable gable markers, steel pegs."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	23-Nov-07	07-Dec-07	16391.10	=""	="AIRPORT TECHNICAL SERVICES PTY LTD"	10-May-08 10:15 AM	

+="CN76314"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	16894.00	=""	="CLAYTON UTZ"	10-May-08 10:16 AM	

+="CN76325"	"HIRE OF TOILETS"	="Department of Defence"	10-May-08	="Cleaning and janitorial supplies"	10-Oct-07	10-Jan-08	19758.20	=""	="COATES PRESTIGE"	10-May-08 10:16 AM	

+="CN76327"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	03-Dec-07	04-Jan-08	17100.00	=""	="SIR CHARLES GAIRDNER HOSPITAL"	10-May-08 10:16 AM	

+="CN76333"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	18196.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76338"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	18480.00	=""	="MINTER ELLISON"	10-May-08 10:17 AM	

+="CN76342"	"Student Transport 07/08."	="Department of Defence"	10-May-08	="Passenger transport"	12-Nov-07	30-Jun-08	17600.00	=""	="WESTRANS"	10-May-08 10:17 AM	

+="CN76360"	"Support to Operations Support Centre DSTO"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18671.40	=""	="ICON RECRUITMENT"	10-May-08 10:18 AM	

+="CN76370"	"Shoalwater Bay Training Area - Power Supply Feasibility Study"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	16500.00	=""	="PARSONS BRINCKERHOFF"	10-May-08 10:19 AM	

+="CN76377"	"HMAS Hawkesbury QANTAS Invoice 30Nov07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	17517.14	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76385"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Personnel recruitment"	17-Jan-08	28-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:20 AM	

+="CN76393"	"PADLOCKS TO SECURE AMMUNITION CONTAINERS"	="Department of Defence"	10-May-08	="Hardware"	14-Dec-07	22-Jan-08	16606.30	=""	="LOCKWOOD SECURITY PRODUCTS PTY LTD"	10-May-08 10:20 AM	

+="CN76398"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	10-Jul-07	30-Jun-08	16500.00	=""	="HMA BLAZE PTY LTD"	10-May-08 10:20 AM	

+="CN76399"	"LEASE OF VEHICLES FOR HQJTF633 DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	14-Jan-08	17218.75	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:20 AM	

+="CN76406"	"TECHNICAL CONTACT:  K SMITH PHONE:  08 8259 6737"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jul-07	30-Jun-08	19965.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 10:21 AM	

+="CN76419"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Hand tools"	12-Jan-08	12-Jan-08	18910.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76422"	"CABLING"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Jul-07	30-Jun-08	16500.00	=""	="RIVERCORP PTY LTD"	10-May-08 10:22 AM	

+="CN76428"	"LIA ELECTRICAL MAINTENANCE LAVARACK BARRACKS"	="Department of Defence"	10-May-08	="Domestic appliances"	16-Apr-08	30-Jun-08	16500.00	=""	="MAZLIN ELECTRICAL SERVICES"	10-May-08 10:22 AM	

+="CN76434"	"FINISHER ATTACHMENT FOR XEROX WORKCENTRE 7245"	="Department of Defence"	10-May-08	="Paper Materials and Products"	01-Dec-07	01-Dec-07	16161.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76504"	"Class C Rack Cabinet Ph: 08 9553 3617"	="Department of Defence"	10-May-08	="Hardware"	29-Nov-07	21-Dec-07	17109.87	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:27 AM	

+="CN76507"	"TRUCK AND TRAILOR LEASE DEC 07 FLLA K"	="Department of Defence"	10-May-08	="Truck tractors"	31-Dec-07	03-Jan-08	16082.34	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76509"	"CONTRACT ADMIN"	="Department of Defence"	10-May-08	="Environmental Services"	31-Dec-07	03-Jan-08	18115.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76515"	"AIRFARES OCTOBER 2007"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	15-Jan-08	16499.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76521"	"Medical Services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	24-Dec-07	23-Jan-08	17644.31	=""	="PETER NEWBERY"	10-May-08 10:28 AM	

+="CN76522"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Nov-07	17-Dec-07	18777.31	=""	="LASER QUANTUM"	10-May-08 10:28 AM	

+="CN76523"	"FOOD REQUIRED BY HQ JTF 633 FOR XMAS DAY LUNCH"	="Department of Defence"	10-May-08	="Meat and poultry products"	20-Dec-07	04-Jan-08	18951.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:28 AM	

+="CN76524"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	29-Nov-07	02-Jan-08	17394.96	=""	="BARTINGTON INSTRUMENTS LTD"	10-May-08 10:28 AM	

+="CN76527"	"CHP WAGES DEC/JAN"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	01-Feb-08	01-Feb-08	17191.60	=""	="VIMALA MENON  A/P PB MENON"	10-May-08 10:28 AM	

+="CN76529"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	09-Jan-08	09-Jan-08	18600.16	=""	="MONEY"	10-May-08 10:28 AM	

+="CN76541"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	17930.00	=""	="CLAYTON UTZ"	10-May-08 10:29 AM	

+="CN76542"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	02-Feb-08	04-Feb-08	19519.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76564"	"LACE ROBERT WYNNE - COMCARE OH&S INVESTIGATION"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	31-Jan-08	16013.80	=""	="DLA PHILLIPS FOX"	10-May-08 10:30 AM	

+="CN76570"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	19879.00	=""	="MINTER ELLISON"	10-May-08 10:31 AM	

+="CN76571"	"RENTAL PAYMENTS SRI PANGKOR APPARTMENTS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	01-Feb-08	01-Feb-08	18191.49	=""	="ELCEETEE TRUST -E-"	10-May-08 10:31 AM	

+="CN76575"	"02-239906 30NOV07 LINE ITEM 10560 - 10601"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	16558.79	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76580"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	29-Nov-07	30-Jun-08	19608.38	=""	="TRANS GLOBAL TRADERS PTY LTD"	10-May-08 10:31 AM	

+="CN76610"	"As detailed in contract 0708-210"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	28-Nov-07	28-Mar-08	19829.43	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:33 AM	

+="CN76615"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	30-Jan-08	30-Jan-08	17933.89	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:34 AM	

+="CN76616"	"Stationery"	="Department of Defence"	10-May-08	="Paper products"	28-Nov-07	31-Dec-07	17821.33	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:34 AM	

+="CN76617"	"Business Travel"	="Department of Defence"	10-May-08	="Aircraft"	17-Dec-07	06-Feb-08	19171.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76644"	"WATER TANK"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	28-Nov-07	21-Jan-08	16920.03	=""	="POLYWORLD"	10-May-08 10:35 AM	

+="CN76648"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	30-Nov-07	16170.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:36 AM	

+="CN76655"	"QANTAS PAYMENT FOR THE MONTH OF DEC 07"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Jan-08	17066.13	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76672"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	16644.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:37 AM	

+="CN76684"	"CONFERENCE COSTS"	="Department of Defence"	10-May-08	="Restaurants and catering"	28-Nov-07	28-Nov-07	19494.70	=""	="PANTHERS ENTERTAINMENT GROUP"	10-May-08 10:38 AM	

+="CN76686"	"APC SMART UPS FOR ICT SVCS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	28-Nov-07	28-Nov-07	16815.28	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 10:38 AM	

+="CN76695"	"VEHICLE LEASE FLLA"	="Department of Defence"	10-May-08	="Motor vehicles"	05-Jan-08	29-Jan-08	17023.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76708"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="HARCOURT ASSESSMENT"	10-May-08 10:39 AM	

+="CN76712"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	10-May-08 10:39 AM	

+="CN76716"	"INMARSAT CALL CHARGES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	03-Dec-07	16088.72	=""	="ELECTROTECH AUSTRALIA PTY LTD"	10-May-08 10:39 AM	

+="CN76741"	"Large Display LCDs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	12-Dec-07	16467.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:41 AM	

+="CN76742"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	09-Oct-07	30-Jun-08	17160.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76748"	"Aircraft Charter AirTravel to remote Bare Bases RAAF Learmonth and"	="Department of Defence"	10-May-08	="Aircraft"	26-Oct-07	26-Oct-07	19715.00	=""	="INDEPENDENT AVIATION PTY LTD"	10-May-08 10:41 AM	

+="CN76756"	"Imm / Urg -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	16110.53	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76779"	"REPAIRS OF 9 SAFE AT RAAF BASE DARWIN AS PER QUOTE 07"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	30-Dec-07	16307.83	=""	="ARCHITECTURAL HARDWARE"	10-May-08 10:43 AM	

+="CN76780"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	08-Nov-07	30-Nov-07	17725.02	=""	="THOMSON RICH O'CONNOR"	10-May-08 10:43 AM	

+="CN76793"	"Various Aust WW1 and WW2 flying Corps Group O, Cross Vic. Junior Sect. Aust Korea SQN, etc."	="Department of Defence"	10-May-08	="Collectibles and awards"	03-Dec-07	21-Dec-07	18644.60	=""	="IAN S WRIGHT"	10-May-08 10:44 AM	

+="CN76798"	"CONTRACT SERVICES FLLA"	="Department of Defence"	10-May-08	="Cleaning and janitorial services"	31-Oct-07	30-Nov-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76802"	"VEHICLE LEASE FLLA  NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Oct-07	30-Nov-07	16022.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76817"	"GRAPHIC DESIGN AND PRINTING"	="Department of Defence"	10-May-08	="Printed media"	30-Nov-07	30-Jun-08	16500.00	=""	="WISDOM GRAPHIC DESIGN & ADVERT"	10-May-08 10:45 AM	

+="CN76822"	"AFPO Airline Costs (Line 1 fo AFPO 5) / Line 2 for AFPO 16 and Line 3 for AFPO 20"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	16093.72	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76834"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	19093.98	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76846"	"HQJOC PROJECT-SERVER RACKS AUSTRALIA-JUNCTION BOX SERVER RACKS AUSTRALIA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	18810.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 10:47 AM	

+="CN76866"	"POC: Jason Yap PHONE: 02 6265 0001"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	19250.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76870"	"MAINTENANCE FY 2007/2008"	="Department of Defence"	10-May-08	="Tools and General Machinery"	03-Dec-07	30-Jun-08	16396.60	=""	="AXIS MACHINE TOOLS PTY LTD"	10-May-08 10:49 AM	

+="CN76885"	"wis services"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Nov-07	01-Nov-07	19172.25	=""	="NEWSAT LTD"	10-May-08 10:49 AM	

+="CN76892"	"PRINTING & DISTRIBUTION OF CIVILIAN PAYMENT ADVICE SLIPS"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	30-Nov-07	30-Jun-08	19000.00	=""	="HERMES PRECISA PTY LTD"	10-May-08 10:50 AM	

+="CN76909"	"Professional Services  - Author's brief for LWP 9-3-2"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-Oct-07	30-Jun-08	19744.34	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:51 AM	

+="CN76912"	"SUN STORAGE TEK SL500 DRIVE EXPANSION MODULES"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	23-Nov-07	19277.15	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:51 AM	

+="CN76923"	"ADDP 3.3.1 SUBMISSION OF FIRST DRAFT"	="Department of Defence"	10-May-08	="Printed media"	08-Nov-07	28-Feb-08	17050.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:52 AM	

+="CN76931"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	31-Oct-07	30-Nov-07	16632.00	=""	="CLAYTON UTZ"	10-May-08 10:52 AM	

+="CN76938"	"Technical Contact Roger Henwood Ph: 08 8674 3207"	="Department of Defence"	10-May-08	="Medical training and education supplies"	22-Nov-07	30-Jun-08	17481.00	=""	="ORICA EXPLOSIVES"	10-May-08 10:53 AM	

+="CN76951"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	18445.50	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76955"	"CHP WAGES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	31-Dec-07	18171.58	=""	="MONEY"	10-May-08 10:54 AM	

+="CN76964"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	17-Dec-07	17450.00	=""	="CENTRE STATE PRINTING"	10-May-08 10:54 AM	

+="CN76970"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	22-Nov-07	22-Nov-07	16654.00	=""	="CANBERRA MAILING & ENVELOPES"	10-May-08 10:54 AM	

+="CN76980"	"High Accuracy receiver"	="Department of Defence"	10-May-08	="Satellites"	23-Nov-07	30-Nov-07	16225.00	=""	="ULTIMATE POSITIONING"	10-May-08 10:55 AM	

+="CN77000"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Jan-08	16-Jan-08	17857.14	=""	="RPC TELECOMMUNICATIONS LTD"	10-May-08 11:41 AM	

+="CN77014"	"Access Control System"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	31-Jan-08	16945.50	=""	="CHUBB AUSTRALIA PTY LTD"	10-May-08 11:42 AM	

+="CN77028"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	01-Mar-08	19248.00	=""	="TOUR HOSTS PTY LTD"	10-May-08 11:43 AM	

+="CN77034"	"manufacture and supply covers etc"	="Department of Defence"	10-May-08	="Industrial Manufacturing and Processing Machinery and Accessories"	16-Jan-08	17-Mar-08	16412.00	=""	="AUSTEK ENGINEERING TRADING PTY"	10-May-08 11:43 AM	

+="CN77048"	"Training"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	30-Jun-08	16610.00	=""	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	10-May-08 11:44 AM	

+="CN77055"	"Construct Antenna Gantry RAAF Williams Pt Cook BCP"	="Department of Defence"	10-May-08	="Prefabricated structures"	01-Feb-08	07-Mar-08	19800.00	=""	="ROGERS FABRICATIONS PTY LTD"	10-May-08 11:44 AM	

+="CN77058"	"TV and ceiling brackets"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	17-Jan-08	24-Jan-08	17853.00	=""	="AV CENTRAL"	10-May-08 11:45 AM	

+="CN77060"	"AMPS 5.0 SEA ADMINISTRATION COURSE FOR NAVAL PERSO"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	07-Mar-08	19800.00	=""	="EDEN TECHNOLOGY PTY LTD"	10-May-08 11:45 AM	

+="CN77086"	"Antennas"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	04-Feb-08	02-May-08	18744.00	=""	="RAMIS HOLDINGS PTY LTD"	10-May-08 11:46 AM	

+="CN77098"	"technical supprot services"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	04-Feb-08	30-Jun-08	16457.78	=""	="VIPAC ENGINEERS & SCIENTISTS"	10-May-08 11:47 AM	

+="CN77112"	"PROJECT MANAGEMENT SERVICES FOR HYCAUSE CLOSURE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Feb-08	02-Feb-08	16299.67	=""	="BLUE SWIMMER CONSULTING"	10-May-08 11:48 AM	

+="CN77117"	"Battery Marathon external, turbine and housing, Transducer, Barometer, regulator, charger"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	15-Jan-08	29-Feb-08	16097.00	=""	="TECHNIPRO MARKETING PTY LTD"	10-May-08 11:49 AM	

+="CN77121"	"JOHN GARDNER CONTRACT UNDER SON45190"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Feb-08	30-Jun-08	18700.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:49 AM	

+="CN77122"	"VMWare Software"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	27-Feb-08	17715.50	=""	="HARRIS TECHNOLOGY"	10-May-08 11:49 AM	

+="CN77167"	"SERVER HARDWARE AND SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	03-Mar-08	16222.80	=""	="PARTNER IT"	10-May-08 11:52 AM	

+="CN77184"	"SOFTWARE REQUIRED FOR SET UP OF NIDA CLASSROOM ENGINEERING FACULTY HMAS CERBERUS"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	16-Jan-08	17699.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:53 AM	

+="CN77189"	"SECURITY CONTRACT"	="Department of Defence"	10-May-08	="Security and control equipment"	01-Feb-08	08-Feb-08	16319.66	=""	="HIGH RISK SECURITY PTY LTD"	10-May-08 11:54 AM	

+="CN77211"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	01-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77213"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77219"	"Computer Accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	16669.40	=""	="DIGICOR PTY LTD"	10-May-08 11:55 AM	

+="CN77220"	"kangaroo exclusion fence- maintainence"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	18-Jan-08	30-Jun-08	19686.03	=""	="SERCO AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77224"	"Computer Gear"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	07-Feb-08	17357.29	=""	="AVNET ELECTRONICS MARKETING"	10-May-08 11:56 AM	

+="CN77227"	"SN02714 - PM FEES FOR R1-C FITOUT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	18810.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77228"	"Heat Exchanger"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	31-Jan-08	28-Feb-08	16588.00	=""	="ANALYTICAL EQUIPMENT CO"	10-May-08 11:56 AM	

+="CN77233"	"AUTOZOC TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	18-Jan-08	15-Feb-08	18392.00	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:56 AM	

+="CN77246"	"Army Museum Plaques"	="Department of Defence"	10-May-08	="Signage and accessories"	23-Jan-08	23-Jan-08	19382.06	=""	="A1 PLAQUES AUSTRALIA"	10-May-08 11:57 AM	

+="CN77248"	"DSM Dyneema HB26 Panels"	="Department of Defence"	10-May-08	="Exterior finishing materials"	23-Jan-08	29-Feb-08	18020.07	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:57 AM	

+="CN77249"	"Research Agreement"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Jan-08	30-Jun-08	16500.00	=""	="UNI OF SA - REVENUE OFFICE"	10-May-08 11:57 AM	

+="CN77252"	"Bulk LPG, Fire fighting training, Army Logistic Training Centre, Bandiana"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	23-Jan-08	25-Jan-08	18424.00	=""	="KLEENHEAT GAS CENTRE"	10-May-08 11:57 AM	

+="CN77256"	"BOC-D-900-CLASS C SECURITY MAXTOR COMPACTUS 6 BAY FOR BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	12-Mar-08	18427.20	=""	="BROWNBUILT PTY LTD"	10-May-08 11:57 AM	

+="CN77261"	"VARIOUS PLACES -  VTC - YEARLY AMEND SERVICES FOR AIRSERVICES - Grace Donato"	="Department of Defence"	10-May-08	="Leatherworking repairing machinery and equipment"	21-Jan-08	31-Jul-08	18752.69	=""	="AIRSERVICES AUSTRALIA"	10-May-08 11:58 AM	

+="CN77304"	"1X1.47 METER GEMINI RIB 1670 HYPALON TUBES AS NAVY SPECIFICATIONS WITH 40HP MERCURY"	="Department of Defence"	10-May-08	="Safety and rescue vehicles"	17-Jan-08	22-Jan-08	18480.00	=""	="BRITTON MARINE PTY LTD"	10-May-08 12:00 PM	

+="CN77305"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	24-Jan-08	30-Jun-08	17375.93	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:00 PM	

+="CN77317"	"PROLIANT DL380 / HP PCI -X /PCI-E NHP380G5/385G2 R HP DVD+RW 24X SLIM CBT DRV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	30-Jan-08	18915.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:01 PM	

+="CN77352"	"Compactus B.O.C. "A" Base 4 bay, "D" base 6 bay"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	15-Feb-08	17534.00	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 12:03 PM	

+="CN77373"	"Training - Managing your Career"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Jan-08	30-Jun-08	16750.00	=""	="TWYFORD CONSULTING"	10-May-08 12:04 PM	

+="CN77376"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	17-Jan-08	15-Feb-08	18583.40	=""	="J S MCMILLAN PRINTING GROUP"	10-May-08 12:04 PM	

+="CN77384"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Jun-08	20000.00	=""	="CHRISTIE BETRO MANAGMENT"	10-May-08 12:05 PM	

+="CN77419"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	30-Jun-08	20000.00	=""	="MARGARET MCNALLY"	10-May-08 12:07 PM	

+="CN77421"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	16672.70	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77445"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77462"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77497"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77506"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	17131.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:12 PM	

+="CN77533"	"Leader 1025HS Telephones"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Jan-08	11-Feb-08	17325.00	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:13 PM	

+="CN77549"	"Acer LCD Monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	06-Feb-08	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77567"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	18400.00	=""	="DEACONS"	10-May-08 12:15 PM	

+="CN77599"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Jan-08	31-Jan-08	19475.50	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 12:17 PM	

+="CN77600"	"ELECT COMPONETS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	24-Jan-08	28-Feb-08	17221.60	=""	="AUSTRALIAN BALDOR PTY LTD"	10-May-08 12:17 PM	

+="CN77617"	"MANNEQUIN FIGURES"	="Department of Defence"	10-May-08	="Structural materials and basic shapes"	14-Jan-08	14-Jan-08	16500.00	=""	="ROB SMALL"	10-May-08 12:18 PM	

+="CN77644"	"REPAIRS TO BUILDINGS AND FACILITIES SWBTA POST EX WALLABY 07"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	16467.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:20 PM	

+="CN77653"	"KEY SAFE"	="Department of Defence"	10-May-08	="Containers and storage"	14-Jan-08	14-Jan-08	16435.00	=""	="CIC SECURE PTY LTD"	10-May-08 12:20 PM	

+="CN77656"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="ACTSAFE AUSTRALIA PTY LTD"	10-May-08 12:20 PM	

+="CN77658"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="INSIGHT SERVICES GROUP"	10-May-08 12:20 PM	

+="CN77660"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="NELSON-TYERS CONSULTING PTY LTD"	10-May-08 12:20 PM	

+="CN77690"	"DISPOSAL OF MINE DETECTOR KITS"	="Department of Defence"	10-May-08	="Scrap and waste materials"	11-Dec-07	18-Dec-07	16840.76	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 12:22 PM	

+="CN77701"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	22-Jan-08	19693.22	=""	="COMMANDER (ACT)"	10-May-08 12:23 PM	

+="CN77712"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	19-Dec-07	19772.21	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77729"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	19800.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:24 PM	

+="CN77747"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:25 PM	

+="CN77764"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Jan-08	31-May-08	18886.20	=""	="LANCEMORE HILL"	10-May-08 12:26 PM	

+="CN77772"	"RENEW TECHNICAL ENHANCEMENTS & CUSTOMER SUPPORT FO R ANSYS AUTODYN SOFTWARE FROM 01/03/08-28/02/"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	21-Jan-08	19888.00	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77786"	"Subscription Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Jan-08	18-Jan-08	16500.00	=""	="SYDNEY INSTITUTE OF MARINE SCIENCE"	10-May-08 12:27 PM	

+="CN77792"	"HIRE OF PLANE"	="Department of Defence"	10-May-08	="Aircraft"	14-Jan-08	14-Jan-08	19863.25	=""	="KESTREL AVIATION"	10-May-08 12:28 PM	

+="CN77797"	"Provision of Risk Assessment Services"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	10-Dec-07	15-Jan-08	17333.25	=""	="LAMBERT REHBEIN (VIC) PTY LTD"	10-May-08 12:28 PM	

+="CN77814"	"Monitor Receiver housings and covers"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	11-Jan-08	30-Jan-08	17078.60	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 12:29 PM	

+="CN77845"	"Pan tilt unit/power supply"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	10-Dec-07	30-Jan-08	19381.30	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 12:30 PM	

+="CN77862"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	12-Feb-08	16323.23	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:31 PM	

+="CN77865"	"Standing offer"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	14-Mar-08	18618.60	=""	="BLUE SWIMMER CONSULTING"	10-May-08 12:32 PM	

+="CN77879"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	13-Dec-07	13-Dec-07	18894.57	=""	="AGFA-GEVAERT LTD"	10-May-08 12:32 PM	

+="CN77882"	"Employment of PSP at Enoggera / Amberley"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	19250.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:33 PM	

+="CN77904"	"rack mount configued server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Dec-07	17409.70	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77906"	"ELECTRICAL WINCH AND CABLES"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	13-Dec-07	13-Jan-08	18976.32	=""	="VELDEMAN AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77907"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	19254.40	=""	="AUSTRAINING NSW PTY LTD"	10-May-08 12:34 PM	

+="CN77916"	"Engagement of Security Architect"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	29-Feb-08	17856.35	=""	="ENTRUST LTD"	10-May-08 12:34 PM	

+="CN77917"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	16430.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:34 PM	

+="CN77952"	"Class B Security Containers"	="Department of Defence"	10-May-08	="Containers and storage"	30-Jan-08	29-Feb-08	16918.00	=""	="FILEGUARD CO (MFG) PTY LTD"	10-May-08 12:36 PM	

+="CN77959"	"LEASE OF CONTAINERS FOR STORAGE OF ICT EQUIPMENT"	="Department of Defence"	10-May-08	="Containers and storage"	29-Jan-08	30-Jun-08	16500.00	=""	="DAWSON MOVING & STORAGE"	10-May-08 12:37 PM	

+="CN77964"	"EXERCISE TOUCHSTONE 29-30 Oct 07"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Dec-07	12-Dec-07	16470.00	=""	="HOLIDAY INN SYDNEY AIRPORT"	10-May-08 12:37 PM	

+="CN77976"	"Fit Emergency Exits"	="Department of Defence"	10-May-08	="Doors and windows and glass"	12-Dec-07	30-Aug-08	17802.40	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:38 PM	

+="CN77978"	"Transmission at Cultana 05-23 Sep 2007"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	31-Dec-07	19068.60	=""	="TELSTRA"	10-May-08 12:38 PM	

+="CN77984"	"CATALYST 3750 48 10/100/1000 4 SFP ENHANCED MULTILAYER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	21-Dec-07	19049.48	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 12:38 PM	

+="CN78040"	"purchase of televisions"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	17-Dec-07	21-Dec-07	17120.35	=""	="THE GOOD GUYS ALEXANDRIA"	12-May-08 09:38 AM	

+="CN78048"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Hardware"	14-Dec-07	21-Dec-07	17952.00	=""	="ALLOY COMPUTER PRODUCTS"	12-May-08 09:39 AM	

+="CN78049"	"Plumbing supplies, Construction Platoon, Army Logistic Training Centre"	="Department of Defence"	12-May-08	="Plumbing fixtures"	14-Dec-07	17-Jan-08	16925.54	=""	="SOUTHERN PLUMBING PLUS"	12-May-08 09:40 AM	

+="CN78090"	"5NMOL CYDYE DIGE FLUORE MIN KITs, Various laboratory items and chemicals"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	19-Dec-07	29-Feb-08	19859.13	=""	="GE HEALTHCARE BIO-SCIENCES"	12-May-08 09:49 AM	

+="CN78109"	"SERVICES FOR SUPPORT TO TDL JAN/FEB 08"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	19-Dec-07	29-Feb-08	19714.00	=""	="CUBIC DEFENSE APPLICATIONS INC"	12-May-08 09:52 AM	

+="CN78110"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78113"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78117"	"FURNITURE FOR 278SQN"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	18-Dec-07	14-Feb-08	17963.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 09:54 AM	

+="CN78128"	"Computer Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	17358.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 09:56 AM	

+="CN78132"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	17-Jan-08	18447.77	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78136"	"DOOR LOCKS AND KEYS FOR ACCOMMODATION"	="Department of Defence"	12-May-08	="Locks and security hardware and accessories"	18-Dec-07	30-Jan-08	16053.40	=""	="MOSMAN LOCKSMITHS &"	12-May-08 09:57 AM	

+="CN78192"	"Supply and installation of cabling services at Queensland Airports"	="Australian Federal Police"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	18546.40	="37-2005"	="Absolute Cabling Systems Pty Ltd"	12-May-08 11:45 AM	

+="CN78204"	"Scribe for Marketing Communications Capability Recruitment"	="Australian Taxation Office"	12-May-08	="Management advisory services"	02-Jun-08	13-Jun-08	18500.00	="64.04-35"	="Recruitment Management Company"	12-May-08 12:09 PM	

+="CN78214"	"AMMAN CHANCERY RELOCATION."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	16142.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-May-08 01:05 PM	

+="CN78222"	"DIAGONAL DUAL POLARISEDHORN ANTENNA 2GHZ"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	29-Feb-08	19030.00	=""	="FARADAY PTY LTD"	12-May-08 01:06 PM	

+="CN78232"	"EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	16667.44	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:08 PM	

+="CN78250"	"HP XW 9400 WORKSTATION HPLP2465 24" TCO03 LCD MONITOR HP8710W NOTEBOOK"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Dec-07	21-Dec-07	18766.00	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 01:10 PM	

+="CN78255-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	17038.13	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78259-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Oct-07	28-Dec-07	19641.60	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78261-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	12-Oct-07	19008.00	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78269"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="RECOVRE"	12-May-08 01:12 PM	

+="CN78270"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="KONEKT AUSTRALIA PTY LTD"	12-May-08 01:12 PM	

+="CN78281"	"PRINT PRODUCTION LWP-G 7-4-12 AL3 X 6000 COPIES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Dec-07	20-Dec-07	17870.60	=""	="PRESS HERE PTY LTD"	12-May-08 01:14 PM	

+="CN78294"	"DELIVER THE FOLLOWING COURSES INCLUDING BUT NOT LIMITED TO BUILDING SUCCESSFUL TEAMS"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	30-Jun-08	19503.00	=""	="DEVELOPING POTENTIAL AUSTRALIA"	12-May-08 01:16 PM	

+="CN78314"	"Research Agreement Heat assessment of Chemical and Biological Protective ensembles REF:2007/1096729/"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	05-Dec-07	14-Dec-07	16645.20	=""	="UNI OF WOLLONGONG - OFF OF RESEARCH"	12-May-08 01:19 PM	

+="CN78315"	"Hire of lighting equipment"	="Department of Defence"	12-May-08	="Lighting and fixtures and accessories"	05-Dec-07	07-Dec-07	19933.10	=""	="RESOLUTION X PTY LTD"	12-May-08 01:19 PM	

+="CN78335"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	17820.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	12-May-08 01:23 PM	

+="CN78347"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Dec-07	18927.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:25 PM	

+="CN78352"	"Contract - Extension Development of a LAP CHAT App"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	30-Jun-08	18287.50	=""	="ALTASYS SOFTWARE PTY LTD"	12-May-08 01:25 PM	

+="CN78358"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	16027.00	=""	="NGA.NET PTY LTD"	12-May-08 01:26 PM	

+="CN78359"	"CADET GLIDING CAMP"	="Department of Defence"	12-May-08	="Recreational aircraft"	05-Dec-07	15-Dec-07	19965.00	=""	="BOX GROVE"	12-May-08 01:27 PM	

+="CN78387-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	31-Jul-07	12-Oct-07	19470.00	=""	="W.E. & P.A. CAMERON PTY. LIMITED"	12-May-08 01:31 PM	

+="CN78415"	"FACOPS-SA-08-SA2352-04"	="Department of Defence"	12-May-08	="Water safety"	10-Dec-07	30-Jun-08	19140.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:36 PM	

+="CN78416"	"Edgell/McCains Beans, capsicums, diced carrots, corn kernels, and mixed vegetables"	="Department of Defence"	12-May-08	="Vegetables"	10-Dec-07	03-Mar-08	17561.06	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	12-May-08 01:36 PM	

+="CN78419"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	16500.00	=""	="THOUGHTWEB PTY LTD"	12-May-08 01:37 PM	

+="CN78432"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Dec-07	14-Dec-07	19593.20	=""	="PARAGON PRINTERS"	12-May-08 01:39 PM	

+="CN78436"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	18480.00	=""	="CEO COLLEGIATES PTY LTD"	12-May-08 01:40 PM	

+="CN78448"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	06-Dec-07	06-Dec-07	16382.51	=""	="GHK GREEN KREJCI"	12-May-08 01:42 PM	

+="CN78464"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	06-Dec-07	30-Jun-08	19200.00	=""	="REACT"	12-May-08 01:44 PM	

+="CN78472"	"DSTO RATIONALISATION PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	16742.00	=""	="TAC PACIFIC PTY LTD"	12-May-08 01:45 PM	

+="CN78477"	"Advertising EL2 job 25495"	="Department of Defence"	12-May-08	="Advertising"	07-Dec-07	17-Dec-07	19600.42	=""	="HMA BLAZE PTY LTD"	12-May-08 01:46 PM	

+="CN78492"	"FACOPS - SA2387"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	18700.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:48 PM	

+="CN78581"	"CONDITIONS: As per Commonwealth / QinetiQ Agreemen"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	17651.26	=""	="QINETIQ LTD"	12-May-08 02:03 PM	

+="CN78585"	"Lease of SES vehicle"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	20-Dec-07	30-Jun-09	19584.27	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:04 PM	

+="CN78586"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	17283.42	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:04 PM	

+="CN78642"	"PASSENGER TPT BY AIR"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Jun-08	16548.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:12 PM	

+="CN78672"	"Car Hire for members on course"	="Department of Defence"	12-May-08	="Vehicle doors"	13-Dec-07	29-Jul-08	18667.61	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:14 PM	

+="CN78678"	"Enterprise thinking August 07"	="Department of Defence"	12-May-08	="Environmental Services"	31-Aug-07	30-Jun-08	18782.29	=""	="ENTERPRISE CLARITY PTY LTD"	12-May-08 02:15 PM	

+="CN78681"	"REPAIRING OF ROOF AT AUSTRALIAN COMPOUND BAGHDAD"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Nov-07	16-Dec-07	18792.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:15 PM	

+="CN78707"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	16970.30	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78709"	"Office Relocation"	="Department of Defence"	12-May-08	="Office supplies"	14-Apr-08	16-May-08	16830.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	12-May-08 02:17 PM	

+="CN78715"	"Services of Sun Project Engineer"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	30-May-08	19123.50	=""	="SUN MICROSYSTEMS AUST PTY LTD"	12-May-08 02:18 PM	

+="CN78720"	"Cisco Equipment"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Jan-08	04-Feb-08	16516.18	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78724"	"IT equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	13-Jun-08	17655.66	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78734"	"ACMS 1529581MAINSTREM 2008 MAINTANCE AND RELIABILT MANAGEMENT CONFERENCE"	="Department of Defence"	12-May-08	="Environmental control systems"	14-Apr-08	14-Apr-08	19316.00	=""	="EVENTFUL MANAGEMENT"	12-May-08 02:19 PM	

+="CN78742"	"VEHICLE LEASE FLLA  B NOV 07"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	04-Dec-07	16247.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:19 PM	

+="CN78752"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	29-Nov-07	03-Jan-08	16439.87	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:20 PM	

+="CN78761"	"CONTRACT ADMINISTRATOR FEES FOR JUNE 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:20 PM	

+="CN78764"	"CONTRACT ADMINISTRATOR FEES FOR JULY 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78767"	"CONTRACT ADMINISTRATOR FEES FOR AUGUST 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78770"	"CONTRACT ADMINISTRATOR FEES FOR SEPTEMBER 2007"	="Department of Defence"	12-May-08	="Hardware"	06-Oct-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78776"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	16500.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	12-May-08 02:21 PM	

+="CN78778"	"OFFICE FURNITURE FOR RNSW"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Apr-08	05-May-08	16390.00	=""	="INTERWORX PTY LTD"	12-May-08 02:21 PM	

+="CN78783"	"SPECIAL FINANCIAL CLAIM"	="Department of Defence"	12-May-08	="Legal services"	28-Nov-07	15-Dec-07	18250.00	=""	="WILLIAMS WINTER & HIGGS"	12-May-08 02:22 PM	

+="CN78790"	"Powerware 9355 - Three phase input output"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	14-Apr-08	16-Apr-08	18549.30	=""	="POWER ON AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78801"	"qantas invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Sep-07	30-Sep-07	17469.10	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78802"	"Services for Market & Technology Reports"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	22-Apr-08	19250.00	=""	="FROST & SULLIVAN"	12-May-08 02:23 PM	

+="CN78807"	"CAMP LABOUR FLLA NOV 07"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Nov-07	09-Dec-07	18235.68	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:23 PM	

+="CN78808"	"A4 25mm Buff Binders x Qty 2000, A4 50mm Buff Bind ers x Qty 2000"	="Department of Defence"	12-May-08	="Paper products"	14-Apr-08	25-Apr-08	17380.00	=""	="CUSTOM INDUSTRIES PTY LTD"	12-May-08 02:23 PM	

+="CN78809"	"OP DELUGE - MEDALS"	="Department of Defence"	12-May-08	="Collectibles and awards"	21-Dec-07	21-Dec-07	18507.50	=""	="G A MILLER METAL INDUSTRIES"	12-May-08 02:23 PM	

+="CN78816"	"QANTAS AIRFARES FOR AUSTRALIAN DEFENCE BASIC FLYIN TRAINING SCHOOL FOR OCTOBER 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	16547.86	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78824"	"ADVERTISING"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	21-Dec-07	30-Jun-08	19284.10	=""	="LAM AGENCY PTY LTD"	12-May-08 02:24 PM	

+="CN78829"	"Software Support"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Apr-08	18023.50	=""	="AUSPACE LIMITED"	12-May-08 02:24 PM	

+="CN78845"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Dec-07	21-Dec-07	16036.90	=""	="PIRION PTY LTD"	12-May-08 02:25 PM	

+="CN78846"	"VEHICLE LEASE"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	05-Dec-07	17707.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:25 PM	

+="CN78867"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	02-Jan-08	29-Feb-08	17545.55	=""	="HARVEY NORMAN BEDDING PENRITH"	12-May-08 02:27 PM	

+="CN78904"	"TRAINING COURSES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	20000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	12-May-08 02:29 PM	

+="CN78906"	"CONTRACT SERVICES IRAQ - FLLA B"	="Department of Defence"	12-May-08	="Industrial Cleaning Services"	01-Mar-08	12-Apr-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78909"	"IN FLIGHT MEALS"	="Department of Defence"	12-May-08	="Packaged combination meals"	07-Mar-08	12-Apr-08	17224.70	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78917"	"CARRY OUT INSPECTION AND REPAIRS TO GENIE EWP FOR BASE EAST."	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	26-May-08	16684.80	=""	="NTP FORKLIFTS AUSTRALIA"	12-May-08 02:30 PM	

+="CN78927"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	09-Apr-08	09-Apr-08	18000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:31 PM	

+="CN78930"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	30-Mar-07	30-Mar-07	19212.73	=""	="HMA BLAZE PTY LTD"	12-May-08 02:31 PM	

+="CN78934"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	19176.70	=""	="ASI SOLUTIONS"	12-May-08 02:32 PM	

+="CN78932"	"STORAGE CABINETS"	="Department of Defence"	12-May-08	="Cabinets"	01-May-08	12-Jun-08	16843.20	=""	="F G P COMPANY PTY LTD"	12-May-08 02:33 PM	

+="CN78953"	"For Site Integration Services - Stage 3 DIER 0708- Australian Region"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	31-Dec-08	18004.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:33 PM	

+="CN78968"	"Consultancy for the rewiring and certification of RAAF Base Townsville.  This consultancy also cover"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	17-Dec-07	30-Jun-08	17605.50	=""	="SPOTLESS"	12-May-08 02:34 PM	

+="CN78969"	"Delivery of ADDP 3.11 CIMIC Authors Brief"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Mar-08	30-Jun-08	16445.45	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 02:34 PM	

+="CN78980"	"Provision of labour hire to RFS from 1 Jan to 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	16774.96	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 02:35 PM	

+="CN78982"	"4 X PHOTOCOPIERS - OBGW"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	16-Mar-08	19-Mar-08	17052.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:36 PM	

+="CN78985"	"CORE Software Licenses"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	04-Jan-08	17113.38	=""	="TE & JL DEECKE - USD"	12-May-08 02:36 PM	

+="CN78991"	"INCREASED CAPACITY TO DSVE NATIONAL BRIDGE."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	31-Mar-08	18024.95	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 02:36 PM	

+="CN79018"	"MSL TRAVEL BILLS APR08"	="Department of Defence"	12-May-08	="Structural materials and basic shapes"	15-Apr-08	15-Apr-08	17386.35	=""	="MSL TRAVEL DN BHD"	12-May-08 02:38 PM	

+="CN79024"	"hire car rental"	="Department of Defence"	12-May-08	="Passenger transport"	24-Mar-08	17-Apr-08	16750.79	="732"	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79041"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	09-Mar-08	12-Apr-08	18525.00	=""	="ROYAL PERTH HOSPITAL"	12-May-08 02:40 PM	

+="CN79050"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	26-Mar-08	30-May-08	18034.73	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:40 PM	

+="CN79066"	"facops"	="Department of Defence"	12-May-08	="Alloys"	17-Dec-07	30-Jun-08	19243.40	=""	="RESOLVE FM"	12-May-08 02:42 PM	

+="CN79068"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	23-Mar-08	15-Apr-08	20000.00	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79070"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	20-Feb-08	15-Apr-08	18333.32	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79088"	"REPAIR EXPLOSIVE FORKLIFT FOR ORCHARD HILLS EODF"	="Department of Defence"	12-May-08	="Hydraulic machinery and equipment"	07-Apr-08	02-Jun-08	18931.00	=""	="CHESS ENGINEERING PTY LTD"	12-May-08 02:44 PM	

+="CN79094"	"CONFERENCE"	="Department of Defence"	12-May-08	="Personal and Domestic Services"	07-Apr-08	07-Apr-08	19164.00	=""	="TOUR HOSTS PTY LTD"	12-May-08 02:44 PM	

+="CN79106"	"Line marking"	="Department of Defence"	12-May-08	="Paints and primers and finishes"	07-Apr-08	11-Apr-08	16359.20	=""	="TRICORP ENTERPRISES"	12-May-08 02:46 PM	

+="CN79112"	"COMPUTERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	07-Apr-08	18074.00	=""	="CIC SECURE PTY LTD"	12-May-08 02:46 PM	

+="CN79113"	"TRAINING EQUIPMENT FOR TPT COURSE"	="Department of Defence"	12-May-08	="Safety apparel"	12-Mar-08	08-Apr-08	17539.25	=""	="AITKEN MOTORCYCLES"	12-May-08 02:46 PM	

+="CN79121"	"Aerial surveillance SWBTA"	="Department of Defence"	12-May-08	="Environmental management"	26-Mar-08	31-Mar-08	18249.00	=""	="REID HELIWORK"	12-May-08 02:47 PM	

+="CN79122"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	18254.28	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79131"	"GROUP REGISTRATIONFOR COLLABORATIVE EMERGENCY RESPONSE CONFERENCE 2008"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Apr-08	11-Apr-08	16493.40	=""	="INTERNATIONAL QUALITY & PRODUCTIVIT"	12-May-08 02:48 PM	

+="CN79137"	"STATIONARY"	="Department of Defence"	12-May-08	="Paper products"	07-Apr-08	11-Apr-08	16390.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 02:48 PM	

+="CN79158"	"HP DL360G5 SERVER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	17291.68	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:50 PM	

+="CN79163"	"CHP PAYMENTS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	14-Apr-08	14-Apr-08	17496.01	=""	="RED ALLIANCE PTY LTD"	12-May-08 02:51 PM	

+="CN79167"	"APR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	30-Apr-08	05-May-08	18245.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:51 PM	

+="CN79182"	"COLLECT OF WASTE MNGT FOR EX WALLABY 07"	="Department of Defence"	12-May-08	="Scrap and waste materials"	10-Dec-07	10-Dec-07	17912.32	=""	="WANLESS WASTECORP"	12-May-08 02:53 PM	

+="CN79188"	"APR 08 FORKLIFT LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	15-Apr-08	03-May-08	16205.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:53 PM	

+="CN79193"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79195"	"Tenix Multiple Computer Switches units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79196"	"INSTALLATION OF PLASTIC SCREENS - FLLA K"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	30-Apr-08	04-May-08	17707.64	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79198"	"APR 08 ADMINISTRATION COSTS - IRAQ"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Apr-08	04-May-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79213"	"IT Training"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Jun-08	16340.50	=""	="PROACTIVE SERVICES PTY LTD"	12-May-08 02:56 PM	

+="CN79216"	"DANGEROUS AWARENESS COURSES"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Dec-07	30-Jun-08	16201.80	=""	="THE CIVIL AVIATION ACADEMY"	12-May-08 02:56 PM	

+="CN79228"	"SERVICES FOR FLEXIBLE LEARNING COURSE ENOGGERA"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Apr-08	30-Jun-08	16711.20	=""	="TODAY CORP PTY LTD"	12-May-08 02:58 PM	

+="CN79233"	"TEMPORARY ACCOMMODATION"	="Department of Defence"	12-May-08	="Accommodation furniture"	29-Feb-08	30-Jun-08	18590.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79249"	"REPLENISHMENT OF STOCK IN BASREC"	="Department of Defence"	12-May-08	="Military watercraft"	03-Apr-08	30-Jun-08	17051.72	=""	="DEFENCE MARITIME SERVICES"	12-May-08 02:59 PM	

+="CN79257"	"Pearce is transferring to scheme water due to fail bore water supply to provide reliable potable wat"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	08-Apr-08	30-Jun-08	18110.40	=""	="ROAD SAFETY HIRE PTY LTD"	12-May-08 03:00 PM	

+="CN79297"	"LIMITS OF ACCEPTABLE CHANGE LITERATURE REVIEW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	18572.40	=""	="CONNELL WAGNER PTY LTD"	12-May-08 03:04 PM	

+="CN79312"	"MISC. CABLES REQUIRED FOR OP CATAYLST- ORDER 88/08"	="Department of Defence"	12-May-08	="Electrical components"	09-Apr-08	09-Apr-08	16950.20	=""	="AWE-SIM ELECTRICAL WHOLESALERS"	12-May-08 03:06 PM	

+="CN79315"	"LEATHER LOUNGE SUITE 2 SEATER AND SINGLE BORNEO BARRACKS CABARLAH"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	09-Apr-08	16-Jun-08	16500.06	=""	="RUBELLI DESIGN"	12-May-08 03:06 PM	

+="CN79324"	"FEB 08 TELEHANDLER LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	18-Mar-08	01-May-08	16103.09	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:07 PM	

+="CN79347"	"CABLING WORKS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	31-May-08	19313.80	=""	="PROFESSIONAL CABLING SERVICES"	12-May-08 03:09 PM	

+="CN79348"	"MAR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	31-Mar-08	03-May-08	16544.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79372"	"Thin client terminals"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	21-May-08	18839.92	=""	="ASI SOLUTIONS"	12-May-08 03:10 PM	

+="CN79374"	"Use of Exisitng ASP Contract - No 1 LT Cooling Pump"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	01-Apr-08	25-Apr-08	16847.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:10 PM	

+="CN79392"	"LOCAL LABOUR AND ADMIN COSTS - BAGHDAD"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	31-Mar-08	01-May-08	17062.88	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:12 PM	

+="CN79403"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	31-Aug-07	19315.43	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79405"	"POC: PHILLIP MCCULLOCH CONTACT: 02 626 50928"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	18260.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:13 PM	

+="CN79409"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	18439.73	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79435"	"Hospitality - FBT"	="Department of Defence"	12-May-08	="Accommodation furniture"	07-Apr-08	30-Jun-08	17690.40	=""	="GOOLABRI COUNTRY RESORT"	12-May-08 03:15 PM	

+="CN79453"	"QANTAS"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	18-Feb-08	18299.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:16 PM	

+="CN79465"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Sep-07	30-Sep-07	16988.20	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79468"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Apr-08	07-Apr-08	17050.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:17 PM	

+="CN79477"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	20-Apr-08	19422.70	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:18 PM	

+="CN79478"	"sUPPLY OF INTERACTIVE hARDWARE AND sOFTWARE FOR os"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	18194.77	=""	="SAI GLOBAL LTD"	12-May-08 03:18 PM	

+="CN79487"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	18993.11	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:18 PM	

+="CN79489"	"Divide Room 156 to create two new rooms at Facility 536 RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	08-Apr-08	30-Jun-08	16319.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:18 PM	

+="CN79491"	"NDT Procedure Development for PC9/A"	="Department of Defence"	12-May-08	="Flight communications related systems"	26-Mar-08	16-Apr-08	18372.75	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:18 PM	

+="CN79494"	"SN02525 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:19 PM	

+="CN79495"	"PEL AIR FLIGHT SUPPORT TO THE DIRCM PH4"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	30-Jun-08	18400.00	=""	="PEL-AIR AVIATION"	12-May-08 03:19 PM	

+="CN79499"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	16088.60	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:19 PM	

+="CN79515"	"YEYS 20TH ANNIVERSARY CATERING"	="Department of Defence"	12-May-08	="Food and Beverage Products"	11-Feb-08	11-Feb-08	18336.73	=""	="COMPASS GROUP AUSTRALIA PTY LTD"	12-May-08 03:20 PM	

+="CN79521"	"HEALTH PROGRAM"	="Department of Defence"	12-May-08	="Healthcare Services"	08-Apr-08	30-Jun-08	18241.30	=""	="PRO-FIT CORPORATE HEALTH"	12-May-08 03:21 PM	

+="CN79526"	"training services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-08	18040.00	=""	="GRIFFITH UNIVERSITY"	12-May-08 03:21 PM	

+="CN79551"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	10-Dec-07	10-Dec-07	18921.73	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 03:22 PM	

+="CN79559"	"AUSCDT ONE QANTAS STATEMENT JAN 08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	01-Mar-08	17050.53	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:23 PM	

+="CN79580"	"Payment for Professional Services - ADFWC Standing of ADDP 3.16-AIRSPACE CONTROL"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	29-Jan-08	28-Feb-08	17051.58	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 03:25 PM	

+="CN79590"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	19380.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:26 PM	

+="CN79591"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Printed media"	23-Apr-08	23-Apr-08	16879.50	=""	="PARAGON PRINTERS"	12-May-08 03:26 PM	

+="CN79598"	"Conduct an IMS workshop AASSPO-SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Feb-08	15-Feb-08	16009.17	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:26 PM	

+="CN79608"	"Use of Exisitng ASP Contract - Review Ships Hull Survey Management"	="Department of Defence"	12-May-08	="Marine transport"	20-Mar-08	17-Apr-08	19379.75	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:27 PM	

+="CN79610"	"Computer equiptment and support"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	12-Feb-08	29-Feb-08	17843.10	=""	="SCIENTIFIC DEVICES AUSTRALIA"	12-May-08 03:27 PM	

+="CN79611"	"LONG DAY CARE CENTRE CARPARK CONSULTANCY"	="Department of Defence"	12-May-08	="Roads and landscape"	15-Nov-07	30-Jun-08	19800.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:27 PM	

+="CN79620"	"CONTRACT LABOUR JAN 08- FLLA B"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	03-Feb-08	11-Feb-08	17746.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:27 PM	

+="CN79625"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	11-Feb-08	17098.35	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:28 PM	

+="CN79634"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	04-Apr-08	04-Apr-08	19544.70	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	12-May-08 03:28 PM	

+="CN79643"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	12-May-08	="Aircraft"	16-Jan-08	16-Feb-08	17690.80	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:29 PM	

+="CN79648"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	19159.66	=""	="RACAL ACOUSTICS LIMITED"	12-May-08 03:29 PM	

+="CN79657"	"Please Deliver to RAAF Base furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Nov-07	30-Jun-08	17078.60	=""	="KEEN OFFICE FURNITURE"	12-May-08 03:30 PM	

+="CN79664"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16665.60	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:30 PM	

+="CN79669"	"Software"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	06-Dec-07	18796.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 03:31 PM	

+="CN79668"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16471.25	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:31 PM	

+="CN79678"	"technical assistance to trials"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	31-Mar-08	19826.40	=""	="ICON RECRUITMENT"	12-May-08 03:32 PM	

+="CN79683"	"Provision of Legal Services"	="Medicare Australia"	12-May-08	="Legal services"	07-Apr-08	07-Apr-08	16500.00	=""	="SPARKE HELMORE"	12-May-08 03:32 PM	

+="CN79686"	"12/40 RTR AUGUST 07 QANTAS BILL"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	07-Feb-08	17589.39	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:33 PM	

+="CN79694"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	04-Jan-08	17820.00	=""	="ACACIA RESEARCH PTY LTD"	12-May-08 03:33 PM	

+="CN79719"	"DEVELOP A SOFTWARE ENGINEERING (PROJECT PRACTITIONER) COURSE"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	12-Feb-08	30-Jun-08	16384.50	=""	="DEAKINPRIME"	12-May-08 03:35 PM	

+="CN79722"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	29-Feb-08	17160.00	=""	="KAZ GROUP PTY LTD"	12-May-08 03:35 PM	

+="CN79737"	"MATTRESSES AND PROTECTORS"	="Department of Defence"	12-May-08	="Bedclothes and table and kitchen linen and towels"	05-Feb-08	12-Feb-08	19520.69	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:36 PM	

+="CN79748"	"Land 17 Tender Evaulation Suite furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	28-Mar-08	30-May-08	17230.12	=""	="MELBOURNE OFFICE FURNITURE PTY LTD"	12-May-08 03:36 PM	

+="CN79751"	"Nulka Maintenace"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	02-May-08	18674.94	=""	="THALES AUSTRALIA"	12-May-08 03:36 PM	

+="CN79756"	"Testing Technician"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	16-Nov-07	05-Jun-08	18785.25	=""	="FORTBURN PTY LTD"	12-May-08 03:37 PM	

+="CN79750"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	19882.52	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 03:37 PM	

+="CN79807"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	19134.34	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79824"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Nov-07	30-Jun-08	18293.00	=""	="CRS AUSTRALIA"	12-May-08 03:41 PM	

+="CN79827"	"CALIBRATION EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	30-Mar-08	19694.40	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	12-May-08 03:42 PM	

+="CN79858"	"QANTAS PASSENGER  AIRFARES FOR AUSTRALIAN DEFENCE FORCE BASIC FLIGHT TRAINING SCHOOL FOR DECEMBER 07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	16325.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:44 PM	

+="CN79856"	"By Pass Hose Set"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	16-Feb-08	01-Jul-08	17915.93	=""	="LCF SYSTEMS INC"	12-May-08 03:44 PM	

+="CN79877"	"Travel and subsistence"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	20000.00	=""	="DEFENCE SUPPORT - WA"	12-May-08 03:45 PM	

+="CN79879"	"Publication work as required"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18400.00	=""	="BALL SOLUTIONS GROUP"	12-May-08 03:45 PM	

+="CN79878"	"SALARY AND SALARY RELATED COSTS"	="Department of Defence"	12-May-08	="Medical science research and experimentation"	07-Feb-08	14-Feb-08	18587.97	=""	="QUT STUDENT FEES OFFICE"	12-May-08 03:45 PM	

+="CN79896"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Travel facilitation"	31-Jan-08	14-Mar-08	18087.49	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79901"	"RADIOLOGY SERVICES JANUARY 2008"	="Department of Defence"	12-May-08	="Patient exam and monitoring products"	11-Feb-08	20-Mar-08	19586.69	=""	="BENSON RADIOLOGY"	12-May-08 03:47 PM	

+="CN79912"	"PROJECT REPORTING TOOL"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	21-Jun-08	18106.00	=""	="HUEGIN CONSULTING"	12-May-08 03:48 PM	

+="CN79915"	"SATCOM contact - Brian Castles brian.castles2@defe"	="Defence Materiel Organisation"	12-May-08	="Satellites"	14-Feb-08	30-Jun-08	16500.00	=""	="TC COMMUNICATIONS PTY LTD"	12-May-08 03:48 PM	

+="CN79920"	"RATIONS FOR EX.SOUTHERN REACH - DAIRY PRODUCTS 01.09.2007 - 30.01.2008"	="Department of Defence"	12-May-08	="Dairy products and eggs"	12-Nov-07	30-Apr-08	19637.60	=""	="PORT AUGUST MILK VENDORS PTY LTD"	12-May-08 03:48 PM	

+="CN79926"	"RASS MEASUREMENT CAMPAIGN EAST SALE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	27-Mar-08	30-Apr-08	16099.46	=""	="NATIONAL AVIATION & COMMUNICATIONS"	12-May-08 03:49 PM	

+="CN79938"	"Rectify generator & storage issues"	="Department of Defence"	12-May-08	="General building construction"	27-Mar-08	30-May-08	16783.54	=""	="DIESEL CONTRACT SERVICES"	12-May-08 03:50 PM	

+="CN79939"	"Incidentals for AARU Europe Tour Apr 08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	21-Feb-08	12-Mar-08	18500.00	=""	="AUSTRALIAN ARMY RUGBY UNION"	12-May-08 03:50 PM	

+="CN79983"	"Flinders University Bachelor of medicine Maj G Day"	="Department of Defence"	12-May-08	="Educational institutions"	20-Dec-07	09-Aug-08	18900.00	=""	="THE FLINDERS UNIVERSITY OF SA"	12-May-08 03:54 PM	

+="CN79992"	"HIRE OF CURTAINSIDER TRUCK IN SUPPORT OF OPERATIONS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Nov-07	05-Mar-08	19714.20	=""	="THRIFTY CAR RENTALS"	12-May-08 03:55 PM	

+="CN79993"	"TECHNICAL SERVICES"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	17634.85	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:55 PM	

+="CN79995"	"ADC WESTON TEMP ACCOMODATION - SN02525"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:56 PM	

+="CN80004"	"FEB LEASE OF VEHICLES- HQJTF 633"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Feb-08	25-Mar-08	16840.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:56 PM	

+="CN80010"	"EA & DDP FOR FRIDGE LOCK-IN ALARMS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	24-May-08	18579.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:57 PM	

+="CN73556-A1"	"Audio Visual Equipment Hire"	="Department of the Prime Minister and Cabinet"	12-May-08	="Audio visual services"	17-Apr-08	21-Apr-08	19659.00	=""	="Nova Topstage Pty Ltd"	12-May-08 03:58 PM	

+="CN80034"	"QANTAS BILL 75SQN FEB 08"	="Department of Defence"	12-May-08	="Recreational aircraft"	13-Mar-08	31-Dec-08	17091.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:58 PM	

+="CN80044"	"NSN 4440-66-151-2924, Silica Gel"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	08-May-08	18-May-08	17219.40	=""	="CONSOLIDATED CHEMICAL CO"	12-May-08 04:00 PM	

+="CN80066"	"WARRANTY ON PRODUCT IS 12 MONTHS UNIT PRICE INCLUDES DELIVERY INTO WA."	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	15-Mar-08	18658.31	=""	="PADDY PALLIN ADVENTURE EQUIPMENT"	12-May-08 04:01 PM	

+="CN80078"	"FEB LEASE OF TELE-HANDLER FORKLIFT"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	05-Feb-08	20-Mar-08	16495.39	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:01 PM	

+="CN80091"	"Elbow, Tube"	="Department of Defence"	12-May-08	="Electrical components"	11-Dec-07	25-Jul-08	19793.86	=""	="LCF SYSTEMS INC"	12-May-08 04:02 PM	

+="CN80096"	"Conduct a comprehensive appraisal report on B Hangar"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	28-Dec-07	19800.00	=""	="GHD PTY LTD"	12-May-08 04:02 PM	

+="CN80113"	"QANTAS INVOICE"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	25-Mar-08	17567.36	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:03 PM	

+="CN80149"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	20-Nov-07	30-Jun-08	16901.50	=""	="RECOVRE PTY LTD"	12-May-08 04:05 PM	

+="CN80167"	"Training Course"	="Defence Materiel Organisation"	12-May-08	="Software"	06-Feb-08	06-Feb-08	16313.22	=""	="IDC TECHNOLOGIES PTY LTD"	12-May-08 04:07 PM	

+="CN80169"	"Seven places with Cranfield University in Adelaide for Availability & Integrated Logistic Suppor"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	11-Dec-07	11-Dec-07	17500.00	=""	="DEFENCE TEAMING CENTRE INC"	12-May-08 04:07 PM	

+="CN80173"	"PAYMENT TO HERTZ FOR DAMAGED VEHICLE BY RAAFSALT"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Jan-08	03-Mar-08	19928.60	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 04:08 PM	

+="CN80177"	"4563 - BI QUERY TRAINING SERVICES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	05-Feb-08	14-Mar-08	18260.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:08 PM	

+="CN80212"	"Repair fence around Doomadgee Council Rubbish Tip"	="Department of Defence"	12-May-08	="Environmental Services"	12-Dec-07	30-Jun-08	17905.44	=""	="DOOMADGEE CDEP ENTERPRISES"	12-May-08 04:11 PM	

+="CN80222"	"sanitary disposal"	="Department of Defence"	12-May-08	="Environmental Services"	19-Nov-07	30-Jun-08	17600.00	=""	="RENTOKIL INITIAL PTY LTD"	12-May-08 04:12 PM	

+="CN80267"	"REPAIRS TO MBITR SPARE PARTS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	20-Dec-07	20-Jun-08	16879.50	=""	="THALES AUSTRALIA"	12-May-08 04:15 PM	

+="CN80274"	"WIRING HARNESS"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	06-Feb-08	31-Jul-08	17304.56	=""	="SEMCO INSTRUMENTS INC"	12-May-08 04:16 PM	

+="CN80278"	"PRODUCTION, DESIGN OF DISPLAY AT SHOW"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Nov-07	11-Sep-08	17868.62	=""	="ZOO INSTINCTIVELY CREATIVE"	12-May-08 04:17 PM	

+="CN80285"	"Installation of remote swich, cabling & controls for power isolation at LA 1, Woomera."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	10-Apr-08	12-May-08	17552.67	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:17 PM	

+="CN80295"	"12 months support for ACUCOBOL GT Runtime and GT Dev Sys sosftware"	="Defence Materiel Organisation"	12-May-08	="Software"	05-Feb-08	09-Jan-09	18502.00	=""	="MICRO FOCUS PTY LTD"	12-May-08 04:18 PM	

+="CN80300"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	18996.32	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 04:19 PM	

+="CN80314"	"review & amend flexible hoses database"	="Defence Materiel Organisation"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	05-Feb-08	16-Apr-08	17427.62	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80328"	"student and staff movements"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	30-Jun-08	19157.09	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:21 PM	

+="CN80342"	"Computer maintenance to be performed on the WAT an modules."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	19860.02	=""	="ONLINE LEARNING AUSTRALIA PTY"	12-May-08 04:22 PM	

+="CN80346"	"PURCHASE 22 DELL 24"ULTRA SHARP WIDE SCREEN FLAT P MONITORS(ANALOG & DVI)"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	30-Jun-08	19844.00	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 04:22 PM	

+="CN80345"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-May-08	17971.24	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80357"	"VARIOUS IT REQUIREMENTS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	14-Apr-08	30-Jun-08	17339.32	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:23 PM	

+="CN80372"	"air chtr movt of iso container op astute"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	30-Nov-07	16791.50	=""	="PDL TOLL"	12-May-08 04:24 PM	

+="CN80375"	"Software Integration Task"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Jun-08	17600.00	=""	="XANALYS PTY LTD"	12-May-08 04:24 PM	

+="CN80380"	"Rugged Notebook"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	16014.90	=""	="APC TECHNOLOGY"	12-May-08 04:24 PM	

+="CN80384"	"AIRFARES 27/12/2007 - 13/01/2008"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	23-Mar-08	18983.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80390"	"AIR FARES"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	06-Mar-08	17914.28	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80393"	"lube oil engine cooler"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	04-Jan-08	10-May-08	17543.79	=""	="HONEYWELL AEROSPACE TULSA/LORI"	12-May-08 04:25 PM	

+="CN80401"	"QANTAS PAYMENT JAN 08"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	28-Mar-08	18760.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:25 PM	

+="CN80407"	"Workforce Support to develop database modification and user documentation"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	08-Feb-08	08-Feb-08	19454.40	=""	="SME GATEWAY LIMITED"	12-May-08 04:25 PM	

+="CN80409"	"Large  LCD Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Dec-07	17-Dec-07	16328.40	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:25 PM	

+="CN80419"	"Software Benefits Renewal"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	30-Apr-08	17905.47	=""	="CORPORATE EXPRESS"	12-May-08 04:26 PM	

+="CN80424"	"Notebook computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	16797.72	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80430"	"SPRING HELICAL COMPRESSON"	="Department of Defence"	12-May-08	="Firearms"	20-Dec-07	19-Jan-08	19058.93	=""	="R/M EQUIPMENT"	12-May-08 04:26 PM	

+="CN80431"	"OUTLOOK TRAINING COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	29-Apr-08	18348.00	=""	="PRIORITY MANAGEMENT"	12-May-08 04:26 PM	

+="CN80438"	"ESRI Software Maintenance"	="Department of Defence"	12-May-08	="Software"	10-Jan-08	01-Jan-09	17625.30	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 04:27 PM	

+="CN80443"	"Repair the power transformer and set to work HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Feb-08	20-Apr-08	19085.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:27 PM	

+="CN80451"	"Arrestor System Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft environmental control systems and components"	11-Feb-08	30-Jun-08	16921.78	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:27 PM	

+="CN80453"	"Mounting Base, Electrical Equipment"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	10-Jan-08	26-Sep-08	16571.55	=""	="HELICOPTER SUPPORT INC"	12-May-08 04:28 PM	

+="CN80461"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUEL DEFENCE."	="Department of Defence"	12-May-08	="Fuels"	09-Jan-08	30-Jun-08	19800.00	=""	="PETROGAS"	12-May-08 04:28 PM	

+="CN80478"	"Trailer mounted Generator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	31-May-08	19508.50	=""	="GENERATOR POWER"	12-May-08 04:29 PM	

+="CN80529"	"1405 Simulator Design Issues investigation"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	07-Feb-08	03-Mar-08	18751.70	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:33 PM	

+="CN80535"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	05-Feb-09	16312.77	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:33 PM	

+="CN80539"	"RICOH SCANNERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	18652.59	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:34 PM	

+="CN80545"	"professional services"	="Department of Defence"	12-May-08	="Aircraft"	21-Dec-07	30-Jun-08	17186.40	=""	="JACOBS AUSTRALIA"	12-May-08 04:34 PM	

+="CN80572"	"Project Management"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	08-Aug-07	16300.00	=""	="Project Planning (ACT) Pty Ltd"	12-May-08 04:35 PM	

+="CN80573"	"Rectify Kedge Hydraulics"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	08-Feb-08	30-Jun-08	18157.93	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80574"	"4516.40 HMAS ARUNTA ASSESSMENT OF AVIATION SYSTEMS"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	18733.00	=""	="BEAK RAST ENGINEERING"	12-May-08 04:35 PM	

+="CN80584"	"Cable Assembly Set, Electrical 100AMP, 10 METRES"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	11-Apr-08	27-Jun-08	16896.00	="RFQ G8674"	="MIDLEC INDUSTRIES"	12-May-08 04:36 PM	

+="CN80590"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	17464.57	=""	="CERULEAN SOLUTIONS LTD"	12-May-08 04:36 PM	

+="CN80591"	"CONTRACT CONDITIONS:  The Product Support and Tech dated 28 July 1995.  Note in accordance with Inco"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Jan-08	25-Apr-08	17155.46	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	12-May-08 04:36 PM	

+="CN80603"	"Bathurst Island"	="Department of Defence"	12-May-08	="Electrical components"	07-Apr-08	07-May-08	19899.00	=""	="C-E SOLUTIONS"	12-May-08 04:37 PM	

+="CN80690"	"MIP Consultancy services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-08	18282.00	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 04:42 PM	

+="CN80698"	"pump"	="Department of Defence"	12-May-08	="Manufacturing support services"	07-Apr-08	30-Jun-08	16320.29	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80706"	"Security Works for Temp Fitout"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-Jun-08	19510.16	=""	="CHUBB SECURITY AUST PTY LTD"	12-May-08 04:42 PM	

+="CN80721"	"4516.29 HMAS WARRA 400Hz CONDITION ASSESSMENT AND PROVIDE OPENING AND CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	14-Mar-08	17882.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:43 PM	

+="CN80748"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	15-Feb-08	17797.36	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:45 PM	

+="CN80756"	"Project management support services covering 1/10/ pre-dmoss engagement"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	30-Jan-08	31-Mar-08	18998.50	=""	="APP CORPORATION PTY LTD"	12-May-08 04:45 PM	

+="CN80762"	"Interagency Travel"	="Department of Defence"	12-May-08	="Truck tractors"	03-Apr-08	30-May-08	18817.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:45 PM	

+="CN80764"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jul-08	19716.95	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:46 PM	

+="CN80774"	"INVESTIGATION TO IDENTIFY POSSIBLE OPTIONS FOR IMPROVEMENTS TO TASR AIR CONDITIONING"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-May-08	18489.42	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80776"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	29-Jun-08	18430.07	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:47 PM	

+="CN80784"	"Supply and Installation of Keywatcher"	="Department of Defence"	12-May-08	="Security and control equipment"	31-Jan-08	31-Mar-08	18191.80	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 04:47 PM	

+="CN80785"	"Use of Exisitng ASP Contract. Installation of Guar Rail round Trans Room hatch"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Dec-07	29-Feb-08	19981.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:47 PM	

+="CN80787"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	16500.00	=""	="AEROSPACE AUSTRALIA LTD"	12-May-08 04:47 PM	

+="CN80795"	"G2 ENGINE DIESEL ALLEN HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	22-Feb-08	29-Feb-08	19537.23	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80807"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	22-Feb-08	30-May-08	16495.51	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:48 PM	

+="CN80815"	"4516.22 CONDUCT 400HZ CONDITION ASSESSMENT ON HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	03-Mar-08	18394.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:48 PM	

+="CN80818"	"Provide independent advice on DMO financial report risk, control & compliance framework"	="Department of Defence"	12-May-08	="Management advisory services"	04-Apr-08	30-Jun-08	17792.50	=""	="JOHN MEERT"	12-May-08 04:48 PM	

+="CN80824"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	30-Jan-08	31-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:48 PM	

+="CN80832"	"PROMOTIONAL"	="Department of Defence"	12-May-08	="Utilities"	29-Jan-08	29-Jan-08	18500.00	=""	="MARITIME AUSTRALIA LIMITED"	12-May-08 04:49 PM	

+="CN80842"	"POC: Lloyd Magner Contact: 02 6266 9353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	16401.00	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 04:49 PM	

+="CN80858"	"Piston Control Lock"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	01-Mar-09	19884.79	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:50 PM	

+="CN80870"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	30-Aug-08	17085.91	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:51 PM	

+="CN80885"	"Use of Exisitng ASP Contract. repair sheave Block and reinstall"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	18-Dec-07	31-Jan-08	17729.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:51 PM	

+="CN80887"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	26-Feb-08	26-Feb-08	16191.68	=""	="KAZ GROUP PTY LTD"	12-May-08 04:51 PM	

+="CN80897"	"USN MOUNTS - NOT FITTED TO RIFLE"	="Department of Defence"	12-May-08	="Personal safety devices or weapons"	18-Dec-07	29-Feb-08	17875.00	=""	="XTEK PTY LTD"	12-May-08 04:52 PM	

+="CN80898"	"Brassard, DPCU, Wrap Around, Hok Pile Closure, But attachment"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	08-Apr-08	29-May-08	18451.18	=""	="SPEAR OF FAME PTY LTD"	12-May-08 04:52 PM	

+="CN80919"	"Project Coronis DRN/DSN Site Certification"	="Department of Defence"	12-May-08	="National Defence and Public Order and Security and Safety Services"	09-Apr-08	20-Jun-08	17000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:53 PM	

+="CN80925"	"Repair and Overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	29-Jan-08	30-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:53 PM	

+="CN80954"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	28-Feb-08	23-Jun-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:55 PM	

+="CN80962"	"AIRCRAFT SKIN"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	28-Feb-08	17-Dec-08	18353.99	=""	="NORTHROP GRUMMAN SYSTEMS CORPORATIO"	12-May-08 04:55 PM	

+="CN80963"	"ADAPTOR UNIT"	="Department of Defence"	12-May-08	="Aircraft equipment"	17-Dec-07	01-May-08	18637.39	=""	="KONGSBERG AUTOMOTIVE"	12-May-08 04:55 PM	

+="CN80978"	"THIS ORDER PLACED IAW CAPO C439169 'SUPPORT SERVIC"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	27-Feb-08	02-Jun-08	16095.59	=""	="RLM PTY LTD"	12-May-08 04:56 PM	

+="CN80996"	"Warden telephone support"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	07-Apr-08	28-Jun-08	17699.40	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 04:57 PM	

+="CN80999"	"TEMP ACCOMMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jun-08	19200.01	=""	="THE TRUSTEE FOR CARAS FLINDERS TRUS"	12-May-08 04:58 PM	

+="CN81009"	"Spacer,  Strap, Visor"	="Department of Defence"	12-May-08	="Personal safety and protection"	05-Feb-08	23-Jun-08	17500.42	=""	="TRANSAERO INC."	12-May-08 04:58 PM	

+="CN81015"	"MADE TO MEASURE ATTIRE"	="Department of Defence"	12-May-08	="Clothing"	18-Dec-07	31-Jan-08	17598.83	=""	="V & F TAILORING"	12-May-08 04:59 PM	

+="CN81020"	"Use of Exisitng ASP Contract - Sewage Treatment Plant"	="Department of Defence"	12-May-08	="Scrap and waste materials"	07-Apr-08	25-Apr-08	19653.16	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:59 PM	

+="CN81060"	"SIMPLE PROCUREMENT TRAINING. RFT CON (G) 222/2005. STANDING OFFER ID 19496. (13-14 MAR & 17-18 M"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	26-Feb-08	18-Mar-08	17600.00	=""	="DEAKINPRIME"	12-May-08 05:01 PM	

+="CN81095"	"Transportation of Seekers and EPUs"	="Department of Defence"	12-May-08	="Transportation components and systems"	26-Nov-07	30-Jan-08	16575.63	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:02 PM	

+="CN81099"	"MANUFACTURE AND SET TO WORK TASR SUM"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	19016.18	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81115"	"Flexible hose replacement - HMAS SYDNEY"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-Apr-08	19167.01	=""	="GLOBAL GMEC PTY LTD"	12-May-08 05:03 PM	

+="CN81125"	"Conference Facilities"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	19-Dec-07	28-Feb-08	18500.00	=""	="BERIDA MANOR"	12-May-08 05:04 PM	

+="CN81126"	"WiniFRED Support Fees 01 Jan 08 - 31 Mar 08"	="Department of Defence"	12-May-08	="Software"	04-Feb-08	31-Aug-08	19536.00	=""	="PCA NU SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81129"	"P4391-002 CNFC RETURN TO STANDARD HMAS WARRAMUNGA"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	31-Dec-07	16971.55	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81156"	"Repair and overhaul of F/A-18 LPT Rotor Compressor"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	19-Feb-08	30-May-08	19147.91	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:05 PM	

+="CN81170"	"Conductor Custom Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	01-Feb-08	07-Mar-08	19898.35	=""	="CAMBRIDGE TECHNOLOGIES"	12-May-08 05:06 PM	

+="CN81183"	"DEOP200 Part 2 Lifing Development"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Nov-07	20-Jun-08	18768.75	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:06 PM	

+="CN81185"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	11-Feb-08	18069.01	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 05:06 PM	

+="CN81210"	"TSWT model construction"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:07 PM	

+="CN81219"	"Star Safire test and evaluation"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	23-Nov-07	14-Dec-07	19138.68	=""	="CARTENAV SOLUTIONS INC"	12-May-08 05:08 PM	

+="CN81226"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	23-Jan-08	23-Jan-08	17225.23	=""	="KAZ GROUP PTY LTD"	12-May-08 05:08 PM	

+="CN81233"	"RENEW 70 TONNE CRANE FLEXIBLE HOSES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	20-Jun-08	16964.95	=""	="HYDRAULIC DISTRIBUTORS PTY LTD"	12-May-08 05:08 PM	

+="CN81240"	"part 4 task 102 purchase of jigs and fixtures"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	18-Feb-08	19-May-08	17545.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:09 PM	

+="CN81242"	"This order raised IAW E-mail quote from Jeff Rosem"	="Department of Defence"	12-May-08	="Rubber and elastomers"	24-Jan-08	06-Mar-08	16614.40	=""	="PHOENIX AG (AUSTRALIA) P/L"	12-May-08 05:09 PM	

+="CN81250"	"THIS PURCHASE ORDER IS RAISED TO PAY FOR FREIGHT I 4500613314"	="Department of Defence"	12-May-08	="Containers and storage"	24-Jan-08	24-Jan-08	16480.53	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:09 PM	

+="CN81291"	"STANDING ORDER FOR 2HSB: 2007/08"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	26-Nov-07	30-Jun-08	18883.96	=""	="BIOMERIEUX AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81300"	"F1-11 SIDE SEAL TOOLS DISPOSAL"	="Department of Defence"	12-May-08	="Aircraft equipment"	24-Nov-07	19-Dec-07	18625.88	=""	="TRELLEBORG SEALING SOLUTIONS"	12-May-08 05:11 PM	

+="CN81323"	"Parts Kit, valve"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	28-Jan-08	17591.21	=""	="ADAMS RITE AEROSPACE INC"	12-May-08 05:12 PM	

+="CN81325"	"Heat Exchanger, Air"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	02-Apr-08	18341.24	=""	="LCF SYSTEMS INC"	12-May-08 05:13 PM	

+="CN81330"	"PN 939195-102, Cap, Lower, Wing Rib BL65, RH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Aug-08	18359.88	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81376"	"modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	28-Nov-07	29-Feb-08	19572.91	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:15 PM	

+="CN81391"	"C4i Task Closeouts"	="Department of Defence"	12-May-08	="Electrical components"	28-Nov-07	05-Feb-08	16587.21	=""	="C4I PTY LTD"	12-May-08 05:16 PM	

+="CN81426"	"SUBSCRIPTION"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	25-Jan-08	31-Mar-08	17007.91	=""	="JEPPESEN SANDERSON INC"	12-May-08 05:18 PM	

+="CN81442"	"TS4182 SPONSORHOP OF DMO CADET NAVAL ARCHITECT"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	30-Jun-08	18000.00	=""	="AUSTRALIAN MARITIME COLLEGE"	12-May-08 05:19 PM	

+="CN81468"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Jan-08	31-Jan-08	17950.23	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:20 PM	

+="CN81481"	"TEAM BUILDING PROGRAM"	="Department of Defence"	12-May-08	="Human resource development"	24-Jan-08	30-Mar-08	18711.44	=""	="PILCHER PARTNERS PTY LTD"	12-May-08 05:21 PM	

+="CN81491"	"NIC MSD/Navy Data Upload"	="Department of Defence"	12-May-08	="Computer services"	24-Jan-08	22-Feb-08	18500.00	=""	="DIMENSION DATA LEARNING"	12-May-08 05:22 PM	

+="CN81503"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	01-Feb-08	18270.02	=""	="HARRIS TECHNOLOGY PTY LTD"	12-May-08 05:23 PM	

+="CN81511"	"WILLIAMTOWN RADAR MAINTENANCE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	25-Jan-08	28-Jan-08	19444.57	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:24 PM	

+="CN81538"	"Modification Fuel System - WLR"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	21-Apr-08	20-May-08	16599.00	=""	="AUSTRALIAN FUEL CELLS PTY LTD"	12-May-08 05:26 PM	

+="CN81541"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	13-Dec-07	20-Jan-08	17292.00	=""	="BENNETT COMMERCIAL ELECTRONICS"	12-May-08 05:26 PM	

+="CN81542"	"Provide Human Resources Investigating This PO Replaces 4500611384."	="Defence Materiel Organisation"	12-May-08	="Human resources services"	21-Apr-08	30-Jun-88	20000.00	=""	="CGF PHOENIX PTY LIMITED"	12-May-08 05:26 PM	

+="CN81544"	"DATABASE ROLLOUT"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Apr-08	20000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 05:27 PM	

+="CN81549"	"6 X Sharp Digital HD Tuners"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	13-Dec-07	21-Dec-07	18000.00	=""	="BING LEE - SKY GARDEN"	12-May-08 05:27 PM	

+="CN81552"	"Travel for 5th Aviation Brigade"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	21-Apr-08	30-Jun-08	17701.31	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:27 PM	

+="CN81556"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Apr-08	26-Sep-08	17916.41	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:27 PM	

+="CN81560"	"Technobox 100FX"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	18-Apr-08	24-Jun-08	18150.00	=""	="UNITRONIX PTY LTD"	12-May-08 05:28 PM	

+="CN81593"	"Water Purification Tablets"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	19-Apr-08	17-May-08	18607.05	=""	="WISCONSIN PHARMACAL COMPANY LLC"	12-May-08 05:30 PM	

+="CN81605"	"BATTERY PC1200"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	12-Dec-07	31-Dec-07	19602.00	=""	="METCALFE GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81608"	"Proposed modification of ELATS Stations"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	12-Dec-07	31-Jan-08	19777.01	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 05:32 PM	

+="CN81614"	"Printing and Material Costs for the RCS Maintenance Handbook"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	13-Dec-07	28-Feb-08	16065.50	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:32 PM	

+="CN81633"	"100 Acrobat 8 Professional Licences for DMO software pool"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Jan-08	18796.80	=""	="COMMANDER (ACT)"	12-May-08 05:35 PM	

+="CN81635"	"METER HYDROGEN ION TEST - QTY 25-"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Dec-07	17-Dec-07	18150.00	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 05:35 PM	

+="CN81644"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	01-Feb-08	17644.00	=""	="INTERACTIVE CABLING PTY LTD"	12-May-08 05:36 PM	

+="CN81693"	"LAMP MODULE, COVER TACTICAL ET AL"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	08-Dec-07	10-Apr-08	19024.48	=""	="LASER PRODUCTS"	12-May-08 05:43 PM	

+="CN81715"	"Repair and overhaul of F/A-18 HPC Module"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	07-Apr-08	16353.54	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:46 PM	

+="CN81726"	"DPNU Trial Uniforms"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	06-Dec-07	19-Dec-07	19831.66	=""	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 05:47 PM	

+="CN81738"	"FIXED TANK WASHING NOZZLES MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Dec-07	12-Dec-07	18625.20	=""	="SPRAYING SYSTEMS CO PTY LTD"	12-May-08 05:49 PM	

+="CN81770"	"Photocopier Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Office machines and their supplies and accessories"	07-Apr-08	07-Apr-08	17600.00	=""	="Fuji Xerox Aust. Pty Ltd - NSW"	12-May-08 07:34 PM	

+="CN81773"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Marketing and distribution"	20-Mar-08	20-Mar-08	19956.48	=""	="HMA Blaze"	12-May-08 07:34 PM	

+="CN81774"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	27-Feb-08	27-Feb-08	17000.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81788"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Engineering and Research and Technology Based Services"	15-Apr-08	15-Apr-08	17002.35	=""	="Open Mind Research Group Pty Ltd"	12-May-08 07:36 PM 

--- /dev/null
+++ b/admin/partialdata/08May2008to12May2008val30000to40000.xls
@@ -1,1 +1,666 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN73916"	"Software for Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	08-May-08	="Software"	01-Feb-08	01-Feb-11	39600.00	=""	="Lex Australia Pty Ltd"	08-May-08 08:53 AM	

+="CN74010"	"Develop rules for migration; thesaurus and administer international service standards for Core Business System"	="Austrade"	08-May-08	="Computer services"	03-Mar-08	30-Jun-08	33000.00	=""	="Information Solutions Pty Ltd"	08-May-08 12:28 PM	

+="CN74018"	"Tandberg Content Server - Recording Ports, Installation & Training"	="Austrade"	08-May-08	="Computer Equipment and Accessories"	19-Mar-08	20-Mar-08	36553.00	=""	="Integrated Vision Pty Ltd"	08-May-08 12:30 PM	

+="CN74054"	"Fleet Management and Leasing Services (REf Standing Offer ID 12383)"	="Family Court of Australia"	08-May-08	="Vehicle leasing"	02-May-08	01-May-10	31972.51	=""	="LeasePlan"	08-May-08 02:26 PM	

+="CN74057"	"Return to Australia posting travel for Major Peter Scullard and family"	="Defence Materiel Organisation"	08-May-08	="Travel facilitation"	30-Mar-08	30-Mar-08	31986.00	=""	="QANTAS AIRWAYS LIMITED"	08-May-08 02:34 PM	

+="CN74095"	"Traffic Charges and access fees"	="National Archives of Australia"	08-May-08	="Data services"	01-Oct-07	31-Dec-07	30349.00	=""	="AARNET"	08-May-08 04:02 PM	

+="CN74100"	"Cannon Digital Micrographic"	="National Archives of Australia"	08-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	34883.20	=""	="Sydney Micro Pty Ltd"	08-May-08 04:03 PM	

+="CN73959"	"Forensic IT services"	="Australian Securities and Investments Commission"	08-May-08	="Accounting services"	01-Apr-08	30-Jun-08	30000.00	=""	="Ernst & Young"	08-May-08 04:11 PM	

+="CN74065"	"Newspapers"	="Australian Securities and Investments Commission"	08-May-08	="Printed media"	01-Jan-08	31-Dec-08	35000.00	=""	="Fairfax Media"	08-May-08 04:13 PM	

+="CN74117"	" TURBINE COMPRESSOR - REPAIR EXTERNAL (RIM)  NSN - 1660/661022102 "	="Defence Materiel Organisation"	08-May-08	="Military transport aircraft"	18-Mar-08	30-Apr-08	32397.71	=""	="QANTAS AIRWAYS LTD"	08-May-08 04:20 PM	

+="CN74041"	"Counsel Fees"	="Australian Securities and Investments Commission"	08-May-08	="Legal services"	15-Nov-07	30-Jun-08	30000.00	=""	="Mr Alan MacSporran"	08-May-08 04:21 PM	

+="CN74147"	"Class B filing cabinets"	="National Health and Medical Research Council"	09-May-08	="Office Equipment and Accessories and Supplies"	21-Aug-07	28-Apr-08	38479.20	=""	="PLANEX SALES PTY. LTD."	09-May-08 08:37 AM	

+="CN74153"	" REPAIR ORDER PROPELLER, AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	25-Jan-08	30905.58	=""	="SAFE AIR LTD"	09-May-08 08:56 AM	

+="CN74155"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	09-May-08	="Medical health associations"	05-May-08	04-Jun-08	35463.10	=""	="SYMBION PHARMACY SERVICES"	09-May-08 09:02 AM	

+="CN74156"	" REPAIR ORDER PROPELLER AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	25-Jan-08	30905.58	=""	="SAFE AIR LTD"	09-May-08 09:12 AM	

+="CN74157"	" REPAIR ORDER PROPELLER, AIRCRAFT  NSN - 1610/008468332 "	="Defence Materiel Organisation"	09-May-08	="Military transport aircraft"	27-Sep-07	26-Dec-07	30905.58	=""	="SAFE AIR LTD"	09-May-08 09:15 AM	

+="CN74161"	"SUBSCRIPTIONS MARCH 2008"	="Administrative Appeals Tribunal"	09-May-08	="Printed media"	03-Mar-08	31-Mar-09	30439.85	=""	="THOMSON LEGAL & REGULATORY"	09-May-08 09:29 AM	

+="CN74207"	"Supply of Power Supply Protection equipment"	="Department of Parliamentary Services"	09-May-08	="Uninterruptible power supplies"	02-May-08	30-May-08	31108.00	=""	="MGE-UPS Sytems Australia P/L"	09-May-08 11:20 AM	

+="CN74270"	"BARTLEYBLAKELEESLATER TKT: 08147026442510 R/N: Not Supplied EMIRATES ONO: 332281-21300 GWT: 0828-15040 - HAMISH AND ANDY TO AFGHANISTAN"	="Department of Defence"	09-May-08	="Aircraft"	16-Apr-08	16-Apr-08	31397.96	=""	="QANTAS AIRWAYS LIMITED"	09-May-08 11:51 AM	

+="CN74308"	"Print Production AAP 2002.001(AM1) Issue 1 x 466 copies (Variance of $180.00 + gst from previous approval - 2 additional proofs required due to authors corrections)"	="Department of Defence"	09-May-08	="Published Products"	28-Mar-08	28-Mar-08	30393.00	=""	="SNAP PRINTING LAVE"	09-May-08 11:56 AM	

+="CN74335"	"Health Costs"	="Department of Defence"	09-May-08	="Patient care and treatment products and supplies"	04-Apr-08	04-May-08	39450.00	=""	="ST JOHN OF GOD SU"	09-May-08 12:00 PM	

+="CN74411"	"Training & Education Costs"	="Department of Finance and Deregulation"	09-May-08	="Education and Training Services"	09-May-08	04-Jul-08	34000.00	=""	="THE LEADERSHIP CONSORTIUM"	09-May-08 02:25 PM	

+="CN74420-A1"	"Contract for the provisioin of Information Technology Services - Solution Architect"	="Australian Securities and Investments Commission"	09-May-08	="Information technology consultation services"	17-Apr-08	03-Jul-08	38016.00	=""	="Taylor Solutions Pty Ltd"	09-May-08 02:43 PM	

+="CN74437"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	06-Mar-08	06-Mar-08	35147.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 03:39 PM	

+="CN74439"	"Universal pulse generator"	="Department of Defence"	09-May-08	="Manufacturing Components and Supplies"	06-Mar-08	16-Apr-08	36092.10	=""	="NUCLETRON PTY LTD"	09-May-08 03:40 PM	

+="CN74442"	"3 x QUAD MOTORCYCLES - ROBERTSON BARRACKS RANGE CONTROL"	="Department of Defence"	09-May-08	="Motorised cycles"	06-Mar-08	30-Jun-08	36630.00	=""	="R & M MOTORCYCLES"	09-May-08 03:40 PM	

+="CN74445"	"COMPUTER EQUIPMENT"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	07-Mar-08	07-Mar-08	37549.33	=""	="HEWLETT PACKARD AUSTRALIA LTD"	09-May-08 03:41 PM	

+="CN74458"	"Provision of clerical & admin support to DEWSAR Developmenty Team"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	06-Mar-08	30-May-08	33000.00	=""	="DAINTREE SYSTEMS PTY LTD"	09-May-08 03:43 PM	

+="CN74494"	"Stockhorses and Transport from Cairns to Darwin NORFORCE"	="Department of Defence"	09-May-08	="Live Plant and Animal Material and Accessories and Supplies"	05-Mar-08	16-Mar-08	37620.00	=""	="BLAZING SADDLES"	09-May-08 03:49 PM	

+="CN74512"	"BUSINESS SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	30582.50	=""	="BAYLEY AND ASSOCIATES PTY LTD"	09-May-08 03:50 PM	

+="CN74514"	"OFFICE FUNRITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	18-Mar-08	14-Apr-08	37416.50	=""	="SWANBRITE PTY LTD"	09-May-08 03:50 PM	

+="CN74521"	"SME Deployable Communication Equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	05-Mar-08	26-May-08	39184.20	=""	="EYLEX PTY LTD"	09-May-08 03:50 PM	

+="CN74542"	"ADVERTISING"	="Department of Defence"	09-May-08	="Advertising"	05-Mar-08	31-Oct-08	33440.64	=""	="HMA BLAZE PTY LTD"	09-May-08 03:51 PM	

+="CN74545"	"TELSTRA VIDCON LINE FEES"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	05-Mar-08	38500.00	=""	="TELSTRA CORPORATION (ACCOUNTS)"	09-May-08 03:51 PM	

+="CN74547"	"FRUIT AND VEGETABLES FOR RATIONS"	="Department of Defence"	09-May-08	="Fruits and vegetables and nuts and seeds"	18-Mar-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	09-May-08 03:51 PM	

+="CN74559"	"Contact: Peter Davey 02 6266 9212"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	08-Apr-08	37555.43	=""	="TENIX DATAGATE PTY LTD"	09-May-08 03:52 PM	

+="CN74571"	"DISK SHELF"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	20-Mar-08	30-Apr-08	38527.50	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	09-May-08 03:53 PM	

+="CN74584"	"TRAINING PROGRAM HYDROLOGISTS"	="Bureau of Meteorology"	09-May-08	="Education and Training Services"	08-May-08	08-May-08	30000.00	=""	="SINCLAIR KNIGHT MERZ"	09-May-08 03:53 PM	

+="CN74589"	"Disdrometer"	="Bureau of Meteorology"	09-May-08	="Measuring and observing and testing instruments"	08-May-08	16-Jun-08	34206.06	=""	="DISTROMET LTD"	09-May-08 03:53 PM	

+="CN74612"	"FURNITURE FOR SGT VIP ACCOMMODATION ROBERTSON BARRACKS"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	06-Mar-08	30-Jun-08	32156.30	=""	="JAPE FURNISHING SUPERSTORE"	09-May-08 03:55 PM	

+="CN74615"	"ACMS JUNIOR DEVELOPER SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	39560.40	=""	="FOURAY PTY LTD"	09-May-08 03:55 PM	

+="CN74619"	"Ricoh secure Facsimile"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	31-Mar-08	39270.00	=""	="RICOH AUSTRALIA"	09-May-08 03:55 PM	

+="CN74636"	"NQ2081 - RAAF TOWNSVILLE BLD 291 COMMS CABINET CON"	="Department of Defence"	09-May-08	="Industrial optics"	11-Mar-08	30-Jun-08	33642.79	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	09-May-08 03:57 PM	

+="CN74641"	"SOFTWARE LICENCE"	="Department of Defence"	09-May-08	="Software"	25-Mar-08	12-Apr-08	30553.60	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	09-May-08 03:58 PM	

+="CN74662"	"POSTERS"	="Department of Defence"	09-May-08	="Paper Materials and Products"	11-Mar-08	30-Mar-08	33220.00	=""	="BLACKWELL MOUNTING & FRAMING"	09-May-08 04:00 PM	

+="CN74666"	"Calibrated & embedded measurements"	="Department of Defence"	09-May-08	="Measuring and observing and testing instruments"	11-Mar-08	30-Apr-08	31375.21	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	09-May-08 04:00 PM	

+="CN74672"	"Lexmark A4 Mono Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Mar-08	25-Mar-08	31350.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:00 PM	

+="CN74673"	"Switches and Converters"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	20-Mar-08	08-Apr-08	31456.25	=""	="ASI SOLUTIONS"	09-May-08 04:00 PM	

+="CN74677"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	20-Mar-08	01-Jul-08	32600.00	=""	="COMCARE"	09-May-08 04:01 PM	

+="CN74695"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	19-Mar-08	30-Jun-09	39710.00	=""	="CONNELL WAGNER PTY LTD"	09-May-08 04:02 PM	

+="CN74713"	"Aircraft Technical Support"	="Department of Defence"	09-May-08	="Aircraft equipment"	11-Mar-08	30-Jun-08	34129.15	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	09-May-08 04:03 PM	

+="CN74716"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	01-Jul-08	38813.89	=""	="MINTER ELLISON"	09-May-08 04:03 PM	

+="CN74754"	"PROMOTIONAL PRODUCTS"	="Department of Defence"	09-May-08	="Sales and business promotion activities"	20-Mar-08	14-May-08	38278.79	=""	="RANCCF SALT SHOP"	09-May-08 04:07 PM	

+="CN74777"	"VENUE HIRE"	="Department of Defence"	09-May-08	="Hotels and lodging and meeting facilities"	11-Mar-08	30-Jun-08	33000.00	=""	="CLIFTONS OPERATIONS PTY LTD"	09-May-08 04:09 PM	

+="CN74788"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	30-Apr-08	36095.04	=""	="BOEING AUSTRALIA LIMITED"	09-May-08 04:09 PM	

+="CN74812"	"Multimode fibre cables and Media converters"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	13-Mar-08	31-Mar-08	33253.66	=""	="OPTICAL SOLUTIONS AUSTRALIA (ACT)"	09-May-08 04:11 PM	

+="CN74813"	"VEHICLE LEASE"	="Department of Defence"	09-May-08	="Motor vehicles"	11-Mar-08	30-Jun-08	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	09-May-08 04:11 PM	

+="CN74832"	"Mechanical Trades Person"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	31779.00	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	09-May-08 04:12 PM	

+="CN74840"	"Mechanical Trades Person"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	31015.60	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	09-May-08 04:13 PM	

+="CN74843"	"S5267, WR 300074261 - Pymble, WR 300074262 - Suthe Lancer. SC Region - Installation of rainwater tan"	="Department of Defence"	09-May-08	="Environmental control systems"	13-Mar-08	30-Jun-08	38115.38	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:13 PM	

+="CN74857"	"UNIQUE ONE-OFF PAYMENT FOR 3 YEARS MAINTENANCE OF DELL EQUIPMENT ISO DCC SUPPORT CONTRACT"	="Department of Defence"	09-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Mar-08	31-Mar-08	33000.00	=""	="AVAYA AUSTRALIA PTY LTD"	09-May-08 04:14 PM	

+="CN74860"	"POC: Geoffrey Abbott Contact: 02 6266 5774"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	14-Apr-08	38563.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	09-May-08 04:14 PM	

+="CN74863"	"VARIOUS FOOD ITEMS"	="Department of Defence"	09-May-08	="Packaged combination meals"	13-Mar-08	28-Mar-08	30411.38	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	09-May-08 04:14 PM	

+="CN74865"	"ACCOMMODATION"	="Department of Defence"	09-May-08	="Travel and Food and Lodging and Entertainment Services"	13-Mar-08	31-May-08	39600.00	=""	="CANBERRA REX HOTEL"	09-May-08 04:14 PM	

+="CN74885"	"SUPPLY AND INSTALL COMPACTUS TO CLOTHING STORE 2700X9000MM 3 BAY"	="Department of Defence"	09-May-08	="Containers and storage"	13-Mar-08	30-Jun-08	32978.00	=""	="DEXION NORTH QUEENSLAND"	09-May-08 04:15 PM	

+="CN74893"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	03-Mar-08	04-Aug-08	33138.00	=""	="PHILLIPS FOX SYDNEY"	09-May-08 04:16 PM	

+="CN74906"	"PUBLICATIONS"	="Department of Defence"	09-May-08	="Paper products"	12-Mar-08	30-Jun-08	31142.10	=""	="PIRION DIGITAL PTY LTD"	09-May-08 04:17 PM	

+="CN74913"	"RAAF RICHMOND REINVESTMENT PROJECT. LANDSCAPING WORK FOR TANKER PARKING AREA."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	03-Mar-08	30-Jun-08	35178.00	=""	="EMAVALE PTY LTD"	09-May-08 04:17 PM	

+="CN74915"	"TRAINING"	="Department of Defence"	09-May-08	="Education and Training Services"	03-Mar-08	31-Mar-08	31980.00	=""	="SAI GLOBAL LTD"	09-May-08 04:17 PM	

+="CN74916"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	25-Mar-08	31350.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:18 PM	

+="CN74925"	"Office supplies"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	32778.90	=""	="SUN MICROSYSTEMS"	09-May-08 04:18 PM	

+="CN74929"	"LEASE PAYMENTS"	="Department of Defence"	09-May-08	="Motor vehicles"	12-Mar-08	30-Jun-10	34638.90	=""	="LEASEPLAN AUSTRALIA LTD"	09-May-08 04:18 PM	

+="CN74932"	"OFFICE FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	03-Mar-08	17-Mar-08	32793.19	=""	="INTERWORX PTY LTD"	09-May-08 04:19 PM	

+="CN74941"	"DRN/DSN CABLING"	="Department of Defence"	09-May-08	="Electrical wire and cable and harness"	12-Mar-08	30-Jun-08	33110.00	=""	="STOWE AUSTRALIA"	09-May-08 04:19 PM	

+="CN74944"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	30128.74	=""	="TOLL PRIORITY"	09-May-08 04:19 PM	

+="CN74956"	"Planned Preventative Service Programme for LEO FESEM and Oxford Inca System"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	29-Feb-08	29-Feb-08	31185.00	=""	="CARL ZEISS SYDNEY"	09-May-08 04:20 PM	

+="CN74957"	"BTT Task - ILS Professional Labour - 13 March 2008 up to and including 6 June"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	12-Mar-08	06-Jun-08	37225.00	=""	="DEAKIN UNI"	09-May-08 04:20 PM	

+="CN74967"	"POINT PERPENDICULAR LIGHTHOUSE RESTORATION PHASE ("	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	35596.00	=""	="ARCHITECTS EDMISTON JONES"	09-May-08 04:21 PM	

+="CN74969"	"POINT PERPENDICULAR LIGHTHOUSE RESTORATION PHASE ("	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	12-Mar-08	30-Jun-08	36784.00	=""	="ARCHITECTS EDMISTON JONES"	09-May-08 04:21 PM	

+="CN74997"	"POC:PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	09-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	39196.86	=""	="BOEING AUSTRALIA LTD"	09-May-08 04:23 PM	

+="CN75008"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Apr-08	35679.00	=""	="MAC A&C PTY LTD"	09-May-08 04:23 PM	

+="CN75030"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	09-May-08	="Legal services"	29-Feb-08	31-Dec-08	32818.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	09-May-08 04:25 PM	

+="CN75034"	"THE SUPPORT FOR THE OLD SOFTWARE IS BEING PHASED OUT."	="Department of Defence"	09-May-08	="Locks and security hardware and accessories"	29-Feb-08	01-May-08	30210.00	=""	="CIC SECURE PTY LTD"	09-May-08 04:25 PM	

+="CN75038"	"Site Integration Services"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	29-Feb-08	05-Jun-08	31291.80	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	09-May-08 04:25 PM	

+="CN75044"	"MAYTAG WASHING MACHINES"	="Department of Defence"	09-May-08	="Cleaning Equipment and Supplies"	04-Mar-08	01-Apr-08	35842.38	=""	="RICHARD JAY LAUNDRY EQUIPMENT PTY L"	09-May-08 04:26 PM	

+="CN75045"	"Software Upgrade"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	17-Mar-08	31-Mar-08	30204.90	=""	="ACTIVE VOICE LLC"	09-May-08 04:26 PM	

+="CN75048"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Mar-08	38802.71	=""	="ASI SOLUTIONS"	09-May-08 04:26 PM	

+="CN75056"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	31-Jul-08	33862.00	=""	="QUALITY MANAGEMENT SOLUTIONS"	09-May-08 04:26 PM	

+="CN75064"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Mar-08	35053.92	=""	="BLANCHARD PERFORMANCE MANAGEMENT"	09-May-08 04:27 PM	

+="CN75102"	"INSTALL PIPE UP ONE CORNER OF 10 STOREY FIRING POI"	="Department of Defence"	09-May-08	="Building and Construction Machinery and Accessories"	05-Mar-08	30-Jun-08	40000.00	=""	="MULTITECH ENGINEERING"	09-May-08 04:30 PM	

+="CN75113"	"GRAD DEV PROGRAM TRG"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	32930.37	=""	="MAJOR TRAINING SERVICES PTY LTD"	09-May-08 04:31 PM	

+="CN75130"	"S5231, WR Rockdale - 300074194, Banksmeadow - 3000 300074196. Consultancy to determine requirements"	="Department of Defence"	09-May-08	="Environmental control systems"	14-Mar-08	30-Jun-08	38115.38	=""	="DEFENCE MAINTENANCE MANAGEMENT"	09-May-08 04:32 PM	

+="CN75155"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	03-Mar-08	18-Mar-08	35078.74	=""	="ASI SOLUTIONS"	09-May-08 04:33 PM	

+="CN75157"	"PSP SERVICES 02 62650232"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-Jun-08	38718.90	=""	="REMOTE PTY LTD"	09-May-08 04:33 PM	

+="CN75161"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	20-Feb-09	33000.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	09-May-08 04:34 PM	

+="CN75169"	"Professional Services"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	04-Mar-08	30-May-08	39706.48	=""	="ARTHUR CARDRICK (FARNBOROUGH) LTD"	09-May-08 04:34 PM	

+="CN75171"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	32680.00	=""	="JACOBS AUSTRALIA"	09-May-08 04:34 PM	

+="CN75180"	"VENDOR HAS INVOICED DFR LATE FOR WORK CARRIEED OUT YEAR. EXISTING P/O WBS HAS EXPIRED - APPROVED TO"	="Department of Defence"	09-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	30-Jun-08	32066.36	=""	="GEORGE PATTERSON Y & R"	09-May-08 04:35 PM	

+="CN75188"	"6 x Hallam Cabinets - ICT"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	14-Mar-08	30-Jun-08	34001.96	=""	="MM ELECTRICAL MERCHANDING"	09-May-08 04:36 PM	

+="CN75202"	"Scanners"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	04-Mar-08	18-Mar-08	31951.10	=""	="CORPORATE EXPRESS AUSTRALIA"	09-May-08 04:37 PM	

+="CN75232"	"UPDATE AMBERLEY BASE PLAN INCLUDING GSS GROUNDS MAINTENANCE OVERLAYS"	="Department of Defence"	09-May-08	="Business and corporate management consultation services"	04-Mar-08	30-Jun-08	34980.00	=""	="SKM"	09-May-08 04:39 PM	

+="CN75240"	"DISPOSAL OF GUNGHALIN ACT-SITE AUDITOR."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	04-Mar-08	30-Jun-08	34012.00	=""	="GHD PTY LTD"	09-May-08 04:40 PM	

+="CN75269"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	09-May-08	="Paper Materials and Products"	18-Mar-08	16-Apr-08	32657.63	=""	="GLAMA PAK PTY LTD"	09-May-08 04:42 PM	

+="CN75285"	"Labour Hire - 4th quarter"	="Department of Defence"	09-May-08	="Manufacturing support services"	18-Mar-08	30-Jun-08	39000.01	=""	="MANPOWER SERVICES (AUST) PTY LTD"	09-May-08 04:43 PM	

+="CN75302"	"SUPPORT FINANCE EVALUATION OF RFT"	="Department of Defence"	09-May-08	="Laboratory and scientific equipment"	13-Feb-08	16-Nov-08	32960.40	=""	="GROSVENOR MANAGEMENT CONSULTING"	09-May-08 04:44 PM	

+="CN75305"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	18-Mar-08	05-May-08	35767.88	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	09-May-08 04:44 PM	

+="CN75315"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	09-May-08	="Paper Materials and Products"	18-Mar-08	22-Apr-08	34688.50	=""	="CENTRE STATE PRINTING"	09-May-08 04:44 PM	

+="CN75326"	"shelving"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	18-Mar-08	18-Apr-08	35645.50	=""	="CAM SHELVING OFFICE INTERIORS"	09-May-08 04:45 PM	

+="CN75329"	"Printers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	11-Feb-08	03-Mar-08	36212.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	09-May-08 04:46 PM	

+="CN75330"	"GYM EQUIPMENT"	="Department of Defence"	09-May-08	="Gymnastics and boxing equipment"	19-Mar-08	05-May-08	30046.50	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	09-May-08 04:46 PM	

+="CN75332"	"Cisco equipment"	="Department of Defence"	09-May-08	="Communications Devices and Accessories"	18-Mar-08	25-Mar-08	33894.12	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	09-May-08 04:46 PM	

+="CN75334"	"AERONAUTICAL ENGINEER"	="Department of Defence"	09-May-08	="Office Equipment and Accessories and Supplies"	18-Mar-08	30-Jun-08	33000.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	09-May-08 04:46 PM	

+="CN75348"	"Contract: File 2008-1020636 refers"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	18-Mar-08	30-Jun-08	38500.00	=""	="AEROSPACE CONCEPTS PTY LTD"	09-May-08 04:47 PM	

+="CN75355"	"FURNITURE"	="Department of Defence"	09-May-08	="Furniture and Furnishings"	11-Feb-08	30-Jun-08	30600.31	=""	="IN RENT"	09-May-08 04:47 PM	

+="CN75361"	"MOVEMENT OF CONTROLLED WASTE NATIONAL ENVIRONMENTA INVESTIGATIONS."	="Department of Defence"	09-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	31240.00	=""	="ENSR AUSTRALIA PTY LIMITED"	09-May-08 04:48 PM	

+="CN75363"	"PROFESSIONAL SERVICES"	="Department of Defence"	09-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	11-Feb-08	30000.00	=""	="CAPITAL RECRUITMENT SERVICES"	09-May-08 04:48 PM	

+="CN75394"	"C6 MULTI SENSOR PLATFORM"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Feb-08	17-Mar-08	30701.00	=""	="AQUALAB SCIENTIFIC PTY LTD"	09-May-08 04:50 PM	

+="CN75396"	"labour hire"	="Department of Defence"	09-May-08	="Manufacturing support services"	11-Feb-08	30-Jun-08	35200.00	=""	="DRAKE INTERNATIONAL"	09-May-08 04:50 PM	

+="CN75403"	"This Contract is placed under the Terms and Condit 4500509192"	="Department of Defence"	09-May-08	="Engineering and Research and Technology Based Services"	17-Mar-08	30-Jun-08	36298.90	=""	="NGA.NET PTY LTD"	09-May-08 04:51 PM	

+="CN75412"	"dsto equipment"	="Department of Defence"	09-May-08	="Aircraft"	11-Feb-08	01-Mar-08	36087.04	=""	="SUNDANCE ASIA LTD"	09-May-08 04:51 PM	

+="CN75425"	"ACOUSTICS DETECTION TRIAL - ST LEONRDS VIC AUV"	="Department of Defence"	09-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	15-Feb-08	29-Feb-08	38183.20	=""	="AEROSONDE PTY LTD"	09-May-08 04:52 PM	

+="CN75439"	"Desktop Computers"	="Department of Defence"	09-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	38407.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	09-May-08 04:54 PM	

+="CN75463"	"UB-5815 2 screen electronic whiteboard for different locations across Australia"	="Department of Defence"	09-May-08	="Audio and visual presentation and composing equipment"	15-Feb-08	30-Jun-08	34512.10	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	09-May-08 04:56 PM	

+="CN75481"	"TESTER/DEVELOPER CBLP FOR TTC-D SYDNEY"	="Department of Defence"	09-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	37125.00	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	09-May-08 04:58 PM	

+="CN75508"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	31152.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:34 AM	

+="CN75514"	"Install DSN Desktop Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	17-Mar-08	32307.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 08:35 AM	

+="CN75528"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	01-Jun-08	34000.00	=""	="SIRSIDYNIX PTY LTD"	10-May-08 08:36 AM	

+="CN75546"	"STK/INTEGRATION RENEWAL ANNULA SUPPORT - DONGLE STK PROFESSIONAL EDITION RENEWAL ANNUAL SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	22-Feb-08	30936.40	=""	="AUSPACE LIMITED"	10-May-08 08:38 AM	

+="CN75568"	"CONTRACT NO: CSI-SC06/2005 MEAT RATIONS"	="Department of Defence"	10-May-08	="Meat and poultry"	06-Feb-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	10-May-08 08:40 AM	

+="CN75571"	"CONTRACT NO: CSI-SC05/2005 FRUITS AND VEGETABLES RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	06-Feb-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	10-May-08 08:41 AM	

+="CN75586"	"COMPLEX PROCUREMENT TRAINING-IAD BRANCH."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	33308.00	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 08:42 AM	

+="CN75589"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	31650.00	=""	="CLAYTON UTZ"	10-May-08 08:42 AM	

+="CN75598"	"Allowances for trainers"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Feb-08	15-Feb-08	37458.40	=""	="THE UNITED KINGDOM HYDROGRAPHIC OFF"	10-May-08 08:43 AM	

+="CN75599"	"Software Maintenance"	="Department of Defence"	10-May-08	="Software"	04-Feb-08	15-Feb-08	31680.00	=""	="OPEN SYSTEMS PTY LTD"	10-May-08 08:43 AM	

+="CN75610"	"Computer Products"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	32214.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 08:45 AM	

+="CN75613"	"VTC CAPABILITY IS REQUIRED TO SUSTAIN THE DEAKIN VNOC HELPDESK & CONCIERGE SERVICES IAW THE DSVE"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	05-Feb-08	30-Apr-08	34369.31	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 08:45 AM	

+="CN75635"	"POSTGRADUATE SCHOLARSHIP RESEARCH AGREEMENT IN CONJUNCTION WITH pROF. LAKHMI"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Feb-08	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	10-May-08 08:47 AM	

+="CN75640"	"Office supplies"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	29-Feb-08	36367.10	=""	="ASI SOLUTIONS"	10-May-08 08:47 AM	

+="CN75651"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	08-Feb-08	35666.40	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:48 AM	

+="CN75658"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	33000.00	=""	="ROUNA MACNIVEN"	10-May-08 08:49 AM	

+="CN75680"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	25-Feb-08	31372.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:51 AM	

+="CN75682"	"NQ2081 - HSPO Comms Room - Kenny Street High Secur"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	30-Jun-08	34089.00	=""	="CHUBB ELECTRONIC SECURITY"	10-May-08 08:52 AM	

+="CN75685"	"HACTS Accreditation - Phase 1 Scoping for 78/81WG"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	07-Feb-08	30-Jun-08	37136.40	=""	="MILSKIL PTY LTD"	10-May-08 08:52 AM	

+="CN75707"	"CUSTOM 17" NOTEBOOK BUNDLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	07-Mar-08	31702.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:54 AM	

+="CN75709"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	07-Feb-08	29-Feb-08	37092.07	=""	="SLEEP CITY PENRITH"	10-May-08 08:54 AM	

+="CN75711"	"sra groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	07-Feb-08	30-Jun-08	33000.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 08:54 AM	

+="CN75753"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	25-Feb-08	30-Jun-08	34210.00	=""	="DUPLICATE - USE V ENDOR 1050211"	10-May-08 08:58 AM	

+="CN75759"	"PSAV WORKS A10 CABARLAH"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	25-Feb-08	30-Jun-08	30653.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75760"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	31-Mar-08	32763.17	=""	="IDP EDUCATION AUSTRALIA"	10-May-08 08:59 AM	

+="CN75776"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	07-Mar-08	33440.00	=""	="S-3 CONSULTING PTY LTD"	10-May-08 09:01 AM	

+="CN75785"	"DATE LEARNING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	33660.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 09:02 AM	

+="CN75791"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	06-Mar-08	30000.01	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 09:02 AM	

+="CN75792"	"NAVY CHARTS X 25"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Feb-08	26-Mar-08	31958.30	=""	="GLAMA PAK PTY LTD"	10-May-08 09:02 AM	

+="CN75794"	"Training Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	30-Apr-08	37139.26	=""	="COMPUTING SERVICES"	10-May-08 09:02 AM	

+="CN75809"	"PSP Contractor - Trg Coord"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	33770.25	=""	="HAYS PERSONNEL SERVICES"	10-May-08 09:04 AM	

+="CN75811"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	34543.47	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:04 AM	

+="CN75814"	"ASI Engineering Sevices"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	32346.16	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75824"	"FBT INTERIM REVIEW"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	15-Jun-08	38247.00	=""	="ERNST & YOUNG CONSULTING"	10-May-08 09:05 AM	

+="CN75835"	"NDT Engineering"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	37180.25	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:06 AM	

+="CN75836"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	36519.38	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:06 AM	

+="CN75873"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	34186.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:10 AM	

+="CN75876"	"UPGRADE ARCVIEW LICENCES"	="Department of Defence"	10-May-08	="Software"	28-Feb-08	20-Mar-08	37576.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:10 AM	

+="CN75891"	"GROCERIES"	="Department of Defence"	10-May-08	="Meat and poultry products"	26-Feb-08	31-Mar-08	35753.60	=""	="BID VEST BURLEIGH MARR"	10-May-08 09:12 AM	

+="CN75897"	"ONLINE TRAINING DEVELOPMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	16-Jun-08	35005.00	=""	="CATALYST INTERACTIVE"	10-May-08 09:12 AM	

+="CN75902"	"NQ2085 - Frontline Canteen Refurbishment (Building"	="Department of Defence"	10-May-08	="Project management"	26-Feb-08	30-Jun-08	31680.00	=""	="JON KUSKOPF & ASSOCIATES PTY LTD"	10-May-08 09:13 AM	

+="CN75903"	"SN02586 - RMC & HARMAN -Provision of Voice Cabling between SSDS Buildings"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	35000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:13 AM	

+="CN75926"	"COMPLEX PROCUREMENT COURSE"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	30-May-08	31733.21	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:15 AM	

+="CN75940"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	36646.83	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:17 AM	

+="CN75941"	"PROCUREMENT REFERENCE: 1018/07-08 KOBRA HIGH VOLUME INDUSTRIAL SHREDDER"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	18-Feb-08	07-Mar-08	32015.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 09:17 AM	

+="CN75951"	"SPECTRAA - 55B ATOMIC ABSORPTION SPECTRO METER STAND ALONE SYSTEM"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Feb-08	18-Apr-08	33078.10	=""	="VARIAN AUSTRALIA PTY LTD"	10-May-08 09:18 AM	

+="CN75952"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	29-Feb-08	31064.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 09:18 AM	

+="CN75958"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-Jun-08	36484.61	=""	="BOEING AUSTRALIA LTD"	10-May-08 09:18 AM	

+="CN75981"	"Dell Poweredge server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	07-Mar-08	30798.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:20 AM	

+="CN75997"	"Manufacture housing"	="Department of Defence"	10-May-08	="Fabricated structural assemblies"	16-Nov-07	02-Jan-08	30214.80	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 09:58 AM	

+="CN76012"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	39751.00	=""	="MINTER ELLISON"	10-May-08 09:59 AM	

+="CN76027"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76031"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	31659.10	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76035"	"Web Development Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	30-Aug-08	30744.65	=""	="INFOFOCUS AUSTRALIA"	10-May-08 10:00 AM	

+="CN76057"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Mar-08	38255.80	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:02 AM	

+="CN76066"	"Complex Procurement 0708-187 under Standing Service Category:Level 2,  Aeronautical Engineer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-Nov-07	30-Jun-08	32972.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:02 AM	

+="CN76067"	"FP&E Related Latent Conditions Western Region"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	17-Jan-08	30-Jun-08	33301.51	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76074"	"IP GATEWAY ALLOWS FOR THE DSVE TO INTERCONNECT TO IP & ISDN VIDEO CONFERENCES."	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	21-Nov-07	30-Jun-08	37715.44	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76077"	"Develop and Certify DSTO IT Security Architecture for SCIS"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	26-Jun-08	34100.00	=""	="KAZ GROUP PTY LTD"	10-May-08 10:03 AM	

+="CN76078"	"HIRE OF DEMOUNTABLE BUILDING IN SUPPORT OF RTF4 (O BASE GALLIPOLI BARRACKS ENOGGERA, DEC 07 - APR 08"	="Department of Defence"	10-May-08	="Prefabricated structures"	21-Nov-07	01-Apr-08	37451.96	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:03 AM	

+="CN76112"	"ENHANCED LANDFORCE-STAGE 1 MCGRATH NICOL"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	26-Nov-07	30-Jun-08	38500.00	=""	="MCGRATH NICOL"	10-May-08 10:05 AM	

+="CN76133"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Apr-08	30-Dec-08	33000.00	=""	="LACEY PERSONNEL CONSULTING"	10-May-08 10:06 AM	

+="CN76140"	"CONTACT: S. CAUSER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	02-Jan-08	31213.57	=""	="SUN MICROSYSTEMS"	10-May-08 10:06 AM	

+="CN76143"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	31968.20	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:06 AM	

+="CN76165"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	30-Jun-08	39560.50	=""	="MINTER ELLISON"	10-May-08 10:07 AM	

+="CN76167"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Nov-07	34748.93	=""	="SUN MICROSYSTEMS AUST PTY LTD"	10-May-08 10:08 AM	

+="CN76179"	"TABLES"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jun-08	30272.00	=""	="EASTERN COMMERCIAL FURNITURE PTY"	10-May-08 10:08 AM	

+="CN76190"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	39999.99	=""	="BRODTMANN COMMUNICATIONS"	10-May-08 10:09 AM	

+="CN76198"	"CULTANA TRAINING AREA EXPANSION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	33000.00	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:09 AM	

+="CN76212"	"WATER & SEWER RATES"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	11-Feb-08	30-Jun-08	33880.45	=""	="SYDNEY WATER CORPORATION"	10-May-08 10:10 AM	

+="CN76236"	"HQJOC PROJECT - GHD PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	32890.00	=""	="GHD PTY LTD"	10-May-08 10:11 AM	

+="CN76243"	"OFFICE ROTARY CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Nov-07	14-Dec-07	39303.00	=""	="STURDY FRAMAC"	10-May-08 10:12 AM	

+="CN76260"	"Consultancies for developing projects for Defence Support Central & Northern NSW"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Dec-06	30-Jun-08	38248.30	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:13 AM	

+="CN76308"	"Haz Sub Management Review-HMAS Mermaid, Benalla Haz Sub Risk Assessment-HMAS Newcastle"	="Department of Defence"	10-May-08	="Personal safety and protection"	12-Nov-07	30-Jun-08	32388.38	=""	="COAST TO COAST SAFETY SOLUTIONS"	10-May-08 10:15 AM	

+="CN76332"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	16-Apr-08	33440.00	=""	="ROYAL AUST COLLEGE OF SURGEONS"	10-May-08 10:17 AM	

+="CN76350"	"Woomera Stage 3 Remediation and Validation Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Sep-07	30-Jun-08	37353.80	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:18 AM	

+="CN76379"	"MCD TG QANTAS Invoice 30NOV07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	35464.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76395"	"QANTAS PAYMENT FOR 4 FD REGT"	="Department of Defence"	10-May-08	="Powered fixed wing aircraft"	30-Nov-07	21-Jan-08	37276.88	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:20 AM	

+="CN76412"	"GAS REQUIREMENTS FOR FY 07/08"	="Department of Defence"	10-May-08	="Elements and gases"	23-Apr-08	30-Jun-08	38500.00	=""	="BOC LIMITED"	10-May-08 10:21 AM	

+="CN76416"	"OP FREIGHT AND CARTAGE 2OCU"	="Department of Defence"	10-May-08	="Transportation services equipment"	04-Jul-07	30-Jun-08	33000.00	=""	="STAR TRACK EXPRESS"	10-May-08 10:22 AM	

+="CN76420"	"Vacation Care"	="Department of Defence"	10-May-08	="Office supplies"	14-Apr-08	30-Jun-08	31000.00	=""	="YMCA OF CANBERRA"	10-May-08 10:22 AM	

+="CN76442"	"SHORT TERM VEHICLE HIRE FLLA K"	="Department of Defence"	10-May-08	="Motor vehicles"	24-Dec-07	26-Dec-07	35201.14	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76443"	"LIF PROJECT MAINTENANCE & REPAIR FOR ARISINGS 29-2  & FUTURE ARISINGS DURING TEST RUNNING PH"	="Department of Defence"	10-May-08	="Aircraft"	30-Jun-08	30-Jun-08	38500.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:23 AM	

+="CN76472"	"AIR FARES"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	21-Dec-07	33906.54	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:25 AM	

+="CN76485"	"VEHICLE HIRE NOVEMBER 2007"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	24-Nov-07	15-Jan-08	32389.15	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:26 AM	

+="CN76486"	"AIR MOVT OP CATALYST"	="Department of Defence"	10-May-08	="Aircraft"	29-Nov-07	31-Dec-07	39053.56	=""	="ALLTRANS INTERNATIONAL"	10-May-08 10:26 AM	

+="CN76533"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Dec-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:28 AM	

+="CN76539"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Jan-08	04-Feb-08	39503.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76557"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	30-Jun-08	37370.00	=""	="MINTER ELLISON"	10-May-08 10:30 AM	

+="CN76561"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	39712.20	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76612"	"AIR FORCE GRADUATE OFFICER PUBLIC RELATIONS PROGRA"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Nov-07	30-Jun-08	33264.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 10:33 AM	

+="CN76622"	"CATALYST 3750 24 10/100/1000 4 SFP ENH CD MULTIPLA MULTIPLAYER CISCO STACK WISE STACKING CABLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Nov-07	32709.75	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 10:34 AM	

+="CN76625"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2400878"	="Department of Defence"	10-May-08	="Legal services"	29-Mar-07	22-Jan-08	32608.40	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:34 AM	

+="CN76647"	"RANDHAWA KITTU DUMMY PAYMENT"	="Department of Defence"	10-May-08	="Legal services"	31-Jul-06	23-Jan-08	37455.51	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:36 AM	

+="CN76649"	"TAXI FARES"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	07-Jan-08	39265.34	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:36 AM	

+="CN76650"	"ADDITIONAL CONPUTATIONAL NODES TO EXPAND EXISTING  COMPUTER CLUSTER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	11-Feb-08	31768.00	=""	="ALEXANDER TECHNOLOGY"	10-May-08 10:36 AM	

+="CN76653"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	31250.93	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76654"	"S4930, WR 300026038, Upgrade existing security cam more effective coverage of entry points, perimete"	="Department of Defence"	10-May-08	="Security and control equipment"	28-Nov-07	30-Jun-08	35750.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:36 AM	

+="CN76657"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	21-Jan-08	32793.78	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76661"	"QANTAS ACCOUNT"	="Department of Defence"	10-May-08	="Transportation services equipment"	19-Dec-07	31-Dec-07	31549.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76667"	"ARTC DECEMBER 2007 CABCHARGE STATEMENT"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	22-Jan-08	35644.25	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:37 AM	

+="CN76670"	"MAWS HIL Truthing System Study"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	29-Feb-08	33010.56	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 10:37 AM	

+="CN76677"	"To transport periscope to HMAS STIRLING from Adela"	="Department of Defence"	10-May-08	="General building construction"	22-Dec-07	17-Dec-08	30918.25	=""	="TNT EXPRESS"	10-May-08 10:37 AM	

+="CN76683"	"TIMOR TELECOM"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	29-Jan-08	29-Jan-08	35902.93	=""	="TIMOR TELECOM"	10-May-08 10:38 AM	

+="CN76706"	"TECHNICAL REPORT & SIMULATION SOFTWARE (MATLAB)"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	03-Dec-07	31-Dec-07	39600.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 10:39 AM	

+="CN76709"	"US LANDING FEES - TALISMAN SABRE 2007"	="Department of Defence"	10-May-08	="Aircraft"	20-Dec-07	30-Jun-10	30826.65	=""	="ROCKHAMPTON CITY COUNCIL"	10-May-08 10:39 AM	

+="CN76718"	"ENGINEERING SERVICES"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	21-Dec-07	33715.00	=""	="TAYCOR INTERNATIONAL PTY LTD"	10-May-08 10:40 AM	

+="CN76727"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	32725.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:40 AM	

+="CN76739"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	31548.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76743"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	33000.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76750"	"02-231353 31AUG07 LINE ITEMS 4572 - 4593"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	32172.84	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:41 AM	

+="CN76757"	"CONTACT PAUL MEULENBROEK 08 8935 4622 WR: 150134134"	="Department of Defence"	10-May-08	="Power generation"	04-Dec-07	30-Jun-08	31700.00	=""	="PDL TOLL"	10-May-08 10:42 AM	

+="CN76761"	"Design of the Training & Education Standards officer Course TMP"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Dec-07	27-Jun-08	32679.90	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:42 AM	

+="CN76775"	"LCR Meter"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Dec-07	18-Dec-07	32719.56	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 10:43 AM	

+="CN76799"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	04-Dec-07	30-Jun-08	31399.34	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:44 AM	

+="CN76801"	"Consultancy for the drawings and specifications for the FIMA and FLSE buildings at HMAS Cairns"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	30-Nov-07	30-Jun-08	37400.00	=""	="SPOTLESS"	10-May-08 10:44 AM	

+="CN76808"	"AFPO 12 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	31145.89	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76815"	"IVS ANNUAL MAINTENANCE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	31-Dec-07	31658.00	=""	="ACOUSTIC IMAGING"	10-May-08 10:45 AM	

+="CN76819"	"blade controllers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	33723.80	=""	="IBM AUSTRALIA LTD"	10-May-08 10:45 AM	

+="CN76832"	"QANTAS BILL"	="Department of Defence"	10-May-08	="Recreational aircraft"	29-Oct-07	30-Nov-07	36288.43	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76837"	"CAB FARES"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Oct-07	15-Oct-07	39756.29	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:46 AM	

+="CN76840"	"FORKLIFT TRUCK TCM MODEL FG25T3 DUAL FUEL"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	30-Nov-07	30-Jan-08	30520.60	=""	="N T P FORKLIFTS PTY LTD"	10-May-08 10:46 AM	

+="CN76842"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Nov-07	30-Jun-08	39600.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:47 AM	

+="CN76858"	"SN02730 - - Install 4 additional workstati"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	30630.60	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:48 AM	

+="CN76868"	"POC: James Ahern PHONE: 02 6265 0962"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	31246.60	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76872"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	31-Dec-07	34673.12	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:49 AM	

+="CN76878"	"Marine Seismic Reflection Profilinng Survey"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	03-Dec-07	21-Dec-07	39050.00	=""	="GOLDER ASSOCIATES PTY LTD"	10-May-08 10:49 AM	

+="CN76886"	"Oversea Travel in support of LAND17PH1"	="Department of Defence"	10-May-08	="Domestic appliances"	30-Nov-07	10-Dec-07	37330.07	=""	="RAYTHEON COMPANY"	10-May-08 10:49 AM	

+="CN76902"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	07-Dec-07	38500.00	=""	="INNOVATION TECHNOLOGY SERVICES"	10-May-08 10:50 AM	

+="CN76913"	"PROTOTYPE MWD MODULE FITTED TO TOYOTA R07001"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	16-Nov-07	28-Dec-07	37950.00	=""	="IB SUPPLIES PTY LTD"	10-May-08 10:51 AM	

+="CN76918"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	22-Nov-07	33133.07	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:51 AM	

+="CN76934"	"APPSENSE MANAGEMENT SUITE & SOFTWARE"	="Department of Defence"	10-May-08	="Software"	21-Nov-07	23-Nov-07	39168.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:52 AM	

+="CN76940"	"LIVERPOOL MILITARY AREA HIGH VOLTAGE ELECTRICAL DI UPGRADE"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	22-Nov-07	30-Jun-08	37840.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:53 AM	

+="CN76945"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76952"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	14-Dec-07	34771.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:53 AM	

+="CN76953"	"Support RSAF Deployment 01-08 Oct 07"	="Department of Defence"	10-May-08	="Aircraft"	08-Nov-07	30-Jun-08	30447.87	=""	="DEFENCE SUPPORT CENTRE WOOMERA (DSC"	10-May-08 10:53 AM	

+="CN77012"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO TO PROVIDE A HERITAGE IMPACT ASSESSMENT REPOR"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	33000.00	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 11:42 AM	

+="CN77013"	"373 NVIS FACILITY UPGRADE"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jan-08	30-Jun-08	34569.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 11:42 AM	

+="CN77054"	"STEP ATTENUATOR FPR PSG ANALOG ANALOG SIGNAL GENERATOR , PULSE MODULATION OPTION FOR PSG SIGNAL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	19-Feb-08	33169.41	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:44 AM	

+="CN77065"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	37876.41	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:45 AM	

+="CN77071"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN POINT COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36510.62	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 11:45 AM	

+="CN77073"	"PROVISION OF AGL CABLE-AIRFIELD LIGHTING MAINTENAN COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36104.75	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	10-May-08 11:45 AM	

+="CN77075"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE FUEL FARM DESIGN-DELIVERY PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36360.50	=""	="MOORE CONSULTING & ENGINEERING"	10-May-08 11:46 AM	

+="CN77080"	"PROFESSIONAL SERVICES PROVIDER - CONTRACTOR"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	16-Jan-08	30-Jun-08	33000.00	=""	="AERO SUPPORT GROUP PTY LTD"	10-May-08 11:46 AM	

+="CN77089"	"Additional warehousing labour costs to support CMSS vehicles."	="Department of Defence"	10-May-08	="Transport operations"	15-Jan-08	19-Dec-08	33352.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 11:47 AM	

+="CN77091"	"400 batteries to support PDETS at DIDS sites nationally."	="Department of Defence"	10-May-08	="Electrical components"	15-Jan-08	28-Feb-08	30360.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:47 AM	

+="CN77100"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	04-Feb-08	29-May-08	34000.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 11:47 AM	

+="CN77103"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	15-Jan-08	15-Feb-08	38276.70	=""	="PETTARAS PRESS PTY LTD"	10-May-08 11:48 AM	

+="CN77106"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	22-Feb-08	33772.86	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77107"	"VEHICLE LEASE"	="Department of Defence"	10-May-08	="Motor vehicles"	15-Jan-08	15-Jan-08	39265.09	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:48 AM	

+="CN77109"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	15-Feb-08	37154.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:48 AM	

+="CN77123"	"Transport of cargo Darwin - Bulman - ISO OP Outrea"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	34658.11	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77132"	"Security Locks"	="Department of Defence"	10-May-08	="Containers and storage"	31-Jan-08	05-Mar-08	30662.94	=""	="ARCHITECTURAL HARDWARE"	10-May-08 11:50 AM	

+="CN77143"	"Supply & Install Keywatch Management System"	="Department of Defence"	10-May-08	="Security and control equipment"	31-Jan-08	14-Feb-08	30910.00	=""	="KEYWATCH SYSTEMS QUEENSLAND"	10-May-08 11:51 AM	

+="CN77146"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	16-Jan-08	30-Jun-08	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:51 AM	

+="CN77166"	"Technical equipment"	="Department of Defence"	10-May-08	="Forensic equipment and supplies and accessories"	16-Jan-08	31-Jan-08	32631.45	=""	="TEEL INC"	10-May-08 11:52 AM	

+="CN77171"	"S5180, WR 300069263. Sydney Central Infrastructure Technical Services Aspects. Carry out IA investig"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	32872.13	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 11:52 AM	

+="CN77191"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	30-Mar-08	34146.56	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:54 AM	

+="CN77199"	"Seminar"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Feb-08	29-Feb-08	35471.00	=""	="ANU - FINANCE & BUSINESS SERVICES"	10-May-08 11:54 AM	

+="CN77205"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. ENGAGE BAULDERSTONE HORNIBROOK AS MANAGING CONTRAC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	33000.00	=""	="A W BAULDERSTONE HOLDINGS PTY LTD"	10-May-08 11:54 AM	

+="CN77206"	"ADVERTISING EXPENSES (WILL APPEAR IN 7 ADITIONS OF NEWSPAPERS."	="Department of Defence"	10-May-08	="Advertising"	21-Jan-08	21-Jan-08	33000.00	=""	="HMA BLAZE PTY LTD"	10-May-08 11:54 AM	

+="CN77215"	"Laser stinger II arm system"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	38016.00	=""	="SCANNING & INSPECTION PTY LTD"	10-May-08 11:55 AM	

+="CN77216"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	33880.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77226"	"Giles Uni Scholarship"	="Department of Defence"	10-May-08	="Market research"	31-Jan-08	04-Feb-08	34000.00	=""	="UNI OF ADELAIDE - STUDENT"	10-May-08 11:56 AM	

+="CN77238"	"QSA Global Sources"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	28-Apr-08	32958.82	=""	="AUSTRALIAN RADIATION SERVICES PTY L"	10-May-08 11:56 AM	

+="CN77254"	"Establish Chem Alert Stock Management module"	="Department of Defence"	10-May-08	="Plastic and chemical industries"	23-Jan-08	28-Feb-08	32450.00	=""	="RISK MANAGEMENT TECHNOLOGIES"	10-May-08 11:57 AM	

+="CN77257"	"AS PER QUOTE DATED 6 DEC 07 ATT SONIA FURNITURE FOR SGT MESS RAAF DARWIN"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	29-Feb-08	30795.06	=""	="JAPE FURNISHING SUPERSTORE"	10-May-08 11:57 AM	

+="CN77269"	"Supply of Comms cabinets for Bldg upgrade at Amb."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	34991.03	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 11:58 AM	

+="CN77285"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77286"	"RECUITMENT NON ONGOING APS3 POSITION"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	30-Jan-09	37488.58	=""	="CAREERS MULTILIST LIMITED"	10-May-08 11:59 AM	

+="CN77289"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	34496.00	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77293"	"Studies supporting Defence logistics"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	23-Jan-08	31-Mar-08	38500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 12:00 PM	

+="CN77337"	"OMNI ANTENNA  WITH AUDIO / TRANSMITTER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Jan-08	30-Jan-08	35891.99	=""	="LINCAST AUSTRALIA"	10-May-08 12:02 PM	

+="CN77343"	"Headset"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	14-Mar-08	30072.90	=""	="VR SOLUTIONS PTY LTD"	10-May-08 12:03 PM	

+="CN77345"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Jan-08	31-Dec-08	40000.00	=""	="AUSTRALIAN MILITARY HISTORY"	10-May-08 12:03 PM	

+="CN77355"	"COMPUTER TRAINING FOR ARTC RECRUITS"	="Department of Defence"	10-May-08	="Vocational training"	22-Jan-08	31-Dec-08	36630.00	=""	="CLASS TRAINING"	10-May-08 12:03 PM	

+="CN77378"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77379"	"HSM - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	39864.00	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:05 PM	

+="CN77382"	"HIRE OF STAFF IAW DRAKE STANDING OFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	31857.10	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77386"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77391"	"Provision of Support to Assist in Stocktake"	="Department of Defence"	10-May-08	="Business administration services"	22-Jan-08	30-Apr-08	31697.70	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 12:06 PM	

+="CN77399"	"Delivery of Dental Training"	="Department of Defence"	10-May-08	="Dental equipment and supplies"	22-Jan-08	02-Feb-09	39600.00	=""	="DEPARTMENT OF EMPLOYMENT & TRAINING"	10-May-08 12:06 PM	

+="CN77401"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	28-Feb-08	36520.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 12:06 PM	

+="CN77437"	"sra groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	10-Jan-08	30-Jun-08	35200.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 12:08 PM	

+="CN77460"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	33516.47	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:09 PM	

+="CN77469"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Jan-08	25-Jan-08	38765.95	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	10-May-08 12:10 PM	

+="CN77472"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	32078.64	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:10 PM	

+="CN77478"	"DELL MONITORS & DELL FLATSCREEN PANEL MONITOR"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	17-Jan-08	31669.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:10 PM	

+="CN77482"	"GS TVL STH - GYM 307-07/08"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Jan-08	01-Feb-08	31928.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:11 PM	

+="CN77493"	"Environmental Clearance EDN Pks - Stages5, 8, 10 Technical Authority: Mark Donaghey"	="Department of Defence"	10-May-08	="Environmental Services"	10-Jan-08	30-Jun-08	33132.11	=""	="PARSONS BRINCKERHOFF"	10-May-08 12:11 PM	

+="CN77513"	"Admin support."	="Department of Defence"	10-May-08	="Temporary personnel services"	29-Jan-08	27-Jun-08	31539.75	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	10-May-08 12:12 PM	

+="CN77517"	"SPONSORSHIP FAMILY DAY CARE"	="Department of Defence"	10-May-08	="Education and Training Services"	29-Jan-08	29-Jan-08	31388.50	=""	="PORT STEPHENS COUNCIL"	10-May-08 12:12 PM	

+="CN77519"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	26-Jan-08	28-Apr-08	31530.08	=""	="SME GATEWAY LIMITED"	10-May-08 12:13 PM	

+="CN77523"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	29-Jan-08	23-Mar-08	39977.31	=""	="CRAFT INPRINT GROUP"	10-May-08 12:13 PM	

+="CN77524"	"SUPPLY LPG GAS BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Heating and ventilation and air circulation"	08-Jan-08	30-Jun-08	33000.00	=""	="ORIGIN ENERGY"	10-May-08 12:13 PM	

+="CN77535"	"AXIEM-PF 3D PLANAR ELECTROMAGNETIC SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	31-Jan-08	32109.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 12:13 PM	

+="CN77536"	"ADMINSTRATIVE SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	35939.90	=""	="TOP OFFICE PERSONNEL PTY LTD"	10-May-08 12:13 PM	

+="CN77541"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	06-Feb-08	33508.57	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:14 PM	

+="CN77554"	"WEST HEAD GUNNERY RANGE:REDEVELOPMENT SPARKE HELMORE PROBITY ADVICE DELIVERY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	33550.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:14 PM	

+="CN77565"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	01-Feb-08	39108.30	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:15 PM	

+="CN77570"	"WA991914 - WRE - OHS RISK MITIGATION (MEDIUM LEVEL) - FY 07/08"	="Department of Defence"	10-May-08	="Personal safety and protection"	09-Jan-08	30-Jun-08	36300.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 12:15 PM	

+="CN77588"	"TSS Contract Analysis of Experiments in HARC Proj"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	24-Jan-08	28-Mar-08	33000.00	=""	="UNIQUEST PTY LTD"	10-May-08 12:16 PM	

+="CN77602"	"PADLOCKS & KEYS"	="Department of Defence"	10-May-08	="Locks and security hardware and accessories"	25-Jan-08	29-Feb-08	34911.25	=""	="API SECURITY PTY LTD"	10-May-08 12:17 PM	

+="CN77604"	"SUN ULTRA 45 WORKSTATION - SOLARIS PRE INSTALLED INTERNAL 250GB 7200RPM SERIEL ATA HARD DISK"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Jan-08	38762.50	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:17 PM	

+="CN77611"	"SN02578 - 270170787 & 270166642 - Fit out for R8-G"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	09-Jan-08	30-Jun-08	35200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:18 PM	

+="CN77616"	"ADVERTISING"	="Department of Defence"	10-May-08	="Office supplies"	25-Jan-08	30-Jun-08	32801.24	=""	="UNIVERSAL MCCANN"	10-May-08 12:18 PM	

+="CN77648"	"Cabinets"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	24-Jan-08	12-Mar-08	34050.20	=""	="M F B PRODUCTS PTY LTD"	10-May-08 12:20 PM	

+="CN77663"	"HP LAPTOP COMPUTERS (20)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	08-Feb-08	35662.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:21 PM	

+="CN77673"	"SUN V490 SERVER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	38613.30	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77675"	"Navigation System"	="Department of Defence"	10-May-08	="Location and navigation systems and components"	15-Jan-08	15-Feb-08	32237.70	=""	="DAVIDSON MEASUREMENT"	10-May-08 12:21 PM	

+="CN77720"	"Ongoing Maintenance of the AT-MURLIN"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	29-May-08	33000.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 12:24 PM	

+="CN77721"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	10-Jan-08	10-Jan-08	32748.10	=""	="PARAGON PRINTERS"	10-May-08 12:24 PM	

+="CN77737"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	38392.84	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 12:24 PM	

+="CN77761"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Dec-07	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 12:26 PM	

+="CN77769"	"VARIOUS FURNITURE FOR FURNITURE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	15-Jan-08	37201.73	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:26 PM	

+="CN77787"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	35860.00	=""	="MERCER (AUSTRALIA) PTY LTD"	10-May-08 12:27 PM	

+="CN77789"	"VARIOUS FURNITURE FOR FURNITUE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	20-Dec-07	30778.00	=""	="STRATEGIC STORAGE SOLUTIONS"	10-May-08 12:27 PM	

+="CN77813"	"Spacial Allocation Surveys"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	33000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:29 PM	

+="CN77819"	"SPARES 08/257"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	11-Dec-07	31-Jan-08	38323.23	=""	="GILBARCO AUSTRALIA LIMITED"	10-May-08 12:29 PM	

+="CN77832"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77834"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77869"	"INSTALLAION OF COMPS EQUIPMENT"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Dec-07	31-Jan-08	36031.09	=""	="NSC CARRIER TECHNOLOGIES PTY LTD"	10-May-08 12:32 PM	

+="CN77875"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	37121.74	=""	="INSITEC"	10-May-08 12:32 PM	

+="CN77878"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	33880.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:32 PM	

+="CN77883"	"Labour Hire"	="Department of Defence"	10-May-08	="Manufacturing support services"	13-Dec-07	31-Mar-08	33171.44	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:33 PM	

+="CN77892"	"S5180, WR's 300051674, 300051676, 300071218, 30007 Sydney Central Physical Infrastructure Appra"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	39664.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:33 PM	

+="CN77894"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	13-Mar-08	33876.70	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77895"	"CISCO Switches"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	13-Dec-07	14-Dec-07	34487.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77901"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	13-Dec-07	31-Jan-08	36893.98	=""	="ABLE OFFICE FURNITURE PTY LTD"	10-May-08 12:34 PM	

+="CN77912"	"NET ACCESS BDSL SYMMETRICAL"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	29-Feb-08	39600.00	=""	="OPTUS INTERNET"	10-May-08 12:34 PM	

+="CN77913"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Dec-07	30-Jun-09	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:34 PM	

+="CN77926"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	38720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:35 PM	

+="CN77940"	"Quest 1541 Data Aquisition and Processing"	="Department of Defence"	10-May-08	="Software"	30-Jan-08	31-Mar-08	33705.34	=""	="COMPUQUEST INC"	10-May-08 12:36 PM	

+="CN77950"	"KOBRA 400HS ENERGY SMART HD SCEC ENDORSED A CLASS PAPER SHREDDER"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	30-Jan-08	04-Feb-08	30954.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 12:36 PM	

+="CN77962"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	28-Feb-08	31900.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 12:37 PM	

+="CN77982"	"CONCRETE SLAB FOR VAULT AREA at RAAF WILLIAMS POIN Contact for RAAF - WGCDR Bob Coopes"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	31-Jan-08	35695.00	=""	="PMP BITUMEN"	10-May-08 12:38 PM	

+="CN78008"	"REQUIRED FOR TERMINAL TO SHOW SAFETY BRIEFS TO ALL PASSENGERS."	="Department of Defence"	12-May-08	="Electronic reference material"	14-Dec-07	24-Dec-07	30125.70	=""	="GARRY THYERS BETTA SUPERSTORE"	12-May-08 09:31 AM	

+="CN78021"	"DVD REPLICATOR"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	31735.00	=""	="SCSI INTEGRATION PTY LTD"	12-May-08 09:34 AM	

+="CN78022"	"CONSULTANCY FOR CONTAMINATED SOIL INSPECTION AND REPORT"	="Department of Defence"	12-May-08	="Environmental Services"	14-Dec-07	30-Jun-08	38384.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 09:35 AM	

+="CN78026"	"DCPD CRACK MEASUREMENT PACKAGE"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Dec-07	21-Mar-08	38212.07	=""	="AUSTRALIAN CALIBRATING SERVICES"	12-May-08 09:35 AM	

+="CN78027"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	18-Jan-08	38883.60	=""	="SUN MICROSYSTEMS"	12-May-08 09:36 AM	

+="CN78041"	"IAW CJOPS MINUTE (A1206456) DATED 3/12/07 REQUIRES HQJOC4 BE CAPABLE OF HIGH DEFINITION VIDEO CONF."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	29-Feb-08	37938.05	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78058"	"SEA FREIGHT MOVT OF IMV, TRAILER AND GRADER OP SLIPPER"	="Department of Defence"	12-May-08	="Marine transport"	14-Dec-07	31-Mar-08	30067.75	=""	="APL LOGISTICS"	12-May-08 09:42 AM	

+="CN78097"	"Supply, manufacture and install hose test rig assembly"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	06-Feb-08	33000.00	=""	="TOOLTIME ENGINEERING"	12-May-08 09:50 AM	

+="CN78104"	"CONDUCT & DEVELOP TRAINING NEEDS ANALYSIS & PACKAG"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	28-Aug-08	39000.00	=""	="ESIM GAMES DEUTSCHLAND GMBH"	12-May-08 09:52 AM	

+="CN78124"	"Anchor Kits P/no 69KHSA305OD Base-X Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	30069.60	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78137"	"DISIP Stage 2"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	11-Feb-08	38567.42	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78146"	"Develop and Evaluate Networked UAV EW Systems"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Mar-08	34496.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	12-May-08 09:59 AM	

+="CN78163"	"EMPLOYMENT OF PSP"	="Department of Defence"	12-May-08	="Community and social services"	18-Dec-07	30-Jun-08	32171.26	=""	="RECRUITMENT QUEENSLAND"	12-May-08 10:02 AM	

+="CN78169"	"VEHICLE REPAIRS"	="Department of Defence"	12-May-08	="Motor vehicles"	08-May-08	08-Jun-08	33960.30	=""	="MICKS AUTOS"	12-May-08 10:04 AM	

+="CN78196-A1"	"External Quality Assurance Review"	="Department of Foreign Affairs and Trade"	12-May-08	="Accounting and auditing"	22-Jan-08	30-Apr-08	38500.00	=""	="37 MARY STREET PTY LTD & A.C.N. 074 591 807 PTY. LTD. & ALPHA DREAMS PTY LIMITED & ARINA MANAGEMENT PTY LIMITED & ARMAC SIXTY-FOUR PTY LTD & BENONI NOMINEES PTY LTD & OTHERS"	12-May-08 11:48 AM	

+="CN78224"	"Vehicle Lease"	="Department of Defence"	12-May-08	="Motor vehicles"	12-Dec-07	31-Mar-10	36972.98	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:07 PM	

+="CN78272"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	07-Dec-07	30071.03	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 01:12 PM	

+="CN78286"	"ADFA BLAZERS"	="Department of Defence"	12-May-08	="Clothing"	05-Dec-07	01-Apr-08	37000.00	=""	="LOWES MANHATTAN PTY LTD"	12-May-08 01:15 PM	

+="CN78287"	"HIRE OF PERSONNEL IAW STANDING OFFER LH 01/05"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Dec-07	30-Jun-08	35806.10	=""	="DRAKE INTERNATIONAL"	12-May-08 01:15 PM	

+="CN78290"	"CRITICAL REPLACE/REPAIR PROG - AIRCRAFT HANGAR DOOR MULLIONS"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	05-Dec-07	30-Jun-08	31033.48	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 01:15 PM	

+="CN78302"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-Jan-08	37759.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:17 PM	

+="CN78316"	"Research Agreement"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 01:20 PM	

+="CN78327"	"MEAT"	="Department of Defence"	12-May-08	="Meat and poultry"	04-Dec-07	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	12-May-08 01:21 PM	

+="CN78331"	"FRUIT & VEGS"	="Department of Defence"	12-May-08	="Vegetables"	04-Dec-07	30-Jun-08	30000.00	=""	="TOM & FRANKS"	12-May-08 01:22 PM	

+="CN78391"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	30-Oct-07	36515.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	12-May-08 01:32 PM	

+="CN78429"	"DMO BATTERY CHARGING - 7CSSB - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	33067.12	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:39 PM	

+="CN78438"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	30360.00	=""	="FRANCIS J HICKLING"	12-May-08 01:40 PM	

+="CN78504-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Feb-08	30-Jun-08	38206.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:49 PM	

+="CN78505"	"TRIPWIRE PRODUCTS"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	34157.24	=""	="TRIPWIRE INC"	12-May-08 01:49 PM	

+="CN78516"	"Watson, Replace sprinkler system"	="Department of Defence"	12-May-08	="Fire protection"	20-Dec-07	30-Jun-08	38265.70	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:51 PM	

+="CN78535"	"Multifunction Document Centres"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	20-Dec-07	21-Dec-07	37382.40	=""	="RICOH AUSTRALIA"	12-May-08 01:55 PM	

+="CN78537"	"PRINT PRODUCTION ONE MAN COMBAT RATION PACKS: INGR EDIENT SHEETS & MENU & INSTRUCTION SHEETS"	="Department of Defence"	12-May-08	="Paper products"	20-Dec-07	10-Jan-08	32311.40	=""	="PRESS HERE PTY LTD"	12-May-08 01:55 PM	

+="CN78568"	"DEVELOPMENT OF SRS FOR TIDES PROJECT"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	15-Jan-08	34760.00	=""	="WHITEWAY HOUSE NO 102 PTY LTD"	12-May-08 02:02 PM	

+="CN78569"	"WEAPON RACKING"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	20-Dec-07	20-Dec-07	39834.41	=""	="MULTIFILE"	12-May-08 02:02 PM	

+="CN78584"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	20-Dec-07	33165.30	=""	="BLUE SPINE PTY LTD"	12-May-08 02:04 PM	

+="CN78602"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	37246.00	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:07 PM	

+="CN78615"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78636"	"RENTAL GURNEY BEACH APPARTMENTS"	="Department of Defence"	12-May-08	="Accommodation furniture"	13-Dec-07	13-Dec-07	34849.03	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:12 PM	

+="CN78657"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	32580.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78659"	"november invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	19-Dec-07	37519.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:14 PM	

+="CN78680"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	38005.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 02:15 PM	

+="CN78684"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	17-Dec-07	30-Jun-10	38781.76	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 02:16 PM	

+="CN78686"	"MODELLING SOFTWARE"	="Department of Defence"	12-May-08	="Software"	03-Jan-08	03-Jan-08	36938.00	=""	="SIMULATION MODELLING SERVICES PTY"	12-May-08 02:16 PM	

+="CN78694"	"ACCOMODATION & TRAVEL"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	14-Apr-08	35420.47	=""	="NANYANG TECHNOLOGICAL UNIVERSITY"	12-May-08 02:16 PM	

+="CN78696"	"DISIP Stage 1"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	07-Feb-08	34276.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 02:16 PM	

+="CN78704"	"QANTAS INVOICE HMAS HUON NOV 07"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	17-Jan-08	30158.84	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78713"	"Promotional Equipment for Land Warfare Conference"	="Department of Defence"	12-May-08	="Sales and business promotion activities"	21-Oct-07	01-Jan-08	33660.00	=""	="ACCESS PROMOTIONAL PRODUCTS PTY"	12-May-08 02:18 PM	

+="CN78774"	"fees"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	23-Oct-07	30-Nov-07	32000.00	=""	="FUTURE FIBRE TECHNOLOGIES PTY LTD"	12-May-08 02:21 PM	

+="CN78788"	"Software maintenance"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Dec-07	30-Aug-08	30683.29	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78789"	"Fuel Farm maintenance"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	03-Dec-07	03-Dec-07	31040.00	=""	="AVIATION FUEL MAINTENANCE"	12-May-08 02:22 PM	

+="CN78794"	"White Paper payment"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	21-Dec-07	38500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 02:22 PM	

+="CN78810"	"QANTAS AIRFARES FOR DEFENCE SUPPORT TRAVEL SERVICE FOR UNITS AT SINGLETON MILITARY AREA FOR OCT 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	33388.04	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78823"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	31-Jul-08	34962.05	=""	="HAYS ACCOUNTANCY AND FINANCE"	12-May-08 02:24 PM	

+="CN78827"	"Provison of Analyst Programmer, Level 3"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	21-Dec-07	23-May-08	38497.80	=""	="YTEK PTY LTD"	12-May-08 02:24 PM	

+="CN78859"	"Builing maintenace"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	11-Apr-08	28-May-08	34573.00	=""	="M & P BUILDERS PTY LTD"	12-May-08 02:27 PM	

+="CN78866"	"MS#3"	="Department of Defence"	12-May-08	="Environmental management"	27-Mar-07	06-Dec-07	32326.43	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 02:27 PM	

+="CN78874"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Apr-08	36000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-May-08 02:28 PM	

+="CN78880"	"Install Radar Anchor Points at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	11-Apr-08	30-Jun-08	30000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:28 PM	

+="CN78901"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-07	32450.00	=""	="GHD PTY LTD"	12-May-08 02:29 PM	

+="CN78905"	"Upgrading of Prevon Vertical Carousel control syst M00268/08 at Shed 2, Lavarack JLU(NQ)"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	08-May-08	36381.40	=""	="PREVON PTY LTD"	12-May-08 02:30 PM	

+="CN78946"	"Equipment required fro the DRAS decommissioning Ta"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	31240.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:33 PM	

+="CN78951"	"Sewage and oily water removal - T'ville 21-24 MAR"	="Department of Defence"	12-May-08	="Water and wastewater treatment supply and disposal"	31-Mar-08	09-Apr-08	32641.63	=""	="NQ RESOURCE RECOVERY PTY LTD"	12-May-08 02:33 PM	

+="CN78954"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	10-Apr-08	01-Jun-08	39757.77	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:33 PM	

+="CN78959"	"EPIC licences"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Mar-08	34331.00	=""	="FUJITSU AUSTRALIA LTD"	12-May-08 02:34 PM	

+="CN78966"	"PAYMENT TO OFFICIAL BANK ACCOUNT PALAU"	="Department of Defence"	12-May-08	="Project management"	18-Apr-08	30-Jun-10	39023.29	=""	="MARITIME SURVEILLANCE"	12-May-08 02:34 PM	

+="CN78996"	"Enterprise Modeller Developer Licence"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	30-Jun-08	33000.00	=""	="ENTERPRISE MANAGEMENT SERVICES"	12-May-08 02:37 PM	

+="CN79019"	"Training seminar"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-May-08	31080.00	=""	="MARC RATCLIFFE WORKPLACE EDUCATION"	12-May-08 02:38 PM	

+="CN79023"	"LG protable DVD Players Model: DP271B"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	04-Jan-08	31907.04	=""	="LG ELECTRONICS AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79047"	"DOMESTIC PET PRODUCTS"	="Department of Defence"	12-May-08	="Domestic pet products"	18-Mar-08	01-Apr-08	34468.15	=""	="SSPA PTY LTD"	12-May-08 02:40 PM	

+="CN79051"	"Install and service charges for phones in lifts & for security purposes - act / snsw region"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	30391.65	=""	="TELSTRA"	12-May-08 02:40 PM	

+="CN79059"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33559.60	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:41 PM	

+="CN79075"	"specialist system engineer under S/O 45190 Phone 8259 7059"	="Department of Defence"	12-May-08	="Computer services"	04-Apr-08	14-May-08	38500.00	=""	="VCORP CONSULTING PTY LTD"	12-May-08 02:42 PM	

+="CN79097"	"IBM HARDWARE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	11-Apr-08	31369.80	=""	="TAPESTRY SYSTEMS PTY LTD"	12-May-08 02:45 PM	

+="CN79111"	"CLOTHING"	="Department of Defence"	12-May-08	="Clothing"	17-Mar-08	07-Apr-08	30800.00	=""	="RAMMITE INTERNATIONAL PTY LTD"	12-May-08 02:46 PM	

+="CN79115"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Dec-07	35852.12	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:47 PM	

+="CN79117"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Education and Training Services"	22-Aug-07	14-Mar-08	39903.33	=""	="MINISTRY OF DEFENCE-DEFENCE PROCURE"	12-May-08 02:47 PM	

+="CN79124"	"POC:  LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	30526.47	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79126"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Oct-07	26-Oct-07	34251.53	=""	="MONICO, JOHN ROBERT"	12-May-08 02:48 PM	

+="CN79142"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33746.16	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:49 PM	

+="CN79170"	"Fujitsu Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	34818.18	=""	="ASI SOLUTIONS"	12-May-08 02:51 PM	

+="CN79179"	"hp dl 360 server & hp msa30 smart array"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	30256.50	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:52 PM	

+="CN79183"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	02-Jun-08	36250.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79185"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	29-May-08	39090.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79187"	"PROVISION OF BOM SERVICE EX WALLABY 07"	="Department of Defence"	12-May-08	="Aircraft"	07-Dec-07	30-Dec-07	30472.87	=""	="BUREAU OF METEOROLOGY"	12-May-08 02:53 PM	

+="CN79206"	"HQJOC PROJECT - ADI LIMITED - GPS TIMING SOURCE FO"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	30446.03	=""	="THALES AUSTRALIA"	12-May-08 02:55 PM	

+="CN79225"	"PM/CA services for Canungra Redevelopment for the Delivery and Defects stages of proj."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Nov-07	30-Jun-08	38177.71	=""	="THINC PROJECTS PTY LTD"	12-May-08 02:57 PM	

+="CN79232"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	03-Apr-08	04-Apr-08	39875.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 02:58 PM	

+="CN79240"	"171 SQUADRON RELOCATION (FORMERLY AIR 9000 - TROOP LIFT HELICOPTERS"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Apr-08	30-Jun-08	30538.75	=""	="RICE DAUBNEY"	12-May-08 02:59 PM	

+="CN79246"	"HIRE VEHICLES EX WALLABY 07"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Dec-07	31-Jan-08	32297.14	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:59 PM	

+="CN79247"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-09	30825.30	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:59 PM	

+="CN79261"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:01 PM	

+="CN79269"	"VEHICLE LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	24-Apr-08	37323.19	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:01 PM	

+="CN79285"	"DRN AND CABINET BLDG 913 RAAF BASE AMBERLEY"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-Jun-08	35953.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:03 PM	

+="CN79288"	"Provisions for support of LSE-ME -attached pers"	="Department of Defence"	12-May-08	="Office supplies"	28-Apr-08	01-Jan-09	35911.39	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:04 PM	

+="CN79307"	"AIR FREIGHT OP CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	21-May-08	30292.28	=""	="ALLTRANS INTERNATIONAL"	12-May-08 03:06 PM	

+="CN79314"	"04-425299 31AUG07"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	22-Apr-08	37004.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:06 PM	

+="CN79349"	"POC: ALAN ROSS CONTACT: 02 626 50931"	="Department of Defence"	12-May-08	="Medical training and education supplies"	03-Apr-08	30-Jun-08	30690.00	=""	="NETEZZA PTY LTD"	12-May-08 03:09 PM	

+="CN79376"	"SYNTHETIC GRASS"	="Department of Defence"	12-May-08	="Field and court sports equipment"	09-Apr-08	30-May-08	37180.00	=""	="ALL GRASS SPORTS SURFACES PTY LTD"	12-May-08 03:11 PM	

+="CN79402"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	17-Apr-08	29-Apr-08	30510.95	=""	="QM Technologies Pty Limited"	12-May-08 03:13 PM	

+="CN79423"	"Contractor Computer Support MRH90 PROJECT  TTC -B"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	30-Jun-08	34320.00	=""	="C & S COMPUTER SOLUTIONS"	12-May-08 03:14 PM	

+="CN79438"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	33000.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79469"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31933.85	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79476"	"Conduct One Set of Deck breakage and Strain Gauge Readings HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	30-Apr-08	33121.00	=""	="THALES AUSTRALIA"	12-May-08 03:18 PM	

+="CN79514"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	25-Mar-08	30-Jun-08	38508.99	=""	="RAYTHEON AUST PTY LTD"	12-May-08 03:20 PM	

+="CN79516"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	29-Apr-08	29-Apr-08	31086.00	=""	="Schiavello (WA) Pty Ltd"	12-May-08 03:20 PM	

+="CN79543"	"ISO 9001:2000"	="Department of Defence"	12-May-08	="Accommodation furniture"	27-Mar-08	30-Jun-08	33000.00	=""	="SAI GLOBAL LTD"	12-May-08 03:22 PM	

+="CN79545"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Office supplies"	30-Apr-08	30-Apr-08	36214.20	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:22 PM	

+="CN79558"	"COURSES & COURSEWARE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	27-Jun-08	33168.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 03:23 PM	

+="CN79600"	"REPLACEMENT OF SEWER LINES"	="Department of Defence"	12-May-08	="Plumbing fixtures"	04-Feb-08	30-Jun-08	37955.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:27 PM	

+="CN79602"	"Procurement for FBW Workshop Task 19"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Jun-08	32014.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79606"	"Customer Satisfaction Survey - GSS-CMS Contracts 2 Years Strategic Review - Sydney West South"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	31-Jul-08	34456.40	=""	="THE RYDER SELF GROUP"	12-May-08 03:27 PM	

+="CN79638"	"Progress Claim no 4 Installation of internal security caging PNGDF GRTD Project"	="Department of Defence"	12-May-08	="Containers and storage"	05-Oct-07	31-Dec-08	30258.35	=""	="PNG DOCKYARD LTD"	12-May-08 03:29 PM	

+="CN79644"	"CONNECTOR"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	31381.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 03:29 PM	

+="CN79655"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Real estate services"	04-Apr-08	04-Apr-08	30030.00	=""	="UNITED GROUP SERVICES PTY LTD"	12-May-08 03:30 PM	

+="CN79660"	"HMAS CRESWELL: Redevelopment"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	35750.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 03:30 PM	

+="CN79681"	"02-24270531DEC07 LINE 2779 - 2826"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Dec-07	30-Jun-08	37127.81	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:32 PM	

+="CN79720"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	32864.39	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:35 PM	

+="CN79721"	"SUPPLY OF DOUBLER PLATES"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	25-Mar-08	30-Jun-08	37933.28	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:35 PM	

+="CN79767"	"CABLING"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	28-Dec-07	39270.00	=""	="ACS TELECOMM"	12-May-08 03:37 PM	

+="CN79770"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	35409.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:38 PM	

+="CN79776"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	38720.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:39 PM	

+="CN79777"	"24" LCD screens"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	14-Dec-07	36955.16	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79800"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31457.51	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79803"	"1405 Production Liaison Officer"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	15-Feb-08	07-May-08	35376.00	=""	="JACOBS AUSTRALIA"	12-May-08 03:40 PM	

+="CN79805"	"Provision of Archive/Storage Services"	="Medicare Australia"	12-May-08	="Storage"	11-Apr-08	11-Apr-08	31250.14	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:40 PM	

+="CN79809"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	15-Feb-08	30-Mar-08	31752.05	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:40 PM	

+="CN79815"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	14-Apr-08	14-Apr-08	39501.18	=""	="AUSTRALIA POST"	12-May-08 03:41 PM	

+="CN79818"	"Repair and signage various security fencing at Kokoda Bks Canungra Ranges"	="Department of Defence"	12-May-08	="Signage and accessories"	15-Nov-07	30-Jun-08	30133.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:41 PM	

+="CN79823"	"1SQN Hertz Account"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Dec-07	13-Feb-08	37620.44	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79836"	"SPECIALIST ADVICE/TRAVEL"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	15-Nov-07	30-Nov-07	34953.05	="RFT1110607"	="EVALUA PTY LTD"	12-May-08 03:43 PM	

+="CN79841"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Feb-08	10-Mar-08	35950.98	=""	="PILATUS AIRCRAFT LTD"	12-May-08 03:43 PM	

+="CN79849"	"Ship checks  for ballist and cargo tanks. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Feb-08	29-Feb-08	33000.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:43 PM	

+="CN79819"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-May-08	09-Jun-10	35134.17	=""	="Volvo Commericial Vehicles"	12-May-08 03:43 PM	

+="CN79855"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	30-Nov-07	30888.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:44 PM	

+="CN79865"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	15-Feb-08	28-Apr-08	38401.25	=""	="MS INSTRUMENTS PLC"	12-May-08 03:45 PM	

+="CN79889"	"02-23990631JUL07 QANTAS STATEMENT ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79892"	"PAYMENT TO OFFICAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	12-May-08	="Project management"	14-Mar-08	30-Jun-10	38741.03	=""	="MARITIME SURVEILLANCE ADVISOR"	12-May-08 03:46 PM	

+="CN79893"	"SECURITY CHECKS"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	33300.00	=""	="AUSTRALIAN FEDERAL POLICE"	12-May-08 03:46 PM	

+="CN79898"	"BASELINE CONFIGURATION DOCUMENTATION"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Mar-08	16-May-08	33000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 03:47 PM	

+="CN79906"	"HMAS Huon QANTAS Invoice JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	17-Mar-08	38717.47	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:47 PM	

+="CN79907"	"Hand held Vector Network and Spectrum Analyser"	="Defence Materiel Organisation"	12-May-08	="Measuring and observing and testing instruments"	14-Feb-08	14-Mar-08	35659.12	=""	="ANRITSU"	12-May-08 03:47 PM	

+="CN79925"	"TSA 2008 Technical Support Agreement (TSA) between CAE Inc."	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	28-Feb-08	36290.78	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79929"	"TSA 2006 TECHNICAL SUPPORT AGREEMENT (TSA) extension BETWEE"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	31-May-08	35068.34	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79932"	"RMC carwash"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	30750.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:49 PM	

+="CN79944"	"Cartridges 25mm High Explosive Incendiary - Traver De-linking, Breakdown, Propellant Sampling and Tr"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	25-May-08	33258.50	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 03:50 PM	

+="CN79958"	"CONSULTANCY"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	38940.00	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 03:52 PM	

+="CN79960"	"PC9 SPARES"	="Department of Defence"	12-May-08	="Aircraft equipment"	27-Mar-08	29-Sep-08	32590.01	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:52 PM	

+="CN79987"	"02-239906 31JUL07 ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:55 PM	

+="CN79997"	"APS Position Advertising - SRG"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Apr-08	30-Jun-08	38500.00	=""	="HMA BLAZE PTY LTD"	12-May-08 03:56 PM	

+="CN80019"	"MISC ITEMS FOR CAMP TERENDAK"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	25-Mar-08	01-Jun-08	38755.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:58 PM	

+="CN80021"	"IT SOFTWARE MAINTENANCE RENEWAL"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	30-Nov-08	31493.80	=""	="KNOWLEDGE PARTNERS PTY LTD"	12-May-08 03:58 PM	

+="CN80032"	"FFG Canteen Power Supply Investigation and Develop  Installation Specification"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	35997.20	=""	="THALES AUSTRALIA"	12-May-08 03:58 PM	

+="CN80045"	"Annual Maintenance"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	06-Feb-08	01-Apr-08	36080.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 03:59 PM	

+="CN80065"	"Scaffolding"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Apr-08	20-Jun-08	30800.00	=""	="NO BOLT OPERATIONS PTY LTD"	12-May-08 04:01 PM	

+="CN80094"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	31-Oct-08	33112.03	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:02 PM	

+="CN80109"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH DISBURSEMENTS-ANTICIPATED COST OF AUSTRALIAN DOMES"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-11	33000.00	=""	="***USE 1079487***"	12-May-08 04:03 PM	

+="CN80111"	"4516.13 CONDUCT ELECTRICAL SURVEY ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	29-Feb-08	36365.45	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:03 PM	

+="CN80125"	"Payment of Artwork & Prep Files"	="Department of Defence"	12-May-08	="Office supplies"	10-Apr-08	24-Apr-08	35208.80	=""	="DOCKLANDS PRESS PTY LTD"	12-May-08 04:04 PM	

+="CN80131"	"LUMPSUM THROUGH FREIGHT FROM KONGSBERG NORWAY TO D AGREEMENT ASAMENDED BY EMAIL LETTERS DAYED 23/8/0"	="Department of Defence"	12-May-08	="Naval weapons"	11-Dec-07	28-Feb-08	30737.39	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 04:04 PM	

+="CN80143"	"Site Inspections of RFID Infrastructure"	="Department of Defence"	12-May-08	="Computer services"	10-Dec-07	30-Jun-08	30553.52	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 04:05 PM	

+="CN80148"	"FREIGHT"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Dec-07	30-Jun-08	36300.00	=""	="RLM PTY LTD"	12-May-08 04:05 PM	

+="CN80151"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	10-Apr-08	01-Dec-08	32906.50	=""	="PHILLIPS FOX SYDNEY"	12-May-08 04:05 PM	

+="CN80154"	"QANTAS  DEC07 114MCRU"	="Department of Defence"	12-May-08	="Travel facilitation"	30-Nov-07	03-Mar-08	32290.08	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:06 PM	

+="CN80155"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:06 PM	

+="CN80182"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	05-Feb-08	29-Feb-08	30222.29	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:09 PM	

+="CN80191"	"Certification"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Nov-07	30-Jun-08	31883.29	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 04:09 PM	

+="CN80198"	"Dell Computer Equipment for JEWOSU"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	14-Jan-08	30746.12	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:10 PM	

+="CN80246"	"This Purchase Order is raised to procure items for the CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	35603.20	=""	="RFD (AUSTRALIA) PTY LTD"	12-May-08 04:13 PM	

+="CN80249"	"PROVISION OF PSP"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	05-Feb-08	31-Mar-08	38500.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:14 PM	

+="CN80254"	"UWTR fibre optic wet end investigation activity"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	31-Mar-08	31897.80	=""	="L-3 COMMUNICATIONS MARIPRO INC"	12-May-08 04:14 PM	

+="CN80258"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	29-Feb-08	33437.80	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 04:15 PM	

+="CN80263"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	15-May-08	34420.10	=""	="UNIVERSITY OF WESTERN SYDNEY"	12-May-08 04:15 PM	

+="CN80264"	"Fairing Assembly and Spring, Flat and Seal, Leading Edge"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	06-Feb-08	15-Feb-08	30611.26	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 04:15 PM	

+="CN80268"	"High speed video aquisition system"	="Department of Defence"	12-May-08	="Photographic or filming or video equipment"	20-Nov-07	30-Nov-07	32744.80	=""	="TOTAL TURNKEY SOLUTIONS"	12-May-08 04:16 PM	

+="CN80273"	"ROAD CHTR EX DUGONG"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	21-Nov-07	30-Nov-07	34100.00	=""	="PDL TOLL"	12-May-08 04:16 PM	

+="CN80276"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	32114.95	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:16 PM	

+="CN80289"	"repairs & mods to Launch and Recovery Vehicle"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	30750.08	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:17 PM	

+="CN80291"	"DDP FOR LPA HANGER FIRE DETECTOR SYSTEM"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Apr-08	27-Jun-08	34650.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:17 PM	

+="CN80313"	"VEHICLE LEASE FEB 08 - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	25-Feb-08	11-Mar-08	38447.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:19 PM	

+="CN80320"	"CHANGE MANAGEMENT SUPPORT TO HEAQUARTERS"	="Department of Defence"	12-May-08	="Management advisory services"	20-Nov-07	21-Nov-07	38767.44	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 04:20 PM	

+="CN80339"	"CONSTUCTION  SECURE VIDEO CONFRENCE ROOM BUTT"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Jan-08	04-Mar-08	38580.31	=""	="NAHUM CONSTRUCTION AND RENOVATION"	12-May-08 04:21 PM	

+="CN80352"	"Use of Exisitng ASP Contract. Auto Emergy Lighting"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	20-Dec-07	16-Feb-08	35302.06	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:22 PM	

+="CN80353"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	11-Sep-08	32423.48	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:23 PM	

+="CN80356"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	30-Jun-08	34584.05	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:23 PM	

+="CN80364"	"Sound Quality Head & Torso Simulator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	16-May-08	34908.06	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:23 PM	

+="CN80397"	"4516.20 CONDUCT ELECTRICAL SURVEY HMAS PERTH THERMOGRAPHIC SYSTEM & PROVIDE OPEN & CLOSE REP"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	32122.20	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:25 PM	

+="CN80411"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	03-Jan-08	21-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:25 PM	

+="CN80414"	"ELECTRICAL CONNECTIONS (cables, connectors, dust cap)."	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	20-Mar-08	39185.30	=""	="DKSH AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80422"	"supply of milk wbta"	="Department of Defence"	12-May-08	="Milk and butter products"	16-Jan-08	30-Jun-08	31678.99	=""	="PAULS LIMITED"	12-May-08 04:26 PM	

+="CN80427"	"TARGET RADAR"	="Department of Defence"	12-May-08	="Naval weapons"	20-Dec-07	17-Mar-08	36922.26	=""	="ENGINEERING CONTROL SUPPLIES LIMITE"	12-May-08 04:26 PM	

+="CN80446"	"PRESERVATION OF MMR HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jan-08	08-Feb-08	36359.41	=""	="ALPHABLAST"	12-May-08 04:27 PM	

+="CN80466"	"2270 Sound Level Meter & accessories"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	05-May-08	39195.20	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:28 PM	

+="CN80467"	"Shallow Water Landing Frame"	="Defence Materiel Organisation"	12-May-08	="Fabricated plate assemblies"	11-Feb-08	30-Jun-08	34870.00	=""	="STRUCTURAL MARINE"	12-May-08 04:28 PM	

+="CN80486"	"Install local exhaust temperature probes. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	30-Mar-08	32841.60	=""	="MAN DIESEL AUSTRALIA PTY LTD"	12-May-08 04:30 PM	

+="CN80488"	"Engineer for EROC support of trainig and questions"	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	01-Feb-08	39048.90	=""	="C4I PTY LTD"	12-May-08 04:30 PM	

+="CN80489"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36956.70	=""	="ADVITECH PTY LTD"	12-May-08 04:30 PM	

+="CN80493"	"LPA SHIPS SUPPLY OF COUGARNET INTERFACE CABLES4"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Apr-08	23-Jun-08	30536.00	=""	="EYLEX PTY LTD"	12-May-08 04:31 PM	

+="CN80501"	"Prototype Distribution Boxes"	="Department of Defence"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	20-Dec-07	31-Jan-08	36124.00	="RFT E1-203863"	="HEINEMANN ELECTRICAL AUST PTY LTD"	12-May-08 04:31 PM	

+="CN80508"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L750"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	07-Feb-08	30-Jun-08	37390.52	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:32 PM	

+="CN80520"	"Contractor discussions for the range flght termina tion system"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Feb-08	30-Jun-08	38277.36	=""	="SYSTEM PLANNING CORPORATION"	12-May-08 04:33 PM	

+="CN80527"	"AIRCRAFT MAINTENANCE SUPPORT - RENOVATION OF SQN WORKSHOP FACILITY"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	20-Dec-07	29-Feb-08	32558.84	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:33 PM	

+="CN80544"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	12-May-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:34 PM	

+="CN80564"	"4516.37 - CONDUCT ELECTRICAL SURVEY HMAS ARUNTA ELECTRICAL SYSTEM"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36914.46	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:35 PM	

+="CN80575"	"HONEYWELL FMZ SERIES (FLIGHT MANAGEMENT SERIES) - SERVICE FEE FOR AIRCRAFTS/SIMULATORS."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	31-Oct-08	36868.54	=""	="HONEYWELL AIR TRANSPORT - PHOENIX"	12-May-08 04:35 PM	

+="CN80636"	"Purchase Order raised to procure Breakdown Spares Valves that have been shipped to OEM buy RBE for r"	="Department of Defence"	12-May-08	="Hydraulic systems and components"	08-Jan-08	31-May-08	33000.00	=""	="ROSEBANK ENGINEERING"	12-May-08 04:39 PM	

+="CN80685"	"PROCUREMENT QTY 8 MOBILE kITCHEN TRAILERS"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	20-Dec-07	11-Jan-08	35689.50	=""	="BUILT TOUGH TRAILERS"	12-May-08 04:41 PM	

+="CN80688"	"Defence CIO Group Annual maintenance fee for DRMS"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	30-Jun-08	33000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:42 PM	

+="CN80722"	"Inner Container"	="Department of Defence"	12-May-08	="Containers and storage"	20-Dec-07	09-Oct-08	37884.00	=""	="ASP PLASTICS PTY LTD"	12-May-08 04:43 PM	

+="CN80739"	"Carl Gustaf Spares"	="Department of Defence"	12-May-08	="Firearms"	04-Apr-08	01-Dec-08	35455.17	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 04:44 PM	

+="CN80742"	"MAINTENANCE CONTRACT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	03-Apr-08	09-Jan-11	33893.92	=""	="INTERSOFT ELECTRONICS NV"	12-May-08 04:44 PM	

+="CN80745"	"WTR in service support"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	31897.80	=""	="ACROAMATICS INC"	12-May-08 04:45 PM	

+="CN80757"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	22-Feb-08	30-Jun-08	35170.00	=""	="DEACONS"	12-May-08 04:45 PM	

+="CN80789"	"RE AUTHORING AAP7213.006-2-WDM-000"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-May-08	36522.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:47 PM	

+="CN80801"	"DTS 69 Provision of TADRS Technical Support"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	30-May-08	35014.77	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:47 PM	

+="CN80810"	"DELIVERY INTRO TO SYSTEMS ENGINEERING TRAINING FOR DMO GRADUATES"	="Department of Defence"	12-May-08	="Medical training and education supplies"	04-Apr-08	30-Jun-08	35500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-May-08 04:48 PM	

+="CN80813"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	28-May-08	38500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80827"	"Computer equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	35517.59	=""	="XSI DATA SOLUTIONS PTY LTD"	12-May-08 04:49 PM	

+="CN80835"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Alternative educational systems"	23-Feb-08	30-Jun-08	32934.00	=""	="SUN MICROSYSTEMS"	12-May-08 04:49 PM	

+="CN80845"	"Test 150 CA/DA clusters and provide a report"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	18-Dec-07	20-Feb-08	37102.12	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:50 PM	

+="CN80848"	"Use of existing ASP Contract - ECP for Galley Fire fighting system"	="Department of Defence"	12-May-08	="Fire fighting equipment"	29-Jan-08	30-Apr-08	31831.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:50 PM	

+="CN80850"	"STOCK FOREEND DUAL SWITCH"	="Department of Defence"	12-May-08	="Firearms"	08-Apr-08	20-Jun-08	30938.85	=""	="LASER PRODUCTS"	12-May-08 04:50 PM	

+="CN80859"	"MIS928 - DL360 Power Consumption Rectification"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	39901.95	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80891"	"HMAS PERTH URDEF 36/07 - REPLACE AND TEST ESM BITE CABLES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	33000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80900"	"Computor Equipment"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	28-Mar-08	34000.00	=""	="MESSAGES ON HOLD"	12-May-08 04:52 PM	

+="CN80903"	"HMAS PERTH URDEFS 6,78 AND 82/06"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	38500.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80932"	"Extended Warrnty Services"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	27-Feb-08	20-Mar-08	30697.92	=""	="ARION SYSTEMS PTY LTD"	12-May-08 04:53 PM	

+="CN80965"	"DESIGN FOR TOB LAN SSERVER RM HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	12-Mar-08	39736.84	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80968"	"The Purchase of Conversion Software to convert Netvantage Data into OPNET Data - Quote# 20080066"	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	30-Apr-08	30800.00	=""	="TENFOLD NETWORK SOLUTIONS"	12-May-08 04:56 PM	

+="CN80986"	"4 Heavy Duty 7 x 5 Off Road Box Trailers"	="Defence Materiel Organisation"	12-May-08	="Vehicle bodies and trailers"	27-Feb-08	30-Apr-08	30976.00	=""	="CLASSIC TRAILERS PTY LTD"	12-May-08 04:57 PM	

+="CN81008"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	31465.69	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:58 PM	

+="CN81034"	"COMPLEX PROCUREMENT TRG"	="Defence Materiel Organisation"	12-May-08	="Business administration services"	26-Feb-08	09-May-08	34251.33	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 05:00 PM	

+="CN81039"	"M548 Box"	="Department of Defence"	12-May-08	="Packaging materials"	08-Apr-08	30-Jun-08	31233.51	=""	="PENTARCH PTY LTD"	12-May-08 05:00 PM	

+="CN81057"	"berthage for HMAS LEEUWIN maintenance period"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	31475.73	=""	="AIMTEK PTY LTD"	12-May-08 05:01 PM	

+="CN81066"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Feb-08	28-Aug-08	30725.58	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:01 PM	

+="CN81098"	"arm assy"	="Department of Defence"	12-May-08	="Aircraft equipment"	31-Jan-08	01-Mar-09	38034.38	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:03 PM	

+="CN81118"	"Replace Fan Coil Unit HMAS SYDNEY"	="Department of Defence"	12-May-08	="Manufacturing support services"	31-Jan-08	30-Jun-08	31143.20	=""	="ENVIROAIR PTY LTD"	12-May-08 05:03 PM	

+="CN81119"	"TECHNICAL ASSISTANCE IN DARWIN"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	31287.37	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81122"	"MAG58 BOX INSERT PAINTED"	="Department of Defence"	12-May-08	="Gun systems"	01-Feb-08	09-May-08	31581.00	=""	="THALES AUSTRALIA"	12-May-08 05:04 PM	

+="CN81127"	"SURVEY OF RADAR TOWERS"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	36376.79	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:04 PM	

+="CN81136"	"Computer Equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	14-Mar-08	37931.75	=""	="SUN MICROSYSTEMS"	12-May-08 05:04 PM	

+="CN81137"	"Technical advice"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	15-Jun-08	38500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:04 PM	

+="CN81152"	"Electrical Cable Assembly Set Procurement from Technical Services Laboratory Inc"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	19-Feb-08	13-Apr-08	38680.55	=""	="TECHNICAL SERVICES LABORATORY INC"	12-May-08 05:05 PM	

+="CN81165"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	19-Dec-07	25-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:05 PM	

+="CN81167"	"Modifications to LRV Contract E1-203873"	="Department of Defence"	12-May-08	="Truck tractors"	26-Nov-07	24-Dec-07	34060.88	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:05 PM	

+="CN81174"	"MOAS OBSOLESCENCE MONITORING PROGRAM"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	01-Apr-08	35662.44	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:06 PM	

+="CN81178"	"Earned value management Support for MRH90 Training Device Acquisition"	="Department of Defence"	12-May-08	="Aircraft"	01-Feb-08	30-Jun-08	36184.62	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:06 PM	

+="CN81179"	"lloyds classification fees"	="Department of Defence"	12-May-08	="Environmental control systems"	26-Nov-07	31-Dec-07	39973.08	=""	="AIMTEK PTY LTD"	12-May-08 05:06 PM	

+="CN81204"	"Field Monitoring System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	19-Feb-08	18-Apr-08	30162.00	=""	="FARADAY PTY LTD"	12-May-08 05:07 PM	

+="CN81205"	"Use of Exisitng ASP Contract. Supply of Foam"	="Department of Defence"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	18-Dec-07	04-Feb-08	36506.88	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:07 PM	

+="CN81214"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	23-Jan-08	27-Sep-08	39133.37	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:08 PM	

+="CN81215"	"Adhoc Purchases for repairs"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	23-Nov-07	23-Nov-07	31967.32	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:08 PM	

+="CN81217"	"Part 4 Task 070 LSTU - USD PAYMENT"	="Defence Materiel Organisation"	12-May-08	="Launch vehicles and rockets"	19-Feb-08	12-Sep-08	36715.43	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:08 PM	

+="CN81249"	"load bank for hydrograhic ships"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	28-Feb-08	30522.57	=""	="AIMTEK PTY LTD"	12-May-08 05:09 PM	

+="CN81259"	"MANUFACTURE OF CARL GUSTAF MK3 FIRING MOUNT"	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	31-Jan-08	30250.00	=""	="ABU ENGINEERING PTY LTD"	12-May-08 05:10 PM	

+="CN81263"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	23-Nov-07	28-Feb-08	34099.00	=""	="HAWKER PACIFIC PTY LTD"	12-May-08 05:10 PM	

+="CN81269"	"Projectile 30mm FRED"	="Department of Defence"	12-May-08	="Explosive materials"	19-Dec-07	24-Apr-08	38115.00	=""	="REFINED TOOLING PTY LTD"	12-May-08 05:10 PM	

+="CN81278"	"Repairs of Weatherhaven Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	23-Jan-08	31-Mar-08	39292.00	=""	="G H VARLEY PTY LTD"	12-May-08 05:10 PM	

+="CN81289"	"MANIFOLD ASSY"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Feb-08	01-Dec-08	38223.52	=""	="ROLLS - ROYCE PLC"	12-May-08 05:11 PM	

+="CN81290"	"MAJOR INSPECTION OF TRUCK AIRCRAFT SIDE LOADING/UNLOADING (TASLU)"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	23-Jan-08	18-Mar-08	39441.60	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:11 PM	

+="CN81298"	"develop a Detailed Design Package for installation of MVIS on HMAS Sydney"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	28-Apr-08	38610.00	=""	="OPERATIONAL SOLUTIONS"	12-May-08 05:11 PM	

+="CN81312"	"Travel for UK MOD staff"	="Department of Defence"	12-May-08	="Travel facilitation"	22-Jan-08	30-Jun-08	31512.60	=""	="UK MINISTRY OF DEFENCE"	12-May-08 05:12 PM	

+="CN81317"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	02-Jan-08	39156.70	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 05:12 PM	

+="CN81318"	"Search Lights, Dual Mode"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	22-Jan-08	07-Jul-08	31974.99	=""	="LUMINATOR HOLDING LP"	12-May-08 05:12 PM	

+="CN81320"	"LEASE OF FOUR VEHICILES -SHORT TERM"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Nov-07	31-Dec-08	36352.97	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81326"	"PROMOTIONAL GEAR"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	18-Feb-08	33000.00	=""	="BRANDNET PTY LTD"	12-May-08 05:13 PM	

+="CN81328"	"Hose Ass, Air Breathing"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	03-Jul-08	38396.66	=""	="BAI INC"	12-May-08 05:13 PM	

+="CN81332"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Specialty aircraft"	21-Feb-08	30-Mar-08	36453.00	=""	="FLIGHT DATA SYSTEMS PTY LTD"	12-May-08 05:13 PM	

+="CN81358"	"Extended support to Nexus"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	28-Nov-07	18-Jan-08	33874.50	=""	="KAZ GROUP PTY LTD"	12-May-08 05:14 PM	

+="CN81383"	"Technical Services"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	22-Feb-08	30-Apr-08	36170.33	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:16 PM	

+="CN81392"	"Fit Assessment of Combat Boots"	="Defence Materiel Organisation"	12-May-08	="Footwear"	22-Feb-08	25-Feb-08	34320.00	=""	="ESSENTIAL FOOTWEAR INTERNATIONAL"	12-May-08 05:16 PM	

+="CN81404"	"4516.26 CONDUCT THERMO SURVEY OF WARRAMUNGA 29 MAR -11 APR PROVIDE AN OPENING & CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Apr-08	33353.98	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 05:17 PM	

+="CN81429"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	31780.34	=""	="C4I PTY LTD"	12-May-08 05:18 PM	

+="CN81433"	"4553.02 PROCUREMENT OF TRAILER DOLLY"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	31-Jan-08	30800.00	=""	="HAULMARK TRAILERS"	12-May-08 05:18 PM	

+="CN81440"	"ENGAGEMENT OF NOVARE PSP"	="Defence Materiel Organisation"	12-May-08	="Published Products"	20-Feb-08	30-Jun-08	31453.95	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:19 PM	

+="CN81449"	"Supply of Software, Software Licences, Training & Support for tender Evaluation Tool"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	38000.00	=""	="EVALUA PTY LTD"	12-May-08 05:19 PM	

+="CN81466"	"6 Months hire of Furniture for FFGSPO leased Tender Evaluation office"	="Department of Defence"	12-May-08	="Military watercraft"	25-Jan-08	31-Jul-08	37494.60	=""	="EMERALD HILL ABSOLUTE OFFICE CENTRE"	12-May-08 05:20 PM	

+="CN81476"	"MOTOR CONTROL"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	21-Feb-08	25-May-08	37192.83	=""	="CAE INC"	12-May-08 05:21 PM	

+="CN81492"	"Use of Exisitng ASP Contract.- ECP for Installatio of Sewage Syst Isolation Valve"	="Defence Materiel Organisation"	12-May-08	="Water and wastewater treatment supply and disposal"	20-Feb-08	23-May-08	35480.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:23 PM	

+="CN81527"	"2008 DMO GRADUATE INDUCTION TRAINING"	="Department of Defence"	12-May-08	="Medical training and education supplies"	24-Jan-08	31-Mar-08	39468.00	=""	="DEAKINPRIME"	12-May-08 05:25 PM	

+="CN81531"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	30022.30	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:26 PM	

+="CN81536"	"CONTRACT OF STANDING OFFER NUMBER:  LEA-CM-2008-00 LEA-CM-2008-003"	="Defence Materiel Organisation"	12-May-08	="Audio and visual presentation and composing equipment"	21-Apr-08	30-Jun-08	33000.00	=""	="EVENTRA PTY LTD"	12-May-08 05:26 PM	

+="CN81553"	"MHC MDV TETHER CONNECTION UPGRADE DETAILED DESIGN"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	29-Feb-08	32590.84	=""	="THALES AUSTRALIA"	12-May-08 05:27 PM	

+="CN81599"	"BIPOD AND ADAPTORS"	="Defence Materiel Organisation"	12-May-08	="Light weapons and ammunition"	18-Apr-08	02-Aug-08	32628.26	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 05:31 PM	

+="CN81600"	"DEFECT INVESTIGATION"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	12-Dec-07	12-Dec-07	39588.02	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:31 PM	

+="CN81601"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	20-Oct-08	30668.06	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:31 PM	

+="CN81603"	"Repair of Fibre Optics"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	18-Apr-08	30-Apr-08	37356.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81651"	"FIT FOR PURPOSE ASSESSMENT OF ESF GST TRAILER"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	17-Dec-07	13-Feb-08	36669.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:37 PM	

+="CN81671"	"FILTER ELEMENT"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	14-Dec-07	25-Jul-08	35677.56	=""	="HONEYWELL INTERNATIONAL INC"	12-May-08 05:40 PM	

+="CN81678"	"ANTENNA"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	15-Dec-07	20-Dec-07	39744.66	=""	="SHAKESPEARE COMPANY LLC"	12-May-08 05:41 PM	

+="CN81686"	"Computer switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	38699.55	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 05:42 PM	

+="CN81699"	"Attn: Tony Dzelalija Your quotation 711228860500 dated 05 December 2007"	="Department of Defence"	12-May-08	="Heating and ventilation and air circulation"	07-Dec-07	27-Dec-07	32670.00	=""	="J BLACKWOOD & SON LTD"	12-May-08 05:43 PM	

+="CN81701"	"Provision of EMA Work Package Documentation Supp- ort FY 2007/08"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	30-Jun-08	30380.41	=""	="THALES AUSTRALIA"	12-May-08 05:44 PM	

+="CN81707"	"prepare Installation Design Package- CHAMELEON Data Acquisition Unit SHIPALT 480 - HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	31-Mar-08	39810.00	=""	="THALES AUSTRALIA"	12-May-08 05:45 PM	

+="CN81709"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	28-Feb-08	38852.66	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:45 PM	

+="CN81727"	"P2724-001 UPGRADE OF WIND SPEED AND DIRECTION"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	30-Dec-07	30609.01	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:47 PM	

+="CN81734"	"PROCUREMENT QTY 8 WINCHES"	="Department of Defence"	12-May-08	="Electrical components"	07-Dec-07	21-Dec-07	30932.00	=""	="ATECO EQUIPMENT"	12-May-08 05:48 PM	

+="CN81750"	"project phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	18-Jan-08	39761.30	=""	="JACOBS AUSTRALIA"	12-May-08 05:50 PM	

+="CN81752"	"Teamcenter Consultancy/Professional Services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-May-08	33000.00	=""	="PLM SERVICES PTY LTD"	12-May-08 05:50 PM	

+="CN81759"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Transportation and Storage and Mail Services"	02-Apr-08	02-Apr-08	31878.05	=""	="Cabcharge Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81766"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	25-Mar-08	25-Mar-08	35866.01	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81775"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	01-Mar-08	01-Mar-08	32698.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81781"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Mar-08	17-Mar-08	32564.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81783"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	14-Apr-08	14-Apr-08	31438.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM 

--- /dev/null
+++ b/admin/partialdata/09Jan2008to13Jan2008valto.xls
@@ -1,1 +1,229 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN54430"	"Renewal of Insurance policy for staff members at London post"	="Austrade"	09-Jan-08	="Insurance and retirement services"	02-Sep-07	01-Sep-08	11700.00	=""	="BUPA Insurance Limited"	09-Jan-08 09:41 AM	

+="CN54431"	"The delivery of PTS course in Frankfurt and Dubai"	="Austrade"	09-Jan-08	="Education and Training Services"	01-Nov-07	16-Nov-07	12800.00	=""	="Yu ShihTao Kung Fu"	09-Jan-08 09:41 AM	

+="CN54432"	"Brand Strategy Consultancy and indigenous graphic directions"	="Austrade"	09-Jan-08	="Management advisory services"	29-Nov-07	24-Dec-07	14135.00	=""	="Keystone Corporate Positioning Pty Ltd"	09-Jan-08 09:41 AM	

+="CN54433"	"Implementation of CRM benchmarking recommendations"	="Austrade"	09-Jan-08	="Management advisory services"	08-Oct-07	30-Jun-08	88000.00	=""	="Macquarie Marketing Group"	09-Jan-08 09:41 AM	

+="CN54434-A1"	"Domestic and international mail freight services"	="Austrade"	09-Jan-08	="Mail and cargo transport"	18-Dec-07	17-Apr-11	5000000.00	=""	="DHL International (Aust) Pty Limited"	09-Jan-08 09:41 AM	

+="CN54435"	"Project management, business analyst and Microsoft CRM expertise"	="Austrade"	09-Jan-08	="Management advisory services"	12-Nov-07	03-Dec-07	124829.00	=""	="Accenture Australia Holdings Pty Ltd"	09-Jan-08 09:41 AM	

+="CN54438"	"Telecommunications Services"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	17-Dec-07	31-Jan-08	22594.13	=""	="Stratos"	09-Jan-08 09:56 AM	

+="CN54439"	"Eucla R/O System Upgrade"	="Bureau of Meteorology"	09-Jan-08	="General building construction"	03-Jan-08	31-Jan-08	110000.00	=""	="Department of Agriculture & Food"	09-Jan-08 09:56 AM	

+="CN54440"	"Job Ads for Water Division - Hydrology Roles"	="Bureau of Meteorology"	09-Jan-08	="Marketing and distribution"	21-Dec-07	31-Dec-07	25662.54	=""	="HMA BLAZE PTY LTD"	09-Jan-08 09:56 AM	

+="CN54441"	"Job Ads for Water Division - Assistant Director Roles and Executive Roles"	="Bureau of Meteorology"	09-Jan-08	="Marketing and distribution"	21-Dec-07	31-Dec-07	38029.13	=""	="HMA BLAZE PTY LTD"	09-Jan-08 09:56 AM	

+="CN54442"	"VEHICLE LEASES JAN 08"	="Bureau of Meteorology"	09-Jan-08	="Motor vehicles"	02-Jan-08	31-Jan-08	12017.18	=""	="Leaseplan Australia"	09-Jan-08 09:56 AM	

+="CN54443"	"Telecommunications Services"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	03-Jan-08	31-Jan-08	11981.89	=""	="Telstra  (ID No. 740)"	09-Jan-08 09:56 AM	

+="CN54444"	"Telephone A/c"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	03-Jan-08	03-Jan-08	16478.35	=""	="Telstra  (ID No. 740)"	09-Jan-08 09:56 AM	

+="CN54445"	"Development of Operational Concept for Deep Ocean Tsunami Detection System"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	19360.00	=""	="SMS Management & Technology"	09-Jan-08 09:57 AM	

+="CN54446"	"Professional Engineering Services"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	12210.00	=""	="Signal Processing Know-How P/L"	09-Jan-08 09:57 AM	

+="CN54447"	"Professional Engineering Services"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-08	10421.40	=""	="Signal Processing Know-How P/L"	09-Jan-08 09:57 AM	

+="CN54448"	"ASLOS Phase 1 Point Murat Exmouth"	="Bureau of Meteorology"	09-Jan-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	31-Jan-08	68462.90	=""	="Marine & Civil Construction Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54449"	"Supply of adar Sea Level Sensor"	="Bureau of Meteorology"	09-Jan-08	="Information Technology Broadcasting and Telecommunications"	02-Jan-08	31-Dec-09	88748.00	=""	="Vega Australia Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54450"	"SAP Professional Licences Qty 10"	="Bureau of Meteorology"	09-Jan-08	="Computer services"	02-Jan-08	31-Jan-08	51370.00	=""	="Sap Australia Pty Ltd."	09-Jan-08 09:57 AM	

+="CN54451"	"Poweredge Rack-mount Servers Qty 3"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	14-Jan-08	26400.00	=""	="Dell Australia  Pty Ltd"	09-Jan-08 09:57 AM	

+="CN54452"	"Cisco IP Handsets & Licences Qty 50"	="Bureau of Meteorology"	09-Jan-08	="Telecommunications media services"	02-Jan-08	02-Jan-08	25597.55	=""	="Cerulean Solutions LTD"	09-Jan-08 09:57 AM	

+="CN54453"	"Supermicro Server"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	15917.00	=""	="DIGICOR PTY LTD"	09-Jan-08 09:58 AM	

+="CN54454"	"One GB RAM Qty 100"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	12291.40	=""	="City Software Pty Ltd"	09-Jan-08 09:58 AM	

+="CN54455"	"19" Samsung Monitors Qty 40"	="Bureau of Meteorology"	09-Jan-08	="Computer Equipment and Accessories"	02-Jan-08	07-Jan-08	12760.00	=""	="City Software Pty Ltd"	09-Jan-08 09:58 AM	

+="CN54456"	"Removalist costs"	="Future Fund Management Agency"	09-Jan-08	="Relocation services"	03-Jan-08	08-Jan-08	17784.00	=""	="Grace Removals"	09-Jan-08 10:12 AM	

+="CN54458"	"Legal advice on employment contract"	="Future Fund Management Agency"	09-Jan-08	="Legal services"	17-Dec-07	17-Dec-07	17600.00	=""	="Clayton Utz"	09-Jan-08 10:21 AM	

+="CN54460"	"Distribution and collection of election material"	="Australian Electoral Commission"	09-Jan-08	="Material handling services"	05-Dec-07	05-Jan-08	14668.50	=""	="Dash Delivery and Courier Service"	09-Jan-08 11:06 AM	

+="CN54466"	"Provision for Services for the relocation of the Computer Room Infrastructure Wing 4"	="Comsuper"	09-Jan-08	="Control cable"	07-Jan-08	13-Feb-08	24500.00	=""	="Intravision The Cabling Specialist"	09-Jan-08 11:30 AM	

+="CN54470-A1"	"Provision of Vocational rehabilitation Services"	="CRS Australia"	09-Jan-08	="Vocational training"	20-Dec-07	20-Dec-07	6244.50	=""	="You're Back at work"	09-Jan-08 11:59 AM	

+="CN54472"	"Variation to the contract for the Provision for Management of Secure Gateway Environment"	="Comsuper"	09-Jan-08	="Software"	13-Dec-06	12-Dec-09	69422.00	=""	="Verizon Business (Cybertrust)"	09-Jan-08 12:13 PM	

+="CN54474"	"Motor Vehicle Parts."	="Department of Defence"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	39958.60	=""	="LandRover Australia"	09-Jan-08 12:28 PM	

+="CN54475"	" Qty: 12 x 3-Pt Harness Assembly Kits to outfit the entire AS350BA Fleet. NSN: 1560-14-550-3007, 'Plate, Structural, Aircraft'. "	="Defence Materiel Organisation"	09-Jan-08	="Military rotary wing aircraft"	06-Dec-07	04-Feb-08	20263.19	=""	="AUSTRALIAN AEROSPACE, LTD"	09-Jan-08 12:35 PM	

+="CN54476"	"Motor Vehicle Parts."	="Department of Defence"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	14165.97	=""	="Volvo Commercial Vehicle Albury"	09-Jan-08 12:39 PM	

+="CN54477"	"5 x Universal joint Shaft assemblies for Titan Fire Trucks"	="Defence Materiel Organisation"	09-Jan-08	="Universal joints"	01-Nov-07	30-Apr-08	15972.00	="FV7021"	="Drivetrain Australia"	09-Jan-08 01:27 PM	

+="CN54478"	"IFF Test Set"	="Defence Materiel Organisation"	09-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-Dec-07	14-Apr-09	283580.00	=""	="VICOM"	09-Jan-08 01:31 PM	

+="CN54485"	"Multimeter P/N: 260-6XLPM"	="Defence Materiel Organisation"	09-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	14-Mar-09	97240.00	=""	="Prodigital p/l"	09-Jan-08 02:21 PM	

+="CN54486"	"Annual maintenance of Questionmark Software"	="Australian Taxation Office"	09-Jan-08	="Software maintenance and support"	01-Jan-08	31-Dec-08	54672.00	=""	="Extec Pacific pty Ltd"	09-Jan-08 02:23 PM	

+="CN54487"	"SOLVENT, DICHLOROFLUOROETHANE"	="Defence Materiel Organisation"	09-Jan-08	="Solvents"	14-Dec-07	23-Jan-08	35617.20	=""	="A-GAS AUSTRALIA PTY LTD"	09-Jan-08 02:28 PM	

+="CN54489-A6"	" 07/2252 - Sofware licence and support "	="Australian Customs and Border Protection Service"	09-Jan-08	="Software"	01-Jul-09	30-Jun-14	1086492.49	=""	="Visual Analysis"	09-Jan-08 02:32 PM	

+="CN54492-A3"	" Lease at Bathurst, NSW  "	="Centrelink"	09-Jan-08	="Lease and rental of property or building"	31-May-06	14-Feb-11	804791.00	=""	="Bolam Property Investments Pty Ltd"	09-Jan-08 02:48 PM	

+="CN54495"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	09-Jan-08	="Anti submarine helicopters"	09-Jan-08	30-Aug-08	13413.02	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	09-Jan-08 02:50 PM	

+="CN54505"	"Construction of shower block"	="Centrelink"	09-Jan-08	="Furniture and Furnishings"	10-Jan-08	21-Feb-08	153365.30	=""	="Solve Project Management Pty Ltd"	09-Jan-08 04:26 PM	

+="CN54507"	"Software Support"	="Australian Electoral Commission"	09-Jan-08	="Software maintenance and support"	21-Jan-08	20-Jan-09	10271.63	=""	="Aegis Software Inc."	09-Jan-08 04:32 PM	

+="CN54508"	"cartridge inflator"	="Defence Materiel Organisation"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Oct-07	14-Jan-08	27720.00	=""	="Aero & Military"	09-Jan-08 04:33 PM	

+="CN54509"	"cover stole omplete"	="Defence Materiel Organisation"	09-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Aug-07	14-Jan-08	49852.00	=""	="LIGHT AIRCRAFT"	09-Jan-08 04:37 PM	

+="CN54512-A1"	"Assistance with structural and functional review"	="Australian Taxation Office"	10-Jan-08	="Organisational structure consultation"	19-Nov-07	31-Jan-08	80088.56	=""	="Workplace Research Associates Pty Ltd"	10-Jan-08 08:35 AM	

+="CN54516-A2"	"M113  MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	09-Jan-08	25-Jun-08	11555.46	=""	="MTU DETROIT DIESEL"	10-Jan-08 09:09 AM	

+="CN54519"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	09-Jan-08	25-Jun-08	28461.91	=""	="MTU DETROIT DIESEL"	10-Jan-08 09:34 AM	

+="CN54521"	"Conduct training within the Geoscience Australia Organic Geochemistry facility on InfoLogic's Gas Chromatography/Mass Spectrometry data processing software"	="Geoscience Australia"	10-Jan-08	="Business and corporate management consultation services"	04-Dec-07	30-Jun-08	11000.00	=""	="Infologic Inc"	10-Jan-08 09:47 AM	

+="CN54522"	"Transcription of data consisting of 745 x 3590 cartridges"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	05-Dec-07	30-Jun-08	82645.37	="2006/3933"	="DataCom IT"	10-Jan-08 09:47 AM	

+="CN54523"	"G2160 Provision of Staff Under Deed of Standing Offer to 30 June 2008 Project Manager Contracts"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	05-Dec-07	30-Jun-08	99000.00	=""	="Peoplebank Australia Ltd"	10-Jan-08 09:47 AM	

+="CN54524"	"1 x Dell Precision 490 Desktop and 8 x 4GB of DIMM Memory"	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	05-Dec-07	18-Dec-07	15133.80	=""	="Dell Australia Pty Ltd"	10-Jan-08 09:47 AM	

+="CN54525"	"Piction Digital Media Exchange Licence"	="Geoscience Australia"	10-Jan-08	="Software"	05-Dec-07	18-Dec-07	47275.00	=""	="Piction.com Pty Ltd"	10-Jan-08 09:47 AM	

+="CN54526"	"Extended Warranty for Nodes"	="Geoscience Australia"	10-Jan-08	="Computer services"	06-Dec-07	14-Dec-07	22496.10	=""	="Anabelle Bits T/as ASI Solutions"	10-Jan-08 09:48 AM	

+="CN54527"	"Training and development of the Timescale Creator Software"	="Geoscience Australia"	10-Jan-08	="Business and corporate management consultation services"	06-Dec-07	30-Jun-08	12000.00	=""	="James Ogg"	10-Jan-08 09:48 AM	

+="CN54528"	"Gold Maintenance for  3 x  V240 Servers"	="Geoscience Australia"	10-Jan-08	="Computer services"	06-Dec-07	17-Dec-07	11828.92	=""	="Sun Microsystems Aust Pty Ltd"	10-Jan-08 09:48 AM	

+="CN54529"	"EI Geobase on Engineering Village (EV) - Subscription Licence 1/1/08 to 31/12/08"	="Geoscience Australia"	10-Jan-08	="Printed publications"	06-Dec-07	31-Dec-08	13881.49	=""	="Elsevier BV"	10-Jan-08 09:48 AM	

+="CN54530"	"Share of costs for Australia-China Mining Seminar in Beijing"	="Geoscience Australia"	10-Jan-08	="Meeting facilities"	07-Dec-07	31-Dec-07	12672.10	=""	="Dept of Industry Tourism & Resources"	10-Jan-08 09:48 AM	

+="CN54531"	"Contract Services - Business Analyst, 16/01 - 30/06/2008"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	100320.00	=""	="Frontier Group Australia Pty Ltd"	10-Jan-08 09:48 AM	

+="CN54532"	"Contract services for Project Manager, 10/12/2007 - 14/04/2008"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	10-Dec-07	30-Apr-08	75240.00	=""	="Frontier Group Australia Pty Ltd"	10-Jan-08 09:48 AM	

+="CN54533"	"Contract Services - Palynological biostratigraphic and palaeoenvironmental analysis of samples from Bight Basin sampling survey SS01/2007. CMC #: G2049"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	10-Dec-07	28-Feb-08	77220.00	=""	="Eric Monteil (TimeMatters Biostratigraphic Services Pty Ltd)"	10-Jan-08 09:48 AM	

+="CN54534"	"Advertisement in the Australia India Business Council 2007"	="Geoscience Australia"	10-Jan-08	="Advertising"	10-Dec-07	24-Dec-07	13145.00	=""	="Palamedia"	10-Jan-08 09:48 AM	

+="CN54535"	"3 x Dell PowerEdge R900 servers"	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	11-Dec-07	24-Dec-07	49500.00	=""	="Dell Australia Pty Ltd"	10-Jan-08 09:49 AM	

+="CN54536"	"Implementation of Antelope 4.9"	="Geoscience Australia"	10-Jan-08	="Business and corporate management consultation services"	11-Dec-07	30-Apr-08	67220.00	="2007/1619"	="Lindquist Consulting Inc"	10-Jan-08 09:49 AM	

+="CN54537"	"WP D 63 Williamstown Special 25K - Production and Supply of Topographic Maps and Data for Defence."	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	11-Dec-07	30-Jun-08	75075.00	=""	="Photo Mapping Services Pty Ltd"	10-Jan-08 09:49 AM	

+="CN54538"	"Contract staff to provide IT infrastructure Solutions Architect from 12 November 2007 to 30 June 2008."	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	12-Dec-07	30-Jun-08	123750.00	=""	="AUREC Pty Ltd"	10-Jan-08 09:49 AM	

+="CN54539"	"G1830 SOE Desktop Provision of Staff Under Deed of Standing Offer"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	12-Dec-07	31-Jan-08	33000.00	="2005/1773"	="AUREC Pty Ltd"	10-Jan-08 09:49 AM	

+="CN54540"	"G2141 SMARTS Specialist Provision of Staff Under Deed of Standing Offer to 24 Dec 2007"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	12-Dec-07	24-Dec-07	41800.00	=""	="Wizard Information Services Pty Ltd (Administrator Appointed) (Receivers & Managers Appointed)"	10-Jan-08 09:49 AM	

+="CN54541"	"Phase kinetic analysis on 2 samples (results to include kinetic file format for Petromod import)"	="Geoscience Australia"	10-Jan-08	="Professional engineering services"	13-Dec-07	30-Jun-08	17000.00	=""	="GeoS4 Gmbh"	10-Jan-08 09:49 AM	

+="CN54542"	"Review of Guidelines and Standards for the Acquisition and Processing of Elevation Data."	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	22000.00	=""	="Sinclair Knight Merz"	10-Jan-08 09:49 AM	

+="CN54543"	"10 x Dell Latitude D830 Laptops"	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	31-Jan-08	18700.00	=""	="Dell Australia Pty Ltd"	10-Jan-08 09:50 AM	

+="CN54544"	"WP D 58 Yampi Field Training Area Special Esat 50K & 100K Digital Data; Deed # G1683D;  CMC # G2216;  TRIM 2007/4043"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	14-Dec-07	30-Nov-08	274780.00	=""	="Photo Mapping Services Pty Ltd"	10-Jan-08 09:50 AM	

+="CN54545"	"WP 1069NSW LPI # 3A � Blackville & Crookwell;  Deed # G1682D;  CMC # G2220;  TRIM 2007/4315"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	14-Dec-07	30-Jun-08	140635.00	=""	="Fugro Spatial Solutions Pty Ltd"	10-Jan-08 09:50 AM	

+="CN54546"	"50 x Optiplex 755 Desktops. 16 x D830 Laptops and 3 x D430 Laptops"	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	26-Dec-07	95068.60	=""	="Dell Australia Pty Ltd"	10-Jan-08 09:50 AM	

+="CN54547"	"Standard maintenance, new ion pump, new ferrofluidic feedthrough and New A10 cables"	="Geoscience Australia"	10-Jan-08	="Computer services"	17-Dec-07	30-Jun-08	17000.00	=""	="Micro-g LaCoste Inc"	10-Jan-08 09:50 AM	

+="CN54548"	"Data"	="Geoscience Australia"	10-Jan-08	="Computer Equipment and Accessories"	17-Dec-07	31-Dec-08	76497.30	=""	="Mapinfo Australia Pty Ltd"	10-Jan-08 09:50 AM	

+="CN54550"	"pmd*CRC Annual report x 400"	="Geoscience Australia"	10-Jan-08	="Printing"	17-Dec-07	31-Jan-08	11383.90	=""	="National Capital Printing NCP"	10-Jan-08 09:50 AM	

+="CN54551"	"Topographic Acceleration Modelling: Northern Tasmania"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	18-Dec-07	31-Dec-07	39413.00	=""	="Windlab Systems Pty Ltd"	10-Jan-08 09:51 AM	

+="CN54552"	"G00856 Quality Control Services for transcription of tapes"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	18-Dec-07	30-Jun-08	44317.70	=""	="GeoCom Services Australia Pty  Ltd"	10-Jan-08 09:51 AM	

+="CN54553"	"RP00923 Transcription consisting of 829 x 3590 cartridges"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	18-Dec-07	30-Jun-08	48378.00	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	10-Jan-08 09:51 AM	

+="CN54554"	"RP00912 Transcription consisting of 593 x 3590 cartridges"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	18-Dec-07	30-Jun-08	52900.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	10-Jan-08 09:51 AM	

+="CN54555"	"Site Licence Agreement Jetstream Geophysical Processing Software"	="Geoscience Australia"	10-Jan-08	="Software"	18-Dec-07	30-Jun-08	24354.00	=""	="Intrepid Geophysics"	10-Jan-08 09:51 AM	

+="CN54549"	"M113  MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	09-Jan-08	25-Jun-08	29753.86	=""	="MTU DETROIT DIESEL"	10-Jan-08 09:51 AM	

+="CN54556"	"Provision of Scanning Electron Microscope"	="Geoscience Australia"	10-Jan-08	="Tools and General Machinery"	18-Dec-07	30-Jun-08	351890.00	="2007/2311"	="JEOL (Australasia) Pty Ltd"	10-Jan-08 09:51 AM	

+="CN54557"	"Thermal conductivity meter"	="Geoscience Australia"	10-Jan-08	="Tools and General Machinery"	18-Dec-07	30-Jun-08	121918.50	=""	="Scientex Pty Ltd"	10-Jan-08 09:51 AM	

+="CN54558"	"Collaborative East Antarctic Marine Census (CEAMARC) Marine science survey program on Australian Antarctic Division Voyage 3 (2007-2008)"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	18-Dec-07	30-Jun-08	47105.30	=""	="James Cook Uni Nth Queensland"	10-Jan-08 09:51 AM	

+="CN54559"	"IDGS to Defence FACC and GA Specification Geodata Toolset"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	20-Dec-07	30-Jun-08	15565.00	=""	="Spatial Vision Innovations Pty Ltd"	10-Jan-08 09:52 AM	

+="CN54560"	"Internal Audit & Related Services. Petroleum & Marine Division"	="Geoscience Australia"	10-Jan-08	="Accounting and auditing"	20-Dec-07	30-Jun-08	39319.50	=""	="Oakton AA Services Pty Ltd"	10-Jan-08 09:52 AM	

+="CN54561"	"WP 1071 NSW LPI # 3B � Narran;"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	21-Dec-07	30-Jun-08	51975.00	=""	="Terranean Mapping Technologies"	10-Jan-08 09:52 AM	

+="CN54562"	"WP 1072 NSW LPI # 3C � Peak Hill;  Deed # G1685D;  CMC # G2219;  TRIM 2007/4315"	="Geoscience Australia"	10-Jan-08	="Temporary personnel services"	21-Dec-07	30-Jun-08	48675.00	=""	="Sinclair Knight Merz"	10-Jan-08 09:52 AM	

+="CN54563"	"Microsoft .NET Consultancy"	="Australian Taxation Office"	10-Jan-08	="Information technology consultation services"	01-Jan-08	30-Mar-08	124800.00	=""	="Microsoft Pty Ltd"	10-Jan-08 10:01 AM	

+="CN54564"	" M113 MTU PARTS "	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	09-Jan-08	25-Jun-08	20912.57	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:09 AM	

+="CN54565"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	26-Jun-08	77746.46	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:14 AM	

+="CN54566"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	26-Jun-08	120653.67	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:19 AM	

+="CN54567"	"Contract Staff - Karen Heath"	="Department of Transport and Regional Services"	10-Jan-08	="Community and social services"	08-Oct-07	08-Apr-08	46200.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	10-Jan-08 10:19 AM	

+="CN54568"	"Legal Services expenditure 6933"	="Department of Transport and Regional Services"	10-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	24137.85	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	10-Jan-08 10:19 AM	

+="CN54569"	"Legal Services Expenditure 6101"	="Department of Transport and Regional Services"	10-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	16280.00	="TRS06/175"	="Clayton Utz Canberra"	10-Jan-08 10:20 AM	

+="CN54570"	"Developer"	="Department of Transport and Regional Services"	10-Jan-08	="Management advisory services"	02-Jan-08	15-Feb-08	39600.00	="T2004/0699"	="SMS Management & Technology"	10-Jan-08 10:20 AM	

+="CN54571"	"Temporary Staff Placement"	="Department of Transport and Regional Services"	10-Jan-08	="Community and social services"	03-Jan-08	28-Mar-08	34650.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	10-Jan-08 10:20 AM	

+="CN54572"	"Advertise 2009 Graduate Recruitment"	="Department of Transport and Regional Services"	10-Jan-08	="Advertising"	10-Oct-07	14-Feb-08	16225.00	="TRS07/402"	="Hobsons Australia Pty Ltd"	10-Jan-08 10:20 AM	

+="CN54575"	"Property management services"	="Department of Transport and Regional Services"	10-Jan-08	="Real estate services"	01-Jan-08	31-Dec-09	803000.00	="TRS03/003"	="Zeckendorf Asset Management"	10-Jan-08 10:20 AM	

+="CN54576"	"Audit of the Mackay Region Area Consultative Committee (MRACC)"	="Department of Transport and Regional Services"	10-Jan-08	="Accounting and auditing"	17-Sep-07	16-Nov-07	16517.77	="TRS06/037"	="WALTER & TURNBULL  PTY LTD"	10-Jan-08 10:20 AM	

+="CN54577"	"EL1 Temporary Project Officer"	="Department of Transport and Regional Services"	10-Jan-08	="Community and social services"	02-Jan-08	25-Jan-08	11427.47	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	10-Jan-08 10:21 AM	

+="CN54578"	"Review of the F3 to M7 Corridor Selection"	="Department of Transport and Regional Services"	10-Jan-08	="Management advisory services"	09-Jan-08	31-Mar-08	156870.76	="TRS05/020"	="BOOZ ALLEN HAMILTON"	10-Jan-08 10:21 AM	

+="CN54579"	".Net  Developer"	="Department of Transport and Regional Services"	10-Jan-08	="Management advisory services"	18-Jul-07	31-Dec-07	16656.75	="T2004/0699"	="SMS Management & Technology"	10-Jan-08 10:21 AM	

+="CN54580"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	10-Jan-08	="Legal services"	08-Jan-08	30-Jun-09	33538.40	="TRS06/175"	="MINTER ELLISON LAWYERS"	10-Jan-08 10:21 AM	

+="CN54574"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	10-Jan-08	="Aircraft"	10-Jan-08	10-Feb-08	38997.50	=""	="Sikorsky Aircraft Australia LTD"	10-Jan-08 10:21 AM	

+="CN54581"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	26-Jun-08	83582.81	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:23 AM	

+="CN54582"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	24-Jul-08	107788.25	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:27 AM	

+="CN54583-A1"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	26-Jun-08	78318.20	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:31 AM	

+="CN54584"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	24-Jul-08	828500.71	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:35 AM	

+="CN54585"	"M113 MTU PARTS"	="Department of Defence"	10-Jan-08	="Armoured fighting vehicles"	10-Jan-08	26-Jun-08	147928.92	=""	="MTU DETROIT DIESEL"	10-Jan-08 10:39 AM	

+="CN54586"	"Annual Maintenance of guardien Software"	="Australian Taxation Office"	10-Jan-08	="Software maintenance and support"	01-Jan-08	31-Dec-08	28000.00	=""	="Information Engineering Technology Ltd"	10-Jan-08 11:02 AM	

+="CN54587"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Jan-08	="Passenger transport"	20-Jul-07	06-Sep-07	25100.00	=""	="COMCAR"	10-Jan-08 11:11 AM	

+="CN54588"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Jan-08	="Passenger transport"	17-Oct-07	19-Oct-07	10700.00	=""	="COMCAR"	10-Jan-08 11:18 AM	

+="CN54591"	"Asset audit"	="Department of Human Services"	10-Jan-08	="Inventory accounting"	18-Jan-08	30-Jan-08	17902.50	=""	="Hardcat Pty Ltd"	10-Jan-08 11:42 AM	

+="CN54593"	"Motor Vehicle Parts."	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	28053.74	=""	="LandRover Australia"	10-Jan-08 01:23 PM	

+="CN54594"	"Motor Vehicle Parts"	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Jan-08	08-Feb-08	12958.55	=""	="LandRover Australia"	10-Jan-08 01:34 PM	

+="CN54596"	"Motor Vehicle Parts."	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Jan-08	08-Feb-08	23599.19	=""	="Mercedes Benz Aust. Pacific"	10-Jan-08 01:38 PM	

+="CN54597"	"Motor Vehicle Parts."	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	15011.10	=""	="Volvo Commercial Vehicle Albury"	10-Jan-08 01:48 PM	

+="CN54599"	"Mainframe Software MIPS Upgrade Fee"	="Australian Taxation Office"	10-Jan-08	="Software maintenance and support"	12-Jan-08	27-Jun-08	78340.49	=""	="Identity Systems Pty Ltd"	10-Jan-08 02:05 PM	

+="CN54600"	"Motor Vehicle Parts."	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	08-Feb-08	41821.67	=""	="LandRover Australia"	10-Jan-08 02:05 PM	

+="CN54603"	"Motor Vehicle Parts"	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jan-08	09-Feb-08	30192.71	=""	="LandRover Australia"	10-Jan-08 02:12 PM	

+="CN54604-A4"	" Provision of Mailroom services for ATO sites through out Australia and provision of additional services. "	="Australian Taxation Office"	10-Jan-08	="Mailing services"	01-Dec-07	30-Nov-12	20010700.00	="06.425"	="Decipha Pty Limited"	10-Jan-08 02:22 PM	

+="CN54606"	"Motor Vehicle Parts."	="Department of Defence"	10-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Jan-08	09-Feb-08	44035.53	=""	="LandRover Australia"	10-Jan-08 02:29 PM	

+="CN54613"	"CPO018305 - Uniforms"	="Australian Customs and Border Protection Service"	10-Jan-08	="Clothing"	20-Dec-07	06-May-08	75900.00	=""	="Trade Import Services"	10-Jan-08 03:17 PM	

+="CN54614"	"CPO018259 - Boat Patrol"	="Australian Customs and Border Protection Service"	10-Jan-08	="Transportation and Storage and Mail Services"	21-Dec-07	21-Dec-07	15934.69	=""	="Bawinanga Aboriginal Corporation"	10-Jan-08 03:18 PM	

+="CN54615"	"CPO018260 - Boat Patrol"	="Australian Customs and Border Protection Service"	10-Jan-08	="Transportation and Storage and Mail Services"	21-Dec-07	21-Dec-07	15912.26	=""	="Bawinanga Aboriginal Corporation"	10-Jan-08 03:18 PM	

+="CN54616"	"07/2523 - Energy Grant Credit Scheme Rebate Claims (CPO01757)"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	19-Jul-07	570316.04	=""	="P&O Maritime Services"	10-Jan-08 03:18 PM	

+="CN54617-A1"	"07/2238 - Security services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	58106.40	=""	="Chubb Electronic Security"	10-Jan-08 03:18 PM	

+="CN54618"	"CPE003920-2 - Supply of Stationery"	="Australian Customs and Border Protection Service"	10-Jan-08	="Office supplies"	01-Dec-07	20-Dec-07	15450.11	=""	="Corporate Express Australia Ltd"	10-Jan-08 03:18 PM	

+="CN54619"	"CPO004144 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	04-Dec-07	30-Jun-08	10122.22	=""	="Dataline Visual Link"	10-Jan-08 03:18 PM	

+="CN54620"	"CPO004140 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	30-Jun-08	10868.00	=""	="Intelligent Surveillance"	10-Jan-08 03:18 PM	

+="CN54621"	"CPO004134 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jul-07	30-Jun-08	13090.00	=""	="Dataline Visual Link"	10-Jan-08 03:18 PM	

+="CN54622"	"CPO018353 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-Jun-08	35045.68	=""	="Dataline Visual Link"	10-Jan-08 03:19 PM	

+="CN54623"	"CPO018352 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	24-Dec-07	30-Jun-08	11924.00	=""	="Intelligent Surveillance"	10-Jan-08 03:19 PM	

+="CN54624"	"CPO018351 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	24-Dec-07	30-Jun-08	22979.00	=""	="Access Control Engineered Systems Pty Ltd"	10-Jan-08 03:19 PM	

+="CN54625"	"07/2468 - Unit Data Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Computer services"	01-Jan-08	30-Nov-11	355000.00	=""	="Lloyds Maritime Intelligence Unit (A Division of Informa PLC)"	10-Jan-08 03:19 PM	

+="CN54626"	"CPO018258 - Conveying System"	="Australian Customs and Border Protection Service"	10-Jan-08	="Storage"	20-Dec-07	20-Feb-08	44000.00	=""	="Conveying Systems Pty Ltd"	10-Jan-08 03:19 PM	

+="CN54627"	"CPO010491 - Security Equipment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	09-May-07	21-Nov-07	23076.00	=""	="NVT Pty Ltd"	10-Jan-08 03:19 PM	

+="CN54628"	"CPE004392-1 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	30-Jun-08	12909.60	=""	="Intelligent Surveillance"	10-Jan-08 03:19 PM	

+="CN54629"	"CPO018530 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-Jun-08	31788.24	=""	="Dataline Visual Link"	10-Jan-08 03:19 PM	

+="CN54630"	"CPE004338-1 - Fitness Assessment"	="Australian Customs and Border Protection Service"	10-Jan-08	="Comprehensive health services"	30-Sep-07	30-Sep-07	26375.25	=""	="David Wilson Solutions Pty Ltd"	10-Jan-08 03:19 PM	

+="CN54631"	"CPE004345-1 - Supply of Fuel"	="Australian Customs and Border Protection Service"	10-Jan-08	="Fuels"	11-Dec-07	11-Dec-07	24504.90	=""	="MG Kallis Pty Ltd"	10-Jan-08 03:20 PM	

+="CN54633"	"CPE004354-1 - Training Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Education and Training Services"	13-Dec-07	13-Dec-07	15000.00	=""	="NT Indonesian Services"	10-Jan-08 03:20 PM	

+="CN54635"	"CPE003786-2 - Computer Software"	="Australian Customs and Border Protection Service"	10-Jan-08	="Human resources services"	20-Dec-07	20-Dec-07	14256.00	=""	="P-Con Knowledge Systems"	10-Jan-08 03:20 PM	

+="CN54638"	"CPE004384-1 - Supply of Fuel"	="Australian Customs and Border Protection Service"	10-Jan-08	="Fuels"	24-Dec-07	24-Dec-07	12373.35	=""	="Ability Barge Services"	10-Jan-08 03:20 PM	

+="CN54639"	"CPE004389-1 - Supply of Fuel"	="Australian Customs and Border Protection Service"	10-Jan-08	="Fuels"	15-Dec-07	15-Dec-07	25980.44	=""	="Universal Bunkering Pty Ltd"	10-Jan-08 03:20 PM	

+="CN54640"	"CPO018469 - Construction Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="General building construction"	04-Jan-08	29-Feb-08	25300.00	=""	="Jonathan Griffiths Constructions Pty Ltd"	10-Jan-08 03:21 PM	

+="CN54641"	"CPE002796-3 -  Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	11827.20	=""	="CRIMTRAC"	10-Jan-08 03:21 PM	

+="CN54642"	"CPO018591 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	10-Jan-08	="Clothing"	08-Jan-08	15-Jan-08	10437.25	=""	="Protector Alsafe"	10-Jan-08 03:21 PM	

+="CN54643"	"06/1623 - Security Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	17778.20	=""	="Gentec Services Pty Ltd"	10-Jan-08 03:21 PM	

+="CN54644"	"07/2160 - Supply of Office Water Coolers"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	25-Jan-09	16688.10	=""	="Clover Bond Pty Ltd, AFT The Cool Clear Water U/T"	10-Jan-08 03:21 PM	

+="CN54645"	"07/2189 - Maintenance Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Nov-09	15855.84	=""	="Landscape and Associates"	10-Jan-08 03:21 PM	

+="CN54646"	"06/1541 - Testing Services"	="Australian Customs and Border Protection Service"	10-Jan-08	="Management and Business Professionals and Administrative Services"	01-Dec-06	31-Oct-07	486474.01	=""	="Defence Science & Technology Organisation"	10-Jan-08 03:21 PM	

+="CN54647"	"Provision for HP ProCurve Switches and related Hardware"	="Comsuper"	10-Jan-08	="Hardware"	28-Sep-07	02-Nov-07	12855.00	=""	="Computercorp Pty Ltd"	10-Jan-08 03:31 PM	

+="CN54648"	"07/1882 - Training Services - 0994-1226 - Online Learning Panel"	="Australian Customs and Border Protection Service"	10-Jan-08	="Specialised educational services"	13-Apr-07	30-Jun-07	87824.00	="07/1882"	="Future Train Pty Ltd"	10-Jan-08 03:32 PM	

+="CN54649"	"Provision for the supply of the Monaural, Binaural and Wireless Headsets"	="Comsuper"	10-Jan-08	="Phone headsets"	17-Dec-07	31-Dec-07	15609.00	=""	="Headset Solutions Pty Ltd"	10-Jan-08 03:34 PM	

+="CN54651-A3"	"Provision for Program Manager"	="Comsuper"	10-Jan-08	="Human resources services"	11-Feb-08	28-Nov-08	303072.00	=""	="Face2face Recruitment"	10-Jan-08 03:36 PM	

+="CN54652"	"Provision for Legal Counsel"	="Comsuper"	10-Jan-08	="Human resources services"	01-Jan-08	28-Mar-08	60000.00	=""	="Australian Government Solicitors"	10-Jan-08 03:39 PM	

+="CN54653"	"Provision for Legal Counsel"	="Comsuper"	10-Jan-08	="Human resources services"	11-Jan-08	31-Mar-08	40000.00	=""	="Australian Government Solicitors"	10-Jan-08 03:42 PM	

+="CN54656"	"07/2346 - Project Officer - 0717-0890"	="Australian Customs and Border Protection Service"	10-Jan-08	="Temporary personnel services"	17-Dec-07	16-Dec-08	170000.00	="07/2346"	="Paxus Australia Pty Ltd"	10-Jan-08 03:52 PM	

+="CN40511"	" CONSULTING SERVICES FOR THE DEVELOPMENT OF BUSINESS MODELLING "	="Department of Human Services"	10-Jan-08	="Management advisory services"	01-Jul-07	30-Sep-07	214500.00	=""	="HOLOCENTRIC PTY LTD"	10-Jan-08 04:11 PM	

+="CN54661"	" field backpacks "	="Department of Defence"	11-Jan-08	="Backpacks"	10-Jan-08	24-Jan-08	15592.50	=""	="Paddy Pallin"	11-Jan-08 08:04 AM	

+="CN54663-A1"	" 07/2375 - Probity Advisor - 1599-1954 (CPE004369-1) "	="Australian Customs and Border Protection Service"	11-Jan-08	="Business and corporate management consultation services"	31-Oct-07	15-Jan-08	30000.00	="07/2375"	="Walter Turnball"	11-Jan-08 08:54 AM	

+="CN54662"	"PLYWOOD"	="Department of Defence"	11-Jan-08	="Plywood"	10-Jan-08	24-Jan-08	14334.00	=""	="PJC DISTRIBUTORS"	11-Jan-08 08:57 AM	

+="CN54664-A2"	"07/2444 - IT Contractor - 0717-0862"	="Australian Customs and Border Protection Service"	11-Jan-08	="Temporary personnel services"	02-Jan-08	30-Sep-08	211715.00	="07/2444"	="Aurec Pty Ltd"	11-Jan-08 09:00 AM	

+="CN54665"	"07/2415 - IT Contractor - 0717-0892"	="Australian Customs and Border Protection Service"	11-Jan-08	="Temporary personnel services"	02-Jan-08	30-Jun-08	130000.00	="07/2415"	="Peoplebank Australia Pty Ltd"	11-Jan-08 09:07 AM	

+="CN54677"	"M113 MTU PARTS"	="Department of Defence"	11-Jan-08	="Armoured fighting vehicles"	10-Jan-08	24-Jul-08	25778.65	=""	="MTU DETROIT DIESEL"	11-Jan-08 09:35 AM	

+="CN54678-A4"	"Taxonomy Development Services"	="Australian Taxation Office"	11-Jan-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	800000.00	=""	="Ernst & Young"	11-Jan-08 09:38 AM	

+="CN54679-A1"	"M113 MTU PARTS"	="Department of Defence"	11-Jan-08	="Armoured fighting vehicles"	10-Jan-08	24-Jul-08	13373.27	=""	="MTU DETROIT DIESEL"	11-Jan-08 09:38 AM	

+="CN54682"	"wrist watch"	="Department of Defence"	11-Jan-08	="Wrist watches"	09-Jan-08	31-Jan-08	34248.50	=""	="Citizen Watches"	11-Jan-08 09:56 AM	

+="CN54684"	"Motor Vehicle Parts."	="Department of Defence"	11-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jan-08	09-Feb-08	34583.45	=""	="LandRover Australia"	11-Jan-08 10:01 AM	

+="CN54689"	" TYMPANI SET 23' PRO COPPER TIMPANI WITH POLISHED BOWL AND FLIGHT CASE, QUANTITY 2. "	="Defence Materiel Organisation"	11-Jan-08	="Musical Instruments and parts and accessories"	10-Jan-08	31-Mar-08	14336.17	="2580071"	="BILLY HYDE MUSIC (VIC)  PTY LTD"	11-Jan-08 10:20 AM	

+="CN54690"	" TIMPANI SET 29' WITH PRO COPPER TIMPANI WITH POLISHED BOWL AND FLIGHT CASE, QUANTITY 2 "	="Defence Materiel Organisation"	11-Jan-08	="Musical Instruments and parts and accessories"	10-Jan-08	08-Apr-08	15044.00	="2580073"	="BILLY HYDE MUSIC (VIC)  PTY LTD"	11-Jan-08 10:35 AM	

+="CN54693-A1"	"07/2391 - IT Contractor - 0717-0875"	="Australian Customs and Border Protection Service"	11-Jan-08	="Temporary personnel services"	25-Jan-07	29-Feb-08	105000.00	="07/2391"	="Frontier Group Australia Pty Ltd"	11-Jan-08 11:04 AM	

+="CN54694-A1"	"07/2388 - Business Analyst - 0717-0877"	="Australian Customs and Border Protection Service"	11-Jan-08	="Business and corporate management consultation services"	03-Dec-07	25-Jan-08	150000.00	="07/2388"	="Greythorn Pty Ltd"	11-Jan-08 11:07 AM	

+="CN54698"	"Wood targets."	="Department of Defence"	11-Jan-08	="National Defence and Public Order and Security and Safety Services"	11-Jan-08	31-Jan-08	17820.00	=""	="Harper Timber"	11-Jan-08 11:29 AM	

+="CN54706"	" SUPPLY PAINT FOR ANNUAL SLIPPING OF VESSEL AB1066 W/O 29629 "	="Department of Defence"	11-Jan-08	="Painting"	07-Jan-08	06-Feb-08	20901.30	=""	="PERKINS SHIPPING"	11-Jan-08 12:35 PM	

+="CN54707"	"MAJOR ENGINE OVERHAUL D6H CAT DOZER"	="Department of Defence"	11-Jan-08	="Engines"	08-Jan-08	07-Feb-08	51113.39	=""	="HASTINGS DEERING (AUST) LIMITED"	11-Jan-08 12:50 PM	

+="CN54709"	" REMOVE / OVERHAUL / INSTALL GEARBOX "	="Department of Defence"	11-Jan-08	="Gearmotors"	11-Jan-08	10-Feb-08	26534.07	=""	="MTU DETROIT DIESEL AUST PTY LTD"	11-Jan-08 01:23 PM	

+="CN54710-A1"	"Provision for System Tester"	="Comsuper"	11-Jan-08	="Human resources services"	13-Jan-08	30-Jun-08	67200.00	=""	="Wizard Information Services"	11-Jan-08 01:56 PM	

+="CN54715"	"Hospitality - Offical Visit"	="Department of the Prime Minister and Cabinet"	11-Jan-08	="Travel and Food and Lodging and Entertainment Services"	06-Sep-07	06-Sep-07	81100.00	=""	="SOFITEL WENTWORTH SYDNEY TAHL WH PTY LTD T/AS"	11-Jan-08 02:48 PM	

+="CN54722"	" ARCHIVAL SERVICES "	="Department of the Prime Minister and Cabinet"	11-Jan-08	="Administrative agencies services"	02-Jan-07	31-Dec-07	40000.00	=""	="NATIONAL ARCHIVES OF AUSTRALIA"	11-Jan-08 03:12 PM	

+="CN54721-A1"	" Temporary personnel - balance of payment PO571  See CN7733 "	="Australian Electoral Commission"	11-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	200000.00	="AEC06/019"	="Tarakan Consulting Pty Ltd"	11-Jan-08 03:12 PM	

+="CN54723"	"ICT HR consultancy"	="Australian Taxation Office"	11-Jan-08	="Business and corporate management consultation services"	20-Aug-07	29-Aug-07	19250.00	=""	="ProActive ReSolutions Pty Ltd"	11-Jan-08 03:13 PM	

+="CN54724"	"Conduct market research to support the Drought Assistance Campaign."	="Department of Human Services"	11-Jan-08	="Market research"	01-Jul-07	30-Jun-08	165000.00	=""	="Open Mind Research Group"	11-Jan-08 03:16 PM	

+="CN54725-A1"	"Temporary Personnel"	="Australian Electoral Commission"	11-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	256528.80	="AEC06/019"	="Tarakan Consulting Pty Ltd"	11-Jan-08 03:51 PM	

+="CN54727"	"COMCAR -TRAVEL"	="Department of the Prime Minister and Cabinet"	11-Jan-08	="Passenger motor vehicles"	31-Oct-07	31-Oct-07	17800.00	=""	="COMCAR"	11-Jan-08 03:55 PM	

+="CN54728-A1"	"03/0024 - Security Services (Extension #1)"	="Australian Customs and Border Protection Service"	11-Jan-08	="Security surveillance and detection"	22-Jun-07	21-Jun-09	965098.81	="03/0024"	="Peter Lang Nominees Pty Ltd"	11-Jan-08 03:57 PM	

+="CN54730"	"Brand development"	="Department of Human Services"	11-Jan-08	="Branding of product naming services"	05-Mar-07	24-Aug-07	29850.00	=""	="Publicis Mojo"	11-Jan-08 04:00 PM	

+="CN54731"	"Agreement for Lease (Fitout of Discovery House extension)"	="IP Australia"	11-Jan-08	="Building and Construction and Maintenance Services"	12-Dec-07	30-Dec-07	150000.00	="IPAC2005/10647"	="CHALLENGER MANAGEMENT SERVICES LIMI"	11-Jan-08 04:16 PM	

+="CN54732"	"Scribing Services for IP Australia"	="IP Australia"	11-Jan-08	="Human resources services"	07-Jan-08	30-Jun-08	15000.00	="IPA05/14475-24"	="GREG RYAN & ASSOCIATES"	11-Jan-08 04:16 PM	

+="CN54733"	"Engagement of Finance Officer 09FEB08 to 11APR08"	="IP Australia"	11-Jan-08	="Human resources services"	13-Dec-07	08-Feb-08	38981.25	="IPAC2007/14054"	="FrontierIT Recruitment Consulting P"	11-Jan-08 04:17 PM	

+="CN54734"	"Consultancy for Greenhouse Friendly Certification"	="IP Australia"	11-Jan-08	="Environmental Services"	12-Dec-07	31-Dec-07	12100.00	="IPAC2007/15301"	="Syneca Consulting Pty Ltd"	11-Jan-08 04:17 PM	

+="CN54735"	"Legal Services Panel AGS039"	="IP Australia"	11-Jan-08	="Legal services"	19-Dec-07	15-Feb-08	10000.00	="IPA2005/11274-2"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Jan-08 04:17 PM	

+="CN54736"	"Supply of journal subscriptions for 2008"	="IP Australia"	11-Jan-08	="Printed publications"	24-Dec-07	30-Jun-08	150000.00	="IPAC2007/15409"	="EBSCO SUBSCRIPTION SERVICES"	11-Jan-08 04:17 PM	

+="CN54737"	"Performance Discussions Training Programs"	="IP Australia"	11-Jan-08	="Human resources services"	24-Dec-07	13-Nov-01	58740.00	="IPAC2007/15414"	="YELLOW EDGE PTY LTD"	11-Jan-08 04:17 PM	

+="CN54738"	"Thomson Scientific World Patent Index Database Access 2008"	="IP Australia"	11-Jan-08	="Computer services"	24-Dec-07	31-Dec-08	171272.00	="IPAC2003/11675"	="QUESTEL ORBIT INC."	11-Jan-08 04:17 PM	

+="CN54739"	"SAP Development and other Related Services"	="IP Australia"	11-Jan-08	="Computer programmers"	03-Jan-08	30-Apr-08	19219.20	="IPAC2006/11050"	="SOUTHERN CROSS COMPUTING PTY LTD"	11-Jan-08 04:17 PM	

+="CN54740"	"Work Order 2007 - 06 Generation of customer invoice"	="IP Australia"	11-Jan-08	="Business administration services"	04-Jan-08	31-Jan-08	20592.00	="IPAC2006/11050"	="SOUTHERN CROSS COMPUTING PTY LTD"	11-Jan-08 04:17 PM	

+="CN54741"	"Presentation of 3x2 Day Internal Quality Auditor Training"	="IP Australia"	11-Jan-08	="Education and Training Services"	07-Jan-08	30-Jun-08	20000.00	="IPAC2008/10066"	="NCSI Training & Development Pty Lim"	11-Jan-08 04:18 PM	

+="CN54742"	"Legal Service Panel - AGS041"	="IP Australia"	11-Jan-08	="Legal services"	08-Jan-08	30-Jun-08	10000.00	="IPA2005/11274-2"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Jan-08 04:18 PM	

+="CN54743"	"Legal Service Panel - AGS042"	="IP Australia"	11-Jan-08	="Legal services"	08-Jan-08	01-Feb-08	10000.00	="IPA2005/11274-2"	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Jan-08 04:18 PM	

+="CN54744"	"Legal Expenses : Court No: V2006/909 Increase of funds re legal expenses"	="IP Australia"	11-Jan-08	="Legal services"	03-Jan-08	17-Jan-08	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	11-Jan-08 04:18 PM	

+="CN54745"	"International Patent Search - September 2007"	="IP Australia"	11-Jan-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	21452.39	=""	="STN-COLOMBUS"	11-Jan-08 04:18 PM	

+="CN54746"	"Policy Implementation course"	="IP Australia"	11-Jan-08	="Human resource development"	17-Dec-07	17-Dec-07	23070.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	11-Jan-08 04:18 PM	

+="CN54747"	"Symantec Corporate Licences Multi Tier 12 Months"	="IP Australia"	11-Jan-08	="Software maintenance and support"	17-Dec-07	15-Dec-08	20475.00	=""	="DELL COMPUTER PTY LIMITED"	11-Jan-08 04:18 PM	

+="CN54748"	"SUN Solaris hardware & Software maintenance"	="IP Australia"	11-Jan-08	="Software maintenance and support"	21-Dec-07	23-Dec-07	187664.11	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	11-Jan-08 04:18 PM	

+="CN54749"	"Finance Position Vacant Advertising"	="IP Australia"	11-Jan-08	="Advertising"	24-Dec-07	24-Dec-07	21204.45	=""	="HMA Blaze Pty Ltd"	11-Jan-08 04:18 PM	

+="CN54750"	"Data Integrator Server Support and Maintenance."	="IP Australia"	11-Jan-08	="Software maintenance and support"	24-Dec-07	05-Jan-08	22549.05	=""	="BUSINESS OBJECTS"	11-Jan-08 04:19 PM	

+="CN54751"	"UPOV contribution payment - January 2008"	="IP Australia"	11-Jan-08	="Education and Training Services"	24-Dec-07	07-Jan-08	54897.04	=""	="WORLD INTELLECTUAL PROPERTY"	11-Jan-08 04:19 PM	

+="CN54752"	"vM EntireX Developer Software & Maintenance"	="IP Australia"	11-Jan-08	="Software maintenance and support"	24-Dec-07	26-Nov-08	18156.60	=""	="SOFTWARE AG AUSTRALIA PTY LTD"	11-Jan-08 04:19 PM	

+="CN54753"	"Star Team Enterprise Advantage 2006 Named Software"	="IP Australia"	11-Jan-08	="Software"	03-Jan-08	30-Jun-08	41882.95	=""	="Borland Australia Pty Ltd"	11-Jan-08 04:19 PM	

+="CN54754"	"Touchpaper yearly maintenance and support"	="IP Australia"	11-Jan-08	="Software maintenance and support"	04-Jan-08	20-Dec-08	59525.82	=""	="Touchpaper"	11-Jan-08 04:19 PM	

+="CN54755"	"Copyright Fees"	="IP Australia"	11-Jan-08	="Business administration services"	09-Jan-08	10-Jan-08	25000.00	=""	="COPYRIGHT AGENCY LTD"	11-Jan-08 04:19 PM	

+="CN54756"	"Accommodation for 6 ALA fellows"	="IP Australia"	11-Jan-08	="Travel and Food and Lodging and Entertainment Services"	10-Jan-08	01-May-08	50112.00	=""	="Argyle Apartments"	11-Jan-08 04:19 PM	

+="CN54757"	" Desktop Computers - balance of PO518   See CN3179 "	="Australian Electoral Commission"	11-Jan-08	="Computer Equipment and Accessories"	12-Jul-07	12-Aug-07	126308.66	=""	="Dell Australia Pty Ltd"	11-Jan-08 04:24 PM	

+="CN40519-A1"	"CANBERRA AVENUE PROPERTY RELATED WORKS"	="Department of Human Services"	11-Jan-08	="Structural materials and basic shapes"	10-Aug-07	16-Apr-08	824442.00	=""	="SMI FITOUT PTY LTD"	11-Jan-08 05:05 PM	

+="CN54758-A3"	"Property Lease Alexandria NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	22-Apr-05	21-Apr-10	304493.00	=""	="Perpetual Nominees Pty Ltd"	13-Jan-08 02:29 PM	

+="CN54759-A3"	"Property Lease Sydney NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	01-Jul-05	31-Aug-08	774800.00	=""	="Loff & Liff Holdings Pty Ltd"	13-Jan-08 02:38 PM	

+="CN54760-A1"	"Property Lease Sydney NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	05-Jun-04	04-Jun-16	107067427.00	=""	="Kinder Investments Pty Ltd"	13-Jan-08 02:44 PM	

+="CN54761-A6"	"Property Lease Mascot NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	14-Dec-04	27-Jul-14	6604797.00	=""	="Airport Nova Developments Pty Ltd"	13-Jan-08 02:57 PM	

+="CN54763-A3"	"Property Lease Barton ACT"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	20-Jun-01	30-Jun-09	8017484.00	=""	="AFP Canberra Property Pty Ltd"	13-Jan-08 07:29 PM	

+="CN54767"	"Property Lease Melbourne Airport Victoria"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	01-Apr-07	30-Sep-08	269940.00	=""	="Australia Pacific Airports (Melbourne) Pty Ltd"	13-Jan-08 08:19 PM	

+="CN54768-A4"	"Property Lease Brisbane Airport QLD"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	23-Jan-06	31-Jan-12	1329984.13	=""	="Brisbane Airport Corporation Pty Ltd"	13-Jan-08 09:24 PM 

--- /dev/null
+++ b/admin/partialdata/09Jun2008to11Jun2008valto.xls
@@ -1,1 +1,208 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN90059"	"CABLE ASSY - ASLAV"	="Department of Defence"	10-Jun-08	="Armoured fighting vehicles"	06-Jun-08	31-Dec-08	23378.96	=""	="GENERAL DYNAMICS LAND SYSTEMS"	10-Jun-08 07:57 AM	

+="CN90060"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	10-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Nov-07	19-May-08	11028.64	=""	="Land Rover AUSTRALIA"	10-Jun-08 08:12 AM	

+="CN90066"	"Lease of equipment to be used in trials"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Laboratory and scientific equipment"	29-May-08	30-Aug-08	51958.50	=""	="GE Security Pty Ltd"	10-Jun-08 09:07 AM	

+="CN90067"	"ArcCensus 2006 - 2001Add on"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Software"	23-May-08	23-May-09	13200.00	=""	="NAVIGATE PTY LTD"	10-Jun-08 09:07 AM	

+="CN90068"	"To train members of the Regional Research team in BITRE in using Anysite and Mapinfo software"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Management advisory services"	22-May-08	30-Jun-08	13563.00	=""	="Pitney Bowes Business Mapinfo Aust"	10-Jun-08 09:07 AM	

+="CN90069"	"Relocate Fibre cabling"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Computer services"	06-Jun-08	30-Jun-08	10450.00	=""	="The Trustee for Office Project Serv"	10-Jun-08 09:07 AM	

+="CN90070"	"Career progression report"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Computer services"	27-Mar-08	09-Apr-08	23404.27	=""	="InfoHRM Pty Ltd"	10-Jun-08 09:08 AM	

+="CN90071"	"GVG advertising campaign"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Advertising"	06-Jun-08	30-Jun-08	274131.26	="FINANCE002"	="UNIVERSAL McCANN"	10-Jun-08 09:08 AM	

+="CN90072"	"Assistance with Graduate Program"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Information services"	04-Apr-08	30-Aug-08	69140.50	=""	="Workplace Research Associates"	10-Jun-08 09:08 AM	

+="CN90073"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Community and social services"	12-May-08	12-Aug-08	27620.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	10-Jun-08 09:08 AM	

+="CN90074"	"Contractor Services"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Community and social services"	22-May-08	30-Jun-08	19045.13	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	10-Jun-08 09:08 AM	

+="CN90075"	"Aviations Security Training Strategy"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Graphic design"	05-May-08	16-Jun-08	41400.00	="TRS06/036"	="Morris Walker"	10-Jun-08 09:08 AM	

+="CN90076"	"Overflow speechwriting requirements"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Graphic design"	02-May-08	30-Jun-08	33000.00	="TRS06/036"	="Porter Novelli Australia P/L"	10-Jun-08 09:09 AM	

+="CN90077"	"Temp Staff - EA, PPB"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Human resources services"	10-Jun-08	09-Jul-08	11000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	10-Jun-08 09:09 AM	

+="CN90078"	"Legal Services Expenditure - 7040 Remaining 7040"	="Department of Infrastructure Transport Regional Development and Local Government"	10-Jun-08	="Legal services"	26-May-08	26-May-08	13450.00	="TRS06/175"	="Clayton Utz Canberra"	10-Jun-08 09:09 AM	

+="CN90082"	"Costs of Regulation Survey - A preliminary study on the cost impact of the regulatory framework ASIC administers"	="Australian Securities and Investments Commission"	10-Jun-08	="Market research"	21-Oct-07	07-Dec-07	120391.00	=""	="Chant Link and Associates"	10-Jun-08 09:47 AM	

+="CN90084"	"    iDataAgent (db+doc) for Lotus Notes, Product Code DA-@-LN5DD-2    "	="Therapeutic Goods Administration"	10-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	01-Jun-08	17038.05	=""	="Alpha West Services Pty Ltd"	10-Jun-08 09:54 AM	

+="CN90087"	" LAND ROVER VEHICLE PARTS "	="Department of Defence"	10-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	02-Sep-08	13037.73	=""	="Land Rover AUSTRALIA"	10-Jun-08 10:06 AM	

+="CN90086-A1"	"Legal Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Legal services"	01-Aug-07	31-Oct-07	10000.00	=""	="Christopher Hoy"	10-Jun-08 10:06 AM	

+="CN90089"	"Staff development workshops "	="Great Barrier Reef Marine Park Authority"	10-Jun-08	="Work ethics or attitude training instructional materials"	29-Apr-08	29-Apr-08	11000.00	=""	="Mind Resources Pty Ltd"	10-Jun-08 10:07 AM	

+="CN90091-A2"	"Legal advice"	="Australian Securities and Investments Commission"	10-Jun-08	="Legal services"	08-Aug-07	31-Dec-07	50000.00	=""	="Charles Shaw"	10-Jun-08 10:10 AM	

+="CN90092"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	10-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	26-Aug-08	11344.65	=""	="Land Rover AUSTRALIA"	10-Jun-08 10:11 AM	

+="CN90096-A1"	"  Review of Integrity Assurance Internal Investigations.  "	="Australian Taxation Office"	10-Jun-08	="Management advisory services"	01-Jun-08	30-Jun-10	50000.00	="08.088"	="S. Whybrow"	10-Jun-08 10:21 AM	

+="CN90098"	"Legal Advice - RFT for Recording and Transcription Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Legal services"	10-Dec-07	04-Feb-08	11791.45	=""	="Minter Ellison"	10-Jun-08 10:31 AM	

+="CN90099"	"Cost Assessors - Variation"	="Australian Securities and Investments Commission"	10-Jun-08	="Legal services"	20-Mar-08	30-Jun-09	20000.00	=""	="Costacomp Pty Ltd"	10-Jun-08 10:37 AM	

+="CN90101"	" Provision for Training Program Services "	="Department of Immigration and Citizenship"	10-Jun-08	="Ground support training systems"	29-Sep-07	30-Jun-08	28730.00	=""	="Wisdom Learning Pty Ltd"	10-Jun-08 10:40 AM	

+="CN90102"	"    Secom Technical Services - Security Upgrade works to Commercial Security for TGA RFQ 11/0708    "	="Therapeutic Goods Administration"	10-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-May-08	30-Jun-08	79984.30	=""	="Secom Technical Services Pty Ltd"	10-Jun-08 10:42 AM	

+="CN90104"	"Supply and install of cabling equipment"	="Australian Federal Police"	10-Jun-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	76730.83	=""	="Absolute Cabling Systems Pty Ltd"	10-Jun-08 10:44 AM	

+="CN90105"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	02-Jun-08	29-Aug-08	41912.00	=""	="Genesis IT & T Pty Ltd"	10-Jun-08 10:46 AM	

+="CN90094"	"     Consulting Services     "	="Therapeutic Goods Administration"	10-Jun-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-08	15015.00	=""	="Agility Consulting Pty Ltd"	10-Jun-08 11:01 AM	

+="CN90106"	"Provision for Training Program Services"	="Department of Immigration and Citizenship"	10-Jun-08	="Ground support training systems"	09-Apr-08	30-Jun-08	95186.00	=""	="Deakin University"	10-Jun-08 11:02 AM	

+="CN90108"	"Provision of Training Program Services"	="Department of Immigration and Citizenship"	10-Jun-08	="Ground support training systems"	23-Apr-08	30-Jun-08	33650.00	=""	="Australian Forensic Services Pty Ltd"	10-Jun-08 11:10 AM	

+="CN90107"	" Temporary Staff - Administration Officer "	="Australian Securities and Investments Commission"	10-Jun-08	="Temporary personnel services"	16-Jun-08	30-Sep-08	25700.00	=""	="Boston Kennedy"	10-Jun-08 11:10 AM	

+="CN90109"	"    Service Desk Workflow Management Software    "	="Therapeutic Goods Administration"	10-Jun-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	30-Jun-08	182100.00	=""	="Itilics Australia Pty Ltd"	10-Jun-08 11:14 AM	

+="CN90110"	"Melbourne Metcards for Staff"	="Australian Securities and Investments Commission"	10-Jun-08	="Travel facilitation"	30-Apr-08	23-May-08	180030.60	=""	="Transport Ticketing Authority"	10-Jun-08 11:18 AM	

+="CN90111"	"Provision for Training Program Services"	="Department of Immigration and Citizenship"	10-Jun-08	="Ground support training systems"	05-May-08	30-Jun-08	70000.00	=""	="Wisdom Learning Pty Ltd"	10-Jun-08 11:19 AM	

+="CN87906"	"Reform of the Cambodian National Police Act"	="Australian Federal Police"	10-Jun-08	="National Defence and Public Order and Security and Safety Services"	02-Jun-08	01-Jun-09	63360.00	=""	="Valentin, John Geoffrey"	10-Jun-08 11:22 AM	

+="CN90113"	"Printing of ASIC's 'Traffic lights' booklet"	="Australian Securities and Investments Commission"	10-Jun-08	="Printing"	01-Apr-08	31-May-08	11929.50	=""	="Beaver Press"	10-Jun-08 11:29 AM	

+="CN90115"	"    Health Chargeback of IBM Charges FY 07-08    "	="Therapeutic Goods Administration"	10-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	4322633.70	=""	="Department of Health & Ageing"	10-Jun-08 11:35 AM	

+="CN90116"	"Consulting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Accounting and auditing"	06-Nov-07	30-Jun-08	61212.50	=""	="Colin Parker, GAAP Consulting"	10-Jun-08 11:40 AM	

+="CN90117"	"    Services for the review, design & testing of medical device forms available on the TGA Website    "	="Therapeutic Goods Administration"	10-Jun-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	13-Jun-08	17600.00	=""	="Formulate Information Design"	10-Jun-08 11:42 AM	

+="CN90112"	"Assist in development of a wheat export accreditation scheme"	="Export Wheat Commission"	10-Jun-08	="Legal Research Services"	25-Mar-08	30-Jun-08	101352.00	=""	="Ernst & Young"	10-Jun-08 11:42 AM	

+="CN90118"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	10-Jun-08	="Legal services"	29-May-08	30-Jun-08	15000.00	=""	="Temby, Ian"	10-Jun-08 11:45 AM	

+="CN90119"	"    High Level Specifications for the DEAL IT interface    "	="Therapeutic Goods Administration"	10-Jun-08	="Information Technology Broadcasting and Telecommunications"	14-Jan-08	29-Feb-08	33110.00	=""	="SMS Consulting Gorup Limited"	10-Jun-08 11:46 AM	

+="CN90120"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	28-Feb-08	27-Jun-08	59155.76	=""	="Zenith Management Contracting Services"	10-Jun-08 11:51 AM	

+="CN90122"	"    Medical Devices Business Process Review    "	="Therapeutic Goods Administration"	10-Jun-08	="Public Utilities and Public Sector Related Services"	27-Nov-07	31-Mar-08	78760.00	=""	="SMS Consulting Gorup Limited"	10-Jun-08 11:53 AM	

+="CN90123"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	28-Feb-08	27-Jun-08	70972.47	=""	="Zenith Management Contracting Services"	10-Jun-08 11:55 AM	

+="CN90124-A1"	"Conduct EWC 2007/08 internal audit program"	="Export Wheat Commission"	10-Jun-08	="Audit services"	03-Mar-08	30-Jun-08	38416.00	=""	="WalterTurnbull"	10-Jun-08 11:56 AM	

+="CN90017"	"Development of database for Wheat Export Accreditation Scheme"	="Export Wheat Commission"	10-Jun-08	="Business function specific software"	15-May-08	01-Jul-08	17950.00	=""	="Software Improvement Pty Ltd"	10-Jun-08 11:57 AM	

+="CN90125"	"SUPPLY OF CART, EMERGENCY CRASH KIT"	="Defence Materiel Organisation"	10-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	30-Jun-08	13178.00	=""	="MIDMED PTY LTD"	10-Jun-08 12:01 PM	

+="CN90127"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	28-Feb-08	27-Jun-08	77082.00	=""	="Zenith Management Services Group"	10-Jun-08 12:06 PM	

+="CN90128"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	03-Mar-08	30-May-08	61380.00	=""	="Freelance Global Ltd"	10-Jun-08 12:09 PM	

+="CN90129-A1"	"Coaching Conversations Workshops to support eDevelopment 2007"	="Australian Securities and Investments Commission"	10-Jun-08	="Education and Training Services"	01-Aug-07	30-Sep-07	66350.00	=""	="Illumina Executive Development"	10-Jun-08 12:21 PM	

+="CN90132-A1"	"Procurement for review of program"	="Australian Securities and Investments Commission"	10-Jun-08	="Business administration services"	19-Nov-07	30-Mar-08	52800.00	=""	="Accenture Australia Holdings Pty Ltd"	10-Jun-08 12:30 PM	

+="CN90133"	"General Management Services"	="Centrelink"	10-Jun-08	="Management and Business Professionals and Administrative Services"	28-Feb-07	31-Dec-08	71874.00	=""	="The Nous Group"	10-Jun-08 12:34 PM	

+="CN90135"	"Technical writer professional services"	="Australian Securities and Investments Commission"	10-Jun-08	="Technical writing"	30-Jan-08	24-Apr-08	40500.00	=""	="Candle ICT"	10-Jun-08 01:29 PM	

+="CN90136-A1"	"Procurement for project management services"	="Australian Securities and Investments Commission"	10-Jun-08	="Project management"	15-May-08	15-Oct-08	77440.00	=""	="Expansion Consulting Pty Ltd"	10-Jun-08 01:37 PM	

+="CN90137"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	10-Jun-08	="Information technology consultation services"	05-Mar-08	05-Jul-08	57527.40	=""	="Zenith Management Services Group"	10-Jun-08 01:43 PM	

+="CN90138"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Jun-08	="Passenger transport"	22-Feb-08	25-Feb-08	31083.29	=""	="COMCAR"	10-Jun-08 02:18 PM	

+="CN90140"	"Supply of communications services and equipment"	="Australian Federal Police"	10-Jun-08	="Communications Devices and Accessories"	06-Jun-08	06-Aug-08	691815.38	=""	="Motorola Australia Pty Limited"	10-Jun-08 02:41 PM	

+="CN90142"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	10-Jun-08	="Aircraft"	02-Jun-08	22-Jun-08	67640.07	=""	="sikorsky aircraft australia ltd"	10-Jun-08 03:02 PM	

+="CN90143"	"WLR001 Repair - Emergent Work"	="Defence Materiel Organisation"	10-Jun-08	="Radarbased surveillance systems"	14-May-08	30-May-08	42070.60	=""	="Raytheon Australia Pty Ltd"	10-Jun-08 03:10 PM	

+="CN90146-A1"	"Printing"	="Department of the Prime Minister and Cabinet"	10-Jun-08	="Printing"	28-Apr-08	05-May-08	13248.68	=""	="TRIM LAWNS & COMPLETE GARDEN SERVICES"	10-Jun-08 03:10 PM	

+="CN90145-A1"	" Grounds Maintenance "	="Department of the Prime Minister and Cabinet"	10-Jun-08	="Grounds maintenance services"	28-Apr-08	05-May-08	13248.68	=""	="TRIM LAWNS & COMPLETE GARDEN SERVICES"	10-Jun-08 03:14 PM	

+="CN90144"	"DETECTOR,EXPLOSIVE ORDNANCE ; ENHANSED KIT"	="Defence Materiel Organisation"	10-Jun-08	="Detectors"	05-Jun-08	26-Jun-08	157795.00	=""	="BANKSIA SCIENTIFIC"	10-Jun-08 03:16 PM	

+="CN90149"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	10-Jun-08	="Aircraft"	15-Jun-08	26-Jun-08	41080.34	=""	="sikorsky aircraft australia ltd"	10-Jun-08 03:19 PM	

+="CN90151"	"Printing"	="Department of the Prime Minister and Cabinet"	10-Jun-08	="Printing"	04-May-08	31-May-08	39878.00	=""	="Adler & Stoyles Pty Ltd A & S Printers"	10-Jun-08 03:19 PM	

+="CN90154"	"REPAIR OF AIRCRAFT PARTS"	="Defence Materiel Organisation"	10-Jun-08	="Aircraft"	26-May-08	15-Jun-08	17787.02	=""	="sikorsky aircraft australia ltd"	10-Jun-08 03:24 PM	

+="CN90155"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	10-Jun-08	="Aircraft"	26-May-08	15-Jun-08	10183.27	=""	="sikorsky aircraft australia ltd"	10-Jun-08 03:30 PM	

+="CN90157"	" REPAIR OF AIRCRAFT PARTS "	="Defence Materiel Organisation"	10-Jun-08	="Aircraft"	29-May-08	18-Jun-08	16004.42	=""	="sikorsky aircraft australia ltd"	10-Jun-08 03:35 PM	

+="CN90158"	" CARRIER GAS ; GC/MS  NTERNAL STANDARDS GAS ; GC/MS    "	="Defence Materiel Organisation"	10-Jun-08	="Industrial use gases"	10-Jun-08	24-Jun-08	29065.87	=""	="SCITEK AUSTRALIA PTY LTD"	10-Jun-08 03:52 PM	

+="CN90164"	"Intranet System Programing"	="Family Court of Australia"	10-Jun-08	="Computers"	16-Jun-08	27-Jun-08	10560.00	=""	="EOS Solutions Pty Ltd"	10-Jun-08 04:26 PM	

+="CN90163"	"Printing of NAT10710 Income tax and deductions for small business JS 10166."	="Australian Taxation Office"	10-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Jun-08	18-Jun-08	30438.10	=""	="Paragon Printers"	10-Jun-08 04:33 PM	

+="CN90166"	" Printing of NAT3029-06.2008 A4 Guides. "	="Australian Taxation Office"	10-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Jun-08	30-Jun-08	50358.00	=""	="Blue Star Print Group t/a National Capital Printing"	10-Jun-08 04:38 PM	

+="CN90171"	"GERBER GRASP PACK"	="Department of Defence"	10-Jun-08	="Heat resistant clothing"	22-Nov-07	06-Jun-08	26048.00	=""	="MAINPEAK"	10-Jun-08 05:03 PM	

+="CN90172"	"coral snake vessel"	="Department of Defence"	10-Jun-08	="Storage vessels and tanks"	13-Sep-07	22-Feb-08	92902.31	=""	="maritime engineering service"	10-Jun-08 05:12 PM	

+="CN90173-A1"	" Engagement of Accounting Contractor "	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	100939.00	="08.074"	="WHK Pty Ltd"	11-Jun-08 07:41 AM	

+="CN90174"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	27452.08	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:46 AM	

+="CN90176"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	12193.61	=""	="LANDROVER"	11-Jun-08 07:49 AM	

+="CN90178"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	22-Apr-08	22-May-08	47379.15	=""	="RGM"	11-Jun-08 07:49 AM	

+="CN90177"	"Repair of Black Hakw Gas turbine engine. Impellor change out on Cold Section GE-C-013277. "	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	10-Jun-08	30-Jun-08	155533.00	=""	="Sikorsky Aircraft Australia Limited"	11-Jun-08 07:51 AM	

+="CN90180"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	32403.21	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:52 AM	

+="CN90181"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	22-Apr-08	22-May-08	18168.28	=""	="RGM"	11-Jun-08 07:55 AM	

+="CN90182"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	11686.53	=""	="LANDROVER"	11-Jun-08 07:55 AM	

+="CN90183"	"Repair of Shaft Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	10-Jun-08	24-Jun-08	10359.86	=""	="Sikorsky Aircraft Australia"	11-Jun-08 07:57 AM	

+="CN90184"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	16-Apr-08	16-May-08	49102.30	=""	="RGM"	11-Jun-08 07:58 AM	

+="CN90185"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	46131.53	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:58 AM	

+="CN90186"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	20-Feb-08	20-Mar-08	21878.03	=""	="FB AUTOS"	11-Jun-08 08:01 AM	

+="CN90188"	"Repair of Gearbox Module"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Feb-08	10-Sep-08	105600.00	=""	="Rosebak Engineering"	11-Jun-08 08:06 AM	

+="CN90190"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	11-Jun-08	30-Jun-08	12853.48	=""	="sikorsky aircraft australia ltd"	11-Jun-08 08:24 AM	

+="CN90192"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	29-Jul-08	11297.54	=""	="Land Rover AUSTRALIA"	11-Jun-08 08:45 AM	

+="CN90193"	"Development of a Discussion Paper - Review of Higher Education"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	10-Apr-08	30-Jun-08	73480.00	="PRN19335"	="PHILLIPSKPA PTY LTD"	11-Jun-08 08:45 AM	

+="CN90194"	"Investigation"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	27-Nov-07	30-Jun-08	11137.50	="PRN19513"	="HBA CONSULTING"	11-Jun-08 08:46 AM	

+="CN90195-A1"	"Power and Cabling invoices for National Office 2007/2008"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="General building construction"	01-Aug-07	31-Jul-08	20584.23	="PRN19897"	="INTRAVISION PTY LTD"	11-Jun-08 08:46 AM	

+="CN90196-A2"	"Good Health - Great Futures Program"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	09-May-08	30-Jun-08	55000.00	="PRN19714"	="HEALTH FUTURES PTY LTD"	11-Jun-08 08:46 AM	

+="CN90197"	"Training Strategy Workshops"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	45092.00	="PRN19786"	="NETWORK SA"	11-Jun-08 08:47 AM	

+="CN90198"	"Fit out alterations DEEWR Adealide Level 5 115 Grenfell Street"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="General building construction"	17-Mar-08	06-Jun-08	14996.30	="PRN19617"	="BRUCE INTERIORS and CONSTRUCTIONS"	11-Jun-08 08:47 AM	

+="CN90199"	"Membership - Aust Employers' Network on Disability"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Organisations and Clubs"	01-Mar-08	28-Feb-09	11000.00	="PRN19504"	="EMPLOYERS MAKINGA DIFFERENCE INC"	11-Jun-08 08:47 AM	

+="CN90200"	"Facilitation of Public Relations sessions at Career Advice Australia Conferences 2008"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	20-Jun-08	14442.00	="PRN19107"	="STARR PUBLIC RELATIONS"	11-Jun-08 08:47 AM	

+="CN90201"	"Provision of contract cataloguing services"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Library"	05-May-08	09-Jan-09	11704.00	="PRN19426"	="LYNN FARKAS INFORMATION SERVICES"	11-Jun-08 08:48 AM	

+="CN90191"	"Annual Subscription for access to Information Retrieval Databases"	="Family Court of Australia"	11-Jun-08	="Data base management system software"	22-May-08	30-Jun-08	10506.54	=""	="RMIT Publishing"	11-Jun-08 08:48 AM	

+="CN90202"	"Facilitator"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	11400.00	="PRN19779"	="NOUS"	11-Jun-08 08:48 AM	

+="CN90203"	"Digital marketplace - extended consultancy"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	05-May-08	13-Jun-08	20250.00	="PRN18993"	="EDUCATION.AU LIMITED"	11-Jun-08 08:48 AM	

+="CN90204"	"Meeting Rooms and accommodation for Australian Apprenticeships Roundtable"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	33000.00	="PRN19419"	="NOVOTEL CANBERRA"	11-Jun-08 08:48 AM	

+="CN90206-A1"	"Review of Policy Component for Australian Apprenticeships Roundtable"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	07-Mar-08	30-Jun-08	35000.00	="PRN19903"	="JOANNE MALPAS"	11-Jun-08 08:48 AM	

+="CN90207"	"Study in Australia Advertisement with Good Universities Guide"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	30-Apr-08	30-Jun-08	10945.00	="PRN19491"	="HOBSONS AUSTRALIA PTY LIMITED"	11-Jun-08 08:48 AM	

+="CN90208"	"Australian Apprenticeship Roundtable Facilitator"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	23-May-08	19-Dec-08	75000.00	="PRN18728"	="YOUTH 2 YOUTH"	11-Jun-08 08:49 AM	

+="CN90209"	"Venue hire and Accommodation for Ministers Awards"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	04-Sep-08	33850.00	="PRN19651"	="HYATT HOTEL CANBERRA"	11-Jun-08 08:49 AM	

+="CN90210"	"Career Advice Australia (CAA) State Conferences to be held in five states/territories"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	72670.00	="PRN18656"	="NOVOTEL ST KILDA"	11-Jun-08 08:50 AM	

+="CN90211-A1"	"Career Advice Australia (CAA) State Conferences to be held in five states/territories"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Meeting facilities"	01-Apr-08	30-Jul-08	72400.00	="PRN18656"	="QP MANAGEMENT PTY LIMITED"	11-Jun-08 08:50 AM	

+="CN90212"	"Presentation of bitesized workshops at CAA Conferences"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	40000.00	="PRN19449"	="COMMUNICORP PTY LTD"	11-Jun-08 08:50 AM	

+="CN90213"	"Editing and preparation for web publication of the Better Practice Guide : ICT in Schools"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	23-Apr-08	30-Jun-08	10450.00	="PRN19422"	="WORDSWORTH WRITING PTY LTD"	11-Jun-08 08:50 AM	

+="CN90214-A2"	"School Attendance Project - Analysis and Best Practice"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Corporate objectives or policy development"	30-May-08	30-Jun-08	525680.00	="PRN13146"	="ATELIER LEARNING SOLUTIONS PTY LTD"	11-Jun-08 08:50 AM	

+="CN90215"	"Short Term contract "IYLP""	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	31-Mar-08	30-Jun-08	47496.24	="PRN19066"	="HAYS PERSONNEL SERVICES"	11-Jun-08 08:51 AM	

+="CN90217-A1"	"Temp Staff to work in the section Process Implementation and Evaluation"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	01-May-08	27-Jun-08	50000.00	="PRN19865"	="SOS RECRUITMENT"	11-Jun-08 08:51 AM	

+="CN90218-A1"	"Preparation and Distribution of Child Care News"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Printed media"	01-May-08	31-Oct-08	58967.81	="PRN19492"	="NATIONAL MAILING and MARKETING P/L"	11-Jun-08 08:51 AM	

+="CN90219"	"Printing CCMS Booklet for parents FDC and in Home Care Booklet"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Printed media"	01-May-08	30-Jun-08	43445.60	="PRN19731"	="PARAGON PRINTERS"	11-Jun-08 08:52 AM	

+="CN90221-A1"	"Consultation for the establishment of a Child Care Hub in Maningrida"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	29-Apr-08	31-Aug-08	83508.15	="PRN19718"	="ACIL TASMAN"	11-Jun-08 08:52 AM	

+="CN90224"	"Maintenance Feee for Library Management System"	="Family Court of Australia"	11-Jun-08	="Computers"	22-May-08	30-Jun-08	11094.34	=""	="Optimus Prime Pty Ltd"	11-Jun-08 09:00 AM	

+="CN90226"	"Legal services"	="National Competition Council"	11-Jun-08	="Legal services"	14-May-08	30-May-08	13300.00	=""	="Australia Government Solicitor"	11-Jun-08 09:10 AM	

+="CN90228"	"Passenger transport"	="Australian Competition and Consumer Commission"	11-Jun-08	="Passenger transport"	01-Jun-08	30-Jun-08	18302.61	=""	="Lease Plan Australia Ltd"	11-Jun-08 09:12 AM	

+="CN90229"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	04-Jun-08	28-Feb-09	165000.00	="RFT2007-04"	="AM Actuaries Pty Ltd"	11-Jun-08 09:12 AM	

+="CN90230"	"Storage"	="Australian Competition and Consumer Commission"	11-Jun-08	="Storage"	05-Jun-08	30-Aug-08	50495.12	=""	="Recall Information Management"	11-Jun-08 09:12 AM	

+="CN90231"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Telecommunications media services"	14-Apr-08	13-May-08	12187.43	=""	="Telstra"	11-Jun-08 09:12 AM	

+="CN90232"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	15-May-08	15-May-08	13594.41	=""	="Xact Project Consultants"	11-Jun-08 09:12 AM	

+="CN90233"	"Human resources services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Human resources services"	17-May-08	23-May-08	13016.08	=""	="Jane Devereux Pty Ltd"	11-Jun-08 09:13 AM	

+="CN90234"	"LEGAL SERVICES"	="Australian Competition and Consumer Commission"	11-Jun-08	="Legal services"	22-Apr-08	17-May-08	14400.00	=""	="Cameron Moore"	11-Jun-08 09:13 AM	

+="CN90235"	"Computer Services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer services"	27-May-07	01-Jul-08	194398.27	=""	="Getronics Australia"	11-Jun-08 09:13 AM	

+="CN90237"	"Proprty Lease Larrakeyah NT"	="Australian Federal Police"	11-Jun-08	="Lease and rental of property or building"	11-Aug-07	11-Aug-08	33350.00	=""	="Bertram Birk"	11-Jun-08 09:17 AM	

+="CN90238"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	04-Jun-08	21-Jul-08	76000.00	=""	="WIK Wissenschaftliches institute"	11-Jun-08 09:18 AM	

+="CN90240"	"Computer services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer services"	18-Apr-08	21-Jun-08	10360.00	=""	="ASG Group LTD"	11-Jun-08 09:23 AM	

+="CN90241-A1"	"Software Maintenance for McAfee Total Protection Enterprise, One Year Gold Support"	="Family Court of Australia"	11-Jun-08	="Computers"	08-Jun-08	07-Jun-09	27747.72	=""	="Dimension Data"	11-Jun-08 09:27 AM	

+="CN90243"	"Proprty lease Vanuatu"	="Australian Federal Police"	11-Jun-08	="Lease and rental of property or building"	15-Mar-06	14-Mar-08	57600.00	=""	="Ritas Holdings"	11-Jun-08 09:28 AM	

+="CN90244"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	10450.00	=""	="Dell Australia"	11-Jun-08 09:31 AM	

+="CN90250"	"PHOTOCOPIER FAX"	="Australian Taxation Office"	11-Jun-08	="Office Equipment and Accessories and Supplies"	05-Jun-08	26-Jun-08	15910.40	=""	="Toshiba Australia Pty Ltd"	11-Jun-08 09:53 AM	

+="CN90251"	"1 X ES4520 COLOUR PHOTOCOPIER/FAX ENABLED"	="Australian Taxation Office"	11-Jun-08	="Office Equipment and Accessories and Supplies"	05-Jun-08	05-Jun-08	15910.40	=""	="Toshiba Australia Pty Ltd"	11-Jun-08 09:53 AM	

+="CN90252"	"10 X TUB 2 SEATER SUSTAINABLE LIVING 20 X TUB 1 SEATER SUSTAINABLE LIVING CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	05-Jun-08	05-Jun-08	19154.44	=""	="KLEIN BUSINESS FURNITURE"	11-Jun-08 09:53 AM	

+="CN90253"	"Wireless Headset GN9350 for Client Account Service"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	04-Jun-08	30-Jun-08	291819.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90254"	"50 x WAVE TYPIST HIGH BACK CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	04-Jun-08	04-Jun-08	16911.40	=""	="STURDY COMPONENTS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90255"	"16 X EXECUTIVE BLACK LEATHER CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	04-Jun-08	04-Jun-08	14621.38	=""	="STURDY COMPONENTS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90256"	"GN9350 Wireless headsets for Call Centre Staff"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	79200.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90257"	"GN9350 Wireless headsets for S&ME client contact"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	15444.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90258"	"ACCOMMODATION"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	05-Jun-08	06-Jun-08	13427.50	=""	="VIBE HOTEL RUSHCUTTERS"	11-Jun-08 09:54 AM	

+="CN90259"	"WIRELESS PREMIUM DIGITAL"	="Australian Taxation Office"	11-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	05-Jun-08	32472.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90260"	"LEGAL COSTS"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	21330.32	=""	="LIST A BARRISTERS"	11-Jun-08 09:55 AM	

+="CN90261"	"LEGAL COSTS"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	30720.92	=""	="LIST A BARRISTERS"	11-Jun-08 09:55 AM	

+="CN90262"	"RENT"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	26-May-08	02-Jun-08	12540.00	=""	="L J HOOKER CANBERRA CITY"	11-Jun-08 09:55 AM	

+="CN90263"	"COURSES"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	22-May-08	02-Jun-08	11825.00	=""	="Australian Public Service"	11-Jun-08 09:55 AM	

+="CN90264"	"TRAINING"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	27-May-08	02-Jun-08	16665.00	=""	="SPACETIME RESEARCH PTY LTD"	11-Jun-08 09:55 AM	

+="CN90265"	"CONSULTANCY"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	02-Jun-08	23249.54	=""	="WALTER TURNBULL PTY LTD"	11-Jun-08 09:55 AM	

+="CN90266"	"RENT"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	23-May-08	02-Jun-08	14796.86	=""	="BROGAN PRESTIGE PROPERTIES P/L"	11-Jun-08 09:55 AM	

+="CN90268"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	29-Jul-08	333355.00	=""	="ASM PROFESSIONAL SERVICES PTY LTD"	11-Jun-08 09:56 AM	

+="CN90269"	"Course: MQ20AU WebSphere MQ"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	15-May-08	29-May-08	28160.00	=""	="IBM AUSTRALIA LIMITED"	11-Jun-08 09:56 AM	

+="CN90267"	"Provision of leased computers"	="Australian Federal Police"	11-Jun-08	="Computer services"	28-Nov-02	27-Nov-07	1762591.60	=""	="Dell Financial Services"	11-Jun-08 09:57 AM	

+="CN90271"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	11-Apr-08	30-Jun-08	227592.00	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90272"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	132165.00	=""	="DEGISOFT CONSULTING PTY LTD"	11-Jun-08 09:58 AM	

+="CN90273"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	02-Sep-08	60865.20	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90274"	"RFT 018-2007 IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	01-Jun-09	199056.00	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90275"	"IT Contractor Extension"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	19-Dec-08	86130.00	="RFT 041-2006"	="PEOPLEBANK AUSTRALIA PTY LTD"	11-Jun-08 09:59 AM	

+="CN90280"	" Overwrite Kits for Hard Disk Drives. "	="Family Court of Australia"	11-Jun-08	="Printer and photocopier and facsimile accessories"	11-Jun-08	30-Jun-08	10620.45	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:40 AM	

+="CN90281"	"Multi Function Devices for Hobart registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	21078.40	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:47 AM	

+="CN90283"	"Multi Function devices for Sydney Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	11187.33	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:53 AM	

+="CN90284"	"Multi Function Devices for Parramatta Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	22913.73	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:59 AM	

+="CN90285"	"Multi Function devices for Melbourne Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-Jun-08	30-Jun-08	12696.17	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:04 AM	

+="CN90286"	"Multi Function Devices for Dandenong Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	23093.85	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:10 AM	

+="CN90287"	"Multi Function Devices for Wollongong Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	12569.44	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:15 AM	

+="CN90288"	"Repair of Intermediate Gearbox"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	30-Jun-08	45356.29	=""	="Sikorsky Aircraft Australia"	11-Jun-08 11:17 AM	

+="CN90289"	"Design Consultancy, CJ Office Melbourne Registry"	="Family Court of Australia"	11-Jun-08	="Refurbishing services"	16-Oct-07	30-Jun-08	12210.00	=""	="Helen Ericson Design Pty Ltd"	11-Jun-08 11:28 AM	

+="CN90292"	" VEHICLE REPAIRS "	="Department of Defence"	11-Jun-08	="Motor vehicles"	06-May-08	06-Jun-08	10228.68	=""	="GRAEME A MCLEOD"	11-Jun-08 12:11 PM	

+="CN90296"	"a/c engine spares:5365-01-089-4114 spacer, qty 2. 2840-01-089-4123 spoiler, qty 1. 2840-01-089-4130 synchronizing ring, qty 5. 2840-01-089-4129 ring, qty5. 3020-01-095-7460 gear, qty 1. 2840-01-241-7467 shroud, qty 1. 2840-01-362-4936 shaft, qty 1. 2840-01-444-7757 shaft, qty 1."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	173621.24	=""	="asia pacific aerospace"	11-Jun-08 12:36 PM	

+="CN90297"	"a/c engine spares:5310-01-097-99933 washer, qty 320. 5310-01-102-8856 nut, qty 40. 5310-01-090-3076 washer, qty109.5306-01-089-5983 bolt, qty 85. 5306-01-101-9855 bolt, qty40. 5306-01-101-9854 bolt, qty 70. 2840-01-087-1687 lever, qty 257. 5310-01-089-4325, qty 5."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	30780.33	=""	="asia pacific aerospace"	11-Jun-08 12:50 PM	

+="CN90293-A1"	" Strategic Advice to the CIO  "	="Australian Taxation Office"	11-Jun-08	="Information technology consultation services"	10-Jun-08	18-Jul-08	197200.85	=""	="Booz & Company"	11-Jun-08 12:53 PM	

+="CN90298"	"a/c engine spares:5310-01-091-9156 nut, qty 155. 5310-01-059-4328 washer, qty 5. 2840-01249-1069 seal, qty 4. 5310-01-280-9848 nut, qty 4. 2840-01-089-4127 seal, qty 5. 2840-01-173-7128, qty 5. 2840-01-324-2232 seal, qty 5. 5306-01-137-5733 bolt, qty 1."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	98523.46	=""	="asia pacific aerospace"	11-Jun-08 01:01 PM	

+="CN90301"	"a/c engine spares:2840-01-346-4857 spacer, qty 5. 2840-01-443-6873 vane, qty 170. 2840-01-114-0956 vane, qty 30. 2840-01-112-3096 vane, qty 30. 2840-01-443-6874 vane, qty 100. 2840-01-315-0782, qty 5.5331-00-166-1036 o-ring, qty 10. 5331-00-166-8391 o-ring, qty 5. 5331-00-166-8395 o-ring, qty 5. "	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	320035.32	=""	="asia pacific aerospace"	11-Jun-08 01:11 PM	

+="CN90302"	"a/c engine spares: key, qty 5. sleeve, qty 4. ring, qty 2. vane, qty 30."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	57266.51	=""	="asia pacific aerospace"	11-Jun-08 01:20 PM	

+="CN90304"	"Repair of Inlet Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	05-Jul-08	35827.97	=""	="Sikorsky"	11-Jun-08 01:29 PM	

+="CN90305-A1"	"Repair of Gearbox Transmission Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	30-Jun-08	58314.11	=""	="Sikorsky Aircraft Australia"	11-Jun-08 01:43 PM	

+="CN90306-A1"	"Provision of cleaning services to the Windsor premises of CRS Australia."	="CRS Australia"	11-Jun-08	="General building and office cleaning and maintenance services"	01-Jul-07	30-Jun-09	12105.00	=""	="T & B Cleaning Services"	11-Jun-08 01:47 PM	

+="CN90308"	"R1 SERVICE TO A15-103"	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	11-Jun-08	30-Oct-08	275000.00	=""	="BAE SYSTEMS"	11-Jun-08 02:19 PM	

+="CN73480"	" COMMUNICATIONS TRAINING "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Education and Training Services"	01-Apr-08	01-Apr-08	13200.00	=""	="PRESENTATIONSPLUS"	11-Jun-08 02:44 PM	

+="CN90300"	"Quarterly maintenance support payment for CHIRplus broadcast planning system."	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-Jun-08	22-Sep-08	43302.00	=""	="Rohde & Schwarz (Aust) Pty Ltd"	11-Jun-08 03:13 PM	

+="CN90290"	"Maintenance and update of NETCAT Program"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Integrated maintenance information systems"	02-Mar-08	01-Mar-09	11200.20	="06ACMA085"	="Netcat.Biz Pty Ltd"	11-Jun-08 03:18 PM	

+="CN90162"	"Certificate 4  in Government Investigation Course pe"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Educational certificates or diplomas"	02-Jun-08	13-Jun-08	43518.80	="05 ACMA007"	="KPS & Associates Pty Ltd"	11-Jun-08 03:20 PM	

+="CN90161"	"Supply and Install two strings of 36 JTT 12v620 batteries Quote No. CS04528"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Power supply units"	01-May-08	30-May-08	11926.20	=""	="Thycon Industrial Pty Ltd"	11-Jun-08 03:21 PM	

+="CN90160-A1"	"Provision of Procurement Policy and Project Management services"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Strategic planning consultation services"	29-May-08	30-Jun-09	79629.55	="07ACMA075"	="Unity Consulting Pty Ltd"	11-Jun-08 03:25 PM	

+="CN90159"	"Research into international regula of advertising, sponsorship and commercial disclosure in commercial radio."	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Market research"	26-May-08	30-Jun-08	43620.00	="07 ACMA 077"	="University of Technology Sydney"	11-Jun-08 03:27 PM	

+="CN90152"	"Consultant to Upgrade Data base Text catalogue and Migrate data"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Library or documentation services"	14-May-08	30-Jun-08	17600.00	="07ACMA060"	="Trimagic Software Pty Ltd"	11-Jun-08 03:29 PM	

+="CN90147"	"COGNOS reporting for Industry Monitoring Section"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Business function specific software"	16-May-08	16-May-08	16294.30	=""	="Cognos Pty Ltd"	11-Jun-08 03:32 PM	

+="CN90141"	"Course Fees for 9 people Certificate level 4, Government Investigation Course, plus expenses"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Educational certificates or diplomas"	25-Mar-08	24-Apr-08	35411.00	="05 ACMA 007"	="KPS and Associates Pty Ltd"	11-Jun-08 03:38 PM	

+="CN90131"	"ACMA Client Satisfaction Survey"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Sampling surveys"	22-May-08	21-Nov-08	73147.00	="07ACMA057"	="Orima Research Pty Ltd"	11-Jun-08 03:41 PM	

+="CN90323"	"Design Facilitation - 2008 LB&I Leadership Conference"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	18-Jun-08	12430.20	=""	="ThinkPlace Pty Ltd as trustee for ThinkPlace Trust"	11-Jun-08 03:46 PM	

+="CN90130-A1"	"Consulting Services for 'Cyber Safety and Social Networking Services' Research Project"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Consumer based research or clinics or focus groups"	30-Apr-08	08-May-09	104940.00	="06ACMA129"	="Blue Moon Research & Planning Pty Ltd"	11-Jun-08 03:47 PM	

+="CN73473"	" POSTAGE MARCH 2008 "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Post office"	04-Apr-08	04-Apr-08	13068.30	=""	="AUSTRALIA POST"	11-Jun-08 03:49 PM	

+="CN90093"	"Provision of NRS Call Minutes and Performance Audit Data 2008"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Audit services"	20-May-08	30-Jun-08	31218.00	="07ACMA070"	="Gibson Quai - AAS Pty Ltd"	11-Jun-08 03:49 PM	

+="CN90085"	"Consultation to provide Data Modelling Service for Anti Siphoning"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Data management and query software"	22-Apr-08	21-Jul-08	45375.00	="07/ ACMA 038"	="Pelion Group Pty Ltd"	11-Jun-08 03:52 PM	

+="CN73482"	"PAINTING IN VARIOUS AREAS"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Painting services"	28-Feb-08	28-Feb-08	21021.00	=""	="BESSELINK"	11-Jun-08 03:52 PM	

+="CN90079"	"Organisation & Management at 20 Consumer Congress Dialogue Sydney 23/7/08"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Conference centres"	23-Jul-08	23-Jul-08	55000.00	=""	="Communication Alliance Ltd"	11-Jun-08 03:58 PM	

+="CN90063"	"Provision of research on key issues relating to the Emergency Call Service and other National Interest Issues"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Temporary research and development services"	01-May-08	30-Jun-08	39820.00	="05ACMA068"	="Telcon One Pty Ltd"	11-Jun-08 04:00 PM	

+="CN73540"	"REPAIRS & PAINTING OF WINDOWS & SHUTTERS"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Painting services"	04-Apr-08	04-May-08	122629.10	=""	="SYDNEY BUILDING PROJECTS"	11-Jun-08 04:04 PM	

+="CN73524"	" INSTALLATION OF CABLES "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Electrical cable and accessories"	21-Feb-08	21-Mar-08	10555.55	=""	="IGNITE ELECTRICAL SERVICES"	11-Jun-08 04:07 PM	

+="CN73542"	"HONDA TRX 420TM"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Motorcycles"	04-Apr-08	04-May-08	11942.00	=""	="CANBERRA MOTORCYCLE CENTRE"	11-Jun-08 04:09 PM	

+="CN90326"	"Motor Vehicle Part"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	20-Jun-08	38225.14	=""	="TENIXTOLL DEFENCE LOGISTICS PTY*"	11-Jun-08 04:12 PM	

+="CN73547"	"CASE DX40 TRACTOR"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Truck tractors"	28-Feb-08	30-Jun-08	40500.00	=""	="SEMCO EQUIPMENT SALES"	11-Jun-08 04:13 PM	

+="CN90333"	"Cleaning services relating to the use of Parliament House for 2020 Summit"	="Department of the Prime Minister and Cabinet"	11-Jun-08	="Building cleaning services"	19-Apr-08	20-Apr-08	25741.91	=""	="Limro Cleaning SErvices"	11-Jun-08 04:51 PM	

+="CN90334"	" Cleaning/labour services for 2020 Summit "	="Department of the Prime Minister and Cabinet"	11-Jun-08	="General building and office cleaning and maintenance services"	18-Apr-08	21-Apr-08	10617.00	=""	="Canberra Queanbeyan Cleaning Services Pty Ltd"	11-Jun-08 05:03 PM 

--- /dev/null
+++ b/admin/partialdata/09Mar2008to13Mar2008valto.xls
@@ -1,1 +1,623 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN64645"	"REPAIR AND OH OF BLACK HAWK LANDING GEAR ASSY"	="Defence Materiel Organisation"	10-Mar-08	="Military rotary wing aircraft"	10-Mar-08	30-Jun-08	13116.32	=""	="SAAL"	10-Mar-08 09:17 AM	

+="CN64646"	"Electricity Melbourne Registry"	="Administrative Appeals Tribunal"	10-Mar-08	="Power sources"	01-Jan-08	31-Dec-09	55370.68	=""	="Origin Energy Electricity Ltd"	10-Mar-08 09:33 AM	

+="CN64647"	"Assist with member appraisal and mentoring"	="Administrative Appeals Tribunal"	10-Mar-08	="Management and Business Professionals and Administrative Services"	09-Nov-07	31-Aug-08	40280.00	=""	="The Honourable Dr Rodney Purvis AM QC"	10-Mar-08 10:01 AM	

+="CN64651"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE"	="Defence Materiel Organisation"	10-Mar-08	="Military rotary wing aircraft"	10-Mar-08	30-Jun-08	65356.70	=""	="SAAL"	10-Mar-08 02:24 PM	

+="CN64653-A1"	"Fitout construction for Toowoong Customer Service Centre refurbishment. "	="Centrelink"	10-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Mar-08	30-Jun-08	252360.90	=""	="Signature Projects Pty Ltd"	10-Mar-08 03:54 PM	

+="CN64654"	"rep and O/H of A25 helicopter Dampener assy"	="Defence Materiel Organisation"	10-Mar-08	="Military rotary wing aircraft"	10-Mar-08	31-Mar-08	20309.26	=""	="Sikorsky Aircraft Australia Limited"	10-Mar-08 03:59 PM	

+="CN64655"	"Rep and service P/N 70106-084100-046 Dampener Flutter."	="Defence Materiel Organisation"	10-Mar-08	="Military rotary wing aircraft"	10-Mar-08	31-Mar-08	17135.43	=""	="daniel.king-dmo"	10-Mar-08 04:04 PM	

+="CN64644"	"Communications, Information Systems, Education and Training to Defence Force School of Signals."	="Department of Defence"	10-Mar-08	="Education and Training Services"	14-Feb-08	18-Feb-11	6000000.00	="RFP015-HQ06"	="Box Hill Institute of TAFE"	10-Mar-08 04:14 PM	

+="CN64656"	"PROCUREMET OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	11-Mar-08	="Aircraft spars"	11-Mar-08	25-Mar-08	60909.20	=""	="AEROSPACE COMPOSITES PTY LTD"	11-Mar-08 07:33 AM	

+="CN64657-A1"	" Repair of Aircraft Control Box "	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	06-Mar-08	02-Jun-08	16444.37	=""	="Sikorsky Aircraft Australia LTD"	11-Mar-08 08:20 AM	

+="CN64658-A1"	"Repair of Hoist Main Probe"	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	14-Feb-08	26-May-08	44281.45	=""	="Sikorsky"	11-Mar-08 08:27 AM	

+="CN64661"	"Repair of Gyroscope Displacement"	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	04-Mar-08	17-Mar-08	10096.24	=""	="Bellinger Instruments Pty Ltd"	11-Mar-08 08:39 AM	

+="CN64662"	"Specialist advice on communication strat"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Graphic design"	03-Mar-08	30-Jun-08	200000.00	="TRS06/036"	="Reputation Pty Ltd"	11-Mar-08 09:04 AM	

+="CN64663"	"HWMD Trg Rd 3 ASIC"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Security and personal safety"	01-Jul-07	30-Jun-08	14025.00	="TRS05/084"	="VAST Pty Ltd Trading as Vast"	11-Mar-08 09:04 AM	

+="CN64664"	"SharePoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Management advisory services"	04-Mar-08	30-Jun-08	132000.00	="TRS06/017"	="SME GATEWAY LTD"	11-Mar-08 09:04 AM	

+="CN64665"	"Consultancy Services to assist the Department in design of ITSAP"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Management advisory services"	03-Mar-08	30-Sep-08	110000.00	="TRS07/209"	="SMEC AUSTRALIA PTY LIMITED"	11-Mar-08 09:05 AM	

+="CN64666"	"Technical Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Management advisory services"	31-Jan-08	31-Jan-08	40368.64	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	11-Mar-08 09:05 AM	

+="CN64667"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Legal services"	05-Mar-08	30-Jun-09	14401.20	="TRS06/175"	="Clayton Utz Canberra"	11-Mar-08 09:05 AM	

+="CN64668"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Legal services"	27-Feb-08	30-Jun-09	59412.41	="TRS06/175"	="MINTER ELLISON LAWYERS"	11-Mar-08 09:05 AM	

+="CN64669"	"Office Services Charges Feb 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Business administration services"	21-Feb-08	04-Apr-08	103901.92	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Mar-08 09:05 AM	

+="CN64670"	"Contract Service Fees Feb 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Business administration services"	21-Feb-08	04-Apr-08	479070.81	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Mar-08 09:05 AM	

+="CN64671"	"PROPERTY MANAGEMENT SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Real estate services"	15-Feb-08	11-Dec-09	104193.29	="TRS02/011"	="United Group Services Pty Ltd"	11-Mar-08 09:05 AM	

+="CN64672"	"LEASING PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Real estate services"	22-Feb-08	11-Dec-09	1143544.09	="TRS02/011"	="United Group Services Pty Ltd"	11-Mar-08 09:05 AM	

+="CN64673"	"PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Mar-08	="Real estate services"	22-Jan-08	11-Dec-09	957928.03	="TRS02/011"	="United Group Services Pty Ltd"	11-Mar-08 09:06 AM	

+="CN64679-A1"	"REPLENISHMENT OF AIRFRAMES S70B-2 AIRCRAFT SPARES"	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	10-Mar-08	08-Jul-08	16104.00	=""	="MILSPEC SERVICES"	11-Mar-08 09:35 AM	

+="CN64681"	"EABS III Gold sponsorship x 1"	="Geoscience Australia"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	16500.00	=""	="Petroleum Exploration Society of Australia Ltd PESA"	11-Mar-08 09:48 AM	

+="CN64682"	"2 x LTO3 Tape Drives and Connection cables"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	15-Feb-08	12786.84	=""	="Dell Australia Pty Ltd"	11-Mar-08 09:49 AM	

+="CN64683"	"Multispectral QuickBird Data"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	14489.99	=""	="Geoimage Pty Ltd"	11-Mar-08 09:49 AM	

+="CN64684"	"PRINCE2 Practitioner Package x5 from GA"	="Geoscience Australia"	11-Mar-08	="Education and Training Services"	05-Feb-08	29-Feb-08	10890.00	=""	="Tanner James Management Consultants"	11-Mar-08 09:49 AM	

+="CN64685"	"G2208 Provision for Supply of Contract Staff 2007/08"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	05-Feb-08	30-Jun-08	39600.00	=""	="AUREC Pty Ltd"	11-Mar-08 09:49 AM	

+="CN64686"	"FME 3 Day User Course Canberra 6-8 February 2008 x10 from GA"	="Geoscience Australia"	11-Mar-08	="Education and Training Services"	05-Feb-08	28-Feb-08	19635.00	=""	="Lagen Spatial Pty Ltd"	11-Mar-08 09:49 AM	

+="CN64680-A1"	" AERO  PROPULSION REPAIRED PART    "	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	05-Mar-08	25-Mar-08	10706.48	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	11-Mar-08 09:49 AM	

+="CN64687"	"Transcription project - RP00950.Transcription of 3D Marine Seismic - Invoice GDA-08-008.Consisting of 169 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	06-Feb-08	30-Jun-08	14602.50	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:49 AM	

+="CN64688"	"Maxwell LTO3 Media Tapes (+ free LTO3 labels)"	="Geoscience Australia"	11-Mar-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-08	12845.14	=""	="Dimension Data Australia Pty Ltd"	11-Mar-08 09:49 AM	

+="CN64689"	"Provision of Satellite Data and the Product Generation system"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	07-Feb-08	05-Dec-12	33643.60	=""	="Antrix Corporation Limited"	11-Mar-08 09:50 AM	

+="CN64690"	"Manufacture and installation of Spring Bay Antenna"	="Geoscience Australia"	11-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	26805.90	=""	="Saunders & Ward Pty Ltd"	11-Mar-08 09:50 AM	

+="CN64691"	"8 x Dell Precison T3400 Desktops"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	07-Feb-08	19-Feb-08	37874.58	=""	="Dell Australia Pty Ltd"	11-Mar-08 09:50 AM	

+="CN64692"	"Transcription project - RP00951.Transcription of 3D Marine Seismic - Invoice GDA-08-009.Consisting of 135 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	07-Feb-08	30-Jun-08	11357.50	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:50 AM	

+="CN64693"	"Transcription project - RP00934.Transcription of OS02 3D Marine Seismic - Invoice GDA-08-005.Consisting of 615 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	07-Feb-08	30-Jun-08	53597.50	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:50 AM	

+="CN64694"	"Transcription - RP00948.Transcription of 3D Marine Seismic - Invoice GDA-08-006.Consisting of 732 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	07-Feb-08	30-Jun-08	63470.00	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:50 AM	

+="CN64695"	"Transcription - RP00949. Transcription of Viper 3D Marine Seismic - Invoice GDA-08-007. Consisting of 271 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	07-Feb-08	30-Jun-08	23967.37	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:51 AM	

+="CN64696"	"Executive Capability Program ECP2008 5-9 May 2008"	="Geoscience Australia"	11-Mar-08	="Education and Training Services"	07-Feb-08	30-May-08	17200.00	=""	="The Leadership Consortium Inc"	11-Mar-08 09:51 AM	

+="CN64697"	"Contingency for accommodation support costs for 2008 Graduate Intake"	="Geoscience Australia"	11-Mar-08	="Personnel recruitment"	08-Feb-08	31-Mar-08	15500.00	=""	="Manuka Park"	11-Mar-08 09:51 AM	

+="CN64698"	"Bass Strait Airborne Magnetic Survey (Ref 2007/3573) - G2023A-A"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	11-Feb-08	30-Jun-08	227217.98	=""	="Thomson Aviation Pty Ltd"	11-Mar-08 09:51 AM	

+="CN64699"	"G2223 Provision for Staff under Deed Of Standing Offer  S.D. to 4 Feb 2009"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	11-Feb-08	04-Feb-09	178200.00	=""	="AUREC Pty Ltd"	11-Mar-08 09:51 AM	

+="CN64700"	"RP00371 Gulfrex SI 2 SI MSS. Consisting of 687 x 9 track tapes - Invoice: 00005052 - 20% payment."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	11-Feb-08	30-Jun-08	12668.67	=""	="SpectrumData"	11-Mar-08 09:51 AM	

+="CN64701"	"RP00937 - Invoice 00005048 - Transcription of Demeter 3D Marine Seismic. Consisting of 5146 x 3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	11-Feb-08	30-Jun-08	303704.50	=""	="SpectrumData"	11-Mar-08 09:51 AM	

+="CN64702"	"satellite communications equipment (Vsat)"	="Geoscience Australia"	11-Mar-08	="Tools and General Machinery"	12-Feb-08	30-Jun-08	16170.00	=""	="Satellite Services"	11-Mar-08 09:51 AM	

+="CN64703"	"Relocation expenses - from Bordersholm, GER to Curtin ACT, AUS"	="Geoscience Australia"	11-Mar-08	="Personnel recruitment"	13-Feb-08	30-Jun-08	14231.00	=""	="Hasenkamp"	11-Mar-08 09:51 AM	

+="CN64704"	"Georef100_WP1, 2, 3 (Georeferencing of scanned  1:100,000 scale topographic printed maps)."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	28378.35	=""	="Photo Mapping Services Pty Ltd"	11-Mar-08 09:52 AM	

+="CN64705"	"Georef100_WP6, 7 (Georeferencing of scanned  1:100,000 scale topographic printed maps)."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	24020.85	=""	="Fugro Spatial Solutions Pty Ltd"	11-Mar-08 09:52 AM	

+="CN64706"	"Georef100_WP8, 9, 10, 11  (Georeferencing of scanned  1:100,000 scale topographic printed maps).  Deed # G1681D � CMC # G2311 � TRIM ref 2008/357; D2008-12745"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	29368.50	=""	="DSM Geodata"	11-Mar-08 09:52 AM	

+="CN64707"	"Georef100_WP4, 5 (Georeferencing of scanned  1:100,000 scale topographic printed maps).  Deed # G1685D � CMC # G2309 � TRIM ref 2008/357; D2008-12745"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	17482.50	=""	="Sinclair Knight Merz"	11-Mar-08 09:52 AM	

+="CN64709"	"G2224 Provision for Staff under Deed Of Standing Offer  M.G. 2007/08"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	49500.00	=""	="Peoplebank Australia Ltd"	11-Mar-08 09:52 AM	

+="CN64708"	"CDAC- Candidate Registration"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	30-Jun-08	23650.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	11-Mar-08 09:52 AM	

+="CN64710"	"Proffessional Services- Recruitment"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	04-Mar-08	17655.00	="RFQ"	="HUDSON GLOBAL RESOURCES AUST"	11-Mar-08 09:52 AM	

+="CN64711"	"FaCHSIA draft mapping updates agreed variation #2 (relates to GA inv # 806817 to FaHCSIA)."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	14-Feb-08	30-Jun-08	14206.00	="2006/3933"	="Terralink International Limited"	11-Mar-08 09:52 AM	

+="CN64712"	"Speech Writing Services"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	13500.00	="RFQ 3 QUOTES"	="Julian Cribb & Associates"	11-Mar-08 09:53 AM	

+="CN64713"	"Workshop Review Panel Expenses - Digital Elevation Model Project - National Elevation Data Framework."	="Geoscience Australia"	11-Mar-08	="Meeting facilities"	14-Feb-08	30-Jun-08	21450.00	=""	="Australian Academy of Science"	11-Mar-08 09:53 AM	

+="CN64714"	"Professional Services - Recruitment"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Apr-08	36900.00	="RFQ2007/11"	="Kathleen Townsend Executive Solutio"	11-Mar-08 09:53 AM	

+="CN64715"	"53 Compressional (Vp) & Shear (Vs) Wave Velocity measurements to 600 MPa confining pressures on samples from Sunrise Dam Suite #2"	="Geoscience Australia"	11-Mar-08	="Professional engineering services"	15-Feb-08	31-Mar-08	20500.00	=""	="Dalhousie University"	11-Mar-08 09:53 AM	

+="CN64716"	"10 of the Best booklet"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	12000.00	=""	="Simon David Grose"	11-Mar-08 09:53 AM	

+="CN64717"	"Remastering Project - Transcription of RP00690 Broadmere. Consisting of 2244 x 9 track reels."	="Geoscience Australia"	11-Mar-08	="Computer services"	20-Feb-08	29-Feb-08	39825.13	=""	="Veritas Geophysical (Asia Pacific) Pte. Ltd"	11-Mar-08 09:53 AM	

+="CN64718"	"Temporary Administration Position"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	06-Feb-08	10672.76	=""	="INTER STAFFING SERVICES PTY LTD"	11-Mar-08 09:53 AM	

+="CN64719"	"Technical and maintenance support for TERSS facility during 2007/2008."	="Geoscience Australia"	11-Mar-08	="Computer services"	19-Feb-08	30-Jun-08	22000.00	=""	="CSIRO"	11-Mar-08 09:53 AM	

+="CN64720"	"Printing of National statements"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	05-Feb-08	30508.50	="RFQ"	="PARAGON PRINTERS"	11-Mar-08 09:53 AM	

+="CN64721"	"Royalty payments on map sales Oct 06 to Dec07"	="Geoscience Australia"	11-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	28-Feb-08	21152.22	=""	="Australian Institute of Aboriginal and Torres Strait Islander Studies AIATSIS"	11-Mar-08 09:53 AM	

+="CN64722"	"DLA Phillip fox - Review of Australian Privacy Law Discussion Paper"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	33000.00	=""	="DLA PHILLIPS FOX"	11-Mar-08 09:54 AM	

+="CN64723"	"Sales Centre fit out, supply and install Newtech Desks, PSU and Mobile pedestals as per quote 0812FG"	="Geoscience Australia"	11-Mar-08	="General building construction"	21-Feb-08	30-Jun-08	11335.50	=""	="Schiavello ACT Pty Ltd"	11-Mar-08 09:54 AM	

+="CN64724"	"Complimentory Medicine Future directions Forum"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	21-Nov-06	05-Feb-08	20994.12	=""	="NSW DEPARTMENT OF STATE AND REGIONA"	11-Mar-08 09:54 AM	

+="CN64725"	"G1994 Provision for Staff under Deed Of Standing Offer B.W.  2007/08"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	21-Feb-08	30-Jun-08	44000.00	="2005/1773"	="Frontier Group Australia Pty Ltd"	11-Mar-08 09:54 AM	

+="CN64726"	"Temporary filling of CFO position"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	11-Apr-08	71000.00	=""	="ACUMEN CONTRACTING & RECRUITMENT PT"	11-Mar-08 09:54 AM	

+="CN64727"	"4 x Precision M6300 Laptops"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	21-Feb-08	06-Mar-08	21926.52	=""	="Dell Australia Pty Ltd"	11-Mar-08 09:54 AM	

+="CN64728"	"Reveiw of Australian Law Privacy Discussion"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	08-Dec-07	31-Jan-08	33000.00	=""	="DLA PHILLIPS FOX"	11-Mar-08 09:54 AM	

+="CN64729"	"WP Collie Pemberton #1 (Data Revision) � Deed # G1688D ; CMC # G2320"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	22-Feb-08	30-Jun-08	22833.20	=""	="Terranean Mapping Technologies"	11-Mar-08 09:54 AM	

+="CN64730"	"Quantum Sponsorship of interantional Nano-Science and Nano- Technology Conference"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	24-Feb-08	16500.00	=""	="EVENT PLANNERS AUSTRALIA  PTY LTD"	11-Mar-08 09:54 AM	

+="CN64731"	"Access and use of ANU Supercomputer Facility"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	22-Feb-08	30-Jun-08	44000.00	=""	="Australian National University"	11-Mar-08 09:54 AM	

+="CN64732"	"Banquet for awards dinner"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	14-Feb-08	16830.87	=""	="HYATT HOTEL CANBERRA"	11-Mar-08 09:54 AM	

+="CN64733"	"G1830 Provision for User Support  IT  Contract Staff K..B. to 30 June 2008"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	22-Feb-08	30-Jun-08	82500.00	="2005/1773"	="AUREC Pty Ltd"	11-Mar-08 09:54 AM	

+="CN64734"	"Program Managment Project Contractor"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	28000.00	=""	="HAYS PERSONNEL SERVICES"	11-Mar-08 09:54 AM	

+="CN64735"	"a/c 9124 0286 28 SDS WAN Services to 30 June 2008"	="Geoscience Australia"	11-Mar-08	="Telecommunications media services"	22-Feb-08	30-Jun-08	72600.00	=""	="Optus Communications"	11-Mar-08 09:54 AM	

+="CN64736"	"Program Managment Project Contractor"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	66000.00	=""	="HAYS PERSONNEL SERVICES"	11-Mar-08 09:54 AM	

+="CN64737"	"Provision of SHRIMP Data Reduction Application and Manual"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	25-Feb-08	31-Mar-08	43500.00	=""	="Dr Kenneth Ludwig"	11-Mar-08 09:55 AM	

+="CN64738"	"Provision of additions to the existing security and access control systems"	="National Health and Medical Research Council"	11-Mar-08	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jan-08	61589.00	=""	="HONEYWELL LTD"	11-Mar-08 09:55 AM	

+="CN64739"	"Geoimage Quote Q9335 - Quickbird data over Moree NSW 09.10.06 & system Orthorectification"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	25-Feb-08	30-Jun-08	10000.00	=""	="Geoimage Pty Ltd"	11-Mar-08 09:55 AM	

+="CN64740"	"Security Clearance checks"	="National Health and Medical Research Council"	11-Mar-08	="Healthcare Services"	02-Jul-07	30-Jun-08	12000.00	=""	="MPS"	11-Mar-08 09:55 AM	

+="CN64741"	"2008 Spatial Management Case Studies"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	25-Feb-08	31-Mar-08	74851.15	=""	="Bearcage Productions"	11-Mar-08 09:55 AM	

+="CN64742"	"Java contractors to Develop components for NHMRC's RIMES project"	="National Health and Medical Research Council"	11-Mar-08	="Healthcare Services"	24-Jul-07	31-Jul-08	86440.00	="RFT334/0607"	="FACE 2 FACE RECRUITMENT  PTY LTD"	11-Mar-08 09:55 AM	

+="CN64743"	"1 x Dell PowerEdge Rack Mount Server"	="Geoscience Australia"	11-Mar-08	="Computer Equipment and Accessories"	26-Feb-08	06-Mar-08	10890.00	=""	="Dell Australia Pty Ltd"	11-Mar-08 09:55 AM	

+="CN64744"	"NICS Fellowship Dr Sepehr Shakib"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	20-May-07	30-Jun-08	33000.00	=""	="ROYAL ADELAIDE HOSPITAL"	11-Mar-08 09:55 AM	

+="CN64745"	"RP00898 Transcription of Seismic Survey consisting of 373 x 3590 cartridges & 3 x DLT Cartridges"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	26-Feb-08	30-Jun-08	21679.90	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	11-Mar-08 09:55 AM	

+="CN64746"	"Provision of Java Contractor to Develop components of the NHMRC's RIMES Project"	="National Health and Medical Research Council"	11-Mar-08	="Healthcare Services"	02-Jul-07	01-Feb-08	127776.00	="RFT 334/0607"	="DEVSGROUP PTY LTD"	11-Mar-08 09:55 AM	

+="CN64747"	"WP DC011 - Conversion and Translation of IGDS Data to the TLM50 GISD Geodatabase.(Production & Supply fo Topographic Maps & Data for Defence). Deed # G1683D; CMC # G2328"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	26-Feb-08	30-Jun-08	17325.00	=""	="Photo Mapping Services Pty Ltd"	11-Mar-08 09:55 AM	

+="CN64748"	"Fellowship"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-06	29-Feb-08	57115.40	=""	="ROYAL ADELAIDE HOSPITAL"	11-Mar-08 09:55 AM	

+="CN64749"	"Designing Java Web Services"	="Geoscience Australia"	11-Mar-08	="Education and Training Services"	26-Feb-08	30-Jun-08	10684.30	=""	="Atlas Business Services A/T/F ABS Trust"	11-Mar-08 09:55 AM	

+="CN64750"	"Fellowship"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-06	29-Feb-08	21860.00	=""	="FLINDERS MEDICAL CENTRE"	11-Mar-08 09:55 AM	

+="CN64751"	"Consultancy Contract CMC G2174 for GeoNetwork Enhancement Project."	="Geoscience Australia"	11-Mar-08	="Business and corporate management consultation services"	26-Feb-08	30-Jun-08	70000.00	=""	="Software Improvements Pty Ltd"	11-Mar-08 09:56 AM	

+="CN64752"	"Fellowship"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-06	29-Feb-08	22000.00	=""	="SOUTHERN HEALTH"	11-Mar-08 09:56 AM	

+="CN64754"	"WP DC010 and WP DC 012 - Conversion and Translation of IGDS Data to the TLM50 GISD Geodatabase.(Production & Supply fo Topographic Maps & Data for Defence)."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	26-Feb-08	30-Jun-08	41580.00	=""	="Terranean Mapping Technologies"	11-Mar-08 09:56 AM	

+="CN64755"	"Early General News"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	29-Feb-08	10998.90	=""	="HMA BLAZE PTY LTD"	11-Mar-08 09:56 AM	

+="CN64756"	"Consultancy Contract for Spatial services. Geoscience Australia Contract No. G2287 expiring on 18/3/2008 refers."	="Geoscience Australia"	11-Mar-08	="Business and corporate management consultation services"	26-Feb-08	31-Mar-08	11000.00	=""	="Spatial Strategies Pty Ltd"	11-Mar-08 09:56 AM	

+="CN64757"	"Systematic Searching"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jun-08	28875.00	=""	="USEFUL SOLUTIONS PTY LTD"	11-Mar-08 09:56 AM	

+="CN64758"	"Transcription of RP00873 1997 Pegasus 2D/3D Marine Seismic Survey. consisting of 360x3590 cartridges."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	27-Feb-08	30-Jun-08	31839.50	="2006-3933"	="Phoenix Data Services Pty Ltd"	11-Mar-08 09:56 AM	

+="CN64759"	"Fellowship"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-05	30-Mar-08	44000.00	=""	="ROYAL CHILDREN'S HOSPITAL"	11-Mar-08 09:56 AM	

+="CN64760"	"Remastering Project - Transcription RP00690 Broadmere. Consisting of 2244 x 9 track reels."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	27-Feb-08	30-Jun-08	32602.53	=""	="CGGVeritas (Guardian Data Seismic)"	11-Mar-08 09:56 AM	

+="CN64761"	"Literature Reveiw Glaucoma"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	15-Jul-08	165165.00	="RFT0890708"	="UNIVERSITY OF SOUTH AUSTRALIA"	11-Mar-08 09:56 AM	

+="CN64762"	"South West Catchment Council (SWCC) Dumbleyung Airborne Magnetic & Radiometric Survey (inclusive of full stand-by) [Ref 2007/3752]"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	27-Feb-08	30-Jun-08	755306.94	=""	="Fugro Airborne Surveys"	11-Mar-08 09:56 AM	

+="CN64763"	"Printing of the Annual Report"	="National Health and Medical Research Council"	11-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Dec-07	21-Feb-08	18626.30	="RFQ"	="PIRION PTY LIMITED"	11-Mar-08 09:56 AM	

+="CN64764"	"G2253 Digitisation of Legacy Publications 2008"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	28-Feb-08	30-Jun-08	60000.00	=""	="Speedscan Pty Limited"	11-Mar-08 09:56 AM	

+="CN64765"	"Lease of 51 Allara st carpark"	="National Health and Medical Research Council"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	31-Mar-09	31969.32	=""	="JONES LANG LASALLE (NSW) PTY LTD"	11-Mar-08 09:57 AM	

+="CN64766"	"Provision of Human Resources On Line services. Contract services for year two of contract  G1547."	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	28-Feb-08	30-Jun-08	36000.00	=""	="NGA.NET Pty Ltd"	11-Mar-08 09:57 AM	

+="CN64767"	"To define and document HR and Financial Management Information system requirements"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	30734.00	="RFQ 125/0607"	="OAKTON AA SERVICES PTY LTD"	11-Mar-08 09:57 AM	

+="CN64768"	"Geokin Software Licence Maintenance"	="Geoscience Australia"	11-Mar-08	="Software"	28-Feb-08	14-Feb-09	23095.43	=""	="Beicip-Franlab"	11-Mar-08 09:57 AM	

+="CN64769"	"HRC of NZ funds being passed by NHMRC to University of Sydney"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	27000.00	=""	="UNI OF SYDNEY"	11-Mar-08 09:57 AM	

+="CN64770"	"Supply and Installation of a Computer Controlled Benchtop Gas Chromotagraph coupled Mass Spectrometer"	="Geoscience Australia"	11-Mar-08	="Tools and General Machinery"	28-Feb-08	30-Jun-08	136584.16	=""	="Agilent Technologies Pty Ltd"	11-Mar-08 09:57 AM	

+="CN64771-A1"	"Legal Services"	="National Health and Medical Research Council"	11-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	12955.50	=""	="CLAYTON UTZ"	11-Mar-08 09:57 AM	

+="CN64772"	"Additional funds - PO# 22371 - Extension of Contract to 30 Jun 2008"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	29-Feb-08	30-Jun-08	44000.00	="2005//1773"	="Collective Resources"	11-Mar-08 09:57 AM	

+="CN64773"	"Contract services - 4 Mar 08 to 30 Jun 08"	="Geoscience Australia"	11-Mar-08	="Temporary personnel services"	29-Feb-08	30-Jun-08	62700.00	=""	="Frontier Group Australia Pty Ltd"	11-Mar-08 09:57 AM	

+="CN64774-A1"	"IMU Contract Programmer: IMU-ICT114 Official Order: IMU2008/005"	="Department of Veterans' Affairs"	11-Mar-08	="Computer services"	18-Feb-08	30-Jun-08	78408.00	=""	="Icon Recruitment Pty Ltd"	11-Mar-08 10:00 AM	

+="CN64775"	"IMU Contract Programmer: IMU-ICT054 Official Order IMU2008/006"	="Department of Veterans' Affairs"	11-Mar-08	="Computer services"	01-Mar-08	27-Feb-09	253501.00	=""	="Srigo Pty Ltd"	11-Mar-08 10:00 AM	

+="CN64776"	"IMU Contract Programmer: IMU-ICT057 Official Order: IMU2008/007"	="Department of Veterans' Affairs"	11-Mar-08	="Computer services"	01-Mar-08	28-Feb-09	145200.00	=""	="Hobotech Pty Ltd"	11-Mar-08 10:00 AM	

+="CN64777"	"IMU Contract Programmer: IMU-ICT052 Official Order: IMU2008/008"	="Department of Veterans' Affairs"	11-Mar-08	="Computer services"	29-Feb-08	27-Feb-09	174627.00	=""	="R&D Professional IT Services Pty Ltd"	11-Mar-08 10:00 AM	

+="CN64778-A1"	"Specifc fiinancial services"	="Department of Veterans' Affairs"	11-Mar-08	="Accounting and auditing"	01-Jun-07	01-Jun-09	408750.00	=""	="Synergy Group Australia Ltd"	11-Mar-08 10:00 AM	

+="CN64779"	"Warehousing Storage and distribution"	="Department of Veterans' Affairs"	11-Mar-08	="Transportation and Storage and Mail Services"	01-Mar-08	31-Mar-11	3600000.00	=""	="Moore ADS"	11-Mar-08 10:00 AM	

+="CN64780-A1"	"Provision of Senior Medical Adviser Services"	="Department of Veterans' Affairs"	11-Mar-08	="Comprehensive health services"	05-Mar-08	05-Mar-10	320000.00	="SMA01-08"	="Odcopro Unit Trust"	11-Mar-08 10:01 AM	

+="CN64782"	"Printing services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Reproduction services"	01-Dec-07	31-Dec-07	19871.50	=""	="Paragon Printers Australasia Pty Ltd"	11-Mar-08 10:10 AM	

+="CN64785"	"Cabcharge account December 2007"	="Australian Competition and Consumer Commission"	11-Mar-08	="Passenger transport"	01-Dec-07	31-Jan-08	16619.36	=""	="Cabcharge Australia Pty Ltd"	11-Mar-08 10:16 AM	

+="CN64788"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	01-Feb-08	15-Mar-08	25025.00	=""	="McGrath Nicol Corporate Advisory"	11-Mar-08 10:31 AM	

+="CN64790"	"Telecommunication services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Telecommunications media services"	01-Feb-08	29-Mar-08	23726.37	=""	="Telstra"	11-Mar-08 10:37 AM	

+="CN64791"	"Cabcharge account January 2008"	="Australian Competition and Consumer Commission"	11-Mar-08	="Passenger transport"	01-Jan-08	29-Feb-08	10639.48	=""	="Cabcharge Australia Pty Ltd"	11-Mar-08 10:41 AM	

+="CN64794"	"VCU Relocation and upgrade"	="Australian Competition and Consumer Commission"	11-Mar-08	="Audio and visual presentation and composing equipment"	01-Feb-08	30-Jun-09	59652.00	=""	="Vantage Systems Pty Ltd"	11-Mar-08 10:46 AM	

+="CN64792"	" Multimedia Technician training to Defence personnel which have Multimedia samples with a realistic ADF focus within the Sydney area. "	="Department of Defence"	11-Mar-08	="Education and Training Services"	31-Jan-08	28-Jan-10	330109.20	="RFT008-HQ07"	="TAFE NSW - South Western Sydney Institute"	11-Mar-08 10:47 AM	

+="CN64787"	"Building services"	="Australian Competition and Consumer Commission"	11-Mar-08	="General building construction"	01-Feb-08	12-Feb-08	10879.00	=""	="Monaro Commercial Interiors"	11-Mar-08 10:47 AM	

+="CN64796"	"repair and overhaul of black hawk dampener assy."	="Defence Materiel Organisation"	11-Mar-08	="Military rotary wing aircraft"	11-Mar-08	31-Mar-08	12597.53	=""	="SAAL"	11-Mar-08 10:52 AM	

+="CN64797-A1"	"Assessment of ACT Policing's Family Violence Intervention Program"	="Australian Federal Police"	11-Mar-08	="Violence avoidance education or violence prevention instructional materials"	18-Jan-08	30-Jun-08	30000.00	=""	="Australian Institute of Criminology"	11-Mar-08 10:57 AM	

+="CN64798"	"Saw Band Metal Cutting"	="Defence Materiel Organisation"	11-Mar-08	="Sawing machines"	06-Mar-08	05-May-08	16060.00	=""	="Modern Tools"	11-Mar-08 11:03 AM	

+="CN64800"	"Upgrading network in Melbourne"	="Australian Competition and Consumer Commission"	11-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	31-Jan-09	11523.60	=""	="Desa Australia Pty Ltd"	11-Mar-08 11:24 AM	

+="CN64802"	"Cabcharge account November 2007"	="Australian Competition and Consumer Commission"	11-Mar-08	="Passenger transport"	01-Nov-07	31-Dec-07	34083.39	=""	="Cabcharge Australia Pty Ltd"	11-Mar-08 11:28 AM	

+="CN64806"	"Document processing services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Computer services"	01-Jan-08	31-Jan-08	11970.77	=""	="CCH Workflow Solutions"	11-Mar-08 11:36 AM	

+="CN64807"	"A23 AIRCRAFT - REPAIRS TO CYLINDER AND PISTON ASSEMBLY,LANDING GEAR"	="Defence Materiel Organisation"	11-Mar-08	="Military fixed wing aircraft"	07-Mar-08	06-May-08	13613.64	=""	="AIRFLITE PTY LTD"	11-Mar-08 11:39 AM	

+="CN64808"	"Document Processing Services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Computer services"	01-Nov-07	30-Nov-07	13460.70	=""	="CCH Workflow Solutions"	11-Mar-08 11:41 AM	

+="CN64809"	"Telecommunication Services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Telecommunications media services"	13-Dec-07	13-Jan-08	10617.94	=""	="Telstra"	11-Mar-08 11:45 AM	

+="CN64812"	"Telecommunication Services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Telecommunications media services"	01-Jan-08	31-Mar-08	19833.15	=""	="Telstra"	11-Mar-08 11:50 AM	

+="CN64813-A2"	"Provision of Cleaning Services at Whyalla CRS Australia premises"	="CRS Australia"	11-Mar-08	="Interior finishing"	01-Mar-07	28-Feb-10	17452.60	=""	="RM Cleaning Services"	11-Mar-08 11:51 AM	

+="CN64814-A1"	"Supply of communications equipment"	="Australian Federal Police"	11-Mar-08	="Communications Devices and Accessories"	20-Feb-08	31-Dec-08	107902.56	=""	="Absolute Cabling Systems Pty Ltd"	11-Mar-08 11:54 AM	

+="CN64815"	"Printing"	="Australian Competition and Consumer Commission"	11-Mar-08	="Printed media"	17-Jan-08	28-Feb-08	39201.80	=""	="Pirion Pty Ltd"	11-Mar-08 11:56 AM	

+="CN64816"	"Media Monitoring"	="Australian Competition and Consumer Commission"	11-Mar-08	="Printed media"	01-Jan-08	31-Jan-08	12698.29	=""	="Media Monitors Australia"	11-Mar-08 12:03 PM	

+="CN64817"	"Copyright charges"	="Australian Competition and Consumer Commission"	11-Mar-08	="Writing and translations"	01-Jul-06	30-Jun-07	11477.56	=""	="Copyright Agency Limited"	11-Mar-08 12:09 PM	

+="CN64818"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	25-Feb-08	30-Sep-08	59496.00	=""	="McGrath Nicol Corporate Advisory"	11-Mar-08 12:15 PM	

+="CN64819"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	30-Jan-08	30-Jun-08	100000.00	=""	="LECG Ltd"	11-Mar-08 12:21 PM	

+="CN64823"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	08-Jan-08	31-Dec-08	50000.00	=""	="LECG"	11-Mar-08 12:26 PM	

+="CN64825"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	11-Feb-08	30-Jun-08	35000.00	=""	="EcoAssist Pty Lty"	11-Mar-08 12:32 PM	

+="CN64826"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	21-Feb-08	30-Jun-08	10000.00	=""	="Twaddle Family Investments Pty Ltd"	11-Mar-08 12:37 PM	

+="CN64827"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	18-Feb-08	30-Jun-08	12000.00	=""	="McGrath Nicol Corporate Advisory"	11-Mar-08 12:42 PM	

+="CN64828"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	18-Feb-08	09-May-08	25000.00	=""	="Pirac Economics"	11-Mar-08 12:45 PM	

+="CN64829"	"Consultancy"	="Australian Competition and Consumer Commission"	11-Mar-08	="Management advisory services"	01-Jan-08	31-Jan-08	23500.00	=""	="Niche Government Consulting & Assurance"	11-Mar-08 12:50 PM	

+="CN64830"	"Web development services"	="Australian Competition and Consumer Commission"	11-Mar-08	="Computer services"	01-Nov-07	30-Nov-07	10076.00	=""	="Aggmedia Pty Ltd"	11-Mar-08 12:54 PM	

+="CN64831-A1"	"AUDIT AND AUDIT RELATED SERVICES UNDER NSW STATE GOVERNMENT PERIOD CONTRACT 068/714 (AVAILABLE TO STATE AND FEDERAL GOVERNMENT AGENCIES)"	="Federal Court of Australia"	11-Mar-08	="Audit services"	01-Mar-08	01-Mar-11	231000.00	=""	="DELOITTE TOUCHE TOHMATSU"	11-Mar-08 12:58 PM	

+="CN64835-A2"	"Provision of Clinical Nueropsychology services to Melbourne Metro region of CRS australia"	="CRS Australia"	11-Mar-08	="Psychologists services"	02-Jan-08	31-Dec-10	56716.00	=""	="Elizabeth Mullaly"	11-Mar-08 01:22 PM	

+="CN64836-A2"	"Facilitiation of Future Directions of policy and Future stratergies Division of AFP"	="Australian Federal Police"	11-Mar-08	="Corporate objectives or policy development"	08-Feb-08	31-Mar-08	14527.50	=""	="Thinkplace Pty Ltd"	11-Mar-08 01:28 PM	

+="CN64837"	"repair of Qty 5 aircraft components"	="Defence Materiel Organisation"	11-Mar-08	="Anti submarine aircraft"	11-Mar-08	30-Jun-08	31100.00	=""	="BELLINGER INSTRUMENTS"	11-Mar-08 01:48 PM	

+="CN64839"	"packaging"	="Royal Australian Mint"	11-Mar-08	="Paperboard and packaging papers"	05-Feb-08	20-Feb-08	10457.04	=""	="NEXUS PRINT SOLUTIONS"	11-Mar-08 02:01 PM	

+="CN64841"	"filing cabinets class C"	="Royal Australian Mint"	11-Mar-08	="Metal housings or cabinets"	07-Feb-08	07-Feb-08	25469.40	=""	="PLANEX SALES PTY LTD (VIC)"	11-Mar-08 02:16 PM	

+="CN64842"	"Folder File, Registry File Cover, quantity 60,000."	="Defence Materiel Organisation"	11-Mar-08	="Files"	03-Mar-08	19-May-08	29931.00	="2680121"	="Rolex Printing Pty Ltd"	11-Mar-08 02:19 PM	

+="CN64840-A2"	" National Media Monitoring Services "	="Department of Human Services"	11-Mar-08	="Telecommunications media services"	11-Mar-08	01-Oct-12	440000.00	="RFTS07/0211"	="Media Monitors Pty Ltd"	11-Mar-08 02:19 PM	

+="CN64843"	"Recruitment fees"	="Royal Australian Mint"	11-Mar-08	="Recruitment services"	07-Feb-08	07-Feb-08	14139.88	=""	="HAYS PERSONNEL SERVICES P/L"	11-Mar-08 02:24 PM	

+="CN64844"	"postage out charges"	="Royal Australian Mint"	11-Mar-08	="Post"	11-Feb-08	11-Feb-08	330000.00	=""	="AUSTRALIA POST"	11-Mar-08 02:35 PM	

+="CN64852"	"Nickle silver strip"	="Royal Australian Mint"	11-Mar-08	="Nickel based super alloys"	14-Feb-08	15-Feb-08	49500.00	=""	="B. MASON & SONS LTD"	11-Mar-08 02:45 PM	

+="CN64853"	"Provision for Legal Counsel"	="Comsuper"	11-Mar-08	="Human resources services"	14-Feb-08	30-Jun-08	96000.00	=""	="Australian Government Solicitors"	11-Mar-08 02:54 PM	

+="CN64854-A1"	"Variation to the contract for the Provisions for System Tester"	="Comsuper"	11-Mar-08	="Human resources services"	20-Sep-07	23-Jun-08	36960.00	=""	="M&T Resources"	11-Mar-08 02:57 PM	

+="CN64855"	"english as a second language course"	="Royal Australian Mint"	11-Mar-08	="Resources for learning to speak English"	15-Feb-08	15-Feb-08	22000.00	=""	="CIT SOLUTIONS"	11-Mar-08 03:02 PM	

+="CN64856"	"Provision for development, design and Facilitate Business Planning Workshop"	="Comsuper"	11-Mar-08	="Education and Training Services"	08-Feb-08	31-Mar-08	20000.00	=""	="Fyusion Asia Pacific Pty Ltd"	11-Mar-08 03:04 PM	

+="CN64848"	"various Thermal Weapon Sights"	="Defence Materiel Organisation"	11-Mar-08	="Personal safety devices or weapons"	11-Mar-08	16-May-08	1241210.10	="DNJRHF"	="THALES AUSTRALIA"	11-Mar-08 03:06 PM	

+="CN64857-A1"	"Provision for IT Security Specialist"	="Comsuper"	11-Mar-08	="Human resources services"	04-Mar-08	30-Jun-08	61738.60	=""	="Face2Face"	11-Mar-08 03:07 PM	

+="CN64858"	"SUPPLY OF MONITOR, PATIENT VITAL SIGNS"	="Defence Materiel Organisation"	11-Mar-08	="Medical Equipment and Accessories and Supplies"	11-Mar-08	28-Apr-08	26095.65	=""	="WELCH ALLYN AUSTRALIA PTY LTD"	11-Mar-08 03:13 PM	

+="CN64859-A1"	"Provision for a Project Manager"	="Comsuper"	11-Mar-08	="Human resources services"	06-Mar-08	06-Sep-08	131500.00	=""	="Stratagem Computer Contractors"	11-Mar-08 03:15 PM	

+="CN64860-A1"	"Provision for the Solution Architect Services"	="Comsuper"	11-Mar-08	="Human resources services"	01-Oct-07	30-Jun-08	95040.00	=""	="Cordelta Pty Limited"	11-Mar-08 03:17 PM	

+="CN64861"	"SUPPLY OF SPIROMETERS"	="Defence Materiel Organisation"	11-Mar-08	="Medical Equipment and Accessories and Supplies"	11-Mar-08	30-Apr-08	19250.00	=""	="EQUIPMED PTY LTD"	11-Mar-08 03:19 PM	

+="CN64862"	"Provision for Tender development services"	="Comsuper"	11-Mar-08	="Human resources services"	28-Jan-08	29-Mar-08	30800.00	=""	="Cordelta Pty Limited"	11-Mar-08 03:21 PM	

+="CN64865"	"Telephony Hardware"	="Australian Taxation Office"	11-Mar-08	="Engineering and Research and Technology Based Services"	05-Mar-08	30-Jun-08	220000.00	=""	="OPTUS BILLING SERVICES"	11-Mar-08 03:46 PM	

+="CN64866"	"2 X 2 SEATER LOUNGE, 2 X SINGLE SEATER CHAIR & 2 X BOX SIDE TABLE"	="Australian Taxation Office"	11-Mar-08	="Furniture and Furnishings"	07-Mar-08	07-Mar-08	10773.40	=""	="Schiavello P/L"	11-Mar-08 03:46 PM	

+="CN64867"	"Tailored Training MS 2273 & 2276 11 Attendees"	="Australian Taxation Office"	11-Mar-08	="Education and Training Services"	11-Mar-08	11-Mar-08	29900.00	=""	="EXCOM EDUCATION"	11-Mar-08 03:46 PM	

+="CN64869"	"LEGAL SERVICES"	="Australian Taxation Office"	11-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	11-Mar-08	10148.00	=""	="A J DEVER PTY LTD"	11-Mar-08 03:49 PM	

+="CN64870"	"REVIEW HR BUSINESS SUPPORT TEAM"	="Australian Taxation Office"	11-Mar-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	07-Mar-08	20300.00	=""	="WORKPLACE RESEARCH ASSOCIATES PTY L"	11-Mar-08 03:49 PM	

+="CN64868"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF. "	="Defence Materiel Organisation"	11-Mar-08	="Camping and outdoor equipment and accessories"	11-Mar-08	23-May-08	104775.00	=""	="PRIMUS AUSTRALIA"	11-Mar-08 03:49 PM	

+="CN64871"	"HECS EXPENSES 2007 CADETS"	="Australian Taxation Office"	11-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	06-Mar-08	48104.00	=""	="UNIVERSITY OF CANBERRA"	11-Mar-08 03:49 PM	

+="CN64872"	"CONFERENCE CANCELLATION FEE"	="Australian Taxation Office"	11-Mar-08	="Education and Training Services"	20-Feb-08	05-Mar-08	13523.50	=""	="CQ FUNCTIONS"	11-Mar-08 03:49 PM	

+="CN64873"	"DATA REPORTS"	="Australian Taxation Office"	11-Mar-08	="Published Products"	29-Feb-08	05-Mar-08	27500.00	=""	="COMPUTERSHARE INVESTOR SERV"	11-Mar-08 03:49 PM	

+="CN64874"	"TRAINING"	="Australian Taxation Office"	11-Mar-08	="Education and Training Services"	29-Feb-08	04-Mar-08	36202.00	=""	="EMOTIONAL INTELLIGENCE WORLDWIDE"	11-Mar-08 03:50 PM	

+="CN64876"	"LeaderFISH Brouchet 20 Copies"	="Australian Taxation Office"	11-Mar-08	="Education and Training Services"	03-Mar-08	03-Mar-08	16390.00	=""	="Mind Resources"	11-Mar-08 03:53 PM	

+="CN64877"	"Business systems Analysis (cusomised) 10-15 attendees"	="Australian Taxation Office"	11-Mar-08	="Education and Training Services"	03-Mar-08	19-Mar-08	12870.00	=""	="SOFTWARE EDUCATION AUSTRALIA P/L"	11-Mar-08 03:53 PM	

+="CN64875"	" SUPPLY OF PUMP, INTRAVENOUS INFUSION "	="Defence Materiel Organisation"	11-Mar-08	="Medical Equipment and Accessories and Supplies"	07-Mar-08	31-Mar-08	20100.00	=""	="BAXTER HEALTHCARE PTY LTD"	11-Mar-08 03:53 PM	

+="CN64878"	"SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF"	="Defence Materiel Organisation"	11-Mar-08	="Camping and outdoor equipment and accessories"	11-Mar-08	11-Apr-08	17600.00	=""	="HYDRATION SYSTEMS AUSTRALIA"	11-Mar-08 03:55 PM	

+="CN64879"	"Increase in order of Moblie Phone Handsets."	="Australian Taxation Office"	11-Mar-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	110000.00	=""	="Telstra"	11-Mar-08 03:56 PM	

+="CN64880-A1"	"Provision of Cleaning Services at the Belconnen premises of CRS Australia"	="CRS Australia"	11-Mar-08	="General building and office cleaning and maintenance services"	10-Mar-06	09-Mar-09	10907.96	=""	="Smart Office Cleaning"	11-Mar-08 04:00 PM	

+="CN64881"	"ICT People Management and Policy Team Planning"	="Australian Taxation Office"	11-Mar-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	04-Apr-08	11880.00	="06.241"	="Imagine Consulting Group International"	11-Mar-08 04:03 PM	

+="CN64882"	"Motor Vehicle Parts"	="Department of Defence"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Mar-08	11-Apr-08	11001.08	=""	="Landrover Australia"	11-Mar-08 04:21 PM	

+="CN64883-A1"	" S70B Aircraft Spares "	="Defence Materiel Organisation"	11-Mar-08	="Aircraft"	11-Mar-08	18-Jan-10	37250.28	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	11-Mar-08 04:23 PM	

+="CN64884"	"Facilitation Services"	="Australian Taxation Office"	11-Mar-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	31-Jan-08	10780.00	="06.028"	="Capgemini Australia Pty Ltd"	11-Mar-08 04:28 PM	

+="CN64885-A1"	"`Course fees"	="Australian Crime Commission"	11-Mar-08	="Evening courses"	04-Mar-08	01-Jun-08	46519.23	=""	="Australian Public Service Commission"	11-Mar-08 04:36 PM	

+="CN64886"	"Motor Vehicle Parts."	="Department of Defence"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Mar-08	11-Apr-08	10219.44	=""	="Mercedes Benz Aust. Pacific"	11-Mar-08 04:49 PM	

+="CN64887"	"Provision of Serial Publications"	="Australian Taxation Office"	11-Mar-08	="Printed publications"	01-Jan-08	30-Jun-08	30000.00	=""	="Swets Information Services B.V."	11-Mar-08 04:50 PM	

+="CN64888"	"Motor Vehicle Parts."	="Department of Defence"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Mar-08	11-Apr-08	24414.10	=""	="Mercedes Benz Aust. Pacific"	11-Mar-08 04:52 PM	

+="CN64891"	"Motor Vehicle Parts."	="Department of Defence"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Mar-08	11-Apr-08	29801.55	=""	="Mercedes Benz Aust. Pacific"	11-Mar-08 05:01 PM	

+="CN64890"	"Motor Vehicle Parts."	="Department of Defence"	11-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Mar-08	11-Apr-08	29801.55	=""	="Mercedes Benz Aust. Pacific"	11-Mar-08 05:06 PM	

+="CN64892"	"Contractor - Temporary administrator"	="Future Fund Management Agency"	11-Mar-08	="Temporary personnel services"	11-Mar-08	10-May-08	16500.00	=""	="Lloyd Morgan International Pty Ltd"	11-Mar-08 05:36 PM	

+="CN64893"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	12-Mar-08	="Influenza virus vaccine"	25-Feb-08	11-Apr-08	127820.00	=""	="Sanofi Pasteur Pty Ltd"	12-Mar-08 07:25 AM	

+="CN64894"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	12-Mar-08	="Influenza virus vaccine"	25-Feb-08	25-Apr-08	123200.00	=""	="CSL Biotherapies P/L"	12-Mar-08 07:29 AM	

+="CN64226"	"Advice Services for Renewable Energy and Distributed Generation Task Force Meeting"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	04-Oct-07	17-Oct-07	22000.00	="0708-253"	="Baker & McKenzie"	12-Mar-08 07:54 AM	

+="CN64895"	"Surgical Tubing For ADF"	="Defence Materiel Organisation"	12-Mar-08	="Medical Equipment and Accessories and Supplies"	26-Feb-08	12-Mar-08	12435.00	=""	="Cottman Australia"	12-Mar-08 08:02 AM	

+="CN64896"	"Fitout and Refurbishment Services"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Building and Construction and Maintenance Services"	04-Oct-07	20-Dec-07	73597.90	=""	="Kyoto Contracting"	12-Mar-08 08:07 AM	

+="CN64897"	"Fitout and Refurbishment Services"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Building and Construction and Maintenance Services"	04-Oct-07	01-Feb-08	25477.00	=""	="Kakadu Contracting Pty Ltd"	12-Mar-08 08:11 AM	

+="CN64898"	"Satellite Communication Devices"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Telecommunications media services"	04-Oct-07	01-Apr-08	11071.50	=""	="Satpac Pty Ltd"	12-Mar-08 08:18 AM	

+="CN64899"	"Assessment Panel Meeting"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Hotels and lodging and meeting facilities"	05-Oct-07	15-Oct-07	10171.65	="0708-388"	="Rydges Canberra - Capital Hill"	12-Mar-08 08:23 AM	

+="CN64900"	"MONTHLY TELECOMMUNICATIONS ACCOUNT"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Transportation and Storage and Mail Services"	08-Oct-07	08-Oct-07	16848.18	="0708-389"	="Australia Post"	12-Mar-08 08:28 AM	

+="CN64901"	"Designing and Developing Services for an Online Greenvouchers Registration Form"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Information services"	08-Oct-07	15-Jun-08	20790.00	="0708-342"	="SRA Information Technology"	12-Mar-08 08:38 AM	

+="CN64902"	"Provision of Bulk Diaries for the Department"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Office Equipment and Accessories and Supplies"	08-Oct-07	25-Oct-07	10611.70	="0708-392"	="OfficeMax Australia Limited"	12-Mar-08 08:42 AM	

+="CN64903-A1"	"Meeting and Logistical Support"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	20-Jan-08	55000.00	="0708-202"	="Wetlands International Oceania"	12-Mar-08 08:58 AM	

+="CN64904"	"Recruitment Services - Placement Fee"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Business administration services"	08-Oct-07	31-Oct-07	20792.77	="0708-401"	="Vedior Asia Pacific Pty Ltd"	12-Mar-08 09:02 AM	

+="CN64905"	"60 Standard Bookcases"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Office supplies"	09-Oct-07	23-Oct-07	10956.00	="0708-391"	="Workspace Commercial Furniture"	12-Mar-08 09:06 AM	

+="CN64907"	"Computer hardware"	="Australian Competition and Consumer Commission"	12-Mar-08	="Computer Equipment and Accessories"	22-Oct-07	30-Nov-07	13754.13	=""	="Dataflex Pty Ltd"	12-Mar-08 09:09 AM	

+="CN64908"	"Recommendations to improve our risk assessment and reporting approaches"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	15-Nov-07	10042.00	="0708-281"	="E-Systems Pty Ltd"	12-Mar-08 09:11 AM	

+="CN64909"	"Computer hardware"	="Australian Competition and Consumer Commission"	12-Mar-08	="Computer Equipment and Accessories"	30-Oct-07	31-Dec-07	42004.41	=""	="DPI Systems Pty Ltd"	12-Mar-08 09:14 AM	

+="CN64911"	" NSN 2840/01-497-4117  PURCHASE OF INDICATOR, ACTUAL BY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	09-Jan-08	23-Feb-08	31419.34	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 09:16 AM	

+="CN64912"	"Software licences"	="Australian Competition and Consumer Commission"	12-Mar-08	="Software"	05-Nov-07	30-Nov-07	19760.40	=""	="Filemaker Inc"	12-Mar-08 09:18 AM	

+="CN64913"	"APPOINTMENT OF AN INDEPENDENT CHAIR FOR THE ENVIRONMENT AUDIT COMMITTEE"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management advisory services"	09-Oct-07	30-Jun-09	60000.00	="0708-438"	="A & B PODGER PTY LTD"	12-Mar-08 09:21 AM	

+="CN64914"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	07-Jan-08	03-Mar-08	62040.00	=""	="Flagstaff Consulting"	12-Mar-08 09:24 AM	

+="CN64915"	"Publications for the promotions of the Hot Water Rebate and Related Australian Government Sustainable Home Initiatives"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Jun-08	49500.00	="0708-250"	="Alternative Technology Association"	12-Mar-08 09:24 AM	

+="CN64916"	" NSN 4320/01-307-6922  PURCHASE OF PARTS KIT, HYDRAULIC PUMP  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	03-Apr-08	50446.00	=""	="Associated Aircraft"	12-Mar-08 09:27 AM	

+="CN64918"	"Analysis of land cover change using LANDSAT satellite images"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Oct-07	16500.00	="0708-420"	="GEOIMAGE (QLD)"	12-Mar-08 09:29 AM	

+="CN64919"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	01-Jul-07	30-Jun-08	50297.00	=""	="Informed Sources (Australia) Pty Ltd"	12-Mar-08 09:30 AM	

+="CN64920"	"Maintstream Media and Promotional Services of the Hot Water Rebate and Sustainable Home Initiatives."	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	31-Dec-07	49500.00	="0708-285"	="Peter C White & Associates"	12-Mar-08 09:34 AM	

+="CN64921"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	07-Jan-08	24-Jan-08	13500.00	=""	="Kapish Pty Ltd"	12-Mar-08 09:36 AM	

+="CN64922"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	01-Sep-07	31-May-09	580800.00	=""	="LECG Ltd"	12-Mar-08 09:41 AM	

+="CN64923"	"Business System Analysis"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Computer services"	10-Oct-07	31-Oct-07	29666.74	="0708-328"	="Dialog Information Technology"	12-Mar-08 09:41 AM	

+="CN64927"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	07-Jan-08	28-Feb-08	55000.00	=""	="Pricewaterhouse Coopers"	12-Mar-08 09:46 AM	

+="CN64925"	" NSN 1560/01-477-0400  PURCHASE OF LINER  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	18-Mar-08	11847.00	=""	="Aerospace Composites Pty Ltd"	12-Mar-08 09:48 AM	

+="CN64924"	" Computing and Editing Equipment "	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Photographic and recording media"	10-Oct-07	12-Nov-07	14349.60	="0708-419"	="Hogg Pty Ltd"	12-Mar-08 09:48 AM	

+="CN64928"	"PROVISION OF FINANCIAL ADVICE IN RELATION TO THE COAL  MINE METHANE REDUCTION MEASURE"	="Department of the Environment Water Heritage and the Arts"	12-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	17-Oct-07	19999.99	="0607-182"	="McGrathNicol Corporate Advisory"	12-Mar-08 09:55 AM	

+="CN64929"	" NSN 1660/01-438-6877  PURCHASE OF DUCT ASSY, AIR CONDITIONING-HEATING AIRCRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	31-Mar-08	15728.19	=""	="Associated Aircraft"	12-Mar-08 09:55 AM	

+="CN64932"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	04-Oct-07	30-Jun-08	10000.00	=""	="Twaddle Family Investments Pty Ltd"	12-Mar-08 09:59 AM	

+="CN64931"	" NSN 1560/01-549-2177  PURCHASE OF SUPPORT, STRUCTURAL COMPONENT, AIRCRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	21-Mar-08	11007.26	=""	="Milspec Services Pty Ltd"	12-Mar-08 10:00 AM	

+="CN64934"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	07-Jan-08	01-Mar-08	13200.00	=""	="University of Melbourne"	12-Mar-08 10:04 AM	

+="CN64930"	" NSN 2840/00-910-9160  PURCHASE OF CASE, COMPRESSOR, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	05-Mar-08	17-Mar-08	72960.80	=""	="Turbonanalisis Inc"	12-Mar-08 10:08 AM	

+="CN64935"	" NSN 2995/00-858-0764  PURCHASE OF CORE, MOUNT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	05-Mar-08	10-Dec-08	24497.00	=""	="Aerospace Composites Pty Ltd"	12-Mar-08 10:12 AM	

+="CN64936"	"Provision role players (actors) to the IDG developing PDT cource material to 30 June 2008"	="Australian Federal Police"	12-Mar-08	="Developing self concept and self esteem instructional materials"	26-Feb-08	30-Jun-08	55000.00	="54/2006"	="N.R Byrne & Z Byrne Trading as Tie-Quality Theartre in Education"	12-Mar-08 10:13 AM	

+="CN64938"	" NSN 2840/00-225-0566  PURCHASE OF SHAFTGEAR ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	17-Sep-07	24-Dec-07	54886.06	=""	="Flite Path Pty Ltd"	12-Mar-08 10:16 AM	

+="CN64941"	" NSN 3110/01-415-7196  PURCHASE OF BEARING, ROLLER, CYLINDRICAL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	06-Mar-08	58905.79	=""	="Aviall Australia Pty Ltd"	12-Mar-08 10:22 AM	

+="CN64940-A1"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	05-Mar-08	06-Mar-08	13832.50	="2005-31"	="NERA Australia Pty Ltd"	12-Mar-08 10:23 AM	

+="CN64943"	" NSN 3110/01-318-0017  PURCHASE OF BEARING, BALL, ANNULAR  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	06-Mar-08	15166.80	=""	="Aviall Australia Pty Ltd"	12-Mar-08 10:26 AM	

+="CN64946"	" NSN 3110/01-469-2232  PURCHASE OF BEARING, ROLLER, CYLINDRICAL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	07-Aug-08	34947.00	=""	="Flite Path Pty Ltd"	12-Mar-08 10:30 AM	

+="CN64947"	"Cloth, Twill Grey Proban raised against Standing Offer 0310-272-26"	="Defence Materiel Organisation"	12-Mar-08	="Twill weave cotton fabrics"	11-Mar-08	26-Mar-08	84155.50	="2480036"	="Bruck Textiles"	12-Mar-08 10:30 AM	

+="CN64948"	" NSN 5310/01-502-3850  PURCHASE OF NUT, SELF-LOCKING, HEXAGON  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	05-Jul-08	37125.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 10:34 AM	

+="CN64949"	" NSN 3110/01-399-7533  PURCHASE OF BEARING, ROLLER, CYLINDRICAL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	05-Jul-08	29502.00	=""	="Flite Path Pty Ltd"	12-Mar-08 10:38 AM	

+="CN64944"	"Supply and deliver 200 ea Battery Storage:12V ,6Cell Maintenance Free"	="Defence Materiel Organisation"	12-Mar-08	="Batteries and cells and accessories"	11-Mar-08	21-Mar-08	28734.20	=""	="VOLVO COMMERCIAL VEHICLES"	12-Mar-08 10:40 AM	

+="CN64950"	" NSN 2835/01-044-7729  PURCHASE OF IMPELLER, COMPRESSOR, SECOND STAGE, SHROUDLESS  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	10-Mar-08	39680.92	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 10:41 AM	

+="CN64951"	" NSN 3110/01-424-0697  PURCHASE OF BEARING, BALL, ANNULAR  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	06-Mar-08	41952.02	=""	="Aviall Australia Pty Ltd"	12-Mar-08 10:45 AM	

+="CN64952"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	18-Feb-08	17-Mar-08	16500.00	="2005-31"	="Gibson Quai Pty Ltd"	12-Mar-08 10:46 AM	

+="CN64953"	" NSN 4820/01-558-7849  PURCHASE OF BODY, VALVE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	16-Oct-08	82313.00	=""	="Flite Path Pty Ltd"	12-Mar-08 10:48 AM	

+="CN64955"	" NSN 5365/00-858-0766  PURCHASE OF SPACER, BONDED  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	28-Aug-08	53212.50	=""	="Flite Path Pty Ltd"	12-Mar-08 10:51 AM	

+="CN64954"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	18-Feb-08	30-Jun-08	17325.00	="2005-31"	="Nuttall Consultancy"	12-Mar-08 10:52 AM	

+="CN64956"	" NSN 1560/00-802-4121  PURCHASE OF LATCH ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	20-Mar-08	16270.81	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 10:54 AM	

+="CN64957"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	24-Jan-08	28-Mar-08	50000.00	="2005-31"	="Sinclair Knight Merz"	12-Mar-08 10:56 AM	

+="CN64958"	"Strategic Technical Analysis of Employee Benefit Arrangements"	="Australian Taxation Office"	12-Mar-08	="Market research"	25-Feb-08	30-Apr-08	15000.00	=""	="Ray Conwell"	12-Mar-08 11:00 AM	

+="CN64959"	" NSN 6340/66-151-2417  PURCHASE OF ANNUNCIATOR  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	14-Jun-07	25-Oct-07	59367.00	=""	="Aerospace & Defence Products"	12-Mar-08 11:02 AM	

+="CN64961"	" NSN 1670/00-212-1149  PURCHASE OF TIE DOWN, CARGO, AIRCRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	21-May-08	10780.00	=""	="ANCRA Australia Pty Ltd"	12-Mar-08 11:09 AM	

+="CN64962"	" NSN 1560/00-442-4755  PURCHASE OF TANK, FUEL, AIRCRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	21-Feb-08	22-Mar-08	63719.11	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 11:13 AM	

+="CN64963"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	25-Feb-08	25-Feb-09	69300.00	="2005-31"	="Nuttall Consultancy"	12-Mar-08 11:14 AM	

+="CN64966"	"Technical Consultant Services"	="Australian Taxation Office"	12-Mar-08	="Business and corporate management consultation services"	21-Jan-08	10-Mar-08	13200.00	=""	="The Hon. Sir Anthony Mason AC KBE"	12-Mar-08 11:14 AM	

+="CN64967"	"Private Plated Vehicle Lease"	="Administrative Appeals Tribunal"	12-Mar-08	="Passenger motor vehicles"	27-Feb-08	26-Feb-09	27435.67	=""	="Lease Plan Australia Pty Ltd"	12-Mar-08 11:15 AM	

+="CN64965"	" FILTER ELEMENT, FLUID - FAUDI PART NO. M.2-770 "	="Defence Materiel Organisation"	12-Mar-08	="Filters"	07-Mar-08	30-May-08	74455.92	=""	="GILBARCO AUSTRALIA LTD"	12-Mar-08 11:15 AM	

+="CN64968"	" NSN 5342/00-802-4450  PURCHASE OF CRANK, CONTROL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	22-Feb-08	17-Mar-08	15388.56	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 11:16 AM	

+="CN64969-A1"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	29-Jan-08	16-May-08	16500.00	="2005-31"	="ACIL Tasman Pty Ltd"	12-Mar-08 11:19 AM	

+="CN64970"	" NSN 2840/00-877-0070  PURCHASE OF BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	03-Mar-08	25264.80	=""	="Flite Path Pty Ltd"	12-Mar-08 11:20 AM	

+="CN64972"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	11-Feb-08	11-Mar-08	79706.00	="2005-31"	="Ovum Pty Ltd"	12-Mar-08 11:25 AM	

+="CN64971"	" NSN 5310/00-627-7610  PURCHASE OF NUT ASSY, CAP, SPECIA  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	12-Mar-08	10338.90	=""	="Aviall Australia Pty Ltd"	12-Mar-08 11:25 AM	

+="CN64973"	" NSN 5306/00-076-4751  PURCHASE OF BOLT, COMPRESSOR WHEEL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	25-Jun-08	37185.23	=""	="Aviall Australia Pty Ltd"	12-Mar-08 11:28 AM	

+="CN64975"	" EBROIDERED SERVICE BADGES "	="Defence Materiel Organisation"	12-Mar-08	="Badges"	05-Mar-08	10-Jun-08	41580.00	=""	="Apparel Additions"	12-Mar-08 11:30 AM	

+="CN64976-A1"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	16-Nov-07	31-Dec-07	21538.00	="2005-31"	="Gibson Quai Pty Ltd"	12-Mar-08 11:51 AM	

+="CN64977-A1"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	14-Nov-07	30-May-08	107800.00	="2005-31"	="McLennan Magasanik Associates"	12-Mar-08 11:55 AM	

+="CN64979"	"Insignia, shoulder, sleeve"	="Defence Materiel Organisation"	12-Mar-08	="Badges"	06-Mar-08	30-Apr-08	11000.00	=""	="Babylon Industries Pty Ltd"	12-Mar-08 12:12 PM	

+="CN64980"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	17-Dec-07	30-May-08	20000.00	="2005-31"	="McLennan Magasanik Associates"	12-Mar-08 12:17 PM	

+="CN64983"	" NSN 3110/01-469-2235  PURCHASE OF BEARING, ROLLER, CYLINDRICAL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	05-Mar-08	27952.82	=""	="Flite Path Pty Ltd"	12-Mar-08 12:45 PM	

+="CN64984"	" NSN 2840/00-877-0080  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	22269.50	=""	="Aviall Australia Pty Ltd"	12-Mar-08 12:49 PM	

+="CN64985"	" NSN 2840/00-877-0068  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	23751.09	=""	="Aviall Australia Pty Ltd"	12-Mar-08 12:54 PM	

+="CN64986"	" NSN 2840/00-877-0032  PURCHASE OF BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	29977.20	=""	="Aviall Australia Pty Ltd"	12-Mar-08 12:58 PM	

+="CN64987"	" NSN 2840/00-877-0026  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	59796.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:03 PM	

+="CN64988"	" NSN 2840/00-877-0024  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	29898.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:07 PM	

+="CN64989"	" NSN 2840/00-877-0020  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	35877.60	=""	="Milspec Services Pty Ltd"	12-Mar-08 01:12 PM	

+="CN64990"	" NSN 2840/00-714-5787  PURCHASE OF FACING, PROPELLER BRAKE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	49220.82	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:16 PM	

+="CN64991"	" NSN 2840/00-150-7804  PURCHASE OF CASE AND VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GASTURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	29-Feb-08	29-May-08	77891.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:20 PM	

+="CN64992"	" NSN 2840/00-103-2544  PURCHASE OF HOUSING, ANTIFRICTION BEARING, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	29-Feb-08	29-May-08	40585.60	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:24 PM	

+="CN64993"	" NSN 3110/01-399-3938  PURCHASE OF BEARING, ROLLER, CYLINDRICAL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	27-Feb-08	09-Mar-08	18480.00	=""	="Flite Path Pty Ltd"	12-Mar-08 01:29 PM	

+="CN64994"	" NSN 2840/00-225-0566  PURCHASE OF SHAFTGEAR ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	10-Jun-08	58621.20	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:32 PM	

+="CN64995"	"Provision for technical support for Toshiba A 120 and Sony Vaio"	="Comsuper"	12-Mar-08	="Hardware"	03-Mar-08	17-Mar-08	29975.00	=""	="Data # 3"	12-Mar-08 01:35 PM	

+="CN64996"	" NSN 1560/00-802-4093  PURCHASE OF LATCH ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	29-Feb-08	19-Apr-08	16309.74	=""	="Military Aviation Spares Pty Ltd"	12-Mar-08 01:36 PM	

+="CN64997"	"CALICO LAUNDRY BAGS"	="Defence Materiel Organisation"	12-Mar-08	="Laundry nets or bags"	12-Mar-08	26-Sep-08	58300.00	=""	="CLAYTONS AUSTRALIA PTY LTD"	12-Mar-08 01:37 PM	

+="CN64998"	" NSN 3040/00-164-5687  PURCHASE OF BELL CRANK  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	27-Feb-08	16-Jun-08	61501.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:39 PM	

+="CN64999"	" NSN 2840/01-369-3241  PURCHASE OF SPECL SHAPED SPACER  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	12-Jun-08	96577.80	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:43 PM	

+="CN65000"	" NSN 4140/01-226-0637  PURCHASE OF HOUSING, CENTRIFUGAL FAN  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	08-Apr-08	27078.92	=""	="Milspec Services Pty Ltd"	12-Mar-08 01:46 PM	

+="CN65001"	" NSN 2840/01-247-0265  PURCHASE OF SADDLE VANE, TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	14-Mar-08	51246.80	=""	="Aviall Australia Pty Ltd"	12-Mar-08 01:50 PM	

+="CN65002"	" NSN 5340/01-138-2614  PURCHASE OF COVER, ACCESS  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	03-Apr-08	10494.00	=""	="Pacific Aerodyne"	12-Mar-08 01:54 PM	

+="CN65003"	"Supply 100 IP phones Gray RHS"	="Australian Federal Police"	12-Mar-08	="Special purpose telephones"	08-Dec-05	07-Dec-08	37851.00	=""	="Avaya Australia Pty Ltd"	12-Mar-08 01:58 PM	

+="CN65004"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	04-Dec-07	29-Feb-08	181830.00	="2005-31"	="Sinclair Knight Merz"	12-Mar-08 02:02 PM	

+="CN65005-A1"	"CPE003786-3 - Computer Software"	="Australian Customs and Border Protection Service"	12-Mar-08	="Human resources services"	24-Sep-07	24-Sep-07	14256.00	=""	="P-Con Knowledge Systems"	12-Mar-08 02:04 PM	

+="CN65006-A1"	"CPE003787-2 - Computer Software"	="Australian Customs and Border Protection Service"	12-Mar-08	="Human resources services"	02-Nov-07	02-Nov-07	14256.00	=""	="P-Con Knowledge Systems"	12-Mar-08 02:04 PM	

+="CN65013"	"CPE004143-1 - Fuel"	="Australian Customs and Border Protection Service"	12-Mar-08	="Fuels"	07-Feb-08	07-Feb-08	19800.00	=""	="Ability Barge Services"	12-Mar-08 02:05 PM	

+="CN64982"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	04-Dec-07	29-Feb-08	40194.00	="2005-31"	="Sinclair Knight Merz"	12-Mar-08 02:05 PM	

+="CN65016-A1"	"07/2426 - Training Services (CPE002732-1)"	="Australian Customs and Border Protection Service"	12-Mar-08	="Education and Training Services"	01-Nov-07	30-Jun-08	60250.00	=""	="Training Australia Unlimited Pty Ltd"	12-Mar-08 02:05 PM	

+="CN65017"	"CPO019694 - Supply of Chairs"	="Australian Customs and Border Protection Service"	12-Mar-08	="Furniture and Furnishings"	13-Feb-08	30-Apr-08	11787.60	=""	="Workspace Commercial Furniture Pty Ltd"	12-Mar-08 02:06 PM	

+="CN65018-A1"	"08/2549 Software upgrade and Maintenance - (CPO019237)"	="Australian Customs and Border Protection Service"	12-Mar-08	="Computer services"	28-Jan-08	31-Jan-09	54347.70	=""	="Clearswift Pty Ltd"	12-Mar-08 02:06 PM	

+="CN65019"	"CPO019563 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Human resources services"	12-Feb-08	12-Feb-08	21433.98	=""	="Hays Specialist Recruitment (Australia) Pty Ltd"	12-Mar-08 02:06 PM	

+="CN65020"	"CPE004545 - Business Research Data"	="Australian Customs and Border Protection Service"	12-Mar-08	="Computer services"	01-Feb-08	30-Jun-08	27954.98	=""	="Australian Business Research"	12-Mar-08 02:06 PM	

+="CN65021"	"CPE002796-7 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	12-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17090.15	=""	="CRIMTRAC"	12-Mar-08 02:06 PM	

+="CN65022-A2"	"07/2320 - Engineering Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Professional engineering services"	14-Jan-08	30-Jun-10	304590.00	=""	="ITC Group Pty Ltd"	12-Mar-08 02:06 PM	

+="CN65023"	"CPO019709 - Promotional Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Marketing and distribution"	01-Jan-08	31-Dec-08	25850.00	=""	="Customs Brokers & Forwarders Council of Australia Inc"	12-Mar-08 02:06 PM	

+="CN65024"	"CPO019864 - Training Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Education and Training Services"	15-Feb-08	27-Mar-08	13200.00	=""	="D'Arcy Consulting Group"	12-Mar-08 02:06 PM	

+="CN65025"	"06/1533 - Provision of Protective Clothing"	="Australian Customs and Border Protection Service"	12-Mar-08	="Rubber and elastomers"	25-Feb-08	24-Feb-11	265000.00	=""	="Platypus Outdoors Group"	12-Mar-08 02:07 PM	

+="CN65026"	"CPO020002 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Human resources services"	18-Feb-08	31-Mar-08	27500.00	=""	="Paper Shuffle Pty Ltd"	12-Mar-08 02:07 PM	

+="CN65027"	"CPE002451-1 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	12-Mar-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	23298.00	=""	="GE Security"	12-Mar-08 02:07 PM	

+="CN65028"	"CPO020085 - Training Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Education and Training Services"	29-Feb-08	29-Feb-08	14800.00	=""	="CIT Solutions Pty Ltd"	12-Mar-08 02:07 PM	

+="CN65029-A1"	"07/2364 - Software Maintenance - (CPO017290)"	="Australian Customs and Border Protection Service"	12-Mar-08	="Computer services"	28-Nov-07	27-Nov-09	103620.78	=""	="Intermine File Census"	12-Mar-08 02:07 PM	

+="CN65030"	"08/2601 - Data Support Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Computer services"	01-Feb-08	31-Aug-08	225381.08	=""	="IBM Global Services Australia Ltd"	12-Mar-08 02:07 PM	

+="CN65031"	"07/2211A - Supply of Motor Vehicle"	="Australian Customs and Border Protection Service"	12-Mar-08	="Motor vehicles"	16-Nov-07	01-Aug-08	45000.00	=""	="Toyota Tsusho (PNG) T/A Ela Motors"	12-Mar-08 02:07 PM	

+="CN65032"	"07/2211B - Supply of Motor Vehicle"	="Australian Customs and Border Protection Service"	12-Mar-08	="Motor vehicles"	15-Nov-07	01-Aug-08	37500.00	=""	="Toyota Tsusho (PNG) T/A Ela Motors"	12-Mar-08 02:07 PM	

+="CN65033"	"CPO015888 - Power and data cabling"	="Australian Customs and Border Protection Service"	12-Mar-08	="Electrical wire and cable and harness"	10-Oct-07	15-Jan-08	21450.00	=""	="Heyday Group Pty Ltd"	12-Mar-08 02:08 PM	

+="CN65034"	"CPE003233-1 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Mar-08	="Manufacture of electrical goods and precision instruments"	01-Mar-08	30-Jun-08	10648.00	=""	="Dataline Visual Link"	12-Mar-08 02:08 PM	

+="CN65035"	"CPO020215 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Mar-08	="Electrical wire and cable and harness"	13-Jul-07	30-Jun-08	12662.87	=""	="Crimetech Security"	12-Mar-08 02:08 PM	

+="CN65041"	"CPE004550-1 - Fuel"	="Australian Customs and Border Protection Service"	12-Mar-08	="Fuels"	21-Feb-08	21-Feb-08	46273.26	=""	="MTU Detroit Diesel Australia Pty Ltd"	12-Mar-08 02:09 PM	

+="CN65042"	"CPE004555-1 - Fuel"	="Australian Customs and Border Protection Service"	12-Mar-08	="Fuels"	13-Feb-08	13-Feb-08	23650.00	=""	="Global Force Marine"	12-Mar-08 02:09 PM	

+="CN65048"	"CPE003148-1 - Dog Related Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Live Plant and Animal Material and Accessories and Supplies"	01-Jul-07	30-Jun-08	11000.00	=""	="Proctor & Gamble Pet Care"	12-Mar-08 02:09 PM	

+="CN65049"	"CPE003160-1 - Dog Related Services"	="Australian Customs and Border Protection Service"	12-Mar-08	="Live Plant and Animal Material and Accessories and Supplies"	01-Jul-07	30-Jun-08	12000.00	=""	="Maroubra Veterinary Hospital"	12-Mar-08 02:10 PM	

+="CN65050"	"CPO020261 - Supply & Installation of Security Equipment"	="Australian Customs and Border Protection Service"	12-Mar-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	54197.00	=""	="Honeywell Security Australia"	12-Mar-08 02:10 PM	

+="CN65051"	"CPO018689 - Supply of Clothing"	="Australian Customs and Border Protection Service"	12-Mar-08	="Clothing"	07-Mar-08	26-Mar-08	15872.40	=""	="Elegant Knitting Company"	12-Mar-08 02:10 PM	

+="CN65052"	"CPE004603-1 - Refurbishment"	="Australian Customs and Border Protection Service"	12-Mar-08	="General building construction"	07-Mar-08	30-Jun-08	15400.00	=""	="Woodhead International Pty Ltd"	12-Mar-08 02:10 PM	

+="CN65053"	"CPO020340 - Supply & Install Shed"	="Australian Customs and Border Protection Service"	12-Mar-08	="Metal and mineral industries"	07-Mar-08	30-Jun-08	18150.00	=""	="Ningaloo Developments"	12-Mar-08 02:10 PM	

+="CN65057"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	12-Mar-08	="Aircraft spars"	12-Mar-08	19-Mar-08	50464.74	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	12-Mar-08 02:28 PM	

+="CN64981"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	26-Oct-07	30-Nov-07	37250.00	="2005-31"	="Parsons Brinckerhoff Australia Pty Ltd"	12-Mar-08 02:36 PM	

+="CN64483-A1"	"Data collection services for large-scale national surveys of separated families"	="Australian Institute of Family Studies"	12-Mar-08	="Market research telephone surveys"	27-Feb-08	04-May-09	1639215.00	=""	="The Social Research Centre Pty Ltd"	12-Mar-08 02:38 PM	

+="CN64974"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	05-Dec-07	30-Jun-08	50000.00	="2005-31"	="Frontier Economics Pty Ltd"	12-Mar-08 02:42 PM	

+="CN64960"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	19-Feb-08	30-Jun-08	88250.00	="2005-31"	="Parsons Brinckerhoff Australia Pty Ltd"	12-Mar-08 02:44 PM	

+="CN65060"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	15-Oct-07	30-Jun-08	50000.00	=""	="Regulatory Economics Ltd"	12-Mar-08 02:51 PM	

+="CN65061"	"Business Analyst C2007/13966 Extension 02.02.2008 to 28.02.2009"	="IP Australia"	12-Mar-08	="Temporary personnel services"	29-Feb-08	28-Feb-09	187000.00	="IPAC2007/13966"	="CLICKS RECRUIT PTY LTD"	12-Mar-08 02:55 PM	

+="CN65062"	"Extension of Lead Business Analyst  C2007/14307"	="IP Australia"	12-Mar-08	="Temporary personnel services"	28-Feb-08	30-May-09	241983.00	="IPA2007/14307"	="Ambit Group Pty LTd"	12-Mar-08 02:55 PM	

+="CN65063"	"Lead Business Analyst C2007/13967 Extension 14.02.2008 to 30.05.2009"	="IP Australia"	12-Mar-08	="Temporary personnel services"	28-Feb-08	30-May-09	250800.00	="IPAC2007/13967"	="Greythorn Pty Ltd"	12-Mar-08 02:56 PM	

+="CN65064"	"O2C Fithabitz Fitness Challenge for IP Australia"	="IP Australia"	12-Mar-08	="Human resources services"	15-Feb-08	02-May-08	37000.00	="IPAC2008/10600"	="Jakeman Business Solutions Pty Ltd"	12-Mar-08 02:56 PM	

+="CN65065"	"Development. & delivery of M2L Program (No. 6)"	="IP Australia"	12-Mar-08	="Human resource development"	20-Feb-08	27-Jun-08	86494.00	="IPAC2006/11463"	="LATEMORE & ASSOCIATES PTY LTD"	12-Mar-08 02:56 PM	

+="CN65066"	"Provision of consultancy service & delivery of Leadership Professional Program 8"	="IP Australia"	12-Mar-08	="Human resource development"	22-Feb-08	01-Aug-08	139920.00	="IPAC2008/10317"	="INTERACTION CONSULTING GROUP"	12-Mar-08 02:56 PM	

+="CN65067"	"ADF Fire & Evacuation Training and Emergency Response Training"	="IP Australia"	12-Mar-08	="Education and Training Services"	26-Feb-08	14-Feb-11	15870.00	="IPAC2007/14620"	="ADF Fire & Evacuation"	12-Mar-08 02:56 PM	

+="CN65068"	"Dell Altiris Software ( Desktop Mgt Tool)"	="IP Australia"	12-Mar-08	="Computer services"	28-Feb-08	27-Feb-11	191053.83	="IPAC2007/14468"	="DELL COMPUTER PTY LIMITED"	12-Mar-08 02:56 PM	

+="CN65069"	"Coaching and Mentoring Development Programs"	="IP Australia"	12-Mar-08	="Human resource development"	04-Mar-08	15-Dec-08	55234.08	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	12-Mar-08 02:56 PM	

+="CN65070"	"Supply of 65 Norse Typist Chairs"	="IP Australia"	12-Mar-08	="Furniture and Furnishings"	05-Mar-08	29-Mar-08	13916.05	="IPAC2005/10648"	="STURDY COMPONENTS PTY LTD"	12-Mar-08 02:57 PM	

+="CN65071"	"Supply of (Ergonomic) Norse Typist Chairs"	="IP Australia"	12-Mar-08	="Furniture and Furnishings"	05-Mar-08	29-Mar-08	13916.50	="IPAC2005/10648"	="STURDY COMPONENTS PTY LTD"	12-Mar-08 02:57 PM	

+="CN65072"	"Unpack, image, refresh & remove rubbish at IP Australia"	="IP Australia"	12-Mar-08	="Computer services"	06-Mar-08	27-Mar-08	16632.00	="IPAC2008/10859"	="DIGITAL (DIGEST) DATA DESIGN PTY LT"	12-Mar-08 02:57 PM	

+="CN65073"	"Series of Workplace Assesor Training Programs"	="IP Australia"	12-Mar-08	="Human resources services"	07-Mar-08	15-Dec-08	30000.00	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	12-Mar-08 02:57 PM	

+="CN65074"	"Managing Challenging Callers and Situations Programs"	="IP Australia"	12-Mar-08	="Human resource development"	11-Mar-08	30-Jun-10	18480.00	="IPAC2008/10911"	="Think Big Coaching Pty Ltd"	12-Mar-08 02:57 PM	

+="CN65075"	"ICT Contract Account Management C2007/13134 Extension 17.03.2008 to 30.11.2009"	="IP Australia"	12-Mar-08	="Temporary personnel services"	29-Feb-08	30-Nov-09	495250.00	="IPAC2007/13134"	="PEOPLEBANK AUSTRALIA PTY LTD"	12-Mar-08 02:57 PM	

+="CN65076"	"Sherman v Merck & Co."	="IP Australia"	12-Mar-08	="Legal services"	27-Feb-08	10-Nov-08	15000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Mar-08 02:58 PM	

+="CN65077"	"32 x Government Registrations Interntional Trademark Association"	="IP Australia"	12-Mar-08	="Business administration services"	15-Feb-08	30-Jun-08	15700.00	=""	="International Trademark Association"	12-Mar-08 02:58 PM	

+="CN65078"	"WIPO Contributions 2008"	="IP Australia"	12-Mar-08	="Business administration services"	20-Feb-08	31-Dec-08	683548.29	=""	="WORLD INTELLECTUAL PROPERTY"	12-Mar-08 02:58 PM	

+="CN65079"	"Cannon Scanner 3080CII with 3 year warranty"	="IP Australia"	12-Mar-08	="Computer Equipment and Accessories"	20-Feb-08	25-Feb-08	29607.60	=""	="CANON AUSTRALIA PTY LTD (ACT)"	12-Mar-08 02:58 PM	

+="CN65080"	"Cafe Point of Sale Machine and Maintenance"	="IP Australia"	12-Mar-08	="Office machines and their supplies and accessories"	28-Feb-08	28-Feb-08	17487.60	=""	="RedCat Pty Ltd"	12-Mar-08 02:58 PM	

+="CN65082"	"Architecture and Designing J2EE Applications Course"	="IP Australia"	12-Mar-08	="Human resource development"	04-Mar-08	14-Mar-08	16192.00	=""	="Atlas Business Services"	12-Mar-08 02:58 PM	

+="CN65083"	"Supply & Install 3 fixed CCTV camera's & Supply Install magentic emgency breakglass loc"	="IP Australia"	12-Mar-08	="Security or access control systems"	05-Mar-08	14-Mar-08	12166.00	=""	="Secom Technical Services Pty Ltd"	12-Mar-08 02:59 PM	

+="CN65084"	"Senior J2EE Developer/ Team leader"	="IP Australia"	12-Mar-08	="Temporary personnel services"	28-Feb-08	28-Feb-09	226120.00	="IPA2006/11854-3"	="Ambit Group Pty LTd"	12-Mar-08 02:59 PM	

+="CN65085"	"Data Conversion Services"	="IP Australia"	12-Mar-08	="Computer services"	18-Feb-08	30-Jun-08	200000.00	="IPAC2006/11120"	="HERMES PRECISA AUSTRALIA"	12-Mar-08 02:59 PM	

+="CN65081"	"Consultancy"	="Australian Competition and Consumer Commission"	12-Mar-08	="Management advisory services"	01-Apr-07	30-Oct-07	10500.00	=""	="Palm Consulting Group"	12-Mar-08 02:59 PM	

+="CN65086"	"Cafe Speakers"	="IP Australia"	12-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Feb-08	11-May-10	19981.10	="IPAC2007/10155"	="SOUND ADVICE"	12-Mar-08 02:59 PM	

+="CN65087"	"Variation Communications Officer"	="IP Australia"	12-Mar-08	="Temporary personnel services"	12-Feb-08	28-Feb-09	290950.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	12-Mar-08 02:59 PM	

+="CN65088"	"J2EE Developer C2007/12434"	="IP Australia"	12-Mar-08	="Personnel recruitment"	28-Feb-08	28-Feb-09	187000.00	="IPA2006/11854-3"	="Ambit Group Pty LTd"	12-Mar-08 03:00 PM	

+="CN65089"	"Sheraton on the Park Venue & Accom hire for IP Aus"	="IP Australia"	12-Mar-08	="Trade shows and exhibits"	07-Mar-08	14-Mar-08	27225.70	="IPAC2007/13354"	="SHERATON ON THE PARK PTY LTD"	12-Mar-08 03:00 PM	

+="CN65090"	"Presentation & Video Tape Lunchtime Seminars"	="IP Australia"	12-Mar-08	="Human resources services"	14-Aug-07	30-Jun-08	10192.00	="IPAC2007/13741"	="SMART NUTRITION"	12-Mar-08 03:00 PM	

+="CN65092"	"Printing of NAT1001-3.2008 - Taxation Statistics. Qty: 850"	="Australian Taxation Office"	12-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-Mar-08	30-Apr-08	11803.00	=""	="Canprint Communications"	12-Mar-08 03:32 PM	

+="CN65093"	"REPAIR AND OH OF BLACK HAWK DAMPENER ASSY."	="Defence Materiel Organisation"	12-Mar-08	="Military rotary wing aircraft"	12-Mar-08	31-Mar-08	17961.57	=""	="SAAL"	12-Mar-08 03:32 PM	

+="CN65094"	" NSN 4820/00-617-1476  PURCHASE OF BODY, VALVE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	02-Oct-08	216700.00	=""	="Flite Path Pty Ltd"	12-Mar-08 03:33 PM	

+="CN65095"	"REPAIR AND OH OF BLACK HAWK DAMPENER ASSY."	="Defence Materiel Organisation"	12-Mar-08	="Military rotary wing aircraft"	12-Mar-08	31-Mar-08	18122.69	=""	="SAAL"	12-Mar-08 03:35 PM	

+="CN65096"	" NSN 1620/01-263-6733  PURCHASE OF BALL SCREW ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	06-Mar-08	01-May-08	119064.00	=""	="Aerospace Composites Pty Ltd"	12-Mar-08 03:38 PM	

+="CN65097"	"REPAIR AND OH OF BLACK HAWK CENTRE STAB ASSY."	="Defence Materiel Organisation"	12-Mar-08	="Military rotary wing aircraft"	12-Mar-08	31-Mar-08	43087.85	=""	="SAAL"	12-Mar-08 03:39 PM	

+="CN65098"	" NSN 2840/00-919-0431  PURCHASE OF PARTS KIT, ENGINE VALVE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	05-Mar-08	29-Oct-08	168894.00	=""	="Flite Path Pty Ltd"	12-Mar-08 03:42 PM	

+="CN65099"	" NSN 2840/01-280-0705  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	03-Mar-08	179681.70	=""	="Flite Path Pty Ltd"	12-Mar-08 03:47 PM	

+="CN65100"	" NSN 3110/01-399-7537  PURCHASE OF BEARING, ROLLER, CYLINDRICAL STEEL OVERALL  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	26-Feb-08	12-Mar-08	117613.43	=""	="Aviall Australia Pty Ltd"	12-Mar-08 03:52 PM	

+="CN65101"	" NSN 2840/01-243-6649  PURCHASE OF BLADE, TURBINE, ROTOR TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	28-Feb-08	17-Jun-08	530695.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 03:55 PM	

+="CN65103"	" NSN 1560/00-946-2727  PURCHASE OF DUCT ASSEMBLY  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	29-Feb-08	16-Mar-08	163943.12	=""	="Milspec Services Pty Ltd"	12-Mar-08 04:01 PM	

+="CN65104-A1"	"qty 40 centre junction assembly part of an antenna for use with military radios."	="Defence Materiel Organisation"	12-Mar-08	="Radio antennas"	03-Mar-08	21-Apr-08	13377.76	=""	="Radio Frequency Systems Aust"	12-Mar-08 04:05 PM	

+="CN65105"	" NSN 3010/01-400-3625  PURCHASE OF DRIVE UNIT, ANGLE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	03-Mar-08	18-Mar-08	123552.00	=""	="Aviall Australia Pty Ltd"	12-Mar-08 04:05 PM	

+="CN65106"	" NSN 2840/00-164-5586  PURCHASE OF DISK, COMPRESSOR, AIRCRAFT GAS TURBINE ENGINE  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	29-Feb-08	18-Jun-08	132514.80	=""	="Aviall Australia Pty Ltd"	12-Mar-08 04:09 PM	

+="CN65108"	" NSN 1740/66-153-2374  PURCHASE OF TRAILER, GROUND HANDLING RAAF COUNTERMEASURES DISPENSERTRAILER  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	03-Mar-08	22-May-08	166892.00	=""	="Metcalfe Group Pty Ltd"	12-Mar-08 04:13 PM	

+="CN65109"	" NSN 4940/99-849-9712  PURCHASE OF SPRAYING UNIT, CLEANING COMPOUND, TRAILER MOUNTED 50 GALLON UNIVERSAL ENGINE COMPRESSOR WASHING RIG FOR RAAF C130 AIRCRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	04-Mar-08	12-Jun-08	660000.00	=""	="Pacific Dynamics Pty Ltd"	12-Mar-08 04:18 PM	

+="CN65110"	" NSN 4940/99-849-9712  PURCHASE OF SPRAYING UNIT, CLEANING COMPOUND, TRAILER MOUNTED 50 GALLON UNIVERSAL ENGINE COMPRESSOR WASHING RIG FOR RAAF C130 AICRAFT  INCL GST "	="Defence Materiel Organisation"	12-Mar-08	="Military transport aircraft"	04-Mar-08	12-Jun-08	330000.00	=""	="Pacific Dynamics Pty Ltd"	12-Mar-08 04:22 PM	

+="CN65111"	"Hardware maintenance"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	01-Sep-02	01-Oct-07	11406.32	=""	="Alpha West P/L"	12-Mar-08 04:24 PM	

+="CN65112"	"Click Charges - July 2007"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	17-Sep-03	15-Sep-07	18529.43	=""	="Ati Group Pty Ltd"	12-Mar-08 04:24 PM	

+="CN65113"	"Computer software"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	01-Jan-04	31-Dec-07	21682.67	=""	="Data#3 Group"	12-Mar-08 04:24 PM	

+="CN65114"	"Computer hardware"	="Australian Bureau of Statistics"	12-Mar-08	="Computer Equipment and Accessories"	07-Apr-04	31-Jul-08	13394.04	=""	="Corporate Express"	12-Mar-08 04:24 PM	

+="CN65115"	"computer hardware"	="Australian Bureau of Statistics"	12-Mar-08	="Components for information technology or broadcasting or telecommunications"	07-Apr-04	31-Jul-08	23741.74	=""	="Corporate Express"	12-Mar-08 04:24 PM	

+="CN65116"	"Computer hardware"	="Australian Bureau of Statistics"	12-Mar-08	="Computer Equipment and Accessories"	07-Apr-04	31-Jul-08	17228.48	=""	="Corporate Express"	12-Mar-08 04:24 PM	

+="CN65117"	"Realignment of Oracle licences to main agreement reneweal date Service Contract 2258607, term 14-Nov-07 to 28-May-08"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	26-Nov-04	25-Nov-07	31510.64	=""	="Oracle Corporation Aust P/L"	12-Mar-08 04:25 PM	

+="CN65118"	"Superannuation Payment"	="Australian Bureau of Statistics"	12-Mar-08	="Management and Business Professionals and Administrative Services"	30-Aug-05	30-Sep-06	12106.58	=""	="Optimum Superannuation Masterplan"	12-Mar-08 04:25 PM	

+="CN65119"	"Performance Testing"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	01-May-07	30-Jun-08	62579.00	=""	="Access Testing P/L"	12-Mar-08 04:25 PM	

+="CN65120"	"Delivery of Presentation skills and Personal Management Program"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	25-Jun-07	30-Jun-08	181500.00	=""	="Passion Energy And Performance Pty Ltd"	12-Mar-08 04:25 PM	

+="CN65121"	"Computer hardware"	="Australian Bureau of Statistics"	12-Mar-08	="Computer Equipment and Accessories"	28-Jun-07	27-Jun-09	178684.00	="SON26894"	="Acer Computer Australia Pty Ltd"	12-Mar-08 04:25 PM	

+="CN65122"	"LCD monitors"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	28-Jun-07	27-Jun-09	11880.00	=""	="Acer Computer Australia Pty Ltd"	12-Mar-08 04:25 PM	

+="CN65123"	"Delivery of IESP and other NSTI training"	="Australian Bureau of Statistics"	12-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	20-Mar-08	29469.00	=""	="Dennis Charles Robson"	12-Mar-08 04:26 PM	

+="CN65124"	"Delivery of ABS Policy workshops"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	09-Jul-07	30-Jun-08	31900.00	=""	="Interaction Consulting Group"	12-Mar-08 04:26 PM	

+="CN65125"	"Construction Programming Advice for NT Accommodation Project"	="Australian Bureau of Statistics"	12-Mar-08	="Building and Construction and Maintenance Services"	12-Jul-07	11-Jan-09	22000.00	=""	="Thinc Projects Australia"	12-Mar-08 04:26 PM	

+="CN65126"	"Consultancy to assist with the preparation of a funding proposal for the People, Processes and Services Improvement project (PePSI)"	="Australian Bureau of Statistics"	12-Mar-08	="Management advisory services"	23-Jul-07	31-Jan-08	88000.00	=""	="Resolution Consulting Services"	12-Mar-08 04:26 PM	

+="CN65127"	"Delivery of 'Dealing with difficult situations and People' training"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	01-Aug-07	29-Feb-08	11000.00	="SON25954"	="Achievement Awareness"	12-Mar-08 04:26 PM	

+="CN65128"	"Delivery of NSTI training courses"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	07-Aug-07	30-Jun-08	25894.00	=""	="University Of Canberra"	12-Mar-08 04:26 PM	

+="CN65129"	"Delivery of NSTI training include Accounting for non-accountants"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	15-Aug-07	30-Jun-08	38500.00	=""	="Australian Capital Training Group Pty Ltd"	12-Mar-08 04:26 PM	

+="CN65130"	"Payment of Office Rent/Carparking/Statutory Outgoings 2007/08 FY"	="Australian Bureau of Statistics"	12-Mar-08	="Real estate services"	01-Sep-07	30-Jun-08	1108800.00	=""	="Knight Frank"	12-Mar-08 04:27 PM	

+="CN65131"	"After Hours Airconditioning - NSW Office Fitout Project"	="Australian Bureau of Statistics"	12-Mar-08	="Business administration services"	04-Sep-07	30-Jun-08	33000.00	=""	="Glebe Administration Board"	12-Mar-08 04:27 PM	

+="CN65132"	"Professional Fees Incurred for Negotiation of NT Office Lease - Previous PO 223095 Funds Depleted"	="Australian Bureau of Statistics"	12-Mar-08	="Business administration services"	06-Sep-07	30-Jun-08	11000.00	=""	="Aust Govt Solicitor"	12-Mar-08 04:27 PM	

+="CN65133"	"Focus group testing for Census 2011"	="Australian Bureau of Statistics"	12-Mar-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	31-Oct-07	27720.00	=""	="Market Attitude Research Serv"	12-Mar-08 04:27 PM	

+="CN65134"	"Casual Guard Services"	="Australian Bureau of Statistics"	12-Mar-08	="Business administration services"	11-Sep-07	31-Dec-07	16500.00	=""	="Chubb Protective Services"	12-Mar-08 04:27 PM	

+="CN65135"	"Packaging and handling including pallets, administration, freight charges, labour and assembly of new recruits equipment (desk, chair and mobile pedestal) for WA, NT, SA, VIC & ACT"	="Australian Bureau of Statistics"	12-Mar-08	="Furniture and Furnishings"	18-Sep-07	18-Sep-07	17069.37	=""	="Officemax Australia Ltd"	12-Mar-08 04:27 PM	

+="CN65137"	"Construction Work for NSW Office Project"	="Australian Bureau of Statistics"	12-Mar-08	="Building and Construction and Maintenance Services"	19-Sep-07	30-Jun-08	305077.81	=""	="The Builder Construction Group International Pty Limited"	12-Mar-08 04:27 PM	

+="CN65138"	"VPS Annual Maintenance"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	20-Sep-07	20-Sep-08	16338.17	=""	="Voice Perfect Systems"	12-Mar-08 04:28 PM	

+="CN65139"	"Delivery of sensitivity awareness training for Survey of Mental Health & Wellbeing."	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	25-Sep-07	28-Sep-07	42110.62	=""	="Osa Group Pty Ltd"	12-Mar-08 04:28 PM	

+="CN65140"	"Needs Analysis for ABS House"	="Australian Bureau of Statistics"	12-Mar-08	="Building and Construction and Maintenance Services"	26-Sep-07	30-Jun-08	27500.00	=""	="Gray Puksand"	12-Mar-08 04:28 PM	

+="CN65141"	"Express Meter - licence - level 1 base software maintenance"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	30-Sep-07	30-Sep-08	16597.81	=""	="Loop Technology Pty Ltd"	12-Mar-08 04:29 PM	

+="CN65142"	"ODB11 Maintenance"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	01-Nov-07	31-Oct-08	14036.77	=""	="Fujitsu Aust Ltd"	12-Mar-08 04:29 PM	

+="CN65144"	"Optus 1800/1300 - 07/08 (July 07)"	="Australian Bureau of Statistics"	12-Mar-08	="Telecommunications media services"	01-Jul-07	31-Jul-07	11002.12	=""	="Optus Communications"	12-Mar-08 04:29 PM	

+="CN65145"	"Postal services August 2007"	="Australian Bureau of Statistics"	12-Mar-08	="Transportation and Storage and Mail Services"	01-Aug-07	31-Aug-07	96540.01	=""	="Australia Post"	12-Mar-08 04:29 PM	

+="CN65146"	"Vic postal charges for August 2007"	="Australian Bureau of Statistics"	12-Mar-08	="Transportation and Storage and Mail Services"	01-Aug-07	31-Aug-07	10901.68	=""	="Australia Post"	12-Mar-08 04:29 PM	

+="CN65147"	"Electricity supply Aug 07"	="Australian Bureau of Statistics"	12-Mar-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	01-Aug-07	31-Aug-07	18786.68	=""	="Energy Australia"	12-Mar-08 04:29 PM	

+="CN65148"	"Oracle SQL & SQL Plus workshop - 11 attendees"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	06-Aug-07	31-Aug-07	17875.00	=""	="Sage Computing Services"	12-Mar-08 04:29 PM	

+="CN65149"	"Cleaning Sept 2007"	="Australian Bureau of Statistics"	12-Mar-08	="Cleaning and janitorial services"	01-Sep-07	30-Sep-07	11209.91	=""	="Berkeley Challenge P/L"	12-Mar-08 04:30 PM	

+="CN65150"	"Vic office rent, Sept 07."	="Australian Bureau of Statistics"	12-Mar-08	="Real estate services"	01-Sep-07	30-Jun-08	215136.53	=""	="Investa Asset Management P/L"	12-Mar-08 04:30 PM	

+="CN65151"	"NSW vehicle lease costs, Sep 07."	="Australian Bureau of Statistics"	12-Mar-08	="Passenger transport"	01-Sep-07	30-Jun-08	16225.78	=""	="Lease Plan"	12-Mar-08 04:30 PM	

+="CN65152"	"ACT/CO vehicle lease charges for Sept 07."	="Australian Bureau of Statistics"	12-Mar-08	="Passenger transport"	01-Sep-07	30-Jun-08	17302.69	=""	="Lease Plan"	12-Mar-08 04:30 PM	

+="CN65153"	"Vic office vehicle lease costs, Sep 07."	="Australian Bureau of Statistics"	12-Mar-08	="Passenger transport"	01-Sep-07	30-Jun-08	14645.03	=""	="Lease Plan"	12-Mar-08 04:30 PM	

+="CN65155"	"Advanced PL/SQL Tuning courses for 11 attendees - 10-14/9/07"	="Australian Bureau of Statistics"	12-Mar-08	="Computer services"	10-Sep-07	14-Sep-07	17875.00	=""	="Sage Computing Services"	12-Mar-08 04:30 PM	

+="CN65157"	"Qld office rent, Oct 07."	="Australian Bureau of Statistics"	12-Mar-08	="Real estate services"	14-Sep-07	30-Jun-08	144894.76	=""	="Gpt Group"	12-Mar-08 04:31 PM	

+="CN65158"	"Provide a physical security risk review"	="Australian Bureau of Statistics"	12-Mar-08	="Personal and Domestic Services"	17-Sep-07	30-Jun-08	33536.95	=""	="Kbr"	12-Mar-08 04:31 PM	

+="CN65160"	"design and production of ABS annual report, 2006-07."	="Australian Bureau of Statistics"	12-Mar-08	="Information services"	24-Sep-07	30-Jun-08	21890.00	=""	="Rtm Pty Ltd"	12-Mar-08 04:31 PM	

+="CN65162"	":SEP-2007"	="Australian Bureau of Statistics"	12-Mar-08	="Passenger transport"	27-Sep-07	30-Jun-08	385971.12	=""	="American Express Australia Limit"	12-Mar-08 04:31 PM	

+="CN65163"	"interim CFO services, 27 Aug-21 Sept 07."	="Australian Bureau of Statistics"	12-Mar-08	="Human resources services"	28-Sep-07	30-Jun-08	20182.80	=""	="Debra Jane Foggin"	12-Mar-08 04:32 PM	

+="CN65164"	"BOISE:SEP-2007"	="Australian Bureau of Statistics"	12-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Sep-07	30-Jun-08	43053.55	=""	="Boise Cascade Office Products"	12-Mar-08 04:32 PM	

+="CN65165"	"In-house SANS Security Essentials course 22-24/10/07"	="Australian Bureau of Statistics"	12-Mar-08	="Education and Training Services"	22-Oct-07	24-Oct-07	16500.00	=""	="Shearwater Solutions"	12-Mar-08 04:32 PM	

+="CN65166-A1"	"Computer Booking System"	="Australian Electoral Commission"	12-Mar-08	="World wide web WWW site operation host services"	28-Mar-06	28-Feb-09	40205.48	=""	="Piction.com Pty Ltd"	12-Mar-08 04:39 PM	

+="CN65167"	"Mobile Telephone Fees and Charges"	="Australian Electoral Commission"	12-Mar-08	="Cellular telephone services"	15-Sep-07	30-Jun-08	29941.15	=""	="Telstra"	12-Mar-08 04:44 PM	

+="CN65168-A1"	"qty 4 circuit card assembly; qty 1 interface unit; qty 2 18 slot chassis; and various other circuit card assemblies; for Medium Repair Facility calibration pool"	="Defence Materiel Organisation"	12-Mar-08	="Workshop machinery and equipment and supplies"	29-Feb-08	29-May-08	66520.99	=""	="SAAB SYSTEMS PTY LTD"	12-Mar-08 04:54 PM	

+="CN65171"	"qty 1 control panel; qty 1 18 slot chassis; qty 1 special purpose cable assembly; qty 1 circuit card assembly and other items for the Medium Repair Facilities"	="Defence Materiel Organisation"	12-Mar-08	="Workshop machinery and equipment and supplies"	03-Mar-08	16-Jun-08	22488.99	=""	="SAAB SYSTEMS PTY LTD"	12-Mar-08 05:23 PM	

+="CN65172"	"QTY 1 LOOPBACK PANEL; SOME NINTEEN TYPES OF TEST CABLES FOR USE IN MEDIUM REPAIR FACILITY #15"	="Defence Materiel Organisation"	12-Mar-08	="Workshop machinery and equipment and supplies"	03-Mar-08	16-Jun-08	59001.00	=""	="SAAB SYSTEMS PTY LTD"	12-Mar-08 05:33 PM	

+="CN65173"	" Form Printed, PM344 (E-Form) Dental Clinical Record, Pad of 50 Sets (also available on E-Form and Defweb Systems). Total qty 5000 Pads. "	="Defence Materiel Organisation"	12-Mar-08	="Examination booklets or forms"	18-Feb-08	31-Mar-08	21450.00	="2680123"	="J P Printing"	12-Mar-08 05:48 PM	

+="CN65174"	"BOOK, RECORD AB 692, DAILY OCCURRENCE BOOK, BOOK OF302 PAGES, (CURRENT VERSIONS ARE ALL FROM INTRODUCED MAY 90) TOTAL QTY 2000 BOOKS "	="Defence Materiel Organisation"	12-Mar-08	="Inventory forms or inventory books"	10-Jan-08	09-May-08	36300.00	="2680004"	="SIRWAY ASIA PACIFIC PTY LTD"	12-Mar-08 05:59 PM	

+="CN65176"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR G/BOX ASSY."	="Defence Materiel Organisation"	13-Mar-08	="Military rotary wing aircraft"	13-Mar-08	31-Mar-08	87186.57	=""	="SAAL"	13-Mar-08 08:26 AM	

+="CN65177"	"Professional Services"	="Australian Office of Financial Management"	13-Mar-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Apr-11	62500.00	=""	="Mr. P Warne"	13-Mar-08 09:14 AM	

+="CN65180"	"Provision of Training and Technical Writing Services for the National Pollutant Inventory"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	11-Oct-07	25-Oct-07	15510.00	="0708-452"	="Air Charter Network"	13-Mar-08 09:33 AM	

+="CN65181-A1"	"Audit of Portable and Attractive Asset Management by ACT Policing"	="Australian Federal Police"	13-Mar-08	="Audit services"	11-Mar-08	30-Jun-08	13200.00	="Jan-05"	="PriceWaterhouseCoopers"	13-Mar-08 09:40 AM	

+="CN65183"	"To obtain a professional service for preparing a publication on the History of the Development of Australian Democracy."	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Writing and translations"	11-Oct-07	30-Dec-07	36000.00	="0607-284"	="John Hirst"	13-Mar-08 09:41 AM	

+="CN65185"	" Bush Guides,Shipping and Storage Container and Piston "	="Defence Materiel Organisation"	13-Mar-08	="Electronic Components and Supplies"	13-Mar-08	28-May-08	40744.00	="RFQ-C7119"	="CLARK MASTS ASIA PACIFIC P/L"	13-Mar-08 09:45 AM	

+="CN65184"	"Facilitation service for the National Heritage Place Manager's Forum"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	26-Oct-07	14000.00	="0708-429"	="Mary Dickie Issues Management Pty Ltd T/A Quay Connection"	13-Mar-08 09:45 AM	

+="CN65186-A1"	"Internal Audit of IDG Knowledge Management"	="Australian Federal Police"	13-Mar-08	="Audit services"	17-Mar-08	30-Sep-08	33000.00	="01-2005"	="KPMG"	13-Mar-08 09:52 AM	

+="CN65187"	"Provision of Accounting and Financial Services"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	50000.00	="0708-178"	="Total Decision Support Pty Ltd"	13-Mar-08 09:55 AM	

+="CN65189-A2"	"Internal Audit of IDG procurement & Contracting"	="Australian Federal Police"	13-Mar-08	="Audit services"	17-Mar-08	30-Jun-08	40040.00	="01-2005"	="KPMG"	13-Mar-08 10:01 AM	

+="CN65188"	"Development and Training Services to Enhance the Departments Project Server Implementation"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Computer services"	12-Oct-07	30-Jun-08	75000.00	="0708-287"	="Strategic Data Management PTY LTD"	13-Mar-08 10:07 AM	

+="CN65191"	"Blackberry Charges August 2007"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Oct-07	31-Oct-07	15017.73	="0708-405"	="Telstra Corporation Limited"	13-Mar-08 10:10 AM	

+="CN65192"	"Construction Management works Ringwood fitout"	="Centrelink"	13-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	13-Apr-08	273768.00	=""	="Pirotta Services Pty Ltd"	13-Mar-08 10:11 AM	

+="CN65193"	"Blackberry Charges Sept 2007"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Oct-07	31-Oct-07	17189.66	="0708-406"	="Telstra Corporation Limited"	13-Mar-08 10:13 AM	

+="CN65195"	"Evaluation of Australian Opportunities for more water efficient toilets"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	15-Oct-07	31-Dec-07	53333.50	="0708-076"	="University of Technology Sydney"	13-Mar-08 10:18 AM	

+="CN65196"	"Development of  Administration System Services for On-line applications for the Hot Water Rebate Program"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	31-Oct-07	49500.00	="0708-481"	="Toldark Pty Ltd"	13-Mar-08 10:22 AM	

+="CN65197"	" Forms Printed, Operational - Various items. "	="Defence Materiel Organisation"	13-Mar-08	="Examination booklets or forms"	28-Nov-07	22-Dec-07	11417.01	=""	="Canprint Communications"	13-Mar-08 10:24 AM	

+="CN65199"	"Technical Support for Enterprise Project Management Pilot and Implemantation"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information services"	15-Oct-07	30-Mar-08	88000.00	="0708-158"	="ASI Solutions"	13-Mar-08 10:38 AM	

+="CN65204-A2"	"Supply of Computer cabling Equipment"	="Australian Federal Police"	13-Mar-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	56682.78	="37-2005"	="Absolute Cabling Systems Pty Ltd"	13-Mar-08 11:51 AM	

+="CN65205-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	24-Jan-08	06-Mar-08	11400.00	=""	="Australian Federal Police"	13-Mar-08 11:58 AM	

+="CN65207"	"BOOK RECORD - ON015, SHIP'S LOG. QTY 1200."	="Defence Materiel Organisation"	13-Mar-08	="Log books or pads"	30-Nov-07	25-Jan-08	14718.00	="2680071"	="LIGARE PTY LTD"	13-Mar-08 12:00 PM	

+="CN65208-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	08-Feb-08	23-Mar-08	13400.00	=""	="Australian Federal Police"	13-Mar-08 12:01 PM	

+="CN65209-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	01-Feb-08	14-Mar-08	11000.00	=""	="Australian Federal Police"	13-Mar-08 12:04 PM	

+="CN65210-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	20-Feb-08	04-Apr-08	17300.00	=""	="Australian Federal Police"	13-Mar-08 12:11 PM	

+="CN65215-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	07-Dec-07	10-Jan-08	13300.00	=""	="Australian Federal Police"	13-Mar-08 12:29 PM	

+="CN65212-A2"	"Tax Consultant secondment"	="Australian Federal Police"	13-Mar-08	="Tax accounting"	01-Jan-08	01-Mar-08	97452.00	="23-2005"	="KPMG"	13-Mar-08 12:51 PM	

+="CN65217"	"Key Management System"	="Attorney-General's Department"	13-Mar-08	="Keys"	11-Feb-08	11-Feb-08	11931.01	=""	="CIC Secure Pty Ltd"	13-Mar-08 01:08 PM	

+="CN65218"	"Module delivery"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	12-Feb-08	12-Feb-08	17930.00	=""	="RMIT"	13-Mar-08 01:08 PM	

+="CN65219"	"Training"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	12-Feb-08	29-Feb-08	16280.00	=""	="Hotel Realm"	13-Mar-08 01:08 PM	

+="CN65220"	"Consultancy"	="Attorney-General's Department"	13-Mar-08	="Public Utilities and Public Sector Related Services"	12-Feb-08	30-Jun-08	62500.00	="07/125"	="GHD Pty Ltd"	13-Mar-08 01:09 PM	

+="CN65221"	"Expert advice on procurement"	="Attorney-General's Department"	13-Mar-08	="Procurement or supply chain training"	12-Feb-08	12-Feb-08	21440.00	=""	="The Trustee for Argonautica Trust"	13-Mar-08 01:09 PM	

+="CN65222"	"NCTC PTG Equipment"	="Attorney-General's Department"	13-Mar-08	="Computer Equipment and Accessories"	12-Feb-08	28-Feb-08	10806.00	=""	="HARRIS TECHNOLOGY"	13-Mar-08 01:09 PM	

+="CN65224"	"Police records checks"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	14-Feb-08	30-Jun-08	30000.00	=""	="Australian Federal Police"	13-Mar-08 01:09 PM	

+="CN65225"	"Training facility"	="Attorney-General's Department"	13-Mar-08	="General educational facility fixtures"	14-Feb-08	14-Feb-08	46000.01	=""	="A Yarra Valley Conferecne Centre"	13-Mar-08 01:09 PM	

+="CN65226"	"Data maintenance"	="Attorney-General's Department"	13-Mar-08	="Data services"	11-Feb-08	30-Apr-08	16116.38	=""	="NSC Enterprise Solutions"	13-Mar-08 01:09 PM	

+="CN65227"	"Security maintenance"	="Attorney-General's Department"	13-Mar-08	="Security surveillance and detection"	06-Feb-08	06-Feb-08	117645.00	="06/21859"	="Chubb Security Aust Pty Ltd"	13-Mar-08 01:10 PM	

+="CN65230"	"Venue & Accomodation Costs"	="Attorney-General's Department"	13-Mar-08	="Meeting facilities"	07-Feb-08	05-Mar-08	56535.00	=""	="Marque Hotels International Pty Ltd"	13-Mar-08 01:10 PM	

+="CN65231"	"Accomodation costs- Meting"	="Attorney-General's Department"	13-Mar-08	="Meeting facilities"	07-Feb-08	05-Mar-08	23913.00	=""	="Saville Park Suites Canberra"	13-Mar-08 01:10 PM	

+="CN65234"	"CISCO bundles with switch & without switch"	="Attorney-General's Department"	13-Mar-08	="Internet services"	08-Feb-08	20-Feb-08	77149.71	=""	="Dimension Data Australia Pty Ltd"	13-Mar-08 01:11 PM	

+="CN65235"	"Rent"	="Attorney-General's Department"	13-Mar-08	="Lease and rental of property or building"	11-Feb-08	11-Feb-08	15949.51	=""	="Finlease Equipment Rentals"	13-Mar-08 01:11 PM	

+="CN65236"	"Interface Maintenance"	="Attorney-General's Department"	13-Mar-08	="Maintenance or support fees"	14-Feb-08	30-Jun-10	287735.80	=""	="Department of Immigration and"	13-Mar-08 01:11 PM	

+="CN65237"	"Goods"	="Attorney-General's Department"	13-Mar-08	="Cabinets"	21-Feb-08	21-Feb-08	17919.00	=""	="Planex Sales Pty Ltd"	13-Mar-08 01:11 PM	

+="CN65238"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Government accounting services"	21-Feb-08	30-Jun-08	29999.99	="06/16740"	="KPMG Chartered Accountants"	13-Mar-08 01:11 PM	

+="CN65239"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Educational and research structures"	22-Feb-08	22-Feb-08	55066.00	=""	="Colmar Brunton Social Research"	13-Mar-08 01:11 PM	

+="CN65240"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Aircraft"	27-Feb-08	27-Feb-08	4400000.00	=""	="NATIONAL AERIAL FIREFIGHTING CENTRE"	13-Mar-08 01:11 PM	

+="CN65241"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Temporary legal staffing needs"	27-Feb-08	27-Feb-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:12 PM	

+="CN65242"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Lighting and fixtures and accessories"	27-Feb-08	01-Apr-08	22918.50	=""	="The Cunningham Family Trust"	13-Mar-08 01:12 PM	

+="CN65243"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Relocation services"	28-Feb-08	28-Feb-08	67018.60	=""	="Rail Infrastructure Corporation"	13-Mar-08 01:12 PM	

+="CN65244-A1"	" Contractor services "	="Attorney-General's Department"	13-Mar-08	="Personnel recruitment"	28-Feb-08	30-Sep-10	564856.80	="06/18160"	="Intrain Corporation Pty Ltd"	13-Mar-08 01:12 PM	

+="CN65245"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Temporary financial staffing needs"	28-Feb-08	29-Feb-08	29999.99	=""	="Hays Personnel Services (Aust) PL"	13-Mar-08 01:12 PM	

+="CN65246"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Printing and writing paper"	21-Feb-08	21-Feb-08	19004.70	=""	="Grey Worldwide Canberra Pty Ltd"	13-Mar-08 01:12 PM	

+="CN65247"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Machine made parts"	15-Feb-08	30-Jun-08	24919.18	=""	="MAN DIESEL AUSTRALIA PTY LTD"	13-Mar-08 01:12 PM	

+="CN65248"	"Services"	="Attorney-General's Department"	13-Mar-08	="System administrators"	18-Feb-08	30-Aug-08	24200.00	="07/13009"	="Relevance"	13-Mar-08 01:12 PM	

+="CN65249"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Relocation services"	18-Feb-08	30-Jun-08	58300.00	="07/13009"	="Digital (Digest) Data Design"	13-Mar-08 01:13 PM	

+="CN65250"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Electrical services"	18-Feb-08	30-Jun-08	16145.00	=""	="WOODWARD GOVERNOR COMPANY"	13-Mar-08 01:13 PM	

+="CN65251"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Technical cooperation services"	18-Feb-08	30-Jun-08	27118.43	=""	="Powercorp Operations Pty Ltd"	13-Mar-08 01:13 PM	

+="CN65252"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="License management software"	19-Feb-08	29-Feb-08	13265.86	="07/13009"	="Data#3 Ltd"	13-Mar-08 01:13 PM	

+="CN65253"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Print advertising"	19-Feb-08	19-Feb-08	48607.90	=""	="Universal McCann"	13-Mar-08 01:13 PM	

+="CN65254"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Project management"	20-Feb-08	30-Jun-08	19646.00	=""	="Bligh Voller Nield"	13-Mar-08 01:13 PM	

+="CN65255"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Hotels and lodging and meeting facilities"	21-Feb-08	05-Mar-08	30345.00	=""	="The Trustee for Pavilion Trust"	13-Mar-08 01:13 PM	

+="CN65256"	"Blackberry"	="Attorney-General's Department"	13-Mar-08	="Communications Devices and Accessories"	05-Feb-08	05-Feb-08	22440.00	=""	="Telstra"	13-Mar-08 01:13 PM	

+="CN65257"	"Professional Fees"	="Attorney-General's Department"	13-Mar-08	="International business associations"	12-Jan-08	31-Dec-08	17716.00	=""	="Cathco"	13-Mar-08 01:14 PM	

+="CN65258"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	02-May-07	31-Dec-08	12862.50	=""	="Commonwealth Director of"	13-Mar-08 01:14 PM	

+="CN65259"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	02-May-07	31-Dec-08	12862.50	=""	="Commonwealth Director of"	13-Mar-08 01:14 PM	

+="CN65260"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	31-Jan-08	31-Dec-08	10222.30	=""	="Australian Government Solicitor"	13-Mar-08 01:14 PM	

+="CN65261-A1"	"Purchase of Comm books, journals and magazines"	="Attorney-General's Department"	13-Mar-08	="Division activity or resource books"	19-Jan-08	31-Jan-08	23945.91	=""	="Copyright Agency Limited"	13-Mar-08 01:14 PM	

+="CN65262"	"Nauru Mission"	="Attorney-General's Department"	13-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	19-Feb-08	18448.00	=""	="Cathco"	13-Mar-08 01:14 PM	

+="CN65263"	"Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	31-Oct-07	31-Oct-17	14355.00	="06#195748DOC"	="Australian Government Solictor"	13-Mar-08 01:14 PM	

+="CN65264"	"*Professional fees and disbursements"	="Attorney-General's Department"	13-Mar-08	="Legal services"	16-Nov-07	21-Nov-07	22129.06	="07/21250"	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:14 PM	

+="CN65265-A1"	"Ffees for profession services"	="Attorney-General's Department"	13-Mar-08	="Finance accounting and enterprise resource planning ERP software"	29-Jan-08	31-Jul-10	10043.00	="07/16757"	="Deloitte Touche Tohmatsu"	13-Mar-08 01:15 PM	

+="CN65266-A1"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	07-Jan-07	31-Dec-18	14771.74	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:15 PM	

+="CN65267"	"Supply of Power"	="Attorney-General's Department"	13-Mar-08	="Public Utilities and Public Sector Related Services"	14-Dec-07	31-Dec-07	17808.05	="26130000"	="Christmas Island Adminstration"	13-Mar-08 01:15 PM	

+="CN65268"	"Power supply"	="Attorney-General's Department"	13-Mar-08	="Building and Construction and Maintenance Services"	15-Jan-08	15-Jan-08	19088.80	=""	="Christmas Island Adminstration"	13-Mar-08 01:15 PM	

+="CN65269"	"Funding Pathways Network 2007-2008"	="Attorney-General's Department"	13-Mar-08	="Relationship building or family life skills instructional materials"	31-Jan-08	30-Jun-08	33000.00	=""	="RELATIONSHIPS AUSTRALIA WA"	13-Mar-08 01:15 PM	

+="CN65274"	"Leagl services"	="Attorney-General's Department"	13-Mar-08	="Temporary legal staffing needs"	07-Feb-08	25-Apr-08	92350.50	="06#195748000"	="Australian Government Solictor"	13-Mar-08 01:16 PM	

+="CN65275"	"Recovery Costs"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	26-Nov-07	26-Nov-07	52586.21	=""	="Dept Transport & Regional Services"	13-Mar-08 01:16 PM	

+="CN65276"	"*Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	23-Oct-07	04-Mar-18	42342.21	="06#195748 DOC"	="Australian Government Solicitor"	13-Mar-08 01:16 PM	

+="CN65277"	"Temporary Recruitment"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	18-Feb-08	03-Mar-08	66572.00	="06/18397"	="Clicks Recruit Pty Ltd"	13-Mar-08 01:16 PM	

+="CN65278"	"Security Maintenance"	="Attorney-General's Department"	13-Mar-08	="Security surveillance and detection"	01-Feb-08	31-Jan-11	20511.49	="05/18399"	="ADT"	13-Mar-08 01:16 PM	

+="CN65279"	"Computer services"	="Attorney-General's Department"	13-Mar-08	="Computer services"	01-Feb-08	01-Feb-08	21000.00	="06/18392"	="Stratsec.Net Pty Ltd"	13-Mar-08 01:16 PM	

+="CN65280"	"Installation of cabling"	="Attorney-General's Department"	13-Mar-08	="Communications Devices and Accessories"	01-Feb-08	01-Feb-08	11099.00	="07/13009"	="DATAVOICE COMMUNICATIONS"	13-Mar-08 01:17 PM	

+="CN65281"	"Vetting services"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	04-Feb-08	30-Jun-08	30000.00	="97/21603"	="J Sainsbury"	13-Mar-08 01:17 PM	

+="CN65282"	"Security systems maintenance"	="Attorney-General's Department"	13-Mar-08	="Security systems services"	04-Feb-08	29-Feb-08	10120.00	="07/12836"	="Intec 1 Pty Ltd"	13-Mar-08 01:17 PM	

+="CN65283"	"Contracting fees"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	04-Feb-08	28-Feb-08	30000.00	=""	="Clicks Recruit Pty Ltd"	13-Mar-08 01:17 PM	

+="CN65284"	"Equipment"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	04-Feb-08	31-May-08	153696.40	=""	="The Trustee for Wesfire Unit Trust"	13-Mar-08 01:17 PM	

+="CN65285"	"Text books"	="Attorney-General's Department"	13-Mar-08	="Educational or vocational textbooks"	05-Feb-08	05-Feb-08	22000.00	=""	="Thomson Legal & Regulatory Ltd"	13-Mar-08 01:17 PM	

+="CN65286"	"Construction Costs"	="Attorney-General's Department"	13-Mar-08	="General building construction"	04-Mar-08	30-Apr-09	2225192.20	=""	="ISPT"	13-Mar-08 01:17 PM	

+="CN65287"	"Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	16-Jan-08	27-Feb-08	11578.04	="06#195748DOC"	="Australian Government Solicitor"	13-Mar-08 01:18 PM	

+="CN65289"	"Communication for National Security Campaign"	="Attorney-General's Department"	13-Mar-08	="Communications vocational training services"	18-Feb-08	18-Feb-08	45100.00	=""	="Cultural Partners"	13-Mar-08 01:18 PM	

+="CN65290"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Personal communications device accessories or parts"	07-Mar-08	07-Mar-08	26473.70	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	13-Mar-08 01:18 PM	

+="CN65291"	"Contract services"	="Attorney-General's Department"	13-Mar-08	="Unemployment services"	07-Mar-08	07-Mar-08	53130.00	=""	="The Trustee for The Cordelta"	13-Mar-08 01:18 PM	

+="CN65292"	"Provision of contracted vetting services"	="Attorney-General's Department"	13-Mar-08	="National security"	04-Mar-08	30-Jun-08	22000.00	="02/4856"	="Bellegarde Marketing & Consultancie"	13-Mar-08 01:18 PM	

+="CN65293"	"Vehicle lease"	="Attorney-General's Department"	13-Mar-08	="Motor vehicles"	07-Jan-08	30-Jun-08	15300.00	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	13-Mar-08 01:18 PM	

+="CN65294"	"Consultant"	="Attorney-General's Department"	13-Mar-08	="Business intelligence consulting services"	04-Mar-08	30-Jun-08	145200.00	=""	="Clicks Recruit Pty Ltd"	13-Mar-08 01:18 PM	

+="CN65295"	"Consultancy Services"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	04-Mar-08	04-Mar-08	78100.00	=""	="Southern Cross Computing Pty Ltd"	13-Mar-08 01:19 PM	

+="CN65296"	"The Cost of Water Efficiency Infrastructure Investments in Irrigation Industries and Valleys across Australia"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	16-Oct-07	30-Nov-07	68365.00	="0708-459"	="Hassall & Associates Pty Ltd"	13-Mar-08 01:26 PM	

+="CN65298"	"Annual Report Editing Services"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	17-Oct-07	24-Oct-07	17250.00	="0708-468"	="Elizabeth Hutchings Editing"	13-Mar-08 01:29 PM	

+="CN65299"	"Chest Wound Dressings For ADF"	="Defence Materiel Organisation"	13-Mar-08	="Bandages or dressings for general use"	29-Feb-08	01-Apr-08	20785.60	=""	="Medical Kinetics Pty Ltd"	13-Mar-08 01:30 PM	

+="CN65301"	"Supply and installation of fibre optical cabling"	="Australian Federal Police"	13-Mar-08	="Installation cables"	01-Feb-08	31-Mar-08	22703.78	="37/2005"	="Absolute Cabling Systems Pty Ltd"	13-Mar-08 01:34 PM	

+="CN65302"	" Project Management Training Programe Services "	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Education and Training Services"	17-Oct-07	30-Oct-07	13530.00	=""	="Innovation Partners Australia"	13-Mar-08 01:36 PM	

+="CN65304"	"Office Furniture and Supplies"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Accommodation furniture"	17-Oct-07	12-Dec-07	37980.80	="0708-434"	="Workspace Commercial Furniture"	13-Mar-08 01:42 PM	

+="CN65307-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	14-Dec-07	25-Jan-08	11100.00	=""	="Australian Federal Police"	13-Mar-08 02:00 PM	

+="CN65309-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	19-Dec-07	30-Jan-08	10650.00	=""	="Australian Federal Police"	13-Mar-08 02:04 PM	

+="CN65308"	"2 Toshiba: R500 laptops"	="Australian Human Rights Commission"	13-Mar-08	="Notebook computers"	17-Jan-08	13-Feb-08	10840.50	=""	="Jeas Solutions"	13-Mar-08 02:05 PM	

+="CN65311"	"Legal Services"	="Australian Human Rights Commission"	13-Mar-08	="Legal services"	28-Sep-07	29-Jan-08	16391.00	=""	="Clayton Utz"	13-Mar-08 02:20 PM	

+="CN65315"	"work benches"	="Royal Australian Mint"	13-Mar-08	="Work benches"	15-Feb-08	15-Feb-08	11008.80	=""	="BAC AUSTRALIAN SYSTEMS P/L"	13-Mar-08 02:26 PM	

+="CN65314"	"Catering for HREOC 21 Conference"	="Australian Human Rights Commission"	13-Mar-08	="Catering services"	14-Feb-08	15-Feb-08	25744.00	=""	="Jones Bay Wharf Group Pty Ltd"	13-Mar-08 02:32 PM	

+="CN65317"	"moulding costs"	="Royal Australian Mint"	13-Mar-08	="Packaging tubes and cores and labels and accessories"	15-Feb-08	15-Feb-08	10088.12	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Mar-08 02:34 PM	

+="CN65320"	"capsules"	="Royal Australian Mint"	13-Mar-08	="Packaging tubes and cores and labels and accessories"	15-Feb-08	28-Feb-08	74745.00	=""	="RIAN INDUSTRIES P/L"	13-Mar-08 02:45 PM	

+="CN65322"	"Ni/silver strip"	="Royal Australian Mint"	13-Mar-08	="Nickel based super alloys"	22-Feb-08	22-Feb-08	17560.40	=""	="B. MASON & SONS LTD"	13-Mar-08 02:57 PM	

+="CN65321"	"Various Parts ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	18-Jun-08	29571.23	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 02:58 PM	

+="CN65325"	"packaging"	="Royal Australian Mint"	13-Mar-08	="Packaging materials"	25-Feb-08	09-Jun-08	10494.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	13-Mar-08 03:24 PM	

+="CN65327"	"Realignment of Oracle licences to main agreement renewel date Service Contract 2258607, term 14-Nov-07 to 28-May-08"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	31-May-02	30-May-08	37217.51	=""	="Oracle Corporation Aust P/L"	13-Mar-08 03:31 PM	

+="CN65328"	"Computer hardware"	="Australian Bureau of Statistics"	13-Mar-08	="Components for information technology or broadcasting or telecommunications"	07-Apr-04	30-Apr-08	35578.95	=""	="Corporate Express"	13-Mar-08 03:31 PM	

+="CN65329"	"Legal Services"	="Australian Bureau of Statistics"	13-Mar-08	="Legal services"	24-Jan-06	23-Jan-09	136896.22	=""	="Aust Govt Solicitor"	13-Mar-08 03:32 PM	

+="CN65331"	"Consultancy services"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	06-Sep-06	05-Sep-08	16632.00	=""	="Acumen Alliance (Act) Pty Ltd"	13-Mar-08 03:32 PM	

+="CN65332"	"Keep the Knowledge - Recordkeeping Awareness E-learning Training Package 2007 version"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	31-Dec-07	19250.00	=""	="Tactics Consulting P/L"	13-Mar-08 03:32 PM	

+="CN65333"	"Contract for provision of editorial services for the 2008 Yearbook."	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	06-Feb-07	05-Feb-08	48950.00	=""	="Green, Robin P"	13-Mar-08 03:32 PM	

+="CN65334"	"Consulting Engineers - VIC Office Refurbishment Project"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jun-07	31-Jul-08	13750.00	=""	="Vos Group Pty Ltd"	13-Mar-08 03:32 PM	

+="CN65335"	"ABS-ICON annual levy operational"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	33000.00	=""	="Dofa"	13-Mar-08 03:32 PM	

+="CN65330"	"Various Parts - ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	16-Jun-08	14561.27	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 03:32 PM	

+="CN65336"	"ABS-ICON annual levy operational"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	33000.00	=""	="Dofa"	13-Mar-08 03:33 PM	

+="CN65337"	"Telstra CDMA replacement phones"	="Australian Bureau of Statistics"	13-Mar-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	34744.55	=""	="Telstra Corporation Ltd"	13-Mar-08 03:33 PM	

+="CN65338"	"Design, Development and Delivery of ABS Leadership Program"	="Australian Bureau of Statistics"	13-Mar-08	="Education and Training Services"	02-Jul-07	30-Jun-08	220000.00	="SON25954"	="Vantage Point Consulting P/L"	13-Mar-08 03:33 PM	

+="CN65339"	"Part A - the production of information to be used to update the structure, weights and price collection of the price indexes in all capital cities, plus North Queensland. Part B - The provision of prices (unit rates) on a quarterly basis fo"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	25-Jul-07	30-Jun-08	192610.00	=""	="Rider Levett Bucknall Pty Ltd"	13-Mar-08 03:33 PM	

+="CN65340"	"Supply, deliver, install and commission 1 x APC 20kw ISX UPS"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	16-Aug-07	28-Oct-07	68750.00	=""	="Datatech Australia"	13-Mar-08 03:33 PM	

+="CN65341"	"Sunfire Maintenance - 1/10/09 - 31/10/07"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Oct-07	11406.32	=""	="Alpha West P/L"	13-Mar-08 03:33 PM	

+="CN65342"	"Maintenance"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Oct-07	23754.50	=""	="Heyday Group Pty Ltd"	13-Mar-08 03:33 PM	

+="CN65343"	"Maintenance Charges - 1/10/07 - 31/12/07"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Dec-07	16954.58	=""	="Ibm Australia Ltd"	13-Mar-08 03:34 PM	

+="CN65345"	"Legal fees for NT office lease at 22 Harry Chan Avenue"	="Australian Bureau of Statistics"	13-Mar-08	="Legal services"	03-Oct-07	31-Jan-08	11000.00	="SON26836"	="Aust Govt Solicitor"	13-Mar-08 03:34 PM	

+="CN65346"	"Computer hardware"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	04-Oct-07	31-Oct-07	417450.00	=""	="Corporate Express"	13-Mar-08 03:34 PM	

+="CN65347"	"Personal Storage Units"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	04-Oct-07	29-Nov-07	29535.00	=""	="Ofm Furniture Division"	13-Mar-08 03:34 PM	

+="CN65348"	"Computer accessoriues"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	10-Oct-07	31-Oct-07	15404.40	=""	="Officemax Australia Ltd"	13-Mar-08 03:34 PM	

+="CN65349"	"Guard Services for the NSW Refurbishment Project"	="Australian Bureau of Statistics"	13-Mar-08	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Jan-08	16500.00	=""	="Chubb Protective Services"	13-Mar-08 03:34 PM	

+="CN65350"	"Loose furniture for SA office fitout as per PO number 223515 )"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	17-Oct-07	30-Nov-07	27500.00	=""	="Mabarrack Furniture"	13-Mar-08 03:35 PM	

+="CN65351"	"Paper"	="Australian Bureau of Statistics"	13-Mar-08	="Paper materials"	18-Oct-07	18-Oct-07	19800.00	=""	="Spicers Stationery"	13-Mar-08 03:35 PM	

+="CN65352"	"Supply and Installation of security equipment for Vic office fitout"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	25-Oct-07	31-Dec-07	36300.00	=""	="Chubb Electronic Security Systems"	13-Mar-08 03:35 PM	

+="CN65353"	"EL2 Credenza's & Mobile Storage Units"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	26-Oct-07	14-Dec-07	14487.00	=""	="Ofm Furniture Division"	13-Mar-08 03:35 PM	

+="CN65354"	"ICT framewor business case training"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Jun-08	13200.00	=""	="Ernst & Young"	13-Mar-08 03:35 PM	

+="CN65355"	"Construction Work for NSW Office Project"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	30-Oct-07	30-Jun-08	522187.59	=""	="The Builder Construction Group International Pty Limited"	13-Mar-08 03:35 PM	

+="CN65356"	"Library subscription renewals for 2008 for publications supplied through subscription agent Ebsco Australia."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	01-Jan-08	31-Dec-08	61653.12	=""	="Ebsco Aust"	13-Mar-08 03:35 PM	

+="CN65359"	"AVIS charges September 07 less non-ABS transaction for Hutson taken off after investigations by Astrid Boore(rep) see credit note. 13/11/07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Sep-07	30-Sep-07	14962.05	=""	="Avis Australia"	13-Mar-08 03:36 PM	

+="CN65360"	"consultancy services for review of 2008 Year Book Australia."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	01-Oct-07	30-Jun-08	32285.00	=""	="Green, Robin P"	13-Mar-08 03:36 PM	

+="CN65361"	"C/no: 88; health assessments, OHAS exams & psych tests - Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Comprehensive health services"	01-Oct-07	30-Jun-08	10081.95	=""	="Health Services Australia"	13-Mar-08 03:36 PM	

+="CN65362"	"NSW office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	19134.38	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65363"	"Vic office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	14645.03	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65364"	"CO/ACT office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	16165.15	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65373"	"Vic postal charges for Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Mail and cargo transport"	04-Oct-07	30-Jun-08	12949.76	=""	="Australia Post"	13-Mar-08 03:38 PM	

+="CN65374"	"NSW office postal services, Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Mail and cargo transport"	04-Oct-07	30-Jun-08	102677.85	=""	="Australia Post"	13-Mar-08 03:38 PM	

+="CN65370"	"Various Parts - ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	18-Jul-08	39476.84	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 03:38 PM	

+="CN65376"	"workers comp adjustments, 2006/07."	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	08-Oct-07	30-Jun-08	131074.00	=""	="Comcare Australia"	13-Mar-08 03:38 PM	

+="CN65377"	"CSS/PSS actuarial & associated costs"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Jun-08	16000.00	=""	="Dept Finance & Administration"	13-Mar-08 03:38 PM	

+="CN65378"	"longtitudinal change for teashers & students."	="Australian Bureau of Statistics"	13-Mar-08	="Education and Training Services"	10-Oct-07	30-Jun-08	43419.20	=""	="University Of Tasmania"	13-Mar-08 03:39 PM	

+="CN65379"	"TEL SQL svr std Lic +SA; powerpoint"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	15-Oct-07	30-Jun-08	20740.84	=""	="Data#3 Group"	13-Mar-08 03:39 PM	

+="CN65380"	"print ABS annual report."	="Australian Bureau of Statistics"	13-Mar-08	="Printed media"	15-Oct-07	30-Jun-08	15129.40	=""	="Rtm Pty Ltd"	13-Mar-08 03:39 PM	

+="CN65381"	"state offices connect seats"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	16-Oct-07	30-Jun-08	23712.15	=""	="Reed Construction Data"	13-Mar-08 03:39 PM	

+="CN65375-A1"	"Provision for Positive Leadership Workshops"	="Department of Immigration and Citizenship"	13-Mar-08	="Employee education"	07-Mar-08	01-Jul-08	12100.00	=""	="Amanda Horne Pty Limited"	13-Mar-08 03:39 PM	

+="CN65382"	"APS Jobs subscription 2007-08"	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	17-Oct-07	30-Jun-08	17442.06	=""	="Aust Public Service Commission"	13-Mar-08 03:39 PM	

+="CN65383"	"24 Sept-19 Oct CFO services, 4wks."	="Australian Bureau of Statistics"	13-Mar-08	="Accounting and auditing"	19-Oct-07	30-Jun-08	20182.80	=""	="Debra Jane Foggin"	13-Mar-08 03:39 PM	

+="CN65384"	"grant for writing research papers for a CAP project."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	19-Oct-07	30-Jun-08	58000.00	=""	="The Academy Of The Social Sciences In Aust"	13-Mar-08 03:39 PM	

+="CN65385"	"100,000 ESDC C4 Reply Paid Envelopes"	="Australian Bureau of Statistics"	13-Mar-08	="Printed media"	24-Oct-07	30-Jun-08	15840.00	=""	="Canprint Communications"	13-Mar-08 03:40 PM	

+="CN65386"	"statistical consultancy for SDSB."	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	24-Oct-07	30-Jun-08	12375.00	=""	="Queensland University Of Technology"	13-Mar-08 03:40 PM	

+="CN65387"	"Library licence"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	28-Oct-07	27-Oct-08	63016.80	=""	="Skillsoff"	13-Mar-08 03:40 PM	

+="CN65388"	"BOISE:OCT-2007"	="Australian Bureau of Statistics"	13-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Oct-07	30-Jun-08	56708.54	=""	="Boise Cascade Office Products"	13-Mar-08 03:40 PM	

+="CN65389-A1"	"Consulting services."	="Australian Bureau of Statistics"	13-Mar-08	="Accounting and auditing"	31-Oct-07	30-Jun-08	11180.10	=""	="Resolution Consulting Services"	13-Mar-08 03:40 PM	

+="CN65390"	"NSW vehicle lease costs for November 2007"	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Nov-07	30-Nov-07	21097.18	=""	="Lease Plan"	13-Mar-08 03:40 PM	

+="CN65395-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	55044.00	=""	="C.T.M. Refridgeration & Airconditioning Pty. Ltd."	13-Mar-08 04:07 PM	

+="CN65396-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	16378.00	=""	="Wolpers Grahl Pty Limited"	13-Mar-08 04:13 PM	

+="CN65397-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	11418.00	=""	="A & J Bilske Pty Ltd"	13-Mar-08 04:17 PM	

+="CN65398-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Aug-07	31-Dec-08	53416.00	=""	="Security & Technology Services (NT) Pty Ltd"	13-Mar-08 04:22 PM	

+="CN65400-A1"	" Provision for Facilities Maintenance Services "	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	67929.00	=""	="TSC (Aust) Pty. Ltd."	13-Mar-08 04:27 PM	

+="CN65403"	"Provision of Centarelink Agent Services at Badu Island, Qld"	="Centrelink"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	18003.53	=""	="Badu Island Council"	13-Mar-08 04:43 PM	

+="CN65406"	"Applications Development - Executive Diary"	="Department of the Prime Minister and Cabinet"	13-Mar-08	="Application programming services"	11-Feb-08	02-May-08	46200.00	=""	="APA Management"	13-Mar-08 05:15 PM	

+="CN65407-A2"	"Applications Development (Stage 3)"	="Department of the Prime Minister and Cabinet"	13-Mar-08	="Application programming services"	02-Jan-08	30-Jun-08	124880.00	=""	="One Planet"	13-Mar-08 05:20 PM	

+="CN65408"	"SYNTHESIZER, ELECTRIC, EQUIPMENT - QTY 13."	="Defence Materiel Organisation"	13-Mar-08	="Musical Instruments and parts and accessories"	22-Oct-07	11-Dec-07	76839.04	="258056"	="PRO AUDIO SUPPLIES"	13-Mar-08 05:23 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val0to16000.xls
@@ -1,1 +1,295 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68845"	"Tool Kit Hygiene Dutymans"	="Defence Materiel Organisation"	10-Apr-08	="Tool kits"	09-Apr-08	09-May-08	11550.00	=""	="Kentool"	10-Apr-08 07:56 AM	

+="CN68852"	"REPAIRS TO RURAL FIRE TRUCK ARN-31715 W/O-36131 WALLY"	="Department of Defence"	10-Apr-08	="Motor vehicles"	01-Apr-08	30-Jun-08	12667.24	=""	="RGM MAINTENANCE"	10-Apr-08 09:02 AM	

+="CN68858"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	15000.00	=""	="Mr Norman J. O'Bryan"	10-Apr-08 09:43 AM	

+="CN68863"	"Financial Services"	="Workplace Authority"	10-Apr-08	="Re financing services"	05-Mar-08	30-Jun-08	11000.00	=""	="KPMG (CANBERRA)"	10-Apr-08 10:01 AM	

+="CN68743"	"Provision of 4 x HP NC6400 notebooks and ASIC standard docking station bundles"	="Australian Securities and Investments Commission"	10-Apr-08	="Notebook computers"	01-Oct-07	01-Oct-07	12618.36	=""	="Commander Integrated Networks Pty Ltd"	10-Apr-08 10:13 AM	

+="CN68683"	"Indoor Plants"	="Australian Securities and Investments Commission"	10-Apr-08	="Floral plants"	01-Mar-08	28-Feb-10	11880.00	=""	="Helbray Pty Ltd trading as Custom Tropical Plant Hire"	10-Apr-08 10:17 AM	

+="CN68865"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	10000.00	=""	="Mr Charles Shaw"	10-Apr-08 10:24 AM	

+="CN68875"	"MANUFACTURE LCM8 WELLDECK TARPS"	="Department of Defence"	10-Apr-08	="Commercial marine craft"	31-Mar-08	30-Apr-08	10175.00	=""	="BEEHIVE VINYL PRODUCTS PTY LTD"	10-Apr-08 11:40 AM	

+="CN68877"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	10010.00	=""	="SKF Bearing Supplies"	10-Apr-08 11:51 AM	

+="CN68878"	"qty 500 adapters, antenna to antenna base; qty 100 instructiob plates, qty 500 instruction plates; spares for military communications equipment"	="Defence Materiel Organisation"	10-Apr-08	="Communications Devices and Accessories"	09-Apr-08	23-Jul-08	12936.00	="RFQ-C76122"	="BAE Systems Australia Ltd"	10-Apr-08 11:57 AM	

+="CN68885"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	13273.39	=""	="Rover Australia"	10-Apr-08 12:49 PM	

+="CN68889"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	15628.89	=""	="Rover Australia"	10-Apr-08 01:08 PM	

+="CN68892"	"Transport official visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	21-Jan-08	23-Apr-08	10800.00	=""	="COMCAR"	10-Apr-08 01:32 PM	

+="CN68893"	"PO 23258 Additional Funds"	="Geoscience Australia"	10-Apr-08	="Business and corporate management consultation services"	04-Apr-08	30-Jun-08	14850.00	=""	="Minter Ellison Lawyers"	10-Apr-08 01:44 PM	

+="CN68904"	"Lease of Ricoh 2500 Multi Function Device"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	11-Mar-08	21-Mar-08	10890.00	=""	="Ricoh Australia Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68895"	" Development Approval Assistance "	="National Capital Authority"	10-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	25-Apr-08	15000.00	=""	="4th Dimension Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68912"	"3 sets of freewave radios"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	13-Mar-08	30-Jun-08	10653.06	=""	="Control Synergy Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68932"	"26 x ID-TIMS U-Pb zircon analyses"	="Geoscience Australia"	10-Apr-08	="Professional engineering services"	26-Mar-08	31-Mar-08	12456.08	=""	="The University of British Columbia"	10-Apr-08 01:50 PM	

+="CN68935"	"Wind Damage Costing Module Refinement and Supplementation"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	27-Mar-08	30-Apr-08	14014.00	=""	="Turner & Townsend Pty Ltd"	10-Apr-08 01:50 PM	

+="CN68943"	"RADARSAT Satellite data."	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	28-Mar-08	30-Jun-08	15000.00	=""	="Macdonald Dettwiler and Associates Ltd MDA"	10-Apr-08 01:51 PM	

+="CN68945"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	17-Feb-08	23-Feb-08	13800.00	=""	="COMCAR"	10-Apr-08 01:55 PM	

+="CN68949"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Grounds maintenance services"	25-Feb-08	26-Mar-08	11683.68	=""	="Trim Lawns & Complete Garden Services"	10-Apr-08 02:06 PM	

+="CN68950-A2"	"Professional Services"	="Workplace Authority"	10-Apr-08	="Business and corporate management consultation services"	07-Feb-08	07-Feb-08	15781.70	=""	="HBA Consulting"	10-Apr-08 02:09 PM	

+="CN68955"	"Relocation of staff"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	15-Feb-08	15106.25	="0708-882"	="Chris Bell & Bell Removals"	10-Apr-08 02:15 PM	

+="CN68958"	"Advertising material"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	24-Jan-08	28-Feb-08	11584.07	="0708-893"	="National Mailing & Marketing P/L"	10-Apr-08 02:15 PM	

+="CN68959"	"Legal Services fees - National Lifestyle Villages"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Legal services"	24-Jan-08	29-Feb-08	14736.15	=""	="Australian Government Solicitor"	10-Apr-08 02:16 PM	

+="CN68954"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Grounds maintenance services"	01-Feb-08	29-Feb-08	10042.40	=""	="Ian Spencer - VIP Homes Services"	10-Apr-08 02:16 PM	

+="CN68963"	"Advertising Services for the Call for Public Submissions"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	22-Jan-08	30-Jun-08	12834.01	="0708-923"	="HMA Blaze Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68968"	"Enagement of Stratsec to undertake Threat Risk Ass Online Integrated Travel Solution"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	22-Jan-08	31-Jan-08	11800.00	="0708-809"	="Stratsec.Net Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68969"	"Feral animals on SA Islands agreement"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	13860.00	="0708-607"	="Department For The Environment"	10-Apr-08 02:17 PM	

+="CN68976"	"Design of SSD Office extension"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="General building construction"	25-Jan-08	30-Mar-08	14075.93	="0708-908"	="RND Architects Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68979"	"Advertising services for employee vacancy"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	16-Jan-08	31-Jan-08	10831.22	="0708-852"	="HMA Blaze Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68981"	"Australian Heritage Database work"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	10000.00	="0708-812"	="Toldark Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68982"	"ABRS Honours Scholarship 208-H07"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-866"	="University of Sydney"	10-Apr-08 02:19 PM	

+="CN68983"	"ABRS Honours Scholarship 208-H09"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-860"	="University of Western Australia"	10-Apr-08 02:19 PM	

+="CN68984"	"ABRS Honours Scholarship 208-H08"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-859"	="Australian National University"	10-Apr-08 02:19 PM	

+="CN68985"	"ABRS Honours Scholarship 208-H06"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-858"	="University of Wollongong"	10-Apr-08 02:19 PM	

+="CN68986"	"ABRS Honours Scholarship 208-H05"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-857"	="University of Wollongong"	10-Apr-08 02:19 PM	

+="CN68988"	"ABRS Honours Scholarship 208-H04"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-856"	="The University of Queensland"	10-Apr-08 02:19 PM	

+="CN68989"	"ABRS Honours Scholarship 208-H03"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-Dec-08	11000.00	="0708-855"	="Queensland University of Technology"	10-Apr-08 02:20 PM	

+="CN68987"	" Passenger and Transportf "	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	14-Nov-07	23-Nov-07	13058.07	=""	="COMCAR"	10-Apr-08 02:20 PM	

+="CN68993"	"New Australian Faunal Directory: Scrutiny, correction andediting of transferred Platypus file"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	18-Jan-08	30-May-08	14300.00	="0708-847"	="Eclipse Systems Pty Ltd"	10-Apr-08 02:20 PM	

+="CN68998"	"Text Contribution for the Inspirational Landscape Publication"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	16-Jan-08	30-May-08	13000.00	="0708-712"	="Context Pty Ltd"	10-Apr-08 02:21 PM	

+="CN69004"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	01-Feb-08	29-Apr-08	13345.60	=""	="COMCAR"	10-Apr-08 02:24 PM	

+="CN69022"	"Provision of services of traditional owner transportation, catering and administration"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	20-Feb-08	21-Feb-08	10000.00	="0708-1016"	="Kimberley Land Council"	10-Apr-08 03:12 PM	

+="CN69032-A1"	"Provision of monitoring and evaluation services for the Environmental Stewardship Programme"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	18-Feb-08	10160.00	="0708-0474"	="Clear Horizon Consulting Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69033"	"Venue Services for a Facilitator Forum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Hotels and lodging and meeting facilities"	18-Feb-08	25-Mar-08	15000.00	="0708-1013"	="Fountaindale Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69031"	"Computer Software"	="Workplace Authority"	10-Apr-08	="Software"	20-Dec-07	30-Jun-08	13662.00	=""	="City Software Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69038"	"Contractor for Program Administrator"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Human resources services"	15-Feb-08	18-Apr-08	13695.00	="0708-1001"	="Kowalski Recruitment"	10-Apr-08 03:14 PM	

+="CN69039"	"Production of a communication strategy on Marine Protected Areas Management"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	15-Mar-08	10750.00	="0708-693"	="Beyond PR"	10-Apr-08 03:14 PM	

+="CN69041"	"Supply and installation of fibre optic cabling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Feb-08	31-Mar-08	14945.70	="0708-1083"	="MRB Communications Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69043"	"Advice on ecological effects of removal of snags from the Murray river"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	28-Feb-08	31-Mar-08	10485.92	="0708-586"	="Harris Research Pty Ltd"	10-Apr-08 03:15 PM	

+="CN69048"	"Marketing Materials"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	15-Mar-08	13350.00	="0708-056"	="Kaye Kessing Productions"	10-Apr-08 03:15 PM	

+="CN69057"	"Advertisement of several positions vacant"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	26-Feb-08	31-Mar-08	12420.87	="0708-1040"	="HMA Blaze Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69060"	"Facilitation of national monitoring evaluation and reporting conference"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	25-Feb-08	20-Jun-08	13200.00	="0708-1056"	="Possibilities Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69082"	"Australian Marine Conservation Society workshop Kimberely Marine and Coastal Scientific Forum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Education and Training Services"	16-Jan-08	11-Feb-08	10000.00	=""	="Australian Marine Conservation"	10-Apr-08 03:20 PM	

+="CN69085"	"Supply and install of fibre optic cabling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Feb-08	29-Feb-08	13445.30	="0708-991"	="MRB Communications Pty Ltd"	10-Apr-08 03:21 PM	

+="CN69094"	"Australia Post Account for January 2008"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Transportation and Storage and Mail Services"	12-Feb-08	12-Feb-08	15033.77	="0708-968"	="Australia Post"	10-Apr-08 03:22 PM	

+="CN69103"	"Chemical Assessment Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental protection"	04-Jan-08	30-Jun-08	14520.00	="0708-816"	="Australian Environment"	10-Apr-08 03:23 PM	

+="CN69111"	"Publications of WR Act and Regs"	="Workplace Authority"	10-Apr-08	="Printed publications"	25-Jan-08	25-Jan-08	13178.00	=""	="Canprint Communications Pty Ltd"	10-Apr-08 03:43 PM	

+="CN69189"	"NTRO Phone charges rantal Apr 08 Call Feb 08"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	18-Mar-08	31-May-08	13759.04	=""	="Telstra  (ID No. 740)"	10-Apr-08 03:58 PM	

+="CN69194"	"Furniture for Capital Jet Building"	="Bureau of Meteorology"	10-Apr-08	="Furniture and Furnishings"	25-Mar-08	31-Mar-08	12488.28	=""	="Planex Sales Pty Ltd"	10-Apr-08 03:58 PM	

+="CN69203"	"Professional services - Centenary Activities"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	31-Mar-08	15950.00	=""	="Prose Media"	10-Apr-08 04:00 PM	

+="CN69204"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	02-Apr-08	30-Apr-08	11985.01	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69208"	"VEHICLE LEASES APRIL  2008"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	01-Apr-08	15-Apr-08	13107.95	=""	="Leaseplan Australia"	10-Apr-08 04:00 PM	

+="CN69212"	"Car Lease Costs"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	03-Apr-08	03-Apr-08	13326.83	=""	="Leaseplan Australia"	10-Apr-08 04:01 PM	

+="CN69151"	"Legal Services"	="Workplace Authority"	10-Apr-08	="Legal services"	25-Jan-08	25-Jan-08	10179.01	=""	="Australian Government Solicitors (ACT)"	10-Apr-08 04:03 PM	

+="CN69243"	"SHIPPING AND STORAGE CONTAINERS"	="Defence Materiel Organisation"	10-Apr-08	="Storage chests and cabinets and trunks"	25-Jan-08	10-Mar-08	12903.00	=""	="TRIMCAST"	10-Apr-08 04:47 PM	

+="CN69247"	"Removalist Services"	="Workplace Authority"	10-Apr-08	="Accommodation furniture"	19-Dec-07	10-Jan-08	11224.36	=""	="Chess Hanley's Moving"	10-Apr-08 04:52 PM	

+="CN69252-A1"	"Valuation services"	="Australian Securities and Investments Commission"	11-Apr-08	="Property management services"	21-Jan-08	30-Jun-08	10000.00	=""	="Christie Whyte Moore (CMW)"	11-Apr-08 09:07 AM	

+="CN69254"	" paint to landrover arn-48623 ed w/o-36333/2 "	="Department of Defence"	11-Apr-08	="Motor vehicles"	11-Apr-08	13-Jun-08	10617.75	=""	="TOWNSVILLE INDUSTRIAL COATING"	11-Apr-08 09:21 AM	

+="CN69264"	"Design of Office Extension"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="General building construction"	19-Mar-08	30-Jun-08	11764.50	="0708-908"	="RND Architects Pty Ltd"	11-Apr-08 09:23 AM	

+="CN69276"	"Field testing the Conservation Value Measure of the Environmental Stewardship Program"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Apr-08	11550.00	="0708-1028"	="Regeneration Solutions"	11-Apr-08 09:24 AM	

+="CN69279"	"Department sponsorship for AELERT conference"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Marketing and distribution"	18-Mar-08	31-Mar-08	10000.00	="0708-1124"	="aelert conference"	11-Apr-08 09:25 AM	

+="CN69288"	"Advertising Services for Water Efficiency Standards Scheme"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	31-Mar-08	04-Apr-08	10212.73	="0708-1154"	="HMA Blaze Pty Ltd"	11-Apr-08 09:26 AM	

+="CN69290-A1"	"Measurement Assurance Infrastructure for Non-Urban Water Metering"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	31-Mar-08	30-Jun-08	13750.00	="0708-682"	="DEPARTMENT OF INNOVATION INDUSTRY"	11-Apr-08 09:26 AM	

+="CN69292"	"Relocation Services of household goods"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	31-Mar-08	13647.55	="0708-1144"	="Toll Transitions"	11-Apr-08 09:27 AM	

+="CN69295"	"Conservation advices for an Act listed threatened species"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Engineering and Research and Technology Based Services"	20-Mar-08	25-Jun-08	14400.00	="0708-1064"	="CSIRO Accounts Receivable"	11-Apr-08 09:27 AM	

+="CN69297"	"Museum data access Services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information services"	25-Mar-08	30-May-08	11228.80	="0708-1007"	="Western Ausralia Museum"	11-Apr-08 09:27 AM	

+="CN69298"	"Expert Advice and Services relating to activities of the renewable Energy and Generation Task Force"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	31-Mar-08	15000.00	="0708-461"	="Gerry Morvell"	11-Apr-08 09:27 AM	

+="CN69304"	"Recruitment Advertising"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Advertising"	26-Mar-08	31-Mar-08	15465.65	=""	="HMA Blaze Pty Ltd"	11-Apr-08 09:28 AM	

+="CN69316"	"Reimburse Airfares - International Participants 2008 AustraliaSouth Africa Climate Change P/ship"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="International relations"	11-Mar-08	31-Mar-08	11000.00	=""	="Gondwana Environmental Solutions"	11-Apr-08 09:30 AM	

+="CN69318"	"Office Furniture for Office Building"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Accommodation furniture"	03-Mar-08	07-Mar-08	10099.10	="0708-518"	="Workspace Commercial Furniture"	11-Apr-08 09:30 AM	

+="CN69320"	"Editorial and Design Services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	03-Mar-08	09-May-08	15207.50	="0780-1046"	="Imaginocean Productions"	11-Apr-08 09:30 AM	

+="CN69324"	"Legislative drafting of National Environment Protection Measure for tyres"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Legal services"	05-Mar-08	07-Mar-08	14047.00	="0708-1111"	="Attorney General's Department"	11-Apr-08 09:31 AM	

+="CN69335"	"Review of National Pollutant Inventory Emission Estimation Technique Manuals for Chemical Industri"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	22-Mar-08	15950.00	="0708-1036"	="Connell Wanger"	11-Apr-08 09:33 AM	

+="CN69338"	"Monthly Blackberry Charges"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	30-Apr-08	10181.84	="0708-1117"	="Telstra Corporation Limited"	11-Apr-08 09:33 AM	

+="CN69347"	"Labratory Incubator & Accessories"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Environmental management"	11-Mar-08	30-Jun-08	10717.00	="0708-924"	="Laboratory Equipment Pty Ltd"	11-Apr-08 09:34 AM	

+="CN69352"	"Printing Services for Promotional Materials"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Printing and publishing equipment"	12-Mar-08	30-Mar-08	11806.19	=""	="Paragon Printers Australasia"	11-Apr-08 09:35 AM	

+="CN69359-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	19-Feb-08	30-Jun-08	10000.00	=""	="Mr Robertson Wright SC"	11-Apr-08 11:29 AM	

+="CN69364"	"Carpetlaying and floor covering services Contract (DPS04145 )"	="Department of Parliamentary Services"	11-Apr-08	="Carpeting"	27-Mar-08	05-May-08	10697.50	=""	="Chesta's Floors"	11-Apr-08 11:40 AM	

+="CN69396"	"BLASER TACTICAL 2 RIFLE AND SPARES"	="Defence Materiel Organisation"	11-Apr-08	="Light weapons and ammunition"	03-Aug-07	01-Feb-08	15741.53	=""	="XTEK"	11-Apr-08 01:06 PM	

+="CN69392"	"Labour for hire - training"	="Australian Securities and Investments Commission"	11-Apr-08	="Education and Training Services"	10-Apr-08	20-May-08	11750.00	=""	="Joseph Woods, t/a Elite Training Services"	11-Apr-08 01:27 PM	

+="CN69414"	"SPACER, RING - 5365/005808599"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	26-Mar-08	10-Apr-08	12459.00	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 02:00 PM	

+="CN69429"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	30-Jan-08	30-Jun-08	15000.00	=""	="Mr Geoff Abbott"	11-Apr-08 04:21 PM	

+="CN69431"	"SUPPLY OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	11-Apr-08	="Motor vehicles"	10-Apr-08	09-May-08	14765.91	=""	="VOLVO COMMERCIAL VEHICLES"	11-Apr-08 04:30 PM	

+="CN69435"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	13777.08	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 01:50 PM	

+="CN69437"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	11269.20	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 01:55 PM	

+="CN69442"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	11664.95	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:06 PM	

+="CN69440"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	11108.30	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:09 PM	

+="CN69447"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	13715.02	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:27 PM	

+="CN69448"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	10484.74	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:31 PM	

+="CN69476"	"DENTAL ASSISTANT SERVICES FOR HC-CERBERUS FY04/05, FY05/06, FY06/07  PAYMENT $1,061.16/WEEK"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	13750.00	=""	="CLEMENTS RECRUITMENT PTY LTD"	12-Apr-08 03:01 PM	

+="CN69478"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	08-Apr-08	30-Jun-08	11000.00	=""	="RED ALLIANCE PTY LTD"	12-Apr-08 03:02 PM	

+="CN69483"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	13200.00	=""	="SARAH ROY"	12-Apr-08 03:02 PM	

+="CN69486"	"Provision of medical services by general practitioneer"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	12834.41	=""	="PUCILOWSKI NOMINEES PTY LTD"	12-Apr-08 03:03 PM	

+="CN69495"	"CHP PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	13200.00	=""	="PROTON 100 PTY LTD"	12-Apr-08 03:04 PM	

+="CN69509"	"CONSULTANCY FOR HERITAGE COMMITTEE"	="Department of Defence"	12-Apr-08	="Management advisory services"	17-Dec-07	30-Jun-08	11165.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 03:06 PM	

+="CN69515"	"CHP"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	14135.00	=""	="DR MICHAEL TUCH"	12-Apr-08 03:07 PM	

+="CN69517"	"FURTHER CHARACTERISATION INVESTIGATIONS AND SOURCE ZONE PRACTICABILITY REVIEW - ADI MULWALA"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Feb-08	30-Jun-08	14026.26	=""	="THALES AUSTRALIA"	12-Apr-08 03:07 PM	

+="CN69522"	"DSTO EDINBURGH: COUNTERMINE FACILITY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	11000.00	=""	="THINC PROJECTS (SA/NT) PTY LTD"	12-Apr-08 03:08 PM	

+="CN69523"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	12707.55	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:08 PM	

+="CN69531"	"ROBERTSON BARRACKS - 1ST AVIATION REGIMENT RELOCATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	12161.46	=""	="JOHN HOLLAND CONSTRUCTIONS PTY LTD"	12-Apr-08 03:09 PM	

+="CN69539"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	29-May-08	11008.80	=""	="CANDLE AUSTRALIA LIMITED"	12-Apr-08 03:10 PM	

+="CN69554"	"VEHICLE LEASE FY06/07"	="Department of Defence"	12-Apr-08	="Tools and General Machinery"	22-Nov-07	30-Jun-08	14520.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 03:12 PM	

+="CN69560"	"Qinetiq letter PROJECT ORPHEUS - On board risk,"	="Department of Defence"	12-Apr-08	="Computer services"	12-Nov-07	14-Feb-08	12507.60	=""	="QINETIQ"	12-Apr-08 03:13 PM	

+="CN69563"	"Darwin Naval Base - Patrol Boat Facilities"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11408.53	=""	="MKEA ARCHITECTS PTY LTD"	12-Apr-08 03:14 PM	

+="CN69569"	"Develop & Implementation of weed control plans for properties within Central & Northern NSW"	="Department of Defence"	12-Apr-08	="Community and social services"	20-Nov-07	30-Jun-08	10550.01	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:14 PM	

+="CN69579"	"IAD BRANCH - STATIONARY SUPPLIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-Apr-08 03:16 PM	

+="CN69583"	"Provide construction and contract administrative services for Bldg 114 Refurbishment Lav Bks"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	14399.00	=""	="SPOTLESS"	12-Apr-08 03:16 PM	

+="CN69598"	"EDN PKS - PROJECT MANAGEMENT - ENVIRONMENTAL SITE CLEARANCE STAGE 7, 11A, 11B"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	11000.00	=""	="PARSONS BRINCKERHOFF"	12-Apr-08 03:19 PM	

+="CN69601"	"Regional Vegitation Management"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	12271.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:19 PM	

+="CN69633"	"CLEANING FOR UNIT ON SWAN ISLAND"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	15400.00	=""	="CLEANER IMAGE PTY LTD"	12-Apr-08 03:23 PM	

+="CN69635"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	12000.00	=""	="ROBERT GRAY"	12-Apr-08 03:23 PM	

+="CN69638"	"UTILITIES - ARMY PERSONNEL MARRIED QUARTERS NHULUNBUY 06-07"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	30-Jun-08	15711.71	=""	="NHULUNBUY CORPORATION LTD"	12-Apr-08 03:24 PM	

+="CN69639"	"CONSTRUCTION WORK"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	13348.50	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	12-Apr-08 03:24 PM	

+="CN69646"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	22-Nov-07	13000.00	=""	="ROUNA MACNIVEN"	12-Apr-08 03:25 PM	

+="CN69649"	"PATHOLOGY FOR HCW MEMBERS HEALTH CENTRE WILLIAMS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jul-08	11000.00	=""	="DOREVITCH PATHOLOGY"	12-Apr-08 03:25 PM	

+="CN69653"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	13200.00	=""	="CEO COLLEGIATES PTY LTD"	12-Apr-08 03:26 PM	

+="CN69674"	"SA2033 DSTO-E"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	11676.50	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:28 PM	

+="CN69687"	"design 24 Fairbairn Ave ACT"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Dec-07	30-Jun-08	14750.36	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:30 PM	

+="CN69689"	"MANAGEMENT IMPLICATIONS OF POINT COOK NHL LISTING"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	30-Jun-08	13332.00	=""	="ENVIRONMENTAL RESOURCES"	12-Apr-08 03:30 PM	

+="CN69702"	"HEALTH SERVICE RICHMOND"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	19-Dec-07	31-Dec-07	15364.58	=""	="RED ALLIANCE PTY LTD"	12-Apr-08 03:32 PM	

+="CN69703"	"STORM WATER MGMT PLAN HMAS ALBATROSS"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	18-Dec-07	30-Jun-08	10000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:32 PM	

+="CN69716"	"SAP Financial Sytems Access-control Developer"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	31-Jan-08	15592.50	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 03:34 PM	

+="CN69723"	"GI-S Refurbishment of Capt Cook Dry Dock Caisson No1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	10769.70	=""	="THALES AUSTRALIA"	12-Apr-08 03:35 PM	

+="CN69770"	"TESTING & TAGGING OF ELECTRICAL EQUIP FOR WSD"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Nov-07	14300.00	=""	="TESTEL AUSTRALIA PTY LTD"	12-Apr-08 03:41 PM	

+="CN69777"	"ROBERTSON BARRACKS MTR REPAIR RANGE FENCE"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	28-Mar-08	30-Jun-08	15343.91	=""	="G H D PTY LTD"	12-Apr-08 03:42 PM	

+="CN69781"	"WESTERN STREET ROCKHAMPTON REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Jun-08	10544.23	=""	="GHD PTY LTD"	12-Apr-08 03:42 PM	

+="CN69825"	"MED APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	10450.00	=""	="AIR LIQUIDE HEALTHCARE"	12-Apr-08 03:45 PM	

+="CN69827"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	06-Dec-07	30-Jun-08	10164.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 03:45 PM	

+="CN69829"	"Flora & Fauna Management"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	12987.91	=""	="SPOTLESS"	12-Apr-08 03:46 PM	

+="CN69834"	"BULK ORDER: SUPPLY OF STEEL TO HMAS CAIRNS"	="Defence Materiel Organisation"	12-Apr-08	="Metal and mineral industries"	17-Dec-07	31-May-08	11000.00	=""	="TONKIN STEEL"	12-Apr-08 03:46 PM	

+="CN69845"	"FEES FOR FILING NEW & MAINTAINING ONGOING PATENT APPLICATIONS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	21-Dec-07	10300.00	=""	="GRIFFITH HACK"	12-Apr-08 03:47 PM	

+="CN69858"	"LEASE OF VEHICLE VIA STANDING OFFER"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	31-Dec-08	14050.06	=""	="LEASEPLAN"	12-Apr-08 03:48 PM	

+="CN69862"	"RPLSS TASK 05/06-117 Update HMAS Sydney Drawing Deck"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Apr-08	10849.92	=""	="THALES AUSTRALIA"	12-Apr-08 03:48 PM	

+="CN69874"	"50 CAL READY USE LOCKER"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	15375.80	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:49 PM	

+="CN69876"	"Professional Service Provider for Engineering Manager"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11175.27	=""	="NOVA DEFENCE"	12-Apr-08 03:49 PM	

+="CN69879"	"Stationery Equipment"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	11000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-Apr-08 03:49 PM	

+="CN69887"	"Travel"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	15450.00	=""	="QANTAS AIRWAYS LTD"	12-Apr-08 03:50 PM	

+="CN69899"	"TONER CARTRIDGES"	="Department of Defence"	12-Apr-08	="Office machines and their supplies and accessories"	12-Nov-07	30-Jun-08	11000.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	12-Apr-08 03:50 PM	

+="CN69908"	"MCS PSP CONTRACT SUPPORT FOR THE SHIP RENEWAL PROJECT."	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Dec-07	11935.88	=""	="SYPAQ SYSTEMS PTY LTD"	12-Apr-08 03:51 PM	

+="CN69915"	"TOLL CHARGES FY07/08"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	11935.68	=""	="INTERLINK ROADS PTY LTD"	12-Apr-08 03:52 PM	

+="CN69938"	"Aero Product Packaging"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	01-Apr-08	13020.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-Apr-08 03:53 PM	

+="CN69951"	"TOLL CHARGES FY07/08"	="Department of Defence"	12-Apr-08	="Transport operations"	27-Nov-07	30-Jun-08	11450.00	=""	="INTERLINK ROADS PTY LTD"	12-Apr-08 03:54 PM	

+="CN69953"	"TECHNICAL ADVISER FOR RAAF BASE LEARMONTH REM"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	11843.70	=""	="ENSR AUSTRALIA PTY LIMITED"	12-Apr-08 03:54 PM	

+="CN69962"	"Made to Measure Flyers Clothing, DPCU and Sage Green"	="Defence Materiel Organisation"	12-Apr-08	="Clothing"	09-Jan-08	30-Jun-08	15400.00	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Apr-08 03:55 PM	

+="CN69974"	"TD140 DMS SDR INVESTIGATION PHASE 2"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	05-Mar-08	12411.23	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:56 PM	

+="CN69985"	"EXTRA HIGH PRESSURE CYLINDER MAINTENANCE"	="Department of Defence"	12-Apr-08	="Gaseous fuels and additives"	12-Nov-07	30-Jun-08	10769.64	=""	="BOC LIMITED"	12-Apr-08 03:56 PM	

+="CN69990"	"Provision of a GSE Logistician"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	13-Dec-07	13974.54	=""	="BALL SOLUTIONS GROUP PTY LTD"	12-Apr-08 03:57 PM	

+="CN69992"	"Task 04/2006 Engineering Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jul-09	13000.90	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 03:57 PM	

+="CN69993"	"SUPPLY OF AIRCRAFT GASES"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Jun-08	11000.00	=""	="BOC LIMITED"	12-Apr-08 03:57 PM	

+="CN69998"	"Project car leased through Leaseplan."	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	10218.11	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 03:57 PM	

+="CN69999"	"FREIGHT SERVICES"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	11000.00	=""	="TOLL PRIORITY"	12-Apr-08 03:57 PM	

+="CN70009"	"MAIL SERVICE - LEEUWIN BKS FY 07/08"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	11000.00	=""	="TOLL PRIORITY"	12-Apr-08 03:58 PM	

+="CN70011"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	06-Dec-07	30-Jun-08	13429.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 03:58 PM	

+="CN70012"	"Rantewss Equipment Modifications for the FFG Class Phase 2"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	28-Feb-08	12640.10	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-Apr-08 03:58 PM	

+="CN70020"	"INSTALLATION OF CCP/ANZSPO/00475/2002 ON HMAS TOOWOOMBA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	13759.37	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:59 PM	

+="CN70023"	"WORK STATION ASSESSMENT & OCCUPATIONAL THERAPY SERVICES"	="Department of Defence"	12-Apr-08	="Live Plant and Animal Material and Accessories and Supplies"	12-Nov-07	30-Jun-08	11000.00	=""	="NANCY STEPHENSON & ASSOCIATES"	12-Apr-08 03:59 PM	

+="CN70025"	"FREIGHT SERVICES"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	14300.00	=""	="TNT EXPRESS"	12-Apr-08 03:59 PM	

+="CN70067"	"SUPPLY OF BREAD & BREAD ROLLS TO ROBERTSON BARRACKS FY 07/08"	="Department of Defence"	12-Apr-08	="Bread and bakery products"	13-Mar-08	30-Jun-08	10000.00	=""	="DARWIN BAKERY PTY LTD"	12-Apr-08 04:02 PM	

+="CN70069"	"SUPPLY OF POST MIX TO ROBERTSON BARRACKS FY 07-08"	="Department of Defence"	12-Apr-08	="Beverages"	10-Jan-08	30-Jun-08	13800.00	=""	="CADBURY SCHWEPPES PTY LTD"	12-Apr-08 04:02 PM	

+="CN70075"	"Travel"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	15000.00	=""	="QANTAS AIRWAYS LTD"	12-Apr-08 04:03 PM	

+="CN70093"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	16-Jan-08	30-Jun-08	10000.00	=""	="C J PEADY"	12-Apr-08 04:04 PM	

+="CN70095"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	27-Nov-07	30-Jun-08	15000.00	=""	="G LLOYD"	12-Apr-08 04:04 PM	

+="CN70096"	"Repair of Ground Laser Target Designator"	="Defence Materiel Organisation"	12-Apr-08	="Manufacture of electrical goods and precision instruments"	12-Nov-07	28-Apr-08	12996.72	=""	="MILSPEC SERVICES PTY LTD"	12-Apr-08 04:04 PM	

+="CN70113"	"Hire of forklifts for Defence Establishement Berrimah, FY 2007/2008"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	11000.00	=""	="HYSTER SOUTH"	12-Apr-08 04:05 PM	

+="CN70115"	"DEFENCE HERITAGE PANEL ADVISORY SERVICE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	11000.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	12-Apr-08 04:05 PM	

+="CN70120"	"Navy Minor Project 1894"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	12100.00	=""	="DAVID MIERS & ASSOCIATES"	12-Apr-08 04:06 PM	

+="CN70125"	"AIR 6000 PH 2A/2B - New Air Combat Capability"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Jun-08	14823.60	=""	="SKM"	12-Apr-08 04:06 PM	

+="CN70140"	"Communication cables"	="Defence Materiel Organisation"	12-Apr-08	="Telecommunications media services"	12-Nov-07	01-Apr-08	11000.00	=""	="TELSTRA BILLING"	12-Apr-08 04:07 PM	

+="CN70160"	"gas bottle stowage on hydrographic ships"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-May-08	14303.63	=""	="AIMTEK PTY LTD"	12-Apr-08 04:09 PM	

+="CN70162"	"ECPINS INSTALLATION AND INTEGRATION INTO MSA BANDICOOT & WALLAROO"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	07-Mar-08	10675.50	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-Apr-08 04:09 PM	

+="CN70164"	"Maintenance Contract 1801"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-10	10792.72	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:09 PM	

+="CN70189"	"Infrastructure Works."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	10143.38	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:11 PM	

+="CN70200"	"ladder platforms"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	30-Nov-07	10998.08	=""	="NO BOLT OPERATIONS PTY LTD"	12-Apr-08 04:12 PM	

+="CN70203"	"LEGAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-10	12370.34	=""	="MINTER ELLISON"	12-Apr-08 04:12 PM	

+="CN70206"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11302.45	=""	="RAYTHEON AUSTRALIA"	12-Apr-08 04:12 PM	

+="CN70214"	"CART 30MM EOD F2 M2A1 PACK"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	21-Dec-07	14322.73	=""	="THALES AUSTRALIA"	12-Apr-08 04:13 PM	

+="CN70215"	"Upgrade security to Building 501 at RAAF Base Williamtown"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	14-Dec-07	30-Jun-08	10000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 04:13 PM	

+="CN70227"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	14113.33	=""	="OLYMPUS AUST PTY LTD"	12-Apr-08 04:13 PM	

+="CN70236"	"Cart 5.56mm Ball F1 Charger Clip Pack"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	31-Oct-09	14482.76	=""	="THALES AUSTRALIA"	12-Apr-08 04:14 PM	

+="CN70243"	"CONTRACTTOR SERVICES FOR JP2077 PHASE 2D"	="Department of Defence"	12-Apr-08	="Management advisory services"	06-Dec-07	30-Jun-08	13593.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:15 PM	

+="CN70246"	"REPAIR OF F/A-18 HORNET INNER WINGS"	="Defence Materiel Organisation"	12-Apr-08	="Metal and mineral industries"	12-Nov-07	27-Jun-08	12468.21	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 04:15 PM	

+="CN70263"	"SITE EMS MANAGEMENT REVIEW PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	13860.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-Apr-08 04:16 PM	

+="CN70272"	"YE CLASSIFICATION"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Apr-08	11229.90	=""	="LLOYDS REGISTER"	12-Apr-08 04:17 PM	

+="CN70273"	"RECRUITMENT ADVERTISING COSTS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	15950.00	=""	="HMA BLAZE PTY LIMITED"	12-Apr-08 04:17 PM	

+="CN70274"	"AASSPO & FFG NDS Integration Design"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11000.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-Apr-08 04:17 PM	

+="CN70283"	"PRODUCTION AND PRESENTATION REQUIREMENTS"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	11000.00	=""	="VISUAL JAZZ PTY LTD"	12-Apr-08 04:17 PM	

+="CN70307"	"DOCTRINE PUBLICATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11569.66	=""	="NOETIC SOLUTIONS PTY LTD"	12-Apr-08 04:19 PM	

+="CN70313"	"BUSINESS SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	10010.00	=""	="THE PEOPLE COMPANY"	12-Apr-08 04:19 PM	

+="CN70321"	"ADFA &N RMC install water save devices"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	13160.50	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:20 PM	

+="CN70339"	"Sandbalst, Prime and Paint BAK12 Aircraft Arrestor System"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	03-Apr-08	15821.30	=""	="T & M AUTO REPAIRS"	12-Apr-08 04:21 PM	

+="CN70351"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Jan-08	10272.90	=""	="BLANCHARD PERFORMANCE MANAGEMENT"	12-Apr-08 04:22 PM	

+="CN70367"	"DSTO RATIONALISATION PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	14932.50	=""	="ZENITH INTERIORS PTY LTD"	12-Apr-08 04:23 PM	

+="CN70376"	"ASD Tier 2 Contract Module Training"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	12134.29	=""	="DLA PHILLIPS FOX"	12-Apr-08 04:24 PM	

+="CN70379"	"DSTO EDINBURGH - OVER THE HORIZON RADAR SYSTEMS PROGRAM OFFICE ACCOMMDATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	15482.50	=""	="THINC PROJECTS (SA/NT) PTY LTD"	12-Apr-08 04:24 PM	

+="CN70397"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	11442.09	=""	="SPARKE HELMORE LAWYERS"	12-Apr-08 04:25 PM	

+="CN70423"	"Report into Replenishment Procedures"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	10274.80	=""	="VANDEPEER LEADERSHIP CONSULTING"	12-Apr-08 04:27 PM	

+="CN70426"	"Firemaster 607 Blanket"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	04-Dec-07	31-Jan-08	15021.03	=""	="THERMAL CERAMICS AUSTRALIA PTY LTD"	12-Apr-08 04:27 PM	

+="CN70450"	"ENGINEERING ASSEMENTS FOR MSA FIXED FIRE FIGHTING SYSTEM"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	20-Dec-07	30-Jun-08	14784.00	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:29 PM	

+="CN70462"	"Shock Testing"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	21-Dec-07	11154.00	=""	="VIPAC ENGINEERS & SCIENTIST LTD"	12-Apr-08 04:30 PM	

+="CN70470"	"VARIOUS DENTAL CONSUMABLES"	="Defence Materiel Organisation"	12-Apr-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	31-Jan-08	10999.00	=""	="3M AUSTRALIA PTY LTD"	12-Apr-08 04:31 PM	

+="CN70489"	"DS-NQ Regional2007/08 EMS Development & Implementation at several DS-NQ Sites"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	14075.99	=""	="SPOTLESS"	12-Apr-08 04:32 PM	

+="CN70492"	"RECTIFY PO PLANT PLC HMAS MANOORA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Apr-08	14269.20	=""	="FORGACS ENGINEERING PTY LTD"	12-Apr-08 04:32 PM	

+="CN70498"	"PROCUREMENT OF QUANTITY 14 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	30-Apr-08	12739.81	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:32 PM	

+="CN70499"	"FREIGHT COSTS"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	13200.00	=""	="COPE SENSITIVE FREIGHT"	12-Apr-08 04:33 PM	

+="CN70500"	"PROCUREMENT OF QUANTITY 15 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	31-Mar-08	15857.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:33 PM	

+="CN70518"	"Travel funds for Defence personnel to attend Interim Electronic Warfare Training"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	30-Jun-08	10200.00	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:34 PM	

+="CN70522"	"VME RXBE RETENTION RISK MITIGATION"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	31-Aug-08	12763.08	=""	="RLM PTY LTD"	12-Apr-08 04:34 PM	

+="CN70528"	"PLANNED MAINTENANCE SUPPORT FOR MINE SWEEPING DRONE UNITS AND ASSOCIATED EQUIPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	11-Nov-07	03-Mar-08	10898.27	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:35 PM	

+="CN70539"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	13750.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:35 PM	

+="CN70544"	"MSDE CORRECTIVE MAINTENANCE OF THREE DRONE BOATS & ASSOCIATED EQUIPMENT CAPO N260294"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	14211.03	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:36 PM	

+="CN70549"	"SN02516 - R1-6-C zone Upgrade Security Services"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	12474.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:36 PM	

+="CN70550"	"TOB LAN SG2 - URDEF 062"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Apr-08	10453.30	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-Apr-08 04:36 PM	

+="CN70563"	"Installation and Removal of Radar"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	15954.39	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-Apr-08 04:37 PM	

+="CN70566"	"Kiowa Component Repairs"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Nov-07	14913.80	=""	="BOEING AEROSPACE SUPPORT"	12-Apr-08 04:37 PM	

+="CN70567"	"SA2360 Landfill Management Plan"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	10340.11	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:37 PM	

+="CN70575"	"Technical & Engineering support to combine all ADF Flight Recorder interface cables into one tool"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-Mar-08	10450.00	=""	="FLIGHT DATA SYSTEMS PTY LTD"	12-Apr-08 04:38 PM	

+="CN70583"	"INSTRUCTIONAL DESIGNER FOR BCSS PROJECT  CBLP"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	13-Jun-08	15150.00	=""	="VISION TRAINING AUSTRALIA PTY LTD"	12-Apr-08 04:39 PM	

+="CN70601"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	15805.00	=""	="DEACONS"	12-Apr-08 04:40 PM	

+="CN70603"	"Contract 0708-178 Fractographic servces (F-111)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	15749.50	=""	="FORTBURN PTY LTD"	12-Apr-08 04:40 PM	

+="CN70607"	"VEHICLE LEASE"	="Department of Defence"	12-Apr-08	="Motor vehicles"	12-Nov-07	24-Jan-08	10607.30	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:40 PM	

+="CN70609"	"REPLACEMENT AND REPAIRS OF LOCK AND KEYS FOR DRN/DSN EQUIPMENT"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	12-Nov-07	30-Jun-08	11000.00	=""	="MUL-T-SECURITY"	12-Apr-08 04:40 PM	

+="CN70619"	"trials support and capability assessment"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Apr-08	12232.00	=""	="NOVA AEROSPACE"	12-Apr-08 04:41 PM	

+="CN70635"	"Stage 1 Environmental Investigations Kangaroo Flats Training Area, NT/K"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	12147.25	=""	="GHD PTY LTD"	12-Apr-08 04:42 PM	

+="CN70643"	"SASR CT Refurbish Target Sysytems Campbell"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	10957.30	=""	="POLYTRONIC INTERNATIONAL LTD"	12-Apr-08 04:43 PM	

+="CN70648"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	13200.00	=""	="WEST KIMBERLEY FUELS PTY LTD"	12-Apr-08 04:43 PM	

+="CN70650"	"Ship Maintenance"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	02-Jan-08	10348.87	=""	="A NOBLE & SON (NSW) PTY LTD"	12-Apr-08 04:43 PM	

+="CN70663"	"Maintenance and reprogramming"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	12-Nov-07	30-Jun-08	11000.00	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-Apr-08 04:44 PM	

+="CN70678"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 08:04 AM	

+="CN70683"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL ASSY."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 09:13 AM	

+="CN70691"	"4 X HDR-SR7 SONY VIDEO CAMERA, 4 X BATTERY CHARGER 4 X TELECONVERTER, 4 X BATTERIES NPFH100,"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	10062.80	=""	="Nikon On Broadway"	14-Apr-08 09:38 AM	

+="CN70693"	"CONSULTANT FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	07-Apr-08	12498.75	=""	="PM BUSINESS CONSULTING PTY LTD"	14-Apr-08 09:57 AM	

+="CN70695"	"CONTRACTING SERVICES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	12603.00	=""	="SIDNEY WILLIAM HAMMELL"	14-Apr-08 09:58 AM	

+="CN70696"	"VENUE/EQUIPMENT HIRE AND ACCOMODATION AT WORKSHOP VENUE"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	10-Apr-08	10-Apr-08	13709.15	=""	="Crowne Plaza Canberra"	14-Apr-08 09:58 AM	

+="CN70697"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	09-Apr-08	11695.20	=""	="MINTER ELLISON"	14-Apr-08 09:58 AM	

+="CN70698"	"ACCOMMODATION"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	09-Apr-08	14822.00	=""	="NOVOTEL ST KILDA"	14-Apr-08 09:58 AM	

+="CN70700"	"TRAINING"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	08-Apr-08	10472.00	=""	="COGNOS PTY LTD"	14-Apr-08 09:58 AM	

+="CN70702"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	09-Apr-08	15162.46	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70707"	"REcruitment services - Speech writer"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Apr-08	11000.00	=""	="VEDIOR ASIA PACIFIC PTY LIMITED"	14-Apr-08 10:00 AM	

+="CN70708"	"Executive Facilitation Services"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	10502.22	=""	="CAPGEMINI AUSTRALIA PTY LTD"	14-Apr-08 10:07 AM	

+="CN70713"	"Repair & OH of Black Hawk Spindle Assy."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	14479.49	=""	="SAAL"	14-Apr-08 10:53 AM	

+="CN70756"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	15795.77	=""	="Greythorn"	14-Apr-08 12:53 PM	

+="CN70767"	" repairs to 8 x-20' shipping containers "	="Department of Defence"	14-Apr-08	="Containers and storage"	14-Apr-08	20-Jun-08	13522.86	=""	="WILTRADING"	14-Apr-08 01:00 PM	

+="CN70776"	"Postage Services - WA"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	27-Jul-07	30-Jun-08	10555.30	=""	="Australian Post"	14-Apr-08 01:07 PM	

+="CN70782"	"Provision of supply of work stations"	="Australian Federal Police"	14-Apr-08	="Workstations and office packages"	02-Oct-07	15-Dec-07	13068.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:34 PM	

+="CN70787"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	17-Sep-07	04-Dec-07	10777.80	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:45 PM	

+="CN70788"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	03-Oct-07	03-Oct-07	13313.30	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:54 PM	

+="CN70793"	"REPAIRS TO MRV ARN-202864 ON W/O-35919"	="Department of Defence"	14-Apr-08	="Motor vehicles"	14-Apr-08	27-Jun-08	11195.05	=""	="PREMIER TRUCKS NQ"	14-Apr-08 02:10 PM	

+="CN70797"	"Motor Vehicle Parts"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	15745.87	=""	="Volvo Commerical Vehicles"	14-Apr-08 02:20 PM	

+="CN70799"	"Provision of storage of excess furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Mar-07	30-Jul-07	13576.42	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:37 PM	

+="CN70804"	"Fitout - Melbourne Office"	="Workplace Authority"	14-Apr-08	="Property management services"	28-Aug-07	31-Aug-08	13472.80	=""	="Interiors Australia Pty Ltd"	14-Apr-08 03:10 PM	

+="CN70820"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Transportation and Storage and Mail Services"	28-Sep-07	31-Dec-07	10929.02	=""	="AUSTEX LOGISTICS PTY LTD"	14-Apr-08 03:55 PM	

+="CN70827"	"Verisign Premium PKI Certificates"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	24-Jan-08	30-Jun-08	15840.00	="PRN18427"	="VERISIGN AUSTRALIA LIMITED"	14-Apr-08 03:59 PM	

+="CN70828"	"MapInfo and StreetPro License"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	21-Jan-08	30-Jun-08	13798.13	="PRN18330"	="PITNEY BOWES MAPINFO AUSTRALIA PTY"	14-Apr-08 04:00 PM	

+="CN70833"	"labour and parts cost"	="Department of Defence"	14-Apr-08	="Satellites"	14-Apr-08	22-Jul-08	10489.23	=""	="NOVAMARINE INSTRUMENTS"	14-Apr-08 04:02 PM	

+="CN70835"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="PHOENIX BUSINESS COLLEGE"	14-Apr-08 04:02 PM	

+="CN70836"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="JIGSAW TRAINING ACADEMY"	14-Apr-08 04:02 PM	

+="CN70837"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="INTERNATIONAL SECURITY TRAINING"	14-Apr-08 04:02 PM	

+="CN70838"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11550.00	="PRN12579"	="COASTAL and RURAL TRAINING PTY LTD"	14-Apr-08 04:02 PM	

+="CN70839-A2"	"Career Advice Australia State Conference - Darwin"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Trade shows and exhibits"	20-Nov-07	12-Feb-08	10892.85	="PRN16534"	="SKYCITY DARWIN PTY LTD"	14-Apr-08 04:02 PM	

+="CN70840"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="AUSTRAINING BUSINESS INSTITUTE"	14-Apr-08 04:02 PM	

+="CN70841"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11440.00	="PRN12579"	="Integrity Business College"	14-Apr-08 04:03 PM	

+="CN70842"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10450.00	="PRN12579"	="Australian Institute of Applied"	14-Apr-08 04:03 PM	

+="CN70843"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12760.00	="PRN12579"	="Vixen Investments Pty Ltd"	14-Apr-08 04:03 PM	

+="CN70844"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Australian Industry Group Training"	14-Apr-08 04:03 PM	

+="CN70847"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12980.00	="PRN12579"	="SALES PARTNER"	14-Apr-08 04:03 PM	

+="CN70849"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="CONWAL 3 ASSOCIATES"	14-Apr-08 04:04 PM	

+="CN70850-A2"	"2007 Census of Non-Government Schools"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	19-Sep-07	24-Dec-07	15000.00	="PRN16564"	="ROBERT JOHN MESSAGE"	14-Apr-08 04:04 PM	

+="CN70851"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="MAJOR OPERATOR DRIVER TRAINING"	14-Apr-08 04:04 PM	

+="CN70853"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11000.00	="PRN12579"	="AUSTRALIAN INSTITUTE OF FINANCIAL"	14-Apr-08 04:04 PM	

+="CN70854"	"Legal services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	12000.00	=""	="Mr Martin Cuerden"	14-Apr-08 04:09 PM	

+="CN70864"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	02-May-07	30-Jun-07	10752.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70865"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-May-07	30-Jun-07	10212.40	=""	="WOODHEAD PTY LTD"	14-Apr-08 04:27 PM	

+="CN70866"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	04-May-07	30-Jun-07	11726.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	14-Apr-08 04:27 PM	

+="CN70868"	" Printing of: NAT 1908-07.2007 - 'Tax basics for small business' booklet  Qty: 10,000 "	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-Apr-08	22-Apr-08	13148.30	=""	="Paragon Printers"	14-Apr-08 04:29 PM	

+="CN70880"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70884"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Temporary personnel services"	13-Mar-08	13-Mar-08	12540.00	=""	="ASG GROUP LIMITED"	14-Apr-08 04:42 PM	

+="CN70887"	"JOB EVALUATIONS - CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Business and corporate management consultation services"	14-Mar-08	14-Mar-08	12127.50	=""	="MERCER HUMAN RESOURCE CONSULTING PTY LTD"	14-Apr-08 04:42 PM	

+="CN70888"	"SUPPORT AND MAINTENANCE FOR ITSM SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	19-Mar-08	19-Mar-08	12234.20	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:42 PM	

+="CN70907"	"Seminar Delivery"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	29-Oct-07	30-Nov-07	13875.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	14-Apr-08 05:15 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val16000to20000.xls
@@ -1,1 +1,158 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68862-A3"	" Copyright licence fee covering copying of radio and television broadcasts.  The agreement was negotiated by Attorney-General's Department on behalf of the Commonwealth. "	="Australian Taxation Office"	10-Apr-08	="Components for information technology or broadcasting or telecommunications"	05-Dec-07	31-Dec-10	18880.18	=""	="Audio-Visual Copyright Society Limited t/a Screenrights"	10-Apr-08 09:54 AM	

+="CN68870"	"Development of Security Documentation"	="National Capital Authority"	10-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Apr-08	17820.00	=""	="Oakton AA Services Pty Ltd"	10-Apr-08 11:07 AM	

+="CN68873"	"  Provision of Training in   Diploma of Government (Investigations)    Contract Value is GST exempt  "	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	11-Apr-08	16680.00	=""	="KPS and Associates Pty Ltd"	10-Apr-08 11:19 AM	

+="CN68874"	" REPAIR DIVE EQUIPMENT "	="Department of Defence"	10-Apr-08	="Diving instruments or accessories"	01-Apr-08	30-May-08	16998.48	=""	="QUEENSLAND BREATHING SYSTEMS"	10-Apr-08 11:31 AM	

+="CN68881-A1"	"Consultancy Services - Investigation"	="Workplace Authority"	10-Apr-08	="Private investigation services"	04-Mar-08	04-Mar-08	18064.50	=""	="Quality Management Solutions"	10-Apr-08 12:06 PM	

+="CN68882"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	18480.00	=""	="Drawline Fuel PTY LTD"	10-Apr-08 12:12 PM	

+="CN68900"	"I-Expense Oracle Licences and  Support"	="Geoscience Australia"	10-Apr-08	="Software"	07-Mar-08	19-Mar-08	19791.00	=""	="Red Rock Consulting"	10-Apr-08 01:45 PM	

+="CN68901"	"RSA SecureID Authenticator SID700"	="Geoscience Australia"	10-Apr-08	="Software"	07-Mar-08	19-Mar-08	17044.06	=""	="Loop Technology Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68903"	"Reference Data Sets for Tsunami Shoaling"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	11-Mar-08	31-Mar-08	16555.00	=""	="Coastal Environmental Consultants Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68911"	"Contract services  - Wirelog Work for Northern Perth Basin - CMC: G2215"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Apr-08	16500.00	=""	="Cohesion Geodata Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68924"	"Invoice no. PER-07/08-045 Transcription project - RP00793 - Transcription of WA-276, 277 & 278 (Oryx) Marine Seismic 1998 (Bonaparte 98 MSS) consisting of 182x3590 cartridges."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	17523.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68925"	"Invoice: PER-07/08-049 Transcription Project RP00913 - ACME 3D Marine Seismic Survey consisting of 193x3590 cartridges"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	18529.50	="2006-3933"	="Phoenix Data Services Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68936"	"Uranium Group Contribution - Australia's International Uranium Conference 2008"	="Geoscience Australia"	10-Apr-08	="Meeting facilities"	27-Mar-08	30-Apr-08	16500.00	=""	="AusIMM"	10-Apr-08 01:50 PM	

+="CN68937"	"Satellite data ingest board set, as per quote 2080110, TRIM ref 2008/426 & D2007-168060."	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Jun-08	17446.00	=""	="Scitech Pty Ltd"	10-Apr-08 01:50 PM	

+="CN68942"	"Bureau of Meteorology WAM Wave Data"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	28-Mar-08	30-Jun-08	19800.00	=""	="Bureau of Meteorology"	10-Apr-08 01:51 PM	

+="CN68926"	"Transport Official Visit"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Passenger transport"	06-Feb-08	11-Feb-08	16500.00	=""	="COMCAR"	10-Apr-08 01:52 PM	

+="CN68948-A1"	"Production of Video clips"	="Australian Federal Police"	10-Apr-08	="Promotional material or annual reports"	04-Apr-08	20-Jun-08	18551.50	=""	="Screencraft Media Pty Ltd"	10-Apr-08 02:02 PM	

+="CN68972"	"Maintenance Service Order for DAIMS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	29-Jan-08	30-Jun-08	17952.00	="0708-906"	="Toldark Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68975"	"2008 Payment for project ' Seed biology research - rehabilitation of the Ranger Mine site'"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	29-Jan-08	30-Jun-08	16500.00	="0708-894"	="Charles Darwin University"	10-Apr-08 02:18 PM	

+="CN68977"	"Printing Services to Print Calenders"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	25-Jan-08	31-Jan-08	19120.20	="0708-895"	="Digital Ink Tasmania"	10-Apr-08 02:18 PM	

+="CN68980"	"Data will be used by E3 for following publications Fact Sheet, Technical Report, Regulatroy Impact S"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	28-Feb-08	16830.00	="0708-313"	="IDC Australia Pty Ltd"	10-Apr-08 02:18 PM	

+="CN68995"	"Property Maintenance - Painting & Retiling"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Building and Construction and Maintenance Services"	17-Jan-08	31-Jan-08	17405.27	="0708-840"	="Kakadu Contracting"	10-Apr-08 02:21 PM	

+="CN68952"	"Motor Vehicle Parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	19841.55	=""	="Volvo Commericial Vehicles"	10-Apr-08 02:25 PM	

+="CN69026"	"Analysis impacts on Carnaby's Black Cockatoo habit by proposed or future developments Swan coas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	20-Feb-08	30-Apr-08	20000.00	="0708-0928"	="Department of Environment & Conserv"	10-Apr-08 03:12 PM	

+="CN69029"	"Further Feedstock Biofuels Study"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	01-Feb-08	31-Mar-08	16500.00	="0708-834"	="Duncan Seddon and Associates"	10-Apr-08 03:13 PM	

+="CN69045"	"Web server and infrastructure Services to faciliitate the delivery of collections data"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	28-Feb-08	30-May-08	16500.00	="0708-1006"	="South Australian Museum"	10-Apr-08 03:15 PM	

+="CN69052"	"Power Splitters"	="Defence Materiel Organisation"	10-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Apr-08	30-May-08	18996.98	=""	="AGILENT TECHNOLOGIES"	10-Apr-08 03:17 PM	

+="CN69059"	"Mercury in Health Industry National Pollutant Inventory Review"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	18-Feb-08	29-Feb-08	17347.00	="0708-823"	="ECS Assist Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69074-A1"	"Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	06-Feb-08	28-Mar-08	19650.90	="0708-945"	="Toldark Pty Ltd"	10-Apr-08 03:19 PM	

+="CN69078"	"Development of Water Databases"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	04-Feb-08	30-Dec-08	16500.00	="0708-889"	="PROQUEST INFORMATION AND LEARNING"	10-Apr-08 03:20 PM	

+="CN69080"	"Rental of Accommodation Space"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Transportation services equipment"	04-Feb-08	22-Feb-08	19800.00	="0607-555"	="Jones Lang LaSalle (NSW) P/L"	10-Apr-08 03:20 PM	

+="CN69088"	"Accomodation for conference for Indonesian Ministry Officials"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	18-Feb-08	16240.00	=""	="NOVOTEL CANBERRA"	10-Apr-08 03:21 PM	

+="CN69089"	"Technical research paper on domestic irrigation flow controllers & interaction Water Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	18-Jan-08	31-Mar-08	17490.00	="0708-720"	="Irrigation Association of Australia"	10-Apr-08 03:21 PM	

+="CN69102"	"Envirofund round 9 merchandise"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	11-Feb-08	29-Feb-08	18080.76	="0708-955"	="National Promotions Aust P/L"	10-Apr-08 03:23 PM	

+="CN69104"	"Building Services"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Building and Construction and Maintenance Services"	01-Oct-07	30-Jan-08	17790.00	=""	="GHD Pty Ltd"	10-Apr-08 03:29 PM	

+="CN69195"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	16471.52	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69196"	"Salaries - eWater Project"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	31-Mar-08	16673.79	=""	="The University Of Melbourne"	10-Apr-08 03:59 PM	

+="CN69219"	"Net Display Test Equipment"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	07-Apr-08	18650.50	=""	="Dell Australia  Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69226"	"CHARTER AIRCRAFT EUCLA/GOLDFIELDS"	="Bureau of Meteorology"	10-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-May-08	18729.26	=""	="Complete Aviation Services"	10-Apr-08 04:03 PM	

+="CN69249"	"Geotechnical Services - RG Menzies Walk"	="National Capital Authority"	10-Apr-08	="Geophysical and geotechnical instruments"	12-Feb-08	26-Apr-08	16940.00	=""	="Coffey Geotechnics Pty Ltd"	10-Apr-08 05:29 PM	

+="CN69257"	"Development of an Arid Wetlands Conservation & Management Strategy for the Northern Territory"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	18-Mar-08	30-Jun-08	20000.00	="0708-681"	="CSIRO Accounts Receivable"	11-Apr-08 09:22 AM	

+="CN69269"	"OSCAR Maintenance Analysis and Vision - CRM"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	18700.00	="121/2006/07"	="Strategic Data Management PTY LTD"	11-Apr-08 09:24 AM	

+="CN69285"	"Amendments to the Water Efficiency Labelling and Standards Scheme requirements for urinals"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	28-Mar-08	31-May-08	19360.00	="0708-892"	="Access Product Information Consulta"	11-Apr-08 09:26 AM	

+="CN69293"	"Services of Conference Logistics to manage the National Pollutant Inventory Conference"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	23-May-08	18785.00	="0708-1101"	="Conference Logistics"	11-Apr-08 09:27 AM	

+="CN69306"	"Service provider to engage expertise of identified bird experts to update survey reports"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	31-May-08	18386.00	="0708-926"	="Royal Australasian Ornithologists U"	11-Apr-08 09:28 AM	

+="CN69314-A1"	"Fish species and family profiles of Platycephalidae, Hoplichthyidae and Plectrogenidae"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Wildlife and flora"	11-Mar-08	30-Jun-08	16500.00	="0708-804"	="CSIRO Marine Research"	11-Apr-08 09:30 AM	

+="CN69315"	"Refurb at Offices in NT"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Floor coverings"	11-Mar-08	30-Jun-08	17886.00	="0708-942"	="Kakadu Contracting"	11-Apr-08 09:30 AM	

+="CN69317"	"Applied Economic Research for Database Preparation"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Statistics"	06-Mar-08	24-Jun-08	18000.00	="0708-647"	="Monash University"	11-Apr-08 09:30 AM	

+="CN69319"	"Fern module of the Australian Rainforest Plants Interactive Identification and Information System"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Environmental Services"	03-Mar-08	16-Jun-08	17600.00	="0708-885"	="CSIRO Corporate Finance"	11-Apr-08 09:30 AM	

+="CN69323"	"Equipment for Secure network Satin room"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	19080.00	="0708-995"	="Dept of Foreign Affairs & Trade"	11-Apr-08 09:31 AM	

+="CN69346"	"Graphic Design Services as requested"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Graphic design"	11-Mar-08	30-Jun-08	17600.00	="0708-126"	="Giraffe Visual Communication"	11-Apr-08 09:34 AM	

+="CN69363"	"Supply of IT Hardware and Software"	="Department of Parliamentary Services"	11-Apr-08	="Desktop computers"	25-Mar-08	30-Apr-08	17013.92	=""	="Hewlett Packard Australia Pty Ltd"	11-Apr-08 11:40 AM	

+="CN69395"	"Stem Assembly - 2915/008773739"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	19-Jun-07	24-Feb-08	19172.30	=""	="Milspec Services Pty Ltd"	11-Apr-08 01:09 PM	

+="CN69407"	"LIGHT, TAXING, AIRCRAFT - 6220/14765629"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	05-Sep-07	26-Dec-07	17316.50	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:39 PM	

+="CN69409"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	14-Feb-08	30-Jun-08	19000.00	=""	="Mr Anthony Payne"	11-Apr-08 01:47 PM	

+="CN69411"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	11-Apr-08 01:51 PM	

+="CN69438"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	17277.32	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 01:58 PM	

+="CN69439"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	17852.98	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:00 PM	

+="CN69503"	"RIBBON FOR MEDALS"	="Department of Defence"	12-Apr-08	="Fabrics and leather materials"	27-Mar-08	30-Jun-08	19741.70	=""	="AUSTRALIAN RIBBON COMPANY"	12-Apr-08 03:05 PM	

+="CN69505"	"CHP PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	16500.00	=""	="ITG REACTIVE PTY LTD"	12-Apr-08 03:05 PM	

+="CN69506"	"PM/CA Services for the development of the HMAS Creswell Redevelopment Project"	="Department of Defence"	12-Apr-08	="Management advisory services"	27-Nov-07	30-Jun-08	16621.00	=""	="CONNELL WAGNER PTY LTD"	12-Apr-08 03:05 PM	

+="CN69514"	"REPAIRS & MAINTENANCE"	="Department of Defence"	12-Apr-08	="Personal and Domestic Services"	27-Nov-07	30-Jun-08	19099.99	=""	="ANDY LAUNDRY EQUIPMENT SERVICES"	12-Apr-08 03:07 PM	

+="CN69536"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	18165.91	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:10 PM	

+="CN69552"	"SOFTWARE DEVELOPMENT"	="Department of Defence"	12-Apr-08	="Computer Equipment and Accessories"	16-Nov-07	19-Nov-07	17877.10	=""	="FUTURE TRAIN"	12-Apr-08 03:12 PM	

+="CN69571"	"Design Services Contract for Advanced Systems Centre Fishermans Bend"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	30-Jun-08	19470.00	=""	="LE QUESNE & ASSOCIATES"	12-Apr-08 03:15 PM	

+="CN69573"	"HMAS STIRLING GUIDED WEAPONS IN SERVICE SUPPORT FACILITY (GWISS)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Jun-08	16500.00	=""	="CONNELL WAGNER (WA) PTY LTD"	12-Apr-08 03:15 PM	

+="CN69580"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	17130.56	=""	="HMA BLAZE PTY LTD"	12-Apr-08 03:16 PM	

+="CN69588"	"Provide Consulting Services to Facilitate establishment of change management"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	02-Oct-08	16090.00	=""	="BELLA IT & MANAGEMENT CONSULTING"	12-Apr-08 03:17 PM	

+="CN69592"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Nov-07	17555.74	=""	="AUSTRALIAN VALUATION OFFICE"	12-Apr-08 03:18 PM	

+="CN69611"	"KARRATHA/DAMPIER AREA : INFRASTRUCTURE FOR ARMIDAL"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	19393.00	=""	="***USE 1079487***"	12-Apr-08 03:20 PM	

+="CN69662"	"DECON - INGLEBURN - UXO ASSESSMENT & REMEDIATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	16500.00	=""	="MILSEARCH PTY LTD"	12-Apr-08 03:27 PM	

+="CN69691"	"CONSULTATION SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Jun-08	17600.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:31 PM	

+="CN69697"	"Health Services"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	19-Dec-07	31-Dec-07	18905.90	=""	="J STEPHENSON"	12-Apr-08 03:31 PM	

+="CN69698"	"PROVISION OF SERVICES - HIGH VOLTAGE SYSTEM DOCUMENTATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Jun-08	17977.30	=""	="GHD PTY LTD"	12-Apr-08 03:31 PM	

+="CN69704"	"ORCHARD HILLS - OFFICE ACCOMMODATION & ENTRY REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	30-Jun-08	18807.75	=""	="CARSON GROUP PTY LTD"	12-Apr-08 03:32 PM	

+="CN69728"	"DEVELOP GRAPHICS FOR NPMA PROJECT"	="Department of Defence"	12-Apr-08	="Education and Training Services"	03-Dec-07	30-Jun-08	17274.99	=""	="EVOLUTION MULTIMEDIA"	12-Apr-08 03:35 PM	

+="CN69759"	"Provision of Management, Design and Development for UAP releases"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	02-May-09	18940.24	=""	="UXC LIMITED"	12-Apr-08 03:39 PM	

+="CN69775"	"PROFESSIONAL FEES"	="Department of Defence"	12-Apr-08	="Legal services"	22-Nov-07	30-Jun-08	19490.00	=""	="SPARKE HELMORE LAWYERS"	12-Apr-08 03:41 PM	

+="CN69778"	"681911 (NT1698) SBRS Beam FOrming Hut Ventilation Project Management 2007/08 Risk Managed Works."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	28-Mar-08	30-Jun-08	19555.21	=""	="G H D PTY LTD"	12-Apr-08 03:42 PM	

+="CN69828"	"Research"	="Defence Materiel Organisation"	12-Apr-08	="Electrical equipment and components and supplies"	12-Nov-07	07-Jun-08	16987.41	=""	="PARTECH SYSTEMS PTY LTD"	12-Apr-08 03:46 PM	

+="CN69847"	"AZ3504- RAAF BASE EDINBURGH - PRODUCTION OF ANEF"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-09	18183.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:47 PM	

+="CN69859"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	19-Mar-08	16456.00	=""	="F1 SOLUTIONS"	12-Apr-08 03:48 PM	

+="CN69893"	"Cleaning consumables"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	18491.00	=""	="COMPLETE CLEANING SERVICE"	12-Apr-08 03:50 PM	

+="CN69939"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Dec-07	30-Jun-08	19802.20	=""	="TNT EXPRESS"	12-Apr-08 03:53 PM	

+="CN69940"	"JOINT MANAGEMENT OFFICE SERVICES FOR 12 MTHS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	04-Jan-08	18520.07	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:53 PM	

+="CN69950"	"DGCOMMS VEHICLE - LEASE AND FUEL"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	16450.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 03:54 PM	

+="CN69973"	"Postal services from AFPO 8"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	20000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:56 PM	

+="CN69988"	"OMS MAINTENANCE AND DEVELOPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Apr-08	16407.67	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:57 PM	

+="CN70007"	"MEDICAL CASE MNGT - APS EMPLOYEES 07/08"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	16500.00	=""	="KONEKT AUSTRALIA PTY LTD"	12-Apr-08 03:58 PM	

+="CN70089"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	16-Jan-08	30-Jun-08	16500.00	=""	="LESLIE D YEAMAN"	12-Apr-08 04:04 PM	

+="CN70112"	"WEIGHT WATCHERS  AT WORK PROGRAM FOR UP TO 50 EMPLOYEES FOR 26 WEEKS"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	11-Mar-08	16000.01	=""	="WEIGHT WATCHERS AUSTRALIA"	12-Apr-08 04:05 PM	

+="CN70127"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	23-Jan-08	30-Jun-08	16362.30	=""	="CANBERRA IMAGING GROUP PTY LTD"	12-Apr-08 04:06 PM	

+="CN70133"	"Recruitment - Advertising"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	16500.00	=""	="RECRUITMENT MANAGEMENT COMPANY"	12-Apr-08 04:07 PM	

+="CN70134"	"survey and quote on 4 x T56 A15 ECU's"	="Defence Materiel Organisation"	12-Apr-08	="Manufacturing support services"	12-Nov-07	30-Jun-08	17760.68	=""	="SAFE AIR LTD"	12-Apr-08 04:07 PM	

+="CN70168"	"Integrated Logistics Support for Heavy Airlift Project Office (HALPO)"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-08	19547.47	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:09 PM	

+="CN70187"	"PROVISION OF SERVICES AT 44WG AND 92WG"	="Department of Defence"	12-Apr-08	="Management advisory services"	15-Feb-08	30-Jun-08	19604.00	=""	="SERCO MAPS PTY LTD"	12-Apr-08 04:11 PM	

+="CN70220"	"Support for IPSSR extension across MATIS"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	04-May-08	19309.95	=""	="NIELSEN-WURSTER ASIA-PACIFIC"	12-Apr-08 04:13 PM	

+="CN70238"	"Risk Management & Analysis S/ware, training & tech support"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	18700.02	=""	="RISK DECISIONS PTY LTD"	12-Apr-08 04:14 PM	

+="CN70271"	"HEALTH COVER"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	10-Dec-07	10-Dec-07	19999.99	=""	="MEDIBANK PRIVATE"	12-Apr-08 04:16 PM	

+="CN70294"	"MSA BANDICOOT REFIT 09 JUL - 25 AUG 07"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	16227.30	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:18 PM	

+="CN70340"	"HMAS NORM FAMP 2/07 06 - 19 AUG 07"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Dec-07	17840.43	=""	="THALES UNDERWATER SYSTEMS P/L"	12-Apr-08 04:21 PM	

+="CN70342"	"Technical Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	19600.00	=""	="RICHARDSON O'ROURKE CONSULTING"	12-Apr-08 04:21 PM	

+="CN70352"	"Conduct a ship check twice a week for ten weeks"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	15-Feb-08	16500.00	=""	="DET NORSKE VERITAS"	12-Apr-08 04:22 PM	

+="CN70386"	"HMAS DIAMANTINA FAMP 01/07 17 SEPT - 7 OCT 2007"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	14-Dec-07	19229.37	=""	="THALES AUSTRALIA"	12-Apr-08 04:24 PM	

+="CN70391"	"AIRFREIGHT IMPORT COSTS"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	21-Feb-08	16500.00	=""	="WRIDGWAYS LTD"	12-Apr-08 04:25 PM	

+="CN70403"	"WASTE REMOVAL"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="STERICORP NSW PTY LTD"	12-Apr-08 04:26 PM	

+="CN70405"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	31-Mar-08	18062.00	=""	="CLAYTON UTZ"	12-Apr-08 04:26 PM	

+="CN70424"	"UPGRADE LINUX SOE PROJECT O.05.30.25"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	17529.33	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:27 PM	

+="CN70463"	"Variable Invoices 07/08 Garrison Support. Robertson Barracks Devolved"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	17454.18	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:30 PM	

+="CN70469"	"Variable Invoices 07/08 Garrison Support. Larrakeyah Barracks & Darwin Naval Base Devolved"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	18668.80	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:30 PM	

+="CN70471"	"Report into Replenishment Procedures"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	19975.20	=""	="PAUCC PTY LTD"	12-Apr-08 04:31 PM	

+="CN70479"	"ENHANCED LANDFORCE - STAGE 2"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	17547.20	=""	="SKM"	12-Apr-08 04:31 PM	

+="CN70504"	"Provision of a Life Support Design Engineer and Life Support Systems Engineer"	="Defence Materiel Organisation"	12-Apr-08	="Human resources services"	12-Nov-07	24-Dec-07	16464.36	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:33 PM	

+="CN70510"	"LCM2000 Technical investigation Army Marine"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	07-Apr-08	07-Apr-08	19470.00	=""	="INCAT CROWTHER PTY LTD"	12-Apr-08 04:33 PM	

+="CN70538"	"Program Manager for TIPSTEEL Manager"	="Defence Materiel Organisation"	12-Apr-08	="Computer Equipment and Accessories"	12-Nov-07	02-May-08	18661.50	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:35 PM	

+="CN70555"	"STAGE 2 ENVIRONMENTAL INVESTIGATIONS MOUNT BUNDEY TRAINING AREA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	19023.14	=""	="GHD PTY LTD"	12-Apr-08 04:37 PM	

+="CN70568"	"REPAIR OF RAIL ROTOR BLADE"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-May-08	17619.88	=""	="AGUSTAWESTLAND LTD"	12-Apr-08 04:37 PM	

+="CN70573"	"OVERHAUL OF AUXILIARY POWER UNITS X THREE MODEL GTCP85-180L"	="Defence Materiel Organisation"	12-Apr-08	="Manufacturing support services"	12-Nov-07	30-Apr-08	19867.34	=""	="AIR NZ ENGINEERING SERVICES"	12-Apr-08 04:38 PM	

+="CN70580"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	19250.00	=""	="COOK SHIRE COUNCIL"	12-Apr-08 04:38 PM	

+="CN70585"	"FLASH WEB DEVELOPER BCSS PROJECT CBLP"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	30-Jun-08	18554.19	=""	="WOKNBOB"	12-Apr-08 04:39 PM	

+="CN70595"	"Scribe services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	16500.00	=""	="RJN CONTRACTS PTY LTD"	12-Apr-08 04:39 PM	

+="CN70600"	"PROCUREMENT OF QUANTITY 18 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	31-Dec-07	16379.75	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:40 PM	

+="CN70623"	"SHOALWATER BAY TRAINING FACILITY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	19800.00	=""	="ARUP PTY LTD"	12-Apr-08 04:41 PM	

+="CN70624"	"Repair and overhaul of F/A - 18 Front Frame Assy"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	01-May-08	18224.04	=""	="AIR NZ ENGINEERING SERVICES"	12-Apr-08 04:41 PM	

+="CN70647"	"TSS CONTRACT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	18810.00	=""	="BLUE SWIMMER CONSULTING"	12-Apr-08 04:43 PM	

+="CN70671"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	01-Jun-08	19970.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 04:45 PM	

+="CN70685"	" VARRIOUS PHARMACEUTICAL ITEMS "	="Defence Materiel Organisation"	14-Apr-08	="Medical health associations"	11-Apr-08	12-May-08	18386.86	=""	="SYMBION PHARMACY SERVICES"	14-Apr-08 09:34 AM	

+="CN70690"	"22 X CANON CAMERA MODEL IXUS 960IS 22 X CANON FLASM MODEL HFDC1"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	16161.00	=""	="THE GOOD GUYS"	14-Apr-08 09:37 AM	

+="CN70694"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	10-Apr-08	17531.25	=""	="J A LOGAN"	14-Apr-08 09:57 AM	

+="CN70701"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	09-Apr-08	16600.85	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:58 AM	

+="CN70706"	"EL2.2 Accommodation whilst interstate as per the EL2 Accommodation Guidelines"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	17269.70	=""	="SPIKE TRUST"	14-Apr-08 10:00 AM	

+="CN66070"	"Liquidator Opinion"	="Australian Securities and Investments Commission"	14-Apr-08	="Liquidation law services"	01-Nov-07	30-Jun-08	17160.00	=""	="George Divitkos"	14-Apr-08 10:35 AM	

+="CN70712-A2"	"Provision of cleaning services at the Mandurah premises of CRS Australia"	="CRS Australia"	14-Apr-08	="General building and office cleaning and maintenance services"	10-Mar-08	09-Mar-11	16530.00	=""	="GWC Total Management"	14-Apr-08 10:38 AM	

+="CN70716"	"qty 60 antenna group , base matching unit, upper assembly, spares for use with military radios"	="Defence Materiel Organisation"	14-Apr-08	="Radio antennas"	10-Apr-08	04-Sep-08	18480.00	="RFQ-7066A"	="A&D International Pty Ltd"	14-Apr-08 11:23 AM	

+="CN70717"	"RAN Antenna Assembly"	="Defence Materiel Organisation"	14-Apr-08	="Aircraft antennas"	18-Apr-08	15-Aug-08	19147.04	=""	="BAE Systems"	14-Apr-08 11:35 AM	

+="CN70727-A2"	" Curam Software "	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	25-Feb-08	06-Mar-08	18000.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70739"	"Office supplies: Epson Projector & Smart Board"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	16040.82	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:24 PM	

+="CN70742"	"Office Supplies - Electronic Whiteboards"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	17083.60	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:32 PM	

+="CN70769"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	30-Jul-07	30-Jun-08	19256.38	=""	="Hays Personnel Services (Australia)"	14-Apr-08 01:00 PM	

+="CN70780"	"Probity Advisor for the SBR Authentication Project"	="Australian Taxation Office"	14-Apr-08	="Management advisory services"	13-Mar-08	02-Jun-08	19725.00	=""	="Walter & Turnbull Pty Ltd"	14-Apr-08 01:29 PM	

+="CN70791"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	04-Oct-07	04-Oct-07	18440.95	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:05 PM	

+="CN70806"	"VEHICLE PARTS"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Apr-08	06-May-08	18853.35	=""	="Land Rover Australia"	14-Apr-08 03:34 PM	

+="CN70809"	"Australia New Zealand Agents Workshop - AEI Participation"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20000.00	="PRN17759"	="EDMEDIA STUDENT RECRUITMENT PTY"	14-Apr-08 03:50 PM	

+="CN70811"	"EBSCO - 2008 Journal subcriptions"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	31-Jan-08	30-Jun-08	16442.94	="PRN18481"	="EBSCO AUSTRALIA"	14-Apr-08 03:50 PM	

+="CN70816"	"14 Mort Street, Level 3 - Feature paint and Office"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	31-Dec-07	29-Feb-08	16950.30	="PRN18366"	="CONSTRUCTION CONTROL INTERIORS P/L"	14-Apr-08 03:54 PM	

+="CN70829"	"Video Conferencing Support and Maintenance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer services"	21-Dec-07	30-Jun-08	19500.00	="PRN18208"	="SERVICEPOINT AUSTRALIA PTY LTD"	14-Apr-08 04:00 PM	

+="CN70834"	"Consultant for the development of a strategic framework"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Engineering and Research and Technology Based Services"	01-Jan-08	15-May-08	18000.00	="PRN18247"	="PAUL FITZGERALD"	14-Apr-08 04:02 PM	

+="CN70846"	"Review of Australian Training Awards selection pro"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	26-Nov-07	15-Feb-08	16200.00	="PRN17899"	="JOANNE MALPAS"	14-Apr-08 04:03 PM	

+="CN70852"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	18480.00	="PRN12579"	="ALL BUSINESS LEARNING END"	14-Apr-08 04:04 PM	

+="CN70848"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	28-Aug-07	30-Jun-08	19305.00	=""	="DEEWR"	14-Apr-08 04:04 PM	

+="CN70861"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	04-Apr-08	30-Jun-08	20000.00	=""	="Ms Elizabeth Cheeseman"	14-Apr-08 04:24 PM	

+="CN70862"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	28-Aug-07	11-Sep-07	20000.00	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	14-Apr-08 04:26 PM	

+="CN70869"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	29-Aug-07	30-Jun-08	18544.55	=""	="Hugo Personnell Pty Ltd"	14-Apr-08 04:29 PM	

+="CN70871"	"Procurement of desktops and monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	17941.00	=""	="Dataflex"	14-Apr-08 04:39 PM	

+="CN70894"	"UNSW CO-OP PROGRAM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	09-Apr-08	09-Apr-08	16775.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val20000to30000.xls
@@ -1,1 +1,247 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68847"	"Labour hire - Accounting and Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Accounting and auditing"	10-Mar-08	30-May-08	20218.50	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	10-Apr-08 08:45 AM	

+="CN68848"	"Labour hire - Accounting and Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	03-Sep-07	21-Dec-07	26958.00	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	10-Apr-08 08:57 AM	

+="CN68851"	"REPAIRS TO LET ARN-203247 W/O-35954 WALLY"	="Department of Defence"	10-Apr-08	="Motor vehicles"	01-Apr-08	30-Jun-08	27971.90	=""	="TWINE MACHINERY PTY LTD"	10-Apr-08 08:59 AM	

+="CN68854"	"Legal Services"	="Workplace Authority"	10-Apr-08	="Legal services"	11-Mar-08	30-Jun-08	25465.77	=""	="Australian Government Solicitors (ACT)"	10-Apr-08 09:35 AM	

+="CN68856"	"Employer Advisory Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	07-Mar-08	07-Mar-08	29577.00	=""	="NT Working Women's Centre"	10-Apr-08 09:40 AM	

+="CN68861"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	10-Apr-08	="Temporary personnel services"	01-Feb-08	30-May-08	21065.00	=""	="Boston Kennedy"	10-Apr-08 09:56 AM	

+="CN68890"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	21538.76	=""	="Rover Australia"	10-Apr-08 01:13 PM	

+="CN68896"	"Invoice no. GDA-08-035 Remastering project - RP00250 Browse Basin consisting of 359x21 track tapes & 8x9 track tape"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	04-Mar-08	30-Jun-08	20486.17	=""	="CGGVeritas (Guardian Data Seismic)"	10-Apr-08 01:44 PM	

+="CN68902"	"Light reflectors for GA light fitting"	="Geoscience Australia"	10-Apr-08	="Real estate management services"	07-Mar-08	30-Jun-08	22798.60	=""	="Skilled Group Limited"	10-Apr-08 01:45 PM	

+="CN68909"	"Business Analyst for the Corporate IM SPOT initiative 2007/8"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	25058.00	=""	="Verossity Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68914"	"100 x Western Digital 1TB External Hard Drives"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	14-Mar-08	28-Mar-08	29999.20	=""	="Ethan Group Canberra Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68928"	"ERDAS Imagine Maintenance Renewal"	="Geoscience Australia"	10-Apr-08	="Software"	25-Mar-08	02-Apr-08	23050.50	=""	="Leica Geosystems Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68883"	" Recruitment Services "	="Workplace Authority"	10-Apr-08	="Recruitment services"	27-Feb-08	27-Feb-08	24163.32	=""	="HMA Blaze Pty Ltd"	10-Apr-08 01:56 PM	

+="CN68947"	"Hospitality"	="Department of the Prime Minister and Cabinet"	10-Apr-08	="Banquet and catering services"	22-Feb-08	22-Feb-08	24600.00	=""	="HYATT Hotel Canberra"	10-Apr-08 02:00 PM	

+="CN68957"	"Installation and subscription for pay tv services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jan-08	30-Jun-10	24627.15	="0708-876"	="FOXTEL Cable TV P/L"	10-Apr-08 02:15 PM	

+="CN68960"	"Remote Sensing Business Analysis"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	01-Feb-08	02-Jun-08	27500.00	="0708-846"	="Spatial Strategies Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68961"	"Software Licence & Support - Program Administrator"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	22-Jan-08	30-Oct-08	29094.19	="0708-914"	="Oracle Corp Aust P/L"	10-Apr-08 02:16 PM	

+="CN68967"	"Maintenance and redevelopment of the Departmental website required to meet machinery of Gov changes"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	29-Jan-08	30-May-08	28000.00	="0708-891"	="Unique Ideas Australia Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68974"	"Validation and updating of Australian Gastropoda and Bivalvia names of the Aust. Faunal Directory"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Wildlife and flora"	29-Jan-08	30-May-08	22000.00	="0708-900"	="Australian Museum"	10-Apr-08 02:18 PM	

+="CN68978"	"Survey to Identify the existence of Quokka near Muddy Lakes in Western Australia"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	16-Jan-08	31-May-08	24530.00	="0708-402"	="Botanic Gardens & Parks Authority"	10-Apr-08 02:18 PM	

+="CN68997"	"Digital Video Equipment for Media Streaming"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Photographic or filming or video equipment"	17-Jan-08	21-Feb-08	20012.56	="0708-796"	="Canberra Professional Equipment"	10-Apr-08 02:21 PM	

+="CN68999"	"travel consultant to manage international travel arrangements"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	16-Jan-08	30-Jun-08	25000.00	="0708-707"	="Flight Centre Limited"	10-Apr-08 02:21 PM	

+="CN69007"	"Assistance with a pricing model for AIPM Business"	="Australian Federal Police"	10-Apr-08	="Cost accounting"	01-Apr-08	30-May-08	25562.00	=""	="Analytics Group Pty Ltd"	10-Apr-08 02:38 PM	

+="CN69010"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	30-Jan-08	31-Mar-08	25410.00	=""	="Select Appointments"	10-Apr-08 02:53 PM	

+="CN69026"	"Analysis impacts on Carnaby's Black Cockatoo habit by proposed or future developments Swan coas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	20-Feb-08	30-Apr-08	20000.00	="0708-0928"	="Department of Environment & Conserv"	10-Apr-08 03:12 PM	

+="CN69027"	"Misc. Digital Photographic Equipment"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Photographic or filming or video equipment"	19-Feb-08	27-Mar-08	27230.00	="0708-795"	="Ted's Camera Store"	10-Apr-08 03:12 PM	

+="CN69030"	"Review of a Conservation Value Index for the Box Gum Grassy Woodland Project"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	31-Mar-08	24750.00	="0708-0819"	="EcoInsights"	10-Apr-08 03:13 PM	

+="CN69034"	"Consultancy to help write a policy discussion paper on actoins to manage water activities"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	10-Dec-07	31-Mar-08	27500.00	="0708-654"	="Hamstead Consulting Pty Ltd"	10-Apr-08 03:13 PM	

+="CN69036"	"Rectification and Improvemetns to Count Room"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Building and Construction and Maintenance Services"	15-Feb-08	30-Jun-08	26290.00	="0708-997"	="NT Energy Contracting"	10-Apr-08 03:14 PM	

+="CN69051"	"Expert Tech advice - sediment & erosion control assessment against conditions of approval"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	04-Mar-08	31-May-08	23149.50	="0708-1038"	="Natural Resource Assessments"	10-Apr-08 03:16 PM	

+="CN69061"	"Branch Ministerial Writing Course"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Vocational training"	21-Feb-08	29-Feb-08	28510.00	="0708-738"	="Rushworth Consultancy"	10-Apr-08 03:18 PM	

+="CN69062"	"Research into Water Use and Catchment Economic Status in the Murray Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	21-Dec-07	28-Feb-08	27500.00	="0708-688"	="Dept. Agriculture, Fisheries &"	10-Apr-08 03:18 PM	

+="CN69063"	"Database Administration Support Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	07-Feb-08	28-Mar-08	27000.00	="0708-965"	="SRA Information Technology"	10-Apr-08 03:18 PM	

+="CN69065"	"Long-term monitoring of sea temperature in tropical Marine Protected Areas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	22000.00	="0708-562"	="Aust Institute of Marine Science"	10-Apr-08 03:18 PM	

+="CN69066"	"Flyway Partnership Interim Secretariat - Drafting of Working Papers"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	25520.00	="0708-022"	="Wetlands International Oceania"	10-Apr-08 03:18 PM	

+="CN69070-A1"	"Provision of Procurement Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	06-Feb-08	31-May-08	20322.50	="0708-375"	="David Jess and Associates"	10-Apr-08 03:19 PM	

+="CN69072"	"MONTHLY BLACKBERRY CHARGES"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	29-Feb-08	20473.40	="0708-939"	="Telstra Corporation Limited"	10-Apr-08 03:19 PM	

+="CN69073"	"Research to Track the Uptake of  Water Efficiency Labelling and Standards (WELS) rated Products"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	10-Dec-07	29-Feb-08	24950.00	="0708-672"	="ICLEI Australia /New Zealand"	10-Apr-08 03:19 PM	

+="CN69075"	"Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	06-Feb-08	06-Feb-08	27000.00	="0708-944"	="Toldark Pty Ltd"	10-Apr-08 03:19 PM	

+="CN69091"	"Subscription to online service"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Electronic reference material"	12-Feb-08	02-Mar-09	20350.00	="0708-950"	="BUTLER DIRECT PTY LTD"	10-Apr-08 03:22 PM	

+="CN69092"	"Ad hock project work on Gas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	25-May-08	30000.00	="0708-767"	="Enertech Australia P/L"	10-Apr-08 03:22 PM	

+="CN69096"	"Professional services in relation to the Executive Leadership tender evaluation project"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Business administration services"	12-Feb-08	30-Jun-08	29766.00	="0708-978"	="Lange Consulting & Software"	10-Apr-08 03:22 PM	

+="CN69099"	"Provide ad hoc advice on Technical Engineering Issues on Labelling & MEPs"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	20-Jun-08	22000.00	="0708-776"	="George Wilkenfeld & Associates"	10-Apr-08 03:23 PM	

+="CN69100"	"Dialog Easy Maintenance"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	12-Feb-08	30-Jun-08	29870.88	="0708-976"	="Dialog Information Technology"	10-Apr-08 03:23 PM	

+="CN69109-A2"	"Security Risk Review"	="Workplace Authority"	10-Apr-08	="Securing and protecting supplies"	25-Jan-08	30-Apr-08	30000.00	=""	="Intec 1"	10-Apr-08 03:36 PM	

+="CN69185"	"Supply of Stationery"	="Bureau of Meteorology"	10-Apr-08	="Office supplies"	02-Apr-08	30-Apr-08	24174.55	=""	="Corporate Express Australia Limited"	10-Apr-08 03:58 PM	

+="CN69205"	"Telephone A/c"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	27-Mar-08	27-Mar-08	20111.74	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69210"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	24105.47	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:01 PM	

+="CN69213"	"Audit Services"	="Bureau of Meteorology"	10-Apr-08	="Accounting and auditing"	03-Apr-08	30-Apr-08	20251.00	=""	="Deloitte Touche Tohmatsu"	10-Apr-08 04:01 PM	

+="CN69229"	"MacBook Pro 17" Monitor Qty 2 Macbook Pro 15"Qty 2"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	23405.80	=""	="Next Byte Pty Ltd"	10-Apr-08 04:03 PM	

+="CN69230"	"Ptotege R500 Laptops Qty 5"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	22380.00	=""	="Leading Solutions Pty Ltd"	10-Apr-08 04:04 PM	

+="CN69253-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	25000.00	=""	="Mr Abbott Esq (Andrew)"	11-Apr-08 09:20 AM	

+="CN69255"	"Graphic design of 4th editonYour Home Manual"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	23-Apr-08	24002.00	="0708-051"	="Giraffe Visual Communication"	11-Apr-08 09:22 AM	

+="CN69256"	"Scoping Study for social mapping exercise of the Kokoda Track and Owen Stanley Ranges"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Socio political conditions"	18-Mar-08	28-Apr-08	22000.00	="0708-1069"	="ANU Enterprise"	11-Apr-08 09:22 AM	

+="CN69257"	"Development of an Arid Wetlands Conservation & Management Strategy for the Northern Territory"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	18-Mar-08	30-Jun-08	20000.00	="0708-681"	="CSIRO Accounts Receivable"	11-Apr-08 09:22 AM	

+="CN69258"	"Review and update of the National Pollutant Inventory manual for Railway Operations"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	19-Mar-08	09-Jun-08	28721.00	="0708-1052"	="Pacific Air & Environment Pty Ltd"	11-Apr-08 09:22 AM	

+="CN69259"	"Upper Ord River Fish & Macro Invertebrate Study"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Fisheries and aquaculture"	19-Mar-08	30-Jun-08	22421.58	="0708-1113"	="Wetlands Research & Management"	11-Apr-08 09:22 AM	

+="CN69265"	"Habitat Mapping of the Cod Grounds Commonwealth Marine Reserve"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	15-May-08	22000.00	="0708-512"	="Department of Environment and"	11-Apr-08 09:23 AM	

+="CN69268"	"OSCAR Maintenance Analysis and Vision - Electonic Upload"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Jun-08	20350.00	="121/2006/07"	="Strategic Data Management PTY LTD"	11-Apr-08 09:23 AM	

+="CN69273"	"Write up of case studies on cleaner production"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	14-Mar-08	02-May-08	23331.00	="0708-1091"	="Biotext"	11-Apr-08 09:24 AM	

+="CN69274"	"Evaluate the extent of implementation of the National Water Quality Management Strategy"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	17-Mar-08	30-Jun-08	25000.00	="0708-662"	="John  C Bennett"	11-Apr-08 09:24 AM	

+="CN69280"	"National Scoping Study to investigate the potentia l impact of climate change on significant infrast"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Earth science services"	26-Mar-08	31-May-08	29700.00	="0708-627"	="Maunsell Australia"	11-Apr-08 09:25 AM	

+="CN69282"	"Data Records of Vertebrate Specimens"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Software"	26-Mar-08	24-Jun-08	22000.00	="0708-1135"	="Queensland Museum"	11-Apr-08 09:25 AM	

+="CN69287"	"Review of recharge mechanisms for the Great Artesian Basin Sustainability Initiative"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	28-Mar-08	30-Apr-08	30000.00	="0708-1164"	="CSIRO Accounts Receivable"	11-Apr-08 09:26 AM	

+="CN69294"	"Production of the report Energy Use in the Australian Government's operations 2006-2007"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Apr-08	29170.00	="0708-1140"	="Giraffe Visual Communication"	11-Apr-08 09:27 AM	

+="CN69300"	"Legal expenses"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Legal services"	25-Mar-08	31-Mar-08	20646.87	="0708-1141"	="Australian Government Solicitor"	11-Apr-08 09:28 AM	

+="CN69302"	"Delivery of a Health and Wellbeing Program"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Comprehensive health services"	25-Mar-08	24-Jun-08	21062.80	=""	="Corporate Bodies International"	11-Apr-08 09:28 AM	

+="CN69310"	"Writing Services - Strategic Assessment of the Vulnerability of Australia's Biodiversity"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Writing and translations"	07-Mar-08	26-Mar-08	24200.00	="0708-0689"	="Edgar & Partners Pty Ltd"	11-Apr-08 09:29 AM	

+="CN69325"	"implementation plan & functional specification"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Human resources services"	05-Mar-08	05-Mar-08	25000.00	="0708-878"	="Oakton AA Services Pty Limited"	11-Apr-08 09:31 AM	

+="CN69329"	"Analysis of Public Submissions"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	28-Mar-08	28-Mar-08	27434.00	="0708-919"	="URBIS JHD Pty Ltd"	11-Apr-08 09:32 AM	

+="CN69331"	"Australia Post Account for February 2008"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Transportation and Storage and Mail Services"	12-Mar-08	12-Mar-08	20726.78	="0708-1102"	="Australia Post"	11-Apr-08 09:32 AM	

+="CN69337"	"Supply and Install Fibre Optic cabling from Old Parliament House to the National Circuit splice"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	30-Apr-08	21450.00	="0708-1112"	="MRB Communications Pty Ltd"	11-Apr-08 09:33 AM	

+="CN69339"	"Designing of the Green Buildings and Design Conference Series 2008"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	13-Mar-08	30-Jun-08	25000.00	="0708-937"	="RMIT University"	11-Apr-08 09:33 AM	

+="CN69355"	" REPAIR PARTS FOR MEERKAT AND RED PACK MINE DETECTION VEHICLES "	="Defence Materiel Organisation"	11-Apr-08	="Vehicle bodies and trailers"	10-Apr-08	23-Jun-08	26916.30	=""	="THALES AUSTRALIA"	11-Apr-08 10:16 AM	

+="CN69357-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	12-Feb-08	30-Jun-08	23000.00	=""	="Mr James Emmett"	11-Apr-08 11:19 AM	

+="CN69362"	"Provision of Legal Services"	="Department of Parliamentary Services"	11-Apr-08	="Legal services"	31-Mar-08	30-Jun-08	22000.00	=""	="Blake Dawson"	11-Apr-08 11:40 AM	

+="CN69404"	"BEARING, BALL, ANNULAR - 3110/013180017"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	27-Mar-08	03-Jun-08	25239.00	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:31 PM	

+="CN69408"	" BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE - 2840/008770024 "	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	13-Mar-08	28-Mar-08	23230.00	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 01:47 PM	

+="CN69411"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	13-Feb-08	30-Jun-08	20000.00	=""	="Mr Justin Brereton"	11-Apr-08 01:51 PM	

+="CN69412"	"BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE - 2840/008770032"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	13-Mar-08	28-Mar-08	23298.00	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 01:54 PM	

+="CN69419"	"SPARES FOR THE BLASER TACTICAL 2 SNIPER RIFLE"	="Defence Materiel Organisation"	11-Apr-08	="Light weapons and ammunition"	22-Aug-07	01-Feb-08	21234.21	=""	="XTEK"	11-Apr-08 02:56 PM	

+="CN69421-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	13-Mar-08	30-Jun-09	30000.00	=""	="Mr Jason D Pizer"	11-Apr-08 03:02 PM	

+="CN69425-A2"	"Provision of cleaning services to the Tamwoth premises of CRS Australia"	="CRS Australia"	11-Apr-08	="General building and office cleaning and maintenance services"	23-Apr-07	21-Apr-10	27797.00	=""	="Wizard Cleaning"	11-Apr-08 03:31 PM	

+="CN69461"	"CONTRACT HEALTH PROVIDER - PATHOLOGY TECHNICIAN"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	19-Dec-07	31-Dec-07	22000.00	=""	="RAYMOND JOHNSTONE"	12-Apr-08 02:59 PM	

+="CN69472"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	27500.00	=""	="LIFESPORTS HEALTH PERSONNEL"	12-Apr-08 03:01 PM	

+="CN69477"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	23114.83	=""	="DREAD.MED PTY LTD"	12-Apr-08 03:01 PM	

+="CN69485"	"Consultancy to provide subject matter expertise on Ballistic works to support SFTF design"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	24772.18	=""	="CLIFF GREEN DESIGN"	12-Apr-08 03:03 PM	

+="CN69496"	"ROBERTSON BARRACKS - REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	21084.89	=""	="WOODS BAGOT PTY LTD"	12-Apr-08 03:04 PM	

+="CN69504"	"MEDAL RIBBON"	="Department of Defence"	12-Apr-08	="Fibres and threads and yarns"	27-Mar-08	30-Jun-08	26273.24	=""	="AUSTRALIAN RIBBON COMPANY"	12-Apr-08 03:05 PM	

+="CN69512"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	30-Jun-09	20712.97	=""	="CONNELL WAGNER PTY LTD"	12-Apr-08 03:06 PM	

+="CN69524"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	24010.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 03:08 PM	

+="CN69545"	"RAAF BASE AMBERLEY ENGINEERING SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	24695.00	=""	="GHD PTY LTD"	12-Apr-08 03:11 PM	

+="CN69546"	"Riverina Murray Valley Region - Install Base Management Systems"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Dec-07	30-Jun-08	21504.10	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-Apr-08 03:11 PM	

+="CN69548"	"WATSONIA REGIONAL TRAINING CENTRE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	22000.00	=""	="WOODS BAGOT"	12-Apr-08 03:11 PM	

+="CN69555"	"CONSULTANCY & REPORTING"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	22870.65	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:12 PM	

+="CN69575"	"CONTRACT HEALTH PRACTITIONER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jul-08	25667.20	=""	="DR WILLIAM C CROZIER"	12-Apr-08 03:15 PM	

+="CN69576"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	30000.00	=""	="SAGE LEGAL SERVICES PTY LTD"	12-Apr-08 03:15 PM	

+="CN69578"	"REACTIVE MAINTENANCE AND EQUIPMENT ATTRITION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	24130.68	=""	="TAIT ELECTRONICS PTY LTD"	12-Apr-08 03:16 PM	

+="CN69605"	" IT service and support "	="Department of Defence"	12-Apr-08	="Computer Equipment and Accessories"	06-Dec-07	30-Jun-08	27500.00	=""	="AWA LIMITED"	12-Apr-08 03:19 PM	

+="CN69606"	"DSTO FISHERMANS BEND STAGE 2 ENVIRONMENTAL INVESTIGATIONS 2006-07"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	22487.30	=""	="GUTTERIDGE HASKINS AND DAVEY PTY LT"	12-Apr-08 03:20 PM	

+="CN69608"	"services of senior systems engineer"	="Department of Defence"	12-Apr-08	="Management advisory services"	29-Nov-07	30-Jun-08	22902.59	=""	="CLONNAUGH PTY LTD"	12-Apr-08 03:20 PM	

+="CN69617"	"CONSTRUCTION WORKS"	="Department of Defence"	12-Apr-08	="General building construction"	23-Nov-07	30-Jun-08	26038.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:21 PM	

+="CN69645"	"Vehicle Lease and Petrol"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	23850.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 03:25 PM	

+="CN69672"	"HMAS STIRLING - REDEVELOPMENT STAGE 2"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	24118.61	=""	="IS SYSTEMS PTY LTD"	12-Apr-08 03:28 PM	

+="CN69675"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	22000.00	=""	="PROVIDENCE CONSULTING GROUP PL"	12-Apr-08 03:29 PM	

+="CN69699"	"Fitout 28 Fairbairn Ave, ACT"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Dec-07	30-Jun-08	25392.60	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:32 PM	

+="CN69731"	"Regional Weed Management 2007/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	26730.00	=""	="SPOTLESS"	12-Apr-08 03:36 PM	

+="CN69734"	"FIRE MANAGEMENT PLAN"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	30-Jun-08	27179.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:36 PM	

+="CN69736"	"AIRFIELD MAINTENANCE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	28226.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:36 PM	

+="CN69739"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	17-Mar-08	30-Oct-08	29615.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 03:37 PM	

+="CN69741"	"Financial Support to WSD"	="Department of Defence"	12-Apr-08	="Human resources services"	17-Jan-08	29-Feb-08	28315.23	=""	="DAINTREE SYSTEMS PTY LTD"	12-Apr-08 03:37 PM	

+="CN69752"	"HEALTH SERVICE - BNH"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	02-Apr-08	30-Jun-08	25606.90	=""	="LEE HARDWICK"	12-Apr-08 03:38 PM	

+="CN69760"	"ORTHOPAEDIC SURGEON - RICHMOND"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	03-Mar-08	30-Jun-08	29974.30	=""	="MICHAEL STENING-ORTHOPAEDIC SU"	12-Apr-08 03:40 PM	

+="CN69761"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	21-Dec-07	22000.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-Apr-08 03:40 PM	

+="CN69769"	"HMAS CERBERUS : SMALL ARMS TRAINING SECTION REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	22174.90	=""	="POLYTRONIC INTERNATIONAL LTD"	12-Apr-08 03:41 PM	

+="CN69795"	"CONSULYANCY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	03-Jan-08	22537.01	=""	="PSI CONSULTING PTY LTD"	12-Apr-08 03:43 PM	

+="CN69797"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	26301.00	=""	="FOURAY PTY LTD"	12-Apr-08 03:43 PM	

+="CN69811"	"Contract Extension to 4500558176 for options 1 & 2"	="Department of Defence"	12-Apr-08	="Professional engineering services"	22-Feb-08	27-Jun-08	30000.00	=""	="BLUEWATER SYSTEMS LTD"	12-Apr-08 03:44 PM	

+="CN69830"	"freight"	="Defence Materiel Organisation"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	27561.03	=""	="TNT AUSTRALIA"	12-Apr-08 03:46 PM	

+="CN69843"	"Patent Applications"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	20407.44	=""	="COLLISON & CO"	12-Apr-08 03:47 PM	

+="CN69865"	"SUPPLY OF LPG TO VARIOUS SECTIONS"	="Department of Defence"	12-Apr-08	="Gaseous fuels and additives"	12-Nov-07	30-Jun-08	25300.00	=""	="ORIGIN ENERGY PTY LTD"	12-Apr-08 03:48 PM	

+="CN69866"	"test & evaluvation services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Mar-08	29054.58	=""	="NOVA DEFENCE"	12-Apr-08 03:48 PM	

+="CN69912"	"GSR through life support contract"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-09	23583.10	=""	="THALES COMMUNICATIONS LIMITED"	12-Apr-08 03:51 PM	

+="CN69919"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	28019.75	=""	="HUTCHINSON COMMUNICATIONS"	12-Apr-08 03:52 PM	

+="CN69921"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	21606.75	=""	="HUTCHINSON COMMUNICATIONS"	12-Apr-08 03:52 PM	

+="CN69934"	"Provision of High Speed Link"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	20268.75	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	12-Apr-08 03:53 PM	

+="CN69946"	"CHARGE DEMOLITION BLOCK 600 GRAM"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	21-Dec-07	29337.67	=""	="THALES AUSTRALIA"	12-Apr-08 03:54 PM	

+="CN69963"	"ADVERTISING STAFF VACANCIES - FY 07/08"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	20900.00	=""	="HMA BLAZE PTY LTD"	12-Apr-08 03:55 PM	

+="CN69964"	"Repair and Overhaul of F/A-18 aircraft component."	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Apr-08	23401.26	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 03:55 PM	

+="CN69971"	"charges"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	25300.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-Apr-08 03:55 PM	

+="CN69973"	"Postal services from AFPO 8"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	20000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:56 PM	

+="CN69979"	"TECHNICAL ADVISER FOR RAAF BASE WILLIAMTOWN STAGE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	30-Jun-08	22000.00	=""	="ENVIRONMENTAL RESOURCES"	12-Apr-08 03:56 PM	

+="CN69982"	"Aircraft Docking and fall restraint system for AEWCSPO"	="Defence Materiel Organisation"	12-Apr-08	="Transport operations"	12-Nov-07	31-Dec-08	24826.00	=""	="JETFIELD CONSTRUCTIONS PTY LTD"	12-Apr-08 03:56 PM	

+="CN69995"	"Postal services from AFPO 12"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	22000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:57 PM	

+="CN70016"	"MAG 58 SPARES"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	02-Mar-08	20564.56	=""	="FN HERSTAL SA"	12-Apr-08 03:59 PM	

+="CN70018"	"HMAS STUART U28/04 - DEGAUSSING SYSTEM"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	25825.11	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:59 PM	

+="CN70028"	"T56 & AE2100 Engineering Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-May-08	20000.09	=""	="AMCE PTY LTD"	12-Apr-08 03:59 PM	

+="CN70041"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	30-Jun-08	22000.00	=""	="TOP RIDER PTY LTD"	12-Apr-08 04:00 PM	

+="CN70042"	"PROVISION OF EXTERNAL SERVICE PROVIDER SUPPORT TO AIR87"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Aug-08	20006.25	=""	="NOVA DEFENCE"	12-Apr-08 04:00 PM	

+="CN70045"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Oct-08	29558.10	=""	="DYNAMIC MEDIA PTY LTD"	12-Apr-08 04:01 PM	

+="CN70061"	"SUPPLY OF GROCERIES TO ROBERTSON BARRACKS FY 07-08"	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	13-Mar-08	30-Jun-08	21000.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	12-Apr-08 04:02 PM	

+="CN70064"	"Enhance AMPS application by inclusion of certiifca tion function."	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jan-08	20295.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-Apr-08 04:02 PM	

+="CN70077"	"PROVISION OF EXECUTIVE SUPPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	21-Dec-07	29700.00	=""	="HAYS PERSONNEL SERVICES"	12-Apr-08 04:03 PM	

+="CN70078"	"Engagement of PSP"	="Defence Materiel Organisation"	12-Apr-08	="Human resources services"	12-Nov-07	21-Dec-07	25000.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:03 PM	

+="CN70087"	"SUPPORT SERVICES TO HAWK PROJECT FOR KIRSTY STEGWA ZI UNDER FORTBURN STANDING OFFER 0506-271-275"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	30-Jun-08	22000.00	=""	="FORTBURN PTY LTD"	12-Apr-08 04:04 PM	

+="CN70105"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	31-Aug-08	21120.00	=""	="ROSS"	12-Apr-08 04:05 PM	

+="CN70111"	"LPG Supply"	="Department of Defence"	12-Apr-08	="Gaseous fuels and additives"	12-Nov-07	30-Jun-08	22000.00	=""	="ELGAS LTD"	12-Apr-08 04:05 PM	

+="CN70119"	"payment of employment fees for contractor Veronica Bradford 27 jun-28 Sept @$36.57/hr- 520 hours"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	26314.40	=""	="HAYS PERSONNEL SERVICES"	12-Apr-08 04:06 PM	

+="CN70123"	"TRAINING"	="Department of Defence"	12-Apr-08	="Education and Training Services"	16-Jan-08	08-Feb-08	29798.32	=""	="GWA CONSULTING"	12-Apr-08 04:06 PM	

+="CN70138"	"SCAN EAGLE - WSAT HMAS ARUNTA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	27893.57	=""	="SAAB SYSTEMS PTY LTD"	12-Apr-08 04:07 PM	

+="CN70141"	"ENGINE REBUILD FOR BAK12 AIRCRAFT ARRESTOR SYS"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	30-Jun-08	23448.11	=""	="TETERIN ENGINEERING PTY LTD"	12-Apr-08 04:07 PM	

+="CN70145"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	27-Nov-07	30-Jun-08	29500.00	=""	="ALBURY WODONGA PRIVATE HOSPITAL"	12-Apr-08 04:08 PM	

+="CN70151"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	16-Jan-08	30-Jun-08	22000.00	=""	="DOUGLASS HANLY MOIR PATHOLOGY"	12-Apr-08 04:08 PM	

+="CN70156"	"Land 58 Ph3 AN/TPQ - 36 WLR LOTE Prime Contract (EUR)"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Jun-08	28054.38	=""	="RAYTHEON AUSTRALIA"	12-Apr-08 04:08 PM	

+="CN70163"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	18-Feb-08	30-Jun-08	24750.00	=""	="ZACHARIA NAUMANN OPTOMETISTS"	12-Apr-08 04:09 PM	

+="CN70174"	"OHS REPRESENTATIVE HMAS SUCCESS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jan-08	22550.00	=""	="BOB PARKER SAFETY & TRAINING"	12-Apr-08 04:10 PM	

+="CN70188"	"Main rotor gearbox replacement s-70B-2 aircraft"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	29-Feb-08	28999.17	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-Apr-08 04:11 PM	

+="CN70190"	"Design, production & testing of installation kit"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	21697.70	=""	="A ENKELMAN & ASSOCIATES PTY LTD"	12-Apr-08 04:11 PM	

+="CN70192"	"OTHRSPO WAREHOUSING AND DISTRIBUTION"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	31-Dec-07	27139.54	=""	="RLM PTY LTD"	12-Apr-08 04:11 PM	

+="CN70195"	"VOICE CONSUMPTION COSTS FOR FY 07-08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	20469.30	=""	="AAPT TELECOMMUNICATIONS PTY LTD"	12-Apr-08 04:11 PM	

+="CN70197"	"ADVERTISING"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	22000.00	=""	="GEORGE PATTERSON Y & R"	12-Apr-08 04:11 PM	

+="CN70199"	"DISPOSAL OF FORTUNA, BENDIGO, VICTORIA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-Jun-08	28256.50	=""	="GODDEN MACKAY LOGAN PTY LTD"	12-Apr-08 04:11 PM	

+="CN70235"	"REGIONAL - POLLUTION PREVENT & CONTAM MGT - TANK MANAGEMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	21338.72	=""	="SPOTLESS"	12-Apr-08 04:14 PM	

+="CN70237"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	29-Nov-07	31-Dec-07	20551.20	=""	="CLAYTON UTZ"	12-Apr-08 04:14 PM	

+="CN70268"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	26000.00	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:16 PM	

+="CN70281"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	19-Nov-07	27375.53	=""	="RIO TINTO ALUMINIUM LIMITED"	12-Apr-08 04:17 PM	

+="CN70285"	"TRANSCRIPTION SERVICE"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	20000.01	=""	="NATIONAL TRANSCRIPTION SERVICES"	12-Apr-08 04:17 PM	

+="CN70299"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Sep-08	22219.24	=""	="THALES AUSTRALIA"	12-Apr-08 04:18 PM	

+="CN70301"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	18-Feb-08	25289.60	=""	="COUNTRY ENERGY"	12-Apr-08 04:19 PM	

+="CN70302"	"INDUCTION OF CARIBOU REPAIRABLE ITEMS"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	20244.90	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	12-Apr-08 04:19 PM	

+="CN70309"	"FAX MACHINE CONSUMABLES"	="Department of Defence"	12-Apr-08	="Office machines and their supplies and accessories"	12-Nov-07	30-Jun-08	22000.00	=""	="SHARP DIRECT"	12-Apr-08 04:19 PM	

+="CN70311"	"HIRE OF SCISSOR LIFT WORK PLATFORM WITH 6 MONTHS AT RAAF BASE DARWIN"	="Department of Defence"	12-Apr-08	="Tools and General Machinery"	12-Nov-07	30-Jun-08	22000.00	=""	="FORCE RENTALS"	12-Apr-08 04:19 PM	

+="CN70323"	"BUSINESS SUPPORT SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	27200.81	=""	="PROVIDENCE CONSULTING GROUP PL"	12-Apr-08 04:20 PM	

+="CN70327"	"meat and meat poduces for sasr"	="Department of Defence"	12-Apr-08	="Meat and poultry products"	29-Jan-08	30-Jun-08	30000.00	=""	="TOTAL MEAT SOLUTIONS"	12-Apr-08 04:20 PM	

+="CN70349"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.01	=""	="NATIONAL TRANSCRIPTION SERVICES"	12-Apr-08 04:22 PM	

+="CN70358"	"Capability Establishment Support for AEWC"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-Jun-08	22693.70	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 04:23 PM	

+="CN70359"	"Forklift hire under 12months"	="Department of Defence"	12-Apr-08	="Tools and General Machinery"	12-Nov-07	30-Jun-08	23100.00	=""	="WAVERLEY FORK LIFT"	12-Apr-08 04:23 PM	

+="CN70364"	"psp to update and maintain the Industry Policy Implementation Schedule"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	27500.00	=""	="KOBOLD SERVICES MELBOURNE"	12-Apr-08 04:23 PM	

+="CN70369"	"CONSULTANCY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-Nov-07	27900.00	=""	="KPMG"	12-Apr-08 04:23 PM	

+="CN70375"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Jan-08	28325.00	=""	="MCGRATH NICOL & PARTNERS"	12-Apr-08 04:24 PM	

+="CN70377"	"Services under Standing Offer SO 03/21"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-Apr-08	26535.63	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	12-Apr-08 04:24 PM	

+="CN70385"	"monitor roos, ACT"	="Department of Defence"	12-Apr-08	="Professional engineering services"	12-Nov-07	30-Jun-08	20047.23	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:24 PM	

+="CN70388"	"Heavy Grade repairs to ASLAV"	="Defence Materiel Organisation"	12-Apr-08	="Transportation services equipment"	12-Nov-07	15-Dec-07	26034.09	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Apr-08 04:25 PM	

+="CN70401"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20049.15	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:26 PM	

+="CN70403"	"WASTE REMOVAL"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	20000.00	=""	="STERICORP NSW PTY LTD"	12-Apr-08 04:26 PM	

+="CN70408"	"HOSPITAL HIRES"	="Defence Materiel Organisation"	12-Apr-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	22000.00	=""	="CORIN AUSTRALIA PTY LTD"	12-Apr-08 04:26 PM	

+="CN70417"	"AIR CHTR OP DELUGE"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	28-Nov-07	31-Dec-07	22027.25	=""	="INDEPENDENT AVIATION PTY LTD"	12-Apr-08 04:27 PM	

+="CN70419"	"Provision of Professional Services for the function of support to the CDS"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	21-Dec-07	29370.00	=""	="MCKENZIE ASSOCIATES"	12-Apr-08 04:27 PM	

+="CN70430"	"SCRIBE SERVICES FOR INTERVIEWS CONDUCTED"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	22000.00	=""	="DAVID MORGAN WILLIAMS PTY LTD"	12-Apr-08 04:28 PM	

+="CN70438"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	31-Mar-08	21832.00	=""	="MINTER ELLISON"	12-Apr-08 04:28 PM	

+="CN70447"	"Scribe services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	22000.00	=""	="SALLY WODZINSKI"	12-Apr-08 04:29 PM	

+="CN70452"	"Transition Work HMAS SUCCESS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-May-08	29440.91	=""	="THALES AUSTRALIA"	12-Apr-08 04:29 PM	

+="CN70484"	"install dishwasher HMAS MANOORA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Nov-07	21226.26	=""	="FORGACS DOCKYARD"	12-Apr-08 04:32 PM	

+="CN70486"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	28391.00	=""	="BLAKE DAWSON WALDRON"	12-Apr-08 04:32 PM	

+="CN70496"	"PROCUREMENT OF QUANTITY 24 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	28-Mar-08	29542.83	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:32 PM	

+="CN70501"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Nov-07	27610.00	=""	="LOGISTICS ASSOCIATION OF"	12-Apr-08 04:33 PM	

+="CN70503"	"HMAS CERBERUS STAGE 2 ENVIRONMENTAL INVESTIGATION FOR LEAD CONSULTANT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	29458.00	=""	="SMEC AUSTRALIA"	12-Apr-08 04:33 PM	

+="CN70507"	"REPLACEMENT OF FIRE WALL AT DEOH"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	29337.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 04:33 PM	

+="CN70508"	"Hire Car bookings thru Hertz"	="Defence Materiel Organisation"	12-Apr-08	="Transport operations"	11-Nov-07	30-Aug-08	23958.03	=""	="HERTZ AUSTRALIA PTY LTD"	12-Apr-08 04:33 PM	

+="CN70512"	"Hire of Containerised Kitchens"	="Defence Materiel Organisation"	12-Apr-08	="Industrial food and beverage equipment"	11-Nov-07	30-Apr-08	24028.01	=""	="KITCHENS ON THE RUN AUSTRALIA"	12-Apr-08 04:33 PM	

+="CN70519"	"AIR CHTRS OP ASTUTE RIP"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Nov-07	20735.00	=""	="PDL TOLL"	12-Apr-08 04:34 PM	

+="CN70527"	"NEWSPAPERS AND MAGAZINES SHIPS WELFARE AMENITIES"	="Department of Defence"	12-Apr-08	="Printed media"	12-Nov-07	30-Jun-08	28021.26	=""	="CENTRAL PYRMONT NEWSAGENCY"	12-Apr-08 04:35 PM	

+="CN70529"	"NEWSPAPERS AND MAGAZINES SHIPS WELFARE AMENITIES"	="Department of Defence"	12-Apr-08	="Printed media"	12-Nov-07	30-Jun-08	24268.26	=""	="SOUND NEWS"	12-Apr-08 04:35 PM	

+="CN70541"	"Hire of vehicles"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	22000.00	=""	="THRIFTY CAR RENTALS"	12-Apr-08 04:36 PM	

+="CN70548"	"Training Course"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	09-Apr-08	22000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	12-Apr-08 04:36 PM	

+="CN70557"	"STAGE 1ENVIRONMENTAL INVESTIGATIONS ADFA ACT/SNSW REGION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	26400.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 04:37 PM	

+="CN70565"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	26230.71	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:37 PM	

+="CN70587"	"CONTRACTOR SUPPORT SERVICES - CDD"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	23188.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:39 PM	

+="CN70588"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-May-08	20094.27	=""	="PILATUS AIRCRAFT LTD"	12-Apr-08 04:39 PM	

+="CN70596"	"Power supply upgrade - buidling 321"	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	30-Jun-08	21082.00	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:39 PM	

+="CN70602"	"PROCUREMENT OF QUANTITY 25 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	31-Dec-07	26428.33	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 04:40 PM	

+="CN70610"	"Re-tensioning of stay bolts and thrust bearing checks."	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	15-Mar-09	29863.68	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-Apr-08 04:40 PM	

+="CN70612"	"cable assembly"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	15-Jun-08	28099.69	=""	="ROLLS - ROYCE PLC"	12-Apr-08 04:41 PM	

+="CN70616"	"Support services for AASSPO DATA management implementation"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	07-Apr-08	25305.01	=""	="UXC LIMITED"	12-Apr-08 04:41 PM	

+="CN70617"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-07	30000.00	=""	="KPMG"	12-Apr-08 04:41 PM	

+="CN70620"	"AIRFARES"	="Defence Materiel Organisation"	12-Apr-08	="Passenger transport"	12-Nov-07	31-Jan-08	27782.97	=""	="QANTAS AIRWAYS LTD"	12-Apr-08 04:41 PM	

+="CN70621"	"Used Ammunition Sorting - Unit Magazine Campbell"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	25000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 04:41 PM	

+="CN70626"	"RMIMR TAMOR SAT support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	20071.70	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-Apr-08 04:42 PM	

+="CN70627"	"SA2361 WPA CONTRACTOR & DOMESTIC LANDFILL ENVIRONMENTAL PLANS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	21142.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:42 PM	

+="CN70645"	"EMERGENCY REPAIR OF FIBRE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	21219.00	=""	="APEX COMMUNICATION TECHNOLOGIES"	12-Apr-08 04:43 PM	

+="CN70686-A1"	"Scoping study of Financial Management"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	30000.00	=""	="KPMG (CANBERRA)"	14-Apr-08 09:34 AM	

+="CN70687"	"LOCKERS"	="Australian Taxation Office"	14-Apr-08	="Furniture and Furnishings"	09-Apr-08	30-Apr-08	25872.00	=""	="SPACEPAC INDUSTRIES"	14-Apr-08 09:37 AM	

+="CN70688"	"Printing - Training material for Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	25-Jan-08	25-Jan-08	21068.01	=""	="Snap Printing"	14-Apr-08 09:37 AM	

+="CN70699"	"FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	08-Apr-08	28406.64	=""	="DUUS & CO"	14-Apr-08 09:58 AM	

+="CN70703"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	09-Apr-08	25729.83	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70705"	"IT Contractor"	="Australian Taxation Office"	14-Apr-08	="Engineering and Research and Technology Based Services"	10-Apr-07	23-May-08	21120.00	=""	="COMPAS PTY LTD"	14-Apr-08 10:00 AM	

+="CN70709"	"Provision for SDV hard drives and maintenance"	="Comsuper"	14-Apr-08	="Hardware"	20-Mar-08	30-Jun-08	28946.50	=""	="Secure Systems Limited"	14-Apr-08 10:16 AM	

+="CN70741"	"Office supplies - Polycom HDX 8004 XL HD Package"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	25683.10	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:29 PM	

+="CN70746"	"Employer Advisor Programme"	="Workplace Authority"	14-Apr-08	="Work related organisations"	06-Aug-07	30-Jun-08	21747.50	=""	="Master Builders Australia Incorporation"	14-Apr-08 12:39 PM	

+="CN70753"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	27610.00	=""	="Greythorn"	14-Apr-08 12:50 PM	

+="CN70762"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	31-Jul-07	30-Jun-08	28994.64	=""	="Cubic Consulting"	14-Apr-08 12:55 PM	

+="CN70786"	"Legal fees"	="Family Court of Australia"	14-Apr-08	="Legal services"	04-Feb-08	28-Feb-08	22347.33	=""	="Australian Government Solicitor"	14-Apr-08 01:40 PM	

+="CN70794"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	27-Jul-07	30-Jun-08	28216.80	=""	="Julia Ross Personnel"	14-Apr-08 02:20 PM	

+="CN70805"	"VEHICLE BATTERIES (MILITARY VERSION)"	="Department of Defence"	14-Apr-08	="Vehicle batteries"	28-Mar-08	18-Apr-08	20373.21	=""	="EXIDE TECHNOLOGIES PTY LTD"	14-Apr-08 03:17 PM	

+="CN70809"	"Australia New Zealand Agents Workshop - AEI Participation"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20000.00	="PRN17759"	="EDMEDIA STUDENT RECRUITMENT PTY"	14-Apr-08 03:50 PM	

+="CN70819-A1"	"Design, document and contract administration, 71 Northbourne Ave L2-4"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	03-Sep-07	30-Apr-08	25000.00	="PRN18364"	="PECKVONHARTEL"	14-Apr-08 03:55 PM	

+="CN70826"	"2004 Benchmark results"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	20-Dec-07	18-Jan-08	24395.00	="PRN15440"	="MINISTERIAL COUNCIL ON EDUCATION,"	14-Apr-08 03:59 PM	

+="CN70856-A1"	"Procurement of services for recruitment activity for HR"	="Australian Securities and Investments Commission"	14-Apr-08	="Human resources services"	03-Mar-08	30-Jun-08	28000.00	=""	="HR Partners"	14-Apr-08 04:15 PM	

+="CN70861"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	04-Apr-08	30-Jun-08	20000.00	=""	="Ms Elizabeth Cheeseman"	14-Apr-08 04:24 PM	

+="CN70862"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	28-Aug-07	11-Sep-07	20000.00	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	14-Apr-08 04:26 PM	

+="CN70863"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	20-Jun-07	20-Aug-07	21807.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70886"	"ONLINE RECRUITMENT SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	29-Mar-07	28-Mar-09	22000.00	=""	="NGA.NET PTY LTD"	14-Apr-08 04:42 PM	

+="CN70896"	"VMWARE MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	01-Apr-08	01-Apr-08	20075.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:44 PM	

+="CN70903"	"REPAIRS AND MAINTENANCE SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	08-Apr-08	26393.40	=""	="INTAFIX PTY LTD"	14-Apr-08 04:45 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val300000to999999999.xls
@@ -1,1 +1,274 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68850"	"Services to upgrade DFAT's HRMIS"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	04-Jul-07	30-Jun-08	627550.00	=""	="OAKTON AA SERVICES PTY LTD"	10-Apr-08 08:57 AM	

+="CN68464"	"Licence and Support Contract - Commercial off-the-shelf Software"	="Australian Securities and Investments Commission"	10-Apr-08	="License management software"	17-Nov-07	17-Nov-10	2185151.10	=""	="Objective Corporation Limited"	10-Apr-08 10:35 AM	

+="CN68872-A1"	"Strategic Advisor to ICT Sourcing Program."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	436818.80	="07.102"	="The Boston Consulting Group Pty Ltd"	10-Apr-08 11:18 AM	

+="CN66302-A1"	"eBusiness Migration Development."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	03-Dec-07	15-Feb-08	423771.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:22 AM	

+="CN68468"	"Contract for the Provision of Services number ITS2006/21665"	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	15-Nov-07	15-Nov-09	1032054.38	=""	="Objective Corporation Limited"	10-Apr-08 11:44 AM	

+="CN68884-A1"	"Wave 4 of ATO Professionalism Survey. Related contracts (GAPS ID) 1620332 (Wave 1), 1672428 (Wave 2), CN42078 (Wave 3)"	="Australian Taxation Office"	10-Apr-08	="Market research"	16-Jan-08	31-Aug-09	416993.00	=""	="DBM Consultants Pty Ltd"	10-Apr-08 12:16 PM	

+="CN68916"	"Westmoreland - Normanton Gravity Survey (inclusive of full stand-by) {Ref: 2007/3777]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	674150.84	=""	="Integrated Mapping Technologies Pty Ltd"	10-Apr-08 01:47 PM	

+="CN68917"	"Byro Airborne Magnetic and Radiometric Survey (inclusive of full stand-by) [Ref 2007/4542]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	705857.33	=""	="GPX Aeroscience Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68918"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by) [Ref: 2007/3575]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	338238.23	=""	="Thomson Aviation Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68919"	"Bass Strait Airborne Magnetic Survey (inclusive of full stand-by) [Ref: 2007/3573]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	426926.50	=""	="Thomson Aviation Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68920"	"2008 Darling Rankins Springs Seismic Survey"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	935000.00	=""	="Terrex Seismic"	10-Apr-08 01:48 PM	

+="CN68970"	"Design and Implementation of National Water Quality Management Strategy Regional Workshops"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	31-Jan-08	10-Jan-09	528170.00	="0607-126"	="Gutteridge Haskins & Davey pty ltd"	10-Apr-08 02:17 PM	

+="CN69012-A1"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF "	="Defence Materiel Organisation"	10-Apr-08	="Camping and outdoor equipment and accessories"	11-Apr-08	07-Jul-08	439340.00	=""	="DOMINION EXPORTERS"	10-Apr-08 02:57 PM	

+="CN69020"	"Supply and Distribution of GA Satellite Image Data Products"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	01-Sep-10	1404260.00	="0708-0408"	="Geoscience Australia"	10-Apr-08 03:11 PM	

+="CN69025-A1"	"Removals & Relocations Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Accommodation furniture"	20-Feb-08	30-Jun-10	494306.54	="0607-063"	="Balfran Removals"	10-Apr-08 03:12 PM	

+="CN69035-A2"	"Media Monitoring services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Communications Devices and Accessories"	18-Feb-08	30-Jun-08	445256.04	="0708-797"	="Media Monitors Australia Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69037"	"salinity mapping Services for the Murray-Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	12-Feb-08	30-Jun-08	953700.00	="0708-881"	="Dept. Agriculture, Fisheries &"	10-Apr-08 03:14 PM	

+="CN69047-A3"	"Electronic Grants Management System Implementation Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	30-Nov-10	1452592.00	="0607-061"	="CA(Pacific) PTY.LTD"	10-Apr-08 03:15 PM	

+="CN69087-A2"	"Provision of secretariate and support services to the great artesian basin coordinating committee"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	18-Jan-08	31-Oct-10	539962.50	="0708-040"	="The Trustee for Secretariat Australia"	10-Apr-08 03:21 PM	

+="CN69014"	"Workers Comp premium"	="Workplace Authority"	10-Apr-08	="Healthcare Services"	28-Jan-08	30-Jun-08	350987.00	=""	="Comcare"	10-Apr-08 03:25 PM	

+="CN69218"	"Acquisition of Hardware & support services associated with RT018/2007"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	28-Mar-08	09-Apr-08	669844.98	=""	="Dell Australia  Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69234"	" TOOLS AND ACCESSORIES FOR THE .338 SNIPER WEAPONS. "	="Defence Materiel Organisation"	10-Apr-08	="Light weapons and ammunition"	05-Dec-07	03-Apr-08	366442.38	=""	="XTEC"	10-Apr-08 04:16 PM	

+="CN69244"	"Property Rental"	="Workplace Authority"	10-Apr-08	="Lease and rental of property or building"	20-Nov-07	30-Jun-08	3732542.40	=""	="United Group Services"	10-Apr-08 04:39 PM	

+="CN69305"	"Supply and Distribution of GA satellite Image data and Data Products"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Computer services"	07-Mar-08	30-Jun-10	1320000.00	=""	="Geoscience Australia"	11-Apr-08 09:28 AM	

+="CN69371-A1"	"A23 AIRCRAFT - SUPPLY OF PT6A-62 ENGINE SPARE PARTS"	="Defence Materiel Organisation"	11-Apr-08	="Military fixed wing aircraft"	30-Aug-03	30-Jun-10	4250000.00	=""	="PRATT & WHITNEY CANADA (A'ASIA) PTY LTD"	11-Apr-08 12:00 PM	

+="CN69378"	"A23 AIRCRAFT - MAINTENANCE OF PROPELLERS AND COMPONENTS"	="Defence Materiel Organisation"	11-Apr-08	="Military fixed wing aircraft"	02-Jun-95	30-Jun-10	3000000.00	=""	="TENIX AVIATION PTY LTD"	11-Apr-08 12:12 PM	

+="CN69399"	"Clarion CX380 - Server component for hard disk storage. (Including 36 months Maintenance)"	="Australian Federal Police"	11-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	537539.26	="06/9449"	="Dimension Data Australia Pty Limited"	11-Apr-08 01:23 PM	

+="CN69427"	" Purchase of Headset stock for Tax Office.   The original contract amount has been gazetted under the 'old' gazettal publishing system GAPS ID 1500390 (for $1,588,542.60), GAPS ID 1671000 (for $150,240) and GAPS ID 1513947 (for $758,560) refers.  This gazettal reflects the increase ($390,126.00)  to the contract from $2,497,342.60 to $2,887,468.60.  "	="Australian Taxation Office"	11-Apr-08	="Engineering and Research and Technology Based Services"	18-Feb-08	30-Jun-08	390126.00	="ITO-337"	="Polaris Communications Pty Ltd"	11-Apr-08 03:48 PM	

+="CN69428-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	11-Apr-08	="Project management"	02-Apr-08	27-Jul-08	1673307.90	=""	="Manteena Pty Ltd"	11-Apr-08 04:02 PM	

+="CN69436"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	344407.61	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 01:53 PM	

+="CN69449"	"MICROSOFT ENTERPRISE SUBSCRIPTION AGREEMENT 11 SEP 2000 TO 01 NOV 2006"	="Department of Defence"	12-Apr-08	="Computer services"	22-Nov-07	30-Sep-08	12265000.00	=""	="MICROSOFT INSTITUTE PTY LTD"	12-Apr-08 02:58 PM	

+="CN69458"	"EDUCATION"	="Department of Defence"	12-Apr-08	="Education and Training Services"	11-Dec-07	04-Jan-08	1554488.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-Apr-08 02:59 PM	

+="CN69462"	"Maintenance Services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	25-Dec-07	16312870.77	=""	="BOEING AUSTRALIA LTD"	12-Apr-08 02:59 PM	

+="CN69479"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	31-Mar-08	535700.00	=""	="RED ALLIANCE PTY LTD"	12-Apr-08 03:02 PM	

+="CN69484"	"CONTACT ADVISORY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-May-09	565853.75	=""	="DELSON SYSTEMS PTY LTD"	12-Apr-08 03:02 PM	

+="CN69490"	"Delivery of CMC CNNSW - GB & FM Routine Maintenance work directions for FY05-06"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	500000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:03 PM	

+="CN69493"	"AIRFIELD LIGHTING"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	30-Jun-08	323279.00	=""	="TPE INTEGRATED SERVICES"	12-Apr-08 03:04 PM	

+="CN69498"	"RENTAL AGREEMENT FOR PRINTERS AT DPS Nationally"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	820066.06	=""	="CANNON AUSTRALIA PTY LTD"	12-Apr-08 03:04 PM	

+="CN69499"	"RAAF REMOVALS COSTS UNTIL 30 JUN 2008"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	18-Dec-07	30-Jun-10	81790000.00	=""	="TOLL TRANSITIONS"	12-Apr-08 03:04 PM	

+="CN69500"	"ARMY REMOVAL COSTS UNTIL 30 JUN 2008"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	158888000.00	=""	="TOLL TRANSITIONS"	12-Apr-08 03:05 PM	

+="CN69502"	"REMOVALS COSTS"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	28-Feb-08	30-Jun-10	24100000.00	=""	="TOLL TRANSITIONS"	12-Apr-08 03:05 PM	

+="CN69510"	"CANUNGRA REDEVELOPMENT - DELIVERY PHASE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	715000.00	=""	="JOHN HOLLAND CONSTRUCTION PTY LTD"	12-Apr-08 03:06 PM	

+="CN69516"	"SWITCHBOARD SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	13-Dec-08	5680753.06	=""	="EXCELIOR PTY LTD"	12-Apr-08 03:07 PM	

+="CN69519"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	18-Dec-07	30-Jun-08	2338600.00	=""	="THE UNIVERSITY OF QUEENSLAND"	12-Apr-08 03:07 PM	

+="CN69520"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	18-Dec-07	30-Jun-08	2568500.00	=""	="THE UNIVERSITY OF QUEENSLAND"	12-Apr-08 03:07 PM	

+="CN69527"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	03-Dec-08	3258345.20	=""	="NEC BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:08 PM	

+="CN69530"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	19-Nov-07	19-Nov-07	662476.65	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	12-Apr-08 03:09 PM	

+="CN69534"	"RAAF AMBERLEY- RELOCATION OF 9 FSB"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-10	2358410.46	=""	="LEIGHTON CONTRACTORS PTY LTD"	12-Apr-08 03:09 PM	

+="CN69537"	"Routine General Building Works"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	880000.03	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:10 PM	

+="CN69538"	"Management Services and Fees"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-11	13731914.23	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:10 PM	

+="CN69540"	"HOLSWORTHY SPECIAL OPERATIONS WORKING ACCOMODATION & BASE REDEVELOPMENT STAGE 1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-10	6977364.05	=""	="JOHN HOLLAND PTY LTD"	12-Apr-08 03:10 PM	

+="CN69542"	"SINGLE LEAP - PROBITY ADVICE & SERVICES FOR PHASE 2 PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	331463.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 03:11 PM	

+="CN69557"	"OVERSEAS LEASE PAYMENTS"	="Department of Defence"	12-Apr-08	="Personal and Domestic Services"	12-Nov-07	30-Jun-18	29578585.04	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-Apr-08 03:13 PM	

+="CN69558"	"SALE AND LEASE BACK LEASES"	="Department of Defence"	12-Apr-08	="Personal and Domestic Services"	12-Nov-07	30-Jun-18	577334479.32	=""	="RESERVE BANK OF AUSTRALIA"	12-Apr-08 03:13 PM	

+="CN69559"	"DOMESTIC LEASES"	="Department of Defence"	12-Apr-08	="Personal and Domestic Services"	12-Nov-07	30-Jun-18	713560029.50	=""	="RESERVE BANK OF AUSTRALIA"	12-Apr-08 03:13 PM	

+="CN69561"	"software licences"	="Department of Defence"	12-Apr-08	="Financial and Insurance Services"	22-Nov-07	30-Jun-08	10195394.01	=""	="KAZ GROUP PTY LTD"	12-Apr-08 03:13 PM	

+="CN69564"	"GOODS"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	03-Jun-10	2969348.80	=""	="MILSKIL PTY LTD"	12-Apr-08 03:14 PM	

+="CN69565"	"Aviation Training"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	31-Dec-12	80793121.01	=""	="RIVERINA INSTITUTE OF TAFE"	12-Apr-08 03:14 PM	

+="CN69568"	"NATIONAL SPATIAL INFORMATION MANAGEMENT SYSTEM PROJECT MANAGEMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Jun-08	429447.27	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:14 PM	

+="CN69581"	"CADETNET ENHANCEMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	928400.00	=""	="DIALOG INFORMATION TECHNOLOGY"	12-Apr-08 03:16 PM	

+="CN69582"	"BANDIANNA JLU (V) WAREHOUSING FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	349688.90	=""	="ARUP"	12-Apr-08 03:16 PM	

+="CN69585"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	417676.70	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:17 PM	

+="CN69587"	"COMMS & IT SUPPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	9884522.20	=""	="TELSTRA BUSINESS SYSTEMS PTY LTD"	12-Apr-08 03:17 PM	

+="CN69596"	"Construction of Regimental Aid Post facility at Singleton Military Area"	="Department of Defence"	12-Apr-08	="General building construction"	18-Dec-07	30-Jun-08	668131.02	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:18 PM	

+="CN69602"	"ROAD MAINTENANCE"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	20-Feb-08	30-Jun-08	543213.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:19 PM	

+="CN69612"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	08-Jan-08	512609.17	=""	="GARTNER AUSTRALASIA PTY LIMITED"	12-Apr-08 03:20 PM	

+="CN69623"	"MULTI ROLE HELICOPTER FACILITIES (AIR 9000 PH 4 & 6A - BLACKHAWK AND SEA KING REPLACEMENT)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	498322.00	=""	="GHD PTY LTD"	12-Apr-08 03:22 PM	

+="CN69629"	"Procurement Management Service"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	687669.99	=""	="ALLIANCE CONSULTING GROUP P/L"	12-Apr-08 03:22 PM	

+="CN69631"	"PROCUREMENT SUPPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	317459.73	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 03:23 PM	

+="CN69632"	"11 BRIGADE FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-09	693783.86	=""	="THIESS PTY LTD"	12-Apr-08 03:23 PM	

+="CN69641"	"REPAIR WORKS ON ROADS AND FIRE TRAILS"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	1425000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:24 PM	

+="CN69642"	"TACTICAL UNMANNED AERIAL VEHICLE (JP129)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-09	2391681.03	=""	="THOMAS & COFFEY LTD"	12-Apr-08 03:24 PM	

+="CN69650"	"HARDENED AND NETWORKED ARMY-ADELAIDE FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1812127.76	=""	="GHD PTY LTD"	12-Apr-08 03:25 PM	

+="CN69651"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1288711.38	=""	="GHD PTY LTD"	12-Apr-08 03:25 PM	

+="CN69654"	"HOLSWORTHY : SPECIAL OPERATIONS WORKING ACCOMODATION & BASE REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	2013763.40	=""	="HLA-ENVIROSCIENCES PTY LTD"	12-Apr-08 03:26 PM	

+="CN69656"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	690000.00	=""	="WALTER TURNBULL PTY LTD"	12-Apr-08 03:26 PM	

+="CN69657"	"HELICOPTER CAPABILITY INCLUDING MAINTENANCE AND ENGINEERING SUPPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-11	696781.80	=""	="RAYTHEON AUSTRALIA PTY LTD (ASIS)"	12-Apr-08 03:26 PM	

+="CN69658"	"PROOF & EXPERIMENTAL ESTABLISHMENT GRAYTOWN REFURBISHMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	312417.05	=""	="COLIN JOSS & CO PTY LTD"	12-Apr-08 03:26 PM	

+="CN69659"	"DARWIN NAVAL BASE : PATROL BOATS FACILITIES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	345439.16	=""	="JOHN HOLLAND CONSTRUCTIONS PTY LTD"	12-Apr-08 03:26 PM	

+="CN69661"	"BENDIGO : DIGO RELOCATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	5246754.75	=""	="COLIN JOSS & CO PTY LTD"	12-Apr-08 03:27 PM	

+="CN69663"	"ADMINISTRATION OF HARDCOPY LICENCE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	25-Feb-08	302622.30	=""	="COPYRIGHT AGENCY LTD"	12-Apr-08 03:27 PM	

+="CN69665"	"Various upgrades to Power and surge protection & building works to Fac 536 at RAAF Base Williamtown"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	563500.00	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:27 PM	

+="CN69671"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-Apr-08	="Management advisory services"	27-Nov-07	13-Mar-08	1100121.92	=""	="INTEGRAL CONSULTING SERVICES"	12-Apr-08 03:28 PM	

+="CN69681"	"BORIS Sustainment"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Mar-08	492496.06	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-Apr-08 03:29 PM	

+="CN69682"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	28-Feb-10	400620.53	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	12-Apr-08 03:29 PM	

+="CN69686"	"ROMAN UPGRADE IMPLIMENTATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	31-Dec-07	674099.73	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 03:30 PM	

+="CN69688"	"MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	428838.45	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:30 PM	

+="CN69690"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	770000.00	=""	="PERSEC SOLUTIONS PTY LTD"	12-Apr-08 03:30 PM	

+="CN69693"	"CONTRACTOR SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	31-Jan-08	363000.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-Apr-08 03:31 PM	

+="CN69696"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	2110000.00	=""	="MITCHELL PERSONNEL SOLUTIONS PTY"	12-Apr-08 03:31 PM	

+="CN69706"	"HEALTH SERVICE POW SPINAL UNIT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	31-Mar-08	440000.00	=""	="DRAKE TRAINING"	12-Apr-08 03:33 PM	

+="CN69707"	"LIA Works Stirling"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	353913.17	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:33 PM	

+="CN69708"	"contractor services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	30-Dec-07	2083166.28	=""	="MANPOWER"	12-Apr-08 03:33 PM	

+="CN69710"	"Maritime Structural Repairs Stirling"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	949999.60	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:33 PM	

+="CN69712"	"GEW Routine Reactive Maintenance Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	874056.71	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:33 PM	

+="CN69713"	"ACT OFFICE ACCOMMODATION - TECHNICAL ADVISER SERVI"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	747173.90	=""	="WOODS BAGOT PTY LTD"	12-Apr-08 03:33 PM	

+="CN69717"	"Construct ADRHIB Storage facility Swanbourne"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	2677400.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:34 PM	

+="CN69721"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	06-Feb-08	385000.00	=""	="PEAK SECURITY"	12-Apr-08 03:34 PM	

+="CN69724"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	1843202.20	=""	="ERNST & YOUNG CONSULTING"	12-Apr-08 03:35 PM	

+="CN69725"	"RAAF DARWIN : FUEL EQUIPMENT MAINTENANCE SECTION."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	582663.53	=""	="JOHN HOLLAND CONSTRUCTIONS PTY LTD"	12-Apr-08 03:35 PM	

+="CN69743"	"UPGRADE OF COMPUTER SYSTEM"	="Department of Defence"	12-Apr-08	="Office machines and their supplies and accessories"	28-Feb-08	28-Feb-08	411136.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 03:37 PM	

+="CN69747"	"SASR CT - Special Training Facilities Maint Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	977499.99	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:38 PM	

+="CN69749"	"ROUTINE BUILDING MAINTENANCE FY 07/08"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	14-Nov-07	30-Jun-08	1502506.80	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:38 PM	

+="CN69782"	"Additional services for combat system augmentation support by Raytheon"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	20459080.40	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-Apr-08 03:42 PM	

+="CN69787"	"Defence Contribution for operation at ADI Mulwala."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Nov-07	30-Jun-08	386037.79	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-Apr-08 03:43 PM	

+="CN69792"	"IT NETWORK SUPPORT SERVICES FOR ANZAC SPO"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-08	1983211.44	=""	="CSC TECHNOLOGY SERVICES PTY LTD"	12-Apr-08 03:43 PM	

+="CN69793"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-08	328900.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:43 PM	

+="CN69794"	"FLIGHT INSPECTION SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	31-Dec-08	1104538.99	=""	="AIRSERVICES AUSTRALIA"	12-Apr-08 03:43 PM	

+="CN69798"	"Provision of Technical Support Services"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	21-Jan-10	550000.00	=""	="INNOVASYS"	12-Apr-08 03:43 PM	

+="CN69800"	"SUPPLY OF NAVIGATION DISPLAY SYSTEM"	="Defence Materiel Organisation"	12-Apr-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	4441712.91	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-Apr-08 03:44 PM	

+="CN69801"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	04-Mar-08	880000.00	=""	="STRATEGIC LEGAL SERVICES"	12-Apr-08 03:44 PM	

+="CN69802"	"UPPER AIR SOUNDING SYSTEMS (UASS)"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	574399.58	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:44 PM	

+="CN69804"	"Amendment to Contract 4500439389"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	28-Feb-09	1191169.13	=""	="JACOBS AUSTRALIA"	12-Apr-08 03:44 PM	

+="CN69806"	"Cart 105mm HOW HE Fzd PD M739A1"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	28-Dec-07	1084499.28	=""	="THALES AUSTRALIA"	12-Apr-08 03:44 PM	

+="CN69814"	"PURCHASE OF GENERATORS"	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	31-Jul-08	508831.13	=""	="CUMMINS SOUTH PACIFIC PTY LTD"	12-Apr-08 03:45 PM	

+="CN69815"	"Build DEBI Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	31-Dec-07	1265103.30	=""	="IBM AUSTRALIA LTD"	12-Apr-08 03:45 PM	

+="CN69816"	"Provision of ILS Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Feb-09	326912.16	=""	="QINETIQ NOVARE PTY LTD"	12-Apr-08 03:45 PM	

+="CN69818"	"Prime Contract for AIR9000 Ph2 - Euro"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-15	5758095.12	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 03:45 PM	

+="CN69824"	"Safety Case & Support Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	731280.00	=""	="TENIX SYSTEMS PTY LTD"	12-Apr-08 03:45 PM	

+="CN69826"	"INSTALLATION OF ADVANCED DRS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	467181.39	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:45 PM	

+="CN69835"	"CONTRACTOR SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	19-Nov-07	323466.62	=""	="SMS MANAGEMENT & TECHNOLOGY"	12-Apr-08 03:46 PM	

+="CN69838"	"Weapons Engineering Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Feb-09	336366.73	=""	="QINETIQ NOVARE PTY LTD"	12-Apr-08 03:46 PM	

+="CN69840"	"Sustainment Contract - EURO Component"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-18	5554789.51	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 03:46 PM	

+="CN69846"	"SAMS Annual Capability"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Jun-15	2871968.28	=""	="THALES AUSTRALIA"	12-Apr-08 03:47 PM	

+="CN69849"	"Comms Equip"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	28-Nov-07	30-Jun-08	696340.48	=""	="TELSTRA BILLING"	12-Apr-08 03:47 PM	

+="CN69850"	"JP 2070 Project DJIMINDI Lightweight Torpedo Project - Phase 3 - ET Works EURO Portion"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	31-Dec-16	1804933.28	=""	="EUROTORP"	12-Apr-08 03:47 PM	

+="CN69857"	"GBW REACTIVE MAINTENANCE IMMEDIATE AND URGENT WORK"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	665500.01	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:47 PM	

+="CN69861"	"GBW REACTIVE MAINTENANCE ROUTINE WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1712700.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:48 PM	

+="CN69867"	"CMC ALLOCATIONS & COMMITMENT -GB&FM MANAGEMENT FEE"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	332017.11	=""	="ASSET SERVICES"	12-Apr-08 03:48 PM	

+="CN69872"	"ASMD PAR PRE-PRODUCTION"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Aug-08	26875200.00	=""	="CEA TECHNOLOGIES PTY LTD"	12-Apr-08 03:49 PM	

+="CN69875"	"FACOPS - SA2374 MAINT TO DEFENCE HOUSING WOOM"	="Department of Defence"	12-Apr-08	="General building construction"	21-Feb-08	30-Jun-08	455400.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:49 PM	

+="CN69877"	"CMC ALLOCATIONS & COMMITMENT - FP&EM REACTIVE MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	16-Nov-07	30-Jun-08	437012.90	=""	="ASSET SERVICES"	12-Apr-08 03:49 PM	

+="CN69880"	"C338407 Part 2 Milestone 4-6"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Nov-08	4890600.00	=""	="HAWKER DE HAVILLAND PTY LTD"	12-Apr-08 03:49 PM	

+="CN69883"	"CMC ALLOCATIONS & COMMITMENT -GB&FM ROUTINE MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Nov-07	30-Jun-08	387891.02	=""	="ASSET SERVICES"	12-Apr-08 03:49 PM	

+="CN69892"	"Master in Engineering, Military Systems Integration"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	15-Jun-11	991037.40	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:50 PM	

+="CN69895"	"REPAIR MT BUNDY AFV FIELD TRAINING AREA"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	1591836.40	=""	="NORBUILT PTY LTD"	12-Apr-08 03:50 PM	

+="CN69897"	"CONTRACT CO8-HQ06 PSA SUPPORT TO DOCTRINE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	572588.64	=""	="JULIA ROSS HUMAN DIRECTIONS LTD"	12-Apr-08 03:50 PM	

+="CN69902"	"COOL AND COLD REFRIDGERATION SYSTEMS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	300352.78	=""	="THALES AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69904"	"Cartridge 105mm HE M1 Fzd PD M739A1"	="Defence Materiel Organisation"	12-Apr-08	="Metal and mineral industries"	12-Nov-07	30-Jun-08	309045.91	=""	="THALES AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69906"	"RPLSS Contract 2007"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	5886539.90	=""	="THALES AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69926"	"MHC IN SERIVE SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	696077.14	=""	="THALES AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69928"	"BAE SYSTEMS COMBAT SYSTEM ROUTINE SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Mar-08	1082720.44	=""	="THALES AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69929"	"HOLSWORTHY : 171 SQUADRON RELOCATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-09	319965.78	=""	="HANSEN YUNCKEN PTY LTD"	12-Apr-08 03:53 PM	

+="CN69930"	"Delivery of Logistics Systems Training July 06 - June 08"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	30-Jun-08	1160000.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-Apr-08 03:53 PM	

+="CN69941"	"ASBESTOS REMEDIATION WORKS - QUALITY ASSURANCE OF ASBESTOS AUDITS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1361913.76	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:53 PM	

+="CN69942"	"OLMU MILESTONE PAYMENTS AGAINST CAPOV309981"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	18-Dec-07	827674.24	=""	="QANTAS DEFENCE SERVICES PTY LTD"	12-Apr-08 03:53 PM	

+="CN69957"	"Oracle Software License fee and Support for UPK and Version 7"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	23-Jun-08	389774.72	=""	="ORACLE CORPORATION AUSTRALIA"	12-Apr-08 03:54 PM	

+="CN69960"	"LOGISTIC SUPPORT SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Feb-08	304793.22	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 03:55 PM	

+="CN69961"	"Riverina Murray Valley - Comprehensive Maintenance Contract Mgt of Service Fees"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Feb-08	30-Apr-10	1066111.60	=""	="SPOTLESS DEFENCE SERVICES"	12-Apr-08 03:55 PM	

+="CN69966"	"repair of thermal imagers"	="Defence Materiel Organisation"	12-Apr-08	="Manufacturing support services"	12-Nov-07	31-Aug-08	928400.00	=""	="THALES AUSTRALIA"	12-Apr-08 03:55 PM	

+="CN69970"	"SDSS e-business rollout management services"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	495000.00	=""	="MINCOM LTD"	12-Apr-08 03:55 PM	

+="CN69976-A1"	"PILS Software Support"	="Defence Materiel Organisation"	12-Apr-08	="Software maintenance and support"	12-Nov-07	31-Aug-11	1614202.78	=""	="OCEAN SOFTWARE PTY LTD"	12-Apr-08 03:56 PM	

+="CN69977"	"CMS MANAGEMENT FEE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	4493482.42	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:56 PM	

+="CN69984"	"Engagement of ESP"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	300080.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 03:56 PM	

+="CN69987"	"Provision of Professional SUpport in Vital Planning and Analysis (VIPA)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	10-Jun-08	595916.51	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 03:57 PM	

+="CN69997"	"Postal services from AFPO 13"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	300000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:57 PM	

+="CN70000"	"ISS - NON REPAIRABLE ITEMS"	="Defence Materiel Organisation"	12-Apr-08	="Electrical equipment and components and supplies"	22-Nov-07	30-Dec-07	435453.19	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:58 PM	

+="CN70010"	"Task 07/2005 Specialist Mission Integration Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	01-Jul-09	500512.77	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 03:58 PM	

+="CN70034"	"PROVIDE GFF"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	916000.00	=""	="DEFENCE SUPPORT GROUP - NORTHERN"	12-Apr-08 04:00 PM	

+="CN70040"	"AMPS Annual Software Maintenance & Support"	="Defence Materiel Organisation"	12-Apr-08	="Software maintenance and support"	12-Nov-07	31-Dec-08	1101989.46	=""	="EDEN TECHNOLOGY PTY LTD"	12-Apr-08 04:00 PM	

+="CN70048"	"ROCKET 66MM M72A6"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Apr-08	950017.46	=""	="NAMMO RAUFOSS A/S"	12-Apr-08 04:01 PM	

+="CN70080"	"service representative for c130j engine"	="Defence Materiel Organisation"	12-Apr-08	="Power generation"	12-Nov-07	30-Dec-09	935856.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-Apr-08 04:03 PM	

+="CN70102"	"AIMS Implementation into Clothing SPO"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	04-Dec-07	30-Jun-08	480562.50	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	12-Apr-08 04:05 PM	

+="CN70130"	"ACCEPTANCE TEST AND EVALUATION SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	355652.00	=""	="NOVA DEFENCE"	12-Apr-08 04:07 PM	

+="CN70132"	"Aircraft Maintenance Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	559450.50	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 04:07 PM	

+="CN70137"	"ROUTINE MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Nov-07	30-Jun-08	3454100.09	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:07 PM	

+="CN70139"	"PO FOR GB & FM SERVICES FY07/08 WOOMERA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	18-Dec-07	338069.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:07 PM	

+="CN70159"	"ELECTRICTY SUPPLY"	="Department of Defence"	12-Apr-08	="Power generation"	31-Jan-08	30-Sep-08	366745.03	=""	="AURORA ENERGY PTY LTD"	12-Apr-08 04:09 PM	

+="CN70161"	"ELECTRICTY SUPPLY"	="Department of Defence"	12-Apr-08	="Power generation"	19-Nov-07	19-Nov-07	1402031.19	=""	="ERGON ENERGY"	12-Apr-08 04:09 PM	

+="CN70171"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	28-Nov-07	30-Sep-08	840000.00	=""	="TRU ENERGY PTY LTD"	12-Apr-08 04:10 PM	

+="CN70176"	"4 ESP's FOR RODUM SUPPORT,CONTRACT LEA-CM-2007-015 MR R PACE,J MIOCEVICH,L DOWLLING, MS M RIBICIC"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	478028.00	=""	="ROSSLOGIC PTY LTD"	12-Apr-08 04:10 PM	

+="CN70178"	"3 ESP FOR RODUM SUPPORT CONTRACT LEA-CM-2007-016"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	467190.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-Apr-08 04:10 PM	

+="CN70180"	"3 ESP'S /MR P NEWMANL,M BEST,G WHYBROW"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	375031.00	=""	="SME GATEWAY LIMITED"	12-Apr-08 04:10 PM	

+="CN70193"	"HV Electrical Reticulation"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	30-Jun-08	328171.80	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:11 PM	

+="CN70198"	"Provision of operational HMS Evaluation Supoport"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-09	494955.91	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 04:11 PM	

+="CN70201"	"VOICE CONSUMPTION COSTS FOR FY 07-08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	17-Jun-08	557416.73	=""	="VODAFONE PTY LTD"	12-Apr-08 04:12 PM	

+="CN70208"	"Provide Project Management to Pegasus GWEO"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	02-May-08	337631.21	=""	="APP CORPORATION PTY LTD"	12-Apr-08 04:12 PM	

+="CN70209"	"Demountable Relocation"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	880000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:12 PM	

+="CN70211"	"VOICE CONSUMPTION COSTS FOR FY 07-08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	17-Jun-08	682501.47	=""	="OPTUS BILLING SERVICES PTY LTD"	12-Apr-08 04:12 PM	

+="CN70218"	"Support for IPSSR extension across MATIS"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	576040.05	=""	="CENTRIX - PM (AUST) PTY LTD"	12-Apr-08 04:13 PM	

+="CN70219"	"HOLSWORTHY: SPECIAL OPERATIONS WORKING ACCOMO"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	482130.67	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 04:13 PM	

+="CN70221"	"Building 608 & 609 Refurbishment"	="Department of Defence"	12-Apr-08	="General building construction"	12-Nov-07	30-Jun-08	1206891.45	=""	="SPOTLESS"	12-Apr-08 04:13 PM	

+="CN70222"	"Application Packaging support"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	28-Mar-08	561200.00	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 04:13 PM	

+="CN70223"	"PROJ ID 4131 WILR: CONSTRUCT CLASSROOMS ADF SCHOOL OF LANGUAGES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1103828.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:13 PM	

+="CN70244"	"Typhoon Installation & Mini Typhoon Re-siting for HMAS TOBRUK"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	20-Feb-08	1228318.78	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:15 PM	

+="CN70250"	"TS6009-4 ASMD PH2B"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Aug-13	384699.64	=""	="SAAB SYSTEMS PTY LTD"	12-Apr-08 04:15 PM	

+="CN70251"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	28-Nov-07	30-Sep-08	497557.01	=""	="JERVIS BAY TERRITORY ADMINISTRATION"	12-Apr-08 04:15 PM	

+="CN70260"	"Fuel Tank Refurbishment 07/08 on F-111"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Aug-08	6965625.70	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 04:16 PM	

+="CN70262"	"TLSA for 07/08"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	5235415.92	=""	="ASC PTY LTD"	12-Apr-08 04:16 PM	

+="CN70266-A1"	" TS82_VMF3 VMF/DLP RISK REDUTCION & BUSINESS CASE "	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	06-Nov-10	386214.87	=""	="SAAB SYSTEMS PTY LTD"	12-Apr-08 04:16 PM	

+="CN70269"	"AIR CHTR OP OUTREACH"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	20-Nov-07	31-Jan-08	477138.00	=""	="ADAGOLD AVIATION PTY LTD"	12-Apr-08 04:16 PM	

+="CN70275"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	19-Nov-07	2769404.43	=""	="THALES AUSTRALIA"	12-Apr-08 04:17 PM	

+="CN70277"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	30-Sep-08	424334.59	=""	="POWER AND WATER AUTHORITY"	12-Apr-08 04:17 PM	

+="CN70279"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	19-Nov-07	732328.81	=""	="HORIZON POWER"	12-Apr-08 04:17 PM	

+="CN70290"	"Logistics Flight Supplementation AA"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	313399.73	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:18 PM	

+="CN70293"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Sep-08	681673.69	=""	="ENERGY AUSTRALIA"	12-Apr-08 04:18 PM	

+="CN70295"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Sep-08	889461.47	=""	="COUNTRY ENERGY"	12-Apr-08 04:18 PM	

+="CN70296"	"Aircraft Sustainment T&M contingency Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	330000.00	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 04:18 PM	

+="CN70300"	"A04 CARIBOU SURVEY & QUOTES AGAINST CONTRACT"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	936990.63	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:18 PM	

+="CN70306"	"Trunk Communications"	="Defence Materiel Organisation"	12-Apr-08	="Telecommunications media services"	12-Nov-07	30-Jun-08	871671.27	=""	="GIGASAT ASIA PACIFIC PTY LTD"	12-Apr-08 04:19 PM	

+="CN70308"	"Communication Switching & Routing Network Equip"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	2069790.49	=""	="DATAVOICE CANBERRA PTY LTD"	12-Apr-08 04:19 PM	

+="CN70316"	"INSTALLATION OF EWSP MODIFICATION ON AIRCRAFT"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	15-Jun-08	420247.78	=""	="AUSTRALIAN AEROSPACE PTY LTD"	12-Apr-08 04:20 PM	

+="CN70322"	"SUPPLY OF DISTILLIATE FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	29-Nov-07	30-Jun-08	2568500.00	=""	="SEA SWIFT PTY LTD"	12-Apr-08 04:20 PM	

+="CN70324"	"SUPPLY OF DISTILLIATE FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	03-Jan-08	30-Jun-08	693500.00	=""	="SHELL CO OF AUSTRALIA LTD"	12-Apr-08 04:20 PM	

+="CN70329"	"ADVERTISING"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jan-09	3272500.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-Apr-08 04:21 PM	

+="CN70330"	"JP2077 PH2B - ARCHITECTURE SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	394801.97	=""	="DELOITTE TOUCHE TOHMATSU"	12-Apr-08 04:21 PM	

+="CN70333"	"RECRUITING FEES"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	31-Jan-09	37825700.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-Apr-08 04:21 PM	

+="CN70334"	"Army Watercraft ISS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	969241.98	=""	="THALES AUSTRALIA"	12-Apr-08 04:21 PM	

+="CN70335"	"RECRUITING FEES"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	31-Jan-09	2877500.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-Apr-08 04:21 PM	

+="CN70343"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	19-Nov-07	3186249.78	=""	="TRU ENERGY"	12-Apr-08 04:22 PM	

+="CN70346"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	1168200.00	=""	="MOBIL OIL AUSTRALIA PTY LTD"	12-Apr-08 04:22 PM	

+="CN70347"	"CONSUMPTION COSTS FOR DREAMS FY 07-08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	623880.31	=""	="TELSTRA"	12-Apr-08 04:22 PM	

+="CN70350"	"DEAKINPRIME CONDUCTED COURSES"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	30-Jun-08	990000.00	=""	="DEAKINPRIME"	12-Apr-08 04:22 PM	

+="CN70360"	"ADHOC SERVICES FOR MAINTENANCE OF 10 MAN CHAMBERS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	530940.92	=""	="H I FRASER PTY LTD"	12-Apr-08 04:23 PM	

+="CN70362"	"maintenance period for HMAS BENALLA and SHEPPARTON"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	26-Nov-07	31-Dec-07	809829.91	=""	="G A GLANVILLE & CO"	12-Apr-08 04:23 PM	

+="CN70370"	"Phase 1  long lead items for restoration & remediation of Aust Sub Rescue Capability Launch"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	9127680.60	=""	="OCEANWORKS INTERNATIONAL PTY LTD"	12-Apr-08 04:23 PM	

+="CN70381"	"PASS OFFICE SYSTEM MAINTENANCE COSTS"	="Department of Defence"	12-Apr-08	="Office machines and their supplies and accessories"	12-Nov-07	30-Jun-12	330000.00	=""	="CHUBB ELECTRONIC SECURITY"	12-Apr-08 04:24 PM	

+="CN70383"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	352000.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:24 PM	

+="CN70396"	"Configuration Management and Technical Investigations"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1358198.11	=""	="THALES AUSTRALIA"	12-Apr-08 04:25 PM	

+="CN70398"	"PSPs' for Mission Planning System"	="Defence Materiel Organisation"	12-Apr-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	351230.00	=""	="SIGMA BRAVO PTY LTD"	12-Apr-08 04:25 PM	

+="CN70399"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	357280.99	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 04:25 PM	

+="CN70402"	"LOE TASKS UNDER IMS FY 07/08 - URDEFS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	2585000.00	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:26 PM	

+="CN70412"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	1000055.00	=""	="MINTER ELLISON"	12-Apr-08 04:26 PM	

+="CN70418"	"MSA CORRECTIVE MAINTENANCE (URDEF) CAPO N260299"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	803591.79	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:27 PM	

+="CN70422"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	388696.00	=""	="CLAYTON UTZ"	12-Apr-08 04:27 PM	

+="CN70427"	"Variable Invoices 07/08 Garrison Support. RAAF Tindal & RAAF Curtin - Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	570081.42	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:27 PM	

+="CN70429"	"Variable Invoices 07/08 Garrison Support. Defence Establishment Berrimah - Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	700454.05	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:27 PM	

+="CN70431"	"Variable Invoices 07/08 Garrison Support. RAAF Darwin Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	746068.11	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:28 PM	

+="CN70432"	"Activities in support of re-scoped Phase 4 of the Australian Directed Infra-Red Countermeasure prog"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	954800.00	=""	="TENIX SYSTEMS PTY LTD"	12-Apr-08 04:28 PM	

+="CN70435"	"RELOCATION"	="Department of Defence"	12-Apr-08	="Transport operations"	12-Nov-07	30-Jun-08	554598.55	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:28 PM	

+="CN70442"	"PROJECT SUPPORT SERVICES - OPT"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	27-Jun-08	421261.99	=""	="KPMG"	12-Apr-08 04:28 PM	

+="CN70449"	"HMAS CERBERUS : SMALL ARMS TRAINING SECTION REDEVELOPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	770858.43	=""	="APM GROUP (AUST) PTY LTD"	12-Apr-08 04:29 PM	

+="CN70453"	"EVENT VEHICLE PROGRAME"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	521004.52	=""	="LAM AGENCY PTY LTD"	12-Apr-08 04:29 PM	

+="CN70454"	"BREECH BLOCK ASSY"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	01-Sep-08	501841.61	=""	="FN HERSTAL SA"	12-Apr-08 04:29 PM	

+="CN70458"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	11-Nov-07	30-Jun-08	381700.00	=""	="EXMOUTH FUEL SUPPLIES PTY LTD"	12-Apr-08 04:30 PM	

+="CN70465"	"Variable Invoices 07/08 Garrison Support. Robertson Barracks Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1118652.56	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:30 PM	

+="CN70467"	"Variable Invoices 07/08 Garrison Support. Ranges Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	726375.26	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:30 PM	

+="CN70473"	"Variable Invoices 07/08 Garrison Support. Larrakeyah Barracks & Darwin Naval Base Variable"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	2042883.45	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:31 PM	

+="CN70474"	"VARIOUS DENTAL CONSUMABLES"	="Defence Materiel Organisation"	12-Apr-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	301500.00	=""	="SYMBION DENTAL"	12-Apr-08 04:31 PM	

+="CN70477"	"AIRFORCE BRAND ADVERTISING ACTIVITES07/08"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	739455.73	=""	="UNIVERSAL MCCANN"	12-Apr-08 04:31 PM	

+="CN70488"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	1000338.80	=""	="ALLENS ARTHUR ROBINSON"	12-Apr-08 04:32 PM	

+="CN70494"	"Concept, Development and Design of Grader 130G BPC"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Mar-08	673758.40	=""	="THALES AUSTRALIA"	12-Apr-08 04:32 PM	

+="CN70509"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	28-Jan-08	607400.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 04:33 PM	

+="CN70511"	"PUCKAPUNYAL REDEVELOPMENT DSC - DEVELOPMENT PHASE (BVN)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	489500.00	=""	="BLIGH VOLLER NIELD PTY LTD"	12-Apr-08 04:33 PM	

+="CN70514"	"FFG Installation of ES 3701 Phase 1"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	11-Nov-07	23-Mar-08	711371.10	=""	="JENKINS ENGINEERING DEFENCE"	12-Apr-08 04:34 PM	

+="CN70516"	"CONTRACTOR SUPPORT FOR NROC SITE PREPARATION"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	31-Jan-08	573343.01	=""	="DARONMONT TECHNOLOGIES PTY LTD"	12-Apr-08 04:34 PM	

+="CN70523"	"AIRCRAFT PAVEMENT MAINTENANCE - ARMY AVIATION CENTRE OAKEY, QLD"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	339918.15	=""	="PIONEER ROAD SERVICES"	12-Apr-08 04:34 PM	

+="CN70547"	"RESEARCH"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	25-Mar-08	30-Jun-08	315700.00	=""	="WOODS BAGOT PTY LTD"	12-Apr-08 04:36 PM	

+="CN70551"	"REFURBISH & ENHANCEMENT OF KOMIATUM BARRACKS MACKAY"	="Department of Defence"	12-Apr-08	="General building construction"	12-Nov-07	30-Jun-08	326183.95	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:36 PM	

+="CN70582"	"FSS PALIKIR LEP"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	2016190.81	=""	="ROSSHAVEN MARINE PTY LTD"	12-Apr-08 04:38 PM	

+="CN70590"	"SUPPLY OF NAVAL DISTILLATE TO darwin naval fuel installation"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	18-Dec-07	587195.80	=""	="BP AUSTRALIA LTD"	12-Apr-08 04:39 PM	

+="CN70599"	"TIED WORK"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	360435.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 04:40 PM	

+="CN70613"	"270165932"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	1100870.73	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:41 PM	

+="CN70625"	"A4500 KAPOOKA INTERIM WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	1545081.45	=""	="LADEX CONSTRUCTION GROUP PTY LTD"	12-Apr-08 04:42 PM	

+="CN70628"	"SUPPLY OF LUBRICANTS - NAVY"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-May-08	440000.00	=""	="CASTROL AUSTRALIA PTY LTD"	12-Apr-08 04:42 PM	

+="CN70630"	"Supply of Qty 38 AC Ground Power Units, including technical data, training & delivery."	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	15-Jan-10	333300.00	=""	="ADVANCED POWER MACHINERY"	12-Apr-08 04:42 PM	

+="CN70634"	"RAAF Spares"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	19-Jun-08	332423.08	=""	="AMETEK AEROSPACE PRODUCTS"	12-Apr-08 04:42 PM	

+="CN70646"	"Stage 1 - integration of NDS into MHC"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-10	2103200.00	=""	="THALES AUSTRALIA"	12-Apr-08 04:43 PM	

+="CN70654"	"Transportation of munitions"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-May-08	970860.85	=""	="FMS ACCOUNT"	12-Apr-08 04:43 PM	

+="CN70656"	"IEMP FMS CASE"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Feb-09	675491.44	=""	="FMS ACCOUNT"	12-Apr-08 04:44 PM	

+="CN70658"	"PROVISION OF WORKING ACCOMMODATION HQ 395 ECSW"	="Department of Defence"	12-Apr-08	="General building construction"	12-Nov-07	30-Jun-08	436037.02	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:44 PM	

+="CN70659"	"FMS CASE ATPJCR - PROVISION OF SPARES IN SUPPORT OF SEAHAWK, SEA KING AND BLACKHAWK AIRCRAFT"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	15-Dec-11	2792579.60	=""	="FMS ACCOUNT"	12-Apr-08 04:44 PM	

+="CN70675"	"SERVICES ADDITIONAL TO CONTRACT.  ADDITIONAL PSSC SUPPORT IN DARWIN (GHS & AMMUNITION TRANSFERS)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-10	481937.50	=""	="DEFENCE MARITIME SERVICES PTY LTD"	12-Apr-08 04:46 PM	

+="CN70679"	"Provision of Storage and backup equipment"	="Australian Federal Police"	14-Apr-08	="File archive storage"	30-Aug-07	30-Jul-08	1834328.73	=""	="Dimension Data Australia Pty Limited"	14-Apr-08 09:01 AM	

+="CN70681"	"Disruptive Pattern Camouflage Trousers raised against standing offer 1001-154-25"	="Defence Materiel Organisation"	14-Apr-08	="Military uniforms"	03-Apr-08	16-May-08	411576.00	="2480042"	="Can't Tear Em Pty Ltd"	14-Apr-08 09:05 AM	

+="CN70692"	"ACCOUNT MANAGEMENT FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	11-Apr-08	1006561.00	=""	="COMSUPER"	14-Apr-08 09:57 AM	

+="CN70714"	"Lease at Torrensville, SA"	="Department of Human Services"	14-Apr-08	="Lease and rental of property or building"	01-Jun-08	31-May-12	1445503.00	=""	="Kadia Nominees & L G Ermidis & Albersid Pty Ltd"	14-Apr-08 10:54 AM	

+="CN70734"	"Property Services"	="Workplace Authority"	14-Apr-08	="Property management"	12-Dec-07	30-Jun-08	1254323.01	=""	="United Group Services"	14-Apr-08 12:06 PM	

+="CN70792-A1"	"Fitout works at National Musuem sites located at 9-13 Vicars St, and Unit 2/90 Vicars St, Mitchell"	="National Museum of Australia"	14-Apr-08	="General building construction"	31-Mar-08	06-Jun-08	531399.00	="NMAT0708/08"	="SMI Fitout Pty Ltd"	14-Apr-08 02:12 PM	

+="CN70906"	"Operating Lease for IT Equipment (SEP07)"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Computer Equipment and Accessories"	14-Sep-07	14-Sep-10	420930.84	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	14-Apr-08 05:15 PM	

+="CN70908"	"Operating Lease for IT Equipment (DEC07)"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Computer Equipment and Accessories"	21-Dec-07	20-Dec-10	335266.20	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	14-Apr-08 05:15 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val30000to40000.xls
@@ -1,1 +1,180 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68849-A1"	"Labour hire - Administrative Services"	="Department of Foreign Affairs and Trade"	10-Apr-08	="Business administration services"	02-Oct-07	22-Feb-08	30913.57	=""	="SMALL AND ASSOCIATES PTY LTD"	10-Apr-08 08:57 AM	

+="CN68866-A1"	"Risk Management Advisor to the ICT Sourcing Program."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	30-Jun-08	35475.00	="07.102"	="Oakton Services Pty Ltd"	10-Apr-08 10:35 AM	

+="CN68888"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	09-May-08	39004.78	=""	="LANDROVER"	10-Apr-08 12:58 PM	

+="CN68891"	"Fleet Management and Vehicle Leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	10-Apr-08	="Vehicle leasing"	08-Apr-08	07-Apr-10	39532.15	=""	="LeasePlan"	10-Apr-08 01:13 PM	

+="CN68905"	"Refurbishment of the GA Sales Centre as per work order EB113052"	="Geoscience Australia"	10-Apr-08	="General building construction"	12-Mar-08	30-Jun-08	39050.00	=""	="Skilled Group Limited"	10-Apr-08 01:46 PM	

+="CN68910"	"G1155 Provision for Multifunction device lease and copy costs for 28 machines,  for quarter ending 31/3/08"	="Geoscience Australia"	10-Apr-08	="Tools and General Machinery"	13-Mar-08	31-Mar-08	38500.00	=""	="Ricoh Australia Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68923"	"Greenhouse Gas Monitoring Advice - Contract Number G2317"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	40000.00	=""	="Cansyd Australia Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68938"	"4 x MSD replacement drives including installation"	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	09-Apr-08	38205.00	=""	="MOOG Australia Pty Ltd"	10-Apr-08 01:51 PM	

+="CN68940"	"SQL, Spatial Fund, PLSF and 10gNFA training as per email quote 27 Mar 2008"	="Geoscience Australia"	10-Apr-08	="Education and Training Services"	27-Mar-08	30-Jun-08	34298.55	=""	="Atlas Business Services A/T/F ABS Trust"	10-Apr-08 01:51 PM	

+="CN68941"	"Microsoft Exchange and Windows Server Software"	="Geoscience Australia"	10-Apr-08	="Software"	27-Mar-08	10-Apr-08	35397.98	=""	="City Software Pty Ltd  (CSW)"	10-Apr-08 01:51 PM	

+="CN68965"	"Independent expert review hydrological modelling as part of EIS proposed Traveston Crossing dam"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	22-Jan-08	31-Mar-08	39776.00	="0708-732"	="Bewsher Consulting Pty Ltd"	10-Apr-08 02:16 PM	

+="CN68990"	"Map governance arrangements in Australian states & territories"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	29-Feb-08	38913.60	="0708-710"	="HLA ENVIROSCIENCES PTY LTD"	10-Apr-08 02:20 PM	

+="CN68994"	"Maintenance of EASY Development Work"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	18-Jan-08	30-Jun-08	30749.70	="0708-946_"	="Dialog Information Technology"	10-Apr-08 02:20 PM	

+="CN68996"	"Identification of regional ecosystems relevant to thretened species in far north Queensland"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	17-Jan-08	31-Mar-08	34991.00	="0708-130"	="CSIRO Accounts Receivable"	10-Apr-08 02:21 PM	

+="CN69023"	"Aquatic Ecology Professional Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Environmental Services"	20-Feb-08	30-Jun-08	33001.00	="0708-0683"	="Jennifer Hale"	10-Apr-08 03:12 PM	

+="CN69024"	"Professional Association Membership"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	31-Dec-09	35014.77	="0708-1032"	="Hart Downstream Energy Services"	10-Apr-08 03:12 PM	

+="CN69050"	"Information Technology Project Management Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	09-Apr-08	38000.00	="0708-993"	="Paxus Australia Pty Limited"	10-Apr-08 03:16 PM	

+="CN69058"	"Development of a Monitoring and Evaluation Strategy for Biodiversity Programme"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	01-May-08	30965.00	="0708-827"	="O'Connor Nrm Pty Ltd"	10-Apr-08 03:17 PM	

+="CN69067"	"Identification of invertebrate fauna from the Coringa-Herald National Nature Reserve"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	36621.75	="0708-616"	="XCS Consulting"	10-Apr-08 03:18 PM	

+="CN69071"	"Monthly Blackberry Charges"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	29-Feb-08	32474.77	="0708-938"	="Telstra Corporation Limited"	10-Apr-08 03:19 PM	

+="CN69077"	"Envirofund round 9 merchandise"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	05-Feb-08	29-Feb-08	33567.60	="0708-910"	="National Promotions Aust P/L"	10-Apr-08 03:20 PM	

+="CN69083"	"Forklift truck"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Material handling machinery and equipment"	15-Feb-08	01-May-08	35000.00	="0708-996"	="Crown Lift Trucks"	10-Apr-08 03:21 PM	

+="CN69092"	"Ad hock project work on Gas"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	25-May-08	30000.00	="0708-767"	="Enertech Australia P/L"	10-Apr-08 03:22 PM	

+="CN69093"	"Expansion of ReefTemp processing framework to all Commonwealth Marine Reserves"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	30-Jun-08	39500.00	="0708-0724"	="Jeffrey Maynard"	10-Apr-08 03:22 PM	

+="CN69109-A2"	"Security Risk Review"	="Workplace Authority"	10-Apr-08	="Securing and protecting supplies"	25-Jan-08	30-Apr-08	30000.00	=""	="Intec 1"	10-Apr-08 03:36 PM	

+="CN69110"	"E-Recruitment software"	="Workplace Authority"	10-Apr-08	="Software"	25-Jan-08	08-Nov-08	37840.00	=""	="NGA.Net Pty Ltd"	10-Apr-08 03:40 PM	

+="CN69187"	"Telecommunication services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	18-Mar-08	30-Apr-08	32436.10	=""	="Stratos"	10-Apr-08 03:58 PM	

+="CN69191"	"Lease of 11 tape drives"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	38313.66	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69199"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	35878.66	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69200"	"Lease extension for QLD AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-08	38001.21	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69207"	"Construction Works"	="Bureau of Meteorology"	10-Apr-08	="General building construction"	01-Apr-08	30-Apr-08	30453.71	=""	="KLM GROUP"	10-Apr-08 04:00 PM	

+="CN69215"	"Drifting BuoysSVP-B & SVP-BW"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	26-Mar-08	30-May-08	35870.92	=""	="Metocean Data Systems Ltd"	10-Apr-08 04:01 PM	

+="CN69231"	"Gazettal advertising"	="Workplace Authority"	10-Apr-08	="Advertising"	25-Jan-08	25-Jan-08	33792.00	=""	="Attorney Generals Department"	10-Apr-08 04:07 PM	

+="CN69239"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	33280.00	=""	="Clubs Australia"	10-Apr-08 04:28 PM	

+="CN69246"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	19-Dec-07	15-Feb-08	34320.00	=""	="HiTech Personnel"	10-Apr-08 04:44 PM	

+="CN69262"	"Risk Assessment Services for Community Water Projects"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-May-08	32648.55	="0708-142"	="GHD Pty Ltd"	11-Apr-08 09:22 AM	

+="CN69267"	"Freeze dryer and accessories"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Laboratory and scientific equipment"	18-Mar-08	30-Jun-08	33605.00	="0708-1076"	="John Morris Scientific Pty Ltd"	11-Apr-08 09:23 AM	

+="CN69271"	"Video Conferencing Maintenance Agreement 2008"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	17-Apr-08	32500.00	="0708-1000"	="Polycom"	11-Apr-08 09:24 AM	

+="CN69278"	"Creation of conservation advices for EPBC Act threatened species"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Engineering and Research and Technology Based Services"	18-Mar-08	30-Jun-08	31800.00	="0708-1104"	="Royal Botanic Gardens"	11-Apr-08 09:25 AM	

+="CN69281"	"Pilot Project for Energy Efficiency in Public Buildings (stage 1)"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	28-Mar-08	33000.00	="0708-120"	="Adrian R Guilfoyle"	11-Apr-08 09:25 AM	

+="CN69287"	"Review of recharge mechanisms for the Great Artesian Basin Sustainability Initiative"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	28-Mar-08	30-Apr-08	30000.00	="0708-1164"	="CSIRO Accounts Receivable"	11-Apr-08 09:26 AM	

+="CN69289-A1"	"NEGOTIATION SERVICES RELATING TO CONTRACTS UNDER THE THE ASIA PACIFIC TASK FORCE"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Dec-09	36752.71	="0708-632"	="Australian Government Solicitor"	11-Apr-08 09:26 AM	

+="CN69303"	"Professional services re National Facilitator Network recruitment"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Business administration services"	25-Mar-08	30-May-08	40000.00	="0708-751"	="Recruitment Management Company"	11-Apr-08 09:28 AM	

+="CN69312"	"HPGe Detector & accessories"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Environmental management"	10-Mar-08	30-Jun-08	31801.00	="0708-0998"	="NU SCIENTIFIC PTY LIMITED"	11-Apr-08 09:29 AM	

+="CN69336"	"National Pollutant Inventory Review  and Scoping study of Estimation Technique Manuals"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management advisory services"	13-Mar-08	20-Mar-08	32100.00	="0708-810"	="ECCO Pty Ltd"	11-Apr-08 09:33 AM	

+="CN69340"	"Seminar Series Course for Environmental Economics  for Non Economists"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Educational institutions"	14-Mar-08	28-Mar-08	36300.00	="0708-443"	="Australian National University"	11-Apr-08 09:33 AM	

+="CN69343"	"Prov of Services relating to the update of species information sheets for 10 EPBC Act listed species"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	31-May-08	30373.20	="0708-922"	="CSIRO Accounts Receivable"	11-Apr-08 09:34 AM	

+="CN69344"	"Refurbishment works at NT Offices"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="General building construction"	11-Mar-08	30-Jun-08	38260.00	="0708-896"	="Kakadu Contracting"	11-Apr-08 09:34 AM	

+="CN69350"	"Define enhancements to OSCAR UI to improve usability of web based reporting apps"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	32863.00	="0708-874"	="Stamford Interactive"	11-Apr-08 09:35 AM	

+="CN69397"	"Bearing, Roller, Cylindrical  - 3110/014157196"	="Defence Materiel Organisation"	11-Apr-08	="Aircraft"	25-Mar-08	31-Mar-08	35135.00	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:14 PM	

+="CN69398"	" BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE : ENGINE  2840/008770065 "	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	13-Mar-08	19-Mar-08	33489.00	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:18 PM	

+="CN69405"	"BEARING, ROLLER, CYLINDRICAL - 3110/014157196"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	25-Mar-08	31-Mar-08	35135.00	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:34 PM	

+="CN69416"	"BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	25-Mar-08	23-Jun-08	37387.20	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 02:03 PM	

+="CN69421-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	13-Mar-08	30-Jun-09	30000.00	=""	="Mr Jason D Pizer"	11-Apr-08 03:02 PM	

+="CN69430"	" Intelligence Information "	="Australian Securities and Investments Commission"	11-Apr-08	="Intelligence services"	01-Jul-07	30-Jun-08	36000.00	=""	="CITEC"	11-Apr-08 04:28 PM	

+="CN69446"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	30159.50	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:24 PM	

+="CN69451"	"CHP-DR S.FINE-ORTHOPASDIC SPEC-2HSB"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	33000.00	=""	="DR S FINE & DR G SHAR PTY LTD"	12-Apr-08 02:58 PM	

+="CN69454"	"Security Services - Schofields"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	32472.00	=""	="T & R SECURITY"	12-Apr-08 02:58 PM	

+="CN69457"	"Design/Contract administration services for the Bathurst Is TADRS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	30081.73	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 02:59 PM	

+="CN69459"	"Project Management services for RAAF Base Richmond Reinvestment Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	37400.00	=""	="CARSON GROUP PTY LTD"	12-Apr-08 02:59 PM	

+="CN69470"	"Delivery of approved Stage 2 - Building works Package at Bathurst Island"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	31471.00	=""	="NORBUILT PTY LTD"	12-Apr-08 03:00 PM	

+="CN69474"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	30800.00	=""	="RUSSET GLEN PTY LTD"	12-Apr-08 03:01 PM	

+="CN69475"	"CONTRACT PERSONNEL REQUIRED FOR PROVISION OF HEALT CARE SERVICES AT CERBERUS-WITH DEFENCE HEALTH SER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	39600.00	=""	="SOUTHERN MEDICAL SERVICES"	12-Apr-08 03:01 PM	

+="CN69488"	"TRAINING"	="Department of Defence"	12-Apr-08	="Education and Training Services"	15-Jan-08	30-Jun-08	30800.00	=""	="IIT TRAINING PTY LTD"	12-Apr-08 03:03 PM	

+="CN69533"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	30-Jun-08	39999.99	=""	="APIS CONSULTING GROUP"	12-Apr-08 03:09 PM	

+="CN69541"	"171 SQUADRON RELOCATION (FORMERLY AIR 9000 - TROOP LIFT HELICOPTERS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	34474.00	=""	="RICE DAUBNEY"	12-Apr-08 03:10 PM	

+="CN69544"	"SUBMARINE LAND BASED TEST FACILITY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	36100.15	=""	="COFFEY PROJECTS PTY LTD"	12-Apr-08 03:11 PM	

+="CN69556"	"HMAS STIRLING - TU-ASSC ANTI SHIP MISSILE DEFENCE EXTENSION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	31348.97	=""	="COFFEY PROJECTS PTY LTD"	12-Apr-08 03:13 PM	

+="CN69576"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	30000.00	=""	="SAGE LEGAL SERVICES PTY LTD"	12-Apr-08 03:15 PM	

+="CN69591"	"rental housing costs"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	32440.00	=""	="DHA - CENTRAL OFFICE"	12-Apr-08 03:17 PM	

+="CN69600"	"CONTRACT HEALTH PRACTITIONER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	33000.00	=""	="DR DAVID THOMSON"	12-Apr-08 03:19 PM	

+="CN69621"	"fire alarm monitoring"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	01-Mar-08	35640.00	=""	="ROMTECK GRID PTY LTD"	12-Apr-08 03:21 PM	

+="CN69634"	"681910 (NT1766) Project Vigilare AIR5333. Investigate & design aircon & power requirements."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Dec-07	30-Jun-08	31433.22	=""	="IRWIN CONSULT PTY LTD"	12-Apr-08 03:23 PM	

+="CN69664"	"CONSTRUCTION REPAIR WORKS"	="Department of Defence"	12-Apr-08	="General building construction"	12-Nov-07	29-Jun-08	38715.52	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:27 PM	

+="CN69666"	"Local Access Internet Account"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	12-Nov-07	30-Jun-08	36029.75	=""	="OPTUS INTERNET"	12-Apr-08 03:27 PM	

+="CN69730"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	33350.33	=""	="THE NOUS GROUP"	12-Apr-08 03:36 PM	

+="CN69732"	"Extention of existing contract"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	12-Feb-08	30-Jun-08	33090.39	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	12-Apr-08 03:36 PM	

+="CN69737"	"Provision of IT Systems Coordinator"	="Department of Defence"	12-Apr-08	="Management advisory services"	04-Dec-07	29-Jan-08	36863.20	=""	="TENIX TOLL DEFENCE LOGISTICS"	12-Apr-08 03:36 PM	

+="CN69740"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	22-Nov-07	31-Dec-07	32486.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 03:37 PM	

+="CN69754"	"HEALTH SERVICE - BNH"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	16-Jan-08	30-Jun-08	32727.60	=""	="DR FRANCIS SMITH PTY LTD"	12-Apr-08 03:39 PM	

+="CN69757"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Jun-08	37770.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:39 PM	

+="CN69763"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	29-Feb-08	36960.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:40 PM	

+="CN69766"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	31061.80	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:40 PM	

+="CN69767"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	31110.20	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:40 PM	

+="CN69768"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Dec-07	38438.40	=""	="FOURAY PTY LTD"	12-Apr-08 03:41 PM	

+="CN69772"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	19-Dec-07	30-Jun-08	38500.00	=""	="PARKER, STEVEN WAYNE"	12-Apr-08 03:41 PM	

+="CN69776"	"PROFESSIONAL FEES & DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	10-Jan-08	30-Jun-08	37090.50	=""	="MINTER ELLISON"	12-Apr-08 03:42 PM	

+="CN69785"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	33134.64	=""	="COSGRIFF LOGISTIC SERVICES PTY LTD"	12-Apr-08 03:43 PM	

+="CN69803"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	29-Feb-08	34404.70	=""	="TARAKAN CONSULTING PTY LTD"	12-Apr-08 03:44 PM	

+="CN69807"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-08	36819.20	=""	="PEOPLEBANK"	12-Apr-08 03:44 PM	

+="CN69810"	"Heavy Remote Positioning Vehicle"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	20-Dec-07	31574.92	=""	="XTEK PTY LTD"	12-Apr-08 03:44 PM	

+="CN69811"	"Contract Extension to 4500558176 for options 1 & 2"	="Department of Defence"	12-Apr-08	="Professional engineering services"	22-Feb-08	27-Jun-08	30000.00	=""	="BLUEWATER SYSTEMS LTD"	12-Apr-08 03:44 PM	

+="CN69812"	"Freight services"	="Defence Materiel Organisation"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	30800.00	=""	="TNT DOMESTIC & INTERNATIONAL"	12-Apr-08 03:44 PM	

+="CN69854"	"For the design,fitout,modification & engineering services for 4 Urban Search& Rescue vehicles"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	35220.98	=""	="VARLEY ENGINEERING"	12-Apr-08 03:47 PM	

+="CN69863"	"CONSULTANT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	32426.91	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:48 PM	

+="CN69869"	"MEDICAL PROVIDER"	="Department of Defence"	12-Apr-08	="Management advisory services"	05-Mar-08	30-Jun-08	38500.00	=""	="MLCOA - SOUTH AUSTRALIA"	12-Apr-08 03:48 PM	

+="CN69903"	"CONSULTANT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	34857.09	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69923"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	31043.74	=""	="HUTCHINSON COMMUNICATIONS"	12-Apr-08 03:52 PM	

+="CN69925"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	34857.90	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69927"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	30043.09	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69931"	"GAS REQUIREMENTS FOR FY 07/08"	="Department of Defence"	12-Apr-08	="Gaseous fuels and additives"	20-Nov-07	30-Jun-08	37950.00	=""	="BOC LIMITED"	12-Apr-08 03:53 PM	

+="CN69933"	"Vehicle lease"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	32071.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-Apr-08 03:53 PM	

+="CN69937"	"OPERATIONAL FREIGHT & CARTAGE FOR 77SQN AVMF AT RAAF BASE WILLIAMTOWN"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	17-Mar-08	30-Jun-08	33000.00	=""	="STAR TRACK EXPRESS"	12-Apr-08 03:53 PM	

+="CN69955"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	06-Dec-07	30-Dec-07	37885.01	=""	="CLAYTON UTZ"	12-Apr-08 03:54 PM	

+="CN69967"	"IT user applications"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	38610.00	=""	="INFOHRM PTY LTD"	12-Apr-08 03:55 PM	

+="CN69972"	"TS167MAT-4 MOAS FOLLOWON INSTALLATIONS MATERIAL PROCUREMENT"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	37007.06	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:55 PM	

+="CN69983"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	23-Nov-07	30-Jun-08	37400.00	=""	="TNT EXPRESS"	12-Apr-08 03:56 PM	

+="CN70002"	"Technical Management Specialist"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-09	38112.25	=""	="NOVA DEFENCE"	12-Apr-08 03:58 PM	

+="CN70003"	"gas deliveries to Kokoda Barracks FY 2007/2008"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Jun-08	33000.00	=""	="ORIGIN ENERGY PTY LTD"	12-Apr-08 03:58 PM	

+="CN70005"	"REPAIR F&F WHITEGOODS AT SINGLETON (SMA)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	38546.44	=""	="WARREN WARD REFRIGERATION PTY LTD"	12-Apr-08 03:58 PM	

+="CN70019"	"CONTRACTOR SERVICES"	="Department of Defence"	12-Apr-08	="Human resources services"	31-Jan-08	30-Jun-08	39600.00	=""	="CHANDLER MACLEOD GROUP LTD"	12-Apr-08 03:59 PM	

+="CN70039"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-08	40000.00	=""	="STAY UPRIGHT PTY LTD"	12-Apr-08 04:00 PM	

+="CN70046"	"Professional Service Provider BCSS Systems Engineer"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	22-Dec-07	33000.00	=""	="CODARRA ADVANCED SYSTEMS"	12-Apr-08 04:01 PM	

+="CN70065"	"RAAF TINDAL FUEL FARM UPGRADE PHASE 1"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Dec-07	30-Jun-08	39593.53	=""	="NORTHERN REFUELING MAINTENANCE P/L"	12-Apr-08 04:02 PM	

+="CN70101"	"FROZEN FOOD"	="Department of Defence"	12-Apr-08	="Travel and Food and Lodging and Entertainment Services"	23-Nov-07	30-Jun-08	31519.75	=""	="TOP CUT SYDNEY PTY LTD"	12-Apr-08 04:05 PM	

+="CN70107"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	30743.99	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	12-Apr-08 04:05 PM	

+="CN70109"	"POSTAGE FOR FY07/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	31200.00	=""	="LPO RAAF BASE EDINBURGH"	12-Apr-08 04:05 PM	

+="CN70143"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	27-Nov-07	30-Jun-08	32660.00	=""	="GEORGE ANGUS"	12-Apr-08 04:08 PM	

+="CN70146"	"SEA01401PH3 Hydrographic Survey System Upgrade"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jul-08	31876.05	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-Apr-08 04:08 PM	

+="CN70148"	"Spare parts required for Port & Starboard Main Engines to modify Valve & Exhaust Cages - TOBRUK"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	29-Nov-07	07-Dec-07	34285.91	=""	="MAN DIESEL AUSTRALIA PTY LTD"	12-Apr-08 04:08 PM	

+="CN70152"	"IQ TASK"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	37590.98	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:08 PM	

+="CN70153"	"POSTAGE"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	11-Dec-07	30-Jun-08	31000.00	=""	="AUSTRALIA POST"	12-Apr-08 04:08 PM	

+="CN70157"	"Contract Health"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Jan-08	37400.00	=""	="CLEMENTS RECRUITMENT PTY LTD"	12-Apr-08 04:09 PM	

+="CN70185"	"IM STAGE 4 DEVELOPMENT."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-Jun-08	33000.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-Apr-08 04:10 PM	

+="CN70202"	"IQ TASK FOR ARH TIGER FLIGHT MANUAL"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	38613.72	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:12 PM	

+="CN70205"	"Development of Real time 3D visualisation software and related computer graphics."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	29-Feb-08	36100.00	=""	="YTEK PTY LTD"	12-Apr-08 04:12 PM	

+="CN70210"	"LAP Delivery Management Services - Minors Program"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	02-May-08	33792.00	=""	="BUSINESS SYSTEMS CONSULTANCY PTY"	12-Apr-08 04:12 PM	

+="CN70239"	"ADVERTISING"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	18-Dec-07	30-Jun-08	36685.00	=""	="VISUAL JAZZ PTY LTD"	12-Apr-08 04:14 PM	

+="CN70241"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	27-Nov-07	30-Jun-08	39723.75	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 04:14 PM	

+="CN70248"	"MAINT TO ELECTRONIC SECURITY SECTION"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	33977.92	=""	="CHUBB SECURITY AUST PTY LTD"	12-Apr-08 04:15 PM	

+="CN70252"	"Training Needs analysis for HATS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	31280.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:15 PM	

+="CN70255"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	28-Nov-07	30-Sep-08	34708.56	=""	="WATER CORPORATION"	12-Apr-08 04:15 PM	

+="CN70327"	"meat and meat poduces for sasr"	="Department of Defence"	12-Apr-08	="Meat and poultry products"	29-Jan-08	30-Jun-08	30000.00	=""	="TOTAL MEAT SOLUTIONS"	12-Apr-08 04:20 PM	

+="CN70387"	"NT1531 RAAF TINDAL REPLACE DOMESTIC WATER TANK"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	35560.00	=""	="ASSET SERVICES"	12-Apr-08 04:25 PM	

+="CN70409"	"SECURITY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	31-Mar-08	30250.00	=""	="CHUBB SECURITY AUST PTY LTD"	12-Apr-08 04:26 PM	

+="CN70433"	"ACTURARIAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	35176.90	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	12-Apr-08 04:28 PM	

+="CN70434"	"Requirement analysis system definition and prototype development"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	33000.00	=""	="THALES AUSTRALIA"	12-Apr-08 04:28 PM	

+="CN70436"	"HMAS GASCOYNE FAMP 02/07 01 - 19 OCT 2007"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	29-Feb-08	37406.85	=""	="THALES AUSTRALIA"	12-Apr-08 04:28 PM	

+="CN70440"	"EGINEERING SUPPORT FOR SEP 07 EMA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	28-Jan-08	33910.13	=""	="TEEKAY MARINE PTY LTD"	12-Apr-08 04:28 PM	

+="CN70445"	"CONSULTANTCY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	40000.00	=""	="GLEN E TYE"	12-Apr-08 04:29 PM	

+="CN70482"	"AMPS Enhancements"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	31-Jan-08	35202.75	=""	="EDEN TECHNOLOGY PTY LTD"	12-Apr-08 04:31 PM	

+="CN70487"	"NT1766 PROJECT VIGILARE -  AIR5333 AIRCONDITIONING WORKS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	39891.50	=""	="AIRDUCTER"	12-Apr-08 04:32 PM	

+="CN70493"	"Refurbish non compliant air-craft fuel quality Lab BLDG 257."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	31078.30	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:32 PM	

+="CN70497"	"Supply of perisiables"	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	12-Nov-07	28-Jun-08	31000.00	=""	="UNITED FOOD SERVICE"	12-Apr-08 04:32 PM	

+="CN70515"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	38449.50	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 04:34 PM	

+="CN70517"	"PROOF MOUNT SUPPORT FACILITIES, PORT WAKEFIELD SA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	30153.20	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:34 PM	

+="CN70520"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	11-Nov-07	30-Jun-08	30800.00	=""	="RELIANCE PETROLEUM"	12-Apr-08 04:34 PM	

+="CN70537"	"TRAINING DOCUMENTATION "MOVEMENTS INITIAL COURSE 07/08 & 08/09"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	30-Jun-08	37400.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:35 PM	

+="CN70542"	"Repair A/c saltwater pump HMAS KANIMBLA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	20-Dec-07	31295.00	=""	="ATMR"	12-Apr-08 04:36 PM	

+="CN70543"	"Provision of Laboratory Assistance for Weapons Systems Division"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	32826.75	=""	="ICON RECRUITMENT"	12-Apr-08 04:36 PM	

+="CN70545"	"STAGE 2 ENVIRONMENTAL INVESTIGATIONS RAAF BASE TINDAL NT/K"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	36758.70	=""	="GHD PTY LTD"	12-Apr-08 04:36 PM	

+="CN70558"	"REPAIR OF RAIL ROTOR BLADE"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-May-08	36136.23	=""	="AGUSTAWESTLAND LTD"	12-Apr-08 04:37 PM	

+="CN70560"	"REPAIR OF RAIL ROTOR BLADE"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-May-08	38402.97	=""	="AGUSTAWESTLAND LTD"	12-Apr-08 04:37 PM	

+="CN70569"	"REPAIR OF RAIL ROTOR BLADE"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	26-May-08	31524.62	=""	="AGUSTAWESTLAND LTD"	12-Apr-08 04:38 PM	

+="CN70586"	"ADGEC3 Scoping Task"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	10-Jan-08	30627.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-Apr-08 04:39 PM	

+="CN70592"	"AMACCS Task Backlog Reduction"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	21-Mar-08	30627.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-Apr-08 04:39 PM	

+="CN70617"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-07	30000.00	=""	="KPMG"	12-Apr-08 04:41 PM	

+="CN70641"	"Assessment of Effective DFeployment of the PIRATE decoy"	="Department of Defence"	12-Apr-08	="Professional engineering services"	12-Nov-07	30-May-08	38500.00	=""	="ELECTRONIC WARFARE ASSOCIATES"	12-Apr-08 04:43 PM	

+="CN70653"	"Order against so 07/20 ORIGINAL SO was open tender"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	30800.00	=""	="AMBROSE LOGISTICS CONSULTING"	12-Apr-08 04:43 PM	

+="CN70660"	"DELIVER C2/MR2 DRIVER TRAINING TO ARMY LOGISTIC TRAINING CENTRE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Jan-08	36225.00	=""	="WODONGA INSTITUTE OF TAFE"	12-Apr-08 04:44 PM	

+="CN70664"	"Provision of Technical Support in various location"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	30360.00	=""	="KARU IT PTY LTD"	12-Apr-08 04:44 PM	

+="CN70686-A1"	"Scoping study of Financial Management"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	30000.00	=""	="KPMG (CANBERRA)"	14-Apr-08 09:34 AM	

+="CN70715"	" Probity Advisory Services - APCM123.02-81 "	="Australian Taxation Office"	14-Apr-08	="Financial and Insurance Services"	08-Apr-08	31-Dec-08	40000.00	="123.02-81"	="Walter Turnbull Pty Ltd"	14-Apr-08 11:07 AM	

+="CN70736"	" Web Content Developer "	="Workplace Authority"	14-Apr-08	="Content management software"	10-Dec-07	29-Feb-08	35000.00	=""	="HiTech Personnel"	14-Apr-08 12:17 PM	

+="CN70740-A1"	"Mature Age Employment and Workplace Strategy"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Employment promotion or planning services"	04-Apr-08	30-Jun-08	39600.00	=""	="Sureway Employment"	14-Apr-08 12:25 PM	

+="CN70752"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	35167.00	=""	="Greythorn"	14-Apr-08 12:47 PM	

+="CN70774"	"Mobile phone expenses"	="Workplace Authority"	14-Apr-08	="Mobile phones"	30-Jul-07	30-Jun-08	36068.28	=""	="Optus Administration"	14-Apr-08 01:03 PM	

+="CN70779"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	10-Oct-07	10-Dec-07	30823.65	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:27 PM	

+="CN70807"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	15-Dec-07	15-Dec-07	32923.81	=""	="HMA Blaze"	14-Apr-08 03:36 PM	

+="CN70812"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	23-Feb-08	23-Feb-08	34400.37	=""	="HMA Blaze"	14-Apr-08 03:53 PM	

+="CN70821"	"Development and maintainance of the Project Management Plans for World Expo 2010 - Shanghai"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-Jul-07	30-Jun-08	33000.00	=""	="ALAMEIN CONSULTING PTY LTD"	14-Apr-08 03:55 PM	

+="CN70831"	"PDMS Deployment Assistance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Business administration services"	12-Nov-07	30-Jun-08	31050.00	="PRN18256"	="MICROSOFT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70832"	"Training Package Development Handbook Policy Text"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	02-Jan-08	30-Jun-08	40000.00	="PRN18224"	="QUALITY TRAINING CONCEPTS PTY LTD"	14-Apr-08 04:00 PM	

+="CN70870"	"Procurement of desktops & monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	33319.00	=""	="Dataflex"	14-Apr-08 04:36 PM	

+="CN70879"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	37400.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70897"	"BARRISTER FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	01-Apr-08	01-Apr-08	33000.00	=""	="MICHAEL IZZO"	14-Apr-08 04:44 PM	

+="CN70898"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	07-Apr-08	07-Apr-08	33000.00	=""	="NOEL HUTLEY"	14-Apr-08 04:44 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val40000to80000.xls
@@ -1,1 +1,387 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68853"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	12-Mar-08	02-May-08	65614.13	=""	="Dixon Appointments"	10-Apr-08 09:21 AM	

+="CN68859"	"Employer Advisory Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	07-Mar-08	30-Jun-08	75914.30	=""	="NT Working Women's Centre"	10-Apr-08 09:45 AM	

+="CN68748"	"Purchase of HP EVA Hard Disks"	="Australian Securities and Investments Commission"	10-Apr-08	="Notebook computers"	01-Oct-07	01-Oct-07	53286.29	=""	="Commander Communications Limited"	10-Apr-08 10:11 AM	

+="CN68879"	"motor vehicle spare parts"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	45247.98	=""	="LAND ROVER AUSTRALIA"	10-Apr-08 11:58 AM	

+="CN68880"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	10-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Apr-08	10-May-08	42224.11	=""	="LAND ROVER AUSTRALIA"	10-Apr-08 12:05 PM	

+="CN68727"	"Expert opinion - financial adviser"	="Australian Securities and Investments Commission"	10-Apr-08	="Accounting services"	17-Oct-07	30-Jun-08	45000.00	=""	="Hugo Graves"	10-Apr-08 12:39 PM	

+="CN68897"	"Training - Executive Capability Program & Practice of Leadership Program"	="Geoscience Australia"	10-Apr-08	="Education and Training Services"	05-Mar-08	30-Jun-08	41400.03	=""	="The Leadership Consortium Inc"	10-Apr-08 01:45 PM	

+="CN68906"	"100 x Western Digital 1TB Essentials Hard Drives"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	17-Mar-08	27-Mar-08	61600.00	=""	="Ethan Group Canberra Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68908"	"Java Developer contract"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	55000.00	=""	="AUREC Pty Ltd"	10-Apr-08 01:46 PM	

+="CN68915"	"Consultancy payments and travel expenses associated with the RVO Twinning Program."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	14-Mar-08	30-Jun-08	43500.00	=""	="Wally Johnson Consultancies"	10-Apr-08 01:47 PM	

+="CN68921"	"4 x Dell PowerEdge Rack Mount servers, 42u Deeper rack and Remote Console Switch"	="Geoscience Australia"	10-Apr-08	="Computer Equipment and Accessories"	18-Mar-08	01-Apr-08	53650.12	=""	="Dell Australia Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68922"	"G2335  Provision for Business Analyst N W 18 March to 30 June 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	18-Mar-08	30-Jun-08	71500.00	=""	="Verossity Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68923"	"Greenhouse Gas Monitoring Advice - Contract Number G2317"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	19-Mar-08	30-Jun-08	40000.00	=""	="Cansyd Australia Pty Ltd"	10-Apr-08 01:48 PM	

+="CN68927"	"Oracle maintenance renewal"	="Geoscience Australia"	10-Apr-08	="Software"	25-Mar-08	02-Apr-08	43358.89	=""	="Oracle Corporation"	10-Apr-08 01:49 PM	

+="CN68929"	"Geospatial Analyst"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	55000.00	=""	="Keenyear Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68930"	"Geospatial Analyst - January to June 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	55000.00	=""	="Keenyear Pty Ltd"	10-Apr-08 01:49 PM	

+="CN68931"	"Invoice no. 23168 Transcription projects RP00854 - Moon 2D Marine Seismic Survey, RP00907 GDW99 Marine Seismic Survey."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	26-Mar-08	30-Jun-08	47800.21	="2006/3933"	="DataCom IT"	10-Apr-08 01:50 PM	

+="CN68933"	"Annual subscription to Auscope Ltd"	="Geoscience Australia"	10-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	30-Jun-08	41250.00	=""	="AuScope"	10-Apr-08 01:50 PM	

+="CN68934"	"Works at Norfolk Island"	="Geoscience Australia"	10-Apr-08	="General building construction"	27-Mar-08	30-Apr-08	52087.00	=""	="Norfolk Island Block Factory"	10-Apr-08 01:50 PM	

+="CN68953"	"Infoor Air Quality Study"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management advisory services"	25-Jan-08	31-Mar-08	64983.00	="0708-533"	="CSIRO Marine Research"	10-Apr-08 02:15 PM	

+="CN68956"	"Indigenous Australians' views on biodiversity"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	41123.50	="0708-532"	="Smyth and Bahrdt Consultants"	10-Apr-08 02:15 PM	

+="CN68962"	"Legal Advice on Statutory Functions of the Murray Darling Basin and Murray Darling Basin Authority"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	22-Jan-08	31-Mar-08	45188.00	="0708-638"	="Megan Dyson"	10-Apr-08 02:16 PM	

+="CN68964"	"Review of Current Work and Institutional Practice of Murray Darling Basin Commission"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	11-Jan-08	30-Jun-08	79635.00	="0708-639"	="Nous Group"	10-Apr-08 02:16 PM	

+="CN68971"	"Provision of Market Information on Permanent Water Entitlements in the Murray Darling Basin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	31-Jan-08	30-Jun-08	60005.00	="0708-376"	="Hassall & Associates Pty Ltd"	10-Apr-08 02:17 PM	

+="CN68973"	"Advertising services for Qantas in-flight magazine"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	29-Jan-08	30-Jun-08	75000.00	="0708-907"	="ACP Magazines LTd"	10-Apr-08 02:17 PM	

+="CN68991"	"Performance Story for WA - Strategic tree farming"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	20-Jun-08	79970.00	="0708-368"	="URS Australia Pty Ltd"	10-Apr-08 02:20 PM	

+="CN68992"	"Performance Story for Northern Territory Fire Management Outcome"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	20-Jun-08	77880.00	="0708-714"	="TUNA BLUE PTY LTD (TRADING AS"	10-Apr-08 02:20 PM	

+="CN66103"	"Journal Subscriptions for 2008"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	19-Oct-07	31-Dec-08	73925.28	=""	="Ebsco Australia Subscription Services"	10-Apr-08 02:21 PM	

+="CN69000"	"Ad Hoc Advice on technical engineering issues -  labelling & MEPs - Electrical"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	50000.00	="0708-770"	="Punchline Energy"	10-Apr-08 02:21 PM	

+="CN69001"	"AdHoc AdviceTechnical Engineering issues Labelling AND MINIMUM ENERGY PERFORMANCE STANDARDS- Lightin"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	25-Jun-08	49500.00	="0708-772"	="Syneca Consulting Pty Ltd"	10-Apr-08 02:21 PM	

+="CN69002"	"COST BENEFIT ANALYSIS OF LIGHTING PRODUCTS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	60000.00	="0708-774"	="Syneca Consulting Pty Ltd"	10-Apr-08 02:22 PM	

+="CN69003"	"Ad hoc advice on Technical Issues -Labelling and MINIMUM ENERGY PERFORMANCE STANDARDS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	20-Jun-08	79500.00	="0708-764"	="Energy Efficient Strategies"	10-Apr-08 02:22 PM	

+="CN69006"	"Employer Advisor Programme - Extension of existing contract"	="Workplace Authority"	10-Apr-08	="Work related organisations"	05-Feb-08	30-Jun-08	53232.50	=""	="Working Women's Centre SA Inc"	10-Apr-08 02:33 PM	

+="CN69009"	" Recruitment Services "	="Workplace Authority"	10-Apr-08	="Recruitment services"	01-Feb-08	30-Jun-08	68068.95	=""	="Professional Careers Australia"	10-Apr-08 02:50 PM	

+="CN69011"	"Project Management Fees"	="Workplace Authority"	10-Apr-08	="Project management"	29-Jan-08	31-May-08	41349.45	=""	="ACT & Region Chamber of Commerce"	10-Apr-08 02:56 PM	

+="CN69018-A1"	"Temporary staff services for Water Efficiency Division"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	21-Feb-08	31-May-08	55000.00	="0708-1024"	="Staffing and Office Solutions"	10-Apr-08 03:11 PM	

+="CN69019"	"Temporary staff services for Water Efficiency Division"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	21-Feb-08	30-Jun-08	44000.00	="0708-1014"	="Staffing and Office Solutions"	10-Apr-08 03:11 PM	

+="CN69021"	"Draw B class safes for New Department"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Office Equipment and Accessories and Supplies"	21-Feb-08	04-Apr-08	46893.00	="0708-1017"	="OfficeMax Australia Limited"	10-Apr-08 03:12 PM	

+="CN69040"	"Recruitment Advertising Services"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Advertising"	29-Feb-08	28-Mar-08	45610.10	="0708-1125"	="HMA Blaze Pty Ltd"	10-Apr-08 03:14 PM	

+="CN69042"	"consultancy for supply of electricity distribution"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	16-Jun-08	74872.60	="0708-948"	="Geoscience Australia"	10-Apr-08 03:15 PM	

+="CN69044"	"Provision of a mechanism through which data can be made available to international initiatives"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Information services"	28-Feb-08	30-May-08	44607.20	="0708-1008"	="Museum Victoria"	10-Apr-08 03:15 PM	

+="CN69046"	"Cost benefit analysis of alternative ballast water management within Great Barrier Reef"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Marine transport"	28-Feb-08	30-Jun-08	75762.50	="0708-1057"	="International Economics"	10-Apr-08 03:15 PM	

+="CN69054"	"National Heritage List plaques, plinths & brochure"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Printing and publishing equipment"	27-Feb-08	30-Jun-08	70400.00	="0708-953"	="Fusebox  Design"	10-Apr-08 03:16 PM	

+="CN69056"	"North Marine Regional Bioregional Profile Publication"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	45351.20	="0708-646"	="Imaginocean Productions"	10-Apr-08 03:16 PM	

+="CN69064"	"Application Migration of Departments"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	07-Feb-08	29-Feb-08	41998.50	="0708-964"	="SRA Information Technology"	10-Apr-08 03:18 PM	

+="CN69068"	"Provision of services for the identification of habitats occupied by Western Ringtail Possum"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-Jun-08	79629.00	="0708-504"	="ENV.AUSTRALIA PTY LTD"	10-Apr-08 03:19 PM	

+="CN69076"	"Updating of species information sheets for migratory bird species"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Engineering and Research and Technology Based Services"	06-Feb-08	30-May-08	41231.00	="0708-831"	="Royal Australasian Ornithologists U"	10-Apr-08 03:20 PM	

+="CN69079"	"Consultancy Agreement for Water Recycling for Pastures and Crops"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Water resources development and oversight"	04-Feb-08	30-Jun-08	66000.00	="0708-949"	="RMCG Consulting Group"	10-Apr-08 03:20 PM	

+="CN69081"	"Development of an Environmental Benefit Index for Box Gum Grassy Woodlands"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	09-Nov-07	30-Apr-08	43367.50	="0708-0213"	="Australian National University"	10-Apr-08 03:20 PM	

+="CN69090-A2"	"Advice and Guidance of the development of a Box Gum Grassy Woodland field & training manual"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	30-Jun-08	47740.00	="0708-571"	="O'Connor Nrm Pty Ltd"	10-Apr-08 03:22 PM	

+="CN69095"	"Southern Right Whales - 2008 population dynamics review and photo ID catalogue cross match"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Dec-07	31-Dec-08	73500.00	="0708-972"	="Eubalaena Pty Ltd"	10-Apr-08 03:22 PM	

+="CN69097"	"Provide Market Research Services for the Hot Water System Purchasing Behaviour"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	04-Jan-08	14-Apr-08	78870.00	="0708-780"	="Winton Sustainable"	10-Apr-08 03:23 PM	

+="CN69098"	"Ad Hoc Advice on Technical Engineering issues - Labelling and MEPs"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Feb-08	20-Jun-08	79499.99	="0708-761"	="EnergyConsult Pty Ltd"	10-Apr-08 03:23 PM	

+="CN69106"	"Fairness Test Training"	="Workplace Authority"	10-Apr-08	="Work related organisations"	05-Dec-07	27-Jun-08	68003.38	=""	="Walter and Turnbull Pty Ltd"	10-Apr-08 03:30 PM	

+="CN69197"	"Lease extension for NSW AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-08	79346.96	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69198"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	41253.64	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69206"	"Construction Works"	="Bureau of Meteorology"	10-Apr-08	="General building construction"	01-Apr-08	30-Apr-08	77000.00	=""	="KLM GROUP"	10-Apr-08 04:00 PM	

+="CN69209"	"Telecommunications Services"	="Bureau of Meteorology"	10-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	68786.92	=""	="Telstra  (ID No. 740)"	10-Apr-08 04:00 PM	

+="CN69211"	"AIFS IBM LICENSE/MAINTENANCE RENEWALS 27-MAR-2008 - 31-MAR-2009"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	02-Apr-08	31-Mar-09	57956.42	=""	="IBM Australia Limited"	10-Apr-08 04:01 PM	

+="CN69214"	"2 TOYOTA HILUX MOTOR VEHICLES FOR COCOS ISLAND"	="Bureau of Meteorology"	10-Apr-08	="Motor vehicles"	25-Mar-08	30-Apr-08	44009.10	=""	="Melville Toyota"	10-Apr-08 04:01 PM	

+="CN69221"	"2 x SQL 2005 Licences; 2 x SQL 2005 Media kits"	="Bureau of Meteorology"	10-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	02-Apr-08	52312.02	=""	="Leading Solutions Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69222"	"Renewal of Software Licence & support for Oracle"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	31-Mar-08	13-May-09	54672.48	=""	="Oracle Corporation Australia"	10-Apr-08 04:02 PM	

+="CN69225"	"Humidity Sensor"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	15-May-08	53394.00	=""	="Pryde Measurement Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69228"	"Temp probe 100  + Connectors 50 Surface sensor 10 Sub surface sensor 50 Agromet sensors100"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	30-May-08	67771.00	=""	="Temperature Controls Pty Ltd"	10-Apr-08 04:03 PM	

+="CN69236"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	40657.40	=""	="Printing Industries Association"	10-Apr-08 04:19 PM	

+="CN69237"	"TOOLS AND ACCESSORIES FOR FOR THE .338 SNIPER RIFLE."	="Defence Materiel Organisation"	10-Apr-08	="Light weapons and ammunition"	03-Dec-07	03-Apr-08	52727.44	=""	="XTEK"	10-Apr-08 04:23 PM	

+="CN68739"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	10-Apr-08	="Computer services"	17-Dec-07	18-Apr-08	63910.00	=""	="Aurec"	10-Apr-08 04:30 PM	

+="CN69260"	"Implementation  Services for the  National Water Initiative work program"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	19-Mar-08	31-Aug-08	72000.00	="0708-1095"	="Gen-X Consulting Pty Ltd"	11-Apr-08 09:22 AM	

+="CN69261"	"RESEARCH SERVICES FOR THE MODELLING PESTICIDE FATE IN NORTHERN AUSTRALIA"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Crop production and management and protection"	19-Mar-08	30-Jun-08	61776.00	="0708-861"	="Natural Solutions Environmental"	11-Apr-08 09:22 AM	

+="CN69266"	"Services for maintenance of a database"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Computer services"	20-Mar-08	30-Jun-08	56775.00	="0708-1078"	="Toldark Pty Ltd"	11-Apr-08 09:23 AM	

+="CN69272"	"Design and development of kids website for National Pollutant Inventory"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	14-Mar-08	20-Jun-08	53900.00	="0708-1072"	="Kids Media Pty Ltd"	11-Apr-08 09:24 AM	

+="CN69275"	"Development of a comprehesive and systematic biodiversity monitoring program in Aus rangelands"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	44000.00	="0708-678"	="CSIRO Sustainable Ecosystems"	11-Apr-08 09:24 AM	

+="CN69277"	"Grants Admin Business Analysis Services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information services"	17-Mar-08	18-Mar-08	59400.00	="0708-779"	="GrantIt Pty Ltd"	11-Apr-08 09:25 AM	

+="CN69286-A1"	"Assessment of the uptake of cat baits and inserted capsule by non-target species"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	42735.00	="0708-1087"	="Department of Environment & Conserv"	11-Apr-08 09:26 AM	

+="CN69291"	"Software training video and dissemination of case studies of good GHG emission reduction"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	49610.00	="0708-1025"	="Australian Meat Processor"	11-Apr-08 09:26 AM	

+="CN69296"	"Gap Analysis and Strategy Development for Estuary Environmental Flows Policies"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	23-May-08	63800.00	="0607-091"	="Fluvial Systems PTY LTD"	11-Apr-08 09:27 AM	

+="CN69301"	"Review of local council to check compliance with EPBC Act since prev review conducted 2005"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Engineering and Research and Technology Based Services"	25-Mar-08	31-May-08	56718.20	="0708-642"	="Humphreys Reynolds Perkins"	11-Apr-08 09:28 AM	

+="CN69303"	"Professional services re National Facilitator Network recruitment"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Business administration services"	25-Mar-08	30-May-08	40000.00	="0708-751"	="Recruitment Management Company"	11-Apr-08 09:28 AM	

+="CN69307"	"Specialist Support re development of satellite infrastructure and systems for GIFC"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Aerospace systems and components and equipment"	07-Mar-08	30-Jun-08	60000.00	=""	="CSIRO Corporate Finance"	11-Apr-08 09:29 AM	

+="CN69309-A1"	"Creation of conservation advices for Act list of threatened species"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	31-May-08	66000.00	="0708-921"	="Biosis Research Pty Ltd"	11-Apr-08 09:29 AM	

+="CN69311-A1"	"Analyis of Current Business Process for Grants database implementation"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information services"	07-Mar-08	30-Jun-08	60000.00	="0708-1106"	="Dialog Information Technology"	11-Apr-08 09:29 AM	

+="CN69313"	"HPGe Detector & accessories"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Environmental management"	10-Mar-08	30-Jun-08	44924.00	="0708-0998"	="NU SCIENTIFIC PTY LIMITED"	11-Apr-08 09:29 AM	

+="CN69321"	"Performance Story for Indigenous Project - Turtles"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	20-Jun-08	78760.00	="0708-1027"	="TUNA BLUE PTY LTD (TRADING AS"	11-Apr-08 09:30 AM	

+="CN69322"	"Development of an EPBC Act policy statement for Migratory waterbirds"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	31-Dec-08	73216.00	="0708-918"	="Eco Logical Australia"	11-Apr-08 09:31 AM	

+="CN69326"	"Contract for taxonomic web services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information services"	06-Mar-08	30-Jun-08	52659.20	="0708-1065"	="Greythorn Pty Ltd"	11-Apr-08 09:31 AM	

+="CN69327"	"Contract for taxonomic web services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Information services"	07-Mar-08	30-Jun-08	40840.00	="0708-1063"	="AnswerZ Pty Ltd"	11-Apr-08 09:31 AM	

+="CN69328"	"Mail house services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Mail and cargo transport"	06-Mar-08	29-Mar-08	59627.32	=""	="Canprint Communications P/L"	11-Apr-08 09:32 AM	

+="CN69330"	"Rationalise and Complete Documentation of On-Line Reporting Processes"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Apr-08	47025.00	="0708-845"	="Acumen Alliance (ACT) Pty Ltd"	11-Apr-08 09:32 AM	

+="CN69332-A1"	"Provision of expert advice for act list of the Threatened black cockatoos, Carnaby's & Bau"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Engineering and Research and Technology Based Services"	13-Mar-08	30-Jun-08	40700.00	="0708-925"	="Christine Johnstone"	11-Apr-08 09:32 AM	

+="CN69334"	"Preparation of a Regulation Impact Statement-Water Efficiency Labelling and standards for whitegoods"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	13-Mar-08	30-Jun-08	59400.00	="0708-597"	="George Wilkenfeld & Associates"	11-Apr-08 09:32 AM	

+="CN69342"	"Bulk Recruitment Advertising Services in Press"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Advertising"	12-Mar-08	31-Mar-08	60000.00	=""	="HMA Blaze Pty Ltd"	11-Apr-08 09:33 AM	

+="CN69345"	"Refurbishment works at NT Offices"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="General building construction"	11-Mar-08	30-Jun-08	47000.00	="0708-896"	="Kyoto Contracting"	11-Apr-08 09:34 AM	

+="CN69348"	"Digital Elevation Model Project - National Elevation Data Framework"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	57543.75	=""	="Australian Academy of Science"	11-Apr-08 09:34 AM	

+="CN69351"	"Indigenous Forestry Stategy Communications Tools"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management advisory services"	12-Mar-08	30-May-08	74800.00	="0708-1100"	="Origin Communications Pty Ltd"	11-Apr-08 09:35 AM	

+="CN69353"	"legal services"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Legal services"	12-Mar-08	30-Oct-08	49500.00	="0708-070"	="Blake Dawson Waldron"	11-Apr-08 09:35 AM	

+="CN69358-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	12-Mar-08	30-Jun-08	60000.00	=""	="Mr Mark J Steele"	11-Apr-08 11:23 AM	

+="CN69360"	"Provision of  Project Mangement Services"	="Department of Parliamentary Services"	11-Apr-08	="Building and Construction and Maintenance Services"	31-Mar-08	30-Jun-08	41920.57	=""	="Manteena Pty Ltd"	11-Apr-08 11:40 AM	

+="CN69361"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	11-Apr-08	="Printing"	28-Mar-08	30-Jun-08	70400.00	=""	="Canprint Communications Pty Ltd"	11-Apr-08 11:40 AM	

+="CN69390-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	50000.00	=""	="Mr Tomo R O Boston"	11-Apr-08 12:35 PM	

+="CN69401"	"HOUSING, BEARING UNIT - 3130/011387579"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	25-Jun-07	01-Oct-07	75197.36	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:28 PM	

+="CN69403"	" Services to assist in the identification of an appropriate forward program of emergency Management and business continuity exercises. "	="Centrelink"	11-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-09	78925.00	="RFQ07-0539"	="Leslie Whittet and Associates Pty Ltd"	11-Apr-08 01:31 PM	

+="CN69406"	"4 UPS and associated equipment and installation"	="Australian Federal Police"	11-Apr-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	42385.86	="06/3330"	="Absolute Cabling Systems Pty Ltd"	11-Apr-08 01:35 PM	

+="CN69402"	"Site Selection for Temporary Exhibition"	="National Capital Authority"	11-Apr-08	="Exhibitions"	01-Mar-08	30-Apr-08	52085.00	=""	="Ormsby Kerrins Freeman"	11-Apr-08 01:40 PM	

+="CN69224-A1"	"Cost Assessors"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal assistance services"	20-Mar-08	30-Jun-08	55000.00	=""	="Costacomp Pty Ltd"	11-Apr-08 01:44 PM	

+="CN69410"	"BLADE, TURBINE ROTOR , AIRCRAFT GAS TURBINE - 2840/008770026"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	13-Mar-08	28-Mar-08	46460.00	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 01:50 PM	

+="CN69413"	"BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE - 2840/008770028"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	13-Mar-08	28-Mar-08	55752.00	=""	="AVAIL AUSTRALIA PTY LTD"	11-Apr-08 01:57 PM	

+="CN69418-A1"	" Legal services - counsel "	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	50000.00	=""	="Mr Peter Almond QC"	11-Apr-08 02:44 PM	

+="CN69422"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	11-Apr-08	="Information technology consultation services"	25-Mar-08	30-Jun-08	44308.00	=""	="Interpro Australia Pty Ltd"	11-Apr-08 03:06 PM	

+="CN69443"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	59635.71	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:12 PM	

+="CN69444"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	48639.77	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:15 PM	

+="CN69445"	"Motor Vehicle Parts."	="Department of Defence"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	44022.77	=""	="Mercedes Benz Aust. Pacific"	12-Apr-08 02:17 PM	

+="CN69453"	"Fencing Works - Ingleburn"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	02-Jan-08	30-Jun-08	55000.00	=""	="SOU WEST FENCING"	12-Apr-08 02:58 PM	

+="CN69455"	"To raise for planning manager for the sale of schofields"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	46200.00	=""	="GHD PTY LTD"	12-Apr-08 02:58 PM	

+="CN69456"	"Engagement of Conrad Gargett Spowers fpor the Consortium for the design"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	30-Jun-08	48128.30	=""	="HASSELL PTY LTD"	12-Apr-08 02:59 PM	

+="CN69460"	"Architectual Design and Documentation of Flight Deck Procedural Trainers"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	56771.00	=""	="RICE DAUBNEY"	12-Apr-08 02:59 PM	

+="CN69465"	"PRINTING OF THE ARMY NEWSPAPER"	="Department of Defence"	12-Apr-08	="Printed media"	08-Apr-08	30-Jun-08	57199.60	=""	="CAPITAL FINE PRINT"	12-Apr-08 03:00 PM	

+="CN69466"	"PRINTING OF THE NAVY NEWSPAPER"	="Department of Defence"	12-Apr-08	="Printed media"	07-Apr-08	07-Apr-08	46200.00	=""	="CAPITAL FINE PRINT"	12-Apr-08 03:00 PM	

+="CN69467"	"PRINTING OF THE RAAF NEWSPAPER"	="Department of Defence"	12-Apr-08	="Printed media"	07-Apr-08	07-Apr-08	52800.00	=""	="CAPITAL FINE PRINT"	12-Apr-08 03:00 PM	

+="CN69468"	"TELECOMMUNICATIONS SERVICES"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	19-Nov-07	19-Nov-07	47490.56	=""	="MCKESSON ASIA-PACIFIC PTY LTD"	12-Apr-08 03:00 PM	

+="CN69469"	"Review of ISB Safebase and Continuity of Operation Plan Development"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Dec-08	43829.50	=""	="BELL CONSULTANCY"	12-Apr-08 03:00 PM	

+="CN69471"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	49500.00	=""	="LIFESPORTS HEALTH PERSONNEL"	12-Apr-08 03:01 PM	

+="CN69480"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	18-Feb-08	30-Jun-08	66000.00	=""	="J M PONSONBY PTY LTD"	12-Apr-08 03:02 PM	

+="CN69481"	"HEALTH SERVICES"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	31-Mar-08	55000.00	=""	="LJH NURSING PTY LTD"	12-Apr-08 03:02 PM	

+="CN69487"	"Design Consultant services for DSTO Rationalisatio Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-09	43892.59	=""	="S2F PTY LTD"	12-Apr-08 03:03 PM	

+="CN69489"	"TRAINING"	="Department of Defence"	12-Apr-08	="Education and Training Services"	15-Jan-08	30-Jun-08	55000.00	=""	="IIT TRAINING PTY LTD"	12-Apr-08 03:03 PM	

+="CN69497"	"AIRPORT LIGHTING"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	68442.00	=""	="CONNELL WAGNER VIC PTY LTD"	12-Apr-08 03:04 PM	

+="CN69501"	"MAINTENANCE AGREEMENT FOR PLOTTER ANS SCANNERS AT DPS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	41690.00	=""	="OCE-AUSTRALIA LTD"	12-Apr-08 03:05 PM	

+="CN69507"	"ENGAGEMENT OF ON-SITE REPRESENTATIVE AT ICT-CNNSW FOR PERIOD OF 13 OCT 2005-29 AUG 2008"	="Department of Defence"	12-Apr-08	="Management advisory services"	25-Mar-08	29-Aug-08	52791.34	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	12-Apr-08 03:06 PM	

+="CN69513"	"GEELONG:MULTI USER DEPOT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	71384.94	=""	="LYONS CONSTRUCTION"	12-Apr-08 03:06 PM	

+="CN69518"	"PROVISION OF PROFESSIONAL WRITING AND PRODUCTION SERVCIES TO TEH DSTO EDINBURGH SA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	29-Feb-08	54020.01	=""	="LARA DAMIANI & ASSOCIATES PTY"	12-Apr-08 03:07 PM	

+="CN69528"	"Dentist for East Sale for 3 Months."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	68200.00	=""	="CHANDLER MACLEOD GROUP"	12-Apr-08 03:09 PM	

+="CN69529"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	03-Dec-07	30-Dec-07	77000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:09 PM	

+="CN69532"	"DARWIN NAVAL FUEL INSTALLATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-Jun-12	66562.10	=""	="GUTTERIDGE HASKINS AND DAVEY PTY LT"	12-Apr-08 03:09 PM	

+="CN69535"	"COMPUTER SERVICES"	="Department of Defence"	12-Apr-08	="Computer Equipment and Accessories"	11-Dec-07	31-Mar-08	77000.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	12-Apr-08 03:10 PM	

+="CN69543"	"TAXIS COSTS"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	14-Jan-08	20-Feb-08	41500.00	=""	="CAB CHARGE AUST PTY LTD"	12-Apr-08 03:11 PM	

+="CN69549"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	74580.00	=""	="CANDLE AUSTRALIA LIMITED"	12-Apr-08 03:12 PM	

+="CN69562"	"LEA BCISS Permanent Accomodation"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	40920.00	=""	="WOODS BAGOT"	12-Apr-08 03:13 PM	

+="CN69567"	"FREIGHT SERVICE - SOH & OP ASTUTE"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	19-Dec-07	30-Jun-08	66000.00	=""	="TNT AUSTRALIA"	12-Apr-08 03:14 PM	

+="CN69572"	"ADVERTISING - RECRUITMENT"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	11-Mar-08	30-Jun-08	65300.84	=""	="HMA BLAZE PTY LTD"	12-Apr-08 03:15 PM	

+="CN69590"	"development of Aide Memoire web services prototype"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	12-Nov-07	22-Feb-08	46594.40	=""	="CONSUNET PTY LTD"	12-Apr-08 03:17 PM	

+="CN69599"	"LAND 121 PHASE 3A & B - PROJECT OVERLANDER INFASTR"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	50875.00	=""	="POWER INITIATIVES"	12-Apr-08 03:19 PM	

+="CN69603"	"ASBESTOS RECTIFICATION"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	28-Nov-07	30-Jun-08	49072.62	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:19 PM	

+="CN69613"	"AIR 9000 PH 2."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	42481.71	=""	="THINC PROJECTS PTY LTD"	12-Apr-08 03:20 PM	

+="CN69614"	"PROOF & EXPERIMENTAL ESTABLISHMENT GRAYTOWN REFURBISHMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-10	69173.50	=""	="S2F PTY LTD"	12-Apr-08 03:21 PM	

+="CN69630"	"ENOGGERA REDEVELOPMENT STAGE 1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Jun-08	44000.00	=""	="THINC PROJECTS PTY LTD"	12-Apr-08 03:23 PM	

+="CN69636"	"LEAD CONSULTANT - STAGE 3 REMEDIATION AND VALIDATI FOR MYAMBAT AND NEWCASTLE - CNN"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	43667.80	=""	="GHD PTY LTD"	12-Apr-08 03:23 PM	

+="CN69647"	"CONSULTANCY AIRCRAFT PAVEMENT MAINTENANCE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	49808.00	=""	="CONNELL WAGNER VIC PTY LTD"	12-Apr-08 03:25 PM	

+="CN69648"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	13-Feb-08	80000.00	=""	="DANIEL MENDOZA-JONES"	12-Apr-08 03:25 PM	

+="CN69667"	"PROBITY ADVICE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	67031.25	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 03:27 PM	

+="CN69669"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	21-Dec-08	70716.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-Apr-08 03:28 PM	

+="CN69673"	"Complete DRN works and relocation of various buildings at Singleton Military Area"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	14-Nov-07	30-Jun-08	43772.49	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:28 PM	

+="CN69678"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	04-Mar-08	55000.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-Apr-08 03:29 PM	

+="CN69680"	"ASBESTOS REMEDIATION WORKS NAD SOUTH"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	56162.66	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:29 PM	

+="CN69685"	"Project Management Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	46200.00	=""	="FERGUSON PROJECT MANAGEMENT"	12-Apr-08 03:30 PM	

+="CN69692"	"CONSULTANCY SERVIVES: UPDATE OF AIRCRAFT PAVEMENT STRENGTH EVALUATION MANUAL (APSEM)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	42771.30	=""	="CONNELL WAGNER PTY LTD"	12-Apr-08 03:31 PM	

+="CN69694"	"HEALTH SERVICES FBEMC"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Dec-07	12-Dec-07	45618.40	=""	="ANURA THALAGALA"	12-Apr-08 03:31 PM	

+="CN69700"	"Type 1 reactive maintenance works for RAAF Base Williamtown"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Jan-08	30-Jun-08	50000.01	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:32 PM	

+="CN69701"	"ENHANCED LANDFORCE - 1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	66000.00	=""	="SPARKE HELMORE LAWYERS"	12-Apr-08 03:32 PM	

+="CN69705"	"REPLACEMENT OF COLLAPSED CHILLER COOLING WATER PIPE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	64258.04	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:32 PM	

+="CN69718"	"RAAF BASE RICHMOND STAGE 3 REMEDIATION AND VALIDATION - TA ROLE."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	42196.00	=""	="ENSR AUSTRALIA PTY LTD"	12-Apr-08 03:34 PM	

+="CN69719"	"Hire of Minotower Pentium Computers x 40, 17" Monitors x 35, Printers x 2."	="Department of Defence"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	47420.67	=""	="TR CORPORATION PTY LTD"	12-Apr-08 03:34 PM	

+="CN69727"	"Fuel Installation Bunding Repairs & Maint Stirling"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	49500.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:35 PM	

+="CN69729"	"BORIS OPerations Analyst"	="Department of Defence"	12-Apr-08	="Management advisory services"	14-Dec-07	30-Apr-08	66137.50	=""	="GWA CONSULTING"	12-Apr-08 03:35 PM	

+="CN69738"	"681912 (NT1602) Bulk Fuel Maintenance Part B. Demolish Fuel Farm One."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Jan-08	30-Jun-08	76813.12	=""	="ASSET SERVICES"	12-Apr-08 03:37 PM	

+="CN69742"	"Training"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Apr-09	66835.14	=""	="EFFECTIVE PEOPLE PTY LTD"	12-Apr-08 03:37 PM	

+="CN69744"	"Supply of Server Operator for ICT Program Gallipoli Barracks, Enoggera"	="Department of Defence"	12-Apr-08	="Telecommunications media services"	05-Dec-07	30-Jun-08	42407.20	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	12-Apr-08 03:37 PM	

+="CN69751"	"HEALTH SERVICE - FBEMC"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	21-Feb-08	30-Jun-08	45148.40	=""	="DR ANTHONY J DELANEY"	12-Apr-08 03:38 PM	

+="CN69753"	"HEALTH SERVICE - BNH"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	19-Feb-08	30-Jun-08	75499.60	=""	="DR LOUISE MURRAY"	12-Apr-08 03:39 PM	

+="CN69755"	"HEALTH SERVICE - RICHMOND"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	13-Mar-08	30-Jun-08	44000.00	=""	="DR THOMAS ACZEL"	12-Apr-08 03:39 PM	

+="CN69756"	"HEALTH SERVICE - RICHMOND"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	28-Feb-08	30-Jun-08	66000.00	=""	="ANTHONY KWA"	12-Apr-08 03:39 PM	

+="CN69758"	"HEALTH SERVICE - RRICHMOND"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Mar-08	30-Jun-08	44000.00	=""	="DR THANDAVAN B RAJ"	12-Apr-08 03:39 PM	

+="CN69764"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	29-Feb-08	43435.70	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:40 PM	

+="CN69765"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	29-Feb-08	57979.90	=""	="TSG AUSTRALIA"	12-Apr-08 03:40 PM	

+="CN69774"	"SASR CT Op& Maintenance Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	68563.05	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:41 PM	

+="CN69779"	"ADVERTISING"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	10-Dec-07	30-Jun-08	44385.00	=""	="AUSTRALIAN MEDICAL STUDENTS ASSOC"	12-Apr-08 03:42 PM	

+="CN69780"	"Breathing air analysis"	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	30-Jun-08	79999.99	=""	="THALES AUSTRALIA"	12-Apr-08 03:42 PM	

+="CN69789"	"VETTING CHECKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	58617.16	=""	="VEDA ADVANTAGE"	12-Apr-08 03:43 PM	

+="CN69791"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	49500.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:43 PM	

+="CN69809"	"IT user applications"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	80000.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	12-Apr-08 03:44 PM	

+="CN69839"	"RATIONS FOR DEFENCE RECRUITS"	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	22-Jan-08	30-Jun-08	44000.00	=""	="CALTEX  AVENEL"	12-Apr-08 03:46 PM	

+="CN69841"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Jun-08	50000.01	=""	="INTELLUMEN PTY LTD"	12-Apr-08 03:46 PM	

+="CN69842"	"RPT Seattle Locally Engaged Staff Office Administrator"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-10	42154.95	=""	="VOLT SERVICES GROUP"	12-Apr-08 03:46 PM	

+="CN69844"	"RPT Seattle Locally Engaged Staff Project control Assistant"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-09	40458.58	=""	="VOLT SERVICES GROUP"	12-Apr-08 03:47 PM	

+="CN69848"	"Consumables"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-10	51446.78	=""	="BOEING AUSTRALIA LTD"	12-Apr-08 03:47 PM	

+="CN69852"	"Research and Development"	="Defence Materiel Organisation"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	22-Mar-08	70259.50	=""	="SEAL SOLUTIONS PTY LTD"	12-Apr-08 03:47 PM	

+="CN69864"	"RFI Assessment Support - AGS Solicitors"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	56915.12	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 03:48 PM	

+="CN69868"	"Modification of aircraft for Night Vision"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	62057.38	=""	="RAYTHEON AUSTRALIA"	12-Apr-08 03:48 PM	

+="CN69878"	"Travel for 36 SQN Richmond for the Echdna 2b C130H Trials and Modifications"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	54035.41	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 03:49 PM	

+="CN69881"	"Stationery Consumables"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	59000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-Apr-08 03:49 PM	

+="CN69885"	"CMC ALLOCATIONS & COMMITMENT -GB&FM ROUTINE MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Nov-07	30-Jun-08	63000.00	=""	="ASSET SERVICES"	12-Apr-08 03:49 PM	

+="CN69886"	"BLUElink Integration with Tess 2"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	31-Oct-08	53231.53	=""	="THALES UNDERWATER SYSTEMS P/L"	12-Apr-08 03:50 PM	

+="CN69888"	"INTERIM SUPPORT ARRANGEMENTS FOR EPPS SOFTWARE DEVELOPED APPLICATIONS"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	31-Dec-08	49500.00	=""	="EPPS SOFTWARE PTY LTD"	12-Apr-08 03:50 PM	

+="CN69889"	"CMC ALLOCATIONS & COMMITMENT -GB&FM REACTIVE MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	67010.05	=""	="ASSET SERVICES"	12-Apr-08 03:50 PM	

+="CN69891"	"Provision of Health services"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	31-Mar-08	50259.44	=""	="ACCLAIM RECRUITMENT"	12-Apr-08 03:50 PM	

+="CN69900"	"GRENADE HAND FRAGMENTATION F1"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	31-Mar-08	64301.95	=""	="THALES AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69905"	"ACCOMMODATION"	="Department of Defence"	12-Apr-08	="Hotels and lodging and meeting facilities"	12-Nov-07	19-Nov-07	52000.01	=""	="HOTEL HERITAGE"	12-Apr-08 03:51 PM	

+="CN69909"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	79011.07	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69911"	"water utility rates"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	70000.00	=""	="SYDNEY WATER CORPORATION"	12-Apr-08 03:51 PM	

+="CN69913"	"Albury Wodonga Military Area - Consultancies for developing new works."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	77985.40	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-Apr-08 03:51 PM	

+="CN69916"	"Test & Trials position and systems Engineering support FY2006-2007"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	55000.00	=""	="NOVA AEROSPACE"	12-Apr-08 03:52 PM	

+="CN69935"	"SUPPLY OF TECHNICAL GASES AND HIRE OF CYCLINDERS FOR RAAF BASE WILLIAMTOWN"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	44000.00	=""	="BOC LIMITED"	12-Apr-08 03:53 PM	

+="CN69943"	"FP&EM RWL'S"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	31-Jul-08	44000.00	=""	="RESOLVE FM"	12-Apr-08 03:53 PM	

+="CN69945"	"Provision of Civilian Contracted Labour Hire"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	67694.48	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-Apr-08 03:54 PM	

+="CN69947"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	61468.00	=""	="AGIMA COMPUTING PTY LTD"	12-Apr-08 03:54 PM	

+="CN69956"	"Repair Effort Fees IAW SO C338413"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-May-08	65816.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:54 PM	

+="CN69965"	"LPG - PEARCE FY 07/08"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Jun-08	55000.00	=""	="KLEANHEAT GAS"	12-Apr-08 03:55 PM	

+="CN69968-A1"	"TS4009-4 DISPOSAL OF OBSOLETE/REDUNDANT EQUIPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Military watercraft"	12-Nov-07	21-Jan-11	68814.06	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:55 PM	

+="CN69975"	"postal services"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	51000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:56 PM	

+="CN69980"	"PROFESSIONAL SUPPORT FOR HUG PH2.3 & HUG PH3.2"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Dec-08	64232.14	=""	="JACOBS AUSTRALIA"	12-Apr-08 03:56 PM	

+="CN69986"	"Provide Acceptance Manager for FFG Upgrade Project for Lead and first Follow-On Ship"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jan-08	43417.46	=""	="SYPAQ SYSTEMS PTY LTD"	12-Apr-08 03:57 PM	

+="CN69989"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	18-Dec-07	30-Jun-08	44000.00	=""	="TOLL PRIORITY"	12-Apr-08 03:57 PM	

+="CN69991"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	59840.00	=""	="CODARRA ADVANCED SYSTEMS"	12-Apr-08 03:57 PM	

+="CN69994"	"AEWC DATA MANAGER"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-08	62227.15	=""	="VOLT SERVICES GROUP"	12-Apr-08 03:57 PM	

+="CN70001"	"WATER UTILITIES"	="Department of Defence"	12-Apr-08	="Utilities"	06-Mar-08	30-Jun-08	70000.00	=""	="RIVERINA WATER"	12-Apr-08 03:58 PM	

+="CN70004"	"INTEGRATION OF PROTOTYPE ELECTRO-OPTICAL SITUATION AWARENESS CAPABILITY"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	79036.24	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:58 PM	

+="CN70008"	"Legal Services - Probity"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	55000.00	=""	="SPARKE HELMORE LAWYERS"	12-Apr-08 03:58 PM	

+="CN70013"	"IT EQUIPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	05-Dec-07	75752.82	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-Apr-08 03:58 PM	

+="CN70015"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	13-Dec-07	30-Jun-08	69290.00	=""	="BLAKE DAWSON WALDRON"	12-Apr-08 03:59 PM	

+="CN70017"	"PROVISION OF SOFTWARE PROGRAMMER TO SUPPORT MARITIME CAPABILITY STUDIES GROUP MOD NSW"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	16-May-08	41500.00	=""	="AMBIT GROUP PTY LTD"	12-Apr-08 03:59 PM	

+="CN70022"	"PSP SUPPORT FOR TEST AND EVALUATION"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Feb-08	72010.40	=""	="NOVA AEROSPACE"	12-Apr-08 03:59 PM	

+="CN70024"	"Techical Support Specialist to Support Air 5416PH2 and AIR 5416 4B"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	55733.59	=""	="SIGMA BRAVO PTY LTD"	12-Apr-08 03:59 PM	

+="CN70026"	"Freight Requirement for ASABAKA"	="Defence Materiel Organisation"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	28-Jun-08	55000.00	=""	="TNT AUSTRALIA"	12-Apr-08 03:59 PM	

+="CN70029"	"BULK FUEL INSTALLATIONS PROGRAMMED MAINTENACE"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Mar-08	30-Jun-08	41877.00	=""	="BASSETT CONSULTING ENGINEERS"	12-Apr-08 04:00 PM	

+="CN70033"	"Immediate & Urgent GEW Reactive Maintenance Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	48399.94	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 04:00 PM	

+="CN70036"	"PSP SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	51585.64	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:00 PM	

+="CN70037"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	19-Nov-07	55000.00	=""	="PROART"	12-Apr-08 04:00 PM	

+="CN70039"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-08	40000.00	=""	="STAY UPRIGHT PTY LTD"	12-Apr-08 04:00 PM	

+="CN70055"	"SUPPLY OF FROZEN FOOD, SEAFOOD, BUTTER, CHEESE & MARGARINE TO ROBERTSON BARRACKS FY 07-08."	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	14-Mar-08	30-Jun-08	50000.00	=""	="UNITED FOOD SERVICE"	12-Apr-08 04:01 PM	

+="CN70056"	"TMD Wrapping Facility to CSIG"	="Defence Materiel Organisation"	12-Apr-08	="General building construction"	12-Nov-07	30-Jun-08	77721.60	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:01 PM	

+="CN70057"	"SUPPLY OF FRESH FRUIT FRUIT, VEGETABLES, & EGGS TO ROBERTSON BARRACKS FY 07-08"	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	14-Mar-08	30-Jun-08	50000.00	=""	="THE FRESH NETWORK - DARWIN"	12-Apr-08 04:01 PM	

+="CN70062"	"WORK PACKAGE 6 SDE SOFTWARE PROCEDURE DEVELOPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Jan-08	46677.26	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:02 PM	

+="CN70063"	"SUPPLY OF MEAT TO ROBERTSON BARRACKS FY 07-08"	="Department of Defence"	12-Apr-08	="Meat and poultry products"	14-Mar-08	30-Jun-08	50000.00	=""	="QUALITY MEATS PTY LTD"	12-Apr-08 04:02 PM	

+="CN70070"	"In service Support of the Tank Driver Trainer RAGTS & PAGTS Simulators"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Jun-12	61803.56	=""	="SYDAC PTY LTD"	12-Apr-08 04:02 PM	

+="CN70073"	"Development of Software Air-to-Air Weapons Analysis"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Jun-08	51004.80	=""	="PRON SOFTWARE PTY LTD"	12-Apr-08 04:03 PM	

+="CN70079"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	31-Aug-08	60720.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	12-Apr-08 04:03 PM	

+="CN70081"	"FEES - PENRITH - DECON"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	73426.78	=""	="ENVIROPACIFIC SERVICES PTY LTD"	12-Apr-08 04:03 PM	

+="CN70082"	"TS4017U1-4 INSTALLATION OF FOLLOW-ON (FON) TASKS TO HMAS STUART"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Mar-08	46568.51	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:03 PM	

+="CN70083"	"ADVERTISING FOR CIVILIAN RECRUITMENT"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	55000.00	=""	="HMA BLAZE PTY LTD"	12-Apr-08 04:03 PM	

+="CN70085"	"POSTAL SERVICES VBM MAILROOM"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	77000.00	=""	="AUSTRALIA POST"	12-Apr-08 04:03 PM	

+="CN70092"	"Systems Engineering Support Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	55000.00	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-Apr-08 04:04 PM	

+="CN70097"	"Mechanical engineering services during Test Run ning Phase, under Contract 0506-215."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	57200.00	=""	="CAPILO PTY LTD"	12-Apr-08 04:04 PM	

+="CN70099"	"LP GAS TO POWER GALLEYS /HOT WATER"	="Department of Defence"	12-Apr-08	="Chemicals including Bio Chemicals and Gas Materials"	09-Apr-08	30-Jun-08	44000.00	=""	="ORIGIN ENERGY PTY LTD"	12-Apr-08 04:04 PM	

+="CN70103"	"FREIGHT SERVICES"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	10-Dec-07	30-Dec-07	41100.00	=""	="TOLL PRIORITY"	12-Apr-08 04:05 PM	

+="CN70104"	"TOWNSVILLE AIRFIELD LIGHTING UPGRADE"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jan-08	43646.90	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-Apr-08 04:05 PM	

+="CN70117"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	59648.00	=""	="PHILLIP CHARLEY"	12-Apr-08 04:06 PM	

+="CN70122"	"LAP Delivery Management Services for JP2077 Phase 2B.1"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	16-Apr-08	42240.00	=""	="KABED CONSULTING PTY LTD"	12-Apr-08 04:06 PM	

+="CN70124"	"Aircraft Maintenance"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	57200.00	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 04:06 PM	

+="CN70128"	"Provision of a Avionics Deputy Senior Design Engineer"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Apr-08	75224.99	=""	="NOVA AEROSPACE"	12-Apr-08 04:06 PM	

+="CN70149"	"PROFESSIONAL SERVICES PROVIDERS"	="Department of Defence"	12-Apr-08	="Management advisory services"	06-Dec-07	30-Jun-08	68545.45	=""	="MERCADIER CONSULTING PTY LTD"	12-Apr-08 04:08 PM	

+="CN70155"	"Psych services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	49500.00	=""	="IAN JOHNSTON & ASSOCIATES"	12-Apr-08 04:08 PM	

+="CN70165"	"Op Outreach - Various"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	75603.88	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:09 PM	

+="CN70167"	"SECURITY COMLIANCE WORKS - VARIOUS LOCATIONS"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	68514.36	=""	="SPOTLESS"	12-Apr-08 04:09 PM	

+="CN70173"	"PROVISION OF FREIGHT CHARGES NT/K MAILROOM"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	53010.62	=""	="TOLL PRIORITY"	12-Apr-08 04:10 PM	

+="CN70177"	"COURIER SERVICES"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	14-Jan-08	30-Jun-08	55000.00	=""	="TNT AUSTRALIA"	12-Apr-08 04:10 PM	

+="CN70181"	"Model and Software Development in Support of Moving Target Assessment for Air 5418"	="Department of Defence"	12-Apr-08	="Professional engineering services"	07-Feb-08	30-Jun-08	50828.53	=""	="ASSOCIATED ELECTRONIC SERVICES"	12-Apr-08 04:10 PM	

+="CN70183"	"Tier 1 Customer Support Services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	05-Aug-09	73022.44	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 04:10 PM	

+="CN70184"	"tech services"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Apr-08	66000.00	=""	="BAE SYSTEMS(AUSTRALIA)"	12-Apr-08 04:10 PM	

+="CN70191"	"IT EQUIPMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Apr-08	50575.24	=""	="MITSO CONSULTING PTY LTD"	12-Apr-08 04:11 PM	

+="CN70196"	"TECHNICAL IMPLEMENTATION SPECIALIST"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	14-Mar-08	44000.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-Apr-08 04:11 PM	

+="CN70204"	"Provide Systems Engineering for SEA01401PH3"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	10-Sep-09	72000.01	=""	="SYPAQ SYSTEMS PTY LTD"	12-Apr-08 04:12 PM	

+="CN70217"	"Upgrade kitchen facilities within Building 8 at Adamstown Training Depot"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	04-Dec-07	30-Jun-08	41104.40	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 04:13 PM	

+="CN70225"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	12-Apr-08	="Fruits and vegetables and nuts and seeds"	10-Dec-07	30-Jun-08	80000.00	=""	="SIMON GEORGE &"	12-Apr-08 04:13 PM	

+="CN70228"	"BCSPO Chief Engineer"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	62679.61	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	12-Apr-08 04:13 PM	

+="CN70229"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	44000.00	=""	="PUBLICATION PERSPECTIVES PTY LTD"	12-Apr-08 04:14 PM	

+="CN70231"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	76682.90	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-Apr-08 04:14 PM	

+="CN70232"	"Procure Suplus and Redundant Radar Assets from closure of Thales St Mary's facility"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	07-Jun-08	52421.20	=""	="THALES AUSTRALIA"	12-Apr-08 04:14 PM	

+="CN70233"	"CONTRACT HEALTH PRACTIONER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	43000.00	=""	="DR REZA ADIB"	12-Apr-08 04:14 PM	

+="CN70242"	"HMAS HAWK FAMP 2/07 16 JUL - 10 AUG 07"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	67746.44	=""	="THALES AUSTRALIA"	12-Apr-08 04:14 PM	

+="CN70247"	"Communications"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	66000.00	=""	="TELSTRA"	12-Apr-08 04:15 PM	

+="CN70256"	"EWSP Project Manager"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	65502.80	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:15 PM	

+="CN70257"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	19-Nov-07	19-Nov-07	59641.28	=""	="KG YOUNG & ASSOCIATES PTY LTD"	12-Apr-08 04:16 PM	

+="CN70258"	"CONSULTANT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	69999.46	=""	="CODARRA ADVANCED SYSTEMS"	12-Apr-08 04:16 PM	

+="CN70264"	"Upgrade BCSS Release 8"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	70950.00	=""	="XANALYS PTY LTD"	12-Apr-08 04:16 PM	

+="CN70265"	"Programming Suuport to Simframework Application Development"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	30-Jun-08	76269.60	=""	="KAZ GROUP PTY LTD"	12-Apr-08 04:16 PM	

+="CN70282"	"ACCORD SUPPORT PH8B"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	69021.33	=""	="AUSTRALIAN AEROSPACE PTY LTD"	12-Apr-08 04:17 PM	

+="CN70288"	"AVSF Supplementation enix"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	76289.40	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:18 PM	

+="CN70292"	"Logistics Flight Supplementation Tenix"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	44915.20	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:18 PM	

+="CN70312"	"Painting of P3 Components (Off-Aircraft) in Support of Deeper Level Maintenance"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	55000.00	=""	="TASMAN AVIATION ENTERPRISES"	12-Apr-08 04:19 PM	

+="CN70314"	"procurement training"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	62033.74	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-Apr-08 04:19 PM	

+="CN70317"	"MRH90 DESIGN/PROTOTYPES AUG-DEC 2007 TTC BRISBANE"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	13-Jun-08	45000.00	=""	="STUART CAMPBELL"	12-Apr-08 04:20 PM	

+="CN70319"	"MRH90 DESIGN/PROTOTYPES AUG-DEC 2007 TTC BRISBANE"	="Department of Defence"	12-Apr-08	="Education and Training Services"	12-Nov-07	13-Jun-08	45000.00	=""	="BRETT COFFIN"	12-Apr-08 04:20 PM	

+="CN70320"	"COMBAT BOOT REVIEW CONTRACT LEA-CM-2007-021"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	75761.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:20 PM	

+="CN70336"	"REPAIR PANELS ON kANIMBLA"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Mar-08	42625.00	=""	="GTSA ENGINEERING"	12-Apr-08 04:21 PM	

+="CN70338"	"CLOTH NAME TAGS"	="Defence Materiel Organisation"	12-Apr-08	="Clothing"	12-Nov-07	30-Jun-08	66000.00	=""	="APPAREL ADDITIONS"	12-Apr-08 04:21 PM	

+="CN70344"	"SERVICE AIR START PT & STBD MN ENG"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	19-Dec-07	40052.76	=""	="FIXAIR"	12-Apr-08 04:22 PM	

+="CN70353"	"Maintenance planning tool development"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	45390.00	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 04:22 PM	

+="CN70354"	"PC9 (A23T) AIRCRAFT SPARES"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Apr-08	45473.78	=""	="PILATUS AIRCRAFT LTD"	12-Apr-08 04:22 PM	

+="CN70357"	"AIRFOCE PRODUCTION ACTIVITIES DURING 067/08"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	41606.40	=""	="GEORGE PATTERSON Y & R"	12-Apr-08 04:23 PM	

+="CN70371"	"Western Region Fire Management WA region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	04-Mar-08	30-Jun-08	44400.00	=""	="DEPT OF ENVIRONMENT AND"	12-Apr-08 04:23 PM	

+="CN70373"	"Fire Management"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	63767.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:24 PM	

+="CN70374"	"RATION PACKS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	52155.97	=""	="1ST FLEET PTY LTD"	12-Apr-08 04:24 PM	

+="CN70390"	"Engagement of personnel"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	51788.00	=""	="ROSS HUMAN DIRECTIONS"	12-Apr-08 04:25 PM	

+="CN70392"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	67922.95	=""	="RAYTHEON AUST PTY LTD"	12-Apr-08 04:25 PM	

+="CN70393"	"REGIONAL ICT WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	66000.01	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:25 PM	

+="CN70407"	"Bulk order for supply of industrial gas for 3 mths"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	50000.00	=""	="BOC LIMITED"	12-Apr-08 04:26 PM	

+="CN70411"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	13-Mar-08	72600.00	=""	="THE PEOPLE COMPANY"	12-Apr-08 04:26 PM	

+="CN70414"	"carry out SML electrical drawings configuratio audit"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	44550.00	=""	="G A GLANVILLE & CO"	12-Apr-08 04:26 PM	

+="CN70415"	"Project Management Services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Apr-08	56601.86	=""	="BLUE SWIMMER CONSULTING"	12-Apr-08 04:27 PM	

+="CN70421"	"TSS Contract - Provision Of Modelling & Development Support for Land Combat Simulation."	="Department of Defence"	12-Apr-08	="Professional engineering services"	12-Nov-07	30-Jun-08	74800.00	=""	="EBOR COMPUTING"	12-Apr-08 04:27 PM	

+="CN70425"	"Variable Invoices 07/08 Garrison Support. RAAF Tindal - Devolved"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	69944.18	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-Apr-08 04:27 PM	

+="CN70428"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	62150.00	=""	="SPUD'S ROADHOUSE"	12-Apr-08 04:27 PM	

+="CN70437"	"PM fees Fyshwick Dairy Rd Blds 2,3 repair floor"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	42674.21	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:28 PM	

+="CN70439"	"PROVISION OF MAINTENANCE SUPPORT FOR DEPARTMENT OF DEFENCE VOICEMAIL."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Feb-08	55000.00	=""	="ACTIVE VOICE LLC"	12-Apr-08 04:28 PM	

+="CN70441"	"CONSULTANCY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	56000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-Apr-08 04:28 PM	

+="CN70443"	"DS-SC Urgent FACOPS support to APEC"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	49846.75	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 04:28 PM	

+="CN70444"	"PROFESSIONAL SERVICE PROVIDER FOR HYPERBARICS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	70400.00	=""	="SME GATEWAY LIMITED"	12-Apr-08 04:29 PM	

+="CN70445"	"CONSULTANTCY SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	40000.00	=""	="GLEN E TYE"	12-Apr-08 04:29 PM	

+="CN70451"	"Advertising"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	70400.00	=""	="HMA BLAZE PTY LTD"	12-Apr-08 04:29 PM	

+="CN70455"	"VARIOUS RESEARCH PROJECT"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	68566.88	=""	="OPEN MIND RESEARCH GROUP"	12-Apr-08 04:29 PM	

+="CN70456"	"ASD Business Management Rejuvenation Program"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	56371.39	=""	="KPMG"	12-Apr-08 04:29 PM	

+="CN70457"	"DESIGNING AND TYPESETTING REPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Nov-07	49700.00	=""	="CRE8IVE AUSTRALASIA PTY LTD"	12-Apr-08 04:30 PM	

+="CN70461"	"COST FOR ADFA BOARDS"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	65970.30	=""	="PAVILION ON NORTHBOURNE"	12-Apr-08 04:30 PM	

+="CN70464"	"SDSS Data Quality Management"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	11-Nov-07	04-May-08	63250.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-Apr-08 04:30 PM	

+="CN70466"	"Provision of Project Engineering support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	45511.52	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:30 PM	

+="CN70468"	"Scanning, Document Conversion and Archiving"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	28-Feb-08	58520.00	=""	="ENGINEERING & SCIENTIFIC SYSTEMS"	12-Apr-08 04:30 PM	

+="CN70475"	"Project officer contract"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	29-Feb-08	52036.11	=""	="PF & AE WEBB"	12-Apr-08 04:31 PM	

+="CN70476"	"INDUCTION OF REPAIRABLE ITEMS FOR REPAIR"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	41924.66	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	12-Apr-08 04:31 PM	

+="CN70478"	"Probity Adviser Services"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	61820.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-Apr-08 04:31 PM	

+="CN70495"	"Supply of Grocery to RAAF Base Tindal Ration Store"	="Department of Defence"	12-Apr-08	="Food and Beverage Products"	12-Nov-07	30-Jun-08	40500.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	12-Apr-08 04:32 PM	

+="CN70502"	"Project Support Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Mar-08	77999.90	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:33 PM	

+="CN70505"	"Aircraft Technical Support"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	40098.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:33 PM	

+="CN70525"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-May-08	51500.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 04:34 PM	

+="CN70526"	"PLANNED MAINTENANCE SUPPORT FOR MINE WARFARE EQUIPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	11-Nov-07	06-Jun-08	75526.74	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:34 PM	

+="CN70531"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	53580.00	=""	="CLAYTON UTZ"	12-Apr-08 04:35 PM	

+="CN70533"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Apr-08	41064.09	=""	="CLAYTON UTZ"	12-Apr-08 04:35 PM	

+="CN70540"	"SUPPLY OF  DISTILLATE FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	53900.00	=""	="MINI TANKERS (AUSTRALIA) PTY LTD"	12-Apr-08 04:35 PM	

+="CN70554"	"CONSULTANCY"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	60513.20	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-Apr-08 04:36 PM	

+="CN70561"	"SA2401 WORK PLANNING FEES GENERAL FOR JINDALEE HARTS RANGE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	07-Dec-07	61451.50	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:37 PM	

+="CN70571"	"Schedule Analyst for AEWCSPO"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	59220.48	=""	="SYPAQ SYSTEMS PTY LTD"	12-Apr-08 04:38 PM	

+="CN70576"	"VARIATION TO PIRCHASE ORDER TO INCLUDE ELF WORKS P"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	50326.47	=""	="HMA BLAZE PTY LTD"	12-Apr-08 04:38 PM	

+="CN70578"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	51871.88	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:38 PM	

+="CN70581"	"681910 (NT1766) Project Vigilaire - AIR5333 Electrical Pacakage"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	72516.00	=""	="NILSEN (NT) PTY LTD"	12-Apr-08 04:38 PM	

+="CN70594"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	03-Dec-07	57000.00	=""	="NEW FOCUS RESEARCH PTY LTD"	12-Apr-08 04:39 PM	

+="CN70597"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	79805.00	=""	="KINETIC DEFENCE SERVICES PTY LTD"	12-Apr-08 04:40 PM	

+="CN70604"	"DMES JMP0603 - Business Analysis Services"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	24-Apr-08	72150.01	=""	="KPMG"	12-Apr-08 04:40 PM	

+="CN70605"	"EVANS HEAD MEMORIAL AERODROME"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	42310.95	=""	="ENSR AUSTRALIA PTY LIMITED"	12-Apr-08 04:40 PM	

+="CN70606"	"Replace number 2 sewerage pump"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	15-Mar-12	64061.14	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-Apr-08 04:40 PM	

+="CN70611"	"Criminal record checks"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	51500.00	=""	="CRIMTRAC AGENCY"	12-Apr-08 04:41 PM	

+="CN70618"	"DESIGN AND PRINTING OF PUBLICATIONS"	="Defence Materiel Organisation"	12-Apr-08	="Printed media"	12-Nov-07	19-Nov-07	47732.90	=""	="SWELL DESIGN GROUP"	12-Apr-08 04:41 PM	

+="CN70622"	"stores support for SMLs"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jan-08	40375.25	=""	="G A GLANVILLE & CO"	12-Apr-08 04:41 PM	

+="CN70629"	"Sustainability Consultancy Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	56550.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 04:42 PM	

+="CN70631"	"Venue hire for Land Warfare Conference 2007"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	12-Dec-07	48481.50	=""	="ADELAIDE CONVENTION CENTRE"	12-Apr-08 04:42 PM	

+="CN70636"	"Wedgetail Capability Modelling Environment Service Order #10"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	29-Mar-08	47300.00	=""	="CAE PROFESSIONAL SERVICES"	12-Apr-08 04:42 PM	

+="CN70639"	"MAJURA STAGE 1 & 2 ENVIRONMENTAL INVESTIGATION FOR LEAD CONSULTANT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	56973.40	=""	="ENSR AUSTRALIA PTY LIMITED"	12-Apr-08 04:42 PM	

+="CN70657"	"FMS Training for ADO Personnel"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	09-Jan-08	30-Jun-08	57611.48	=""	="FMS ACCOUNT"	12-Apr-08 04:44 PM	

+="CN70662"	"Provision of Programmer Support for Development of Critical Information Infrastructure Protection"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	20-May-08	51836.40	=""	="EBOR COMPUTING"	12-Apr-08 04:44 PM	

+="CN70668"	"Electrical Integrity testing for D.E.B, RAAF, Larrakeyah, Robertson Barracks DS NT/K Facilities"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	66000.00	=""	="NT ELECTRICAL INTEGRITY TESTING"	12-Apr-08 04:45 PM	

+="CN70672"	"CONDUCT OF INTERVIEWS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	70000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	12-Apr-08 04:45 PM	

+="CN70674"	"CHTR OF DASH8 FOR SUPPORT TO FEDERAL ELECTION 07"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	31-Dec-07	77000.00	=""	="INDEPENDENT AVIATION PTY LTD"	12-Apr-08 04:46 PM	

+="CN70680-A1"	"Consultancy service for Contact Centre"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	29-Nov-07	21-Dec-08	70000.00	=""	="Vivaz Pty Ltd"	14-Apr-08 09:02 AM	

+="CN70711"	"Property Lease Rental Accommadation Vanuatu"	="Australian Federal Police"	14-Apr-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-10	50000.00	=""	="Louise Stevens"	14-Apr-08 10:32 AM	

+="CN68765-A2"	"Cost Management and Quantity Surveying Services"	="Australian Securities and Investments Commission"	14-Apr-08	="Project management"	25-Feb-08	01-Nov-08	56000.00	=""	="Rider Levett Bucknall SA Pty Ltd"	14-Apr-08 10:32 AM	

+="CN70715"	" Probity Advisory Services - APCM123.02-81 "	="Australian Taxation Office"	14-Apr-08	="Financial and Insurance Services"	08-Apr-08	31-Dec-08	40000.00	="123.02-81"	="Walter Turnbull Pty Ltd"	14-Apr-08 11:07 AM	

+="CN70723"	"Centrelink Panel IMU Contract Programmer: IMU-ICT100 Work Order DVAIMU2008/002"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	06-Oct-08	75504.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70724"	"Centrelink Panel IMU Contract Programmer IMU-ICT112 Work Order DVAIMU2008/001"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	01-Aug-08	69212.00	=""	="Peoplebank Australia Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70728"	"CCC Phase 1"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	29-Jan-08	29-Feb-08	40800.00	=""	="IBM Australia Ltd"	14-Apr-08 11:48 AM	

+="CN70731-A1"	"DocGen / E Transactions"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	27-Jun-08	65000.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70732-A1"	"SDMP Transport - Reporting"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	27-Jun-08	66000.00	=""	="F1 Solutions"	14-Apr-08 11:48 AM	

+="CN70744"	"Printing - Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	24-Sep-07	05-Jun-08	55000.00	=""	="HMA Blaze Pty Ltd"	14-Apr-08 12:36 PM	

+="CN70765"	"Health Checks"	="Workplace Authority"	14-Apr-08	="Health service planning"	31-Jul-07	30-Jun-08	43727.00	=""	="Health Services Australia Ltd"	14-Apr-08 12:58 PM	

+="CN70778"	"Postage Services - NSW"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	21-Mar-08	27-Jun-08	79220.90	=""	="Australian Post"	14-Apr-08 01:10 PM	

+="CN70748"	"IVR Tuning and Analysis"	="Australian Taxation Office"	14-Apr-08	="Computer services"	14-Apr-08	30-Jun-08	49060.00	="RFQ T&A"	="Dimension Data Aust Pty Ltd"	14-Apr-08 01:14 PM	

+="CN70777"	" survey and inspection and repairs on 28 LAR V1 "	="Department of Defence"	14-Apr-08	="Respiration air supplying self contained breathing apparatus or accessories"	20-Nov-07	10-Apr-08	53571.35	=""	="Drager Safety"	14-Apr-08 01:14 PM	

+="CN70790"	"Security Services"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	24-Mar-08	30-Jun-08	46574.00	=""	="SECOM TECHNICAL SERVICES Pty Ltd"	14-Apr-08 02:02 PM	

+="CN70795"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	27-Feb-08	06-Mar-08	76136.50	=""	="SECOM Technical Services Pty Ltd"	14-Apr-08 02:14 PM	

+="CN70798"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Accommodation furniture"	27-Nov-07	19-Feb-08	47408.90	=""	="MDA Interiors Pty Ltd"	14-Apr-08 02:22 PM	

+="CN70800-A1"	"A and BAC External Member"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Accounting services"	20-Nov-07	21-Dec-09	49500.00	="PRN12008"	="MORISON CONSULTING"	14-Apr-08 02:46 PM	

+="CN70801"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Dec-07	31-Jan-08	48161.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:51 PM	

+="CN70810-A1"	"Quality in offshore delivery in VET Dissemination activities"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	10-Dec-07	06-Jun-08	64500.00	="PRN17892"	="NCVER"	14-Apr-08 03:50 PM	

+="CN70813"	"Wellington Group Forum 2008"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	04-Jan-09	60000.00	="PRN16997"	="INTERCONTINENTAL SYDNEY"	14-Apr-08 03:53 PM	

+="CN70815"	"APS Jobs (Gazette) Annual Subsription 2007-08"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	46121.38	="PRN18314"	="AUSTRALIAN PUBLIC SERVICE COMM"	14-Apr-08 03:54 PM	

+="CN70817"	"Maintenance of tennant owned supplementary Airconditioning Units"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Building and Construction and Maintenance Services"	05-Jan-07	03-Jan-08	42000.00	="PRN17932"	="RILEY SHELLEY BUILDING SERVICES P/L"	14-Apr-08 03:55 PM	

+="CN70824-A1"	"Barriers to providing school based prevention programms for ecstacy and related drugs"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Market research"	01-Apr-05	31-May-05	55000.00	="PRN6981"	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 03:57 PM	

+="CN70830-A1"	"Period Order 0708: COPE Courier"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Mail and cargo transport"	02-Jan-08	30-Jun-09	45000.00	="PRN18248"	="COPE TRANSPORT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70832"	"Training Package Development Handbook Policy Text"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	02-Jan-08	30-Jun-08	40000.00	="PRN18224"	="QUALITY TRAINING CONCEPTS PTY LTD"	14-Apr-08 04:00 PM	

+="CN70858-A1"	"Evaluation of Successful Learning in the Early Years of Schooling Project : Indigenous Parent Factor"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	23-Nov-07	23-Jan-08	74200.00	="PRN16540"	="DENIS MULLER and ASSOCIATES"	14-Apr-08 04:15 PM	

+="CN70890"	"UNSW CO-OP PROGRAM 2006"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-05	30-Jun-09	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70892"	"UNSW CO-OP PROGRAM 2008"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-07	30-Jun-11	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70893"	"MS PROJECT SERVER EPM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	03-Mar-08	31-May-08	56855.00	=""	="STRATEGIC DATA MANAGEMENT"	14-Apr-08 04:43 PM	

+="CN70895"	"ITSM SOFTWARE LICENCES (KNOWLEDGE AND INVENTORY MANAGEMENT)"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	01-Apr-08	01-Apr-08	46750.00	="ATM016"	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:44 PM	

+="CN70901"	"HP HARDWARE SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	01-Apr-08	31-Mar-09	44616.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70902"	"SOFTWARE UPDATE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	08-Apr-08	08-Apr-08	75115.79	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70905"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1639 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	14-Apr-08	="Aerospace systems and components and equipment"	14-Apr-08	30-Apr-08	64956.07	=""	="Goodrich Control Systems PTY LTD"	14-Apr-08 04:58 PM	

+="CN70909"	"Training course - Senior Administrative Officer & Post Security Officer"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	01-Jul-08	30-Jun-10	60000.00	=""	="AKE ASIA-PACIFIC PTY LIMITED"	14-Apr-08 05:15 PM 

--- /dev/null
+++ b/admin/partialdata/10Apr2008to14Apr2008val80000to300000.xls
@@ -1,1 +1,401 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN68855-A1"	"Legal services - counsel"	="Australian Securities and Investments Commission"	10-Apr-08	="Legal services"	01-Jan-08	30-Jun-09	150000.00	=""	="Mr Norman J. O'Bryan"	10-Apr-08 09:38 AM	

+="CN68867-A1"	"Provide support to EUC bundle strategy."	="Australian Taxation Office"	10-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	28-Mar-08	219346.60	="07.102"	="The Boston Consulting Group Pty Ltd"	10-Apr-08 10:56 AM	

+="CN66301-A1"	"Project Solution Design Services."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	26-Nov-07	31-Jan-08	159661.00	=""	="IBM Australia Ltd"	10-Apr-08 11:20 AM	

+="CN68280-A1"	"fitout contractor building works for Taree Centrelink office refurbishment."	="Centrelink"	10-Apr-08	="Building construction management"	18-Apr-08	30-Jun-08	278294.72	=""	="David J Smith Pty Ltd"	10-Apr-08 11:23 AM	

+="CN66303"	"Proof of concept - eBusiness Migration."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	01-Oct-07	02-Nov-07	148968.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:25 AM	

+="CN66479"	"Project Management services."	="Australian Securities and Investments Commission"	10-Apr-08	="Project management"	22-Sep-07	31-Aug-08	139962.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:28 AM	

+="CN67037"	"Provision of Business Architect Services."	="Australian Securities and Investments Commission"	10-Apr-08	="Project management"	03-Sep-07	31-Aug-08	141075.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:39 AM	

+="CN67032"	"Development of an Enterprise Data Model."	="Australian Securities and Investments Commission"	10-Apr-08	="Information technology consultation services"	22-Oct-07	05-Feb-08	209715.00	=""	="Ajilon Australia Pty Ltd"	10-Apr-08 11:41 AM	

+="CN68887"	" BLASER SNIPER RIFLES "	="Defence Materiel Organisation"	10-Apr-08	="Military rifles"	08-Aug-07	01-Dec-08	161716.66	=""	="XTEK"	10-Apr-08 12:58 PM	

+="CN68894"	"FMIS Database and Application Support for period February 2008 to June 2008"	="Geoscience Australia"	10-Apr-08	="Computer services"	03-Mar-08	19-Jan-10	165000.00	=""	="Red Rock Consulting"	10-Apr-08 01:44 PM	

+="CN68898"	"Contract services - to 30 Jun 08"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	05-Mar-08	30-Jun-08	101200.00	=""	="Frontier Group Australia Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68899"	"G2304  GeoSciMl,  Provision Contract Staff to 29 August 2008"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	05-Mar-08	29-Aug-08	121000.00	=""	="RPV Consultants Pty Ltd"	10-Apr-08 01:45 PM	

+="CN68907"	"Short Term Personnel hire of a ICT Analyst for the GEMD Information Management project - 11 February 2008 to 30 June 2008."	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	80300.00	=""	="MPM Group Pty Ltd T/as Nova IT"	10-Apr-08 01:46 PM	

+="CN68913"	"ODPS Software licence and Maintenance Services for the period 1 February 2008 to 31 January 2009."	="Geoscience Australia"	10-Apr-08	="Software"	13-Mar-08	30-Jun-08	120000.00	=""	="Macdonald Dettwiler and Associates Ltd MDA"	10-Apr-08 01:47 PM	

+="CN68939"	"6 Leica GNSS Receivers with AT504 Choke-ring Antennas plus maintenance"	="Geoscience Australia"	10-Apr-08	="Computer services"	27-Mar-08	30-Jun-08	145590.01	="2007/3419"	="CR Kennedy & Company Pty Ltd"	10-Apr-08 01:51 PM	

+="CN68944"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by) [Ref 2007/3575]"	="Geoscience Australia"	10-Apr-08	="Temporary personnel services"	31-Mar-08	30-Jun-08	236766.76	=""	="Fugro Airborne Surveys"	10-Apr-08 01:51 PM	

+="CN68946"	"Portfolio Property Project Management Services"	="Workplace Authority"	10-Apr-08	="Property management services"	25-Feb-08	30-Jun-08	132600.00	=""	="AAP Corporation"	10-Apr-08 01:59 PM	

+="CN68966-A1"	"Change Management Services to assist with the mySAP Strategy Stage III Initiatives."	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Software"	29-Jan-08	31-May-08	209660.00	="0708-877"	="Oakton AA Services Pty Limited"	10-Apr-08 02:17 PM	

+="CN69015"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	10-Mar-08	30-Jun-08	177478.40	=""	="Select Appointments"	10-Apr-08 03:10 PM	

+="CN69017-A1"	"Cost Benefit Analysis Report"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-May-08	89645.21	="0708-0193"	="McLennan Magasanik Associates P/L"	10-Apr-08 03:11 PM	

+="CN69028"	"Australian National Historic Shipwrecks Database Redevelopment"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Software"	19-Feb-08	20-Jun-08	264000.00	="0708-333"	="SRA Information Technology"	10-Apr-08 03:12 PM	

+="CN69049"	"Oracle licenses for grants use"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Computer services"	27-Feb-08	03-Mar-09	84620.07	="0708-717"	="Oracle Corp Aust P/L"	10-Apr-08 03:16 PM	

+="CN69053-A1"	"Hosting of Australian Government Natural Resource Management Facilitators"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Mar-09	104070.93	="0708-0990"	="CSIRO Corporate Finance"	10-Apr-08 03:16 PM	

+="CN69055"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	88935.00	=""	="Victorian Automobile Chamber of Commerce"	10-Apr-08 03:17 PM	

+="CN69069"	"GAS STORAGE CYLINDERS"	="Department of the Environment Water Heritage and the Arts"	10-Apr-08	="Containers and storage"	07-Feb-08	29-Feb-08	107800.00	="0708-396"	="R.R.A. Environment Trust"	10-Apr-08 03:19 PM	

+="CN69193"	"Buyout of equipment"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	102625.27	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:58 PM	

+="CN69201"	"Final lease pmnt for AIFS workstations"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	82479.83	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69202"	"Lease extension for WA AIFS servers"	="Bureau of Meteorology"	10-Apr-08	="Computer services"	25-Mar-08	31-Dec-09	146073.47	=""	="CIT GROUP (AUSTRALIA) LTD"	10-Apr-08 03:59 PM	

+="CN69173"	"Processing for AWA & Fairness Test"	="Workplace Authority"	10-Apr-08	="Work related organisations"	30-Nov-07	30-Jun-08	80674.00	=""	="DEEWR"	10-Apr-08 04:01 PM	

+="CN69216"	"Supply of ASLOS NG-AWS 4A & 4B including battery shelter & battery shelter roof."	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	26-Mar-08	01-May-08	238345.97	=""	="Telvent Almos"	10-Apr-08 04:01 PM	

+="CN69217"	"ICS Equipment Shelter for use by Metro France Supply and installation"	="Bureau of Meteorology"	10-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	18-Apr-08	101536.00	=""	="ICS Industries"	10-Apr-08 04:02 PM	

+="CN69220"	"Submerged Pressure Sensors"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	31-Mar-08	10-Apr-08	86013.39	=""	="Biolab (Aust) Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69223"	"Visibility Meter Qty 5 Present Weather Upgrade Kit  Qty 5 Thunderstorm Sensors Qty 3 Comm Kits Qty 1"	="Bureau of Meteorology"	10-Apr-08	="Measuring and observing and testing instruments"	02-Apr-08	15-May-08	201872.00	=""	="Vaisala Pty Ltd"	10-Apr-08 04:02 PM	

+="CN69232"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	149253.30	=""	="Housing Industry Association Ltd"	10-Apr-08 04:11 PM	

+="CN69233"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	91408.80	=""	="Master Builders Australia Incorporation"	10-Apr-08 04:14 PM	

+="CN69235"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	27-Nov-07	25-Jan-08	108020.00	=""	="Hotel Motel & Accommodation"	10-Apr-08 04:16 PM	

+="CN69238"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	25-Jan-08	25-Jan-08	138863.30	=""	="Aust Mines & Metals Association"	10-Apr-08 04:26 PM	

+="CN69241"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	22-Nov-07	30-Jun-08	160000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	10-Apr-08 04:32 PM	

+="CN69245"	"Recruitment Services"	="Workplace Authority"	10-Apr-08	="Recruitment services"	20-Dec-07	30-Jun-08	117645.00	=""	="Compas Pty Ltd"	10-Apr-08 04:42 PM	

+="CN69248"	"Employer Advisor Programme"	="Workplace Authority"	10-Apr-08	="Work related organisations"	19-Nov-07	31-Dec-07	91035.75	=""	="National Retail Association Ltd"	10-Apr-08 04:56 PM	

+="CN69250"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	11-Apr-08	="Military rotary wing aircraft"	11-Apr-08	30-Jun-08	100867.57	=""	="SAAL"	11-Apr-08 08:31 AM	

+="CN69263"	"Training for young enviromental leaders"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	01-Apr-08	126500.00	="0607-486"	="Monash University"	11-Apr-08 09:23 AM	

+="CN69270"	"OSCAR Development and Maintenance Maintenance & Release 2 - Dev & Testing"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	236950.00	="121/2006/07"	="Strategic Data Management PTY LTD"	11-Apr-08 09:24 AM	

+="CN69283"	"Analysis/solution of Social Environmental Economic Valuation Methodologies for Waste Manangement"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management advisory services"	27-Mar-08	18-Jun-08	83300.00	="0708-484"	="BDA Group"	11-Apr-08 09:25 AM	

+="CN69284"	"Develop database for the renewable Remote Power Generation Programme"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	01-Apr-08	91159.00	="0708-052"	="McLennan Magasanik Associates P/L"	11-Apr-08 09:25 AM	

+="CN69308-A1"	"Accommodation Australian Delegation to UNFCCC Climate Change Conference Nov/Dec 2008 Poland"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Hotels and lodging and meeting facilities"	07-Mar-08	30-Sep-08	254024.94	=""	="Sheraton Poznan Hotel"	11-Apr-08 09:29 AM	

+="CN69333"	"Inital advertising of solar hot water rebate"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Printed media"	13-Mar-08	13-Mar-08	112712.44	="0708-929"	="HMA Blaze Pty Ltd"	11-Apr-08 09:32 AM	

+="CN69341"	"Contracting services to support ICT Strategic Plan initiatives"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Computer services"	14-Mar-08	12-Sep-08	95000.00	="0708-1059"	="Paxus Australia Pty Limited"	11-Apr-08 09:33 AM	

+="CN69349"	"Developing an In-service Code of Practice for Non- Urban Water Meters"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Water resources development and oversight"	11-Mar-08	30-Apr-08	87995.60	="0708-563"	="GHD Pty Ltd"	11-Apr-08 09:34 AM	

+="CN69354"	"Mandatory Reporting - Functional Analysis Phases 1 & 2, Vision Scope NGERS Calculator"	="Department of the Environment Water Heritage and the Arts"	11-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	158000.00	=""	="Strategic Data Management PTY LTD"	11-Apr-08 09:35 AM	

+="CN69365"	"Provision of ICT services"	="Department of Parliamentary Services"	11-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Mar-08	31-Mar-08	153065.00	=""	="SVS Technologies Pty Ltd"	11-Apr-08 11:40 AM	

+="CN69377"	"Provision of SAP Administrator"	="CRS Australia"	11-Apr-08	="General building and office cleaning and maintenance services"	19-Feb-07	28-Dec-07	211695.00	=""	="Southern Cross Computing Pty Ltd"	11-Apr-08 12:10 PM	

+="CN69400"	"BLADE TURBINE ROTOR - AIRCRAFT GAS TURBINE - 2840/12800705"	="Defence Materiel Organisation"	11-Apr-08	="Military transport aircraft"	26-Feb-08	03-Mar-08	163347.00	=""	="FLITE PATH PTY LTD"	11-Apr-08 01:25 PM	

+="CN69420"	"Legal services - counsel"	="Australian Securities and Investments Commission"	11-Apr-08	="Legal services"	08-Apr-08	30-Jun-09	140000.00	=""	="Mr Sean Cooper"	11-Apr-08 02:58 PM	

+="CN69426"	"Compressor Unit , Reciprocating Mariner 320B, C/W CES Items"	="Defence Materiel Organisation"	11-Apr-08	="Reciprocating compressors"	09-Apr-08	18-Jun-09	128700.00	=""	="AUSTRALIAN SAFETY ENGINEERS P/L"	11-Apr-08 03:34 PM	

+="CN69450"	"RAAF Base WLM Redevelopment"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	176318.36	=""	="CARSON GROUP PTY LTD"	12-Apr-08 02:58 PM	

+="CN69452"	"CHP-DR W.GORDON-MACLEAD-DENTAL-CONTRACT 2004"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jul-08	110000.00	=""	="A W GORDON-MACLEOD"	12-Apr-08 02:58 PM	

+="CN69463"	"ADF Aircrew and Crewstation Antropometry Capability"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Nov-07	95819.90	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	12-Apr-08 02:59 PM	

+="CN69464"	"Darwin Naval Base Patrol Boat Facilities"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-10	159214.47	=""	="THINC PROJECTS (SA/NT) PTY LTD"	12-Apr-08 03:00 PM	

+="CN69473"	"CHP PAYMENT"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	137500.00	=""	="R & S MUTHALALY PTY LTD"	12-Apr-08 03:01 PM	

+="CN69482"	"HEALTH SERVICES"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	12-Nov-07	30-Jun-08	165000.00	=""	="LJH NURSING PTY LTD"	12-Apr-08 03:02 PM	

+="CN69491"	"SUPPLY HEALTH PROFESSIONAL - PHYSIOTHERAPISTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	06-Dec-07	30-Jun-08	121484.78	=""	="PHYSIOTHERAPY PROFESSIONALS PTY LTD"	12-Apr-08 03:03 PM	

+="CN69492"	"Ancillary Services 2nd line item was added for $24,750.00"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	143000.00	=""	="CARING FOR YOU  PTY LTD"	12-Apr-08 03:04 PM	

+="CN69494"	"INSTALLATION OF APRON FLIGHTLIGHTING"	="Department of Defence"	12-Apr-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	20-Dec-07	30-Jun-08	127999.99	=""	="WOLPERS GRAHL PTY LTD"	12-Apr-08 03:04 PM	

+="CN69508"	"Design Consultant for the Special Operations Working Accommodation Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	293866.10	=""	="GROUP GSA PTY LTD"	12-Apr-08 03:06 PM	

+="CN69511"	"ENGINEERING SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	148052.27	=""	="CONNELL WAGNER PTY LTD"	12-Apr-08 03:06 PM	

+="CN69521"	"DSTO RATIONALISATION PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-Jun-08	220844.85	=""	="HOOKER COCKRAM PROJECTS LIMITED"	12-Apr-08 03:08 PM	

+="CN69525"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	23-Jan-08	31-Jan-08	294030.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-Apr-08 03:08 PM	

+="CN69526"	"BUILDING WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	84338.75	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:08 PM	

+="CN69547"	"CONSTRUCTION & MAINTENANCE WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	144089.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:11 PM	

+="CN69550"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	96519.26	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	12-Apr-08 03:12 PM	

+="CN69551"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	102708.08	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	12-Apr-08 03:12 PM	

+="CN69553"	"WATER SERVICES - INGLEBURN"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	30-Jun-08	286000.00	=""	="SYDNEY WATER CORPORATION"	12-Apr-08 03:12 PM	

+="CN69566"	"HMAS STIRLING - TUASSC ANTI SHIP MISSILE DEFENCE EXTENSION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	209622.60	=""	="PERTH BUILDING COMPANY PTY LTD"	12-Apr-08 03:14 PM	

+="CN69570"	"Develop & Implementation of Vertebrate Pest Mgmt plans at RAAF Base Williamtown & Singleton"	="Department of Defence"	12-Apr-08	="Community and social services"	17-Dec-07	30-Jun-08	115679.89	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:14 PM	

+="CN69574"	"Fuel Farm Refurbishment Program at RAAF Base Williamtown"	="Department of Defence"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	17-Dec-07	30-Jun-08	199999.80	=""	="SSL ASSET SERVICES PTY LTD"	12-Apr-08 03:15 PM	

+="CN69577"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-09	260905.70	=""	="ICON RECRUITMENT"	12-Apr-08 03:15 PM	

+="CN69584"	"TC 8235 DISPOSAL OF FORT WALLACE - PROJECT MANAGER"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	107948.94	=""	="URS AUSTRALIA PTY LTD"	12-Apr-08 03:16 PM	

+="CN69586"	"GENERAL PROJECT MANAGEMENT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	156750.00	=""	="CREST CONSULTING"	12-Apr-08 03:17 PM	

+="CN69589"	"CONTRACT C010-HQ06 PROVISION OF SIMULATION SUPPORT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Sep-08	154000.00	=""	="KRIEGSPIEL DEVELOPMENTS PTY LTD"	12-Apr-08 03:17 PM	

+="CN69593"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	21-Jan-08	89000.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	12-Apr-08 03:18 PM	

+="CN69594"	"TECHNICAL ADVISER FOR MARRANGAROO ARMY DEPOT STAGE 3 REMEDIATION AND VALIDATION WORKS, NSW"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	138227.32	=""	="GHD PTY LTD"	12-Apr-08 03:18 PM	

+="CN69595"	"SIMPSON BARRACKS, WATSONIA - LAND WARFARE ENTRE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-09	117460.75	=""	="GROCON CONSTRUCTIONS PTY LTD"	12-Apr-08 03:18 PM	

+="CN69597"	"HOLSWORTHY: SOWABR ST 1 - WATER MAINS PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	196697.98	=""	="HANSEN YUNCKEN PTY LTD"	12-Apr-08 03:18 PM	

+="CN69604"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-09	180981.58	=""	="THE NOUS GROUP"	12-Apr-08 03:19 PM	

+="CN69607"	"Project Support Officer for Data Centres"	="Department of Defence"	12-Apr-08	="Management advisory services"	29-Nov-07	30-Jun-08	87787.94	=""	="ICON RECRUITMENT"	12-Apr-08 03:20 PM	

+="CN69609"	"Professional services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	21-Nov-08	98384.00	=""	="WHIZDOM PTY LTD"	12-Apr-08 03:20 PM	

+="CN69610"	"SKM - ST 2 ENVIRONMENTAL INVESTIGATIONS - LAV"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	192048.90	=""	="SKM"	12-Apr-08 03:20 PM	

+="CN69615"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Jun-08	145934.25	=""	="CLEAR LEAD PTY LTD"	12-Apr-08 03:21 PM	

+="CN69616"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	23-Nov-07	292820.25	=""	="PEOPLEBANK AUSTRALIA LTD"	12-Apr-08 03:21 PM	

+="CN69618"	"Training IT Cadets"	="Department of Defence"	12-Apr-08	="Education and Training Services"	23-Jan-08	11-Mar-08	92245.51	=""	="GLOBAL ONLINE LEARNING"	12-Apr-08 03:21 PM	

+="CN69619"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	105732.00	=""	="JOHN HOLLAND BENEFICIARIES TRUST"	12-Apr-08 03:21 PM	

+="CN69620"	"FACILITIES FOR TROOP LIFT HELICOPTER (AIR 9000 PH 2)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	30-Jun-08	157300.00	=""	="GHD PTY LTD"	12-Apr-08 03:21 PM	

+="CN69622"	"Professional Services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	151080.89	=""	="KEARNEY PPM PTY LTD"	12-Apr-08 03:22 PM	

+="CN69624"	"ADATS TRAINING COURSES"	="Department of Defence"	12-Apr-08	="Education and Training Services"	07-Feb-08	30-Jun-08	86900.00	=""	="THALES AUSTRALIA"	12-Apr-08 03:22 PM	

+="CN69625"	"PROJECT VIGILARE -AIR5333"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Nov-07	30-Jun-08	242833.52	=""	="G H D PTY LTD"	12-Apr-08 03:22 PM	

+="CN69626"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	21-Nov-08	254100.00	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 03:22 PM	

+="CN69627"	"ACT ACCOMMODATION PROJECT."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	102634.40	=""	="KPMG CORPORATE FINANCE (AUST)"	12-Apr-08 03:22 PM	

+="CN69628"	"Provision of Services for the Accelerated Electronic Navigational Chart Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Dec-11	84121.67	=""	="HSA SYSTEMS PTY LTD"	12-Apr-08 03:22 PM	

+="CN69637"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	103609.01	=""	="SMS CONSULTING GROUP PTY LTD"	12-Apr-08 03:24 PM	

+="CN69640"	"ASBESTOS REMEDIATION"	="Department of Defence"	12-Apr-08	="General building construction"	15-Nov-07	30-Jun-08	100915.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:24 PM	

+="CN69643"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-Apr-08	="Management advisory services"	28-Nov-07	29-Feb-08	257842.15	=""	="ICON RECRUITMENT"	12-Apr-08 03:24 PM	

+="CN69644"	"Amendment to contract for Professional Services refer DCR no 0018439"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-May-08	149489.25	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	12-Apr-08 03:24 PM	

+="CN69648"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	13-Feb-08	80000.00	=""	="DANIEL MENDOZA-JONES"	12-Apr-08 03:25 PM	

+="CN69652"	"Avionics Design Engineer services"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	104804.50	=""	="NOVA AEROSPACE"	12-Apr-08 03:26 PM	

+="CN69655"	"USER ACCESS PROJECT"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	217169.02	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-Apr-08 03:26 PM	

+="CN69660"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Feb-10	212652.26	=""	="ICON RECRUITMENT"	12-Apr-08 03:27 PM	

+="CN69668"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	26-Nov-07	162250.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 03:28 PM	

+="CN69670"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-Apr-08	="Management advisory services"	28-Feb-08	11-Mar-08	80693.25	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:28 PM	

+="CN69676"	"SN02274 Ergonomic assesments for ADF Staff across the ACT/SNSW Region"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	110000.01	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:29 PM	

+="CN69677"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	93500.00	=""	="HUMPHREYS COMMUNICATION GROUP"	12-Apr-08 03:29 PM	

+="CN69679"	"ASBESTOS REMEDIATION WORKS NAD NORTH"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	95656.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 03:29 PM	

+="CN69683"	"VETTING SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	187000.00	=""	="KEY VETTING SERVICES PTY LTD"	12-Apr-08 03:30 PM	

+="CN69684"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	165000.00	=""	="BARRINGTON PERSONNEL SECURITY"	12-Apr-08 03:30 PM	

+="CN69695"	"RAAF BASE WILLIAMTOWN OLA DESIGN"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	176000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-Apr-08 03:31 PM	

+="CN69709"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	165000.00	=""	="STAFF CHECK PTY LTD"	12-Apr-08 03:33 PM	

+="CN69711"	"Provision of Services and Maintenance for PMKeys under ISD Transformation"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	26-May-08	189805.00	=""	="UXC LIMITED"	12-Apr-08 03:33 PM	

+="CN69714"	"Weed Management Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	84797.96	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:33 PM	

+="CN69715"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	99000.00	=""	="SIRRAS CONSULTANTS"	12-Apr-08 03:34 PM	

+="CN69720"	"681900 (NT1765) Design of NORFORCE Facilities."	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	93489.00	=""	="CONNELL WAGNER"	12-Apr-08 03:34 PM	

+="CN69722"	"Canine Facility Swanbourne"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	143000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:35 PM	

+="CN69726"	"MAINTAIN RMAF BUTTERWORTH FUEL FARM IN ACCORDANCE WITH THE BFI"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	130395.95	=""	="ROCK OIL GLOBAL SDN BHD"	12-Apr-08 03:35 PM	

+="CN69733"	"Upgrade 25M range, Majura"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	20-Mar-08	30-Jun-08	120000.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:36 PM	

+="CN69735"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Apr-09	132396.00	=""	="PEOPLEBANK RECRUITMENT PTY LTD"	12-Apr-08 03:36 PM	

+="CN69745"	"KARRATHA/DAMPIER AREA : INFRASTRUCTURE FOR ARMIDALE CLASS PATROL BOATS."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Jun-08	91044.76	=""	="MARINE & CIVIL CONSTRUCTION CO PTY"	12-Apr-08 03:37 PM	

+="CN69746"	"RAAF EDINBURGH STAGE 2 - 87SQN INTERIM FACILITY."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	258086.95	=""	="EMAC SYSTEMS PTY LTD"	12-Apr-08 03:38 PM	

+="CN69748"	"SASR CT - Special Training Facilities Maint Western Region"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	177500.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:38 PM	

+="CN69750"	"NOAM Net force Architect"	="Department of Defence"	12-Apr-08	="Management advisory services"	26-Feb-08	29-Feb-08	108945.01	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	12-Apr-08 03:38 PM	

+="CN69762"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	274560.00	=""	="DELOITTE"	12-Apr-08 03:40 PM	

+="CN69771"	"Consultants"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	82348.90	=""	="BONIGHTON CONSULTING SERVICES"	12-Apr-08 03:41 PM	

+="CN69773"	"ASSESSMENT OF QUALIFICATIOINS"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	121000.00	=""	="VETASSESS"	12-Apr-08 03:41 PM	

+="CN69783"	"MEAT SUPPLIES - HUMAN"	="Department of Defence"	12-Apr-08	="Meat and poultry products"	06-Mar-08	30-Jun-08	88000.00	=""	="G E MALLAN BULK MEATS"	12-Apr-08 03:42 PM	

+="CN69784"	"Engagement of PSP perform the duties of TCP PD for a 12 month period"	="Defence Materiel Organisation"	12-Apr-08	="Business administration services"	12-Nov-07	27-Dec-08	222896.43	=""	="QINETIQ CONSULTING PTY LTD"	12-Apr-08 03:42 PM	

+="CN69786"	"MICRO RATE INITIAL PRODUCTION OF THE ALR2002 RADAR WARNING RECEIVER"	="Defence Materiel Organisation"	12-Apr-08	="Electrical equipment and components and supplies"	12-Nov-07	30-Jun-08	125271.77	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:43 PM	

+="CN69788"	"Land Components Elements of the Advanced Satellite USD"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	30-Jun-08	172178.93	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:43 PM	

+="CN69790"	"Professional Service Provider"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	286198.89	=""	="SUTHERLAND CONSULTING SERVICES"	12-Apr-08 03:43 PM	

+="CN69796"	"4530.02 CONTINUE FUNDING FOR ATE ENGINEERING SUPPORT - CME"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	21-Jan-10	220000.00	=""	="INNOVASYS"	12-Apr-08 03:43 PM	

+="CN69799"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	143000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-Apr-08 03:43 PM	

+="CN69805"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	99000.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 03:44 PM	

+="CN69808"	"ENGAGE EXTERNAL SERVICE PROVIDERS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	297184.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 03:44 PM	

+="CN69809"	"IT user applications"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	80000.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	12-Apr-08 03:44 PM	

+="CN69813"	"Routine Reactives works for RAAF Edinburgh and Jindalee"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-Jun-08	275499.78	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:44 PM	

+="CN69817"	"Repairs and Termite Treatment NOC"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	119999.99	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-Apr-08 03:45 PM	

+="CN69819"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-08	190388.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:45 PM	

+="CN69820"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	144192.57	=""	="PAXUS AUSTRALIA PTY LTD"	12-Apr-08 03:45 PM	

+="CN69821"	"Immediate/Urgent maintenace work for RAAF Edinburg and Jindalee for FY 07/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	30-Jun-08	220000.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:45 PM	

+="CN69822"	"TS 5036-4 C+M Monitor SICARD Replacement"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Mar-08	134451.14	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:45 PM	

+="CN69823"	"JP2077 and K14.5"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	169928.00	=""	="COMPUWARE ASIA-PACIFIC"	12-Apr-08 03:45 PM	

+="CN69831"	"SA2294 REPLACEMENT OF CHILLER UNITS IN BUILDING 212 DSTO PHASE 2"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Dec-07	107423.01	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:46 PM	

+="CN69832"	"Occasional Surveys HMAS SUCCESS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	29-Feb-08	246667.85	=""	="BUREAU VERITAS"	12-Apr-08 03:46 PM	

+="CN69833"	"SA1787 ROUTINE GENERAL ESTATE WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	93500.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:46 PM	

+="CN69836"	"Network Engineering Service"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-08	224778.40	=""	="CAZIQUE SOLUTIONS PTY LTD"	12-Apr-08 03:46 PM	

+="CN69837"	"SA1786 IMMEDIATE/URGENT WORKS MARS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	110000.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:46 PM	

+="CN69851"	"SA1787 ROUTINE GENERAL ESTATE WORKS DSTO EDINBURGH FY 07/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	220000.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:47 PM	

+="CN69853"	"SA1786 IMMEDIATE/URGENT WORKS DSTO EDINBURGH FY 07/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	220000.00	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:47 PM	

+="CN69855"	"FP&E REACTIVE MAINTENANCE REIMBURSEABLES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	294798.90	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-Apr-08 03:47 PM	

+="CN69856"	"REVIEW PRELIMINARY ACCREDITATION TEST GUIDE FOR AIRCREW TRAINING DEVICES"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Feb-08	217299.70	=""	="SIMULINC"	12-Apr-08 03:47 PM	

+="CN69860"	"Tenix Defence P3 Management Office"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	93350.39	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:48 PM	

+="CN69870"	"Cheetah Software Support 26.10.2005 TO 25.01.2008"	="Defence Materiel Organisation"	12-Apr-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	80190.00	=""	="THALES AUSTRALIA"	12-Apr-08 03:48 PM	

+="CN69871"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	12-Apr-08	="Management advisory services"	04-Dec-07	30-Dec-07	115500.00	=""	="LACEY PERSONNEL CONSULTING"	12-Apr-08 03:48 PM	

+="CN69873"	"LEGAL SERVICES"	="Department of Defence"	12-Apr-08	="Legal services"	20-Mar-08	20-Mar-08	275000.00	=""	="SAGE LEGAL SERVICES PTY LTD"	12-Apr-08 03:49 PM	

+="CN69882"	"Maintenance Support Contract for INMARSAT B"	="Defence Materiel Organisation"	12-Apr-08	="Telecommunications media services"	12-Nov-07	31-Mar-08	192229.40	=""	="TC COMMUNICATIONS PTY LTD"	12-Apr-08 03:49 PM	

+="CN69884"	"AFS Contract"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-Mar-08	290400.00	=""	="THALES AUSTRALIA"	12-Apr-08 03:49 PM	

+="CN69901"	"TONER CARTRIDGES"	="Department of Defence"	12-Apr-08	="Office machines and their supplies and accessories"	12-Nov-07	30-Jun-08	264000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69907"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	120417.85	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:51 PM	

+="CN69914"	"IT Maintenance Support"	="Defence Materiel Organisation"	12-Apr-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-09	110000.00	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-Apr-08 03:52 PM	

+="CN69917"	"CONSULTANCY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	84820.89	=""	="INFOFOCUS AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69918"	"NULKA ISS PROJECT"	="Defence Materiel Organisation"	12-Apr-08	="Electrical equipment and components and supplies"	12-Nov-07	30-Mar-08	110000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 03:52 PM	

+="CN69920"	"REPAIR OF AIRCRAFT EDC'S"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	248226.26	=""	="HONEYWELL AUSTRALIA"	12-Apr-08 03:52 PM	

+="CN69922"	"INTEGRATE VHF MBLOS INTO C130 SATCOM"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Aug-08	185054.03	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 03:52 PM	

+="CN69924"	"REPAIR OF MRGB"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	04-Apr-08	204727.74	=""	="AGUSTAWESTLAND LTD"	12-Apr-08 03:52 PM	

+="CN69936"	"INFLUENCING+NEGOTIATION SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	82067.50	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-Apr-08 03:53 PM	

+="CN69944"	"Explosive Ordnance (EO) services to Heavy Weight Torpedo Project"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	233497.56	=""	="QINETIQ NOVARE PTY LTD"	12-Apr-08 03:54 PM	

+="CN69948"	"ENGINEERING SUPPORT SERVICES GLX-1049"	="Defence Materiel Organisation"	12-Apr-08	="Transport operations"	12-Nov-07	01-Jul-08	208337.50	=""	="LOCKHEED MARTIN CORPORATION"	12-Apr-08 03:54 PM	

+="CN69949"	"GB/FM ROUTINE"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	31-Jul-08	133100.01	=""	="RESOLVE FM"	12-Apr-08 03:54 PM	

+="CN69952"	"GLX-1049 ENGINEERING SUPPORT FOR C130H"	="Defence Materiel Organisation"	12-Apr-08	="Transport operations"	12-Nov-07	30-Jun-08	202042.34	=""	="LOCKHEED MARTIN CORPORATION"	12-Apr-08 03:54 PM	

+="CN69954"	"M2A1 BOX RENTAL AGREEMENT"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Jun-08	281978.92	=""	="PENTARCH PTY LTD"	12-Apr-08 03:54 PM	

+="CN69958"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-12	216651.55	=""	="SAAB SYSTEMS PTY LTD"	12-Apr-08 03:55 PM	

+="CN69959"	"ADFA footpaths"	="Department of Defence"	12-Apr-08	="Engineering and Research and Technology Based Services"	24-Jan-08	30-Jun-08	213067.14	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 03:55 PM	

+="CN69969"	"Charges"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	256097.67	=""	="CANON AUSTRALIA PTY LTD"	12-Apr-08 03:55 PM	

+="CN69978"	"Design, Manufacture of Specialist Modifications to Base Vehicles"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	26-Dec-08	194171.51	=""	="TENIX DEFENCE PTY LTD, LAND"	12-Apr-08 03:56 PM	

+="CN69981"	"CONTRACTOR SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	19-Nov-07	144680.54	=""	="SMS MANAGEMENT & TECHNOLOGY"	12-Apr-08 03:56 PM	

+="CN69996"	"NIGHT VISION IMAGING SYSTEM"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	115384.97	=""	="BOEING AUSTRALIA LIMITED"	12-Apr-08 03:57 PM	

+="CN69997"	"Postal services from AFPO 13"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	12-Nov-07	30-Jun-08	300000.00	=""	="AUSTRALIA POST"	12-Apr-08 03:57 PM	

+="CN70006"	"Professional services"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	15-Mar-09	237218.08	=""	="PROJECT OUTCOMES PTY LTD"	12-Apr-08 03:58 PM	

+="CN70014"	"PROFESSIONAL SERVICES PROVIDER"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	293612.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-Apr-08 03:58 PM	

+="CN70021"	"INFRASTRUCTURE INFORMATION ENVIRONMENT (IIE)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Apr-08	132000.00	=""	="KPMG AUSTRALIA"	12-Apr-08 03:59 PM	

+="CN70027"	"SUPPLY OF WATER & SEWERAGE FOR STUART HWY BERRIMAH DEFENCE ESTABLISHMENT BERRIMAH"	="Department of Defence"	12-Apr-08	="Refuse disposal and treatment"	16-Nov-07	30-Jun-08	141000.00	=""	="POWER AND WATER AUTHORITY"	12-Apr-08 03:59 PM	

+="CN70030"	"maritime equipment specialist"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	138160.00	=""	="PROFESSIONAL SERVICES & ENGINEERING"	12-Apr-08 04:00 PM	

+="CN70031"	"REPAIR & OVERHAUL OF DEF.TARGET EQUIPMENT"	="Department of Defence"	12-Apr-08	="Industrial Manufacturing and Processing Machinery and Accessories"	22-Nov-07	30-Jun-08	88000.00	=""	="MOBILE RADIO NQ PTY LTD"	12-Apr-08 04:00 PM	

+="CN70032"	"TASK 06/02 SPECIALIST PRODUCTION SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	284400.77	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 04:00 PM	

+="CN70035"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	07-Feb-08	132000.00	=""	="JACKSON MANAGEMENT CONSULTING"	12-Apr-08 04:00 PM	

+="CN70038"	"RANGE AND SIGNAL PROCESSING ARCHITECTURE MAIN"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Aug-09	184898.46	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:00 PM	

+="CN70043"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	231363.40	=""	="MEDIA MONITORS AUSTRALIA"	12-Apr-08 04:01 PM	

+="CN70044"	"Two SME Coaches for LSD Project Controls"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	115830.00	=""	="CENTRIX - PM (AUST) PTY LTD"	12-Apr-08 04:01 PM	

+="CN70047"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	88000.01	=""	="CLEARZ PTY LTD"	12-Apr-08 04:01 PM	

+="CN70049"	"Manpower Labour Hire"	="Department of Defence"	12-Apr-08	="Machinery and transport equipment manufacture"	05-Dec-07	30-Jun-08	130000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-Apr-08 04:01 PM	

+="CN70050"	"Data Extraction/Manipulation"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	178415.95	=""	="LYMAH DATA PTY LTD"	12-Apr-08 04:01 PM	

+="CN70051"	"DEFENCE INFRASTRUCTURE INFORMATION ENVIRONMENT."	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	220000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:01 PM	

+="CN70052"	"Professional Service Provider"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	07-Apr-08	88000.00	=""	="PROJECT OUTCOMES PTY LTD"	12-Apr-08 04:01 PM	

+="CN70053"	"Provision of Labour Hire for Extended Repair Line at Bandiana"	="Department of Defence"	12-Apr-08	="Manufacturing support services"	07-Mar-08	30-Jun-08	220000.00	=""	="SKILLED ENGINEERING"	12-Apr-08 04:01 PM	

+="CN70054"	"SPECIALIST ENGINEERING SERVICES"	="Defence Materiel Organisation"	12-Apr-08	="Business administration services"	12-Nov-07	30-Jun-08	136588.21	=""	="GHD PTY LTD"	12-Apr-08 04:01 PM	

+="CN70058"	"REMOTE WEAPON STATION TABLE TOP TRAINER STATIONS"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	10-Dec-07	17-Dec-07	89182.77	=""	="KONGSBERG PROTECH AS"	12-Apr-08 04:02 PM	

+="CN70059"	"OPERTIONAL TEST AND EVALUATION CONTRACTOR SERVICES SPECIALIST SUPPORT TO HQSRG FY 2007-2008"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	29-Jun-08	89100.00	=""	="NOVA AEROSPACE"	12-Apr-08 04:02 PM	

+="CN70060"	"Task 05/2002  Specialist Production Management Assurance Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	01-Mar-08	227442.25	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 04:02 PM	

+="CN70066"	"TASK 07/02 SPECIALIST AIRCRAFT QUALITY ASSUR SUPP"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	01-Apr-09	227468.12	=""	="DUPLICATE - USE V ENDOR 1050211"	12-Apr-08 04:02 PM	

+="CN70068"	"Installation of PMF Radio"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	218330.62	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-Apr-08 04:02 PM	

+="CN70071"	"Supply Industrial Gas RAAF Edinburgh"	="Department of Defence"	12-Apr-08	="Gaseous fuels and additives"	12-Nov-07	30-Jun-08	90000.00	=""	="BOC LIMITED"	12-Apr-08 04:02 PM	

+="CN70072"	"Contract Change Proposal Preperation Costs"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	02-Feb-08	105272.70	=""	="TENIX DEFENCE PTY LTD LAND DIVISION"	12-Apr-08 04:03 PM	

+="CN70074"	"Design, Development & Manufacture of Fire Unit Veh and Target Sensor Vehicles"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	12-Nov-07	30-Jun-08	172358.81	=""	="G H VARLEY PTY LTD"	12-Apr-08 04:03 PM	

+="CN70076"	"HMAS ARUNTA URDEF 63/06 - OIL DISTRIBUTION BOX REMOVAL/REPAIR"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Dec-07	95749.38	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:03 PM	

+="CN70084"	"270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	106083.18	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:03 PM	

+="CN70086"	"Support Contract"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	98013.67	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	12-Apr-08 04:04 PM	

+="CN70088"	"External service provider - Configuration Manager"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Sep-08	150900.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:04 PM	

+="CN70090"	"L9, 270 PITT ST"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	21-Nov-07	30-Jun-08	97828.52	=""	="KAZ GROUP LTD"	12-Apr-08 04:04 PM	

+="CN70091"	"MAIL SERVICE FY 07/08"	="Department of Defence"	12-Apr-08	="Mail and cargo transport"	31-Jan-08	30-Jun-08	241000.00	=""	="TOLL PRIORITY"	12-Apr-08 04:04 PM	

+="CN70094"	"Provision of Government Furnished Facilities at RAAF Base Williamtown and Military ATC sites"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	218000.00	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:04 PM	

+="CN70098"	"RCC System BIBS Gas Cylinder Banks Re-config."	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	30-Nov-07	152291.70	=""	="H I FRASER PTY LTD"	12-Apr-08 04:04 PM	

+="CN70100"	"Provision of Systems Engineering Support Services forthe AEWC Program Office"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	19-Feb-09	219529.98	=""	="GJP PROJECT MANAGEMENT SERVICES"	12-Apr-08 04:05 PM	

+="CN70106"	"Install Night Flying Capability HMAS SIRIUS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	14-Jan-08	30-Jan-08	138675.62	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:05 PM	

+="CN70108"	"Specialist service support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	04-Mar-08	83221.75	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:05 PM	

+="CN70110"	"MOAS TRAINING DEVELOPMENT"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	31-Jan-08	81977.28	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:05 PM	

+="CN70114"	"REVIEW OF ANZAC CLASS MPMI POLICY, PROCEDURES SYSTEMS AND PRACTICES"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Apr-08	164313.60	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:05 PM	

+="CN70116"	"Maritime Communications Services"	="Defence Materiel Organisation"	12-Apr-08	="Telecommunications media services"	12-Nov-07	30-May-08	137078.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:06 PM	

+="CN70118"	"PROVIDE ONGOING SUPPORT TO IPSSR APPLICATIONS"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	82181.01	=""	="DELTEK AUSTRALIA PTY LTD"	12-Apr-08 04:06 PM	

+="CN70121"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	99000.00	=""	="ANALYTICS GROUP PTY LTD"	12-Apr-08 04:06 PM	

+="CN70126"	"project scheduler to update Project schedule"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-09	270847.21	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:06 PM	

+="CN70129"	"basic yearly operating bulk orders"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	181805.16	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:07 PM	

+="CN70131"	"PROVISION OF SUPPLEMENTARY MANPOWER - 3SQN SSUBAY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	197736.05	=""	="SERCO MAPS PTY LTD"	12-Apr-08 04:07 PM	

+="CN70135"	"PO FOR FY07/08 WOOMERA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	110000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:07 PM	

+="CN70136"	"COLLECTIVE TRAINING DEVICE SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	263768.40	=""	="SME GATEWAY LIMITED"	12-Apr-08 04:07 PM	

+="CN70142"	"PSP Servcies for the Period 1 Apr 07 - 31 Mar 08"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Apr-08	270380.00	=""	="SME GATEWAY LIMITED"	12-Apr-08 04:07 PM	

+="CN70144"	"JSF Industry Advisory Council (JIAC) consultancy"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	97312.15	=""	="KENNETH R PEACOCK"	12-Apr-08 04:08 PM	

+="CN70147"	"FFS PAYMENTS"	="Department of Defence"	12-Apr-08	="Comprehensive health services"	27-Nov-07	30-Jun-08	161765.00	=""	="CALVARY HEALTH CARE RIVERINA"	12-Apr-08 04:08 PM	

+="CN70150"	"PROVISION OF R5 SERVICE FOR AS350BA SQUIRREL HELICOPTER, N22-021 (821)."	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-Dec-07	159992.08	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:08 PM	

+="CN70154"	"Land 58 Ph3 AN/TPQ - 36 WLR LOTE Prime Contract (AUD)"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Dec-08	166218.91	=""	="RAYTHEON AUSTRALIA"	12-Apr-08 04:08 PM	

+="CN70158"	"FUND SUPPLY OF TRACTOR AIRCRAFT TOWING LIGHT AS PER CONTRACT A0603."	="Defence Materiel Organisation"	12-Apr-08	="Transportation services equipment"	12-Nov-07	30-Jun-08	243563.69	=""	="TOYOTA MATERIAL HANDLING AUSTRALIA"	12-Apr-08 04:09 PM	

+="CN70166"	"ESP Support for In-Service Maintenance Management System"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	01-Jul-08	161000.02	=""	="QINETIQ CONSULTING PTY LTD"	12-Apr-08 04:09 PM	

+="CN70169"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	28-Feb-08	83937.00	=""	="ICON RECRUITMENT"	12-Apr-08 04:09 PM	

+="CN70170"	"3 ESP's FOR RODUM SUPPORT CONTRACT LEA-CM-2007-005 MR ROB CLACKWELL, TARIQ MALIK, CHAD MANNISTO"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	293116.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:09 PM	

+="CN70172"	"1 ESP FOR RODUM SUPPORT/ MR CON LAMBROU Level 2Egn"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	108331.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:10 PM	

+="CN70175"	"LIA SMOKE DETECTION & EMERGENCY LIGHTING CABARLAH"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	87684.30	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:10 PM	

+="CN70179"	"SA2226 WOOM ASBESTOS REMEDIATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	151402.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-Apr-08 04:10 PM	

+="CN70182"	"1 ESP'S /MR CRAIG EYLES - LEVEL 2 Eng CONTRACT LEA-CM-2007-018"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	111760.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-Apr-08 04:10 PM	

+="CN70186"	"IAW RFQTS1695"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Jan-09	280500.00	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:11 PM	

+="CN70194"	"TECHNICAL COMMUNICATIONS SPECIALIST"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	14-Mar-08	107250.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-Apr-08 04:11 PM	

+="CN70207"	"FP&E REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Dec-07	30-Jun-08	104999.41	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:12 PM	

+="CN70212"	"PSP's for OP SLIPPER requirements"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	135300.00	=""	="PS MANAGEMENT CONSULTANTS"	12-Apr-08 04:12 PM	

+="CN70213"	"PSP James Kelly @160 ph for ROMAN Asset Accounts Management (from Cordelta)"	="Department of Defence"	12-Apr-08	="Management advisory services"	11-Jan-08	30-Jun-08	132088.00	=""	="CORDELTA PTY LTD"	12-Apr-08 04:12 PM	

+="CN70216"	"DTP Project LAP Training Services"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	14-Mar-08	253000.00	=""	="WORKFORCE TRAINING SOLUTIONS"	12-Apr-08 04:13 PM	

+="CN70224"	"Skilling Australia's Defence Industry"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Jan-08	136546.01	=""	="FERRA ENGINEERING PTY LTD"	12-Apr-08 04:13 PM	

+="CN70225"	"Supply for Fresh Fruit and Veg"	="Department of Defence"	12-Apr-08	="Fruits and vegetables and nuts and seeds"	10-Dec-07	30-Jun-08	80000.00	=""	="SIMON GEORGE &"	12-Apr-08 04:13 PM	

+="CN70226"	"PROVISION OF SERVICES TO DEVELOP TENDER SOLICITATION DOCUMENTATION."	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	257778.27	=""	="PROJECT OUTCOMES PTY LTD"	12-Apr-08 04:13 PM	

+="CN70230"	"LAP Delivery Management Services - JP2077 PH2B.1"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	166650.00	=""	="EVENTRA PTY LTD"	12-Apr-08 04:14 PM	

+="CN70234"	"JP2077 Phase 2B Change Management Services"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	21-Dec-07	154200.00	=""	="KPMG"	12-Apr-08 04:14 PM	

+="CN70240"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	31-Dec-07	118108.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 04:14 PM	

+="CN70245-A1"	"ELECTRICITY SUPPLY TO WA FRANCHISE SITES"	="Department of Defence"	12-Apr-08	="Utilities"	01-Jul-08	30-Jun-09	232635.00	=""	="SYNERGY"	12-Apr-08 04:15 PM	

+="CN70249"	"PROJ ID3667 CRPN:CONSTRUCT SECURITY ACCESS CONTROL CENTRE - MAIN ACCESS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	235467.10	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:15 PM	

+="CN70253"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	19-Dec-07	30-Sep-08	175722.36	=""	="ORIGIN ENERGY"	12-Apr-08 04:15 PM	

+="CN70259"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	28-Nov-07	30-Sep-08	111163.27	=""	="COUNTRY ENERGY"	12-Apr-08 04:16 PM	

+="CN70261"	"PROJ ID3495 PKL:  INSTALL HELIPAD AT PHC (REVIEW)"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	265903.20	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-Apr-08 04:16 PM	

+="CN70267"	"TICKETING OF THE AFL SPONSORSHIP"	="Department of Defence"	12-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	110000.00	=""	="LAM AGENCY PTY LTD"	12-Apr-08 04:16 PM	

+="CN70270"	"Box Ammunition Wood F22 with Cylinders"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-Jun-08	160316.75	=""	="PENTARCH PTY LTD"	12-Apr-08 04:16 PM	

+="CN70276"	"MATIS LIS Conference"	="Defence Materiel Organisation"	12-Apr-08	="Hotels and lodging and meeting facilities"	12-Nov-07	30-Nov-07	96299.73	=""	="EVENT PLANNERS AUSTRALIA"	12-Apr-08 04:17 PM	

+="CN70278"	"Professional Service Provider - JCSE Systems Architect/Integration Specialist"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	90200.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:17 PM	

+="CN70280"	"TS123-4A SCEPTRE A ESM SYSTEM UPGRADE TO CENTAUR SHORE ASSETS PART B"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	143612.94	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:17 PM	

+="CN70284"	"AVSF Supplementation"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	197746.63	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:17 PM	

+="CN70286"	"Supplementation for SEST"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	121851.31	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:18 PM	

+="CN70287"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	30-Sep-08	105308.18	=""	="AGL SALES (QLD)"	12-Apr-08 04:18 PM	

+="CN70289"	"electricity SUPPLY"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Sep-08	86900.00	=""	="AGL ELECTRICITY LTD"	12-Apr-08 04:18 PM	

+="CN70291"	"ELECTRICITY"	="Department of Defence"	12-Apr-08	="Power generation"	12-Nov-07	30-Sep-08	168576.60	=""	="AGL SOUTH AUSTRALIA PTY LTD"	12-Apr-08 04:18 PM	

+="CN70297"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Sep-08	113687.01	=""	="ORIGIN ENERGY"	12-Apr-08 04:18 PM	

+="CN70298"	"Interim In-Service Support to the Deployable Mine Clearance Diving Headquarters"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	31-Dec-07	158724.92	=""	="COMPUCAT RESEARCH PTY LTD"	12-Apr-08 04:18 PM	

+="CN70303"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	12-Nov-07	30-Sep-08	124949.90	=""	="AGL SYDNEY LTD"	12-Apr-08 04:19 PM	

+="CN70304"	"JEFM Project Defence Fuel System Engineer Services"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	25-Apr-08	81800.01	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:19 PM	

+="CN70305"	"GAS SUPPLY"	="Department of Defence"	12-Apr-08	="Fuels"	29-Nov-07	30-Sep-08	84000.84	=""	="TRU ENERGY PTY LTD"	12-Apr-08 04:19 PM	

+="CN70310"	"DEVELOPMENT OF A COMPETENCY BASED LOGBOOK FOR THE DMO SCHEDULERS PROGRAM"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	110000.00	=""	="DEAKINPRIME"	12-Apr-08 04:19 PM	

+="CN70315"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	19-Nov-07	187671.00	=""	="CORDELTA PTY LTD"	12-Apr-08 04:19 PM	

+="CN70318"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Mar-08	181820.00	=""	="PHILLIPS FOX SYDNEY"	12-Apr-08 04:20 PM	

+="CN70325"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	22-Jan-08	105000.01	=""	="CSC AUSTRALIA PTY LTD"	12-Apr-08 04:20 PM	

+="CN70326"	"Contract C338542 - Repair Effort Forecast Requirements for 07/08"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	296955.78	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:20 PM	

+="CN70328"	"CRASH DATA RECORDER"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-May-08	86808.70	=""	="AUSTRALIAN AEROSPACE LTD"	12-Apr-08 04:20 PM	

+="CN70331"	"QUALITY ASSURANCE SME for COMTRAK"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	112229.99	=""	="DIALOG INFORMATION TECHNOLOGY"	12-Apr-08 04:21 PM	

+="CN70332"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	84765.00	=""	="MINTER ELLISON"	12-Apr-08 04:21 PM	

+="CN70337"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	99000.00	=""	="ANALYTICS GROUP PTY LTD"	12-Apr-08 04:21 PM	

+="CN70341"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	27-Jun-08	87780.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-Apr-08 04:21 PM	

+="CN70345"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Dec-07	113850.00	=""	="FLAVOUR SOLUTIONS PTY LTD"	12-Apr-08 04:22 PM	

+="CN70348"	"SUPPLY OF GROUND FUELS"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	203390.00	=""	="BP AUSTRALIA LTD"	12-Apr-08 04:22 PM	

+="CN70355"	"SUPPORT TO EVALUATON PHASE 2 PROJECT SINGLE LEAP"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	137023.53	=""	="SME GATEWAY LIMITED"	12-Apr-08 04:22 PM	

+="CN70356"	"installation of POS-MV and Side Scan Sonar on Survey Motor Launch"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	30-Nov-07	31-Dec-07	82259.45	=""	="AIMTEK PTY LTD"	12-Apr-08 04:22 PM	

+="CN70361"	"Provision of Security for ATC RAAF Base Darwin"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	137914.97	=""	="CHUBB AUSTRALIA PTY LTD"	12-Apr-08 04:23 PM	

+="CN70363"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	26-Nov-07	186116.90	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	12-Apr-08 04:23 PM	

+="CN70365"	"Office supplies fy 07/08"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	153493.26	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-Apr-08 04:23 PM	

+="CN70366"	"Seahawk S70B taskings for 2007/08 financial year"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	27-Jun-08	218753.10	=""	="RAYTHEON AUST PTY LTD"	12-Apr-08 04:23 PM	

+="CN70368"	"R6 Servicing to Seahawk Aircraft No. 883"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-07	181688.22	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-Apr-08 04:23 PM	

+="CN70372"	"A5800 SELF CONTAINED UNDERWATER BREATHING APPARATUS FOR RAN"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Aug-08	217800.00	=""	="RFD TECHNOLOGIES PTY LTD"	12-Apr-08 04:23 PM	

+="CN70378"	"REPAIR OF REPAIRABLE ITEMS"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	194229.70	=""	="THALES AUSTRALIA"	12-Apr-08 04:24 PM	

+="CN70380"	"STORES REPLENISHMENT - GENERAL AND CONSUMABLE"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Jun-08	110000.00	=""	="THALES AUSTRALIA"	12-Apr-08 04:24 PM	

+="CN70382-A1"	" TS 4124-4 INSTALLATION OF INCREASED SECURITY MEASURES TO THE OPERATIONS ROOM DOORS "	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	24-Feb-11	95228.00	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:24 PM	

+="CN70384"	"Professional Service Provider"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Feb-08	118098.76	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-Apr-08 04:24 PM	

+="CN70389"	"Support & Management the ECTATrA Project"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	85689.41	=""	="PS MANAGEMENT CONSULTANTS"	12-Apr-08 04:25 PM	

+="CN70394"	"DMO LEADERSHIP PROGRAM"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	81400.00	=""	="MELBOURNE BUSINESS SCHOOL"	12-Apr-08 04:25 PM	

+="CN70395"	"VENUE HIRE AND CATERING"	="Department of Defence"	12-Apr-08	="Travel and Food and Lodging and Entertainment Services"	12-Nov-07	03-Dec-07	187440.00	=""	="CLIFTONS OPERATIONS PTY LTD"	12-Apr-08 04:25 PM	

+="CN70400"	"PSP ARMY DIVING SYSTEMS SPT"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Dec-08	142240.00	=""	="RELEGEN PTY LTD"	12-Apr-08 04:25 PM	

+="CN70404"	"EVM system implementation"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	153050.40	=""	="TERRA FIRMA PTY LTD"	12-Apr-08 04:26 PM	

+="CN70406"	"Provision of Engineering Services"	="Defence Materiel Organisation"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Sep-08	148203.12	=""	="ROSSLOGIC PTY LTD"	12-Apr-08 04:26 PM	

+="CN70410"	"CARTRIDGE 5.56MM BALL F1 CHARGER CLIP PACK"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	21-Dec-07	124388.23	=""	="THALES AUSTRALIA"	12-Apr-08 04:26 PM	

+="CN70413"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	13-Mar-08	216832.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-Apr-08 04:26 PM	

+="CN70416"	"SUPPLY OF AVIATION FUE"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	138160.00	=""	="FAYBURN PTY LTD"	12-Apr-08 04:27 PM	

+="CN70420"	"RFID Transition Management"	="Defence Materiel Organisation"	12-Apr-08	="Computer services"	12-Nov-07	30-Jun-08	220196.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-Apr-08 04:27 PM	

+="CN70446"	"TRAINING"	="Defence Materiel Organisation"	12-Apr-08	="Education and Training Services"	12-Nov-07	15-Jun-10	209119.00	=""	="QANTAS DEFENCE SERVICES PTY LTD"	12-Apr-08 04:29 PM	

+="CN70448"	"RA CO-ORDINATOR"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	120000.00	=""	="RAPID ASCENT CONSULTING"	12-Apr-08 04:29 PM	

+="CN70459"	"ALBION REMEDIATION"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	144100.00	=""	="THIESS PTY LTD"	12-Apr-08 04:30 PM	

+="CN70460"	"Acquiring 16 new vehicles to replace the current in service Trident fire trucks"	="Defence Materiel Organisation"	12-Apr-08	="Motor vehicles"	11-Nov-07	31-Aug-09	117532.16	=""	="ROSENBAUER INTERNATIONAL AG"	12-Apr-08 04:30 PM	

+="CN70472"	"VARIOUS DENTAL CONSUMABLES"	="Defence Materiel Organisation"	12-Apr-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	273310.01	=""	="HENRY SCHEIN HALAS AND"	12-Apr-08 04:31 PM	

+="CN70481"	"Conduct EIT on 71 Buildings on Laarack Barracks fo"	="Department of Defence"	12-Apr-08	="Electrical equipment and components and supplies"	12-Nov-07	30-Jun-08	101200.00	=""	="SPOTLESS"	12-Apr-08 04:31 PM	

+="CN70483"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-Apr-08	="Legal services"	12-Nov-07	30-Jun-08	106510.00	=""	="CLAYTON UTZ"	12-Apr-08 04:32 PM	

+="CN70485"	"CONSULTANCY FOR UXO REMOVAL SWBTA"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	112130.15	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:32 PM	

+="CN70490"	"SUPPLEMENTATION TO SUSTAINMENT ACTIVITIES"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	30-Jun-08	80754.27	=""	="TENIX DEFENCE PTY LTD"	12-Apr-08 04:32 PM	

+="CN70491"	"STARSN PROJECT"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	151442.50	=""	="PS MANAGEMENT CONSULTANTS"	12-Apr-08 04:32 PM	

+="CN70506"	"Hire of vessel in suppotr of HMAS Waller CAT5 sonar trials"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	107570.41	=""	="APACHE CHARTERS"	12-Apr-08 04:33 PM	

+="CN70513"	"To Continue Programmed Facility Inspectios and Termite Treatment in the NQ Region"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	128240.78	=""	="SPOTLESS"	12-Apr-08 04:34 PM	

+="CN70521"	"RMC Uograde FLC Centre, MI Bld"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	96999.10	=""	="SPOTLESS P & F PTY LTD"	12-Apr-08 04:34 PM	

+="CN70524"	"SMART155 PRECISION GUIDED MUNITIONS"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	11-Nov-07	01-May-08	142880.01	=""	="GIWS"	12-Apr-08 04:34 PM	

+="CN70530"	"Contract Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	30-Jun-08	93000.00	=""	="BALL SOLUTIONS GROUP PTY LTD"	12-Apr-08 04:35 PM	

+="CN70532"	"Tacan Ladder Design Drawings"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Nov-07	30-Jun-08	141900.00	=""	="BAE SYSTEMS"	12-Apr-08 04:35 PM	

+="CN70534"	"Contract Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	11-Nov-07	30-Jun-08	94600.00	=""	="CODARRA ADVANCED SYSTEMS PTY LTD"	12-Apr-08 04:35 PM	

+="CN70535"	"CONSULTANCY FOR PLANNING OF 07 & 08 PROGRAM OF WORKS"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	173885.71	=""	="CARSON GROUP PTY LTD"	12-Apr-08 04:35 PM	

+="CN70536"	"PROJECT GENESIS SUPPORT"	="Defence Materiel Organisation"	12-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Nov-07	19-Sep-08	130202.78	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:35 PM	

+="CN70546"	"Engineering Support"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	88431.27	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:36 PM	

+="CN70552"	"Project Scheduling Services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Sep-08	114400.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-Apr-08 04:36 PM	

+="CN70553"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Nov-08	140000.00	=""	="BRODTMANN COMMUNICATIONS"	12-Apr-08 04:36 PM	

+="CN70556"	"Pyrotechnic Simulators"	="Defence Materiel Organisation"	12-Apr-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Nov-07	30-May-08	89469.60	=""	="COMBAT SIMULATION SYSTEMS (AUST) P/"	12-Apr-08 04:37 PM	

+="CN70562"	"Project scheduling services"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Mar-08	156200.00	=""	="UXC LIMITED"	12-Apr-08 04:37 PM	

+="CN70564"	"MSA WALLAROO FAMP 01/07 CAPO NO# N260299  8 - 20 OCT 2007"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	12-Nov-07	30-Nov-07	107537.41	=""	="BIRDON MARINE PTY LTD"	12-Apr-08 04:37 PM	

+="CN70570"	"Provision of support for AOSG major contract renewals"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	131631.76	=""	="JACOBS AUSTRALIA"	12-Apr-08 04:38 PM	

+="CN70572"	"Support to ASD&T Wing Task E2845"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	96360.00	=""	="NOVA DEFENCE"	12-Apr-08 04:38 PM	

+="CN70574"	"TSS Contract Open Architecture - Transforming ADF Combat Systems CTD"	="Department of Defence"	12-Apr-08	="Professional engineering services"	12-Nov-07	30-Jun-08	214500.00	=""	="INNOVATION SCIENCE PTY LTD"	12-Apr-08 04:38 PM	

+="CN70577"	"TAS4089 Upgrade of Loading Ramp DB"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	204388.35	=""	="RESOLVE FM"	12-Apr-08 04:38 PM	

+="CN70579"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-Jan-08	238000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-Apr-08 04:38 PM	

+="CN70584"	"Return to service activities for aircraft 880 and 881"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Feb-08	82401.81	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-Apr-08 04:39 PM	

+="CN70589"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-09	100000.00	=""	="KIPCO PTY LTD"	12-Apr-08 04:39 PM	

+="CN70591"	"Services of a Senior Engineer"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	93970.20	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:39 PM	

+="CN70593"	"Services of a Senior Engineer"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	93970.20	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-Apr-08 04:39 PM	

+="CN70598"	"Ongoing supply of oil to RANLO Bahrain"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	174429.85	=""	="BP MARINE LIMITED"	12-Apr-08 04:40 PM	

+="CN70608"	"ILS Logistics Technician"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	27-Jun-08	81840.00	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	12-Apr-08 04:40 PM	

+="CN70614"	"SUPPLY OF AVIATION FUEL - NAVY"	="Defence Materiel Organisation"	12-Apr-08	="Lubricants and oils and greases and anti corrosives"	12-Nov-07	30-Jun-08	177100.00	=""	="EXXONMOBIL AVIATION"	12-Apr-08 04:41 PM	

+="CN70615"	"PSP SUPPORT SERVICES - TASK PLAN LAND PHASE3"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	266012.00	=""	="PROJECT OUTCOMES PTY LTD"	12-Apr-08 04:41 PM	

+="CN70632"	"HMAS Sydney Sea Trials"	="Defence Materiel Organisation"	12-Apr-08	="Marine transport"	14-Nov-07	30-Nov-07	171931.77	=""	="JPO PROJECT PAMMANDI CBASS"	12-Apr-08 04:42 PM	

+="CN70633"	"SQ1949 ASBESTOS REM WKS AMBERLEY PACKAGE D"	="Department of Defence"	12-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	109654.84	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-Apr-08 04:42 PM	

+="CN70637"	"Port Wakefield Proof & experimental establishment stage 2 environmental investigation for lead consu"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	176000.00	=""	="GHD PTY LTD"	12-Apr-08 04:42 PM	

+="CN70638"	"OVERHAUL/REPAIR OF T56-A-15 REDUCTION GEARBOX"	="Defence Materiel Organisation"	12-Apr-08	="Manufacturing support services"	12-Nov-07	30-Jun-08	278248.18	=""	="SAFE AIR LTD"	12-Apr-08 04:42 PM	

+="CN70640"	"STANDING OFFER 0308-002-23"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Sep-08	154249.04	=""	="PARTECH SYSTEMS PTY LTD"	12-Apr-08 04:42 PM	

+="CN70642"	"DISPOSAL OF BATTERIES"	="Defence Materiel Organisation"	12-Apr-08	="Power Generation and Distribution Machinery and Accessories"	12-Nov-07	30-Nov-07	102906.33	=""	="THIESS SERVICES"	12-Apr-08 04:43 PM	

+="CN70644"	"ARH WEAPONS TEST CAMPAIGHN ANDARH NIGHT FLYING EVL"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	31-May-08	123365.00	=""	="DEPARTMENT OF DEFENCE"	12-Apr-08 04:43 PM	

+="CN70649"	"PSP support for JP2097-1B"	="Department of Defence"	12-Apr-08	="Management advisory services"	12-Nov-07	30-Jun-08	139810.00	=""	="PROJECT OUTCOMES PTY LTD"	12-Apr-08 04:43 PM	

+="CN70651"	"BUSINESS SERVICES"	="Department of Defence"	12-Apr-08	="Financial and Insurance Services"	12-Nov-07	30-Jun-08	143587.93	=""	="JACKSON MANAGEMENT CONSULTING"	12-Apr-08 04:43 PM	

+="CN70652"	"T700 ENGINE COMPONENT IMPROVEMENT PROGRAM"	="Defence Materiel Organisation"	12-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Nov-07	31-Dec-08	91210.23	=""	="FMS ACCOUNT"	12-Apr-08 04:43 PM	

+="CN70661"	"HGCE"	="Defence Materiel Organisation"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	09-Jun-09	291383.00	=""	="FMS ACCOUNT"	12-Apr-08 04:44 PM	

+="CN70665"	"Riverina Murray Valley - AWMA - Provide Interim Accommodation for new Army School HQ"	="Department of Defence"	12-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	30-Jun-08	100000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-Apr-08 04:44 PM	

+="CN70666"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	29-Nov-07	228800.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	12-Apr-08 04:45 PM	

+="CN70667"	"RAAF BASE WILLIAMTOWN STAGE 3 REMEDIATION AND VALIDATION WORKS"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	202375.80	=""	="ENSR AUSTRALIA PTY LIMITED"	12-Apr-08 04:45 PM	

+="CN70669"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	111460.00	=""	="MWCLMS PTY LIMITED"	12-Apr-08 04:45 PM	

+="CN70670"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	90200.00	=""	="NOETIC SOLUTIONS PTY LTD"	12-Apr-08 04:45 PM	

+="CN70673"	"CHTR OF AIRCRAFT FOR FEDERAL ELECTION 07"	="Department of Defence"	12-Apr-08	="Transportation and Storage and Mail Services"	12-Nov-07	31-Dec-07	192916.06	=""	="STRATEGIC AVIATION - USD"	12-Apr-08 04:45 PM	

+="CN70682-A2"	"Provision of expert Financial assistance"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Oct-07	28-Mar-08	90000.00	=""	="Resolution Consulting Services Pty Ltd"	14-Apr-08 09:06 AM	

+="CN70689"	"IT Contractor"	="Australian Taxation Office"	14-Apr-08	="Engineering and Research and Technology Based Services"	10-Apr-08	13-Oct-08	190080.00	=""	="Omaha IT Services PTY LTD"	14-Apr-08 09:37 AM	

+="CN70704"	"POSITION ADVERTISEMENTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-08	159284.51	=""	="HMA BLAZE PTY LTD"	14-Apr-08 09:59 AM	

+="CN70718"	"e-recruitment licence fee for 2008"	="Department of Veterans' Affairs"	14-Apr-08	="Software"	16-Dec-07	16-Dec-10	89707.00	=""	="NGA.NET Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70719"	"IMU Contract Programmer: IMU-ICT063 Official Order IMU2008/011"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	189868.00	=""	="Reitan Holdings Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70720"	"IMU Contract Programmer: IMU-ICT056 Official Order IMU2008/014"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	31-Mar-08	30-Mar-09	235664.00	=""	="Srigo Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70721"	"IMU Contract Programmer: IMU-ICT002 Official Order IMU2008/012"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	166954.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70722"	"IMU Contract Programmer: IMU-ICT003 Official Order IMU2008/010"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	188778.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70725-A1"	"Incap Phase 1"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	21-Mar-08	177600.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70726-A1"	"R&C project"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	29-Aug-08	107120.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	14-Apr-08 11:47 AM	

+="CN70729-A1"	"V5 Upgrade"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	18-Feb-08	13-Jun-08	173000.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70730-A1"	"Infrastructure project"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	31-Oct-08	144200.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	14-Apr-08 11:48 AM	

+="CN70733"	"Printing - Agreement info statements for employees"	="Workplace Authority"	14-Apr-08	="Print advertising"	17-Dec-07	17-Dec-07	98650.40	=""	="HMA Blaze Pty Ltd"	14-Apr-08 11:59 AM	

+="CN70735"	"Hiring of Analyst Programmer"	="Workplace Authority"	14-Apr-08	="Recruitment services"	25-Mar-08	30-Jun-08	83589.50	=""	="Ambit Recruitment Group"	14-Apr-08 12:13 PM	

+="CN70738"	" Recruitment Services "	="Workplace Authority"	14-Apr-08	="Recruitment services"	08-Dec-07	27-Jun-08	97020.00	=""	="Frontier Group Australia Pty Ltd"	14-Apr-08 12:21 PM	

+="CN70784"	"Provision of Team Leader Services"	="Family Court of Australia"	14-Apr-08	="Information technology consultation services"	10-Apr-07	10-Apr-08	221336.00	=""	="TALENT INTERNATIONAL"	14-Apr-08 01:34 PM	

+="CN70789"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	14-Apr-08	="Aircraft spars"	14-Apr-08	10-Nov-09	222630.32	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	14-Apr-08 01:59 PM	

+="CN38541-A1"	" Provision of legislative drafting services "	="Office of Parliamentary Counsel"	14-Apr-08	="Bill drafting services"	01-Jul-07	30-Jun-08	180000.00	=""	="HGH Constulting Group"	14-Apr-08 03:01 PM	

+="CN70803"	"Vehicle parts."	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Jan-08	15-Apr-08	85718.02	=""	="HITACHI CONSTRUCTION MACHINERY"	14-Apr-08 03:06 PM	

+="CN70808"	"Fitout - Elizabeth Street, Sydney"	="Workplace Authority"	14-Apr-08	="Property management services"	28-Aug-07	31-Aug-08	181482.40	=""	="Interiors Australia Pty Ltd"	14-Apr-08 03:38 PM	

+="CN70822-A1"	"National School Drug Education Strategy - development of evaluative survey instruments"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Audit services"	10-Jun-05	30-Sep-05	88000.00	="PRN7684"	="EREBUS CONSULTING GROUP PTY LTD"	14-Apr-08 03:56 PM	

+="CN70825"	"Australian Government Summer Schools for Teacher Prorgamme Review"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	22-Nov-07	30-Sep-08	249120.78	="PRN16638"	="KPMG"	14-Apr-08 03:57 PM	

+="CN70857"	"Evaluation of the outcomes of COAG's recommendations on mutual recognition of occupational licensing"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	20-Dec-07	30-Jun-08	225000.00	="PRN17134"	="THE ALLEN CONSULTING GROUP PTY LTD"	14-Apr-08 04:14 PM	

+="CN70859-A1"	"Study into the successful transition of Indigenous"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Corporate objectives or policy development"	02-Jul-07	31-Jan-08	97460.00	="PRN13226"	="EREBUS CONSULTING GROUP PTY LTD"	14-Apr-08 04:15 PM	

+="CN70860-A3"	"Debt Recovery Agency"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Debt management"	26-Nov-07	26-Nov-09	146000.00	="PRN10785"	="AUSTRAL MERCANTILE SOLUTIONS"	14-Apr-08 04:16 PM	

+="CN70867-A1"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	01-Oct-07	04-Sep-09	95865.00	=""	="SINCLAIR KNIGHTMERZ PTY LIMITED"	14-Apr-08 04:27 PM	

+="CN70874"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	02-Apr-08	02-Apr-08	135300.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:40 PM	

+="CN70876"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Personnel recruitment"	02-Apr-08	02-Apr-08	180400.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70877"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Personnel recruitment"	02-Apr-08	02-Apr-08	125400.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70878"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Information technology consultation services"	02-Apr-08	02-Apr-08	89210.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70889"	"CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Temporary personnel services"	19-Mar-08	19-Mar-08	81345.00	=""	="INTERPRO AUSTRALIA PTY LTD"	14-Apr-08 04:43 PM	

+="CN70900"	"MICROSOFT SOFTWARE MAINTENANCE AND SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Information technology consultation services"	29-Feb-08	28-Feb-09	92000.00	=""	="MICROSOFT PTY LTD"	14-Apr-08 04:45 PM	

+="CN70904"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	01-Jul-05	02-Jan-08	100000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	14-Apr-08 04:45 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val0to16000.xls
@@ -1,1 +1,277 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59371"	"Motor Vehicle Parts"	="Department of Defence"	11-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	29-Feb-08	11135.60	=""	="Volvo Commericial Vehicles"	11-Feb-08 08:48 AM	

+="CN59379-A1"	"Provision of Water Management Services"	="Department of Veterans' Affairs"	11-Feb-08	="Environmental management"	01-Jan-08	31-Dec-10	13524.00	=""	="G & M Connellan"	11-Feb-08 09:25 AM	

+="CN59406"	"Financial contributions in recognition of veteran access to the Home and Community Care (HACC) Program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	13783.00	=""	="The Crown in the Right of the State of Tasmania - Dept of Health and Human Services"	11-Feb-08 09:29 AM	

+="CN59433"	"SUPPLY OF STERILIZER, SURGICAL INSTRUMENT AND DRESSING"	="Defence Materiel Organisation"	11-Feb-08	="Medical Equipment and Accessories and Supplies"	08-Feb-08	29-Feb-08	15827.68	=""	="GUNZ DENTAL PTY LTD"	11-Feb-08 10:21 AM	

+="CN59482"	" [URCHASE OF DRIVER CLUTCH EBS FOR MOTORCYCLE "	="Department of Defence"	11-Feb-08	="Motorcycle frames"	14-Nov-07	17-Dec-07	11880.00	=""	="POLARIS CENTRAL"	11-Feb-08 11:57 AM	

+="CN59051"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Oct-07	01-Apr-08	10000.00	=""	="Mr Christopher Young"	11-Feb-08 12:14 PM	

+="CN58996"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Dec-07	29-Feb-08	15000.00	=""	="Mr Mark Livesey QC"	11-Feb-08 12:17 PM	

+="CN58990"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Dec-07	29-Feb-08	10000.00	=""	="Mr Tom Cox"	11-Feb-08 12:21 PM	

+="CN59523"	"Report on airports EP Regs 1997"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Environmental protection"	30-Jan-08	30-Jun-08	12288.10	="TRS07/045"	="Maunsell Australia Pty Ltd"	11-Feb-08 02:01 PM	

+="CN59524"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	12-Sep-07	31-Dec-07	13983.75	="T2004/0699"	="SMS Management & Technology"	11-Feb-08 02:01 PM	

+="CN59526"	"Legal Service Expenditure LG070807-6735"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Legal services"	24-Jan-08	30-Jun-09	14850.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	11-Feb-08 02:01 PM	

+="CN59528"	"Training delivery - appearing before a"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Specialised educational services"	01-Feb-08	30-Jun-08	13062.49	="ATM2005/014"	="LAURIE WILSON & ASSOCIATES PTY LTD"	11-Feb-08 02:02 PM	

+="CN59538"	"Purchase of security safes"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Material packing and handling"	01-Dec-07	15-Feb-08	10102.40	=""	="Fileguard Co (MFG) Pty Ltd"	11-Feb-08 02:03 PM	

+="CN59541"	"Training in how to be successful at interview in the APS"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Specialised educational services"	01-Jan-08	30-Jun-08	15999.98	="APS COMMISSION 2005/014"	="THE TRUSTEE FOR AUSTIN FAMILY TRUST"	11-Feb-08 02:04 PM	

+="CN59545"	"Mobile Phones 27/11 to 26/12"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Information services"	01-Aug-02	30-Jun-08	15611.28	="TRS04/019"	="OPTUS BILLING SERVICES PTY LTD"	11-Feb-08 02:04 PM	

+="CN59551"	"Mobile Phones 27/09 to 26/10"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Information services"	31-Oct-07	30-Jun-08	13449.04	="TRS04/019"	="OPTUS BILLING SERVICES PTY LTD"	11-Feb-08 02:05 PM	

+="CN59552"	"Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Legal services"	08-Nov-07	30-Jun-09	12074.15	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	11-Feb-08 02:05 PM	

+="CN59553"	"Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Legal services"	08-Nov-07	30-Jun-09	13345.26	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	11-Feb-08 02:05 PM	

+="CN59571"	"Publications"	="Australian Taxation Office"	11-Feb-08	="Published Products"	07-Feb-08	07-Feb-08	14500.00	=""	="CCH Australia Limited"	11-Feb-08 02:07 PM	

+="CN59577"	"Delivery of Risk Management  course"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	05-Feb-08	29-Feb-08	12100.00	=""	="AUSTRALASIAN COMPLIANCE RISK"	11-Feb-08 02:08 PM	

+="CN59578"	"Mgt to L'ship: Being effective at the Exec lvl 3 Attendees"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	05-Feb-08	04-Apr-08	12450.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	11-Feb-08 02:08 PM	

+="CN59581"	"FILMING OF DIALOGUE DAY NOV 07"	="Australian Taxation Office"	11-Feb-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-08	14344.00	=""	="BEARCAGE PRODUCTIONS Q AUDIO"	11-Feb-08 02:08 PM	

+="CN59583"	"TACTICAL WRITING WORKSHOP JAN 2008"	="Australian Taxation Office"	11-Feb-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	04-Feb-08	11000.00	=""	="Tactics Consulting Pty Ltd"	11-Feb-08 02:08 PM	

+="CN59585"	"VALUATIONS ON FARMS QUIRIDI"	="Australian Taxation Office"	11-Feb-08	="Financial and Insurance Services"	25-Jan-08	07-Feb-08	10000.00	=""	="AUSTRALIAN VALUATION OFFICE"	11-Feb-08 02:09 PM	

+="CN59586"	"STUDENT FEES"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	17-Jan-08	06-Feb-08	12915.20	=""	="THE UNIVERSITY OF QUEENSLAND"	11-Feb-08 02:09 PM	

+="CN59589"	"CAREER DEV ASS CENTRE JULIE COATES"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	16-Jan-08	04-Feb-08	11825.00	=""	="Australian Public Service"	11-Feb-08 02:09 PM	

+="CN59599"	"REPAIR OF GENERATOR ALTERNATING CURRENT NSN 6115-01-114-9696 SERIAL NO: 777E"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 02:36 PM	

+="CN59606"	"REPAIR OF GENERATOR ALTERNATING CURRENT NSN 6115-01-114-9696  SERIAL NO: 3738E"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	26-Feb-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 02:47 PM	

+="CN59610"	" repiar of generator alternating current serial no3857e  nsn6115-01-114-9696 "	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	26-Jun-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 02:52 PM	

+="CN59614"	"repiar of generator alternating current nsn 6115-01-114-9696  serial no 3738e"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	30-Jun-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 02:59 PM	

+="CN59604"	"REPAIR OF GENERATOR ALTERNATING CURRENT NSN 6115-01-114-9696  SERIAL NO: 777E"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	30-Jun-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 03:03 PM	

+="CN59619"	"REPAIR OF GENERATORY ALTERNATING CURRENT SERIAL NO 3716S NSN6115-01-114-9696"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	28-Jul-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 03:07 PM	

+="CN59459"	"PURCHASE OF SHIPPING BOX"	="Department of Defence"	11-Feb-08	="Containers and storage"	30-Nov-07	24-Jan-08	11605.00	=""	="TRIMCAST PTY LTD"	11-Feb-08 03:14 PM	

+="CN59624"	"repair of alternaing current nsn 6115-01-114-9696  serial no: 5376"	="Department of Defence"	11-Feb-08	="Military rotary wing aircraft"	22-Jan-08	30-Jun-08	15400.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	11-Feb-08 03:15 PM	

+="CN59637"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	15145.13	=""	="Rover Australia"	11-Feb-08 03:33 PM	

+="CN59710"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	12-Feb-08	="Medical Equipment and Accessories and Supplies"	03-Jan-08	14-Jan-08	15270.76	=""	="Symbion Pharmacy Services"	12-Feb-08 07:07 AM	

+="CN59714"	"Supply of Toliet Bags"	="Defence Materiel Organisation"	12-Feb-08	="Bags"	12-Feb-08	25-Feb-08	11000.00	=""	="Larosa Leathergoods"	12-Feb-08 08:49 AM	

+="CN59716"	"Pharmaceutical items"	="Defence Materiel Organisation"	12-Feb-08	="Drugs and Pharmaceutical Products"	11-Feb-08	22-Feb-08	13207.99	="n/a"	="Symbion Pharmacy"	12-Feb-08 08:55 AM	

+="CN59720"	" Blanket Casualty "	="Defence Materiel Organisation"	12-Feb-08	="Emergency or rescue blankets"	11-Feb-08	14-Apr-08	14850.00	="n/a"	="Airport  Metals (Australia)"	12-Feb-08 09:04 AM	

+="CN59760"	"Provision for Training Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Specialised educational services"	17-Dec-07	05-Mar-08	10060.00	=""	="Intelligence Dynamics Pty Ltd"	12-Feb-08 12:06 PM	

+="CN59767"	"Provision of Employee Training Courses"	="Department of Immigration and Citizenship"	12-Feb-08	="Employee education"	07-Jan-08	31-May-08	10800.00	=""	="Australian Forensic Services Pty Ltd"	12-Feb-08 12:34 PM	

+="CN59777"	"REPAIRS TO MACK CARGO ARN-36572"	="Department of Defence"	12-Feb-08	="Motor vehicles"	19-Dec-07	28-Feb-08	10710.80	=""	="RGM MAINTENANCE"	12-Feb-08 01:30 PM	

+="CN59790"	"Recover Costs Rental, Outgoings, Car Parking - January 2008"	="Federal Magistrates Court"	12-Feb-08	="Commercial or industrial facility rental"	01-Jan-08	31-Jan-08	14485.18	=""	="Charter Hall Limited - Savills"	12-Feb-08 02:01 PM	

+="CN59794"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	12-Feb-08	="Stationery"	01-Jan-08	31-Jan-08	15413.03	=""	="Corporate Express Australia"	12-Feb-08 02:12 PM	

+="CN59798"	"Storage Unit FMC Level 11, Macquarie St, Sydney"	="Federal Magistrates Court"	12-Feb-08	="Shelving and storage"	01-Jan-08	31-Jan-08	13200.00	=""	="CSM Office Furniture Solution Pty Ltd - Storage"	12-Feb-08 02:21 PM	

+="CN59802"	"Indoor Plant Hire and Service"	="Australian Research Council"	12-Feb-08	="Live Plant and Animal Material and Accessories and Supplies"	07-Jan-08	11-Jan-10	10919.00	=""	="Superior Indoor Plant Hire"	12-Feb-08 02:28 PM	

+="CN59824"	"Furniture FMC Level 11, 167 Macquarie St, Sydney"	="Federal Magistrates Court"	12-Feb-08	="Office furniture"	01-Jan-08	31-Jan-08	13266.00	=""	="Living Edge Group Pty Ltd"	12-Feb-08 03:33 PM	

+="CN59828"	"Temp Staff - Payroll"	="Federal Magistrates Court"	12-Feb-08	="Temporary clerical or administrative assistance"	01-Jan-08	31-Jan-08	10102.00	=""	="Micropay Pty Ltd"	12-Feb-08 03:38 PM	

+="CN59835"	" Legal costs "	="Office of the Director of Public Prosecutions"	12-Feb-08	="Legal services"	06-Aug-07	16-May-08	10560.00	=""	="Porters Lawyers"	12-Feb-08 04:03 PM	

+="CN59846"	"Temporary staff"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Human resources services"	16-Apr-07	17-Sep-07	13972.00	=""	="Fusion Recruitment"	12-Feb-08 04:29 PM	

+="CN59850"	"Temporary Staff"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Human resources services"	19-Jun-07	10-Aug-07	11900.00	=""	="Prime Recruitment"	12-Feb-08 04:34 PM	

+="CN59851"	"SUBSCRIPTIONS JANUARY 2008"	="Administrative Appeals Tribunal"	12-Feb-08	="Printed media"	07-Jan-08	29-Feb-08	14131.04	=""	="LEXISNEXIS"	12-Feb-08 04:41 PM	

+="CN59855"	"SAP MAINTENANCE 1/7-31/12/08"	="Administrative Appeals Tribunal"	12-Feb-08	="Computer services"	31-Dec-07	31-Dec-07	13931.50	=""	="SAP AUSTRALIA PTY LTD"	12-Feb-08 04:41 PM	

+="CN59857"	"ISP SERVICE JANUARY 2008"	="Administrative Appeals Tribunal"	12-Feb-08	="Computer services"	15-Jan-08	31-Jan-08	13333.65	=""	="CYBERTRUST AUSTRALIA PTY LTD"	12-Feb-08 04:41 PM	

+="CN59870"	"Office Furniture FMC"	="Federal Magistrates Court"	12-Feb-08	="Office furniture"	01-Jan-08	31-Jan-08	13787.40	=""	="Workspace Commercial Furniture Pty Ltd"	12-Feb-08 05:12 PM	

+="CN59876"	"Secretariat functions for 3 Policy meetings"	="Cancer Australia"	12-Feb-08	="Secretariat services"	16-May-07	29-Jun-07	15000.00	=""	="Secretariat Australia"	12-Feb-08 05:47 PM	

+="CN59883"	"Engineering services - Parramatta office"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Professional engineering services"	07-Feb-08	30-May-08	11110.00	=""	="Medland Metropolis"	12-Feb-08 06:13 PM	

+="CN59894"	"    A23 AIRCRAFT - REPAIRS TO ELEVATOR, AIRCRAFT    "	="Defence Materiel Organisation"	13-Feb-08	="Military fixed wing aircraft"	12-Feb-08	28-Jun-08	12626.25	=""	="AIRFLITE PTY LTD"	13-Feb-08 09:29 AM	

+="CN59895"	"    A23 AIRCRAFT - REPAIRS TO RUDDER AIRCRAFT    "	="Defence Materiel Organisation"	13-Feb-08	="Military fixed wing aircraft"	12-Feb-08	28-Jun-08	13200.00	=""	="AIRFLITE PTY LTD"	13-Feb-08 09:35 AM	

+="CN59917"	"Voice service Dec rental/Nov calls 2007"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	22-Jan-08	22-Jan-08	12886.67	=""	="Telstra  (ID No. 740)"	13-Feb-08 10:58 AM	

+="CN59919"	"Supply of Stationery"	="Bureau of Meteorology"	13-Feb-08	="Office supplies"	06-Feb-08	29-Feb-08	13253.55	=""	="Corporate Express Australia Limited"	13-Feb-08 10:58 AM	

+="CN59922"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	23-Jan-08	31-Jan-08	12628.15	=""	="Telstra  (ID No. 740)"	13-Feb-08 10:58 AM	

+="CN59924"	"VEHICLE LEASES FEB 2008"	="Bureau of Meteorology"	13-Feb-08	="Tools and General Machinery"	25-Jan-08	08-Feb-08	11760.74	=""	="Leaseplan Australia"	13-Feb-08 10:59 AM	

+="CN59930"	"Car Lease Costs"	="Bureau of Meteorology"	13-Feb-08	="Motor vehicles"	04-Feb-08	04-Feb-08	15652.56	=""	="Leaseplan Australia"	13-Feb-08 10:59 AM	

+="CN59943"	"UPS Firmware Upgrade"	="Bureau of Meteorology"	13-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	08-Feb-08	11525.16	=""	="CHLORIDE POWER PROTECTION"	13-Feb-08 11:01 AM	

+="CN59953"	"Design Competition Advertising"	="National Capital Authority"	13-Feb-08	="Advertising"	23-Oct-07	23-Oct-07	12241.37	=""	="HMA Blaze"	13-Feb-08 11:33 AM	

+="CN59966"	"REPAIRS TO MERLO ARN-202329"	="Department of Defence"	13-Feb-08	="Motor vehicles"	13-Feb-08	25-Apr-08	11937.86	=""	="FB AUTO"	13-Feb-08 01:20 PM	

+="CN59968"	"Design and development of Export Module"	="Austrade"	13-Feb-08	="Education and Training Services"	29-Jun-07	31-Aug-07	11302.50	=""	="The Learning Group Pty Ltd"	13-Feb-08 01:21 PM	

+="CN59969"	"Design and development of Online Coaching Midules"	="Austrade"	13-Feb-08	="Education and Training Services"	04-Oct-07	13-Dec-07	15426.40	=""	="The Learning Group Pty Ltd"	13-Feb-08 01:21 PM	

+="CN59977"	"Development of full mentoring framework for Japan Network"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	13085.00	=""	="Mikiko Toda"	13-Feb-08 01:22 PM	

+="CN59979"	"Permanenet placement fee"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	13339.02	=""	="GMT Canberra Pty Ltd"	13-Feb-08 01:23 PM	

+="CN59981"	"Purchse of VSX presenter and accessories"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	16-Oct-07	17-Oct-07	12257.30	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:23 PM	

+="CN59987"	"Sponsorship package for Fast Thinking Australian Explorer magazine"	="Austrade"	13-Feb-08	="Published Products"	15-Nov-07	16-Nov-07	11000.00	=""	="ETN Commmunications"	13-Feb-08 01:24 PM	

+="CN59998-A1"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	13-Feb-08	="Motor vehicles"	13-Feb-08	27-Feb-08	14209.17	=""	="PREMIER AUTO GROUP"	13-Feb-08 02:41 PM	

+="CN59999-A1"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	13-Feb-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	03-Mar-08	14888.28	=""	="Sutherland Medical Pty Ltd"	13-Feb-08 02:41 PM	

+="CN60029-A1"	"SLIPWAY LABOUR HIRE"	="Department of Defence"	13-Feb-08	="Commercial marine craft"	13-Feb-08	30-May-08	15867.11	=""	="KELLY SERVICES"	13-Feb-08 02:55 PM	

+="CN60046"	"PROVISION OF EDITING SERVICES FOR THE AUSAID ANNUAL REPORT 2006-07"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	07-Aug-07	31-Oct-07	11000.00	=""	="MORRIS WALKER PTY LTD"	13-Feb-08 02:55 PM	

+="CN60048"	"SERVICE DESK TECHNICAL SUPPORT"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	03-Sep-07	21-Oct-07	12320.00	=""	="GMT CANBERRA PTY LTD"	13-Feb-08 02:56 PM	

+="CN60051"	"AD HOC HUMAN RESOURCE SERVICES"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	01-Oct-07	12960.00	=""	="QUALITY MANAGEMENT SOLUTIONS PTY LTD"	13-Feb-08 02:56 PM	

+="CN60060"	"SUPPLY OF ADDITIONAL WORKPOINTS FOR INCREASING NUMBERS IN MANILA"	="AusAid"	13-Feb-08	="Office Equipment and Accessories and Supplies"	17-Sep-07	30-Sep-07	12000.00	=""	="MENTARI REKSA BANKGUN (USD A/C)"	13-Feb-08 02:57 PM	

+="CN60061"	"FINANCIAL SERVICES FOR AIPRD"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	21-Aug-07	21-Aug-07	15749.25	=""	="DELOITTE TOUCHE TOHMATSU"	13-Feb-08 02:57 PM	

+="CN60070"	"M113 CARRIER UPGRADE HIAB CRANE PARTS"	="Department of Defence"	13-Feb-08	="Armoured fighting vehicles"	11-Feb-08	05-May-08	14414.80	=""	="HIAB AUSTRALIA PTY LTD"	13-Feb-08 03:19 PM	

+="CN60072"	"Atax course 0100"	="Australian Taxation Office"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	28-Mar-08	11001.00	="40.05"	="University of New South Wales"	13-Feb-08 03:40 PM	

+="CN60073"	"labour cost and repair"	="Department of Defence"	13-Feb-08	="Military satellites"	13-Feb-08	22-Feb-08	12377.10	=""	="NOVAMARINE INSTRUMENTS"	13-Feb-08 03:45 PM	

+="CN60094"	"RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Recruitment services"	16-Jan-08	16-Jan-08	12100.00	=""	="TALENT 2 PTY LTD"	13-Feb-08 04:01 PM	

+="CN60104"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	15730.00	=""	="AUSCRIPT AUSTRALASIA PTY LTD"	13-Feb-08 04:03 PM	

+="CN60109"	"PRODUCTION AND PRINTING"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	31-Jan-08	31-Jan-08	13480.50	=""	="FOCUS PRESS"	13-Feb-08 04:03 PM	

+="CN60111"	"ROLE DEVELOPMENT CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Business intelligence consulting services"	06-Feb-08	06-Feb-08	11825.00	=""	="APRIL CARTER GROUP PTY LTD"	13-Feb-08 04:04 PM	

+="CN60119"	"COPYRIGHT CHARGES FOR BOOKS, JOURNALS, MAGAZINES AND ARTISTIC WORKS"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Printed publications"	06-Feb-08	06-Feb-08	11781.69	=""	="COPYRIGHT AGENCY LIMITED"	13-Feb-08 04:05 PM	

+="CN60125"	"AIRCRAFT SPARES:QTY 150 METRES:5330-66-139-5506:SEAL, NONMETALIC STRIP."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	12-Feb-08	04-Mar-08	10725.00	=""	="W.L.GORE & ASSOCIATES AUST"	13-Feb-08 04:35 PM	

+="CN60176"	"WASHER, SPRING TENSION"	="Defence Materiel Organisation"	13-Feb-08	="Washers"	23-Jan-08	15-Apr-08	10906.50	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	13-Feb-08 05:04 PM	

+="CN60208"	"Purchase of Qty 40 Type 80 MK3E-A Life preserver, Vest as an Annual buy to cover damage and replacement."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	11-Feb-08	28-Feb-08	12850.20	=""	="RFD Australia Pty Ltd"	13-Feb-08 05:08 PM	

+="CN60401"	"AusAID Ready Response Team Training"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Feb-04	30-Jun-06	15000.00	=""	="REDR AUSTRALIA LTD"	13-Feb-08 05:33 PM	

+="CN60442"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	30-Jun-05	10000.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:38 PM	

+="CN60445"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	29-Sep-06	15000.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:39 PM	

+="CN60487"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Furniture and Furnishings"	12-Nov-07	12-Nov-07	14960.00	=""	="Dexion Pty Ltd"	13-Feb-08 05:44 PM	

+="CN60489"	"Consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Management advisory services"	13-Nov-07	13-Nov-07	14000.00	=""	="EAS Management"	13-Feb-08 05:44 PM	

+="CN60496"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Marketing and distribution"	01-Nov-07	01-Nov-07	13899.80	=""	="HMA Blaze"	13-Feb-08 05:44 PM	

+="CN60513"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	12-Nov-07	12-Nov-07	13153.00	=""	="Optus"	13-Feb-08 05:45 PM	

+="CN60568"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	10142.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:51 PM	

+="CN60604"	"DGRIF Short Term Program Officer"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Mar-07	11-Sep-07	12953.53	=""	="SAUT PARULIAN SILALAHI"	13-Feb-08 05:56 PM	

+="CN60632"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-May-07	30-Jun-07	12276.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	13-Feb-08 05:59 PM	

+="CN60637"	"Accreditation Review of Interplast Australia - David Syme TL"	="AusAid"	13-Feb-08	="Organisations and Clubs"	01-May-07	31-Dec-07	11822.85	=""	="DAVID SYME trading as Creative Development Solutions"	13-Feb-08 06:00 PM	

+="CN60674"	"APMM Branding - Business + Government Against HIV/AIDS"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-Feb-07	31-Jul-07	10219.00	=""	="GRID COMMUNICATIONS PTY LTD"	13-Feb-08 06:05 PM	

+="CN60699"	"Hire of Audio Visual Equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Domestic appliances"	03-Jan-08	03-Jan-08	10071.00	=""	="Audio Visual Events Pty Ltd"	13-Feb-08 06:34 PM	

+="CN60702"	"training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Education and Training Services"	29-Jan-08	29-Jan-08	10436.36	=""	="Centre for Public Management"	13-Feb-08 06:35 PM	

+="CN60703"	"Insurance - Fees"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Insurance and retirement services"	04-Jan-08	04-Jan-08	12253.25	=""	="ComSuper"	13-Feb-08 06:35 PM	

+="CN60708"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	03-Jan-08	03-Jan-08	10600.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 06:35 PM	

+="CN60710"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	17-Jan-08	17-Jan-08	12000.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 06:36 PM	

+="CN60734"	"A23 AIRCRAFT - REPAIRS TO FLAP, WING LANDING"	="Defence Materiel Organisation"	14-Feb-08	="Military fixed wing aircraft"	12-Feb-08	11-Apr-08	13693.43	=""	="AIRFLITE PTY LTD"	14-Feb-08 10:15 AM	

+="CN60735"	"A23 AIRCRAFT - REPAIRS TO FLAP, WING LANDING"	="Defence Materiel Organisation"	14-Feb-08	="Military fixed wing aircraft"	12-Feb-08	11-Apr-08	14451.38	=""	="AIRFLITE PTY LTD"	14-Feb-08 10:20 AM	

+="CN60737"	"Administrative Personnel"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	17-Oct-07	31-Dec-07	16000.00	=""	="Wizard Personnel  Office Services"	14-Feb-08 10:41 AM	

+="CN60747"	"Tablet computers"	="CrimTrac"	14-Feb-08	="Tablet computers"	23-Jan-08	15-Feb-08	13101.95	=""	="Infront Systems Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60749"	"Power over Ethernet Cisco Switch"	="CrimTrac"	14-Feb-08	="Switch ports or cards"	31-Jan-08	31-Jan-08	12809.67	=""	="Dimension Data Australia Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60768"	"Supply of Radio communication equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	31-Dec-07	14220.00	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:54 AM	

+="CN60769"	" Facilitation services to GST Executive events in 2007/2008 "	="Australian Taxation Office"	14-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	15-Mar-08	15760.00	="06.028"	="Clear Lead P/L"	14-Feb-08 12:13 PM	

+="CN60780"	"Electricity charges UPS Room Dec 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Dec-07	21-Dec-07	15041.80	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60784"	"Electricity charges UPS Room Nov 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Nov-07	30-Nov-07	14806.21	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60786"	"Electrical charges UPS Room Jan 08"	="Austrade"	14-Feb-08	="Electric utilities"	01-Jan-08	31-Jan-08	14272.07	=""	="ActewAGL"	14-Feb-08 02:48 PM	

+="CN60787"	"Electricity Charges Jul/Aug 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Jul-07	31-Aug-07	13732.84	=""	="Energy Australia"	14-Feb-08 02:48 PM	

+="CN60789"	"Advertising for Kuala Lumpur & New Dehli"	="Austrade"	14-Feb-08	="Advertising"	23-Nov-07	30-Nov-07	13429.94	=""	="HMA Blaze"	14-Feb-08 02:48 PM	

+="CN60790"	"Advertising package"	="Austrade"	14-Feb-08	="Advertising"	30-Jun-07	01-Jul-07	11000.00	=""	="HMA Blaze"	14-Feb-08 02:48 PM	

+="CN60791"	"Sydney office Dec switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	30-Dec-07	30-Dec-07	12990.48	=""	="Telstra"	14-Feb-08 02:48 PM	

+="CN60795"	"Canberra Nov Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Dec-07	02-Dec-07	15661.14	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60796"	"Sydney office Oct switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	29-Oct-07	15445.69	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60797"	"Canberra Oct Domestic calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	01-Nov-07	12303.63	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60798"	"Melbourne Sep Domestic calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	02-Oct-07	10084.59	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60801"	"Canberra Aug Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Sep-07	02-Sep-07	14666.69	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60803"	"Canberra Apr Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-May-07	02-May-07	12954.62	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60805"	"Security clearances"	="Austrade"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	28-Feb-08	10645.05	=""	="Key Vetting Services Pty Ltd"	14-Feb-08 02:50 PM	

+="CN60822-A1"	"Leasing facility for photocopier equipment"	="Federal Court of Australia"	14-Feb-08	="Photocopiers"	05-Jul-07	04-Jul-12	14580.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:36 PM	

+="CN60832"	"DEWR Asset Management for marketing/communication"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Aug-07	30-Jun-08	15000.00	=""	="THE EXHIBITION CENTRE"	14-Feb-08 03:37 PM	

+="CN60835"	"Printing of Information materials"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	13-Aug-07	31-Aug-07	12000.00	=""	="PMP DIGITAL PTY LTD"	14-Feb-08 03:38 PM	

+="CN60836"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Aug-07	24-Sep-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 03:38 PM	

+="CN60838"	"Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	13-Aug-07	15-Oct-07	12000.00	=""	="CAREERS UNLIMITED P/L"	14-Feb-08 03:38 PM	

+="CN60844"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	07-Aug-07	30-Jun-08	12490.50	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 03:39 PM	

+="CN60845"	"TRA Trade Tests 07/08 - Electrical Train"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	30-Jun-08	10000.00	=""	="COLLEGE OF ELECTRICAL TRAINING"	14-Feb-08 03:39 PM	

+="CN60846"	"Payment to IP in relation to GEERS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	07-Aug-07	11220.00	=""	="BK HAMILTON AND ASSOCIATES"	14-Feb-08 03:39 PM	

+="CN60847"	"Leasing facility for photocopier equipment"	="Federal Court of Australia"	14-Feb-08	="Photocopiers"	08-Jan-08	07-Jan-13	14350.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:40 PM	

+="CN60856"	"Stevedoring industry benchmarking report"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Aug-07	11550.00	=""	="BRYAN BOTTOMLEY & ASOC PTY LTD"	14-Feb-08 03:40 PM	

+="CN60861"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="DRAKE"	14-Feb-08 03:41 PM	

+="CN60863"	"recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	15000.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 03:41 PM	

+="CN60864"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Nov-10	15000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:41 PM	

+="CN60865"	"Contractor Fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	31-Aug-07	11995.83	=""	="SELECT APPOINTMENTS"	14-Feb-08 03:42 PM	

+="CN60870"	"Recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="MANPOWER SERVICES"	14-Feb-08 03:42 PM	

+="CN60872"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10312.50	=""	="HAMILTON JAMES & BRUCE PTY LTD"	14-Feb-08 03:43 PM	

+="CN60873"	"Recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="JULIA ROSS PERSONNEL"	14-Feb-08 03:43 PM	

+="CN60877"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	14-Aug-07	04-Nov-07	10000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:43 PM	

+="CN60883"	"EEB Translating Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	15-Aug-07	30-Jun-08	10000.00	=""	="DIMIA - TIS NATIONAL CENTRE"	14-Feb-08 03:44 PM	

+="CN60888"	"Printing services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	30-Jun-08	10000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 03:45 PM	

+="CN60889"	"Staff Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	15-Aug-07	30-Jun-08	10000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 03:45 PM	

+="CN60890"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	23-Dec-07	15000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 03:45 PM	

+="CN60891"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	27-Jul-07	30-Jun-08	11033.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 03:45 PM	

+="CN60906"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	22-Dec-10	14014.68	=""	="GRACE REMOVALS GROUP"	14-Feb-08 03:47 PM	

+="CN60911"	"Workstation Assessments - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	13500.00	=""	="SCOTTISH PACIFIC BUS. FINANCE P/L"	14-Feb-08 03:48 PM	

+="CN60941"	"Panasonic UB-5315 - 2-Screen Plain Paper x 6"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	06-Aug-07	31-Aug-07	14123.00	=""	="ALLTEQ PTY LTD"	14-Feb-08 03:51 PM	

+="CN60951"	"Freight and Courier Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Aug-07	30-Jun-08	15000.00	=""	="TNT DOMESTIC & INTERNATIONAL"	14-Feb-08 03:52 PM	

+="CN60955"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	02-Aug-07	30-Jun-08	13700.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:53 PM	

+="CN60962"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	11764.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60965"	"UPGRADE TELECOMMUNICATIONS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Aug-07	30-Aug-07	13367.20	=""	="DATAVOICE CANBERRA P/L"	14-Feb-08 03:53 PM	

+="CN60967"	"Labels - printing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Aug-07	31-Aug-07	10884.50	=""	="ROLLS FILING SYSTEMS"	14-Feb-08 03:54 PM	

+="CN60971"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Aug-07	30-Jun-08	10000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:54 PM	

+="CN60972"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	13-Dec-07	13-Dec-07	15004.88	=""	="Oracle Corporation Ltd"	14-Feb-08 03:54 PM	

+="CN60975"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	19-Dec-07	30-Jun-08	15000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	14-Feb-08 03:54 PM	

+="CN60976"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	01-Dec-07	13984.60	=""	="Ryder Shop & Office Fitting Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60979"	"Venue Hire for Career Directions for Graduates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	11-Oct-07	05-Nov-07	10285.00	=""	="CLIFTONS"	14-Feb-08 03:54 PM	

+="CN60980"	"Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	11178.00	=""	="SafeNet Australia Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60983"	"Provision of scribing services for NT office"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Oct-07	31-Oct-07	12000.00	=""	="SHELLEY BEARD"	14-Feb-08 03:55 PM	

+="CN60985"	"Cabling installation services for MATV units"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	17-Oct-07	20-Dec-07	10406.00	=""	="FRED PALMER AND SON PTY LTD"	14-Feb-08 03:55 PM	

+="CN60988"	"ICON CORE USAGE CHARGES. PARLIAMENTARY TV"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	12-Dec-07	12-Dec-07	11000.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:56 PM	

+="CN61001"	"Security clearence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Security and personal safety"	13-Sep-07	30-Jun-08	15411.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 03:57 PM	

+="CN61007"	"Contractor Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	28-Sep-07	23-Nov-07	15815.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 03:58 PM	

+="CN61008"	"Warehouse and Distribution Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Oct-07	23-Jan-10	15000.00	=""	="NATIONAL MAILING & MARKETING"	14-Feb-08 03:58 PM	

+="CN61012"	"HAND HELD BARCODE SCANNER DEVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	15-Jan-08	29-Jan-08	11489.78	=""	="TIG INTERNATIONAL PTY LTD"	14-Feb-08 03:59 PM	

+="CN61014"	"CONVERT TV RECEPTION -  ANALOGUE TO DIGITAL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	21-Jan-08	31-Jan-08	10406.00	=""	="FRED PALMER AND SON PTY LTD"	14-Feb-08 03:59 PM	

+="CN61015"	"security equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Security surveillance and detection"	21-Jan-08	30-Jun-08	10711.80	=""	="CUSTOM DESIGNED SOLUTIONS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61042"	"Professional Fees and Disbursements - Legal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Aug-07	31-Aug-07	10005.27	=""	="CHURCH AND GRACE"	14-Feb-08 04:03 PM	

+="CN61043"	"Legal costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Aug-07	31-Aug-07	10005.27	=""	="CHURCH AND GRACE"	14-Feb-08 04:03 PM	

+="CN61044"	"staff relocation expenses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Human resources services"	20-Aug-07	30-Jun-08	10000.00	=""	="TOLL TRANSITIONS"	14-Feb-08 04:03 PM	

+="CN61046"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	20-Aug-07	04-Nov-07	11800.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 04:03 PM	

+="CN61049"	"Staff accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	21-Aug-07	31-Aug-07	14004.00	=""	="BOTANIC GARDENS APARTMENTS"	14-Feb-08 04:03 PM	

+="CN61050"	"Temp employee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	21-Aug-07	28-Sep-07	11213.70	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:04 PM	

+="CN61051"	"Temp employee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	21-Aug-07	05-Oct-07	10390.19	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:04 PM	

+="CN61052"	"OFSC TRAINING EXPENSES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	21-Aug-07	30-Jun-08	10000.00	=""	="MAURA FAY GROUP"	14-Feb-08 04:04 PM	

+="CN61055"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	10147.22	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	14-Feb-08 04:04 PM	

+="CN61059"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Aug-07	30-Jun-08	15000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:05 PM	

+="CN61067"	"removals"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	31-Aug-07	10000.00	=""	="MOVERS & SHAKERS"	14-Feb-08 04:06 PM	

+="CN61077"	"Warden training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	27-Aug-07	30-Jun-08	12000.00	=""	="TRIMEVAC"	14-Feb-08 04:07 PM	

+="CN61078"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	30-Jun-08	10000.00	=""	="CHUBB ELECTRONIC SECURITY"	14-Feb-08 04:07 PM	

+="CN61080"	"Staff Training for Cairns staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	28-Aug-07	31-Oct-07	13000.00	=""	="PEPWORLDWIDE"	14-Feb-08 04:08 PM	

+="CN61082"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	28-Aug-07	30-Jun-08	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:08 PM	

+="CN61085"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	29-Aug-07	30-Jun-08	12100.00	=""	="THOMSON LEGAL & REGULATORY LTD"	14-Feb-08 04:08 PM	

+="CN61091"	""20,000.00 File covers - printing""	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	22-Aug-07	30-Jun-08	12975.26	=""	="MCDONALD PRINTING GROUP"	14-Feb-08 04:09 PM	

+="CN61093"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	23-Aug-07	30-Jun-08	11328.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:09 PM	

+="CN61097"	"CDEP Assets Review/Assessment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Aug-07	14-Sep-07	13050.00	=""	="WALTER AND TURNBULL PTY LTD"	14-Feb-08 04:10 PM	

+="CN61099"	"Industry Strategies - Printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	23-Aug-07	04-Jan-08	10000.00	=""	="UNION OFFSET PRINTERS"	14-Feb-08 04:10 PM	

+="CN61102"	"Commission for Debt Collector"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	31-Jul-08	10000.00	=""	="BRIDGEMENT SMITH COLLECTIONS"	14-Feb-08 04:10 PM	

+="CN61109"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	14000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:11 PM	

+="CN61112"	"Queensland venue for 2008 graduate interviews"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	05-Jul-07	14111.98	=""	="CHRISTIE CORPORATE CONFERENCE CENTR"	14-Feb-08 04:12 PM	

+="CN61113"	"Provision of Taxation Advice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	30-Jun-08	15000.00	=""	="KPMG (CANBERRA)"	14-Feb-08 04:12 PM	

+="CN61116"	"Plants Supply & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	13000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:12 PM	

+="CN61117"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	11005.50	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:12 PM	

+="CN61123"	"Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Jun-08	10400.00	=""	="ELIZABETH ANDREWS CATERING"	14-Feb-08 04:13 PM	

+="CN61143"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Jul-07	30-Jul-07	11814.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:15 PM	

+="CN61146"	"Contractor Fees - Pat Dunn - FSU"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	31-Dec-07	13500.00	=""	="FRONTIERGROUP AUSTRALIA P/L"	14-Feb-08 04:16 PM	

+="CN61147"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	10-Jul-07	23-Dec-07	10000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 04:16 PM	

+="CN61148"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	30-Nov-08	12000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:16 PM	

+="CN61150"	"Training Course"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	10-Jul-07	27-Jul-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:16 PM	

+="CN61153"	"Cabcharge Fees for FY 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	11-Jul-07	30-Jun-08	11872.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 04:17 PM	

+="CN61154"	"Ergonomic Chairs after workplace assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	11500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:17 PM	

+="CN61163"	"IES Job Seeker Mailout"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Aug-07	11672.45	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 04:18 PM	

+="CN61170"	"Asset Register Maintenance Shedule and Rent Review"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	31-Jul-07	12072.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:19 PM	

+="CN61179"	"WRS Pre-Employment Medical Tests 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:20 PM	

+="CN61182"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	11000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:21 PM	

+="CN61188"	"WRS Furniture 2007/08 (McNally's)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	03-Jul-07	30-Jun-08	15000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:21 PM	

+="CN61191"	"OASCC workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:22 PM	

+="CN61192"	"OASCC medical tests 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:22 PM	

+="CN61195"	"Security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	16000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61197"	"OASCC workstation assessments for staff 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:22 PM	

+="CN61199"	"Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	02-Jul-07	24-Jul-07	12000.00	=""	="CROWNE PLAZA ALICE SPRINGS"	14-Feb-08 04:23 PM	

+="CN61203"	"OFSC workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:23 PM	

+="CN61204"	"OFSC Workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:23 PM	

+="CN61206"	"OFSC pre-employment medical tests 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:24 PM	

+="CN61207"	"WRS Workstation Assessments 07/08 SRC"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:24 PM	

+="CN61210"	"WRS Newspapers 2007/08 (Fyshwick)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	04-Jul-07	30-Jun-08	15000.00	=""	="FYSHWICK NEWSAGENCY (ACT) PTY LTD"	14-Feb-08 04:24 PM	

+="CN61211"	"WRS Security Clearances 2007/08 KVS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:24 PM	

+="CN61212"	"WRS Plant Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	15000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:24 PM	

+="CN61213"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	04-Jul-07	30-Nov-07	10000.00	=""	="J S MCMILLAN PTY LTD"	14-Feb-08 04:24 PM	

+="CN61227"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	15990.00	=""	="INFO SALONS AUSTRALIA PTY LTD"	14-Feb-08 04:26 PM	

+="CN61231"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	03-Jul-07	28-Sep-07	10000.00	=""	="SALMAT  LIMITED"	14-Feb-08 04:27 PM	

+="CN61239"	""Room hire, catering for ELP Recall day 13 Dec 07""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	20-Jul-07	24-Dec-07	12581.11	=""	="THE HYATT HOTEL CANBERRA"	14-Feb-08 04:28 PM	

+="CN61247"	"OH&S Workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Dec-07	10962.50	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:29 PM	

+="CN61254"	"Secondment of Alan Grinsell-Jones"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	23-Jul-07	11899.80	=""	="DEACONS - CANBERRA OFFICE"	14-Feb-08 04:30 PM	

+="CN61258"	"Introduction to Senate  - Graduate Course"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	19-Jul-07	05-Sep-07	10000.00	=""	="DEPARTMENT OF THE SENATE"	14-Feb-08 04:30 PM	

+="CN61261"	"Pre-employment Medical Exams - NT - 2007-2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	19-Jul-07	30-Jun-08	15000.00	=""	="HEALTH FOR INDUSTRY"	14-Feb-08 04:30 PM	

+="CN61267"	"PLANT HIRE FROM LIVING SIMPLY"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	30-Jun-08	12000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:31 PM	

+="CN61268"	"Provision for Cross Cultutal Awareness Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	20-Jul-07	30-Jun-08	10000.00	=""	="MORNING STAR INDIGENOUS INSERVICES"	14-Feb-08 04:31 PM	

+="CN61270"	"Lockes and repairs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	01-Jul-08	15000.00	=""	="KEELER HARDWARE (ACT) PTY LTD"	14-Feb-08 04:32 PM	

+="CN61271"	"Freight and Courier Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	25-Jul-07	30-Jun-08	15000.00	=""	="TNT DOMESTIC & INTERNATIONAL"	14-Feb-08 04:32 PM	

+="CN61273"	"Relocation of Library materials to 10 Mort ST"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	25-Jul-07	11000.00	=""	="ATLANTIS = PTY LTD"	14-Feb-08 04:32 PM	

+="CN61274"	"Provision for staff housing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	11228.60	=""	="RAINE & HORNE DARWIN"	14-Feb-08 04:32 PM	

+="CN61276"	"Vehicle Lease"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	25-Jul-07	30-Jul-08	13050.00	=""	="LEASEPLAN AUSTRALIA LTD"	14-Feb-08 04:32 PM	

+="CN61277"	"Stationery"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	25-Jul-07	30-Jul-08	10500.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:32 PM	

+="CN61278"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	26-Jul-07	30-Jun-08	10560.00	=""	="CAPTELL DEVELOPMENTS PTY LTD"	14-Feb-08 04:33 PM	

+="CN61288"	"debt collector fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	10000.00	=""	="DUN & BRADSTREET (AUSTRALIA)"	14-Feb-08 04:34 PM	

+="CN61289"	"Printing  products for information sessions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	24-Jul-07	26-Jul-07	12000.00	=""	="PMP DIGITAL PTY LTD"	14-Feb-08 04:34 PM	

+="CN61292"	"Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	24-Jul-07	31-Aug-07	13170.60	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	14-Feb-08 04:34 PM	

+="CN61294"	"Tech-Ed 2007 group registration fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	30-Jun-08	13365.00	=""	="INFO SALONS AUSTRALIA PTY LTD"	14-Feb-08 04:35 PM	

+="CN61296"	"Provision for meals and accommodation new starters"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	25-Jul-07	30-Jun-08	10000.00	=""	="DARWIN AIRPORT RESORT"	14-Feb-08 04:35 PM	

+="CN61299"	"Seminars and Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	30-Jun-08	11480.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	14-Feb-08 04:35 PM	

+="CN61301"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	25-Jul-07	30-Jun-08	11088.00	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 04:35 PM	

+="CN61306"	"Indigenous Leadership Workshop"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Jul-07	31-Dec-07	10890.00	=""	="AUSTRALIAN INDIGENOUS LEADERSHIP CE"	14-Feb-08 04:36 PM	

+="CN61309"	"Stationery Items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	13-Jul-07	30-Jul-08	15000.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	14-Feb-08 04:36 PM	

+="CN61314"	"W'STATION ASSESSMENTS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	10200.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:37 PM	

+="CN61317"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	10000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:38 PM	

+="CN61319"	"Registration of Federal Legislative Instruments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	15000.00	=""	="ATTORNEY-GENERAL'S DEPT-CPM"	14-Feb-08 04:38 PM	

+="CN61327"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	12-Jul-07	30-Sep-08	10000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:39 PM	

+="CN61344-A1"	" TM1 Web software and Maintenance "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Development software"	01-Jul-07	30-Jun-08	15842.72	=""	="Excelerated Consulting Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61345"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Aug-08	15000.00	=""	="NSW BUSINESS CHAMBER LIMITED"	14-Feb-08 04:40 PM	

+="CN61346-A1"	"50% Share of Construction Costs"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Carpentry"	01-Sep-07	31-Dec-07	14328.00	=""	="OSA Group Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61351"	"IBISWORLd Advantage Licence Renewal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	20-Nov-07	11000.00	=""	="IBISWORLD"	14-Feb-08 04:40 PM	

+="CN61358-A1"	"Consultancy for Health Workforce Audit."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	05-Dec-07	30-May-08	12982.00	=""	="Unisuper Limited"	14-Feb-08 04:41 PM	

+="CN61360-A1"	" Mentor Training December 2007 - January 2008 "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Educational exchanges"	06-Dec-07	29-Jan-08	10780.00	=""	="Talkforce Consultants and Trainers"	14-Feb-08 04:41 PM	

+="CN61361"	"STAFF RELOCATION"	="Department of Employment and Workplace Relations"	14-Feb-08	="Human resources services"	17-Jul-07	31-Jul-07	13167.00	=""	="WRIDGWAYS LIMITED"	14-Feb-08 04:41 PM	

+="CN61366"	"Supply of First Aid Kit, General Purpose, Wall Mounted"	="Defence Materiel Organisation"	14-Feb-08	="Medical Equipment and Accessories and Supplies"	14-Feb-08	28-Mar-08	13227.50	=""	="Amada-Amavic Pty Ltd"	14-Feb-08 04:42 PM	

+="CN61372"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Jul-07	30-Jun-08	11814.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:42 PM	

+="CN61376"	"Security Clearances"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	18-Jul-07	30-Jun-08	10000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:42 PM	

+="CN61381-A1"	"Assistance with completion of Discussion Papers for Tourism Australia Audit."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	14-Jan-08	01-Feb-08	11550.00	=""	="ORIMA Research"	14-Feb-08 04:43 PM	

+="CN61387-A1"	" Placement Fee "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Personnel recruitment"	17-Dec-07	14-Jan-08	11310.35	=""	="Julia Ross Recruitment"	14-Feb-08 04:43 PM	

+="CN61394"	"STAFF REMOVAL COSTS / RELOCATION"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	31-Dec-07	10000.00	=""	="WRIDGEWAYS LTD"	14-Feb-08 04:44 PM	

+="CN61398"	"W'STATION ASSESSMENTS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Jul-07	30-Jun-08	10200.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:44 PM	

+="CN61400"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	15750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM	

+="CN61402"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	10750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM	

+="CN61406"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	12200.00	=""	="CCH AUSTRALIA"	14-Feb-08 04:45 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val16000to20000.xls
@@ -1,1 +1,135 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59440"	"Repair of NSN 5895-66-138-1791 Console, Communication Control S/No 13276"	="Defence Materiel Organisation"	11-Feb-08	="Air transportation support systems and equipment"	29-Nov-07	31-Mar-08	18340.86	=""	="C4I Pty Ltd"	11-Feb-08 10:34 AM	

+="CN59442"	"Repair of NSN 5895-66-138-1791 Console, Communication Control S/No 9977"	="Defence Materiel Organisation"	11-Feb-08	="Air transportation support systems and equipment"	29-Nov-07	31-Mar-08	18340.86	=""	="C4I Pty Ltd"	11-Feb-08 10:42 AM	

+="CN59520"	"Purchase of mailGate Gateway"	="Office of the Commonwealth Ombudsman"	11-Feb-08	="Computer Equipment and Accessories"	07-Jan-08	07-Jan-08	16500.00	=""	="Open Systems Australia"	11-Feb-08 01:56 PM	

+="CN59527"	"Think on your Feet Workshop"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Work related organisations"	31-Jan-08	12-Feb-08	16500.00	=""	="INPARALLEL AUSTRALASIA PTY LTD"	11-Feb-08 02:02 PM	

+="CN59536"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	01-Feb-08	29-Feb-08	20000.00	="T2004/0699"	="Rosslogic Pty Ltd"	11-Feb-08 02:03 PM	

+="CN59558"	"Mobile Phones 27/10 to 26/12"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Information services"	03-Dec-07	30-Jun-08	16842.17	="TRS04/019"	="OPTUS BILLING SERVICES PTY LTD"	11-Feb-08 02:06 PM	

+="CN59573"	"OFFICE MACHINERY"	="Australian Taxation Office"	11-Feb-08	="Tools and General Machinery"	11-Feb-08	11-Feb-08	16726.60	=""	="Toshiba Australia Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59574"	"Publications"	="Australian Taxation Office"	11-Feb-08	="Published Products"	06-Feb-08	06-Feb-08	17000.00	=""	="CCH Australia Limited"	11-Feb-08 02:08 PM	

+="CN59579"	"Orders of Taxation Legislation - Compliance BSLs"	="Australian Taxation Office"	11-Feb-08	="Published Products"	06-Feb-08	30-Mar-08	17697.34	=""	="CCH Australia Limited"	11-Feb-08 02:08 PM	

+="CN59646"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	18155.28	=""	="Rover Australia"	11-Feb-08 03:46 PM	

+="CN59746"	"Legal Service Expenditure Camilla Webste"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Legal services"	05-Feb-08	30-Jun-09	17600.00	=""	="CAMILLA WEBSTER"	12-Feb-08 10:36 AM	

+="CN59748"	"HWMD Trg Rd 3 ASIC"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Security and personal safety"	01-Jul-06	30-Jun-08	16549.50	=""	="VAST Pty Ltd Trading as Vast"	12-Feb-08 10:36 AM	

+="CN59762"	"Increase in scope and associated travel expenses associated with Official Order 01-2007 from Panel 06.125 for Online Security Framework Review. Original CN 1659246 Old GAPS ID"	="Australian Taxation Office"	12-Feb-08	="Information technology consultation services"	10-Jan-07	29-Jun-07	17640.00	=""	="PRICE WATERHOUSECOOPERS"	12-Feb-08 12:13 PM	

+="CN59780"	"Annual Report Printing"	="Australian Research Council"	12-Feb-08	="Promotional material or annual reports"	24-Oct-07	23-Nov-07	17479.00	=""	="Union Offset Printers"	12-Feb-08 01:36 PM	

+="CN59793"	"Support Services for FMIS"	="Australian Research Council"	12-Feb-08	="Information technology consultation services"	05-Dec-07	23-Dec-08	17585.00	=""	="Oakton AA Services"	12-Feb-08 02:08 PM	

+="CN59816"	"Counselling Services - Family Report"	="Federal Magistrates Court"	12-Feb-08	="Court reporting services"	01-Jan-08	31-Jan-08	18038.20	=""	="Joy Slattery Counselling Pty Ltd"	12-Feb-08 03:21 PM	

+="CN59840"	"Interpreting Services"	="Federal Magistrates Court"	12-Feb-08	="Interpreters"	01-Jan-08	31-Jan-08	19340.75	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	12-Feb-08 04:14 PM	

+="CN59845"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	12-Feb-08	="Temporary clerical or administrative assistance"	01-Jan-08	31-Jan-08	19042.62	=""	="Robert Half Australia"	12-Feb-08 04:27 PM	

+="CN59853"	"SUBSCRIPTIONS DECEMBER 2007"	="Administrative Appeals Tribunal"	12-Feb-08	="Printed media"	03-Dec-07	31-Dec-08	16247.00	=""	="THOMSON LEGAL & REGULATORY"	12-Feb-08 04:41 PM	

+="CN59861"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	12-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Jan-08	19305.22	=""	="Telstra Corporation Limited"	12-Feb-08 04:47 PM	

+="CN59863"	"Freight Forwarding Service"	="Federal Magistrates Court"	12-Feb-08	="Freight forwarders services"	01-Jan-08	31-Jan-08	16498.02	=""	="Toll IPEC Pty Ltd"	12-Feb-08 04:51 PM	

+="CN59918"	"Supply of Stationery"	="Bureau of Meteorology"	13-Feb-08	="Office supplies"	06-Feb-08	29-Feb-08	19201.24	=""	="Corporate Express Australia Limited"	13-Feb-08 10:58 AM	

+="CN59925"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	29-Jan-08	31-Jan-08	17602.39	=""	="AAPT LIMITED"	13-Feb-08 10:59 AM	

+="CN59932"	"Airfares"	="Bureau of Meteorology"	13-Feb-08	="Passenger transport"	04-Feb-08	29-Feb-08	18018.26	=""	="Hogg Robinson Group Australia"	13-Feb-08 11:00 AM	

+="CN59933"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	05-Feb-08	29-Feb-08	16546.20	=""	="URSYS"	13-Feb-08 11:00 AM	

+="CN59937"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	08-Feb-08	29-Feb-08	16546.20	=""	="URSYS"	13-Feb-08 11:00 AM	

+="CN59945"	"PRINTING OF M194 & M180 UPPER AIR CHARTS"	="Bureau of Meteorology"	13-Feb-08	="Printed media"	01-Feb-08	04-Feb-08	17075.30	=""	="Printmail Australia Pty  Ltd"	13-Feb-08 11:01 AM	

+="CN59963-A1"	"Footpath Replacement"	="National Capital Authority"	13-Feb-08	="Footpath"	13-Feb-08	26-Feb-08	18279.25	=""	="Contour Constructions (ACT) Pty Ltd"	13-Feb-08 01:15 PM	

+="CN59980"	"Purchse of Global Management system and license"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	26-Oct-07	27-Oct-07	17111.11	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:23 PM	

+="CN60085"	"PRINTING AND STATIONERY COSTS"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-Jan-08	16-Jan-08	19800.00	=""	="HERMES PRECISA PTY LTD (HPA)"	13-Feb-08 04:00 PM	

+="CN60110"	"HP BLADE SERVER"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Software or hardware engineering"	31-Jan-08	31-Jan-08	17649.50	=""	="INTEGRATION SYSTEMS AUST (DIVISION OF ETHAN GROUP)"	13-Feb-08 04:04 PM	

+="CN60115"	"CONSULTING SERVICE FOR 2008 TO JUNE 2009"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Business and corporate management consultation services"	05-Feb-08	05-Feb-08	19800.00	=""	="GREG BAILEY CONSULTING"	13-Feb-08 04:04 PM	

+="CN60118"	"ONLINE PANDEMIC LEARNING"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Business intelligence consulting services"	06-Feb-08	06-Feb-08	19580.00	=""	="INTERNATIONAL SOS (AUSTRALASIA) PTY LTD"	13-Feb-08 04:05 PM	

+="CN60167"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	30-Jun-06	17177.60	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:02 PM	

+="CN60170"	"Viet Nam Rural Development Program - TAG - Community Devt/Performance Information Adviser"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	29-Mar-00	30-Jun-02	18952.00	=""	="STEPHENS, ALEXANDRA"	13-Feb-08 05:02 PM	

+="CN60388"	"Fiji Health Sector Improvement Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Oct-03	01-Oct-09	18510.78	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:31 PM	

+="CN60448"	"PRE DEPARTURE ENGLISH LANGUAGE TRAINING FOR THE ADS PROGRAM OCTOBER 2004 - DECEMBER 2006"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Oct-04	31-Dec-06	16729.27	=""	="ENDYMION LTD T/A VIENTIANE COLLEGE"	13-Feb-08 05:39 PM	

+="CN60485"	"Consultant AMLR"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	19350.00	=""	="Deloitte Touche Tohmatsu"	13-Feb-08 05:43 PM	

+="CN60505"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	15-Nov-07	15-Nov-07	17021.80	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60510"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Education and Training Services"	19-Nov-07	19-Nov-07	19200.00	=""	="Nu Solutions Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60515"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	26-Nov-07	26-Nov-07	19977.12	=""	="Telstra"	13-Feb-08 05:46 PM	

+="CN60576"	"Provision of Legal Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-Jul-06	31-Dec-06	19822.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Feb-08 05:52 PM	

+="CN60610"	"David Wilkinson - Team Leader, Engagement Strategy Development Mission"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-Mar-07	30-Jul-07	17779.39	=""	="WILKINSON, DAVID"	13-Feb-08 05:57 PM	

+="CN60665"	"NDRMP - Trust Fund"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Oct-06	31-Aug-07	20000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 06:03 PM	

+="CN60687"	"Design of AusAID Development Research Peer Review Mechanism"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Mar-07	30-Jun-07	17912.40	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	13-Feb-08 06:07 PM	

+="CN60736"	"Legal advice in relation to a business case"	="CrimTrac"	14-Feb-08	="Legal services"	13-Apr-07	30-Jun-08	20000.00	=""	="Australian Government Solicitor"	14-Feb-08 10:41 AM	

+="CN60737"	"Administrative Personnel"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	17-Oct-07	31-Dec-07	16000.00	=""	="Wizard Personnel  Office Services"	14-Feb-08 10:41 AM	

+="CN59810-A1"	"Furniture for Dandenong Registry"	="Family Court of Australia"	14-Feb-08	="Chairs"	12-Feb-08	30-Mar-08	16759.60	=""	="Jardan Australia Pty Ltd"	14-Feb-08 01:09 PM	

+="CN60781"	"Electricity charges UPS Room Oct 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Oct-07	31-Oct-07	17160.80	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60783"	"Electricity charges UPS Room Sep 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Sep-07	30-Sep-07	16060.35	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60785"	"Electricity charges UPS Room Aug 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Aug-07	31-Aug-07	16025.41	=""	="ActewAGL"	14-Feb-08 02:48 PM	

+="CN60788"	"Electricity charges Oct/Nov 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Oct-07	30-Nov-07	17267.37	=""	="Energy Australia"	14-Feb-08 02:48 PM	

+="CN60792"	"Sydney Office Sep Switchboard Costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Sep-07	29-Sep-07	18640.01	=""	="Telstra"	14-Feb-08 02:48 PM	

+="CN60793"	"Sydney office Nov switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	29-Nov-07	17909.81	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60794"	"Canberra Sep Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	02-Oct-07	17363.82	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60799"	"Sydney office Aug switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Aug-07	29-Aug-07	18690.72	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60800"	"Canberra Jul Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Aug-07	01-Aug-07	18482.55	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60802"	"Canberra May Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jun-07	01-Jun-07	18555.49	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60804"	"Canberra Jan Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	01-Feb-08	16573.49	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60829"	"Accommodation/Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	09-Aug-07	02-Feb-08	16498.00	=""	="ELDERS TERRITORY REAL ESTATE"	14-Feb-08 03:37 PM	

+="CN60834"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	13-Aug-07	01-Jun-10	17148.62	=""	="SALMAT  LIMITED"	14-Feb-08 03:38 PM	

+="CN60837"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Aug-07	30-Jun-08	16558.50	=""	="HELP DESK ASSOCIATES"	14-Feb-08 03:38 PM	

+="CN60851"	"TRA Trade Tests 07/08 - Bne Nth Tafe"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Jun-08	18500.00	=""	="BRISBANE NORTH INSTITUTE OF TAFE"	14-Feb-08 03:40 PM	

+="CN60855"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	09-Aug-07	30-Sep-07	20000.00	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:40 PM	

+="CN60859"	""Access to Leadership,Learning&Developmen""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	16-Aug-07	17-Jan-08	18500.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 03:41 PM	

+="CN60871"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	20000.00	=""	="WRIDGWAYS THE REMOVALISTS"	14-Feb-08 03:42 PM	

+="CN60884"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	20000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60898"	"Security Vetting"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Jul-07	31-Oct-07	17000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 03:46 PM	

+="CN60901"	"Cabcharge"	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	30-Jul-07	30-Jun-08	17000.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 03:46 PM	

+="CN60905"	"Contract services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	31-Aug-07	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	14-Feb-08 03:47 PM	

+="CN60935"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	20000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 03:51 PM	

+="CN60946"	"security upgrade"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	16738.76	=""	="API Security Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60948"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	14-Dec-07	14-Dec-07	17600.00	=""	="B-Sec Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60949"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	02-Aug-07	30-Jun-08	16500.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 03:52 PM	

+="CN60953"	"NT Emergency Responce Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Aug-07	02-Aug-08	19040.00	=""	="DARWIN RENTAL SPECIALISTS"	14-Feb-08 03:53 PM	

+="CN60958"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	01-Dec-07	01-Dec-07	18630.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60959"	"UPGRADE WORKS TO PARLIAMENTAY TV FEED TO DEWR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	03-Aug-07	31-Aug-07	18000.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:53 PM	

+="CN60984"	"Fitout - 47 Mitchell St, Darwin (L5)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	10-Dec-07	31-Dec-07	18638.13	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 03:55 PM	

+="CN61000"	"OHS online training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	10-Sep-07	30-Jun-08	18000.00	=""	="WSP ENVIRONMENTAL PTY LTD"	14-Feb-08 03:57 PM	

+="CN61003"	"Car Parking Fees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Sep-07	21-Dec-07	19600.00	=""	="DELMEGE COMMERCIAL PTY LIMITED"	14-Feb-08 03:57 PM	

+="CN61019"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	31-Jan-08	30-Jun-08	16505.89	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61033"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	19965.00	=""	="STATSEEKER"	14-Feb-08 04:01 PM	

+="CN61045"	"6 months  staff property rental in Alice Springs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Aug-07	30-Jan-08	18020.00	=""	="FRAMPTON FIRST NATIONAL REAL ESTATE"	14-Feb-08 04:03 PM	

+="CN61040"	"Repair of F/A-18 Generator Converter Unit S/No 0904 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	14-Feb-08	="Aerospace systems and components and equipment"	14-Feb-08	31-Mar-08	16244.98	=""	="Goodrich Control Systems"	14-Feb-08 04:03 PM	

+="CN61060"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	17600.00	=""	="CONSULTING GROUP PTY LTD AS TRUSTEE"	14-Feb-08 04:05 PM	

+="CN61090"	"TRA Trades Expo - September 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	30-Aug-07	30-Oct-07	20000.00	=""	="TOUR HOSTS"	14-Feb-08 04:09 PM	

+="CN61094"	"Air charters for National Emergency Response"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="CHARTAIR"	14-Feb-08 04:09 PM	

+="CN61095"	"Air Charter for the NT National  Emergency  Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="AUSTRALASIAN JET (NT) AIRCRAFT CHAR"	14-Feb-08 04:09 PM	

+="CN61098"	""Conference costs: Venue Hire, Accommodation, meal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	05-Sep-07	18025.70	=""	="THE MARQUE HOTELS INTERNATIONAL"	14-Feb-08 04:10 PM	

+="CN61104"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	24-Aug-07	30-Jun-08	17114.92	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:11 PM	

+="CN61106"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	27-Aug-07	04-Nov-07	17500.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 04:11 PM	

+="CN61111"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:11 PM	

+="CN61120"	"Provision for driver trainig 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="SMART-NT"	14-Feb-08 04:13 PM	

+="CN61122"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	06-Jul-07	16500.00	=""	="SELECT WRITE RECRUITMENT SUPPORT"	14-Feb-08 04:13 PM	

+="CN61133"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-09	18000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:14 PM	

+="CN61138"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	05-Jul-07	30-Jun-08	16368.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	14-Feb-08 04:15 PM	

+="CN61155"	"Ergonomic chairs (estimated exp FY07-08)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	16500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:17 PM	

+="CN61158"	"Provision for staff training NT 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:17 PM	

+="CN61175"	"Ergonomic chairs for workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:20 PM	

+="CN61181"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-09	20000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:20 PM	

+="CN61184"	"Contruction Safety Competency Framework"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Dec-07	18000.00	=""	="CRC FOR CONSTRUCTION INNOVATION"	14-Feb-08 04:21 PM	

+="CN61185"	"OFSC promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	14-Feb-08 04:21 PM	

+="CN61193"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	02-Jul-07	30-Jun-08	19250.00	=""	="BLUELINE SOFTWARE PTY LTD"	14-Feb-08 04:22 PM	

+="CN61194"	"OASCC security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61195"	"Security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	16000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61214"	"indoor plant hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	18487.00	=""	="LIVING SIMPLY"	14-Feb-08 04:25 PM	

+="CN61222"	"OFSC training courses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	20000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 04:26 PM	

+="CN61229"	"SWAW printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Jun-08	19000.00	=""	="INSTANT COLOUR PRESS"	14-Feb-08 04:26 PM	

+="CN61230"	"OFSC security assessments for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:27 PM	

+="CN61232"	"Courier Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	04-Jul-07	30-Jun-08	20000.00	=""	="DPS COURIERS"	14-Feb-08 04:27 PM	

+="CN61236"	"OFSC training and seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61237"	"WRS Recycling Bin Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	20000.00	=""	="RECALL SECURE DESTRUCTION SERVICES"	14-Feb-08 04:27 PM	

+="CN61241"	"First Aid training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	23-Jul-07	01-Jul-08	18000.00	=""	="ST JOHN AMBULANCE AUSTRALIA (ACT)"	14-Feb-08 04:28 PM	

+="CN61246"	"Pre-employment Exams 2007-2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Jun-08	16500.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:29 PM	

+="CN61255"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	19500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61291"	"SWAW storage costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	20000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:34 PM	

+="CN61298"	"General Audit Services - Service 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Jun-10	19976.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	14-Feb-08 04:35 PM	

+="CN61303"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Nov-10	20000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:36 PM	

+="CN61308"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Jul-07	30-Jun-08	17619.50	=""	="TONVIA P/L (Tony&Sylvia De Luca)"	14-Feb-08 04:36 PM	

+="CN61310"	"ERGONOMIC CHAIRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Jul-07	30-Jun-08	19000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:37 PM	

+="CN61316"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:37 PM	

+="CN61318"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Jul-07	30-Jun-08	20000.00	=""	="CANPRINT COMMUNICATIONS PTY LTD"	14-Feb-08 04:38 PM	

+="CN61322"	"Subscription Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	11-Jul-07	30-Jun-08	17663.38	=""	="THOMSON LEGAL & REGULATORY LTD"	14-Feb-08 04:38 PM	

+="CN61330-A1"	"Management of Personnel Security Clearances follow-up audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Accounting services"	01-Dec-07	30-Jan-08	19800.00	=""	="Allanson Consulting Pty Ltd"	14-Feb-08 04:39 PM	

+="CN61333"	"Mail Services 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	12-Jul-07	30-Jun-08	17000.00	=""	="AUSTRALIA POST (SA ACCOUNT)"	14-Feb-08 04:39 PM	

+="CN61340-A1"	"Advice on Establishment and Management of the Communications Audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61343"	"Qualitative Research on AJS new project"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	12-Jul-07	26-Oct-07	17279.35	=""	="IPSOS AUSTRALIA PTY LTD"	14-Feb-08 04:40 PM	

+="CN61347"	"Subscriptions and purchase of Standards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	19600.00	=""	="SAI-GLOBAL LIMITED"	14-Feb-08 04:40 PM	

+="CN61350"	"Applied Financial Diagnostic Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	31-Oct-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61353"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	16400.00	=""	="SPECIALIST NEWSLETTERS"	14-Feb-08 04:40 PM	

+="CN61369-A1"	" Conduct scoping study for Call Centre service delivery - Centrelink "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	07-Dec-07	31-Jan-08	16590.00	=""	="Resolution Consulting Services"	14-Feb-08 04:42 PM	

+="CN61385-A1"	" Pre-brief of Illegal Unreported and Unregulated Fishing in the Southern Ocean Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	16-Nov-07	23-Nov-07	17325.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:43 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val20000to30000.xls
@@ -1,1 +1,183 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59447"	"Purchase of Qty 30 NSN 5965-66-156-6035 Headset-Microphone"	="Defence Materiel Organisation"	11-Feb-08	="Air transportation support systems and equipment"	06-Feb-08	14-May-08	22440.00	=""	="BAE SYSTEMS"	11-Feb-08 10:51 AM	

+="CN59449"	"Purchase of Various spare headset parts"	="Defence Materiel Organisation"	11-Feb-08	="Air transportation support systems and equipment"	31-Jan-08	27-Jun-08	24024.00	=""	="Eylex Pty Ltd"	11-Feb-08 10:57 AM	

+="CN59167"	"Counsel Fees."	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	07-Nov-07	30-Jun-08	22000.00	=""	="Mr Robert Bromwich"	11-Feb-08 12:01 PM	

+="CN59536"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	01-Feb-08	29-Feb-08	20000.00	="T2004/0699"	="Rosslogic Pty Ltd"	11-Feb-08 02:03 PM	

+="CN59539"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Legal services"	01-Nov-07	31-Jan-08	22429.00	=""	="Gillian Beaumont Recruitment Pty Li"	11-Feb-08 02:04 PM	

+="CN59559"	"Aircards up to 21 Jan 08"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Information services"	02-Jan-08	30-Jun-08	28831.59	="TRS04/006"	="TELSTRA"	11-Feb-08 02:06 PM	

+="CN59569"	"Publications"	="Australian Taxation Office"	11-Feb-08	="Published Products"	07-Feb-08	07-Feb-08	20300.00	=""	="CCH Australia Limited"	11-Feb-08 02:07 PM	

+="CN59580"	"VARIOUS PUBLICATIONS"	="Australian Taxation Office"	11-Feb-08	="Paper Materials and Products"	06-Feb-08	06-Feb-08	23000.00	=""	="THOMSON LEGAL AND REGULATORY"	11-Feb-08 02:08 PM	

+="CN59582"	"VARIOUS PUBLICATIONS"	="Australian Taxation Office"	11-Feb-08	="Paper Materials and Products"	06-Feb-08	06-Feb-08	29500.00	=""	="CCH Australia Limited"	11-Feb-08 02:08 PM	

+="CN59596"	"PRIVATE PLATED VEHICLE LEASE"	="Administrative Appeals Tribunal"	11-Feb-08	="Passenger motor vehicles"	06-Feb-08	05-Feb-10	22275.79	=""	="LEASE PLAN AUSTRALIA PTY LTD"	11-Feb-08 02:27 PM	

+="CN59611-A4"	"Property Lease Vehicle Parking Canberra ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	30-Sep-06	31-Aug-10	23175.00	=""	="Canberra International Airport Pty Ltd"	11-Feb-08 02:52 PM	

+="CN59629"	"motor vehicle spare parts"	="Department of Defence"	11-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	15-Feb-08	21320.16	=""	="ENGINE MASTER"	11-Feb-08 03:21 PM	

+="CN59676"	"SUCTION APPARATUS OROPHARYNGEAL"	="Defence Materiel Organisation"	11-Feb-08	="Medical Equipment and Accessories and Supplies"	11-Feb-08	18-Feb-08	21857.00	=""	="LAEDAL PTY LTD"	11-Feb-08 04:41 PM	

+="CN59751"	"Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Management advisory services"	11-Feb-08	14-Mar-08	25000.00	="T2004/0699"	="SMS Management & Technology"	12-Feb-08 10:36 AM	

+="CN59763"	"Provision for Settlement Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Displaced persons assistance services"	01-Feb-08	30-Jun-08	22000.00	=""	="Bendigo Regional Ethnic Communities Council Inc."	12-Feb-08 12:14 PM	

+="CN59786"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	12-Feb-08	="Transcribing services"	01-Jan-08	31-Jan-08	21549.02	=""	="Auscript Australasia Pty Ltd"	12-Feb-08 01:44 PM	

+="CN59785"	"Services for Finance Officer"	="Australian Research Council"	12-Feb-08	="Temporary financial staffing needs"	26-Nov-07	08-Feb-08	26433.00	=""	="Hayes Personnel Services"	12-Feb-08 01:46 PM	

+="CN59803"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	12-Feb-08	="Temporary legal staffing needs"	01-Jan-08	31-Jan-08	24427.88	=""	="Drake Australia Pty Ltd"	12-Feb-08 02:30 PM	

+="CN59805"	"Reporting Model Licence Fee"	="Australian Research Council"	12-Feb-08	="Maintenance or support fees"	02-Jul-07	30-Jun-08	22000.00	=""	="KPMG Consulting"	12-Feb-08 02:33 PM	

+="CN59806"	"Design & Engineering Consultancy Services"	="Federal Magistrates Court"	12-Feb-08	="Professional engineering services"	01-Jan-08	31-Jan-08	20915.00	=""	="Group GSA Pty Ltd"	12-Feb-08 02:35 PM	

+="CN59807"	"Property Lease Mascot Nsw"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Oct-07	30-Sep-09	23760.00	=""	="Sydney Airport Corporation Limited"	12-Feb-08 02:37 PM	

+="CN59809"	"Consulting Services - Family Report"	="Federal Magistrates Court"	12-Feb-08	="Court reporting services"	01-Jan-08	31-Jan-08	25485.25	=""	="Harvey Consultancy - Report Writer"	12-Feb-08 02:51 PM	

+="CN59811"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	12-Feb-08	="Temporary clerical or administrative assistance"	01-Jan-08	31-Jan-08	20103.33	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	12-Feb-08 03:04 PM	

+="CN59814"	" AIRCRAFT SPARES  NSN 1620-01-421-1438 , PISTON ASSY , SHOCK , QTY 5. "	="Defence Materiel Organisation"	12-Feb-08	="Military transport helicopters"	12-Feb-08	13-Dec-08	22575.36	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	12-Feb-08 03:15 PM	

+="CN59832-A1"	"Property Lease thursday Island"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-May-06	31-Aug-08	29695.00	=""	="Tubarao Investments Pty Ltd"	12-Feb-08 03:48 PM	

+="CN59843"	" Office Refurbishment FMC Level 9 Brisbane Registry "	="Federal Magistrates Court"	12-Feb-08	="Refurbishing services"	01-Jan-08	31-Jan-08	29852.35	=""	="Quadric Pty Ltd"	12-Feb-08 04:23 PM	

+="CN59858"	"AIRFARES DECEMBER 2007"	="Administrative Appeals Tribunal"	12-Feb-08	="Passenger transport"	28-Dec-07	31-Dec-07	21982.07	=""	="AMERICAN EXPRESS CORPORATE SERVICES"	12-Feb-08 04:41 PM	

+="CN59885"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	13-Feb-08	="Drugs and Pharmaceutical Products"	02-Jan-08	14-Feb-08	29974.38	=""	="Symbion Pharmacy Services"	13-Feb-08 07:17 AM	

+="CN59926"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	07-Feb-08	29-Feb-08	26927.53	=""	="Stratos"	13-Feb-08 10:59 AM	

+="CN59927"	"Diesel generator maintenance and training"	="Bureau of Meteorology"	13-Feb-08	="Industrial Manufacturing and Processing Machinery and Accessories"	06-Feb-08	29-Feb-08	25959.80	=""	="Askensmith Pty Ltd"	13-Feb-08 10:59 AM	

+="CN59928"	"Telecommunications Services"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	01-Feb-08	29-Feb-08	22078.09	=""	="Telstra  (ID No. 740)"	13-Feb-08 10:59 AM	

+="CN59929"	"Qld Voice Account"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	04-Feb-08	14-Feb-08	28269.18	=""	="Telstra  (ID No. 740)"	13-Feb-08 10:59 AM	

+="CN59941"	"Polycom Video Conferencing"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	30-Jan-08	30-Jan-08	29777.00	=""	="Electroboard Solutions P/L"	13-Feb-08 11:01 AM	

+="CN59949"	"Provision services P Alford"	="Bureau of Meteorology"	13-Feb-08	="Management advisory services"	08-Feb-08	30-Jun-08	27659.52	=""	="Alford Phil"	13-Feb-08 11:02 AM	

+="CN59951"	"Water & Sewerage 2007-08"	="National Capital Authority"	13-Feb-08	="Water and sewer utilities"	01-Jul-07	30-Jun-08	26550.00	=""	="ActewAGL"	13-Feb-08 11:17 AM	

+="CN59959"	"High Frequency Attenuators"	="Defence Materiel Organisation"	13-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Feb-08	31-Mar-08	23324.60	=""	="AGILENT TECHNOLOGIES"	13-Feb-08 12:23 PM	

+="CN59975"	"Purchase of Conferencing Application User Site License"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	06-Dec-07	06-Jan-08	24535.50	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:22 PM	

+="CN59976"	"Sponsorship of TradeFilms Digital Film Festival"	="Austrade"	13-Feb-08	="Marketing and distribution"	22-Jun-07	23-Jun-07	27500.00	=""	="Media Resource Centre"	13-Feb-08 01:22 PM	

+="CN59982"	"Purchase of Polycom path Navigator 3 year maintenance"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	30-Jul-07	30-Jul-10	21000.00	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:23 PM	

+="CN58698"	"Jury Member - Parklands Competition"	="National Capital Authority"	13-Feb-08	="Business and corporate management consultation services"	28-May-07	01-Jun-08	24423.88	=""	="Elizabeth Mossop"	13-Feb-08 01:24 PM	

+="CN60038"	"TO PROVIDE FINANCE COORDINATION SUPPORT TO THE INDONESIA BRANCH OPERATIONS DURING THE CRITICAL TRANSITION PERIOD ACROSS FINANCIAL YEARS"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	10-May-07	03-Oct-07	28560.00	=""	="WALL, ROBERT W (QUEANBEYAN)"	13-Feb-08 02:55 PM	

+="CN60062"	"SUPPLY & DELIVERY OF IR & FEBR DOORS TO MANILA FOR FITOUT IN CHANCERY"	="AusAid"	13-Feb-08	="Office Equipment and Accessories and Supplies"	19-Oct-07	19-Oct-07	22000.00	=""	="THE SEALECK GROUP"	13-Feb-08 02:57 PM	

+="CN60013"	" M113 CARRIER UPGRADE HIAB CRANE PARTS "	="Department of Defence"	13-Feb-08	="Armoured fighting vehicles"	11-Feb-08	05-May-08	26758.95	=""	="HIAB AUSTRALIA PTY LTD"	13-Feb-08 03:12 PM	

+="CN60093"	"ENVIRONMENTAL CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Environmental Services"	04-Dec-07	29-Feb-08	29903.00	="ATM028APRA"	="ARUP"	13-Feb-08 04:01 PM	

+="CN60096"	"PROVISION OF RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Recruitment services"	17-Jan-08	17-Jan-08	22000.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	13-Feb-08 04:02 PM	

+="CN60101"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	22000.00	=""	="ROBERT NEWLINDS SC"	13-Feb-08 04:02 PM	

+="CN60105"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	22000.00	=""	="JACQUELINE GLEESON"	13-Feb-08 04:03 PM	

+="CN60117"	"STAFF FUNCTION"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Hotels and lodging and meeting facilities"	05-Feb-08	05-Feb-08	22000.00	=""	="SYDNEY CONVENTION AND EXHIBITION CENTRE"	13-Feb-08 04:04 PM	

+="CN60123"	"Lease of extra car parking space  - Perth Office"	="Office of the Director of Public Prosecutions"	13-Feb-08	="Real estate services"	30-Jan-06	28-Feb-10	29696.24	=""	="Colliers International (WA) Pty Ltd"	13-Feb-08 04:21 PM	


+="CN60370"	"Solomon Islands Budget Supplementation Account"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-03	20-Jan-05	22000.00	=""	="PRICEWATERHOUSECOOPERS HONIARA"	13-Feb-08 05:29 PM	

+="CN60371"	"Solomon Islands Budget Supplementation Account"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-03	20-Jan-05	20820.00	=""	="PRICEWATERHOUSECOOPERS HONIARA"	13-Feb-08 05:29 PM	

+="CN60444"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	29-Sep-06	29251.67	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:39 PM	

+="CN60483"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	20-Nov-07	20-Nov-07	26087.02	=""	="Cybertrust Australia Pty Ltd"	13-Feb-08 05:43 PM	

+="CN60491"	"computer repair"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	15-Nov-07	15-Nov-07	20010.88	=""	="Evotec"	13-Feb-08 05:44 PM	

+="CN60497"	"Leased Office Space"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Real estate services"	19-Nov-07	19-Nov-07	25106.74	=""	="Investa Asset Management (QLD) Pty Ltd"	13-Feb-08 05:44 PM	

+="CN60501"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	07-Nov-07	07-Nov-07	22379.45	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60512"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Engineering and Research and Technology Based Services"	19-Nov-07	19-Nov-07	29053.00	=""	="Open Mind Research Group Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60546"	"Institutional and Governance Advisor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jun-06	29-Jun-07	20233.40	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:48 PM	

+="CN60551"	"Fit out Construction Works"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-Jun-06	30-Nov-07	27350.15	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 05:49 PM	

+="CN60557"	"APTC Phase II Detailed Design Box Hill Hospitality and Tourism"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	03-Jul-06	31-Dec-06	22440.00	=""	="BOX HILL INSTITUTE OF TAFE"	13-Feb-08 05:50 PM	

+="CN60613"	"Review of the STI Clinic Construction Project Phase 1 (Local Consultant)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	10-Apr-07	30-Nov-07	23788.58	=""	="TERENCE KARO ARCHITECTS"	13-Feb-08 05:57 PM	

+="CN60627"	"femLINKPACIFIC"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-Apr-07	30-Apr-10	22869.32	=""	="femLINKPACIFIC"	13-Feb-08 05:59 PM	

+="CN60631"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	23-Apr-07	30-Jun-07	25344.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	13-Feb-08 05:59 PM	

+="CN60665"	"NDRMP - Trust Fund"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Oct-06	31-Aug-07	20000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 06:03 PM	

+="CN60668"	"Health Sector Period Offer"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Dec-02	30-Nov-07	22000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 06:04 PM	

+="CN60669"	"MoG Administration Support (Desk)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Sep-06	31-Dec-06	27500.00	=""	="GARRETT, WILLIAM JAMES"	13-Feb-08 06:04 PM	

+="CN60670"	"MoG Administration Support (Desk)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Sep-06	31-Mar-07	27500.00	=""	="GARRETT, WILLIAM JAMES"	13-Feb-08 06:04 PM	

+="CN60671"	"MoG Administration Support (Desk)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Sep-06	30-Jun-07	28600.00	=""	="GARRETT, WILLIAM JAMES"	13-Feb-08 06:04 PM	

+="CN60701"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Transportation and Storage and Mail Services"	29-Jan-08	29-Jan-08	22597.41	=""	="Cabcharge Australia Pty Ltd"	13-Feb-08 06:34 PM	

+="CN60704"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	07-Jan-08	07-Jan-08	24866.81	=""	="Cybertrust Australia Pty Ltd"	13-Feb-08 06:35 PM	

+="CN60705"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	29-Jan-08	29-Jan-08	21996.83	=""	="Cybertrust Australia Pty Ltd"	13-Feb-08 06:35 PM	

+="CN60712"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	04-Jan-08	04-Jan-08	29653.33	=""	="Telstra"	13-Feb-08 06:36 PM	

+="CN60713"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Telecommunications media services"	29-Jan-08	29-Jan-08	20730.55	=""	="Telstra"	13-Feb-08 06:36 PM	

+="CN60736"	"Legal advice in relation to a business case"	="CrimTrac"	14-Feb-08	="Legal services"	13-Apr-07	30-Jun-08	20000.00	=""	="Australian Government Solicitor"	14-Feb-08 10:41 AM	

+="CN60746"	"2 SQL servers"	="CrimTrac"	14-Feb-08	="Computer servers"	15-Jan-08	23-Jan-08	20611.67	=""	="Infront Systems Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60752"	"Printer paper"	="CrimTrac"	14-Feb-08	="Office supplies"	04-Jan-08	30-Jun-08	21945.28	=""	="Toner Express"	14-Feb-08 10:43 AM	

+="CN60776"	"Server Bundles"	="Family Court of Australia"	14-Feb-08	="Computer servers"	24-Dec-07	23-Jan-08	20916.00	=""	="IBM"	14-Feb-08 01:47 PM	

+="CN60809"	"Development and integration of online Learning Modules"	="Austrade"	14-Feb-08	="Education and Training Services"	20-Dec-07	21-Feb-08	20470.00	=""	="Elcom Technology Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60826"	"Supply of mobile phones and PDA handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	22000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60827"	"Supply of mobile phones and PDA handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	22000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60833"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	13-Aug-07	31-Aug-07	20213.28	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:38 PM	

+="CN60843"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	07-Aug-07	30-Jun-08	20900.00	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 03:39 PM	

+="CN60850"	"Food Manufacturing WP Flexibility"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Oct-07	25000.00	=""	="NORCO CO-OPERATIVE LTD"	14-Feb-08 03:40 PM	

+="CN60852"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Nov-10	21125.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:40 PM	

+="CN60855"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	09-Aug-07	30-Sep-07	20000.00	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:40 PM	

+="CN60866"	"Professional Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	30000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60867"	"Property - AGS Lease premises"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	16-Aug-07	30-Jun-08	20100.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60871"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	20000.00	=""	="WRIDGWAYS THE REMOVALISTS"	14-Feb-08 03:42 PM	

+="CN60881"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	22-Nov-07	30-Jun-08	22000.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60884"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	20000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60905"	"Contract services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	31-Aug-07	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	14-Feb-08 03:47 PM	

+="CN60913"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	30000.00	=""	="LIVING SIMPLY"	14-Feb-08 03:48 PM	

+="CN60927"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Nov-10	23573.28	=""	="SELECT APPOINTMENTS"	14-Feb-08 03:50 PM	

+="CN60928"	"Rental for Property"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Aug-07	07-Aug-08	29120.00	=""	="RAINE & HORNE DARWIN"	14-Feb-08 03:50 PM	

+="CN60935"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	20000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 03:51 PM	

+="CN60944"	"DEWR Garema Court HQ AV - audio equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	01-Aug-07	06-Aug-07	26400.00	=""	="SOUND ADVICE"	14-Feb-08 03:52 PM	

+="CN60945"	"Records Storage Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	01-Aug-07	30-Dec-07	22999.44	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	14-Feb-08 03:52 PM	

+="CN60956"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	20605.55	=""	="ISIS Projects Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60960"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	25161.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60964"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Education and Training Services"	13-Dec-07	13-Dec-07	24960.00	=""	="Nu Solutions Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60966"	"Stationary"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	19-Dec-07	20660.65	=""	="Office National - Head Office"	14-Feb-08 03:53 PM	

+="CN60968"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Engineering and Research and Technology Based Services"	04-Dec-07	04-Dec-07	29053.00	=""	="Open Mind Research Group Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60973"	"Scribe services for broadband 2 positions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Oct-07	31-Oct-07	25000.00	=""	="RMC- RECRUITMENT MANAGEMENT"	14-Feb-08 03:54 PM	

+="CN60974"	"Software Liscence Agreement"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	21-Dec-07	21-Dec-07	24975.00	=""	="QAS Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60981"	"Executive fellows Programme 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	12-Oct-07	30-Nov-07	24530.00	=""	="AUST & NEW Z/LAND SCHOOL OF GOV"	14-Feb-08 03:55 PM	

+="CN60989"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	21035.30	="TBA"	="INSIGHT ENTERPRISES AUST P/L"	14-Feb-08 03:56 PM	

+="CN60992"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Dec-07	30-Jun-08	20725.36	="TBA"	="TELSTRA (VIC)"	14-Feb-08 03:56 PM	

+="CN60994"	""PropNSWSydney255ElizabethSt(12,13&15)""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	31-Aug-07	31-Dec-15	25000.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:56 PM	

+="CN60995"	"Hire temporary staff through Hays Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Aug-07	01-Jan-08	21000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:56 PM	

+="CN61002"	"Printing for workplace relations campaign"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	17-Sep-07	02-Nov-07	28325.00	=""	="AVANT CARD"	14-Feb-08 03:57 PM	

+="CN61006"	"Reed Construction Data annual subscription"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	28-Sep-07	30-Jun-08	24640.00	=""	="REED EXHIBITIONS AUSTRALIA"	14-Feb-08 03:58 PM	

+="CN61011"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	14-Jan-08	30-Jun-08	27927.90	=""	="QUANTUM TECHNOLOGY"	14-Feb-08 03:59 PM	

+="CN61022"	"Subscription Renewal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Feb-08	30-Jun-08	20370.37	="TBA"	="OPEN SYSTEMS PTY LTD"	14-Feb-08 04:00 PM	

+="CN61058"	"Contract for staff coaching"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	22-Aug-07	31-Dec-07	27000.00	=""	="VT COACH PTY LTD"	14-Feb-08 04:05 PM	

+="CN61071"	"Conference facilities and room hire for"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	02-Sep-07	28341.00	=""	="VOYAGES HOTELS AND RESORTS"	14-Feb-08 04:06 PM	

+="CN61073"	"enviro bags"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	20-Aug-07	26026.00	=""	="CLAYTONS AUSTRALIA"	14-Feb-08 04:07 PM	

+="CN61084"	"Accommodation rental for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	23-Aug-09	27600.00	=""	="COLLIERS INTERNATIONAL (NT) PTY LTD"	14-Feb-08 04:08 PM	

+="CN61086"	""DEWR Fitout at 80 Mitchell St, Darwin (L2)""	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	29-Aug-07	30-Jun-08	23005.29	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:08 PM	

+="CN61090"	"TRA Trades Expo - September 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	30-Aug-07	30-Oct-07	20000.00	=""	="TOUR HOSTS"	14-Feb-08 04:09 PM	

+="CN61094"	"Air charters for National Emergency Response"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="CHARTAIR"	14-Feb-08 04:09 PM	

+="CN61095"	"Air Charter for the NT National  Emergency  Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="AUSTRALASIAN JET (NT) AIRCRAFT CHAR"	14-Feb-08 04:09 PM	

+="CN61096"	"Scribe Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	30000.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	14-Feb-08 04:10 PM	

+="CN61101"	"Staff accommodation  for National Emergency Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	07-Sep-09	23520.00	=""	="DARWIN RENTAL SPECIALISTS"	14-Feb-08 04:10 PM	

+="CN61105"	"Managment Fee - August 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	31-Aug-07	26460.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:11 PM	

+="CN61108"	""Lease:  Office rent, Australian Embassy,""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	05-Jul-07	30-Jun-09	21530.72	=""	="UNITED GROUP SERVICES*BLOCKED*"	14-Feb-08 04:11 PM	

+="CN61110"	"Cost recovery for Fringe Benefits Tax"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	05-Jul-07	23947.55	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	14-Feb-08 04:11 PM	

+="CN61111"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:11 PM	

+="CN61120"	"Provision for driver trainig 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="SMART-NT"	14-Feb-08 04:13 PM	

+="CN61121"	"Translating and Interpreting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Jun-08	25000.00	=""	="DIMIA - TIS NATIONAL CENTRE"	14-Feb-08 04:13 PM	

+="CN61140"	"CONTRACTOR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	31-Oct-07	21313.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 04:15 PM	

+="CN61141"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	30-Nov-10	30000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:15 PM	

+="CN61157"	"Office Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	06-Jul-07	31-Jul-07	28472.18	=""	="DEPT OF HUMAN SERVICES"	14-Feb-08 04:17 PM	

+="CN61158"	"Provision for staff training NT 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:17 PM	

+="CN61164"	"IES Job Seeker Mailout Postage"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	06-Jul-07	30-Aug-07	27114.68	=""	="AUSTRALIA POST (ACT 9397355)"	14-Feb-08 04:18 PM	

+="CN61175"	"Ergonomic chairs for workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:20 PM	

+="CN61181"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-09	20000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:20 PM	

+="CN61183"	"SME OHS Assistance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	31-Jul-07	26345.00	=""	="RMIT UNIVERSITY"	14-Feb-08 04:21 PM	

+="CN61185"	"OFSC promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	14-Feb-08 04:21 PM	

+="CN61189"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Nov-07	22000.00	=""	="J S MCMILLAN PTY LTD"	14-Feb-08 04:21 PM	

+="CN61194"	"OASCC security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61196"	"course fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	02-Jul-07	30-Jun-08	25154.50	=""	="READIFY PTY LTD"	14-Feb-08 04:22 PM	

+="CN61200"	"VIC TRA Australia Post Bulk PO"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	02-Jul-07	30-Jun-08	25000.00	=""	="AUSTRALIA POST (VIC)  9992771 TRA"	14-Feb-08 04:23 PM	

+="CN61202"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	03-Jul-07	30-Jun-08	23628.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:23 PM	

+="CN61205"	"SWAW advertising for 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Jun-08	27000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:23 PM	

+="CN61209"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	04-Jul-07	30-Sep-08	22000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:24 PM	

+="CN61218"	"Devel'ment of Model Client Process Guide"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	30-Sep-07	28198.50	=""	="RMIT UNIVERSITY"	14-Feb-08 04:25 PM	

+="CN61220"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	24000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:25 PM	

+="CN61222"	"OFSC training courses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	20000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 04:26 PM	

+="CN61230"	"OFSC security assessments for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:27 PM	

+="CN61232"	"Courier Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	04-Jul-07	30-Jun-08	20000.00	=""	="DPS COURIERS"	14-Feb-08 04:27 PM	

+="CN61236"	"OFSC training and seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61237"	"WRS Recycling Bin Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	20000.00	=""	="RECALL SECURE DESTRUCTION SERVICES"	14-Feb-08 04:27 PM	

+="CN61238"	"Ergonomic Chairs after Workplace Assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	23500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:28 PM	

+="CN61245"	"Printing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	23-Jul-07	01-Jul-08	25000.00	=""	="MCDONALD PRINTING GROUP"	14-Feb-08 04:28 PM	

+="CN61248"	"Workstation Assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Jun-08	26365.75	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:29 PM	

+="CN61256"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	22821.30	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61262"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Dec-07	30-Jun-08	27200.00	=""	="TARAKAN CONSULTING PTY LTD"	14-Feb-08 04:31 PM	

+="CN61272"	"Management Fee - JULY07"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	25-Jul-07	31-Jul-07	26460.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:32 PM	

+="CN61285"	"Comcar"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	30000.00	=""	="COMCAR"	14-Feb-08 04:33 PM	

+="CN61291"	"SWAW storage costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	20000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:34 PM	

+="CN61293"	"Provision for RAE Interpreter Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	30000.00	=""	="INSTITUTE FOR ABORIGINAL DEVELOPMEN"	14-Feb-08 04:34 PM	

+="CN61302"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Nov-10	25000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:35 PM	

+="CN61303"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Nov-10	20000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:36 PM	

+="CN61307"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Jul-07	30-Jun-08	25597.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:36 PM	

+="CN61315"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	16-Jul-07	19-Dec-11	30000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:37 PM	

+="CN61316"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:37 PM	

+="CN61318"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Jul-07	30-Jun-08	20000.00	=""	="CANPRINT COMMUNICATIONS PTY LTD"	14-Feb-08 04:38 PM	

+="CN61329"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	12-Jul-07	30-Nov-10	27340.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:39 PM	

+="CN61335"	"Seminars and Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	12-Jul-07	12-Jul-07	27000.00	=""	="GARTNER AUSTRALASIA PTY LTD"	14-Feb-08 04:39 PM	

+="CN61340-A1"	"Advice on Establishment and Management of the Communications Audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61341"	"SCOPE Software Maintenance - Corporate Licence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	12-Jul-07	30-Jun-08	26788.30	=""	="TOTAL METRICS"	14-Feb-08 04:40 PM	

+="CN61350"	"Applied Financial Diagnostic Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	31-Oct-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61355"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	17-Jan-09	25000.00	=""	="DELOITTE TOUCHE TOHMATSU- SYDNEY"	14-Feb-08 04:41 PM	

+="CN61363"	"IT Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	17-Jul-07	30-Jun-08	20172.74	=""	="TOWER SOFTWARE"	14-Feb-08 04:41 PM	

+="CN61368"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	18-Jul-07	30-Jun-08	25000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:41 PM	

+="CN61373-A1"	"One NAS ITB Data Storage Device for IT Network Storage"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Computer accessories"	08-Feb-08	31-Mar-08	24930.00	=""	="Infront Systems Pty Limited"	14-Feb-08 04:42 PM	

+="CN61392"	"Recruitment and training services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	16-Jul-07	30-Dec-07	28000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:44 PM	

+="CN61401-A1"	" EDRMS Project 2007-08 Termsite Support "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Software maintenance and support"	30-Apr-07	12-May-07	21417.00	=""	="Trinogy Systems Pty Ltd"	14-Feb-08 04:44 PM	

+="CN61403"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	20750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val300000to999999999.xls
@@ -1,1 +1,540 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59370"	"M113 UPGRADE HIAB CRANE PARTS"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	08-Feb-08	02-May-08	358977.75	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 08:48 AM	

+="CN59377-A3"	"Provision of Project Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	11-Jan-09	633600.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 09:17 AM	

+="CN59380"	"TRIM 031572. CA ACF2 MVS/ACF2, Unicenter: SOLVE Access Session Mgt, NetMaster, CA-MIM Resource Sharing, CA-Scheduler. Brightstor CA-1 Tape Mgt."	="Department of Veterans' Affairs"	11-Feb-08	="Computer services"	30-Nov-07	29-Nov-08	595854.00	=""	="Computer Associates Pty Ltd"	11-Feb-08 09:26 AM	

+="CN59381-A3"	" Provision of Information Technology Analysis Services.     "	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology systems or database administrators"	03-Jul-06	30-Jun-09	610800.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 09:26 AM	

+="CN59387"	"Deed of Agreement for financial assistance for Veteran access to Home & Community Care (HACC) program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	352444.00	=""	="State of NSW Department of Ageing, Disability & Home Care"	11-Feb-08 09:27 AM	

+="CN59396"	"Lease - VVCS Brisbane, 15 Astor Tce, Spring Hill  Qld"	="Department of Veterans' Affairs"	11-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Nov-12	1032981.00	=""	="Integra Asset Management Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59408-A4"	"Information Technology Data Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Database analysis"	10-Jul-06	09-Dec-08	646800.00	=""	="Greythorn Pty Ltd"	11-Feb-08 09:37 AM	

+="CN59409-A3"	" Software Building Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Software"	01-Jul-06	30-Jun-09	805200.00	=""	="Greythorn Pty Ltd"	11-Feb-08 09:40 AM	

+="CN59411-A6"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	11-Dec-06	30-Jun-09	395245.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 09:43 AM	

+="CN59413-A3"	"Information Technology Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	10-Jul-06	31-Dec-08	396000.00	=""	="Greythorn Pty Ltd"	11-Feb-08 09:45 AM	

+="CN59418-A4"	" Information Technology Business Analysis Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	03-Apr-09	596200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:04 AM	

+="CN59421-A2"	" Application Building Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	605589.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:08 AM	

+="CN59423-A5"	"Technical Writing Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Technical writing"	01-Jul-06	17-Jun-09	549560.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:10 AM	

+="CN59425-A2"	"Information Technology Specialist Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	19-Dec-06	30-Jun-08	416240.00	=""	="Greythorn Pty Ltd"	11-Feb-08 10:12 AM	

+="CN59427-A4"	"Information Technology Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	24-Jul-06	11-Jan-09	495000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:13 AM	

+="CN59428-A6"	"Property Lease - Adelaide SA"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Feb-06	30-Jun-11	1295913.58	=""	="Adelaide Airport Limited"	11-Feb-08 10:16 AM	

+="CN59429-A3"	"Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	556600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:17 AM	

+="CN59431-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	08-Jan-07	30-Jun-09	483410.00	=""	="Greythorn Pty Ltd"	11-Feb-08 10:17 AM	

+="CN59436-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	15-Jan-07	30-Jun-09	926767.00	=""	="Greythorn Pty Ltd"	11-Feb-08 10:22 AM	

+="CN59438-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	15-Feb-07	30-Jun-09	501820.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:28 AM	

+="CN59446-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	05-Feb-07	30-Jun-08	348601.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:45 AM	

+="CN59448-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	20-Nov-06	22-Dec-08	543950.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:54 AM	

+="CN59450-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	27-Feb-07	30-Jun-09	705454.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:58 AM	

+="CN59435-A3"	"Information Technology Architectural Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Systems architecture"	01-Jul-06	30-Jun-09	825000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:03 AM	

+="CN59453-A6"	"Property Lease Melbourne VIC"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Apr-06	30-Jun-11	673577.42	=""	="Australia Pacific Airports(Melbourne) Pty Ltd"	11-Feb-08 11:07 AM	

+="CN59454-A3"	"Provision of Program Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	653400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:11 AM	

+="CN59455-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Dec-06	30-Jun-09	504240.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:12 AM	

+="CN59456-A3"	" Provision of Business Analysis Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Database analysis"	01-Jul-06	30-Jun-09	717200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:14 AM	

+="CN59457-A2"	"Property Lease Melbourne Vic"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Oct-05	30-Sep-09	421713.00	=""	="Astralian Pacific Airports(Melbourne) Pty Ltd"	11-Feb-08 11:15 AM	

+="CN59458-A2"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	20-Nov-06	30-Jun-08	433500.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:16 AM	

+="CN59461-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Database analysis"	01-Jul-06	30-Jun-09	573100.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:19 AM	

+="CN59466-A3"	"Provision of Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	649000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:22 AM	

+="CN59468-A2"	"Property Lease Perth WA"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Mar-07	28-Feb-12	10379353.60	=""	="Becton Investment Management Limited"	11-Feb-08 11:25 AM	

+="CN59469-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Jan-07	30-Jun-09	592900.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:28 AM	

+="CN59470-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	15-Feb-07	30-Jun-08	313500.00	=""	="Ross Human Directions Limited"	11-Feb-08 11:32 AM	

+="CN59471-A3"	"Provision of Program Development Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	528000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:34 AM	

+="CN59474-A3"	"Provision of System Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Operating system programming services"	01-Jul-06	30-Jun-09	633600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:46 AM	

+="CN59478-A3"	"Provision of Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	567600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:49 AM	

+="CN59481-A4"	"Provision of Systems Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Operating system programming services"	01-Jul-06	30-Jun-09	617100.00	=""	="Paxus Australia Pty limited"	11-Feb-08 11:54 AM	

+="CN59484-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	24-Oct-08	630300.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:58 AM	

+="CN59485-A3"	"Information Technology Specialist Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	15-Jan-07	30-Jun-09	412357.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:01 PM	

+="CN59487-A4"	"Provision of Systems Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Database analysis"	01-Jul-06	30-Jun-09	758120.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:02 PM	

+="CN59488-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Mar-07	30-Jun-08	368885.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:05 PM	

+="CN59490-A3"	"Information Technology Technical Advisory Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	601700.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:07 PM	

+="CN59492-A4"	"Provision of Application Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	582760.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:10 PM	

+="CN59494-A3"	"Provision of Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	573100.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:15 PM	

+="CN59495-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	10-Apr-07	30-Jun-08	313170.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 12:17 PM	

+="CN59496-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	587400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:18 PM	

+="CN59497-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	16-Apr-07	30-Jun-09	440550.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 12:21 PM	

+="CN59498-A3"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	579700.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:22 PM	

+="CN59499-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	16-Apr-07	30-Jun-09	339955.00	=""	="Finite Recruitment Pty Limited"	11-Feb-08 12:26 PM	

+="CN59500-A3"	"Provision of Architectural Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	01-Jul-06	30-Jun-09	750750.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:28 PM	

+="CN59501-A2"	"Property Lease Brisbane QLD"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	10-Dec-07	09-Dec-11	1923005.00	=""	="Brisbane Airport Corporation Pty Ltd"	11-Feb-08 01:15 PM	

+="CN59502-A3"	"Provision of Information Technology Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Operating system programming services"	01-Jul-06	30-Jun-09	704000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:30 PM	

+="CN59503-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	16-Apr-07	24-Oct-08	300300.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 01:31 PM	

+="CN59506-A2"	" Provision of Technical Advisory Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-08	774840.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:34 PM	

+="CN59507-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	11-Apr-07	30-Jun-09	609925.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:36 PM	

+="CN59508-A3"	"Provision of Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	884400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:37 PM	

+="CN59509-A2"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	15-Feb-08	451000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:41 PM	

+="CN59510-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	10-Apr-07	22-Aug-08	594000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:42 PM	

+="CN59512-A2"	"Provision of Project Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Project management"	01-Jul-06	30-Jun-09	693000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:45 PM	

+="CN59515-A3"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	11-Apr-07	30-Jun-09	495000.00	=""	="Greythorn Pty Ltd"	11-Feb-08 01:51 PM	

+="CN59516-A4"	"Provision of Application Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	508200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:52 PM	

+="CN59518-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Mar-07	08-May-08	374660.00	=""	="Greythorn Pty Ltd"	11-Feb-08 01:56 PM	

+="CN59521-A3"	"Provision of Architectural Services (previously published as GAPS ID 1610403)"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	01-Jul-06	30-Jun-09	651717.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:56 PM	

+="CN59522-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	23-Apr-07	30-Apr-09	442420.00	=""	="Greythorn Pty Ltd"	11-Feb-08 01:59 PM	

+="CN59546"	"PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	22-Nov-07	11-Dec-09	324823.44	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:05 PM	

+="CN59548"	"LEASING PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	22-Nov-07	11-Dec-09	1119922.29	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:05 PM	

+="CN59555"	"LEASING PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	17-Dec-07	11-Dec-09	1132531.46	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:06 PM	

+="CN59556"	"PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	17-Dec-07	11-Dec-09	484234.18	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:06 PM	

+="CN59564"	"PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	22-Jan-08	11-Dec-09	432964.11	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59568"	"LEASING PROPERTY & SECURITY SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	22-Jan-08	11-Dec-09	1134220.18	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59595-A1"	"Property Lease Bridabella Park ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Apr-06	31-Mar-10	321107.00	=""	="Canberra International Airport Pty Ltd"	11-Feb-08 02:24 PM	

+="CN59597-A1"	"Property Lease Fairbairn ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Dec-04	30-Nov-09	959488.00	=""	="Canberra International Airport Pty Ltd"	11-Feb-08 02:30 PM	

+="CN59602"	"Property Lease Fairbairn ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Jul-06	30-Jun-09	481668.93	=""	="Canberra International Airport Pty Ltd"	11-Feb-08 02:44 PM	

+="CN59603-A3"	" Java Programming Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Programming for Java"	01-Jul-06	30-Jun-09	563200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 02:44 PM	

+="CN59608-A3"	"Database Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="ERP or database applications programming services"	01-Jul-06	30-Jun-09	552200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 02:47 PM	

+="CN59607"	" 07/2066 - Applications Maintenance and Support 07/2083 Project Management Resources "	="Australian Customs and Border Protection Service"	11-Feb-08	="Software maintenance and support"	01-Jul-07	30-Jun-08	5247110.00	="05/1071"	="IBM Australia"	11-Feb-08 02:47 PM	

+="CN59609-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	608765.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 02:49 PM	

+="CN59613-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Apr-07	30-Jun-08	346500.00	=""	="Ambit Group Pty Limited"	11-Feb-08 02:57 PM	

+="CN59617-A3"	"Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	547690.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:02 PM	

+="CN59618-A3"	"Interior & services design and project management services for office fit-outs in Sydney, Adelaide and Perth."	="Australian Securities and Investments Commission"	11-Feb-08	="Project management"	10-Dec-07	31-Dec-11	1316920.00	=""	="Turner & Townsend Pty Ltd"	11-Feb-08 03:03 PM	

+="CN59620-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	05-Mar-07	30-Jun-09	473616.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 03:07 PM	

+="CN59622-A3"	"Provision of Directorial Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	08-Aug-08	772464.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:11 PM	

+="CN59625-A3"	"Provision of Release Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	31-Aug-08	545710.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:16 PM	

+="CN59628-A2"	"Project Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Project management"	10-Jul-06	30-Jun-08	448800.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:19 PM	

+="CN59630-A3"	"Java Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Programming for Java"	01-Jul-06	30-Jun-09	583130.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:22 PM	

+="CN59631-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Feb-07	30-Jun-09	652190.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:24 PM	

+="CN59632-A4"	" Information Technology Programming Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	03-Jul-06	11-Jan-09	508200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:25 PM	

+="CN59635-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Feb-07	30-Jun-09	399494.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 03:29 PM	

+="CN59636-A2"	"Information Technology Training Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Educational or reference software"	01-Jul-06	30-Jun-08	378400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:30 PM	

+="CN59639-A3"	"Property lease Perth WA"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	17-Dec-07	30-Jun-10	2560277.00	=""	="Darrow African American Investments Pty Limited"	11-Feb-08 03:32 PM	

+="CN59640-A3"	"Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	836000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:33 PM	

+="CN59641-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	29-Jan-07	18-Dec-08	553080.00	=""	="Greythorn Pty Ltd"	11-Feb-08 03:33 PM	

+="CN59642"	"Provision of Service Architectural Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-08	473000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:36 PM	

+="CN59644-A6"	"Property Lease Darwin NT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Dec-03	30-Jun-11	878459.13	=""	="Darwin International Airport Pty Limited"	11-Feb-08 03:40 PM	

+="CN59645-A2"	"Information Technology Project Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Project management"	01-Jul-06	30-Jun-08	528000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:42 PM	

+="CN59649-A4"	" Information Technology Application Building Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	922218.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:49 PM	

+="CN59650-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	16-Apr-07	30-Jun-09	416075.00	=""	="Greythorn Pty Ltd"	11-Feb-08 03:53 PM	

+="CN59651-A4"	"Provision of Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	10-Jul-06	12-Sep-08	598579.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:53 PM	

+="CN59653"	"ASSIST IN GOVERNMENT FURNISHED SERVICES"	="Defence Materiel Organisation"	11-Feb-08	="Professional engineering services"	01-Nov-07	30-Nov-07	312000.00	=""	="NOVA AEROSPACE"	11-Feb-08 03:55 PM	

+="CN59654-A5"	"Database Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Database analysis"	01-Jul-06	30-Jun-09	785395.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:59 PM	

+="CN59657-A4"	"Property lease Canberra ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Oct-06	30-Sep-12	584251.37	=""	="The Trustee for Dimitrious Unit Trust"	11-Feb-08 04:03 PM	

+="CN59660-A3"	"Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	666600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:06 PM	

+="CN59661-A2"	"Information Technology Training and Development Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Educational or reference software"	01-Jul-06	30-Jun-08	355520.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:12 PM	

+="CN59663-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	541200.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:15 PM	

+="CN59664-A3"	"Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	543400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:18 PM	

+="CN59665-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Feb-07	30-Jun-09	339328.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:19 PM	

+="CN59666-A4"	"Information Technology Training and Development Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Educational or reference software"	01-Jul-06	30-Jun-09	550000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:20 PM	

+="CN59668-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-09	450540.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:25 PM	

+="CN59670-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Apr-07	30-Jun-09	487300.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 04:29 PM	

+="CN59667-A2"	"Provision of Team Leadership Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	01-Jul-06	30-Jun-07	528000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:29 PM	

+="CN59673-A6"	"Application Building Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-09	525800.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:33 PM	

+="CN59674-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology systems or database administrators"	05-Mar-07	30-Jun-09	360360.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:36 PM	

+="CN59675-A4"	"Provision of Information Technology Testing Services (previously published as GAPS ID 1610572)"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	01-Jul-06	03-Nov-08	633600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:37 PM	

+="CN59677-A2"	"Database Creation and Directorial Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Database design"	01-Aug-06	30-Jun-08	855356.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:43 PM	

+="CN59679-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	28-Mar-07	30-Jun-09	379775.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:48 PM	

+="CN59682-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	17-Jul-06	18-Jul-08	333520.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:54 PM	

+="CN59683-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Mar-07	30-Jun-09	472863.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:58 PM	

+="CN59684-A3"	"Software Development Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Software"	01-Jul-06	30-Jun-09	635800.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:59 PM	

+="CN59687-A2"	" Information Technology Test Analysis Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	01-Jul-06	22-Apr-08	308000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:06 PM	

+="CN59688-A7"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Apr-09	30-Jun-09	584100.00	=""	="Finite Recruitment Pty Ltd"	11-Feb-08 05:10 PM	

+="CN59689"	"Provision of Information Technology Architectural Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Temporary information technology networking specialists"	01-Jul-06	30-Jun-08	458590.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:10 PM	

+="CN59690-A3"	"Java Programming Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Programming for Java"	01-Jul-06	30-Jun-09	554400.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:13 PM	

+="CN59691-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Apr-07	30-Jun-09	707880.00	=""	="Greythorn Pty Ltd"	11-Feb-08 05:14 PM	

+="CN59692-A2"	"Information Technology Specialist Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	616000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:19 PM	

+="CN59693-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	11-Jan-09	703093.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:23 PM	

+="CN59694-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	24-Jul-06	30-Jun-09	815364.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:28 PM	

+="CN59695-A5"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	03-Mar-09	30-Jun-09	649674.00	=""	="Paxus Australia Pty Ltd"	11-Feb-08 05:32 PM	

+="CN59696-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	459800.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:37 PM	

+="CN59697-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	28-Nov-08	683155.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:41 PM	

+="CN59698-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	30-Jun-08	715000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:48 PM	

+="CN59700-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	781000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:52 PM	

+="CN59701-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	644600.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:56 PM	

+="CN59705"	" Project management of capital works Parkes ACT "	="Australian Federal Police"	11-Feb-08	="Project management"	30-Nov-07	15-Feb-08	871199.00	=""	="Manteena"	11-Feb-08 09:23 PM	

+="CN59709"	"Project Management of Capital Works Fyshwick ACT"	="Australian Federal Police"	11-Feb-08	="Project management"	08-Aug-07	11-Mar-08	1209139.00	=""	="Manteena Pty Ltd"	11-Feb-08 10:11 PM	

+="CN59721-A1"	"Short Term vehicle rentals"	="CRS Australia"	12-Feb-08	="Vehicle rental"	01-Jul-07	30-Jun-11	318000.00	=""	="Thrifty Car Rental"	12-Feb-08 09:19 AM	

+="CN59724-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	13-Jun-08	348700.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:34 AM	

+="CN59726-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	723690.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:38 AM	

+="CN59728-A1"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	24-Jul-06	30-Jun-08	388245.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:42 AM	

+="CN59730-A3"	" Information Technology Specialist Services  "	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	818095.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:45 AM	

+="CN59732"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	31-Dec-07	569800.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:49 AM	

+="CN59733-A2"	"Property Lease Melbourne VIC"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	16-Jun-07	15-Jun-12	23955323.00	=""	="ING Management Ltd"	12-Feb-08 09:52 AM	

+="CN59735-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	782100.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 09:54 AM	

+="CN59738-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Human resources services"	01-Jul-06	30-Jun-09	756800.00	=""	="Paxus Australia Pty Limited"	12-Feb-08 10:01 AM	

+="CN59740-A1"	"Property Lease Fyshwick ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	05-Jan-08	21-Feb-13	743551.00	=""	="J Blackwood & Son Ltd"	12-Feb-08 10:06 AM	

+="CN59745"	"Property Lease Vehicle parking Melbourne Vic"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	16-Jun-07	30-Sep-08	1864793.80	=""	="Kings Parking Corporation Pty Ltd"	12-Feb-08 10:29 AM	

+="CN59764-A3"	"Property Lease Hendra QLD"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Apr-05	13-Mar-13	1183672.00	=""	="Pearson Property Group Pty Limited"	12-Feb-08 12:21 PM	

+="CN59769"	"Provision for Offshore Construction Services"	="Department of Immigration and Citizenship"	12-Feb-08	="Hydraulic systems and components"	01-Dec-06	31-Mar-08	689739.00	=""	="Central Meridian Inc"	12-Feb-08 12:42 PM	

+="CN59771-A1"	"Property Lease Robina Qld"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	03-Feb-01	02-Feb-09	3135366.00	=""	="Robina Construction Pty Ltd"	12-Feb-08 12:47 PM	

+="CN59784-A3"	"Property Lease Kingston ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Aug-04	31-Aug-10	943944.00	=""	="Shera Pty Limited"	12-Feb-08 01:44 PM	

+="CN59787-A3"	"Property Lease Kingston ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Aug-04	31-Aug-10	967999.00	=""	="Shera Pty Limited"	12-Feb-08 01:51 PM	

+="CN59791-A2"	"Property Lease Melbourne VIC"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Aug-07	31-May-09	304983.00	=""	="Slater & Gordon Pty Limited"	12-Feb-08 02:01 PM	

+="CN59808-A2"	"Property Lease Fyshwick ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	588255.51	=""	="Tomis Properties Pty Limited"	12-Feb-08 02:50 PM	

+="CN59818-A4"	"Property Lease Canberra ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	08-Sep-05	18-Jun-10	18396170.62	=""	="Trust Company of Australia Ltd"	12-Feb-08 03:22 PM	

+="CN59823-A3"	"Property Lease Canberra ACT"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Oct-05	30-Jun-09	4187047.00	=""	="Trust Company of Australia Ltd"	12-Feb-08 03:31 PM	

+="CN59859-A1"	"Lease additional office space - Parramatta"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Lease and rental of property or building"	01-Feb-08	31-Jan-10	715858.56	=""	="The Imperial Tarmacadam & Asphalting Company"	12-Feb-08 04:42 PM	

+="CN59864"	"Lease additional office space - Melbourne"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Lease and rental of property or building"	15-Oct-07	30-Sep-09	434657.89	=""	="Timbercorp Ltd"	12-Feb-08 04:55 PM	

+="CN59866"	"Recover Costs Rental, Outgoings, Car Parking FMC Adelaide & Brisbane - January 2008"	="Federal Magistrates Court"	12-Feb-08	="Commercial or industrial facility rental"	01-Jan-08	31-Jan-08	539801.00	=""	="United KFPW Pty Ltd"	12-Feb-08 04:57 PM	

+="CN19713-A4"	"Cleaning services contract (GAPS ID: 1664591)"	="Australian Federal Police"	12-Feb-08	="Cleaning and janitorial services"	01-Apr-06	31-Jan-11	817749.19	="6/2005"	="MENZIES INTERNATIONAL (AUST) PTY LTD"	12-Feb-08 05:12 PM	

+="CN59877"	" Building Maintenance and ad hoc repairs for AFP properties in the ACT "	="Australian Federal Police"	12-Feb-08	="Cleaning and janitorial services"	01-Nov-02	31-Oct-09	3564541.00	=""	="Spotless P&F Pty Ltd"	12-Feb-08 05:51 PM	

+="CN59880"	" Head contract - Fitout project - Perth "	="Office of the Director of Public Prosecutions"	12-Feb-08	="Building construction and support and maintenance and repair services"	05-Nov-07	20-Dec-08	845277.80	=""	="ISIS Projects Pty Ltd"	12-Feb-08 05:57 PM	

+="CN59887-A7"	"Property lease Perth WA"	="Australian Federal Police"	13-Feb-08	="Lease and rental of property or building"	01-May-02	31-Aug-10	778237.00	=""	="Westralia Airports Corporation Pty Limited"	13-Feb-08 08:26 AM	

+="CN59888-A7"	"Property Lease Perth WA"	="Australian Federal Police"	13-Feb-08	="Lease and rental of property or building"	05-Jun-06	31-Aug-10	312540.00	=""	="Westralian Airports Corporation Pty Limited"	13-Feb-08 08:33 AM	

+="CN54490"	" Design, coordination and delivery of staff development programs. "	="Australian War Memorial"	13-Feb-08	="Specialised educational services"	23-Jan-08	22-Jan-12	394376.00	="AWM2008-0003"	="Upton Martin Consulting"	13-Feb-08 09:24 AM	

+="CN59907-A1"	"Property Lease Tulamarine VIC"	="Australian Federal Police"	13-Feb-08	="Lease and rental of property or building"	07-Jul-05	06-Jul-13	583652.00	=""	="Winola Pty Ltd"	13-Feb-08 10:31 AM	

+="CN59912-A3"	"IT Help Desk Services"	="Office of the Commonwealth Ombudsman"	13-Feb-08	="Computer services"	11-Jan-08	31-Jan-10	390000.00	=""	="Crystal Approach Pty Ltd"	13-Feb-08 10:37 AM	

+="CN59910"	"Supply of Various Metal Insignia."	="Defence Materiel Organisation"	13-Feb-08	="Badges"	04-Feb-08	24-Jun-08	598557.74	=""	="Cashs Australia"	13-Feb-08 10:38 AM	

+="CN59920"	"Fitout Works"	="Bureau of Meteorology"	13-Feb-08	="General building construction"	21-Jan-08	31-Jan-08	901114.50	=""	="Eveready Partitions P/L"	13-Feb-08 10:58 AM	

+="CN59957"	"Provision for Architectural Services"	="Department of Immigration and Citizenship"	13-Feb-08	="Building and Construction and Maintenance Services"	28-Aug-06	30-Jun-08	975472.00	=""	="GHD Pty Ltd"	13-Feb-08 11:47 AM	

+="CN59964"	"Supply of Electricity (Contract DPS06062)"	="Department of Parliamentary Services"	13-Feb-08	="Supply of three phase electricity"	13-Feb-08	30-Jun-08	400290.00	=""	="AGL Sales (QLD Electricity) Pty Ltd"	13-Feb-08 01:15 PM	

+="CN60003"	"Replace the Curved Roofs at Questacon Parkes"	="Questacon"	13-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	429550.00	=""	="SMI Fitout Pty Ltd"	13-Feb-08 02:51 PM	

+="CN60034"	"FITOUT IN JAKARTA EMBASSY"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-May-07	31-Dec-07	406173.84	=""	="MENTARI REKSA BANGUN P.T (IDR A/C)"	13-Feb-08 02:55 PM	

+="CN60036"	"DESIGN, SUPPLY, INSTALLATION AND MAINTENANCE OF AUDIO VISUAL EQUIPMENT FOR 255 LONDON CCT"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	21-May-07	30-Jun-14	495000.00	=""	="GPT DESIGNS"	13-Feb-08 02:55 PM	

+="CN60055-A1"	"STAFF COUNSELLING SERVICES"	="AusAid"	13-Feb-08	="Psychologists services"	25-Sep-07	21-Jan-11	849933.00	=""	="IMPACT PSYCHOLOGY SOLUTIONS"	13-Feb-08 02:56 PM	

+="CN60116"	"This order is raised to facilitate Publication revision for the period Jan 2008 to Jan 2012 with inclusion of Year one and Year two Options."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	20-Dec-07	31-Jan-12	4346507.00	=""	="Sikorsky Aircraft Australia Limited"	13-Feb-08 04:17 PM	

+="CN60132"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	06-May-02	4773040.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:57 PM	

+="CN60133"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	06-May-02	482065.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:57 PM	

+="CN60136-A1"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	481073.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60142"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	31-Dec-07	6824580.40	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60143"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Sep-00	564162.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60145"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Sep-00	553534.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60147"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	31-Jan-03	1127704.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60148"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	818835.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60150"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-04	968247.50	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60151"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-04	663818.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60153"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-04	928707.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60154"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-05	1626320.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60156"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	757682.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60159"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	2136649.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:01 PM	

+="CN60160"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	2094567.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:01 PM	

+="CN60161"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	31-Jul-07	1381747.95	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:01 PM	

+="CN60162"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	31-Jul-07	15265296.75	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:01 PM	

+="CN60163"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	31-May-06	480000.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:01 PM	

+="CN60165"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	31-May-06	1349696.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:01 PM	

+="CN60168"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	31-Oct-09	2455199.50	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:02 PM	

+="CN60173"	"Viet Nam Rural Development Program - TAG - Community Devt/Performance Information Adviser"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	29-Mar-00	30-Sep-08	578600.86	=""	="STEPHENS, ALEXANDRA"	13-Feb-08 05:03 PM	

+="CN60174"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-07	5616750.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:03 PM	

+="CN60175"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-03	784729.53	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:03 PM	

+="CN60179"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-04	2557072.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60180"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-04	2420599.01	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60181"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-05	392700.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60182"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-07	6779740.88	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60183"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-07	310286.75	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60184"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-07	787850.75	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:04 PM	

+="CN60185"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-00	01-Mar-06	17042224.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:05 PM	

+="CN60187"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-00	01-Mar-06	1373696.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:05 PM	

+="CN60188"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-00	31-Mar-06	1841592.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:05 PM	

+="CN60189"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-00	31-Jan-08	1005845.50	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:05 PM	

+="CN60190"	"Appropriate Hydrological Network Improvement Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Mar-01	27-Mar-06	4595565.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:05 PM	

+="CN60192"	"Appropriate Hydrological Network Improvement Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Mar-01	31-Aug-07	5201529.30	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:05 PM	

+="CN60193"	"Cuu Long Delta Rural Water Supply and Sanitation Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-01	01-Jul-06	24572442.61	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:06 PM	

+="CN60194"	"Cuu Long Delta Rural Water Supply and Sanitation Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-01	05-Oct-07	2548884.39	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:06 PM	

+="CN60196"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Sep-03	31-Dec-05	2013750.00	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:06 PM	

+="CN60198"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Sep-03	31-Aug-04	649000.00	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:06 PM	

+="CN60200"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Sep-03	31-Dec-05	575500.00	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:06 PM	

+="CN60202"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Jul-01	21-Nov-07	4371579.30	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60203"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Aug-06	7863622.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60205"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Feb-04	4000000.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60209"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Aug-05	474562.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60210"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Aug-06	4256040.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:08 PM	

+="CN60211"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	05-Aug-07	23813484.20	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:08 PM	

+="CN60212"	"QUANG NGAI RURAL DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	10-Oct-02	09-Oct-07	2806726.94	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:08 PM	

+="CN60215"	"QUANG NGAI RURAL DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	10-Oct-02	09-Oct-07	14361805.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:08 PM	

+="CN60216"	"QUANG NGAI RURAL DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-01	30-Jun-08	12657316.10	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:08 PM	

+="CN60217"	"THREE DELTA TOWNS WATER SUPPLY AND SANITATION PROJECT"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Oct-01	01-Oct-06	45728162.69	=""	="GHD PTY LTD"	13-Feb-08 05:09 PM	

+="CN60218"	"THREE DELTA TOWNS WATER SUPPLY AND SANITATION PROJECT"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Oct-01	01-Oct-06	391601.00	=""	="GHD PTY LTD"	13-Feb-08 05:09 PM	

+="CN60220"	"THREE DELTA TOWNS WATER SUPPLY AND SANITATION PROJECT"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Oct-01	30-Jul-08	8701010.11	=""	="GHD PTY LTD"	13-Feb-08 05:09 PM	

+="CN60222"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	23-Aug-23	2848550.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:09 PM	

+="CN60223"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	15-Mar-05	524608.85	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:09 PM	

+="CN60227"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	25-Aug-05	387345.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	

+="CN60228"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	31-Dec-07	4372132.71	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	

+="CN60233"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	12625955.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:11 PM	

+="CN60234"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	5141117.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:11 PM	

+="CN60235"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	750000.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:11 PM	

+="CN60237"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	332840.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:12 PM	

+="CN60238"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	6127421.40	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:12 PM	

+="CN60240"	"NORTH VAM NAO WATER CONTROL PROJECT II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	03-Dec-01	03-Dec-05	12050000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:12 PM	

+="CN60242"	"NORTH VAM NAO WATER CONTROL PROJECT II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	03-Dec-01	30-Sep-06	1345849.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:12 PM	

+="CN60243"	"NORTH VAM NAO WATER CONTROL PROJECT II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	03-Dec-01	31-Dec-07	12053800.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:12 PM	

+="CN60244"	"Tonga Fisheries Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	15-Jan-02	16-Jan-06	4928931.27	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60245"	"Tonga Fisheries Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	15-Jan-02	16-Dec-05	601944.00	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60246"	"Tonga Fisheries Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	15-Jan-02	16-Jan-06	442881.73	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60247"	"Tonga Fisheries Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	14-Jan-02	30-Jun-07	1277722.00	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60248"	"Samoa Immigration Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	15-Jan-02	31-Jul-05	4079834.00	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:13 PM	

+="CN60249"	"Samoa Immigration Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	15-Jan-02	31-Dec-08	4471118.13	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:13 PM	

+="CN60250"	"Australia- China (Chongqing) Vocational Education and Training Project"	="AusAid"	13-Feb-08	="Education and Training Services"	16-Feb-02	16-Aug-07	19392625.80	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60251"	"Australia- China (Chongqing) Vocational Education and Training Project"	="AusAid"	13-Feb-08	="Education and Training Services"	16-Feb-02	16-Aug-07	19223853.00	=""	="HASSALL & ASSOCIATES PTY LTD"	13-Feb-08 05:13 PM	

+="CN60252"	"NTT Primary Education Partnership"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Apr-02	30-Apr-08	25090083.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:14 PM	

+="CN60253"	"NTT Primary Education Partnership"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Apr-02	30-Apr-08	2154346.66	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:14 PM	

+="CN60254"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	12011593.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:14 PM	

+="CN60255-A1"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	5000000.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:14 PM	

+="CN60256-A1"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	1122016.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:14 PM	

+="CN60257"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	5904433.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:14 PM	

+="CN60261"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	1700000.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:15 PM	

+="CN60263"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-06	2146982.60	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:15 PM	

+="CN60264"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	31-Dec-07	22669915.40	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:15 PM	

+="CN60265"	"Qinghai Forestry Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	27-May-02	26-May-07	12254796.00	=""	="ANZDEC LTD"	13-Feb-08 05:15 PM	

+="CN60266"	"Qinghai Forestry Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	23-May-02	23-May-07	500000.00	=""	="ANZDEC LTD"	13-Feb-08 05:16 PM	

+="CN60267"	"Qinghai Forestry Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	23-May-02	23-May-08	12254440.00	=""	="ANZDEC LTD"	13-Feb-08 05:16 PM	

+="CN60268"	"PNG - Lae City WaterSupply Project Phase II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	09-Jul-02	31-Dec-06	2406100.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:16 PM	

+="CN60274"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-06	27270880.80	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:17 PM	

+="CN60275"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-06	14041000.36	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:17 PM	

+="CN60276"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-08	29231042.26	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:17 PM	

+="CN60279"	"Indonesia HIV/AIDS Prevention and Care Project - Phase II"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jul-02	31-Jul-07	17298079.00	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:17 PM	

+="CN60280"	"Indonesia HIV/AIDS Prevention and Care Project - Phase II"	="AusAid"	13-Feb-08	="Healthcare Services"	02-Sep-02	02-Sep-07	12701921.00	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:17 PM	

+="CN60281"	"Indonesia HIV/AIDS Prevention and Care Project - Phase II"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jul-02	02-Sep-07	10700000.00	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60282"	"Asia Regional HIV/AIDS Project"	="AusAid"	13-Feb-08	="Healthcare Services"	24-Jun-02	24-Jun-06	9040818.70	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60283"	"Asia Regional HIV/AIDS Project"	="AusAid"	13-Feb-08	="Healthcare Services"	24-Jun-02	24-Jun-06	474621.09	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60284"	"Asia Regional HIV/AIDS Project"	="AusAid"	13-Feb-08	="Healthcare Services"	24-Jun-02	24-Jun-06	1512917.81	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60285"	"Asia Regional HIV/AIDS Project"	="AusAid"	13-Feb-08	="Healthcare Services"	17-Jul-02	31-Jul-07	3906838.20	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60286"	"Australian Development Scholarships (ADS) Pre-departure Training and Management, July 2002- December 2006"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jul-02	31-Dec-06	2065040.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:18 PM	

+="CN60287"	"Australian Development Scholarships (ADS) Pre-departure Training and Management, July 2002- December 2006"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jul-02	31-Dec-07	522556.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:18 PM	

+="CN60288"	"ASEAN - Australia Development Cooperation Program - Regional Partnerships Scheme"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Aug-02	12-Aug-07	15599986.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:18 PM	

+="CN60289"	"ASEAN - Australia Development Cooperation Program - Regional Partnerships Scheme"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Aug-02	30-Jun-08	6331298.60	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:19 PM	

+="CN60290"	"Australian National University Indonesia Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Sep-02	31-Aug-06	1436021.60	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:19 PM	

+="CN60293"	"Australia Nauru Secondary Scholarship Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Nov-02	31-Dec-05	478281.88	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:19 PM	

+="CN60294"	"Australia Nauru Secondary Scholarship Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Nov-02	31-Dec-05	553174.40	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:19 PM	

+="CN60295"	"Australia Nauru Secondary Scholarship Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Nov-02	31-Dec-07	1563360.26	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 05:19 PM	

+="CN60296"	"Fiji Luatoka Teachers' College Upgrade Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Nov-02	01-Jul-07	5000000.00	=""	="GRIFFITH UNIVERSITY"	13-Feb-08 05:20 PM	

+="CN60303"	"Papua New Guinea Justice Advisory Group (JAG)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jan-03	20-Jan-06	1300000.00	=""	="EDUCO PTY LTD"	13-Feb-08 05:21 PM	

+="CN60304"	"Papua New Guinea Justice Advisory Group (JAG)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jan-03	20-Jan-06	4375094.00	=""	="EDUCO PTY LTD"	13-Feb-08 05:21 PM	

+="CN60305"	"Papua New Guinea Justice Advisory Group (JAG)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jan-03	19-Jan-08	6515490.40	=""	="EDUCO PTY LTD"	13-Feb-08 05:21 PM	

+="CN60307"	"Australia-China (Chongqing) Vocational Education and Training Project: Technical Advisory Group Services"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Feb-03	30-Dec-07	400000.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES PTY LTD"	13-Feb-08 05:21 PM	

+="CN60308"	"Australia-China (Chongqing) Vocational Education and Training Project: Technical Advisory Group Services"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Feb-03	30-Dec-07	513930.94	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES PTY LTD"	13-Feb-08 05:21 PM	

+="CN60309"	"Persistent Organic Pollutants (POPs) in Pacific Island Countries Phase 2 Scheduled POPs & Intractable Pesticides Disposal"	="AusAid"	13-Feb-08	="Environmental Services"	01-Mar-03	03-Feb-08	4099467.00	=""	="GHD PTY LTD"	13-Feb-08 05:21 PM	

+="CN60310"	"Persistent Organic Pollutants (POPs) in Pacific Island Countries Phase 2 Scheduled POPs & Intractable Pesticides Disposal"	="AusAid"	13-Feb-08	="Environmental Services"	01-Mar-03	03-Feb-08	2755108.20	=""	="GHD PTY LTD"	13-Feb-08 05:21 PM	

+="CN60311"	"Sri Lanka Australia Natural Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Feb-03	31-Jan-09	9382541.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:22 PM	

+="CN60312"	"Sri Lanka Australia Natural Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Feb-03	31-Jan-09	2327325.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:22 PM	

+="CN60313"	"Sri Lanka Australia Natural Resource Management Project"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Feb-03	31-Jan-09	11900384.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:22 PM	

+="CN60314"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	10-Feb-06	12243408.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:22 PM	

+="CN60316"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	31-Mar-06	647221.50	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:22 PM	

+="CN60317"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	07-Jun-07	1463029.70	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:22 PM	

+="CN60318"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	31-Aug-08	9127113.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:23 PM	

+="CN60319"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	5889995.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60320"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	3498624.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60321"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	5887227.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60322-A1"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	11832266.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60324"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	2586342.70	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60325"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	480388.70	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:23 PM	

+="CN60326"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	11909998.10	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:24 PM	

+="CN60327"	"PNG Law and Justice Sector Program"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	06-Apr-03	05-Apr-08	7593532.10	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:24 PM	

+="CN60328"	"Asean-Australia Development Cooperation Program Program Stream"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	19-May-08	19011486.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:24 PM	

+="CN60329"	"Asean-Australia Development Cooperation Program Program Stream"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	31-May-08	954060.80	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:24 PM	

+="CN60330"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-May-06	1185300.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:24 PM	

+="CN60332"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-May-06	324400.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:24 PM	

+="CN60333"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-May-06	1185300.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:24 PM	

+="CN60334"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-May-06	967538.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:25 PM	

+="CN60335"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-Jul-08	2563857.05	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:25 PM	

+="CN60336"	"Fiji Education Sector Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-03	30-Apr-06	1990876.76	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:25 PM	

+="CN60337"	"Fiji Education Sector Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-03	30-Apr-06	834162.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:25 PM	

+="CN60338"	"Fiji Education Sector Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-03	30-Apr-06	6697010.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:25 PM	

+="CN60339"	"Fiji Education Sector Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-03	31-Dec-08	7383301.24	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:25 PM	

+="CN60340"	"Fiji Education Sector Program"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-03	31-Dec-08	5053170.10	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:25 PM	

+="CN60341"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	30-Jun-09	14189799.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60343"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	31-Jul-06	488458.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60345"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	30-Jun-09	76114505.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60346"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	30-Jun-09	8371302.76	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60347"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	30-Jun-09	589381.69	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60348"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	31-Jul-03	31-Jul-05	6825493.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:26 PM	

+="CN60350"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	31-Jul-03	31-Oct-06	5855921.11	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:27 PM	

+="CN60351"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	31-Jul-03	31-Oct-06	1156044.60	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:27 PM	

+="CN60352"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	31-Jul-03	31-Jul-08	5050000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:27 PM	

+="CN60353"	"Mongolia-Australia Targeted Capacity Building and Small Activity Facility (CaBSAF)"	="AusAid"	13-Feb-08	="Education and Training Services"	04-Aug-03	04-Aug-06	3645171.00	=""	="COFFEY MPW PTY LTD"	13-Feb-08 05:27 PM	

+="CN60354"	"Mongolia-Australia Targeted Capacity Building and Small Activity Facility (CaBSAF)"	="AusAid"	13-Feb-08	="Education and Training Services"	04-Aug-03	31-Aug-08	5500000.00	=""	="COFFEY MPW PTY LTD"	13-Feb-08 05:27 PM	

+="CN60356"	"Indonesia Managing Basic Education Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-03	15-Apr-07	1203162.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:27 PM	

+="CN60357"	"Indonesia Managing Basic Education Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-03	15-Apr-07	7501420.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:28 PM	

+="CN60358"	"Indonesia Managing Basic Education Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-03	15-Apr-07	1331862.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:28 PM	

+="CN60359"	"Indonesia Managing Basic Education Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-03	31-Jul-07	10498390.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:28 PM	

+="CN60360"	"Australia Bali Memorial Package of Assistance: 12 October Australia Memorial Center"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	25-Jul-03	31-Jul-05	1950000.00	=""	="PT TRIADI"	13-Feb-08 05:28 PM	

+="CN60361"	"Australia Bali Memorial Package of Assistance: 12 October Australia Memorial Center"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	25-Jul-03	30-Mar-05	500000.00	=""	="PT TRIADI"	13-Feb-08 05:28 PM	

+="CN60362"	"Australia Bali Memorial Package of Assistance: 12 October Australia Memorial Center"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	25-Jul-03	31-Jul-05	500000.00	=""	="PT TRIADI"	13-Feb-08 05:28 PM	

+="CN60363"	"Australia Bali Memorial Package of Assistance: 12 October Australia Memorial Center"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	25-Jul-03	30-Jul-07	2168416.02	=""	="PT TRIADI"	13-Feb-08 05:28 PM	

+="CN60364"	"Pacific Regional HIV/AIDS Project"	="AusAid"	13-Feb-08	="Healthcare Services"	20-Nov-03	30-Sep-08	11753400.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:28 PM	

+="CN60367"	"Rehabilitation Assistance Facilty: Iraq (RAFI)"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Oct-03	30-Jun-06	10000000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:29 PM	

+="CN60368"	"Rehabilitation Assistance Facilty: Iraq (RAFI)"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Oct-03	30-Jun-05	10000000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:29 PM	

+="CN60369"	"Rehabilitation Assistance Facilty: Iraq (RAFI)"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Oct-03	30-Sep-08	16434498.93	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:29 PM	

+="CN60373"	"Indonesia Education and Training Sector Technical Advisory Group"	="AusAid"	13-Feb-08	="Education and Training Services"	13-Oct-03	31-Aug-07	909000.00	=""	="ALLABURTON, ROBERT"	13-Feb-08 05:30 PM	

+="CN60374-A1"	"Federated States of Micronesia Border Management Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-03	01-Dec-04	390000.00	=""	="NATURAL SYSTEMS PTY LTD"	13-Feb-08 05:30 PM	

+="CN60377"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Nov-08	3227345.23	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:30 PM	

+="CN60378"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Nov-08	3900000.00	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:30 PM	

+="CN60379"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Nov-08	1658056.00	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:30 PM	

+="CN60380-A1"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Nov-08	2300000.00	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:30 PM	

+="CN60382"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Jun-06	618359.70	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:31 PM	

+="CN60383"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	30-Jun-07	1809695.56	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:31 PM	

+="CN60385"	"Laos - Australia Property Rights and Land Titling Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Nov-03	26-Nov-08	10507004.00	=""	="LAND EQUITY INTERNATIONAL PTY LTD"	13-Feb-08 05:31 PM	

+="CN60386"	"Fiji Health Sector Improvement Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Oct-03	01-Oct-09	5344575.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:31 PM	

+="CN60389"	"Vietnam-Australia Monitoring and Evaluation Strengthening Project Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	11-Jan-04	10-Jan-07	5457380.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:32 PM	

+="CN60390"	"Vietnam-Australia Monitoring and Evaluation Strengthening Project Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	11-Jan-04	31-Mar-08	463506.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:32 PM	

+="CN60391"	"Vietnam-Australia Monitoring and Evaluation Strengthening Project Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	11-Jan-04	31-Mar-09	4952959.71	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:32 PM	

+="CN60392-A2"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	31-Dec-10	31-Dec-10	60428802.79	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:32 PM	

+="CN60393"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	31-Dec-08	5204576.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:32 PM	

+="CN60394"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	31-Dec-08	1635923.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:32 PM	

+="CN60395"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	30-Dec-08	4927075.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:32 PM	

+="CN60397"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	31-Dec-08	2824490.90	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:33 PM	

+="CN60398"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	31-Dec-08	12692642.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:33 PM	

+="CN60403"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	31-Dec-08	2438829.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:33 PM	

+="CN60405"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	31-Dec-08	4071629.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60406"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	31-Dec-06	5027698.15	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60407"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	30-Jul-07	3929384.25	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60408"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	30-Jul-07	395274.27	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60409"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	30-Jul-07	366662.58	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60410"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	09-Oct-05	4899680.00	=""	="KELLOGG BROWN AND ROOT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60411"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	09-Oct-05	1000000.00	=""	="KELLOGG BROWN AND ROOT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60412"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	31-Aug-08	5200394.00	=""	="KELLOGG BROWN AND ROOT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60413"	"Cambodia HIV/AIDS Antiretroviral Therapy Project"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jan-04	30-Jun-07	650000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	13-Feb-08 05:35 PM	

+="CN60414"	"Cambodia HIV/AIDS Antiretroviral Therapy Project"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jan-04	31-Dec-08	715000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	13-Feb-08 05:35 PM	

+="CN60415"	"Indonesia - Australia Technical Assistance Management Facility for Economic Governance (TAMF Phase III)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-04	01-Mar-09	10198305.00	=""	="DEACONS GRAHAM AND JAMES T/A DEACONS"	13-Feb-08 05:35 PM	

+="CN60416"	"Indonesia - Australia Technical Assistance Management Facility for Economic Governance (TAMF Phase III)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-04	01-Mar-09	14106023.10	=""	="DEACONS GRAHAM AND JAMES T/A DEACONS"	13-Feb-08 05:35 PM	

+="CN60417"	"Indonesia - Australia Technical Assistance Management Facility for Economic Governance (TAMF Phase III)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-04	01-Mar-09	4713502.20	=""	="DEACONS GRAHAM AND JAMES T/A DEACONS"	13-Feb-08 05:35 PM	

+="CN60419"	"Provision of Scholarship Selection Services for Fiji ADS and ARDS."	="AusAid"	13-Feb-08	="Education and Training Services"	15-Mar-04	30-Sep-09	388246.70	=""	="SOUTH PACIFIC BOARD FOR EDUCATIONAL ASSESSMENT (SPBEA)"	13-Feb-08 05:35 PM	

+="CN60420"	"Cambodia Activity Management Unit and Governance Technical Assistance Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Feb-04	28-Feb-07	6000000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:35 PM	

+="CN60421"	"Cambodia Activity Management Unit and Governance Technical Assistance Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Feb-04	28-Feb-08	7150000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:36 PM	

+="CN60422"	"Principal Rural Development Adviser"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-Mar-04	03-Mar-06	399468.00	=""	="NIDEBRA PTY LTD"	13-Feb-08 05:36 PM	

+="CN60424"	"Principal Rural Development Adviser"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-Mar-04	03-Mar-08	648872.80	=""	="NIDEBRA PTY LTD"	13-Feb-08 05:36 PM	

+="CN60425"	"PNG National Roads and Bridges Maintenance Project Phase II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	13-Jul-04	12-Jul-06	7299593.00	=""	="SMEC INTERNATIONAL PTY LTD"	13-Feb-08 05:36 PM	

+="CN60426"	"PNG National Roads and Bridges Maintenance Project Phase II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	13-Jul-04	31-Dec-07	8029552.30	=""	="SMEC INTERNATIONAL PTY LTD"	13-Feb-08 05:36 PM	

+="CN60429"	"Strengthening of the Naional Vitamin A and Expansion of Community BAsed Integrated Management of Childhood Illness Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Jun-04	31-May-07	1879008.22	=""	="NEPALI TECHNICAL ASSISTANCE GROUP (NTAG)"	13-Feb-08 05:37 PM	

+="CN60432"	"LAPIS Director: Learning Assistance Program for Islamic Schools (LAPIS)"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jun-04	31-Dec-06	959458.25	=""	="KINGHAM, ROBERT (AUSAID LAPIS ACCOUNT)"	13-Feb-08 05:37 PM	

+="CN60433"	"LAPIS Director: Learning Assistance Program for Islamic Schools (LAPIS)"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jun-04	31-Dec-06	392296.63	=""	="KINGHAM, ROBERT (AUSAID LAPIS ACCOUNT)"	13-Feb-08 05:37 PM	

+="CN60434"	"LAPIS Director: Learning Assistance Program for Islamic Schools (LAPIS)"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jun-04	30-Jun-08	1940087.60	=""	="KINGHAM, ROBERT (AUSAID LAPIS ACCOUNT)"	13-Feb-08 05:37 PM	

+="CN60439"	"Advancing Economic Integration in East Asia"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	01-Aug-04	01-Aug-07	750000.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:38 PM	

+="CN60440"	"Advancing Economic Integration in East Asia"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	01-Aug-04	31-Dec-07	880000.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:38 PM	

+="CN60447"	"PRE DEPARTURE ENGLISH LANGUAGE TRAINING FOR THE ADS PROGRAM OCTOBER 2004 - DECEMBER 2006"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Oct-04	31-Dec-06	1435000.00	=""	="ENDYMION LTD T/A VIENTIANE COLLEGE"	13-Feb-08 05:39 PM	

+="CN60455"	"Asia-Pacific Economic Literature - 3 year subscription"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	15-Oct-04	30-Jun-07	405000.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:40 PM	

+="CN60457"	"Asia-Pacific Economic Literature - 3 year subscription"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	15-Oct-04	30-Nov-07	530750.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:40 PM	

+="CN60458"	"Preventing the Sexual Exploitation of Children in ASEAN Tourism Destinations thorugh Community and Professional Education"	="AusAid"	13-Feb-08	="Education and Training Services"	31-Jan-05	31-Jan-07	587170.00	=""	="CHILD WISE LTD"	13-Feb-08 05:40 PM	

+="CN60459"	"Preventing the Sexual Exploitation of Children in ASEAN Tourism Destinations thorugh Community and Professional Education"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-04	31-Jul-07	755898.00	=""	="CHILD WISE LTD"	13-Feb-08 05:40 PM	

+="CN60464-A3"	"Indonesia Learning Assistance Program for Islamic Schools - Technical and Coordination Support Contractor"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jan-05	30-Jun-11	38436314.88	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:41 PM	

+="CN60465"	"Indonesia Learning Assistance Program for Islamic Schools - Technical and Coordination Support Contractor"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jan-05	31-Dec-06	400000.00	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:41 PM	

+="CN60466"	"Indonesia Learning Assistance Program for Islamic Schools - Technical and Coordination Support Contractor"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jan-05	30-Jun-08	19827316.84	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:41 PM	

+="CN60467"	"Solomon Islands Machinery of Government Infrastructure Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-05	30-Mar-06	750319.00	=""	="SAKHIWE CONSULTANTS PTY LIMITED"	13-Feb-08 05:41 PM	

+="CN60470"	"Australian Development Gateway Project Phase III"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	01-Mar-07	1136328.90	=""	="NET RETURNS PTY LTD"	13-Feb-08 05:42 PM	

+="CN60471"	"Australian Development Gateway Project Phase III"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	01-Mar-08	761064.40	=""	="NET RETURNS PTY LTD"	13-Feb-08 05:42 PM	

+="CN60473"	"Sustainable Livelihoods for Isolated Rural Areas Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-May-05	30-Apr-08	430000.00	=""	="KASTOM GADEN ASSOCIATION"	13-Feb-08 05:42 PM	

+="CN60474"	"Philippines Australia Partnership for Economic Governance Reforms (PEGR)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Apr-05	18-Apr-10	3235187.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:42 PM	

+="CN60486"	"Nauru: Reverse Osmosis Units - Maintenance"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jul-05	30-Sep-07	374919.97	=""	="VEOLIA WATER SOLUTIONS & TECHNOLOGIES (AUSTRALIA) PTY LTD"	13-Feb-08 05:44 PM	

+="CN60488"	"Papua New Guinea Health Sector Capacity Building Service Centre"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-05	31-Jul-10	70000000.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:44 PM	

+="CN60490"	"Papua New Guinea Health Sector Capacity Building Service Centre"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-05	31-Jul-10	7000000.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:44 PM	

+="CN60492-A2"	" Strenthening Implementation of Basic Education in Selected Provinces in Visayas (STRIVE) Project "	="AusAid"	13-Feb-08	="Education and Training Services"	01-Nov-05	30-Apr-11	25975163.50	=""	="GOVERNMENT OF THE PHILIPPINES"	13-Feb-08 05:44 PM	

+="CN60495"	"Strenthening Implementation of Basic Education in Selected Provinces in Visayas (STRIVE) Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Sep-05	31-Jul-07	842682.51	=""	="GOVERNMENT OF THE PHILIPPINES"	13-Feb-08 05:44 PM	

+="CN60498"	"Renovations of PMOB"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	23-Aug-05	01-Nov-05	690000.00	=""	="SAKHIWE CONSULTANTS PTY LTD"	13-Feb-08 05:44 PM	

+="CN60502"	"Renovations of PMOB"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	23-Aug-05	31-Dec-07	799190.72	=""	="SAKHIWE CONSULTANTS PTY LTD"	13-Feb-08 05:45 PM	

+="CN60504"	"ASEAN-AADCP Regional Economic Policy Support Facility"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	21-Jan-02	21-Jan-07	4196569.19	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:45 PM	

+="CN60506"	"ASEAN-AADCP Regional Economic Policy Support Facility"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	21-Jan-02	30-Jun-08	3769716.83	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:45 PM	

+="CN60508"	"ASEAN-AADCP Regional Economic Policy Support Facility"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	21-Jan-02	30-Sep-08	11240038.81	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:45 PM	

+="CN60509"	"AIPRD - Health Assistance Rehabilitation - Aceh Program (HARAP)"	="AusAid"	13-Feb-08	="Healthcare Services"	05-Sep-05	04-Dec-06	5437247.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:45 PM	

+="CN60511"	"XINJIANG HIV/AIDS PREVENTIONAND CARE PROJECT"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Mar-02	01-Mar-07	7466586.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:45 PM	

+="CN60514"	"XINJIANG HIV/AIDS PREVENTIONAND CARE PROJECT"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Mar-02	28-Feb-09	11381757.83	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:45 PM	

+="CN60516"	"Indonesia Australia Legal Development Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Apr-04	12-Apr-09	6769681.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60517"	"Indonesia Australia Legal Development Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Apr-04	12-Apr-09	676968.10	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60518"	"Indonesia Australia Legal Development Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Apr-04	12-Apr-09	9383000.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60523"	"CON 13763 MDI C1 Media Council Contract"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-May-05	01-Nov-06	329638.66	=""	="MEDIA COUNCIL OF PNG"	13-Feb-08 05:46 PM	

+="CN60525"	"CON 13763 MDI C1 Media Council Contract"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-May-05	31-Jul-08	582553.76	=""	="MEDIA COUNCIL OF PNG"	13-Feb-08 05:47 PM	

+="CN60526"	"FWCC construction of new building"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	01-Dec-05	31-Dec-07	999956.95	=""	="J S Hill and Associates"	13-Feb-08 05:47 PM	

+="CN60527"	"JTAI Contract - Extension"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-06	30-Jun-07	1461032.87	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:47 PM	

+="CN60528"	"JTAI Contract - Extension"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-06	30-Sep-07	2996533.42	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:47 PM	

+="CN60530"	"Peace Haven Lease"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Mar-06	30-Jun-08	596232.63	=""	="NATIONAL SUPERANNUATION FUND LTD"	13-Feb-08 05:47 PM	

+="CN60531"	"Lease Contract with Nasfund"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Mar-06	28-Mar-09	679032.02	=""	="NATIONAL SUPERANNUATION FUND LTD"	13-Feb-08 05:47 PM	

+="CN60532"	"Regional Pilot Project for Returning Victims of Trafficking from Australia to Thailand"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Mar-06	31-Aug-09	431739.95	=""	="INTERNATIONAL ORGANIZATION FOR MIGRATION (IOM)"	13-Feb-08 05:47 PM	

+="CN60535"	"Institutional Support for Transparency International Asia Pacific"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Jul-06	30-Jun-09	2101667.50	=""	="TRANSPARENCY INTERNATIONAL"	13-Feb-08 05:48 PM	

+="CN60537"	"FLICT"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-May-06	31-Dec-08	2200000.00	=""	="GOVERNMENT OF UK - DEPARTMENT FOR INTERNATIONAL DEVELOPMENT"	13-Feb-08 05:48 PM	

+="CN60539"	"Refurbishment of IPAM office"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	07-Jun-06	31-Dec-06	596669.91	=""	="SAKHIWE CONSULTANTS PTY LTD"	13-Feb-08 05:48 PM	

+="CN60541"	"UNDP Housing"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	01-Mar-06	31-Dec-08	2750000.00	=""	="UNITED NATIONS DEVELOPMENT PROGRAM"	13-Feb-08 05:48 PM	

+="CN60545"	"Institutional and Governance Advisor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jun-06	29-Jun-07	439487.40	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:48 PM	

+="CN60549"	"Institutional and Governance Advisor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jun-06	29-Feb-08	633469.60	=""	="CARDNO ACIL PTY LTD"	13-Feb-08 05:49 PM	

+="CN60550"	"Fit out Construction Works"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-Jun-06	30-Nov-07	1654678.38	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 05:49 PM	

+="CN60553"	"Fit out Construction Works"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-Jun-06	30-Nov-07	1707788.01	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 05:49 PM	

+="CN60554"	"Jens Lauring-Knudsen's contract"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Oct-05	30-Sep-07	335263.99	=""	="LAURING-KNUDSEN, JENS"	13-Feb-08 05:49 PM	

+="CN60556"	"APTC Phase II Detailed Design Box Hill Hospitality and Tourism"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	03-Jul-06	31-Dec-06	768820.80	=""	="BOX HILL INSTITUTE OF TAFE"	13-Feb-08 05:50 PM	

+="CN60559"	"APTC Phase II Detailed Design Box Hill Hospitality and Tourism"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	03-Jul-06	30-Jun-11	28881195.20	=""	="BOX HILL INSTITUTE OF TAFE"	13-Feb-08 05:50 PM	

+="CN60562"	"Construction agreement-Mentari Reksa Bangun P.T - upgrade of L26 Kebon Sirih"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-May-06	10-Aug-07	453130.62	=""	="MENTARI REKSA BANGUN P.T"	13-Feb-08 05:50 PM	

+="CN60563"	"Construction agreement-Mentari Reksa Bangun P.T - upgrade of L26 Kebon Sirih"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-May-06	10-Aug-07	693595.85	=""	="MENTARI REKSA BANGUN P.T"	13-Feb-08 05:50 PM	

+="CN60579"	"AusAID and Clinton Foundation HIV/AIDS"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jul-06	30-Jul-09	5257378.50	=""	="CLINTON FOUNDATION HIV/AIDS INITIATIVE"	13-Feb-08 05:53 PM	

+="CN60580"	"China Clinton Foundation - Xinjiang HIV/AIDS Treatment"	="AusAid"	13-Feb-08	="Healthcare Services"	31-Jul-06	30-Sep-09	1840322.00	=""	="CLINTON FOUNDATION HIV/AIDS INITIATIVE"	13-Feb-08 05:53 PM	

+="CN60587"	"Asia Pacific Forum of National Human Rights Institutions, 2006-09"	="AusAid"	13-Feb-08	="Organisations and Clubs"	01-Jul-06	30-Jun-09	1980000.00	=""	="ASIA PACIFIC FORUM OF NATIONAL HUMAN RIGHTS INSTITUTIONS"	13-Feb-08 05:54 PM	

+="CN60589"	"Electoral Assistance in the Philippine National Elections"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	08-Dec-06	30-Jun-08	2197214.00	=""	="THE ASIA FOUNDATION"	13-Feb-08 05:54 PM	

+="CN60597"	"Afg'n Indep't Human Rights Comm-06/07 contr"	="AusAid"	13-Feb-08	="Organisations and Clubs"	21-Dec-06	30-Jun-08	997443.38	=""	="AFGHANISTAN INDEPENDENT HUMAN RIGHTS COMMISSION"	13-Feb-08 05:55 PM	

+="CN60607"	"Independant Review Group (IRG) Team Leader"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Apr-07	30-Jun-10	421218.74	=""	="AGGLETON, PETER"	13-Feb-08 05:56 PM	

+="CN60612"	"Cost Sharing Agreement with UNDP for RRRT"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	31-Dec-07	1128000.00	=""	="UNITED NATIONS DEVELOPMENT PROGRAM"	13-Feb-08 05:57 PM	

+="CN60640"	"Assistance to ICRC Emergency and Protection work in Sri Lanka"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	23-May-07	30-Jun-08	1000000.00	=""	="INTERNATIONAL COMMITTEE OF THE RED CROSS"	13-Feb-08 06:00 PM	

+="CN60642"	"Unicef Thematic Support to Child Protection Zimbabwe"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	22-May-07	31-Dec-10	1000000.00	=""	="UNITED NATIONS CHILDRENS' FUND"	13-Feb-08 06:00 PM	

+="CN60643"	"TA for economic policy management in Afghanistan"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-May-07	31-Aug-10	973472.86	=""	="ASIAN DEVELOPMENT BANK"	13-Feb-08 06:01 PM	

+="CN60644"	"retrofit works"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	30-May-07	30-Jun-08	403617.77	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 06:01 PM	

+="CN60645"	"Protracted Relief Program Phase 1 Zimbabwe"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Jun-07	31-Mar-08	1000000.00	=""	="GOVERNMENT OF UK - DEPARTMENT FOR INTERNATIONAL DEVELOPMENT"	13-Feb-08 06:01 PM	

+="CN60649"	"Mine Action - UNMACA"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	31-May-07	30-Jun-09	2500000.00	=""	="UN MINE ACTION SERVICE"	13-Feb-08 06:01 PM	

+="CN60633"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Temporary information technology software developers"	14-Jan-08	13-Jan-10	646800.00	=""	="Freelance Global Ltd"	13-Feb-08 06:02 PM	

+="CN60655-A1"	"Provision of Procurement Diagnostics Advice"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jul-07	30-Jun-12	1582152.63	=""	="PLANS & SOLUTIONS LIMITED"	13-Feb-08 06:02 PM	

+="CN60660"	"ECBP Contractor Performance Assessment Adviser - Kai Detto"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-04	01-Dec-09	757170.00	=""	="LENGANO PTY LTD"	13-Feb-08 06:03 PM	

+="CN60664"	"Interim CTA position"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	10-Oct-06	10-Mar-07	550000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 06:03 PM	

+="CN60667"	"Nauru - Health Sector Assistance Facility"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Oct-06	30-Jun-07	1881533.50	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 06:04 PM	

+="CN60672"	"Provision of Coordination and liaison with NGOs"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-04	30-Jun-09	1650000.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	13-Feb-08 06:04 PM	

+="CN60677"	"RGSF SO 20 - Economic Reform Adviser"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Sep-05	31-Jul-07	429686.00	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 06:05 PM	

+="CN60678"	"Provision of Security Services to L&J Priority 1 advisers (SO61)"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	02-Jun-06	31-Mar-08	415584.88	=""	="GRM INTERNATIONAL PTY LTD"	13-Feb-08 06:05 PM	

+="CN60679"	"AIPRD Procurement & Logistic Support"	="AusAid"	13-Feb-08	="Transportation and Storage and Mail Services"	01-Jul-06	30-Jun-07	8845357.62	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:05 PM	

+="CN60680"	"AIPRD Procurement & Logistic Support"	="AusAid"	13-Feb-08	="Transportation and Storage and Mail Services"	01-Jul-06	30-Jun-07	470800.00	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:06 PM	

+="CN60681"	"AIPRD Procurement & Logistic Support"	="AusAid"	13-Feb-08	="Transportation and Storage and Mail Services"	01-Jul-06	30-Jun-07	386194.38	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:06 PM	

+="CN60682"	"HKSI Logistics Support to GPF"	="AusAid"	13-Feb-08	="Transportation and Storage and Mail Services"	01-Jul-06	30-Jun-07	1865168.14	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:06 PM	

+="CN60686"	"Better Business Governance Service Order: Australian Business Volunteers Limited"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-05	30-Jun-08	389805.00	=""	="AUSTRALIAN BUSINESS VOLUNTEERS LIMITED"	13-Feb-08 06:06 PM	

+="CN60692"	"Operational Support in Nauru"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-06	30-Jun-07	1113658.70	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:07 PM	

+="CN60199-A5"	"Provision of support services for Cisco products"	="Australian Federal Police"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-97	30-Jun-09	4930969.00	=""	="Cisco Systems Australia Pty Ltd"	13-Feb-08 06:45 PM	

+="CN60718"	"Electronic recruitment software licence, configuration and support"	="Australian Federal Police"	13-Feb-08	="Software"	03-Aug-05	03-Aug-08	800000.00	=""	="NGA.Net Pty Ltd"	13-Feb-08 07:00 PM	

+="CN60717"	"IT Consultant"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Business intelligence consulting services"	14-Jan-08	13-Jan-10	440000.00	=""	="Freelance Global Ltd"	13-Feb-08 07:05 PM	

+="CN60719"	" Provision of transactional banking services "	="Australian Federal Police"	13-Feb-08	="Banking and investment"	20-Dec-07	19-Dec-11	400000.00	=""	="Reserve Bank of Australia Pty Ltd"	13-Feb-08 07:06 PM	

+="CN60725-A4"	" Software licence, implementation, maintenance and support agreement - Finance and Budgets system "	="Australian Federal Police"	13-Feb-08	="Software"	03-Nov-06	02-Nov-11	1227093.20	="09-2006"	="SAS Institute Australia Pty Limited"	13-Feb-08 09:09 PM	

+="CN60731"	"Various codified Rohde & Schwarz Radio spare parts"	="Defence Materiel Organisation"	14-Feb-08	="Circuit assemblies and radio frequency RF components"	23-Aug-07	12-Feb-08	368518.21	=""	="BAE SYSTEMS"	14-Feb-08 09:35 AM	

+="CN60748"	"Contracting Services for senior management of MNPP"	="CrimTrac"	14-Feb-08	="Temporary personnel services"	21-Jan-08	21-Jan-08	354640.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60753"	"Office Fitout"	="CrimTrac"	14-Feb-08	="Site offices"	09-Jan-08	30-Jun-08	300784.90	=""	="Comsuper"	14-Feb-08 10:43 AM	

+="CN59901"	"Executive Leadership Training"	="Workplace Ombudsman"	14-Feb-08	="Management and Business Professionals and Administrative Services"	21-Sep-07	31-Mar-09	596940.00	=""	="HayGroup"	14-Feb-08 11:10 AM	

+="CN60765"	"Provision for Software & Software Support"	="Department of Immigration and Citizenship"	14-Feb-08	="Software"	01-Jun-07	31-Dec-09	1765371.00	=""	="Data#3 Limited."	14-Feb-08 11:35 AM	

+="CN60766"	"Supply 244 Portable radio tranceivers"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	13-Aug-07	13-Oct-07	855068.50	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:43 AM	

+="CN60770"	"Supply of communication services and equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	13-Feb-08	30-Jun-08	803308.00	=""	="Motorola Australia Pty Limited"	14-Feb-08 12:39 PM	

+="CN59088-A2"	"Provision of telecommunication services.  Mobile phone, Broadband and Data Services"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Mobile communications services"	13-Nov-07	12-Feb-11	2085000.00	=""	="Telstra Corporation Limited"	14-Feb-08 01:55 PM	

+="CN59096-A1"	"Provision of telecommunication services. Fixed line voice carriage & teleconferencing"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Local and long distance telephone communications"	31-Jul-07	30-Jul-11	360000.00	=""	="AAPT Limited"	14-Feb-08 01:56 PM	

+="CN60807"	"Mechanical services works"	="Austrade"	14-Feb-08	="Air conditioning installation or maintenance or repair services"	27-Nov-07	21-Dec-07	458700.00	=""	="Air Con Systems Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60854"	"DATA STOREAGE SERVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Aug-07	30-Jun-08	1620000.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 03:40 PM	

+="CN60893"	"Warehousing and distribution costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	30-Jul-07	30-Nov-07	330000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:45 PM	

+="CN60895"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	30-Jun-08	754380.00	=""	="ANSWERZ PTY LTD"	14-Feb-08 03:46 PM	

+="CN60897"	"Funding to fulfil obligations as member"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	30-Jun-10	352000.00	=""	="AUST CHAMBER OF COMMERCE"	14-Feb-08 03:46 PM	

+="CN60899"	"Postage and Freight"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	314000.00	=""	="AUST POST (ACT 131316)"	14-Feb-08 03:46 PM	

+="CN60902"	"PSS/CSS Addtional Lump Sum Employer Contributions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Jul-07	31-Jul-07	623797.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:46 PM	

+="CN60904"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	31-Jul-07	30-Jun-08	440000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:47 PM	

+="CN60907"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	31-Jul-07	30-Sep-07	3694009.86	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:47 PM	

+="CN60914"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60917"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	27-Jul-07	30-Jun-08	350000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60922"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	3545451.80	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60923"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	3556697.98	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60924"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	625554.89	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60925"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	355300.00	=""	="NEXTGEN NETWORKS PTY LTD"	14-Feb-08 03:49 PM	

+="CN60936"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	657000.00	=""	="CLAYTON UTZ"	14-Feb-08 03:51 PM	

+="CN60937"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	467500.00	=""	="SPARKE HELMORE"	14-Feb-08 03:51 PM	

+="CN60939"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	1080646.10	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:51 PM	

+="CN60940"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	716000.00	=""	="DEACONS - CANBERRA OFFICE"	14-Feb-08 03:51 PM	

+="CN60977"	"COMPUTER HARDWARE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	10-Oct-07	30-Jun-08	2055385.22	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 03:54 PM	

+="CN60991"	"DATA STOREAGE UPGRADE SERVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	425920.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 03:56 PM	

+="CN60996"	""Motor vehicles, trailers  semitrailer, parts etc""	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	31-Aug-07	30-Jun-08	1316267.80	=""	="LEASEPLAN AUSTRALIA LTD"	14-Feb-08 03:56 PM	

+="CN61010"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	14-Jan-08	30-Jun-08	330000.00	="TBA"	="LANGE CONSULTING"	14-Feb-08 03:58 PM	

+="CN61023"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Feb-08	30-Jun-08	657000.00	="TBA"	="IBM AUSTRALIA LTD"	14-Feb-08 04:00 PM	

+="CN61025"	"IT STORAGE EQUIPMENT INCLUDING MAINTENANCE 4 YRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Dec-07	30-Jun-08	1837866.78	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61028"	"NETWORK SERVER HARDWARE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Dec-07	30-Jun-08	312461.60	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:01 PM	

+="CN61029"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	20-Dec-07	30-Jun-08	799524.00	="TBA"	="BORLAND AUSTRALIA PTY LTD"	14-Feb-08 04:01 PM	

+="CN61034"	"SERVER REPLACEMENT PROGRAM - STAGE 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Jan-08	30-Jun-08	1276490.34	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61035"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jan-08	30-Jun-08	545721.06	="ITC"	="ELMTREE CONSULTING SERVICES"	14-Feb-08 04:02 PM	

+="CN61039"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	397020.66	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61047"	""DEWR - LVL1, Bendigo-alterations to current accom"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	21-Aug-07	31-Dec-07	338095.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:03 PM	

+="CN61048"	"Renting"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	21-Aug-07	31-Dec-07	547552.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:03 PM	

+="CN61064"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Aug-07	30-Jun-08	2805000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61075"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	27-Aug-07	31-Aug-07	3593897.89	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:07 PM	

+="CN61100"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	1251338.39	=""	="TELSTRA (VIC)"	14-Feb-08 04:10 PM	

+="CN61124"	"Fitout"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	31-Jul-07	307790.67	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:13 PM	

+="CN61127"	"research services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	04-Jul-08	950900.00	=""	="THE OPEN MIND RESEARCH GROUP"	14-Feb-08 04:13 PM	

+="CN61135"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	30-Nov-10	600000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	14-Feb-08 04:14 PM	

+="CN61137"	"Postage and Freight"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	30-Jun-10	440000.00	=""	="AUST POST (ACT 131316)"	14-Feb-08 04:15 PM	

+="CN61144"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jul-07	30-Jun-08	5500000.00	=""	="IBM AUSTRALIA LTD"	14-Feb-08 04:16 PM	

+="CN61152"	"Lease of Handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	11-Jul-07	01-Jan-10	1609860.38	=""	="CISCO SYSTEMS CAPITAL (AUSTRALIA) P"	14-Feb-08 04:17 PM	

+="CN61159"	"Workplace Relations Campaign - Creative Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Jun-08	687736.64	=""	="EARDRUM PTY LIMITED"	14-Feb-08 04:17 PM	

+="CN61253"	"Kiosk Maintenance 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	23-Jul-07	30-Jun-08	1909600.00	=""	="IBM AUSTRALIA LTD"	14-Feb-08 04:29 PM	

+="CN61266"	"Apprentices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	20-Jul-07	30-Jun-08	637717.76	=""	="AUSTRALIAN TRAINING COMPANY LTD"	14-Feb-08 04:31 PM	

+="CN61269"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	30-Jun-09	1000000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:31 PM	

+="CN61279"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	1557232.30	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61280"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	655997.75	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61281"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	385000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61282"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	26-Jul-07	31-Jul-07	3383376.63	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:33 PM	

+="CN61287"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	24-Jul-07	30-Jun-08	1746096.00	=""	="MICROSOFT P/L"	14-Feb-08 04:34 PM	

+="CN61290"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	15-Jan-08	30-Jun-08	468105.00	="ITC"	="COMPAS PTY LTD"	14-Feb-08 04:34 PM	

+="CN61295"	"JobAccess"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Jun-08	1099000.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	14-Feb-08 04:35 PM	

+="CN61300"	"Media Relations"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	25-Jul-07	31-Jul-07	990000.00	=""	="WHYBIN TBWA & PARTNERS PTY LTD"	14-Feb-08 04:35 PM	

+="CN61313"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	599447.20	=""	="RIGHTNOW TECHNOLOGIES"	14-Feb-08 04:37 PM	

+="CN61321"	"Comcover Premium"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	11-Jul-07	30-Jun-08	366817.38	=""	="COMCOVER INSURANCE SERVICES"	14-Feb-08 04:38 PM	

+="CN61331"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	503160.94	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:39 PM	

+="CN61334-A5"	" Financial Statement Audits of the Future Fund Management Agency.  Added additional related entities to be audited. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-08	30-Oct-12	1022539.40	=""	="Deloitte Touche Tohmatsu"	14-Feb-08 04:39 PM	

+="CN61337"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	6252284.50	=""	="COMPUTER ASSOCIATES PTY LTD"	14-Feb-08 04:39 PM	

+="CN61338-A1"	" Christmas Island IRPC Performance Audit and the Commonwealth Government Public Works Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-08	31-Dec-08	787446.00	=""	="ARUP Pty Limited"	14-Feb-08 04:40 PM	

+="CN61354-A2"	" Design Phase of the Refurbishment Project for 19 National Circuit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	05-Dec-07	04-Dec-08	373510.00	=""	="HBO EMTB Interiors (ACT) Pty Limited"	14-Feb-08 04:41 PM	

+="CN61356-A1"	" Data Centre Refit "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Carpentry"	05-Dec-07	30-Jun-08	434319.00	=""	="SMI Fitout Pty Limited"	14-Feb-08 04:41 PM	

+="CN61365"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 04:41 PM	

+="CN61377-A9"	" Financial Statement Audit of the ComSuper Group 2005-08.  Plus two Option Years to 09-10. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	11-Jan-08	31-Oct-12	3267984.46	=""	="Deloitte Touche Tohmatsu"	14-Feb-08 04:42 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val30000to40000.xls
@@ -1,1 +1,134 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59367"	"Defining the Requirements of Auditing Water Markets in the Murray-Darlong Basin"	="National Water Commission"	11-Feb-08	="Management advisory services"	03-Jan-08	27-Feb-08	33000.00	=""	="Frontier Economics Pty Ltd"	11-Feb-08 08:28 AM	

+="CN59374"	"M113 CARRIER UPGRADE HIAB CRANE PARTS"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	08-Feb-08	02-May-08	38262.88	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 08:58 AM	

+="CN59375"	"M113 CARRIER UPGRADE HIAB CRANE PARTS"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	07-Feb-08	01-May-08	35591.25	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 09:01 AM	

+="CN59391"	"Deed of Agreement for Financial assistance for Veteran access to Home & Community Care (HACC) program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	37074.00	=""	="ACT Health"	11-Feb-08 09:27 AM	

+="CN59160"	"Counsel Fees."	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	07-Nov-07	30-Jun-08	36000.00	=""	="Mr Michael SlatteryQC"	11-Feb-08 12:06 PM	

+="CN59533"	"Facilitator for Public Consultations"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Graphic design"	01-Feb-08	31-Mar-08	36700.00	="TRS06/036"	="Porter Novelli Australia P/L"	11-Feb-08 02:03 PM	

+="CN59534"	"Department's commitment to ANZSoG participation for EL2 officer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Specialised educational services"	01-Feb-08	31-Dec-09	36900.00	=""	="THE AUSTRALIAN AND NEW ZEALAND"	11-Feb-08 02:03 PM	

+="CN59535"	"Department's commitment to ANZSoG participation for EL2 officer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Specialised educational services"	01-Feb-08	31-Dec-09	36900.00	=""	="THE AUSTRALIAN AND NEW ZEALAND"	11-Feb-08 02:03 PM	

+="CN59587"	"ANZSOG MASTERS FEES- R OTTLEY"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	31-Jan-08	04-Feb-08	36900.00	=""	="ANZSOG RESEARCH"	11-Feb-08 02:09 PM	

+="CN59588"	"ANZSOG MASTERS FEES- F KNIGHT"	="Australian Taxation Office"	11-Feb-08	="Education and Training Services"	31-Jan-08	04-Feb-08	36900.00	=""	="ANZSOG RESEARCH"	11-Feb-08 02:09 PM	

+="CN59590"	"COSULTANCY FEES"	="Australian Taxation Office"	11-Feb-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	37226.20	=""	="Lonergan Edwards & Associates Ltd"	11-Feb-08 02:09 PM	

+="CN59594-A3"	"VEHICLE REPAIRS"	="Department of Defence"	11-Feb-08	="Motor vehicles"	11-Feb-08	11-Mar-08	39494.29	=""	="FB AUTOS"	11-Feb-08 02:23 PM	

+="CN59712-A3"	"Property lease Bundall QLD"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	02-Feb-06	31-Aug-08	37600.00	=""	="HTDF No 1 Pty Limited Hutchinson Builders (NSW) Pty Ltd Trident CCJV Pty. Ltd. (Trading as: Corporate Centre Joint Venture)"	12-Feb-08 08:32 AM	

+="CN59749"	"3-month contract - Research and Development of Australian Airspace Policy Statement"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Community and social services"	06-Feb-08	06-May-08	35000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	12-Feb-08 10:36 AM	

+="CN59750"	"Contract Extension APS 4"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Community and social services"	08-Feb-08	30-Jun-08	31900.00	="TRS05/251"	="AMBIT GROUP PTY LTD"	12-Feb-08 10:36 AM	

+="CN59766"	"Provision of Compliance Training Courses"	="Department of Immigration and Citizenship"	12-Feb-08	="Employee education"	17-Jan-08	30-Jun-08	34400.00	=""	="Australian Forensic Services Pty Ltd"	12-Feb-08 12:30 PM	

+="CN59782"	" Security Monitoring "	="Federal Magistrates Court"	12-Feb-08	="Security surveillance and detection"	01-Jan-08	31-Jan-08	30501.65	=""	="ADT Security"	12-Feb-08 01:39 PM	

+="CN59792"	"Security Monitoring"	="Federal Magistrates Court"	12-Feb-08	="Security surveillance and detection"	01-Jan-08	31-Jan-08	39280.10	=""	="Chubb Protective Services"	12-Feb-08 02:05 PM	

+="CN59800"	"Various Computer Equipment"	="Federal Magistrates Court"	12-Feb-08	="Computer Equipment and Accessories"	01-Jan-08	31-Jan-08	39605.50	=""	="Dell Australia Pty Ltd"	12-Feb-08 02:25 PM	

+="CN59834-A1"	"Property lease NSW"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Jan-07	01-Jan-09	32718.00	=""	="Westfield Management Ltd"	12-Feb-08 04:00 PM	

+="CN59838"	"Consulting Services for Back Office Systems Selection - Request for Tender Document - FMC Back Office Requirements"	="Federal Magistrates Court"	12-Feb-08	="Business and corporate management consultation services"	01-Jan-08	31-Jan-08	36416.50	=""	="Oakton Services Pty Ltd"	12-Feb-08 04:10 PM	

+="CN59856"	"MAINTENANCE PREMIUM"	="Administrative Appeals Tribunal"	12-Feb-08	="Computer services"	13-Dec-07	30-Jun-08	32458.80	=""	="INTERACTIVE PTY LTD"	12-Feb-08 04:41 PM	

+="CN59865"	"Printing of NAT70990-02.2008 GST Rulings Update"	="Australian Taxation Office"	12-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Feb-08	25-Feb-08	34685.20	=""	="Paragon Printers"	12-Feb-08 04:56 PM	

+="CN59873"	"Consultancy contract"	="Cancer Australia"	12-Feb-08	="Strategic planning consultation services"	15-Dec-06	30-Sep-07	33000.00	=""	="Jeanne Mansbridge"	12-Feb-08 05:34 PM	

+="CN59898-A2"	"Property Lease Perth WA"	="Australian Federal Police"	13-Feb-08	="Lease and rental of property or building"	26-Jan-06	31-Aug-10	34173.00	=""	="Westralia Airports Corporation Pty Limited"	13-Feb-08 09:58 AM	

+="CN59934"	"AMDAR Data"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	06-Feb-08	29-Feb-08	32180.94	=""	="Qantas Airways Ltd"	13-Feb-08 11:00 AM	

+="CN59935"	"AMDAR Data"	="Bureau of Meteorology"	13-Feb-08	="Telecommunications media services"	06-Feb-08	29-Feb-08	32141.67	=""	="Qantas Airways Ltd"	13-Feb-08 11:00 AM	

+="CN59942"	"Data Set Identification Consultancy"	="Bureau of Meteorology"	13-Feb-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	40000.00	=""	="SINCLAIR KNIGHT MERZ"	13-Feb-08 11:01 AM	

+="CN59947"	"Reburbish Tipping Bucket Rain Gauges (Qty 30)"	="Bureau of Meteorology"	13-Feb-08	="Measuring and observing and testing instruments"	06-Feb-08	31-Mar-08	38621.00	=""	="Mcvan Instruments P/L"	13-Feb-08 11:02 AM	

+="CN59967"	"Finalise requirements and specification documents for the migration release of Connect"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Apr-08	38500.00	=""	="Chandler Macleod"	13-Feb-08 01:21 PM	

+="CN59973"	"Provision of an Online Record Keeping Program"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Apr-08	33000.00	=""	="Evolve Studios Pty Ltd"	13-Feb-08 01:22 PM	

+="CN59989"	"Purchase of Client management Suite desktop and server"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	19-Nov-07	19-Dec-07	31301.05	=""	="Altiris Australia"	13-Feb-08 01:24 PM	

+="CN59992"	"M113 CARRIER UPGRADE HIAB CRANE PARTS"	="Department of Defence"	13-Feb-08	="Armoured fighting vehicles"	11-Feb-08	05-May-08	31948.09	=""	="HIAB AUSTRALIA PTY LTD"	13-Feb-08 01:41 PM	

+="CN60054"	"DELIVERY OF A TWO DAY TRAINING & FACILITATION SKILLS COURSE FOR AUSAID STAFF AT THE AUSTRALIAN INSTITUTE OF MANAGEMENT (AIM) BARTON, CANBERRA"	="AusAid"	13-Feb-08	="Education and Training Services"	05-Sep-07	30-Jun-08	40000.00	=""	="AUST INSTITUTE MANAGEMENT NSW LTD (BOX 328)"	13-Feb-08 02:56 PM	

+="CN60063"	"SUPPLY & MAINTAIN PLANTS FOR AUSAID BUILDINGS"	="AusAid"	13-Feb-08	="Office Equipment and Accessories and Supplies"	10-Nov-07	10-Nov-07	38223.00	=""	="INSTYLE INDOOR PLANT HIRE"	13-Feb-08 02:57 PM	

+="CN60080"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	33000.00	=""	="MELISSA FISHER"	13-Feb-08 03:59 PM	

+="CN60082"	"LEGAL CONFERENCE FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Specialised educational services"	29-Jan-08	29-Jan-08	30898.45	=""	="CUMBERLAND LORNE RESORT (T/UNDER THE VICTORIAN P/T)"	13-Feb-08 04:00 PM	

+="CN60090"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	38555.00	=""	="NOEL HUTLEY"	13-Feb-08 04:01 PM	

+="CN60095"	"PROVISION OF RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Recruitment services"	17-Jan-08	17-Jan-08	38500.00	=""	="DARWIN RHODES (AUSTRALIA) PTY LTD"	13-Feb-08 04:01 PM	

+="CN60103"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	34320.00	=""	="ST JOHN HIBBLE"	13-Feb-08 04:03 PM	

+="CN60108"	"CLEANING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Cleaning and janitorial services"	01-Jan-08	31-Dec-08	33000.00	=""	="OAKGEM NOMINEES P/L"	13-Feb-08 04:03 PM	

+="CN60121"	"ITSM ADDITIONAL LICENCES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Software or hardware engineering"	06-Feb-08	06-Feb-08	39215.00	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	13-Feb-08 04:05 PM	

+="CN60226"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	25-Aug-05	40000.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	

+="CN60273"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-06	32784.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:16 PM	

+="CN60301"	"PERSISTENT ORGANIC POLLUTANTS PROJECT, PHASE II COMMUNICATION STRATEGY IMPLEMENTATION"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	11-Nov-02	31-Dec-07	31000.00	=""	="GHD PTY LTD"	13-Feb-08 05:20 PM	

+="CN60349"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	31-Jul-03	31-Oct-06	31600.63	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:27 PM	

+="CN60372"	"Solomon Islands Budget Supplementation Account"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-03	10-Aug-10	34062.43	=""	="PRICEWATERHOUSECOOPERS HONIARA"	13-Feb-08 05:30 PM	

+="CN60437"	"ADVISORY SERVICES IN RELATION TO PACIFIC SCHOLARSHIP SOFTWARE DEVELOPMENT AND HARMONISATION"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-04	30-Jun-06	37200.00	=""	="BRYANT, CERI L"	13-Feb-08 05:38 PM	

+="CN60452"	"Director of Schools, Nauru"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Oct-04	31-Dec-06	38150.00	=""	="LONGHURST, MICHAEL"	13-Feb-08 05:40 PM	

+="CN60477"	"Provision of services for the production of FOCUS magazine"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	14-Jun-05	30-Apr-06	34925.00	=""	="GIBSON, PATRICIA MARGARET MARY"	13-Feb-08 05:43 PM	

+="CN60478"	"Provision of services for the production of FOCUS magazine"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	14-Jun-05	30-Apr-06	30225.00	=""	="GIBSON, PATRICIA MARGARET MARY"	13-Feb-08 05:43 PM	

+="CN60481"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Transportation and Storage and Mail Services"	21-Nov-07	21-Nov-07	30701.81	=""	="Cabcharge Australia Pty Ltd"	13-Feb-08 05:43 PM	

+="CN60494"	"website development"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	12-Nov-07	35695.00	=""	="Freestyle Media"	13-Feb-08 05:44 PM	

+="CN60507"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	15-Nov-07	15-Nov-07	36360.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60555"	"Jens Lauring-Knudsen's contract"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Oct-05	30-Sep-07	37183.45	=""	="LAURING-KNUDSEN, JENS"	13-Feb-08 05:49 PM	

+="CN60558"	"APTC Phase II Detailed Design Box Hill Hospitality and Tourism"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	03-Jul-06	31-Dec-06	33847.00	=""	="BOX HILL INSTITUTE OF TAFE"	13-Feb-08 05:50 PM	

+="CN60588"	"Yogyakarta - Jateng Community Assistance Program - Deputy / Liaison Officer"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	30-Oct-06	29-Oct-07	33613.45	=""	="EJ HERI WAHYUDI"	13-Feb-08 05:54 PM	

+="CN60622"	"Shree Saraswati Ramayan Manadali"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	16-May-07	30-Jun-08	39727.34	=""	="SHREE SARASWATI RAMAYAN MANDALI"	13-Feb-08 05:58 PM	

+="CN60624"	"Live and Learn Environmental Education"	="AusAid"	13-Feb-08	="Education and Training Services"	30-Apr-07	31-Dec-08	38205.64	=""	="LIVE AND LEARN ENVIRONMENTAL EDUCATION SOCIETY INCORPORATED"	13-Feb-08 05:58 PM	

+="CN60628"	"Fiji Red Cross"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-Apr-07	30-Jan-08	30459.95	=""	="FIJI RED CROSS SOCIETY"	13-Feb-08 05:59 PM	

+="CN60635"	"Scholarships Selection for Pacific Region ALA 2008 Intake"	="AusAid"	13-Feb-08	="Education and Training Services"	01-May-07	30-Sep-07	37022.72	=""	="SOUTH PACIFIC BOARD FOR EDUCATIONAL ASSESSMENT (SPBEA)"	13-Feb-08 06:00 PM	

+="CN60641"	"A Gani: Consultancy on NTT Social Health Insurance Mission"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Apr-07	10-Jul-07	30503.18	=""	="ASCOBAT GANI"	13-Feb-08 06:00 PM	

+="CN60652"	"Salvation Army Fiji"	="AusAid"	13-Feb-08	="Organisations and Clubs"	04-Jun-07	30-Dec-09	38080.73	=""	="SALVATION ARMY (FIJI DIVISION)"	13-Feb-08 06:02 PM	

+="CN60653"	"USP (Continuing and Community Education)"	="AusAid"	13-Feb-08	="Education and Training Services"	04-Jun-07	31-Jul-10	30339.81	=""	="UNIVERSITY OF THE SOUTH PACIFIC"	13-Feb-08 06:02 PM	

+="CN60657"	"SI Gov, ICT Capacity Development Project Technical Review Number One"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Mar-07	03-Aug-07	36459.50	=""	="PDP AUSTRALIA PTY. LTD."	13-Feb-08 06:02 PM	

+="CN60684"	"HES M&E systems project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-06	30-Sep-07	30745.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	13-Feb-08 06:06 PM	

+="CN60695"	"Community Development Specialist - SIRIP"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	24-Mar-07	30-Jun-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	13-Feb-08 06:08 PM	

+="CN60696"	"Water Supply Operations Adviser - Recruitment"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Dec-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	13-Feb-08 06:08 PM	

+="CN60700"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Transportation and Storage and Mail Services"	04-Jan-08	04-Jan-08	31476.57	=""	="Cabcharge Australia Pty Ltd"	13-Feb-08 06:34 PM	

+="CN60706"	"Printing"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Printed media"	02-Jan-08	02-Jan-08	30588.00	=""	="Finsbury"	13-Feb-08 06:35 PM	

+="CN60711"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	35350.00	=""	="Ryder Shop & Office Fitting Pty Ltd"	13-Feb-08 06:36 PM	

+="CN60745"	"Programme Management Support"	="CrimTrac"	14-Feb-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	29-Feb-08	32175.00	=""	="Tanner James Managment Consultants"	14-Feb-08 10:42 AM	

+="CN60772"	"Profesional services for future stategic positioning."	="Family Court of Australia"	14-Feb-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	06-Feb-08	33541.00	=""	="Trent Litster"	14-Feb-08 01:21 PM	

+="CN60806"	"Computer Centre Augmentation"	="Austrade"	14-Feb-08	="Computer services"	27-Sep-07	21-Dec-07	31900.00	=""	="John Raineri & Associates"	14-Feb-08 02:50 PM	

+="CN60824"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	34100.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:36 PM	

+="CN60828"	"Accommodation/National Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	09-Aug-07	01-Sep-08	31920.00	=""	="ELDERS TERRITORY REAL ESTATE"	14-Feb-08 03:37 PM	

+="CN60830"	"temporary staff wages"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Dec-08	40000.00	=""	="CHOICE ONE"	14-Feb-08 03:37 PM	

+="CN60866"	"Professional Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	30000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60868"	"PropACTCanberra12MortSt(Grd to6th floor)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	16-Aug-07	13-Nov-11	33275.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:42 PM	

+="CN60874"	"GEERS - Active Creditor Pilot - Keys Trading P/L"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	14-Aug-07	33734.31	=""	="BENT & COUGLE PTY LTD"	14-Feb-08 03:43 PM	

+="CN60886"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	31000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60894"	"Bulk PO for postage of Employment Extra 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIA POST (9821984 ACC.ONLY)"	14-Feb-08 03:45 PM	

+="CN60913"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	30000.00	=""	="LIVING SIMPLY"	14-Feb-08 03:48 PM	

+="CN60950"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Transportation and Storage and Mail Services"	04-Dec-07	04-Dec-07	31020.92	=""	="Cabcharge Australia Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60952"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer Equipment and Accessories"	11-Dec-07	11-Dec-07	33547.64	=""	="Electroboard Solutions Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60982"	"Career Directions for Graduates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	15-Oct-07	05-Nov-07	35002.03	=""	="EFFECTIVE PEOPLE P/L"	14-Feb-08 03:55 PM	

+="CN60987"	"Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	11-Dec-07	30-Jun-08	34980.00	=""	="AVOKA TECHNOLOGIES PTY LTD"	14-Feb-08 03:55 PM	

+="CN60993"	"PropQLDBrisbane200MarySt (level 15-17)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	31-Aug-07	30-Jun-08	34724.05	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:56 PM	

+="CN61013"	"SP75 Plus Printers"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	30019.00	=""	="TECHNICARD PTY LTD"	14-Feb-08 03:59 PM	

+="CN61024"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Feb-08	30-Jun-08	31755.17	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61030"	"IT Communications  Equipment - maint. agreement"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	09-Jan-08	30-Jun-08	37022.37	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:01 PM	

+="CN61031"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	33168.30	=""	="EDEN TECHNOLOGY PTY LIMITED"	14-Feb-08 04:01 PM	

+="CN61037"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	35957.30	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61057"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	40000.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:05 PM	

+="CN61062"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	39600.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:05 PM	

+="CN61068"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	37400.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61070"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	30-Jun-08	33600.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61072"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	17-Aug-07	30-Sep-08	40000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:07 PM	

+="CN61074"	"Reprint brochures for Support the System campain"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	20-Aug-07	31-Aug-07	37538.46	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:07 PM	

+="CN61076"	"Synergy Bulk PO - WRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	27-Aug-07	30-Jun-08	35500.00	=""	="SYNERGY PLUS TRAINING"	14-Feb-08 04:07 PM	

+="CN61087"	"Payment of AFP character checks invoices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Aug-07	30-Jun-08	40000.00	=""	="AUST FEDERAL POLICE"	14-Feb-08 04:08 PM	

+="CN61092"	"Temporary Services - Corporate"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	26-Oct-07	34236.98	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:09 PM	

+="CN61096"	"Scribe Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	30000.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	14-Feb-08 04:10 PM	

+="CN61103"	"course fee FY 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	24-Aug-07	30-Jun-08	32337.00	=""	="TOTAL METRICS"	14-Feb-08 04:10 PM	

+="CN61114"	"SiteCensus and Market Intelligence Subscription"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	39600.00	=""	="NETRATINGS AUSTRALIA PTY LTD"	14-Feb-08 04:12 PM	

+="CN61141"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	30-Nov-10	30000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:15 PM	

+="CN61166"	"National Office Property Inspections"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Jul-07	33401.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:18 PM	

+="CN61171"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	09-Jul-07	19-Dec-11	39000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61174"	"Review of efficiency of OHS instuments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Nov-07	39860.00	=""	="GUNNINGHAM & ASSOCIATES"	14-Feb-08 04:19 PM	

+="CN61186"	"OASCC Training courses/seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:21 PM	

+="CN61223"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	33300.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:26 PM	

+="CN61242"	"SOLE SOURCE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	31-Dec-07	33977.35	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:28 PM	

+="CN61243"	"Photcopiers"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	23-Jul-07	30-Jan-12	35000.00	=""	="RICOH AUSTRALIA (ROA)"	14-Feb-08 04:28 PM	

+="CN61252"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Jul-07	02-Oct-07	32000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:29 PM	

+="CN61257"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	31000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61260"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	19-Jul-07	19-Dec-11	39000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:30 PM	

+="CN61284"	"Internet based media monitoring service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	40000.00	=""	="AAP INFORMATION SERVICES P/L"	14-Feb-08 04:33 PM	

+="CN61285"	"Comcar"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	30000.00	=""	="COMCAR"	14-Feb-08 04:33 PM	

+="CN61293"	"Provision for RAE Interpreter Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	30000.00	=""	="INSTITUTE FOR ABORIGINAL DEVELOPMEN"	14-Feb-08 04:34 PM	

+="CN61315"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	16-Jul-07	19-Dec-11	30000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:37 PM	

+="CN61332-A1"	"2007-08 Financial Statement Audit Australian River Company"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-94	31-Dec-05	31113.50	=""	="Ernst and Young - VIC"	14-Feb-08 04:39 PM	

+="CN61336-A1"	" 50 leaders licences "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	01-Jan-08	31-Dec-08	33000.00	=""	="80-20 Software Pty Ltd"	14-Feb-08 04:39 PM	

+="CN61352-A1"	"TM1 and CALUMO Software Maintenance 2008"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Software maintenance and support"	03-Jan-08	02-Jan-09	36649.80	=""	="Excelerated Consulting Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61357"	"DEWR Dinner"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Jul-07	31-Jul-08	34026.46	=""	="DOLTONE HOUSE"	14-Feb-08 04:41 PM	

+="CN61359"	"Course to be attended by staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	17-Jul-07	30-Jun-08	37279.00	=""	="SOFTWARE EDUCATION"	14-Feb-08 04:41 PM	

+="CN61379-A1"	"Undertake Scoping Study for Contract Management in AusAid audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	13-Dec-07	31-Jan-08	37000.00	=""	="Origin Consulting"	14-Feb-08 04:43 PM	

+="CN61382"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	35000.00	=""	="HARMERS WORKPLACE LAWYERS"	14-Feb-08 04:43 PM	

+="CN61386"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	35000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 04:43 PM	

+="CN61388"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	35000.00	=""	="CLAYTON UTZ"	14-Feb-08 04:43 PM	

+="CN61389-A1"	" Contract-In Supplementary Audit Staff "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Temporary personnel services"	17-Oct-07	24-Dec-07	37000.00	=""	="BM Partners Pty Ltd"	14-Feb-08 04:43 PM	

+="CN61399-A1"	"Print Management and Publishing of the Managing Parliamentary Workflow - Better Practice Guide."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Printing"	29-Jan-08	30-Apr-08	40000.00	=""	="hma Blaze Pty Limited"	14-Feb-08 04:44 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val40000to80000.xls
@@ -1,1 +1,253 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59368"	"M113 CARRIER UPGRADE CRANE PARTS"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	09-Feb-08	02-May-08	68522.92	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 08:34 AM	

+="CN59369"	"VEHICLE REPAIRS"	="Department of Defence"	11-Feb-08	="Motor vehicles"	27-Sep-07	27-Oct-07	46135.24	=""	="RGM"	11-Feb-08 08:37 AM	

+="CN59373"	"M113 CARRIER UPGRADE HIAB CRANE"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	08-Feb-08	02-May-08	64632.77	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 08:54 AM	

+="CN59378"	"Compliance workshops on VAPAC / VCES - Phase 2"	="Department of Veterans' Affairs"	11-Feb-08	="Management advisory services"	05-Feb-08	31-Mar-08	80000.00	="DaS/2007"	="Hoffmann Donohue Pty Ltd"	11-Feb-08 09:25 AM	

+="CN59386"	"Property Rental - Geelong"	="Department of Veterans' Affairs"	11-Feb-08	="Real estate services"	01-Feb-08	31-Jan-10	52560.00	=""	="Business Frontiers Pty Ltd (Part of Knight Executive Consortium)"	11-Feb-08 09:27 AM	

+="CN59426"	"Purchase of NSN 5895-66-150-9863 Interconnecting Box"	="Defence Materiel Organisation"	11-Feb-08	="Air transportation support systems and equipment"	10-Dec-07	12-May-08	62648.85	=""	="BAE SYSTEMS"	11-Feb-08 10:13 AM	

+="CN59084-A1"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	30-Nov-07	15-Jun-08	47000.00	=""	="Mr Peter S Hastings"	11-Feb-08 12:08 PM	

+="CN59040"	"Counsel Fees"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Oct-07	30-Jun-08	80000.00	=""	="Mr John Vaughan"	11-Feb-08 12:16 PM	

+="CN59529"	"TSI TNA"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Human resources services"	27-Sep-07	08-Dec-07	52160.00	="APSC 2005/014"	="APIS CONSULTING"	11-Feb-08 02:02 PM	

+="CN59530"	"TESTER"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	01-Feb-08	30-Jun-08	70000.00	="T2004/0699"	="SMS Management & Technology"	11-Feb-08 02:02 PM	

+="CN59537"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	01-Feb-08	30-May-08	79000.00	="TRS06/017"	="Peoplebank Australia Ltd"	11-Feb-08 02:03 PM	

+="CN59540"	"3-month contract staff - Research & Development airspace and CNS/ATM discussion paper"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Community and social services"	08-Jan-08	08-Apr-08	41000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	11-Feb-08 02:04 PM	

+="CN59542"	"Recreuitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Community and social services"	11-Jan-08	31-Mar-08	59899.90	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	11-Feb-08 02:04 PM	

+="CN59543"	"Technical review of AST resources"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Information services"	17-Dec-07	15-Feb-08	49999.40	=""	="HART SECURITY AUSTRALIA PTY LIMITED"	11-Feb-08 02:04 PM	

+="CN59562"	"Office Services Charges Jan 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Jan-08	04-Apr-08	78532.30	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:07 PM	

+="CN59593"	"IT Contractor Extension"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	11-Feb-08	01-Jun-08	52476.93	=""	="SOUTHERN CROSS COMPUTING"	11-Feb-08 02:12 PM	

+="CN59615"	"replacement and repairs of craft collar"	="Department of Defence"	11-Feb-08	="Vessel stores services"	07-Dec-07	08-Feb-08	51138.56	=""	="WILTRADING"	11-Feb-08 03:03 PM	

+="CN59643"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Feb-08	09-Mar-08	54681.99	=""	="Rover Australia"	11-Feb-08 03:40 PM	

+="CN59713-A2"	"Property Lease Hobart Tas"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-May-06	31-Aug-08	64241.00	=""	="Dept of Police & Emergency management (Tas)"	12-Feb-08 08:47 AM	

+="CN59719"	"Supply of Ladies Handbags"	="Defence Materiel Organisation"	12-Feb-08	="Bags"	12-Feb-08	14-Jun-08	49390.00	=""	="Claytons Australia"	12-Feb-08 09:01 AM	

+="CN59731"	" Pharmaceutical items "	="Defence Materiel Organisation"	12-Feb-08	="Drugs and Pharmaceutical Products"	08-Feb-08	22-Feb-08	48516.42	="n/a"	="Symbion Pharmacy"	12-Feb-08 09:48 AM	

+="CN59747"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	12-Feb-08	="Management advisory services"	11-Feb-08	30-Jun-08	70000.00	="TRS06/017"	="Peoplebank Australia Ltd"	12-Feb-08 10:36 AM	

+="CN59799"	"IT Contractor for Development and Maintenance J2EE"	="Australian Research Council"	12-Feb-08	="Web platform development software"	15-Oct-07	10-Oct-08	74099.00	=""	="Agile Digital Engineering"	12-Feb-08 02:22 PM	

+="CN59844"	"Audio Upgrade Court 10B, 80 William Street, Sydney."	="Federal Court of Australia"	12-Feb-08	="Audio and visual equipment"	30-Nov-07	21-Jan-08	52811.00	=""	="RUTLEDGE ENGINEERING"	12-Feb-08 04:27 PM	

+="CN59847"	"Variation to the provision for the contract for the management of Secure Gateway Environment"	="Comsuper"	12-Feb-08	="Software"	13-Dec-06	12-Dec-09	57662.00	=""	="Verizon Business (Cybertrust)"	12-Feb-08 04:30 PM	

+="CN59848"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	12-Feb-08	="Transcribing services"	01-Jan-08	31-Jan-08	52727.21	=""	="Spark & Cannon Australasia Pty Ltd"	12-Feb-08 04:31 PM	

+="CN59849-A1"	"Provision for System Tester"	="Comsuper"	12-Feb-08	="Human resources services"	09-Feb-08	30-Jun-08	69420.00	=""	="Paxus Australia Pty Ltd"	12-Feb-08 04:33 PM	

+="CN59852"	"SUBSCRIPTIONS DECEMBER 2007"	="Administrative Appeals Tribunal"	12-Feb-08	="Printed media"	25-Nov-07	31-Dec-08	41395.94	=""	="LEXISNEXIS"	12-Feb-08 04:41 PM	

+="CN59854"	"SUBSCRIPTIONS DECEMBER 2007"	="Administrative Appeals Tribunal"	12-Feb-08	="Printed media"	03-Dec-07	31-Dec-08	64095.57	=""	="THOMSON LEGAL & REGULATORY"	12-Feb-08 04:41 PM	

+="CN59860"	" Repairs & Maintenance - FMC Adelaide & Melbourne "	="Federal Magistrates Court"	12-Feb-08	="Management and operation of all facilities, engineering, modification and maintenance services for site or platform"	01-Jan-08	31-Jan-08	66042.63	=""	="Spotless P&F Pty Ltd"	12-Feb-08 04:43 PM	

+="CN59868"	"Recover Costs Rental, Outgoings, Car Parking FMC Macquarie St, Sydney - October, November & December 2007"	="Federal Magistrates Court"	12-Feb-08	="Commercial or industrial facility rental"	01-Jan-08	31-Jan-08	55847.74	=""	="Law Courts Limited - United Group Services"	12-Feb-08 05:08 PM	

+="CN59872"	" Consulting contract "	="Cancer Australia"	12-Feb-08	="Strategic planning consultation services"	05-Feb-07	30-Jun-07	71500.00	=""	="Bruce Barraclough"	12-Feb-08 05:29 PM	

+="CN59875"	"Consultancy contract"	="Cancer Australia"	12-Feb-08	="Strategic planning consultation services"	05-Feb-07	30-Sep-07	66000.00	=""	="Michael O'Hara"	12-Feb-08 05:42 PM	

+="CN59878"	"Establishment services"	="Cancer Australia"	12-Feb-08	="Business and corporate management consultation services"	29-Aug-06	17-Nov-06	57975.00	=""	="APIS Consulting"	12-Feb-08 05:54 PM	

+="CN59890-A1"	"    A23 AIRCRAFT - REPAIRS TO CANOPY,MOVABLE -Serial No 109    "	="Defence Materiel Organisation"	13-Feb-08	="Military fixed wing aircraft"	12-Feb-08	28-Jun-08	64494.18	=""	="AIRFLITE PTY LTD"	13-Feb-08 09:07 AM	

+="CN59892-A1"	"A23 AIRCRAFT - REPAIRS TO CANOPY,MOVABLE - SERIAL NO. 170"	="Defence Materiel Organisation"	13-Feb-08	="Military fixed wing aircraft"	12-Feb-08	28-Jun-08	64494.18	=""	="AIRFLITE PTY LTD"	13-Feb-08 09:14 AM	

+="CN59897"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	13-Feb-08	="Drugs and Pharmaceutical Products"	06-Feb-08	09-Mar-08	50045.60	=""	="Symbion Pharmacy Services"	13-Feb-08 09:38 AM	

+="CN59900"	"Provision for Legal Counsel"	="Comsuper"	13-Feb-08	="Legal services"	07-Nov-07	13-Feb-08	43200.00	=""	="Australian Government Solicitors"	13-Feb-08 10:01 AM	

+="CN59923"	"Removals & Storage"	="Bureau of Meteorology"	13-Feb-08	="Transportation and Storage and Mail Services"	24-Jan-08	31-Jan-08	74523.63	=""	="TOLL TRANSITIONS"	13-Feb-08 10:58 AM	

+="CN59938"	"Develop online training module for forecasters."	="Bureau of Meteorology"	13-Feb-08	="Computer services"	21-Jan-08	30-Sep-08	76416.34	=""	="UNIVERSITY CORPORATION FOR"	13-Feb-08 11:00 AM	

+="CN59942"	"Data Set Identification Consultancy"	="Bureau of Meteorology"	13-Feb-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	40000.00	=""	="SINCLAIR KNIGHT MERZ"	13-Feb-08 11:01 AM	

+="CN59944"	"Modems and Cables"	="Bureau of Meteorology"	13-Feb-08	="Computer Equipment and Accessories"	31-Jan-08	25-Feb-08	44220.00	=""	="RF Innovations Pty Ltd"	13-Feb-08 11:01 AM	

+="CN59948"	"Streamlining of JARWC Operations"	="Bureau of Meteorology"	13-Feb-08	="Management advisory services"	06-Feb-08	24-Apr-08	79200.00	=""	="SMS Management & Technology"	13-Feb-08 11:02 AM	

+="CN59970"	"Agency booth at APEC leaders week"	="Austrade"	13-Feb-08	="Marketing and distribution"	20-Aug-07	20-Sep-07	44000.00	=""	="Active Display Group"	13-Feb-08 01:21 PM	

+="CN59983"	"Purchase of VSX presenter, and accessories"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	05-Jun-07	06-Jun-07	54451.34	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:23 PM	

+="CN59986"	"Purchase of End User Enterprise"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	13-Aug-07	13-Sep-08	47530.87	=""	="Citrix Systms Asia Pacific Pty Ltd"	13-Feb-08 01:24 PM	

+="CN59988"	"Strategic consulting and project management"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jun-08	50000.00	=""	="Information Solutions Pty Ltd"	13-Feb-08 01:24 PM	

+="CN60006"	"PROVISION OF IT SERVICES"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Oct-05	30-Jun-08	66798.88	=""	="ICON RECRUITMENT PTY LTD (DEAKIN)"	13-Feb-08 02:52 PM	

+="CN60008"	"PROVISION OF IT SERVICES"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Aug-05	30-Jun-08	49839.90	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 02:53 PM	

+="CN60012"	"PROVISION OF INTERNET SERVICE"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	16-Dec-04	30-Jun-08	42221.11	=""	="OPTUS NETWORKS"	13-Feb-08 02:53 PM	

+="CN60014"	"PROVISION/MAINTENANCE OF BLACKBERRY HANDSETS, BES20 USER PACK & 24 MONTH MAINTENANCE"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-06	31-Mar-08	42907.00	=""	="OPTUS BILLING SERVICES"	13-Feb-08 02:53 PM	

+="CN60016"	"EXECUTIVE COACHING SERVICES - AUSAID LEADERSHIP DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	30-Apr-06	31-Dec-07	58520.00	=""	="WINDING STAIRCASE PTY LTD T/A COACH SCHOOL"	13-Feb-08 02:53 PM	

+="CN60021"	"PROVISION OF IT TECH PERSONNEL- MESSAGING SERVICES"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-06	30-Jun-08	78100.00	=""	="ICON RECRUITMENT PTY LTD (DEAKIN)"	13-Feb-08 02:54 PM	

+="CN60023"	"PROVISION OF IT TECHNICAL SERVICES- OPERATIONS COMMUNICATIONS TECHNICIAN"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	30-Apr-07	30-Jun-08	42000.00	=""	="GREYTHORN PTY LTD"	13-Feb-08 02:54 PM	

+="CN60026"	"PROVISION OF  IT TECHNICAL SERVICES- SHAREPOINT TEAM LEADER"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	16-Apr-07	30-Jun-08	47432.00	=""	="GMT CANBERRA PTY LTD"	13-Feb-08 02:54 PM	

+="CN60030"	"SUPPLY OF LOOSE OFFICE FURNITURE FOR AUSAID'S NEW ACCOMMODATION 255 LONDON CIRCUIT"	="AusAid"	13-Feb-08	="Office Equipment and Accessories and Supplies"	10-Apr-07	06-Jul-07	41692.20	=""	="ARC OFFICE INTERIORS PTY LTD (T/A DESIGNCRAFT)"	13-Feb-08 02:54 PM	

+="CN60032"	"THE CONTRACTOR WILL SEARCH AND THEN SHORT LIST POTENTIAL CANDIDATES FOR THE POSITION OF CHIEF INFORMATION OFFICER"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-07	17-Jul-07	55000.00	=""	="HANSEN & SEARSON EXECUTIVE SEARCH"	13-Feb-08 02:54 PM	

+="CN60040"	"TO PROVIDE FINANCE COORDINATION SUPPORT TO THE INDONESIA BRANCH OPERATIONS DURING THE CRITICAL TRANSITION PERIOD AS FINANCIAL COORDINATION AND MANAGEMENT IS DEVOLVED TO POST"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	31-Aug-07	73920.00	=""	="WALL, ROBERT W (QUEANBEYAN)"	13-Feb-08 02:55 PM	

+="CN60042"	"PROVISION OF DESIGN & TYPESETTING, PRINT MANAGEMENT & ELECTRONIC PRODUCTION SERVICES FOR AUSAID ANNUAL REPORT 2006-07"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	27-Aug-07	31-Oct-07	44000.00	=""	="ZOO COMMUNICATIONS PTY LTD(KINGSTON)"	13-Feb-08 02:55 PM	

+="CN60049"	"PROVISION OF IT COMMUNICATION SECURITY DOCUMENTATION AND ADVICE TO ENABLE AUSAID TO RETAIN DSD 'IN CONFIDENCE' ACCREDITATION"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	02-Jul-07	30-Jun-08	80000.00	=""	="SECURELINK PTY LTD"	13-Feb-08 02:56 PM	

+="CN60053"	"STANDING OFFER FOR PUBLICATIONS PANEL 1: SERIAL PUBLICATIONS & SERVICES FOR SUBSCRIPTIONS TO, INCLUDING ACCESS & DELIVERY OF, ELECTRONIC & HARDCOPY JOURNALS SO 25797"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	22-Jun-07	30-Jun-08	49500.00	=""	="EBSCO AUSTRALIA"	13-Feb-08 02:56 PM	

+="CN60054"	"DELIVERY OF A TWO DAY TRAINING & FACILITATION SKILLS COURSE FOR AUSAID STAFF AT THE AUSTRALIAN INSTITUTE OF MANAGEMENT (AIM) BARTON, CANBERRA"	="AusAid"	13-Feb-08	="Education and Training Services"	05-Sep-07	30-Jun-08	40000.00	=""	="AUST INSTITUTE MANAGEMENT NSW LTD (BOX 328)"	13-Feb-08 02:56 PM	

+="CN60056"	"PERIOD OFFER FOR PROVISION OF IT TECHNICAL PERSONNEL FOR THE DEVELOPMENT OF THE AUSAID INTRANET"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-May-06	31-May-09	44000.00	=""	="UNIQUE WORLD PTY LIMITED"	13-Feb-08 02:57 PM	

+="CN60064"	"PROVISION OF IT TECHNICAL SERVICES - SERVICE DESK ANALYST IN THE ISB SERVICE DELIVERY UNIT - ADAM CADD"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	30-Jun-08	64680.00	=""	="ICON RECRUITMENT PTY LTD (DEAKIN)"	13-Feb-08 02:58 PM	

+="CN60065"	"DEVELOP & ASSIST IN THE IMPLEMENTATION OF A DEPARTMENTAL & ADMINISTERED CLASSIFICATION FRAMEWORK"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	30-Nov-07	77000.00	=""	="PRICEWATERHOUSE COOPERS"	13-Feb-08 02:58 PM	

+="CN60068"	"update the Building Management System at Questacon Parkes ACT "	="Questacon"	13-Feb-08	="Building environmental control systems"	09-Jan-08	30-Mar-08	48185.50	=""	="Control and Electric"	13-Feb-08 03:07 PM	

+="CN60074"	"IT COMPUTER FORENSIC SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Information technology consultation services"	16-May-07	30-Jun-07	60000.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-Feb-08 03:59 PM	

+="CN60079"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	55000.00	=""	="SPARKE HELMORE SOLICITORS"	13-Feb-08 03:59 PM	

+="CN60083"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Software maintenance and support"	18-Jan-08	18-Jan-08	50820.00	=""	="RADIUS SOLUTIONS GROUP PTY LTD (FORMERLY GAP CONSULTING)"	13-Feb-08 04:00 PM	

+="CN60091"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	42350.00	=""	="CRAIG LENEHAN"	13-Feb-08 04:01 PM	

+="CN60097"	"DESKTOP COMPUTERS AND MONITORS"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Software or hardware engineering"	25-Jan-08	25-Jan-08	44008.25	=""	="DATA#3 LIMITED"	13-Feb-08 04:02 PM	

+="CN60100"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	44000.00	=""	="SPARKE HELMORE SOLICITORS"	13-Feb-08 04:02 PM	

+="CN60106"	"LEGAL SERVICE"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	55000.00	=""	="PETER BRAHAM"	13-Feb-08 04:03 PM	

+="CN60120"	"PUBLICATIONS FOR CREDIT RATINGS, RISK EVALUATION AND INVESTMENT RESEARCH"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Business intelligence consulting services"	06-Feb-08	06-Feb-08	49280.00	=""	="STANDARD AND POOR'S"	13-Feb-08 04:05 PM	

+="CN60131"	"P.O. raised to facilitate the manpower and consumerbles expended on Tail Rotor Pylon P/N 70210-05000-042, Ser No. A270-00906 during it's repair."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	08-Feb-08	28-Feb-08	55000.00	=""	="Sikorsky Aircraft Australia Limited"	13-Feb-08 04:53 PM	

+="CN60158"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	65000.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60166"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	31-May-06	79959.90	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:02 PM	

+="CN60171"	"Viet Nam Rural Development Program - TAG - Community Devt/Performance Information Adviser"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	29-Mar-00	30-Jun-04	44816.00	=""	="STEPHENS, ALEXANDRA"	13-Feb-08 05:03 PM	

+="CN60177"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-03	58788.47	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:03 PM	

+="CN60197"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Jul-01	31-Jul-03	45625.00	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:06 PM	

+="CN60201"	"Tonga Health Sector Planning and Management Project - Phase 3"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Sep-03	31-Dec-05	42410.00	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60204-A1"	" Cloth purchased against standing offer 0310-271-26. Contract notice amended to report GST Inclusive value of purchase "	="Defence Materiel Organisation"	13-Feb-08	="Specialty fabrics or cloth"	08-Feb-08	15-Feb-08	42945.16	="CC2007/20"	="Melba Industries"	13-Feb-08 05:08 PM	

+="CN60219"	"THREE DELTA TOWNS WATER SUPPLY AND SANITATION PROJECT"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Oct-01	01-Oct-06	45501.00	=""	="GHD PTY LTD"	13-Feb-08 05:09 PM	

+="CN60224"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	15-Mar-05	66161.25	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	

+="CN60226"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	25-Aug-05	40000.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	

+="CN60236"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jan-07	64190.00	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:11 PM	

+="CN60277"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-08	77000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:17 PM	

+="CN60292"	"Australian National University Indonesia Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Sep-02	31-Aug-07	55580.16	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:19 PM	

+="CN60300"	"PERSISTENT ORGANIC POLLUTANTS PROJECT, PHASE II COMMUNICATION STRATEGY IMPLEMENTATION"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	11-Nov-02	31-Dec-06	59252.00	=""	="GHD PTY LTD"	13-Feb-08 05:20 PM	

+="CN60384"	"Samoa Police Project"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	01-Dec-03	31-Dec-08	53130.68	=""	="UNIQUEST PTY LIMITED"	13-Feb-08 05:31 PM	

+="CN60387"	"Fiji Health Sector Improvement Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Oct-03	01-Oct-09	77254.72	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:31 PM	

+="CN60396"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	30-Dec-08	69612.40	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:32 PM	

+="CN60427"	"AusAID Rapid Response Team Health Support Program"	="AusAid"	13-Feb-08	="Healthcare Services"	15-Jun-04	30-Jun-07	55000.00	=""	="HEALTH SERVICES AUSTRALIA"	13-Feb-08 05:36 PM	

+="CN60428"	"AusAID Rapid Response Team Health Support Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Sep-04	30-Sep-08	44500.00	=""	="HEALTH SERVICES AUSTRALIA"	13-Feb-08 05:36 PM	

+="CN60435"	"TAG for BRAC-North West Microfinance Expansion Project, Bangladesh"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-04	31-May-09	58300.00	=""	="WORLD EDUCATION AUSTRALIA LIMITED"	13-Feb-08 05:37 PM	

+="CN60443"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	31-Dec-05	80000.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:38 PM	

+="CN60446"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	29-Sep-06	51010.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:39 PM	

+="CN60456"	"Asia-Pacific Economic Literature - 3 year subscription"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	15-Oct-04	30-Jun-07	40500.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:40 PM	

+="CN60460"	"Participation in RAMSI Solomon Islands Justice Sector TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-Oct-04	30-Jun-06	70000.00	=""	="PAPAS, NICHOLAS"	13-Feb-08 05:41 PM	

+="CN60461"	"Participation in RAMSI Solomon Islands Justice Sector TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-Oct-04	30-Jun-05	50000.00	=""	="PAPAS, NICHOLAS"	13-Feb-08 05:41 PM	

+="CN60462"	"Participation in RAMSI Solomon Islands Justice Sector TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-Oct-04	30-Jun-06	60000.00	=""	="PAPAS, NICHOLAS"	13-Feb-08 05:41 PM	

+="CN60468"	"Solomon Islands Machinery of Government Infrastructure Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-05	30-Mar-06	75031.90	=""	="SAKHIWE CONSULTANTS PTY LIMITED"	13-Feb-08 05:42 PM	

+="CN60475"	"Multimedia Photo and Map Library"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	06-May-05	06-May-07	70000.00	=""	="DAMIT AUSTRALIA PTY. LTD"	13-Feb-08 05:43 PM	

+="CN60479"	"Provision of services for the production of FOCUS magazine"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	14-Jun-05	30-Jun-06	66602.50	=""	="GIBSON, PATRICIA MARGARET MARY"	13-Feb-08 05:43 PM	

+="CN60493"	"Strenthening Implementation of Basic Education in Selected Provinces in Visayas (STRIVE) Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-05	01-Mar-07	50000.00	=""	="GOVERNMENT OF THE PHILIPPINES"	13-Feb-08 05:44 PM	

+="CN60499"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	01-Nov-07	01-Nov-07	50683.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 05:44 PM	

+="CN60500"	"Renovations of PMOB"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	23-Aug-05	31-Mar-06	56859.75	=""	="SAKHIWE CONSULTANTS PTY LTD"	13-Feb-08 05:44 PM	

+="CN60522"	"ABMEC TAG - E Zambotti"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	03-Feb-06	30-Jun-07	58075.00	=""	="ZAMBOTTI, ELIZABETH PAULINE"	13-Feb-08 05:46 PM	

+="CN60524"	"CON 13763 MDI C1 Media Council Contract"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-May-05	01-Feb-07	58912.90	=""	="MEDIA COUNCIL OF PNG"	13-Feb-08 05:47 PM	

+="CN60071"	" 3 x Data Entry Operators "	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	20-Sep-07	20-Mar-08	66099.00	=""	="Manpower Services"	13-Feb-08 05:49 PM	

+="CN60552"	"Fit out Construction Works"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-Jun-06	30-Nov-07	57671.02	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 05:49 PM	

+="CN60575"	"Provision of Legal Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-Jul-06	31-Dec-06	46178.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Feb-08 05:52 PM	

+="CN60585"	"Lease for Program Manager's Residence"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Dec-06	15-Dec-08	65193.23	=""	="ISLAND PROPERTY"	13-Feb-08 05:53 PM	

+="CN60590"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	30-Jun-07	42900.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:54 PM	

+="CN60591"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	30-Jun-07	48206.40	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:54 PM	

+="CN60592"	"Philippines Development Forum Working Group On Governance and Anti-Corruption Consultant"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	15-Mar-08	42356.14	=""	="Heidi Mendoza  "	13-Feb-08 05:54 PM	

+="CN60598"	"Provision of Legal Services AGS"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jan-07	31-Jul-07	68579.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Feb-08 05:55 PM	

+="CN60599"	"PALS 2 Quality Assurance Contractor - Basile Gilbert"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	14-Mar-07	14-Feb-08	47631.31	=""	="GILBERT, BASILE"	13-Feb-08 05:55 PM	

+="CN60600"	"AMENCA Review Contractor: Peter Zoller"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	14-Feb-07	31-Dec-07	48400.00	=""	="ZOLLER, PETER LEON"	13-Feb-08 05:55 PM	

+="CN60602"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	26-Feb-07	30-Jun-07	45144.00	=""	="GREYTHORN PTY LTD"	13-Feb-08 05:56 PM	

+="CN60603"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-07	30-Jun-07	52800.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:56 PM	

+="CN60605"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-07	30-Jun-07	70400.00	=""	="GREYTHORN PTY LTD"	13-Feb-08 05:56 PM	

+="CN60606"	"Outsourcing Australian Scholarships Admin work and provision of ELT for pre-ADS Awardees"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	14-Feb-07	31-Dec-07	68435.01	=""	="ENDYMION LTD (TRADING AS VIENTIANE COLLEGE)"	13-Feb-08 05:56 PM	

+="CN60609"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Mar-07	30-Jun-07	47432.00	=""	="CCS INDEX PTY LTD"	13-Feb-08 05:56 PM	

+="CN60611"	"Consumer Council of Fiji"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	30-Apr-10	68534.88	=""	="CONSUMER COUNCIL OF FIJI"	13-Feb-08 05:57 PM	

+="CN60614"	"Jessica Kenway - M&E specialist for RUDEP III Design"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	02-Apr-07	30-Sep-07	40700.00	=""	="ROBERTS EVALUATION PTY LTD"	13-Feb-08 05:57 PM	

+="CN60616"	"National Centre for Small and Micro Enterprises Development"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-May-07	30-Jun-08	76875.86	=""	="NATIONAL CENTRE FOR SMALL AND MICROENTERPRISE DEVELOPMENT"	13-Feb-08 05:57 PM	

+="CN60617"	"Capital Markets Development Authority"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	23-Apr-07	15-Jan-09	76409.75	=""	="CAPITAL MARKETS DEVELOPMENT AUTHORITY"	13-Feb-08 05:57 PM	

+="CN60619"	"Fiji Association of the Deaf"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-Apr-07	30-Apr-10	68534.88	=""	="FIJI ASSOCIATION OF THE DEAF"	13-Feb-08 05:58 PM	

+="CN60621"	"Transparency International Fiji"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-Apr-07	30-Jun-10	69081.98	=""	="TRANSPARENCY INTERNATIONAL FIJI"	13-Feb-08 05:58 PM	

+="CN60625"	"Marie Stopes International Pacific"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-May-07	31-Dec-08	47424.22	=""	="MARIE STOPES INTERNATIONAL PACIFIC"	13-Feb-08 05:58 PM	

+="CN60630"	"FRIENDS (Core Funding)"	="AusAid"	13-Feb-08	="Organisations and Clubs"	05-Dec-05	30-Dec-08	68545.32	=""	="FRIEND"	13-Feb-08 05:59 PM	

+="CN60634"	"John Rawden - Short Term Adviser for Procurement Activity Design"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	23-Feb-07	31-Aug-07	47120.42	=""	="PLANS & SOLUTIONS LIMITED"	13-Feb-08 05:59 PM	

+="CN60636"	"Health Infrastructure Assets Survey - Steve Badman"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-May-07	30-Jun-08	47165.94	=""	="BADMAN, STEVE"	13-Feb-08 06:00 PM	

+="CN60638"	"White Paper New Measures - Health Sector  Consultancy in Pakistan"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jun-07	31-Aug-07	46690.44	=""	="CHAMBERLIN, CHRISTOPHER"	13-Feb-08 06:00 PM	

+="CN60654"	"Ginigoada Bisnis Development Foundation"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	01-Dec-07	41876.05	=""	="GINIGOADA BISNIS DEVELOPMENT FOUNDATION INC"	13-Feb-08 06:02 PM	

+="CN60661"	"Management Advisory Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	22-Feb-07	30-Jun-08	71896.00	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	13-Feb-08 06:03 PM	

+="CN60688"	"Design of AusAID Development Research Peer Review Mechanism"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Mar-07	31-Dec-07	69687.25	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	13-Feb-08 06:07 PM	

+="CN60689"	"Collaborative Design of ADRP Funding Mechanisms and Management Arrangements"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	30-Jun-07	70180.00	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	13-Feb-08 06:07 PM	

+="CN60691"	"The Capacity Development Panel of Experts"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	05-Apr-06	03-Apr-11	56612.60	=""	="BASER, HEATHER"	13-Feb-08 06:07 PM	

+="CN60707"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Marketing and distribution"	04-Jan-08	04-Jan-08	46125.00	=""	="HMA Blaze"	13-Feb-08 06:35 PM	

+="CN60709"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	11-Jan-08	11-Jan-08	51800.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 06:35 PM	

+="CN60714"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	07-Jan-08	04-Jan-09	74536.00	=""	="Sherborne Consulting"	13-Feb-08 06:42 PM	

+="CN60716"	"Data Entry"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	28-Jan-08	25-Jan-09	49174.40	=""	="Peoplebank Australia Pty Ltd"	13-Feb-08 06:54 PM	

+="CN60751"	"Contractor"	="CrimTrac"	14-Feb-08	="Temporary personnel services"	08-Jan-08	13-Jun-08	68640.00	=""	="Finite IT Recruitment Solutions"	14-Feb-08 10:43 AM	

+="CN60756"	"Contract administration staff"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	18-Jun-07	21-Dec-07	69492.18	=""	="Green  Green"	14-Feb-08 10:43 AM	

+="CN59902"	"Training"	="Workplace Ombudsman"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	29-Feb-08	49581.80	=""	="Justitia"	14-Feb-08 11:09 AM	

+="CN60767"	"Supply of radio communication equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	31-Dec-07	70244.46	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:49 AM	

+="CN60811"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	14-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	30-Jan-08	79742.63	=""	="Hewlett Packard Australia Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60818"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	08-Jan-08	07-Jan-11	68875.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:27 PM	

+="CN60825"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	76621.25	=""	="TELSTRA (VIC)"	14-Feb-08 03:37 PM	

+="CN60823-A1"	"Services to develop and implement an e-Channel Agenda for Centrelink"	="Centrelink"	14-Feb-08	="Management advisory services"	13-Feb-08	30-Jun-08	77000.00	=""	="Smartnet Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60830"	"temporary staff wages"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Dec-08	40000.00	=""	="CHOICE ONE"	14-Feb-08 03:37 PM	

+="CN60831"	"WRS Scribe Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	30-Jun-08	50000.00	=""	="WORDSWORTH WRITING (WWW)"	14-Feb-08 03:37 PM	

+="CN60840"	""Accommodation, catering for Management Devt prog""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Aug-07	24-Dec-07	57868.18	=""	="RYDGES EAGLE HAWK RESORT"	14-Feb-08 03:38 PM	

+="CN60841"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Aug-07	30-Jun-08	40500.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 03:39 PM	

+="CN60848"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	30-Nov-10	70621.71	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:39 PM	

+="CN60849"	"General Audit Services - Service 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Jun-10	43461.00	=""	="RSM BIRD CAMERON"	14-Feb-08 03:40 PM	

+="CN60857"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	15-Aug-07	30-Jun-08	48158.70	=""	="TELSTRA (VIC)"	14-Feb-08 03:41 PM	

+="CN60860"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	60578.10	=""	="TELSTRA (VIC)"	14-Feb-08 03:41 PM	

+="CN60869"	"Legal advice costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	50000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	14-Feb-08 03:42 PM	

+="CN60875"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	14-Aug-07	30-Nov-10	47087.50	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:43 PM	

+="CN60876"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	14-Aug-07	30-Nov-10	60000.00	=""	="MANPOWER"	14-Feb-08 03:43 PM	

+="CN60878"	"SWAW promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	30-Jun-08	50000.00	=""	="INKSPOTT PROMOTIONS"	14-Feb-08 03:43 PM	

+="CN60879"	"SWAW promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	30-Jun-08	50000.00	=""	="CHILLI PROMOTIONS PTY LTD"	14-Feb-08 03:43 PM	

+="CN60882"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Aug-07	30-Jun-08	58190.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60885"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	60500.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60894"	"Bulk PO for postage of Employment Extra 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIA POST (9821984 ACC.ONLY)"	14-Feb-08 03:45 PM	

+="CN60896"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Dec-06	04-Dec-09	54556.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:46 PM	

+="CN60900"	"Forensic audit of Northern Star CDEP"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	20-Aug-07	45136.75	=""	="WALTER AND TURNBULL PTY LTD"	14-Feb-08 03:46 PM	

+="CN60910"	"Freight charges 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	26-Jul-07	30-Jun-08	64000.00	=""	="AUSTRALIAN AIR EXPRESS"	14-Feb-08 03:47 PM	

+="CN60909"	"Services in relation to coordinating and publishing web content on internal and external AFP websites, and undertaking web management projects and reviews as required"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-07	31-Aug-07	58960.00	=""	="Aurec Pty Ltd"	14-Feb-08 03:48 PM	

+="CN60916"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	27-Jul-07	30-Jun-08	65000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 03:48 PM	

+="CN60920"	"UPGRADE WORKS TO RIGHTFAX SERVER"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	27-Jul-07	10-Aug-07	67432.20	=""	="AXIENT PTY LTD"	14-Feb-08 03:49 PM	

+="CN60921"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	22-Jan-08	30-Jun-08	72173.20	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60926"	"Lawpoint Galloway - GEERS ASIC Reports"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Aug-07	03-Aug-07	50000.00	=""	="LAWPOINT GALLOWAYS"	14-Feb-08 03:50 PM	

+="CN60929"	"WRS Scribe Services - 07/08 RMC"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	50000.00	=""	="RECRUITMENT MANAGEMENT COMPANY"	14-Feb-08 03:50 PM	

+="CN60930"	"Employment of welfare to work job"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Aug-07	16-Jun-08	77910.00	=""	="RESTAURANT & CATERING INDUSTRY ASSO"	14-Feb-08 03:50 PM	

+="CN60938"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	71000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 03:51 PM	

+="CN60943"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	31-Jul-07	19-Dec-11	45000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:52 PM	

+="CN60947"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	01-Aug-07	30-Jun-09	51198.62	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 03:52 PM	

+="CN60957"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	02-Aug-07	30-Jun-08	54670.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:53 PM	

+="CN60961"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Aug-07	30-Jun-08	47729.00	=""	="COMPUTER ASSOCIATES PTY LTD"	14-Feb-08 03:53 PM	

+="CN60963"	"WRS Scribe Services - Tony De Luca 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	03-Aug-07	30-Jun-08	50000.00	=""	="TONVIA P/L (Tony&Sylvia De Luca)"	14-Feb-08 03:53 PM	

+="CN60969"	"Employment Extra printing and distribution 07-08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	03-Aug-07	30-Jun-08	70000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 03:54 PM	

+="CN60978"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	01-Dec-07	70700.00	=""	="Ryder Shop & Office Fitting Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60986"	"DEWR expo stand hire at EOC Career Expos"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Oct-07	22-Aug-08	60687.00	=""	="EOC GROUP PTY LTD"	14-Feb-08 03:55 PM	

+="CN60998"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jan-08	30-Sep-08	42453.26	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 03:57 PM	

+="CN60999"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jan-08	30-Jun-08	67485.00	="ICT"	="IT MATTERS"	14-Feb-08 03:57 PM	

+="CN61004"	"Graduate Training - Policy Formulation and Advice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	19-Sep-07	19-Oct-07	59180.00	=""	="TIMMINS STEWART PTY LTD"	14-Feb-08 03:58 PM	

+="CN61005"	"Pallet Storage Communications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Sep-07	30-Sep-08	49540.00	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 03:58 PM	

+="CN61032"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	55863.50	=""	="SOFTWARE DESIGN ASSOCIATES PTY"	14-Feb-08 04:01 PM	

+="CN61053"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	21-Aug-07	30-Jun-08	74441.40	=""	="TELSTRA (VIC)"	14-Feb-08 04:04 PM	

+="CN61056"	"DEWR - Brindabella Park - Proposed Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Aug-07	31-Dec-07	71830.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:04 PM	

+="CN61057"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	40000.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:05 PM	

+="CN61061"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	46200.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:05 PM	

+="CN61072"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	17-Aug-07	30-Sep-08	40000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:07 PM	

+="CN61081"	"WRS Media Monitors - 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	28-Aug-07	30-Jun-08	50000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:08 PM	

+="CN61083"	"Rental for the National Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	27-Feb-08	49115.57	=""	="FOCUS FIRST NATIONAL REAL ESTATE"	14-Feb-08 04:08 PM	

+="CN61087"	"Payment of AFP character checks invoices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Aug-07	30-Jun-08	40000.00	=""	="AUST FEDERAL POLICE"	14-Feb-08 04:08 PM	

+="CN61089"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	30-Aug-07	30-Jun-08	41349.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:09 PM	

+="CN61119"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	03-Dec-07	30-Jun-08	62357.83	=""	="CANDLE AUSTRALIA LTD"	14-Feb-08 04:12 PM	

+="CN61126"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	80000.00	=""	="LLOYD'S REGISTER QUALITY ASSURANCE"	14-Feb-08 04:13 PM	

+="CN61128"	"Provision for stationery 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	05-Jul-07	30-Jun-08	48000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	14-Feb-08 04:14 PM	

+="CN61129"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	70000.00	=""	="HSEQ SOLUTIONS PTY LTD"	14-Feb-08 04:14 PM	

+="CN61139"	"Provision of Bulk Mailhouse Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	56672.45	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 04:15 PM	

+="CN61145"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	09-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:16 PM	

+="CN61149"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	10-Jul-07	58500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:16 PM	

+="CN61160"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	48000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61161"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	30-Jun-08	43500.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61162"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	71000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61165"	"PropNSWSyd ElizabethSt"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Dec-15	63663.60	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:18 PM	

+="CN61167"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	64850.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61168"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Sep-08	70000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:19 PM	

+="CN61169"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	56000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61172"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	50000.00	=""	="GLOBAL SAFETY STRATEGIES"	14-Feb-08 04:19 PM	

+="CN61176"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	70000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:20 PM	

+="CN61177"	"Lease: Paris Apartment - OECD Minister-"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	03-Jul-07	14-Mar-08	56525.96	=""	="UNITED GROUP SERVICES*BLOCKED*"	14-Feb-08 04:20 PM	

+="CN61180"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	44220.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:20 PM	

+="CN61186"	"OASCC Training courses/seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:21 PM	

+="CN61187"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	50000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:21 PM	

+="CN61190"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	02-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:21 PM	

+="CN61201"	"cabcharges FY 2007/2008."	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	02-Jul-07	30-Jun-08	75900.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 04:23 PM	

+="CN61208"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:24 PM	

+="CN61215"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	66000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:25 PM	

+="CN61217"	"Professional services - Comcare asbestos claims"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	30-Jun-08	50000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 04:25 PM	

+="CN61219"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	30-Sep-07	49376.25	=""	="MASTER CARPETS (ACT) P/L"	14-Feb-08 04:25 PM	

+="CN61221"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	09-Jan-09	50000.00	=""	="TBN SOLUTIONS PTY LTD"	14-Feb-08 04:25 PM	

+="CN61224"	"OFSC printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Jun-08	50000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:26 PM	

+="CN61225"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	66000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:26 PM	

+="CN61228"	"OFSC temprorary staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Jun-08	70000.00	=""	="THE GREEN & GREEN GROUP"	14-Feb-08 04:26 PM	

+="CN61233"	"APS Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	47300.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61234"	"APS Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	48000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61235"	"WRS Courses 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	50000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61240"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Jul-07	30-Jun-08	72930.00	=""	="DATA#3 LTD"	14-Feb-08 04:28 PM	

+="CN61250"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Jan-08	30-Jun-08	79200.00	="ITC"	="FINITE RECRUITMENT PTY LTD"	14-Feb-08 04:29 PM	

+="CN61264"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	03-Dec-07	30-Jun-08	73360.00	=""	="MANPOWER SERVICES"	14-Feb-08 04:31 PM	

+="CN61265"	"Contract Staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	07-Sep-07	74000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:31 PM	

+="CN61284"	"Internet based media monitoring service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	40000.00	=""	="AAP INFORMATION SERVICES P/L"	14-Feb-08 04:33 PM	

+="CN61286"	"Car Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	45000.00	=""	="COMCAR"	14-Feb-08 04:34 PM	

+="CN61297"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	45000.00	=""	="SPARKE HELMORE"	14-Feb-08 04:35 PM	

+="CN61305"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	12-Jul-07	30-Jun-08	70987.87	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:36 PM	

+="CN61323"	"NRP Project Management Fee and Adjustment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	11-Jul-07	11-Jul-07	56067.00	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:38 PM	

+="CN61349"	"SERVER AND STORAGE H/W ELECTRICAL  INSTALLATIONS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	17-Jul-07	30-Jun-08	53977.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 04:40 PM	

+="CN61375-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	11-Feb-08	28-Mar-08	75000.00	=""	="WalterTurnbull Pty Ltd"	14-Feb-08 04:42 PM	

+="CN61391-A1"	" Engagement of staff to assist with IT Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	22-Jan-08	30-Apr-08	49857.50	="ANAOAM2007/294"	="KPMG Peat Marwick - ACT"	14-Feb-08 04:44 PM	

+="CN61397-A1"	" Accommodation costs for 2 Secondees from Papua New Guinea - Sydney "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Lease and rental of property or building"	28-Jan-08	31-Dec-08	60000.00	=""	="The Apartment Service Pty Ltd"	14-Feb-08 04:44 PM	

+="CN61399-A1"	"Print Management and Publishing of the Managing Parliamentary Workflow - Better Practice Guide."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Printing"	29-Jan-08	30-Apr-08	40000.00	=""	="hma Blaze Pty Limited"	14-Feb-08 04:44 PM	

+="CN61405"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	30-Nov-10	56500.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:45 PM	

+="CN61404"	"Design and Development of Staff Training Program"	="Department of Immigration and Citizenship"	14-Feb-08	="Employee education"	23-Jan-08	30-Apr-08	40480.00	=""	="Yellow Edge Pty Ltd"	14-Feb-08 04:45 PM 

--- /dev/null
+++ b/admin/partialdata/10Feb2008to14Feb2008val80000to300000.xls
@@ -1,1 +1,378 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN59372"	"M113 CARRIER UPGRADE HIAB CRANE PARTS"	="Department of Defence"	11-Feb-08	="Armoured fighting vehicles"	08-Feb-08	02-May-08	82193.45	=""	="HIAB AUSTRALIA PTY LTD"	11-Feb-08 08:51 AM	

+="CN59376"	"R2 SERVICE AND RECTIFICATIONS TO BLACK HAWK A25-106."	="Defence Materiel Organisation"	11-Feb-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	149476.29	=""	="BAE SYSTEMS AUSTRALIA"	11-Feb-08 09:16 AM	

+="CN59378"	"Compliance workshops on VAPAC / VCES - Phase 2"	="Department of Veterans' Affairs"	11-Feb-08	="Management advisory services"	05-Feb-08	31-Mar-08	80000.00	="DaS/2007"	="Hoffmann Donohue Pty Ltd"	11-Feb-08 09:25 AM	

+="CN59382-A1"	"Provision of advisory services to DVA on Compensation Medical Issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	101000.00	=""	="Bashir Financial Services Pty Ltd"	11-Feb-08 09:26 AM	

+="CN59383-A1"	"Provision of advisory services to DVA on Compensation Medical Issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	137144.00	=""	="Ellipsoid Solutions Pty Ltd"	11-Feb-08 09:26 AM	

+="CN59384-A1"	"Provision of advisory services to DVA on Compensation Medical Issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	101654.00	=""	="Glamorgan Trust"	11-Feb-08 09:26 AM	

+="CN59385-A1"	"Provision of advisory services to DVA on Compensation Medical Issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	101654.00	=""	="Kuhl Engineering Consultant"	11-Feb-08 09:26 AM	

+="CN59388"	"Deed of Agreement for financial assistance for Veteran access to Home & Community Care (HACC) program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	218550.00	=""	="Department of Human Services"	11-Feb-08 09:27 AM	

+="CN59389"	"Deed of Agreement for financial assistance for Veteran access to Home & Community Care (HACC) program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	288931.00	=""	="QUEENSLAND HEALTH"	11-Feb-08 09:27 AM	

+="CN59390"	"Deed of Agreement for financial assistance for Veteran access to Home & Community Care (HACC) program"	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	86954.00	=""	="Department of Health SA"	11-Feb-08 09:27 AM	

+="CN59392-A1"	"For the provision of advisory services to DVA on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	194000.00	=""	="Barbara Fitzgibbon Pty Ltd"	11-Feb-08 09:27 AM	

+="CN59393-A1"	"For the provision of advisory services to DVA on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	194008.00	=""	="Rachdan Pty Ltd"	11-Feb-08 09:27 AM	

+="CN59394-A1"	"For the provision of advisory services to DVA on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	31-Aug-08	194008.00	=""	="Rossiter Consulting Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59395"	"Lease VAN Tweed Heads"	="Department of Veterans' Affairs"	11-Feb-08	="Utilities"	01-May-07	30-Apr-09	189280.00	=""	="Centro Property Group"	11-Feb-08 09:28 AM	

+="CN59397-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	147310.00	=""	="Carstens Investments Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59398-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	111982.00	=""	="D.I. Monsour Medical Practice Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59399-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	147310.00	=""	="SDormer Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59400-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	147310.00	=""	="Farcove Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59401-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	147310.00	=""	="Ghost Crab Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59402-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	147310.00	=""	="Scianalyst Aust Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59403"	"Medical advice to Compensation."	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-05	30-Jun-08	104583.00	=""	="Wallawee Pty Ltd"	11-Feb-08 09:28 AM	

+="CN59404-A1"	"Medical advice on compensation medical issues"	="Department of Veterans' Affairs"	11-Feb-08	="Healthcare Services"	01-Jul-06	31-Aug-08	153655.00	=""	="H L Ho Medical Pty Ltd"	11-Feb-08 09:29 AM	

+="CN59405"	"Payment for veteran access to HACC services."	="Department of Veterans' Affairs"	11-Feb-08	="Domestic and personal assistance"	01-Jul-06	30-Jun-09	85841.00	=""	="The State of Western Australia represented by the Western Australian Department of Health"	11-Feb-08 09:29 AM	

+="CN59414"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Feb-07	30-Jun-08	266475.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 09:59 AM	

+="CN59417-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Feb-07	30-Jun-08	187825.00	=""	="Greythorn Pty Ltd"	11-Feb-08 10:04 AM	

+="CN59422"	" PRESSURISED SET, GAS CONSTANT FLOW RATE; AVIATION GAS SERVICE STATION "	="Defence Materiel Organisation"	11-Feb-08	="Aviation fuel"	18-Dec-07	25-Apr-08	163372.00	=""	="FITZROY ENGINEERING GROUP LTD"	11-Feb-08 10:10 AM	

+="CN59441"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	05-Feb-07	31-Aug-07	125851.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 10:38 AM	

+="CN59444-A4"	"Property Lease Alice Springs NT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Feb-03	31-Aug-08	175283.00	=""	="Alice Springs Airport Pty Limited"	11-Feb-08 10:42 AM	

+="CN59452-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	05-Feb-07	31-Dec-07	230918.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:04 AM	

+="CN59467-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	05-Feb-07	30-Jun-09	267135.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 11:23 AM	

+="CN59491-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Mar-07	30-Sep-08	291720.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 12:09 PM	

+="CN59078"	"Purchase of Analyst Notebook Software Licenses."	="Australian Securities and Investments Commission"	11-Feb-08	="Financial analysis software"	01-Dec-07	31-Jan-08	99990.00	=""	="Visual Analysis"	11-Feb-08 12:10 PM	

+="CN59069"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Jan-08	30-Jun-09	120000.00	=""	="Mr Mark A. Robins"	11-Feb-08 12:12 PM	

+="CN59040"	"Counsel Fees"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Oct-07	30-Jun-08	80000.00	=""	="Mr John Vaughan"	11-Feb-08 12:16 PM	

+="CN59504-A2"	"Property lease Brisbane QLD"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	21-Jan-08	20-Jan-09	83160.00	=""	="Brisbane Airport Corporation Pty Ltd"	11-Feb-08 01:31 PM	

+="CN59511-A5"	" Property lease Brisbane QLD "	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	18-Jun-07	30-Jun-11	139350.65	=""	="Brisbane Airport Corporation Pty Ltd"	11-Feb-08 01:44 PM	

+="CN59513"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	16-Apr-07	30-Jun-08	269500.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:46 PM	

+="CN59514-A5"	"Provision of Management Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-09	103933.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 01:49 PM	

+="CN59519-A4"	"Property Lease Cairns QLD"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	08-Aug-05	28-Feb-10	154825.47	=""	="Cairns Airport Pty Ltd"	11-Feb-08 01:56 PM	

+="CN59525"	".NET Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	30-Jan-08	28-Mar-08	89523.58	="T2004/0699"	="SMS Management & Technology"	11-Feb-08 02:01 PM	

+="CN59532"	"Change Management"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	02-Feb-08	30-Jun-08	91300.00	="T2004/0699"	="VOLANTE GROUP LTD"	11-Feb-08 02:02 PM	

+="CN59531-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	26-Apr-07	30-Jun-08	239580.00	=""	="Ross Human Directions Limited"	11-Feb-08 02:03 PM	

+="CN59544"	"Project Manager"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Management advisory services"	14-Jan-08	30-Jun-08	115000.00	="TRS06/017"	="DATA#3 LTD"	11-Feb-08 02:04 PM	

+="CN59547"	"PROPERTY MANAGEMENT SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	15-Nov-07	11-Dec-09	104193.29	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:05 PM	

+="CN59549"	"Contract Service Fees Nov 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Nov-07	04-Apr-08	188602.42	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:05 PM	

+="CN59550"	"Office Services Charges Nov 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Nov-07	04-Apr-08	147676.29	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:05 PM	

+="CN59554"	"PROPERTY MANAGEMENT SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	15-Dec-07	11-Dec-09	104193.29	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:06 PM	

+="CN59557"	"Office Services Charges Dec 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Dec-07	04-Apr-08	115913.18	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:06 PM	

+="CN59560"	"Contract Service Fees Dec 2007"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Dec-07	04-Apr-08	203489.07	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:06 PM	

+="CN59561"	"Contract Service Fees Jan 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Business administration services"	21-Jan-08	04-Apr-08	183901.43	="TRS03/007"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	11-Feb-08 02:07 PM	

+="CN59563"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	06-Feb-08	10-Feb-08	249600.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	11-Feb-08 02:07 PM	

+="CN59565"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	06-Feb-08	31-Mar-09	189200.00	=""	="HUBSEN PTY LTD"	11-Feb-08 02:07 PM	

+="CN59566"	"PROPERTY MANAGEMENT SERVICES"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	15-Jan-08	11-Dec-09	104193.29	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59567"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	06-Feb-08	10-Feb-09	298479.60	=""	="Ambit IT&T Recruitment Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59570"	"PROPERTY SERVICES MELB AIRPORT"	="Department of Infrastructure Transport Regional Development and Local Government"	11-Feb-08	="Real estate services"	22-Jan-08	11-Dec-09	110000.00	="TRS02/011"	="United Group Services Pty Ltd"	11-Feb-08 02:07 PM	

+="CN59572"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	08-Feb-08	17-Feb-09	198000.00	=""	="ASTUTE TECHNOLOGIES PTY LTD"	11-Feb-08 02:07 PM	

+="CN59575"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	04-Feb-08	04-Feb-09	244200.00	=""	="ICON RECRUITMENT"	11-Feb-08 02:08 PM	

+="CN59576"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	05-Feb-08	14-Feb-09	209000.00	=""	="COMPAS PTY LTD"	11-Feb-08 02:08 PM	

+="CN59584"	"LEGAL COSTS MYM 33166"	="Australian Taxation Office"	11-Feb-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	07-Feb-08	152500.00	=""	="ANZ BANKING GROUP LTD"	11-Feb-08 02:09 PM	

+="CN59591"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	08-Feb-07	30-Jun-07	88935.00	=""	="OAKTON AA SERVICES PTY LTD"	11-Feb-08 02:12 PM	

+="CN59592"	"IT Contractor"	="Australian Taxation Office"	11-Feb-08	="Engineering and Research and Technology Based Services"	06-Feb-08	08-Feb-09	219360.00	=""	="InfoRail Pty Ltd"	11-Feb-08 02:12 PM	

+="CN59601-A2"	"Property Lease Fairbairn ACT"	="Australian Federal Police"	11-Feb-08	="Lease and rental of property or building"	01-Jan-07	30-Jun-08	123688.00	=""	="Canberra International Airport Pty Ltd"	11-Feb-08 02:36 PM	

+="CN59612-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	17-Apr-07	30-Jun-08	202125.00	=""	="Ambit Group Pty Limited"	11-Feb-08 02:52 PM	

+="CN57119"	"Development of creative concepts as part of the Drought Assistance Campaign"	="Department of Human Services"	11-Feb-08	="Advertising campaign services"	01-Jul-07	30-Jun-08	271000.00	=""	="George Patterson Y & R"	11-Feb-08 03:09 PM	

+="CN59626"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-08	215050.00	=""	="Greythorn Pty Ltd"	11-Feb-08 03:19 PM	

+="CN59634"	"Counsel fees"	="Australian Securities and Investments Commission"	11-Feb-08	="Legal services"	01-Nov-07	30-Jun-09	100000.00	=""	="Michael J Slattery QC"	11-Feb-08 03:28 PM	

+="CN59647-A2"	" Information Technology Application Building Services "	="Department of Immigration and Citizenship"	11-Feb-08	="Application programming services"	01-Jul-06	30-Jun-08	84700.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 03:45 PM	

+="CN59655"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-08	291500.00	=""	="Greythorn Pty Ltd"	11-Feb-08 03:59 PM	

+="CN59658"	"Information Technology Program Administration Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Urban project or program administration or management services"	01-Jul-06	30-Jun-08	275000.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:03 PM	

+="CN59656"	"engineering services"	="Defence Materiel Organisation"	11-Feb-08	="Professional engineering services"	03-Dec-07	30-Dec-08	285002.08	=""	="JACOBS  AUSTRALIA"	11-Feb-08 04:03 PM	

+="CN59659"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-08	166953.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 04:05 PM	

+="CN59662"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	02-Apr-07	30-Jun-08	258500.00	=""	="Finite Recruitment Pty. Ltd."	11-Feb-08 04:15 PM	

+="CN59678"	"Business Analysis Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Information technology consultation services"	31-Jul-06	31-Dec-07	226050.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:47 PM	

+="CN59681-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-08	269638.00	=""	="Greythorn Pty Ltd"	11-Feb-08 04:53 PM	

+="CN59685"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	12-Mar-07	30-Jun-08	204050.00	=""	="Greythorn Pty Ltd"	11-Feb-08 05:02 PM	

+="CN59686"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	11-Feb-08	="Human resources services"	21-Mar-07	31-Dec-07	163900.00	=""	="Paxus Australia Pty Limited"	11-Feb-08 05:05 PM	

+="CN59708-A1"	"Provision of Certificate IV Training and Assessment Courses"	="Australian Federal Police"	11-Feb-08	="Educational certificates or diplomas"	07-Nov-07	30-Jun-08	136032.00	="APS Commission 2005/14"	="CIT Solutions Pty Ltd"	11-Feb-08 09:53 PM	

+="CN59711-A4"	"Property lease Cairns, Queensland"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	20-Sep-06	31-Aug-09	89816.05	=""	="Cairns Airport Pty Ltd"	12-Feb-08 08:13 AM	

+="CN59717-A1"	"Property Lease Gold Coast Qld"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	30-Apr-06	31-Aug-08	217675.00	=""	="Gold Coast Airport Pty Limited"	12-Feb-08 08:58 AM	

+="CN59755"	"Property Lease Vehicle Parking Adelaide SA"	="Australian Federal Police"	12-Feb-08	="Lease and rental of property or building"	01-Aug-06	31-Aug-12	210000.00	=""	="MTAA Superanuation Fund(55 Currie Street; Adelaide)Property Pty Limited"	12-Feb-08 11:09 AM	

+="CN59775"	"Conference Facilities for August 07 Meeting"	="Australian Research Council"	12-Feb-08	="Hotels and lodging and meeting facilities"	15-Aug-07	24-Aug-07	109885.00	=""	="Rydges Capital Hill"	12-Feb-08 01:19 PM	

+="CN59779"	"Internal Audit Services"	="Australian Research Council"	12-Feb-08	="Accounting and auditing"	10-Sep-07	10-Sep-10	192608.00	="RFT020"	="Deloitte Touche Tohmatsu"	12-Feb-08 01:33 PM	

+="CN59788"	"Consultant for DBA and Development of RMS"	="Australian Research Council"	12-Feb-08	="Web platform development software"	22-Oct-07	17-Oct-08	168087.00	="ATM24"	="Southern Cross Computing"	12-Feb-08 01:51 PM	

+="CN59789"	"Office Refurbishment FMC Level 11, 167 Macquarie St, Sydney & Maintenance FMC Level 12, Melbourne"	="Federal Magistrates Court"	12-Feb-08	="Refurbishing services"	01-Jan-08	31-Jan-08	211778.23	=""	="Buildcorp Interiors Pty Ltd"	12-Feb-08 01:55 PM	

+="CN59795"	"Provision of Payroll Processing and Reporting"	="Australian Research Council"	12-Feb-08	="Payroll accounting services"	01-Nov-07	01-Nov-10	126095.00	="ATM21"	="Ross Logic Outsourcing"	12-Feb-08 02:15 PM	

+="CN59797"	"Evaluation of Questacon Outreach Programs"	="Questacon"	12-Feb-08	="Economic or financial evaluation of projects"	06-Feb-08	30-Dec-08	105960.00	=""	="NovumAVI"	12-Feb-08 02:20 PM	

+="CN59813"	"Yearly Collaboration User Licenses & Yearly Maintenance"	="Federal Magistrates Court"	12-Feb-08	="Integrated maintenance information systems"	01-Jan-08	31-Jan-08	120923.66	=""	="IBM Australia Limited"	12-Feb-08 03:16 PM	

+="CN59821"	"Vehicle Leases"	="Federal Magistrates Court"	12-Feb-08	="Vehicle rental"	01-Jan-08	31-Jan-08	95583.69	=""	="Lease Plan"	12-Feb-08 03:25 PM	

+="CN59833"	"Federal Magistrates Judgement Writing Program August 2007"	="Federal Magistrates Court"	12-Feb-08	="University and colleges"	01-Jan-08	31-Jan-08	179196.00	=""	="National Judicial College of Australia"	12-Feb-08 03:56 PM	

+="CN59836"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	12-Feb-08	="Transcribing services"	01-Jan-08	31-Jan-08	143543.83	=""	="National Transcription Services Pty Ltd"	12-Feb-08 04:01 PM	

+="CN59839-A2"	" Security software - Notebooks "	="Office of the Director of Public Prosecutions"	12-Feb-08	="Software maintenance and support"	15-Jan-08	14-Feb-12	89323.95	=""	="TPP Group"	12-Feb-08 04:13 PM	

+="CN59841"	"Airfares"	="Federal Magistrates Court"	12-Feb-08	="Commercial aeroplane travel"	01-Jan-08	31-Jan-08	112916.45	=""	="Qantas - QAEBTA"	12-Feb-08 04:18 PM	

+="CN59869"	" AIRCRAFT SPARES  NSN 1680-66-133-8010 , WIRING INST ESSS KIT , QTY 4. "	="Defence Materiel Organisation"	12-Feb-08	="Military transport helicopters"	12-Feb-08	23-Nov-08	161323.23	=""	="ASIA PACIFIC AEROSPACE"	12-Feb-08 05:08 PM	

+="CN59881"	"Review of National Centre for Gynaecological Cancer resources"	="Cancer Australia"	12-Feb-08	="Business and corporate management consultation services"	28-Nov-07	16-Jun-08	101706.00	=""	="GSB Consulting & Communication"	12-Feb-08 06:02 PM	

+="CN59884"	"Fitout Project - Hobart"	="Office of the Director of Public Prosecutions"	12-Feb-08	="Building construction and support and maintenance and repair services"	15-Jan-08	14-Feb-09	224288.00	=""	="Fairbrother Pty Ltd"	12-Feb-08 06:19 PM	

+="CN59903-A6"	"Property Lease Perth WA"	="Australian Federal Police"	13-Feb-08	="Lease and rental of property or building"	25-Jan-05	31-Aug-10	104283.00	=""	="Westralia Airports Corporation Pty Limited"	13-Feb-08 10:16 AM	

+="CN59921"	"Fitout Works"	="Bureau of Meteorology"	13-Feb-08	="General building construction"	21-Jan-08	31-Jan-08	160748.50	=""	="Eveready Partitions P/L"	13-Feb-08 10:58 AM	

+="CN59936"	"Removals and Storage"	="Bureau of Meteorology"	13-Feb-08	="Transportation and Storage and Mail Services"	07-Feb-08	29-Feb-08	159643.07	=""	="TOLL TRANSITIONS"	13-Feb-08 11:00 AM	

+="CN59939"	"Rain Gauge & Evap Pan"	="Bureau of Meteorology"	13-Feb-08	="Measuring and observing and testing instruments"	21-Jan-08	21-Jan-08	162564.33	=""	="Wharington International Pty Ltd"	13-Feb-08 11:01 AM	

+="CN59940"	"Hydrographic Training Consultancy"	="Bureau of Meteorology"	13-Feb-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Sep-08	87780.00	=""	="Paul Langshaw"	13-Feb-08 11:01 AM	

+="CN59946"	"Supply and manufacturer of radar tower at New Cale"	="Bureau of Meteorology"	13-Feb-08	="Building and Construction and Maintenance Services"	05-Feb-08	31-Mar-08	179784.00	=""	="Macmahon Mining Services Pty Ltd"	13-Feb-08 11:01 AM	

+="CN59971-A1"	"Room, facility and accomodation hire for Export Advisors Conference March 2008"	="Austrade"	13-Feb-08	="Hotels and lodging and meeting facilities"	09-Nov-07	30-Sep-08	211360.00	=""	="Breakfree Resorts"	13-Feb-08 01:22 PM	

+="CN59972-A2"	"Development, management and delivery DIRKS - A strategic Approach to Managing Business Information"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-09	170500.00	=""	="Experience Matters"	13-Feb-08 01:22 PM	

+="CN59974"	"Management of Advertising sales, content, design, production, printing and distribution of the Australian Export Awards 2007"	="Austrade"	13-Feb-08	="Marketing and distribution"	13-Feb-07	07-Jan-09	88672.24	=""	="Cobe Design"	13-Feb-08 01:22 PM	

+="CN59978"	"Preparation, facilitation and delivery of JTE workshops"	="Austrade"	13-Feb-08	="Management and Business Professionals and Administrative Services"	09-Jul-07	31-Dec-08	117000.00	=""	="Orbis Associates"	13-Feb-08 01:22 PM	

+="CN59984"	"Purchase of VSX presenter and accessories"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	07-Jun-07	08-Jun-07	151239.00	=""	="Vantage Systems Pty Ltd"	13-Feb-08 01:23 PM	

+="CN59985"	"Purchase of diagnostic and tuning pack, and server"	="Austrade"	13-Feb-08	="Computer Equipment and Accessories"	15-Jun-07	30-Jun-07	115005.85	=""	="Oracle Corporation Australia"	13-Feb-08 01:23 PM	

+="CN59991"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Temporary information technology networking specialists"	12-Nov-07	09-Oct-08	183920.00	=""	="Balapax Pty Ltd"	13-Feb-08 01:39 PM	

+="CN59997"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Business intelligence consulting services"	09-Jul-07	13-Jul-08	157300.00	=""	="Freelance Global Ltd"	13-Feb-08 02:01 PM	

+="CN60002"	" IT Contractor "	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Operating system programming services"	17-Dec-07	14-Dec-08	194568.00	=""	="Sherborne Consulting"	13-Feb-08 02:50 PM	

+="CN60004"	"PROVISION OF IT SERVICES"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-05	30-Jun-08	135989.43	=""	="OFFICELINK PLUS PTY LTD"	13-Feb-08 02:52 PM	

+="CN60005"	"PROVISION OF IT SERVICES"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-05	30-Jun-08	139586.98	=""	="ICON RECRUITMENT PTY LTD (DEAKIN)"	13-Feb-08 02:52 PM	

+="CN60010"	"PROVISION OF IT SERVICES MESSAGING"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	24-Oct-05	30-Jun-08	116864.00	=""	="WIZARD INFORMATION SERVICES (CA"	13-Feb-08 02:53 PM	

+="CN60018"	"PROVISION OF IT TEC PERSONNEL"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-06	30-Jun-08	137280.00	=""	="WINSTANLEY HOLDINGS PTY LTD"	13-Feb-08 02:53 PM	

+="CN60020"	"STAFF CONSELLING SERVICES"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Oct-06	30-Sep-07	131010.00	=""	="IMPACT PSYCHOLOGY SOLUTIONS"	13-Feb-08 02:53 PM	

+="CN60007"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Business intelligence consulting services"	10-Dec-07	08-Jun-08	95832.00	=""	="Peoplebank Australia Pty Ltd"	13-Feb-08 02:54 PM	

+="CN60028"	"SUPPLY OF LOOSE OFFICE FURNITURE FOR AUSAID'S NEW ACCOMMODATION 225 LONDON CIRCUIT"	="AusAid"	13-Feb-08	="Office Equipment and Accessories and Supplies"	10-Apr-07	06-Jul-07	143322.30	=""	="SCHIAVELLO INTL OFFICE SYSTEMS"	13-Feb-08 02:54 PM	

+="CN60044"	"PROVISON OF IT TECHNICAL SERVICES"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	158400.00	=""	="GREYTHORN PTY LTD"	13-Feb-08 02:55 PM	

+="CN60049"	"PROVISION OF IT COMMUNICATION SECURITY DOCUMENTATION AND ADVICE TO ENABLE AUSAID TO RETAIN DSD 'IN CONFIDENCE' ACCREDITATION"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	02-Jul-07	30-Jun-08	80000.00	=""	="SECURELINK PTY LTD"	13-Feb-08 02:56 PM	

+="CN60050-A1"	"Developing a Certificate of Compliance model"	="AusAid"	13-Feb-08	="Environmental Services"	08-Aug-07	31-Dec-07	95000.00	=""	="MCGRATHNICOL ADVISORY PARTNERSHIP"	13-Feb-08 02:56 PM	

+="CN60052"	"Defence Standing Offer for Library & Information Service Contract Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	30-Jun-08	101200.00	=""	="LYN FARKAS INFORMATION SERVICES P/L"	13-Feb-08 02:56 PM	

+="CN60057-A2"	"PROVIDE GREAT PLAINS & FOREIGN EXCHANGE ADVICE TO AUSAID"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	18-Aug-08	197398.08	=""	="DYNAMIC EDGE PTY LTD"	13-Feb-08 02:57 PM	

+="CN60058"	"PROVISION OF IT TECHNICAL SUPPORT"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Sep-07	30-Jun-08	188760.00	=""	="PAXUS AUSTRALIA PTY LTD"	13-Feb-08 02:57 PM	

+="CN60059"	"RECRUITMENT SELECTION SERVICES"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-03	30-Jun-06	210000.00	=""	="RECRUITMENT MANAGEMENT COMPANY"	13-Feb-08 02:57 PM	

+="CN60066-A1"	"PROVIDE VALUATION & ACCOUNTING ADVISORY SERVICES IN RELATION TO IDA/ADF"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	28-Sep-07	83842.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-Feb-08 02:58 PM	

+="CN60067"	"PROVISION OF IT TECHNICAL SERVICES - SERVICE DESK ANALYST IN THE IISB SERVICE DELIVERY UNIT - AMANDA DACK"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	30-Jun-08	170280.00	=""	="AUREC PTY LTD"	13-Feb-08 02:58 PM	

+="CN60069"	" 1. Post Fence Metal, 180 cm to Dwg DE560010001 & Def(Aust) 8330, quantity 13,600.  2. Post Fence Metal, 60 cm to Dwg DE560010002 & DefAust) 8330, quantity 4,600.  3. Post Fence Metal, 2.440m to Dwg DE560010000 & Def(Aust) 8330, quantity 10,000.    "	="Defence Materiel Organisation"	13-Feb-08	="Adjustable fence"	13-Feb-08	04-May-08	285909.03	=""	="FENCING AUSTRALIA PTY LTD"	13-Feb-08 03:19 PM	

+="CN60075"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	125620.00	=""	="A J DEVER PTY LTD"	13-Feb-08 03:59 PM	

+="CN60078"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	16-Jan-08	16-Jan-08	110000.00	=""	="JACQUELINE GLEESON"	13-Feb-08 03:59 PM	

+="CN60087"	"MOBILE PHONE BILLS"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Local and long distance telephone communications"	05-Feb-08	05-Feb-08	140074.21	=""	="OPTUS BILLING SERVICES"	13-Feb-08 04:00 PM	

+="CN60088"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Personnel recruitment"	05-Feb-08	05-Feb-08	108900.00	=""	="OAKTON SERVICES PTY LTD"	13-Feb-08 04:00 PM	

+="CN60102"	"LEGAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Legal services"	25-Jan-08	25-Jan-08	110000.00	=""	="ROBERT NEWLINDS SC"	13-Feb-08 04:02 PM	

+="CN60112"	"CONTRACT/RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Recruitment services"	31-Jan-08	31-Jan-08	114400.00	=""	="COX PURTELL"	13-Feb-08 04:04 PM	

+="CN60122"	"RISK MANAGEMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	13-Feb-08	="Temporary personnel services"	15-Jan-08	25-Jul-08	150000.00	=""	="PLUTONIC ZOO PTY LTD"	13-Feb-08 04:05 PM	

+="CN60124-A1"	"Impellor change out on Cold section GE-C-013205"	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	11-Feb-08	28-Feb-08	171086.30	=""	="Sikorsky Aircraft Australia Limited"	13-Feb-08 04:27 PM	

+="CN60126"	"Impellor change out on Cold section GE-C-013218."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	12-Feb-08	28-Feb-08	155533.00	=""	="Sikorsky Aircraft Austalia Limited"	13-Feb-08 04:36 PM	

+="CN60127"	"Impellor change out on Cold section GE-C-013201."	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	155533.00	=""	="Sikorsky Aircraft Austalia Limited"	13-Feb-08 04:42 PM	

+="CN60130"	" Impeloor change out to Cold section GE-C-013255. "	="Defence Materiel Organisation"	13-Feb-08	="Military rotary wing aircraft"	11-Feb-08	28-Feb-08	155533.00	=""	="Sikorsky Aircraft Australia Limited"	13-Feb-08 04:47 PM	

+="CN60134"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	06-May-02	149825.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:57 PM	

+="CN60135-A1"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	203432.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:57 PM	

+="CN60137"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	175985.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60138"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	258814.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60139"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	179603.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60140"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	179603.00	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60141"	"Lae City Roads Upgrading Project - Phase 3"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	146745.41	=""	="SMEC QCPP JOINT VENTURE"	13-Feb-08 04:58 PM	

+="CN60144"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Sep-00	158720.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60146"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Aug-01	114970.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60149"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-03	196600.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 04:59 PM	

+="CN60155"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	160400.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60157"	"National Roads Regravelling and Sealing Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	16-May-95	30-Jun-06	170700.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:00 PM	

+="CN60164"	"Serial Publication and Outreach for Papua New Guinea and the Pacific Region"	="AusAid"	13-Feb-08	="Published Products"	01-Apr-00	31-Mar-03	248952.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:01 PM	

+="CN60169"	"Viet Nam Rural Development Program - TAG - Community Devt/Performance Information Adviser"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	29-Mar-00	30-Jun-02	86232.00	=""	="STEPHENS, ALEXANDRA"	13-Feb-08 05:02 PM	

+="CN60172"	"Viet Nam Rural Development Program - TAG - Community Devt/Performance Information Adviser"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	29-Mar-00	30-Jun-06	290000.00	=""	="STEPHENS, ALEXANDRA"	13-Feb-08 05:03 PM	

+="CN60178"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-00	31-Jul-03	212012.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:03 PM	

+="CN60191"	"Appropriate Hydrological Network Improvement Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Mar-01	27-Mar-06	99095.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:05 PM	

+="CN60195"	"Cuu Long Delta Rural Water Supply and Sanitation Project"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-01	01-Jan-08	125620.20	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:06 PM	

+="CN60206"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Feb-04	256212.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60207"	"Solomon Islands Ministry of Health Institutional Strengthening Project"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Aug-01	02-Feb-04	261879.00	=""	="JTA INTERNATIONAL PTY LTD"	13-Feb-08 05:07 PM	

+="CN60213"	"QUANG NGAI RURAL DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	01-Aug-01	09-Oct-02	150936.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:08 PM	

+="CN60214"	"QUANG NGAI RURAL DEVELOPMENT PROGRAM"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	10-Oct-02	09-Oct-07	142000.00	=""	="URS AUSTRALIA PTY LTD"	13-Feb-08 05:08 PM	

+="CN60221"	"THREE DELTA TOWNS WATER SUPPLY AND SANITATION PROJECT"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Oct-01	30-Jul-08	244566.80	=""	="GHD PTY LTD"	13-Feb-08 05:09 PM	

+="CN60225"	"Gazelle Road Restoration Project - Project Management Contractor"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-01	15-Mar-05	124901.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:10 PM	




+="CN60239"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	03-Jan-02	30-Jun-07	119851.60	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	13-Feb-08 05:12 PM	

+="CN60241"	"NORTH VAM NAO WATER CONTROL PROJECT II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	03-Dec-01	03-Dec-05	282555.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:12 PM	

+="CN60258"	"Bougainville Coastal Trunk Road Maintenance Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	17-Apr-02	16-Apr-05	128783.00	=""	="BARCLAY MOWLEM CONSTRUCTION LTD/QCPP PTY LTD"	13-Feb-08 05:14 PM	

+="CN60269"	"PNG - Lae City WaterSupply Project Phase II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	09-Jul-02	09-Jul-05	263600.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:16 PM	

+="CN60270"	"PNG - Lae City WaterSupply Project Phase II"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	09-Jul-02	31-Dec-07	265770.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	13-Feb-08 05:16 PM	

+="CN60271"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-06	193881.85	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:16 PM	

+="CN60278"	"PNG Advisory Support Facility Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-03	31-Mar-08	152254.84	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:17 PM	

+="CN60291"	"Australian National University Indonesia Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Sep-02	31-Aug-06	88022.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	13-Feb-08 05:19 PM	

+="CN60297"	"RURAL DEVELOPMENT TECHNICAL ADVISORY GROUP  RURAL DEVELOPMENT TAG  RESETTEMENT SPECIALIST"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	28-Oct-02	31-Oct-07	115309.00	=""	="TER WOORT, MARTIN"	13-Feb-08 05:20 PM	

+="CN60298"	"RURAL DEVELOPMENT TECHNICAL ADVISORY GROUP  RURAL DEVELOPMENT TAG  RESETTEMENT SPECIALIST"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	28-Oct-02	31-Oct-07	225309.00	=""	="TER WOORT, MARTIN"	13-Feb-08 05:20 PM	

+="CN60299"	"PERSISTENT ORGANIC POLLUTANTS PROJECT, PHASE II COMMUNICATION STRATEGY IMPLEMENTATION"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	11-Nov-02	31-Dec-06	250748.00	=""	="GHD PTY LTD"	13-Feb-08 05:20 PM	

+="CN60302"	"Papua New Guinea Justice Advisory Group (JAG)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jan-03	20-Jan-06	210850.00	=""	="EDUCO PTY LTD"	13-Feb-08 05:20 PM	

+="CN60306"	"Papua New Guinea Justice Advisory Group (JAG)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	20-Jan-03	19-Jan-08	130966.00	=""	="EDUCO PTY LTD"	13-Feb-08 05:21 PM	

+="CN60315"	"Quang Ngai Natural Disaster Mitigation Project"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	10-Feb-03	30-Mar-06	128487.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 05:22 PM	

+="CN60331"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	19-May-03	18-May-06	107199.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-Feb-08 05:24 PM	

+="CN60342"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	31-Jul-06	182303.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60344"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jul-03	30-Jun-09	133270.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:26 PM	

+="CN60355"	"Indonesia Managing Basic Education Project"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Sep-03	15-Apr-07	155591.00	=""	="IDP EDUCATION PTY LTD"	13-Feb-08 05:27 PM	

+="CN60365-A1"	" Australian Partnerships with African Communities Program Monitoring and Review Group (PMRG) "	="AusAid"	13-Feb-08	="Management advisory services"	01-Oct-03	31-Dec-10	168331.90	=""	="RURAL FOCUS KENYA"	13-Feb-08 05:29 PM	

+="CN60366"	"Australian Partnerships with African Communities Prorgam Monitoring and Review Group"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-03	31-Dec-10	294000.00	=""	="SAL CONSULTORIA E INVESTIMENTOS, LDA"	13-Feb-08 05:29 PM	

+="CN60399"	"PNG Education Capacity Building Program"	="AusAid"	13-Feb-08	="Education and Training Services"	02-Feb-04	31-Dec-08	100000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:33 PM	

+="CN60400"	"AusAID Ready Response Team Training"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Dec-03	01-Dec-05	150000.00	=""	="REDR AUSTRALIA LTD"	13-Feb-08 05:33 PM	

+="CN60402"	"AusAID Ready Response Team Training"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Feb-04	30-Sep-08	148500.00	=""	="REDR AUSTRALIA LTD"	13-Feb-08 05:33 PM	

+="CN60404"	"Pacific Regional Policing Initiative"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	12-Jan-04	31-Dec-08	243665.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	13-Feb-08 05:34 PM	

+="CN60418"	"Provision of Scholarship Selection Services for Fiji ADS and ARDS."	="AusAid"	13-Feb-08	="Education and Training Services"	15-Mar-04	15-Sep-06	246245.00	=""	="SOUTH PACIFIC BOARD FOR EDUCATIONAL ASSESSMENT (SPBEA)"	13-Feb-08 05:35 PM	

+="CN60423"	"Principal Rural Development Adviser"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	04-Mar-04	03-Mar-06	120000.00	=""	="NIDEBRA PTY LTD"	13-Feb-08 05:36 PM	

+="CN60430"	"Strengthening of the Naional Vitamin A and Expansion of Community BAsed Integrated Management of Childhood Illness Program"	="AusAid"	13-Feb-08	="Healthcare Services"	01-Jun-04	31-Aug-08	201459.20	=""	="NEPALI TECHNICAL ASSISTANCE GROUP (NTAG)"	13-Feb-08 05:37 PM	

+="CN60431"	"Federated States of Micronesia - In-Country Procurement of Computer Hardware, Supply, Installation and Training for the Border Management Systems Proj"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	31-Oct-04	30-Jun-08	282010.00	=""	="AUSTRALIAN MARITIME COLLEGE"	13-Feb-08 05:37 PM	

+="CN60438"	"ADVISORY SERVICES IN RELATION TO PACIFIC SCHOLARSHIP SOFTWARE DEVELOPMENT AND HARMONISATION"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Apr-04	31-Dec-07	102366.00	=""	="BRYANT, CERI L"	13-Feb-08 05:38 PM	

+="CN60441"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	31-Dec-05	110000.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:38 PM	

+="CN60443"	"The provision of library and information services"	="AusAid"	13-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jul-04	31-Dec-05	80000.00	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	13-Feb-08 05:38 PM	

+="CN60449"	"PRE DEPARTURE ENGLISH LANGUAGE TRAINING FOR THE ADS PROGRAM OCTOBER 2004 - DECEMBER 2006"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Oct-04	31-Dec-07	117368.61	=""	="ENDYMION LTD T/A VIENTIANE COLLEGE"	13-Feb-08 05:39 PM	

+="CN60450"	"Director of Schools, Nauru"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Oct-04	31-Dec-06	139000.00	=""	="LONGHURST, MICHAEL"	13-Feb-08 05:39 PM	

+="CN60451"	"Director of Schools, Nauru"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Oct-04	31-Dec-06	242500.00	=""	="LONGHURST, MICHAEL"	13-Feb-08 05:39 PM	

+="CN60453"	"Director of Schools, Nauru"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	18-Oct-04	31-Dec-07	205150.00	=""	="LONGHURST, MICHAEL"	13-Feb-08 05:40 PM	

+="CN60454"	"Contract with Agriculture Specialist"	="AusAid"	13-Feb-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	15-Sep-04	30-Sep-08	214500.00	=""	="SMITH, GARRY. A."	13-Feb-08 05:40 PM	

+="CN60463"	"Participation in RAMSI Solomon Islands Justice Sector TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	28-Oct-04	30-Jun-08	250000.00	=""	="PAPAS, NICHOLAS"	13-Feb-08 05:41 PM	

+="CN60469"	"Solomon Islands Machinery of Government Infrastructure Project"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-05	31-Mar-08	275824.39	=""	="SAKHIWE CONSULTANTS PTY LIMITED"	13-Feb-08 05:42 PM	

+="CN60472"	"Australian Development Gateway Project Phase III"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	14-Apr-08	87890.00	=""	="NET RETURNS PTY LTD"	13-Feb-08 05:42 PM	

+="CN60476"	"Multimedia Photo and Map Library"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	06-May-05	06-Aug-07	82500.00	=""	="DAMIT AUSTRALIA PTY. LTD"	13-Feb-08 05:43 PM	

+="CN60480"	"Provision of services for the production of FOCUS magazine"	="AusAid"	13-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	14-Jun-05	30-Jun-07	131752.50	=""	="GIBSON, PATRICIA MARGARET MARY"	13-Feb-08 05:43 PM	

+="CN60482"	"Nauru: Reverse Osmosis Units - Maintenance"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jul-05	30-Jun-06	122075.40	=""	="VEOLIA WATER SOLUTIONS & TECHNOLOGIES (AUSTRALIA) PTY LTD"	13-Feb-08 05:43 PM	

+="CN60484"	"Nauru: Reverse Osmosis Units - Maintenance"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jul-05	30-Jun-06	163244.80	=""	="VEOLIA WATER SOLUTIONS & TECHNOLOGIES (AUSTRALIA) PTY LTD"	13-Feb-08 05:43 PM	

+="CN60503"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Computer services"	15-Nov-07	15-Nov-07	170218.00	=""	="MCR Computer Resources Pty Ltd"	13-Feb-08 05:45 PM	

+="CN60519"	"Indonesia Australia Legal Development Facility"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	12-Apr-04	12-Apr-09	176000.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60520"	"Environment Consultant"	="AusAid"	13-Feb-08	="Environmental Services"	01-Feb-06	31-Jan-07	223300.00	=""	="HUONBROOK ENVIRONMENT & HERITAGE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60521"	"Environment Consultant"	="AusAid"	13-Feb-08	="Environmental Services"	01-Feb-06	31-Jan-08	239932.00	=""	="HUONBROOK ENVIRONMENT & HERITAGE PTY LTD"	13-Feb-08 05:46 PM	

+="CN60529"	"PT Dif - Bali Fresh Female Farmers Partnership"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-May-06	31-Oct-08	198800.00	=""	="PT DIF NUSANTARA"	13-Feb-08 05:47 PM	

+="CN60543"	"Global Education "Think Global" revision"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	31-Mar-08	152106.90	=""	="CURRICULUM CORPORATION"	13-Feb-08 05:48 PM	

+="CN60560"	"Joseph Oenarto"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-May-06	01-May-07	98846.79	=""	="OENARTO, JOSEPH"	13-Feb-08 05:50 PM	

+="CN60561"	"Joseph Oenarto"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-May-06	31-Jan-08	153364.57	=""	="OENARTO, JOSEPH"	13-Feb-08 05:50 PM	

+="CN60564"	"Quality Assurance Contractor for the Second Phase of the Land Administration and Management Project (QAC for LAMP II)"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	01-Jul-07	81400.00	=""	="Department of Environment and Natural Resources (Philippines)"	13-Feb-08 05:51 PM	

+="CN60565"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	164736.00	=""	="ICON RECRUITMENT PTY LTD"	13-Feb-08 05:51 PM	

+="CN60566"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	26-Jul-06	30-Jun-07	178200.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:51 PM	

+="CN60567"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	258178.29	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:51 PM	

+="CN60569"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	186623.18	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:51 PM	

+="CN60570"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	214805.34	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:51 PM	

+="CN60571"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	177470.77	=""	="ICON RECRUITMENT PTY LTD"	13-Feb-08 05:51 PM	

+="CN60572"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-07	186580.35	=""	="WIZARD INFORMATION SERVICES PTY LTD"	13-Feb-08 05:52 PM	

+="CN60573-A1"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Lease and rental of property or building"	14-Aug-06	30-Jun-10	147070.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:52 PM	

+="CN60574"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Aug-06	30-Jun-07	133056.00	=""	="TARAKAN CONSULTING PTY LTD"	13-Feb-08 05:52 PM	

+="CN60577"	"Provision of IT Technical Personnel"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	21-Aug-06	30-Jun-07	140712.00	=""	="CONSOLVE PTY LTD"	13-Feb-08 05:52 PM	

+="CN60578"	"Study Design for Monitoring and Evaluation of the EINRIP"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Sep-06	30-Jun-07	291500.00	=""	="BLACKHEATH ECONOMICS LIMITED"	13-Feb-08 05:52 PM	

+="CN60581"	"HIV/AIDS Techinical Advice"	="AusAid"	13-Feb-08	="Healthcare Services"	07-Sep-06	31-Dec-08	296442.69	=""	="BUTCHER, CATHERINE MARY"	13-Feb-08 05:53 PM	

+="CN60583"	"Regional Women's Publication & Website"	="AusAid"	13-Feb-08	="Published Products"	02-Oct-06	30-Nov-07	164166.21	=""	="femLINKPACIFIC-Media Initiatives for Women"	13-Feb-08 05:53 PM	

+="CN60584"	"Employment & Management Services Support to the SADI Program Management Office"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-06	30-Jun-09	256557.56	=""	="MULTI PRESTASI"	13-Feb-08 05:53 PM	

+="CN60593"	"Teacher Performance and Development RETA"	="AusAid"	13-Feb-08	="Education and Training Services"	01-Jan-07	31-Dec-07	138444.36	=""	="VERSPOOR, ADRIAAN M."	13-Feb-08 05:54 PM	

+="CN60594"	"Advisor to BRR - Ray Benson"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	31-Dec-07	211642.95	=""	="BENSON, RAY"	13-Feb-08 05:55 PM	

+="CN60595"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-07	30-Jun-07	95040.00	=""	="COMPAS PTY.LTD."	13-Feb-08 05:55 PM	

+="CN60596"	"Construction of Balcony and Relocation of Standby Generator at the PMOB"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	13-Sep-06	28-Sep-07	106065.88	=""	="TATALANI BUILDERS"	13-Feb-08 05:55 PM	

+="CN60601"	"Provision of IT Technical Services"	="AusAid"	13-Feb-08	="Information Technology Broadcasting and Telecommunications"	26-Feb-07	30-Jun-07	83160.00	=""	="PAXUS AUSTRALIA PTY LTD"	13-Feb-08 05:55 PM	

+="CN60608"	"2006-07 Emerging Issues SA-Aust Joint Economic Research Programme"	="AusAid"	13-Feb-08	="Engineering and Research and Technology Based Services"	26-Mar-07	31-Dec-08	200893.47	=""	="DEVELOPMENT NETWORK AFRICA PTY LTD"	13-Feb-08 05:56 PM	

+="CN60615"	"PNG National Sports INstitute"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	06-Nov-06	05-Nov-07	229343.14	=""	="PNG SPORTS FOUNDATION NATIONAL SPORT INSTITUTE"	13-Feb-08 05:57 PM	

+="CN60618-A2"	"Fiji Council of Social Services"	="AusAid"	13-Feb-08	="Education and Training Services"	23-Apr-07	31-Aug-11	256869.02	=""	="FIJI COUNCIL OF SOCIAL SERVICES"	13-Feb-08 05:58 PM	

+="CN60623"	"Partners in Community Development"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	23-Apr-07	15-Jul-09	110319.47	=""	="PARTNERS IN COMMUNITY DEVELOPMENT FIJI"	13-Feb-08 05:58 PM	

+="CN60626"	"femLINKPACIFIC"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-Apr-07	30-Apr-10	137069.75	=""	="femLINKPACIFIC"	13-Feb-08 05:58 PM	

+="CN60629"	"FRIENDS Model Kitchen"	="AusAid"	13-Feb-08	="Organisations and Clubs"	23-May-07	31-Aug-09	142911.73	=""	="FRIEND"	13-Feb-08 05:59 PM	

+="CN60639"	"Emergency Gensets and Consumables for Nauru"	="AusAid"	13-Feb-08	="Politics and Civic Affairs Services"	01-Apr-07	30-Jun-07	184918.80	=""	="CUMMINS SOUTH PACIFIC PTY LTD"	13-Feb-08 06:00 PM	

+="CN60646-A1"	"Natures Way Cooperative (Fiji) Ltd"	="AusAid"	13-Feb-08	="Education and Training Services"	15-Jun-07	31-Aug-12	94205.38	=""	="NATURES WAY COOPERATIVE (FIJI) LTD"	13-Feb-08 06:01 PM	

+="CN60647-A1"	"Tutu Rural Training Centre"	="AusAid"	13-Feb-08	="Education and Training Services"	15-Jun-07	31-Mar-13	172592.25	=""	="TUTU TRAINING CENTRE"	13-Feb-08 06:01 PM	

+="CN60648-A1"	"South Sea Orchids"	="AusAid"	13-Feb-08	="Education and Training Services"	15-Jun-07	31-Mar-13	119409.93	=""	="SOUTH SEA ORCHID FLORICULTURE PROJECT"	13-Feb-08 06:01 PM	

+="CN60650"	"Additional internal and external works"	="AusAid"	13-Feb-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Nov-07	150035.92	=""	="FLETCHER MOROBE CONSTRUCTION LTD"	13-Feb-08 06:01 PM	

+="CN60651"	"Guarding services at Peace Haven"	="AusAid"	13-Feb-08	="National Defence and Public Order and Security and Safety Services"	08-Jul-07	30-Jun-08	97206.37	=""	="PROSEC SECURITY & COMMUNICATIONS PTY LTD T/A PROTECT SECURITY & PACOM COMMUNICATIONS"	13-Feb-08 06:02 PM	

+="CN60656"	"Asia Regional Trade Advisory Group: International Trade Specialist"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	13-Jan-05	30-Dec-07	130000.00	=""	="PDP AUSTRALIA PTY LTD"	13-Feb-08 06:02 PM	

+="CN60658"	"Datong Follow-on Technical Assistance"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	23-Aug-04	31-Dec-05	117310.00	=""	="GHD PTY LTD"	13-Feb-08 06:02 PM	

+="CN60659"	"Datong Follow-on Technical Assistance"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	23-Aug-04	30-Dec-07	129041.00	=""	="GHD PTY LTD"	13-Feb-08 06:03 PM	

+="CN60662"	"Vietnam Program TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-04	30-Jul-07	162736.00	=""	="BRISBANE CITY ENTERPRISES PTY LTD"	13-Feb-08 06:03 PM	

+="CN60663"	"Vietnam Program TAG"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-04	30-Jul-07	176852.00	=""	="BRISBANE CITY ENTERPRISES PTY LTD"	13-Feb-08 06:03 PM	

+="CN60666"	"Interim CTA postion"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	10-Oct-06	10-Sep-07	139391.54	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-Feb-08 06:04 PM	

+="CN60673"	"ACFID/Antares Foundation"	="AusAid"	13-Feb-08	="Organisations and Clubs"	18-Dec-06	30-Dec-09	275000.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	13-Feb-08 06:05 PM	

+="CN60675"	"Audit of Coffey International Development Invoicing"	="AusAid"	13-Feb-08	="Financial and Insurance Services"	02-Oct-06	31-Mar-07	111988.81	=""	="STIRLING INTERNATIONAL"	13-Feb-08 06:05 PM	

+="CN60676"	"Audit of Coffey International Development Invoicing"	="AusAid"	13-Feb-08	="Financial and Insurance Services"	02-Oct-06	31-Dec-07	126415.43	=""	="STIRLING INTERNATIONAL"	13-Feb-08 06:05 PM	

+="CN60683"	"HKSI Logistics Support to GPF"	="AusAid"	13-Feb-08	="Transportation and Storage and Mail Services"	01-Jul-06	30-Jun-07	124746.61	=""	="HK LOGISTICS PTY LTD"	13-Feb-08 06:06 PM	

+="CN60685"	"AusAID Emergency Assistance Guidelines for Shelter & Water Supply"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	31-Dec-08	96525.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD (PDM)"	13-Feb-08 06:06 PM	

+="CN60690"	"Collaborative Design of ADRP Funding Mechanisms and Management Arrangements"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	31-Dec-07	97874.95	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	13-Feb-08 06:07 PM	

+="CN60693"	"Housing Lease Agreement for Indonesia BEA"	="AusAid"	13-Feb-08	="Management and Business Professionals and Administrative Services"	22-Aug-06	30-Jun-08	98896.72	=""	="MICHAEL PATRICK MORRISSEY"	13-Feb-08 06:07 PM	

+="CN60694"	"Fitout of AIPRD Office Kebon Sirih USD component"	="AusAid"	13-Feb-08	="Building and Construction and Maintenance Services"	26-May-06	10-Aug-07	132292.63	=""	="MENTARI REKSA BANGUN P.T"	13-Feb-08 06:08 PM	

+="CN60715"	"IT Contractor"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	13-Feb-08	="Software or hardware engineering"	28-Jan-08	25-Feb-09	174240.00	=""	="Freelance Global Ltd"	13-Feb-08 06:49 PM	

+="CN60721"	"Provision of open source information monitoring services"	="Australian Federal Police"	13-Feb-08	="Internet related services"	18-May-06	17-May-08	184800.00	=""	="Global Edge Group Pty Ltd (trading as National Open Source Intelligence Centre (Australia))"	13-Feb-08 07:56 PM	

+="CN60728"	"SAP technical writing and training services"	="Australian Federal Police"	13-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	261360.00	=""	="Presence of IT Pty Limited"	13-Feb-08 10:41 PM	

+="CN60729"	"supply and maintenance of data multiplex/de multiplex systems"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	18-Oct-07	01-Apr-08	133031.00	="RFT 49/2006"	="Vertical Telecoms Pty Ltd"	14-Feb-08 12:16 AM	

+="CN60730-A1"	"suuply and maintenance of six radio frequency datalink tranceivers"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	30-Jul-07	30-Oct-07	169865.00	="RFQ48/2006"	="Vertical Telecoms Pty Ltd"	14-Feb-08 12:28 AM	

+="CN60738"	"Accounting contractor"	="CrimTrac"	14-Feb-08	="Temporary financial staffing needs"	31-Aug-07	30-Jun-08	224400.00	=""	="Optimum Business Consulting Pty Ltd"	14-Feb-08 10:41 AM	

+="CN60743"	"System Developer"	="CrimTrac"	14-Feb-08	="Temporary information technology software developers"	07-Jan-08	13-Aug-08	101816.00	="RFQ#39"	="Aurec Pty Limited"	14-Feb-08 10:42 AM	

+="CN60744"	"Project Officer"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	07-Jan-08	04-Jul-08	98956.00	="RFQ#36"	="Talent International ACT Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60754"	"Contractor for IT services"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	18-Jun-07	31-Jan-09	240240.00	="RFQZ1"	="Finite IT Recruitment Solutions"	14-Feb-08 10:43 AM	

+="CN60755"	"Contractor Provider Service - System Developer"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	18-Aug-07	15-Sep-07	116688.00	=""	="Encore IT Services Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60757"	"Contractor serivce provider - Technology Support"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	17-Jul-07	03-Jan-08	104676.00	=""	="Aurec Pty Limited"	14-Feb-08 10:44 AM	

+="CN60758"	"Contractor Service Provider - System Developer"	="CrimTrac"	14-Feb-08	="Staff recruiting services"	23-Jul-07	23-Jan-08	116688.00	="03/2006"	="Encore IT Services Pty Ltd"	14-Feb-08 10:44 AM	

+="CN60759"	"Amendment No.1 - Reference CN 27761"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	14-Mar-07	14-Mar-08	106400.00	=""	="Sensory7"	14-Feb-08 10:44 AM	

+="CN60760"	"CONTRACTOR SERVICE PROVIDER - WEB DESIGNER"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	23-Jul-07	31-Dec-07	105248.00	="03/2006"	="GMT People"	14-Feb-08 10:44 AM	

+="CN60762"	"1 Centracom contrlo system"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	23-Mar-07	22-Mar-08	225439.50	=""	="Motorola Australia Pty Limited"	14-Feb-08 10:57 AM	

+="CN60773-A1"	"Services in relation to Voice and data communication"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	10-Sep-07	30-Jun-08	97099.20	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 01:31 PM	

+="CN59100"	"Provision of telecommunication services. Mobile voice & mobile data"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Mobile communications services"	07-Sep-07	06-Sep-10	108000.00	=""	="OPTUS Pty Ltd"	14-Feb-08 01:57 PM	

+="CN60777-A7"	"Property Lease Darwin NT"	="Australian Federal Police"	14-Feb-08	="Lease and rental of property or building"	16-Jan-06	30-Jun-11	298144.22	=""	="Darwin International Airport Pty Limited"	14-Feb-08 02:01 PM	

+="CN60779-A2"	"Services in relation to specialist cryptographic activities"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Sep-08	168854.00	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 02:45 PM	

+="CN60808"	"Preparation and facilitation of workshops and handover requirements"	="Austrade"	14-Feb-08	="Education and Training Services"	09-Jul-07	15-Aug-07	87340.00	=""	="The Nous Group Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60810"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	14-Feb-08	="Computer Equipment and Accessories"	30-Nov-07	30-Nov-07	137179.24	=""	="Hewlett Packard Australia Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60815-A1"	"Leasing facility for IT Server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Sep-07	04-Sep-10	118275.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:12 PM	

+="CN60819-A3"	" Provision of services in relation to a traineeship for desktop services "	="Australian Federal Police"	14-Feb-08	="Computer services"	01-Jul-07	31-Dec-08	95481.80	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 03:27 PM	

+="CN60839"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	13-Aug-07	30-Jun-08	140250.00	=""	="PROFESSIONALS ONLINE"	14-Feb-08 03:38 PM	

+="CN60842"	"Premier Support Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	07-Aug-07	30-Jun-08	201107.50	=""	="MICROSOFT SERVICES"	14-Feb-08 03:39 PM	

+="CN60853"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	30-Jun-08	258940.00	=""	="ECAREER"	14-Feb-08 03:40 PM	

+="CN60858"	"SSL Certificates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	88000.00	=""	="VERISIGN"	14-Feb-08 03:41 PM	

+="CN60880"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Aug-07	30-Jun-08	107695.95	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60887"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	15-Aug-07	19-Dec-11	100000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:44 PM	

+="CN60892"	"Counselling service for DEWR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Jul-07	31-Oct-08	90000.00	=""	="IPS EMPLOYEE ASSISTANCE"	14-Feb-08 03:45 PM	

+="CN60903"	"CSS/PSS quarterly management fees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Jul-07	30-Sep-07	194948.25	=""	="COMSUPER"	14-Feb-08 03:47 PM	

+="CN60908"	"Freight services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	26-Jul-07	30-Jun-08	166000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	14-Feb-08 03:47 PM	

+="CN60912"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	26-Jul-07	30-Jun-08	185000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:48 PM	

+="CN60914"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60915"	"Qualitative Research on AJS new project"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	26-Oct-07	155514.15	=""	="IPSOS AUSTRALIA PTY LTD"	14-Feb-08 03:48 PM	

+="CN60918"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	242000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:49 PM	

+="CN60919"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Mar-07	04-Aug-10	118950.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:50 PM	

+="CN60931"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Aug-07	30-Jun-08	125620.00	=""	="GARTNER AUSTRALASIA PTY LTD"	14-Feb-08 03:50 PM	

+="CN60932"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	02-Jan-08	30-Jun-08	178000.00	=""	="PALADIN SYSTEMS PTY LTD"	14-Feb-08 03:50 PM	

+="CN60933"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	229000.00	=""	="PHILLIPS FOX LAWYERS"	14-Feb-08 03:50 PM	

+="CN60934"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	251500.00	=""	="MINTER ELLISON"	14-Feb-08 03:51 PM	

+="CN60942"	"Supply of Floors/Grout/ fixings/ Labor - Library"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	31-Jul-07	31-Jul-07	125870.80	=""	="DEXION AUST PTY LTD"	14-Feb-08 03:52 PM	

+="CN60954"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	206055.50	=""	="ISIS Projects Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60970"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	13-Dec-07	13-Dec-07	150048.77	=""	="Oracle Corporation Ltd"	14-Feb-08 03:54 PM	

+="CN60990"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	87921.90	="TBA"	="INSIGHT ENTERPRISES AUST P/L"	14-Feb-08 03:56 PM	

+="CN60997"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Sep-07	30-Jun-08	200000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 03:57 PM	

+="CN61009"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jan-08	30-Jun-08	194169.80	="ITC"	="KELLY SERVICES"	14-Feb-08 03:58 PM	

+="CN61016"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	21-Jan-08	30-Jun-08	123750.00	="ITC"	="CTIME PTY LTD"	14-Feb-08 03:59 PM	

+="CN61017"	"Annual Building Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Jan-08	30-Jun-08	220000.00	="TBA"	="DATA KEY SYSTEMS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61018"	"Proximity cards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	30-Jun-08	85250.00	=""	="CUSTOM DESIGNED SOLUTIONS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61020"	"Milling & Embedding of Prox. Cards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-08	109450.00	=""	="VERISIGN"	14-Feb-08 04:00 PM	

+="CN61021"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Feb-08	30-Jun-08	87890.00	="ITC"	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:00 PM	

+="CN61026"	"On Line Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Dec-07	30-Jun-08	144072.50	="TBA"	="SKILLSOFT"	14-Feb-08 04:01 PM	

+="CN61027"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	18-Dec-07	30-Jun-08	193600.00	="TBA"	="ACTIVIDENTITY (AUSTRALIA) PTY LTD"	14-Feb-08 04:01 PM	

+="CN61036"	"Prevision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jan-08	30-Jun-08	137500.00	="ITC"	="PYXIS CONSULTING GROUP PTY LTD"	14-Feb-08 04:02 PM	

+="CN61038"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	143829.18	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61041"	"CONFERENCE VIDEO EQUIPMENT"	="Department of Employment and Workplace Relations"	14-Feb-08	="Communications Devices and Accessories"	10-Jan-08	31-Jan-08	118278.07	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	14-Feb-08 04:02 PM	

+="CN61054"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Nov-07	30-Jun-08	184346.80	=""	="ICON RECRUITMENT PTY LTD"	14-Feb-08 04:04 PM	

+="CN61063"	"Maintenance 07-08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Aug-07	30-Jun-08	195690.00	=""	="INFRA CORPORATION PTY LTD"	14-Feb-08 04:05 PM	

+="CN61065"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	242000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61066"	""MAY-AUG Rent Reimbursement LVL1, Brindabella Cct""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	17-Aug-07	31-Aug-07	99206.45	=""	="OFFICE OF WORKPLACE SERVICES"	14-Feb-08 04:06 PM	

+="CN61069"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	110000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 04:06 PM	

+="CN61088"	"Software Services & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	30-Aug-07	30-Jun-08	290085.21	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:09 PM	

+="CN61107"	"Bus transport for DEWR staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	26-Jul-07	18-Jul-08	200000.00	=""	="DEANES BUSLINES PTY LTD"	14-Feb-08 04:11 PM	

+="CN61115"	"Postage costs from Mailhouse services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	30-Jun-08	96000.00	=""	="AUSTRALIA POST (ACT 9397355)"	14-Feb-08 04:12 PM	

+="CN61118"	"Fitouts"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Jul-07	82589.10	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:12 PM	

+="CN61125"	"Fitouts"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	31-Jul-07	220184.25	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:13 PM	

+="CN61126"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	80000.00	=""	="LLOYD'S REGISTER QUALITY ASSURANCE"	14-Feb-08 04:13 PM	

+="CN61130"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	120000.00	=""	="AUSSAFE CONSULTING P/L"	14-Feb-08 04:14 PM	

+="CN61131"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	230000.00	=""	="DAVIS LANGDON"	14-Feb-08 04:14 PM	

+="CN61132"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	02-Jan-09	150000.00	=""	="MACSS"	14-Feb-08 04:14 PM	

+="CN61134"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	22-Dec-08	140000.00	=""	="ALL QA SERVICES PTY LTD"	14-Feb-08 04:14 PM	

+="CN61136"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	01-Jun-10	160000.00	=""	="SALMAT  LIMITED"	14-Feb-08 04:15 PM	

+="CN61142"	"Provision for staff accommodation Alice Springs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	09-Jul-07	14-Jan-08	90000.00	=""	="DESERT PALMS RESORT"	14-Feb-08 04:15 PM	

+="CN61151"	""Fitouts at Level 10 414 LaTrobe St, Melb""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	10-Jul-07	30-Jun-08	200986.50	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:16 PM	

+="CN61156"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Sep-08	90000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:17 PM	

+="CN61173"	"Comcare (SIFC) asbestos claims"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Jun-08	100000.00	=""	="SPARKE HELMORE"	14-Feb-08 04:19 PM	

+="CN61178"	" Provision for Dynamic Business Modelling Services "	="Department of Immigration and Citizenship"	14-Feb-08	="Business function specific software"	29-Oct-07	15-Dec-07	130000.00	=""	="University of Canberra"	14-Feb-08 04:21 PM	

+="CN61198"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	02-Jul-07	30-Sep-08	100000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:22 PM	

+="CN61216"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	14-Jan-08	30-Jun-08	91525.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	14-Feb-08 04:25 PM	

+="CN61226"	"OFSC advertising tenders"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Jun-08	90000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:26 PM	

+="CN61244"	"Installation of Security System"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	14-May-10	232000.00	=""	="DATA KEY SYSTEMS (ACT) P/L"	14-Feb-08 04:28 PM	

+="CN61249"	"Best Way Inn"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	16-Jun-08	99150.00	=""	="HOTEL MOTEL & ACCOMODATION"	14-Feb-08 04:29 PM	

+="CN61251"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	15-Jan-08	30-Jun-08	95040.00	="ITC"	="EUROLINK CONSULTING AUST P/L"	14-Feb-08 04:29 PM	

+="CN61259"	"contractor services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Jun-08	125000.00	=""	="PEGASUS GLOBAL PTY LTD"	14-Feb-08 04:30 PM	

+="CN61263"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Nov-07	30-Jun-08	116600.00	=""	="ISG"	14-Feb-08 04:31 PM	

+="CN61275"	"Conference"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	31-Aug-07	81150.00	=""	="AMORA HOTEL JAMISON SYDNEY"	14-Feb-08 04:32 PM	

+="CN61283"	"Media Monitoring Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	90000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:33 PM	

+="CN61304"	"Maintenanace"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	103785.00	=""	="ALLEN SYSTEMS GROUP (ASG)"	14-Feb-08 04:36 PM	

+="CN61311"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	241973.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:37 PM	

+="CN61312"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Jul-07	30-Jun-08	215600.00	=""	="AXIS CONSULTING PTY LTD"	14-Feb-08 04:37 PM	

+="CN61320"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	193600.00	=""	="ICON RECRUITMENT PTY LTD"	14-Feb-08 04:38 PM	

+="CN61324"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	257400.00	=""	="TITAN CONSULTING SERVICES"	14-Feb-08 04:38 PM	

+="CN61325"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	11-Jul-07	30-Jun-08	133000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:39 PM	

+="CN61326"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	85800.00	=""	="DIVERSITI"	14-Feb-08 04:39 PM	

+="CN61339"	"SCOPE Software Maintenance - Corporate Licence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	12-Jul-07	30-Jun-08	86103.44	=""	="ALPHAWEST SERVICE PTY LTD"	14-Feb-08 04:40 PM	

+="CN61342-A1"	" Assistance for Australian Government Agencies' Management of their Websites Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jul-04	30-Jun-08	112200.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:40 PM	

+="CN61348-A1"	" Staff to assist with various financial statement audits. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	30-Sep-08	161866.00	=""	="Caskadel Pty Limited"	14-Feb-08 04:40 PM	

+="CN61362-A2"	" Staff to assist with the 2007-08 Financial Statement Audit of the Department of Defence. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	125250.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61364-A1"	" Staff to assist with various Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	115000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61365"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 04:41 PM	

+="CN61367-A1"	"Yarralumla Consulting Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	130000.00	=""	="Yarralumla Consulting Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61370"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Jun-08	165000.00	=""	="EJOBS RECRUITMENT SPECIALISTS P/L"	14-Feb-08 04:42 PM	

+="CN61371-A1"	" Assist with the development of a Better Practice Guide on Internal Budgeting - Phase 2. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	07-Jan-08	30-Jun-08	154500.00	=""	="KPMG Peat Marwick - ACT"	14-Feb-08 04:42 PM	

+="CN61374"	"July 2007 Mid-month Reimbursement to United Group"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Sep-07	221953.89	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:42 PM	

+="CN61378"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="PHILLIPS FOX LAWYERS"	14-Feb-08 04:42 PM	

+="CN61380"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="MINTER ELLISON"	14-Feb-08 04:43 PM	

+="CN61384"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="FREEHILLS"	14-Feb-08 04:43 PM	

+="CN61383-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	15-Jan-08	30-Sep-08	120960.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:43 PM	

+="CN61390"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	200000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 04:43 PM	

+="CN61393-A2"	" Staff to assist with various financial statement audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	24-Jan-08	30-Oct-08	197760.00	=""	="Ascent Audit"	14-Feb-08 04:44 PM	

+="CN61395-A1"	" Undertake Performance Audit of Illegal, Unreported and Unregulated Fishing in the Southern Ocean. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	26-Nov-07	31-Dec-08	236841.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:44 PM	

+="CN61396"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	28-Nov-07	30-Jun-08	254812.80	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	14-Feb-08 04:44 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val150000to300000.xls
@@ -1,1 +1,499 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75483"	"WEST HEAD GUNNERY RANGE : REDEVELOPMENT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-09	226363.50	=""	="CONNELL WAGNER VIC PTY LTD"	10-May-08 08:31 AM	

+="CN75489"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-Jun-08	199056.00	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 08:32 AM	

+="CN75527"	"Develop a joint unmanned aerial system concept & small/tactical unmanned aerial system future ne"	="Department of Defence"	10-May-08	="Project management"	06-Feb-08	30-Jun-08	244736.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 08:36 AM	

+="CN75553"	"PROVISION OF SENIOR PHARMACY SERVICES (S.PAPASTAMA EDINBURGH 1 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	218000.20	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75556"	"PROVISION OF DENTIST SERVICES (DR. R. GOYNE) HSFED 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	290000.70	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75557"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS AT EVANS HEAD AIR WEAPONS RANGE"	="Department of Defence"	10-May-08	="Roads and landscape"	06-Feb-08	30-Jun-08	267307.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:39 AM	

+="CN75558"	"PROVISION OF DENTIST SERVICES (DR.P.WONG) HSFEDN R - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	290000.70	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75562"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.PICKERIN 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	203000.60	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75570"	"PROVISION OF AGL CABLE-AIRFIELD LIGHTING MAINTENAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	214094.10	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	10-May-08 08:41 AM	

+="CN75572"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	153386.96	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 08:41 AM	

+="CN75590"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-08	196938.28	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 08:43 AM	

+="CN75603"	"DMOS CONTRACT MR WICKS AND MR HARRISON 11 FEB 08 - 9 FEB 09"	="Department of Defence"	10-May-08	="Aircraft"	05-Feb-08	09-Feb-09	287955.80	=""	="NOVA AEROSPACE"	10-May-08 08:44 AM	

+="CN75627"	"Access Costs ISO WPSS"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Feb-08	30-Jun-08	220000.00	=""	="TELSTRA"	10-May-08 08:46 AM	

+="CN75642"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	30-Jun-08	153550.46	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 08:48 AM	

+="CN75652"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	220000.00	=""	="RAYTHEON AEROSPACE SYS ITEG SER"	10-May-08 08:49 AM	

+="CN75659"	"Project LAND 400 Human Factors Risk Analysis"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	08-Feb-08	16-May-08	157787.30	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 08:49 AM	

+="CN75683"	"NQ2081 - B SQN to Bldg 811 Pit and Conduit Works L"	="Department of Defence"	10-May-08	="Components for information technology or broadcasting or telecommunications"	07-Feb-08	30-Jun-08	238984.90	=""	="EMAK COMMUNICATIONS"	10-May-08 08:52 AM	

+="CN75689"	"PROVISION OF PHARMACY SERVICES (J.CHRISTIE, A.CHRI EDN RAAF EDINBURGH 01 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	175999.98	=""	="NASANSB"	10-May-08 08:52 AM	

+="CN75693"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.WORTHLEY 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	174000.20	=""	="NASANSB"	10-May-08 08:53 AM	

+="CN75699"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	150534.45	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:53 AM	

+="CN75739"	"FITOUT WORKS AT 1 TOPO SURVEY WORKING ACCOMM"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	25-Feb-08	30-Jun-08	156926.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75755"	"2008 Sponsorship of EOC Group. EOC will conduct ex centres around Australia, targeting school leaver"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	25-Feb-08	30-Jun-08	204530.70	=""	="EOC GROUP"	10-May-08 08:59 AM	

+="CN75756"	"REFURB TO FIRE SIMULATORS SFS"	="Department of Defence"	10-May-08	="Fire protection"	25-Feb-08	30-Jun-08	173910.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75775"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS TRACKS AT WIDE BAY TRAINING AREA"	="Department of Defence"	10-May-08	="Roads and landscape"	25-Feb-08	30-Jun-08	276807.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:00 AM	

+="CN75829"	"IBM Computing Equipment and support"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	22-Feb-08	27-Feb-08	205664.80	=""	="TAPESTRY SYSTEMS PTY LTD"	10-May-08 09:06 AM	

+="CN75833"	"POC: MARK MCCLURE CONTACT: 02 626 50420"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	22-Feb-08	30-Jun-09	199886.60	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 09:06 AM	

+="CN75843"	"AIR CHTR OP ANODE FACE TOUR"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	173000.00	=""	="PDL TOLL"	10-May-08 09:07 AM	

+="CN75854"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	176836.82	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 09:08 AM	

+="CN75858"	"SEAHOUND HARD EROSION REMEDIATION SWBTA"	="Department of Defence"	10-May-08	="Roads and landscape"	28-Feb-08	30-Jun-08	183315.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:08 AM	

+="CN75918"	"Engagement of a programmer / analyst to carry out maintenance & development work."	="Department of Defence"	10-May-08	="Software"	27-Feb-08	31-Jul-08	176000.00	=""	="HAYS PERSONNEL SERVICES"	10-May-08 09:14 AM	

+="CN75944"	"BUSINESS SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	02-May-08	170000.00	=""	="TOTAL DECISION SUPPORT PTY LTD"	10-May-08 09:17 AM	

+="CN75967"	"POC RAAF Group Captain Jo Hamwood; DPRA Mr Josh Co"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	19-Feb-08	27-Jun-08	183000.00	=""	="DPRA AUSTRALASIA PTY LTD"	10-May-08 09:19 AM	

+="CN75977"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	164500.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 09:20 AM	

+="CN75980"	"S5128, WR 300060675. HMAS Penguin Refurbishment of Bldg 17 to approx Level 3 standard as per the SoW"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	154836.48	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 09:20 AM	

+="CN75985"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	15-Feb-08	190738.01	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 09:58 AM	

+="CN75994"	"CONTRACT SERVICES"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	22-Nov-07	30-Jun-08	208882.50	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN76041"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	04-Jul-08	180994.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:01 AM	

+="CN76123"	"Fixed Plant and Equipment maintenance program for RAAF Edinburgh and Jindalee for FY 07/08"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	15-Jan-08	30-Jun-08	185500.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:05 AM	

+="CN76126"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	255454.00	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:05 AM	

+="CN76127"	"FP&E REACTIVE MAINTENANCE REIMBURSEABLES"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	30-Apr-08	30-Jun-08	185743.02	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:05 AM	

+="CN76129"	"Management Fees for FY 07/08 in accordance with NQ Comprehensive Maintenance Contract"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	02-May-08	30-Jun-08	167413.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:06 AM	

+="CN76136"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Dec-08	278300.00	=""	="ACUMEN ALLIANCE"	10-May-08 10:06 AM	

+="CN76155"	"ENCGGERA REDEVELOPMENT STAGE 1."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	30-Jun-08	211957.90	=""	="JOHN HOLLAND CONSTRUCTION PTY LTD"	10-May-08 10:07 AM	

+="CN76169"	"HOLSWORTHY : SPECIAL FORCES TRAINING FACILITY."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	167119.34	=""	="HANSEN YUNCKEN PTY LTD"	10-May-08 10:08 AM	

+="CN76177"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	30-Dec-08	212523.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:08 AM	

+="CN76187"	"DISIP Panel Stage Two Order for Site Integration Services at RAAF Waggga and East Sale"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	13-Dec-07	172986.00	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:09 AM	

+="CN76196"	"Undertake road repairs at the range & cantonment areas at the Singleton Military Area"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	20-Feb-08	30-Jun-08	299985.10	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:09 AM	

+="CN76200"	"CONSULTANCY & REPORTING"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	30-Jun-08	244343.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:09 AM	

+="CN76213"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	239522.96	=""	="KAZ GROUP PTY LTD"	10-May-08 10:10 AM	

+="CN76216"	"CADETNET ENHANCEMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	300000.00	=""	="DIALOG INFORMATION TECHNOLOGY"	10-May-08 10:10 AM	

+="CN76222"	"Penguin - Refurbishment of BNH - Phase 3"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	21-Apr-08	30-Jun-08	244981.02	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:11 AM	

+="CN76226"	"PARAMEDICAL SERVICES HMAS ALBATROSS JAN-JUN 2007"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	03-Apr-08	30-Jun-08	237084.10	=""	="PARAMEDICAL SERVICES PTY LTD"	10-May-08 10:11 AM	

+="CN76228"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	164978.00	=""	="ICON RECRUITMENT"	10-May-08 10:11 AM	

+="CN76242"	"JP2077 2B1 MILIS solution"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	21-Nov-07	30-May-08	205920.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76246"	"Professional Services"	="Department of Defence"	10-May-08	="Office supplies"	28-Apr-08	30-Jun-08	295292.12	=""	="CONTINUUM SERVICES PTY LTD"	10-May-08 10:12 AM	

+="CN76253"	"REFURBISH RECOVERY BUILDING"	="Department of Defence"	10-May-08	="Project management"	23-Nov-07	30-Jun-08	163599.67	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 10:12 AM	

+="CN76256"	"GSS Contract Hospitality and Catering"	="Department of Defence"	10-May-08	="Saddlery and harness goods"	30-Jun-07	30-Jun-07	185900.04	=""	="SEARSON BUCK PTY LTD"	10-May-08 10:12 AM	

+="CN76262"	"Provision of Services for Zones of Confidence (ZOC) project."	="Department of Defence"	10-May-08	="Business administration services"	01-May-08	30-May-08	157986.40	=""	="HSA SYSTEMS PTY LTD"	10-May-08 10:13 AM	

+="CN76264"	"11 BRIGADE FACILITIES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	28-Apr-08	30-Jun-09	155674.30	=""	="THIESS PTY LTD"	10-May-08 10:13 AM	

+="CN76268"	"EXTERNAL SERVICE PROVIDER"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	289872.00	=""	="ICON RECRUITMENT"	10-May-08 10:13 AM	

+="CN76272"	"Hire of contracting services"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	18-Dec-08	230783.61	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:13 AM	

+="CN76288"	"REFURBISHMENT IT EQUIPMENT"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Aug-07	30-Jun-08	183615.77	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:14 AM	

+="CN76293"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	23-Nov-07	261180.01	=""	="KPMG AUSTRALIA"	10-May-08 10:14 AM	

+="CN76310"	"FP&E REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-Apr-08	30-Jun-08	286000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:15 AM	

+="CN76352"	"ARMY PRODUCTION  DURING FY07/08"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	151039.28	=""	="GEORGE PATTERSON Y & R"	10-May-08 10:18 AM	

+="CN76354"	"FACOPS"	="Department of Defence"	10-May-08	="Temporary personnel services"	12-Nov-07	30-Jun-08	224950.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:18 AM	

+="CN76369"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	09-Jan-08	10-Jan-08	275000.00	=""	="MINTER ELLISON"	10-May-08 10:19 AM	

+="CN76381"	"TRAVEL SERVICES"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	191472.50	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76388"	"RV0645-RGN-FALL FROM HEIGHT LEGISLATION COMPLIANCE WORKS"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Apr-08	30-Jun-08	250000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 10:20 AM	

+="CN76424"	"WATER & SEWERAGE RATES - FY 07/08"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	27-Mar-08	30-Jun-08	190950.00	=""	="SYDNEY WATER CORPORATION"	10-May-08 10:22 AM	

+="CN76425"	"GARRISON SUPPORT ACTIVITIES - ADDITIONAL REQUIRE- MENTS - NOV 2007"	="Department of Defence"	10-May-08	="Security surveillance and detection"	13-Dec-07	31-Jul-09	203059.44	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:22 AM	

+="CN76453"	"FOOD SERVICES"	="Department of Defence"	10-May-08	="Bread and bakery products"	15-Apr-08	30-Jun-08	151418.69	=""	="PDL TOLL"	10-May-08 10:24 AM	

+="CN76460"	"Signature Series, Sprung Structure 60ft x 75ft"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Sep-07	20-Dec-07	219618.24	=""	="SPRUNG INSTANT STRUCTURES (BAHRAIN)"	10-May-08 10:24 AM	

+="CN76478"	"PAPER SUPPLIES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	29-Apr-08	30-Jun-08	220000.00	=""	="CORPORATE EXPRESS"	10-May-08 10:25 AM	

+="CN76489"	"N0V 2007 DS-NT/K QANTAS DEFENCE MEMBERS TRAVEL"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Nov-07	243346.76	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76493"	"QANTAS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	09-Jan-08	210992.99	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76497"	"QANTAS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	08-Jan-08	200265.74	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:26 AM	

+="CN76498"	"Comms equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	15-Jan-08	169036.04	=""	="MASER TECHNOLOGY GROUP PTY LTD"	10-May-08 10:26 AM	

+="CN76512"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	248210.00	=""	="CLAYTON UTZ"	10-May-08 10:27 AM	

+="CN76536"	"Project Management Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Jun-08	257372.50	=""	="SMS CONSULTING GROUP PTY LTD"	10-May-08 10:29 AM	

+="CN76545"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	01-Sep-08	284650.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:29 AM	

+="CN76611"	"ARTC DECEMBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Dec-07	05-Feb-08	223929.03	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76623"	"DECEMBER 2007 STATEMENT"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Jan-08	271249.67	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76630"	"2007-08 NATIONAL AIRFIELDS PROJECTS - PACKAGE 1 - SERVICES."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	238876.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	10-May-08 10:35 AM	

+="CN76633"	"Fit out of CSIRO premises for Defence use"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	12-Oct-07	21-Dec-07	220000.00	=""	="CSIRO"	10-May-08 10:35 AM	

+="CN76637"	"GSS CUSTOMER PAYS INVOICES DEC 07"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	14-Jan-08	30-Jun-08	166606.89	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:35 AM	

+="CN76642"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	232525.01	=""	="ERNST & YOUNG CONSULTING"	10-May-08 10:35 AM	

+="CN76673-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	27-Feb-08	240721.78	=""	="STRATOS"	10-May-08 10:37 AM	

+="CN76696"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	28-Feb-08	233748.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:38 AM	

+="CN76725"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	162829.70	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76729"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	153224.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76733"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	246446.20	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76735"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	03-Dec-07	30-Jun-08	195985.90	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:40 AM	

+="CN76770"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Nov-07	161000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76774"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	12-Nov-07	30-Nov-07	190000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:43 AM	

+="CN76833"	"SUBSCRIPTION TO DEFENCE SEARCHABLE NEWS"	="Department of Defence"	10-May-08	="Computer services"	30-Nov-07	01-Dec-07	287650.00	=""	="SAI GLOBAL LTD"	10-May-08 10:46 AM	

+="CN76839"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Nov-07	20-Nov-07	180000.00	=""	="ROBERTS NEHMER MCKEE"	10-May-08 10:46 AM	

+="CN76841"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	12-Nov-07	20-Nov-07	275000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76857"	"20080213-LCUR - SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	13-Feb-08	13-Feb-08	275000.00	=""	="MINTER ELLISON"	10-May-08 10:48 AM	

+="CN76859"	"20080214-LCUR"	="Department of Defence"	10-May-08	="Legal services"	14-Feb-08	19-Feb-08	240000.00	=""	="MINTER ELLISON"	10-May-08 10:48 AM	

+="CN76925"	"GSS CUSTOMER PAYS INVOICES"	="Department of Defence"	10-May-08	="Cleaning and janitorial services"	19-Nov-07	30-Jul-10	192822.27	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:52 AM	

+="CN76927"	"TRAVEL SERVICES"	="Department of Defence"	10-May-08	="Passenger transport"	31-Oct-07	22-Nov-07	197363.36	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:52 AM	

+="CN76933"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	23-Nov-07	250000.00	=""	="MINTER ELLISON"	10-May-08 10:52 AM	

+="CN76958"	"WR 300074541, S5113, Consultancy to determine the required"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	257626.27	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:54 AM	

+="CN76961"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	05-Dec-07	11-Dec-07	245000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76969-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Nov-07	30-Jun-08	279434.82	=""	="STRATOS"	10-May-08 10:54 AM	

+="CN76975"	"02-244356 31AUG07 LINE ITEMS 3538-3562,3572-3640"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	154450.56	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:55 AM	

+="CN76976"	"AIR CHTR OP ASTUTE REDEPLOY"	="Department of Defence"	10-May-08	="Aircraft"	22-Nov-07	09-Dec-07	291699.00	=""	="PDL TOLL"	10-May-08 10:55 AM	

+="CN77016"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Jan-08	01-Jun-08	288332.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 11:42 AM	

+="CN77017"	"Upgrade Communications Cabling"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	150083.40	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 11:42 AM	

+="CN77037"	"PROVISION OF DENTIST SERVICES KESWICK BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	197989.00	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77042"	"General Research and Development"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	30-Jun-10	244750.00	=""	="QUEENSLAND UNIVERSITY OF"	10-May-08 11:44 AM	

+="CN77045"	"PROVISION OF DENTIST SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	162000.30	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77049"	"PROVISION OF PHYSIOTHERAPIST SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	159000.60	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77068"	"E8267D- PSG VECTOR SIGNAL GENERATOR WITH OPTIONS"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jan-08	01-Feb-08	218741.96	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:45 AM	

+="CN77070"	"Security to hangar"	="Department of Defence"	10-May-08	="Personal safety and protection"	16-Jan-08	30-Jun-08	249506.40	=""	="CHUBB SECURITY AUST PTY LTD"	10-May-08 11:45 AM	

+="CN77085"	"Environmental Clearance"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	30-Jun-08	283584.41	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 11:46 AM	

+="CN77090"	"SN02305 - Asbestos Removal"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	224999.50	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:47 AM	

+="CN77102"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Sep-08	264000.04	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 11:48 AM	

+="CN77111"	"servers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Mar-08	269587.92	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:48 AM	

+="CN77126"	"POC: ANDY ESLER CONTACT: 02 626 50919"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-11	269556.11	=""	="TELSTRA"	10-May-08 11:49 AM	

+="CN77136"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	28-Jun-08	150000.00	=""	="MR ANDREW JOHN KIRKHAM"	10-May-08 11:50 AM	

+="CN77173"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	245275.64	=""	="SUN MICROSYSTEMS"	10-May-08 11:52 AM	

+="CN77195"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	15-Jun-08	200000.00	=""	="PETER RAYMOND CALLAGHAN"	10-May-08 11:54 AM	

+="CN77201"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. BAULDERSTONE HORNIBROOK(MANAGING CONTRACTOR)TRUST"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	153908.70	=""	="BAULDERSTONE HORNIBROOK TRUST"	10-May-08 11:54 AM	

+="CN77221"	"Comms/IT"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	23-Jun-08	159170.04	=""	="GENERAL DYNAMICS C4 SYSTEMS INC."	10-May-08 11:55 AM	

+="CN77229"	"R1-C REFURB OF DEPSEC AREA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	209000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77251"	"CONTRACTOR PROVIDE CDD & INITIAL JP2047PH3"	="Department of Defence"	10-May-08	="Project management"	21-Jan-08	30-Jun-08	198088.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 11:57 AM	

+="CN77279"	"Removal of unsued, unsafe & unapproved facilities at Fort Wallace"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	300000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:59 AM	

+="CN77283"	"ENHANCED LANDFORCE-STAGE 1 PB1 PMCA PACKAGE 1-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	208377.40	=""	="PARSONS BRINCKERHOFF"	10-May-08 11:59 AM	

+="CN77291"	"UGLS REIMBURSEMENT-WILLIAMTOWN BUSINESS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	220000.00	=""	="UNITED GROUP SERVICES"	10-May-08 12:00 PM	

+="CN77312"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	20-Feb-08	171065.86	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:01 PM	

+="CN77316"	"TEST CONSOLES REQUIRED FOR SET UP OF NIDA CLASSROO HMAS CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	17-Jan-08	191400.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 12:01 PM	

+="CN77344"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	17-Jan-08	165000.00	=""	="RIGHT MANAGEMENT CONSULTANTS"	10-May-08 12:03 PM	

+="CN77356"	"TSS  Contract - Provision of Technical Assistance Services for JP2042 Support"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jan-08	20-May-08	190344.00	=""	="EBOR COMPUTING"	10-May-08 12:03 PM	

+="CN77389"	"DEMS INFRASTRUCTURE APPRAISAL MODULE STAGE 2 ENHAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	176000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 12:05 PM	

+="CN77396"	"MSCT-lite perpetual licence & TDF perpetual licenc e"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	20-Feb-08	253052.80	=""	="DARONMONT TECHOLOGIES PTY LTD"	10-May-08 12:06 PM	

+="CN77407"	"SN01923 - REGIONAL FIRE PREVENTION WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	282889.44	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:06 PM	

+="CN77475"	"Consltant and Professional Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Jun-08	253176.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 12:10 PM	

+="CN77481"	"PAYMENT FOR AAR SUPPORT FOR RED FLAG DURING NOV 05"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	25-Jan-08	25-Jan-08	281098.83	=""	="DFAS OMAHA OPERATING LOCATION"	10-May-08 12:10 PM	

+="CN77503"	"WR 300060683, S5134. HMAS Kuttabul Expense compone refurbishment of Building 807."	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Jan-08	30-Jun-08	285877.67	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:12 PM	

+="CN77515"	"Design of 1/4 scale model of components of the AP-3C aircraft"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	29-Jan-08	30-Apr-08	172260.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	10-May-08 12:12 PM	

+="CN77516"	"CONTACT: PAUL MEULENBROEK 08 8935 4622. WR: 150085395"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Jan-08	30-Jun-08	245177.50	=""	="ASSET SERVICES"	10-May-08 12:12 PM	

+="CN77528"	"2008 subs for Elsevier Electronic Journals for DST ORL & content fee for Elsevier Electronic Jou"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Jan-08	09-Jan-08	190791.45	=""	="ELSEVIER B.V."	10-May-08 12:13 PM	

+="CN77553"	"DEVELOP  PROJECT DOCUMENTATION JP2057 PH3"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	30-Jun-08	152400.00	=""	="SME GATEWAY LIMITED"	10-May-08 12:14 PM	

+="CN77577"	"PSP:STEPHEN BERGMAN PERIOD:04/02/08 - 11/07/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	180322.67	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 12:16 PM	

+="CN77579"	"Provision of three PSP contractors ICT service sup 08"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	24-Jan-08	30-Jun-08	153945.00	=""	="ICON RECRUITMENT"	10-May-08 12:16 PM	

+="CN77590"	"PSP: RAYMOND WINN PERIOD:18/2/08 - 23/07/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Jul-08	160930.00	=""	="SYPAQ SYSTEMS PTY LTD"	10-May-08 12:16 PM	

+="CN77591"	"FACOPS REVIEW CONSULTANCY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	176000.00	=""	="EVANS & PECK PTY LTD"	10-May-08 12:17 PM	

+="CN77593"	"NATIONAL POLLUTION INVENTORY EMS IMPLEMENTATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	176000.00	=""	="PARSON BRINKERHOFF AUSTRALIA"	10-May-08 12:17 PM	

+="CN77615"	"PABX System"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Jan-08	01-Apr-08	278062.31	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:18 PM	

+="CN77623"	"Professional support to the RUP Stage 2"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	14-Jan-08	31-Dec-08	266200.00	=""	="ACSPRO PTY LTD"	10-May-08 12:18 PM	

+="CN77645"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO PROJECT MANAGER/CONTRACTOR ADMINISTRATOR DURI"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-09	184526.10	=""	="CONNELL WAGNER (SA) PTY LTD"	10-May-08 12:20 PM	

+="CN77661"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE GHD-HYDRAULIC DESIGN-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	175719.15	=""	="GHD PTY LTD"	10-May-08 12:20 PM	

+="CN77666"	"ACMS-1493191 PRN: AVOP030/08 CH47 SIMULATOR TRAINING UK"	="Department of Defence"	10-May-08	="Military rotary wing aircraft"	11-Dec-07	12-Dec-07	208672.24	=""	="CAE AIRCREW TRAINING SERVICES PLC"	10-May-08 12:21 PM	

+="CN77670"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	274330.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77678"	"Provide SEI Support to DSTO and the ADO through the establishment of a SEI Industry Cell"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Dec-07	29-May-08	277116.40	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:21 PM	

+="CN77682"	"FLIGHT INFORMATION PUBLICATIONS FOR ADF PILOTS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	11-Dec-07	31-Oct-08	226713.40	=""	="AIRSERVICES AUSTRALIA"	10-May-08 12:22 PM	

+="CN77703"	"RANDWICK DISPOSAL 7 RATIONALISATION PROJECT-INTERI REMEDIATION OF ASBESTOS FROM SOUTHERN BANK AT THE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	15-Jan-08	30-Jun-08	254468.12	=""	="WARD CIVIL AND ENVIRONMENT ENGINEER"	10-May-08 12:23 PM	

+="CN77716"	"PAYMENT FOR LOGISTIC SUPPORT TO KUJARRA III 24 SEP 2007"	="Department of Defence"	10-May-08	="Transport operations"	12-Dec-07	19-Dec-07	232578.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 12:23 PM	

+="CN77719"	"Dual Digital Monitor Receivers"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	10-Jan-08	30-Apr-08	177040.19	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 12:23 PM	

+="CN77722"	"PABX system upgrade"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	01-Dec-08	224964.52	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 12:24 PM	

+="CN77728"	"OP OUTREACH - POLICE COMPOUNDS - MINJILANG CMMTY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	274220.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77731"	"2007-08 NATIONAL AIRFIELDS PROJECTS-PACKAGE 2-PROJ SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-09	237150.10	=""	="COFFEY PROJECTS"	10-May-08 12:24 PM	

+="CN77751"	"DEFENCE FITOUT WORKS - AUSTRALIAN CHANCERY MADRID"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-09	165490.60	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 12:25 PM	

+="CN77759"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Nov-08	162800.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77773"	"22 Photocopiers"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	10-Dec-07	14-Jan-08	230142.00	=""	="CANON AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77812"	"S5089, WR 300076174. FBE Berths 2-5 Repair Subside consultancy firm to produce a report and sepcific"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	30-Jun-08	239409.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:29 PM	

+="CN77820"	"TENDER AZ 3826-GALLIPOLI BARRACKS,ENOGGERA ZONE PL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-09	180364.80	=""	="SKM"	10-May-08 12:29 PM	

+="CN77836"	"tape cartridges and cleaning cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	30-Apr-08	155320.00	=""	="PRODATA PTY LTD"	10-May-08 12:30 PM	

+="CN77841"	"POC: CHRIS MCCOLL CONTACT: 02 626 60001"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Dec-07	22-Dec-08	151313.37	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:30 PM	

+="CN77852"	"HMAS STIRLING REDEVELOPMENT STAGE 3A. PMCA FOR SBC PHASE."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	263692.00	=""	="CONNELL WAGNER (WA) PTY LTD"	10-May-08 12:31 PM	

+="CN77887"	"Professional Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	31-Dec-07	240900.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	10-May-08 12:33 PM	

+="CN77903"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	31-Jan-08	30-Nov-08	153307.00	=""	="CLAYTON UTZ"	10-May-08 12:34 PM	

+="CN77910"	"7114LR12 RECEIVER INCL LICENCES, CASES, CABLES"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	31-Jan-08	29-Feb-08	167101.00	=""	="BELLINGER INSTRUMENTS PTY LTD"	10-May-08 12:34 PM	

+="CN77919"	"Benefits Manager"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	13-Dec-07	21-Jan-10	176852.92	=""	="CONNELL WAGNER VIC PTY LTD"	10-May-08 12:35 PM	

+="CN77949"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	165000.00	=""	="APIS CONSULTING GROUP"	10-May-08 12:36 PM	

+="CN77966"	"Licence renewals Phone:  08 8259 6127"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	14-Dec-07	195351.20	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77967"	"Construct an impervious burn pit at Salt Ash Weapons Range"	="Department of Defence"	10-May-08	="General building construction"	29-Jan-08	30-Jun-08	250000.30	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:37 PM	

+="CN77972"	"POC: ROBYN NICHOLAS CONTACT: 02 626 50765"	="Department of Defence"	10-May-08	="Chicken processing machinery and equipment"	12-Dec-07	30-Jun-08	153010.00	=""	="APIS CONSULTING GROUP"	10-May-08 12:37 PM	

+="CN77993-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	25-Feb-08	22-Aug-08	193050.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:12 AM	

+="CN77995-A3"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	261800.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:18 AM	

+="CN77997"	"FACILITY CERTIFICATION"	="Department of Defence"	12-May-08	="Environmental control systems"	17-Dec-07	30-Jun-08	240199.35	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:29 AM	

+="CN78006"	"THERMAL MANIKIN SYSTEM"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Dec-07	30-Jun-08	230195.80	=""	="MEASUREMENT TECHNOLOGY NORTHWEST"	12-May-08 09:31 AM	

+="CN78032"	"SEA FREIGHT MOVT OF IMV, TRAILER AND GRADER OP"	="Department of Defence"	12-May-08	="Marine transport"	14-Dec-07	31-Mar-08	232128.73	=""	="APL LOGISTICS"	12-May-08 09:36 AM	

+="CN78054"	"Development of DARNOS"	="Department of Defence"	12-May-08	="Software"	14-Dec-07	30-Jun-08	164934.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 09:41 AM	

+="CN78065"	"HQJOC PROJECT-SECURE EDGE TECHNOLOGIES PTY LTD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-09	210262.10	=""	="SECURE EDGE TECHNOLOGIES PTY LTD"	12-May-08 09:43 AM	

+="CN78070"	"BATHURST ISLAND INSTALL DEMOUNTABLE"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	19-Dec-07	30-Jun-08	281656.10	=""	="ASSET SERVICES"	12-May-08 09:45 AM	

+="CN78079"	"Physical Infrastructure Appraisal"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Dec-07	30-Jun-08	298000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-May-08 09:47 AM	

+="CN78095"	"BACKFILLING OF OPERATIONAL VACANCIES AS APPROVED BY HEADQUARTERS AIR COMMAND"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	19-Dec-07	12-Dec-08	275000.00	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:50 AM	

+="CN78102"	"Computer components and accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	21-Mar-08	185924.20	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 09:51 AM	

+="CN78149"	"REPAIRS AND MAINTENANCE TO SECT DEFENCE RANGE"	="Department of Defence"	12-May-08	="General building construction"	18-Dec-07	30-Jun-08	154286.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78158"	"Conduct study of OHS MIS for Defence"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	284988.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 10:01 AM	

+="CN78164-A3"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	11-Feb-08	30-Jun-09	257125.00	=""	="Paxus Australia Pty Limted"	12-May-08 10:03 AM	

+="CN78174"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-07	156200.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:20 AM	

+="CN74178-A3"	"Provision of Specialist Services for Information Technology"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-09	205468.00	=""	="Ross Human Directions Limited"	12-May-08 10:56 AM	

+="CN74172-A2"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	176660.00	=""	="Ross Human Directions Limited"	12-May-08 10:59 AM	

+="CN78197-A3"	" Lease of Office Space Thursday Island "	="Department of Foreign Affairs and Trade"	12-May-08	="Lease and rental of property or building"	01-Feb-07	28-Feb-12	153444.15	=""	="TUBARAO INVESTMENTS PTY. LTD."	12-May-08 11:51 AM	

+="CN78203-A2"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-08	203060.00	=""	="Paxus Australia Pty Limited"	12-May-08 12:03 PM	

+="CN78217"	"AIR CHTRS OP PNG ASSIST PNG-TSV"	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	12-Dec-07	196000.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 01:06 PM	

+="CN78263-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Dec-08	159157.35	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 01:11 PM	

+="CN78277"	"MULWALA CONTAMINATED GROUNDWATER REMEDIATION PHASE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	229900.00	=""	="THALES AUSTRALIA"	12-May-08 01:13 PM	

+="CN78284"	"WATER QUALITY MONITORING PROGRAM SOUTH QLD"	="Department of Defence"	12-May-08	="Water resources development and oversight"	05-Dec-07	30-Jun-08	224649.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78291"	"LANDSCAPE MONITORING PROGRAM SWBTA"	="Department of Defence"	12-May-08	="Environmental Services"	05-Dec-07	30-Jun-08	151658.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:15 PM	

+="CN78306"	"INFRASTRUCTURE APPRAISALS WESTERN REGION"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	05-Dec-07	30-Jun-08	195100.40	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 01:18 PM	

+="CN78330"	"SA2279 - FACOPS Building 205 Upgrade"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Dec-07	30-Jun-08	270452.22	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:22 PM	

+="CN78339"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	264000.00	=""	="PROVIDENCE CONSULTING GROUP PL"	12-May-08 01:23 PM	

+="CN78343"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	220000.00	=""	="FRONTLINE HYPERLINK PTY LTD"	12-May-08 01:24 PM	

+="CN78362"	"Task Manger"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	31-Dec-08	229147.56	=""	="KOBOLD GROUP LTD"	12-May-08 01:27 PM	

+="CN78363"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	30-Apr-08	207917.40	=""	="BLAKE DAWSON WALDRON"	12-May-08 01:27 PM	

+="CN78373"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-May-08	151839.60	=""	="SMS MANAGEMENT & TECHNOLOGY"	12-May-08 01:29 PM	

+="CN78380"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	200000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 01:30 PM	

+="CN78386"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	19-Dec-08	227873.25	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:31 PM	

+="CN78394"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	02-May-08	212578.01	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 01:32 PM	

+="CN78407"	"FACOPS - SA2245"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	188849.10	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78409"	"DMO BATTERY CHARGING - 1FD BTY - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	198402.72	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:35 PM	

+="CN78422"	"SPRINKLER HEAD REPLACEMENT CONTRACT STH QLD UNDER 200 HEAD BUILDINGS"	="Department of Defence"	12-May-08	="Fire protection"	10-Dec-07	30-Jun-08	154333.01	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:37 PM	

+="CN78426"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	01-Apr-08	246100.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-May-08 01:38 PM	

+="CN78442"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-May-08	167261.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:41 PM	

+="CN78459"	"Contracted personnel - Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	14-May-08	30-Jun-09	185152.00	="DFAT07-DID-004"	="WHIZDOM PTY LTD"	12-May-08 01:43 PM	

+="CN78460"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	28-Mar-08	250000.01	=""	="CHRISTOPHER LEE"	12-May-08 01:43 PM	

+="CN78467"	"INSTALLATION OF RAINWATER TANKS DARLING DOWNS AREA"	="Department of Defence"	12-May-08	="Water resources development and oversight"	07-Dec-07	30-Jun-08	205962.02	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:44 PM	

+="CN78471"	"AREA WEIGHBRIDGE CONSTRUCTION GALLIPOLI BKS"	="Department of Defence"	12-May-08	="Transportation services equipment"	07-Dec-07	30-Jun-08	291038.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:45 PM	

+="CN78478"	"Network Equipment"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Dec-07	10-Dec-07	196177.35	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:46 PM	

+="CN78497"	"FINANCIAL RISK AND REMEDIATION COST ASSESSMENT FY0"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	267360.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:48 PM	

+="CN78507"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	192500.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 01:50 PM	

+="CN78527"	"Lease of datasets"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jun-09	170000.60	=""	="SENSIS PTY LTD"	12-May-08 01:53 PM	

+="CN78529"	"SEA FREIGHT OP CATALYST"	="Department of Defence"	12-May-08	="Marine transport"	20-Dec-07	20-Dec-07	223538.59	=""	="APL LOGISTICS"	12-May-08 01:53 PM	

+="CN78540"	"NETWORK ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	31-Dec-08	231000.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:55 PM	

+="CN78547"	"REBURBISH NAVY HQ ABLUTIONS - BULIMBA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Dec-07	30-Jun-08	179439.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:57 PM	

+="CN78558"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Dec-07	191644.20	=""	="COFFEY ENVIRONMENTS PTY LTD"	12-May-08 02:00 PM	

+="CN78576"	"POC: KEVIN FERGUSON CONTACT: 02 626 50615"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	278865.40	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:03 PM	

+="CN78603"	"FURTHER AUDIT OF MANDATORY AND LEGISLATIVE FIXED P MAINTENANCE."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	265265.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 02:07 PM	

+="CN78606"	"To be delivered on base no later than 10december07"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	21-Jan-08	198958.43	=""	="NEC AUSTRALIA PTY LTD"	12-May-08 02:08 PM	

+="CN78625"	"JUNGLE VILLAGE REFURBISHMENT - CANUNGRA"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jan-08	30-Jun-08	156164.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 02:11 PM	

+="CN78637"	"POC:David Boyes/Liz Rankin PSP services 02 612 70809/02 626 50741"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Jan-08	30-Jun-08	190299.98	=""	="ILLUMINATED SOLUTIONS PTY LTD"	12-May-08 02:12 PM	

+="CN78654"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Dec-08	162713.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78658"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	208802.00	=""	="CAREERS MULTILIST LIMITED"	12-May-08 02:14 PM	

+="CN78661"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	177681.49	=""	="CAREERS MULTILIST LIMITED"	12-May-08 02:14 PM	

+="CN78685"	"CONCRETE BLOCKS"	="Department of Defence"	12-May-08	="Concrete and cement and plaster"	10-Apr-08	15-May-08	190190.00	=""	="HANSON PRECAST"	12-May-08 02:16 PM	

+="CN78693"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	11-Feb-08	271810.00	=""	="PDL TOLL"	12-May-08 02:16 PM	

+="CN78719"	"Airfares"	="Department of Defence"	12-May-08	="Office supplies"	31-Oct-07	31-Oct-07	165850.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:18 PM	

+="CN78731"	"AE/021/07-08 AIR CHTR EX NORTHERN ATLAS AMB-LEA-CU"	="Department of Defence"	12-May-08	="Aircraft"	12-Apr-08	10-May-08	155000.00	=""	="STRATEGIC AVIATION - USD"	12-May-08 02:19 PM	

+="CN78743"	"Professional services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	19-May-08	159154.52	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:19 PM	

+="CN78744"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	15-Jun-08	200000.00	=""	="FRANK CULLEN"	12-May-08 02:19 PM	

+="CN78758"	"LEGAL SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	15-Dec-07	226200.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:20 PM	

+="CN78760"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-09	221283.33	=""	="RAYTHEON AUST PTY LTD"	12-May-08 02:20 PM	

+="CN78769"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-09	190758.33	=""	="RAYTHEON AUST PTY LTD"	12-May-08 02:21 PM	

+="CN78799"	"This order is subject to the terms and conditions Systems Standing Offer CFO SAP 1/2005"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Apr-08	31-Mar-09	200376.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 02:23 PM	

+="CN78815"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1. ADDITIONAL 30-50% DESIGN (POST PWC)."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	180976.40	=""	="JOHN HOLLAND BENEFICIARIES TRUST"	12-May-08 02:24 PM	

+="CN78821"	"WARRADALE WTSS. WARRADALE WTSS."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	186758.00	=""	="GHD PTY LTD"	12-May-08 02:24 PM	

+="CN78830"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	21-Dec-07	30-Jun-08	160651.92	=""	="ASI SOLUTIONS"	12-May-08 02:24 PM	

+="CN78898"	"Test & Evaluation Trail"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	21-Dec-07	30-Jun-08	220000.00	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 02:29 PM	

+="CN78922"	"POC: Mark McClure Contact: 02 6265 0540"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	22-Jun-09	267625.80	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 02:31 PM	

+="CN78925"	"dsto software development"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	01-Jun-08	167948.04	=""	="MINISTRY OF DEFENCE, DSTL"	12-May-08 02:31 PM	

+="CN78952"	"ANNUAL MAINTENANCE SUPPORT FEE FOR OUTSTART EVOLUTION"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	01-May-08	182600.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	12-May-08 02:33 PM	

+="CN78962"	"OVERVIEW OF STATE THREATENED SPECIES AND ECOLOGICA DEFENCE ESTATE"	="Department of Defence"	12-May-08	="Environmental control systems"	17-Dec-07	30-Jun-08	150360.10	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 02:34 PM	

+="CN79017"	"Computer Desktops"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	15-Jan-08	151608.82	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79034"	"Construct Deployable Equipment Storage Shed at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	07-Apr-08	30-Jun-08	159999.99	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:39 PM	

+="CN79039"	"04-425295 29FEB08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	29-Feb-08	11-Mar-08	286243.09	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:40 PM	

+="CN79071"	"CONTRACTOR PROVIDE DEVELOP CDD"	="Department of Defence"	12-May-08	="Project management"	04-Apr-08	30-Jun-08	268270.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 02:42 PM	

+="CN79077"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	04-Apr-08	173800.00	=""	="SMS CONSULTING GROUP LIMITED"	12-May-08 02:43 PM	

+="CN79078"	"This order is subject to the terms and conditions Systems Standing Offer CFO SAP 1/2005"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Apr-08	14-Nov-08	209880.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 02:43 PM	

+="CN79079"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	230000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:43 PM	

+="CN79080"	"GHD4 PMCA - ELF PROGRAM COORDINATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	174885.70	=""	="GHD PTY LTD"	12-May-08 02:43 PM	

+="CN79083"	"GSS CUSTOMER PAYS INVOICES FEB 08"	="Department of Defence"	12-May-08	="Transportation services equipment"	19-Mar-08	30-Jun-08	266714.64	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 02:43 PM	

+="CN79089"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	300000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79093"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	26-Mar-08	31-Mar-08	200000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79127"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	01-Jun-08	157300.00	=""	="FLAVOUR SOLUTIONS PTY LTD"	12-May-08 02:48 PM	

+="CN79132-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jun-08	157080.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 02:48 PM	

+="CN79134"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	16-Jun-08	220000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 02:48 PM	

+="CN79153"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-Jun-08	175560.00	=""	="CARRARD SOLUTIONS"	12-May-08 02:50 PM	

+="CN79157"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	04-Apr-08	04-Apr-08	174754.82	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 02:50 PM	

+="CN79159"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	02-Apr-08	04-Apr-08	290000.00	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 02:51 PM	

+="CN79181"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-Jun-08	179740.00	=""	="CARRARD SOLUTIONS"	12-May-08 02:53 PM	

+="CN79208"	"PABX Systems"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	04-Apr-08	02-Jun-08	162862.31	=""	="FUJITSU AUSTRALIA LTD"	12-May-08 02:55 PM	

+="CN79210"	"HQJOC PROJECT - ADI LIMITED - CISTECH INTEGRATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	167883.88	=""	="THALES AUSTRALIA"	12-May-08 02:55 PM	

+="CN79239"	"Provision of Services for Stocktaking Liability"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	03-Apr-08	30-Jun-08	176000.00	=""	="WORKFORCE TRAINING SOLUTIONS"	12-May-08 02:58 PM	

+="CN79264"	"Delivery of CMC CNNSW - GB & FM Reactive Maintenance work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Jul-05	30-Jun-06	250985.31	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79272"	"CADET FACILITIES MARYBOROUGH AND GLADSTONE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	09-Apr-08	30-Jun-08	204552.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:01 PM	

+="CN79299"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	06-May-08	166106.16	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 03:04 PM	

+="CN79321"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	07-May-08	160335.91	=""	="SUN MICROSYSTEMS"	12-May-08 03:07 PM	

+="CN79341"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	31-Mar-09	248532.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 03:09 PM	

+="CN79360"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	09-Apr-08	220000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:10 PM	

+="CN79382"	"fire detection upgrade"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	09-Apr-08	30-Jun-08	217620.16	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:11 PM	

+="CN79387"	"This Purchase Order is raised to facilitate joint Iterim EW (BHIE) modification activities by BAE Sy"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Apr-08	30-Jun-08	266200.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:12 PM	

+="CN79413"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	02-Apr-08	30-Jun-08	275400.00	=""	="DEACONS"	12-May-08 03:14 PM	

+="CN79431"	"S5091, WR 300079946. Asbestos removal program - Ca To undertake the emergency removal of previously"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	205700.00	=""	="THALES AUSTRALIA"	12-May-08 03:15 PM	

+="CN79446"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	14-Apr-08	14-Apr-08	235252.85	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	12-May-08 03:16 PM	

+="CN79479"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	242008.80	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79480"	"REPAIRS TO HIGH CURRENT POWER SUPPLY UNITS AT HEAVY REPAIR FACILITY, SURGE EVE#NT AS PER C439154"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	26-Mar-08	28-Aug-08	283140.00	=""	="THALES AUSTRALIA"	12-May-08 03:18 PM	

+="CN79485"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	178794.00	=""	="PROVIDENCE CONSULTING GROUP PL"	12-May-08 03:18 PM	

+="CN79503"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	24-Apr-08	24-Jul-08	156200.00	=""	="Ingena Group Limited"	12-May-08 03:19 PM	

+="CN79519"	"TRAVEL SERVICES"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	29-Feb-08	233127.23	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:20 PM	

+="CN79554"	"UPGRADE OF MARITIME SAFETY NET"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	08-Apr-08	30-Jun-08	185191.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 03:23 PM	

+="CN79567"	"SDSS GS DATA REMEDIATION"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	28-May-08	160000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 03:23 PM	

+="CN79579"	"Engagement of ESP for Open Plan Professional Sched"	="Department of Defence"	12-May-08	="Management support services"	26-Mar-08	30-Jun-09	170950.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:25 PM	

+="CN79593"	"AIR09000PH7 STE & Software Engineering Support"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	13-Feb-08	24-Aug-08	155446.98	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:26 PM	

+="CN79597"	"CLIENT WORKSTATION REPLACEMENT AT HEAVY REPAIR REPAIR FACILITY. REFER CAPO C439136"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	15-May-08	170238.98	=""	="THALES AUSTRALIA"	12-May-08 03:26 PM	

+="CN79604"	"GSS CUSTOMER PAYS JAN 08"	="Department of Defence"	12-May-08	="Security surveillance and detection"	19-Feb-08	30-Jun-08	163951.24	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79612"	"Provision of Queue Management Services"	="Medicare Australia"	12-May-08	="Electronic hardware and component parts and accessories"	14-Apr-08	30-Jun-08	223085.00	=""	="Nexa Group Pty Ltd"	12-May-08 03:27 PM	

+="CN79618"	"INFORMATION MANAGEMENT SYSTEM MIGRATION AT HEAVY REPAIR FACILITY. REFER CAPO C439136"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	15-May-08	154084.97	=""	="THALES AUSTRALIA"	12-May-08 03:27 PM	

+="CN79649"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	12-Feb-08	12-Feb-08	275000.00	=""	="MINTER ELLISON"	12-May-08 03:29 PM	

+="CN79666"	"Corrosion control and prevention - Seahawk aircraf"	="Defence Materiel Organisation"	12-May-08	="Aircraft fuselage and components"	11-Feb-08	30-Jun-08	176000.00	=""	="DSTO PSL SRM"	12-May-08 03:31 PM	

+="CN79671"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Feb-08	13-Feb-08	240000.00	=""	="MINTER ELLISON"	12-May-08 03:32 PM	

+="CN79621-A2"	"Forensic accounting services - Variation"	="Australian Securities and Investments Commission"	12-May-08	="Accounting services"	20-Mar-08	31-Dec-08	259783.00	=""	="Axiom Forensics"	12-May-08 03:32 PM	

+="CN79688"	"CODE REVIEW"	="Defence Materiel Organisation"	12-May-08	="Computer services"	12-Feb-08	30-Apr-08	227380.00	=""	="IBM AUSTRALIA LTD"	12-May-08 03:33 PM	

+="CN79691"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	267389.87	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:33 PM	

+="CN79695"	"ESP - SPECIFICATION WRITING FOR MEDICAL & DENTAL EQUIPMENT"	="Department of Defence"	12-May-08	="Electronic reference material"	25-Mar-08	19-Sep-08	281220.63	=""	="SME GATEWAY LIMITED"	12-May-08 03:33 PM	

+="CN79710"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	203907.84	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:34 PM	

+="CN79725"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	01-Apr-08	30-Jun-08	209440.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	12-May-08 03:35 PM	

+="CN79726"	"CONTACT: NEV IRISH 08 8935 4468 WR: 150131043"	="Department of Defence"	12-May-08	="General building construction"	14-Nov-07	30-Jun-08	298831.50	=""	="WOLPERS GRAHL PTY LTD"	12-May-08 03:35 PM	

+="CN79733"	"SRP2 NRE CONTRACT SURVEY AND QUOTE 10 REV B"	="Department of Defence"	12-May-08	="Aircraft"	25-Mar-08	30-Jun-10	205600.83	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 03:35 PM	

+="CN79741"	"CONSULTANTS"	="Department of Defence"	12-May-08	="General building construction"	16-Nov-07	30-Jun-08	150340.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:36 PM	

+="CN79758"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	28-Mar-08	30-Dec-11	151141.00	=""	="EDS (AUSTRALIA) PTY LTD"	12-May-08 03:37 PM	

+="CN79759"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	15-Feb-08	15-Feb-08	230000.00	=""	="SPARKE HELMORE LAWYERS"	12-May-08 03:37 PM	

+="CN79765-A1"	"MIMMS Maintenance Module (MMM) Business System Support Centre Help Desk"	="Defence Materiel Organisation"	12-May-08	="Business administration services"	15-Feb-08	30-Jun-08	167400.00	=""	="DIMENSION DATA LEARNING"	12-May-08 03:37 PM	

+="CN79772"	"CONTACT LEIGH GILLIGAN 08 8973 6552 WR: 150132450"	="Department of Defence"	12-May-08	="General building construction"	16-Nov-07	30-Jun-08	174130.00	=""	="ASSET SERVICES"	12-May-08 03:38 PM	

+="CN79779"	"AIRCRAFT ENGINEERING AND MAINTENANCE"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	15-Feb-08	30-Apr-08	220000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:39 PM	

+="CN79790"	"AIR FARES"	="Department of Defence"	12-May-08	="Fuels"	31-Dec-07	18-Feb-08	160561.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79794"	"Development of the PFPS And JMPS Survivability Common Component"	="Department of Defence"	12-May-08	="Software"	28-Mar-08	30-Jun-08	207845.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:40 PM	

+="CN79797"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	219800.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 03:40 PM	

+="CN79839"	"Toyota Hilux 4x2 Tray (4 Cy) Single Cab Qty:9"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	17-Oct-08	170843.01	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79844"	"Toyota Corolla Sedan Qty 11"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	29-Aug-08	252008.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79851"	"02-24435631DEC07 LINES 3991 - 4251"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	223497.17	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:43 PM	

+="CN79868"	"QUARANTINE FEES"	="Department of Defence"	12-May-08	="Environmental protection"	21-Apr-08	30-Jun-08	150000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	12-May-08 03:45 PM	

+="CN79870"	"ESD SPARES"	="Defence Materiel Organisation"	12-May-08	="Electrical equipment and components and supplies"	15-Feb-08	15-May-08	212885.08	=""	="ALLEN-VANGUARD LTD"	12-May-08 03:45 PM	

+="CN79871"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	179080.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:45 PM	

+="CN79921"	"JCSE  Information Systems Specialist"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	14-Feb-08	07-Feb-09	279400.01	=""	="L G COOK & ASSOCIATES PTY TLD"	12-May-08 03:48 PM	

+="CN73481"	"Catering Services for all participants, volunteers and attendees."	="Department of the Prime Minister and Cabinet"	12-May-08	="Banquet and catering services"	04-Apr-08	30-Apr-08	240000.00	=""	="The Hyatt Hotel"	12-May-08 03:48 PM	

+="CN79937"	"RBS 70 SPARES"	="Defence Materiel Organisation"	12-May-08	="Light weapons and ammunition"	14-Feb-08	13-Mar-09	173199.00	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 03:50 PM	

+="CN79946"	"CONSULTANCY FOR PLANNING OF 07 & 08 PROGRAM OF WORKS"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	22-Apr-08	30-Jun-08	187572.53	=""	="CARSON GROUP PTY LTD"	12-May-08 03:51 PM	

+="CN73485"	"Management Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Business and corporate management consultation services"	17-Mar-08	30-Apr-08	195000.00	=""	="Event Planners Australia Pty Ltd"	12-May-08 03:51 PM	

+="CN73546-A1"	"Production Services - Event management"	="Department of the Prime Minister and Cabinet"	12-May-08	="Stage or studio lighting systems"	14-Apr-08	22-Apr-08	242388.10	=""	="Great Big Events"	12-May-08 03:53 PM	

+="CN79976"	"Connection of Envoy Software to SDSS"	="Department of Defence"	12-May-08	="Computer services"	27-Mar-08	30-Jun-08	196032.10	=""	="MINCOM LTD"	12-May-08 03:54 PM	

+="CN79984"	"Extension of Milspec Preferred Supplier Arrangment February 08 - 30 June 08"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	14-Feb-08	30-Jun-08	269590.20	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 03:54 PM	

+="CN79985"	"ELECTRICITY SUPPLY"	="Department of Defence"	12-May-08	="Utilities"	15-Apr-08	30-Jun-08	190486.14	=""	="SYNERGY"	12-May-08 03:54 PM	

+="CN79990"	"technical services"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	187647.93	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:55 PM	

+="CN80015"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	225500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:57 PM	

+="CN80017"	"TRAINING"	="Department of Defence"	12-May-08	="Medical training and education supplies"	08-Nov-07	15-Nov-07	197340.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 03:57 PM	

+="CN80037"	"Naming ceremony"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	01-Dec-22	193503.71	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 03:59 PM	

+="CN80049"	"QANTAS ACCOUNT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	26-Mar-08	27-Mar-08	157873.67	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:59 PM	

+="CN80050"	"This order is raised in accordance with the terms DMOSS standing offer and Request for Quotation and"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Aug-08	162220.00	=""	="SME GATEWAY LIMITED"	12-May-08 04:00 PM	

+="CN80053"	"Port Wakefield Proof & experimental establishment stage 2 environmental investigation for lead c"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	16-Apr-08	30-Jun-08	161260.00	=""	="GHD PTY LTD"	12-May-08 04:00 PM	

+="CN65710"	" Academic Phase and Army Aviation Artificer Course.  Contract option to extend has been taken up.  New contract total value is now $664,540.00.  Previous Gazettal Ref 1456524. "	="Department of Defence"	12-May-08	="Education and Training Services"	22-Nov-04	01-Mar-10	285400.00	="RFT016-HQ04"	="RMIT University"	12-May-08 04:00 PM	

+="CN80055"	"This order is raised in accordance with the terms DMOSS standing offer and Request for Quotation and"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Aug-08	157866.01	=""	="GHD PTY LTD"	12-May-08 04:00 PM	

+="CN80064"	"QANTAS JAN08 TRAVEL CELL"	="Department of Defence"	12-May-08	="Travel facilitation"	31-Jan-08	31-Jan-08	277753.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:01 PM	

+="CN80080"	"ILS Manager for JP 5408PH2B"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Jan-09	179740.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:02 PM	

+="CN80087"	"Regional Lavarack Barracks and RAAF Base Implement Irrigation Master Plan"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	31-Oct-07	30-Jun-08	194333.70	=""	="SPOTLESS"	12-May-08 04:02 PM	

+="CN80095"	"Air System Equipment For Infantry Mobility Vehicle"	="Defence Materiel Organisation"	12-May-08	="Automotive specialty tools"	06-Feb-08	30-Jun-09	297000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:02 PM	

+="CN80098"	"SN02716 Russell Carpark Extension"	="Department of Defence"	12-May-08	="Tools and General Machinery"	01-Nov-07	30-Jun-08	188000.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:02 PM	

+="CN80101"	"Professional Services"	="Defence Materiel Organisation"	12-May-08	="Guided missiles"	07-Feb-08	12-Nov-08	187572.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:02 PM	

+="CN80105"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	19-Dec-08	251508.84	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:03 PM	

+="CN80115"	"Radar Equipment"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	11-Apr-08	18-Jun-08	265148.01	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:03 PM	

+="CN80119"	"Asbestos Removal TS Mersey"	="Department of Defence"	12-May-08	="Decontamination services"	20-Nov-07	30-Jun-08	155388.84	=""	="RESOLVE FM"	12-May-08 04:03 PM	

+="CN80129"	"Supply of ZF LSG1000 Transmission Spare Parts contract No:2007/1023355"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Feb-08	29-Apr-08	194666.07	=""	="ZF AUSTRALIA PACIFIC PTY LTD"	12-May-08 04:04 PM	

+="CN80172"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	06-Feb-08	30-Jun-08	211846.00	=""	="DEACONS"	12-May-08 04:08 PM	

+="CN80193"	"TFT MONITORS FOR REDUNDANT 15' CRT MONITORS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	30-Aug-08	206750.28	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:09 PM	

+="CN80195"	"Thermal Imaging Scopes for the Mallina"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	09-Apr-08	10-Jun-08	243050.50	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:10 PM	

+="CN80218"	"Progress Claim no 9 Solomon Islands Wharf Project 127"	="Department of Defence"	12-May-08	="Machinery and transport equipment manufacture"	30-Sep-07	31-Dec-08	178203.17	=""	="FLETCHER KWAIMANI JOINT VENTURE"	12-May-08 04:11 PM	

+="CN80240"	"SPMO/OUT-00010563/08PC dated 3 Apr08 Training Services"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	30-Jun-08	293220.62	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:13 PM	

+="CN80245"	"HMAS SYDNEY NDS Installation"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	05-Feb-08	30-Jun-08	216975.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 04:13 PM	

+="CN80248"	"AIR CHTR OP ANODE"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	30-Nov-07	296890.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 04:14 PM	

+="CN80286"	"Made to Measure RAN Uniforms,as follows: Winter and Summer Coat and Trousers"	="Defence Materiel Organisation"	12-May-08	="Clothing"	05-Feb-08	30-Jun-08	245701.58	=""	="V & F TAILORING"	12-May-08 04:17 PM	

+="CN80288"	"AIR CHTR OP SLIPPER TG6331.11 MRE"	="Department of Defence"	12-May-08	="Aircraft"	21-Nov-07	30-Nov-07	266018.18	=""	="ADAGOLD AVIATION PTY LTD"	12-May-08 04:17 PM	

+="CN80321"	"Full size ship badges for ACPB's 1-14"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Dec-07	01-Dec-22	205501.14	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 04:20 PM	

+="CN80324"	"DSS Laboratory Refurbishment"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Nov-07	30-Jun-08	209000.00	=""	="RESOLVE FM"	12-May-08 04:21 PM	

+="CN80331"	"Beverage, Chocolate Soups - Beef, Savoury, Chicken, Tomato"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	20-Dec-07	31-Oct-08	178729.60	=""	="MANSFIELDS PTY LTD"	12-May-08 04:21 PM	

+="CN80337"	"PURCHASE OF ONE XT458U DUAL UHF TRANSCEIVER"	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	29-Aug-08	165722.14	=""	="THALES AUSTRALIA"	12-May-08 04:21 PM	

+="CN80338"	"COURSE"	="Department of Defence"	12-May-08	="Software"	20-Nov-07	09-Jun-08	192226.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 04:21 PM	

+="CN80389"	"POC: ANTHONY WARNOCK CONTACT: 02 626 69354"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	10-Jan-08	151685.81	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:24 PM	

+="CN80415"	"*AEWC FUNDING TO DSTO FOR MISSION SYSTEMS INTERGRA 2007,2008 & 2009 AS PART OF THE STRATEGIC ALL"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	30-Jun-09	264000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:26 PM	

+="CN80418"	"Comms/IT"	="Department of Defence"	12-May-08	="Hardware"	16-Nov-07	14-Dec-07	230890.00	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	12-May-08 04:26 PM	

+="CN80425"	"This P. O. is raised for the Impellor change out o Cold Section Ser No. GE-C-013255."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	171086.30	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:26 PM	

+="CN80428"	"SERVERS 02 626 50979"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	08-Feb-08	213933.50	=""	="COMMANDER INTEGRATED NETWORKS PTY"	12-May-08 04:26 PM	

+="CN80436"	"Binoculars, 6x30 Fujinon"	="Department of Defence"	12-May-08	="Industrial optics"	14-Apr-08	30-Jun-08	279219.83	=""	="STEALTH SURVEILLANCE SYSTEMS"	12-May-08 04:27 PM	

+="CN80452"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	163226.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:28 PM	

+="CN80459"	"P.O. raised for APA Impellor, P/N 6068T91G01, chan section, SerNo. GE-C-031201"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	171086.30	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:28 PM	

+="CN80487"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Apr-08	255840.08	=""	="MULTI-PACK LTD"	12-May-08 04:30 PM	

+="CN80491"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Non alcoholic beverages"	09-Jan-08	31-Oct-08	298300.75	=""	="MULTI-PACK LTD"	12-May-08 04:30 PM	

+="CN80495"	"  PROVISION OF SUPPORT FOR IN SERVICE SUPPORT"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Jan-08	30-Jun-08	155712.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:31 PM	

+="CN80502"	"Power Station Dual Fuel Conversion Project"	="Department of Defence"	12-May-08	="Oil and gas drilling and operation materials"	11-Jan-08	30-May-08	216576.00	=""	="STRIKE OIL"	12-May-08 04:32 PM	

+="CN80511"	"Support Contract for CMDS Equipment"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Jan-08	31-Mar-09	168880.22	=""	="THALES OPTRONICS (BURY ST EDMUNDS)"	12-May-08 04:32 PM	

+="CN80513"	"Order is placed IAW Terms and Conditions of the P3 Support Contract (C338542), the RFQ MPSPO/2006/11"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	30-Jun-08	172476.68	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:32 PM	

+="CN80566"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Fish"	09-Jan-08	15-Jun-08	238211.45	=""	="MULTI-PACK LTD"	12-May-08 04:35 PM	

+="CN80570"	"PROCUREMENT OF QUANTITY 5 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	31-May-08	227055.95	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80587"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	212520.00	=""	="Innovative Business Computing P/L"	12-May-08 04:36 PM	

+="CN80595"	"C130J DYNAMIC PROPELLOR BALANCING SOFTWARE PROJECT"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	30-Jun-08	246155.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 04:37 PM	

+="CN80623"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	30-May-08	173250.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:38 PM	

+="CN80631"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Jams and jellies and nut and sweet spreads and fruit conserves"	08-Jan-08	30-Apr-08	237100.00	=""	="IMPALEX INTERNATIONAL PTY LTD"	12-May-08 04:39 PM	

+="CN80634"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	198352.00	=""	="Whizdom Pty Ltd"	12-May-08 04:39 PM	

+="CN80663"	"Programmable Electronic Devices"	="Defence Materiel Organisation"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	25-Feb-08	30-Jun-09	295925.81	=""	="XTEK PTY LTD"	12-May-08 04:40 PM	

+="CN80673"	"Procedure writers in support of JP2077 Project"	="Department of Defence"	12-May-08	="Computer services"	21-Dec-07	30-Jun-08	248000.01	=""	="SMS CONSULTING GROUP LIMITED"	12-May-08 04:41 PM	

+="CN80723"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	244731.81	=""	="SUN MICROSYSTEMS"	12-May-08 04:43 PM	

+="CN80733"	"FIRE EXTIGUISHER, CIRCUIT BREAKER & HARNESS KIT"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Feb-08	27-Jun-08	162360.82	=""	="THALES AUSTRALIA"	12-May-08 04:44 PM	

+="CN80759"	"FINANCIAL SERVICES FOR PROJECT CLOSEOUT"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	30-Jun-08	220000.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:45 PM	

+="CN80772"	"PAYING OFF AVAILABILITY WORKPACKAGE DEVELOPMENT ASSISTANCE"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	31-May-08	275278.97	=""	="THALES AUSTRALIA"	12-May-08 04:46 PM	

+="CN80775"	"Engagement of External Service Providers to support RFT Prime Vendor Pharmaceuticals"	="Defence Materiel Organisation"	12-May-08	="Drugs and Pharmaceutical Products"	22-Feb-08	30-Jun-08	280720.00	=""	="CONNELL WAGNER VIC PTY LTD"	12-May-08 04:46 PM	

+="CN80777"	"RE AUTHORING PUBLICATION AAP7213.006-2-SRM-210"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-Aug-08	250044.30	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:47 PM	

+="CN80800"	"ESP Support services for ATC C3 ISSP contracts"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	30-Jun-08	156401.34	=""	="JACOBS AUSTRALIA"	12-May-08 04:47 PM	

+="CN80822"	"INSTALLATION OF FALL RESTRAINT SYSTEM"	="Department of Defence"	12-May-08	="Vehicle safety and security systems and components"	04-Apr-08	19-May-08	173065.64	=""	="STANDFAST CORPORATION PTY LTD"	12-May-08 04:48 PM	

+="CN80825"	"Project Coordinator Support"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	12-May-08	154000.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:49 PM	

+="CN80838"	"Specialist Support"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	04-Apr-08	30-Dec-08	287760.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:49 PM	

+="CN80839"	"RAN/Rockwell Collins RAWS PSA (NASPO)"	="Defence Materiel Organisation"	12-May-08	="Aircraft master control systems"	23-Feb-08	31-Dec-08	271723.54	=""	="ROCKWELL COLLINS INC."	12-May-08 04:49 PM	

+="CN80862-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	27-Jul-10	296043.71	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80876"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	271100.91	=""	="C4I PTY LTD"	12-May-08 04:51 PM	

+="CN80883"	"RPLSS Functional Support for HMAS Sydney maintenan ce 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:51 PM	

+="CN80889"	"Safety and Certifcation Plans"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	18-Dec-07	30-Jun-08	174092.00	=""	="ENGINEERING & SCIENTIFIC SYSTEMS"	12-May-08 04:51 PM	

+="CN80895"	"4133 TUASSC URDEF 06/07 - PRIORITY 2 MK45 MOD 2 5 INCH GUN SYSTEM"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	165000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80865-A4"	"Provsions for Emergency Power Supply Maintenance Services"	="Department of Immigration and Citizenship"	12-May-08	="Electric utilities"	01-Nov-06	31-Oct-09	215876.00	=""	="HeydayGroup Pty Ltd"	12-May-08 04:52 PM	

+="CN80899"	"RPLSS Functional Support for HMAS Darwin mainten- ance activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:52 PM	

+="CN80909"	"PROFESSIONAL SERVICES FOR NEVILLE TOMMY"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Dec-07	29-Mar-08	220708.36	=""	="AUSTRALIAN COLLEGE OF PROJECT MANAG"	12-May-08 04:52 PM	

+="CN80923"	"Hardware for Joint Planning Suite Trials"	="Department of Defence"	12-May-08	="Hardware"	09-Apr-08	15-Apr-08	175598.50	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:53 PM	

+="CN80929"	"NIGHT VISION SYSTEMS EQUIPMENT"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	30-Jun-08	241248.56	=""	="NIOA TRADING PTY LTD"	12-May-08 04:53 PM	

+="CN80931"	"Provision of support to 2/14 QMI and 2 CAV REGT ADHOC TASK 02/08"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	30-Jul-08	153029.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-May-08 04:53 PM	

+="CN80934"	"RFQTS 2819 Professional Service Provider"	="Department of Defence"	12-May-08	="Environmental Services"	29-Jan-08	30-Jun-08	175692.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:53 PM	

+="CN80980"	"A total of 149,040 Rounds to be supplied by Olin W A total quantity of 621 M2A1 Canister to supplied"	="Department of Defence"	12-May-08	="Explosive materials"	04-Feb-08	30-Jun-09	168862.32	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:56 PM	

+="CN80984"	"Army Spares"	="Department of Defence"	12-May-08	="Gun systems"	08-Apr-08	31-Jan-09	248718.76	=""	="FN HERSTAL SA"	12-May-08 04:57 PM	

+="CN80988"	"MINIMI MACHINE GUN SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	07-Apr-08	02-Jan-09	295774.82	=""	="FN HERSTAL SA"	12-May-08 04:57 PM	

+="CN81002"	"RPLSS Functionasl Support for HMAS Newcastle 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:58 PM	

+="CN81010"	"Task backlog close out Task Groups 1A, 1B and 1C"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	26-Feb-08	20-Jun-08	221280.61	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:58 PM	

+="CN81011"	"Data Integrity Suppport for FFGSPO AMPS DataBase"	="Department of Defence"	12-May-08	="Military watercraft"	18-Dec-07	23-May-08	164087.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:59 PM	

+="CN81021"	"Ship repairs"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	30-Jun-08	218689.90	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:59 PM	

+="CN81031"	"ILS Support Services INMARSAT"	="Department of Defence"	12-May-08	="Professional engineering services"	18-Dec-07	30-Dec-08	285010.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:59 PM	

+="CN81037"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	05-May-08	30-Jun-08	163554.05	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:00 PM	

+="CN81048"	"TAM 111 6 place multicalorimeters Replacement of WSD EOP Cluster Nodes"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	26-Feb-08	20-May-08	160000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:01 PM	

+="CN81061"	"Blanket order raised for Fuel testing Services for LPT 0978 refers"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	19-Dec-07	30-Jun-08	220000.00	=""	="OILCHECK PTY LTD"	12-May-08 05:01 PM	

+="CN81076"	"RPLSS Functional for HMAS Melbourne Maintenance Activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	166092.75	=""	="THALES AUSTRALIA"	12-May-08 05:02 PM	

+="CN81078"	"HMAS ADELAIDE - TANK CLEANING"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	24-Feb-08	154891.54	=""	="BLIGH APPOINTMENTS PTY LTD"	12-May-08 05:02 PM	

+="CN81081"	"PROCUREMENT OF QUANTITY 6 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	05-May-08	251046.11	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81087"	"WARDEN 7 PUBS DEVELOPMENT"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	08-Apr-08	28-Jun-08	170711.20	=""	="DARONMONT TECHNOLOGIES PTY LTD"	12-May-08 05:02 PM	

+="CN81093"	"Public Relations Consultant"	="Department of Defence"	12-May-08	="Printed media"	19-Dec-07	30-Jun-08	181500.00	=""	="BALDWIN BOYLE GROUP PTY LTD"	12-May-08 05:02 PM	

+="CN81097"	"Field and Refridgeration"	="Department of Defence"	12-May-08	="Industrial refrigeration"	19-Dec-07	30-Apr-10	165748.00	=""	="INTERNATIONAL LOGISTICS MANAGEMENT"	12-May-08 05:03 PM	

+="CN81101"	"air conditioning upgrade on HMAS LEEUWIN"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	157250.89	=""	="AIMTEK PTY LTD"	12-May-08 05:03 PM	

+="CN81105"	"Maintenance of radios"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	19-Dec-07	27-Jun-08	261305.00	=""	="MOTOROLA COMMUNICATIONS AUST P / L"	12-May-08 05:03 PM	

+="CN81162"	"PAMMANDI SHIPPING COST"	="Department of Defence"	12-May-08	="Transportation components and systems"	19-Dec-07	19-Dec-07	179958.06	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:05 PM	

+="CN81163"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	30-May-08	224400.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:05 PM	

+="CN81173"	"OCEAN FREIGHT - GWEO"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	163140.89	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81176"	"MPITS for LCLS Butterworth Malaysia"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	20-Feb-08	21-Jul-08	227243.27	=""	="POLYTRONIC INTERNATIONAL LTD"	12-May-08 05:06 PM	

+="CN81200-A1"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	19-Feb-08	04-Mar-11	287950.32	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:07 PM	

+="CN81201"	"ILS support"	="Department of Defence"	12-May-08	="Professional engineering services"	18-Dec-07	30-Jun-08	276112.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:07 PM	

+="CN81206"	"Supporting PPC#Module File for use in PPC#applicat"	="Department of Defence"	12-May-08	="Flight communications related systems"	26-Nov-07	30-Jun-08	195214.54	=""	="WESTAR AEROSPACE & DEFENSE GROUP IN"	12-May-08 05:07 PM	

+="CN81216"	"ISO Certification"	="Department of Defence"	12-May-08	="Satellites"	18-Dec-07	30-Jun-08	173320.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81230"	"This Purchase Order is raised to cover the cost of manpower to supplement the existing BAE Chinook r"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	23-Jan-08	30-Jun-08	275000.00	=""	="BAE SYSTEMS(AUSTRALIA)"	12-May-08 05:08 PM	

+="CN81232"	"4532.05 C2 EQUIP FOR DATA LINK TESTING SAAB SYSTEM CSEG"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	30-Jun-08	297000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81252"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	195447.01	=""	="JACOBS AUSTRALIA"	12-May-08 05:09 PM	

+="CN81260"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	258800.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81272"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	293500.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81273"	"ANNUAL MANAGEMENT FEE - SEA KING"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	19-Dec-07	31-Jan-08	269014.08	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:10 PM	

+="CN81277"	"WESTLAND HELICOPTERS  ANNUAL MANAGEMENT FEE"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	19-Dec-07	31-Jan-08	260930.59	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:10 PM	

+="CN81280"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	183500.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81303"	"FTR of MAchine Guns, 5.56mm, Minimi, F89A1 LSW."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	184951.80	=""	="THALES AUSTRALIA"	12-May-08 05:11 PM	

+="CN81306"	"0.50 CAL  Syst Cont'd Wpn, Mk 19 Syst Cont'd Wpn Freight"	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	28-Mar-08	165855.80	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:12 PM	

+="CN81309"	"Procurement of Storage and Transport Containers for M113AS4 vehicles"	="Department of Defence"	12-May-08	="Transportation services equipment"	22-Jan-08	15-Jun-08	206977.83	=""	="TRIMCAST PTY LTD"	12-May-08 05:12 PM	

+="CN81311"	"FTR of Machine Guns, .50 cal M2HB and then conversion to 12.7mm M2HB Quick Change Barrel."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	154935.66	=""	="THALES AUSTRALIA"	12-May-08 05:12 PM	

+="CN81324"	"PN 901721-104, Fitting, Main Wing, Forward, RH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Mar-09	190704.91	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81327"	"PN 901721-103, Fitting, Main Wing, Forward, LH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Aug-09	190704.91	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81345"	"hydraulic rigs"	="Department of Defence"	12-May-08	="Hardware"	23-Jan-08	01-Jun-08	178007.30	=""	="SUN TEST SYSTEMS B.V."	12-May-08 05:14 PM	

+="CN81347-A1"	"Install the Defence Transactor Processor at HMAS Cairns - Software Upgrade"	="Defence Materiel Organisation"	12-May-08	="Software or hardware engineering"	21-Feb-08	30-Jun-08	222428.80	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 05:14 PM	

+="CN81352"	"Test and Evaluation Engineering Management Services"	="Department of Defence"	12-May-08	="Professional engineering services"	27-Nov-07	30-Nov-08	226182.00	=""	="RICHARDSON O'ROURKE CONSULTING"	12-May-08 05:14 PM	

+="CN81355"	"Provision of KPI Development across GWEO Branch"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Nov-07	30-May-08	184800.00	=""	="SAHA INTERNATIONAL LTD"	12-May-08 05:14 PM	

+="CN81362"	"Cheetah V processor cards As per terms and conditions of Contract N260286"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	21-Feb-08	30-Sep-08	197327.35	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:15 PM	

+="CN81367"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:15 PM	

+="CN81370"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:15 PM	

+="CN81371"	"Techical Services for MIP Gateway."	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	21-Feb-08	11-Apr-08	162412.80	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 05:15 PM	

+="CN81379"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:16 PM	

+="CN81384"	"Production Support FFG Upgrade"	="Department of Defence"	12-May-08	="Manufacturing support services"	25-Jan-08	01-Sep-08	248816.88	=""	="RELEGEN PTY LTD"	12-May-08 05:16 PM	

+="CN81393"	"air conditioning upgrade on HMAS MELVILLE"	="Department of Defence"	12-May-08	="Marine transport"	25-Jan-08	31-Mar-08	151539.41	=""	="AIMTEK PTY LTD"	12-May-08 05:16 PM	

+="CN81400"	"TASK MANAGEMENT TOOL (TMT) DEVELOPMENT"	="Department of Defence"	12-May-08	="Software"	28-Nov-07	30-Jun-08	175340.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81448"	"Rationale for CS 5600 MW ESM Spares Recommendation"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Nov-07	30-Jun-08	285461.17	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:19 PM	

+="CN81465"	"Contracting Services - Mr McCowan"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Feb-08	30-Jun-09	213180.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:20 PM	

+="CN81484-A1"	" 1070-4 COMMISSARY SPACES UPGRADE(GALLEY COMPLEX) FUNDING SUBMISSION "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	27-Jul-10	158327.39	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81487"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable."	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	24-Jan-08	15-Jun-08	245756.50	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:22 PM	

+="CN81530"	"Material Procurement for HMAS Melbourne Reverse Osmosis Plant"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Jun-08	200000.00	=""	="THALES AUSTRALIA"	12-May-08 05:26 PM	

+="CN81537"	"Testing component of MEAO Lifing Review Activities"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Apr-08	165000.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:26 PM	

+="CN81557"	"PROVISION OF ESP SUPPORT"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	187595.20	=""	="SKM"	12-May-08 05:27 PM	

+="CN81558"	"AVIATION GROUND SUPPORT EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	30-Jun-08	179709.20	=""	="FITZROY ENGINEERING GROUP LTD"	12-May-08 05:28 PM	

+="CN81564"	"Tender assessment support for Land 17"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Nov-08	188250.01	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:28 PM	

+="CN81579"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	12-May-08	="Software"	18-Apr-08	31-Mar-09	235750.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:29 PM	

+="CN81580"	"Mine Warfare Tactical Command Software Maintenance"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	31-Dec-07	173791.20	=""	="SOLUTIONS FROM SILICON"	12-May-08 05:29 PM	

+="CN81584"	"COMSARM software development"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	31-Jan-08	190300.00	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:29 PM	

+="CN81594"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	269280.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:30 PM	

+="CN81610"	"Repairs Asraam seekers"	="Department of Defence"	12-May-08	="Conventional war weapons"	12-Dec-07	10-Jan-08	168344.51	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:32 PM	

+="CN81611"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	15-Jun-10	267590.00	=""	="G H VARLEY PTY LTD"	12-May-08 05:32 PM	

+="CN81618"	"Refurbishment Marwin System"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	13-Dec-07	17-Mar-08	193105.00	=""	="VAISALA PTY LTD"	12-May-08 05:33 PM	

+="CN81652"	"Postponement costs"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	30-Mar-09	165413.18	="203845"	="UNITRONIX PTY LTD"	12-May-08 05:37 PM	

+="CN81668"	"Electical Cable Sets and Kits"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	14-Dec-07	01-Jul-08	181553.77	=""	="CMR TECHNOLOGIES INC"	12-May-08 05:39 PM	

+="CN81682"	"Review of Maritime Ranges use and Data requirement"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Dec-07	31-Jan-08	167651.00	=""	="NOVA DEFENCE"	12-May-08 05:41 PM	

+="CN81704"	"Detailed Design Package for HMAS Sydney Mini Typh- oon Weapon System Installation"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	31-Mar-08	170060.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:44 PM	

+="CN81708"	"THIS IS A FINANCIAL TRANSACTION CONDUCTED IN ACCOR 445/2005 DATED 08 AUGUST 2005"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	10-Dec-07	30-Apr-08	230000.00	=""	="DEFENCE SCIENCE & TECHNOLOGY"	12-May-08 05:45 PM	

+="CN81718"	"NASPO POINT OF CONTACT MR CHRIS LANGMAID ON 02 442 CHRIS.LANGMAID2@DEFENCE.GOV.AU"	="Department of Defence"	12-May-08	="Project management"	07-Dec-07	30-Jun-08	201912.38	=""	="JACOBS AUSTRALIA"	12-May-08 05:46 PM	

+="CN81720"	"EPHESE SPARES"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	06-Dec-07	06-Aug-08	183662.49	=""	="SP DEFENSE"	12-May-08 05:46 PM	

+="CN81729"	"POLARIS SPORTS 6X6 ATV"	="Department of Defence"	12-May-08	="War vehicles"	06-Dec-07	18-Jan-08	156049.96	=""	="POLARIS SALES AUSTRALIA &"	12-May-08 05:47 PM	

+="CN81736"	"Software"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	30-Dec-07	244486.00	=""	="BEA SYSTEMS PTY LTD"	12-May-08 05:48 PM	

+="CN81742"	"Mining Material for Ballistic Proection plate"	="Department of Defence"	12-May-08	="Structural materials and basic shapes"	07-Dec-07	07-Mar-08	158818.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 05:49 PM	

+="CN81746"	"Provision of Project Manager REARC Phase 2"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-Jun-08	166904.00	=""	="UXC LIMITED"	12-May-08 05:50 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val16000to20000.xls
@@ -1,1 +1,591 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75488"	"Employment of PSP at Oakey"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	13-Feb-08	26-Jun-08	16720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 08:32 AM	

+="CN75505"	"TRAINING PROGRAM"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Feb-08	14-Feb-08	18700.00	=""	="D'ARCY CONSULTING GROUP"	10-May-08 08:34 AM	

+="CN75539"	"DSN Infrastructure"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	05-Feb-08	30-Mar-08	16187.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 08:38 AM	

+="CN75540"	"Training"	="Department of Defence"	10-May-08	="Education and Training Services"	05-Feb-08	10-Apr-08	19800.00	=""	="M W ROSSITER PTY LTD"	10-May-08 08:38 AM	

+="CN75551"	"IT Training Courses"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Feb-08	29-Feb-08	16676.00	=""	="CONTENTWISE PTY LTD"	10-May-08 08:39 AM	

+="CN75555"	"Condition assessment of Sea Scout building at HMAS Penguin"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	06-Feb-08	30-Jun-08	16838.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:39 AM	

+="CN75580"	"Aircraft Communication Equipment"	="Department of Defence"	10-May-08	="Flight communications related systems"	05-Feb-08	25-Feb-08	18389.06	=""	="NOVA ENGINEERING INC."	10-May-08 08:42 AM	

+="CN75582"	"PDA fitted bullseye"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	05-Feb-08	22-Feb-08	19745.00	=""	="OPENTEC SOLUTIONS PTY LTD"	10-May-08 08:42 AM	

+="CN75584"	"NET PRESENT VALUE ANALYSIS-HOSPITAL FACILITIES IN REGION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	16500.00	=""	="KPMG CORPORATE FINANCE (AUST)"	10-May-08 08:42 AM	

+="CN75592"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	18002.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 08:43 AM	

+="CN75604"	"CONDUCT DRIVER TRAINING"	="Department of Defence"	10-May-08	="Truck tractors"	05-Feb-08	30-Jun-08	18150.00	=""	="DECA TRAINING"	10-May-08 08:44 AM	

+="CN75626"	"LICENSE  & MAINTENANCE PROGRAMMING SOFTWARE"	="Department of Defence"	10-May-08	="Software"	05-Feb-08	29-Feb-08	16995.00	=""	="CYON KNOWLEDGE COMPUTING"	10-May-08 08:46 AM	

+="CN75630"	"POC: EMIL RATHOUSKI CONTACT: 02 626 50939"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17776.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 08:46 AM	

+="CN75636"	"TECHNICAL CONTACT: MR M FOOTNER PHONE:             (08) 8259 6967"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	07-May-08	17396.50	=""	="BRAETEC PTY LTD"	10-May-08 08:47 AM	

+="CN75641-A1"	"Stock Discrepancy Liability Review"	="Department of Defence"	10-May-08	="Industrial Production and Manufacturing Services"	24-Jan-08	28-Mar-08	18388.62	=""	="OWEN ANFRUNS CONSULTING"	10-May-08 08:48 AM	

+="CN75654"	"NWCC NEWSLETTER FOR OPERATIONS DEC07"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	08-Feb-08	15-Feb-08	16721.58	=""	="CENTRICA"	10-May-08 08:49 AM	

+="CN75664"	"Electronic Apparatus"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Feb-08	14-Mar-08	18888.10	=""	="OLYMPUS AUSTRALIA PTY LTD"	10-May-08 08:50 AM	

+="CN75668"	"breakfast pack groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	08-Feb-08	30-Jun-08	16500.00	=""	="LE PACK"	10-May-08 08:50 AM	

+="CN75672"	"Mikron M190Q-TS Infrared Calibration Transfer Stan dard"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	08-Feb-08	21-Mar-08	16445.00	=""	="W & B INSTRUMENTS PTY LTD"	10-May-08 08:51 AM	

+="CN75688"	"Music on Hold units"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	15-Feb-08	18480.00	=""	="TELEMALL PTY LTD"	10-May-08 08:52 AM	

+="CN75714"	"POC: SIMON CARR CONTACT: 02 626 50678"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	17358.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:55 AM	

+="CN75716"	"Software Maintenance Contract for period 31 March 2008 - 30 March 2009"	="Department of Defence"	10-May-08	="Software"	08-Feb-08	30-Mar-09	16280.64	=""	="TERRASIM INC."	10-May-08 08:55 AM	

+="CN75732"	"Vehicle Lease"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	15-Feb-08	28-Feb-10	18514.10	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 08:56 AM	

+="CN75744"	"Software License - Mathworks"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	28-Feb-08	19635.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75745"	"PA SYSTEM"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Feb-08	25-Mar-08	17442.70	=""	="ARROW COMMUNICATION SERVICES"	10-May-08 08:58 AM	

+="CN75751"	"EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	18665.09	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:58 AM	

+="CN75769"	"To provide intructor support and the adjustment of and assessment tools for the Training Development"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Feb-08	30-Jun-08	18000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 09:00 AM	

+="CN75773"	"CONSULTANCY FOR BUILDING INSPECTION  AND RECOMMENDATIONS RAAF BASE AMBERLEY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	19811.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:00 AM	

+="CN75774"	"POC:  DAVID MAXWELL CONTACT: 02 626 50227"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	25-Feb-08	30-Jun-08	17600.00	=""	="COMPUCAT RESEARCH PTY LTD"	10-May-08 09:00 AM	

+="CN75778"	"WBTA FIRE HAZARD REDUCTION"	="Department of Defence"	10-May-08	="Fire prevention"	25-Feb-08	30-Jun-08	19580.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:01 AM	

+="CN75790"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer services"	22-Feb-08	25-Mar-08	17250.20	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 09:02 AM	

+="CN75822"	"POC: ATTILA HORVATH CONTACT: 02 626 50688"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16577.00	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	10-May-08 09:05 AM	

+="CN75823"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	16251.95	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 09:05 AM	

+="CN75840"	"C CLASS RACKS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	19756.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 09:07 AM	

+="CN75871"	"INDUSTRIAL TRAINING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19800.00	=""	="BLUELINE CONSULTING SERVICES"	10-May-08 09:10 AM	

+="CN75877"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	19470.00	=""	="SCOTWORK NEGOTIATING SKILLS"	10-May-08 09:10 AM	

+="CN75882"	"QFI SEMINAR"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	14-Mar-08	16800.00	=""	="HYATT REGENCY PERTH"	10-May-08 09:11 AM	

+="CN75899"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	19547.41	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 09:13 AM	

+="CN75909"	"ESTATE PLANNING BRANCH-BRANCH PLANNING & TEAM BUIL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	18740.50	=""	="THREDBO ALPINE HOTEL"	10-May-08 09:14 AM	

+="CN75915"	"StoreVault S500 Base System"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	20-Mar-08	19339.10	=""	="COMMANDER INTEGRATED NETWORKS PTY"	10-May-08 09:14 AM	

+="CN75917"	"Magnesium Alloy Cast Billet"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Feb-08	30-Apr-08	18895.03	=""	="AIRPORT METALS (AUSTRALIA)"	10-May-08 09:14 AM	

+="CN75920"	"Fencing"	="Department of Defence"	10-May-08	="Security and control equipment"	27-Feb-08	31-Mar-08	16814.28	=""	="PORTCULLIS PERIMETER SECURITY PTY L"	10-May-08 09:15 AM	

+="CN75930"	"Supply cables as per quote; 23986. Items required to provide ongoing support to all s"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	30-Jun-08	19150.45	=""	="ALLOY COMPUTER PRODUCTS"	10-May-08 09:16 AM	

+="CN75936"	"This order is raised to cover the container servic Army units within South Australia."	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	26-Feb-08	30-Jul-08	17600.00	=""	="BOC LIMITED"	10-May-08 09:16 AM	

+="CN75947"	"Stationery / Promotional Goods"	="Department of Defence"	10-May-08	="Paper Materials and Products"	19-Feb-08	26-Feb-08	16500.00	=""	="EXPRESSIONS"	10-May-08 09:17 AM	

+="CN75970"	"ACCOMMODATION FOR STAFF TRAINING"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	19-Feb-08	19-Feb-08	19267.05	=""	="NOVOTEL ST KILDA"	10-May-08 09:19 AM	

+="CN75973"	"Software and computer accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	22-Feb-08	19888.00	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 09:20 AM	

+="CN75987"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	18900.00	=""	="UNITY COLLEGE AUSTRALIA"	10-May-08 09:58 AM	

+="CN75992"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	01-Jul-08	16500.00	=""	="REALVIEW TECHNOLOGIES PTY LTD"	10-May-08 09:58 AM	

+="CN76003"	"MEDIA SUPPORT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	18480.00	=""	="MEDIA GURUS"	10-May-08 09:59 AM	

+="CN76013"	"FURNITURE FOR DS-NQ-TS ACCOMMODATION CELL"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	17490.55	=""	="GARRY THYERS BETTA SUPERSTORE"	10-May-08 09:59 AM	

+="CN76016"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	16760.70	=""	="TENIX DATAGATE PTY LTD"	10-May-08 09:59 AM	

+="CN76017"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	16089.06	=""	="ASI SOLUTIONS"	10-May-08 09:59 AM	

+="CN76019"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18870.72	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76033"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	14-Dec-07	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76037"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	19203.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76039"	"Delivery of MILAN Training"	="Department of Defence"	10-May-08	="Medical training and education supplies"	19-Nov-07	19-Nov-07	16060.00	=""	="CLIFFORD CRAIG MEDICAL RESEARCH"	10-May-08 10:01 AM	

+="CN76040"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	10-May-08	="Flight communications related systems"	21-Nov-07	30-Jun-08	19349.00	=""	="WORMALD"	10-May-08 10:01 AM	

+="CN76043"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Human resources services"	19-Nov-07	19-Nov-07	16500.00	=""	="VISION TRAINING AUSTRALIA PTY LTD"	10-May-08 10:01 AM	

+="CN76046"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	21-Nov-07	30-Jun-08	19967.57	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:01 AM	

+="CN76058"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18419.02	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:02 AM	

+="CN76063"	"Technical Service Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	19-Nov-07	30-Jun-08	16500.00	=""	="FORTBURN PTY LTD"	10-May-08 10:02 AM	

+="CN76076"	"Bioprecision stage stepper motor"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	03-Dec-07	16594.60	=""	="SCITECH PTY LTD"	10-May-08 10:03 AM	

+="CN76081"	"REFUSE & TIP FEES"	="Department of Defence"	10-May-08	="Refuse disposal and treatment"	06-Jun-07	30-Jun-08	18150.00	=""	="TOWNSVILLE CITY COUNCIL"	10-May-08 10:03 AM	

+="CN76086"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	05-Dec-07	17655.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:03 AM	

+="CN76090"	"CATERING"	="Department of Defence"	10-May-08	="Restaurants and catering"	21-Nov-07	21-Nov-07	17600.00	=""	="FRESH CATERING PTY LTD"	10-May-08 10:03 AM	

+="CN76102"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	18549.45	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:04 AM	

+="CN76108"	"Refridgerated tabletop centrifuge, culture tube, sealing caps, bucket for adapters, carrier"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	21-Dec-07	17939.09	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:04 AM	

+="CN76142"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	19553.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:06 AM	

+="CN76163"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	29-Feb-08	18591.80	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:07 AM	

+="CN76181"	"Refrigerated tabletop centrifuge and accessories"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	27-Nov-07	28-Nov-07	16741.74	=""	="JOHN MORRIS SCIENTIFIC"	10-May-08 10:08 AM	

+="CN76192"	"SURVEYS & MAINTENANCE"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	21-Apr-08	30-Jun-08	16668.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:09 AM	

+="CN76204"	"CHP"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	30-Jul-08	16200.00	=""	="MALCZEWSKI FAMILY TRUST"	10-May-08 10:10 AM	

+="CN76214"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	16500.01	=""	="SAGE LEGAL SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76245"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	05-Dec-07	19423.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:12 AM	

+="CN76259"	"COURSE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Nov-07	29-Nov-07	18900.00	=""	="MEDIA GURUS"	10-May-08 10:13 AM	

+="CN76266"	"Rehabilitation Services"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Jan-07	30-Jun-08	16500.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	10-May-08 10:13 AM	

+="CN76275"	"CD PRODUCTION"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	26-Nov-07	31-Aug-08	16123.80	=""	="CD MANUFACTURERS PTY LTD"	10-May-08 10:13 AM	

+="CN76278"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	16508.00	=""	="HAMERSLEY IRON PTY LTD"	10-May-08 10:14 AM	

+="CN76292"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Aug-07	31-Dec-08	16999.17	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:14 AM	

+="CN76311"	"Cable gable markers, steel pegs."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	23-Nov-07	07-Dec-07	16391.10	=""	="AIRPORT TECHNICAL SERVICES PTY LTD"	10-May-08 10:15 AM	

+="CN76314"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	16894.00	=""	="CLAYTON UTZ"	10-May-08 10:16 AM	

+="CN76325"	"HIRE OF TOILETS"	="Department of Defence"	10-May-08	="Cleaning and janitorial supplies"	10-Oct-07	10-Jan-08	19758.20	=""	="COATES PRESTIGE"	10-May-08 10:16 AM	

+="CN76327"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	03-Dec-07	04-Jan-08	17100.00	=""	="SIR CHARLES GAIRDNER HOSPITAL"	10-May-08 10:16 AM	

+="CN76333"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	18196.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76338"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	18480.00	=""	="MINTER ELLISON"	10-May-08 10:17 AM	

+="CN76342"	"Student Transport 07/08."	="Department of Defence"	10-May-08	="Passenger transport"	12-Nov-07	30-Jun-08	17600.00	=""	="WESTRANS"	10-May-08 10:17 AM	

+="CN76360"	"Support to Operations Support Centre DSTO"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18671.40	=""	="ICON RECRUITMENT"	10-May-08 10:18 AM	

+="CN76370"	"Shoalwater Bay Training Area - Power Supply Feasibility Study"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	16500.00	=""	="PARSONS BRINCKERHOFF"	10-May-08 10:19 AM	

+="CN76377"	"HMAS Hawkesbury QANTAS Invoice 30Nov07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	17517.14	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76385"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Personnel recruitment"	17-Jan-08	28-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:20 AM	

+="CN76393"	"PADLOCKS TO SECURE AMMUNITION CONTAINERS"	="Department of Defence"	10-May-08	="Hardware"	14-Dec-07	22-Jan-08	16606.30	=""	="LOCKWOOD SECURITY PRODUCTS PTY LTD"	10-May-08 10:20 AM	

+="CN76398"	"ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	10-Jul-07	30-Jun-08	16500.00	=""	="HMA BLAZE PTY LTD"	10-May-08 10:20 AM	

+="CN76399"	"LEASE OF VEHICLES FOR HQJTF633 DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	14-Jan-08	17218.75	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:20 AM	

+="CN76406"	"TECHNICAL CONTACT:  K SMITH PHONE:  08 8259 6737"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jul-07	30-Jun-08	19965.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 10:21 AM	

+="CN76419"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Hand tools"	12-Jan-08	12-Jan-08	18910.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76422"	"CABLING"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	05-Jul-07	30-Jun-08	16500.00	=""	="RIVERCORP PTY LTD"	10-May-08 10:22 AM	

+="CN76428"	"LIA ELECTRICAL MAINTENANCE LAVARACK BARRACKS"	="Department of Defence"	10-May-08	="Domestic appliances"	16-Apr-08	30-Jun-08	16500.00	=""	="MAZLIN ELECTRICAL SERVICES"	10-May-08 10:22 AM	

+="CN76434"	"FINISHER ATTACHMENT FOR XEROX WORKCENTRE 7245"	="Department of Defence"	10-May-08	="Paper Materials and Products"	01-Dec-07	01-Dec-07	16161.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76504"	"Class C Rack Cabinet Ph: 08 9553 3617"	="Department of Defence"	10-May-08	="Hardware"	29-Nov-07	21-Dec-07	17109.87	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:27 AM	

+="CN76507"	"TRUCK AND TRAILOR LEASE DEC 07 FLLA K"	="Department of Defence"	10-May-08	="Truck tractors"	31-Dec-07	03-Jan-08	16082.34	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76509"	"CONTRACT ADMIN"	="Department of Defence"	10-May-08	="Environmental Services"	31-Dec-07	03-Jan-08	18115.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:27 AM	

+="CN76515"	"AIRFARES OCTOBER 2007"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	15-Jan-08	16499.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76521"	"Medical Services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	24-Dec-07	23-Jan-08	17644.31	=""	="PETER NEWBERY"	10-May-08 10:28 AM	

+="CN76522"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Nov-07	17-Dec-07	18777.31	=""	="LASER QUANTUM"	10-May-08 10:28 AM	

+="CN76523"	"FOOD REQUIRED BY HQ JTF 633 FOR XMAS DAY LUNCH"	="Department of Defence"	10-May-08	="Meat and poultry products"	20-Dec-07	04-Jan-08	18951.27	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:28 AM	

+="CN76524"	"dsto equipment"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	29-Nov-07	02-Jan-08	17394.96	=""	="BARTINGTON INSTRUMENTS LTD"	10-May-08 10:28 AM	

+="CN76527"	"CHP WAGES DEC/JAN"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	01-Feb-08	01-Feb-08	17191.60	=""	="VIMALA MENON  A/P PB MENON"	10-May-08 10:28 AM	

+="CN76529"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	09-Jan-08	09-Jan-08	18600.16	=""	="MONEY"	10-May-08 10:28 AM	

+="CN76541"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	17930.00	=""	="CLAYTON UTZ"	10-May-08 10:29 AM	

+="CN76542"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	02-Feb-08	04-Feb-08	19519.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76564"	"LACE ROBERT WYNNE - COMCARE OH&S INVESTIGATION"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	31-Jan-08	16013.80	=""	="DLA PHILLIPS FOX"	10-May-08 10:30 AM	

+="CN76570"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	19879.00	=""	="MINTER ELLISON"	10-May-08 10:31 AM	

+="CN76571"	"RENTAL PAYMENTS SRI PANGKOR APPARTMENTS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	01-Feb-08	01-Feb-08	18191.49	=""	="ELCEETEE TRUST -E-"	10-May-08 10:31 AM	

+="CN76575"	"02-239906 30NOV07 LINE ITEM 10560 - 10601"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	16558.79	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76580"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	29-Nov-07	30-Jun-08	19608.38	=""	="TRANS GLOBAL TRADERS PTY LTD"	10-May-08 10:31 AM	

+="CN76610"	"As detailed in contract 0708-210"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	28-Nov-07	28-Mar-08	19829.43	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:33 AM	

+="CN76615"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	30-Jan-08	30-Jan-08	17933.89	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:34 AM	

+="CN76616"	"Stationery"	="Department of Defence"	10-May-08	="Paper products"	28-Nov-07	31-Dec-07	17821.33	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:34 AM	

+="CN76617"	"Business Travel"	="Department of Defence"	10-May-08	="Aircraft"	17-Dec-07	06-Feb-08	19171.63	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76644"	"WATER TANK"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	28-Nov-07	21-Jan-08	16920.03	=""	="POLYWORLD"	10-May-08 10:35 AM	

+="CN76648"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	30-Nov-07	16170.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:36 AM	

+="CN76655"	"QANTAS PAYMENT FOR THE MONTH OF DEC 07"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Jan-08	17066.13	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76672"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	16644.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:37 AM	

+="CN76684"	"CONFERENCE COSTS"	="Department of Defence"	10-May-08	="Restaurants and catering"	28-Nov-07	28-Nov-07	19494.70	=""	="PANTHERS ENTERTAINMENT GROUP"	10-May-08 10:38 AM	

+="CN76686"	"APC SMART UPS FOR ICT SVCS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	28-Nov-07	28-Nov-07	16815.28	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 10:38 AM	

+="CN76695"	"VEHICLE LEASE FLLA"	="Department of Defence"	10-May-08	="Motor vehicles"	05-Jan-08	29-Jan-08	17023.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76708"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="HARCOURT ASSESSMENT"	10-May-08 10:39 AM	

+="CN76712"	"PSYCHOMETRIC TESTING MATERIAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Dec-07	03-Dec-07	16500.00	=""	="AUSTRALIAN COUNCIL OF EDUCATIONAL"	10-May-08 10:39 AM	

+="CN76716"	"INMARSAT CALL CHARGES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	03-Dec-07	16088.72	=""	="ELECTROTECH AUSTRALIA PTY LTD"	10-May-08 10:39 AM	

+="CN76741"	"Large Display LCDs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	12-Dec-07	16467.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:41 AM	

+="CN76742"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	09-Oct-07	30-Jun-08	17160.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76748"	"Aircraft Charter AirTravel to remote Bare Bases RAAF Learmonth and"	="Department of Defence"	10-May-08	="Aircraft"	26-Oct-07	26-Oct-07	19715.00	=""	="INDEPENDENT AVIATION PTY LTD"	10-May-08 10:41 AM	

+="CN76756"	"Imm / Urg -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	16110.53	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76779"	"REPAIRS OF 9 SAFE AT RAAF BASE DARWIN AS PER QUOTE 07"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	30-Dec-07	16307.83	=""	="ARCHITECTURAL HARDWARE"	10-May-08 10:43 AM	

+="CN76780"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	08-Nov-07	30-Nov-07	17725.02	=""	="THOMSON RICH O'CONNOR"	10-May-08 10:43 AM	

+="CN76793"	"Various Aust WW1 and WW2 flying Corps Group O, Cross Vic. Junior Sect. Aust Korea SQN, etc."	="Department of Defence"	10-May-08	="Collectibles and awards"	03-Dec-07	21-Dec-07	18644.60	=""	="IAN S WRIGHT"	10-May-08 10:44 AM	

+="CN76798"	"CONTRACT SERVICES FLLA"	="Department of Defence"	10-May-08	="Cleaning and janitorial services"	31-Oct-07	30-Nov-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76802"	"VEHICLE LEASE FLLA  NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Oct-07	30-Nov-07	16022.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76817"	"GRAPHIC DESIGN AND PRINTING"	="Department of Defence"	10-May-08	="Printed media"	30-Nov-07	30-Jun-08	16500.00	=""	="WISDOM GRAPHIC DESIGN & ADVERT"	10-May-08 10:45 AM	

+="CN76822"	"AFPO Airline Costs (Line 1 fo AFPO 5) / Line 2 for AFPO 16 and Line 3 for AFPO 20"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	16093.72	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76834"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	19093.98	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76846"	"HQJOC PROJECT-SERVER RACKS AUSTRALIA-JUNCTION BOX SERVER RACKS AUSTRALIA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	18810.00	=""	="SERVER RACKS AUSTRALIA"	10-May-08 10:47 AM	

+="CN76866"	"POC: Jason Yap PHONE: 02 6265 0001"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	19250.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76870"	"MAINTENANCE FY 2007/2008"	="Department of Defence"	10-May-08	="Tools and General Machinery"	03-Dec-07	30-Jun-08	16396.60	=""	="AXIS MACHINE TOOLS PTY LTD"	10-May-08 10:49 AM	

+="CN76885"	"wis services"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Nov-07	01-Nov-07	19172.25	=""	="NEWSAT LTD"	10-May-08 10:49 AM	

+="CN76892"	"PRINTING & DISTRIBUTION OF CIVILIAN PAYMENT ADVICE SLIPS"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	30-Nov-07	30-Jun-08	19000.00	=""	="HERMES PRECISA PTY LTD"	10-May-08 10:50 AM	

+="CN76909"	"Professional Services  - Author's brief for LWP 9-3-2"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	15-Oct-07	30-Jun-08	19744.34	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:51 AM	

+="CN76912"	"SUN STORAGE TEK SL500 DRIVE EXPANSION MODULES"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	23-Nov-07	19277.15	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:51 AM	

+="CN76923"	"ADDP 3.3.1 SUBMISSION OF FIRST DRAFT"	="Department of Defence"	10-May-08	="Printed media"	08-Nov-07	28-Feb-08	17050.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:52 AM	

+="CN76931"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	10-May-08	="Legal services"	31-Oct-07	30-Nov-07	16632.00	=""	="CLAYTON UTZ"	10-May-08 10:52 AM	

+="CN76938"	"Technical Contact Roger Henwood Ph: 08 8674 3207"	="Department of Defence"	10-May-08	="Medical training and education supplies"	22-Nov-07	30-Jun-08	17481.00	=""	="ORICA EXPLOSIVES"	10-May-08 10:53 AM	

+="CN76951"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	18445.50	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76955"	"CHP WAGES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	12-Nov-07	31-Dec-07	18171.58	=""	="MONEY"	10-May-08 10:54 AM	

+="CN76964"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	17-Dec-07	17450.00	=""	="CENTRE STATE PRINTING"	10-May-08 10:54 AM	

+="CN76970"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	22-Nov-07	22-Nov-07	16654.00	=""	="CANBERRA MAILING & ENVELOPES"	10-May-08 10:54 AM	

+="CN76980"	"High Accuracy receiver"	="Department of Defence"	10-May-08	="Satellites"	23-Nov-07	30-Nov-07	16225.00	=""	="ULTIMATE POSITIONING"	10-May-08 10:55 AM	

+="CN77000"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Jan-08	16-Jan-08	17857.14	=""	="RPC TELECOMMUNICATIONS LTD"	10-May-08 11:41 AM	

+="CN77014"	"Access Control System"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	31-Jan-08	16945.50	=""	="CHUBB AUSTRALIA PTY LTD"	10-May-08 11:42 AM	

+="CN77028"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	01-Mar-08	19248.00	=""	="TOUR HOSTS PTY LTD"	10-May-08 11:43 AM	

+="CN77034"	"manufacture and supply covers etc"	="Department of Defence"	10-May-08	="Industrial Manufacturing and Processing Machinery and Accessories"	16-Jan-08	17-Mar-08	16412.00	=""	="AUSTEK ENGINEERING TRADING PTY"	10-May-08 11:43 AM	

+="CN77048"	"Training"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	30-Jun-08	16610.00	=""	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	10-May-08 11:44 AM	

+="CN77055"	"Construct Antenna Gantry RAAF Williams Pt Cook BCP"	="Department of Defence"	10-May-08	="Prefabricated structures"	01-Feb-08	07-Mar-08	19800.00	=""	="ROGERS FABRICATIONS PTY LTD"	10-May-08 11:44 AM	

+="CN77058"	"TV and ceiling brackets"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	17-Jan-08	24-Jan-08	17853.00	=""	="AV CENTRAL"	10-May-08 11:45 AM	

+="CN77060"	"AMPS 5.0 SEA ADMINISTRATION COURSE FOR NAVAL PERSO"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	17-Jan-08	07-Mar-08	19800.00	=""	="EDEN TECHNOLOGY PTY LTD"	10-May-08 11:45 AM	

+="CN77086"	"Antennas"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	04-Feb-08	02-May-08	18744.00	=""	="RAMIS HOLDINGS PTY LTD"	10-May-08 11:46 AM	

+="CN77098"	"technical supprot services"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	04-Feb-08	30-Jun-08	16457.78	=""	="VIPAC ENGINEERS & SCIENTISTS"	10-May-08 11:47 AM	

+="CN77112"	"PROJECT MANAGEMENT SERVICES FOR HYCAUSE CLOSURE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Feb-08	02-Feb-08	16299.67	=""	="BLUE SWIMMER CONSULTING"	10-May-08 11:48 AM	

+="CN77117"	"Battery Marathon external, turbine and housing, Transducer, Barometer, regulator, charger"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	15-Jan-08	29-Feb-08	16097.00	=""	="TECHNIPRO MARKETING PTY LTD"	10-May-08 11:49 AM	

+="CN77121"	"JOHN GARDNER CONTRACT UNDER SON45190"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Feb-08	30-Jun-08	18700.00	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:49 AM	

+="CN77122"	"VMWare Software"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	27-Feb-08	17715.50	=""	="HARRIS TECHNOLOGY"	10-May-08 11:49 AM	

+="CN77167"	"SERVER HARDWARE AND SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	03-Mar-08	16222.80	=""	="PARTNER IT"	10-May-08 11:52 AM	

+="CN77184"	"SOFTWARE REQUIRED FOR SET UP OF NIDA CLASSROOM ENGINEERING FACULTY HMAS CERBERUS"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	16-Jan-08	17699.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:53 AM	

+="CN77189"	"SECURITY CONTRACT"	="Department of Defence"	10-May-08	="Security and control equipment"	01-Feb-08	08-Feb-08	16319.66	=""	="HIGH RISK SECURITY PTY LTD"	10-May-08 11:54 AM	

+="CN77211"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	01-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77213"	"Computer drives"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	17140.04	=""	="LOGITECH PTY LTD"	10-May-08 11:55 AM	

+="CN77219"	"Computer Accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	15-Feb-08	16669.40	=""	="DIGICOR PTY LTD"	10-May-08 11:55 AM	

+="CN77220"	"kangaroo exclusion fence- maintainence"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	18-Jan-08	30-Jun-08	19686.03	=""	="SERCO AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77224"	"Computer Gear"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	07-Feb-08	17357.29	=""	="AVNET ELECTRONICS MARKETING"	10-May-08 11:56 AM	

+="CN77227"	"SN02714 - PM FEES FOR R1-C FITOUT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	18810.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77228"	"Heat Exchanger"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	31-Jan-08	28-Feb-08	16588.00	=""	="ANALYTICAL EQUIPMENT CO"	10-May-08 11:56 AM	

+="CN77233"	"AUTOZOC TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	18-Jan-08	15-Feb-08	18392.00	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:56 AM	

+="CN77246"	"Army Museum Plaques"	="Department of Defence"	10-May-08	="Signage and accessories"	23-Jan-08	23-Jan-08	19382.06	=""	="A1 PLAQUES AUSTRALIA"	10-May-08 11:57 AM	

+="CN77248"	"DSM Dyneema HB26 Panels"	="Department of Defence"	10-May-08	="Exterior finishing materials"	23-Jan-08	29-Feb-08	18020.07	=""	="TOTE SYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:57 AM	

+="CN77249"	"Research Agreement"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Jan-08	30-Jun-08	16500.00	=""	="UNI OF SA - REVENUE OFFICE"	10-May-08 11:57 AM	

+="CN77252"	"Bulk LPG, Fire fighting training, Army Logistic Training Centre, Bandiana"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	23-Jan-08	25-Jan-08	18424.00	=""	="KLEENHEAT GAS CENTRE"	10-May-08 11:57 AM	

+="CN77256"	"BOC-D-900-CLASS C SECURITY MAXTOR COMPACTUS 6 BAY FOR BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	12-Mar-08	18427.20	=""	="BROWNBUILT PTY LTD"	10-May-08 11:57 AM	

+="CN77261"	"VARIOUS PLACES -  VTC - YEARLY AMEND SERVICES FOR AIRSERVICES - Grace Donato"	="Department of Defence"	10-May-08	="Leatherworking repairing machinery and equipment"	21-Jan-08	31-Jul-08	18752.69	=""	="AIRSERVICES AUSTRALIA"	10-May-08 11:58 AM	

+="CN77304"	"1X1.47 METER GEMINI RIB 1670 HYPALON TUBES AS NAVY SPECIFICATIONS WITH 40HP MERCURY"	="Department of Defence"	10-May-08	="Safety and rescue vehicles"	17-Jan-08	22-Jan-08	18480.00	=""	="BRITTON MARINE PTY LTD"	10-May-08 12:00 PM	

+="CN77305"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	24-Jan-08	30-Jun-08	17375.93	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:00 PM	

+="CN77317"	"PROLIANT DL380 / HP PCI -X /PCI-E NHP380G5/385G2 R HP DVD+RW 24X SLIM CBT DRV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	30-Jan-08	18915.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:01 PM	

+="CN77352"	"Compactus B.O.C. "A" Base 4 bay, "D" base 6 bay"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	15-Feb-08	17534.00	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 12:03 PM	

+="CN77373"	"Training - Managing your Career"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Jan-08	30-Jun-08	16750.00	=""	="TWYFORD CONSULTING"	10-May-08 12:04 PM	

+="CN77376"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	17-Jan-08	15-Feb-08	18583.40	=""	="J S MCMILLAN PRINTING GROUP"	10-May-08 12:04 PM	

+="CN77384"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Jun-08	20000.00	=""	="CHRISTIE BETRO MANAGMENT"	10-May-08 12:05 PM	

+="CN77419"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	30-Jun-08	20000.00	=""	="MARGARET MCNALLY"	10-May-08 12:07 PM	

+="CN77421"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	16672.70	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77445"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:08 PM	

+="CN77462"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:09 PM	

+="CN77497"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:11 PM	

+="CN77506"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	17131.40	=""	="ACTIVE VOICE LLC"	10-May-08 12:12 PM	

+="CN77533"	"Leader 1025HS Telephones"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Jan-08	11-Feb-08	17325.00	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:13 PM	

+="CN77549"	"Acer LCD Monitors"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	06-Feb-08	18084.44	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77567"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	18400.00	=""	="DEACONS"	10-May-08 12:15 PM	

+="CN77599"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Jan-08	31-Jan-08	19475.50	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 12:17 PM	

+="CN77600"	"ELECT COMPONETS"	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	24-Jan-08	28-Feb-08	17221.60	=""	="AUSTRALIAN BALDOR PTY LTD"	10-May-08 12:17 PM	

+="CN77617"	"MANNEQUIN FIGURES"	="Department of Defence"	10-May-08	="Structural materials and basic shapes"	14-Jan-08	14-Jan-08	16500.00	=""	="ROB SMALL"	10-May-08 12:18 PM	

+="CN77644"	"REPAIRS TO BUILDINGS AND FACILITIES SWBTA POST EX WALLABY 07"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	16467.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:20 PM	

+="CN77653"	"KEY SAFE"	="Department of Defence"	10-May-08	="Containers and storage"	14-Jan-08	14-Jan-08	16435.00	=""	="CIC SECURE PTY LTD"	10-May-08 12:20 PM	

+="CN77656"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="ACTSAFE AUSTRALIA PTY LTD"	10-May-08 12:20 PM	

+="CN77658"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="INSIGHT SERVICES GROUP"	10-May-08 12:20 PM	

+="CN77660"	"REHABILITATION SERVICES"	="Department of Defence"	10-May-08	="Physical and occupational therapy and rehabilitation products"	11-Dec-07	11-Dec-07	19200.00	=""	="NELSON-TYERS CONSULTING PTY LTD"	10-May-08 12:20 PM	

+="CN77690"	"DISPOSAL OF MINE DETECTOR KITS"	="Department of Defence"	10-May-08	="Scrap and waste materials"	11-Dec-07	18-Dec-07	16840.76	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 12:22 PM	

+="CN77701"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	22-Jan-08	19693.22	=""	="COMMANDER (ACT)"	10-May-08 12:23 PM	

+="CN77712"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	19-Dec-07	19772.21	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77729"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	19800.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:24 PM	

+="CN77747"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	10-May-08 12:25 PM	

+="CN77764"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Jan-08	31-May-08	18886.20	=""	="LANCEMORE HILL"	10-May-08 12:26 PM	

+="CN77772"	"RENEW TECHNICAL ENHANCEMENTS & CUSTOMER SUPPORT FO R ANSYS AUTODYN SOFTWARE FROM 01/03/08-28/02/"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	21-Jan-08	19888.00	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 12:26 PM	

+="CN77786"	"Subscription Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Jan-08	18-Jan-08	16500.00	=""	="SYDNEY INSTITUTE OF MARINE SCIENCE"	10-May-08 12:27 PM	

+="CN77792"	"HIRE OF PLANE"	="Department of Defence"	10-May-08	="Aircraft"	14-Jan-08	14-Jan-08	19863.25	=""	="KESTREL AVIATION"	10-May-08 12:28 PM	

+="CN77797"	"Provision of Risk Assessment Services"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	10-Dec-07	15-Jan-08	17333.25	=""	="LAMBERT REHBEIN (VIC) PTY LTD"	10-May-08 12:28 PM	

+="CN77814"	"Monitor Receiver housings and covers"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	11-Jan-08	30-Jan-08	17078.60	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 12:29 PM	

+="CN77845"	"Pan tilt unit/power supply"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	10-Dec-07	30-Jan-08	19381.30	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 12:30 PM	

+="CN77862"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	12-Feb-08	16323.23	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:31 PM	

+="CN77865"	"Standing offer"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	14-Mar-08	18618.60	=""	="BLUE SWIMMER CONSULTING"	10-May-08 12:32 PM	

+="CN77879"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	13-Dec-07	13-Dec-07	18894.57	=""	="AGFA-GEVAERT LTD"	10-May-08 12:32 PM	

+="CN77882"	"Employment of PSP at Enoggera / Amberley"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	19250.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:33 PM	

+="CN77904"	"rack mount configued server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Dec-07	17409.70	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77906"	"ELECTRICAL WINCH AND CABLES"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	13-Dec-07	13-Jan-08	18976.32	=""	="VELDEMAN AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77907"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	19254.40	=""	="AUSTRAINING NSW PTY LTD"	10-May-08 12:34 PM	

+="CN77916"	"Engagement of Security Architect"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	29-Feb-08	17856.35	=""	="ENTRUST LTD"	10-May-08 12:34 PM	

+="CN77917"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	16430.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:34 PM	

+="CN77952"	"Class B Security Containers"	="Department of Defence"	10-May-08	="Containers and storage"	30-Jan-08	29-Feb-08	16918.00	=""	="FILEGUARD CO (MFG) PTY LTD"	10-May-08 12:36 PM	

+="CN77959"	"LEASE OF CONTAINERS FOR STORAGE OF ICT EQUIPMENT"	="Department of Defence"	10-May-08	="Containers and storage"	29-Jan-08	30-Jun-08	16500.00	=""	="DAWSON MOVING & STORAGE"	10-May-08 12:37 PM	

+="CN77964"	"EXERCISE TOUCHSTONE 29-30 Oct 07"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Dec-07	12-Dec-07	16470.00	=""	="HOLIDAY INN SYDNEY AIRPORT"	10-May-08 12:37 PM	

+="CN77976"	"Fit Emergency Exits"	="Department of Defence"	10-May-08	="Doors and windows and glass"	12-Dec-07	30-Aug-08	17802.40	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:38 PM	

+="CN77978"	"Transmission at Cultana 05-23 Sep 2007"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	31-Dec-07	19068.60	=""	="TELSTRA"	10-May-08 12:38 PM	

+="CN77984"	"CATALYST 3750 48 10/100/1000 4 SFP ENHANCED MULTILAYER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	21-Dec-07	19049.48	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 12:38 PM	

+="CN78040"	"purchase of televisions"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	17-Dec-07	21-Dec-07	17120.35	=""	="THE GOOD GUYS ALEXANDRIA"	12-May-08 09:38 AM	

+="CN78048"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Hardware"	14-Dec-07	21-Dec-07	17952.00	=""	="ALLOY COMPUTER PRODUCTS"	12-May-08 09:39 AM	

+="CN78049"	"Plumbing supplies, Construction Platoon, Army Logistic Training Centre"	="Department of Defence"	12-May-08	="Plumbing fixtures"	14-Dec-07	17-Jan-08	16925.54	=""	="SOUTHERN PLUMBING PLUS"	12-May-08 09:40 AM	

+="CN78090"	"5NMOL CYDYE DIGE FLUORE MIN KITs, Various laboratory items and chemicals"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	19-Dec-07	29-Feb-08	19859.13	=""	="GE HEALTHCARE BIO-SCIENCES"	12-May-08 09:49 AM	

+="CN78109"	"SERVICES FOR SUPPORT TO TDL JAN/FEB 08"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	19-Dec-07	29-Feb-08	19714.00	=""	="CUBIC DEFENSE APPLICATIONS INC"	12-May-08 09:52 AM	

+="CN78110"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78113"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78117"	"FURNITURE FOR 278SQN"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	18-Dec-07	14-Feb-08	17963.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 09:54 AM	

+="CN78128"	"Computer Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	17358.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 09:56 AM	

+="CN78132"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	17-Jan-08	18447.77	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78136"	"DOOR LOCKS AND KEYS FOR ACCOMMODATION"	="Department of Defence"	12-May-08	="Locks and security hardware and accessories"	18-Dec-07	30-Jan-08	16053.40	=""	="MOSMAN LOCKSMITHS &"	12-May-08 09:57 AM	

+="CN78192"	"Supply and installation of cabling services at Queensland Airports"	="Australian Federal Police"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	18546.40	="37-2005"	="Absolute Cabling Systems Pty Ltd"	12-May-08 11:45 AM	

+="CN78204"	"Scribe for Marketing Communications Capability Recruitment"	="Australian Taxation Office"	12-May-08	="Management advisory services"	02-Jun-08	13-Jun-08	18500.00	="64.04-35"	="Recruitment Management Company"	12-May-08 12:09 PM	

+="CN78214"	"AMMAN CHANCERY RELOCATION."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	16142.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-May-08 01:05 PM	

+="CN78222"	"DIAGONAL DUAL POLARISEDHORN ANTENNA 2GHZ"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	29-Feb-08	19030.00	=""	="FARADAY PTY LTD"	12-May-08 01:06 PM	

+="CN78232"	"EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	16667.44	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:08 PM	

+="CN78250"	"HP XW 9400 WORKSTATION HPLP2465 24" TCO03 LCD MONITOR HP8710W NOTEBOOK"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Dec-07	21-Dec-07	18766.00	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 01:10 PM	

+="CN78255-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	17038.13	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78259-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Oct-07	28-Dec-07	19641.60	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78261-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	12-Oct-07	19008.00	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78269"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="RECOVRE"	12-May-08 01:12 PM	

+="CN78270"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="KONEKT AUSTRALIA PTY LTD"	12-May-08 01:12 PM	

+="CN78281"	"PRINT PRODUCTION LWP-G 7-4-12 AL3 X 6000 COPIES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Dec-07	20-Dec-07	17870.60	=""	="PRESS HERE PTY LTD"	12-May-08 01:14 PM	

+="CN78294"	"DELIVER THE FOLLOWING COURSES INCLUDING BUT NOT LIMITED TO BUILDING SUCCESSFUL TEAMS"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	30-Jun-08	19503.00	=""	="DEVELOPING POTENTIAL AUSTRALIA"	12-May-08 01:16 PM	

+="CN78314"	"Research Agreement Heat assessment of Chemical and Biological Protective ensembles REF:2007/1096729/"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	05-Dec-07	14-Dec-07	16645.20	=""	="UNI OF WOLLONGONG - OFF OF RESEARCH"	12-May-08 01:19 PM	

+="CN78315"	"Hire of lighting equipment"	="Department of Defence"	12-May-08	="Lighting and fixtures and accessories"	05-Dec-07	07-Dec-07	19933.10	=""	="RESOLUTION X PTY LTD"	12-May-08 01:19 PM	

+="CN78335"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	17820.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	12-May-08 01:23 PM	

+="CN78347"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Dec-07	18927.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:25 PM	

+="CN78352"	"Contract - Extension Development of a LAP CHAT App"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	30-Jun-08	18287.50	=""	="ALTASYS SOFTWARE PTY LTD"	12-May-08 01:25 PM	

+="CN78358"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	16027.00	=""	="NGA.NET PTY LTD"	12-May-08 01:26 PM	

+="CN78359"	"CADET GLIDING CAMP"	="Department of Defence"	12-May-08	="Recreational aircraft"	05-Dec-07	15-Dec-07	19965.00	=""	="BOX GROVE"	12-May-08 01:27 PM	

+="CN78387-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	31-Jul-07	12-Oct-07	19470.00	=""	="W.E. & P.A. CAMERON PTY. LIMITED"	12-May-08 01:31 PM	

+="CN78415"	"FACOPS-SA-08-SA2352-04"	="Department of Defence"	12-May-08	="Water safety"	10-Dec-07	30-Jun-08	19140.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:36 PM	

+="CN78416"	"Edgell/McCains Beans, capsicums, diced carrots, corn kernels, and mixed vegetables"	="Department of Defence"	12-May-08	="Vegetables"	10-Dec-07	03-Mar-08	17561.06	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	12-May-08 01:36 PM	

+="CN78419"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	16500.00	=""	="THOUGHTWEB PTY LTD"	12-May-08 01:37 PM	

+="CN78432"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Dec-07	14-Dec-07	19593.20	=""	="PARAGON PRINTERS"	12-May-08 01:39 PM	

+="CN78436"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	18480.00	=""	="CEO COLLEGIATES PTY LTD"	12-May-08 01:40 PM	

+="CN78448"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	06-Dec-07	06-Dec-07	16382.51	=""	="GHK GREEN KREJCI"	12-May-08 01:42 PM	

+="CN78464"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	06-Dec-07	30-Jun-08	19200.00	=""	="REACT"	12-May-08 01:44 PM	

+="CN78472"	"DSTO RATIONALISATION PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	16742.00	=""	="TAC PACIFIC PTY LTD"	12-May-08 01:45 PM	

+="CN78477"	"Advertising EL2 job 25495"	="Department of Defence"	12-May-08	="Advertising"	07-Dec-07	17-Dec-07	19600.42	=""	="HMA BLAZE PTY LTD"	12-May-08 01:46 PM	

+="CN78492"	"FACOPS - SA2387"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	18700.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:48 PM	

+="CN78581"	"CONDITIONS: As per Commonwealth / QinetiQ Agreemen"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	17651.26	=""	="QINETIQ LTD"	12-May-08 02:03 PM	

+="CN78585"	"Lease of SES vehicle"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	20-Dec-07	30-Jun-09	19584.27	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:04 PM	

+="CN78586"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	17283.42	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:04 PM	

+="CN78642"	"PASSENGER TPT BY AIR"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Jun-08	16548.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:12 PM	

+="CN78672"	"Car Hire for members on course"	="Department of Defence"	12-May-08	="Vehicle doors"	13-Dec-07	29-Jul-08	18667.61	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:14 PM	

+="CN78678"	"Enterprise thinking August 07"	="Department of Defence"	12-May-08	="Environmental Services"	31-Aug-07	30-Jun-08	18782.29	=""	="ENTERPRISE CLARITY PTY LTD"	12-May-08 02:15 PM	

+="CN78681"	"REPAIRING OF ROOF AT AUSTRALIAN COMPOUND BAGHDAD"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Nov-07	16-Dec-07	18792.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:15 PM	

+="CN78707"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	16970.30	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78709"	"Office Relocation"	="Department of Defence"	12-May-08	="Office supplies"	14-Apr-08	16-May-08	16830.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	12-May-08 02:17 PM	

+="CN78715"	"Services of Sun Project Engineer"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	30-May-08	19123.50	=""	="SUN MICROSYSTEMS AUST PTY LTD"	12-May-08 02:18 PM	

+="CN78720"	"Cisco Equipment"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Jan-08	04-Feb-08	16516.18	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78724"	"IT equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	13-Jun-08	17655.66	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78734"	"ACMS 1529581MAINSTREM 2008 MAINTANCE AND RELIABILT MANAGEMENT CONFERENCE"	="Department of Defence"	12-May-08	="Environmental control systems"	14-Apr-08	14-Apr-08	19316.00	=""	="EVENTFUL MANAGEMENT"	12-May-08 02:19 PM	

+="CN78742"	"VEHICLE LEASE FLLA  B NOV 07"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	04-Dec-07	16247.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:19 PM	

+="CN78752"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	29-Nov-07	03-Jan-08	16439.87	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:20 PM	

+="CN78761"	"CONTRACT ADMINISTRATOR FEES FOR JUNE 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:20 PM	

+="CN78764"	"CONTRACT ADMINISTRATOR FEES FOR JULY 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78767"	"CONTRACT ADMINISTRATOR FEES FOR AUGUST 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78770"	"CONTRACT ADMINISTRATOR FEES FOR SEPTEMBER 2007"	="Department of Defence"	12-May-08	="Hardware"	06-Oct-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78776"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	16500.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	12-May-08 02:21 PM	

+="CN78778"	"OFFICE FURNITURE FOR RNSW"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Apr-08	05-May-08	16390.00	=""	="INTERWORX PTY LTD"	12-May-08 02:21 PM	

+="CN78783"	"SPECIAL FINANCIAL CLAIM"	="Department of Defence"	12-May-08	="Legal services"	28-Nov-07	15-Dec-07	18250.00	=""	="WILLIAMS WINTER & HIGGS"	12-May-08 02:22 PM	

+="CN78790"	"Powerware 9355 - Three phase input output"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	14-Apr-08	16-Apr-08	18549.30	=""	="POWER ON AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78801"	"qantas invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Sep-07	30-Sep-07	17469.10	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78802"	"Services for Market & Technology Reports"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	22-Apr-08	19250.00	=""	="FROST & SULLIVAN"	12-May-08 02:23 PM	

+="CN78807"	"CAMP LABOUR FLLA NOV 07"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Nov-07	09-Dec-07	18235.68	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:23 PM	

+="CN78808"	"A4 25mm Buff Binders x Qty 2000, A4 50mm Buff Bind ers x Qty 2000"	="Department of Defence"	12-May-08	="Paper products"	14-Apr-08	25-Apr-08	17380.00	=""	="CUSTOM INDUSTRIES PTY LTD"	12-May-08 02:23 PM	

+="CN78809"	"OP DELUGE - MEDALS"	="Department of Defence"	12-May-08	="Collectibles and awards"	21-Dec-07	21-Dec-07	18507.50	=""	="G A MILLER METAL INDUSTRIES"	12-May-08 02:23 PM	

+="CN78816"	"QANTAS AIRFARES FOR AUSTRALIAN DEFENCE BASIC FLYIN TRAINING SCHOOL FOR OCTOBER 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	16547.86	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78824"	"ADVERTISING"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	21-Dec-07	30-Jun-08	19284.10	=""	="LAM AGENCY PTY LTD"	12-May-08 02:24 PM	

+="CN78829"	"Software Support"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Apr-08	18023.50	=""	="AUSPACE LIMITED"	12-May-08 02:24 PM	

+="CN78845"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Dec-07	21-Dec-07	16036.90	=""	="PIRION PTY LTD"	12-May-08 02:25 PM	

+="CN78846"	"VEHICLE LEASE"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	05-Dec-07	17707.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:25 PM	

+="CN78867"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	02-Jan-08	29-Feb-08	17545.55	=""	="HARVEY NORMAN BEDDING PENRITH"	12-May-08 02:27 PM	

+="CN78904"	"TRAINING COURSES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	20000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	12-May-08 02:29 PM	

+="CN78906"	"CONTRACT SERVICES IRAQ - FLLA B"	="Department of Defence"	12-May-08	="Industrial Cleaning Services"	01-Mar-08	12-Apr-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78909"	"IN FLIGHT MEALS"	="Department of Defence"	12-May-08	="Packaged combination meals"	07-Mar-08	12-Apr-08	17224.70	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78917"	"CARRY OUT INSPECTION AND REPAIRS TO GENIE EWP FOR BASE EAST."	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	26-May-08	16684.80	=""	="NTP FORKLIFTS AUSTRALIA"	12-May-08 02:30 PM	

+="CN78927"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	09-Apr-08	09-Apr-08	18000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:31 PM	

+="CN78930"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	30-Mar-07	30-Mar-07	19212.73	=""	="HMA BLAZE PTY LTD"	12-May-08 02:31 PM	

+="CN78934"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	19176.70	=""	="ASI SOLUTIONS"	12-May-08 02:32 PM	

+="CN78932"	"STORAGE CABINETS"	="Department of Defence"	12-May-08	="Cabinets"	01-May-08	12-Jun-08	16843.20	=""	="F G P COMPANY PTY LTD"	12-May-08 02:33 PM	

+="CN78953"	"For Site Integration Services - Stage 3 DIER 0708- Australian Region"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	31-Dec-08	18004.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:33 PM	

+="CN78968"	"Consultancy for the rewiring and certification of RAAF Base Townsville.  This consultancy also cover"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	17-Dec-07	30-Jun-08	17605.50	=""	="SPOTLESS"	12-May-08 02:34 PM	

+="CN78969"	"Delivery of ADDP 3.11 CIMIC Authors Brief"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Mar-08	30-Jun-08	16445.45	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 02:34 PM	

+="CN78980"	"Provision of labour hire to RFS from 1 Jan to 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	16774.96	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 02:35 PM	

+="CN78982"	"4 X PHOTOCOPIERS - OBGW"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	16-Mar-08	19-Mar-08	17052.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:36 PM	

+="CN78985"	"CORE Software Licenses"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	04-Jan-08	17113.38	=""	="TE & JL DEECKE - USD"	12-May-08 02:36 PM	

+="CN78991"	"INCREASED CAPACITY TO DSVE NATIONAL BRIDGE."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	31-Mar-08	18024.95	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 02:36 PM	

+="CN79018"	"MSL TRAVEL BILLS APR08"	="Department of Defence"	12-May-08	="Structural materials and basic shapes"	15-Apr-08	15-Apr-08	17386.35	=""	="MSL TRAVEL DN BHD"	12-May-08 02:38 PM	

+="CN79024"	"hire car rental"	="Department of Defence"	12-May-08	="Passenger transport"	24-Mar-08	17-Apr-08	16750.79	="732"	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79041"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	09-Mar-08	12-Apr-08	18525.00	=""	="ROYAL PERTH HOSPITAL"	12-May-08 02:40 PM	

+="CN79050"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	26-Mar-08	30-May-08	18034.73	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:40 PM	

+="CN79066"	"facops"	="Department of Defence"	12-May-08	="Alloys"	17-Dec-07	30-Jun-08	19243.40	=""	="RESOLVE FM"	12-May-08 02:42 PM	

+="CN79068"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	23-Mar-08	15-Apr-08	20000.00	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79070"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	20-Feb-08	15-Apr-08	18333.32	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79088"	"REPAIR EXPLOSIVE FORKLIFT FOR ORCHARD HILLS EODF"	="Department of Defence"	12-May-08	="Hydraulic machinery and equipment"	07-Apr-08	02-Jun-08	18931.00	=""	="CHESS ENGINEERING PTY LTD"	12-May-08 02:44 PM	

+="CN79094"	"CONFERENCE"	="Department of Defence"	12-May-08	="Personal and Domestic Services"	07-Apr-08	07-Apr-08	19164.00	=""	="TOUR HOSTS PTY LTD"	12-May-08 02:44 PM	

+="CN79106"	"Line marking"	="Department of Defence"	12-May-08	="Paints and primers and finishes"	07-Apr-08	11-Apr-08	16359.20	=""	="TRICORP ENTERPRISES"	12-May-08 02:46 PM	

+="CN79112"	"COMPUTERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	07-Apr-08	18074.00	=""	="CIC SECURE PTY LTD"	12-May-08 02:46 PM	

+="CN79113"	"TRAINING EQUIPMENT FOR TPT COURSE"	="Department of Defence"	12-May-08	="Safety apparel"	12-Mar-08	08-Apr-08	17539.25	=""	="AITKEN MOTORCYCLES"	12-May-08 02:46 PM	

+="CN79121"	"Aerial surveillance SWBTA"	="Department of Defence"	12-May-08	="Environmental management"	26-Mar-08	31-Mar-08	18249.00	=""	="REID HELIWORK"	12-May-08 02:47 PM	

+="CN79122"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	18254.28	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79131"	"GROUP REGISTRATIONFOR COLLABORATIVE EMERGENCY RESPONSE CONFERENCE 2008"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Apr-08	11-Apr-08	16493.40	=""	="INTERNATIONAL QUALITY & PRODUCTIVIT"	12-May-08 02:48 PM	

+="CN79137"	"STATIONARY"	="Department of Defence"	12-May-08	="Paper products"	07-Apr-08	11-Apr-08	16390.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 02:48 PM	

+="CN79158"	"HP DL360G5 SERVER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	17291.68	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:50 PM	

+="CN79163"	"CHP PAYMENTS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	14-Apr-08	14-Apr-08	17496.01	=""	="RED ALLIANCE PTY LTD"	12-May-08 02:51 PM	

+="CN79167"	"APR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	30-Apr-08	05-May-08	18245.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:51 PM	

+="CN79182"	"COLLECT OF WASTE MNGT FOR EX WALLABY 07"	="Department of Defence"	12-May-08	="Scrap and waste materials"	10-Dec-07	10-Dec-07	17912.32	=""	="WANLESS WASTECORP"	12-May-08 02:53 PM	

+="CN79188"	"APR 08 FORKLIFT LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	15-Apr-08	03-May-08	16205.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:53 PM	

+="CN79193"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79195"	"Tenix Multiple Computer Switches units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79196"	"INSTALLATION OF PLASTIC SCREENS - FLLA K"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	30-Apr-08	04-May-08	17707.64	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79198"	"APR 08 ADMINISTRATION COSTS - IRAQ"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Apr-08	04-May-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79213"	"IT Training"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Jun-08	16340.50	=""	="PROACTIVE SERVICES PTY LTD"	12-May-08 02:56 PM	

+="CN79216"	"DANGEROUS AWARENESS COURSES"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Dec-07	30-Jun-08	16201.80	=""	="THE CIVIL AVIATION ACADEMY"	12-May-08 02:56 PM	

+="CN79228"	"SERVICES FOR FLEXIBLE LEARNING COURSE ENOGGERA"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Apr-08	30-Jun-08	16711.20	=""	="TODAY CORP PTY LTD"	12-May-08 02:58 PM	

+="CN79233"	"TEMPORARY ACCOMMODATION"	="Department of Defence"	12-May-08	="Accommodation furniture"	29-Feb-08	30-Jun-08	18590.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79249"	"REPLENISHMENT OF STOCK IN BASREC"	="Department of Defence"	12-May-08	="Military watercraft"	03-Apr-08	30-Jun-08	17051.72	=""	="DEFENCE MARITIME SERVICES"	12-May-08 02:59 PM	

+="CN79257"	"Pearce is transferring to scheme water due to fail bore water supply to provide reliable potable wat"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	08-Apr-08	30-Jun-08	18110.40	=""	="ROAD SAFETY HIRE PTY LTD"	12-May-08 03:00 PM	

+="CN79297"	"LIMITS OF ACCEPTABLE CHANGE LITERATURE REVIEW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	18572.40	=""	="CONNELL WAGNER PTY LTD"	12-May-08 03:04 PM	

+="CN79312"	"MISC. CABLES REQUIRED FOR OP CATAYLST- ORDER 88/08"	="Department of Defence"	12-May-08	="Electrical components"	09-Apr-08	09-Apr-08	16950.20	=""	="AWE-SIM ELECTRICAL WHOLESALERS"	12-May-08 03:06 PM	

+="CN79315"	"LEATHER LOUNGE SUITE 2 SEATER AND SINGLE BORNEO BARRACKS CABARLAH"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	09-Apr-08	16-Jun-08	16500.06	=""	="RUBELLI DESIGN"	12-May-08 03:06 PM	

+="CN79324"	"FEB 08 TELEHANDLER LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	18-Mar-08	01-May-08	16103.09	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:07 PM	

+="CN79347"	"CABLING WORKS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	31-May-08	19313.80	=""	="PROFESSIONAL CABLING SERVICES"	12-May-08 03:09 PM	

+="CN79348"	"MAR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	31-Mar-08	03-May-08	16544.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79372"	"Thin client terminals"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	21-May-08	18839.92	=""	="ASI SOLUTIONS"	12-May-08 03:10 PM	

+="CN79374"	"Use of Exisitng ASP Contract - No 1 LT Cooling Pump"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	01-Apr-08	25-Apr-08	16847.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:10 PM	

+="CN79392"	"LOCAL LABOUR AND ADMIN COSTS - BAGHDAD"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	31-Mar-08	01-May-08	17062.88	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:12 PM	

+="CN79403"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	31-Aug-07	19315.43	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79405"	"POC: PHILLIP MCCULLOCH CONTACT: 02 626 50928"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	18260.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:13 PM	

+="CN79409"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	18439.73	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79435"	"Hospitality - FBT"	="Department of Defence"	12-May-08	="Accommodation furniture"	07-Apr-08	30-Jun-08	17690.40	=""	="GOOLABRI COUNTRY RESORT"	12-May-08 03:15 PM	

+="CN79453"	"QANTAS"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	18-Feb-08	18299.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:16 PM	

+="CN79465"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Sep-07	30-Sep-07	16988.20	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79468"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Apr-08	07-Apr-08	17050.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:17 PM	

+="CN79477"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	20-Apr-08	19422.70	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:18 PM	

+="CN79478"	"sUPPLY OF INTERACTIVE hARDWARE AND sOFTWARE FOR os"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	18194.77	=""	="SAI GLOBAL LTD"	12-May-08 03:18 PM	

+="CN79487"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	18993.11	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:18 PM	

+="CN79489"	"Divide Room 156 to create two new rooms at Facility 536 RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	08-Apr-08	30-Jun-08	16319.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:18 PM	

+="CN79491"	"NDT Procedure Development for PC9/A"	="Department of Defence"	12-May-08	="Flight communications related systems"	26-Mar-08	16-Apr-08	18372.75	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:18 PM	

+="CN79494"	"SN02525 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:19 PM	

+="CN79495"	"PEL AIR FLIGHT SUPPORT TO THE DIRCM PH4"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	30-Jun-08	18400.00	=""	="PEL-AIR AVIATION"	12-May-08 03:19 PM	

+="CN79499"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	16088.60	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:19 PM	

+="CN79515"	"YEYS 20TH ANNIVERSARY CATERING"	="Department of Defence"	12-May-08	="Food and Beverage Products"	11-Feb-08	11-Feb-08	18336.73	=""	="COMPASS GROUP AUSTRALIA PTY LTD"	12-May-08 03:20 PM	

+="CN79521"	"HEALTH PROGRAM"	="Department of Defence"	12-May-08	="Healthcare Services"	08-Apr-08	30-Jun-08	18241.30	=""	="PRO-FIT CORPORATE HEALTH"	12-May-08 03:21 PM	

+="CN79526"	"training services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-08	18040.00	=""	="GRIFFITH UNIVERSITY"	12-May-08 03:21 PM	

+="CN79551"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	10-Dec-07	10-Dec-07	18921.73	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 03:22 PM	

+="CN79559"	"AUSCDT ONE QANTAS STATEMENT JAN 08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	01-Mar-08	17050.53	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:23 PM	

+="CN79580"	"Payment for Professional Services - ADFWC Standing of ADDP 3.16-AIRSPACE CONTROL"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	29-Jan-08	28-Feb-08	17051.58	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 03:25 PM	

+="CN79590"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	19380.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:26 PM	

+="CN79591"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Printed media"	23-Apr-08	23-Apr-08	16879.50	=""	="PARAGON PRINTERS"	12-May-08 03:26 PM	

+="CN79598"	"Conduct an IMS workshop AASSPO-SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Feb-08	15-Feb-08	16009.17	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:26 PM	

+="CN79608"	"Use of Exisitng ASP Contract - Review Ships Hull Survey Management"	="Department of Defence"	12-May-08	="Marine transport"	20-Mar-08	17-Apr-08	19379.75	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:27 PM	

+="CN79610"	"Computer equiptment and support"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	12-Feb-08	29-Feb-08	17843.10	=""	="SCIENTIFIC DEVICES AUSTRALIA"	12-May-08 03:27 PM	

+="CN79611"	"LONG DAY CARE CENTRE CARPARK CONSULTANCY"	="Department of Defence"	12-May-08	="Roads and landscape"	15-Nov-07	30-Jun-08	19800.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:27 PM	

+="CN79620"	"CONTRACT LABOUR JAN 08- FLLA B"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	03-Feb-08	11-Feb-08	17746.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:27 PM	

+="CN79625"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	11-Feb-08	17098.35	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:28 PM	

+="CN79634"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	04-Apr-08	04-Apr-08	19544.70	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	12-May-08 03:28 PM	

+="CN79643"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	12-May-08	="Aircraft"	16-Jan-08	16-Feb-08	17690.80	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:29 PM	

+="CN79648"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	19159.66	=""	="RACAL ACOUSTICS LIMITED"	12-May-08 03:29 PM	

+="CN79657"	"Please Deliver to RAAF Base furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Nov-07	30-Jun-08	17078.60	=""	="KEEN OFFICE FURNITURE"	12-May-08 03:30 PM	

+="CN79664"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16665.60	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:30 PM	

+="CN79669"	"Software"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	06-Dec-07	18796.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 03:31 PM	

+="CN79668"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16471.25	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:31 PM	

+="CN79678"	"technical assistance to trials"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	31-Mar-08	19826.40	=""	="ICON RECRUITMENT"	12-May-08 03:32 PM	

+="CN79683"	"Provision of Legal Services"	="Medicare Australia"	12-May-08	="Legal services"	07-Apr-08	07-Apr-08	16500.00	=""	="SPARKE HELMORE"	12-May-08 03:32 PM	

+="CN79686"	"12/40 RTR AUGUST 07 QANTAS BILL"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	07-Feb-08	17589.39	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:33 PM	

+="CN79694"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	04-Jan-08	17820.00	=""	="ACACIA RESEARCH PTY LTD"	12-May-08 03:33 PM	

+="CN79719"	"DEVELOP A SOFTWARE ENGINEERING (PROJECT PRACTITIONER) COURSE"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	12-Feb-08	30-Jun-08	16384.50	=""	="DEAKINPRIME"	12-May-08 03:35 PM	

+="CN79722"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	29-Feb-08	17160.00	=""	="KAZ GROUP PTY LTD"	12-May-08 03:35 PM	

+="CN79737"	"MATTRESSES AND PROTECTORS"	="Department of Defence"	12-May-08	="Bedclothes and table and kitchen linen and towels"	05-Feb-08	12-Feb-08	19520.69	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:36 PM	

+="CN79748"	"Land 17 Tender Evaulation Suite furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	28-Mar-08	30-May-08	17230.12	=""	="MELBOURNE OFFICE FURNITURE PTY LTD"	12-May-08 03:36 PM	

+="CN79751"	"Nulka Maintenace"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	02-May-08	18674.94	=""	="THALES AUSTRALIA"	12-May-08 03:36 PM	

+="CN79756"	"Testing Technician"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	16-Nov-07	05-Jun-08	18785.25	=""	="FORTBURN PTY LTD"	12-May-08 03:37 PM	

+="CN79750"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	19882.52	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 03:37 PM	

+="CN79807"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	19134.34	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79824"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Nov-07	30-Jun-08	18293.00	=""	="CRS AUSTRALIA"	12-May-08 03:41 PM	

+="CN79827"	"CALIBRATION EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	30-Mar-08	19694.40	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	12-May-08 03:42 PM	

+="CN79858"	"QANTAS PASSENGER  AIRFARES FOR AUSTRALIAN DEFENCE FORCE BASIC FLIGHT TRAINING SCHOOL FOR DECEMBER 07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	16325.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:44 PM	

+="CN79856"	"By Pass Hose Set"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	16-Feb-08	01-Jul-08	17915.93	=""	="LCF SYSTEMS INC"	12-May-08 03:44 PM	

+="CN79877"	"Travel and subsistence"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	20000.00	=""	="DEFENCE SUPPORT - WA"	12-May-08 03:45 PM	

+="CN79879"	"Publication work as required"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18400.00	=""	="BALL SOLUTIONS GROUP"	12-May-08 03:45 PM	

+="CN79878"	"SALARY AND SALARY RELATED COSTS"	="Department of Defence"	12-May-08	="Medical science research and experimentation"	07-Feb-08	14-Feb-08	18587.97	=""	="QUT STUDENT FEES OFFICE"	12-May-08 03:45 PM	

+="CN79896"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Travel facilitation"	31-Jan-08	14-Mar-08	18087.49	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79901"	"RADIOLOGY SERVICES JANUARY 2008"	="Department of Defence"	12-May-08	="Patient exam and monitoring products"	11-Feb-08	20-Mar-08	19586.69	=""	="BENSON RADIOLOGY"	12-May-08 03:47 PM	

+="CN79912"	"PROJECT REPORTING TOOL"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	21-Jun-08	18106.00	=""	="HUEGIN CONSULTING"	12-May-08 03:48 PM	

+="CN79915"	"SATCOM contact - Brian Castles brian.castles2@defe"	="Defence Materiel Organisation"	12-May-08	="Satellites"	14-Feb-08	30-Jun-08	16500.00	=""	="TC COMMUNICATIONS PTY LTD"	12-May-08 03:48 PM	

+="CN79920"	"RATIONS FOR EX.SOUTHERN REACH - DAIRY PRODUCTS 01.09.2007 - 30.01.2008"	="Department of Defence"	12-May-08	="Dairy products and eggs"	12-Nov-07	30-Apr-08	19637.60	=""	="PORT AUGUST MILK VENDORS PTY LTD"	12-May-08 03:48 PM	

+="CN79926"	"RASS MEASUREMENT CAMPAIGN EAST SALE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	27-Mar-08	30-Apr-08	16099.46	=""	="NATIONAL AVIATION & COMMUNICATIONS"	12-May-08 03:49 PM	

+="CN79938"	"Rectify generator & storage issues"	="Department of Defence"	12-May-08	="General building construction"	27-Mar-08	30-May-08	16783.54	=""	="DIESEL CONTRACT SERVICES"	12-May-08 03:50 PM	

+="CN79939"	"Incidentals for AARU Europe Tour Apr 08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	21-Feb-08	12-Mar-08	18500.00	=""	="AUSTRALIAN ARMY RUGBY UNION"	12-May-08 03:50 PM	

+="CN79983"	"Flinders University Bachelor of medicine Maj G Day"	="Department of Defence"	12-May-08	="Educational institutions"	20-Dec-07	09-Aug-08	18900.00	=""	="THE FLINDERS UNIVERSITY OF SA"	12-May-08 03:54 PM	

+="CN79992"	"HIRE OF CURTAINSIDER TRUCK IN SUPPORT OF OPERATIONS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Nov-07	05-Mar-08	19714.20	=""	="THRIFTY CAR RENTALS"	12-May-08 03:55 PM	

+="CN79993"	"TECHNICAL SERVICES"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	17634.85	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:55 PM	

+="CN79995"	"ADC WESTON TEMP ACCOMODATION - SN02525"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:56 PM	

+="CN80004"	"FEB LEASE OF VEHICLES- HQJTF 633"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Feb-08	25-Mar-08	16840.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:56 PM	

+="CN80010"	"EA & DDP FOR FRIDGE LOCK-IN ALARMS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	24-May-08	18579.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:57 PM	

+="CN73556-A1"	"Audio Visual Equipment Hire"	="Department of the Prime Minister and Cabinet"	12-May-08	="Audio visual services"	17-Apr-08	21-Apr-08	19659.00	=""	="Nova Topstage Pty Ltd"	12-May-08 03:58 PM	

+="CN80034"	"QANTAS BILL 75SQN FEB 08"	="Department of Defence"	12-May-08	="Recreational aircraft"	13-Mar-08	31-Dec-08	17091.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:58 PM	

+="CN80044"	"NSN 4440-66-151-2924, Silica Gel"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	08-May-08	18-May-08	17219.40	=""	="CONSOLIDATED CHEMICAL CO"	12-May-08 04:00 PM	

+="CN80066"	"WARRANTY ON PRODUCT IS 12 MONTHS UNIT PRICE INCLUDES DELIVERY INTO WA."	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	15-Mar-08	18658.31	=""	="PADDY PALLIN ADVENTURE EQUIPMENT"	12-May-08 04:01 PM	

+="CN80078"	"FEB LEASE OF TELE-HANDLER FORKLIFT"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	05-Feb-08	20-Mar-08	16495.39	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:01 PM	

+="CN80091"	"Elbow, Tube"	="Department of Defence"	12-May-08	="Electrical components"	11-Dec-07	25-Jul-08	19793.86	=""	="LCF SYSTEMS INC"	12-May-08 04:02 PM	

+="CN80096"	"Conduct a comprehensive appraisal report on B Hangar"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	28-Dec-07	19800.00	=""	="GHD PTY LTD"	12-May-08 04:02 PM	

+="CN80113"	"QANTAS INVOICE"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	25-Mar-08	17567.36	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:03 PM	

+="CN80149"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	20-Nov-07	30-Jun-08	16901.50	=""	="RECOVRE PTY LTD"	12-May-08 04:05 PM	

+="CN80167"	"Training Course"	="Defence Materiel Organisation"	12-May-08	="Software"	06-Feb-08	06-Feb-08	16313.22	=""	="IDC TECHNOLOGIES PTY LTD"	12-May-08 04:07 PM	

+="CN80169"	"Seven places with Cranfield University in Adelaide for Availability & Integrated Logistic Suppor"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	11-Dec-07	11-Dec-07	17500.00	=""	="DEFENCE TEAMING CENTRE INC"	12-May-08 04:07 PM	

+="CN80173"	"PAYMENT TO HERTZ FOR DAMAGED VEHICLE BY RAAFSALT"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Jan-08	03-Mar-08	19928.60	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 04:08 PM	

+="CN80177"	"4563 - BI QUERY TRAINING SERVICES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	05-Feb-08	14-Mar-08	18260.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:08 PM	

+="CN80212"	"Repair fence around Doomadgee Council Rubbish Tip"	="Department of Defence"	12-May-08	="Environmental Services"	12-Dec-07	30-Jun-08	17905.44	=""	="DOOMADGEE CDEP ENTERPRISES"	12-May-08 04:11 PM	

+="CN80222"	"sanitary disposal"	="Department of Defence"	12-May-08	="Environmental Services"	19-Nov-07	30-Jun-08	17600.00	=""	="RENTOKIL INITIAL PTY LTD"	12-May-08 04:12 PM	

+="CN80267"	"REPAIRS TO MBITR SPARE PARTS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	20-Dec-07	20-Jun-08	16879.50	=""	="THALES AUSTRALIA"	12-May-08 04:15 PM	

+="CN80274"	"WIRING HARNESS"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	06-Feb-08	31-Jul-08	17304.56	=""	="SEMCO INSTRUMENTS INC"	12-May-08 04:16 PM	

+="CN80278"	"PRODUCTION, DESIGN OF DISPLAY AT SHOW"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Nov-07	11-Sep-08	17868.62	=""	="ZOO INSTINCTIVELY CREATIVE"	12-May-08 04:17 PM	

+="CN80285"	"Installation of remote swich, cabling & controls for power isolation at LA 1, Woomera."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	10-Apr-08	12-May-08	17552.67	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:17 PM	

+="CN80295"	"12 months support for ACUCOBOL GT Runtime and GT Dev Sys sosftware"	="Defence Materiel Organisation"	12-May-08	="Software"	05-Feb-08	09-Jan-09	18502.00	=""	="MICRO FOCUS PTY LTD"	12-May-08 04:18 PM	

+="CN80300"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	18996.32	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 04:19 PM	

+="CN80314"	"review & amend flexible hoses database"	="Defence Materiel Organisation"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	05-Feb-08	16-Apr-08	17427.62	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80328"	"student and staff movements"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	30-Jun-08	19157.09	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:21 PM	

+="CN80342"	"Computer maintenance to be performed on the WAT an modules."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	19860.02	=""	="ONLINE LEARNING AUSTRALIA PTY"	12-May-08 04:22 PM	

+="CN80346"	"PURCHASE 22 DELL 24"ULTRA SHARP WIDE SCREEN FLAT P MONITORS(ANALOG & DVI)"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	30-Jun-08	19844.00	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 04:22 PM	

+="CN80345"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-May-08	17971.24	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80357"	"VARIOUS IT REQUIREMENTS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	14-Apr-08	30-Jun-08	17339.32	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:23 PM	

+="CN80372"	"air chtr movt of iso container op astute"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	30-Nov-07	16791.50	=""	="PDL TOLL"	12-May-08 04:24 PM	

+="CN80375"	"Software Integration Task"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Jun-08	17600.00	=""	="XANALYS PTY LTD"	12-May-08 04:24 PM	

+="CN80380"	"Rugged Notebook"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	16014.90	=""	="APC TECHNOLOGY"	12-May-08 04:24 PM	

+="CN80384"	"AIRFARES 27/12/2007 - 13/01/2008"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	23-Mar-08	18983.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80390"	"AIR FARES"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	06-Mar-08	17914.28	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80393"	"lube oil engine cooler"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	04-Jan-08	10-May-08	17543.79	=""	="HONEYWELL AEROSPACE TULSA/LORI"	12-May-08 04:25 PM	

+="CN80401"	"QANTAS PAYMENT JAN 08"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	28-Mar-08	18760.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:25 PM	

+="CN80407"	"Workforce Support to develop database modification and user documentation"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	08-Feb-08	08-Feb-08	19454.40	=""	="SME GATEWAY LIMITED"	12-May-08 04:25 PM	

+="CN80409"	"Large  LCD Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Dec-07	17-Dec-07	16328.40	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:25 PM	

+="CN80419"	"Software Benefits Renewal"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	30-Apr-08	17905.47	=""	="CORPORATE EXPRESS"	12-May-08 04:26 PM	

+="CN80424"	"Notebook computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	16797.72	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80430"	"SPRING HELICAL COMPRESSON"	="Department of Defence"	12-May-08	="Firearms"	20-Dec-07	19-Jan-08	19058.93	=""	="R/M EQUIPMENT"	12-May-08 04:26 PM	

+="CN80431"	"OUTLOOK TRAINING COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	29-Apr-08	18348.00	=""	="PRIORITY MANAGEMENT"	12-May-08 04:26 PM	

+="CN80438"	"ESRI Software Maintenance"	="Department of Defence"	12-May-08	="Software"	10-Jan-08	01-Jan-09	17625.30	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 04:27 PM	

+="CN80443"	"Repair the power transformer and set to work HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Feb-08	20-Apr-08	19085.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:27 PM	

+="CN80451"	"Arrestor System Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft environmental control systems and components"	11-Feb-08	30-Jun-08	16921.78	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:27 PM	

+="CN80453"	"Mounting Base, Electrical Equipment"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	10-Jan-08	26-Sep-08	16571.55	=""	="HELICOPTER SUPPORT INC"	12-May-08 04:28 PM	

+="CN80461"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUEL DEFENCE."	="Department of Defence"	12-May-08	="Fuels"	09-Jan-08	30-Jun-08	19800.00	=""	="PETROGAS"	12-May-08 04:28 PM	

+="CN80478"	"Trailer mounted Generator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	31-May-08	19508.50	=""	="GENERATOR POWER"	12-May-08 04:29 PM	

+="CN80529"	"1405 Simulator Design Issues investigation"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	07-Feb-08	03-Mar-08	18751.70	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:33 PM	

+="CN80535"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	05-Feb-09	16312.77	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:33 PM	

+="CN80539"	"RICOH SCANNERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	18652.59	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:34 PM	

+="CN80545"	"professional services"	="Department of Defence"	12-May-08	="Aircraft"	21-Dec-07	30-Jun-08	17186.40	=""	="JACOBS AUSTRALIA"	12-May-08 04:34 PM	

+="CN80572"	"Project Management"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	08-Aug-07	16300.00	=""	="Project Planning (ACT) Pty Ltd"	12-May-08 04:35 PM	

+="CN80573"	"Rectify Kedge Hydraulics"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	08-Feb-08	30-Jun-08	18157.93	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80574"	"4516.40 HMAS ARUNTA ASSESSMENT OF AVIATION SYSTEMS"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	18733.00	=""	="BEAK RAST ENGINEERING"	12-May-08 04:35 PM	

+="CN80584"	"Cable Assembly Set, Electrical 100AMP, 10 METRES"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	11-Apr-08	27-Jun-08	16896.00	="RFQ G8674"	="MIDLEC INDUSTRIES"	12-May-08 04:36 PM	

+="CN80590"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	17464.57	=""	="CERULEAN SOLUTIONS LTD"	12-May-08 04:36 PM	

+="CN80591"	"CONTRACT CONDITIONS:  The Product Support and Tech dated 28 July 1995.  Note in accordance with Inco"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Jan-08	25-Apr-08	17155.46	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	12-May-08 04:36 PM	

+="CN80603"	"Bathurst Island"	="Department of Defence"	12-May-08	="Electrical components"	07-Apr-08	07-May-08	19899.00	=""	="C-E SOLUTIONS"	12-May-08 04:37 PM	

+="CN80690"	"MIP Consultancy services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-08	18282.00	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 04:42 PM	

+="CN80698"	"pump"	="Department of Defence"	12-May-08	="Manufacturing support services"	07-Apr-08	30-Jun-08	16320.29	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80706"	"Security Works for Temp Fitout"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-Jun-08	19510.16	=""	="CHUBB SECURITY AUST PTY LTD"	12-May-08 04:42 PM	

+="CN80721"	"4516.29 HMAS WARRA 400Hz CONDITION ASSESSMENT AND PROVIDE OPENING AND CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	14-Mar-08	17882.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:43 PM	

+="CN80748"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	15-Feb-08	17797.36	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:45 PM	

+="CN80756"	"Project management support services covering 1/10/ pre-dmoss engagement"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	30-Jan-08	31-Mar-08	18998.50	=""	="APP CORPORATION PTY LTD"	12-May-08 04:45 PM	

+="CN80762"	"Interagency Travel"	="Department of Defence"	12-May-08	="Truck tractors"	03-Apr-08	30-May-08	18817.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:45 PM	

+="CN80764"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jul-08	19716.95	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:46 PM	

+="CN80774"	"INVESTIGATION TO IDENTIFY POSSIBLE OPTIONS FOR IMPROVEMENTS TO TASR AIR CONDITIONING"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-May-08	18489.42	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80776"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	29-Jun-08	18430.07	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:47 PM	

+="CN80784"	"Supply and Installation of Keywatcher"	="Department of Defence"	12-May-08	="Security and control equipment"	31-Jan-08	31-Mar-08	18191.80	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 04:47 PM	

+="CN80785"	"Use of Exisitng ASP Contract. Installation of Guar Rail round Trans Room hatch"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Dec-07	29-Feb-08	19981.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:47 PM	

+="CN80787"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	16500.00	=""	="AEROSPACE AUSTRALIA LTD"	12-May-08 04:47 PM	

+="CN80795"	"G2 ENGINE DIESEL ALLEN HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	22-Feb-08	29-Feb-08	19537.23	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80807"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	22-Feb-08	30-May-08	16495.51	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:48 PM	

+="CN80815"	"4516.22 CONDUCT 400HZ CONDITION ASSESSMENT ON HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	03-Mar-08	18394.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:48 PM	

+="CN80818"	"Provide independent advice on DMO financial report risk, control & compliance framework"	="Department of Defence"	12-May-08	="Management advisory services"	04-Apr-08	30-Jun-08	17792.50	=""	="JOHN MEERT"	12-May-08 04:48 PM	

+="CN80824"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	30-Jan-08	31-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:48 PM	

+="CN80832"	"PROMOTIONAL"	="Department of Defence"	12-May-08	="Utilities"	29-Jan-08	29-Jan-08	18500.00	=""	="MARITIME AUSTRALIA LIMITED"	12-May-08 04:49 PM	

+="CN80842"	"POC: Lloyd Magner Contact: 02 6266 9353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	16401.00	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 04:49 PM	

+="CN80858"	"Piston Control Lock"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	01-Mar-09	19884.79	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:50 PM	

+="CN80870"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	30-Aug-08	17085.91	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:51 PM	

+="CN80885"	"Use of Exisitng ASP Contract. repair sheave Block and reinstall"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	18-Dec-07	31-Jan-08	17729.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:51 PM	

+="CN80887"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	26-Feb-08	26-Feb-08	16191.68	=""	="KAZ GROUP PTY LTD"	12-May-08 04:51 PM	

+="CN80897"	"USN MOUNTS - NOT FITTED TO RIFLE"	="Department of Defence"	12-May-08	="Personal safety devices or weapons"	18-Dec-07	29-Feb-08	17875.00	=""	="XTEK PTY LTD"	12-May-08 04:52 PM	

+="CN80898"	"Brassard, DPCU, Wrap Around, Hok Pile Closure, But attachment"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	08-Apr-08	29-May-08	18451.18	=""	="SPEAR OF FAME PTY LTD"	12-May-08 04:52 PM	

+="CN80919"	"Project Coronis DRN/DSN Site Certification"	="Department of Defence"	12-May-08	="National Defence and Public Order and Security and Safety Services"	09-Apr-08	20-Jun-08	17000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:53 PM	

+="CN80925"	"Repair and Overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	29-Jan-08	30-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:53 PM	

+="CN80954"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	28-Feb-08	23-Jun-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:55 PM	

+="CN80962"	"AIRCRAFT SKIN"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	28-Feb-08	17-Dec-08	18353.99	=""	="NORTHROP GRUMMAN SYSTEMS CORPORATIO"	12-May-08 04:55 PM	

+="CN80963"	"ADAPTOR UNIT"	="Department of Defence"	12-May-08	="Aircraft equipment"	17-Dec-07	01-May-08	18637.39	=""	="KONGSBERG AUTOMOTIVE"	12-May-08 04:55 PM	

+="CN80978"	"THIS ORDER PLACED IAW CAPO C439169 'SUPPORT SERVIC"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	27-Feb-08	02-Jun-08	16095.59	=""	="RLM PTY LTD"	12-May-08 04:56 PM	

+="CN80996"	"Warden telephone support"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	07-Apr-08	28-Jun-08	17699.40	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 04:57 PM	

+="CN80999"	"TEMP ACCOMMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jun-08	19200.01	=""	="THE TRUSTEE FOR CARAS FLINDERS TRUS"	12-May-08 04:58 PM	

+="CN81009"	"Spacer,  Strap, Visor"	="Department of Defence"	12-May-08	="Personal safety and protection"	05-Feb-08	23-Jun-08	17500.42	=""	="TRANSAERO INC."	12-May-08 04:58 PM	

+="CN81015"	"MADE TO MEASURE ATTIRE"	="Department of Defence"	12-May-08	="Clothing"	18-Dec-07	31-Jan-08	17598.83	=""	="V & F TAILORING"	12-May-08 04:59 PM	

+="CN81020"	"Use of Exisitng ASP Contract - Sewage Treatment Plant"	="Department of Defence"	12-May-08	="Scrap and waste materials"	07-Apr-08	25-Apr-08	19653.16	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:59 PM	

+="CN81060"	"SIMPLE PROCUREMENT TRAINING. RFT CON (G) 222/2005. STANDING OFFER ID 19496. (13-14 MAR & 17-18 M"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	26-Feb-08	18-Mar-08	17600.00	=""	="DEAKINPRIME"	12-May-08 05:01 PM	

+="CN81095"	"Transportation of Seekers and EPUs"	="Department of Defence"	12-May-08	="Transportation components and systems"	26-Nov-07	30-Jan-08	16575.63	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:02 PM	

+="CN81099"	"MANUFACTURE AND SET TO WORK TASR SUM"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	19016.18	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81115"	"Flexible hose replacement - HMAS SYDNEY"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-Apr-08	19167.01	=""	="GLOBAL GMEC PTY LTD"	12-May-08 05:03 PM	

+="CN81125"	"Conference Facilities"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	19-Dec-07	28-Feb-08	18500.00	=""	="BERIDA MANOR"	12-May-08 05:04 PM	

+="CN81126"	"WiniFRED Support Fees 01 Jan 08 - 31 Mar 08"	="Department of Defence"	12-May-08	="Software"	04-Feb-08	31-Aug-08	19536.00	=""	="PCA NU SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81129"	"P4391-002 CNFC RETURN TO STANDARD HMAS WARRAMUNGA"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	31-Dec-07	16971.55	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81156"	"Repair and overhaul of F/A-18 LPT Rotor Compressor"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	19-Feb-08	30-May-08	19147.91	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:05 PM	

+="CN81170"	"Conductor Custom Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	01-Feb-08	07-Mar-08	19898.35	=""	="CAMBRIDGE TECHNOLOGIES"	12-May-08 05:06 PM	

+="CN81183"	"DEOP200 Part 2 Lifing Development"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Nov-07	20-Jun-08	18768.75	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:06 PM	

+="CN81185"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	11-Feb-08	18069.01	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 05:06 PM	

+="CN81210"	"TSWT model construction"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:07 PM	

+="CN81219"	"Star Safire test and evaluation"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	23-Nov-07	14-Dec-07	19138.68	=""	="CARTENAV SOLUTIONS INC"	12-May-08 05:08 PM	

+="CN81226"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	23-Jan-08	23-Jan-08	17225.23	=""	="KAZ GROUP PTY LTD"	12-May-08 05:08 PM	

+="CN81233"	"RENEW 70 TONNE CRANE FLEXIBLE HOSES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	20-Jun-08	16964.95	=""	="HYDRAULIC DISTRIBUTORS PTY LTD"	12-May-08 05:08 PM	

+="CN81240"	"part 4 task 102 purchase of jigs and fixtures"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	18-Feb-08	19-May-08	17545.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:09 PM	

+="CN81242"	"This order raised IAW E-mail quote from Jeff Rosem"	="Department of Defence"	12-May-08	="Rubber and elastomers"	24-Jan-08	06-Mar-08	16614.40	=""	="PHOENIX AG (AUSTRALIA) P/L"	12-May-08 05:09 PM	

+="CN81250"	"THIS PURCHASE ORDER IS RAISED TO PAY FOR FREIGHT I 4500613314"	="Department of Defence"	12-May-08	="Containers and storage"	24-Jan-08	24-Jan-08	16480.53	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:09 PM	

+="CN81291"	"STANDING ORDER FOR 2HSB: 2007/08"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	26-Nov-07	30-Jun-08	18883.96	=""	="BIOMERIEUX AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81300"	"F1-11 SIDE SEAL TOOLS DISPOSAL"	="Department of Defence"	12-May-08	="Aircraft equipment"	24-Nov-07	19-Dec-07	18625.88	=""	="TRELLEBORG SEALING SOLUTIONS"	12-May-08 05:11 PM	

+="CN81323"	"Parts Kit, valve"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	28-Jan-08	17591.21	=""	="ADAMS RITE AEROSPACE INC"	12-May-08 05:12 PM	

+="CN81325"	"Heat Exchanger, Air"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	02-Apr-08	18341.24	=""	="LCF SYSTEMS INC"	12-May-08 05:13 PM	

+="CN81330"	"PN 939195-102, Cap, Lower, Wing Rib BL65, RH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Aug-08	18359.88	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81376"	"modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	28-Nov-07	29-Feb-08	19572.91	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:15 PM	

+="CN81391"	"C4i Task Closeouts"	="Department of Defence"	12-May-08	="Electrical components"	28-Nov-07	05-Feb-08	16587.21	=""	="C4I PTY LTD"	12-May-08 05:16 PM	

+="CN81426"	"SUBSCRIPTION"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	25-Jan-08	31-Mar-08	17007.91	=""	="JEPPESEN SANDERSON INC"	12-May-08 05:18 PM	

+="CN81442"	"TS4182 SPONSORHOP OF DMO CADET NAVAL ARCHITECT"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	30-Jun-08	18000.00	=""	="AUSTRALIAN MARITIME COLLEGE"	12-May-08 05:19 PM	

+="CN81468"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Jan-08	31-Jan-08	17950.23	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:20 PM	

+="CN81481"	"TEAM BUILDING PROGRAM"	="Department of Defence"	12-May-08	="Human resource development"	24-Jan-08	30-Mar-08	18711.44	=""	="PILCHER PARTNERS PTY LTD"	12-May-08 05:21 PM	

+="CN81491"	"NIC MSD/Navy Data Upload"	="Department of Defence"	12-May-08	="Computer services"	24-Jan-08	22-Feb-08	18500.00	=""	="DIMENSION DATA LEARNING"	12-May-08 05:22 PM	

+="CN81503"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	01-Feb-08	18270.02	=""	="HARRIS TECHNOLOGY PTY LTD"	12-May-08 05:23 PM	

+="CN81511"	"WILLIAMTOWN RADAR MAINTENANCE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	25-Jan-08	28-Jan-08	19444.57	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:24 PM	

+="CN81538"	"Modification Fuel System - WLR"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	21-Apr-08	20-May-08	16599.00	=""	="AUSTRALIAN FUEL CELLS PTY LTD"	12-May-08 05:26 PM	

+="CN81541"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	13-Dec-07	20-Jan-08	17292.00	=""	="BENNETT COMMERCIAL ELECTRONICS"	12-May-08 05:26 PM	

+="CN81542"	"Provide Human Resources Investigating This PO Replaces 4500611384."	="Defence Materiel Organisation"	12-May-08	="Human resources services"	21-Apr-08	30-Jun-88	20000.00	=""	="CGF PHOENIX PTY LIMITED"	12-May-08 05:26 PM	

+="CN81544"	"DATABASE ROLLOUT"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Apr-08	20000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 05:27 PM	

+="CN81549"	"6 X Sharp Digital HD Tuners"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	13-Dec-07	21-Dec-07	18000.00	=""	="BING LEE - SKY GARDEN"	12-May-08 05:27 PM	

+="CN81552"	"Travel for 5th Aviation Brigade"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	21-Apr-08	30-Jun-08	17701.31	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:27 PM	

+="CN81556"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Apr-08	26-Sep-08	17916.41	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:27 PM	

+="CN81560"	"Technobox 100FX"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	18-Apr-08	24-Jun-08	18150.00	=""	="UNITRONIX PTY LTD"	12-May-08 05:28 PM	

+="CN81593"	"Water Purification Tablets"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	19-Apr-08	17-May-08	18607.05	=""	="WISCONSIN PHARMACAL COMPANY LLC"	12-May-08 05:30 PM	

+="CN81605"	"BATTERY PC1200"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	12-Dec-07	31-Dec-07	19602.00	=""	="METCALFE GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81608"	"Proposed modification of ELATS Stations"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	12-Dec-07	31-Jan-08	19777.01	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 05:32 PM	

+="CN81614"	"Printing and Material Costs for the RCS Maintenance Handbook"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	13-Dec-07	28-Feb-08	16065.50	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:32 PM	

+="CN81633"	"100 Acrobat 8 Professional Licences for DMO software pool"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Jan-08	18796.80	=""	="COMMANDER (ACT)"	12-May-08 05:35 PM	

+="CN81635"	"METER HYDROGEN ION TEST - QTY 25-"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Dec-07	17-Dec-07	18150.00	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 05:35 PM	

+="CN81644"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	01-Feb-08	17644.00	=""	="INTERACTIVE CABLING PTY LTD"	12-May-08 05:36 PM	

+="CN81693"	"LAMP MODULE, COVER TACTICAL ET AL"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	08-Dec-07	10-Apr-08	19024.48	=""	="LASER PRODUCTS"	12-May-08 05:43 PM	

+="CN81715"	"Repair and overhaul of F/A-18 HPC Module"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	07-Apr-08	16353.54	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:46 PM	

+="CN81726"	"DPNU Trial Uniforms"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	06-Dec-07	19-Dec-07	19831.66	=""	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 05:47 PM	

+="CN81738"	"FIXED TANK WASHING NOZZLES MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Dec-07	12-Dec-07	18625.20	=""	="SPRAYING SYSTEMS CO PTY LTD"	12-May-08 05:49 PM	

+="CN81770"	"Photocopier Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Office machines and their supplies and accessories"	07-Apr-08	07-Apr-08	17600.00	=""	="Fuji Xerox Aust. Pty Ltd - NSW"	12-May-08 07:34 PM	

+="CN81773"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Marketing and distribution"	20-Mar-08	20-Mar-08	19956.48	=""	="HMA Blaze"	12-May-08 07:34 PM	

+="CN81774"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	27-Feb-08	27-Feb-08	17000.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81788"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Engineering and Research and Technology Based Services"	15-Apr-08	15-Apr-08	17002.35	=""	="Open Mind Research Group Pty Ltd"	12-May-08 07:36 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val20000to30000.xls
@@ -1,1 +1,839 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75486"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Feb-08	30-Jun-08	21250.00	=""	="MINTER ELLISON"	10-May-08 08:32 AM	

+="CN75490"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	13-Feb-08	12-Mar-08	21850.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 08:32 AM	

+="CN75504"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	29-Feb-08	22297.00	=""	="LAND AND PROPERTY INFORMATION"	10-May-08 08:34 AM	

+="CN75511"	"CAMERAS & PROJECTORS"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	14-Feb-08	22-Feb-08	20696.39	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	10-May-08 08:35 AM	

+="CN75525"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-Sep-08	29700.00	=""	="EXECUTIVE CENTRAL GROUP PTY LTD"	10-May-08 08:36 AM	

+="CN75547"	"VARIOUS CISCO ITEMS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	20549.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 08:38 AM	

+="CN75548"	"A3 COLOUR HDN PRINTERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	25960.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:38 AM	

+="CN75565"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	30-Jun-08	21400.00	=""	="MINTER ELLISON"	10-May-08 08:40 AM	

+="CN75571"	"CONTRACT NO: CSI-SC05/2005 FRUITS AND VEGETABLES RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	06-Feb-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	10-May-08 08:41 AM	

+="CN75578"	"GROCERIES"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	04-Feb-08	14-Mar-08	20422.83	=""	="BID VEST BURLEIGH MARR"	10-May-08 08:41 AM	

+="CN75587"	"A4 Mono Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	15-Feb-08	20460.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:42 AM	

+="CN75601"	"provision of JMPC"	="Department of Defence"	10-May-08	="Medical training and education supplies"	04-Feb-08	30-Apr-08	25214.00	=""	="JPG PARTNERS PTY LTD"	10-May-08 08:44 AM	

+="CN75602"	"MATLAB GROUP LICENCE - SIGNAL PROCESSING TOOLBOX"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	25-Feb-08	25385.25	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 08:44 AM	

+="CN75605"	"Engineering Services"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	05-Feb-08	12-Mar-08	21744.80	=""	="ECOTECH PTY LTD"	10-May-08 08:44 AM	

+="CN75611"	"ICT Instalation Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	21-Apr-08	23046.66	=""	="MACQUARIE TECHNOLOGY"	10-May-08 08:45 AM	

+="CN75612"	"4 year service contract for in house vacuum system"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Feb-08	03-Mar-11	20653.60	=""	="AVT SERVICES PTY LTD"	10-May-08 08:45 AM	

+="CN75615"	"Head Mounted Display"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	20680.00	=""	="INITION PTY LTD"	10-May-08 08:45 AM	

+="CN75618"	"S5180, WR's 300050935, 300064853. Carry out IA inv sites on inground services and provide repor"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	28939.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75660"	"SN02572 - MTA - Exclusion Fence"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Feb-08	30-Jun-08	23911.00	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 08:49 AM	

+="CN75666"	"SN01736 - OEMP Performance Review"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Feb-08	30-Jun-08	22000.00	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 08:50 AM	

+="CN75670"	"POC: EMIL RATHOUSKI CONTACT: 02 626 50939"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	30-Jun-08	20860.18	=""	="XSI DATA SOLUTIONS PTY LTD"	10-May-08 08:50 AM	

+="CN75691"	"Portable comms for Flight Line"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	14-Mar-08	22667.92	=""	="IMARK COMMUNICATIONS PTY LTD"	10-May-08 08:52 AM	

+="CN75706"	"QUOTATION NO. 18 (REV) DISPOSAL OF REDUNDANT ITEMS (CLOTHING, WEBBING  "	="Department of Defence"	10-May-08	="Refuse disposal and treatment"	07-Feb-08	07-Feb-08	21036.96	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 08:54 AM	

+="CN75742"	"REF 1108/07-08 PROJECT # D1087101"	="Department of Defence"	10-May-08	="Environmental management"	25-Feb-08	30-Jun-08	22000.00	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75764"	"SA2366 REGIONAL WEED CONTROL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:59 AM	

+="CN75765"	"WRE - Weed Management 2007-2009 (VH)"	="Department of Defence"	10-May-08	="Environmental control systems"	25-Feb-08	30-Jun-08	25201.99	=""	="TRANSFIELD SERVICES AUSTRALIA"	10-May-08 08:59 AM	

+="CN75766"	"SA2366 regional weed control CUTA"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:00 AM	

+="CN75767"	"HDTV Study for Integration of DEAP"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	25-Feb-08	16-Apr-08	22000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	10-May-08 09:00 AM	

+="CN75770"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Feb-08	30-Jun-08	24194.41	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:00 AM	

+="CN75782"	"LEA MARIBYRNONG:TEST SERVICES RELOCATION. C8890 PROBITY ADVICE,SOLE SOURCED."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	22000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 09:01 AM	

+="CN75786"	"PSP Contractor - Procurement Officer"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	23173.13	=""	="AMBIT GROUP PTY LTD"	10-May-08 09:02 AM	

+="CN75787"	"PSP Contractor - ICT Support Officer"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	29803.13	=""	="CAREERS MULTILIST LIMITED"	10-May-08 09:02 AM	

+="CN75788"	"KG-175 FAMILY OF NETWORK ENCRYPTION DEVICES USED WITH THE DEFENCE WIDE AREA NETWORK."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	22-Feb-08	30-Jun-08	22000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 09:02 AM	

+="CN75798"	"OP OUTREACH ION: 19964"	="Department of Defence"	10-May-08	="Food and Beverage Products"	22-Feb-08	30-Jun-08	25500.00	=""	="MANINGRIDA STORE"	10-May-08 09:03 AM	

+="CN75799"	"Skyline Globe Eterprise Solution License"	="Department of Defence"	10-May-08	="Software"	22-Feb-08	30-Jun-08	22000.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	10-May-08 09:03 AM	

+="CN75802"	"OP OUTREACH - FRESH RATIONS ION 19964"	="Department of Defence"	10-May-08	="Food and Beverage Products"	22-Feb-08	30-Jun-08	25500.00	=""	="MURRINHPATHA NIMMIPA STORE"	10-May-08 09:03 AM	

+="CN75803"	"Equipment Specific Training"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Feb-08	31-Mar-08	23842.50	=""	="SOUTHTECH PROFESSIONAL SRVS PTY LTD"	10-May-08 09:03 AM	

+="CN75804"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Feb-08	31-Mar-08	22638.00	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:03 AM	

+="CN75805"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Feb-08	31-Mar-08	24431.17	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 09:03 AM	

+="CN75831"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	10-Mar-08	29275.96	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 09:06 AM	

+="CN75832"	"Computer Consumables"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	31-Mar-08	21860.06	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 09:06 AM	

+="CN75834"	"SCI Tecnologies Bid 22"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	20555.23	=""	="TRANS GLOBAL TRADERS PTY LTD"	10-May-08 09:06 AM	

+="CN75837"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	04-Mar-08	29700.00	=""	="A & M PACKAGING PTY LTD"	10-May-08 09:07 AM	

+="CN75839"	"Expand the access control in building 77 with additional 6 card readers"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	28-Feb-08	19-Mar-08	25364.90	=""	="HONEYWELL LIMITED INC IN NSW SPACE"	10-May-08 09:07 AM	

+="CN75842"	"RATIONS"	="Department of Defence"	10-May-08	="Packaged combination meals"	28-Feb-08	01-Mar-08	26862.00	=""	="COLUMBA CATHOLIC COLLEGE"	10-May-08 09:07 AM	

+="CN75860"	"supply of fresh bread brisbane"	="Department of Defence"	10-May-08	="Bread and biscuits and cookies"	28-Feb-08	30-Jul-08	22630.84	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	10-May-08 09:09 AM	

+="CN75861"	"SESSIONAL PSYCH SBHC 4HPW - CONTRACT FOR PSYCHIATRIST - EVERY THURSDAY."	="Department of Defence"	10-May-08	="Patient exam and monitoring products"	28-Feb-08	30-Jul-08	22000.00	=""	="DR WILLIAM ATKIN"	10-May-08 09:09 AM	

+="CN75868"	"COMPLEX PROCUREMENT TRAINING"	="Department of Defence"	10-May-08	="Medical training and education supplies"	28-Feb-08	29-Feb-08	28816.04	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:09 AM	

+="CN75881"	"Provision of Command Instrument Rating training"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	09-Apr-08	25498.00	=""	="ROTOR LIFT AVIATION"	10-May-08 09:11 AM	

+="CN75884"	"FINANCIAL ADVISER"	="Department of Defence"	10-May-08	="Accounting and auditing"	28-Feb-08	03-Mar-08	29733.00	=""	="BLACKDOG & ASSOCIATES PTY LTD"	10-May-08 09:11 AM	

+="CN75888"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	28-Feb-08	04-Apr-08	20306.00	=""	="J S MCMILLAN PRINTING GROUP"	10-May-08 09:11 AM	

+="CN75892"	"SN02537"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	20687.70	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:12 AM	

+="CN75905"	"NQ2081 - 11BDE Active Equipment Requirements."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	23239.92	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	10-May-08 09:13 AM	

+="CN75907"	"NQ1927 - DRN, DSN and Cooper Remediation Works for"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	24376.00	=""	="EMAK COMMUNICATIONS"	10-May-08 09:13 AM	

+="CN75924"	"DEMAND NO.RBRN-7BUUSX"	="Department of Defence"	10-May-08	="Electrical components"	28-Feb-08	20-Mar-08	22019.03	=""	="GO ELECTRICAL PTY LTD"	10-May-08 09:15 AM	

+="CN75931"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	26-Feb-08	26411.00	=""	="MULTISYSTEM COMMUNICATIONS"	10-May-08 09:16 AM	

+="CN75937"	"FRUIT & VEG"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	26-Feb-08	31-Mar-08	24545.80	=""	="TOWNSVILLE WHOLESALE FRUIT &"	10-May-08 09:16 AM	

+="CN75938"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	28-Feb-08	22330.77	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:16 AM	

+="CN75943"	"ANALYSIS ID TEC SUPPORT AIR9000 PROJECT"	="Department of Defence"	10-May-08	="Medical training and education supplies"	19-Feb-08	30-Jun-08	29400.00	=""	="ART OF JIMBO"	10-May-08 09:17 AM	

+="CN75959"	"Aircrew Engineer for LearJet Trial"	="Department of Defence"	10-May-08	="Aircraft"	18-Feb-08	10-Jun-08	25000.00	=""	="PEL-AIR AVIATION PTY LTD"	10-May-08 09:18 AM	

+="CN75961"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	18-Feb-08	29-Feb-08	29337.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:19 AM	

+="CN75962"	"PABX Cabling and Installation - R3"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	18-Feb-08	30-Apr-08	25760.90	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 09:19 AM	

+="CN75964"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	18-Feb-08	29-Feb-08	23249.60	=""	="THE MICROCARE CD GROUP PTY LTD"	10-May-08 09:19 AM	

+="CN75976"	"FIRE RISK MITIGATION-VEGETATION CONTROL AT REMOTR"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	21979.10	=""	="WILDMAN LAND MANAGEMENT"	10-May-08 09:20 AM	

+="CN75991"	"POC Mike Ryves:Quote No 10000504 v2"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	30-Nov-07	27963.97	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN75996"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	29-Nov-07	23100.00	=""	="PERKICH & ASSOCIATES"	10-May-08 09:58 AM	

+="CN76002"	"HP dc7700 small form factor Base DT PC"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	30-Nov-07	25654.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:59 AM	

+="CN76005"	"Data Cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	30-Nov-07	29502.00	=""	="ASI SOLUTIONS"	10-May-08 09:59 AM	

+="CN76009"	"FURNITURE FOR DS-NQ-TS ACCOMMODATION CELL"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	22000.00	=""	="SYMES FURNITURE"	10-May-08 09:59 AM	

+="CN76014"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	07-Dec-07	21242.29	=""	="COMMANDER (ACT)"	10-May-08 09:59 AM	

+="CN76015"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	21098.43	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 09:59 AM	

+="CN76025"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	21124.18	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76029"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	19-Nov-07	25000.00	=""	="JEREMY TROTMAN & ASSOCIATES PTY LTD"	10-May-08 10:00 AM	

+="CN76038"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	24739.00	=""	="NATHAN ELECTRICAL PTY LTD"	10-May-08 10:01 AM	

+="CN76044"	"Water Bladders"	="Department of Defence"	10-May-08	="Camping and outdoor equipment and accessories"	21-Nov-07	28-Nov-07	21208.00	=""	="RIVERINA CAMPING WORLD"	10-May-08 10:01 AM	

+="CN76051"	"CAMERA EQUIPMENT"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	19-Nov-07	24-Nov-07	23940.05	=""	="TED'S CAMERA STORE"	10-May-08 10:01 AM	

+="CN76055"	"CONTACT: MATT FAULKNER 08 8935 2705 WR: 150099655"	="Department of Defence"	10-May-08	="Live animals"	19-Nov-07	30-Jun-08	22632.28	=""	="ASSET SERVICES"	10-May-08 10:02 AM	

+="CN76056"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jan-08	22541.20	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76073"	"Project management fees Russell refurb"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-May-07	30-Jun-08	20538.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:03 AM	

+="CN76084"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	22788.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76085"	"BUILDING MAINTENANCE"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	21-Apr-08	30-Jun-08	23497.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:03 AM	

+="CN76099"	"lease transportable Bldg"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	20-Mar-08	30-Jun-08	26377.09	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:04 AM	

+="CN76110"	"Air and land freight charges for purchase orders"	="Department of Defence"	10-May-08	="Transportation services equipment"	26-Nov-07	26-Nov-07	25404.72	=""	="VELDEMAN AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76111"	"TRAINING/EDUCATION"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Dec-07	30-Jun-08	27224.00	=""	="TACTICS CONSULTING PTY LTD"	10-May-08 10:05 AM	

+="CN76114"	"MOBILE PHONES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	26038.32	=""	="TELSTRA"	10-May-08 10:05 AM	

+="CN76131"	"Photography"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jul-07	30-Jun-08	22000.00	=""	="PETER HOARE PHOTOGRAPHY"	10-May-08 10:06 AM	

+="CN76132"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24838.00	=""	="MINTER ELLISON"	10-May-08 10:06 AM	

+="CN76134"	"REFURBISHMENT WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	27-Nov-07	29-Feb-08	21303.63	=""	="TERRANOVA CONSTRUCTION NSW PTY LTD"	10-May-08 10:06 AM	

+="CN76139"	"Provision of Health services"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Apr-08	20887.26	=""	="ACCLAIM RECRUITMENT"	10-May-08 10:06 AM	

+="CN76141"	"MEDICAL/DENTAL SERVICES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	05-May-08	30-Jun-08	20493.00	=""	="DR JANET SCOTT"	10-May-08 10:06 AM	

+="CN76144"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	26-Nov-07	30-Apr-08	22000.00	=""	="BOEING AUSTRALIA LTD"	10-May-08 10:06 AM	

+="CN76148"	"Provide advise into human factors"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	26-Nov-07	26-Feb-08	24750.00	=""	="TENIX DEFENCE PTY LTD"	10-May-08 10:07 AM	

+="CN76160"	"FURNITURE"	="Department of Defence"	10-May-08	="Classroom and instructional and institutional furniture and fixtures"	26-Nov-07	21-Dec-07	28978.40	=""	="INTERWORX PTY LTD"	10-May-08 10:07 AM	

+="CN76161"	"Signature Measurement Tracking System"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Apr-08	30-May-08	21454.40	=""	="VIPAC ENGINEERS & SCIENTISTS"	10-May-08 10:07 AM	

+="CN76174"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	30-Jun-08	27500.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 10:08 AM	

+="CN76178"	"Install Vehicle Washpoint Deseeder CBTA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Sep-06	30-Jun-07	24555.57	=""	="SPOTLESS"	10-May-08 10:08 AM	

+="CN76197"	"supply of sra groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	27-Nov-07	30-Jun-08	27500.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 10:09 AM	

+="CN76224"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	31-Aug-08	23000.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	10-May-08 10:11 AM	

+="CN76232"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	28-Feb-10	27512.10	=""	="ICON RECRUITMENT"	10-May-08 10:11 AM	

+="CN76235"	"PLOTTER PAPER & INK CARTRIDGES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	23-Nov-07	23-Nov-07	25139.14	=""	="AGFA-GEVAERT LTD"	10-May-08 10:11 AM	

+="CN76239"	"TOOLKITS"	="Department of Defence"	10-May-08	="Tools and General Machinery"	23-Nov-07	23-Nov-07	23197.92	=""	="MTU DETROIT DIESEL AUSTRALIA"	10-May-08 10:11 AM	

+="CN76250"	"COMPLETION OF COMMS AUDIT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Nov-07	30-Jun-08	21997.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 10:12 AM	

+="CN76251"	"Provision of TAA04 upgrade for instructors at the Parachute Training School Nowra"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Nov-07	07-Dec-07	22109.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:12 AM	

+="CN76265"	"VEHICLE LEASE"	="Department of Defence"	10-May-08	="Motor vehicles"	23-Nov-07	31-Oct-09	21388.20	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:13 AM	

+="CN76276"	"Strain Guage Support"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	09-Aug-07	30-Jun-08	22000.00	=""	="FORTBURN PTY LTD"	10-May-08 10:13 AM	

+="CN76277"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24438.00	=""	="MINTER ELLISON"	10-May-08 10:14 AM	

+="CN76282"	"ELECTRICITY COSTS"	="Department of Defence"	10-May-08	="Utilities"	09-Aug-07	30-Sep-08	26407.40	=""	="BHP IRON ORE LTD"	10-May-08 10:14 AM	

+="CN76283"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	26-Nov-07	31-Dec-07	27133.70	=""	="NEPEAN OFFICE FURNITURE & SUPPLIES"	10-May-08 10:14 AM	

+="CN76287"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	24238.00	=""	="MINTER ELLISON"	10-May-08 10:14 AM	

+="CN76306"	"FFS PAYMENTS"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	29-Apr-08	30-Jun-08	27500.00	=""	="WODEN DENTAL CARE"	10-May-08 10:15 AM	

+="CN76316"	"CTD"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Mar-08	01-Sep-09	25668.85	=""	="DARONMONT TECHOLOGIES PTY LTD"	10-May-08 10:16 AM	

+="CN76319"	"LABOUR HIRE PH2 ANNUAL CA"	="Department of Defence"	10-May-08	="Temporary personnel services"	26-Sep-07	10-Jan-08	20557.53	=""	="DRAKE AUSTRALIA PTY LTD"	10-May-08 10:16 AM	

+="CN76324"	"MONTHLY USAGE CHARGES FOR MOD VISEOCONFERENCING FACILITY FY 07/08"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Apr-08	25-Jun-08	20020.00	=""	="TELSTRA CORPORATION LIMITED"	10-May-08 10:16 AM	

+="CN76336"	"RAAF BASES TOWNSVILLE AND SCHERGER PAVEMENT MAINTENANCE - PROJECT CONSULTANCY SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	28600.00	=""	="AUSTRALIAN PAVEMENT MAINTENANCE"	10-May-08 10:17 AM	

+="CN76346"	"BHER US EYES ONLY ROOM"	="Department of Defence"	10-May-08	="Security surveillance and detection"	12-Nov-07	30-Jun-08	27910.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:17 AM	

+="CN76355"	"FREIGHT SERVICES"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	31-Dec-07	08-Jan-08	24379.05	=""	="DHLA INT TRANSPORTATION CO WLL"	10-May-08 10:18 AM	

+="CN76368"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Apr-08	30-Jun-08	22176.00	=""	="CLAYTON UTZ"	10-May-08 10:19 AM	

+="CN76371"	"RENTAL OF 30 CODRINTON PENANG"	="Department of Defence"	10-May-08	="Floriculture and silviculture products"	16-Jan-08	16-Jan-08	29268.12	=""	="CHOONG LYE HOCK ESTATES SDN BHD"	10-May-08 10:19 AM	

+="CN76374"	"Variable Invoices 07/08 Garrison Support. RAAF Tindal - Devolved"	="Department of Defence"	10-May-08	="Management support services"	24-Apr-08	30-Jun-08	25722.59	=""	="SERCO SODEXHO DEFENCE SERVICES"	10-May-08 10:19 AM	

+="CN76385"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Personnel recruitment"	17-Jan-08	28-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:20 AM	

+="CN76386"	"Repairs and Maint 92WG Aircraft Jacks"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	20130.00	=""	="FORDHAM ENGINEERING"	10-May-08 10:20 AM	

+="CN76394"	"Supply and maint of Gas and Cylinders"	="Department of Defence"	10-May-08	="Industrial pumps and compressors"	29-Apr-08	30-Jun-08	22000.00	=""	="BOC LTD"	10-May-08 10:20 AM	

+="CN76401"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	03-Jan-08	20-Feb-08	28094.87	=""	="FRANZ FELFER PTY LTD"	10-May-08 10:21 AM	

+="CN76403"	"Cash advance to official bank account"	="Department of Defence"	10-May-08	="Banking and investment"	15-Jan-08	15-Jan-08	29787.74	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:21 AM	

+="CN76430"	"POSTAL SERVICES VBM MAILROOM"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Apr-08	30-Jun-08	28505.77	=""	="AUSTRALIA POST"	10-May-08 10:22 AM	

+="CN76436"	"GENERAL STORES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	16-Dec-07	17-Dec-07	24473.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76438"	"XMAS BBQ PACK"	="Department of Defence"	10-May-08	="Meat and poultry products"	22-Dec-07	23-Dec-07	21789.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76440"	"XMAS STOCK"	="Department of Defence"	10-May-08	="Desserts and dessert toppings"	22-Dec-07	23-Dec-07	22769.12	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76447"	"Supply of Veterinary services for MWDS as per contract"	="Department of Defence"	10-May-08	="Veterinary equipment and supplies"	23-Jul-07	30-Jun-08	21977.88	=""	="PALMS VETERINARY GROUP"	10-May-08 10:23 AM	

+="CN76451"	"AIR 6000 PH 2A/2B - New Air Combat Capability"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	27500.00	=""	="SKM"	10-May-08 10:24 AM	

+="CN76452"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Dec-07	20-Dec-07	25000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:24 AM	

+="CN76487"	"RESERVE LEGAL OFFICER FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	07-Jan-08	23022.00	=""	="FEDERAL MAGISTRATES COURT OF"	10-May-08 10:26 AM	

+="CN76514"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	20100.00	=""	="MINTER ELLISON"	10-May-08 10:27 AM	

+="CN76526"	"CLEARTRAN"	="Department of Defence"	10-May-08	="Resins and rosins and other resin derived materials"	29-Nov-07	30-Dec-07	25994.59	=""	="QUALITY THIN FILMS INC"	10-May-08 10:28 AM	

+="CN76543"	"Purchase of IT Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	12-Dec-07	26909.61	=""	="COMMANDER (ACT)"	10-May-08 10:29 AM	

+="CN76549"	"FIBRE OPTIC CORROSION SENSORS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	30-Nov-07	30-May-08	27500.00	=""	="MONASH UNI - CASHIER"	10-May-08 10:29 AM	

+="CN76560"	"DSS POST HQIADS OCT TO DEC 2007"	="Department of Defence"	10-May-08	="Office supplies"	30-Jan-08	30-Jan-08	20219.29	=""	="NEW ZEALAND DEFENCE ADVISER"	10-May-08 10:30 AM	

+="CN76566"	"AUSCDT ONE QANTAS STATEMENT NOV 07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	01-Feb-08	20301.37	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76567"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	29-Nov-07	18-Jan-08	24208.25	=""	="GLAMA PAK PTY LTD"	10-May-08 10:31 AM	

+="CN76572"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Nov-07	21176.41	=""	="NEXT BYTE"	10-May-08 10:31 AM	

+="CN76574"	"Enhanced Operations within the SIL-VMANPADS-HIL Network Phase II"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	29-Nov-07	28-Mar-08	26632.32	=""	="BALL SOLUTIONS GROUP"	10-May-08 10:31 AM	

+="CN76598"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	15-Oct-08	25999.90	=""	="TE & JL DEECKE - USD"	10-May-08 10:33 AM	

+="CN76608"	"furniture"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	27-Nov-07	19-Dec-07	21409.30	=""	="OFFICEMAX"	10-May-08 10:33 AM	

+="CN76614"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	28-Nov-07	22000.00	=""	="MICROSOFT EVENTS PTY LTD"	10-May-08 10:34 AM	

+="CN76618"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	27500.00	=""	="KAZ GROUP PTY LTD"	10-May-08 10:34 AM	

+="CN76619"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	06-Feb-08	06-Feb-08	28289.58	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:34 AM	

+="CN76621"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	27-Dec-07	24-Feb-08	20115.00	=""	="ROYAL PERTH HOSPITAL"	10-May-08 10:34 AM	

+="CN76641"	"QANTAS NOVEMBER INVOICE AEF"	="Department of Defence"	10-May-08	="Military services and national defence"	30-Nov-07	30-Nov-07	20150.34	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:35 AM	

+="CN76643"	"QANTAS DECEMBER INVOICE AEF"	="Department of Defence"	10-May-08	="Military services and national defence"	31-Dec-07	31-Dec-07	27116.16	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:35 AM	

+="CN76652"	"MAINTENANCE & REPAIR VOICE SERVICES CABLE BLDG 35"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	28-Nov-07	30-Dec-07	20405.00	=""	="MULTISYSTEM COMMUNICATIONS"	10-May-08 10:36 AM	

+="CN76656"	"PRINTING NWCC"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	28-Nov-07	30-Jun-08	22000.00	=""	="CENTRICA"	10-May-08 10:36 AM	

+="CN76659"	"QA"	="Department of Defence"	10-May-08	="Powered fixed wing aircraft"	31-Dec-07	21-Jan-08	23375.42	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76660"	"MATLAB MAINTENANCE RENEWAL LICENCE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	01-Dec-08	24552.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	10-May-08 10:36 AM	

+="CN76668"	"Installation at RAAF Base Est Sale"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	03-Dec-07	23507.00	=""	="NETWORKS BROKERS PTY LTD"	10-May-08 10:37 AM	

+="CN76674"	"Computers and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	30-Nov-07	24603.70	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:37 AM	

+="CN76681"	"airfare qantas contract"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	28407.17	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:38 AM	

+="CN76688"	"BANNER BUGS FOR ADVERTISING"	="Department of Defence"	10-May-08	="Advertising"	28-Nov-07	31-Jan-08	28600.00	=""	="HUMPHREYS COMMUNICATION GROUP"	10-May-08 10:38 AM	

+="CN76699"	"IT CABLING AND ACCESSORIES FLLAK"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Jan-08	29-Jan-08	22322.32	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76711"	"QANTAS ACCOUNT JMCO ADL NOV 07"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	30-Nov-07	30-Nov-07	24380.47	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:39 AM	

+="CN76721"	"CONTAINER  FLLA AFG"	="Department of Defence"	10-May-08	="Containers and storage"	22-Jan-08	24-Jan-08	22048.94	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76724"	"VARIOUS EXPENSE ITEMS"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	23-Jan-08	23-Jan-08	21857.90	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:40 AM	

+="CN76732"	"HIRE CAR FOR RLLT AND COURSE TRAVEL DEFENCE MBRS"	="Department of Defence"	10-May-08	="Transportation services equipment"	14-Nov-07	28-Jun-08	21508.64	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:40 AM	

+="CN76736"	"AIRFARES FOR MONTH OF OCT.2007"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	31-Dec-07	24910.26	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:41 AM	

+="CN76737"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	03-Dec-07	29568.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:41 AM	

+="CN76740"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	09-Oct-07	30-Jun-08	28223.80	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76752"	"MARINE DIESEL FOR PALAU & FSM - DEC 2006"	="Department of Defence"	10-May-08	="Project management"	21-Jun-07	30-Jun-10	28836.09	=""	="DEPARTMENT OF DEFENCE"	10-May-08 10:41 AM	

+="CN76753"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	22500.01	=""	="RICHARD PELVIN"	10-May-08 10:41 AM	

+="CN76759"	"INSTALLATION & REMOVAL OF ADDITIONAL COOKING EQUIP"	="Department of Defence"	10-May-08	="Industrial food and beverage equipment"	04-Dec-07	30-Jun-08	22306.60	=""	="CATERING EQUIPMENT REPAIRS PTY LTD"	10-May-08 10:42 AM	

+="CN76771"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	04-Dec-07	30-Jun-08	29923.00	=""	="MINTER ELLISON"	10-May-08 10:42 AM	

+="CN76773"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	28160.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 10:43 AM	

+="CN76781"	"Bahama lounge suite packages for Canungra's Office PO contact: Sue Scott (07) 33326731"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	31-Jan-08	20453.40	=""	="D AND K SOFAS"	10-May-08 10:43 AM	

+="CN76783"	"ICCD CCIR Camera"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	03-Dec-07	29-May-08	27119.40	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 10:43 AM	

+="CN76785"	"Hagenuck Radio Maintenance Course"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Dec-07	12-Dec-07	28256.80	=""	="THALES AUSTRALIA"	10-May-08 10:43 AM	

+="CN76789"	"LOUNGE SUITE PACKAGE 2  FOR CANUNGRA SARGANTS MESS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	31-Jan-08	20231.20	=""	="D AND K SOFAS"	10-May-08 10:44 AM	

+="CN76816"	"AFPO 18 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	22293.75	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76829"	"SPONSORSHIP RE-ENGINEERING AUST FORUM"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	30-Nov-07	28-Feb-08	22000.00	=""	="RE-ENGINEERING AUSTRALIA FORUM LTD"	10-May-08 10:46 AM	

+="CN76831"	"Item Reclamation, Fabrication, Installatio & Const"	="Department of Defence"	10-May-08	="Containers and storage"	30-Nov-07	01-Feb-08	25000.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:46 AM	

+="CN76836"	"PASSENGER TPT BY AIR"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	30-Jun-08	21184.97	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76845"	"QANTAS STATEMENT SEMPTEMBER 2007"	="Department of Defence"	10-May-08	="Aircraft"	30-Sep-07	30-Sep-07	20356.51	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:47 AM	

+="CN76853"	"Professional Services  - first drafts of various publications."	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Oct-07	30-Jun-08	29450.80	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:48 AM	

+="CN76855"	"Professional Services  - Final draft & completion of Working Group LWD 5-1-4"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Oct-07	30-Jun-08	25150.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 10:48 AM	

+="CN76860"	"FUEL - AIR CHTR OP DELUGE"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	31-Dec-07	27896.00	=""	="INDEPENDENT AVIATION PTY LTD"	10-May-08 10:48 AM	

+="CN76869"	"QANTAS INVOICE AUSCDT 1 OCT"	="Department of Defence"	10-May-08	="Aircraft passenger restraints"	31-Oct-07	14-Nov-07	20261.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76874"	"WORKZONE TILE SCREENS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	14-Jan-08	29933.20	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:49 AM	

+="CN76890"	"Provision of TF2 Training and Support"	="Department of Defence"	10-May-08	="Management support services"	30-Nov-07	30-Jun-08	24999.70	=""	="TILFORTH CONSULTING SERVICES"	10-May-08 10:50 AM	

+="CN76903"	"SHORT TERM VEHICLE HIRE FLLA 3"	="Department of Defence"	10-May-08	="Motor vehicles"	15-Nov-07	25-Nov-07	20877.82	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76911"	"Professional Services  - Author first draft LWD2-2 co-facilitate First Draft working group"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Oct-07	30-Jun-08	24779.09	=""	="O2C"	10-May-08 10:51 AM	

+="CN76924"	"site survey"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	22-Nov-07	30-Jun-08	23391.72	=""	="GENERAL DYNAMICS SATCOM"	10-May-08 10:52 AM	

+="CN76926"	"Remediation work on Antenna"	="Department of Defence"	10-May-08	="Heavy construction machinery and equipment"	22-Nov-07	22-Jan-08	23798.58	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:52 AM	

+="CN76932"	"Provision of TAA04 upgrade for Instructors at the Parachute Training School Nowra"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Nov-07	07-Dec-07	22109.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:52 AM	

+="CN76943"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Nov-07	30-Jun-08	26641.97	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76960"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	10-Dec-07	22941.60	=""	="PETTARAS PRESS PTY LTD"	10-May-08 10:54 AM	

+="CN76963"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	29-Aug-07	11-Dec-07	23321.60	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76966"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	12-Dec-07	25190.00	=""	="NEW MILLIGANS PTY LTD"	10-May-08 10:54 AM	

+="CN76972"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	20075.00	=""	="ICS TRAINING GROUP"	10-May-08 10:54 AM	

+="CN76973"	"TRADESMAN TOOL UPGRADES AS PER BLOCK SCALES FOR DEPLOYMENT RTF-4"	="Department of Defence"	10-May-08	="Hand tools"	29-Nov-07	12-Dec-07	21779.18	=""	="HARRISONS TIMBER HARDWARE"	10-May-08 10:55 AM	

+="CN76978"	"FURNITURE FOR LIA"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	22-Nov-07	14-Dec-07	22704.00	=""	="ACCENT OFFICE INTERIORS"	10-May-08 10:55 AM	

+="CN76992"	"Physiotherapist - Williantown FY07/08"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	01-Feb-08	23144.88	=""	="LAMBTON PHYSIOTHERAPY & SPORTS"	10-May-08 11:41 AM	

+="CN76993"	"Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory supplies and fixtures"	30-Jan-08	14-Feb-08	23936.00	=""	="TEKMARK AUSTRALIA PTY LTD"	10-May-08 11:41 AM	

+="CN76995"	"HQJOC PROJECT - THALES (DELL - FLAT PANEL LCS MONI"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	20383.32	=""	="THALES AUSTRALIA"	10-May-08 11:41 AM	

+="CN76997"	"Hi-res Manual C Mount etc"	="Department of Defence"	10-May-08	="Consumer electronics"	30-Jan-08	01-Feb-08	22421.30	=""	="ADEPT ELECTRONIC SOLUTIONS PTY LTD"	10-May-08 11:41 AM	

+="CN77007"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	30-Jan-08	31-Mar-08	22000.00	=""	="ANU - GENERAL ACCOUNTS"	10-May-08 11:42 AM	

+="CN77009"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	22-Feb-08	26180.00	=""	="SERCO SODEXHO DEFENCE SERVICES"	10-May-08 11:42 AM	

+="CN77018"	"Software License"	="Department of Defence"	10-May-08	="Software"	16-Jan-08	18-Jan-08	22443.30	=""	="EMBEDDED LOGIC SOLUTIONS PTY LTD"	10-May-08 11:42 AM	

+="CN77020"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	16-Jan-08	30-Jun-08	22000.00	=""	="AUSTRALIAN LAW IN PRACTICE"	10-May-08 11:42 AM	

+="CN77030"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	16-Jan-08	30-Jun-08	28340.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 11:43 AM	

+="CN77056"	"WOODWORK BENCHES MADE TO MEASURE"	="Department of Defence"	10-May-08	="Commercial and industrial furniture"	17-Jan-08	30-Jun-08	21803.21	=""	="STEEL SKILL"	10-May-08 11:44 AM	

+="CN77079"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	29-Feb-08	20940.69	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 11:46 AM	

+="CN77084"	"POC: BERT HUNTER CONTACT:  08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Feb-08	29-Feb-08	29722.00	=""	="HI-POTENTIAL TECHNOLOGIES"	10-May-08 11:46 AM	

+="CN77101"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	27272.68	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:48 AM	

+="CN77108"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	07-Mar-08	28003.65	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77110"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	06-Jun-08	25825.00	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77124"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Feb-08	04-Feb-08	26800.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 11:49 AM	

+="CN77127"	"Transport of containers to Yarralin ISO OP Outreach"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	28293.60	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77128"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	04-Feb-08	23159.99	=""	="KPMG AUSTRALIA"	10-May-08 11:49 AM	

+="CN77133"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	29647.36	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:50 AM	

+="CN77134"	"Building repairs"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	31-Jan-08	26-Mar-08	20805.94	=""	="ARCHITECTURAL HARDWARE"	10-May-08 11:50 AM	

+="CN77140"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	27344.02	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 11:50 AM	

+="CN77148"	"SERVERS REQUIRED FOR NIDA CLASSROOM ENGINEERING FA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	16-Jan-08	26950.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:51 AM	

+="CN77150"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	31-May-08	25499.99	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 11:51 AM	

+="CN77152"	"NQ2197 - RAAF Base Townsville - Repairs to BFI Ret"	="Department of Defence"	10-May-08	="Aircraft fuel tanks and systems"	16-Jan-08	30-Jun-08	22000.00	=""	="SPOTLESS"	10-May-08 11:51 AM	

+="CN77178"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	29-Feb-08	23667.60	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:53 AM	

+="CN77180"	"MANHOLE COVERS TO BE ALARMED AT R5"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	30-Jun-08	21650.59	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:53 AM	

+="CN77183"	"COMMS EQUIPMENT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	31-Jan-08	30-Jun-08	20436.19	=""	="KAZ GROUP LTD"	10-May-08 11:53 AM	

+="CN77186"	"labour hire"	="Department of Defence"	10-May-08	="Human resources services"	16-Jan-08	30-Apr-08	20492.50	=""	="DRAKE INTERNATIONAL"	10-May-08 11:53 AM	

+="CN77188"	"LABOUR HIRE"	="Department of Defence"	10-May-08	="Human resources services"	16-Jan-08	30-Apr-08	27900.40	=""	="DRAKE INTERNATIONAL"	10-May-08 11:53 AM	

+="CN77190"	"Repairs to GSE"	="Department of Defence"	10-May-08	="Hydraulic systems and components"	16-Jan-08	31-Jan-08	27526.40	=""	="EYRE & OWEN SMASH REPAIRS"	10-May-08 11:54 AM	

+="CN77196"	"HMAS PENGUIN REDEVELOPMENT STAGE 1 PROBITY SERVICES-HMAS PENGUIN PROGRAM OF WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	24198.92	=""	="SPARKE HELMORE LAWYERS"	10-May-08 11:54 AM	

+="CN77207"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102 SPOIL INVESTIGAT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	21905.40	=""	="ENSR AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77209"	"TEST EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	28-Feb-08	21840.50	=""	="COVERTEL TELECOMMUNICATIONS GROUP"	10-May-08 11:55 AM	

+="CN77218"	"Comms/IT"	="Department of Defence"	10-May-08	="Software"	21-Jan-08	11-Feb-08	26031.50	=""	="ENCOM TECHNOLOGY PTY LIMITED"	10-May-08 11:55 AM	

+="CN77259"	"mixed signal Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Jan-08	22-Feb-08	26712.53	=""	="TRIO SMARTCAL PTY LTD"	10-May-08 11:58 AM	

+="CN77260"	"ASSEMBLY & WIRING OF 4 PH & CONDUCTIVITY CONTROL S YSTEMS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	19-Mar-08	24823.70	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 11:58 AM	

+="CN77262"	"Exhibition Space"	="Department of Defence"	10-May-08	="Sales and business promotion activities"	23-Jan-08	29-Feb-08	25300.00	=""	="HANNOVER FAIRS AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77264"	"Denton Hybrid III upper neck channel load cell, Pe lvis mounting block, Head Denton mounting block"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Jan-08	21-Mar-08	22121.00	=""	="APPLIED MEASUREMENT AUST PTY LTD"	10-May-08 11:58 AM	

+="CN77268"	"Desk top PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	25250.94	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77277"	"ASSORTED OFFICE FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	14-Feb-08	27749.31	=""	="LYON OFFICE FURNITURE & STORAGE"	10-May-08 11:59 AM	

+="CN77282"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	23406.16	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:59 AM	

+="CN77284"	"dsto development contract"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	23-Jan-08	15-Mar-08	21008.40	=""	="QINETIQ LTD"	10-May-08 11:59 AM	

+="CN77301"	"dsto software"	="Department of Defence"	10-May-08	="Software"	24-Jan-08	30-Nov-08	27814.89	=""	="EM SOFTWARE & SYSTEMS SA PTY LTD"	10-May-08 12:00 PM	

+="CN77318"	"Imagery Package"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jan-08	31-Jan-08	28380.00	=""	="AAMHATCH  PTY LTD"	10-May-08 12:01 PM	

+="CN77342"	"REQUIRED FOR SASR POC PETER HECTOR ON 9285 6197 METEOR JACKET'S"	="Department of Defence"	10-May-08	="Clothing"	17-Jan-08	17-Feb-08	26400.00	=""	="MAINPEAK PTY LTD"	10-May-08 12:02 PM	

+="CN77361"	"groceries and smallgoods wbta"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	22-Jan-08	30-Jun-08	22179.61	=""	="GYMPIE COOLOOLA FOODSERVICE"	10-May-08 12:04 PM	

+="CN77364"	"GARMIN GPS AND ACCESSORIES"	="Department of Defence"	10-May-08	="Location and navigation systems and components"	18-Jan-08	28-Feb-08	20702.08	=""	="CAPRICORN COMMUNICATIONS"	10-May-08 12:04 PM	

+="CN77366"	"Mixed Signal Oscilloscope"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	18-Jan-08	29-Jan-08	21720.66	=""	="TEKMARK AUSTRALIA PTY LTD"	10-May-08 12:04 PM	

+="CN77370"	"GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Fitness equipment"	18-Jan-08	18-Feb-08	23701.53	=""	="WORLD OF SPORT WHOLESALERS PTY LTD"	10-May-08 12:04 PM	

+="CN77380"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	28353.60	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77383"	"SERVICES OF CONTRACTOR"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	30-May-08	21874.16	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 12:05 PM	

+="CN77384"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Jun-08	20000.00	=""	="CHRISTIE BETRO MANAGMENT"	10-May-08 12:05 PM	

+="CN77388"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	17-Jan-08	15-Feb-08	25300.00	=""	="TLE ELECTRICAL"	10-May-08 12:05 PM	

+="CN77390"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	29282.00	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77397"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	22-Jan-08	27439.50	=""	="AUSTRALIAN HUMAN RESOURCE INSTITUTE"	10-May-08 12:06 PM	

+="CN77408"	"PROPERTY STUDIES-JEZZINE BARRACKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Jan-08	30-Jun-08	27500.00	=""	="PMM TOWNSVILLE PTY LTD"	10-May-08 12:06 PM	

+="CN77418"	"Voicemail upgrade"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Jan-08	28-Feb-08	26886.20	=""	="ACTIVE VOICE LLC"	10-May-08 12:07 PM	

+="CN77419"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Jan-08	30-Jun-08	20000.00	=""	="MARGARET MCNALLY"	10-May-08 12:07 PM	

+="CN77422"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	22-Jan-08	30-Jun-08	24750.00	=""	="QUANTITATIVE AERONAUTICS"	10-May-08 12:07 PM	

+="CN77423"	"Annual LS-DYNA Maintenance"	="Department of Defence"	10-May-08	="Software"	10-Jan-08	31-Mar-09	22966.42	=""	="LIVERMORE SOFTWARE TECHNOLOGY"	10-May-08 12:07 PM	

+="CN77430"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	30-May-08	28600.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 12:08 PM	

+="CN77442"	"Purchase Order is placed under Boeing Engineering Standing Offer 873864."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Jan-08	30-Apr-08	22000.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 12:08 PM	

+="CN77451"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	11-May-08	25405.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:09 PM	

+="CN77452"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Jan-08	30-Jun-08	29375.20	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:09 PM	

+="CN77455"	"POWERWARE"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Jan-08	01-Feb-08	22281.60	=""	="SERVERBITS"	10-May-08 12:09 PM	

+="CN77457"	"1 RU PC Systems"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	01-Feb-08	20020.00	=""	="SERVERBITS"	10-May-08 12:09 PM	

+="CN77461"	"POC: BERT HUNTER CONTACT: 08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	07-Apr-08	28353.14	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:09 PM	

+="CN77467"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	01-Feb-08	24871.00	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:10 PM	

+="CN77480"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	21631.46	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:10 PM	

+="CN77488"	"Complex Procurement, Contract 0607-230 To carry out Operational level Maintenace of Selec"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Jan-08	30-Jun-08	26950.00	=""	="SALE BRAKES & ENGINEERING"	10-May-08 12:11 PM	

+="CN77507"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	28050.00	=""	="PROGRAM IT PTY LTD"	10-May-08 12:12 PM	

+="CN77511"	"FUNDING"	="Department of Defence"	10-May-08	="Education and Training Services"	29-Jan-08	29-Jan-08	25564.00	=""	="KAPOOKA EARLY CHILDHOOD CENTRE INC"	10-May-08 12:12 PM	

+="CN77512"	"DEFENCE JOBS SITE WOMENS PAGES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	30-Jun-08	20846.38	=""	="VISUAL JAZZ PTY LTD"	10-May-08 12:12 PM	

+="CN77526"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Jan-08	08-Jan-08	26095.14	=""	="AUSTRALIAN MARITIME COLLEGE"	10-May-08 12:13 PM	

+="CN77530"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	08-Jan-08	27644.76	=""	="COGNITIVE EDGE PTE LTD"	10-May-08 12:13 PM	

+="CN77542"	"RADIO MECH HIRE 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	27151.61	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77545"	"Desktop computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	06-Feb-08	24004.75	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:14 PM	

+="CN77546"	"2 PERS HIRE (1 X VM, 1 X PROD CLK) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	21257.06	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77548"	"2 PERS HIRE (1 X VM, 1 X VI) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	22863.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77558"	"RANDWICK DISPOSAL & RATIONALISATION PROJECT-INTERI PB ENGAGED TO CARRY OUT A RISK ASSESSMENT ON"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	25795.00	=""	="PARSONS BRINCKERHOFF PTY LTD"	10-May-08 12:15 PM	

+="CN77559"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	29796.80	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:15 PM	

+="CN77560"	"Perform load testing on ROMAN"	="Department of Defence"	10-May-08	="Public administration and finance services"	08-Jan-08	08-Jan-08	21876.80	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	10-May-08 12:15 PM	

+="CN77569"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	24004.75	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:15 PM	

+="CN77571"	"NEWPORT 150W SOLAR SIMIULATOR 2"X2" OUTPUT"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	24-Jan-08	31-Jan-08	24556.40	=""	="NEWSPEC PTY LTD"	10-May-08 12:15 PM	

+="CN77574"	"MARS FUEL 07/08 Technical Authority: Rob Pointon"	="Department of Defence"	10-May-08	="Fuels"	09-Jan-08	30-Jun-08	22000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:16 PM	

+="CN77575"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	24-Jan-08	20-Feb-08	23600.50	=""	="PERKICH & ASSOCIATES"	10-May-08 12:16 PM	

+="CN77578"	"POC:ANTHONY WARNOCK 02 62669354"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	30-Mar-08	24225.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 12:16 PM	

+="CN77582"	"POC:STEVE CAUSER 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	30-Jan-08	24871.00	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:16 PM	

+="CN77585"	"Renewal of Annual Maintenance-RightAnswers Perpetual Licence from 28/11/07 to 28/11/2008."	="Department of Defence"	10-May-08	="Software"	09-Jan-08	28-Nov-08	25135.47	=""	="RIGHTANSWERS LLC"	10-May-08 12:16 PM	

+="CN77592"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	21032.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77595"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	08-Jan-08	31-Mar-08	28475.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77606"	"Quantum Well Modulator"	="Department of Defence"	10-May-08	="Electronic manufacturing machinery and equipment and accessories"	25-Jan-08	26-Mar-08	24720.80	=""	="IQE INC"	10-May-08 12:17 PM	

+="CN77607"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	09-Jan-08	30-Jun-08	21950.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 12:18 PM	

+="CN77614"	"SUBSCRIPTION RENEWAL TO KNOVEL"	="Department of Defence"	10-May-08	="Software"	25-Jan-08	30-Jan-08	25142.45	=""	="DA INFORMATION SERVICES PTY LTD"	10-May-08 12:18 PM	

+="CN77626"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	26072.20	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:18 PM	

+="CN77639"	"VRTS SF HA 5.0 WIN ENTERPRISE EDITION ESSENTIAL 1SR YEAR GOV BAND SRNW"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	16-Jan-08	24739.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 12:19 PM	

+="CN77669"	"Computers/server and accessories"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	18-Jan-08	21479.70	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77687"	"Road tpt of containers and MHI ISO Op Outreach for Peppimenarti"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	20452.52	=""	="PDL TOLL"	10-May-08 12:22 PM	

+="CN77698"	"traning"	="Department of Defence"	10-May-08	="Vocational training"	11-Dec-07	30-Jun-08	25331.00	=""	="BARRIER REEF INSTITUTE OF TAFE"	10-May-08 12:22 PM	

+="CN77700"	"Dynamic finite element model for Active Smart Patch on F111 LWS structurally detailed specimen"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Dec-07	30-Apr-08	27500.00	=""	="MONASH UNI - CASHIER"	10-May-08 12:22 PM	

+="CN77710"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	25136.74	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77713"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	15-Jan-08	22000.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 12:23 PM	

+="CN77733"	"841 Titrando Titration Package as per Option 2 quote SDEQ8612."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	08-Feb-08	25861.00	=""	="MEP INSTRUMENTS"	10-May-08 12:24 PM	

+="CN77738"	"TSS ContractProvision of Comparison of Sonar Tranmission Models"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Dec-07	23-Apr-08	22000.00	=""	="CURTIN UNI - CENTRE FOR MARINE"	10-May-08 12:25 PM	

+="CN77741"	"VM4-310 Micro-optical attachment for 6 objectives VM4-364 and delivery."	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	28-Mar-08	21972.29	=""	="MELLOR MICRONET PTY LTD"	10-May-08 12:25 PM	

+="CN77745"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	28175.97	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:25 PM	

+="CN77755"	"Design ADFA LIA refurb"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	10-Dec-07	30-Jun-08	29502.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:25 PM	

+="CN77757"	"PAPER A4 WHITE AUSTRALIAN COPY"	="Department of Defence"	10-May-08	="Paper materials"	10-Dec-07	31-Jan-08	22651.20	=""	="BARKERS OFFICE SUPPLIES"	10-May-08 12:26 PM	

+="CN77774"	"biosecurity riska database upgrade"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-08	21494.00	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 12:26 PM	

+="CN77775"	"HARDWARE DEVELOPMENT OF SSI IMPEDANCE ANALYSER II"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	10-Dec-07	31-Jan-08	23551.00	=""	="CPE SYSTEMS PTY LTD"	10-May-08 12:27 PM	

+="CN77781"	"CONSTRUCTION"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	28-Feb-08	23331.00	=""	="BORDER STAINLESS STEEL PTY LTD"	10-May-08 12:27 PM	

+="CN77795"	"Airside Refueling Roadway"	="Department of Defence"	10-May-08	="Roads and landscape"	10-Dec-07	31-Jan-08	27456.00	=""	="PMP BITUMEN"	10-May-08 12:28 PM	

+="CN77799"	"Russell6-G install aircon"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	10-Dec-07	30-Jun-08	20851.60	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:28 PM	

+="CN77802"	"Laserbird 2 tracker"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	11-Jan-08	11-Jan-08	25014.00	=""	="INITION PTY LTD"	10-May-08 12:28 PM	

+="CN77808"	"Emulex Host Bus Adaptor cards"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	29731.02	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 12:28 PM	

+="CN77828"	"Scientific Equipment"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	01-Mar-08	25969.67	=""	="IMAR GMBH"	10-May-08 12:30 PM	

+="CN77838"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	31-Jan-08	30-Jun-08	21350.00	=""	="MINTER ELLISON"	10-May-08 12:30 PM	

+="CN77847"	"ACCOMMODATION COSTS/CATERING"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	28598.70	=""	="STAMFORD PLAZA BRISBANE"	10-May-08 12:31 PM	

+="CN77851"	"SAM 96 position security system."	="Department of Defence"	10-May-08	="Security and control equipment"	10-Dec-07	21-Dec-07	21835.83	=""	="CIC SECURE PTY LTD"	10-May-08 12:31 PM	

+="CN77872"	"Invoice Plan"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	30-Jan-08	23-Jan-09	29880.00	=""	="DANIEL WANASILI"	10-May-08 12:32 PM	

+="CN77881"	"Network Engineering Design"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	15-Dec-07	21191.32	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:32 PM	

+="CN77890"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	27571.69	=""	="DEVELOPING POTENTIAL AUSTRALIA"	10-May-08 12:33 PM	

+="CN77911"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	01-Aug-08	20350.00	=""	="MINTER ELLISON"	10-May-08 12:34 PM	

+="CN77920"	"TRAINING"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	31-Jan-08	30-Jun-08	21190.02	=""	="DEVELOPING POTENTIAL AUSTRALIA"	10-May-08 12:35 PM	

+="CN77925"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	01-Jun-08	25410.00	=""	="WORKPLACE RESEARCH ASSOCIATES PTY"	10-May-08 12:35 PM	

+="CN77927"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	31-Mar-08	27205.00	=""	="CLAYTON UTZ"	10-May-08 12:35 PM	

+="CN77929"	"TSS Contract - Provision of Research Services to Multi-Source Network Coding"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Dec-07	31-Mar-08	22000.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	10-May-08 12:35 PM	

+="CN77931"	"REQUIRED FOR THE TRAINING OF ABPF PERSONNEL Point Williams Laverton Flight Sergeant David McCubbin M"	="Department of Defence"	10-May-08	="Personal safety and protection"	13-Dec-07	28-Mar-08	26130.00	=""	="ARMAMENT SYSTEMS & PROCEDURES"	10-May-08 12:35 PM	

+="CN77933"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	13-Dec-07	30-Jun-08	26732.20	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:35 PM	

+="CN77938"	"Quest 15xx Data Aquisition and Processing"	="Department of Defence"	10-May-08	="Software"	30-Jan-08	31-Mar-08	29558.63	=""	="COMPUQUEST INC"	10-May-08 12:36 PM	

+="CN77944"	"DOCTRINE SCOPING STUDY RELATING TO BATTLE MANAGEMENT SYSTEM"	="Department of Defence"	10-May-08	="Military services and national defence"	30-Jan-08	01-May-08	24480.50	=""	="O2C"	10-May-08 12:36 PM	

+="CN77951"	"PARTS"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	13-Dec-07	23-May-08	21527.97	=""	="VOLVO COMMERCIAL VEHICLES - ALBURY"	10-May-08 12:36 PM	

+="CN77960"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	13-Dec-07	01-Aug-08	20800.00	=""	="MINTER ELLISON"	10-May-08 12:37 PM	

+="CN77961"	"EXTERNAL LAND USE APPLICATION PROCESS TRAINING PAC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	29-Jan-08	30-Jun-08	29139.00	=""	="ALLIED CONSULTANTS"	10-May-08 12:37 PM	

+="CN77973"	"Design, supply and install of audio visuasl system"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Jan-08	30-Jan-08	26461.46	=""	="LIVE DIGITAL TRUST"	10-May-08 12:37 PM	

+="CN77974"	"Defence - ICON Annual Levy Administration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Dec-07	31-Dec-07	27500.00	=""	="DEPT OF FINANCE & ADMINISTRATION"	10-May-08 12:38 PM	

+="CN77975"	"On-site maintenance support for Transonic Wind Tunnel"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	29-Jan-08	21-Apr-08	24361.41	=""	="AERO SYSTEMS ENGINEERING INC"	10-May-08 12:38 PM	

+="CN77989"	"SECURITY"	="Department of Defence"	10-May-08	="Security and control equipment"	30-Jan-08	29-Feb-08	20872.50	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	10-May-08 12:39 PM	

+="CN78009"	"SUPPLY & INSTALLATION OF TANK,  PUMP AND SLAB FOR RE-USE OF AFFF WATER."	="Department of Defence"	12-May-08	="Human resources services"	14-Dec-07	14-Dec-07	23705.00	=""	="ADTECH ENVIRONMENTAL PTY LTD"	12-May-08 09:32 AM	

+="CN78011"	"240 DAY SERVICE METS40 & TECHNICIAN TRAINING. STANDING OFFER C011-HQ05"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	14-Dec-07	31-Jan-08	24120.88	=""	="CAREFLIGHT QUEENSLAND"	12-May-08 09:32 AM	

+="CN78013"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	14-Dec-07	27055.60	=""	="QUALITY MANAGEMENT SOLUTIONS"	12-May-08 09:33 AM	

+="CN78015"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Dec-07	02-May-08	27500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 09:33 AM	

+="CN78017"	"Inspection and preparation of Camp Earmark Loan St"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	14-Dec-07	18-Mar-08	21503.31	=""	="TENIX TOLL DEFENCE LOGISTICS"	12-May-08 09:34 AM	

+="CN78018"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	14-Dec-07	22000.00	=""	="STRATEGIC DATA MANAGEMENT PTY LTD"	12-May-08 09:34 AM	

+="CN78024"	"APPLE MA409FE/A MAC PRO XSERVE / XSERVE RAID"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	26139.30	=""	="AV CENTRAL"	12-May-08 09:35 AM	

+="CN78028"	"Legal Advice"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Dec-07	30-Jun-08	27500.00	=""	="DLA PHILLIPS FOX"	12-May-08 09:36 AM	

+="CN78031"	"DESIGN CERTIFICATION AACAP 08 KALUMBURU"	="Department of Defence"	12-May-08	="Management support services"	14-Dec-07	30-Jun-08	24244.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 09:36 AM	

+="CN78038"	"DEMAND NO. GMAN-79LG7T"	="Department of Defence"	12-May-08	="Electrical components"	17-Dec-07	21-Dec-07	21993.42	=""	="JOHN R TURK"	12-May-08 09:38 AM	

+="CN78044"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	21142.60	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 09:39 AM	

+="CN78046"	"Manufactured equipment for Antennas"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Dec-07	31-Jan-08	25058.98	=""	="BROENS INDUSTRIES PTY LTD"	12-May-08 09:39 AM	

+="CN78056"	"Power Meter and Sensor"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Dec-07	21-Dec-07	20230.57	=""	="TRIO SMARTCAL PTY LTD"	12-May-08 09:41 AM	

+="CN78061"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	01-Mar-08	24337.50	=""	="SAVILLE & HOLDSWORTH AUSTRALIA"	12-May-08 09:42 AM	

+="CN78063"	"Electrical parts"	="Department of Defence"	12-May-08	="Electrical components"	19-Dec-07	07-Jan-08	22460.09	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 09:43 AM	

+="CN78066"	"Training course - March 2008"	="Department of Defence"	12-May-08	="Medical training and education supplies"	19-Dec-07	20-Mar-08	22000.00	=""	="SIMULINC"	12-May-08 09:43 AM	

+="CN78067"	"Cellphone and other technical equipment"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	11-Jan-08	22045.75	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 09:44 AM	

+="CN78077"	"Emulex adaptor cards"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	15-Jan-08	22855.97	=""	="DATAFLEX PTY LTD"	12-May-08 09:46 AM	

+="CN78081"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	19-Dec-07	20500.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 09:47 AM	

+="CN78087"	"iTRAQ Reagents Mulitpex Kit"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	19-Dec-07	29-Feb-08	22583.00	=""	="APPLIED BIOSYSTEMS"	12-May-08 09:48 AM	

+="CN78106"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	19-Dec-07	23739.49	=""	="DR MICHAEL COX"	12-May-08 09:52 AM	

+="CN78116"	"FURNITURE FOR 77SQN"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	18-Dec-07	14-Feb-08	20337.90	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 09:53 AM	

+="CN78123"	"DFR'S 131901 TEXT CAMPAIGNS REQUIRE BAND LICENSING FOR TEXT VALIDATIONS OF RESPONDENTS AT COST."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	22068.75	=""	="ADIQ PTY LTD"	12-May-08 09:55 AM	

+="CN78139"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	20435.13	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 09:58 AM	

+="CN78140"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office supplies"	18-Dec-07	30-Jun-08	21582.55	=""	="GRADUATE CAREERS COUNCIL AUST"	12-May-08 09:58 AM	

+="CN78143"	"supply of groceries oakey"	="Department of Defence"	12-May-08	="Processed and prepared meats"	18-Dec-07	30-Jun-08	24200.00	=""	="SPOTLESS SERVICES LTD"	12-May-08 09:59 AM	

+="CN78155"	"Repair/replacement of GC-AED gas draw + consumable"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	18-Dec-07	14-Jan-08	24750.00	=""	="BST INTERNATIONAL PTY LTD"	12-May-08 10:01 AM	

+="CN78159"	"Poin of contact CSG MSS RAAF Laverton Deployable Accomodation Test and Evaluation"	="Department of Defence"	12-May-08	="Fabricated structural assemblies"	18-Dec-07	31-Mar-08	27185.40	=""	="IB SUPPLIES PTY LTD"	12-May-08 10:01 AM	

+="CN78167"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	18-Dec-07	21822.03	=""	="WEST COAST HI FI ROCKINGHAM"	12-May-08 10:03 AM	

+="CN78187-A1"	"Provisions for Business Analyst Services"	="Department of Immigration and Citizenship"	12-May-08	="Business intelligence consulting services"	19-Nov-07	30-Apr-08	26000.00	=""	="RM International Pty Ltd"	12-May-08 11:31 AM	

+="CN78242"	"RANDWICK DISPOSAL & RATIONALISATION PROJECT-INTERI COMPLETE PREMILLINARY CIVIL WORKS ON STAGE 1B"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	26276.80	=""	="P WARD CIVIL ENGINEERING"	12-May-08 01:09 PM	

+="CN78256"	"MOTOROLA CPCI PERIPHERAL SLOT SBC 500MHZ"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	12-Dec-07	21-Dec-07	23672.42	=""	="BRAETEC PTY LTD"	12-May-08 01:11 PM	

+="CN78258"	"LOCKERS FOR RAAF TOWNSVILLE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	12-Dec-07	30-Jun-08	25245.00	=""	="OFFICEMAX AUSTRALIA LTD"	12-May-08 01:11 PM	

+="CN78264"	"supply of post mix products"	="Department of Defence"	12-May-08	="Non alcoholic beverages"	13-Dec-07	30-Jun-08	20365.68	=""	="COCA-COLA PTY LTD"	12-May-08 01:11 PM	

+="CN78265-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	02-Nov-07	23078.00	=""	="MCARTHUR MANAGEMENT SERVICES PTY LTD"	12-May-08 01:11 PM	

+="CN78274"	"Flex o Locks Red"	="Department of Defence"	12-May-08	="Locks and security hardware and accessories"	05-Dec-07	20-Dec-07	24464.00	=""	="LOCKSMITHS SUPPLY CO PTY LTD"	12-May-08 01:13 PM	

+="CN78300"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	24-Dec-07	22396.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 01:17 PM	

+="CN78309"	"provision of contractors"	="Department of Defence"	12-May-08	="Professional engineering services"	05-Dec-07	30-Jun-08	27500.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-May-08 01:18 PM	

+="CN78317"	"8-bay shelves, sgl std shelves, roll-out filing frames, delivery & installation"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	05-Dec-07	31-Jan-08	22140.80	=""	="COMPLETE OFFICE SUPPLIES"	12-May-08 01:20 PM	

+="CN78323"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	21059.83	=""	="LNB COMPUTING CONSULTANCY PTY LTD"	12-May-08 01:21 PM	

+="CN78331"	"FRUIT & VEGS"	="Department of Defence"	12-May-08	="Vegetables"	04-Dec-07	30-Jun-08	30000.00	=""	="TOM & FRANKS"	12-May-08 01:22 PM	

+="CN78351"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	02-Jun-08	22000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 01:25 PM	

+="CN78356"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	29-Apr-08	28952.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	12-May-08 01:26 PM	

+="CN78361"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Dec-07	31-Oct-09	29112.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:27 PM	

+="CN78377"	"CONFERENCE COSTS"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	07-Dec-07	07-Dec-07	25289.97	=""	="HYATT HOTEL CANBERRA"	12-May-08 01:30 PM	

+="CN78379"	"Matlab software"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	11-Dec-07	25806.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	12-May-08 01:30 PM	

+="CN78385-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	01-Aug-07	16-Oct-07	27049.00	=""	="WILLIS, SUSAN JANE"	12-May-08 01:31 PM	

+="CN78393-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	19-Oct-07	24980.00	=""	="BARTELS, LORAND ALEXANDER"	12-May-08 01:32 PM	

+="CN78395"	"DSN & DRN SECURITY WORKS ENOGGERA"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Dec-07	30-Jun-08	26796.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:32 PM	

+="CN78400"	"MEMBERSHIP FEES"	="Department of Defence"	12-May-08	="Organisations and Clubs"	07-Dec-07	20-Nov-08	26581.50	=""	="NCOIC"	12-May-08 01:33 PM	

+="CN78401"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	30-Jul-08	20800.00	=""	="MINTER ELLISON"	12-May-08 01:33 PM	

+="CN78404"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	01-Jul-08	24288.00	=""	="MINTER ELLISON"	12-May-08 01:34 PM	

+="CN78413"	"ACCOMMODATION COSTS"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	26980.00	=""	="CROWNE PLAZA CANBERRA & NATIONAL"	12-May-08 01:36 PM	

+="CN78418"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	15-Jan-08	22935.00	=""	="SERENA SOFTWARE PTY LTD"	12-May-08 01:37 PM	

+="CN78420"	"NTC TIDAL TABLES"	="Department of Defence"	12-May-08	="Information services"	07-Dec-07	14-Dec-07	27500.00	=""	="BUREAU OF METEOROLOGY"	12-May-08 01:37 PM	

+="CN78425"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	10-Dec-07	31-Mar-08	20857.60	=""	="HOME WILKINSON LOWRY"	12-May-08 01:38 PM	

+="CN78427"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	10-Dec-07	31-Mar-08	26679.05	=""	="HOME WILKINSON LOWRY"	12-May-08 01:38 PM	

+="CN78439"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	24912.55	=""	="SECRETARIAT AUSTRALIA PTY LTD"	12-May-08 01:40 PM	

+="CN78443"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	21-Dec-07	28137.87	=""	="APPLE COMPUTER AUST PTY LTD"	12-May-08 01:41 PM	

+="CN78466"	"HIRE OF VEHICLES X 3 IS CONTINUATION OF CURRENT AR"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Dec-07	01-Jul-08	24156.00	=""	="THRIFTY CAR RENTAL"	12-May-08 01:44 PM	

+="CN78470"	"Contract Continuation of Documentation of underwater Acoustic Measuring Apparatus"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	30-Jun-08	26400.00	=""	="APPLIED ELECTRONIC DESIGN PTY"	12-May-08 01:45 PM	

+="CN78474"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	07-Dec-07	31-Jan-08	25520.00	=""	="FURNITURE NEW VOGUE AUSTRALIA"	12-May-08 01:45 PM	

+="CN78485"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Jun-08	20350.00	=""	="MINTER ELLISON"	12-May-08 01:47 PM	

+="CN78487"	"Office supplies"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	07-Dec-07	30-Dec-07	21471.45	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 01:47 PM	

+="CN78489"	"Stepper/contoller/powersupply/rackmounting kit"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	07-Dec-07	18-Jan-08	21499.50	=""	="NATIONAL INSTRUMENTS"	12-May-08 01:48 PM	

+="CN78499"	"ROPES REQ'D BY GYM TO REPLACE OLD ONES"	="Department of Defence"	12-May-08	="Sports equipment and accessories"	20-Dec-07	28-Feb-08	28275.50	=""	="BULLIVANTS"	12-May-08 01:49 PM	

+="CN78508"	"SHIP CRUISE"	="Department of Defence"	12-May-08	="Recreational watercraft"	20-Dec-07	15-Jan-08	21780.00	=""	="WINDEWARD BOUND TRUST"	12-May-08 01:50 PM	

+="CN78510"	"Software and accessories"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jan-08	24233.00	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 01:50 PM	

+="CN78517"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	21350.00	=""	="MINTER ELLISON"	12-May-08 01:51 PM	

+="CN78525"	"AIR CHTR - FUEL REDPLOY OF BLACKHAWKS PNG ASSITS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	24000.00	=""	="HEAVYLIFT CARGO AIRLINES"	12-May-08 01:53 PM	

+="CN78546"	"POC: Heather Stevens 02 6127 7309 Quotation: 7004688"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	24-Jan-08	28369.00	=""	="IBM AUSTRALIA LTD"	12-May-08 01:57 PM	

+="CN78552"	"INSTALLATION OF RAINWATER TANKS BULIMBA"	="Department of Defence"	12-May-08	="Water resources development and oversight"	20-Dec-07	30-Jun-08	27182.10	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:58 PM	

+="CN78564"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	28-Feb-08	24200.00	=""	="MERCER (AUSTRALIA) PTY LTD"	12-May-08 02:01 PM	

+="CN78587"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	22084.37	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:04 PM	

+="CN78593"	"25 WASHING MACHINES, 25 DRYERS"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	20-Dec-07	31-Dec-07	22430.10	=""	="THE GOOD GUYS"	12-May-08 02:05 PM	

+="CN78595"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	23870.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78605"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	27934.50	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78622"	"SESSIONALIST PODIATRIST AT HEALTH CENTRE CERBERUS"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	04-Jan-08	30-Jul-08	24545.45	=""	="MR ARTUR MALISZEWSKI"	12-May-08 02:10 PM	

+="CN78624"	"Contract: File 2008-1035609 refers"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	30-Jun-08	22645.70	=""	="FINLAY RESEARCH PTY LTD"	12-May-08 02:10 PM	

+="CN78632"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	10-Apr-08	30-Apr-08	27235.90	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:11 PM	

+="CN78633"	"Flying Flights 01-08 Oct 07 - Ex Kujarra 3"	="Department of Defence"	12-May-08	="Aircraft"	11-Oct-07	30-Jun-08	20860.82	=""	="PEL-AIR AVIATION"	12-May-08 02:11 PM	

+="CN78638"	"Training"	="Department of Defence"	12-May-08	="Electronic reference material"	10-Apr-08	09-Jun-08	20778.12	=""	="CRYSTAL ECHO PTY LTD"	12-May-08 02:12 PM	

+="CN78640"	"HP PROLIANT DL 580 G5 SERVER &  INSTALLATION"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	04-Jan-08	21-Jan-08	28720.00	=""	="ORBNET PTY LTD"	12-May-08 02:12 PM	

+="CN78641"	"S5261, WR's Rockdale - 300074177, Dee Why - 300074 300074179, Banksmeadow - 300074180. Upgrade"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	24101.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:12 PM	

+="CN78647"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	20900.00	=""	="AUSTRALIAN WAR MEMORIAL"	12-May-08 02:12 PM	

+="CN78665"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Oct-07	31-Oct-07	21877.29	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:14 PM	

+="CN78666"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	03-Jan-08	29700.00	=""	="PROGRAM IT PTY LTD"	12-May-08 02:14 PM	

+="CN78667"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	25-Jun-08	22000.00	=""	="SCHOOL OF ELECTRICAL & INFORMATION"	12-May-08 02:14 PM	

+="CN78677"	"COURSE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jan-08	29-Feb-08	26829.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 02:15 PM	

+="CN78689"	"******* URGENT CONTRACT ******** COMMUNICATION EQUIPMENT"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	18-Apr-08	28865.10	=""	="BEARCOM WIRELESS WORLDWIDE"	12-May-08 02:16 PM	

+="CN78700"	"Mapping of CUTA Environmental & Heritage Managemen Plans"	="Department of Defence"	12-May-08	="Environmental management"	14-Apr-08	30-Jun-08	27637.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:17 PM	

+="CN78701"	"FREIGHT SERVICES AATTI 8"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	08-Dec-07	17-Dec-07	27865.57	=""	="DHLA INT TRANSPORTATION CO WLL"	12-May-08 02:17 PM	

+="CN78716"	"goods"	="Department of Defence"	12-May-08	="Dairy products and eggs"	20-Jul-07	18-Dec-07	26287.84	=""	="PDL TOLL"	12-May-08 02:18 PM	

+="CN78718"	"StratixI Leads - Braemec"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	12-May-08	24882.00	=""	="BRAEMAC (SA) PTY LTD"	12-May-08 02:18 PM	

+="CN78728"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	04-Feb-08	23201.86	=""	="COMMANDER (ACT)"	12-May-08 02:19 PM	

+="CN78729-A1"	"Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	27-Aug-07	23-Nov-07	28111.00	=""	="VEROSSITY PTY LTD"	12-May-08 02:19 PM	

+="CN78733"	"fees"	="Department of Defence"	12-May-08	="Aircraft"	25-Oct-07	30-Nov-07	27000.00	=""	="HELI WEST"	12-May-08 02:19 PM	

+="CN78737"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	12-May-08	29040.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	12-May-08 02:19 PM	

+="CN78746"	"Laptops for SV 01-08 MG"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	26512.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:20 PM	

+="CN78753"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Apr-08	12-May-08	22321.43	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 02:20 PM	

+="CN78782"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	29960.70	=""	="CS INFORMATION SERVICES PTY LTD"	12-May-08 02:22 PM	

+="CN78784"	"SWITCHES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	18-Apr-08	24152.36	=""	="CERULEAN SOLUTIONS LTD"	12-May-08 02:22 PM	

+="CN78787"	"MATLAB software licence"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	18-Apr-08	23749.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78793"	"MAYTAG COMMERCIAL TOP LOAD WASHER QTY 16"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	14-Apr-08	21-Apr-08	24950.85	=""	="RICHARD JAY LAUNDRY EQUIPMENT PTY L"	12-May-08 02:22 PM	

+="CN78797"	"HARDWARE"	="Department of Defence"	12-May-08	="Hardware"	21-Dec-07	09-Jan-08	21966.09	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:23 PM	

+="CN78800"	"Hallam cabinets"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	04-Jan-08	26894.56	=""	="A J F ELECTRICAL DISTRIBUTORS"	12-May-08 02:23 PM	

+="CN78804"	"FEE FOR SERVICE"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	08-Nov-07	13-Dec-07	24429.00	=""	="PETER G VICKERS"	12-May-08 02:23 PM	

+="CN78805"	"SECURITY-KEYWATCH"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	09-May-08	25383.60	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 02:23 PM	

+="CN78818"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1. INDEPENDENT SCHEDULE REVIEW - RAAF BASE PEARCE RED"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	29312.58	=""	="TRACEY BRUNSTROM & HAMMOND PTY LTD"	12-May-08 02:24 PM	

+="CN78844"	"GYM EQUIPMENT"	="Department of Defence"	12-May-08	="Gymnastics and boxing equipment"	14-Apr-08	30-Jun-08	27060.00	=""	="THE FITNESS GENERATION PTY LTD"	12-May-08 02:25 PM	

+="CN78850"	"IT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	24084.13	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:26 PM	

+="CN78853"	"manufacture complete sets of masters la parts"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	24-Apr-08	21976.50	=""	="ARRK AUSTRALIA & NEW ZEALAND"	12-May-08 02:26 PM	

+="CN78856"	"Fitness Equipment"	="Department of Defence"	12-May-08	="Fitness equipment"	11-Apr-08	30-Jun-08	20710.25	=""	="CYBEX T/A BLISS FITNESS SYSTEMS"	12-May-08 02:26 PM	

+="CN78858"	"SOFTWARE"	="Department of Defence"	12-May-08	="Software"	02-Jan-08	31-Jan-08	22426.04	=""	="KAZ GROUP LTD"	12-May-08 02:27 PM	

+="CN78868"	"POC: MICHAEL SULLIVAN CONTACT: 02 626 50662"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Jun-08	21960.00	=""	="LUCID IT PTY LTD"	12-May-08 02:27 PM	

+="CN78857"	"BATTERIES FOR OPERATIONAL USE."	="Department of Defence"	12-May-08	="Rechargeable batteries"	12-May-08	02-Jun-08	21066.65	=""	="J BLACKWOOD & SON LTD"	12-May-08 02:28 PM	

+="CN78880"	"Install Radar Anchor Points at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	11-Apr-08	30-Jun-08	30000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:28 PM	

+="CN78882"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	22965.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78885"	"BANNERS"	="Department of Defence"	12-May-08	="Signage and accessories"	11-Apr-08	05-Jun-08	22220.00	=""	="SIGNARAMA"	12-May-08 02:28 PM	

+="CN78893"	"VENUE HIRE"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	11-Apr-08	11-Apr-08	25391.63	=""	="NATIONAL CONVENTION CENTRE"	12-May-08 02:29 PM	

+="CN78894"	"MONTHLY SECURITY SERVICES - FEBRUARY 2008"	="Department of Defence"	12-May-08	="Security surveillance and detection"	30-Mar-08	10-Apr-08	27416.96	=""	="COMPASS - INTEGRATED LOGISTICS &"	12-May-08 02:29 PM	

+="CN78896"	"SCANNING OF FILM"	="Department of Defence"	12-May-08	="Photographic and recording media"	11-Apr-08	08-May-08	24226.40	=""	="DOCUMENT IMAGING SERVICES"	12-May-08 02:29 PM	

+="CN78904"	"TRAINING COURSES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	20000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	12-May-08 02:29 PM	

+="CN78911"	"RAAF AMBERLEY STAGE 3 - DELIVERY PHASE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	27500.00	=""	="HMA BLAZE PTY LTD"	12-May-08 02:30 PM	

+="CN78928"	"REIMBURSEMENT"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	02-Jan-08	21216.25	=""	="SYDNEY CHURCH OF ENGLAND GRAMMAR"	12-May-08 02:31 PM	

+="CN78929"	"Technical Contact: D Dunn"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	21835.00	=""	="KEVES BUILDING WORKS"	12-May-08 02:31 PM	

+="CN78931"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	20039.15	=""	="AFFINITY IT RECRUITMENT"	12-May-08 02:32 PM	

+="CN78942"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Arts and crafts equipment and accessories and supplies"	21-Feb-08	30-May-08	26400.00	=""	="CHISHOLM INSTITUTE OF TAFE"	12-May-08 02:33 PM	

+="CN78948"	"Provision of reginonal practitioner"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	27-Jan-08	09-Apr-08	27634.44	=""	="CLEMENTS RECRUITMENT PTY LTD"	12-May-08 02:33 PM	

+="CN78961"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	23003.84	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:34 PM	

+="CN78974"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	26569.68	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 02:35 PM	

+="CN78981"	"contract under standing offer"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	11-Apr-08	30-Jun-08	23255.98	=""	="DAINTREE SYSTEMS PTY LTD"	12-May-08 02:35 PM	

+="CN78983"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	23157.13	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 02:36 PM	

+="CN78987"	"ENCRYPTION DEVICE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	09-Oct-08	23157.80	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 02:36 PM	

+="CN78989"	"AVOP008 SHORT NOTICE FREIGHT 171 DEPLOYMENT"	="Department of Defence"	12-May-08	="Transportation components and systems"	14-Dec-07	21-Apr-08	28010.40	=""	="TOLL PRIORITY"	12-May-08 02:36 PM	

+="CN78992"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	10-Apr-08	30-May-08	24532.31	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:36 PM	

+="CN78994"	"4 channel ACE - Quattro - 40 KHz dynamic signal analyser with additional options"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	17-Dec-07	15-Feb-08	21607.30	=""	="KINGDOM PTY LTD"	12-May-08 02:36 PM	

+="CN79013"	"SALARY AND SALARY RELATED COSTS Scientific / medical supplies,postage,freight etc"	="Department of Defence"	12-May-08	="Medical science research and experimentation"	15-Apr-08	15-Apr-08	23264.81	=""	="QUT STUDENT FEES OFFICE"	12-May-08 02:38 PM	

+="CN79016"	"Engagement of DFT to coordinate Electrical Works a Commission for DIER 0607-0586."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	20265.30	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-May-08 02:38 PM	

+="CN79021"	"CAB FARES"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Apr-08	07-Apr-08	29805.99	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:38 PM	

+="CN79028"	"SHELVING REQ'D FOR INITIAL SETUP OF 2ND BUILDING FOR DP1,  LAND 125 GEAR"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	07-Apr-08	16-May-08	21951.60	=""	="DEXION NEWCASTLE"	12-May-08 02:39 PM	

+="CN79036"	"HIRING OF EQUIPMENT"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Feb-08	30-Apr-08	20227.46	=""	="PILLINGERS HIRING SERVICE PTY LTD"	12-May-08 02:40 PM	

+="CN79046"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	07-Apr-08	30-Jun-08	22722.37	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:40 PM	

+="CN79048"	"FURNITURE"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jan-08	22820.09	=""	="HARVEY NORMAN ELECTRICAL"	12-May-08 02:40 PM	

+="CN79049"	"VIDEO PRODUCTION"	="Department of Defence"	12-May-08	="Photographic and recording media"	07-Apr-08	07-Apr-08	20592.00	=""	="DYNAMIC MEDIA PTY LTD"	12-May-08 02:40 PM	

+="CN79068"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	23-Mar-08	15-Apr-08	20000.00	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79084"	"Maintenance & Development of CAPMAN"	="Department of Defence"	12-May-08	="Software"	07-Apr-08	30-Jun-08	20460.00	=""	="ZENDATA PTY LTD"	12-May-08 02:43 PM	

+="CN79092"	"SERVICE AND REPAIR EXCAVATOR 231809 O/HILLS"	="Department of Defence"	12-May-08	="Agricultural and forestry and landscape machinery and equipment"	07-Apr-08	02-Jun-08	20175.72	=""	="HITACHI CONSTRUCTION MACHINERY (AUS"	12-May-08 02:44 PM	

+="CN79116"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Apr-08	14-Apr-08	29370.00	=""	="NETCOMM LTD"	12-May-08 02:47 PM	

+="CN79141-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	25-Mar-08	26552.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:49 PM	

+="CN79144-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	17-Apr-08	25914.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:49 PM	

+="CN79146"	"Development & implementation of the Aircrew Manuals Office (ACMO) Pub. & Amend. system."	="Department of Defence"	12-May-08	="Published Products"	03-Apr-08	08-May-08	24365.00	=""	="EGLOO TECHNOLOGIES PTY LIMITED"	12-May-08 02:49 PM	

+="CN79152"	"AIRFARES"	="Department of Defence"	12-May-08	="Aircraft"	14-Mar-08	30-Apr-08	21511.19	=""	="MSL TRAVEL DN BHD"	12-May-08 02:50 PM	

+="CN79164"	"Custom wireless interface/transmitter"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Apr-08	30-May-08	29556.51	=""	="MICROSTRAIN INC"	12-May-08 02:51 PM	

+="CN79174"	"Provisions of local administrative services."	="Department of Defence"	12-May-08	="Office supplies"	05-May-08	01-Jan-09	21913.33	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 02:52 PM	

+="CN79176"	"CLEANING SERVICES FOR OPTEC BLDG EX WALLABY 07. FROM 30SEP07 TO 12OCT07"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	12-Nov-07	10-Dec-07	26852.61	=""	="COMMERCIAL PROPERTY CLEANING PTY"	12-May-08 02:52 PM	

+="CN79186"	"AIR 7000 SHARP MAK VR-Forces Support"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	03-Apr-08	16-Apr-08	28490.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 02:53 PM	

+="CN79189"	"Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	22870.19	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:53 PM	

+="CN79194"	"MAR 08 VEHICLE LEASE - FIT"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Apr-08	03-May-08	27151.71	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79197"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	28587.74	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79204"	"Outline Research Report & Slide show"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	04-Apr-08	04-Apr-08	22000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 02:55 PM	

+="CN79207"	"INSTALLATION OF FENCING AT QSTORE - FLLA K"	="Department of Defence"	12-May-08	="Personal safety and protection"	31-Mar-08	04-May-08	22323.43	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:55 PM	

+="CN79226"	"SPORT & REC EQUIPMENT BORNEO BKS CABARLAH"	="Department of Defence"	12-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	04-Apr-08	09-Jun-08	21923.00	=""	="BLISS FITNESS SYSTEMS"	12-May-08 02:57 PM	

+="CN79227"	"RAAF DARWIN SPECIAL OPERATIONS FORWARD MOUNTING FACILITIES"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	27804.88	=""	="GHD PTY LTD"	12-May-08 02:57 PM	

+="CN79230"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	17-Apr-08	23489.62	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 02:58 PM	

+="CN79241"	"Business Analyst - Paul Rowson"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	03-Apr-08	30-Apr-08	24000.08	=""	="APERIUM PTY LTD"	12-May-08 02:59 PM	

+="CN79242"	"PROVISION OF BOM SERVICE EX WALLABY 07"	="Department of Defence"	12-May-08	="Aircraft"	11-Dec-07	30-Dec-07	26107.64	=""	="BUREAU OF METEOROLOGY"	12-May-08 02:59 PM	

+="CN79251"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-08	20320.00	=""	="CLAYTON UTZ"	12-May-08 03:00 PM	

+="CN79255"	"As per Standing Offer LH 01/05 Drake"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Apr-08	30-Jun-08	25591.50	=""	="DRAKE INTERNATIONAL"	12-May-08 03:00 PM	

+="CN79273"	"VEHICLE LEASE - RWG"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	25-Apr-08	24424.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:02 PM	

+="CN79284"	"health services"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	18-Feb-08	27-Apr-08	23663.51	=""	="LJH NURSING PTY LTD"	12-May-08 03:03 PM	

+="CN79286"	"Provision of local administrative services - Bahra"	="Department of Defence"	12-May-08	="Office supplies"	27-Apr-08	01-Jan-09	21549.95	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:03 PM	

+="CN79290"	"PROVISION OF SIMULATOR TRAINING"	="Department of Defence"	12-May-08	="Aircraft"	20-Mar-08	20-Mar-08	22000.00	=""	="SIMULINC"	12-May-08 03:04 PM	

+="CN79295"	"Risk Action Software Licences"	="Department of Defence"	12-May-08	="Software"	08-Apr-08	30-Apr-08	22175.00	=""	="SILICON ROSE PTY LTD"	12-May-08 03:04 PM	

+="CN79298"	"Specialist Military Training"	="Department of Defence"	12-May-08	="Classroom decoratives and supplies"	14-Mar-08	18-Apr-08	22596.72	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 03:04 PM	

+="CN79305"	"WORK BENCHES"	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	20-May-08	21745.01	=""	="SOUTHERN SHOP & OFFICE"	12-May-08 03:05 PM	

+="CN79309"	"TRANSCRIPTION SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	22000.00	=""	="WRITE-WAY RESEARCH SERVICE"	12-May-08 03:06 PM	

+="CN79310"	"04-425303 31MAR08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Mar-08	09-Apr-08	20855.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:06 PM	

+="CN79311"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	08-Apr-08	23100.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	12-May-08 03:06 PM	

+="CN79313"	"3 YR MAINTENANCE SERVICE"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	08-Apr-08	30-Apr-09	26890.60	=""	="VARIAN AUSTRALIA PTY LTD"	12-May-08 03:06 PM	

+="CN79316"	"04-425295 31MAR08 PMCC ARMY BILL"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	09-Apr-08	26226.15	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79317"	"TEMPORARY EMPLOYEE 3MAR-30MAY08"	="Department of Defence"	12-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	21000.10	=""	="CAREERS MULTILIST LIMITED"	12-May-08 03:07 PM	

+="CN79325"	"REPAIR, REASSEMBLY & TEST RUNNING OF SOPWORTH PUP POWER PLANT"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	09-Apr-08	26400.00	=""	="AIRCRAFT ENGINE WORKS AUSTRALIA"	12-May-08 03:07 PM	

+="CN79339"	"APR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Apr-08	03-May-08	21055.99	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79343"	"Repair of MDI S/No 1053"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	03-Apr-08	01-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:09 PM	

+="CN79344"	"FIRE MANGEMENT - HIRE OF HELICOPTER"	="Department of Defence"	12-May-08	="Fire prevention"	09-Apr-08	30-Jun-08	22158.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:09 PM	

+="CN79346"	"INTERNAL STANDARDS GAS GC/MS"	="Department of Defence"	12-May-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Apr-08	28-Apr-08	21268.50	=""	="SCITEK AUSTRALIA PTY LTD"	12-May-08 03:09 PM	

+="CN79350"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	20-Jun-08	25146.00	=""	="DOCUMENT IMAGING SERVICES"	12-May-08 03:09 PM	

+="CN79357"	"Transport of 13 Army Landrovers from Puckapunyal t As agreed 14 Day Delivery."	="Department of Defence"	12-May-08	="Transportation services equipment"	09-Apr-08	24-Apr-08	25025.00	=""	="AUSTRALIAN TRANSPORT PTY LTD"	12-May-08 03:10 PM	

+="CN79359"	"IRIS Forms and annual maintenance"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	16-Apr-08	24850.98	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 03:10 PM	

+="CN79380"	"Research Agreement to develop capability for effic of complex airframe structures"	="Department of Defence"	12-May-08	="Military science and research"	07-Apr-08	30-Jun-08	22000.00	=""	="MONASH UNI - CASHIER"	12-May-08 03:11 PM	

+="CN79381"	"Ford Fairmont Sedan ( SE) Qty 1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	05-Sep-08	25739.75	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:11 PM	

+="CN79389"	"SPECIAL PURPOSE AIRCRAFT HIRE"	="Department of Defence"	12-May-08	="Aircraft"	18-Apr-08	09-May-08	21780.00	=""	="PEL-AIR AVIATION"	12-May-08 03:12 PM	

+="CN79416"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	28907.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:14 PM	

+="CN79436"	"MAR-MAY 08 RENTAL OF ARC PENANG"	="Department of Defence"	12-May-08	="Recreation and playground and swimming and spa equipment and supplies"	20-Feb-08	20-Feb-08	29065.68	=""	="CHOONG LYE HOCK ESTATES SDN BHD"	12-May-08 03:15 PM	

+="CN79447"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	26194.23	=""	="M F B PRODUCTS PTY LTD"	12-May-08 03:16 PM	

+="CN79462"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	16-Apr-08	30-Jun-08	23760.00	=""	="Verisign Australia Pty Ltd (VIC)"	12-May-08 03:17 PM	

+="CN79470"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	29363.12	=""	="INTERIORS AUSTRALIA"	12-May-08 03:17 PM	

+="CN79490"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	25597.45	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:19 PM	

+="CN79507"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	28-Apr-08	28-Apr-08	24476.05	=""	="James Richardson Corporation"	12-May-08 03:20 PM	

+="CN79517"	"CNOA Systems EngineerServices"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Jun-08	22482.00	=""	="SIGNAL PROCESSING KNOW-HOW PTY LTD"	12-May-08 03:20 PM	

+="CN79523"	"QANTAS CHARGES FOR FACDU PERSONNEL NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	26441.40	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:21 PM	

+="CN79525"	"AUTOMATIC PUNCHER & SPIRAL BINDER"	="Department of Defence"	12-May-08	="Paper Materials and Products"	08-Apr-08	15-Apr-08	22030.80	=""	="RENZ MASTERBIND PTY LTD"	12-May-08 03:21 PM	

+="CN79530"	"SERVERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Mar-08	07-Apr-08	24666.13	=""	="I-COMM AUSTRALIA PTY LTD"	12-May-08 03:21 PM	

+="CN79531"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	04-Feb-08	04-Feb-08	27137.57	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 03:21 PM	

+="CN79535"	"IP TELEPHONY NETWORK DEVELOPMENT COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	26-Feb-08	27276.70	=""	="IT TRAINING SOLUTIONS"	12-May-08 03:21 PM	

+="CN79536"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	30-Apr-08	30-Jun-08	25957.36	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:21 PM	

+="CN79539"	"FOOTBALL BOOTS, QTY 174"	="Department of Defence"	12-May-08	="Safety footwear"	27-Mar-08	24-Apr-08	28710.00	=""	="SPORTSMANS WAREHOUSE PTY LTD"	12-May-08 03:22 PM	

+="CN79555"	"AUSCDT ONE QANTAS STATEMENT DEC 07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	29-Feb-08	20842.56	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:23 PM	

+="CN79560"	"TEST SET TIMING"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	09-Jan-09	24630.56	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:23 PM	

+="CN79565"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	05-Dec-07	11-Mar-08	22654.73	=""	="CHANDLER MACLEOD HEALTH PTY LTD"	12-May-08 03:23 PM	

+="CN79566"	"aUDITS"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	21-Feb-08	30-Jun-08	25990.27	=""	="SAI GLOBAL LIMITED"	12-May-08 03:23 PM	

+="CN79569"	"PROVISION OF PRINTED MEDIA"	="Medicare Australia"	12-May-08	="Graphic design"	22-Apr-08	22-Apr-08	22785.00	=""	="BHB PRINTING PTY LTD"	12-May-08 03:23 PM	

+="CN79573"	"SQ REGIONAL GENERAL RESERVES ESSENTIAL  REPAIRS RELOCATE DEMOUNTABLE BUILDING"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	27680.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:24 PM	

+="CN79578"	"Provision of Software Licenses and Support"	="Medicare Australia"	12-May-08	="Computer services"	22-Apr-08	30-May-08	20240.00	=""	="SAP AUSTRALIA PTY LTD"	12-May-08 03:25 PM	

+="CN79584"	"QANTAS CHARGES FOR 2OCU PERSONNEL OCT/NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	29350.76	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79588"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	13-Feb-08	30-Jun-08	29595.01	=""	="PHILLIPS FOX SYDNEY"	12-May-08 03:26 PM	

+="CN79589"	"Multi-Rater data collection.  Management Fee."	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	31-Oct-07	21-Aug-08	26710.02	=""	="TWYFORD CONSULTING"	12-May-08 03:26 PM	

+="CN79603"	"Computer equiptment and support"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	12-Feb-08	29-Feb-08	20666.80	=""	="STEP ELECTRONICS 2005 PTY LTD"	12-May-08 03:27 PM	

+="CN79623"	"CONNECTOR PLUG AND PANEL"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Aug-08	24497.51	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 03:27 PM	

+="CN79630"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	20-Mar-08	30-Jun-08	29361.52	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:28 PM	

+="CN79632"	"dsto software"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	30-Nov-07	22029.41	=""	="ANSOFT CORPORATION (SINGAPORE BRANC"	12-May-08 03:28 PM	

+="CN79633"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Dec-07	26265.87	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:28 PM	

+="CN79652"	"Technical Writing Services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	15-Nov-07	31-Dec-07	24074.05	=""	="RECRUITMENT MANAGEMENT COMPANY"	12-May-08 03:30 PM	

+="CN79653"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	26680.67	=""	="RACAL ACOUSTICS LIMITED"	12-May-08 03:30 PM	

+="CN79656"	"Darwin Repairs - tEODor"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	20-Mar-08	30-Apr-08	23404.77	=""	="XTEK PTY LTD"	12-May-08 03:30 PM	

+="CN79677"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* PHARMACY SELF CARE"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	20860.07	=""	="PHARMACEUTICAL SOCIETY OF AUST"	12-May-08 03:32 PM	

+="CN79682"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* Folding Op. Table"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	29130.68	=""	="FERNO AUSTRALIA PTY LTD"	12-May-08 03:32 PM	

+="CN79697"	"WA Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	27794.33	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79703"	"UXO REMOVAL CONSULTANCY WBTA AND GBTA"	="Department of Defence"	12-May-08	="Ammunition"	14-Nov-07	30-Jun-08	27439.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:34 PM	

+="CN79706"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	25623.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:34 PM	

+="CN79714"	"Conditions of Contract, Scylla Sonar Iss, CAPO N26 to this deliverable under cover of quotation L753"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	12-Feb-08	18-Apr-08	27782.77	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 03:34 PM	

+="CN79715"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	21716.04	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:34 PM	

+="CN79724"	"CERTIFICATE IV PROJECT MANAGEMENT COURCE FLEET BASE EAST"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	12-Feb-08	30-Apr-08	20295.00	=""	="LEADER GROUP"	12-May-08 03:35 PM	

+="CN79730"	"Provision of IT Refurbishment"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Apr-08	01-Apr-08	25307.26	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:35 PM	

+="CN79754"	"Digital Signage Cabling"	="Defence Materiel Organisation"	12-May-08	="Electrical wire and cable and harness"	15-Feb-08	04-Apr-08	22099.00	=""	="COMMUNICATIONS AUSTRALIA PTY LTD"	12-May-08 03:36 PM	

+="CN79763"	"Transportation trailer for PODS movement between storage--maintenance-trial facilities."	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	28-Mar-08	15-May-08	21396.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 03:37 PM	

+="CN79775"	"DOD 3 CSR 31 DEC 07 LINE ITEMS 3741 - 3792"	="Department of Defence"	12-May-08	="Transportation services equipment"	31-Dec-07	18-Feb-08	28793.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:39 PM	

+="CN79778"	"repair of hsd"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Mar-08	26-Jul-08	23391.72	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:39 PM	

+="CN79789"	"Land Self protection SPO requires the manufacture to house and secure PCM units. atahe bins will be"	="Department of Defence"	12-May-08	="Military watercraft"	28-Mar-08	30-Jun-08	21131.44	=""	="EDAG AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79810"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	11-Apr-08	29-Jun-08	25783.68	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:40 PM	

+="CN79826"	"student and staff movements"	="Department of Defence"	12-May-08	="Aircraft"	30-Dec-07	30-Jun-08	27920.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:42 PM	

+="CN79834"	"***CONFIRMATION ONLY*** GOODS RECEIVED"	="Department of Defence"	12-May-08	="Vehicle servicing equipment"	15-Nov-07	15-Nov-07	28022.83	=""	="ISAS - INTEGRATED SWITCHGEAR &"	12-May-08 03:42 PM	

+="CN79847"	"SECDEF agreed contribution to APSC funding."	="Department of Defence"	12-May-08	="Management support services"	25-Oct-07	19-Oct-08	28461.00	=""	="APS COMMISSION"	12-May-08 03:43 PM	

+="CN79876"	"PROVISION OF CONTRACTOR (LABOUR HIRE) SERVICES"	="Medicare Australia"	12-May-08	="Computer services"	10-Apr-08	10-Apr-08	21396.37	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 03:45 PM	

+="CN79877"	"Travel and subsistence"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	20000.00	=""	="DEFENCE SUPPORT - WA"	12-May-08 03:45 PM	

+="CN79882"	"EMCPM LAPTOP Bulk Leasing for Participants FY07/08 & 08/09"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	28-Mar-08	30-Jun-09	29370.00	=""	="TR CORPORATION PTY LTD"	12-May-08 03:46 PM	

+="CN79884"	"FIRE UPGRADE WORKS - GRES DEPOTS"	="Department of Defence"	12-May-08	="Fire protection"	04-Oct-07	30-Jun-08	29027.78	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:46 PM	

+="CN79897"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	11-Oct-07	30-Jun-08	20575.01	=""	="DEACONS"	12-May-08 03:46 PM	

+="CN79909"	"SHOALWATER BAY TRAINING FACILITY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	20350.00	=""	="ARUP PTY LTD"	12-May-08 03:47 PM	

+="CN79918"	"Depopulate high risk CCA's and return to LSA-N"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Jun-08	21268.42	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 03:48 PM	

+="CN79917"	"Misc Goods, Freight, Service Charges"	="Department of Defence"	12-May-08	="Office supplies"	20-Feb-08	01-Jun-08	27761.16	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:48 PM	

+="CN79922"	"PRICE VARIATION FOR P/O - CC1S46"	="Department of Defence"	12-May-08	="Clothing"	27-Mar-08	04-Apr-08	26400.00	=""	="TUFFA WORKWEAR PTY LTD"	12-May-08 03:48 PM	

+="CN79957"	"HEALTH SERVICES"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	03-Mar-08	30-Jun-08	23890.41	=""	="LJH NURSING PTY LTD"	12-May-08 03:52 PM	

+="CN79902"	"Motor Vehicle Part"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-May-08	08-Jun-09	27102.87	=""	="Volvo Commericial Vehicles"	12-May-08 03:52 PM	

+="CN79963"	"convert data"	="Department of Defence"	12-May-08	="Software"	27-Mar-08	27-Jun-08	24654.75	=""	="INTERSOFT ELECTRONICS NV"	12-May-08 03:52 PM	

+="CN79971"	"Misc Goods, Freight, Service Charges"	="Department of Defence"	12-May-08	="Office supplies"	20-Feb-08	01-Jun-08	21104.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:53 PM	

+="CN79981"	"KEY SAFES"	="Defence Materiel Organisation"	12-May-08	="Vehicle safety and security systems and components"	14-Feb-08	30-Jun-08	20761.02	=""	="CIC SECURE PTY LTD"	12-May-08 03:54 PM	

+="CN79991"	"ADC WESTON TEMP ACCOMODATION - SN02596"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	25798.23	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:55 PM	

+="CN79994"	"replacement airconditioner compressors"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	23070.30	=""	="G A GLANVILLE & CO"	12-May-08 03:55 PM	

+="CN79996"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	27-Mar-08	27-Jun-08	23713.85	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 03:56 PM	

+="CN79998"	"installation of cipher locks on COMCEN doors"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	24007.18	=""	="AIMTEK PTY LTD"	12-May-08 03:56 PM	

+="CN80012"	"NT1978 RAAF TINDAL FRONTLINE FACILITIES UPGRADE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	30-Apr-08	30-Jun-08	22607.20	=""	="G H D PTY LTD"	12-May-08 03:57 PM	

+="CN80023"	"POC: JONATHON MCGRATH CONTACT: 02 626 69368"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	10-Apr-08	30-Jun-08	29073.00	=""	="ROJONE PTY LTD"	12-May-08 03:58 PM	

+="CN80025"	"Office Furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Nov-07	29-Nov-07	22330.00	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	12-May-08 03:58 PM	

+="CN80028"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	06-Feb-08	29-Feb-08	25383.81	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:58 PM	

+="CN80033"	"DOCKING ACCOMMODATION HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Feb-08	14-May-08	23875.00	=""	="JOE BORRELLI REAL ESTATE ESTATE"	12-May-08 03:58 PM	

+="CN80035"	"Database Services"	="Department of Defence"	12-May-08	="Software"	14-Nov-07	14-Nov-07	20790.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 03:58 PM	

+="CN80036"	"EXTERNAL SERVICE PROVIDER FOR TENDER EVALUATION OF LETHALITY SUB-SYSTEM"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	28799.94	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	12-May-08 03:59 PM	

+="CN80042"	"Denro Training Course"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	10-Feb-08	21972.50	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:59 PM	

+="CN80051"	"Requirements Analysis for USQ-125"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	26344.23	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:00 PM	

+="CN80056"	"Laptops"	="Department of Defence"	12-May-08	="Fabricated sheet assemblies"	10-Apr-08	30-May-08	24096.60	=""	="ASI SOLUTIONS"	12-May-08 04:00 PM	

+="CN73558"	"Live Streaming & Video Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Video production services"	11-Apr-08	24-May-08	24200.00	=""	="Viocorp International Pty Ltd"	12-May-08 04:01 PM	

+="CN80061"	"Pearce ILS refurb scoping visit"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	12-Dec-07	14-Dec-07	28096.51	=""	="AIRSERVICES AUSTRALIA"	12-May-08 04:01 PM	

+="CN80062"	"Offr Mess Svcs"	="Department of Defence"	12-May-08	="Fruits and vegetables and nuts and seeds"	23-Oct-07	30-Jun-08	21000.00	=""	="ANGLESEA BARRACKS OFFICERS MESS"	12-May-08 04:01 PM	

+="CN80071"	"Power Cable for the AN/TPQ-36 Weapon Locating Rada"	="Department of Defence"	12-May-08	="Power generation"	12-Dec-07	31-Jan-08	29775.41	=""	="OLEX AUSTRALIA"	12-May-08 04:01 PM	

+="CN80104"	"POLARIS 6X6 ATV - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Feb-08	23-Mar-08	27467.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:03 PM	

+="CN80108"	"FINAL LEASE OF 8 TONNE CRANE - FLLA A"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	17-Mar-08	23-Mar-08	23770.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:03 PM	

+="CN80114"	"DIESEL 6 PACK/MICRO SEPAROMETER"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	20-Nov-07	23-Nov-07	23034.00	=""	="IMEX PARTS EQUIPMENT PTY LTD"	12-May-08 04:03 PM	

+="CN80117"	"INSTALLATION OF  CABINETS AND OPTICAL FIBRE"	="Defence Materiel Organisation"	12-May-08	="Electrical wire and cable and harness"	07-Feb-08	29-Feb-08	29781.40	=""	="NBC COMMUNICATIONS"	12-May-08 04:03 PM	

+="CN80122"	"BANDICOOT FAMP 01/08 11TH FEBRUARY 2008 TO THE 28T The terms and conditions of this order are in acc"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	30-Jun-08	25188.01	=""	="BIRDON MARINE PTY LTD"	12-May-08 04:04 PM	

+="CN80124"	"QANTAS ACCOUNT JMCO ADL JAN08"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	31-Jan-08	20501.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:04 PM	

+="CN80136"	"REMEDIATION OF AIR CONDITIONING DEFECTS"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	25833.96	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:05 PM	

+="CN80152"	"Purchase of wing MCADS Recovery sponson"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	06-Feb-08	30-Jun-08	27863.79	=""	="WING INFLATABLES"	12-May-08 04:06 PM	

+="CN80176"	"DSTO Fellowship at University of Wollongong (Variation to Contract)"	="Department of Defence"	12-May-08	="Master control systems"	19-Nov-07	30-Nov-07	25300.00	=""	="UNI OF WOLLONGONG-PERS FIN SERVICES"	12-May-08 04:08 PM	

+="CN80181"	"PAYMENT OF FUNDS TRANSITION MENTOR"	="Department of Defence"	12-May-08	="Human resources services"	19-Nov-07	19-Nov-07	20190.12	=""	="WESTERN PORT SECONDARY COLLEGE"	12-May-08 04:09 PM	

+="CN80183"	"Repair of 2ea Mk92 FCS Ciricuit Card Assemblies"	="Department of Defence"	12-May-08	="Military watercraft"	11-Dec-07	04-Jan-08	23961.30	=""	="THALES AUSTRALIA"	12-May-08 04:09 PM	

+="CN80187"	"Computer equpment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Nov-07	31-Jan-08	23775.01	=""	="MILLENNIUM AUDIO VISUAL"	12-May-08 04:09 PM	

+="CN80188"	"QANTAS CHARGES FOR DS-CNNSW PERSONNEL DEC07/JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	30-Jun-08	28063.96	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:09 PM	

+="CN80194"	"Ship Maintenance and repair"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	05-Feb-08	18-Feb-08	28965.95	=""	="G A GLANVILLE & CO"	12-May-08 04:09 PM	

+="CN80214"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	11-Dec-07	30-Jun-08	22715.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 04:11 PM	

+="CN80226"	"S&Q 02/078 REPAIR DAMAGED STATIC PROBES"	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Apr-08	30-Apr-08	28861.34	=""	="BAE SYSTEMS AUSTRALIA - GBP"	12-May-08 04:12 PM	

+="CN80227"	"CONSULTANT TO TO PROVIDE TRANSITION DOCUMENTS FOR KC-30B"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Nov-07	30-Jun-08	29700.00	=""	="SME GATEWAY LIMITED"	12-May-08 04:12 PM	

+="CN80228"	"Ductal Protection Panels & Transport"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	11-Nov-07	23-Jan-08	23452.66	=""	="VSL AUSTRALIA PTY LTD"	12-May-08 04:12 PM	

+="CN80241"	" DIRECTOR LAND SUSTAINMENT PROGRAM MANAGEMENT - RECRUITMENT SEARCH"	="Department of Defence"	12-May-08	="Personnel recruitment"	17-Dec-07	31-Mar-08	26400.00	=""	="HAYS SPECIALIST RECRUITMENT"	12-May-08 04:13 PM	

+="CN80251"	"Spoon, Dessert, Plastic"	="Department of Defence"	12-May-08	="Domestic kitchenware"	20-Dec-07	30-Apr-08	28259.00	=""	="POLY INDUSTRIES PTY LTD"	12-May-08 04:14 PM	

+="CN80270"	"Provision of local admin services"	="Department of Defence"	12-May-08	="Office supplies"	06-Mar-08	01-Jan-09	24714.46	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 04:16 PM	

+="CN80277"	"Installation Design Support"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	23988.80	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:16 PM	

+="CN80279"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	05-Feb-08	30-Mar-08	21997.49	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 04:17 PM	

+="CN80282"	"Installation Design Support"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	26911.06	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:17 PM	

+="CN80233"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-May-08	06-Jun-08	26366.43	=""	="Mercedes Benz Aust"	12-May-08 04:18 PM	

+="CN80296"	"HOUSING, SUB ASSY"	="Department of Defence"	12-May-08	="Aircraft"	10-Apr-08	15-Jul-08	29133.32	=""	="CAE INC"	12-May-08 04:18 PM	

+="CN80315"	"This Purchase Order raised to procure items for th Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	24411.09	=""	="MUSTANG SURVIVAL CORP"	12-May-08 04:19 PM	

+="CN80326"	"Use of Exisitng ASP Contract. Militarisation of Now Radar"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	31-Mar-08	29544.38	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:21 PM	

+="CN80341"	"Develop new TMS- Overhaul Manual Operated Firemain Valves 4" IPS and over"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	23305.72	=""	="THALES AUSTRALIA"	12-May-08 04:22 PM	

+="CN73691"	"Project Management Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Computer services"	07-Apr-08	24-Apr-08	24324.00	=""	="OPC Pty Ltd"	12-May-08 04:22 PM	

+="CN80343"	"Conference facilitator"	="Department of Defence"	12-May-08	="Paper Materials and Products"	30-Nov-07	30-Nov-07	24501.99	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 04:22 PM	

+="CN80344"	"Server Racks"	="Department of Defence"	12-May-08	="Hardware"	20-Dec-07	30-Jun-08	23754.50	=""	="SERVER RACKS AUSTRALIA"	12-May-08 04:22 PM	

+="CN80347"	"4x DELL M6300 PRECISION LAPTOPS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	14-Apr-08	30-Jun-08	22805.20	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:22 PM	

+="CN80355"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	25139.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:23 PM	

+="CN80368"	"Develop new TMS to support Overhaul of new Nu- Torque Actuators and Controllers"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	21373.48	=""	="THALES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80374"	"Cabling"	="Department of Defence"	12-May-08	="Structural building products"	20-Dec-07	21-Jan-08	27940.00	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80383"	"Amend TMS 5211-RAN-001A- Conduct PRCA of Firemain"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	20118.73	=""	="THALES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80385"	"ACCREDITATION OF MATERIEL LOGISTICS QUALIFICATIONS AT CERTIFICATE IV, DIPLOMA AND ADVANCED DIPLOMA"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	11-Feb-08	30-Jun-08	26730.00	=""	="DEAKINPRIME"	12-May-08 04:24 PM	

+="CN80391"	"4516.21 CONDUCT ELEC SURVEY PERTH ELECTRICAL SYSTEM & PROVIDE OPENING & CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	27546.20	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:24 PM	

+="CN80354"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	08-Jun-08	26384.09	=""	="Mercedes Benz Aust"	12-May-08 04:25 PM	

+="CN80404"	"HMAS Melbourne Damage Control Console- Shipcheck"	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	30-Apr-08	20388.06	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:25 PM	

+="CN80405"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	03-Jan-08	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:25 PM	

+="CN80406"	"FURNITURE DS-NQ-TS MESSES 222-07/08"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	24840.20	=""	="DESIGN CHOICE"	12-May-08 04:25 PM	

+="CN80416"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	16-Jan-08	30-Jun-08	25288.00	=""	="MINTER ELLISON"	12-May-08 04:26 PM	

+="CN80426"	"DTS 82 RASS Testing and Training AN/TPS-77"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	14-Apr-08	28-Apr-08	23112.02	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80429"	"J527 Competitor Jackets"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	31-Mar-08	20979.20	=""	="STATESIDE DISTRIBUTORS"	12-May-08 04:26 PM	

+="CN80447"	"Repair of MDI S/NO 1081"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	18-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:27 PM	

+="CN80449"	"Cover Assemblies"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Jan-08	23-Jun-08	25943.54	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	12-May-08 04:27 PM	

+="CN80455"	"Repair of MDI S/NO 1019"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	18-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:28 PM	

+="CN80468"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	20922.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:28 PM	

+="CN80484"	"OEM OPERATIONS MANUALS (BAILOUT& BCJ) ARMY MARINE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	29700.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:29 PM	

+="CN80472"	"Fleet management and Leasing services (Standing Offer ID 12383)"	="Family Court of Australia"	12-May-08	="Vehicle leasing"	01-Feb-08	31-Jan-10	29650.10	=""	="LeasePlan"	12-May-08 04:30 PM	

+="CN80490"	"Manuals"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	08-Feb-08	30-Apr-08	21776.25	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:30 PM	

+="CN80494"	"CABLE ASSEMBLY"	="Defence Materiel Organisation"	12-May-08	="Marine craft systems and subassemblies"	08-Feb-08	11-Aug-08	28944.68	=""	="EADS DEUTSCHLAND GMBH -VERTEIDIGUNG"	12-May-08 04:31 PM	

+="CN80498"	"Contracting  work"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	11-Jan-08	28-Feb-08	26364.80	=""	="ROSS HUMAN DIRECTIONS"	12-May-08 04:31 PM	

+="CN80507"	"VARIETY HARDWARE"	="Department of Defence"	12-May-08	="Packing supplies"	11-Jan-08	23-Jan-08	23950.91	=""	="PLATINUM LIGHTING"	12-May-08 04:32 PM	

+="CN80514"	"Conference Facilities"	="Department of Defence"	12-May-08	="Satellites"	11-Apr-08	26-May-08	20294.51	=""	="WYS GROUP PTY LTD"	12-May-08 04:32 PM	

+="CN80515"	"4560 HMAS PARRAMATTA ELECTRICAL SURVEY 14 JAN 2008 - 28 JAN 2008"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	20900.00	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:32 PM	

+="CN80519"	"4561.01 HMAS PARRAMATTA THERMOGRAPHIC SURVEY ONBAORD 14 JAN - 28 JAN 08"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	24200.00	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:33 PM	

+="CN80528"	"Building Services"	="Department of Foreign Affairs and Trade"	12-May-08	="General building construction"	01-Aug-07	30-Jun-08	25999.86	=""	="Arup Pty Limited"	12-May-08 04:33 PM	

+="CN80530"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	27667.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:33 PM	

+="CN80532"	"This purchase order is raised to cover the cost of into Qty 40 of the Black Hawk Gunner Seat Frame P"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	28-Feb-08	20372.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:33 PM	

+="CN80547"	"Furniture - Residential compounds"	="Department of Foreign Affairs and Trade"	12-May-08	="Furniture and Furnishings"	03-Aug-07	31-Aug-07	28575.00	=""	="Harvey Norman Bedding Cairns"	12-May-08 04:34 PM	

+="CN80553"	"This Purchase Order is raised under the Terms and C438936."	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	07-Feb-08	29-Feb-08	20071.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:34 PM	

+="CN80565"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	30-Apr-08	28279.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80569"	"4516.38 HMAS ARUNT 400Hz CONDITION ASSESSMENT"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	27192.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80577"	"Security Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Metal and mineral industries"	01-Aug-07	29-Aug-07	21016.00	=""	="Dorma Automatics P/L"	12-May-08 04:35 PM	

+="CN80578"	"RELOCATE CLASSROOM 2 TO CLASSROOM 1 ATJCC BLDG/"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	08-Feb-08	30-Jun-08	24017.40	=""	="AV CENTRAL"	12-May-08 04:35 PM	

+="CN80605"	"Use of existing ASP Contract - Diesel generator O rings and Piston scraper"	="Department of Defence"	12-May-08	="Gaskets and seals"	08-Jan-08	31-Jan-08	25520.53	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:37 PM	

+="CN80606"	"GFM"	="Department of Defence"	12-May-08	="Ammunition"	21-Dec-07	30-Jan-08	22111.34	=""	="PENTARCH PTY LTD"	12-May-08 04:37 PM	

+="CN80608"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	29561.49	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:38 PM	

+="CN80614"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	04-Sep-07	22440.00	=""	="ECOWISE SERVICES"	12-May-08 04:38 PM	

+="CN80621"	"This P.O. is raised to facilitate the Build up of Pylons, P/N 70083-06100-041, at SAAL to 'Quic"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Dec-07	30-Apr-08	22000.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:38 PM	

+="CN80630"	"Reports Development"	="Department of Defence"	12-May-08	="Computer services"	21-Dec-07	01-Feb-08	25200.00	=""	="DIMENSION DATA LEARNING"	12-May-08 04:39 PM	

+="CN80632"	"berthage for HMAS MELVILLE maintenance Period"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	18-Feb-08	31-Mar-08	22426.77	=""	="AIMTEK PTY LTD"	12-May-08 04:39 PM	

+="CN80644"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	09-Jan-08	30-Mar-08	29575.20	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:39 PM	

+="CN80646"	"IT Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	21-Aug-07	23942.94	=""	="MILLHOUSE ENTERPRISE PTY LTD"	12-May-08 04:39 PM	

+="CN80655"	"Made to Measure Flyers Clothing"	="Defence Materiel Organisation"	12-May-08	="Clothing"	25-Feb-08	30-Jun-08	29999.99	="STANDING OFFER 0306-264-26"	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 04:40 PM	

+="CN80658"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	04-Apr-08	30-Jun-08	20658.00	=""	="CLAYTON UTZ"	12-May-08 04:40 PM	

+="CN80674"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	07-Apr-08	30-Jun-08	29865.36	=""	="KIDDE AEROSPACE & DEFENCE"	12-May-08 04:41 PM	

+="CN80679"	"Collins Class TWC IPT participation"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	27500.00	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:41 PM	

+="CN80683"	"MANUFACTURE BRIEFING ROOM TABLE HMAS KANIMBLA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	25-Feb-08	30-May-08	20328.00	=""	="SYDNEY HARBOUR BOATBUILDERS"	12-May-08 04:41 PM	

+="CN80686"	"NOWRA FAULT FINDING OF MSSR AND PSR"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	07-Apr-08	30-Apr-08	27500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:41 PM	

+="CN80708"	"MODS TO LRVS"	="Department of Defence"	12-May-08	="Truck tractors"	30-Jan-08	29-Feb-08	27231.48	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:43 PM	

+="CN80712"	"ANZAC CLASS DATA CAPTURE NEEDS ANALYSIS"	="Department of Defence"	12-May-08	="Military watercraft"	30-Jan-08	30-May-08	28567.74	=""	="JACOBS AUSTRALIA"	12-May-08 04:43 PM	

+="CN80726"	"The generators fitted to the Main Propulsion Diese HMAS SUCCESS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	29-Feb-08	22731.97	=""	="WARTSILA AUSTRALIA PTY LTD"	12-May-08 04:44 PM	

+="CN80730"	"MHC PRESSURE VESSEL REVIEW"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	30-Mar-08	28182.00	=""	="H I FRASER PTY LTD"	12-May-08 04:44 PM	

+="CN80731"	"KANIMBLA SGSI"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Apr-08	28-Nov-08	20295.00	=""	="NOVAMARINE INSTRUMENTS PTY LTD"	12-May-08 04:44 PM	

+="CN80738"	"This Purchase Order is raised to procure items for the CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	27479.96	=""	="SWITLIK PARACHUTE COMPANY INC"	12-May-08 04:44 PM	

+="CN80741"	"B15 PANEL INSTALLATION HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	25-Feb-08	20-Mar-08	20025.17	=""	="FORGACS SHIP REPAIR"	12-May-08 04:44 PM	

+="CN80750"	"COLT M4 COMMANDO"	="Department of Defence"	12-May-08	="Firearms"	21-Dec-07	20-Feb-08	22222.13	=""	="COLT DEFENSE LLC"	12-May-08 04:45 PM	

+="CN80753"	"PROP BUILD TRIP"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	25-Feb-08	30-Jun-08	22686.74	=""	="SAFE AIR LTD"	12-May-08 04:45 PM	

+="CN80755"	"FILTER ELEMENTS"	="Department of Defence"	12-May-08	="Naval weapons"	21-Dec-07	21-Jan-08	23600.50	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	12-May-08 04:45 PM	

+="CN80771"	"Biomechanical and Ergonomic Testing Combat Boots Refer attached quotation dated 13 Feb 08."	="Defence Materiel Organisation"	12-May-08	="Footwear"	22-Feb-08	25-Feb-08	29854.00	=""	="CRAIG PAYNE CONSULTING"	12-May-08 04:46 PM	

+="CN80780"	"STRIP AND SURVEY OF TOWED FLEXIBLE BARGE DISCHARGE SYSTEM"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	31-Jan-08	14-Feb-08	24992.00	=""	="GILBERT GROUP QLD T/A O'SULLIVAN"	12-May-08 04:47 PM	

+="CN80808"	"COMMUNICATION EAR PLUG"	="Department of Defence"	12-May-08	="Flight communications related systems"	31-Jan-08	10-Apr-08	20229.16	=""	="TRANSAERO INC."	12-May-08 04:48 PM	

+="CN80814"	"MAGNETRONS FOR PRWRS"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	04-Apr-08	05-Oct-08	22880.00	=""	="COMMUNICATIONS & POWER INDUSTRIES"	12-May-08 04:48 PM	

+="CN80820"	"DEED OF RELEASE AS ATTACHED"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	30-Jan-08	30-Jun-08	21810.56	=""	="BIOLAB (AUST) LTD"	12-May-08 04:48 PM	

+="CN80830"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	04-Apr-08	30-Jun-08	24106.17	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:49 PM	

+="CN80831"	"POC: CHRISTIAN HANNA CONTACT: 02 626 50140"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	24750.00	=""	="JIM HENDRICKSON & ASSOCIATES PTY LT"	12-May-08 04:49 PM	

+="CN80834"	"plugs and socket connectors"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	04-Apr-08	30-Jun-08	24672.78	=""	="MOELLER ELECTRIC AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80837"	"Fuel support costs associated with LEP"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	18-Dec-07	31-Jan-08	20288.47	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	12-May-08 04:49 PM	

+="CN80843"	"Mount Waver, Switch Assembly and Weapon LIght"	="Defence Materiel Organisation"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	23-Feb-08	01-May-08	24399.16	=""	="LASER PRODUCTS"	12-May-08 04:49 PM	

+="CN80846"	"TRIDENT EMERGENT WORK"	="Department of Defence"	12-May-08	="Fire fighting equipment"	04-Apr-08	05-May-08	28189.58	=""	="R G M MAINTENANCE PTY LTD"	12-May-08 04:50 PM	

+="CN80852"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	31-Jan-08	22024.87	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:50 PM	

+="CN80855"	"MIS928 - Additional Installation Effort"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	26126.10	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80872"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* REQUIRED FOR C-17 PROJECT"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	29-Jan-08	30-Jun-08	26730.00	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 04:51 PM	

+="CN80888"	"CONNECTING LINK"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	01-Oct-09	25616.21	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:51 PM	

+="CN80907"	"Repair of 45KVA GPU Engines"	="Defence Materiel Organisation"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	26-Feb-08	18-Apr-08	25344.00	=""	="DIESEL 1 PTY LTD"	12-May-08 04:52 PM	

+="CN80911"	"REPAIR OF AILERON LH NSN 013833284 SDSS PO#: OA40QE"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:52 PM	

+="CN80912"	"Use of existing ASP Contract - Diesel Generator fuel pump spares"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	29-Jan-08	31-May-08	24171.73	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:52 PM	

+="CN80915"	"REPAIR OF AILERON LH NSN 013833284 SDSS PO#: OA419U"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80920"	"REPAIR OF AILERON RH NSN 011520841 SDSS PO#: OA40QM"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80924"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA40QG"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80928"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA419V"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80933"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:53 PM	

+="CN80935"	"Purchase Weapon mount spigots"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	09-Apr-08	30-Jun-08	28764.12	=""	="W & E PLATT PTY LTD"	12-May-08 04:53 PM	

+="CN80939"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	09-Apr-08	23760.00	=""	="MORRIS WALKER"	12-May-08 04:54 PM	

+="CN80942"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:54 PM	

+="CN80944"	"Netwars Project Office OPNET Engineer"	="Department of Defence"	12-May-08	="Detective services"	04-Feb-08	30-Jun-09	21806.40	=""	="JACOBS AUSTRALIA"	12-May-08 04:54 PM	

+="CN80945"	"Litter, Evacuation"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	18-Dec-07	18-Jan-08	24295.49	=""	="NORTH AMERICAN RESCUE PRODUCTS"	12-May-08 04:54 PM	

+="CN80948"	"Tube Assembly, Fuel"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	18-Dec-07	23-Apr-08	24561.31	=""	="LCF SYSTEMS INC"	12-May-08 04:54 PM	

+="CN80959"	"VAPS Porting Services"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	31-May-08	22523.92	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:55 PM	

+="CN80966"	"WA PERISCOPE WORKSHOP COMMISSIONING PROJECT"	="Defence Materiel Organisation"	12-May-08	="Workshop machinery and equipment and supplies"	27-Feb-08	30-Jun-08	22439.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:56 PM	

+="CN80973"	"KANIMBLA FM 200 Maintenance"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	20-Jun-08	28963.22	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80989"	"socket outlets for hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	04-Feb-08	31-Mar-08	20732.18	=""	="MOELLER ELECTRIC AUSTRALIA PTY LTD"	12-May-08 04:57 PM	

+="CN80991"	"Analysis of X-Raying of   Ballistic Plates CIB-19"	="Department of Defence"	12-May-08	="Personal safety and protection"	18-Dec-07	28-Dec-07	25049.18	=""	="BALLISTIC AND MECHANICAL TESTING"	12-May-08 04:57 PM	

+="CN80994"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA419Y"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:57 PM	

+="CN80995"	"TEMP ACCOMMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jun-08	23380.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 04:57 PM	

+="CN81001"	"MBITR REAPIRS  - M/E DEC 2007 THALES AUSTRALIA REF# TWS08.002  DATED 19 DEC 07"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	04-Feb-08	17-Feb-08	22419.98	=""	="THALES AUSTRALIA"	12-May-08 04:58 PM	

+="CN81006"	"Provision of 6 x GPS 500W Upgrades"	="Defence Materiel Organisation"	12-May-08	="Location and navigation systems and components"	26-Feb-08	31-May-08	27572.00	=""	="AIRFLITE PTY LTD"	12-May-08 04:58 PM	

+="CN81012"	"Ford Futura Wagon Qty 1 ( WM)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	07-Apr-08	29-Aug-08	25310.31	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:59 PM	

+="CN81013"	"TECHNICAL AID AGREEMENT FOR RAN MK31 AFCS"	="Department of Defence"	12-May-08	="Aircraft master control systems"	05-Feb-08	26-Aug-08	26195.37	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 04:59 PM	

+="CN81027"	"TASK FOS3 202 for RFELATS Upgrade plan Option 4"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	31-Mar-08	25241.08	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 04:59 PM	

+="CN81036"	"Design Services for 37 McNicholl St Rockingham"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-May-08	21965.90	=""	="GHD PTY LTD"	12-May-08 05:00 PM	

+="CN81042"	"PRINTING OF DMO ACQUISITION AND SUSTAINMENT MANUAL"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Feb-08	30-Jun-08	20373.10	=""	="PARAGON PRINTERS"	12-May-08 05:00 PM	

+="CN81043"	"Maintenance Support to the Flight Test program"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81051"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	08-Apr-08	30-Jun-08	27668.87	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:01 PM	

+="CN81052"	"REPAIR OF AILERON RH NSN 013833284 SDSS PO#: OA42XV"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81053"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	05-May-08	28279.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:01 PM	

+="CN81056"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42XX"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81062"	"NGEOSPO Operations Management Services - Patrick N"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Feb-08	30-Apr-08	22750.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 05:01 PM	

+="CN81067"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	19-May-08	29022.40	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 05:01 PM	

+="CN81068"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA42XX"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81071"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	23713.85	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:01 PM	

+="CN81072"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA41A1"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81080"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA42ZH"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81084"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42Y0"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81088"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42XZ"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81092"	"Preventative Maintenance Agreement"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Feb-08	29-Apr-08	23525.70	=""	="MUNTERS PTY LTD"	12-May-08 05:02 PM	

+="CN81096"	"REPAIR OF AILERON RH NSN 012133876 SDSS PO#: OA42Y1"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81100"	"REPAIR OF AILERON RH NSN 012133876 SDSS PO#: OA42Y2"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81111"	"Reinstallation of Halon 1301 System HMAS DARWIN"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-May-08	22542.00	=""	="THALES AUSTRALIA"	12-May-08 05:03 PM	

+="CN81114"	"DTS No. 15 NROC Remote Control Terminal (RCT) Equipment breakout"	="Department of Defence"	12-May-08	="Electrical components"	26-Nov-07	28-Feb-08	20137.55	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:03 PM	

+="CN81131"	"MODIFICATION OF 75SQN LIFE SUPPORT FACILITIES IN SUPPORT OF JHMCS INTRODUCTION"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	30-Jun-08	22000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:04 PM	

+="CN81159"	"Indirect Fire/Forward Air Controller (IFACT) for the Singleton WTSS Facility."	="Department of Defence"	12-May-08	="Project management"	26-Nov-07	28-Mar-08	22254.97	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:05 PM	

+="CN81168"	"Condition Appraisal of Contracted Facilities RAAF"	="Defence Materiel Organisation"	12-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	31-Mar-08	29084.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:05 PM	

+="CN81195"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	26-Nov-07	22-Mar-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81210"	"TSWT model construction"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:07 PM	

+="CN81220"	"FLAP SIDE CARRIAGE LH"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	19-Dec-07	20-Nov-08	21446.43	=""	="BLUE AEROSPACE LLC"	12-May-08 05:08 PM	

+="CN81231"	"PN 939195-101, LH Wing Rib BL65 Lower Cap"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	06-May-08	29278.70	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:08 PM	

+="CN81236"	"3 x Dell 2950 Rack-mount. Each Dual Core, 8* 75G R RAM, Gig NIC."	="Defence Materiel Organisation"	12-May-08	="Information Technology Broadcasting and Telecommunications"	18-Feb-08	31-Mar-08	29700.00	=""	="ASG GROUP LIMITED"	12-May-08 05:08 PM	

+="CN81256"	"EMC32 Immunity Software Application"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Feb-08	14-Apr-08	25388.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	12-May-08 05:09 PM	

+="CN81261"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	19-Dec-07	23-Apr-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:10 PM	

+="CN81265"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	19-Dec-07	23-Apr-08	20736.78	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:10 PM	

+="CN81267"	"POC: Christian Hanna Contact No: 02 6265 0140"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	23-Nov-07	30-Nov-07	29997.00	=""	="JIM HENDRICKSON & ASSOCIATES PTY LT"	12-May-08 05:10 PM	

+="CN81281"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Jan-08	30-Mar-08	22058.35	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:10 PM	

+="CN81287"	"TS4113-4 HMAS ARUNTA GPS TEMPORARY UPGRADE"	="Department of Defence"	12-May-08	="Military watercraft"	23-Jan-08	30-Jun-08	28217.89	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:11 PM	

+="CN81294"	"SUPPLY OF PLASMA POWDER"	="Department of Defence"	12-May-08	="Aircraft equipment"	26-Nov-07	12-Dec-07	20578.25	=""	="SULZER METCO AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81310"	"CORRECTIVE MAINTENANCE TO DARWIN FSR DRIVETRAIN"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	18-Feb-08	29-Feb-08	24001.40	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:12 PM	

+="CN81322"	"DEVIATION FOR THE INSTALLATION OF GENSTAR MONITORS"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	18-Feb-08	30-Apr-08	22403.89	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:12 PM	

+="CN81339"	"PSP to resolve PIF Lotus Notes issues"	="Department of Defence"	12-May-08	="Satellites"	22-Jan-08	30-Apr-08	27500.00	=""	="WYS GROUP PTY LTD"	12-May-08 05:13 PM	

+="CN81350"	"Use of Exisitng ASP Contract.- ECP for Invest into RAS Rig Failure"	="Defence Materiel Organisation"	12-May-08	="Fuels"	21-Feb-08	11-Apr-08	25179.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:14 PM	

+="CN81360"	"Conduct In-Water Hull Survey - HMAS WEWAK"	="Department of Defence"	12-May-08	="Manufacturing support services"	22-Jan-08	30-Jun-08	25512.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:14 PM	

+="CN81372"	"Nulka EMC Lite Modification Train at Stirling"	="Department of Defence"	12-May-08	="Ammunition"	22-Jan-08	30-Jun-08	21186.36	=""	="THALES AUSTRALIA"	12-May-08 05:15 PM	

+="CN81382"	"Reomove and replace Laundry Exhaust Fan 1-154-1"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	12-Dec-07	28668.97	=""	="THALES AUSTRALIA"	12-May-08 05:16 PM	

+="CN81395"	"6V Tactical Light System"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	22-Feb-08	05-Mar-08	22105.18	=""	="LASER PRODUCTS"	12-May-08 05:16 PM	

+="CN81399"	"Use of Exisitng ASP Contract. ECP RH LAN Installation"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Apr-08	20793.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:17 PM	

+="CN81405"	"Use of Exisitng ASP Contract. Main Engine Fuel Filters"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	25-Jan-08	15-Feb-08	23063.04	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:17 PM	

+="CN81407"	"4516.27 CONDUCT ELECTRICAL SURVEY OF HMAS WARRAMUNGA & OPENING AND CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Apr-08	24443.98	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 05:17 PM	

+="CN81408"	"TS5053ADS-4 MINI TYPHOON SURFACE COMBATANT FORCE PROTECTION UPGRADE FOR AN ANZAC CLASS SHIP"	="Department of Defence"	12-May-08	="Military watercraft"	25-Jan-08	30-Apr-08	23650.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81412"	"Split Bush (Two Halves)"	="Department of Defence"	12-May-08	="Aircraft"	27-Nov-07	30-Jan-08	23793.00	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	12-May-08 05:17 PM	

+="CN81432"	"Support to Project"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	29-Jan-08	29-Feb-08	20072.08	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:18 PM	

+="CN81460"	"MS Outlook Training"	="Department of Defence"	12-May-08	="Office supplies"	27-Nov-07	27-Nov-07	20988.00	=""	="PRIORITY MANAGEMENT SYSTEMS RETAIL"	12-May-08 05:20 PM	

+="CN81480"	"SHIP EQUIPEMENT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	22440.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:21 PM	

+="CN81489"	"  LEASE HIRE, MAINTENANCE AND PETROL  "	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Jan-08	31-Dec-09	21627.81	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:22 PM	

+="CN81490"	"Use of Exisitng ASP Contract.- ECP for Modificatio to Bow Thruster Access ladder"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	20-Feb-08	23-Jun-08	20790.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:22 PM	

+="CN81493"	"Shared Canister Budget FY08"	="Department of Defence"	12-May-08	="Missile subsystems"	24-Jan-08	31-Jan-08	20090.30	=""	="NATO SEASPARROW SURFACE MISSILE"	12-May-08 05:23 PM	

+="CN81505"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	25-Jan-08	30-Jun-08	24612.50	=""	="PHILLIPS FOX SYDNEY"	12-May-08 05:23 PM	

+="CN81518"	"Microscope, Optical, Widefield & Accessories"	="Defence Materiel Organisation"	12-May-08	="Packaging materials"	21-Apr-08	19-May-08	23531.71	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:25 PM	

+="CN81520"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Jan-08	09-May-08	26756.24	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:25 PM	

+="CN81526"	"Microscope, Optical"	="Defence Materiel Organisation"	12-May-08	="Packaging materials"	21-Apr-08	04-Jun-08	22506.00	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:25 PM	

+="CN81542"	"Provide Human Resources Investigating This PO Replaces 4500611384."	="Defence Materiel Organisation"	12-May-08	="Human resources services"	21-Apr-08	30-Jun-88	20000.00	=""	="CGF PHOENIX PTY LIMITED"	12-May-08 05:26 PM	

+="CN81544"	"DATABASE ROLLOUT"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Apr-08	20000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 05:27 PM	

+="CN81548"	"Map Data Sets"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Apr-08	30-Jun-08	21901.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 05:27 PM	

+="CN81559"	"Building Work"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Jun-08	22242.00	=""	="DATA CAT COMMUNICATIONS"	12-May-08 05:28 PM	

+="CN81572"	"Professional Fees"	="Department of Defence"	12-May-08	="Legal services"	13-Dec-07	30-Jun-08	23760.00	=""	="CLAYTON UTZ"	12-May-08 05:29 PM	

+="CN81571"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	25364.05	=""	="KAZ GROUP PTY LTD"	12-May-08 05:29 PM	

+="CN81577"	"White spirits."	="Defence Materiel Organisation"	12-May-08	="Solvents"	18-Apr-08	01-May-08	28311.36	=""	="CHALLENGE CHEMICALS"	12-May-08 05:29 PM	

+="CN81582"	"Use of Exisitng ASP Contract.- Filtrex Elements and Gaskets"	="Department of Defence"	12-May-08	="Gaskets and seals"	13-Dec-07	08-Feb-08	21633.55	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:29 PM	

+="CN81590"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	29-Jan-08	23508.68	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:30 PM	

+="CN81619"	"POWER SUPPLY"	="Department of Defence"	12-May-08	="Aircraft"	13-Dec-07	20-Jun-08	20871.69	=""	="ROCKWELL COLLINS INC."	12-May-08 05:33 PM	

+="CN81628"	"SCDR Software Development Plan for the EDMS Implementation Plan"	="Department of Defence"	12-May-08	="Environmental management"	17-Dec-07	30-Apr-08	29009.20	=""	="QINETIQ (INTERNATIONAL) PTY LTD"	12-May-08 05:34 PM	

+="CN81629"	"Interim Upgrade to Prototype SCDR and dispatch and return of Prototype Server"	="Department of Defence"	12-May-08	="Environmental management"	17-Dec-07	30-Apr-08	20040.85	=""	="QINETIQ (INTERNATIONAL) PTY LTD"	12-May-08 05:34 PM	

+="CN81657"	"VENUE HIRE & AUDIO VISUAL EQUIPMENT HIRE FOR CANBERRA BPR"	="Department of Defence"	12-May-08	="Audio and visual presentation and composing equipment"	17-Dec-07	30-Dec-07	27413.21	=""	="NATIONAL CONVENTION CENTRE"	12-May-08 05:38 PM	

+="CN81661"	"Survey Inspection & Refurbishment of ECBA"	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	14-Dec-07	28-Feb-08	28321.49	=""	="HELLWEG INTERNATIONAL"	12-May-08 05:38 PM	

+="CN81665"	"PART 1E PART 1 - CH-47 LASER SCANNING"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Dec-07	30-Mar-08	23697.36	=""	="GKN AEROSPACE ENGINEERING SERVICES"	12-May-08 05:39 PM	

+="CN81683"	"Lease of Vehicle under Agency Agreement"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	31-Dec-09	23530.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:41 PM	

+="CN81687"	"Project Phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Jan-08	20319.16	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:42 PM	

+="CN81696"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	07-Dec-07	29-Feb-08	29624.11	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:43 PM	

+="CN81710"	"AIRCRAFT ARRESTING SYSTEMS"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Dec-07	07-Apr-08	20091.58	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 05:45 PM	

+="CN81712"	"Photocopiers"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	10-Dec-07	18-Jan-08	22721.60	=""	="CANON AUSTRALIA PTY LTD"	12-May-08 05:45 PM	

+="CN81723"	"HMAS Darwin URDEFs 4099/07 and 4100/07 Replace 4 Actuators and Controllers"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	10-Dec-07	20209.20	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	12-May-08 05:47 PM	

+="CN81728"	"NMI to provide Data Processing and System Operatio Comparison Systems."	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	30-Jun-08	24716.38	=""	="NATIONAL MEASUREMENT INSTITUTE"	12-May-08 05:47 PM	

+="CN81735"	"market research services - LEA client satisfaction as per Sweeney research quote no:  16578"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	31-Mar-08	21450.00	=""	="SWEENEY RESEARCH PTY LTD"	12-May-08 05:48 PM	

+="CN81740"	"DSTO Link Equipment spares supported under CMD&V."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	07-Dec-07	20-Dec-07	28223.80	=""	="EM SOLUTIONS"	12-May-08 05:49 PM	

+="CN81743"	"Psychometric Assessment Services for LAP Trainee Project Managers"	="Department of Defence"	12-May-08	="Personnel recruitment"	07-Dec-07	14-Dec-07	25850.00	=""	="TALENT2 PTY LTD"	12-May-08 05:49 PM	

+="CN81754"	"Power Supply Assemblies"	="Department of Defence"	12-May-08	="Power sources"	12-Dec-07	14-Apr-08	28123.22	=""	="ORDNANCE TECHNOLOGY SERVICE INC."	12-May-08 05:51 PM	

+="CN81761"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	26-Feb-08	26-Feb-08	23077.05	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81762"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	28-Mar-08	28-Mar-08	25256.58	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:33 PM	

+="CN81763"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	22-Apr-08	22-Apr-08	25398.17	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:33 PM	

+="CN81776"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	01-Mar-08	01-Mar-08	26807.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81779"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Apr-08	17-Apr-08	28286.95	=""	="Mastersoft International"	12-May-08 07:35 PM	

+="CN81780"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Mar-08	17-Mar-08	23770.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81789"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	26-Feb-08	26-Feb-08	23151.24	=""	="Telstra"	12-May-08 07:36 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val300000to999999999.xls
@@ -1,1 +1,661 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75485"	"Enterprise Project Management Solution"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Feb-08	30-Jun-08	519981.76	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 08:32 AM	

+="CN75560"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.THANGARA 09."	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	650001.00	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75561"	"PROVISION OF MEDICAL SERVICES HSF EDN (DR.WHEELER)"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	650001.00	=""	="NASANSB"	10-May-08 08:40 AM	

+="CN75573"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	397017.19	=""	="E S D R ELECTRONICS PTY LTD"	10-May-08 08:41 AM	

+="CN75596"	"STAGE 4 REGIONAL NAD"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	04-Feb-08	30-Jun-08	1193190.00	=""	="ASSET SERVICES"	10-May-08 08:43 AM	

+="CN75632"	"Refurbish the Albury Wodonga Health Centre LB101 RV0563"	="Department of Defence"	10-May-08	="Project management"	08-Feb-08	30-Jun-09	825000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	10-May-08 08:47 AM	

+="CN75665"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	31-Jul-08	2750000.00	=""	="DHA - CENTRAL OFFICE"	10-May-08 08:50 AM	

+="CN75673"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	776000.01	=""	="KPMG"	10-May-08 08:51 AM	

+="CN75686"	"CTD Millimetere Wave Digital Receiver"	="Department of Defence"	10-May-08	="Professional engineering services"	07-Feb-08	09-Nov-09	2489300.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:52 AM	

+="CN75690"	"GP SERVICES - DEFENCE"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	31-Mar-11	872085.12	=""	="DR JAMES T PROVAN"	10-May-08 08:52 AM	

+="CN75698"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	06-Feb-08	31-Dec-10	306436.37	=""	="GLENDA RAE WEEDON"	10-May-08 08:53 AM	

+="CN75701"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	06-Feb-08	31-Dec-10	300960.00	=""	="VERA GRIFFIN"	10-May-08 08:53 AM	

+="CN75704"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	07-Feb-08	31-Dec-10	519183.37	=""	="DR DAVID REES"	10-May-08 08:54 AM	

+="CN75715"	"DeBI Integration Team for MLFF Interfaces"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	08-Feb-08	29-Aug-08	894543.10	=""	="IBM AUSTRALIA LTD"	10-May-08 08:55 AM	

+="CN75719"	"GP SERVICES - RAAF"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	31-Mar-11	907892.70	=""	="NGAPOLI BEACH PTY LTD"	10-May-08 08:55 AM	

+="CN75721"	"Defence Contact Centre Project"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	20-Feb-08	421784.00	=""	="CLEAR LEAD PTY LTD"	10-May-08 08:55 AM	

+="CN75743"	"OFF ROAD RUNNING CIRCUIT CONSTRUCTION"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Feb-08	30-Jun-08	333170.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75796"	"ASSET ROAD MAINTENANCE SWBTA"	="Department of Defence"	10-May-08	="Roads and landscape"	22-Feb-08	30-Jun-08	1950000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:03 AM	

+="CN75817"	"ASi Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	389378.99	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:05 AM	

+="CN75844"	"PRODUCT SUPPORT AND MAINTENANCE RENEWAL"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Mar-08	537039.29	=""	="COGNOS PTY LTD"	10-May-08 09:07 AM	

+="CN75845"	"DEVELOPMENT OF REGIONAL BUSHFIRE MANAGEMENT PLANS"	="Department of Defence"	10-May-08	="Fire protection"	28-Feb-08	30-Jun-08	327000.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:07 AM	

+="CN75883"	"CONTACT MATT FAULKNER 08 8935 2705"	="Department of Defence"	10-May-08	="Environmental control systems"	28-Feb-08	30-Jun-08	397232.00	=""	="ASSET SERVICES"	10-May-08 09:11 AM	

+="CN75908"	"Provide support accommodation in support of the ADF GAP Year at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="General building construction"	26-Feb-08	30-Jun-08	500000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 09:13 AM	

+="CN75910"	"CONTACT ADAM TAYLOR 08 8935 5161"	="Department of Defence"	10-May-08	="Environmental control systems"	26-Feb-08	30-Jun-08	359220.07	=""	="ASSET SERVICES"	10-May-08 09:14 AM	

+="CN75953"	"Unplanned Asbestos Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	330000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 09:18 AM	

+="CN75969"	"PROVISION OF SERVICES-RAAF RICHMOND & WILLIAMTOWN PROJECT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	8156752.41	=""	="PIONEER ROAD SERVICE"	10-May-08 09:19 AM	

+="CN75982"	"Peng Bld 17 Non Single LEAP LIA refurbishment"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Feb-08	30-Jun-08	2151203.52	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 09:21 AM	

+="CN75990"	"Contract 0708-206 under Standing Offer 0506-271-29"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	22-Nov-07	30-Jun-08	566280.00	=""	="YTEK PTY LTD"	10-May-08 09:58 AM	

+="CN75998"	"AIR CHTR OP ASTUTE"	="Department of Defence"	10-May-08	="Aircraft"	22-Nov-07	30-Nov-07	315065.20	=""	="HEAVYLIFT CARGO AIRLINES"	10-May-08 09:58 AM	

+="CN76000"	"ASdditional works to support refurbishment  and works on Caisson No 2"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	22-Nov-07	30-Jun-08	617301.30	=""	="THALES AUSTRALIA"	10-May-08 09:59 AM	

+="CN76034"	"HOLSWORTHY: SPECIAL FORCES TRAINING FACILITY ZAKNIC PAGANO-CONSTRUCTION OF CT400 SHED AND SLAB"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	450731.09	=""	="D&B ZAKNIC CONSTRUCTIONS"	10-May-08 10:00 AM	

+="CN76054"	"Environmental Audits"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	31-Jan-08	754688.00	=""	="HITACHI DATA SYSTEMS"	10-May-08 10:01 AM	

+="CN76059"	"Accomodation works Campbell Park & Brindabella Par"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Nov-07	30-Jun-08	8492573.98	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76065"	"Project Management fees"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Nov-07	30-Jun-08	707651.80	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76071"	"Upgrade Fire Detection"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	28-May-07	30-Jun-08	640795.71	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:02 AM	

+="CN76097"	"BORIS Sustainment"	="Department of Defence"	10-May-08	="Public administration and finance services"	14-Apr-08	31-Dec-08	1862641.61	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:04 AM	

+="CN76101"	"ROMAN UPGRADE IMPLIMENTATION"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	21-Apr-08	31-Oct-08	1731613.40	=""	="CSC AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76107"	"IIE SPATIAL DATA REMEDIATION"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	1720565.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 10:04 AM	

+="CN76109"	"Replacement external security fence."	="Department of Defence"	10-May-08	="Horticulture"	02-May-07	30-Jun-08	446658.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:04 AM	

+="CN76116"	"Critical Jobs - Media"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	825781.95	=""	="HMA BLAZE PTY LIMITED"	10-May-08 10:05 AM	

+="CN76122"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	12-Dec-07	582714.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:05 AM	

+="CN76150"	"IBM server equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	25-Jan-08	325131.40	=""	="IBM AUSTRALIA LIMITED"	10-May-08 10:07 AM	

+="CN76151"	"UPGRADE FIRE SECURITY SYSTEMS"	="Department of Defence"	10-May-08	="Fire prevention"	19-Jun-07	30-Jun-08	837194.73	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:07 AM	

+="CN76156"	"FEES-JEZZINE BARRACKS-DESIGN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Nov-07	30-Jun-09	658077.20	=""	="LAMBERT & REHBEIN PTY LTD"	10-May-08 10:07 AM	

+="CN76157"	"ENCOGGERA REDEVELOPMENT STAGE 1."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	30-Jun-08	425387.60	=""	="JOHN HOLLAND PTYLTD NORTHERN REGION"	10-May-08 10:07 AM	

+="CN76158"	"ARES careers day media schedules"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	352919.20	=""	="HMA BLAZE PTY LIMITED"	10-May-08 10:07 AM	

+="CN76183"	"BUILDEV PROPERTIES PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4789400.00	=""	="BUILDEV PROPERTIES PTY LTD"	10-May-08 10:09 AM	

+="CN76185"	"AUSTRALIAN CUSTOMS SERVICE"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	749043.11	=""	="AUSTRALIAN CUSTOMS SERVICE"	10-May-08 10:09 AM	

+="CN76205"	"RAAF WILLIAMTOWN - AIRCRAFT CLEAN WATER RINSE FACI CONSTRUCTION OF AN AIRCRAFT WATER FACILITY."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4993802.00	=""	="CORDUKES"	10-May-08 10:10 AM	

+="CN76210"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	11-Jan-08	30-Jun-08	330259.20	=""	="SERCO AUSTRALIA PTY LTD"	10-May-08 10:10 AM	

+="CN76216"	"CADETNET ENHANCEMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	300000.00	=""	="DIALOG INFORMATION TECHNOLOGY"	10-May-08 10:10 AM	

+="CN76234"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	350102.58	=""	="ROSS HUMAN DIRECTIONS"	10-May-08 10:11 AM	

+="CN76241"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-10	1152250.00	=""	="SYNERCON MANAGEMENT CONSULTING PTY"	10-May-08 10:12 AM	

+="CN76270"	"ASBESTOS REMEDIATION"	="Department of Defence"	10-May-08	="Environmental control systems"	21-Apr-08	30-Jun-08	877500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:13 AM	

+="CN76294"	"Provision of Aeronautical Publications 01.06.2007- 31.07.2008"	="Department of Defence"	10-May-08	="Published Products"	16-Aug-07	31-Jul-08	370000.00	=""	="AIRSERVICES AUSTRALIA"	10-May-08 10:14 AM	

+="CN76297"	"SUPPLY OF SERIALS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	23-Nov-07	30-Jun-08	499313.20	=""	="EBSCO AUSTRALIA SUBSCRIPTON"	10-May-08 10:15 AM	

+="CN76345"	"QANTAS 02-245988 OP CATALYST"	="Department of Defence"	10-May-08	="Aircraft"	08-Nov-07	30-Jan-08	617102.56	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76366"	"REPAIRS TO THE ROOF OF JUNIOR SAILORS GALLEY"	="Department of Defence"	10-May-08	="General building construction"	28-Aug-07	30-Jun-08	386593.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:19 AM	

+="CN76402"	"IN-FLIGHT CATERING"	="Department of Defence"	10-May-08	="Food and beverage industries"	12-Nov-07	30-Jun-08	440000.00	=""	="ALPHA FLIGHT SERVICES PTY LTD"	10-May-08 10:21 AM	

+="CN76410"	"HOLSWORTHY : 171 SQUADRON RELOCATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Apr-08	30-Jun-09	378007.30	=""	="HANSEN YUNCKEN PTY LTD"	10-May-08 10:21 AM	

+="CN76421"	"QANTAS ACCOUNT JUL07/NOV07"	="Department of Defence"	10-May-08	="Aircraft"	10-Jan-08	19-Jan-08	442207.38	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:22 AM	

+="CN76435"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-09	351780.00	=""	="INFORMATION IDENTITY PTY LTD"	10-May-08 10:23 AM	

+="CN76449"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management support services"	24-Jul-07	31-Jan-08	322135.05	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:23 AM	

+="CN76450"	"qantas flights op catalyst Nov 07"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Jun-08	480199.37	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:24 AM	

+="CN76455"	"IMMED/URG REACT MAINTENANCE ACT/SNSW FY07/08"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	415348.65	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:24 AM	

+="CN76459"	"Routine GEW Reactive Maintenance Western Region"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Jun-08	387742.82	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 10:24 AM	

+="CN76465"	"Comms Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Mar-07	17-Jul-07	600862.90	=""	="OPTUS BILLING SERVICES PTY LTD"	10-May-08 10:24 AM	

+="CN76484"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	31-Oct-10	331200.00	=""	="AUSTRALIAN RECEIVABLES LTD"	10-May-08 10:25 AM	

+="CN76490"	"AIR CHTR OP PNG ASSIST"	="Department of Defence"	10-May-08	="Aircraft"	29-Nov-07	31-Dec-07	440000.00	=""	="HEAVYLIFT CARGO AIRLINES"	10-May-08 10:26 AM	

+="CN76510-A2"	" Professional services "	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	471257.79	=""	="CONQUEST ENTERPRISE"	10-May-08 10:27 AM	

+="CN76520"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	30-Jun-08	321716.00	=""	="DEACONS"	10-May-08 10:28 AM	

+="CN76587"	"02-22408130NOV07 LINE 6983 - 7337"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	963187.24	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76596"	"RAAF TINDAL AEW and C OPERATIONS FACILITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	4950000.00	=""	="LAING O'ROURKE (BMC) LIMITED"	10-May-08 10:32 AM	

+="CN76638"	"INSTALLATION OF FIBRE OPTIC CONDUIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Apr-08	496610.40	=""	="VISIONSTREAM PTY LTD"	10-May-08 10:35 AM	

+="CN76664"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	26-Jun-09	313500.00	=""	="UNIVERSITY OF SYDNEY"	10-May-08 10:37 AM	

+="CN76700"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Nov-08	1770000.00	=""	="KPMG AUSTRALIA"	10-May-08 10:39 AM	

+="CN76702"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Nov-08	994000.00	=""	="ERNST & YOUNG"	10-May-08 10:39 AM	

+="CN76703"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	24-Jan-08	320000.00	=""	="MINTER ELLISON"	10-May-08 10:39 AM	

+="CN76710"	"Flight Test Aircrew Training"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	03-Dec-07	31-Dec-08	1026890.59	=""	="QINETIQ LTD"	10-May-08 10:39 AM	

+="CN76777"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-10	750000.00	=""	="CASHS AUSTRALIA PTY LTD"	10-May-08 10:43 AM	

+="CN76809"	"RAAF BASE AMBERLEY ENGINEERING SERVICES PURCHASE OF ENERGEX ASSETS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	653549.14	=""	="AGL SALES (QLD)"	10-May-08 10:45 AM	

+="CN76825"	"S4945, WR 300044538, 300044539. HMAS Watson minor 5"	="Department of Defence"	10-May-08	="Fire prevention"	30-Nov-07	30-Jun-08	332021.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:46 AM	

+="CN76856"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	474790.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 10:48 AM	

+="CN76862"	"AIR CHTR OP ASTUTE ROCL"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	31-Mar-08	809700.00	=""	="STRATEGIC AVIATION - USD"	10-May-08 10:48 AM	

+="CN76884"	"POC: Mark McClure Contact: 02 6265 0420"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	20-Nov-10	1240305.00	=""	="RED HAT ASIA-PACIFIC PTY LTD"	10-May-08 10:49 AM	

+="CN76900"	"SN02730 - PM Fees - Install 4 additional workstati"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	9382336.57	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:50 AM	

+="CN76916"	"Reinstate safety fence & provide a sealed surface and new carpark"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	341819.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:51 AM	

+="CN76967"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	11-Dec-07	15-Dec-07	475000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:54 AM	

+="CN76971"	"02-224081 31OCT07 LINE ITEMS 6666-6982"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Oct-07	30-Jun-08	837709.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:54 AM	

+="CN76988"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	22-Dec-08	330000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 11:41 AM	

+="CN76994"	"Asbestos Remeditaion"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Mar-08	404614.10	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:41 AM	

+="CN76996"	"Senior Medical Officer FY 07/08 - FY10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	992990.22	=""	="DARRELL J DUNCAN"	10-May-08 11:41 AM	

+="CN77006"	"hangar Works"	="Department of Defence"	10-May-08	="Transportation services equipment"	16-Jan-08	30-Jun-08	1068259.50	=""	="PA & CI MARTIN PTY LTD"	10-May-08 11:42 AM	

+="CN77008"	"Project Management Fees"	="Department of Defence"	10-May-08	="Transportation services equipment"	16-Jan-08	30-Jun-08	700590.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 11:42 AM	

+="CN77010"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	14-May-08	534160.00	=""	="ERNST & YOUNG CONSULTING"	10-May-08 11:42 AM	

+="CN77023"	"Standing Offer Number:  "SON97" STANDING ID:  2545"	="Department of Defence"	10-May-08	="Master control systems"	30-Jan-08	31-Jul-09	808000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 11:43 AM	

+="CN77036"	"Director Medical Services"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	855407.24	=""	="GEORGE BLACKWOOD"	10-May-08 11:43 AM	

+="CN77041"	"PROVISION OF MEDICAL SERVICES KESWICK BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	352000.00	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77043"	"PROVISION OF MEDICAL SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	348000.40	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77064"	"NQ1744 - Regional ESD Water Efficiency Project Imp"	="Department of Defence"	10-May-08	="Environmental management"	16-Jan-08	30-Jun-08	400000.00	=""	="SPOTLESS"	10-May-08 11:45 AM	

+="CN77074"	"Demountables"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	16-Jan-08	30-Jun-08	598125.00	=""	="EMAC SYSTEMS PTY LTD"	10-May-08 11:46 AM	

+="CN77077"	"MISSION SPECIFIC TRAINING SUPPORT"	="Department of Defence"	10-May-08	="Education and Training Services"	01-Feb-08	30-Jun-08	440000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 11:46 AM	

+="CN77078"	"MO-SMO LMA FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	803963.16	=""	="POWEL PROCIUK"	10-May-08 11:46 AM	

+="CN77081"	"Installation of Communications Infrastucture"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	04-Feb-08	20-Feb-08	334415.04	=""	="CLEAR LEAD PTY LTD"	10-May-08 11:46 AM	

+="CN77083"	"Training Area Road Repairs"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	567009.30	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:46 AM	

+="CN77087"	"Medical Officer FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	16-Jan-08	31-Dec-10	1282732.00	=""	="J STEPHENSON"	10-May-08 11:46 AM	

+="CN77096"	"WATSONIA: DEFENCE FORCE SCHOOL OF SIGNALS(DFSS). DSC-SKM."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-10	3396800.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	10-May-08 11:47 AM	

+="CN77156"	"POC: CHRIS MCCOLL CONTACT: 02 626 60001"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	30-Jun-08	355621.65	=""	="BOEING AUSTRALIA LTD"	10-May-08 11:51 AM	

+="CN77204"	"ADFA 62 & 63 LIA  CADET UPGRADE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Jan-08	30-Jun-08	4105530.01	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:54 AM	

+="CN77212"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	21-Jan-08	366432.00	=""	="ORACLE CORPORATION AUSTRALIA"	10-May-08 11:55 AM	

+="CN77225"	"MEDICAL SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	31-Dec-10	1183200.00	=""	="MICHAEL J STACEY"	10-May-08 11:56 AM	

+="CN77231"	"MEDICAL SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	31-Dec-10	1183200.00	=""	="MONEY"	10-May-08 11:56 AM	

+="CN77237"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Jun-08	320000.00	=""	="HAYS SPECIALIST RECRUITMENT"	10-May-08 11:56 AM	

+="CN77243"	"ENGINEER SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-09	5064690.00	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 11:57 AM	

+="CN77244"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	23-Jan-08	01-Feb-11	346964.64	=""	="KNEL GROUP PTY LTD"	10-May-08 11:57 AM	

+="CN77266"	"MEDICAL & DENTAL SERVICES CMC CDC"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	1961015.11	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77267"	"CONTACT: GREG REARDON 08 8935 4244."	="Department of Defence"	10-May-08	="Environmental Services"	21-Jan-08	30-Jun-08	847000.00	=""	="ASSET SERVICES"	10-May-08 11:58 AM	

+="CN77270"	"MEDICAL SERVICES RBMC"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	4818320.17	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77274"	"MEDICAL SERVICES MANUNDA WARD"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	3855295.40	=""	="NT MEDIC PTY LTD"	10-May-08 11:58 AM	

+="CN77278"	"MEDICAL & DENTAL SERVICES 1 BDE"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	11419626.89	=""	="NT MEDIC PTY LTD"	10-May-08 11:59 AM	

+="CN77279"	"Removal of unsued, unsafe & unapproved facilities at Fort Wallace"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	300000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:59 AM	

+="CN77288"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Utilities"	23-Jan-08	30-Jun-08	1700000.00	=""	="ACTEWAGL RETAIL LTD"	10-May-08 11:59 AM	

+="CN77290"	"AIR 8000 PHASE 3-HEAVY AIR LIFT(HAL) FACILITIES DESIGN SERVICES CONSULTANT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	334635.98	=""	="LAMBERT REHBEIN ACT PTY LTD"	10-May-08 11:59 AM	

+="CN77314"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	17-Jan-08	17-Jan-08	9799999.98	=""	="POWER AND WATER AUTHORITY"	10-May-08 12:01 PM	

+="CN77324"	"Medical Officer 2ATHS FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	1052808.90	=""	="VINCENT DUFFY & ASSOCIATES PTY LTD"	10-May-08 12:01 PM	

+="CN77330"	"Senior Dentist  FY 07/08 - FY10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	968165.46	=""	="DAVID M HARMATA"	10-May-08 12:02 PM	

+="CN77336"	"Aviation/GP Trainer FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	31-Dec-10	987008.35	=""	="G ABRAHAM PTY LTD"	10-May-08 12:02 PM	

+="CN77338"	"HEALTH SERVICE  FY 07/08 - 09/10"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	17-Jan-08	30-Jun-10	102553935.00	=""	="CHANDLER MACLEOD GROUP LTD"	10-May-08 12:02 PM	

+="CN77339"	"Director Medical Services FY 07/08 - 10/11"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	23-Jan-08	31-Dec-10	897280.32	=""	="CHIASMA HOLDINGS PTY LTD"	10-May-08 12:02 PM	

+="CN77340"	"Security Clearance Costs"	="Department of Defence"	10-May-08	="Security surveillance and detection"	17-Jan-08	30-Jun-08	435285.90	=""	="CAREERS MULTILIST LIMITED"	10-May-08 12:02 PM	

+="CN77353"	"SA2480 - Asbestos Removal - DSTO EDN Technical Authority: Fess Parker"	="Department of Defence"	10-May-08	="Environmental management"	22-Jan-08	30-Jun-08	361042.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:03 PM	

+="CN77371"	"PHARMACISTS & OTHER"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	1899579.01	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:04 PM	

+="CN77375"	"PHYSIO SERVICES"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	4490530.98	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:04 PM	

+="CN77385"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	15-Apr-08	331860.54	=""	="KPMG"	10-May-08 12:05 PM	

+="CN77394"	"SN02523 - OJAG & AMC FITOUT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	2730200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:06 PM	

+="CN77403"	"Desktop PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	01-May-08	7641624.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77409"	"Professional Service and Tech Support"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	31-Jan-08	1308201.47	=""	="AVAYA AUSTRALIA PTY LTD"	10-May-08 12:06 PM	

+="CN77410"	"ENHANCED LANDFORCE-STAGE 1 GHD2 PMCA PACKAGE 2-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Jan-08	30-Jun-08	2125574.00	=""	="GHD PTY LTD"	10-May-08 12:07 PM	

+="CN77415"	"MEDICAL SERVICES 321"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	2963842.39	=""	="NT MEDIC PTY LTD"	10-May-08 12:07 PM	

+="CN77435"	"nt1676 REGIONAL BUSHFIRE RESPONSE"	="Department of Defence"	10-May-08	="Environmental control systems"	09-Jan-08	30-Jun-08	473890.00	=""	="ASSET SERVICES"	10-May-08 12:08 PM	

+="CN77444"	"NQ1721 - Lavarack Bks - CSI NQ - Surge Mess Refurb"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-08	1771601.01	=""	="SPOTLESS"	10-May-08 12:08 PM	

+="CN77446"	"SA2433 Reburbishment of LIA"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	25-Jan-08	30-Jun-08	1843609.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:08 PM	

+="CN77453"	"CTD Contract"	="Department of Defence"	10-May-08	="Military science and research"	25-Jan-08	03-Dec-09	1553200.00	=""	="THALES UNDERWATER SYSTEMS P/L"	10-May-08 12:09 PM	

+="CN77456"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Aug-09	1596512.50	=""	="COGNOS PTY LTD"	10-May-08 12:09 PM	

+="CN77476"	"WR 300076182, S5134. Capital component of Non sing of building 807 HMAS Kuttabul."	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Jan-08	30-Jun-08	357500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:10 PM	

+="CN77490-A1"	"AHS-NQ General Practitioner services"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	31-Dec-10	36649604.22	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 12:11 PM	

+="CN77527"	"CTD Contract"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	29-Jan-08	03-Sep-10	4527600.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	10-May-08 12:13 PM	

+="CN77532"	"ADVERTISING"	="Department of Defence"	10-May-08	="Photographic and recording media"	08-Jan-08	30-Jun-08	385000.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 12:13 PM	

+="CN77539"	"Hardware required for the gateways repair facility for disaster recovery."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	31-Jan-08	348831.84	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	10-May-08 12:14 PM	

+="CN77540"	"25 PERS HIRE (10 X VM'S, 5 X VI'S, 7 X RPS/STM, 3"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	483913.10	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77589"	"DEFENCE FACILITIES TRAINING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-09	1855987.10	=""	="FMEDGE"	10-May-08 12:16 PM	

+="CN77594"	"CONTACT: GEOFF MACKENZIE 08 8935 4619 WR: 150139277"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	24-Jan-08	30-Jun-08	403237.42	=""	="ASSET SERVICES"	10-May-08 12:17 PM	

+="CN77598"	"NQ2015 - Construction of a new Workshop Vehicle Store and Cylone Shelter"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	1080725.00	=""	="SPOTLESS"	10-May-08 12:17 PM	

+="CN77619"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CIVIL/STRUCTURAL DESIGN-DELIVERY PHASE FEES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	1307349.89	=""	="BONACCI GROUP (QLD) PTY LTD"	10-May-08 12:18 PM	

+="CN77620"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	01-Feb-11	968880.00	=""	="AUSTRALASIAN AEROMEDICAL"	10-May-08 12:18 PM	

+="CN77621"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE GCON-SECURITY & COMMUNICATIONS-DELIVERY PHASE SERV"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	405450.77	=""	="GCON SOLUTIONS PTY LTD"	10-May-08 12:18 PM	

+="CN77625"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CONRAD GARGETT(ARCHITECT)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	709872.87	=""	="CONRAD GARGETT ARCHITECTS"	10-May-08 12:18 PM	

+="CN77630"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	30-Jun-08	334999.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 12:19 PM	

+="CN77631"	"Surge Manning for 1 BDE, Robertson Barracks"	="Department of Defence"	10-May-08	="Motor vehicles"	24-Jan-08	31-Mar-08	383703.63	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:19 PM	

+="CN77632"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE MECH/ELEC/FIRE/ACOUSTIC DESIGN SERVICES-DELIVERY P"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-11	1075708.12	=""	="S2F PTY LTD"	10-May-08 12:19 PM	

+="CN77635"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE CONRAD GARGETT(ARCHITECT)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-09	785251.17	=""	="CONRAD GARGETT ARCHITECTS"	10-May-08 12:19 PM	

+="CN77637"	"S5123, WR 300060653. HMAS Watson - Blgd 6 Non sing"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Jan-08	30-Jun-08	812623.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:19 PM	

+="CN77659"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE COST PLANNING/BOQ SERVICES-DELIVERY PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-10	968835.22	=""	="WILDE AND WOOLARD (QLD) PTY LTD"	10-May-08 12:20 PM	

+="CN77671"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 2/20 PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN V"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-11	2218138.10	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:21 PM	

+="CN77672"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	384453.30	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77674"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	29-Nov-07	30-Jun-08	366613.50	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:21 PM	

+="CN77677"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/20 PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN V"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	31-Dec-08	652298.85	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:21 PM	

+="CN77688"	"HQJOC PROJECT-ADI LIMITED(THALES)-DESKTOPS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	2667886.10	=""	="THALES AUSTRALIA"	10-May-08 12:22 PM	

+="CN77695"	""DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/2"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	14-Jan-08	31-Dec-08	912469.46	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:22 PM	

+="CN77704"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	01-Jul-08	332750.00	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 12:23 PM	

+="CN77707"	"DEFENCE HEALTH SERVICES CONTRACT NO:  DHS VIC 1/20"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-08	1474840.62	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:23 PM	

+="CN77709"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	28-Jun-08	300000.01	=""	="DAVID ARNOLD MCCANN"	10-May-08 12:23 PM	

+="CN77717"	"9.4Tesla Fourier Transform Ion Mass Spectrometer"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	10-Jan-08	30-Jun-09	1423643.48	=""	="BRUKER BIOSCIENCES PTY LIMITED"	10-May-08 12:23 PM	

+="CN77723"	"PROVISION OF GENERAL PRACTITIONER SERVICES"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	10-Jan-08	31-Dec-10	748013.05	=""	="DR ANDREW JOHNSTON"	10-May-08 12:24 PM	

+="CN77726"	"ABU DHABI CHANCERY EXTENSION."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-09	447120.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	10-May-08 12:24 PM	

+="CN77730"	"OP OUTREACH - POLICE COMPOUNDS - WARRUWI CMMTY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	361439.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77732"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	386805.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77736"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	404790.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:24 PM	

+="CN77740"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	409223.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:25 PM	

+="CN77742"	"OP OUTREACH"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	11-Dec-07	30-Jun-08	574421.10	=""	="PATTEMORE CONSTRUCTIONS"	10-May-08 12:25 PM	

+="CN77744"	"INTERNAL FIXTURE UPGRADE TO INFRASTRUCTURE UPGRADES TO MURRAY BARRACKS (PNG)"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	854385.00	=""	="LAE PLUMBING SERVICES LIMITED"	10-May-08 12:25 PM	

+="CN77767"	"CRMC PROJECT AND REFORM OF DFR REQUIREMENTS IDENTI IMPLEMENTATION PLAN OF THE NEW DFR AS SPECIFIED I"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Jun-08	19736925.99	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:26 PM	

+="CN77784"	"PROVISION OF REGIONAL PRACTITIONER WORKFORCE IN VI CTORIA - DEFENCE FORCE HEALTH CENTRE MELBOURNE"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	14-Jan-08	30-Jun-11	704685.05	=""	="CLEMENTS RECRUITMENT PTY LTD"	10-May-08 12:27 PM	

+="CN77790"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE HASSELL(ARCHITECT 1)-DELIVERY PHASE SERVICES"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Jan-08	30-Jun-11	1298097.34	=""	="HASSELL PTY LTD"	10-May-08 12:27 PM	

+="CN77798"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-10	740000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 12:28 PM	

+="CN77800"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES PM/CA AMBERLEY, C-17 INFRASTRUCTURE."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-10	1402500.00	=""	="CONNELL WAGNER PTY LTD"	10-May-08 12:28 PM	

+="CN77811"	"WR 300074542, S5113, FBE Hammer Head Crane - Works Deterioration"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Dec-07	30-Jun-08	1619092.78	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:29 PM	

+="CN77816"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	621579.63	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:29 PM	

+="CN77837"	"ENHANCED LANDFORCE-STAGE 1 GHD4 PMCA PACKAGE 4-DETAILED PLANNING PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	2583108.00	=""	="GHD PTY LTD"	10-May-08 12:30 PM	

+="CN77858"	"RANDWICK REDEVELOPMENT PROJECT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	366105.76	=""	="GHD PTY LTD"	10-May-08 12:31 PM	

+="CN77889"	"PASSPORT SWITCH  CARDS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Apr-08	724976.02	=""	="WESTCON GROUP"	10-May-08 12:33 PM	

+="CN77908"	"Provide DRN Internet connection to LIA blocks at Singleton Military Area"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	905439.58	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:34 PM	

+="CN77941"	"Design and Construct a new facility at Singleton Military Area"	="Department of Defence"	10-May-08	="General building construction"	13-Dec-07	30-Jun-08	327267.32	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:36 PM	

+="CN74201-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	07-May-07	30-Jun-09	470828.00	=""	="Paxus Australia Limited"	12-May-08 08:50 AM	

+="CN77991-A5"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	18-Jul-07	11-Dec-08	497750.00	=""	="Paxus Australia Pty Limited"	12-May-08 08:57 AM	

+="CN74191-A3"	" Provision of Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	300300.00	=""	="Ross Human Directons Limited"	12-May-08 09:03 AM	

+="CN77992-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	19-Sep-07	30-Jun-09	484110.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:07 AM	

+="CN77996-A4"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	14-Feb-08	29-May-09	483164.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:25 AM	

+="CN78005"	"Professional Services for ROMAN MLFF Interfaces"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	17-Dec-07	24-Oct-08	301672.45	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 09:31 AM	

+="CN78039-A3"	"Provisions for Specialist Infromation Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	03-Jul-06	30-Jun-09	556160.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:39 AM	

+="CN78051"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	01-Oct-10	352255.20	=""	="ANU - SCHOOL OF PACIFIC & ASIAN"	12-May-08 09:40 AM	

+="CN78053"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	01-Oct-10	422963.20	=""	="ANU - SCHOOL OF PACIFIC & ASIAN"	12-May-08 09:41 AM	

+="CN78064"	"HQJOC PROJECT-ADI LIMITED (THALES)"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-08	752930.50	=""	="THALES AUSTRALIA"	12-May-08 09:43 AM	

+="CN78075"	"FURNITURE FOR NAVY ACCOMMODATION HOMEBUSH"	="Department of Defence"	12-May-08	="Accommodation furniture"	19-Dec-07	30-Jan-08	937300.10	=""	="DIRECT ERGONOMICS PTY LTD"	12-May-08 09:45 AM	

+="CN78076"	"POC: MARK MCCLURE CONTACT: 02 626 50420"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	30-Jun-08	519948.00	=""	="OPTUS NETWORKS PTY LTD"	12-May-08 09:46 AM	

+="CN78074-A5"	" Provisions for Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	20-Nov-07	15-Mar-09	412913.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:50 AM	

+="CN78108"	"RENEWAL OF SOFTWARE MAINTENANCE"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	20-Dec-08	431200.00	=""	="SYMANTEC ASIA PACIFIC PTE LTD"	12-May-08 09:52 AM	

+="CN78121"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	478325.42	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 09:55 AM	

+="CN78142"	"AIR CHTR OP ANODE ROTTION 13/14"	="Department of Defence"	12-May-08	="Aircraft"	18-Dec-07	31-Dec-07	502629.40	=""	="ALLTRANS INTERNATIONAL"	12-May-08 09:58 AM	

+="CN78147"	"BROADLEAF AND NINE MILE PADDOCK."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	2013146.95	=""	="SPARKE HELMORE LAWYERS"	12-May-08 09:59 AM	

+="CN78153"	"URGENT ROAD REPAIRS TO MOOREBANK AVENUE"	="Department of Defence"	12-May-08	="Roads and landscape"	18-Dec-07	30-Jun-08	2316599.84	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78161"	"EMERGENCY STRUCTURAL REPAIRS TO DINING HALL"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	428230.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:02 AM	

+="CN78168"	"S5091, WR 300075939. Asbestos Removal Program - HM 801"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	18-Dec-07	30-Jun-08	1269577.10	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:03 AM	

+="CN78171-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	27-Aug-07	30-Jun-09	641438.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:10 AM	

+="CN78173"	" Provisions for Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Oct-07	30-Jun-08	303848.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:15 AM	

+="CN78176-A4"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	17-Sep-07	08-Aug-08	468179.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:32 AM	

+="CN78181-A2"	" Instrument Service & Maintenance "	="Department of Foreign Affairs and Trade"	12-May-08	="Measuring and observing and testing instruments"	01-Jul-07	01-Jul-11	833615.73	=""	="MORPHO AUSTRALASIA PTY LTD"	12-May-08 11:04 AM	

+="CN78185-A1"	"Garrison Jackets"	="Defence Materiel Organisation"	12-May-08	="Clothing accessories"	12-May-08	24-Oct-08	440000.00	=""	="CTE Pty Ltd"	12-May-08 11:09 AM	

+="CN78194-A4"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology networking specialists"	02-Feb-07	18-Jul-08	430045.00	=""	="Greythorn Pty Ltd"	12-May-08 11:47 AM	

+="CN78198"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-08	470360.00	=""	="Paxus Australia Pty Limited"	12-May-08 11:52 AM	

+="CN78202-A4"	" Architectural, Project Management, Property Management and Engineering Services "	="Department of Foreign Affairs and Trade"	12-May-08	="Architectural services"	02-Oct-07	30-Sep-11	3062058.29	="05/150932"	="INTEGRATED SPACE PTY LTD"	12-May-08 12:00 PM	

+="CN78206-A3"	"Information Technology Specialist Services (previously published as GAPS ID 1625408)"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	11-Sep-07	30-Jun-09	638880.00	=""	="Paxus Australia Pty Limited"	12-May-08 12:10 PM	

+="CN78208"	" PROVISION OF ICT SERVICES TO DHS  XREFER CONTRACT ID 1661199 DATED 12.04.2007 VALUE   $1,000,000.00. TOTAL VALUE OF BOTH CONTRACTS $3,000,000.00 "	="Department of Human Services"	12-May-08	="Components for information technology or broadcasting or telecommunications"	06-Mar-08	10-Apr-09	2000000.00	=""	="ASG GROUP LTD"	12-May-08 12:16 PM	

+="CN78218"	"Security Services"	="Department of Defence"	12-May-08	="Security surveillance and detection"	12-Dec-07	30-Jun-08	723002.60	=""	="TEMPO SECURITY"	12-May-08 01:06 PM	

+="CN78223"	"MOAC-IM BUSINESS ANALYST"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	29-Feb-08	333856.02	=""	="MILITARYTECH PTY LTD"	12-May-08 01:07 PM	

+="CN78226"	"DEFENCE STRATEGIC TRAINING AREA AND RANGES REVIEW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	13-Dec-07	30-Jun-09	654500.00	=""	="PARSONS BRINCKERHOFF"	12-May-08 01:07 PM	

+="CN78229"	"Project Management Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	449900.00	=""	="ROSSLOGIC PTY LTD"	12-May-08 01:07 PM	

+="CN78234"	"Deed of Standing Offer JLUSQ-0406  labour hire to 7 BDE"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	13-Dec-07	31-Mar-08	500611.36	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 01:08 PM	

+="CN78235"	"Labour Hire"	="Department of Defence"	12-May-08	="Manufacturing support services"	13-Dec-07	27-Jan-08	862539.68	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-May-08 01:08 PM	

+="CN78240"	"PASSPORT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Apr-08	1582548.75	=""	="WESTCON GROUP"	12-May-08 01:09 PM	

+="CN78267"	"SINGLE LEAP. PLENARY IEW"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	5445000.00	=""	="PLENARY GROUP PTY LTD"	12-May-08 01:12 PM	

+="CN78268"	"SINGLE LEAP. PLENARY IEW NSW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	2420000.00	=""	="PLENARY GROUP PTY LTD"	12-May-08 01:12 PM	

+="CN78273"	"A CKLSS INSTAVAULT  WITH A CLASS STRONG ROOM DOOR"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	31-Jan-08	303600.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	12-May-08 01:13 PM	

+="CN78280"	"NON ASSET ROAD MAINTENANCE SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	807240.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78282"	"QUARRY OPERATIONS PACKAGE 1 - ASSET ROAD  MAINTENACE SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	1443200.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78288"	"ARMOURIES AND MAGAZINE COMPLIANCE WORKS CANUNGRA MAGAZINE"	="Department of Defence"	12-May-08	="Ammunition handling systems"	05-Dec-07	30-Jun-08	417142.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:15 PM	

+="CN78301"	"REFURBISHMENT OF MUCSLE TOUGHENING COURSE CANUNGRA"	="Department of Defence"	12-May-08	="Fitness equipment"	06-Dec-07	30-Jun-08	303012.16	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:17 PM	

+="CN78304"	"REFURBISHMENT OF CONFIDENCE COURSE - CANUNGRA"	="Department of Defence"	12-May-08	="Fitness equipment"	06-Dec-07	30-Jun-08	1006042.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:18 PM	

+="CN78311"	"S5091, WR's - Various see attached. DS-SC Asbestos 07/08. Phase 2, removal of asbestos containi"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	05-Dec-07	30-Jun-08	460769.35	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:19 PM	

+="CN78319"	"This order is placed under the t's and c's of SO 06/32"	="Department of Defence"	12-May-08	="Manufacturing support services"	05-Dec-07	30-Jun-08	369891.06	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 01:20 PM	

+="CN78313-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jun-06	30-Jun-09	937200.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:21 PM	

+="CN78345"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Sep-08	880000.01	=""	="SUN MICROSYSTEMS"	12-May-08 01:24 PM	

+="CN78344-A5"	"Information Technology Specialist Services (previously published as GAPS ID 1614544)"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	07-Aug-06	11-Jan-09	497860.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:25 PM	

+="CN78353"	"ASBESTOS REMEDIATION WORKS 6RAR ENOGGERA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	05-Dec-07	30-Jun-08	1517376.63	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:26 PM	

+="CN78357"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	05-Dec-07	30-Jun-08	360884.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 01:26 PM	

+="CN78371"	"FINANCE ESTIMATES"	="Department of Defence"	12-May-08	="Naval weapons"	05-Dec-07	30-Jun-08	4125000.00	=""	="KAZ GROUP PTY LTD"	12-May-08 01:29 PM	

+="CN78375"	"Software maintenance services"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	31-Mar-09	1409654.40	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 01:29 PM	

+="CN78376"	"FACOPS - SA2228"	="Department of Defence"	12-May-08	="Environmental Services"	07-Dec-07	30-Jun-08	466939.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:29 PM	

+="CN78381"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	598400.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 01:30 PM	

+="CN78382"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Nov-09	623832.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:30 PM	

+="CN78383"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	642400.00	=""	="Paxus Australian Pty Limited"	12-May-08 01:32 PM	

+="CN78396"	"FACOPS - SA2229"	="Department of Defence"	12-May-08	="Environmental Services"	07-Dec-07	30-Jun-08	729003.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:32 PM	

+="CN78417"	"SECURE REAR ENTRANCE - GAL BKS"	="Department of Defence"	12-May-08	="Security surveillance and detection"	10-Dec-07	30-Jun-08	497265.30	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:36 PM	

+="CN78414-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	680900.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:38 PM	

+="CN78437"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-May-08	425628.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:40 PM	

+="CN78440"	"Provision of leased computers"	="Australian Federal Police"	12-May-08	="Operating lease finance service"	28-Nov-02	27-Nov-07	13001942.60	=""	="Dell Financial Services"	12-May-08 01:41 PM	

+="CN78451"	"TS PIONEER RELOCATION TO KOMIATUM BARRACKS MACKAY"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	06-Dec-07	30-Jun-08	356924.65	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:42 PM	

+="CN78452-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	654555.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:43 PM	

+="CN78480"	"PROP STUDIES-BNTS-ENVIRONMENTAL CONSULTANT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	303155.22	=""	="SMEC AUSTRALIA"	12-May-08 01:46 PM	

+="CN78528"	"NON ASSET ROAD WORKS SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	20-Dec-07	30-Jun-09	576026.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:53 PM	

+="CN78522-A3"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	568799.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:54 PM	

+="CN78534"	"AIR CHTR OP SLIPPER VEHICLE ROTATION"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	12-Feb-08	669322.17	=""	="STRATEGIC AVIATION - USD"	12-May-08 01:54 PM	

+="CN78543"	"AIR CHTR PNG ASSIST REDEPLOY OF BLACKHAWKS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	402791.60	=""	="HEAVYLIFT CARGO AIRLINES"	12-May-08 01:56 PM	

+="CN78554"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	27-Jun-08	649701.80	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 01:59 PM	

+="CN78557"	"AIR CHTR B747 CARGO TO MEAO OP CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	658689.57	=""	="STRATEGIC AVIATION - USD"	12-May-08 01:59 PM	

+="CN78561"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES PM/CA - DEPLOYMENT BASES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-10	1389131.70	=""	="GHD PTY LTD"	12-May-08 02:00 PM	

+="CN78563"	"RAAF AMBERLEY STAGE 3 - DELIVERY PHASE. DELIVERY PHASE PM/CA SERVICES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	3968123.50	=""	="THINC PROJECTS PTY LTD"	12-May-08 02:01 PM	

+="CN78565"	"PROVISION OF FIRE ENGINEERING SUPPORT SERVICES - 2"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	440000.00	=""	="ARUP"	12-May-08 02:01 PM	

+="CN78566"	"LADS Contract 12/07 to 31/7/08"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	30-Aug-08	3614949.03	=""	="TENIX LADS CORPORATION PTY LTD"	12-May-08 02:01 PM	

+="CN78572"	"DEVELOPMENT OF THE DNSA SDMS SERVICE DESK PROCESS DESIGN FRAMEWORK."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	19-Dec-07	30-Jun-08	316800.00	=""	="ACUMEN ALLIANCE"	12-May-08 02:02 PM	

+="CN78580"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	435003.25	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78609"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	09-Dec-09	428340.00	=""	="ICON RECRUITMENT"	12-May-08 02:09 PM	

+="CN78613"	"Professional Services for ROMAN MLFF Interfaces"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	20-Dec-07	24-Oct-08	402793.02	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78619"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	01-Oct-08	520000.00	=""	="KPMG AUSTRALIA"	12-May-08 02:10 PM	

+="CN78621"	"DEFENCE MAGAZINE"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	04-Jan-08	04-Jan-08	330000.00	=""	="GREY CANBERRA PTY LTD"	12-May-08 02:10 PM	

+="CN78643"	"PSP 08/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	394991.66	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 02:12 PM	

+="CN78644"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	10-Apr-08	14-Nov-08	563147.36	=""	="MINISTRY OF DEFENCE - NETHERLANDS"	12-May-08 02:12 PM	

+="CN78706"	"5 x ZODIAC JULIETTE JET TYPE RHIB 7.  INTERNAL ORDER NUMBER 15800 & 16862."	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	30-Sep-08	1793489.50	=""	="DEFENCE MARITIME SERVICES"	12-May-08 02:17 PM	

+="CN78708"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-Jan-08	1335708.00	=""	="IBM AUSTRALIA LTD"	12-May-08 02:17 PM	

+="CN78735"	"PSP:Aaron Joy 08/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	429091.66	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 02:19 PM	

+="CN78741"	"PSP:Aaron Joy 14/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	616366.66	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:19 PM	

+="CN78747"	"PSP:Aaron Joy 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	383625.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:20 PM	

+="CN78751"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	1136666.66	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:20 PM	

+="CN78754"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	02-Mar-16	3311000.00	=""	="THOUGHTWEB PTY LTD"	12-May-08 02:20 PM	

+="CN78773-A5"	"Provision of Property Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Building construction and support and maintenance and repair services"	01-Jul-08	30-Jun-12	62655567.00	="DFAT07-OPO07/001477-000"	="UGL SERVICES PTY LTD"	12-May-08 02:21 PM	

+="CN78781"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-09	324632.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 02:21 PM	

+="CN78803"	"ANAPURNA CURABLE PRINTERS"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	03-Mar-08	449900.00	=""	="AGFA-GEVAERT LTD"	12-May-08 02:23 PM	

+="CN78825"	"02-224081 31AUG07 LINE ITEMS 6171 - 6423"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	623133.42	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78828"	"02-224081 30SEP07 LINE ITEMS 6424 - 6665"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Sep-07	30-Jun-08	719017.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78838"	"ELECTRICITY SUPPLY TO WA"	="Department of Defence"	12-May-08	="Utilities"	14-Apr-08	04-Nov-08	2499999.98	=""	="SYNERGY"	12-May-08 02:25 PM	

+="CN78842"	"blade controllers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	820960.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78854"	"PAYMENTS OF OPERATIONS TRAVELS"	="Department of Defence"	12-May-08	="Aircraft"	12-Nov-07	06-Dec-07	431043.80	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:26 PM	

+="CN78855"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	30-Jun-08	873663.96	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 02:26 PM	

+="CN78870"	"AZ 3825-TOWNSVILLE AREA ZONE PLAN"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	02-Jan-08	30-Jun-09	541533.30	=""	="PARSONS BRINCKERHOFF"	12-May-08 02:28 PM	

+="CN78871"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-12	470394.17	=""	="SGI AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78881"	"02-22408131DEC07 LINE 7338-8162"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	1901418.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:28 PM	

+="CN78884"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	02-Jan-08	01-Sep-08	370772.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:28 PM	

+="CN78907"	"Computer Software"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	14-Dec-08	535700.00	=""	="TIER-3 PTY LTD"	12-May-08 02:30 PM	

+="CN78919"	"POC: MARK MCCLURE CONTACT6: 02 626 50420"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	1216485.60	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 02:31 PM	

+="CN78949"	"RAAF RICHMOND TRI METS PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	1288681.90	=""	="INFINITY CONSTRUCTION PTY LTD"	12-May-08 02:33 PM	

+="CN78950"	"38 SQN COLLOCATION. DOCUMENT AND CONSTRUCT FOR DELIVERY OF FACILITIES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	3405482.30	=""	="WATPAC AUSTRALIA PTY LTD"	12-May-08 02:33 PM	

+="CN79045"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	31-Dec-08	741700.00	=""	="MINTER ELLISON"	12-May-08 02:40 PM	

+="CN79054"	"SERVICES ADDITIONAL TO CONTRACT.  ADDITIONAL PSSC"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	30-Jun-10	957000.00	=""	="DEFENCE MARITIME SERVICES PTY LTD"	12-May-08 02:41 PM	

+="CN79061"	"AIR CHARTER"	="Department of Defence"	12-May-08	="Aircraft"	04-Apr-08	30-Apr-08	622862.00	=""	="ADAGOLD AVIATION PTY LTD"	12-May-08 02:41 PM	

+="CN79060-A9"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	58600000.00	=""	="Polytechnic West"	12-May-08 02:42 PM	

+="CN79072"	"LEGAL SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Mar-08	15-Apr-08	650000.00	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:42 PM	

+="CN79074"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	20-Mar-08	27-Mar-08	317321.71	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:42 PM	

+="CN79082"	"ROUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	31-May-08	1237137.36	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:43 PM	

+="CN79089"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	300000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79062"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	21-Aug-06	30-Jun-08	412847.00	=""	="Paxus Australia Pty Limited"	12-May-08 02:45 PM	

+="CN79102"	"HQJOC PROJECT - KAZ GROUP PTY LTD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	324064.85	=""	="KAZ GROUP PTY LTD"	12-May-08 02:45 PM	

+="CN79107"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	17-Jan-08	17-Jan-08	534556.57	=""	="QINETIQ GROUP PLC"	12-May-08 02:46 PM	

+="CN79099-A9"	" Provision of Adult Migrant English Services "	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	32500000.00	=""	="Central Tafe"	12-May-08 02:46 PM	

+="CN79130"	"JEZZINE BARRACKS COMMUNITY TRUST"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Apr-08	10000000.00	=""	="THE JEZZINE BARRACKS COMMUNITY"	12-May-08 02:48 PM	

+="CN79140"	"2008 AFL CONTRACT TO PROMOTE AWARENESS OF ARMY AND OBJECT OF SUPPORTING THE 'CHALLENGE YOURSELF"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	1022670.00	=""	="AUSTRALIAN FOOTBALL LEAGUE"	12-May-08 02:49 PM	

+="CN79154"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	28-Mar-08	04-Apr-08	370000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:50 PM	

+="CN79156-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	18200000.00	=""	="LM Training Specialists Pty. Ltd."	12-May-08 02:51 PM	

+="CN79165"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	05-May-08	05-May-08	531597.04	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:51 PM	

+="CN79168"	"SN01305 - MFFR - Road Upgrades and Maintenance"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	03-Apr-08	30-Jun-08	326575.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:51 PM	

+="CN79173-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	627000.00	=""	="Paxus Australia Pty Limited"	12-May-08 02:53 PM	

+="CN79202"	"Stakeholder Liason Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Apr-08	31-Dec-09	477149.11	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 02:54 PM	

+="CN79212-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	91600000.00	=""	="Department of Further Education Employment Science and Technology (trading as TAFE SA)"	12-May-08 02:56 PM	

+="CN79221-A1"	"IMMARSAT TERRESTIAL SERVICES"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Jan-08	30-Jun-08	4570482.10	=""	="STRATOS"	12-May-08 02:57 PM	

+="CN79231"	"MANAGING CONTRACTOR FOR RAAF COLLEGE RELOCATION PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	22-Apr-08	30-Jun-08	2664168.83	=""	="THIESS PTY LTD"	12-May-08 02:58 PM	

+="CN79252"	"Comprehensive Maintenance Contract Fees for the period 01 Nov 02 - 31 Oct 07 for CSI(ID)-CNNSW"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	26-Aug-02	31-Oct-08	3791315.06	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:00 PM	

+="CN79256"	"TELECOMMUNICATIONS SERVICES"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	02-May-08	30-Jun-08	375967.90	=""	="MCKESSON ASIA-PACIFIC PTY LTD"	12-May-08 03:00 PM	

+="CN79258"	"Contract Administration services for Phase 2 for DSTO Rationalisation Project - Stage 2."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-09	476911.99	=""	="CMR CONSULTANTS AUSTRALIA"	12-May-08 03:00 PM	

+="CN79266"	"Delivery of CMC CNNSW - GB & FM Routine Maintenance work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	415484.02	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79268"	"Security Hardware and Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Sep-08	1339250.00	=""	="SECURE SYSTEMS LTD"	12-May-08 03:01 PM	

+="CN79267-A2"	" Australian Passport Information Service "	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Oct-06	30-Sep-10	21540949.31	=""	="COMMONWEALTH SERVICE DELIVERY AGENCY"	12-May-08 03:02 PM	

+="CN79292"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	31-Mar-08	28-Apr-08	725000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:04 PM	

+="CN79293"	"Professional services"	="Department of Defence"	12-May-08	="Project management"	08-Apr-08	29-May-09	324720.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 03:04 PM	

+="CN79301"	"POC:  RYAN CAMPBELL CONTACT: 02 626 65735"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	656632.90	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	12-May-08 03:05 PM	

+="CN79283-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	22-May-07	30-Jun-08	607200.00	=""	="Paxus Australia Pty Limited"	12-May-08 03:05 PM	

+="CN79331"	"HUMAN FACTORS CONSULTANT"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	09-Apr-08	30-Jun-08	359844.10	=""	="ADVANCED VTOL TECHNOLOGIES"	12-May-08 03:08 PM	

+="CN79352"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.02"	="Department of Defence"	12-May-08	="Fuels"	03-Apr-08	30-Jun-08	18205000.00	=""	="CALTEX AUSTRALIA LTD"	12-May-08 03:09 PM	

+="CN79363"	"THROUGH LIFE SUPPORT OF THE AIR SAFETY NET AND DIR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	09-Apr-08	30-Jun-12	1553125.20	=""	="KARERA COMMUNICATIONS PTY LTD"	12-May-08 03:10 PM	

+="CN79364"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	29-Apr-08	30-Apr-08	950000.00	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 03:10 PM	

+="CN79365"	"Ford Futura Wagon Qty 53 ( WM)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	1352352.56	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79378"	"Ford Fairmont Sedan ( SE) Qty 21"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	540214.69	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:11 PM	

+="CN79375-A9"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	08-Apr-03	30-Jun-11	123600000.00	=""	="ACL Pty Ltd (for the Consortium for the South Western Sydney Region"	12-May-08 03:11 PM	

+="CN79410"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	18-Apr-08	401505.50	=""	="DESKON INTERIORS PTY LTD"	12-May-08 03:13 PM	

+="CN79437"	"HUGPH2.3 Project Support (Bob Pryke & John Porter)"	="Department of Defence"	12-May-08	="Aircraft"	02-Apr-08	30-Jun-09	448305.00	=""	="JACOBS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79444"	"Analysis of  Mk3 CMS Software Problem Reports"	="Department of Defence"	12-May-08	="Military watercraft"	01-Apr-08	31-Aug-08	825000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:15 PM	

+="CN65709"	" Trainee Recruit Accommodation Services in Melbourne and Sydney.  Contract option to extend has been taken up.  New total contract value is now $1,649,000.00.  Previous Gazettal ref is 1560998. "	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	01-Jan-06	31-Dec-10	1152000.00	="RFT010-HQ05"	="Intercontinental Hotels Group"	12-May-08 03:17 PM	

+="CN79467-A8"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	137600000.00	=""	="ACL Pty Ltd (for the Consortium for the Western Sydney Region)"	12-May-08 03:18 PM	

+="CN79486"	"SDSS District Realignment"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-08	1250279.80	=""	="KPMG"	12-May-08 03:18 PM	

+="CN79502"	"SML replacement deck cranes"	="Department of Defence"	12-May-08	="Heavy construction machinery and equipment"	26-Mar-08	31-Jul-08	360819.83	=""	="G A GLANVILLE & CO"	12-May-08 03:19 PM	

+="CN79506"	"DOOR ASSEMBLY"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	15-Sep-08	390000.17	=""	="BLUE AEROSPACE LLC"	12-May-08 03:20 PM	

+="CN79518"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	367998.54	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:20 PM	

+="CN79520"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Real estate services"	29-Apr-08	29-Apr-08	4417767.16	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:20 PM	

+="CN79522"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	596640.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:21 PM	

+="CN79528"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	29-Apr-08	320077.46	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:21 PM	

+="CN79553"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	18-Apr-08	597464.69	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:22 PM	

+="CN79564"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	21-Apr-08	21-Apr-08	539930.60	=""	="Isis Projects Pty Ltd"	12-May-08 03:23 PM	

+="CN79570-A6"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	123400000.00	=""	="Training Queensland (for State of Queensland)"	12-May-08 03:25 PM	

+="CN79587"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	1036200.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:26 PM	

+="CN79615"	"Prices quoted are based on an exchange rate of aud are fixed for a period of 8 months from order pla"	="Defence Materiel Organisation"	12-May-08	="Ammunition handling systems"	12-Feb-08	28-Feb-08	387508.79	=""	="RADIOMETER PACIFIC PTY LTD"	12-May-08 03:27 PM	

+="CN79646"	"Prototype for Kiowa Marker Beacon Replacement"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Mar-08	21-Jan-09	880000.00	=""	="HELITECH DIV OF SIKORSKY"	12-May-08 03:29 PM	

+="CN79658"	"*IAW DEED D0025*"	="Defence Materiel Organisation"	12-May-08	="Drugs and Pharmaceutical Products"	11-Feb-08	30-Jun-08	2768500.00	=""	="SYMBION PHARMACY SERVICES"	12-May-08 03:30 PM	

+="CN79665"	"Indicator Cpntrol Group"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	20-Mar-08	02-Jan-09	540327.47	=""	="DRS C3 SYSTEMS, INC"	12-May-08 03:31 PM	

+="CN79659-A8"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	6600000.00	=""	="Careers Australia International College Pty Ltd (trading as Brisbane Migrant English Centre, for the Adult Multicultural Services Consortium)"	12-May-08 03:31 PM	

+="CN79704"	"Installation of Asset Management Planning System on LCH class vessels"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	12-Feb-08	30-Jun-08	549686.50	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 03:34 PM	

+="CN79712"	"P&EE VIBRATION TEST SET"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Mar-08	30-Jun-08	1318900.00	=""	="DAVIDSON MEASUREMENT"	12-May-08 03:34 PM	

+="CN79713"	"PROVISION OF AEROMEDICAL EVACUATION SERVICES"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	14-Nov-07	30-Nov-07	433125.00	=""	="ASPEN MEDICAL PTY LTD"	12-May-08 03:34 PM	

+="CN79734"	"Spectrum Analyzers"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Feb-08	20-Jun-14	1202725.53	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 03:35 PM	

+="CN79739"	"ACCELERATED ANALYSIS OF PH3.2 CENTRE BARREL."	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Jun-08	320000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79744"	"ACCELERATED ANALYSIS OF PH3.2 CENTRE BARREL FATIGUE TEST PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Jun-08	320000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79746"	"INTERIM WORKS-LONE PINE BARRACKS,SCHOOL OF INFANTR"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	16-Nov-07	30-Jun-08	1480000.50	=""	="BRISLAND PTY LTD"	12-May-08 03:36 PM	

+="CN79749"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	12-May-08	="Fuels"	12-Feb-08	30-Jun-08	552895.20	=""	="KROPP HOLDINGS INC"	12-May-08 03:36 PM	

+="CN79757"	"Ku-Band satellite communications (SATCOM) terminal Offer: ISB:SAT: 02/2005."	="Defence Materiel Organisation"	12-May-08	="Education and Training Services"	15-Feb-08	30-Jun-08	317900.00	=""	="GIGASAT ASIA PACIFIC PTY LTD"	12-May-08 03:37 PM	

+="CN79768"	"COMMONWEALTH PURCHASE OF EXTANT SCOPE 1 BDS"	="Department of Defence"	12-May-08	="Manufacturing support services"	28-Mar-08	31-Mar-08	943708.12	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 03:37 PM	

+="CN79774"	"Supply Trunk Communication support and test equipm quotation QN-A5259A, Dated 12/12/2007"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	15-Feb-08	30-Jun-08	420501.40	=""	="GIGASAT ASIA PACIFIC PTY LTD"	12-May-08 03:38 PM	

+="CN79796"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	5500000.00	=""	="IBM AUSTRALIA LIMITED"	12-May-08 03:40 PM	

+="CN79798"	"Upgrade of the current PIF PDL to enable testing o Refer Quote No: 9089"	="Defence Materiel Organisation"	12-May-08	="Satellites"	15-Feb-08	30-Jun-08	469718.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:40 PM	

+="CN79802"	"(MYAMBAT) & NEWCASTLE S3 CONTRACTOR"	="Department of Defence"	12-May-08	="Transportation services equipment"	15-Nov-07	30-Jun-08	982063.50	=""	="BACTEC SE ASIA PTY LTD"	12-May-08 03:40 PM	

+="CN79806"	"Support"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	15-Nov-07	28-Feb-08	320000.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 03:40 PM	

+="CN79816"	"Protected Containers"	="Defence Materiel Organisation"	12-May-08	="Containers and storage"	14-Feb-08	30-Nov-08	15859685.69	=""	="DREHTAINER GMBH"	12-May-08 03:41 PM	

+="CN79817"	"Rangefinder Handheld"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	28-Mar-08	01-Jul-08	387604.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79820"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE."	="Department of Defence"	12-May-08	="Fuels"	28-Mar-08	30-Jun-08	836165.00	=""	="CALTEX AUSTRALIA PETROLEUM P / L"	12-May-08 03:41 PM	

+="CN79831"	"Toyota Hilux 4x2 Dual Cab Ute (4 Cy) Qty22"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	01-Oct-08	529534.96	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:42 PM	

+="CN79848"	"PROCUREMENT OF QUANTITY 8 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	04-Aug-08	334728.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79866"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	2582771.40	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:45 PM	

+="CN79873"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND"	="Department of Defence"	12-May-08	="Fuels"	28-Mar-08	30-Jun-08	965250.00	=""	="EXXONMOBIL AVIATION"	12-May-08 03:45 PM	

+="CN79875"	"Management of payments against Contract 5370058 for supply of qty 130 Laser Range finders."	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	15-Feb-08	14-Oct-08	1549271.00	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79886"	"Crypto Eqpt."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	28-Mar-08	01-Jan-09	1213999.89	=""	="EADS DEFENSE SECURITY AND SYSTEMS S"	12-May-08 03:46 PM	

+="CN79908"	"T56 tech services"	="Department of Defence"	12-May-08	="Aircraft"	27-Mar-08	30-Jun-08	720240.40	=""	="QANTAS DEFENCE SERVICES PTY LTD"	12-May-08 03:47 PM	

+="CN79933"	"TD187 DMS17.1  Software upgrades Vendor Quote: ES-TXA-MPS-1079 dated 05Feb08TD Numb"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	14-Feb-08	20-Feb-09	2024379.50	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:50 PM	

+="CN79968"	"L7A2 MACHINE GUN SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	27-Mar-08	01-Oct-08	348871.86	=""	="FN HERSTAL SA"	12-May-08 03:53 PM	

+="CN80000"	"In-service support"	="Department of Defence"	12-May-08	="Satellites"	11-Dec-07	30-Jun-12	825792.00	=""	="NOVAMARINE INSTRUMENTS PTY LTD"	12-May-08 03:56 PM	

+="CN80007"	"Centre of Gravity Table"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	30-Aug-08	817000.80	=""	="JOHN BEEVER (AUST.) PTY. LIMITED"	12-May-08 03:56 PM	

+="CN80011"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	27-Mar-08	30-Oct-08	370238.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:57 PM	

+="CN79961"	"Gst Prosecution Services supplied by Commonwealth Director of Public Prosecutions"	="Australian Taxation Office"	12-May-08	="Tax advisory services"	01-Jul-08	30-Jun-09	2000000.00	=""	="Commonwealth Director of Public Prosecutions"	12-May-08 03:58 PM	

+="CN80043"	"SEED MANAGEMENT CONTRACT"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	10-Apr-08	05-Jan-09	3339083.52	=""	="HAULMARK TRAILERS AUST"	12-May-08 03:59 PM	

+="CN80047"	"Field and Refrigeration"	="Department of Defence"	12-May-08	="Industrial refrigeration"	12-Dec-07	30-Apr-10	8478530.91	=""	="INTERNATIONAL LOGISTICS MANAGEMENT"	12-May-08 03:59 PM	

+="CN80057"	"Multi-Spectrual Camouflage Systems (MCS) for the M1A1 Abrams Tanka dn M88A2 Hercules"	="Department of Defence"	12-May-08	="War vehicles"	12-Dec-07	14-May-09	4483651.35	=""	="SAAB BARRACUDA PTY LTD"	12-May-08 04:00 PM	

+="CN80076"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	352000.00	=""	="DEEWR"	12-May-08 04:01 PM	

+="CN80088"	"QANTAS RPT FLIGHTS JAN 08 CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Mar-08	732780.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:02 PM	

+="CN80090"	"Quote:20080116 Electronic Counter - measure"	="Defence Materiel Organisation"	12-May-08	="War vehicles"	06-Feb-08	06-Jun-08	414476.70	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 04:02 PM	

+="CN80112"	"RESPIRATOR"	="Department of Defence"	12-May-08	="Respiratory protection"	11-Dec-07	07-Feb-08	779049.26	=""	="AVON RUBER PLC - AVON TECHNICAL PRO"	12-May-08 04:03 PM	

+="CN80123"	"DS SWS CMS MATERIAL"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Nov-07	30-Jun-08	972388.46	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 04:04 PM	

+="CN80135"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVTUR/FSII IN BULK INTO RAAF BASES  DIRECT INTO AIRCRA"	="Department of Defence"	12-May-08	="Fuels"	10-Dec-07	30-Jun-08	18150000.00	=""	="CALTEX AUSTRALIA LTD"	12-May-08 04:05 PM	

+="CN80145"	"For the procurement of Repairs and upgrades of Bir 3 ECM Systems"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	27-Jun-08	891550.00	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 04:05 PM	

+="CN80158"	"PROVISION OF A SUITE OF TRAINING COURSES"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	06-Feb-08	11-Feb-08	402886.44	=""	="DEAKINPRIME"	12-May-08 04:06 PM	

+="CN80164"	"ORDER RAISED FOR THE SUPPLY OF AVIATION FUEL (AVTU DEFENCE FORCES WHILE OVERSEAS."	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	797445.00	=""	="NORDIC CAMP SUPPLY"	12-May-08 04:07 PM	

+="CN80171"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	500000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:08 PM	

+="CN80175"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	2270498.55	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:08 PM	

+="CN80184"	"QANTAS FLIGHTS - OPS DEC07"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Mar-08	761363.19	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:09 PM	

+="CN80189"	"Contract C388585 - Hornet Maintenance and Modifica"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	05-Feb-08	30-Nov-08	16730674.13	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:09 PM	

+="CN80190"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	5625374.04	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:09 PM	

+="CN80200"	"S&Q27 FOR HUGPH3.2 OTHER DIRECT COSTS CONTRACT C338529"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	30-Apr-08	3393658.68	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 04:10 PM	

+="CN80202"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.02"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	2981000.00	=""	="SHELL CO OF AUSTRALIA LTD"	12-May-08 04:10 PM	

+="CN80205"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	4437869.68	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:11 PM	

+="CN80209"	"Leica Vector 21"	="Department of Defence"	12-May-08	="Security surveillance and detection"	11-Dec-07	30-May-08	856157.50	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:11 PM	

+="CN80208"	"gts050-2 RIMPAC"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Feb-08	18-Apr-08	352628.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:11 PM	

+="CN80221"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	2582333.60	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:11 PM	

+="CN80225"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 004.01"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	18370000.00	=""	="SHELL CO OF AUSTRALIA LTD"	12-May-08 04:12 PM	

+="CN80232"	"LICENCE MAINTENANCE AND SUPPORT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Nov-07	30-Jun-08	1622681.67	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 04:12 PM	

+="CN80236"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.01"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	18260000.00	=""	="BP AIR - DIVISION OF BP"	12-May-08 04:12 PM	

+="CN80237"	"Evoluionary System Design activities of National & Coalition Secret Local Area Networks Stage 2"	="Defence Materiel Organisation"	12-May-08	="Components for information technology or broadcasting or telecommunications"	05-Feb-08	30-Jun-08	737000.00	=""	="THALES AUSTRALIA"	12-May-08 04:12 PM	

+="CN80238"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH PROJECT R6986 DELIVERY PHASE PM/CA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-11	1171857.50	=""	="***USE 1079487***"	12-May-08 04:13 PM	

+="CN80243"	"Replace Non-compliant Power & Lighting - Aircraft Shelters - RAAF Base Pearce"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	20-Nov-07	30-Jun-09	839999.60	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 04:13 PM	

+="CN80244"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Feb-08	28-Feb-08	475000.00	=""	="MINTER ELLISON"	12-May-08 04:13 PM	

+="CN80257"	"THIS PURCHASE ORDER HAS BEEN RAISED FOR ADMINISTRA ALLOW PAYMENTS AGAINST CONTRACT NUMBER 2006/10826"	="Department of Defence"	12-May-08	="Motorised cycles"	10-Apr-08	30-Apr-09	872960.61	=""	="AITKEN MOTORCYCLES"	12-May-08 04:15 PM	

+="CN80281"	"S-70B-2 SAMT PS1405 Cockpit Realignment and Crash Modification"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	31-Mar-08	342045.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:17 PM	

+="CN80290"	"PROCUREMENT OF DIGITAL SATELITE TV CAPABILITY HMAS SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	05-Feb-08	30-Apr-08	300207.60	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 04:17 PM	

+="CN80303"	"QANTAS ACCOUNT"	="Department of Defence"	12-May-08	="Recreational aircraft"	30-Dec-07	11-Mar-08	338163.48	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:18 PM	

+="CN80310"	"MADE TO MEASURE ATTIRE"	="Department of Defence"	12-May-08	="Clothing"	20-Dec-07	28-Feb-08	341404.89	=""	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 04:19 PM	

+="CN80318"	"Build of DLANs' for ACSS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	4815772.28	=""	="THALES AUSTRALIA"	12-May-08 04:20 PM	

+="CN80316-A4"	" Provisions for Handyman Services "	="Department of Immigration and Citizenship"	12-May-08	="Building support services"	15-Jan-07	14-Jan-10	471900.00	=""	="Edsring Property Maintenance Pty Ltd"	12-May-08 04:21 PM	

+="CN80327"	"Cartridge 9mm Ball M882"	="Department of Defence"	12-May-08	="Explosive materials"	14-Apr-08	01-Jul-09	2811619.03	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:21 PM	

+="CN80329"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	14-Apr-08	465480.38	=""	="MCGRATH NICOL"	12-May-08 04:21 PM	

+="CN80349"	"SDSS District Realignment Implementation"	="Department of Defence"	12-May-08	="Computer services"	02-Jan-08	22-Feb-08	305310.00	=""	="KPMG"	12-May-08 04:22 PM	

+="CN80361"	"Supply Sonar Data Recording System (SDRS) and OLM spares"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Dec-07	22-Jun-08	345977.50	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:23 PM	

+="CN80371"	"JP2077 Phase 2B.1 Planning Options"	="Department of Defence"	12-May-08	="Management support services"	04-Jan-08	30-Jun-08	374568.50	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:24 PM	

+="CN80376"	"Installation of EHSD on HMAS Darwin"	="Department of Defence"	12-May-08	="Satellites"	04-Jan-08	30-Jun-08	441353.22	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:24 PM	

+="CN80378"	"HGCE"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	11-Feb-08	05-May-08	524519.60	=""	="CYPHER RESEARCH LABORATORIES"	12-May-08 04:24 PM	

+="CN80381"	"Installation of EHSD on HMAS Success"	="Department of Defence"	12-May-08	="Satellites"	04-Jan-08	30-Jun-08	706414.42	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:24 PM	

+="CN80398"	"ESP for Project Bushranger"	="Department of Defence"	12-May-08	="Management support services"	14-Apr-08	24-Mar-09	345537.50	=""	="UXC LIMITED"	12-May-08 04:25 PM	

+="CN80399"	"81MM MORTAR SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	04-Jan-08	05-Jul-08	523880.09	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	12-May-08 04:25 PM	

+="CN80410"	"Purchase of Soldier Personal Radios Refer Contract 203517"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	23-Jun-08	2197050.00	=""	="ERICSSON AUSTRALIA PTY LTD"	12-May-08 04:25 PM	

+="CN80433"	"18MM MORTAR SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	02-Jan-08	05-Jul-08	328594.57	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	12-May-08 04:27 PM	

+="CN80456"	"Chocoalte, Ration"	="Department of Defence"	12-May-08	="Chocolate and sugars and sweeteners and confectionary products"	19-Dec-07	30-Apr-08	301998.84	=""	="NESTLE AUSTRALIA LTD"	12-May-08 04:28 PM	

+="CN80463"	"LEP TEANOAI Support and Workup Costs"	="Defence Materiel Organisation"	12-May-08	="Commercial marine craft"	11-Feb-08	30-Aug-08	344779.01	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:28 PM	

+="CN80469"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaged combination meals"	09-Jan-08	28-Sep-08	2138812.35	=""	="PREPARED FOODS PROCESSING PTY"	12-May-08 04:28 PM	

+="CN80475"	"Muesli Bars - Various"	="Department of Defence"	12-May-08	="Baking mixes and supplies"	19-Dec-07	31-May-09	314603.19	=""	="WHOLESOME BAKE PTY LTD"	12-May-08 04:29 PM	

+="CN80476"	"UHF NCS through life support contract extension"	="Department of Defence"	12-May-08	="Professional engineering services"	09-Jan-08	30-Jun-13	331537.80	=""	="SPIRIT RIVER PTY LTD"	12-May-08 04:29 PM	

+="CN80477"	"3115 ANZAC CLASS EMA PROJECT MANAGEMENT TEAMS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	30-Jun-08	600292.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:29 PM	

+="CN80480"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-09	1836472.00	=""	="1ST FLEET PTY LTD"	12-May-08 04:29 PM	

+="CN80485"	"Software Support Engineer"	="Department of Defence"	12-May-08	="Aircraft"	11-Apr-08	31-Mar-09	580479.68	=""	="JACOBS AUSTRALIA"	12-May-08 04:30 PM	

+="CN80500"	"installation of crash data recorder modifications to 2 x S-70B-2 seahawk helicopters"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	07-Feb-08	31-Aug-08	409661.20	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:31 PM	

+="CN80505"	"RMIMR Test set Acquisition"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	31-Aug-08	590997.00	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:32 PM	

+="CN80509"	"Licence and Technical Service Agreement with Sikorsky Aircaft Corporation."	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	31-Dec-17	1807542.00	=""	="SIKORSKY AIRCRAFT CORPORATION"	12-May-08 04:32 PM	

+="CN80497-A4"	"Provisions for Cleaning Services"	="Department of Immigration and Citizenship"	12-May-08	="Building cleaning services"	05-Dec-05	03-Dec-09	2275653.00	=""	="M&M Rolfe Cleaning Services Pty Ltd"	12-May-08 04:32 PM	

+="CN80512"	"Flight termination system requirement"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Feb-08	20-Jun-08	1504516.09	=""	="SYSTEM PLANNING CORPORATION"	12-May-08 04:32 PM	

+="CN80526"	"CAPO 07/08 and 09/08"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	11-Apr-08	16-Mar-09	2047950.00	=""	="RAPID ASCENT CONSULTING"	12-May-08 04:33 PM	

+="CN80543"	"SDSS IT Controls Framework Complience"	="Defence Materiel Organisation"	12-May-08	="Management support services"	07-Feb-08	15-May-08	324805.00	=""	="ERNST & YOUNG"	12-May-08 04:34 PM	

+="CN80541"	"ALR2002 Full Rate Production Profit and G&A"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Jan-08	31-Mar-08	1100078.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:34 PM	

+="CN80551"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Chocolate and sugars and sweeteners and confectionary products"	10-Jan-08	30-May-08	336441.60	=""	="MARS CONFECTIONERY OF AUSTRALIA"	12-May-08 04:34 PM	

+="CN80555"	"This purchase order is raised to carry out work as Statement of Work and Technical Specification."	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	15-May-08	408101.87	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:34 PM	

+="CN80556"	"THIS ORDER IS PLACED IAW AASPO CAPO 16/07"	="Department of Defence"	12-May-08	="Specialty aircraft"	10-Jan-08	14-Apr-08	1483607.40	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:35 PM	

+="CN80558"	"HMAS ANZAC IMAV08"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	31-Jul-08	4949780.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:35 PM	

+="CN80559"	"Workshop Equipment"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	11-Apr-08	01-Nov-08	951024.10	=""	="SUN TEST SYSTEMS B.V."	12-May-08 04:35 PM	

+="CN80561"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	15-Jun-08	314257.90	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:35 PM	

+="CN80563"	"Manitou 675 Telehandlers"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	08-Feb-08	02-Jun-08	1589931.77	=""	="NTP FORKLIFTS AUST"	12-May-08 04:35 PM	

+="CN80568"	"HMAS KANIMBLA MAJOR DOCKING PM"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	20-Mar-08	443473.73	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:35 PM	

+="CN80580"	"PROCUREMENT QTY 19 Medium Cargo Trucks with Crane"	="Department of Defence"	12-May-08	="Motor vehicles"	21-Dec-07	18-Apr-08	2615045.62	=""	="ISUZU AUSTRALIA LTD"	12-May-08 04:36 PM	

+="CN80593"	"softsided medical shelters"	="Defence Materiel Organisation"	12-May-08	="Camping and outdoor equipment and accessories"	08-Feb-08	10-Jun-08	1100280.78	=""	="IB SUPPLIES PTY LTD"	12-May-08 04:36 PM	

+="CN80596"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	08-Jan-08	15-Apr-08	1892315.04	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:37 PM	

+="CN80599"	"Software Upgrade Existing Standing Offer CISSD/004."	="Department of Defence"	12-May-08	="Software"	11-Apr-08	30-Jun-08	528000.00	=""	="SOLUTIONS FROM SILICON"	12-May-08 04:37 PM	

+="CN80609"	"IT Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	363173.80	=""	="STEP Electronics (A Hills Company)"	12-May-08 04:38 PM	

+="CN80613"	"POC: LLOYD MAGNER CONTACT: 02 62669353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	500945.41	=""	="SUN MICROSYSTEMS"	12-May-08 04:38 PM	

+="CN80625"	"INSTALL LOCAL AREA NETWORK ONTO HMAS SUCCESS"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	21-Dec-07	30-Jun-08	940041.17	=""	="THALES AUSTRALIA"	12-May-08 04:38 PM	

+="CN80635"	"10 Cisco Routers & Switches"	="Department of Defence"	12-May-08	="Hardware"	21-Dec-07	30-Jun-08	331392.04	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 04:39 PM	

+="CN80637"	"Procrrement of Container Sideloaders"	="Defence Materiel Organisation"	12-May-08	="Containers and storage"	25-Feb-08	31-Jan-09	2297910.85	=""	="STEELBRO NZ LTD"	12-May-08 04:39 PM	

+="CN80641"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Dairy products and eggs"	08-Jan-08	31-Oct-08	336374.50	=""	="FONTERRA BRANDS (AUST) PTY LTD"	12-May-08 04:39 PM	

+="CN80652"	"AIR BLOWERS ASSEMBLIES"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	04-Apr-08	29-Aug-08	603729.06	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 04:40 PM	

+="CN80665"	"PROCUREMENT OF QUANTITY 18 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	22-May-08	637274.48	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:40 PM	

+="CN80666"	"Interface Remediation Management"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	27-Jun-08	394958.75	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:40 PM	

+="CN80668"	"This Purchase Order is subject to the Terms and Co ISS Contract C388561."	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Jan-08	31-Jan-08	880076.34	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:41 PM	

+="CN80672"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Preserved  drupe or stone fruits"	09-Jan-08	30-Jun-08	396162.68	=""	="SPC ARDMONA OPERATIONS LTD"	12-May-08 04:41 PM	

+="CN80677"	"Land 58 PH3 Price Variation Payment"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	21-Dec-07	30-Jun-08	494743.49	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:41 PM	

+="CN80680"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaged combination meals"	09-Jan-08	30-Jun-09	544669.39	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:41 PM	

+="CN80691"	"RMIMR Sensor Interface System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	520168.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 04:42 PM	

+="CN80693"	"A25 Black Hawk Technical publication revision"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	01-Dec-14	4346507.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80701"	"ENGINEERING AND AIRWORTHINESS TASKS TO DELIVER C130 JOINT PRECISION AIRDROP SYSTEM CAPABILITY"	="Department of Defence"	12-May-08	="Aircraft equipment"	20-Dec-07	30-May-08	867609.09	=""	="AMCE PTY LTD"	12-May-08 04:42 PM	

+="CN80704"	"LEAD IN SKILLS TRAINING"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Jan-08	25-Jan-08	408899.26	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:42 PM	

+="CN80713"	"Provision of specialist software acquisition"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	20-Dec-07	01-Jan-09	361763.60	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:43 PM	

+="CN80719"	"JFIMS Software Maintenance/Support for 5 years"	="Department of Defence"	12-May-08	="Software"	07-Apr-08	31-Dec-13	5817350.00	=""	="VAREC INC"	12-May-08 04:43 PM	

+="CN80720"	"JP2077 Phase 2B.1 Interfaces Impact  Assessment"	="Department of Defence"	12-May-08	="Management support services"	30-Jan-08	28-Mar-08	502388.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:43 PM	

+="CN80732"	"Contracted S-70B-2 Phase 2 Servicing"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	30-Jan-08	31-Aug-08	303886.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:44 PM	

+="CN80736"	"BH COCKPIT BALLISTIC PROTECTION KITS"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Sep-08	1027622.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:44 PM	

+="CN80737"	"Repair of Leica Vector IV H/Held Laser Rangefinder"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	25-Feb-08	02-Dec-08	382167.17	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:44 PM	

+="CN80752"	"PROVISION OF PUBLICATION"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	31-Jul-08	323525.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:45 PM	

+="CN80758"	"ENERGIZER BATTERIES FOR TWS"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	03-Apr-08	30-Jun-08	442613.16	=""	="ENERGIZER AUSTRALIA PTY LTD"	12-May-08 04:45 PM	

+="CN80760"	"ADDITIONL FUNDING FOR ALR2002 L17C OBSOLESCENCE REMEDIATION TO SUPPORT 2A FRP"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jun-08	594000.00	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	12-May-08 04:45 PM	

+="CN80778"	"HMAS MANOORA WOOP"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Apr-08	20-Jun-08	1398402.72	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80781"	"Procrement of MHE-L Vehicles"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	30-Jun-09	5910724.32	=""	="CONSTRUCTION EQUIPMENT AUSTRALIA"	12-May-08 04:47 PM	

+="CN80782"	"AMBERLEY AIRFIELD LIGHTING UPGRADE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-Oct-08	529260.83	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:47 PM	

+="CN80783"	"TD051 ALR-2002 Core Team Resourcing"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	31-Dec-08	599398.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:47 PM	

+="CN80786"	"procurement plan for essm sustainment"	="Department of Defence"	12-May-08	="Missiles"	03-Apr-08	30-Apr-08	709757.95	=""	="NATO SEASPARROW SURFACE MISSILE"	12-May-08 04:47 PM	

+="CN80790"	"AIC Support Training Device"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	30-Jun-09	309203.40	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:47 PM	

+="CN80791"	"Supply further quantities of 171 2.5kVA Generators in accord with Contract E1-7940155 clause 1.7"	="Defence Materiel Organisation"	12-May-08	="Batteries and generators and kinetic power transmission"	22-Feb-08	14-Apr-09	1526583.88	=""	="ADVANCED POWER (NSW) PTY LTD"	12-May-08 04:47 PM	

+="CN80793"	"Spares for CRT monitors"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	20-Dec-07	30-May-08	1803203.77	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:47 PM	

+="CN80797"	"Software and Support"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Sep-08	302063.70	=""	="TENFOLD NETWORK SOLUTIONS"	12-May-08 04:47 PM	

+="CN80798"	"This PO has been raised to make payments against Contract 2006/1181421 for Qty 10 Tow Vehicles"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Apr-08	30-Dec-08	3055977.73	=""	="MAN MILITARY VEHICLE SYSTEMS"	12-May-08 04:47 PM	

+="CN80802"	"MANIFOLD ASSEMBLY,HYDRAULIC P/No 11157002 NSN 4730-01-459-5640"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	04-Apr-08	30-Nov-09	1771947.10	=""	="ROLLS ROYCE MARINE AUST PTY LTD"	12-May-08 04:48 PM	

+="CN80803"	"Computing equipment"	="Defence Materiel Organisation"	12-May-08	="Components for information technology or broadcasting or telecommunications"	22-Feb-08	30-Jun-08	363000.00	=""	="ACACIA RESEARCH PTY LTD"	12-May-08 04:48 PM	

+="CN80806"	"Cart .50 Cal 4 Ball / 1 Tracer M17"	="Department of Defence"	12-May-08	="Ammunition"	04-Apr-08	31-Dec-09	2638545.76	=""	="THALES AUSTRALIA"	12-May-08 04:48 PM	

+="CN80823"	"DIAMANTINA FAMP 01/08 (10-28 MARCH 2008)"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	28-Apr-08	487585.48	=""	="THALES AUSTRALIA"	12-May-08 04:48 PM	

+="CN80826"	"In accordance with terms and conditions of the Log Systems Technical Support Services Standing Offer"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	30-Jun-08	529000.00	=""	="DIMENSION DATA LEARNING"	12-May-08 04:49 PM	

+="CN80829"	"Ingres Software Licences"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	21-Dec-08	357195.44	=""	="INGRES AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80833"	"SPARES KIT FOR PMF RADIO"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	12-May-08	616172.08	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80840"	"PROVISION OF FACILITIES FOR DELIVERY OF EMCPM PROGRAM"	="Department of Defence"	12-May-08	="Medical training and education supplies"	29-Jan-08	31-Jan-10	2090003.30	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 04:49 PM	

+="CN80841"	"Replacement of Obsolete Thermal Imaging Capabilty"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	18-Dec-07	30-Jun-08	1443921.29	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:49 PM	

+="CN80857"	"Heavy grade BTN support services."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	18-Dec-07	31-Aug-08	626560.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:50 PM	

+="CN80869"	"SUPPORT TO ISRD"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	18-Dec-07	31-May-08	367901.76	=""	="RLM PTY LTD"	12-May-08 04:50 PM	

+="CN80867"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	31-Jan-10	660000.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80875"	"License Fee & Field Service Representative charges Technology Inc. Business Agreement) for the p"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	27-Feb-08	31-Dec-08	478467.00	=""	="GEAE HOLDINGS INC"	12-May-08 04:51 PM	

+="CN80877"	"HMAS YARRA REFIT DOCKING 2008"	="Department of Defence"	12-May-08	="Military watercraft"	18-Dec-07	31-May-08	2283526.54	=""	="THALES AUSTRALIA"	12-May-08 04:51 PM	

+="CN80878"	"ASSIST WITH DMO FINANCIAL STATEMENTS"	="Department of Defence"	12-May-08	="Published Products"	08-Apr-08	30-Sep-08	364650.00	=""	="WALTER TURNBULL PTY LTD"	12-May-08 04:51 PM	

+="CN80886"	"VOP for AUD milestone payments, 6 to 8A, inv 69080"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Apr-08	1227380.90	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:51 PM	

+="CN80896"	"OIL COOLER & BAECS FOR C130J"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jan-09	1083111.35	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 04:52 PM	

+="CN80901"	"PO raised to cover the BAE CCP No 002/2007 to Stan 9207-001-052 for the period 01Jan to 31 Jan 2008."	="Department of Defence"	12-May-08	="Aircraft"	18-Dec-07	31-Jan-08	497852.32	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:52 PM	

+="CN80905"	"ECCM Study"	="Department of Defence"	12-May-08	="Military science and research"	18-Dec-07	31-Dec-07	375555.13	=""	="JOINT STRIKE FIGHTER-OFFICIAL"	12-May-08 04:52 PM	

+="CN80916"	"EWSP SUITE POD AND CABIN EQUIP OF LEARJET"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	30-Jun-08	469987.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:53 PM	

+="CN80927"	"Part 4 Task 099 Payload Video PCB"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	09-Apr-08	30-Sep-08	339010.36	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:53 PM	

+="CN80930"	"sonobouys"	="Department of Defence"	12-May-08	="Conventional war weapons"	18-Dec-07	31-May-08	1646218.39	=""	="ULTRA ELECTRONICS MARITIME SYSTEMS"	12-May-08 04:53 PM	

+="CN80940"	"OF AAP 7213.006-2-460 SERIES MANUALS"	="Defence Materiel Organisation"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	28-Feb-08	30-Sep-08	336341.47	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:54 PM	

+="CN80953"	"ENGAGEMENT OF PSP"	="Department of Defence"	12-May-08	="Aircraft"	04-Feb-08	30-Jun-09	2046000.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:55 PM	

+="CN80955"	"AIR WARFARE DESTROYER PROGRAM - EMPLOYMENT OF SPECIALIST PLATFORM ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	09-Apr-08	30-Sep-09	597951.56	=""	="JACOBS AUSTRALIA"	12-May-08 04:55 PM	

+="CN80957"	"1. This PO is for a total of 2,859,960 rounds only to build standarded as in  SOW Supplied."	="Department of Defence"	12-May-08	="Ammunition"	04-Feb-08	30-Jun-09	2197485.44	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:55 PM	

+="CN80970"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	27-Feb-08	30-Apr-08	335404.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:56 PM	

+="CN80971"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	15-Jun-08	366457.52	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:56 PM	

+="CN80983"	"FIP4"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	30-Jun-08	363604.72	=""	="AIRFLITE PTY LTD"	12-May-08 04:57 PM	

+="CN80987"	"PACKBOT EOD"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	15-Apr-08	663631.61	=""	="IROBOT CORPORATION"	12-May-08 04:57 PM	

+="CN80992"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	764427.10	=""	="SUN MICROSYSTEMS"	12-May-08 04:57 PM	

+="CN80997"	"THIS ORDER IS PLACED IAW AASPO CAPO 16/07"	="Department of Defence"	12-May-08	="Specialty aircraft"	04-Feb-08	15-Jun-08	868745.39	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:57 PM	

+="CN80998"	"Fitout"	="Defence Materiel Organisation"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Feb-08	30-Jun-08	8000000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:58 PM	

+="CN81032"	"Block 6.1 Upgrade Program Simulator Engineering Change Proposal"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	06-Aug-08	335000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:00 PM	

+="CN81046"	"NOTE: ORDER RAISED AGAINST CONTRACT CONL074 AND ST"	="Department of Defence"	12-May-08	="Fire fighting equipment"	04-Feb-08	30-Jun-08	500000.00	=""	="CHUBB FIRE SAFETY LTD"	12-May-08 05:00 PM	

+="CN81047"	"TD048 Woomera Pod Testing"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	322572.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81050"	"Contract N260469"	="Department of Defence"	12-May-08	="Naval weapons"	04-Feb-08	30-Jun-10	7402947.75	=""	="BAE SYSTEMS LAND & ARMAMENTS INC."	12-May-08 05:01 PM	

+="CN81063"	"POC: AARON JOY CONTACT: 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	1125674.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	12-May-08 05:01 PM	

+="CN81064"	"SUPPLY ONE LST PROPELLER HUB HMAS KANIMBLA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Feb-08	30-Jun-08	418406.56	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:01 PM	

+="CN81069"	"Contractor required to perform works as Purchase O MAXIMO Phase 2 - Implemetation and as summarised"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	15-Sep-08	518654.40	=""	="THALES AUSTRALIA"	12-May-08 05:01 PM	

+="CN81035-A9"	" Provision of Adult Migrant English Services "	="Department of Immigration and Citizenship"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Jul-03	30-Jun-11	22000000.00	=""	="Canberra Institute of Technology"	12-May-08 05:02 PM	

+="CN81102"	"HUGPH3.2 S&Q#21"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	03-Jun-08	4017580.52	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 05:03 PM	

+="CN81106"	"HUGPH3.2 S&Q#22"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	07-May-08	3857515.14	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 05:03 PM	

+="CN81109"	"PSP -Contract Support  to conduct a study for the Spectrum Management software tool."	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Jun-08	313900.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:03 PM	

+="CN81117"	"DSTO tasks"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	19-Dec-07	30-Jun-08	480000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:03 PM	

+="CN81121"	"PROTECTIVE CLOTHING - SPECIAL PURPOSE"	="Department of Defence"	12-May-08	="Clothing"	19-Dec-07	30-Jun-08	367645.47	=""	="BLP TRAINING & SERVICES"	12-May-08 05:04 PM	

+="CN81138"	"**For Payment Purposes Only**"	="Department of Defence"	12-May-08	="Aircraft"	02-Feb-08	01-Jan-12	525210.00	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	12-May-08 05:04 PM	

+="CN81139"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	26-Nov-07	30-Jun-08	383672.71	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:04 PM	

+="CN81144"	"ORDER RAISED TO PAY NEW ZEALAND NAVY FOR FUEL SUPP AUSTRALIAN NAVY IN FY 07/08."	="Defence Materiel Organisation"	12-May-08	="Fuels"	19-Feb-08	30-Jun-08	1744270.14	=""	="ACCOUNTS RECEIVABLE ADMINISTRATOR"	12-May-08 05:04 PM	

+="CN81145"	"PROVISION OF PROFESSIONAL CERTIFICATION AND SHIP CLASSIFICATION BY GERMANISCHER LLOYD (AUST) P/L"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	01-Oct-13	3531000.00	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	12-May-08 05:05 PM	

+="CN81147"	"hmas mermaid and paluma assisted maintenance perio"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	26-Nov-07	31-Dec-07	321865.19	=""	="G A GLANVILLE & CO"	12-May-08 05:05 PM	

+="CN81150"	"This purchase order has been raised in accordance terms and conditions and as per your quote 5888 (R"	="Department of Defence"	12-May-08	="Flight communications related systems"	19-Dec-07	30-Jun-08	415522.01	=""	="CAPEWELL COMPONENTS COMPANY LLC"	12-May-08 05:05 PM	

+="CN81151"	"CAPABILITY RETENTION ADDITIONAL SUPPORT SERVICES REQUIREMENT"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	30-Jun-08	1968549.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:05 PM	

+="CN81154"	"JSM Study"	="Department of Defence"	12-May-08	="Military science and research"	19-Dec-07	15-Jul-08	2047394.32	=""	="JOINT STRIKE FIGHTER-OFFICIAL"	12-May-08 05:05 PM	

+="CN81158"	"Fire & Explosion Suppression System-Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	19-Dec-07	30-Jun-08	2675927.71	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:05 PM	

+="CN81184"	"DELIVERY OF EDUCATION PROGRAM FOR THE EXECUTIVE MASTERS IN COMPLEX PROJECT MANAGEMENT"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	20-Feb-08	30-Jun-08	1127500.00	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 05:06 PM	

+="CN81187"	"HUGPH3.1 IM&MC CCP#1 USD Payment"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	30-Nov-07	702266.09	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81190"	"TD-045"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	30-Jun-09	461065.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:06 PM	

+="CN81196"	"URS 084 - Develop Container Association"	="Defence Materiel Organisation"	12-May-08	="Software"	19-Feb-08	30-Jun-08	419256.20	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:07 PM	

+="CN81197"	"Dry Sachet - Pepper, Fruit Grains, Noodles,Coffee, Milk, Curry Powder"	="Department of Defence"	12-May-08	="Instant mixes and supplies"	18-Dec-07	31-Oct-08	414673.54	=""	="MULTI-PACK LTD"	12-May-08 05:07 PM	

+="CN81221"	"Part 4 Task 070 LSTU"	="Defence Materiel Organisation"	12-May-08	="Launch vehicles and rockets"	19-Feb-08	12-Sep-08	634134.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:08 PM	

+="CN81224"	"Annual software maintenance fees for SMARTSTREAM for FALCON finance application"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	31-Dec-08	326642.89	=""	="GEAC COMPUTERS PTY LTD"	12-May-08 05:08 PM	

+="CN81234"	"Mount Resilient"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	23-Jan-08	14-Mar-08	301251.33	=""	="GENERAL ELECTRIC COMPANY DBA GE DIV"	12-May-08 05:08 PM	

+="CN81245"	"This Purchase Order is raised in accordance with t conditions of the HUGPH2.2 Prime Contract C338399"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	19-Dec-07	30-Jun-10	22946598.96	=""	="BOEING COMPANY THE"	12-May-08 05:09 PM	

+="CN81255"	"DTS No. 15 NROC Remote Control Terminal (RCT) Equipment breakout"	="Department of Defence"	12-May-08	="Electrical components"	23-Nov-07	28-Feb-08	348814.09	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:09 PM	

+="CN81264"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	404750.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81266"	"iSMART Licence and Annual Maintenance"	="Department of Defence"	12-May-08	="Detective services"	23-Jan-08	31-Dec-08	519235.20	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	12-May-08 05:10 PM	

+="CN81271"	"ASD/HSD ICAF Phase 4."	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Jun-08	550000.00	=""	="WALTER TURNBULL PTY LTD"	12-May-08 05:10 PM	

+="CN81284"	"TS4113-4 HMAS ARUNTA GPS TEMPORARY UPGRADE"	="Department of Defence"	12-May-08	="Military watercraft"	23-Jan-08	30-Jun-08	822123.34	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:10 PM	

+="CN81297"	"Procurement of Small Load Unit"	="Department of Defence"	12-May-08	="Containers and storage"	25-Nov-07	30-Jun-09	3154240.18	=""	="OZKOR PTY LTD"	12-May-08 05:11 PM	

+="CN81301"	"Provision of Legal Services"	="Defence Materiel Organisation"	12-May-08	="Legal services"	18-Feb-08	30-Jun-08	582994.83	=""	="PHILLIPS FOX SYDNEY"	12-May-08 05:11 PM	

+="CN81304-A1"	"KAZ Support to GWEO - NEXUS RFQTS 2724"	="Defence Materiel Organisation"	12-May-08	="Management support services"	18-Feb-08	30-Jun-10	602684.57	=""	="KAZ GROUP PTY LTD"	12-May-08 05:11 PM	

+="CN81307"	"part 4 task 103"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	18-Feb-08	18-Aug-08	331444.72	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81342"	"ARM-002, ARM-012, ARM-031 FLARES AP3-C"	="Department of Defence"	12-May-08	="Ammunition"	23-Jan-08	30-May-08	558648.50	=""	="ARMTEC COUNTERMEASURES COMPANY"	12-May-08 05:14 PM	

+="CN81344"	"Diesel Fuel required for 1 Brigade in Support of E ***"	="Defence Materiel Organisation"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	21-Feb-08	30-Jun-08	539781.00	=""	="PARNELL MOGAS PTY LTD"	12-May-08 05:14 PM	

+="CN81353-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	21-Mar-11	1206013.13	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:14 PM	

+="CN81356-A1"	"Ship technical services"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	10-Sep-09	3090878.41	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:14 PM	

+="CN81359-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	24-Jun-11	4634903.66	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:14 PM	

+="CN81369"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaging materials"	22-Jan-08	30-Jun-09	597505.68	=""	="NCI SPECIALTY METAL PRODUCTS"	12-May-08 05:15 PM	

+="CN81374"	"TS 4039-4 HMAS TOOWOOMBA SRA01/IMAV02 Generation P"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	4674875.70	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:15 PM	

+="CN81378"	"Preparation of a Capability Definition Document"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-Jun-08	525764.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:15 PM	

+="CN81381"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	07-Mar-08	420495.32	=""	="PICO AUSTRALIA PTY LTD"	12-May-08 05:16 PM	

+="CN81385"	"ASSISTANCE WITH GFS OBLIGATIONS"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Nov-07	30-Nov-08	312000.00	=""	="NOVA AEROSPACE"	12-May-08 05:16 PM	

+="CN81386"	"Repairs and Overhaul"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-11	5368354.28	=""	="STANDARD AERO AUSTRALIA"	12-May-08 05:16 PM	

+="CN81388"	"DIRECTOR ARTILLERY L1A2 CASED"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	28-Nov-07	30-Jun-08	473965.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 05:16 PM	

+="CN81394"	"Project Coordination Support"	="Department of Defence"	12-May-08	="Project management"	28-Nov-07	06-Jun-08	423550.00	=""	="UXC LIMITED"	12-May-08 05:16 PM	

+="CN81398"	"1190-4 MODIFICATION TO NIXIE DOUBLE DRUM WINCH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	31-Jan-10	2499932.60	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81401"	"Additional LAND134 PH1 Relocation Services"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	21-Feb-08	31-Dec-08	889900.00	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 05:17 PM	

+="CN81410"	"URS 067 - Development of Weapon Kitting"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	30-Jun-08	382890.20	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:17 PM	

+="CN81417"	"AIRCRAFT MAINTENANCE SUPPORT -DESIGNATED R3 STRUCTURAL SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	25-Jan-08	30-Jun-09	467962.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:17 PM	

+="CN81419"	"ARMY UTILITY WORKBOAT TRAILERS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	1211218.80	=""	="HAULMARK TRAILERS AUST"	12-May-08 05:18 PM	

+="CN81439"	"LIFTING LUG AND ADDITIONAL WORK ON THE BRIDGE ERECTION PROPULSION BOATS"	="Department of Defence"	12-May-08	="Transportation components and systems"	26-Nov-07	30-Sep-08	311315.29	="SON48619"	="BIRDON MARINE PTY LTD"	12-May-08 05:19 PM	

+="CN81445"	"AIRCRAFT ENGINEERING AND MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	26-Nov-07	30-Oct-08	572000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:19 PM	

+="CN81451"	"HMAS GASCOYNE FAMP 01/08  MARCH 2008"	="Department of Defence"	12-May-08	="Military watercraft"	27-Nov-07	01-Apr-08	412025.89	=""	="THALES AUSTRALIA"	12-May-08 05:19 PM	

+="CN81452"	"AMPLIFIER UPGRADE"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Apr-08	542520.00	=""	="ASD TECHNOLOGY PTY LTD"	12-May-08 05:19 PM	

+="CN81457"	"The provision of services for Safety Case for Aust Submarine Escape and Rescue Services (SERS)"	="Department of Defence"	12-May-08	="Safety and rescue water craft"	27-Nov-07	30-Jun-08	757198.02	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 05:19 PM	

+="CN81462"	"CONDITIONS OF CONTRACT: Attached special condition associated documentation. Note: in accordance wit"	="Department of Defence"	12-May-08	="Ammunition"	25-Jan-08	31-Oct-08	985999.84	=""	="DENIS FERRANTI METERS LTD"	12-May-08 05:20 PM	

+="CN81471"	"Combat Load Carrying Equipment"	="Defence Materiel Organisation"	12-May-08	="Clothing"	21-Feb-08	10-Sep-08	810424.46	=""	="EAGLE INDUSTRIES UNLIMITED INC"	12-May-08 05:20 PM	

+="CN81478"	"TS4175-3 COMBAT SYSTEM ENGINEERING CHANGE - REQUIREMENTS ANALYSIS FUNDING"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	396000.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:21 PM	

+="CN81482"	"Ship equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-May-08	426360.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:21 PM	

+="CN81488"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	01-Apr-08	15-Jan-10	8469555.60	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81494"	"Provision of Capability Development Documentation"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Apr-08	30-Jun-09	328002.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 05:23 PM	

+="CN81499"	"CBT/TTC Support to MRH90"	="Department of Defence"	12-May-08	="Aircraft"	24-Jan-08	30-Jun-10	3498112.21	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:23 PM	

+="CN81500"	"PROVISION OF SVCS UNDER HMAS PARRAMATTA SRA03/IMAV 04 FOR MTU DETROIT DIESEL"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Oct-08	574702.32	=""	="MTU DETROIT DIESEL AUSTRALIA"	12-May-08 05:23 PM	

+="CN81507"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	25-Jan-08	31-Jan-08	660053.08	=""	="AIMTEK PTY LTD"	12-May-08 05:24 PM	

+="CN81513"	"PLM-4 Upgrade"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	25-Jan-08	30-Jun-09	892230.91	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	12-May-08 05:24 PM	

+="CN81517"	"RIDGEWAY INVOICES 142191 & 142195"	="Department of Defence"	12-May-08	="Transportation services equipment"	25-Jan-08	31-Jan-08	2015131.29	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:24 PM	

+="CN81528"	"Implementation Of Team Centre (Overlander PROG)"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Apr-08	30-Jun-09	2973207.60	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:26 PM	

+="CN81529"	"SPECIALIST CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Professional engineering services"	24-Jan-08	30-Aug-08	400000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:26 PM	

+="CN81533"	"Review of EO lifing when deployed to the MEAO"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Apr-08	303617.25	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:26 PM	

+="CN81535"	"HACTS SUPPORT -CONSOLE OPERATOR"	="Department of Defence"	12-May-08	="Flight instrumentation"	13-Dec-07	30-Jun-10	3659682.64	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:26 PM	

+="CN81550"	"ORDER RAISED TO REPLACE CANCELLED LINE ITEMS 2, 3, 12, 14, 15 AND 16 ON ROMAN ORDER 4500622261"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	21-Apr-08	02-Apr-09	4916964.80	=""	="ROLLS ROYCE MARINE AUST PTY LTD"	12-May-08 05:27 PM	

+="CN81551"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	409200.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:27 PM	

+="CN81581"	"Replacement of VAX equipment"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	30-Jun-08	402820.00	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 05:29 PM	

+="CN81586"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Oct-08	638750.00	=""	="ACUMEN ALLIANCE"	12-May-08 05:30 PM	

+="CN81588"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	400163.32	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:30 PM	

+="CN81602"	"Engagement of ESP support for Tech Assesor Tasking under DMOSS RFQTS No: 2817"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	31-May-08	321024.00	=""	="GHD PTY LTD"	12-May-08 05:31 PM	

+="CN81632"	"Communication services"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	30-Jun-12	4139300.00	=""	="OPTUS NETWORKS PTY LTD"	12-May-08 05:35 PM	

+="CN81634"	"INTERAGENCY AUTHORIZATION - AUTONOMY IDOL SERVER SOFTWARE"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Dec-07	379600.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:35 PM	

+="CN81636"	"Protected Weapon Stations for Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	17-Dec-07	30-Jun-08	40300000.40	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:35 PM	

+="CN81641"	"HMAS Sydney IMAV 23"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	28-May-08	3105442.88	=""	="THALES AUSTRALIA"	12-May-08 05:36 PM	

+="CN81645"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	30-Jun-08	754521.93	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81646"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Law enforcement"	17-Dec-07	31-May-08	1115053.04	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81647"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	30-Apr-08	1129284.11	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81648"	"Single Man Lift (SML) Trailer modifications."	="Department of Defence"	12-May-08	="Industrial process machinery and equipment and supplies"	17-Dec-07	30-May-08	440143.00	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:37 PM	

+="CN81649"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	28-Mar-08	1052719.02	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81650"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	28-Feb-08	1089418.88	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81653"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	31-Jan-08	1104572.93	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81654"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	31-Dec-07	1055801.02	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81655"	"Fire & Explosion Suppression System-Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	17-Dec-07	30-Jun-08	1683554.40	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:37 PM	

+="CN81656"	"CART RF SEDUCTION"	="Department of Defence"	12-May-08	="Ammunition"	17-Dec-07	02-Feb-09	4205404.86	=""	="CHEMRING AUSTRALIA PTY LTD"	12-May-08 05:38 PM	

+="CN81659"	"PROCUREMENT OF QUANTITY 26 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	14-Dec-07	01-Apr-08	2400426.31	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:38 PM	

+="CN81667"	"JCSE Systems Engineering/Integration Specialist"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Dec-07	17-Dec-08	366014.00	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	12-May-08 05:39 PM	

+="CN81669"	"RIDGEWAY INVOICE 142093 FOR FMS CASE AT-B-UCC"	="Department of Defence"	12-May-08	="Transportation components and systems"	14-Dec-07	30-Dec-07	369478.99	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:39 PM	

+="CN81673"	"MJU -62/B COUNTERMEASURE FLARES"	="Department of Defence"	12-May-08	="Ammunition"	15-Dec-07	30-Jun-08	491226.12	=""	="ATK LAUNCH SYSTEMS INC DBA ATK LAUN"	12-May-08 05:40 PM	

+="CN81674"	"RECEIVER TRANSMITTER RADIO"	="Department of Defence"	12-May-08	="Aircraft"	15-Dec-07	30-Sep-08	549263.10	=""	="RAYTHEON COMPANY"	12-May-08 05:40 PM	

+="CN81679"	"For the Engagement of Engineering ServicesContract Support for JP2048 PH1A Amphib Watercraft Project"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	17-Mar-08	433648.34	=""	="AMOG CONSULTING"	12-May-08 05:41 PM	

+="CN81681"	"External Service Providers"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	442800.01	=""	="DIMENSION DATA LEARNING"	12-May-08 05:41 PM	

+="CN81691"	"Project Management support - NEXUS"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Oct-08	358348.00	=""	="APP CORPORATION PTY LTD"	12-May-08 05:42 PM	

+="CN81692"	"Project Management Support Phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Oct-08	329000.00	=""	="APP CORPORATION PTY LTD"	12-May-08 05:43 PM	

+="CN81698"	"P3 Structural Management Plan Implementation Personnel & Equipment Ramp-Up"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	07-Dec-07	30-Apr-08	716781.73	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 05:43 PM	

+="CN81702"	"Qualitative Evaluation & Electronic Tendering Support Services"	="Department of Defence"	12-May-08	="Management support services"	10-Dec-07	30-Apr-08	345647.28	=""	="SME GATEWAY LIMITED"	12-May-08 05:44 PM	

+="CN81706"	"SPSE - Aircraft Wash Equipment"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	10-Dec-07	30-May-08	459798.25	=""	="BAE SYSTEMS AUSTRALIA - GBP"	12-May-08 05:44 PM	

+="CN81716"	"(CONTRACT:  LEA-CM-2007-029)."	="Department of Defence"	12-May-08	="Intravenous and arterial administration products"	07-Dec-07	30-Aug-08	825000.00	=""	="EDAG AUSTRALIA PTY LTD"	12-May-08 05:46 PM	

+="CN81719"	"Mount Assemblies - Engine"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	07-Dec-07	07-Oct-08	344443.08	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 05:46 PM	

+="CN81722"	"Spares for Deployable Mine Warfare & Clearance Diving Headquarters"	="Department of Defence"	12-May-08	="Hardware"	06-Dec-07	14-Mar-08	425795.78	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 05:46 PM	

+="CN81732"	"Contract Change Proposal"	="Department of Defence"	12-May-08	="Management support services"	07-Dec-07	05-Dec-08	546975.74	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:48 PM	

+="CN81733"	"Engineering support service Design review and Technical Risk Assessment activities"	="Department of Defence"	12-May-08	="Office supplies"	07-Dec-07	14-Nov-08	3000000.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	12-May-08 05:48 PM	

+="CN81741"	"DTS 67 TADRS Contract C338339"	="Department of Defence"	12-May-08	="Electrical components"	07-Dec-07	30-May-08	652953.20	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:49 PM	

+="CN81748"	"THE TERMS AND CONDITIONS DETAILED ON THE ABOVE REF ACCEPTABLE."	="Department of Defence"	12-May-08	="Aircraft master control systems"	12-Dec-07	15-Dec-08	1069335.41	=""	="BAE SYSTEMS CONTROLS INC."	12-May-08 05:50 PM	

+="CN81753"	"Royal Australian Navy (RAN) Role Adaptable Weapons System (RAWS) Agreement for"	="Department of Defence"	12-May-08	="Hardware"	12-Dec-07	30-Jun-08	631769.95	=""	="ROCKWELL COLLINS INC."	12-May-08 05:50 PM	

+="CN81757"	"4502.02 SUPPLY CHAIN REFORM PHASE 2"	="Department of Defence"	12-May-08	="Military watercraft"	11-Dec-07	17-Aug-08	550000.00	=""	="JACOBS AUSTRALIA"	12-May-08 05:51 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val30000to40000.xls
@@ -1,1 +1,542 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75508"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	25-Feb-08	31152.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 08:34 AM	

+="CN75514"	"Install DSN Desktop Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	17-Mar-08	32307.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 08:35 AM	

+="CN75528"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	01-Jun-08	34000.00	=""	="SIRSIDYNIX PTY LTD"	10-May-08 08:36 AM	

+="CN75546"	"STK/INTEGRATION RENEWAL ANNULA SUPPORT - DONGLE STK PROFESSIONAL EDITION RENEWAL ANNUAL SUPPORT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	22-Feb-08	30936.40	=""	="AUSPACE LIMITED"	10-May-08 08:38 AM	

+="CN75568"	"CONTRACT NO: CSI-SC06/2005 MEAT RATIONS"	="Department of Defence"	10-May-08	="Meat and poultry"	06-Feb-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	10-May-08 08:40 AM	

+="CN75571"	"CONTRACT NO: CSI-SC05/2005 FRUITS AND VEGETABLES RATIONS"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	06-Feb-08	30-Jun-08	30000.00	=""	="TOM & FRANKS"	10-May-08 08:41 AM	

+="CN75586"	"COMPLEX PROCUREMENT TRAINING-IAD BRANCH."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Feb-08	30-Jun-08	33308.00	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 08:42 AM	

+="CN75589"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	04-Feb-08	30-Jun-08	31650.00	=""	="CLAYTON UTZ"	10-May-08 08:42 AM	

+="CN75598"	"Allowances for trainers"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Feb-08	15-Feb-08	37458.40	=""	="THE UNITED KINGDOM HYDROGRAPHIC OFF"	10-May-08 08:43 AM	

+="CN75599"	"Software Maintenance"	="Department of Defence"	10-May-08	="Software"	04-Feb-08	15-Feb-08	31680.00	=""	="OPEN SYSTEMS PTY LTD"	10-May-08 08:43 AM	

+="CN75610"	"Computer Products"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	14-Feb-08	32214.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 08:45 AM	

+="CN75613"	"VTC CAPABILITY IS REQUIRED TO SUSTAIN THE DEAKIN VNOC HELPDESK & CONCIERGE SERVICES IAW THE DSVE"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	05-Feb-08	30-Apr-08	34369.31	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 08:45 AM	

+="CN75635"	"POSTGRADUATE SCHOLARSHIP RESEARCH AGREEMENT IN CONJUNCTION WITH pROF. LAKHMI"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Feb-08	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	10-May-08 08:47 AM	

+="CN75640"	"Office supplies"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	29-Feb-08	36367.10	=""	="ASI SOLUTIONS"	10-May-08 08:47 AM	

+="CN75651"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	08-Feb-08	08-Feb-08	35666.40	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:48 AM	

+="CN75658"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	33000.00	=""	="ROUNA MACNIVEN"	10-May-08 08:49 AM	

+="CN75680"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	25-Feb-08	31372.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:51 AM	

+="CN75682"	"NQ2081 - HSPO Comms Room - Kenny Street High Secur"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	07-Feb-08	30-Jun-08	34089.00	=""	="CHUBB ELECTRONIC SECURITY"	10-May-08 08:52 AM	

+="CN75685"	"HACTS Accreditation - Phase 1 Scoping for 78/81WG"	="Department of Defence"	10-May-08	="Aerospace systems and components and equipment"	07-Feb-08	30-Jun-08	37136.40	=""	="MILSKIL PTY LTD"	10-May-08 08:52 AM	

+="CN75707"	"CUSTOM 17" NOTEBOOK BUNDLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	07-Mar-08	31702.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:54 AM	

+="CN75709"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	07-Feb-08	29-Feb-08	37092.07	=""	="SLEEP CITY PENRITH"	10-May-08 08:54 AM	

+="CN75711"	"sra groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	07-Feb-08	30-Jun-08	33000.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 08:54 AM	

+="CN75753"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	25-Feb-08	30-Jun-08	34210.00	=""	="DUPLICATE - USE V ENDOR 1050211"	10-May-08 08:58 AM	

+="CN75759"	"PSAV WORKS A10 CABARLAH"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	25-Feb-08	30-Jun-08	30653.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75760"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	31-Mar-08	32763.17	=""	="IDP EDUCATION AUSTRALIA"	10-May-08 08:59 AM	

+="CN75776"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	07-Mar-08	33440.00	=""	="S-3 CONSULTING PTY LTD"	10-May-08 09:01 AM	

+="CN75785"	"DATE LEARNING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	33660.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	10-May-08 09:02 AM	

+="CN75791"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	06-Mar-08	30000.01	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 09:02 AM	

+="CN75792"	"NAVY CHARTS X 25"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Feb-08	26-Mar-08	31958.30	=""	="GLAMA PAK PTY LTD"	10-May-08 09:02 AM	

+="CN75794"	"Training Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	30-Apr-08	37139.26	=""	="COMPUTING SERVICES"	10-May-08 09:02 AM	

+="CN75809"	"PSP Contractor - Trg Coord"	="Department of Defence"	10-May-08	="Temporary personnel services"	22-Feb-08	27-Jun-08	33770.25	=""	="HAYS PERSONNEL SERVICES"	10-May-08 09:04 AM	

+="CN75811"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	34543.47	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:04 AM	

+="CN75814"	"ASI Engineering Sevices"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	32346.16	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75824"	"FBT INTERIM REVIEW"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	15-Jun-08	38247.00	=""	="ERNST & YOUNG CONSULTING"	10-May-08 09:05 AM	

+="CN75835"	"NDT Engineering"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	37180.25	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:06 AM	

+="CN75836"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	36519.38	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:06 AM	

+="CN75873"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	34186.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:10 AM	

+="CN75876"	"UPGRADE ARCVIEW LICENCES"	="Department of Defence"	10-May-08	="Software"	28-Feb-08	20-Mar-08	37576.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:10 AM	

+="CN75891"	"GROCERIES"	="Department of Defence"	10-May-08	="Meat and poultry products"	26-Feb-08	31-Mar-08	35753.60	=""	="BID VEST BURLEIGH MARR"	10-May-08 09:12 AM	

+="CN75897"	"ONLINE TRAINING DEVELOPMENT"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	16-Jun-08	35005.00	=""	="CATALYST INTERACTIVE"	10-May-08 09:12 AM	

+="CN75902"	"NQ2085 - Frontline Canteen Refurbishment (Building"	="Department of Defence"	10-May-08	="Project management"	26-Feb-08	30-Jun-08	31680.00	=""	="JON KUSKOPF & ASSOCIATES PTY LTD"	10-May-08 09:13 AM	

+="CN75903"	"SN02586 - RMC & HARMAN -Provision of Voice Cabling between SSDS Buildings"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	35000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:13 AM	

+="CN75926"	"COMPLEX PROCUREMENT COURSE"	="Department of Defence"	10-May-08	="Education and Training Services"	28-Feb-08	30-May-08	31733.21	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 09:15 AM	

+="CN75940"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	31-Mar-08	36646.83	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:17 AM	

+="CN75941"	"PROCUREMENT REFERENCE: 1018/07-08 KOBRA HIGH VOLUME INDUSTRIAL SHREDDER"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	18-Feb-08	07-Mar-08	32015.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 09:17 AM	

+="CN75951"	"SPECTRAA - 55B ATOMIC ABSORPTION SPECTRO METER STAND ALONE SYSTEM"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Feb-08	18-Apr-08	33078.10	=""	="VARIAN AUSTRALIA PTY LTD"	10-May-08 09:18 AM	

+="CN75952"	"Colour Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	29-Feb-08	31064.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 09:18 AM	

+="CN75958"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-Jun-08	36484.61	=""	="BOEING AUSTRALIA LTD"	10-May-08 09:18 AM	

+="CN75981"	"Dell Poweredge server"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	07-Mar-08	30798.90	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 09:20 AM	

+="CN75997"	"Manufacture housing"	="Department of Defence"	10-May-08	="Fabricated structural assemblies"	16-Nov-07	02-Jan-08	30214.80	=""	="LEVETT ENGINEERING PTY LTD"	10-May-08 09:58 AM	

+="CN76012"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	39751.00	=""	="MINTER ELLISON"	10-May-08 09:59 AM	

+="CN76027"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76031"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	03-Dec-07	31659.10	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76035"	"Web Development Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	30-Aug-08	30744.65	=""	="INFOFOCUS AUSTRALIA"	10-May-08 10:00 AM	

+="CN76057"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Mar-08	38255.80	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:02 AM	

+="CN76066"	"Complex Procurement 0708-187 under Standing Service Category:Level 2,  Aeronautical Engineer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	21-Nov-07	30-Jun-08	32972.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:02 AM	

+="CN76067"	"FP&E Related Latent Conditions Western Region"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	17-Jan-08	30-Jun-08	33301.51	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:02 AM	

+="CN76074"	"IP GATEWAY ALLOWS FOR THE DSVE TO INTERCONNECT TO IP & ISDN VIDEO CONFERENCES."	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	21-Nov-07	30-Jun-08	37715.44	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:03 AM	

+="CN76077"	"Develop and Certify DSTO IT Security Architecture for SCIS"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	26-Jun-08	34100.00	=""	="KAZ GROUP PTY LTD"	10-May-08 10:03 AM	

+="CN76078"	"HIRE OF DEMOUNTABLE BUILDING IN SUPPORT OF RTF4 (O BASE GALLIPOLI BARRACKS ENOGGERA, DEC 07 - APR 08"	="Department of Defence"	10-May-08	="Prefabricated structures"	21-Nov-07	01-Apr-08	37451.96	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	10-May-08 10:03 AM	

+="CN76112"	"ENHANCED LANDFORCE-STAGE 1 MCGRATH NICOL"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	26-Nov-07	30-Jun-08	38500.00	=""	="MCGRATH NICOL"	10-May-08 10:05 AM	

+="CN76133"	"PROVISION OF REHAB, COUNSELLING SERVICES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Apr-08	30-Dec-08	33000.00	=""	="LACEY PERSONNEL CONSULTING"	10-May-08 10:06 AM	

+="CN76140"	"CONTACT: S. CAUSER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	02-Jan-08	31213.57	=""	="SUN MICROSYSTEMS"	10-May-08 10:06 AM	

+="CN76143"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	31968.20	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:06 AM	

+="CN76165"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	30-Jun-08	39560.50	=""	="MINTER ELLISON"	10-May-08 10:07 AM	

+="CN76167"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Nov-07	34748.93	=""	="SUN MICROSYSTEMS AUST PTY LTD"	10-May-08 10:08 AM	

+="CN76179"	"TABLES"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jun-08	30272.00	=""	="EASTERN COMMERCIAL FURNITURE PTY"	10-May-08 10:08 AM	

+="CN76190"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	39999.99	=""	="BRODTMANN COMMUNICATIONS"	10-May-08 10:09 AM	

+="CN76198"	"CULTANA TRAINING AREA EXPANSION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	30-Jun-08	33000.00	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:09 AM	

+="CN76212"	"WATER & SEWER RATES"	="Department of Defence"	10-May-08	="Water and wastewater treatment supply and disposal"	11-Feb-08	30-Jun-08	33880.45	=""	="SYDNEY WATER CORPORATION"	10-May-08 10:10 AM	

+="CN76236"	"HQJOC PROJECT - GHD PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	32890.00	=""	="GHD PTY LTD"	10-May-08 10:11 AM	

+="CN76243"	"OFFICE ROTARY CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Nov-07	14-Dec-07	39303.00	=""	="STURDY FRAMAC"	10-May-08 10:12 AM	

+="CN76260"	"Consultancies for developing projects for Defence Support Central & Northern NSW"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Dec-06	30-Jun-08	38248.30	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:13 AM	

+="CN76308"	"Haz Sub Management Review-HMAS Mermaid, Benalla Haz Sub Risk Assessment-HMAS Newcastle"	="Department of Defence"	10-May-08	="Personal safety and protection"	12-Nov-07	30-Jun-08	32388.38	=""	="COAST TO COAST SAFETY SOLUTIONS"	10-May-08 10:15 AM	

+="CN76332"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	16-Apr-08	33440.00	=""	="ROYAL AUST COLLEGE OF SURGEONS"	10-May-08 10:17 AM	

+="CN76350"	"Woomera Stage 3 Remediation and Validation Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Sep-07	30-Jun-08	37353.80	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 10:18 AM	

+="CN76379"	"MCD TG QANTAS Invoice 30NOV07"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	17-Jan-08	35464.45	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:19 AM	

+="CN76395"	"QANTAS PAYMENT FOR 4 FD REGT"	="Department of Defence"	10-May-08	="Powered fixed wing aircraft"	30-Nov-07	21-Jan-08	37276.88	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:20 AM	

+="CN76412"	"GAS REQUIREMENTS FOR FY 07/08"	="Department of Defence"	10-May-08	="Elements and gases"	23-Apr-08	30-Jun-08	38500.00	=""	="BOC LIMITED"	10-May-08 10:21 AM	

+="CN76416"	"OP FREIGHT AND CARTAGE 2OCU"	="Department of Defence"	10-May-08	="Transportation services equipment"	04-Jul-07	30-Jun-08	33000.00	=""	="STAR TRACK EXPRESS"	10-May-08 10:22 AM	

+="CN76420"	"Vacation Care"	="Department of Defence"	10-May-08	="Office supplies"	14-Apr-08	30-Jun-08	31000.00	=""	="YMCA OF CANBERRA"	10-May-08 10:22 AM	

+="CN76442"	"SHORT TERM VEHICLE HIRE FLLA K"	="Department of Defence"	10-May-08	="Motor vehicles"	24-Dec-07	26-Dec-07	35201.14	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:23 AM	

+="CN76443"	"LIF PROJECT MAINTENANCE & REPAIR FOR ARISINGS 29-2  & FUTURE ARISINGS DURING TEST RUNNING PH"	="Department of Defence"	10-May-08	="Aircraft"	30-Jun-08	30-Jun-08	38500.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 10:23 AM	

+="CN76472"	"AIR FARES"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	21-Dec-07	33906.54	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:25 AM	

+="CN76485"	"VEHICLE HIRE NOVEMBER 2007"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	24-Nov-07	15-Jan-08	32389.15	=""	="HERTZ AUSTRALIA PTY LTD"	10-May-08 10:26 AM	

+="CN76486"	"AIR MOVT OP CATALYST"	="Department of Defence"	10-May-08	="Aircraft"	29-Nov-07	31-Dec-07	39053.56	=""	="ALLTRANS INTERNATIONAL"	10-May-08 10:26 AM	

+="CN76533"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	27-Dec-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:28 AM	

+="CN76539"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Jan-08	04-Feb-08	39503.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76557"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	30-Jun-08	37370.00	=""	="MINTER ELLISON"	10-May-08 10:30 AM	

+="CN76561"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	39712.20	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76612"	"AIR FORCE GRADUATE OFFICER PUBLIC RELATIONS PROGRA"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Nov-07	30-Jun-08	33264.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 10:33 AM	

+="CN76622"	"CATALYST 3750 24 10/100/1000 4 SFP ENH CD MULTIPLA MULTIPLAYER CISCO STACK WISE STACKING CABLE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	27-Nov-07	30-Nov-07	32709.75	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 10:34 AM	

+="CN76625"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2400878"	="Department of Defence"	10-May-08	="Legal services"	29-Mar-07	22-Jan-08	32608.40	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:34 AM	

+="CN76647"	"RANDHAWA KITTU DUMMY PAYMENT"	="Department of Defence"	10-May-08	="Legal services"	31-Jul-06	23-Jan-08	37455.51	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:36 AM	

+="CN76649"	"TAXI FARES"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	07-Jan-08	39265.34	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:36 AM	

+="CN76650"	"ADDITIONAL CONPUTATIONAL NODES TO EXPAND EXISTING  COMPUTER CLUSTER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	11-Feb-08	31768.00	=""	="ALEXANDER TECHNOLOGY"	10-May-08 10:36 AM	

+="CN76653"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	31250.93	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76654"	"S4930, WR 300026038, Upgrade existing security cam more effective coverage of entry points, perimete"	="Department of Defence"	10-May-08	="Security and control equipment"	28-Nov-07	30-Jun-08	35750.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:36 AM	

+="CN76657"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	21-Jan-08	32793.78	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76661"	"QANTAS ACCOUNT"	="Department of Defence"	10-May-08	="Transportation services equipment"	19-Dec-07	31-Dec-07	31549.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:36 AM	

+="CN76667"	"ARTC DECEMBER 2007 CABCHARGE STATEMENT"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	07-Jan-08	22-Jan-08	35644.25	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:37 AM	

+="CN76670"	"MAWS HIL Truthing System Study"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	29-Feb-08	33010.56	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 10:37 AM	

+="CN76677"	"To transport periscope to HMAS STIRLING from Adela"	="Department of Defence"	10-May-08	="General building construction"	22-Dec-07	17-Dec-08	30918.25	=""	="TNT EXPRESS"	10-May-08 10:37 AM	

+="CN76683"	"TIMOR TELECOM"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	29-Jan-08	29-Jan-08	35902.93	=""	="TIMOR TELECOM"	10-May-08 10:38 AM	

+="CN76706"	"TECHNICAL REPORT & SIMULATION SOFTWARE (MATLAB)"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	03-Dec-07	31-Dec-07	39600.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 10:39 AM	

+="CN76709"	"US LANDING FEES - TALISMAN SABRE 2007"	="Department of Defence"	10-May-08	="Aircraft"	20-Dec-07	30-Jun-10	30826.65	=""	="ROCKHAMPTON CITY COUNCIL"	10-May-08 10:39 AM	

+="CN76718"	"ENGINEERING SERVICES"	="Department of Defence"	10-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Dec-07	21-Dec-07	33715.00	=""	="TAYCOR INTERNATIONAL PTY LTD"	10-May-08 10:40 AM	

+="CN76727"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	32725.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:40 AM	

+="CN76739"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	31548.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76743"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	03-Dec-07	21-Dec-07	33000.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:41 AM	

+="CN76750"	"02-231353 31AUG07 LINE ITEMS 4572 - 4593"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	32172.84	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:41 AM	

+="CN76757"	"CONTACT PAUL MEULENBROEK 08 8935 4622 WR: 150134134"	="Department of Defence"	10-May-08	="Power generation"	04-Dec-07	30-Jun-08	31700.00	=""	="PDL TOLL"	10-May-08 10:42 AM	

+="CN76761"	"Design of the Training & Education Standards officer Course TMP"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Dec-07	27-Jun-08	32679.90	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	10-May-08 10:42 AM	

+="CN76775"	"LCR Meter"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Dec-07	18-Dec-07	32719.56	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 10:43 AM	

+="CN76799"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	04-Dec-07	30-Jun-08	31399.34	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:44 AM	

+="CN76801"	"Consultancy for the drawings and specifications for the FIMA and FLSE buildings at HMAS Cairns"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	30-Nov-07	30-Jun-08	37400.00	=""	="SPOTLESS"	10-May-08 10:44 AM	

+="CN76808"	"AFPO 12 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	31145.89	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76815"	"IVS ANNUAL MAINTENANCE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	31-Dec-07	31658.00	=""	="ACOUSTIC IMAGING"	10-May-08 10:45 AM	

+="CN76819"	"blade controllers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	33723.80	=""	="IBM AUSTRALIA LTD"	10-May-08 10:45 AM	

+="CN76832"	"QANTAS BILL"	="Department of Defence"	10-May-08	="Recreational aircraft"	29-Oct-07	30-Nov-07	36288.43	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:46 AM	

+="CN76837"	"CAB FARES"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Oct-07	15-Oct-07	39756.29	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:46 AM	

+="CN76840"	"FORKLIFT TRUCK TCM MODEL FG25T3 DUAL FUEL"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	30-Nov-07	30-Jan-08	30520.60	=""	="N T P FORKLIFTS PTY LTD"	10-May-08 10:46 AM	

+="CN76842"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	30-Nov-07	30-Jun-08	39600.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 10:47 AM	

+="CN76858"	"SN02730 - - Install 4 additional workstati"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	30630.60	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:48 AM	

+="CN76868"	"POC: James Ahern PHONE: 02 6265 0962"	="Department of Defence"	10-May-08	="Office supplies"	02-Dec-07	12-Dec-07	31246.60	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:48 AM	

+="CN76872"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	31-Dec-07	34673.12	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:49 AM	

+="CN76878"	"Marine Seismic Reflection Profilinng Survey"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	03-Dec-07	21-Dec-07	39050.00	=""	="GOLDER ASSOCIATES PTY LTD"	10-May-08 10:49 AM	

+="CN76886"	"Oversea Travel in support of LAND17PH1"	="Department of Defence"	10-May-08	="Domestic appliances"	30-Nov-07	10-Dec-07	37330.07	=""	="RAYTHEON COMPANY"	10-May-08 10:49 AM	

+="CN76902"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	07-Dec-07	38500.00	=""	="INNOVATION TECHNOLOGY SERVICES"	10-May-08 10:50 AM	

+="CN76913"	"PROTOTYPE MWD MODULE FITTED TO TOYOTA R07001"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	16-Nov-07	28-Dec-07	37950.00	=""	="IB SUPPLIES PTY LTD"	10-May-08 10:51 AM	

+="CN76918"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Paper Materials and Products"	22-Nov-07	22-Nov-07	33133.07	=""	="NATIONAL CAPITAL PRINTING"	10-May-08 10:51 AM	

+="CN76934"	"APPSENSE MANAGEMENT SUITE & SOFTWARE"	="Department of Defence"	10-May-08	="Software"	21-Nov-07	23-Nov-07	39168.80	=""	="COMMANDER (SA/WA) PTY LTD"	10-May-08 10:52 AM	

+="CN76940"	"LIVERPOOL MILITARY AREA HIGH VOLTAGE ELECTRICAL DI UPGRADE"	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	22-Nov-07	30-Jun-08	37840.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:53 AM	

+="CN76945"	"Paymen tof ADC Weston invoices fro Transportables"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Nov-07	30-Jun-08	35177.93	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:53 AM	

+="CN76952"	"LCD Screens"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	14-Dec-07	34771.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:53 AM	

+="CN76953"	"Support RSAF Deployment 01-08 Oct 07"	="Department of Defence"	10-May-08	="Aircraft"	08-Nov-07	30-Jun-08	30447.87	=""	="DEFENCE SUPPORT CENTRE WOOMERA (DSC"	10-May-08 10:53 AM	

+="CN77012"	"P&EE PORT WAKEFIELD:REPLACEMENT EXPLOSIVES STOREHO TO PROVIDE A HERITAGE IMPACT ASSESSMENT REPOR"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	33000.00	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 11:42 AM	

+="CN77013"	"373 NVIS FACILITY UPGRADE"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jan-08	30-Jun-08	34569.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 11:42 AM	

+="CN77054"	"STEP ATTENUATOR FPR PSG ANALOG ANALOG SIGNAL GENERATOR , PULSE MODULATION OPTION FOR PSG SIGNAL"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	19-Feb-08	33169.41	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:44 AM	

+="CN77065"	"HP Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	37876.41	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:45 AM	

+="CN77071"	"PROVISION OF AGL EQUIPTMENT-AIRFIELD LIGHTING MAIN POINT COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36510.62	=""	="THORN DNT AIRFIELD LIGHTING"	10-May-08 11:45 AM	

+="CN77073"	"PROVISION OF AGL CABLE-AIRFIELD LIGHTING MAINTENAN COOK,VIC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36104.75	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	10-May-08 11:45 AM	

+="CN77075"	"RAAF AMBERLEY STAGE 3-DELIVERY PHASE FUEL FARM DESIGN-DELIVERY PHASE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	36360.50	=""	="MOORE CONSULTING & ENGINEERING"	10-May-08 11:46 AM	

+="CN77080"	"PROFESSIONAL SERVICES PROVIDER - CONTRACTOR"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	16-Jan-08	30-Jun-08	33000.00	=""	="AERO SUPPORT GROUP PTY LTD"	10-May-08 11:46 AM	

+="CN77089"	"Additional warehousing labour costs to support CMSS vehicles."	="Department of Defence"	10-May-08	="Transport operations"	15-Jan-08	19-Dec-08	33352.00	=""	="TENIX TOLL DEFENCE LOGISTICS"	10-May-08 11:47 AM	

+="CN77091"	"400 batteries to support PDETS at DIDS sites nationally."	="Department of Defence"	10-May-08	="Electrical components"	15-Jan-08	28-Feb-08	30360.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:47 AM	

+="CN77100"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	04-Feb-08	29-May-08	34000.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 11:47 AM	

+="CN77103"	"LARGE FORMAT OFFSET PRINTING"	="Department of Defence"	10-May-08	="Paper Materials and Products"	15-Jan-08	15-Feb-08	38276.70	=""	="PETTARAS PRESS PTY LTD"	10-May-08 11:48 AM	

+="CN77106"	"Venue Hire, Accommodation & Catering for conf"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	22-Feb-08	33772.86	=""	="FLOWERDALE CONFERENCES PTY LTD"	10-May-08 11:48 AM	

+="CN77107"	"VEHICLE LEASE"	="Department of Defence"	10-May-08	="Motor vehicles"	15-Jan-08	15-Jan-08	39265.09	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:48 AM	

+="CN77109"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	15-Feb-08	37154.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:48 AM	

+="CN77123"	"Transport of cargo Darwin - Bulman - ISO OP Outrea"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	34658.11	=""	="PDL TOLL"	10-May-08 11:49 AM	

+="CN77132"	"Security Locks"	="Department of Defence"	10-May-08	="Containers and storage"	31-Jan-08	05-Mar-08	30662.94	=""	="ARCHITECTURAL HARDWARE"	10-May-08 11:50 AM	

+="CN77143"	"Supply & Install Keywatch Management System"	="Department of Defence"	10-May-08	="Security and control equipment"	31-Jan-08	14-Feb-08	30910.00	=""	="KEYWATCH SYSTEMS QUEENSLAND"	10-May-08 11:51 AM	

+="CN77146"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	16-Jan-08	30-Jun-08	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 11:51 AM	

+="CN77166"	"Technical equipment"	="Department of Defence"	10-May-08	="Forensic equipment and supplies and accessories"	16-Jan-08	31-Jan-08	32631.45	=""	="TEEL INC"	10-May-08 11:52 AM	

+="CN77171"	"S5180, WR 300069263. Sydney Central Infrastructure Technical Services Aspects. Carry out IA investig"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	32872.13	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 11:52 AM	

+="CN77191"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	30-Mar-08	34146.56	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:54 AM	

+="CN77199"	"Seminar"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Feb-08	29-Feb-08	35471.00	=""	="ANU - FINANCE & BUSINESS SERVICES"	10-May-08 11:54 AM	

+="CN77205"	"AMBERLEY DOMESTIC PRECINCT SITE REMEDIATION. ENGAGE BAULDERSTONE HORNIBROOK AS MANAGING CONTRAC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	33000.00	=""	="A W BAULDERSTONE HOLDINGS PTY LTD"	10-May-08 11:54 AM	

+="CN77206"	"ADVERTISING EXPENSES (WILL APPEAR IN 7 ADITIONS OF NEWSPAPERS."	="Department of Defence"	10-May-08	="Advertising"	21-Jan-08	21-Jan-08	33000.00	=""	="HMA BLAZE PTY LTD"	10-May-08 11:54 AM	

+="CN77215"	"Laser stinger II arm system"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	38016.00	=""	="SCANNING & INSPECTION PTY LTD"	10-May-08 11:55 AM	

+="CN77216"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	33880.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	10-May-08 11:55 AM	

+="CN77226"	"Giles Uni Scholarship"	="Department of Defence"	10-May-08	="Market research"	31-Jan-08	04-Feb-08	34000.00	=""	="UNI OF ADELAIDE - STUDENT"	10-May-08 11:56 AM	

+="CN77238"	"QSA Global Sources"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	23-Jan-08	28-Apr-08	32958.82	=""	="AUSTRALIAN RADIATION SERVICES PTY L"	10-May-08 11:56 AM	

+="CN77254"	"Establish Chem Alert Stock Management module"	="Department of Defence"	10-May-08	="Plastic and chemical industries"	23-Jan-08	28-Feb-08	32450.00	=""	="RISK MANAGEMENT TECHNOLOGIES"	10-May-08 11:57 AM	

+="CN77257"	"AS PER QUOTE DATED 6 DEC 07 ATT SONIA FURNITURE FOR SGT MESS RAAF DARWIN"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	29-Feb-08	30795.06	=""	="JAPE FURNISHING SUPERSTORE"	10-May-08 11:57 AM	

+="CN77269"	"Supply of Comms cabinets for Bldg upgrade at Amb."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	26-Jun-08	34991.03	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 11:58 AM	

+="CN77285"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77286"	"RECUITMENT NON ONGOING APS3 POSITION"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	30-Jan-09	37488.58	=""	="CAREERS MULTILIST LIMITED"	10-May-08 11:59 AM	

+="CN77289"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	21-Jan-08	30-Jun-08	34496.00	=""	="DRAKE INTERNATIONAL"	10-May-08 11:59 AM	

+="CN77293"	"Studies supporting Defence logistics"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	23-Jan-08	31-Mar-08	38500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 12:00 PM	

+="CN77337"	"OMNI ANTENNA  WITH AUDIO / TRANSMITTER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Jan-08	30-Jan-08	35891.99	=""	="LINCAST AUSTRALIA"	10-May-08 12:02 PM	

+="CN77343"	"Headset"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	14-Mar-08	30072.90	=""	="VR SOLUTIONS PTY LTD"	10-May-08 12:03 PM	

+="CN77345"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Jan-08	31-Dec-08	40000.00	=""	="AUSTRALIAN MILITARY HISTORY"	10-May-08 12:03 PM	

+="CN77355"	"COMPUTER TRAINING FOR ARTC RECRUITS"	="Department of Defence"	10-May-08	="Vocational training"	22-Jan-08	31-Dec-08	36630.00	=""	="CLASS TRAINING"	10-May-08 12:03 PM	

+="CN77378"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77379"	"HSM - AHS NT/K"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	31-Dec-10	39864.00	=""	="AVPHARM HEALTH PTY LTD"	10-May-08 12:05 PM	

+="CN77382"	"HIRE OF STAFF IAW DRAKE STANDING OFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	31857.10	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77386"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Jan-08	30-Jun-08	32980.20	=""	="DRAKE INTERNATIONAL"	10-May-08 12:05 PM	

+="CN77391"	"Provision of Support to Assist in Stocktake"	="Department of Defence"	10-May-08	="Business administration services"	22-Jan-08	30-Apr-08	31697.70	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 12:06 PM	

+="CN77399"	"Delivery of Dental Training"	="Department of Defence"	10-May-08	="Dental equipment and supplies"	22-Jan-08	02-Feb-09	39600.00	=""	="DEPARTMENT OF EMPLOYMENT & TRAINING"	10-May-08 12:06 PM	

+="CN77401"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	28-Feb-08	36520.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 12:06 PM	

+="CN77437"	"sra groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	10-Jan-08	30-Jun-08	35200.00	=""	="BURLEIGH MARR DISTRIBUTIONS"	10-May-08 12:08 PM	

+="CN77460"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	33516.47	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:09 PM	

+="CN77469"	"AUDIO VISUAL EQUIPMENT"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	25-Jan-08	25-Jan-08	38765.95	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	10-May-08 12:10 PM	

+="CN77472"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	32078.64	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:10 PM	

+="CN77478"	"DELL MONITORS & DELL FLATSCREEN PANEL MONITOR"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	17-Jan-08	31669.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 12:10 PM	

+="CN77482"	"GS TVL STH - GYM 307-07/08"	="Department of Defence"	10-May-08	="Fitness equipment"	25-Jan-08	01-Feb-08	31928.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:11 PM	

+="CN77493"	"Environmental Clearance EDN Pks - Stages5, 8, 10 Technical Authority: Mark Donaghey"	="Department of Defence"	10-May-08	="Environmental Services"	10-Jan-08	30-Jun-08	33132.11	=""	="PARSONS BRINCKERHOFF"	10-May-08 12:11 PM	

+="CN77513"	"Admin support."	="Department of Defence"	10-May-08	="Temporary personnel services"	29-Jan-08	27-Jun-08	31539.75	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	10-May-08 12:12 PM	

+="CN77517"	"SPONSORSHIP FAMILY DAY CARE"	="Department of Defence"	10-May-08	="Education and Training Services"	29-Jan-08	29-Jan-08	31388.50	=""	="PORT STEPHENS COUNCIL"	10-May-08 12:12 PM	

+="CN77519"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	26-Jan-08	28-Apr-08	31530.08	=""	="SME GATEWAY LIMITED"	10-May-08 12:13 PM	

+="CN77523"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	29-Jan-08	23-Mar-08	39977.31	=""	="CRAFT INPRINT GROUP"	10-May-08 12:13 PM	

+="CN77524"	"SUPPLY LPG GAS BORNEO BARRACKS CABARLAH"	="Department of Defence"	10-May-08	="Heating and ventilation and air circulation"	08-Jan-08	30-Jun-08	33000.00	=""	="ORIGIN ENERGY"	10-May-08 12:13 PM	

+="CN77535"	"AXIEM-PF 3D PLANAR ELECTROMAGNETIC SOFTWARE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	31-Jan-08	32109.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 12:13 PM	

+="CN77536"	"ADMINSTRATIVE SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	35939.90	=""	="TOP OFFICE PERSONNEL PTY LTD"	10-May-08 12:13 PM	

+="CN77541"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	06-Feb-08	33508.57	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:14 PM	

+="CN77554"	"WEST HEAD GUNNERY RANGE:REDEVELOPMENT SPARKE HELMORE PROBITY ADVICE DELIVERY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	33550.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:14 PM	

+="CN77565"	"Multiple computer switches (MCS units)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	01-Feb-08	39108.30	=""	="TENIX DATAGATE PTY LTD"	10-May-08 12:15 PM	

+="CN77570"	"WA991914 - WRE - OHS RISK MITIGATION (MEDIUM LEVEL) - FY 07/08"	="Department of Defence"	10-May-08	="Personal safety and protection"	09-Jan-08	30-Jun-08	36300.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 12:15 PM	

+="CN77588"	"TSS Contract Analysis of Experiments in HARC Proj"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	24-Jan-08	28-Mar-08	33000.00	=""	="UNIQUEST PTY LTD"	10-May-08 12:16 PM	

+="CN77602"	"PADLOCKS & KEYS"	="Department of Defence"	10-May-08	="Locks and security hardware and accessories"	25-Jan-08	29-Feb-08	34911.25	=""	="API SECURITY PTY LTD"	10-May-08 12:17 PM	

+="CN77604"	"SUN ULTRA 45 WORKSTATION - SOLARIS PRE INSTALLED INTERNAL 250GB 7200RPM SERIEL ATA HARD DISK"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Jan-08	38762.50	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:17 PM	

+="CN77611"	"SN02578 - 270170787 & 270166642 - Fit out for R8-G"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	09-Jan-08	30-Jun-08	35200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:18 PM	

+="CN77616"	"ADVERTISING"	="Department of Defence"	10-May-08	="Office supplies"	25-Jan-08	30-Jun-08	32801.24	=""	="UNIVERSAL MCCANN"	10-May-08 12:18 PM	

+="CN77648"	"Cabinets"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	24-Jan-08	12-Mar-08	34050.20	=""	="M F B PRODUCTS PTY LTD"	10-May-08 12:20 PM	

+="CN77663"	"HP LAPTOP COMPUTERS (20)"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	08-Feb-08	35662.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 12:21 PM	

+="CN77673"	"SUN V490 SERVER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	38613.30	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77675"	"Navigation System"	="Department of Defence"	10-May-08	="Location and navigation systems and components"	15-Jan-08	15-Feb-08	32237.70	=""	="DAVIDSON MEASUREMENT"	10-May-08 12:21 PM	

+="CN77720"	"Ongoing Maintenance of the AT-MURLIN"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	29-May-08	33000.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 12:24 PM	

+="CN77721"	"PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	10-Jan-08	10-Jan-08	32748.10	=""	="PARAGON PRINTERS"	10-May-08 12:24 PM	

+="CN77737"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	38392.84	=""	="BAYLEY AND ASSOCIATES PTY LTD"	10-May-08 12:24 PM	

+="CN77761"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Dec-07	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 12:26 PM	

+="CN77769"	"VARIOUS FURNITURE FOR FURNITURE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	15-Jan-08	37201.73	=""	="OFFICEMAX AUSTRALIA LTD"	10-May-08 12:26 PM	

+="CN77787"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	35860.00	=""	="MERCER (AUSTRALIA) PTY LTD"	10-May-08 12:27 PM	

+="CN77789"	"VARIOUS FURNITURE FOR FURNITUE PROGRAM AUG 07."	="Department of Defence"	10-May-08	="Furniture and Furnishings"	10-Dec-07	20-Dec-07	30778.00	=""	="STRATEGIC STORAGE SOLUTIONS"	10-May-08 12:27 PM	

+="CN77813"	"Spacial Allocation Surveys"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	30-Jun-08	33000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	10-May-08 12:29 PM	

+="CN77819"	"SPARES 08/257"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	11-Dec-07	31-Jan-08	38323.23	=""	="GILBARCO AUSTRALIA LIMITED"	10-May-08 12:29 PM	

+="CN77832"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77834"	"HIRE OF STAFF IAW DRAKE STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	33995.50	=""	="DRAKE INTERNATIONAL"	10-May-08 12:30 PM	

+="CN77869"	"INSTALLAION OF COMPS EQUIPMENT"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Dec-07	31-Jan-08	36031.09	=""	="NSC CARRIER TECHNOLOGIES PTY LTD"	10-May-08 12:32 PM	

+="CN77875"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	37121.74	=""	="INSITEC"	10-May-08 12:32 PM	

+="CN77878"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	33880.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:32 PM	

+="CN77883"	"Labour Hire"	="Department of Defence"	10-May-08	="Manufacturing support services"	13-Dec-07	31-Mar-08	33171.44	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:33 PM	

+="CN77892"	"S5180, WR's 300051674, 300051676, 300071218, 30007 Sydney Central Physical Infrastructure Appra"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	39664.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:33 PM	

+="CN77894"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	13-Mar-08	33876.70	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77895"	"CISCO Switches"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	13-Dec-07	14-Dec-07	34487.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:33 PM	

+="CN77901"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	13-Dec-07	31-Jan-08	36893.98	=""	="ABLE OFFICE FURNITURE PTY LTD"	10-May-08 12:34 PM	

+="CN77912"	"NET ACCESS BDSL SYMMETRICAL"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	29-Feb-08	39600.00	=""	="OPTUS INTERNET"	10-May-08 12:34 PM	

+="CN77913"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	13-Dec-07	30-Jun-09	38700.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:34 PM	

+="CN77926"	"Employment of PSP at Enoggera"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	31-Jan-08	26-Jun-08	38720.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:35 PM	

+="CN77940"	"Quest 1541 Data Aquisition and Processing"	="Department of Defence"	10-May-08	="Software"	30-Jan-08	31-Mar-08	33705.34	=""	="COMPUQUEST INC"	10-May-08 12:36 PM	

+="CN77950"	"KOBRA 400HS ENERGY SMART HD SCEC ENDORSED A CLASS PAPER SHREDDER"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	30-Jan-08	04-Feb-08	30954.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	10-May-08 12:36 PM	

+="CN77962"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	28-Feb-08	31900.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 12:37 PM	

+="CN77982"	"CONCRETE SLAB FOR VAULT AREA at RAAF WILLIAMS POIN Contact for RAAF - WGCDR Bob Coopes"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	31-Jan-08	35695.00	=""	="PMP BITUMEN"	10-May-08 12:38 PM	

+="CN78008"	"REQUIRED FOR TERMINAL TO SHOW SAFETY BRIEFS TO ALL PASSENGERS."	="Department of Defence"	12-May-08	="Electronic reference material"	14-Dec-07	24-Dec-07	30125.70	=""	="GARRY THYERS BETTA SUPERSTORE"	12-May-08 09:31 AM	

+="CN78021"	"DVD REPLICATOR"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	31735.00	=""	="SCSI INTEGRATION PTY LTD"	12-May-08 09:34 AM	

+="CN78022"	"CONSULTANCY FOR CONTAMINATED SOIL INSPECTION AND REPORT"	="Department of Defence"	12-May-08	="Environmental Services"	14-Dec-07	30-Jun-08	38384.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 09:35 AM	

+="CN78026"	"DCPD CRACK MEASUREMENT PACKAGE"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Dec-07	21-Mar-08	38212.07	=""	="AUSTRALIAN CALIBRATING SERVICES"	12-May-08 09:35 AM	

+="CN78027"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	18-Jan-08	38883.60	=""	="SUN MICROSYSTEMS"	12-May-08 09:36 AM	

+="CN78041"	"IAW CJOPS MINUTE (A1206456) DATED 3/12/07 REQUIRES HQJOC4 BE CAPABLE OF HIGH DEFINITION VIDEO CONF."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	29-Feb-08	37938.05	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78058"	"SEA FREIGHT MOVT OF IMV, TRAILER AND GRADER OP SLIPPER"	="Department of Defence"	12-May-08	="Marine transport"	14-Dec-07	31-Mar-08	30067.75	=""	="APL LOGISTICS"	12-May-08 09:42 AM	

+="CN78097"	"Supply, manufacture and install hose test rig assembly"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	06-Feb-08	33000.00	=""	="TOOLTIME ENGINEERING"	12-May-08 09:50 AM	

+="CN78104"	"CONDUCT & DEVELOP TRAINING NEEDS ANALYSIS & PACKAG"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	28-Aug-08	39000.00	=""	="ESIM GAMES DEUTSCHLAND GMBH"	12-May-08 09:52 AM	

+="CN78124"	"Anchor Kits P/no 69KHSA305OD Base-X Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	30069.60	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78137"	"DISIP Stage 2"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	11-Feb-08	38567.42	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78146"	"Develop and Evaluate Networked UAV EW Systems"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Mar-08	34496.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	12-May-08 09:59 AM	

+="CN78163"	"EMPLOYMENT OF PSP"	="Department of Defence"	12-May-08	="Community and social services"	18-Dec-07	30-Jun-08	32171.26	=""	="RECRUITMENT QUEENSLAND"	12-May-08 10:02 AM	

+="CN78169"	"VEHICLE REPAIRS"	="Department of Defence"	12-May-08	="Motor vehicles"	08-May-08	08-Jun-08	33960.30	=""	="MICKS AUTOS"	12-May-08 10:04 AM	

+="CN78196-A1"	"External Quality Assurance Review"	="Department of Foreign Affairs and Trade"	12-May-08	="Accounting and auditing"	22-Jan-08	30-Apr-08	38500.00	=""	="37 MARY STREET PTY LTD & A.C.N. 074 591 807 PTY. LTD. & ALPHA DREAMS PTY LIMITED & ARINA MANAGEMENT PTY LIMITED & ARMAC SIXTY-FOUR PTY LTD & BENONI NOMINEES PTY LTD & OTHERS"	12-May-08 11:48 AM	

+="CN78224"	"Vehicle Lease"	="Department of Defence"	12-May-08	="Motor vehicles"	12-Dec-07	31-Mar-10	36972.98	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:07 PM	

+="CN78272"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	07-Dec-07	30071.03	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 01:12 PM	

+="CN78286"	"ADFA BLAZERS"	="Department of Defence"	12-May-08	="Clothing"	05-Dec-07	01-Apr-08	37000.00	=""	="LOWES MANHATTAN PTY LTD"	12-May-08 01:15 PM	

+="CN78287"	"HIRE OF PERSONNEL IAW STANDING OFFER LH 01/05"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Dec-07	30-Jun-08	35806.10	=""	="DRAKE INTERNATIONAL"	12-May-08 01:15 PM	

+="CN78290"	"CRITICAL REPLACE/REPAIR PROG - AIRCRAFT HANGAR DOOR MULLIONS"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	05-Dec-07	30-Jun-08	31033.48	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 01:15 PM	

+="CN78302"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-Jan-08	37759.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:17 PM	

+="CN78316"	"Research Agreement"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 01:20 PM	

+="CN78327"	"MEAT"	="Department of Defence"	12-May-08	="Meat and poultry"	04-Dec-07	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	12-May-08 01:21 PM	

+="CN78331"	"FRUIT & VEGS"	="Department of Defence"	12-May-08	="Vegetables"	04-Dec-07	30-Jun-08	30000.00	=""	="TOM & FRANKS"	12-May-08 01:22 PM	

+="CN78391"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	30-Oct-07	36515.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	12-May-08 01:32 PM	

+="CN78429"	"DMO BATTERY CHARGING - 7CSSB - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	33067.12	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:39 PM	

+="CN78438"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	30360.00	=""	="FRANCIS J HICKLING"	12-May-08 01:40 PM	

+="CN78504-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Feb-08	30-Jun-08	38206.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:49 PM	

+="CN78505"	"TRIPWIRE PRODUCTS"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	34157.24	=""	="TRIPWIRE INC"	12-May-08 01:49 PM	

+="CN78516"	"Watson, Replace sprinkler system"	="Department of Defence"	12-May-08	="Fire protection"	20-Dec-07	30-Jun-08	38265.70	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:51 PM	

+="CN78535"	"Multifunction Document Centres"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	20-Dec-07	21-Dec-07	37382.40	=""	="RICOH AUSTRALIA"	12-May-08 01:55 PM	

+="CN78537"	"PRINT PRODUCTION ONE MAN COMBAT RATION PACKS: INGR EDIENT SHEETS & MENU & INSTRUCTION SHEETS"	="Department of Defence"	12-May-08	="Paper products"	20-Dec-07	10-Jan-08	32311.40	=""	="PRESS HERE PTY LTD"	12-May-08 01:55 PM	

+="CN78568"	"DEVELOPMENT OF SRS FOR TIDES PROJECT"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	15-Jan-08	34760.00	=""	="WHITEWAY HOUSE NO 102 PTY LTD"	12-May-08 02:02 PM	

+="CN78569"	"WEAPON RACKING"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	20-Dec-07	20-Dec-07	39834.41	=""	="MULTIFILE"	12-May-08 02:02 PM	

+="CN78584"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	20-Dec-07	33165.30	=""	="BLUE SPINE PTY LTD"	12-May-08 02:04 PM	

+="CN78602"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	37246.00	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:07 PM	

+="CN78615"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78636"	"RENTAL GURNEY BEACH APPARTMENTS"	="Department of Defence"	12-May-08	="Accommodation furniture"	13-Dec-07	13-Dec-07	34849.03	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:12 PM	

+="CN78657"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	32580.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78659"	"november invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	19-Dec-07	37519.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:14 PM	

+="CN78680"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	38005.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 02:15 PM	

+="CN78684"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	17-Dec-07	30-Jun-10	38781.76	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 02:16 PM	

+="CN78686"	"MODELLING SOFTWARE"	="Department of Defence"	12-May-08	="Software"	03-Jan-08	03-Jan-08	36938.00	=""	="SIMULATION MODELLING SERVICES PTY"	12-May-08 02:16 PM	

+="CN78694"	"ACCOMODATION & TRAVEL"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	14-Apr-08	35420.47	=""	="NANYANG TECHNOLOGICAL UNIVERSITY"	12-May-08 02:16 PM	

+="CN78696"	"DISIP Stage 1"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	07-Feb-08	34276.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 02:16 PM	

+="CN78704"	"QANTAS INVOICE HMAS HUON NOV 07"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	17-Jan-08	30158.84	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78713"	"Promotional Equipment for Land Warfare Conference"	="Department of Defence"	12-May-08	="Sales and business promotion activities"	21-Oct-07	01-Jan-08	33660.00	=""	="ACCESS PROMOTIONAL PRODUCTS PTY"	12-May-08 02:18 PM	

+="CN78774"	"fees"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	23-Oct-07	30-Nov-07	32000.00	=""	="FUTURE FIBRE TECHNOLOGIES PTY LTD"	12-May-08 02:21 PM	

+="CN78788"	"Software maintenance"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Dec-07	30-Aug-08	30683.29	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78789"	"Fuel Farm maintenance"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	03-Dec-07	03-Dec-07	31040.00	=""	="AVIATION FUEL MAINTENANCE"	12-May-08 02:22 PM	

+="CN78794"	"White Paper payment"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	21-Dec-07	38500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 02:22 PM	

+="CN78810"	"QANTAS AIRFARES FOR DEFENCE SUPPORT TRAVEL SERVICE FOR UNITS AT SINGLETON MILITARY AREA FOR OCT 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	33388.04	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78823"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	31-Jul-08	34962.05	=""	="HAYS ACCOUNTANCY AND FINANCE"	12-May-08 02:24 PM	

+="CN78827"	"Provison of Analyst Programmer, Level 3"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	21-Dec-07	23-May-08	38497.80	=""	="YTEK PTY LTD"	12-May-08 02:24 PM	

+="CN78859"	"Builing maintenace"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	11-Apr-08	28-May-08	34573.00	=""	="M & P BUILDERS PTY LTD"	12-May-08 02:27 PM	

+="CN78866"	"MS#3"	="Department of Defence"	12-May-08	="Environmental management"	27-Mar-07	06-Dec-07	32326.43	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 02:27 PM	

+="CN78874"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Apr-08	36000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-May-08 02:28 PM	

+="CN78880"	"Install Radar Anchor Points at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	11-Apr-08	30-Jun-08	30000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:28 PM	

+="CN78901"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-07	32450.00	=""	="GHD PTY LTD"	12-May-08 02:29 PM	

+="CN78905"	"Upgrading of Prevon Vertical Carousel control syst M00268/08 at Shed 2, Lavarack JLU(NQ)"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	08-May-08	36381.40	=""	="PREVON PTY LTD"	12-May-08 02:30 PM	

+="CN78946"	"Equipment required fro the DRAS decommissioning Ta"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	31240.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:33 PM	

+="CN78951"	"Sewage and oily water removal - T'ville 21-24 MAR"	="Department of Defence"	12-May-08	="Water and wastewater treatment supply and disposal"	31-Mar-08	09-Apr-08	32641.63	=""	="NQ RESOURCE RECOVERY PTY LTD"	12-May-08 02:33 PM	

+="CN78954"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	10-Apr-08	01-Jun-08	39757.77	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:33 PM	

+="CN78959"	"EPIC licences"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Mar-08	34331.00	=""	="FUJITSU AUSTRALIA LTD"	12-May-08 02:34 PM	

+="CN78966"	"PAYMENT TO OFFICIAL BANK ACCOUNT PALAU"	="Department of Defence"	12-May-08	="Project management"	18-Apr-08	30-Jun-10	39023.29	=""	="MARITIME SURVEILLANCE"	12-May-08 02:34 PM	

+="CN78996"	"Enterprise Modeller Developer Licence"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	30-Jun-08	33000.00	=""	="ENTERPRISE MANAGEMENT SERVICES"	12-May-08 02:37 PM	

+="CN79019"	"Training seminar"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-May-08	31080.00	=""	="MARC RATCLIFFE WORKPLACE EDUCATION"	12-May-08 02:38 PM	

+="CN79023"	"LG protable DVD Players Model: DP271B"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	04-Jan-08	31907.04	=""	="LG ELECTRONICS AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79047"	"DOMESTIC PET PRODUCTS"	="Department of Defence"	12-May-08	="Domestic pet products"	18-Mar-08	01-Apr-08	34468.15	=""	="SSPA PTY LTD"	12-May-08 02:40 PM	

+="CN79051"	"Install and service charges for phones in lifts & for security purposes - act / snsw region"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	30391.65	=""	="TELSTRA"	12-May-08 02:40 PM	

+="CN79059"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33559.60	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:41 PM	

+="CN79075"	"specialist system engineer under S/O 45190 Phone 8259 7059"	="Department of Defence"	12-May-08	="Computer services"	04-Apr-08	14-May-08	38500.00	=""	="VCORP CONSULTING PTY LTD"	12-May-08 02:42 PM	

+="CN79097"	"IBM HARDWARE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	11-Apr-08	31369.80	=""	="TAPESTRY SYSTEMS PTY LTD"	12-May-08 02:45 PM	

+="CN79111"	"CLOTHING"	="Department of Defence"	12-May-08	="Clothing"	17-Mar-08	07-Apr-08	30800.00	=""	="RAMMITE INTERNATIONAL PTY LTD"	12-May-08 02:46 PM	

+="CN79115"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Dec-07	35852.12	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:47 PM	

+="CN79117"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Education and Training Services"	22-Aug-07	14-Mar-08	39903.33	=""	="MINISTRY OF DEFENCE-DEFENCE PROCURE"	12-May-08 02:47 PM	

+="CN79124"	"POC:  LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	30526.47	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79126"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Oct-07	26-Oct-07	34251.53	=""	="MONICO, JOHN ROBERT"	12-May-08 02:48 PM	

+="CN79142"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33746.16	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:49 PM	

+="CN79170"	"Fujitsu Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	34818.18	=""	="ASI SOLUTIONS"	12-May-08 02:51 PM	

+="CN79179"	"hp dl 360 server & hp msa30 smart array"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	30256.50	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:52 PM	

+="CN79183"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	02-Jun-08	36250.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79185"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	29-May-08	39090.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79187"	"PROVISION OF BOM SERVICE EX WALLABY 07"	="Department of Defence"	12-May-08	="Aircraft"	07-Dec-07	30-Dec-07	30472.87	=""	="BUREAU OF METEOROLOGY"	12-May-08 02:53 PM	

+="CN79206"	"HQJOC PROJECT - ADI LIMITED - GPS TIMING SOURCE FO"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	30446.03	=""	="THALES AUSTRALIA"	12-May-08 02:55 PM	

+="CN79225"	"PM/CA services for Canungra Redevelopment for the Delivery and Defects stages of proj."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Nov-07	30-Jun-08	38177.71	=""	="THINC PROJECTS PTY LTD"	12-May-08 02:57 PM	

+="CN79232"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	03-Apr-08	04-Apr-08	39875.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 02:58 PM	

+="CN79240"	"171 SQUADRON RELOCATION (FORMERLY AIR 9000 - TROOP LIFT HELICOPTERS"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Apr-08	30-Jun-08	30538.75	=""	="RICE DAUBNEY"	12-May-08 02:59 PM	

+="CN79246"	"HIRE VEHICLES EX WALLABY 07"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Dec-07	31-Jan-08	32297.14	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:59 PM	

+="CN79247"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-09	30825.30	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:59 PM	

+="CN79261"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:01 PM	

+="CN79269"	"VEHICLE LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	24-Apr-08	37323.19	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:01 PM	

+="CN79285"	"DRN AND CABINET BLDG 913 RAAF BASE AMBERLEY"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-Jun-08	35953.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:03 PM	

+="CN79288"	"Provisions for support of LSE-ME -attached pers"	="Department of Defence"	12-May-08	="Office supplies"	28-Apr-08	01-Jan-09	35911.39	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:04 PM	

+="CN79307"	"AIR FREIGHT OP CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	21-May-08	30292.28	=""	="ALLTRANS INTERNATIONAL"	12-May-08 03:06 PM	

+="CN79314"	"04-425299 31AUG07"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	22-Apr-08	37004.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:06 PM	

+="CN79349"	"POC: ALAN ROSS CONTACT: 02 626 50931"	="Department of Defence"	12-May-08	="Medical training and education supplies"	03-Apr-08	30-Jun-08	30690.00	=""	="NETEZZA PTY LTD"	12-May-08 03:09 PM	

+="CN79376"	"SYNTHETIC GRASS"	="Department of Defence"	12-May-08	="Field and court sports equipment"	09-Apr-08	30-May-08	37180.00	=""	="ALL GRASS SPORTS SURFACES PTY LTD"	12-May-08 03:11 PM	

+="CN79402"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	17-Apr-08	29-Apr-08	30510.95	=""	="QM Technologies Pty Limited"	12-May-08 03:13 PM	

+="CN79423"	"Contractor Computer Support MRH90 PROJECT  TTC -B"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	30-Jun-08	34320.00	=""	="C & S COMPUTER SOLUTIONS"	12-May-08 03:14 PM	

+="CN79438"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	33000.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79469"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31933.85	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79476"	"Conduct One Set of Deck breakage and Strain Gauge Readings HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	30-Apr-08	33121.00	=""	="THALES AUSTRALIA"	12-May-08 03:18 PM	

+="CN79514"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	25-Mar-08	30-Jun-08	38508.99	=""	="RAYTHEON AUST PTY LTD"	12-May-08 03:20 PM	

+="CN79516"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	29-Apr-08	29-Apr-08	31086.00	=""	="Schiavello (WA) Pty Ltd"	12-May-08 03:20 PM	

+="CN79543"	"ISO 9001:2000"	="Department of Defence"	12-May-08	="Accommodation furniture"	27-Mar-08	30-Jun-08	33000.00	=""	="SAI GLOBAL LTD"	12-May-08 03:22 PM	

+="CN79545"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Office supplies"	30-Apr-08	30-Apr-08	36214.20	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:22 PM	

+="CN79558"	"COURSES & COURSEWARE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	27-Jun-08	33168.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 03:23 PM	

+="CN79600"	"REPLACEMENT OF SEWER LINES"	="Department of Defence"	12-May-08	="Plumbing fixtures"	04-Feb-08	30-Jun-08	37955.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:27 PM	

+="CN79602"	"Procurement for FBW Workshop Task 19"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Jun-08	32014.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79606"	"Customer Satisfaction Survey - GSS-CMS Contracts 2 Years Strategic Review - Sydney West South"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	31-Jul-08	34456.40	=""	="THE RYDER SELF GROUP"	12-May-08 03:27 PM	

+="CN79638"	"Progress Claim no 4 Installation of internal security caging PNGDF GRTD Project"	="Department of Defence"	12-May-08	="Containers and storage"	05-Oct-07	31-Dec-08	30258.35	=""	="PNG DOCKYARD LTD"	12-May-08 03:29 PM	

+="CN79644"	"CONNECTOR"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	31381.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 03:29 PM	

+="CN79655"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Real estate services"	04-Apr-08	04-Apr-08	30030.00	=""	="UNITED GROUP SERVICES PTY LTD"	12-May-08 03:30 PM	

+="CN79660"	"HMAS CRESWELL: Redevelopment"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	35750.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 03:30 PM	

+="CN79681"	"02-24270531DEC07 LINE 2779 - 2826"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Dec-07	30-Jun-08	37127.81	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:32 PM	

+="CN79720"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	32864.39	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:35 PM	

+="CN79721"	"SUPPLY OF DOUBLER PLATES"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	25-Mar-08	30-Jun-08	37933.28	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:35 PM	

+="CN79767"	"CABLING"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	28-Dec-07	39270.00	=""	="ACS TELECOMM"	12-May-08 03:37 PM	

+="CN79770"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	35409.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:38 PM	

+="CN79776"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	38720.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:39 PM	

+="CN79777"	"24" LCD screens"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	14-Dec-07	36955.16	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79800"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31457.51	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79803"	"1405 Production Liaison Officer"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	15-Feb-08	07-May-08	35376.00	=""	="JACOBS AUSTRALIA"	12-May-08 03:40 PM	

+="CN79805"	"Provision of Archive/Storage Services"	="Medicare Australia"	12-May-08	="Storage"	11-Apr-08	11-Apr-08	31250.14	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:40 PM	

+="CN79809"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	15-Feb-08	30-Mar-08	31752.05	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:40 PM	

+="CN79815"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	14-Apr-08	14-Apr-08	39501.18	=""	="AUSTRALIA POST"	12-May-08 03:41 PM	

+="CN79818"	"Repair and signage various security fencing at Kokoda Bks Canungra Ranges"	="Department of Defence"	12-May-08	="Signage and accessories"	15-Nov-07	30-Jun-08	30133.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:41 PM	

+="CN79823"	"1SQN Hertz Account"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Dec-07	13-Feb-08	37620.44	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79836"	"SPECIALIST ADVICE/TRAVEL"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	15-Nov-07	30-Nov-07	34953.05	="RFT1110607"	="EVALUA PTY LTD"	12-May-08 03:43 PM	

+="CN79841"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Feb-08	10-Mar-08	35950.98	=""	="PILATUS AIRCRAFT LTD"	12-May-08 03:43 PM	

+="CN79849"	"Ship checks  for ballist and cargo tanks. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Feb-08	29-Feb-08	33000.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:43 PM	

+="CN79819"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-May-08	09-Jun-10	35134.17	=""	="Volvo Commericial Vehicles"	12-May-08 03:43 PM	

+="CN79855"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	30-Nov-07	30888.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:44 PM	

+="CN79865"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	15-Feb-08	28-Apr-08	38401.25	=""	="MS INSTRUMENTS PLC"	12-May-08 03:45 PM	

+="CN79889"	"02-23990631JUL07 QANTAS STATEMENT ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79892"	"PAYMENT TO OFFICAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	12-May-08	="Project management"	14-Mar-08	30-Jun-10	38741.03	=""	="MARITIME SURVEILLANCE ADVISOR"	12-May-08 03:46 PM	

+="CN79893"	"SECURITY CHECKS"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	33300.00	=""	="AUSTRALIAN FEDERAL POLICE"	12-May-08 03:46 PM	

+="CN79898"	"BASELINE CONFIGURATION DOCUMENTATION"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Mar-08	16-May-08	33000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 03:47 PM	

+="CN79906"	"HMAS Huon QANTAS Invoice JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	17-Mar-08	38717.47	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:47 PM	

+="CN79907"	"Hand held Vector Network and Spectrum Analyser"	="Defence Materiel Organisation"	12-May-08	="Measuring and observing and testing instruments"	14-Feb-08	14-Mar-08	35659.12	=""	="ANRITSU"	12-May-08 03:47 PM	

+="CN79925"	"TSA 2008 Technical Support Agreement (TSA) between CAE Inc."	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	28-Feb-08	36290.78	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79929"	"TSA 2006 TECHNICAL SUPPORT AGREEMENT (TSA) extension BETWEE"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	31-May-08	35068.34	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79932"	"RMC carwash"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	30750.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:49 PM	

+="CN79944"	"Cartridges 25mm High Explosive Incendiary - Traver De-linking, Breakdown, Propellant Sampling and Tr"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	25-May-08	33258.50	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 03:50 PM	

+="CN79958"	"CONSULTANCY"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	38940.00	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 03:52 PM	

+="CN79960"	"PC9 SPARES"	="Department of Defence"	12-May-08	="Aircraft equipment"	27-Mar-08	29-Sep-08	32590.01	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:52 PM	

+="CN79987"	"02-239906 31JUL07 ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:55 PM	

+="CN79997"	"APS Position Advertising - SRG"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Apr-08	30-Jun-08	38500.00	=""	="HMA BLAZE PTY LTD"	12-May-08 03:56 PM	

+="CN80019"	"MISC ITEMS FOR CAMP TERENDAK"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	25-Mar-08	01-Jun-08	38755.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:58 PM	

+="CN80021"	"IT SOFTWARE MAINTENANCE RENEWAL"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	30-Nov-08	31493.80	=""	="KNOWLEDGE PARTNERS PTY LTD"	12-May-08 03:58 PM	

+="CN80032"	"FFG Canteen Power Supply Investigation and Develop  Installation Specification"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	35997.20	=""	="THALES AUSTRALIA"	12-May-08 03:58 PM	

+="CN80045"	"Annual Maintenance"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	06-Feb-08	01-Apr-08	36080.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 03:59 PM	

+="CN80065"	"Scaffolding"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Apr-08	20-Jun-08	30800.00	=""	="NO BOLT OPERATIONS PTY LTD"	12-May-08 04:01 PM	

+="CN80094"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	31-Oct-08	33112.03	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:02 PM	

+="CN80109"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH DISBURSEMENTS-ANTICIPATED COST OF AUSTRALIAN DOMES"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-11	33000.00	=""	="***USE 1079487***"	12-May-08 04:03 PM	

+="CN80111"	"4516.13 CONDUCT ELECTRICAL SURVEY ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	29-Feb-08	36365.45	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:03 PM	

+="CN80125"	"Payment of Artwork & Prep Files"	="Department of Defence"	12-May-08	="Office supplies"	10-Apr-08	24-Apr-08	35208.80	=""	="DOCKLANDS PRESS PTY LTD"	12-May-08 04:04 PM	

+="CN80131"	"LUMPSUM THROUGH FREIGHT FROM KONGSBERG NORWAY TO D AGREEMENT ASAMENDED BY EMAIL LETTERS DAYED 23/8/0"	="Department of Defence"	12-May-08	="Naval weapons"	11-Dec-07	28-Feb-08	30737.39	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 04:04 PM	

+="CN80143"	"Site Inspections of RFID Infrastructure"	="Department of Defence"	12-May-08	="Computer services"	10-Dec-07	30-Jun-08	30553.52	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 04:05 PM	

+="CN80148"	"FREIGHT"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Dec-07	30-Jun-08	36300.00	=""	="RLM PTY LTD"	12-May-08 04:05 PM	

+="CN80151"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	10-Apr-08	01-Dec-08	32906.50	=""	="PHILLIPS FOX SYDNEY"	12-May-08 04:05 PM	

+="CN80154"	"QANTAS  DEC07 114MCRU"	="Department of Defence"	12-May-08	="Travel facilitation"	30-Nov-07	03-Mar-08	32290.08	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:06 PM	

+="CN80155"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:06 PM	

+="CN80182"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	05-Feb-08	29-Feb-08	30222.29	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:09 PM	

+="CN80191"	"Certification"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Nov-07	30-Jun-08	31883.29	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 04:09 PM	

+="CN80198"	"Dell Computer Equipment for JEWOSU"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	14-Jan-08	30746.12	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:10 PM	

+="CN80246"	"This Purchase Order is raised to procure items for the CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	35603.20	=""	="RFD (AUSTRALIA) PTY LTD"	12-May-08 04:13 PM	

+="CN80249"	"PROVISION OF PSP"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	05-Feb-08	31-Mar-08	38500.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:14 PM	

+="CN80254"	"UWTR fibre optic wet end investigation activity"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	31-Mar-08	31897.80	=""	="L-3 COMMUNICATIONS MARIPRO INC"	12-May-08 04:14 PM	

+="CN80258"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	29-Feb-08	33437.80	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 04:15 PM	

+="CN80263"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	15-May-08	34420.10	=""	="UNIVERSITY OF WESTERN SYDNEY"	12-May-08 04:15 PM	

+="CN80264"	"Fairing Assembly and Spring, Flat and Seal, Leading Edge"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	06-Feb-08	15-Feb-08	30611.26	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 04:15 PM	

+="CN80268"	"High speed video aquisition system"	="Department of Defence"	12-May-08	="Photographic or filming or video equipment"	20-Nov-07	30-Nov-07	32744.80	=""	="TOTAL TURNKEY SOLUTIONS"	12-May-08 04:16 PM	

+="CN80273"	"ROAD CHTR EX DUGONG"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	21-Nov-07	30-Nov-07	34100.00	=""	="PDL TOLL"	12-May-08 04:16 PM	

+="CN80276"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	32114.95	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:16 PM	

+="CN80289"	"repairs & mods to Launch and Recovery Vehicle"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	30750.08	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:17 PM	

+="CN80291"	"DDP FOR LPA HANGER FIRE DETECTOR SYSTEM"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Apr-08	27-Jun-08	34650.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:17 PM	

+="CN80313"	"VEHICLE LEASE FEB 08 - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	25-Feb-08	11-Mar-08	38447.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:19 PM	

+="CN80320"	"CHANGE MANAGEMENT SUPPORT TO HEAQUARTERS"	="Department of Defence"	12-May-08	="Management advisory services"	20-Nov-07	21-Nov-07	38767.44	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 04:20 PM	

+="CN80339"	"CONSTUCTION  SECURE VIDEO CONFRENCE ROOM BUTT"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Jan-08	04-Mar-08	38580.31	=""	="NAHUM CONSTRUCTION AND RENOVATION"	12-May-08 04:21 PM	

+="CN80352"	"Use of Exisitng ASP Contract. Auto Emergy Lighting"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	20-Dec-07	16-Feb-08	35302.06	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:22 PM	

+="CN80353"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	11-Sep-08	32423.48	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:23 PM	

+="CN80356"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	30-Jun-08	34584.05	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:23 PM	

+="CN80364"	"Sound Quality Head & Torso Simulator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	16-May-08	34908.06	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:23 PM	

+="CN80397"	"4516.20 CONDUCT ELECTRICAL SURVEY HMAS PERTH THERMOGRAPHIC SYSTEM & PROVIDE OPEN & CLOSE REP"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	32122.20	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:25 PM	

+="CN80411"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	03-Jan-08	21-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:25 PM	

+="CN80414"	"ELECTRICAL CONNECTIONS (cables, connectors, dust cap)."	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	20-Mar-08	39185.30	=""	="DKSH AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80422"	"supply of milk wbta"	="Department of Defence"	12-May-08	="Milk and butter products"	16-Jan-08	30-Jun-08	31678.99	=""	="PAULS LIMITED"	12-May-08 04:26 PM	

+="CN80427"	"TARGET RADAR"	="Department of Defence"	12-May-08	="Naval weapons"	20-Dec-07	17-Mar-08	36922.26	=""	="ENGINEERING CONTROL SUPPLIES LIMITE"	12-May-08 04:26 PM	

+="CN80446"	"PRESERVATION OF MMR HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jan-08	08-Feb-08	36359.41	=""	="ALPHABLAST"	12-May-08 04:27 PM	

+="CN80466"	"2270 Sound Level Meter & accessories"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	05-May-08	39195.20	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:28 PM	

+="CN80467"	"Shallow Water Landing Frame"	="Defence Materiel Organisation"	12-May-08	="Fabricated plate assemblies"	11-Feb-08	30-Jun-08	34870.00	=""	="STRUCTURAL MARINE"	12-May-08 04:28 PM	

+="CN80486"	"Install local exhaust temperature probes. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	30-Mar-08	32841.60	=""	="MAN DIESEL AUSTRALIA PTY LTD"	12-May-08 04:30 PM	

+="CN80488"	"Engineer for EROC support of trainig and questions"	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	01-Feb-08	39048.90	=""	="C4I PTY LTD"	12-May-08 04:30 PM	

+="CN80489"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36956.70	=""	="ADVITECH PTY LTD"	12-May-08 04:30 PM	

+="CN80493"	"LPA SHIPS SUPPLY OF COUGARNET INTERFACE CABLES4"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Apr-08	23-Jun-08	30536.00	=""	="EYLEX PTY LTD"	12-May-08 04:31 PM	

+="CN80501"	"Prototype Distribution Boxes"	="Department of Defence"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	20-Dec-07	31-Jan-08	36124.00	="RFT E1-203863"	="HEINEMANN ELECTRICAL AUST PTY LTD"	12-May-08 04:31 PM	

+="CN80508"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L750"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	07-Feb-08	30-Jun-08	37390.52	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:32 PM	

+="CN80520"	"Contractor discussions for the range flght termina tion system"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Feb-08	30-Jun-08	38277.36	=""	="SYSTEM PLANNING CORPORATION"	12-May-08 04:33 PM	

+="CN80527"	"AIRCRAFT MAINTENANCE SUPPORT - RENOVATION OF SQN WORKSHOP FACILITY"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	20-Dec-07	29-Feb-08	32558.84	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:33 PM	

+="CN80544"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	12-May-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:34 PM	

+="CN80564"	"4516.37 - CONDUCT ELECTRICAL SURVEY HMAS ARUNTA ELECTRICAL SYSTEM"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36914.46	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:35 PM	

+="CN80575"	"HONEYWELL FMZ SERIES (FLIGHT MANAGEMENT SERIES) - SERVICE FEE FOR AIRCRAFTS/SIMULATORS."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	31-Oct-08	36868.54	=""	="HONEYWELL AIR TRANSPORT - PHOENIX"	12-May-08 04:35 PM	

+="CN80636"	"Purchase Order raised to procure Breakdown Spares Valves that have been shipped to OEM buy RBE for r"	="Department of Defence"	12-May-08	="Hydraulic systems and components"	08-Jan-08	31-May-08	33000.00	=""	="ROSEBANK ENGINEERING"	12-May-08 04:39 PM	

+="CN80685"	"PROCUREMENT QTY 8 MOBILE kITCHEN TRAILERS"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	20-Dec-07	11-Jan-08	35689.50	=""	="BUILT TOUGH TRAILERS"	12-May-08 04:41 PM	

+="CN80688"	"Defence CIO Group Annual maintenance fee for DRMS"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	30-Jun-08	33000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:42 PM	

+="CN80722"	"Inner Container"	="Department of Defence"	12-May-08	="Containers and storage"	20-Dec-07	09-Oct-08	37884.00	=""	="ASP PLASTICS PTY LTD"	12-May-08 04:43 PM	

+="CN80739"	"Carl Gustaf Spares"	="Department of Defence"	12-May-08	="Firearms"	04-Apr-08	01-Dec-08	35455.17	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 04:44 PM	

+="CN80742"	"MAINTENANCE CONTRACT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	03-Apr-08	09-Jan-11	33893.92	=""	="INTERSOFT ELECTRONICS NV"	12-May-08 04:44 PM	

+="CN80745"	"WTR in service support"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	31897.80	=""	="ACROAMATICS INC"	12-May-08 04:45 PM	

+="CN80757"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	22-Feb-08	30-Jun-08	35170.00	=""	="DEACONS"	12-May-08 04:45 PM	

+="CN80789"	"RE AUTHORING AAP7213.006-2-WDM-000"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-May-08	36522.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:47 PM	

+="CN80801"	"DTS 69 Provision of TADRS Technical Support"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	30-May-08	35014.77	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:47 PM	

+="CN80810"	"DELIVERY INTRO TO SYSTEMS ENGINEERING TRAINING FOR DMO GRADUATES"	="Department of Defence"	12-May-08	="Medical training and education supplies"	04-Apr-08	30-Jun-08	35500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-May-08 04:48 PM	

+="CN80813"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	28-May-08	38500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80827"	"Computer equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	35517.59	=""	="XSI DATA SOLUTIONS PTY LTD"	12-May-08 04:49 PM	

+="CN80835"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Alternative educational systems"	23-Feb-08	30-Jun-08	32934.00	=""	="SUN MICROSYSTEMS"	12-May-08 04:49 PM	

+="CN80845"	"Test 150 CA/DA clusters and provide a report"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	18-Dec-07	20-Feb-08	37102.12	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:50 PM	

+="CN80848"	"Use of existing ASP Contract - ECP for Galley Fire fighting system"	="Department of Defence"	12-May-08	="Fire fighting equipment"	29-Jan-08	30-Apr-08	31831.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:50 PM	

+="CN80850"	"STOCK FOREEND DUAL SWITCH"	="Department of Defence"	12-May-08	="Firearms"	08-Apr-08	20-Jun-08	30938.85	=""	="LASER PRODUCTS"	12-May-08 04:50 PM	

+="CN80859"	"MIS928 - DL360 Power Consumption Rectification"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	39901.95	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80891"	"HMAS PERTH URDEF 36/07 - REPLACE AND TEST ESM BITE CABLES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	33000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80900"	"Computor Equipment"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	28-Mar-08	34000.00	=""	="MESSAGES ON HOLD"	12-May-08 04:52 PM	

+="CN80903"	"HMAS PERTH URDEFS 6,78 AND 82/06"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	38500.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80932"	"Extended Warrnty Services"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	27-Feb-08	20-Mar-08	30697.92	=""	="ARION SYSTEMS PTY LTD"	12-May-08 04:53 PM	

+="CN80965"	"DESIGN FOR TOB LAN SSERVER RM HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	12-Mar-08	39736.84	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80968"	"The Purchase of Conversion Software to convert Netvantage Data into OPNET Data - Quote# 20080066"	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	30-Apr-08	30800.00	=""	="TENFOLD NETWORK SOLUTIONS"	12-May-08 04:56 PM	

+="CN80986"	"4 Heavy Duty 7 x 5 Off Road Box Trailers"	="Defence Materiel Organisation"	12-May-08	="Vehicle bodies and trailers"	27-Feb-08	30-Apr-08	30976.00	=""	="CLASSIC TRAILERS PTY LTD"	12-May-08 04:57 PM	

+="CN81008"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	31465.69	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:58 PM	

+="CN81034"	"COMPLEX PROCUREMENT TRG"	="Defence Materiel Organisation"	12-May-08	="Business administration services"	26-Feb-08	09-May-08	34251.33	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 05:00 PM	

+="CN81039"	"M548 Box"	="Department of Defence"	12-May-08	="Packaging materials"	08-Apr-08	30-Jun-08	31233.51	=""	="PENTARCH PTY LTD"	12-May-08 05:00 PM	

+="CN81057"	"berthage for HMAS LEEUWIN maintenance period"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	31475.73	=""	="AIMTEK PTY LTD"	12-May-08 05:01 PM	

+="CN81066"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Feb-08	28-Aug-08	30725.58	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:01 PM	

+="CN81098"	"arm assy"	="Department of Defence"	12-May-08	="Aircraft equipment"	31-Jan-08	01-Mar-09	38034.38	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:03 PM	

+="CN81118"	"Replace Fan Coil Unit HMAS SYDNEY"	="Department of Defence"	12-May-08	="Manufacturing support services"	31-Jan-08	30-Jun-08	31143.20	=""	="ENVIROAIR PTY LTD"	12-May-08 05:03 PM	

+="CN81119"	"TECHNICAL ASSISTANCE IN DARWIN"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	31287.37	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81122"	"MAG58 BOX INSERT PAINTED"	="Department of Defence"	12-May-08	="Gun systems"	01-Feb-08	09-May-08	31581.00	=""	="THALES AUSTRALIA"	12-May-08 05:04 PM	

+="CN81127"	"SURVEY OF RADAR TOWERS"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	36376.79	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:04 PM	

+="CN81136"	"Computer Equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	14-Mar-08	37931.75	=""	="SUN MICROSYSTEMS"	12-May-08 05:04 PM	

+="CN81137"	"Technical advice"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	15-Jun-08	38500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:04 PM	

+="CN81152"	"Electrical Cable Assembly Set Procurement from Technical Services Laboratory Inc"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	19-Feb-08	13-Apr-08	38680.55	=""	="TECHNICAL SERVICES LABORATORY INC"	12-May-08 05:05 PM	

+="CN81165"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	19-Dec-07	25-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:05 PM	

+="CN81167"	"Modifications to LRV Contract E1-203873"	="Department of Defence"	12-May-08	="Truck tractors"	26-Nov-07	24-Dec-07	34060.88	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:05 PM	

+="CN81174"	"MOAS OBSOLESCENCE MONITORING PROGRAM"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	01-Apr-08	35662.44	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:06 PM	

+="CN81178"	"Earned value management Support for MRH90 Training Device Acquisition"	="Department of Defence"	12-May-08	="Aircraft"	01-Feb-08	30-Jun-08	36184.62	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:06 PM	

+="CN81179"	"lloyds classification fees"	="Department of Defence"	12-May-08	="Environmental control systems"	26-Nov-07	31-Dec-07	39973.08	=""	="AIMTEK PTY LTD"	12-May-08 05:06 PM	

+="CN81204"	"Field Monitoring System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	19-Feb-08	18-Apr-08	30162.00	=""	="FARADAY PTY LTD"	12-May-08 05:07 PM	

+="CN81205"	"Use of Exisitng ASP Contract. Supply of Foam"	="Department of Defence"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	18-Dec-07	04-Feb-08	36506.88	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:07 PM	

+="CN81214"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	23-Jan-08	27-Sep-08	39133.37	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:08 PM	

+="CN81215"	"Adhoc Purchases for repairs"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	23-Nov-07	23-Nov-07	31967.32	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:08 PM	

+="CN81217"	"Part 4 Task 070 LSTU - USD PAYMENT"	="Defence Materiel Organisation"	12-May-08	="Launch vehicles and rockets"	19-Feb-08	12-Sep-08	36715.43	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:08 PM	

+="CN81249"	"load bank for hydrograhic ships"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	28-Feb-08	30522.57	=""	="AIMTEK PTY LTD"	12-May-08 05:09 PM	

+="CN81259"	"MANUFACTURE OF CARL GUSTAF MK3 FIRING MOUNT"	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	31-Jan-08	30250.00	=""	="ABU ENGINEERING PTY LTD"	12-May-08 05:10 PM	

+="CN81263"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	23-Nov-07	28-Feb-08	34099.00	=""	="HAWKER PACIFIC PTY LTD"	12-May-08 05:10 PM	

+="CN81269"	"Projectile 30mm FRED"	="Department of Defence"	12-May-08	="Explosive materials"	19-Dec-07	24-Apr-08	38115.00	=""	="REFINED TOOLING PTY LTD"	12-May-08 05:10 PM	

+="CN81278"	"Repairs of Weatherhaven Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	23-Jan-08	31-Mar-08	39292.00	=""	="G H VARLEY PTY LTD"	12-May-08 05:10 PM	

+="CN81289"	"MANIFOLD ASSY"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Feb-08	01-Dec-08	38223.52	=""	="ROLLS - ROYCE PLC"	12-May-08 05:11 PM	

+="CN81290"	"MAJOR INSPECTION OF TRUCK AIRCRAFT SIDE LOADING/UNLOADING (TASLU)"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	23-Jan-08	18-Mar-08	39441.60	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:11 PM	

+="CN81298"	"develop a Detailed Design Package for installation of MVIS on HMAS Sydney"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	28-Apr-08	38610.00	=""	="OPERATIONAL SOLUTIONS"	12-May-08 05:11 PM	

+="CN81312"	"Travel for UK MOD staff"	="Department of Defence"	12-May-08	="Travel facilitation"	22-Jan-08	30-Jun-08	31512.60	=""	="UK MINISTRY OF DEFENCE"	12-May-08 05:12 PM	

+="CN81317"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	02-Jan-08	39156.70	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 05:12 PM	

+="CN81318"	"Search Lights, Dual Mode"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	22-Jan-08	07-Jul-08	31974.99	=""	="LUMINATOR HOLDING LP"	12-May-08 05:12 PM	

+="CN81320"	"LEASE OF FOUR VEHICILES -SHORT TERM"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Nov-07	31-Dec-08	36352.97	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81326"	"PROMOTIONAL GEAR"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	18-Feb-08	33000.00	=""	="BRANDNET PTY LTD"	12-May-08 05:13 PM	

+="CN81328"	"Hose Ass, Air Breathing"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	03-Jul-08	38396.66	=""	="BAI INC"	12-May-08 05:13 PM	

+="CN81332"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Specialty aircraft"	21-Feb-08	30-Mar-08	36453.00	=""	="FLIGHT DATA SYSTEMS PTY LTD"	12-May-08 05:13 PM	

+="CN81358"	"Extended support to Nexus"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	28-Nov-07	18-Jan-08	33874.50	=""	="KAZ GROUP PTY LTD"	12-May-08 05:14 PM	

+="CN81383"	"Technical Services"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	22-Feb-08	30-Apr-08	36170.33	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:16 PM	

+="CN81392"	"Fit Assessment of Combat Boots"	="Defence Materiel Organisation"	12-May-08	="Footwear"	22-Feb-08	25-Feb-08	34320.00	=""	="ESSENTIAL FOOTWEAR INTERNATIONAL"	12-May-08 05:16 PM	

+="CN81404"	"4516.26 CONDUCT THERMO SURVEY OF WARRAMUNGA 29 MAR -11 APR PROVIDE AN OPENING & CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Apr-08	33353.98	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 05:17 PM	

+="CN81429"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	31780.34	=""	="C4I PTY LTD"	12-May-08 05:18 PM	

+="CN81433"	"4553.02 PROCUREMENT OF TRAILER DOLLY"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	31-Jan-08	30800.00	=""	="HAULMARK TRAILERS"	12-May-08 05:18 PM	

+="CN81440"	"ENGAGEMENT OF NOVARE PSP"	="Defence Materiel Organisation"	12-May-08	="Published Products"	20-Feb-08	30-Jun-08	31453.95	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:19 PM	

+="CN81449"	"Supply of Software, Software Licences, Training & Support for tender Evaluation Tool"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	38000.00	=""	="EVALUA PTY LTD"	12-May-08 05:19 PM	

+="CN81466"	"6 Months hire of Furniture for FFGSPO leased Tender Evaluation office"	="Department of Defence"	12-May-08	="Military watercraft"	25-Jan-08	31-Jul-08	37494.60	=""	="EMERALD HILL ABSOLUTE OFFICE CENTRE"	12-May-08 05:20 PM	

+="CN81476"	"MOTOR CONTROL"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	21-Feb-08	25-May-08	37192.83	=""	="CAE INC"	12-May-08 05:21 PM	

+="CN81492"	"Use of Exisitng ASP Contract.- ECP for Installatio of Sewage Syst Isolation Valve"	="Defence Materiel Organisation"	12-May-08	="Water and wastewater treatment supply and disposal"	20-Feb-08	23-May-08	35480.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:23 PM	

+="CN81527"	"2008 DMO GRADUATE INDUCTION TRAINING"	="Department of Defence"	12-May-08	="Medical training and education supplies"	24-Jan-08	31-Mar-08	39468.00	=""	="DEAKINPRIME"	12-May-08 05:25 PM	

+="CN81531"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	30022.30	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:26 PM	

+="CN81536"	"CONTRACT OF STANDING OFFER NUMBER:  LEA-CM-2008-00 LEA-CM-2008-003"	="Defence Materiel Organisation"	12-May-08	="Audio and visual presentation and composing equipment"	21-Apr-08	30-Jun-08	33000.00	=""	="EVENTRA PTY LTD"	12-May-08 05:26 PM	

+="CN81553"	"MHC MDV TETHER CONNECTION UPGRADE DETAILED DESIGN"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	29-Feb-08	32590.84	=""	="THALES AUSTRALIA"	12-May-08 05:27 PM	

+="CN81599"	"BIPOD AND ADAPTORS"	="Defence Materiel Organisation"	12-May-08	="Light weapons and ammunition"	18-Apr-08	02-Aug-08	32628.26	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 05:31 PM	

+="CN81600"	"DEFECT INVESTIGATION"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	12-Dec-07	12-Dec-07	39588.02	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:31 PM	

+="CN81601"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	20-Oct-08	30668.06	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:31 PM	

+="CN81603"	"Repair of Fibre Optics"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	18-Apr-08	30-Apr-08	37356.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81651"	"FIT FOR PURPOSE ASSESSMENT OF ESF GST TRAILER"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	17-Dec-07	13-Feb-08	36669.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:37 PM	

+="CN81671"	"FILTER ELEMENT"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	14-Dec-07	25-Jul-08	35677.56	=""	="HONEYWELL INTERNATIONAL INC"	12-May-08 05:40 PM	

+="CN81678"	"ANTENNA"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	15-Dec-07	20-Dec-07	39744.66	=""	="SHAKESPEARE COMPANY LLC"	12-May-08 05:41 PM	

+="CN81686"	"Computer switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	38699.55	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 05:42 PM	

+="CN81699"	"Attn: Tony Dzelalija Your quotation 711228860500 dated 05 December 2007"	="Department of Defence"	12-May-08	="Heating and ventilation and air circulation"	07-Dec-07	27-Dec-07	32670.00	=""	="J BLACKWOOD & SON LTD"	12-May-08 05:43 PM	

+="CN81701"	"Provision of EMA Work Package Documentation Supp- ort FY 2007/08"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	30-Jun-08	30380.41	=""	="THALES AUSTRALIA"	12-May-08 05:44 PM	

+="CN81707"	"prepare Installation Design Package- CHAMELEON Data Acquisition Unit SHIPALT 480 - HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	31-Mar-08	39810.00	=""	="THALES AUSTRALIA"	12-May-08 05:45 PM	

+="CN81709"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	28-Feb-08	38852.66	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:45 PM	

+="CN81727"	"P2724-001 UPGRADE OF WIND SPEED AND DIRECTION"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	30-Dec-07	30609.01	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:47 PM	

+="CN81734"	"PROCUREMENT QTY 8 WINCHES"	="Department of Defence"	12-May-08	="Electrical components"	07-Dec-07	21-Dec-07	30932.00	=""	="ATECO EQUIPMENT"	12-May-08 05:48 PM	

+="CN81750"	"project phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	18-Jan-08	39761.30	=""	="JACOBS AUSTRALIA"	12-May-08 05:50 PM	

+="CN81752"	"Teamcenter Consultancy/Professional Services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-May-08	33000.00	=""	="PLM SERVICES PTY LTD"	12-May-08 05:50 PM	

+="CN81759"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Transportation and Storage and Mail Services"	02-Apr-08	02-Apr-08	31878.05	=""	="Cabcharge Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81766"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	25-Mar-08	25-Mar-08	35866.01	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81775"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	01-Mar-08	01-Mar-08	32698.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81781"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Mar-08	17-Mar-08	32564.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81783"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	14-Apr-08	14-Apr-08	31438.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val40000to60000.xls
@@ -1,1 +1,737 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75498"	"FURNITURE"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	14-Feb-08	30-Jun-08	40876.00	=""	="DIRECT ERGONOMICS PTY LTD"	10-May-08 08:33 AM	

+="CN75509"	"Vehicle Lease"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	14-Feb-08	30-Jun-11	41085.62	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 08:35 AM	

+="CN75510"	"Communications Network Infrastructure Audit Area H Cables Supporting Area H Commencing at Building 3"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	53350.00	=""	="SKM"	10-May-08 08:35 AM	

+="CN75513"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	18-Apr-08	47466.98	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 08:35 AM	

+="CN75517"	"REPLACEMENT COMPUTER CPUs"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Mar-08	43116.70	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 08:35 AM	

+="CN75520"	"SN01988 - GIS Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	55813.23	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:36 AM	

+="CN75524"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	06-Feb-08	46617.30	=""	="QUT STUDENT FEES OFFICE"	10-May-08 08:36 AM	

+="CN75526"	"PROVIDE ELECTRONIC DESIGN & MANUFACTURE TECHNICAL SUPPORT FOR HEAT FLUX II PRE FIELD TRIAL PREP"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	06-Feb-08	06-Feb-08	42760.00	=""	="BOEING AEROSPACE SUPPORT"	10-May-08 08:36 AM	

+="CN75530"	"GROCERIES FOR RATIONS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	06-Feb-08	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	10-May-08 08:37 AM	

+="CN75531"	"GROCERIES FOR RATIONS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	06-Feb-08	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	10-May-08 08:37 AM	

+="CN75532"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	20-Feb-08	48009.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:37 AM	

+="CN75535"	"Implementation of Communications Links for Integr- ation and Control of UAV's in the SIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	06-Feb-08	31-May-08	55000.00	=""	="BALL SOLUTIONS GROUP"	10-May-08 08:37 AM	

+="CN75542"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	58271.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75544"	"provision of contractors"	="Department of Defence"	10-May-08	="Office supplies"	06-Feb-08	30-Jun-08	41580.00	=""	="ICON RECRUITMENT"	10-May-08 08:38 AM	

+="CN75545"	"DELL LCD MONITORS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	52855.00	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75549"	"Gym equipment"	="Department of Defence"	10-May-08	="Gymnastics and boxing equipment"	06-Feb-08	30-Mar-08	40593.30	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 08:39 AM	

+="CN75563"	"BANDIANA:JLU (V) WAREHOUSING FACILITIES. JLU(V) SITE CONTAMINATION SURVEYS."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	06-Feb-08	30-Jun-08	49252.50	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 08:40 AM	

+="CN75564"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	30-Jun-08	46070.00	=""	="PHILLIPS FOX SYDNEY"	10-May-08 08:40 AM	

+="CN75568"	"CONTRACT NO: CSI-SC06/2005 MEAT RATIONS"	="Department of Defence"	10-May-08	="Meat and poultry"	06-Feb-08	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	10-May-08 08:40 AM	

+="CN75581"	"Antenna Certification Kit"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	05-Feb-08	16-May-08	44687.75	=""	="CACI TECHNOLOGIES INC"	10-May-08 08:42 AM	

+="CN75609"	"REMEDIATE AGEING RECTIFIER/BATTERY SUITES WHICH HAVE REACHED END OF LIFE."	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	05-Feb-08	30-Apr-08	54034.20	=""	="CENTURY YUASA BATTERIES PTY LTD"	10-May-08 08:44 AM	

+="CN75614"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	55357.83	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:45 AM	

+="CN75619"	"S5180, WR 300076872. Carry out IA investigations o inground services and provide report and document"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	42524.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75621"	"S5180, WR 300065141. Carry out IA investigations o inground services and provide report and document"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	41380.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:46 AM	

+="CN75623"	"QUICKLOOK 026 TECHNICAL LEAD Labour - up to 40 days from 23 January 2008 to 30"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	30-Mar-08	49960.01	=""	="QINETIQ NOVARE PTY LTD"	10-May-08 08:46 AM	

+="CN75629"	"professional services - stocktaking staff to condu stocktake of ICT assets within Canberra and Melbo"	="Department of Defence"	10-May-08	="Accounting and auditing"	08-Feb-08	30-Apr-08	57354.00	=""	="ACROSS BUSINESS CONSULTING PTY LTD"	10-May-08 08:46 AM	

+="CN75643"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	08-Feb-08	21-Mar-08	50773.54	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 08:48 AM	

+="CN75655"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	08-Feb-08	30-Jun-08	50490.00	=""	="CRAN CONSULTING"	10-May-08 08:49 AM	

+="CN75675"	"Remove Asbestos & Replace doors"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Feb-08	09-Apr-08	42526.00	=""	="M & P BUILDERS PTY LTD"	10-May-08 08:51 AM	

+="CN75679"	"Dimension 3D Printer"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	08-Feb-08	31-Mar-08	50820.00	=""	="CAMPLEX PTY LTD"	10-May-08 08:51 AM	

+="CN75697"	"miscitcopt3a custom manufacture of 800 khz transducer"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	27-Jun-08	49720.00	=""	="BIOLAB AUSTRALIA LTD"	10-May-08 08:53 AM	

+="CN75702"	"implementation of jSWAT planning environment"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	59972.00	=""	="CHINNERS CONSULTING"	10-May-08 08:53 AM	

+="CN75703"	"REQUIRED TO ENSURE THAT DEVELOPMENTS REQUIRED IN DSVE ARE DEVELOPED IN AN INTEGRATED/TIMELY MANNER."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-08	30-Sep-08	56176.12	=""	="CONNELL WAGNER PTY LTD"	10-May-08 08:54 AM	

+="CN75705"	"Implementation of a generic Jammer into the HWIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	50000.01	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:54 AM	

+="CN75708"	"RANGES & TAs BOUNDARY FENCE AND SIGNAGE UPGRADES AT CANUNGRA"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Feb-08	30-Jun-08	52228.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:54 AM	

+="CN75710"	"fruit & vegetables brisbane"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	07-Feb-08	30-Jun-08	49500.00	=""	="GMN VEGIPREPI"	10-May-08 08:54 AM	

+="CN75717"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	08-Feb-08	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 08:55 AM	

+="CN75725"	"PROVISION FOR DENTAL ASSISTANT SERVICES"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	44000.00	=""	="NASANSB"	10-May-08 08:56 AM	

+="CN75726"	"HWIL distributedSimulation Hardware Architecture - Design Study"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	07-Feb-08	30-May-08	55000.00	=""	="TENIX SYSTEMS PTY LTD"	10-May-08 08:56 AM	

+="CN75729"	"PERFORMANCE TESTING CARDS AND DELIVERY COSTS FOR N"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	07-Feb-08	21-Feb-08	43670.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 08:56 AM	

+="CN75730"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	07-Feb-08	41612.16	=""	="ATTORNEY GENERALS DEPARTMENT"	10-May-08 08:56 AM	

+="CN75735"	"POC: RYAN CAMPBELL CONTACT: 02 626 65735"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	25-Feb-08	30-Jun-08	50840.90	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 08:57 AM	

+="CN75748"	"POC: ROBYN NICHOLAS CONTACT: 02 626 50765"	="Department of Defence"	10-May-08	="Medical training and education supplies"	23-Feb-08	30-Jun-08	41551.62	=""	="APIS CONSULTING GROUP"	10-May-08 08:58 AM	

+="CN75752"	"POC: DAVE BEGGS CONTACT: 02 626 69158"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	53234.69	=""	="SUN MICROSYSTEMS"	10-May-08 08:58 AM	

+="CN75761"	"[PRINTING SERVICES"	="Department of Defence"	10-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Feb-08	25-Feb-08	56534.50	=""	="LAMB PRINT PTY LTD"	10-May-08 08:59 AM	

+="CN75780"	"Research agreement for CIEAM project AS302 Title: "Industrial Applications of Corrosion Sensing"."	="Department of Defence"	10-May-08	="Market research"	25-Feb-08	29-Feb-08	55000.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	10-May-08 09:01 AM	

+="CN75793"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	25-Feb-08	59407.50	=""	="MORISON CONSULTING PTY LTD"	10-May-08 09:02 AM	

+="CN75813"	"Analysis SO 45190"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	42063.98	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 09:04 AM	

+="CN75816"	"ASI Technology Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	52127.79	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75821"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	45656.40	=""	="SUN MICROSYSTEMS"	10-May-08 09:05 AM	

+="CN75826"	"Supply & Install Keysafe SAM 192 - IO 18283"	="Department of Defence"	10-May-08	="Vehicle safety and security systems and components"	22-Feb-08	30-Mar-08	51928.88	=""	="RUSWIN LOCKSMITHS & SECURITY"	10-May-08 09:05 AM	

+="CN75841"	"PABX Systems"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	28-Feb-08	31-Mar-08	55679.30	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 09:07 AM	

+="CN75864"	"Freight - various equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	30-Jun-08	44000.00	=""	="TNT FAILSAFE"	10-May-08 09:09 AM	

+="CN75865"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	03-Mar-08	51455.25	=""	="FJ GEYSEN & ASSOCIATES"	10-May-08 09:09 AM	

+="CN75866"	"BEDS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	28-Feb-08	31-Mar-08	40194.00	=""	="AUSTRALIAN BEDDING COMPANY PTY LTD"	10-May-08 09:09 AM	

+="CN75870"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	29-Jun-09	40425.00	=""	="MAINSTAR INTERNATIONAL LTD"	10-May-08 09:10 AM	

+="CN75886"	"DEMS SERVER MIGRATION PHASE 2-APA 083."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	28-Feb-08	30-Jun-08	45375.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 09:11 AM	

+="CN75900"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	26-Feb-08	02-Jun-08	55000.00	=""	="NATIONAL ICT AUSTRALIA LTD"	10-May-08 09:13 AM	

+="CN75904"	"NQ2081 - HMAS Cairns Redevelopment Covering Works."	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	26-Feb-08	30-Jun-08	43419.20	=""	="EMAK COMMUNICATIONS"	10-May-08 09:13 AM	

+="CN75906"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	26-Feb-08	30-Jul-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 09:13 AM	

+="CN75927"	"PEST ANIMAL MANAGEMENT - GBTA, ECTA, AMB AND PURGA"	="Department of Defence"	10-May-08	="Environmental management"	28-Feb-08	30-Jun-08	52525.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:15 AM	

+="CN75939"	"CISCO FIBRE SWITCHMODEL WS-C33750-24FS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Feb-08	06-Mar-08	48741.11	=""	="LOGITECH PTY LTD"	10-May-08 09:16 AM	

+="CN75968"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	22-Feb-08	49359.81	=""	="FIND IT HERE PTY LTD"	10-May-08 09:19 AM	

+="CN75972"	"DSTO RA Contract"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	19-Feb-08	22-Feb-08	55000.00	=""	="NATIONAL ICT AUSTRALIA LTD"	10-May-08 09:20 AM	

+="CN75986"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	18-Mar-08	49500.01	=""	="MINTER ELLISON"	10-May-08 09:58 AM	

+="CN75988"	"To correct the direct connectivity required to resolve an ongoing earthing problem."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	22-Nov-07	23-Dec-07	42614.47	=""	="STOWE AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN76007"	"PAINTING OF AIRCRAFT"	="Department of Defence"	10-May-08	="Aircraft"	16-Nov-07	16-Nov-07	42128.13	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 09:59 AM	

+="CN76020"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	40970.60	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76023"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Nov-07	21-Dec-07	49929.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76024"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jan-08	46960.84	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:00 AM	

+="CN76032"	"Software development service for the virtual battl"	="Department of Defence"	10-May-08	="Manufacturing support services"	21-Nov-07	20-May-08	55000.00	=""	="ICON RECRUITMENT"	10-May-08 10:00 AM	

+="CN76049"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	19-Nov-07	30-Oct-10	47141.21	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:01 AM	

+="CN76069"	"Casual Staff as per standing offer 0506-211"	="Department of Defence"	10-May-08	="Environmental management"	24-May-07	30-Jun-08	50000.00	=""	="SEARSON BUCK WORKFORCE PTY LTD"	10-May-08 10:02 AM	

+="CN76079"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	03-Jun-08	55000.00	=""	="LOTU'S BRIDGE"	10-May-08 10:03 AM	

+="CN76092"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-SITE AUDITOR"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	21-Nov-07	30-Jun-08	56392.10	=""	="SMEC AUSTRALIA"	10-May-08 10:04 AM	

+="CN76095"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	30-Jun-08	49500.00	=""	="DELOITTE TOUCHE TOHMATSU"	10-May-08 10:04 AM	

+="CN76096"	"FILM AND DVD PRODUCTION"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	21-Nov-07	30-Apr-08	56062.70	=""	="INNERPLAY"	10-May-08 10:04 AM	

+="CN76115"	"INSTALL, TEST & DOCUMENT FIBRE OPTIC CABLE INFRAST RUCTURE AS SPECIFIED INCL CABINET EARTH/INSTA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jun-07	26-Jun-07	48763.75	=""	="HEYDAY GROUP PTY LTD"	10-May-08 10:05 AM	

+="CN76117"	"Reconfigure Removable Walls of RFCR Swanbourne"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	56000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	10-May-08 10:05 AM	

+="CN76138"	"Amended WBS for the Line item 3 as requested"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	30-Jun-08	45100.00	=""	="DEDALE ASIA PTY LTD"	10-May-08 10:06 AM	

+="CN76147"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	10-May-08	="Emergency and field medical services products"	02-Apr-08	30-Jun-08	42677.80	=""	="DR E RUSSELL VICKERS"	10-May-08 10:06 AM	

+="CN76162"	"Maintenance Contract"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Nov-07	51413.98	=""	="SUN MICROSYSTEMS AUST PTY LTD"	10-May-08 10:07 AM	

+="CN76173"	"MOBILE PHONES"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	27-Nov-07	30-Jun-08	43397.20	=""	="TELSTRA"	10-May-08 10:08 AM	

+="CN76188"	"SIMPSON BARRACKS, WATSONIA - LAND WARFARE ENTRE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Apr-08	30-Jun-09	41052.41	=""	="GROCON CONSTRUCTIONS PTY LTD"	10-May-08 10:09 AM	

+="CN76193"	"supply of fresh meat brisbane"	="Department of Defence"	10-May-08	="Meat and poultry"	27-Nov-07	30-Jun-08	44000.00	=""	="TENDER PLUS PTY LTD"	10-May-08 10:09 AM	

+="CN76195"	"supply of groceries"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	27-Nov-07	30-Jun-08	49500.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 10:09 AM	

+="CN76199"	"supply of fresh  milk"	="Department of Defence"	10-May-08	="Milk and butter products"	27-Nov-07	30-Jun-08	49500.00	=""	="PAULS LIMITED"	10-May-08 10:09 AM	

+="CN76215"	"Dell poweredge computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Nov-07	03-Dec-07	41958.40	=""	="DELL AUSTRALIA PTY LTD"	10-May-08 10:10 AM	

+="CN76217"	"TRAINING"	="Department of Defence"	10-May-08	="Medical training and education supplies"	23-Nov-07	23-Nov-07	48000.00	=""	="TAFE NSW - SYDNEY INSTITUTE"	10-May-08 10:10 AM	

+="CN76218"	"Extra Regional Courier Services - SQld"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	12-Nov-07	30-Jun-08	44000.00	=""	="TOLL PRIORITY"	10-May-08 10:10 AM	

+="CN76221"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-09	45377.95	=""	="SME GATEWAY LIMITED"	10-May-08 10:11 AM	

+="CN76225"	"RESEARCH AGREMENT WITH SUE TYREMAN FROM THE SCHOOL OF COMPUTER & INFORMATION SCIENCE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Nov-07	23-Nov-07	47850.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	10-May-08 10:11 AM	

+="CN76233"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-May-08	54791.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:11 AM	

+="CN76237"	"Professional engineering support services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	23-Nov-07	20-Jun-08	55000.00	=""	="ADVANCED VTOL TECHNOLOGIES"	10-May-08 10:11 AM	

+="CN76244"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Electronic Components and Supplies"	02-Apr-07	31-Jan-08	49647.40	=""	="UNIVERSITY OF QUEENSLAND,"	10-May-08 10:12 AM	

+="CN76249"	"Miscellaneous minor new work , ACT/SNSW"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	23-Nov-07	30-Jun-08	52293.79	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:12 AM	

+="CN76252"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	55000.00	=""	="SME GATEWAY LIMITED"	10-May-08 10:12 AM	

+="CN76261"	"Contract 0708-190 Under Standing Offer 0506-271-26"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-Nov-07	30-Jun-08	44990.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:13 AM	

+="CN76273"	"STINGER III 306M PORTABLE ARM1 DAY BASIC SETUP & T RAINING"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Nov-07	07-Dec-07	41356.48	=""	="SCANNING & INSPECTION PTY LTD"	10-May-08 10:13 AM	

+="CN76279"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Jun-08	50050.00	=""	="SMS CONSULTING GROUP LIMITED"	10-May-08 10:14 AM	

+="CN76291"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	31-Dec-07	51942.00	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:14 AM	

+="CN76303"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-Jun-08	59840.00	=""	="ICON RECRUITMENT"	10-May-08 10:15 AM	

+="CN76304"	"SECURITY COMLIANCE WORKS - VARIOUS LOCATIONS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	50800.26	=""	="SPOTLESS"	10-May-08 10:15 AM	

+="CN76305"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-Jun-08	53856.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 10:15 AM	

+="CN76312"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Other sports"	05-May-08	30-Jun-08	57574.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:15 AM	

+="CN76313"	"POC: JON VAHLBERG CONTACT: 02 626 50751"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	14-Dec-07	48405.50	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 10:16 AM	

+="CN76320"	"ELECTRICITY SUPPLY"	="Department of Defence"	10-May-08	="Utilities"	07-Aug-07	30-Sep-08	59700.00	=""	="NHULUNBUY CORPORATION LTD"	10-May-08 10:16 AM	

+="CN76323"	"HIRE OF BUSES ANNUAL CAMP"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	07-Oct-07	10-Jan-08	49489.00	=""	="BRISBANE BUS LINES"	10-May-08 10:16 AM	

+="CN76331"	"SECURE MOBILE PHONES FOR FLLA K"	="Department of Defence"	10-May-08	="Consumer electronics"	08-Jan-08	10-Jan-08	45327.99	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:17 AM	

+="CN76349"	"DEFENCE MEMBERS TRAVEL - QANTAS"	="Department of Defence"	10-May-08	="Passenger transport"	30-Nov-07	30-Nov-07	46360.91	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76364"	"LANDING FEES AT AIRPORT"	="Department of Defence"	10-May-08	="Lease and rental of property or building"	28-Apr-08	30-Jun-08	44000.00	=""	="CANBERRA INTERNATIONAL AIRPORT PTY"	10-May-08 10:18 AM	

+="CN76373"	"MERIT SELECTION ADVISORY COMMITTEE"	="Department of Defence"	10-May-08	="Personnel recruitment"	10-Jan-08	28-Jan-08	48062.48	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	10-May-08 10:19 AM	

+="CN76378"	"WATER & SEWERAGE"	="Department of Defence"	10-May-08	="Environmental management"	12-Nov-07	30-Jun-08	50000.00	=""	="WATER CORPORATION"	10-May-08 10:19 AM	

+="CN76382"	"FREIGHT REQUIREMENTS FY 07/08"	="Department of Defence"	10-May-08	="Product and material transport vehicles"	23-Apr-08	30-Jun-08	44000.00	=""	="TOLL PRIORITY"	10-May-08 10:20 AM	

+="CN76384"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-May-08	30-Jun-08	44698.50	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 10:20 AM	

+="CN76389"	"QANTAS ACCOUNT 05-511894 31DEC07"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	42759.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:20 AM	

+="CN76407"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	48289.77	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:21 AM	

+="CN76427"	"VEHICLE LEASE FLLA  NOV - DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	02-Dec-07	21-Dec-07	49113.89	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76429"	"VEHICLE LEASE FLLA  NOV - DEC 07"	="Department of Defence"	10-May-08	="Motor vehicles"	17-Dec-07	21-Dec-07	47586.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76433"	"DEC UP ARMOURED VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	16-Dec-07	24-Dec-07	40690.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:22 AM	

+="CN76446"	"Venue hire for GPSL particiapnts accommodation and"	="Department of Defence"	10-May-08	="Accommodation furniture"	30-Nov-07	02-Jan-08	50987.75	=""	="HOLMESGLEN INSTITUTE OF TAFE"	10-May-08 10:23 AM	

+="CN76461"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	44000.00	=""	="CLEARZ PTY LTD"	10-May-08 10:24 AM	

+="CN76469"	"RAAF TINDAL FUEL FARM UPGRADE PHASE 1"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	30-Jun-08	40315.00	=""	="NORTHERN REFUELING MAINTENANCE P/L"	10-May-08 10:25 AM	

+="CN76471"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	12-Nov-07	30-Jun-08	41439.75	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:25 AM	

+="CN76476"	"Supply Industrial Gas RAAF Edinburgh"	="Department of Defence"	10-May-08	="Gaseous fuels and additives"	21-Apr-08	30-Jun-08	49500.00	=""	="BOC LIMITED"	10-May-08 10:25 AM	

+="CN76481"	"LEASING OF MANITENANCE OF 15 VEHICLES"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	31-Dec-07	40826.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:25 AM	

+="CN76488"	"SUPPLY OF 1 X DESKTOP SUPPORT OFFICER FOR PERIOD 07 JAN TO 26 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	26-Jun-08	49500.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	10-May-08 10:26 AM	

+="CN76491"	"BUILDING CONSTRUCTION FLLA AFG"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	23-Dec-07	07-Jan-08	50406.40	=""	="RECON INTERNATIONAL KANDAHAR"	10-May-08 10:26 AM	

+="CN76494"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	50000.01	=""	="BUSINESS CATALYST INTERNATIONAL"	10-May-08 10:26 AM	

+="CN76499"	"CAB FARES"	="Department of Defence"	10-May-08	="Passenger motor vehicles"	10-Dec-07	10-Dec-07	43472.54	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:26 AM	

+="CN76503"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	42038.39	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76525"	"RENTAL PAYMENTS GURNEY BEACH APPARTMENTS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	01-Feb-08	01-Feb-08	47304.98	=""	="TAN SIEW CHIN SDN BHD"	10-May-08 10:28 AM	

+="CN76528"	"VENUE FOR THE ENVIRONMENTAL CONFERENCE 2007."	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	29-Nov-07	30-Jun-08	40384.00	=""	="MARQUE HOTEL CANBERRA"	10-May-08 10:28 AM	

+="CN76534"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	46068.00	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 10:29 AM	

+="CN76540"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	04-Feb-08	55770.12	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:29 AM	

+="CN76547"	"WTSS OAKLEY. TO PROVIDE PM/CA SERVICES FOR DELIVERY FOR THE WTS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	30-Nov-07	30-Jun-08	51516.30	=""	="SKM"	10-May-08 10:29 AM	

+="CN76550"	"02-231986 DEC 07"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	31-Dec-07	30-Jan-08	50113.72	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76551"	"AERONAUTICAL ENGINEER"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	30-Nov-07	30-Jun-08	50872.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:30 AM	

+="CN76553"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	54390.99	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76555"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	58118.50	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76559"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	23-Jul-08	42876.99	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:30 AM	

+="CN76573"	"02-244891 30NOV07 LINE ITEM 3073 - 3144"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	46927.39	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:31 AM	

+="CN76578"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	46035.00	=""	="CLAYTON UTZ"	10-May-08 10:31 AM	

+="CN76586"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	44000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 10:32 AM	

+="CN76594"	"SPONSORSHIP FEES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	55000.00	=""	="RE-ENGINEERING AUSTRALIA FORUM LTD"	10-May-08 10:32 AM	

+="CN76599"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	22-Jan-08	31-Dec-08	58888.95	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76600"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	27-Nov-07	01-Oct-08	54180.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:33 AM	

+="CN76602"	"SUPPLY OF 1 X DESKTOP SUPPORT OFFICER FOR PERIOD 07 JAN TO 26 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	26-Jun-08	49500.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 10:33 AM	

+="CN76603"	"CLEANING AND AQIS INSPECTION  27JUL- 8 AUG 2007"	="Department of Defence"	10-May-08	="Aircraft"	04-Feb-08	29-Feb-08	49045.10	=""	="PDL TOLL"	10-May-08 10:33 AM	

+="CN76613"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	31-Dec-07	05-Feb-08	57406.11	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:33 AM	

+="CN76628"	"File 2007/1142912 refers Hourly rate of $70 + $7 GST for 400 hours"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	27-Nov-07	01-Apr-08	52800.00	=""	="NKL SERVICES PTY LTD"	10-May-08 10:34 AM	

+="CN76635"	"DUMMY PAYMENT DUPLICATE PAYMENT INV 2406142"	="Department of Defence"	10-May-08	="Legal services"	30-Mar-07	22-Jan-08	40127.78	=""	="PHILLIPS FOX SYDNEY"	10-May-08 10:35 AM	

+="CN76639"	"LEASING OF MANITENANCE OF 15 VEHICLES"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Nov-07	30-Nov-07	41916.44	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:35 AM	

+="CN76658"	"This order is placed IAW the Terms and Conditions 06/32"	="Department of Defence"	10-May-08	="Medical training and education supplies"	28-Nov-07	12-Dec-07	59618.33	=""	="BAE SYSTEMS AUSTRALIA LTD"	10-May-08 10:36 AM	

+="CN76662"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Nov-07	01-Jun-08	59840.00	=""	="ICON RECRUITMENT"	10-May-08 10:36 AM	

+="CN76665"	"QANTAS"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	22-Jan-08	41941.58	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:37 AM	

+="CN76678"	"MANUFACTURE BASE PLATES AS PER DRAWINGS"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Nov-07	31-Mar-08	48312.00	=""	="AUSTEK ENGINEERING TRADING PTY"	10-May-08 10:37 AM	

+="CN76682"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	41167.59	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:38 AM	

+="CN76689"	"VEHICLE LEASE FLLA   -"	="Department of Defence"	10-May-08	="Motor vehicles"	05-Jan-08	29-Jan-08	47496.94	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76690"	"Purchase of IT Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Nov-07	12-Mar-08	46228.47	=""	="COMMANDER (ACT)"	10-May-08 10:38 AM	

+="CN76691"	"CONTAINER  FLLA K"	="Department of Defence"	10-May-08	="Containers and storage"	15-Jan-08	29-Jan-08	41487.95	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:38 AM	

+="CN76707"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	30-Jun-10	57883.50	=""	="MSA CONTINGENT ACCOUNT"	10-May-08 10:39 AM	

+="CN76744"	"PAYMENT TO OFFICAL BANK ACCOUNT PALAU"	="Department of Defence"	10-May-08	="Project management"	26-Nov-07	30-Jun-10	58388.12	=""	="MARITIME SURVEILLANCE"	10-May-08 10:41 AM	

+="CN76746"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	10-May-08	="Project management"	28-Nov-07	30-Jun-10	56908.50	=""	="MSA CONTINGENT ACCOUNT"	10-May-08 10:41 AM	

+="CN76754"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	30-Nov-07	49452.75	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76758"	"Harman Routine - 4500602441"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Oct-07	30-Jun-08	43881.03	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:42 AM	

+="CN76762"	"TAXI FARES"	="Department of Defence"	10-May-08	="Transportation services equipment"	12-Nov-07	12-Nov-07	44695.12	=""	="CAB CHARGE AUST PTY LTD"	10-May-08 10:42 AM	

+="CN76791"	"Development of Task Tracking System"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	30-Jun-08	54912.00	=""	="EDS (AUSTRALIA) PTY LTD"	10-May-08 10:44 AM	

+="CN76792"	"QANTAS ACCOUNT 1 AVN REGT OCTOBER 2007"	="Department of Defence"	10-May-08	="Passenger transport"	31-Oct-07	30-Nov-07	59991.25	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:44 AM	

+="CN76797"	"Working smart with MS Outlook Training"	="Department of Defence"	10-May-08	="Education and Training Services"	04-Dec-07	31-Jan-08	46508.00	=""	="PRIORITY MANAGEMENT NSW"	10-May-08 10:44 AM	

+="CN76803"	"FREEZE DRYER VACUUM PRESSURE CAHMBER-DISMANTLE, SA NDBLAST, APPLY PROTECTIVE COATINGS & RE-ASSEM"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	30-Nov-07	08-Feb-08	46213.50	=""	="C & C BURROWS MAINTENANCE"	10-May-08 10:44 AM	

+="CN76807"	"TOUGHEND MONITORS FOR HMAS TOOWOOMBA"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	21-Dec-07	46084.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:44 AM	

+="CN76812"	"AFPO 14 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	40392.85	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76814"	"AFPO 16 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	49002.35	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76820"	"AFPO 20 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	56787.35	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76821"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	28-Dec-07	41944.21	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:45 AM	

+="CN76824"	"QANTAS PAYMENT 31 OCT07"	="Department of Defence"	10-May-08	="Transportation services equipment"	13-Nov-07	30-Dec-07	41326.18	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:45 AM	

+="CN76826"	"AFPO 5 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	47133.85	=""	="AUSTRALIA POST"	10-May-08 10:46 AM	

+="CN76835"	"Office Chairs JCC"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	30-Nov-07	30-Nov-07	50326.65	=""	="KAB SEATING SYSTEMS"	10-May-08 10:46 AM	

+="CN76854"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	07-Dec-07	49500.00	=""	="INNOVATION TECHNOLOGY SERVICES"	10-May-08 10:48 AM	

+="CN76864"	"POC: Charles Bateson PHONE: 02 6265 0197"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	02-Dec-07	12-Dec-07	43500.00	=""	="EXCOM EDUCATION"	10-May-08 10:48 AM	

+="CN76881"	"ARTC OCTOBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	31-Oct-07	19-Nov-07	56017.35	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:49 AM	

+="CN76899"	"VEHICLE LEASE FLLA K NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	03-Nov-07	24-Nov-07	53820.57	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76901"	"VEHICLE LEASE FLLA K NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	18-Nov-07	24-Nov-07	40475.88	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76905"	"VEHICLE LEASE FLLA  NOV 07"	="Department of Defence"	10-May-08	="Motor vehicles"	04-Nov-07	25-Nov-07	48225.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:51 AM	

+="CN76906"	"INSTRUCTIONS"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	11-Feb-08	57344.95	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 10:51 AM	

+="CN76910"	"Provision of Contractor Services-Julianne Thornton for period Dec 2007-June 2008"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	22-Nov-07	25-Jun-08	44000.00	=""	="UNIVERSAL RECRUITMENT"	10-May-08 10:51 AM	

+="CN76915"	"op astute RPT airfares"	="Department of Defence"	10-May-08	="Aircraft"	30-Sep-07	30-Jun-08	59016.48	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:51 AM	

+="CN76919"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	20-Nov-07	22-Nov-07	48845.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:51 AM	

+="CN76936"	"Terms and Conditions of this contract are as negot Commonwealth of Australia and METAVR."	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	28-Feb-09	43062.03	=""	="METAVR INC."	10-May-08 10:53 AM	

+="CN76939"	"VEHICLE LEASE FLLA AFG"	="Department of Defence"	10-May-08	="Motor vehicles"	09-Dec-07	13-Dec-07	53254.43	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:53 AM	

+="CN76950"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	21-Dec-07	47049.31	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:53 AM	

+="CN76956"	"FREIGHT CHARGES 0708"	="Department of Defence"	10-May-08	="Transportation services equipment"	22-Nov-07	30-Jun-08	44000.00	=""	="TNT AUSTRALIA"	10-May-08 10:54 AM	

+="CN76990"	"OFFICE CHAIRS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	16-Jan-08	28-Jun-08	59840.00	=""	="ARTEIL PTY LTD"	10-May-08 11:41 AM	

+="CN77025"	"CONTRACTED HEALTH PROFESSIONAL"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	30-Jan-08	30-Jul-08	47190.00	=""	="L E MCDOWELL PTY LTD"	10-May-08 11:43 AM	

+="CN77027"	"order is placed against Standing offer SON 32916 ."	="Department of Defence"	10-May-08	="Professional engineering services"	01-Feb-08	24-Apr-08	49500.00	=""	="AMBROSE LOGISTICS CONSULTING"	10-May-08 11:43 AM	

+="CN77031"	"TSS Contract -  Documentation of Underwater Acoust ic Measuring Apparatus"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	01-Feb-08	16-May-08	49600.00	=""	="CANTAB SCIENTIFIC"	10-May-08 11:43 AM	

+="CN77047"	"PROVISION OF DENTAL ASSISTANT SERVICES WOODSIDE BARRACKS JAN 08 - JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	48999.50	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77051"	"Accommodation Venue hire & catering for conference"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	02-Feb-08	29-Feb-08	59450.00	=""	="HEMISPHERE CONFERENCE CENTRE"	10-May-08 11:44 AM	

+="CN77053"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	11-Feb-08	48243.15	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:44 AM	

+="CN77066"	"portable tunablediode CO monitor with datalogging"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	16-Jan-08	29-Feb-08	45294.88	=""	="SOUTHWEST SCIENCES INC"	10-May-08 11:45 AM	

+="CN77092"	"WATSONIA:EFENCE FORCE SCHOOL OF SIGNALS(DFSS) PROVIDE PROBITY ADVICE TO THE PROJECT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	48400.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 11:47 AM	

+="CN77095"	"FIELD PACKS"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	15-Jan-08	15-Jan-08	46612.50	=""	="AUS WEBGEAR PTY LTD"	10-May-08 11:47 AM	

+="CN77131"	"Cargo tpt, Vehicle hire for Numbulwar ISO OP Outreach"	="Department of Defence"	10-May-08	="Transportation services equipment"	15-Jan-08	13-Feb-08	56665.40	=""	="PDL TOLL"	10-May-08 11:50 AM	

+="CN77147"	"Phase 2 - Agreement"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	04-Feb-08	55000.00	=""	="THE FLINDERS UNIVERSITY OF SA"	10-May-08 11:51 AM	

+="CN77157"	"Time domain and simulator"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	14-Feb-08	45287.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 11:51 AM	

+="CN77158"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	53460.00	=""	="FREEBODY COGENT PTY LTD"	10-May-08 11:52 AM	

+="CN77162"	"TSS Contract Firing Officer for High Explosives Firing Comples WSD"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-Jan-08	30-Jun-08	50723.75	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:52 AM	

+="CN77163"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	14-Feb-08	52648.12	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:52 AM	

+="CN77165"	"SA2292 ROAD MOVEMENTS FUEL AWNING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:52 AM	

+="CN77169"	"S5180, WR's 300051546, 300051545, 300051541, 30005 300071215, 300051539. Sydney Central Infrast"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	46099.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 11:52 AM	

+="CN77175"	" Facility Refurbishment "	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:53 AM	

+="CN77179"	"POC:STEVE CAUSER IT DEVICES 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	05-Mar-08	54820.17	=""	="SUN MICROSYSTEMS"	10-May-08 11:53 AM	

+="CN77181"	"INTERIM WORKS-ARMY RECRUIT TRAINING CENTRE, KAPOOK MEDICRAFT HILL-ROM FOR KAPOOKA A4500."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	46046.00	=""	="MEDICRAFT HILL-ROM AUSTRALIA PTY"	10-May-08 11:53 AM	

+="CN77187"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	31-Mar-08	55312.28	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 11:53 AM	

+="CN77192"	"C-130J Structural integrity Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	16-Jan-08	30-Jun-08	58502.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 11:54 AM	

+="CN77202"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	18-Jan-08	25-Jan-08	55000.00	=""	="UNIVERSITY OF ADELAIDE"	10-May-08 11:54 AM	

+="CN77230"	"SA1271 VEHICLE RAMP & WASHDOWN FAC WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	01-Feb-08	30-Jun-08	46200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77234"	"Complex Procurement: Contract 0708-229 Human Factor - Lvl 2, Project Air 7000, Conduct re"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Feb-08	30-Jun-08	50999.30	=""	="DEDALE ASIA PTY LTD"	10-May-08 11:56 AM	

+="CN77247"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	51830.00	=""	="CLAYTON UTZ"	10-May-08 11:57 AM	

+="CN77253"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	44300.00	=""	="CLAYTON UTZ"	10-May-08 11:57 AM	

+="CN77255"	"HQJOC PROJECT-THALES (SUBCOMMCEN PC & KVM EQUIPTME"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	46242.75	=""	="THALES AUSTRALIA"	10-May-08 11:57 AM	

+="CN77265"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	21-Jan-08	23-Jun-08	48462.92	=""	="YTEK PTY LTD"	10-May-08 11:58 AM	

+="CN77273"	"POC:Greg Lightfoot IT DEVICES 02 626 60083"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Jan-08	15-Feb-08	42680.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 11:58 AM	

+="CN77276"	"ADVERTISING"	="Department of Defence"	10-May-08	="Office supplies"	22-Jan-08	30-Jun-08	42660.75	=""	="GEORGE PATTERSON Y & R"	10-May-08 11:59 AM	

+="CN77296"	"RAAF RICHMOND TRI METS PROJECT CONTRACT ADMINISTRATION FOR TRI-METS DELIVERY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Jan-08	30-Jun-08	46200.00	=""	="CARSON GROUP PTY LTD"	10-May-08 12:00 PM	

+="CN77300"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	28-Mar-08	41382.23	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:00 PM	

+="CN77302"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	56971.01	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:00 PM	

+="CN77326"	"HQJOC PROJECT-CORPORATE EXPRESS (ENCRYPTORS)"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	42801.68	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 12:02 PM	

+="CN77331"	"PCs"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	50209.50	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 12:02 PM	

+="CN77333"	"S5180, WR 300069472. DS-SC Regional Physical Infra 07-08. Develop an EMS for HMAS Watson that is int"	="Department of Defence"	10-May-08	="Environmental control systems"	23-Jan-08	30-Jun-08	54909.80	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:02 PM	

+="CN77341"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	22-Jan-08	01-Jun-10	45853.70	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:02 PM	

+="CN77345"	"PUBLICATIONS"	="Department of Defence"	10-May-08	="Education and Training Services"	22-Jan-08	31-Dec-08	40000.00	=""	="AUSTRALIAN MILITARY HISTORY"	10-May-08 12:03 PM	

+="CN77357"	"fresh meat wbta"	="Department of Defence"	10-May-08	="Meat and poultry"	22-Jan-08	30-Jun-08	53182.93	=""	="RENA WHOLESALE MEATS"	10-May-08 12:03 PM	

+="CN77358"	"additional disk shelf"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	28-Feb-08	43283.30	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	10-May-08 12:03 PM	

+="CN77359"	"fresh fruit & vegetables wbta"	="Department of Defence"	10-May-08	="Fruits and vegetables and nuts and seeds"	22-Jan-08	30-Jun-08	42653.00	=""	="FARMERS FRUIT EXCHANGE"	10-May-08 12:03 PM	

+="CN77360"	"HAND HELD RADIOS - DEFENCE NETWORK"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	18-Jan-08	28-Feb-08	44517.00	=""	="CAPRICORN COMMUNICATIONS"	10-May-08 12:04 PM	

+="CN77440"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Jan-08	09-May-08	55000.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:08 PM	

+="CN77473"	"POC: Michael Mitchell Contact: 02 62650340"	="Department of Defence"	10-May-08	="Office supplies"	25-Jan-08	20-Mar-08	55407.01	=""	="HUTCHINSON COMMUNICATIONS"	10-May-08 12:10 PM	

+="CN77500"	"Replace faulty lines and cabling to multiple buildings within DEOG."	="Department of Defence"	10-May-08	="Electrical wire and cable and harness"	29-Jan-08	01-Mar-08	48180.00	=""	="STOWE AUSTRALIA PTY LTD"	10-May-08 12:12 PM	

+="CN77514"	"bottled water"	="Department of Defence"	10-May-08	="Non alcoholic beverages"	08-Jan-08	30-Jun-08	49500.00	=""	="COOROY MOUNTAIN SPRING WATER"	10-May-08 12:12 PM	

+="CN77518"	"MILITARY LANDINGS AT GILGANDRA AERODROME JULY 07 TO JUNE 08"	="Department of Defence"	10-May-08	="Transport operations"	08-Jan-08	30-Jun-08	55000.00	=""	="GILGANDRA SHIRE COUNCIL"	10-May-08 12:13 PM	

+="CN77521"	"Software engineer/ Computer programmer"	="Department of Defence"	10-May-08	="Temporary personnel services"	29-Jan-08	27-Jun-08	57340.80	=""	="DAVTEC IT PTY LTD"	10-May-08 12:13 PM	

+="CN77522"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-May-08	40480.00	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 12:13 PM	

+="CN77525"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	29-Jan-08	58950.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	10-May-08 12:13 PM	

+="CN77544"	"2 PERS HIRE (1 X VM,1 X RPS CLK/STM) 7JAN - 28 MAR 2008"	="Department of Defence"	10-May-08	="Business administration services"	07-Jan-08	28-Mar-08	48823.07	=""	="DRAKE INTERNATIONAL"	10-May-08 12:14 PM	

+="CN77557"	"2 X 5700 BASE RECEIVERS"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	24-Jan-08	15-Feb-08	55990.00	=""	="ULTIMATE POSITIONING"	10-May-08 12:15 PM	

+="CN77561"	"Acer Veriton T661 Mini Tower PC & Acer P223WB 22" widescreen LCD Monitor x Qty 35"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	15-Feb-08	54846.00	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:15 PM	

+="CN77563"	"Avision Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	04-Feb-08	46332.12	=""	="COMMANDER (ACT)"	10-May-08 12:15 PM	

+="CN77564"	"R&D CONTRACT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	09-Jan-08	30-Jun-08	43175.00	=""	="BALLISTIC SYSTEMS PTY LTD"	10-May-08 12:15 PM	

+="CN77580"	"meat brisbane"	="Department of Defence"	10-May-08	="Meat and poultry"	09-Jan-08	30-Jul-08	44000.00	=""	="TENDER PLUS PTY LTD"	10-May-08 12:16 PM	

+="CN77586"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	30-Apr-08	46711.98	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:16 PM	

+="CN77597"	"Building removal"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	27-Feb-08	42183.72	=""	="WATTS CONSTRUCTIONS"	10-May-08 12:17 PM	

+="CN77603"	"Deleading of 23m range"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	09-Jan-08	30-Jun-08	51506.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:17 PM	

+="CN77608"	"AHS-NQ Aspen Service Provider Transition Commercial Effort - $4435.14"	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	25-Jan-08	31-Dec-11	43581.05	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 12:18 PM	

+="CN77610"	"POC: J.McClusky 02 6127 7069"	="Department of Defence"	10-May-08	="Hardware"	25-Jan-08	22-Feb-08	59070.00	=""	="IBM AUSTRALIA LTD"	10-May-08 12:18 PM	

+="CN77628"	" PROFESSIONAL FEES "	="Department of Defence"	10-May-08	="Legal services"	14-Jan-08	30-Jun-08	57758.14	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:19 PM	

+="CN77629"	"SN02298 - ACT/SNSW WATER & AIR QUALITY MONITORING"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	48250.40	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:19 PM	

+="CN77640"	"groceries brisbane"	="Department of Defence"	10-May-08	="Prepared and preserved foods"	24-Jan-08	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	10-May-08 12:19 PM	

+="CN77641"	"WA994948 COC-MINOR REPAIRS & MAINTENANCE TO ISLAND FACILITIES"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	14-Jan-08	30-Jun-08	49545.45	=""	="COCOS MANPOWER"	10-May-08 12:19 PM	

+="CN77642"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	49768.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:19 PM	

+="CN77654"	"R2 vault re-certification"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	11-Dec-07	30-Jun-08	48389.01	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:20 PM	

+="CN77655"	"POC: DAVID BEGGS CONTACT: 02 626 69158"	="Department of Defence"	10-May-08	="Software"	14-Jan-08	28-Jan-08	47077.39	=""	="PLANWELL TECHNOLOGY"	10-May-08 12:20 PM	

+="CN77662"	"Aeronautical Engineer for Com pendium work"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Dec-07	30-Jun-08	48633.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:21 PM	

+="CN77664"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	11-Dec-07	21-Dec-07	59664.00	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:21 PM	

+="CN77667"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	15-Jan-08	30-Sep-08	59015.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:21 PM	

+="CN77668"	"LAUNDRY FOR DENTAL AND HOSPITAL FY0708"	="Department of Defence"	10-May-08	="Cleaning Equipment and Supplies"	11-Dec-07	30-Jun-08	49500.00	=""	="PALEYS DRY CLEANERS"	10-May-08 12:21 PM	

+="CN77679"	"AIR 8000 PHASE 3-HEAVY AIR LIFT(HAL)FACILITIES PROVIDE PROBITY ADVICE TO THE PROJECT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	15-Jan-08	30-Jun-08	55000.00	=""	="SPARKE HELMORE LAWYERS"	10-May-08 12:21 PM	

+="CN77680"	"Upgrading of HQACG Video Conferencing Facility"	="Department of Defence"	10-May-08	="Photographic or filming or video equipment"	11-Dec-07	30-Jun-08	59328.30	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 12:21 PM	

+="CN77683"	"VR-Forces and VR-Link Runtime Licences and Annual Maintenance"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	31-Mar-08	43505.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	10-May-08 12:22 PM	

+="CN77684"	"ACCOMMODATION"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	11-Dec-07	11-Dec-07	46299.46	=""	="WALDORF APARTMENT HOTEL"	10-May-08 12:22 PM	

+="CN77691"	"Ken Gutterson for stocktake"	="Department of Defence"	10-May-08	="Tools and General Machinery"	14-Jan-08	30-Jun-08	55440.00	=""	="CORDELTA PTY LTD"	10-May-08 12:22 PM	

+="CN77693"	"Provision of professional services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Jan-08	23-Jun-08	56799.60	=""	="BALL SOLUTIONS GROUP PTY LTD"	10-May-08 12:22 PM	

+="CN77694"	"INSTALLATION OF DSN / DRN AT CANUNGRA"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	11-Dec-07	30-Jun-08	47564.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:22 PM	

+="CN77702"	"purchase of lcd projectors"	="Department of Defence"	10-May-08	="Office machines and their supplies and accessories"	12-Dec-07	14-Dec-07	48375.72	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	10-May-08 12:23 PM	

+="CN77708"	"AUDIT OF TELECOMMUNICATIONS"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	01-Feb-08	43835.00	=""	="ALLIED TECHNOLOGIES"	10-May-08 12:23 PM	

+="CN77714"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	22-Feb-08	41580.00	=""	="TELEPHONE WRECKERS PTY LTD"	10-May-08 12:23 PM	

+="CN77724"	"LEASE COSTS"	="Department of Defence"	10-May-08	="Motor vehicles"	12-Dec-07	20-Nov-10	56592.00	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 12:24 PM	

+="CN77734"	"Supply and Installation of 26 Blister Safes"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	11-Dec-07	30-Jun-08	46092.04	=""	="BRISBANE LOCKSMITHS PTY LTD"	10-May-08 12:24 PM	

+="CN77749"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	30-Jun-08	54965.63	=""	="FCS PREMIER PTY LTD"	10-May-08 12:25 PM	

+="CN77763"	"COMPUTER TAPES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	10-Dec-07	45100.00	=""	="ENIGMA BUSINESS PRODUCTS"	10-May-08 12:26 PM	

+="CN77765"	"EDUCATIONAL DELIVERY OF AEROSPACE VEHICLE"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:26 PM	

+="CN77777"	"NON CAMPAIGN ADVERTISING WILL ASSIST IN DELIVERING FOR AIR FORCE RECRUITING PRIORITIES. TR 10.12.07"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Jun-08	43109.06	=""	="HMA BLAZE PTY LIMITED"	10-May-08 12:27 PM	

+="CN77783"	"CONSTRUCTION"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	31-Jan-08	44370.70	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:27 PM	

+="CN77796"	"GSS Facilities Appraisal Technical Authority: Fess Parker"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	11-Jan-08	30-Jun-08	42900.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	10-May-08 12:28 PM	

+="CN77801"	"HIRE OF PERSONNEL IAW STANDING OFFER LH 01/05"	="Department of Defence"	10-May-08	="Motor vehicles"	10-Dec-07	30-Jun-08	49168.90	=""	="DRAKE INTERNATIONAL"	10-May-08 12:28 PM	

+="CN77803"	"NBS Reference: CDM 362-06-52-08 CIOG Activity: CIOG597/07"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Dec-07	04-Jan-08	49468.35	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:28 PM	

+="CN77805"	"VALUE BASED ORDER FOR TELEPHONE COSTS"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	10-Dec-07	28-May-08	44000.00	=""	="TELSTRA CORPORATION LTD"	10-May-08 12:28 PM	

+="CN77818"	"Contract No. 0708-212 JSTAB"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Jan-08	30-Jun-08	41540.40	=""	="FORTBURN PTY LTD"	10-May-08 12:29 PM	

+="CN77825"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	11-Dec-07	30-Jun-08	47048.67	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:29 PM	

+="CN77827"	"Provision of Professional Engineering Services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	11-Dec-07	30-Jun-08	54942.62	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:29 PM	

+="CN77829"	"Remedial Works in ADFRU, APA and Medical Centre to Comms Cabinets and Active Equipment to Comply wit"	="Department of Defence"	10-May-08	="Components for information technology or broadcasting or telecommunications"	11-Dec-07	30-Jun-08	50575.61	=""	="HAMMETT TECHNOLOGIES"	10-May-08 12:30 PM	

+="CN77831"	"DELIVER ZBUS8401 TEAM PROJECT TO ATSOC STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77835"	"DELIVER ZITE7205 FUNDAMENTS OF SURVEILLANCE TECHNOLOGIES TO STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77839"	"DELIVER ZITE8226 SYSTEMS ENGINEERING PRACTICE TO ATSOC STUDENTS"	="Department of Defence"	10-May-08	="Education and Training Services"	10-Dec-07	30-Dec-07	49388.98	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 12:30 PM	

+="CN77842"	"PRE ENGAGEMENT MEDICALS FOR APS EMPLOYEES"	="Department of Defence"	10-May-08	="Patient exam and monitoring products"	31-Jan-08	30-Jun-08	44000.00	=""	="HEALTH FOR INDUSTRY"	10-May-08 12:30 PM	

+="CN77848"	"Switches/LC connectors"	="Department of Defence"	10-May-08	="Electrical components"	31-Jan-08	29-Feb-08	55565.62	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 12:31 PM	

+="CN77854"	"SUSTAINMENT FLIGHTS (01FEB - 30JUN08) FOR 114MCRU"	="Department of Defence"	10-May-08	="Transport operations"	30-Jan-08	30-Jun-08	53106.90	=""	="PDL TOLL"	10-May-08 12:31 PM	

+="CN77861"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	56806.20	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77874"	"HIRE OF PERSONNEL IAW DRAKE STANDING OFFER LH 01/0"	="Department of Defence"	10-May-08	="Motor vehicles"	30-Jan-08	30-Jun-08	40814.40	=""	="DRAKE INTERNATIONAL"	10-May-08 12:32 PM	

+="CN77876"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	40131.08	=""	="SUN MICROSYSTEMS"	10-May-08 12:32 PM	

+="CN77880"	"S5180, WR's 300066414, 300066427. Sydney Central P Apprasials FY 07-08 Technical Services Aspec"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	41094.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:32 PM	

+="CN77884"	"100kHz transducer."	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Jan-08	27-Jun-08	51700.00	=""	="BIOLAB (AUST) PTY LTD"	10-May-08 12:33 PM	

+="CN77886"	"Comms/IT"	="Department of Defence"	10-May-08	="Hardware"	31-Jan-08	28-Feb-08	47668.54	=""	="SECOM TECHNICAL SERVICES"	10-May-08 12:33 PM	

+="CN77896"	"Communications Modelling for Red and Blue Teaming in the SIL"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	18-Apr-08	55000.00	=""	="BALL SOLUTIONS GROUP"	10-May-08 12:33 PM	

+="CN77909"	"POC: Steve Causer Contact: 02 6265 0450"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	53900.00	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	10-May-08 12:34 PM	

+="CN77921"	"ACCOMMODATION AND FACILITIES HIRE"	="Department of Defence"	10-May-08	="Education and Training Services"	13-Dec-07	13-Dec-07	59919.60	=""	="SEA WORLD NARA HOTEL PTY LTD"	10-May-08 12:35 PM	

+="CN77922"	"Machine parts for repair and maintenance services on Transonic Wind Tunnel"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	31-Jan-08	31-Mar-08	47450.73	=""	="AERO SYSTEMS ENGINEERING INC"	10-May-08 12:35 PM	

+="CN77969"	"Cabinets for R1 and R8"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	29-Jan-08	30-Jun-08	57785.41	=""	="CIC SECURE PTY LTD"	10-May-08 12:37 PM	

+="CN77970"	"BOOKS"	="Department of Defence"	10-May-08	="Printing and publishing equipment"	12-Dec-07	19-Dec-07	45401.76	=""	="IHS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77981"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Jan-08	29-Feb-08	40890.12	=""	="INSITEC"	10-May-08 12:38 PM	

+="CN77994"	"Pouches & Bag Textile"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	07-May-08	16-May-08	44550.00	="CC1V0L"	="Platypus Outdoors Group Pty Ltd"	12-May-08 09:21 AM	

+="CN78007"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Dec-07	01-Jun-10	45853.70	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 09:31 AM	

+="CN78016"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	44200.20	=""	="FRESH CREATIVE DESIGN"	12-May-08 09:33 AM	

+="CN78020"	"Fibre Optic Bundles"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	14-Dec-07	07-Jan-08	47846.71	=""	="NUFERN"	12-May-08 09:34 AM	

+="CN78030"	"VOYAGE"	="Department of Defence"	12-May-08	="Recreational watercraft"	14-Dec-07	17-Jan-08	43340.00	=""	="LEEUWIN OCEAN ADVENTURE"	12-May-08 09:36 AM	

+="CN78037"	"IAW CJOPS MINUTE (A1206456) DATED 3/12/07 REQUIRE HQJOC4(MHQ L1) BE CAPABLE OF HIGH DEF. VIDEO CONF"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	29-Feb-08	57266.25	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78042"	"Provision of labour hire to 20 STA REGT from 1 Jan TO 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	51747.86	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78059"	"Contract Doc to develop underwater acoustic measuring apparatus"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	30-Jun-08	46516.80	=""	="MIDSPAR SYSTEMS"	12-May-08 09:42 AM	

+="CN78062"	"Temp accommodation between R5-R6"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-08	52201.64	=""	="SPOTLESS P & F PTY LTD"	12-May-08 09:43 AM	

+="CN78083"	"CUSTOMER STATISTICAL SURVAY - GSS/CMS CONTRACTS 2 Years Strategic Review - South Australia"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	31-Jul-08	41701.00	=""	="THE RYDER SELF GROUP"	12-May-08 09:48 AM	

+="CN78096"	"Reseach scientist"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	30-Jun-08	53460.00	=""	="GHD PTY LTD"	12-May-08 09:50 AM	

+="CN78094-A1"	"The provision of advisory services to review the Cultural Language Centre (CLC) for the AFP college"	="Australian Federal Police"	12-May-08	="Audit services"	06-May-08	30-Jun-08	44000.00	="Jan-05"	="KPMG"	12-May-08 09:51 AM	

+="CN78100"	"Employment of Day Labour"	="Department of Defence"	12-May-08	="Temporary personnel services"	19-Dec-07	30-Jun-08	47477.76	=""	="RECRUITMENT QUEENSLAND"	12-May-08 09:51 AM	

+="CN78119"	"Conduct probablistic as per AIR Task 07/050"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	18-Dec-07	30-Jun-08	55797.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 09:54 AM	

+="CN78130"	"Training"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Dec-07	31-Dec-07	44000.00	=""	="APIS CONSULTING GROUP"	12-May-08 09:56 AM	

+="CN78134"	"Stage 2 Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	11-Feb-08	45018.81	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78152"	"NORFORCE - OP OUTREACH - ENGEL 40LT FRIDGE/FREEZER JTF641-0004"	="Department of Defence"	12-May-08	="Industrial refrigeration"	18-Dec-07	21-Dec-07	55068.75	=""	="ENGEL DISTRIBUTION PTY LTD"	12-May-08 10:00 AM	

+="CN78165"	"MAINTENANCE"	="Department of Defence"	12-May-08	="General building construction"	18-Dec-07	30-Jun-08	54529.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:02 AM	

+="CN78166"	"TO SUSTAIN THE DSVE CAPABILITIES IN R1 & R5."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	18-Dec-07	15-Feb-08	56271.74	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 10:03 AM	

+="CN78170-A1"	"Policy Development"	="Australian Securities and Investments Commission"	12-May-08	="Legal services"	07-Feb-08	06-May-08	45000.00	=""	="Blake Dawson"	12-May-08 10:09 AM	

+="CN78184-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Apr-08	30-Jun-08	40128.00	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 11:04 AM	

+="CN78201"	" Provision of Information Technology Specialist Services (previously published as GAPS ID 1691450) "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology networking specialists"	03-Apr-07	30-Jun-08	53480.00	=""	="Greythorn Pty Ltd"	12-May-08 11:59 AM	

+="CN78207-A3"	"Provision of cleaning services to the Midland premises of CRS Australia"	="CRS Australia"	12-May-08	="General building and office cleaning and maintenance services"	06-May-08	05-May-11	51000.00	=""	="Delron Cleaning"	12-May-08 12:13 PM	

+="CN78209"	"Production of Language training DVD's"	="Australian Federal Police"	12-May-08	="Digital versatile disks DVDs"	30-Jan-08	12-Oct-09	54800.00	="RFT6/2006"	="Centre for Adult Education (CAE)"	12-May-08 12:20 PM	

+="CN78213"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	26-May-08	45606.00	=""	="I T LOGISTICS SERVICES PTY LTD"	12-May-08 01:05 PM	

+="CN78220"	"SEA FREIGHT OP SLIPPER MOVT OF SEWAGE SYSTEM"	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	31-Dec-07	58894.70	=""	="APL LOGISTICS"	12-May-08 01:06 PM	

+="CN78236"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	51575.62	=""	="RAVEN RESEARCH LTD"	12-May-08 01:09 PM	

+="CN78247-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	27-Jun-08	52199.00	=""	="FUTUREPEOPLE PTY LTD"	12-May-08 01:10 PM	

+="CN78257-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	27-Jun-08	52425.00	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78266"	"supply of groceries brisbane"	="Department of Defence"	12-May-08	="Food and Beverage Products"	13-Dec-07	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	12-May-08 01:12 PM	

+="CN78276"	"Software development and travel expenses"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	30-Mar-08	46872.96	=""	="INQUIRION PTY LTD"	12-May-08 01:13 PM	

+="CN78279"	"LEASE COSTS - EVS VEHICLE."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	48500.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:14 PM	

+="CN78321"	"GROCERIES"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-Dec-07	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	12-May-08 01:20 PM	

+="CN78324"	"Hire of Forklift RAAF Williams"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	04-Dec-07	27-Jun-08	51826.50	=""	="IB SUPPLIES PTY LTD"	12-May-08 01:21 PM	

+="CN78325"	"GROCERIES"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-Dec-07	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	12-May-08 01:21 PM	

+="CN78327"	"MEAT"	="Department of Defence"	12-May-08	="Meat and poultry"	04-Dec-07	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	12-May-08 01:21 PM	

+="CN78329"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	01-Jun-08	44076.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:22 PM	

+="CN78338"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	01-Jun-08	45862.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:23 PM	

+="CN78340"	"MEDALS"	="Department of Defence"	12-May-08	="Castings"	04-Dec-07	30-Apr-08	56276.00	=""	="CASHS AUSTRALIA PTY LTD"	12-May-08 01:23 PM	

+="CN78349"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-09	49500.00	=""	="IDENTITY PR PTY LTD"	12-May-08 01:25 PM	

+="CN78354"	"CONTACT BRIAN CHASE 08 8935 4170 WR: 150134585"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	05-Dec-07	30-Jun-08	54450.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:26 PM	

+="CN78366"	"Technical Lead & Analyst"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	14-Apr-08	47480.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 01:28 PM	

+="CN78384"	"FIELD WORK"	="Department of Defence"	12-May-08	="Management advisory services"	07-Dec-07	14-Dec-07	41250.00	=""	="AIRBORNE RESEARCH AUSTRALIA"	12-May-08 01:31 PM	

+="CN78388"	"RENOVATIONS TO LADS OFFICES"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Dec-07	25-Jan-08	48414.30	=""	="EMAK COMMUNICATIONS"	12-May-08 01:31 PM	

+="CN78390"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	56762.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 01:31 PM	

+="CN78397"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Dec-07	57869.56	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 01:32 PM	

+="CN78399"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	30-May-08	59983.00	=""	="CLAYTON UTZ"	12-May-08 01:33 PM	

+="CN78410"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	47030.65	=""	="TOUR HOSTS PTY LTD"	12-May-08 01:35 PM	

+="CN78411"	"FACOPS - SA2359"	="Department of Defence"	12-May-08	="Environmental management"	10-Dec-07	30-Jun-08	43800.90	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78423"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	50000.01	=""	="BUSINESS CATALYST INTERNATIONAL"	12-May-08 01:37 PM	

+="CN78444"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Sep-08	42775.00	=""	="CLAYTON UTZ"	12-May-08 01:41 PM	

+="CN78468"	"REMOVAL OF FERAL HORSES FROM GBTA"	="Department of Defence"	12-May-08	="Environmental management"	07-Dec-07	30-Jun-08	55594.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:44 PM	

+="CN78479"	"Services against Standing Offer 26835"	="Department of Defence"	12-May-08	="Temporary personnel services"	06-Dec-07	27-Jun-08	45264.45	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	12-May-08 01:46 PM	

+="CN78486"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-Mar-08	44672.10	=""	="CLAYTON UTZ"	12-May-08 01:47 PM	

+="CN78490"	"DEVELOP SQ REGIONAL WATER MANAGEMENT PLANS"	="Department of Defence"	12-May-08	="Water resources development and oversight"	07-Dec-07	30-Jun-08	58157.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:48 PM	

+="CN78498-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	43516.00	=""	="EJOBS RECRUITMENT SPECIALISTS PTY LTD"	12-May-08 01:49 PM	

+="CN78521"	"MIMESWEEPER PRODUCTS"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	52594.30	=""	="CLEARSWIFT PYT LTD"	12-May-08 01:52 PM	

+="CN78538"	"Manufactured tools"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	20-Dec-07	31-Jan-08	49766.10	=""	="ARRK AUSTRALIA & NEW ZEALAND"	12-May-08 01:55 PM	

+="CN78539"	"Eden Soil & Waste Contamination"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	42587.01	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:55 PM	

+="CN78541"	"TSS Contract- Submarine Consultancy MOD Stirling"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jun-08	52800.00	=""	="NOVA DEFENCE"	12-May-08 01:56 PM	

+="CN78536"	"REPAIR AND OH OF BLACK HAWK SWASHPLATE ASSY."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	12-May-08	30-Jun-08	54100.67	=""	="SAAL"	12-May-08 01:56 PM	

+="CN78550"	"REIMBURSEMENT"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-09	59955.00	=""	="RED SHIELD DEFENCE SERVICES"	12-May-08 01:58 PM	

+="CN78556"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	20-Dec-07	01-Jun-10	44361.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:59 PM	

+="CN78560"	"Professional Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	29-Feb-08	44220.00	=""	="SYMANTEC ASIA PACIFIC PTE LTD"	12-May-08 02:00 PM	

+="CN78571"	"IHO MEMBERSHIP"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	15-Jan-08	58941.81	=""	="INTERNATIONAL HYDROGRAPHIC BUREAU"	12-May-08 02:02 PM	

+="CN78573"	"PUBLICATION"	="Department of Defence"	12-May-08	="Paper Materials and Products"	19-Dec-07	19-Dec-07	58608.00	=""	="AUSTRALASIAN MEDICAL PUBLISHING"	12-May-08 02:02 PM	

+="CN78575"	"Nortel Passport"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	14-Feb-08	47343.56	=""	="TELSTRA BUSINESS & GOVERNMENT"	12-May-08 02:03 PM	

+="CN78591"	"Project Hardware"	="Department of Defence"	12-May-08	="Project management"	20-Dec-07	21-Jan-08	52952.19	=""	="COMMANDER (ACT)"	12-May-08 02:05 PM	

+="CN78604"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	44695.20	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:07 PM	

+="CN78608"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	42832.90	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78617"	"Project Hardware"	="Department of Defence"	12-May-08	="Project management"	20-Dec-07	21-Jan-08	52952.19	=""	="COMMANDER (ACT)"	12-May-08 02:09 PM	

+="CN78623"	"Provide Transition Tasks for COMTRACK Deployment"	="Department of Defence"	12-May-08	="Public administration and finance services"	04-Jan-08	31-Jan-08	40509.98	=""	="UXC LIMITED"	12-May-08 02:10 PM	

+="CN78648"	"CONFERENCE FEES"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	26-Nov-07	18-Dec-07	59910.89	=""	="CROWNE PLAZA DARLING HARBOUR"	12-May-08 02:12 PM	

+="CN78649"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	42173.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78662"	"TIMOR TELECOM"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	24-Oct-07	24-Oct-07	41137.54	=""	="TIMOR TELECOM"	12-May-08 02:14 PM	

+="CN78675"	"PRINTER CATRIDGES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Dec-07	20-Dec-07	54080.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:15 PM	

+="CN78692"	"YOUNG ENDEAVOUR KIT BAGS FOR 2008"	="Department of Defence"	12-May-08	="Luggage and handbags and packs and cases"	07-Nov-07	17-Dec-07	41250.00	=""	="LINE 7 AUSTRALIA PTY LIMITED"	12-May-08 02:16 PM	

+="CN78695"	"ARTC AUGUST 2007 QANTAS STATEMENT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Sep-07	17-Dec-07	44834.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:16 PM	

+="CN78697"	"Serial FPDP XMC Module 4 ch VMETRO SFM product"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	28-May-08	47066.80	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 02:16 PM	

+="CN78702"	"V394 VME64X SBC KIT CONSISTING OF V394 4 SBC WITH 1GHZ AND 32 MB OF FLASH"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Jan-08	01-Feb-08	50039.00	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 02:17 PM	

+="CN78705"	"Display stand for Pacific 2008"	="Department of Defence"	12-May-08	="Sales and business promotion activities"	07-Jan-08	29-Jan-08	58964.18	=""	="THE DISPLAY BUILDER'S AUSTRALASIA"	12-May-08 02:17 PM	

+="CN78710"	"As directed by John Gillies Director Business Mana HMAS ships using Thales Docking facilities due to"	="Department of Defence"	12-May-08	="Military watercraft"	08-Nov-07	18-Dec-07	51497.60	=""	="THALES AUSTRALIA"	12-May-08 02:18 PM	

+="CN78712"	"Software Engineering Services to Support Vitual ANZAC activities"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	02-May-08	42080.01	=""	="INNOVATION SCIENCE PTY LTD"	12-May-08 02:18 PM	

+="CN78714"	"AUTOMATED LANDING & LAUNCH OF A ROTARY WING UNMANN ED AIRCRAFT SYSTEM (RESEARCH AGREEMENT)"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Jan-08	19-May-08	44000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-May-08 02:18 PM	

+="CN78717"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	04-Feb-08	41536.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:18 PM	

+="CN78725-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	03-Sep-07	31-Dec-07	56339.00	=""	="EUROLINK CONSULTING AUSTRALIA PTY LTD"	12-May-08 02:19 PM	

+="CN78732"	"Software maintenance services"	="Department of Defence"	12-May-08	="Software"	07-Jan-08	30-Jun-08	48587.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 02:19 PM	

+="CN78738"	"Calibrations"	="Department of Defence"	12-May-08	="Leatherworking repairing machinery and equipment"	07-Jan-08	18-Jan-08	55000.00	=""	="FARADAY PTY LTD"	12-May-08 02:19 PM	

+="CN78762"	"OFFICE FITOUT"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	01-May-08	56702.25	=""	="CIVIL AVIATION SAFETY AUTHORITY"	12-May-08 02:20 PM	

+="CN78768"	"PSP SERVICES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	42395.76	=""	="KINETIC DEFENCE SERVICES PTY LTD"	12-May-08 02:21 PM	

+="CN78811"	"SECURITY UPGRADE"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	06-Jun-08	57222.00	=""	="HONEYWELL LTD"	12-May-08 02:23 PM	

+="CN78817"	"Documentation of the processes and procedures for SOLMAN within the UAF Program"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Apr-08	30-Jun-08	50600.00	=""	="GWA CONSULTING"	12-May-08 02:24 PM	

+="CN78819"	"AIRFARES"	="Department of Defence"	12-May-08	="Aircraft"	10-Dec-07	10-Dec-07	48652.05	=""	="MSL TRAVEL DN BHD"	12-May-08 02:24 PM	

+="CN78820"	"GRAPHIC DESIGNER FOR DIPP PROJECT"	="Department of Defence"	12-May-08	="Medical training and education supplies"	14-Apr-08	01-Sep-08	51000.00	=""	="ANDREW HOOPER"	12-May-08 02:24 PM	

+="CN78831"	"QANTAS AIRFARES FOR DEFENCE SUPPORT TRAVEL SERVICE AT WILLIAMTOWN FOR OCTOBER 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	46736.31	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78832"	"PURCHASE OF PRINTERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	42760.89	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 02:24 PM	

+="CN78837"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	20-Nov-07	22-Dec-07	42750.00	=""	="ROYAL PERTH HOSPITAL"	12-May-08 02:25 PM	

+="CN78889"	"IT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	23-Jan-08	41885.95	=""	="CPL NOTTINGHILL PTY LTD"	12-May-08 02:29 PM	

+="CN78897"	"CONSTRUCTION PROJECT MANAGEMENT - MARCH 2008"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	30-Mar-08	10-Apr-08	47290.23	=""	="COMPASS - INTEGRATED LOGISTICS &"	12-May-08 02:29 PM	

+="CN78908"	"AIR 7000 - 2 x TDF Licences. 1 year software maint enance for TDF licences, international processing"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	11-Apr-08	08-May-08	40052.32	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 02:30 PM	

+="CN78933"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	04-May-07	04-May-07	40669.93	=""	="HMA BLAZE PTY LTD"	12-May-08 02:32 PM	

+="CN78937"	"MS Outlok Trg for Staff - 6 courses"	="Department of Defence"	12-May-08	="Education and Training Services"	17-Dec-07	21-Dec-07	46508.00	=""	="PRIORITY MANAGEMENT SYSTEMS RETAIL"	12-May-08 02:32 PM	

+="CN78938"	"Services of Consutant"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	54230.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	12-May-08 02:32 PM	

+="CN78939"	"HEALTH SERVICE  FY 07/08"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	10-Aug-07	30-Jun-10	59951.18	=""	="CHANDLER MACLEOD GROUP LTD"	12-May-08 02:33 PM	

+="CN78945"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Travel facilitation"	30-Nov-07	30-Nov-07	58885.76	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:33 PM	

+="CN78947"	"EMA field Upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	20-Dec-07	59691.68	=""	="LOGITECH PTY LTD"	12-May-08 02:33 PM	

+="CN78956"	"fresh fruit & vegetables brisbane"	="Department of Defence"	12-May-08	="Fruits and vegetables and nuts and seeds"	17-Dec-07	30-Jun-08	44000.00	=""	="GMN VEGIPREPI"	12-May-08 02:34 PM	

+="CN78964"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	49500.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:34 PM	

+="CN78967"	"Software Support"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	20-Apr-09	45094.53	=""	="LOCKHEED MARTIN UK INSYS LTD"	12-May-08 02:34 PM	

+="CN78977"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Apr-08	01-Jun-08	45698.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:35 PM	

+="CN78997"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	17-Dec-07	30-Jun-08	43244.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:37 PM	

+="CN79000"	"brownbuilt shelving medium duty 230Kg's"	="Department of Defence"	12-May-08	="Prefabricated structures"	11-Apr-08	30-Apr-08	48095.30	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 02:37 PM	

+="CN79007"	"PORT COSTS"	="Department of Defence"	12-May-08	="Transportation services equipment"	25-Mar-08	30-Apr-08	41218.46	=""	="PDL TOLL"	12-May-08 02:37 PM	

+="CN78999"	"VEHICLE PARTS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-May-08	14-Jun-08	40095.00	=""	="GREAT WESTERN CORPORATION"	12-May-08 02:38 PM	

+="CN79014"	"Leaseplan EVS Costs 2007-2008"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	17-Dec-07	30-Jun-08	58756.58	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:38 PM	

+="CN79020"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	15-Jan-08	59531.78	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79027"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	16-Apr-08	17-Apr-08	42112.48	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:39 PM	

+="CN79029"	"COGNOS SUPPORT RENEWAL"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	30-Dec-07	40928.33	=""	="COGNOS PTY LTD"	12-May-08 02:39 PM	

+="CN79035"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	01-Jun-08	41737.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:39 PM	

+="CN79037"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	07-Apr-08	30-Jun-08	40098.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:40 PM	

+="CN78988"	"Research & write publication on Tax Avoidance"	="Australian Taxation Office"	12-May-08	="Textbook or research publishing"	18-Feb-08	30-Jun-10	52000.00	=""	="Trevor Boucher"	12-May-08 02:41 PM	

+="CN79098"	"SUNDRY OUTSTANDING QANTAS BILL"	="Department of Defence"	12-May-08	="Transportation services equipment"	01-Apr-08	01-Apr-08	44308.32	=""	="QANTAS"	12-May-08 02:45 PM	

+="CN79114"	"FUNDING AGREEMENT WITH DEST"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Apr-08	07-Apr-08	47300.00	=""	="UNIVERSITY OF MELBOURNE"	12-May-08 02:47 PM	

+="CN79118"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Apr-08	14-Apr-08	45228.70	=""	="PACLINK COMMUNICATIONS PTY LTD"	12-May-08 02:47 PM	

+="CN79123"	"CAB FARES"	="Department of Defence"	12-May-08	="Motor vehicles"	10-Mar-08	10-Mar-08	44667.32	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:47 PM	

+="CN79129-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Oct-07	28-Dec-07	41772.50	=""	="RECORDKEEPING INNOVATION PTY LTD"	12-May-08 02:48 PM	

+="CN79175"	"groceries brisbane"	="Department of Defence"	12-May-08	="Processed and prepared meats"	03-Apr-08	30-Jul-08	52800.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	12-May-08 02:52 PM	

+="CN79177"	"meat brisbane"	="Department of Defence"	12-May-08	="Meat and poultry"	03-Apr-08	30-Jul-08	49500.00	=""	="TENDER PLUS PTY LTD"	12-May-08 02:52 PM	

+="CN79178"	"CLEANING SERVICES FOR OPTEC BLDG EX WALLABY 07. FROM 30 SEP07-12OCT07"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	30-Nov-07	10-Dec-07	54384.28	=""	="COMMERCIAL PROPERTY CLEANING PTY"	12-May-08 02:52 PM	

+="CN79237"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	60000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:58 PM	

+="CN79253"	"Laptops Computers"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	03-Apr-08	18-Apr-08	41382.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:00 PM	

+="CN79259"	"Fencing for SECPOL Dog Section."	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	30-Jun-08	51480.00	=""	="SALISBURY FENCING PTY LTD"	12-May-08 03:00 PM	

+="CN79277"	"VEHICLE LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	25-Apr-08	52691.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:02 PM	

+="CN79278"	"REPAIRS TO HANGAR ROOF"	="Department of Defence"	12-May-08	="Structural building products"	09-Apr-08	30-Jun-08	41722.67	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:02 PM	

+="CN79280"	"DPACE CARD READERS"	="Department of Defence"	12-May-08	="Security and control equipment"	09-Apr-08	30-Jun-08	53911.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:03 PM	

+="CN79304"	"2 seater lounge seat x 50 @ $886.80 ea"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	10-Apr-08	10-Apr-08	48774.00	=""	="CAM COMMERICAL INTERIORS"	12-May-08 03:05 PM	

+="CN79308"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	22-Apr-08	30-Jun-10	53101.00	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 03:06 PM	

+="CN79318"	"04-422670 31AUG07 NON DTC TRAVEL"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	24-Apr-08	24-Apr-08	43495.71	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79329"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	15-May-08	59400.00	=""	="THE GOLDEN OLIVE COMPANY PTY LTD"	12-May-08 03:08 PM	

+="CN79333"	"UNDERTAKE A SECA FOR THE DEFENCE BASE AT ENOGGERA,"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	09-Apr-08	30-Jun-08	49500.00	=""	="SMEC AUSTRALIA"	12-May-08 03:08 PM	

+="CN79342"	"APR 08 VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Motor vehicles"	15-Apr-08	03-May-08	45403.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79361"	"QANTAS FEB STATEMENT"	="Department of Defence"	12-May-08	="Aircraft"	29-Apr-08	29-Apr-08	59714.67	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:10 PM	

+="CN79373"	"RANGER SERVICES FOR JAN-DEC 2007"	="Department of Defence"	12-May-08	="Public safety and control"	29-Apr-08	30-Apr-08	50383.84	=""	="DEPT OF ENVIRONMENT AND"	12-May-08 03:10 PM	

+="CN79388"	"SOFTWARE PURCHAE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	29-Apr-08	42204.73	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 03:12 PM	

+="CN79391"	"POC: PHILLIP MCCULLOCH CONTACT: 02 626 50928"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	45998.70	=""	="SCITECH PTY LTD"	12-May-08 03:12 PM	

+="CN79393"	"DMCN Field MT Training Course"	="Department of Defence"	12-May-08	="Education and Training Services"	01-Apr-08	30-Jun-08	45555.93	=""	="OPTUS BUSINESS"	12-May-08 03:12 PM	

+="CN79395"	"VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Mar-08	01-May-08	45117.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:12 PM	

+="CN79398"	"Provision of Market Research"	="Medicare Australia"	12-May-08	="Marketing and distribution"	17-Apr-08	30-Jun-08	50000.00	=""	="Tall Poppies Research and Marketing"	12-May-08 03:13 PM	

+="CN79400"	"Holden Caprice Sedan (SL) Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	07-Aug-08	46308.33	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:13 PM	

+="CN79407"	"CYCOM 5250-4 IM7-G 145/32 49"-500lb, Dry Ice, Temp erature Recorders"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	08-Apr-08	30-Jun-08	52227.33	=""	="CYTEC ENGINEERED MATERIALS INC"	12-May-08 03:13 PM	

+="CN79415"	"S4642, WR 300078546. Undertake conservation works per the Conservation Strategy - Part 2 - Modificat"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	42071.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:14 PM	

+="CN79417"	"Scheduling Services to Support Navy Minor Projects"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	02-Apr-08	27-Jun-08	53999.99	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:14 PM	

+="CN79425"	"Project Superintendent for HMAS SUCCESS EMA 2008"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	02-Apr-08	30-Jun-08	51274.32	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:14 PM	

+="CN79429"	"Consultant services"	="Department of Defence"	12-May-08	="Human resources services"	02-Apr-08	30-Jun-08	50000.01	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 03:15 PM	

+="CN79432"	"QANTAS ACCOUNT NOV07/JAN 08"	="Department of Defence"	12-May-08	="Aircraft"	20-Feb-08	21-Feb-08	44769.18	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:15 PM	

+="CN79442"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	49500.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79443"	"Heritage Works"	="Department of Defence"	12-May-08	="Environmental Services"	07-Apr-08	30-Jun-08	42731.30	=""	="RESOLVE FM"	12-May-08 03:15 PM	

+="CN79456"	"Holden Caprice Sedan (SL) Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	46308.33	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:16 PM	

+="CN79458"	"Provision of Advertising Services"	="Medicare Australia"	12-May-08	="Advertising"	16-Apr-08	16-Apr-08	52754.53	=""	="HMA BLAZE PTY LTD"	12-May-08 03:16 PM	

+="CN79461"	"QANTAS PASSENGER AIRFARES FOR VARIOUS RAAF BASE WILLIAMTOWN PERSONNEL FOR OCTOBER 2007."	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	43883.94	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79463"	"HQJOC PROJECT-DELOITTE-ANAO."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	43625.59	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 03:17 PM	

+="CN79464"	"Nissan Patrol 4x4 Leaf Spring Tray Qty:1 (UL1)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	41195.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:17 PM	

+="CN79474"	"QANTAS CHARGES FOR DS-SING PERSONNEL OCT/NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	45413.46	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:18 PM	

+="CN79481"	"Cost modelling of security vetting"	="Department of Defence"	12-May-08	="Security surveillance and detection"	07-Apr-08	30-Jun-08	57190.00	=""	="KPMG AUSTRALIA"	12-May-08 03:18 PM	

+="CN79493"	"Wetlands Protection at SWBTA"	="Department of Defence"	12-May-08	="Wildlife and flora"	08-Apr-08	30-Jun-08	55260.99	=""	="GREENING AUSTRALIA (QLD)"	12-May-08 03:19 PM	

+="CN79498"	"codification and cataloguing of hydrographic inventory"	="Department of Defence"	12-May-08	="Location and navigation systems and components"	26-Mar-08	30-Jun-08	55776.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:19 PM	

+="CN79505"	"HP HARDWARE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	08-Apr-08	30-Apr-08	51739.63	=""	="DATA 3 LIMITED"	12-May-08 03:20 PM	

+="CN79542"	"Research Agreement - Univ Of Adelaide"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	08-Apr-08	19-Jun-08	55000.00	=""	="UNIVERSITY OF ADELAIDE"	12-May-08 03:22 PM	

+="CN79562"	"Procuring a Fax Server Kit from Canon Australia"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	11-Apr-08	57075.70	=""	="CANON AUSTRALIA PTY LTD"	12-May-08 03:23 PM	

+="CN79575"	"WALLAROO FAMP 01 OF 08"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	15-Jun-08	47841.57	=""	="BIRDON MARINE PTY LTD"	12-May-08 03:25 PM	

+="CN79581"	"SQ REG G RES REPAIRS - UPGADE MAINS POWER GLADSTONE"	="Department of Defence"	12-May-08	="Electrical components"	08-Apr-08	30-Jun-08	49885.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:25 PM	

+="CN79582"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	22-Apr-08	30-Jun-08	55962.50	=""	="Ross Human Directions Limited"	12-May-08 03:25 PM	

+="CN79583"	"Cabling Installation for 83 Chalgrove Ave"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	30-Jun-08	45469.70	=""	="PROFESSIONAL CABLING SERVICES"	12-May-08 03:26 PM	

+="CN79586"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	29-Jun-08	44352.00	=""	="CANDLE CORPORATION"	12-May-08 03:26 PM	

+="CN79592"	"Spare Parts Kit, 60 kVA Generator"	="Department of Defence"	12-May-08	="Power generation"	20-Mar-08	26-Jun-08	55397.25	=""	="CUMMINS SOUTH PACIFIC"	12-May-08 03:26 PM	

+="CN79595"	"Cleaning & Catering for Tender Evaluation Team at Evaluation Centre"	="Department of Defence"	12-May-08	="Restaurants and catering"	08-Apr-08	31-Jul-08	46420.00	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-May-08 03:26 PM	

+="CN79601"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	29-Jun-08	43187.10	=""	="Devsgroup Pty Ltd"	12-May-08 03:27 PM	

+="CN79622"	"REPLACE/REPAIR DRN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	15-Nov-07	30-Jan-08	57189.00	=""	="INTERACTIVE CABLING PTY LTD"	12-May-08 03:27 PM	

+="CN79628"	"ARMY SPARES"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	12-Feb-08	07-Jul-08	56034.49	=""	="FN HERSTAL SA"	12-May-08 03:28 PM	

+="CN79661"	"Provision of SDSS access to In-Service-Support Contractors"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Mar-08	30-Jun-08	59538.22	=""	="JACOBS AUSTRALIA"	12-May-08 03:30 PM	

+="CN79670"	"AEO Support during BHIE Production Installation"	="Department of Defence"	12-May-08	="Aircraft"	25-Mar-08	30-Jun-09	49999.95	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:31 PM	

+="CN79674"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	07-Apr-08	07-Apr-08	56815.00	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:32 PM	

+="CN79676"	"02-24600830NOV07 LINE 158 - 195"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	56859.86	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:32 PM	

+="CN79684"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Nov-07	17-Dec-07	57638.41	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 03:32 PM	

+="CN79692"	"QLD Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	58518.98	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79718"	"SEE ATTACHED PROCUREMENT DECISION RECORD"	="Department of Defence"	12-May-08	="Animal containment and habitats"	30-Nov-07	28-Feb-08	47474.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:34 PM	

+="CN79716"	"detailed design package gaseous fire fighting system on hmas melville and hmas leeuwin"	="Department of Defence"	12-May-08	="Marine transport"	25-Mar-08	03-Jun-08	54458.58	=""	="AIMTEK PTY LTD"	12-May-08 03:34 PM	

+="CN79731"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	31-Mar-08	58300.00	=""	="SOLVEIT SOFTWARE PTY LTD"	12-May-08 03:35 PM	

+="CN79745"	"Provision of Telephony Services"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	02-Apr-08	02-Apr-08	44405.85	=""	="OPTUS NETWORKS PTY LIMITED"	12-May-08 03:36 PM	

+="CN79781"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Accounting and auditing"	11-Apr-08	30-Jun-08	43837.20	=""	="PROTIVITI PTY LTD"	12-May-08 03:39 PM	

+="CN79782"	"LCD Screens"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	14-Dec-07	52954.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79787"	"CONSULTANCY  MESS UPGRADE GALLIPOLI BARRACKS"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	16-Nov-07	30-Jun-08	47916.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:39 PM	

+="CN79791"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	46904.00	=""	="Mosaic Recruitment Pty Ltd"	12-May-08 03:40 PM	

+="CN79795"	"04-422670 31DEC2007"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	18-Feb-08	40448.36	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79801-A1"	"Provision of Staff Training/Development Services"	="Medicare Australia"	12-May-08	="Education and Training Services"	11-Apr-08	30-Jun-08	56471.99	=""	="Think Place"	12-May-08 03:40 PM	

+="CN79804"	"DISPOSAL OF BATTERIES"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	28-Mar-08	30-Apr-08	52872.97	=""	="THIESS SERVICES"	12-May-08 03:40 PM	

+="CN79830"	"Rental vehicles for training courses"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Dec-07	30-Jun-08	41844.96	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:42 PM	

+="CN79854"	"Toyota Hiace 14 seat Bus Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	21-Aug-08	41662.89	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79859"	"Development of user documentation for GTESPO Data Management System"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	28-Mar-08	30-Jun-08	48048.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:44 PM	

+="CN79860"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	16-Feb-08	01-Mar-09	53436.34	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 03:44 PM	

+="CN79867"	"HERTZ VEHICLE HIRE FOR 2OCU PERSONNEL DEC 07"	="Department of Defence"	12-May-08	="Passenger transport"	24-Dec-07	30-Jun-08	47058.61	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79872"	"FEES-ERMINGTON-SITE AUDITOR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	49500.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79894"	"X-RAY APPARATUS"	="Department of Defence"	12-May-08	="Packaging materials"	27-Mar-08	31-May-08	46420.00	=""	="JACOBS MEDICAL AUSTRALIA"	12-May-08 03:46 PM	

+="CN79903"	"update abr's and hydronet to identify GMDSS"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	59529.64	=""	="AIMTEK PTY LTD"	12-May-08 03:47 PM	

+="CN79927"	"PAYMENT TO OFFICIAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	12-May-08	="Project management"	19-Mar-08	30-Jun-10	43573.00	=""	="MARITIME SURVEILLANCE ADVISOR"	12-May-08 03:49 PM	

+="CN79931"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	19-Mar-08	30-Jun-10	54247.50	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 03:49 PM	

+="CN79935"	"Hypersonic Payload Support Services to WSD, DSTO Software and sensor calibration tasks"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	13-Dec-07	51675.25	=""	="BLUE SWIMMER CONSULTING"	12-May-08 03:50 PM	

+="CN79940"	"MAINTENANCE"	="Department of Defence"	12-May-08	="General building construction"	17-Sep-07	30-Jun-08	57909.37	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:50 PM	

+="CN79952"	"PAYMENT OF FIRM'S INVOICE NO.200802-433 DATED 15 F"	="Department of Defence"	12-May-08	="Metal waste and scrap"	27-Mar-08	27-Mar-08	59226.26	=""	="TENIX TOLL DEFENCE LOGISTICS"	12-May-08 03:51 PM	

+="CN79962"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	30-Jun-08	54125.22	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:52 PM	

+="CN79969"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* REQUIRED FOR DNSDC-R"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	14-Feb-08	30-Jun-08	56625.25	=""	="ARGIBOND DENTAL SUPPLIES PTY LTD"	12-May-08 03:53 PM	

+="CN79973"	"ACCOMMODATION FOR 2008 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	60000.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 03:53 PM	

+="CN79977"	"VIRTUAL IMMERSIVE COMABT ENVIRONMENT (VICE)"	="Department of Defence"	12-May-08	="Education and Training Services"	12-Nov-07	30-Jun-08	56528.72	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 03:54 PM	

+="CN79982"	"ADFA refurbishment"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	02-May-08	30-Jun-08	54663.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:54 PM	

+="CN73550"	"Provision of Website Development"	="Department of the Prime Minister and Cabinet"	12-May-08	="World wide web WWW site design services"	31-Mar-08	30-May-08	46750.00	=""	="Deloitte Touche Tohmatsu"	12-May-08 03:55 PM	

+="CN79999"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	25-Mar-08	25-Mar-08	50000.00	=""	="PHILLIPS FOX"	12-May-08 03:56 PM	

+="CN80003"	"VEHICLE LEASE AND OPERATING COSTS FOR DS-CNNSW VEHICLE LEASES TO 16 DEC 2010"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Apr-08	30-Jul-08	50321.82	=""	="DAS FLEET"	12-May-08 03:56 PM	

+="CN80006"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	27-Mar-08	27-Jun-08	44743.11	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 03:56 PM	

+="CN80013"	"Network Administor"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	14-Feb-08	21-Mar-08	41657.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	12-May-08 03:57 PM	

+="CN80031"	"Engineering investigation"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	40174.20	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:58 PM	

+="CN80046"	"Integrated Logistic Support Services"	="Department of Defence"	12-May-08	="Computer services"	10-Apr-08	30-Jun-08	43320.43	=""	="JACOBS AUSTRALIA"	12-May-08 03:59 PM	

+="CN80058"	"DEFENCE MEMBERS TRAVEL - QANTAS"	="Department of Defence"	12-May-08	="Travel facilitation"	29-Feb-08	29-Feb-08	53789.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:00 PM	

+="CN80060"	"ORDER RAISED FOR THE SUPPLY OF MARINE DIESEL TO HM OVERSEAS."	="Department of Defence"	12-May-08	="Fuels"	10-Apr-08	30-Jun-08	57097.06	=""	="KUWAIT MARITIME &"	12-May-08 04:01 PM	

+="CN80063"	"Technical services"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	30-May-08	49500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:01 PM	

+="CN80068"	"MAINTENANCE AND INSPECTION OF WILLIAMTOWN RADAR"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	06-Feb-08	20-Feb-08	40945.60	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:01 PM	

+="CN80075"	"HAULOTTE GROUP"	="Department of Defence"	12-May-08	="Heavy construction machinery and equipment"	10-Apr-08	10-May-08	42900.00	=""	="HAULOTTE GROUP (AUSTRALIA)"	12-May-08 04:01 PM	

+="CN80079"	"ENGINEERING LEVEL 2 SUPPORT TO DEVELOP OCD, FPS AND TCD FOR SEAKING BALLISTIC PROTECTION"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	06-Feb-08	30-Jun-08	56688.01	=""	="NOVA DEFENCE"	12-May-08 04:02 PM	

+="CN80081"	"VOP payment on Euro M/s Jul Aug Sep."	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	24-Dec-07	53109.78	=""	="BAE SYSTEMS AUSTRALIA - EUR"	12-May-08 04:02 PM	

+="CN80083"	"VEHICLE LEASE FEB 08 - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Feb-08	20-Mar-08	46023.23	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:02 PM	

+="CN80085"	"CA ARC serve backup & 3yr maintenance"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Apr-08	43281.70	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:02 PM	

+="CN80086"	"Contact Dave Baker 8924 2200"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Dec-07	30-Jun-08	55470.00	=""	="OILCHECK PTY LTD"	12-May-08 04:02 PM	

+="CN80097"	"GENERATOR PARTS - FLLA A"	="Department of Defence"	12-May-08	="Power generation"	31-Jan-08	23-Mar-08	40079.95	=""	="HASTINGS DEERING (AUST) PTY LTD"	12-May-08 04:02 PM	

+="CN80102"	"Cartridges F18 emergency egress"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	11-Dec-07	30-Sep-08	48165.68	=""	="UNIVERSAL PROPULSION COMPANY INC"	12-May-08 04:03 PM	

+="CN80103"	"PM FEE ADFA refurb"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	49836.60	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:03 PM	

+="CN80127"	"IT CABLING"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	20-Nov-07	20-Dec-07	49472.89	=""	="NORTHERN TERRITORY COMMUNICATIONS"	12-May-08 04:04 PM	

+="CN80137"	"bearing"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	07-Feb-08	01-Dec-08	45682.77	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 04:05 PM	

+="CN80141"	"Computer"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Nov-07	21-Dec-07	47792.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:05 PM	

+="CN80138"	"DISTRIBUTED INTERACTIVE SIMULATION"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Dec-07	30-Jun-08	49500.00	=""	="SMS DEFENCE SOLUTIONS PTY LTD"	12-May-08 04:05 PM	

+="CN80147"	"4516.14 CONDUCT A THERMOGRAPHIC SURVEY ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	29-Feb-08	43408.40	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:05 PM	

+="CN80161"	"CONTACT: ROSS CRUDEN 08 8972 36037"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Nov-07	30-Jun-08	42795.01	=""	="CHUBB SECURITY HOLDINGS"	12-May-08 04:07 PM	

+="CN80179"	"QANTAS CHARGES FOR DS-SING PERSONNEL DEC/JAN07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	30-Jun-08	50508.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:08 PM	

+="CN80180"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	54762.60	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:09 PM	

+="CN80197"	"UPGRADE AIRFIELD LIGHTING CONTAINER"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	19-Nov-07	19-Dec-07	51251.75	=""	="ELECTRICAL & VISUAL DESIGN"	12-May-08 04:10 PM	

+="CN80199"	"Antennas,Installation Kits & Antenna Elements"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	12-May-08	56731.51	="43221706"	="THALES AUSTRALIA"	12-May-08 04:10 PM	

+="CN80206"	"HEALTH SERVICE - 1HSB FY 07/08"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	19-Nov-07	31-Dec-07	41210.57	=""	="RAVENS RECRUITMENT PTY LTD"	12-May-08 04:11 PM	

+="CN80215"	"Software Maintenane Renewal"	="Department of Defence"	12-May-08	="Software"	09-Apr-08	30-Apr-09	42265.30	=""	="LEICA GEOSYSTEMS PTY LTD"	12-May-08 04:11 PM	

+="CN80224"	"VHF Vehicle Mounted Antenna"	="Defence Materiel Organisation"	12-May-08	="Hardware"	05-Feb-08	11-May-08	51984.57	="43221706"	="MOONRAKER AUSTRALIA"	12-May-08 04:12 PM	

+="CN80230"	"Logistics Specialist Support"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	05-Feb-08	30-Jun-08	53400.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:12 PM	

+="CN80234"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	28-Feb-08	30-Jun-10	53475.50	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 04:12 PM	

+="CN80266"	"Provision of IV&V - Task 02/2008 - Support for the development of the ISSC PMF"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Apr-08	30-Jun-08	44440.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:15 PM	

+="CN80272"	"Software Integration Development for ES3701 on FFG"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	29-Feb-08	55000.00	=""	="JENKINS ENGINEERING DEFENCE"	12-May-08 04:16 PM	

+="CN80311"	"HEAVY REPAIR FACILITY,  AUTOMATIC TESTING EQUIP  ENGINEERING STUDY, REFER SUPPORT CONTRACT C439154"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	10-Jun-08	53576.60	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80317"	"FLLA A - FEB VEHICLE LEASE"	="Department of Defence"	12-May-08	="Motor vehicles"	28-Feb-08	11-Mar-08	54278.52	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:20 PM	

+="CN80319"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	05-Feb-08	05-Feb-08	48162.07	=""	="KAZ GROUP PTY LTD"	12-May-08 04:20 PM	

+="CN80325"	"Repair items for Tracking Mount for Deployable Field Trials Capability."	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	10-May-08	42802.00	=""	="VIPAC ENGINEERS & SCIENTISTS"	12-May-08 04:21 PM	

+="CN80334"	"Movement of 10 IMV's to Cultana TASKORD 122/07 (PW IMVSPT to SOTG-6 dated 19 SEP 07)"	="Department of Defence"	12-May-08	="Transportation services equipment"	20-Nov-07	07-Dec-07	57750.00	=""	="FREIGHTWEST PTY LTD"	12-May-08 04:21 PM	

+="CN80363"	"TOB-STBD ME NO3 CYLINDER URDEF"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Jan-08	11-Jan-08	48313.79	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:23 PM	

+="CN80403"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	44869.00	=""	="BLAKE DAWSON WALDRON"	12-May-08 04:25 PM	

+="CN80417"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	03-Jan-08	03-Jan-08	55000.00	=""	="SWELL DESIGN GROUP"	12-May-08 04:26 PM	

+="CN80423"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	03-Jan-08	03-Jan-08	44000.00	=""	="SWELL DESIGN GROUP"	12-May-08 04:26 PM	

+="CN80435"	"REPAIR OF AIRCRAFT HANDLER"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	20-Dec-07	14-Apr-08	52090.60	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:27 PM	

+="CN80465"	"CONDUCT SEA ACCEPTANCE TRIALS ON HMAS TOBRUCK"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	20-Jan-08	44133.32	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:28 PM	

+="CN80473"	"phone and electricity charges for HMAS MELVILLE"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	11-Feb-08	17-Mar-08	53900.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 04:29 PM	

+="CN80474"	"IBM SERVERS FOR MARITIME COMMUNICATIONS INSTALLATION"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	31-May-08	49576.69	=""	="THALES AUSTRALIA"	12-May-08 04:29 PM	

+="CN80483"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-09	46980.25	=""	="1ST FLEET PTY LTD"	12-May-08 04:29 PM	

+="CN80496"	"MAINTENANCE MANUALS (BAILOUT,DMM&BCJ) ARMY MARINE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	58300.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:31 PM	

+="CN80503"	"Develop Explosiive Ordnance Certification Plan (EO CP) for Helicopter CMDS on FFG Class ships"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	42375.00	=""	="NOVA DEFENCE"	12-May-08 04:32 PM	

+="CN80516"	"ENGINEERING SERVICES TO VALIDATE USER REQUIREMENTS FOR JP66 PHASE 1"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	07-Feb-08	30-May-08	54280.00	=""	="NOVA AEROSPACE"	12-May-08 04:32 PM	

+="CN80517"	"Provide Copies of SSR documentation for FFGs Pahse 2"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	17-Feb-08	52835.00	=""	="THALES AUSTRALIA"	12-May-08 04:32 PM	

+="CN80521"	"AUSTRALIAN NAVY CADETS BANNER"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	11-Apr-08	31-Dec-08	51304.00	=""	="SPEAR OF FAME PTY LTD"	12-May-08 04:33 PM	

+="CN80522"	"AUSPAR Test and Evaluation program"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	30-Jun-08	43748.10	=""	="AIR-MET SCIENTIFIC PTY LTD"	12-May-08 04:33 PM	

+="CN80538"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	02-Aug-07	11-Aug-07	47231.78	=""	="TELSTRA CORPORATION"	12-May-08 04:33 PM	

+="CN80548"	"4522.06 ANZAC CLASS C&M SOFTWARE MANAGEMENT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	30-Jun-08	56223.20	=""	="SIEMENS LTD"	12-May-08 04:34 PM	

+="CN80552"	"Lease Costs"	="Department of Foreign Affairs and Trade"	12-May-08	="Real estate services"	06-Aug-07	10-Aug-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	12-May-08 04:34 PM	

+="CN80554"	"CMMI Software Quality Audit"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	16-Jun-08	55000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:34 PM	

+="CN80571"	"QTY 7   KOBRA SHREDDERS"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	09-Jan-08	29-Feb-08	42201.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	12-May-08 04:35 PM	

+="CN80581"	"Casket, Transfer, Human Remains"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	09-Jan-08	22-Feb-08	58479.30	=""	="PATRIOTVETIT LLC"	12-May-08 04:36 PM	

+="CN80583"	"This P.O. is raised to facilitate the manpower and on Tail Rotor Pylon, P/N 70210-05000-042, Ser No."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	08-Feb-08	30-Apr-08	55000.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:36 PM	

+="CN80585"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	15-Feb-08	58102.00	=""	="HILLS INDUSTRIES"	12-May-08 04:36 PM	

+="CN80598"	"ENGAGE SERVICES FOR MANOORA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	20-Feb-08	56056.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:37 PM	

+="CN80604"	"Office Fit out"	="Department of Foreign Affairs and Trade"	12-May-08	="General building construction"	03-Aug-07	31-Aug-07	50207.27	=""	="Delta Building Automation Pty Ltd"	12-May-08 04:37 PM	

+="CN80610"	"INSTALLATION OF FALL RESTRAINT SYSTEM"	="Department of Defence"	12-May-08	="Vehicle safety and security systems and components"	08-Jan-08	29-Feb-08	48347.42	=""	="STANDFAST CORPORATION PTY LTD"	12-May-08 04:38 PM	

+="CN80615"	"Use of existing ASP Contract - Diesel generator fuel pump spares"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	08-Jan-08	29-Feb-08	41303.85	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:38 PM	

+="CN80633"	"TCE TASKS PENDING LIMB 3"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-Apr-08	53385.67	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:39 PM	

+="CN80638"	"4516.36 HMAS ARUNTA THEMO SURVEY  OF ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-May-08	42546.46	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:39 PM	

+="CN80659"	"Update FFG Ship Welding Schedule Draiwings 5351001 5415001 & A010001"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	23-Jun-08	56167.22	=""	="THALES AUSTRALIA"	12-May-08 04:40 PM	

+="CN80676"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-08	41272.20	=""	="POLY PRODUCTS CO PTY LTD"	12-May-08 04:41 PM	

+="CN80681"	"Belt, Aircraft Safety"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Dec-07	12-May-08	50015.75	=""	="PACIFIC SCIENTIFIC COMPANY"	12-May-08 04:41 PM	

+="CN80684"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Sauces and spreads and condiments"	09-Jan-08	31-Oct-08	56810.49	=""	="EL BELL PACKAGING PTY LTD"	12-May-08 04:41 PM	

+="CN80689"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	46000.00	=""	="KPMG AUSTRALIA"	12-May-08 04:42 PM	

+="CN80692"	"Renewal of Long Term Leased Vehicle"	="Department of Defence"	12-May-08	="Motor vehicles"	09-Jan-08	30-Nov-09	47659.90	=""	="ENTERPRISE LEASING COMPANY INC"	12-May-08 04:42 PM	

+="CN80697"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	50000.01	=""	="KPMG AUSTRALIA"	12-May-08 04:42 PM	

+="CN80705"	"RE AUTHORING AAP7213.006-4-SRM-400"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-May-08	55287.10	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:42 PM	

+="CN80710"	"Building Works"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-Jun-08	49302.00	=""	="DAWN EXPRESS PARTITIONING &"	12-May-08 04:43 PM	

+="CN80714"	"Helmet, Flyer's"	="Defence Materiel Organisation"	12-May-08	="Face and head protection"	26-Feb-08	12-Sep-08	44925.92	=""	="TRANSAERO INC."	12-May-08 04:43 PM	

+="CN80718"	"Use of Exisitng ASP Contract. doors and hatches security upgrade"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Dec-07	31-Mar-08	58780.05	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:43 PM	

+="CN80734"	"SERVICE FEE"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	43000.00	=""	="KPMG AUSTRALIA"	12-May-08 04:44 PM	

+="CN80740"	"ELECTRICAL SPARES AND EQUIPMENT TO SUPPORT THE PODS."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	30-Jan-08	30-Apr-08	51665.00	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:44 PM	

+="CN80743"	"Use of Exisitng ASP Contract. Alternate Power Supp"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	20-Dec-07	29-Feb-08	55937.48	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:44 PM	

+="CN80746"	"WEAPON SPARES In accordance with INCOTERMS you are responsible f"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	03-Apr-08	07-Jul-08	42669.17	=""	="HECKLER & KOCH GMBH"	12-May-08 04:45 PM	

+="CN80749"	"4531.10 ENHANCE LANDMASS CREATION FUNCTIONALITY"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	30-Apr-08	50441.49	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:45 PM	

+="CN80754"	"DMOSS RFQTS No. 3243 Engagement of Contractor to progress Technical Assessing tasks"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-Jun-08	49324.00	=""	="GHD PTY LTD"	12-May-08 04:45 PM	

+="CN80761"	"Maintenance support for Multi Role Helicopters"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	22-Feb-08	30-Jun-08	55000.00	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:45 PM	

+="CN80765"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80768"	"DATA  CABLE VECTOR 21"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	31-Jan-08	15-May-08	48455.00	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80769"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80773"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80805"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	29-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80811"	"ENGINEERING INVESTIGATION TO DETERMINE ALTERNATIVE TO OBSOLETE EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	22-Feb-08	30-Jun-08	59906.91	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80812"	"REPAIR OF AIRCRAFT HANDLER"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	05-May-08	54396.52	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:48 PM	

+="CN80817"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	29-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80819"	"10 infraEnterprise concurent user licences and pro-rata maintenance and support until 18 June 200"	="Defence Materiel Organisation"	12-May-08	="Software"	25-Feb-08	18-Jun-08	51000.40	=""	="INFRA CORPORATION PTY LTD"	12-May-08 04:48 PM	

+="CN80860"	"Use of existing ASP Contract - Conference Room Fit Out with Audio/Visual Equip"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Jan-08	04-Mar-08	56274.17	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:50 PM	

+="CN80863"	"TEWSPO(ADL) Tasking Directive 02-08"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	41607.50	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80873"	"DTS 69 Provision of TADRS Technical Support"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	30-May-08	41234.86	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:51 PM	

+="CN80879"	"ACC White Paper"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	29-Feb-08	52800.00	=""	="ATACS - CONSULTING PTY LTD"	12-May-08 04:51 PM	

+="CN80882"	"Spares for Weatherhaven Shelters"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	08-Apr-08	30-Jun-08	40604.99	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	12-May-08 04:51 PM	

+="CN80904"	"REPAIR OF COLTAS NUX SERIAL NO 003"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	29-Jan-08	15-Jun-08	47654.96	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:52 PM	

+="CN80917"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	04-Jun-08	49500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:53 PM	

+="CN80926"	"FLAP SIDE CARRIAGE RH"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	18-Dec-07	25-Nov-08	58612.21	=""	="BLUE AEROSPACE LLC"	12-May-08 04:53 PM	

+="CN80943"	"Part 4 Task 099 Payload Video PCB"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	09-Apr-08	30-Sep-08	41576.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:54 PM	

+="CN80946"	"Network Component Upgrade"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	28-Feb-08	14-Mar-08	51540.78	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:54 PM	

+="CN80947"	"VOP for M/S payments, EURO, OCT to DEC."	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Apr-08	30-Apr-08	58781.71	=""	="BAE SYSTEMS AUSTRALIA - EUR"	12-May-08 04:54 PM	

+="CN80949"	"Replacement range control Pc's"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Feb-08	31-Mar-08	47496.90	=""	="SIGMACOM PTY LTD"	12-May-08 04:54 PM	

+="CN80952"	"REPAIR OF TRIP UNIT"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	10-Mar-08	43285.71	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 04:54 PM	

+="CN80956"	"ANTENNA"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	02-Jun-08	57727.72	=""	="CHELTON LIMITED"	12-May-08 04:55 PM	

+="CN80961"	"Att: Mr Dion Smith      National Government Sales Manager"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	04-Feb-08	21-Mar-08	42116.80	=""	="NTP FORKLIFTS AUST"	12-May-08 04:55 PM	

+="CN80967"	"FANFARE TRUMPETS"	="Department of Defence"	12-May-08	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	17-Dec-07	19-May-08	47893.39	=""	="RICHARD SMITH (MI) LTD"	12-May-08 04:56 PM	

+="CN80975"	"REPAIRS TO TRANSMIT AND SYNTHESIZER ASSEMBLYS UNDER SUPPORT CONTRACT CAPO 7620070"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	16-Jun-08	58923.62	=""	="THALES AUSTRALIA"	12-May-08 04:56 PM	

+="CN81016"	"Conduct Audit of GTESPO QMS"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-Jun-08	44000.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:59 PM	

+="CN81018"	"ENHANCING, INFLUENCING & NEGOTIATING PROGRAM FOR L EA GRADUATE ENGINEERS"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	26-Feb-08	19-Mar-08	51034.50	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 04:59 PM	

+="CN81019"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	22-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:59 PM	

+="CN81022"	"MODULAR LOAD CARRIAGE EQUIPMENT SAMPLES"	="Defence Materiel Organisation"	12-May-08	="Luggage and handbags and packs and cases"	26-Feb-08	30-Jun-08	48727.99	=""	="XTEK PTY LTD"	12-May-08 04:59 PM	

+="CN81023"	"Cobra Web Pack Licences - inclusive of 12 months maintenance"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	31-Jan-08	44000.00	=""	="DELTEK AUSTRALIA PTY LTD"	12-May-08 04:59 PM	

+="CN81038"	"AMPS Support to DCB Server consolidation"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	31-Jan-08	56430.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 05:00 PM	

+="CN81040"	"QUT WORKSHOPS ASSOCIATED WITH EMCPM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	26-Feb-08	29-Feb-08	45132.35	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 05:00 PM	

+="CN81044"	"PARADE BOOTS"	="Defence Materiel Organisation"	12-May-08	="Footwear"	26-Feb-08	30-Apr-08	50160.00	=""	="BAXTER & COMPANY PTY LTD"	12-May-08 05:00 PM	

+="CN81054"	"vibration controller"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	04-Feb-08	15-Feb-08	57154.16	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 05:01 PM	

+="CN81075"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	44743.11	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:02 PM	

+="CN81077"	"PROCUREMENT OF QUANTITY 2 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	31-May-08	47525.28	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81082"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Feb-08	15-Dec-08	55923.67	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:02 PM	

+="CN81104"	"4531.15 ANZAC SHIP COMBAT SYSTEM SIMULATOR SOFTWARE PROBLEM REPORT ANALYSIS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-May-08	45491.92	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81108"	"MODULAR LOAD CARRIAGE EQUIPMENT TENDER SAMPLES IN 7.1"	="Defence Materiel Organisation"	12-May-08	="Luggage and handbags and packs and cases"	26-Feb-08	30-Jun-08	51367.56	=""	="BAE SYSTEMS"	12-May-08 05:03 PM	

+="CN81128"	"Business Planning Workshops"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	19-Feb-08	30-Jun-09	54989.55	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81135"	"CATM & DATM screws"	="Department of Defence"	12-May-08	="Hardware"	26-Nov-07	29-Feb-08	57298.31	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:04 PM	

+="CN81148"	"Computer Equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	14-Mar-08	50779.70	=""	="SUN MICROSYSTEMS"	12-May-08 05:05 PM	

+="CN81160"	"25mm HEI Ballistics Recovery"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	19-Feb-08	25-May-08	43780.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:05 PM	

+="CN81175"	"DTS No. 71 Mega Anchor Additional Spares"	="Department of Defence"	12-May-08	="Rope and chain and cable and wire and strap"	26-Nov-07	08-Feb-08	46493.47	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:06 PM	

+="CN81192"	"Various spare parts for Live Simulation Equipment"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	19-Feb-08	29-Aug-08	43837.20	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 05:06 PM	

+="CN81193"	"DEEP WELL PUMP MANUALS, SHROUDS, LEADS AND CONNECTIONS"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	18-Dec-07	06-Feb-08	54587.51	=""	="BROWN BROTHERS ENGINEERS"	12-May-08 05:06 PM	

+="CN81199"	"Hire of Venue for Tender Evaluation"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	26-Nov-07	30-Nov-07	49260.20	=""	="CLIFTONS OPERATIONS PTY LTD"	12-May-08 05:07 PM	

+="CN81203"	"Harpoon Canisters electronic equipment"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	26-Nov-07	31-Jan-08	41615.20	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:07 PM	

+="CN81208"	"DELIVERY OF TRAINING COURSE FOR 2007 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	19-Feb-08	29-Feb-08	53933.00	=""	="DEAKINPRIME"	12-May-08 05:07 PM	

+="CN81211"	"ESS- 026"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	30-Jun-08	57393.47	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:07 PM	

+="CN81227"	"WEBSITE DEVELOPMENT"	="Department of Defence"	12-May-08	="Computer services"	23-Nov-07	23-Nov-07	44000.00	=""	="ENCODE POLYMEDIA"	12-May-08 05:08 PM	

+="CN81228"	"MANIFOLD FUEL"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Feb-08	01-Dec-08	40347.45	=""	="ROLLS - ROYCE PLC"	12-May-08 05:08 PM	

+="CN81237"	"Titan Festo Components"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	19-Dec-07	20-Feb-08	49471.65	=""	="FESTO PTY LTD"	12-May-08 05:08 PM	

+="CN81243"	"PN 823498-2, RH Inboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	52220.96	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81247"	"PN 823498-1, LH Inboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	52220.96	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81248"	"Provision of on-going Financial Assistance"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	30-Apr-08	59675.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 05:09 PM	

+="CN81268"	"Schedule Support"	="Defence Materiel Organisation"	12-May-08	="Office supplies"	18-Feb-08	30-Jun-08	52000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 05:10 PM	

+="CN81270"	"Additional RAM"	="Department of Defence"	12-May-08	="Hardware"	23-Jan-08	31-Jan-08	44490.60	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:10 PM	

+="CN81276"	"SITCF Compliance Monitoring Reporting"	="Defence Materiel Organisation"	12-May-08	="Computer services"	18-Feb-08	31-Mar-08	55000.01	=""	="ERNST & YOUNG"	12-May-08 05:10 PM	

+="CN81283"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	15-Jun-08	58849.01	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	12-May-08 05:10 PM	

+="CN81313"	"Maintenance Support Contract."	="Defence Materiel Organisation"	12-May-08	="Software"	18-Feb-08	29-Feb-08	57266.00	=""	="CADCENTRE ASIA PACIFIC"	12-May-08 05:12 PM	

+="CN81335"	"INSPECTION AND TRANSPORT OF TASLU"	="Defence Materiel Organisation"	12-May-08	="Transportation services equipment"	21-Feb-08	30-Apr-08	43973.60	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:13 PM	

+="CN81337"	"Development of the ADFPPD & Synchronisation"	="Department of Defence"	12-May-08	="Computer services"	27-Nov-07	31-Dec-07	45738.00	=""	="OCEAN SOFTWARE PTY LTD"	12-May-08 05:13 PM	

+="CN81340"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	27-Nov-07	28-Feb-08	48903.42	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:13 PM	

+="CN81343"	"Additional Tasking on R2 Servicing of P3 Orion"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	27-Nov-07	21-Dec-07	58420.10	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 05:14 PM	

+="CN81349"	"PELTOR PTT EXTENSION CABLE"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	27-Nov-07	04-Jan-08	49252.50	=""	="NIOA TRADING PTY LTD"	12-May-08 05:14 PM	

+="CN81357"	"Software Support"	="Department of Defence"	12-May-08	="Detective services"	22-Jan-08	31-Dec-08	59862.00	=""	="DARONMONT TECHNOLOGIES PTY LTD"	12-May-08 05:14 PM	

+="CN81373"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	28-Nov-07	30-Jun-08	47377.00	=""	="ALLENS ARTHUR ROBINSON"	12-May-08 05:15 PM	

+="CN81375"	"S&Q 033 EMC LITE MODIFICATION"	="Department of Defence"	12-May-08	="Ammunition"	22-Jan-08	30-Jun-08	48849.90	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:15 PM	

+="CN81390"	"PsP support for the management of Asbestos items"	="Department of Defence"	12-May-08	="Professional engineering services"	25-Jan-08	30-Apr-08	59928.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:16 PM	

+="CN81397"	"25mm HEI-T certification"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	28-Nov-07	18-Jan-08	41679.99	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:16 PM	

+="CN81403"	"AMPS DATABASE ACTIVITY AS PART OF MSDMC"	="Department of Defence"	12-May-08	="Software"	27-Nov-07	14-Mar-08	50678.23	=""	="KAZ GROUP LTD"	12-May-08 05:17 PM	

+="CN81406"	"phone and electricity charges for HMAS MELVILLE maintenance period"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Nov-07	31-Dec-07	50778.85	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 05:17 PM	

+="CN81409"	"laptop computer for SMB CONDER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Nov-07	31-Dec-07	58520.00	=""	="ATLAS HYDROGRAPHIC HOLDING"	12-May-08 05:17 PM	

+="CN81413"	"4552 - DATA SERVICES TO IMPLEMENT AND MANAGE COSOLIDATED STANDARD ACTIVITIES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	41324.80	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:17 PM	

+="CN81416"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	21-Feb-08	41118.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:17 PM	

+="CN81420"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	25-Jan-08	30-Apr-08	40012.50	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:18 PM	

+="CN81422"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	20-Feb-08	20-Feb-08	45902.53	=""	="KAZ GROUP PTY LTD"	12-May-08 05:18 PM	

+="CN81423"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Jan-08	31-Jan-08	45012.15	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:18 PM	

+="CN81428"	"ACPB14-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81431"	"ACPB13-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81434"	"ACPB12-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81435"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	58838.00	=""	="C4I PTY LTD"	12-May-08 05:18 PM	

+="CN81436"	"M4 BlueFire Magazines"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	26-Nov-07	28-Mar-08	40403.88	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:18 PM	

+="CN81437"	"ACPB11-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81438"	"EA and DDP for SUCCESS COMCEN AC"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	29-Jan-08	20-Mar-08	54736.00	=""	="THALES AUSTRALIA"	12-May-08 05:19 PM	

+="CN81443"	"ACPB09-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:19 PM	

+="CN81446"	"ACPB06-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:19 PM	

+="CN81447"	"BATTERIES (LITHIUM)"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	29-Jan-08	25-Mar-08	54226.26	=""	="SAFT AMERICA INC"	12-May-08 05:19 PM	

+="CN81455"	"External Service Provider Services"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Feb-08	09-May-08	58080.00	=""	="LOGISTIC ENGINEERING SERVICES P/L"	12-May-08 05:19 PM	

+="CN81458"	"ACPB01-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:20 PM	

+="CN81474"	"Temperature Calibrator Dry Bloke"	="Department of Defence"	12-May-08	="Manufacture of electrical goods and precision instruments"	24-Jan-08	25-Jan-08	50553.80	=""	="ROYCE WATER TECHNOLOGIES LTD"	12-May-08 05:21 PM	

+="CN81477"	"Provision of Commercial and General Technical Support"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	24-Jan-08	30-May-08	46200.00	=""	="HUEGIN CONSULTING"	12-May-08 05:21 PM	

+="CN81485"	"This order is raised pursuant to the agreed terms DMOSS Panel."	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	24-Jan-08	31-Oct-08	52060.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:22 PM	

+="CN81497"	"Use of Exisitng ASP Contract. Cargo Pumping system parts"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	24-Jan-08	01-Feb-08	54402.34	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:23 PM	

+="CN81501"	"Development of additional report for the NetMAARS System"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-May-08	58916.00	=""	="APT BUSINESS SOLUTIONS PTY LTD"	12-May-08 05:23 PM	

+="CN81508"	"TOB-WARDROOM AC UNIT"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Apr-08	09-May-08	45565.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:24 PM	

+="CN81510"	"Develop Detailed Design Package for Replace LPAC Dehydrator on FFG Class Follow-On-Ships"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	15-Jun-08	43404.90	=""	="ADVITECH PTY LTD"	12-May-08 05:24 PM	

+="CN81515"	"Circuit Card Assembly"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	25-Jan-08	11-Aug-08	44539.96	=""	="LCF SYSTEMS INC"	12-May-08 05:24 PM	

+="CN81524-A1"	" SYSTEM INTEGRATION SCOPING STUDY"	="Defence Materiel Organisation"	12-May-08	="Management advisory services"	21-Apr-08	31-May-08	44800.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 05:25 PM	

+="CN81532"	"Implementation on the DRN of  EPPS Software TRMS FFG-UP Risk Grouping Module-  Proprietary item"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Jun-08	54956.00	=""	="EPPS SOFTWARE PTY LTD"	12-May-08 05:26 PM	

+="CN81540"	"Maritime Technical Officer - Shane Hulbert"	="Defence Materiel Organisation"	12-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	30-Jun-09	51184.32	=""	="PEOPLEBANK"	12-May-08 05:26 PM	

+="CN81562"	"Hull Surveys Apr - Jun 08"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Apr-08	30-Jun-08	49500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:28 PM	

+="CN81567"	"BURNER"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	15-Jun-08	40737.39	=""	="ROLLS - ROYCE PLC"	12-May-08 05:28 PM	

+="CN81569"	"Link Assembly"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	01-May-09	40544.99	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:28 PM	

+="CN81563"	" carry out sea trial for correct operation    "	="Department of Defence"	12-May-08	="Storage vessels and tanks"	30-Apr-08	06-May-08	47121.39	=""	="WILTRADING"	12-May-08 05:29 PM	

+="CN81573"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	55936.32	=""	="KAZ GROUP PTY LTD"	12-May-08 05:29 PM	

+="CN81576"	"Professional Fees"	="Department of Defence"	12-May-08	="Legal services"	13-Dec-07	30-Jun-08	55757.19	=""	="BLAKE DAWSON WALDRON"	12-May-08 05:29 PM	

+="CN81596"	"INDUCTION OF THIRD PARTY TECH PUB INTO THE ANZAC SUITE OF DOCUMENTS"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	30-Jun-08	50295.30	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:30 PM	

+="CN81606"	"Software and Support"	="Department of Defence"	12-May-08	="Software"	12-Dec-07	30-Jun-08	41580.00	=""	="I TECHNOLOGY SOLUTIONS PTY LTD"	12-May-08 05:31 PM	

+="CN81666"	"RF STIMULATOR ROADMAP"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Dec-07	30-May-08	55460.02	=""	="NOVA AEROSPACE"	12-May-08 05:39 PM	

+="CN81685"	"Provision of HMAS Sydney Long Lead Time Contractor Furnished Material for IMAV-24"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	30-Jun-08	57008.06	=""	="THALES AUSTRALIA"	12-May-08 05:42 PM	

+="CN81689"	"F1 Grenade"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	21-Jan-08	56757.84	=""	="JACOBS AUSTRALIA"	12-May-08 05:42 PM	

+="CN81694"	"The following documents must accompany the consign provide documentation will create a delay in ship"	="Department of Defence"	12-May-08	="Hardware"	08-Dec-07	12-May-08	49845.63	=""	="CAE INC"	12-May-08 05:43 PM	

+="CN81730"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	06-Dec-07	06-Dec-07	47016.20	=""	="BEA SYSTEMS PTY LTD"	12-May-08 05:48 PM	

+="CN81737"	"Communication IP Voice Equipment"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	07-Dec-07	14-Dec-07	45982.87	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 05:48 PM	

+="CN81739"	"Computer Server and Software"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	18-Jan-08	43319.34	=""	="ENDACE ACCELERATED"	12-May-08 05:49 PM	

+="CN81745"	"Use ASP exisiting contract - 2 Yearly Inspection of Small Auxiliary Boiler"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Dec-07	21-Mar-08	52353.27	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:49 PM	

+="CN81747"	"PROCUREMENT NUMBERPLATES"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	30-Jun-08	60000.00	=""	="LICENSYS HOLDINGS PTY LTD"	12-May-08 05:50 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val60000to80000.xls
@@ -1,1 +1,410 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75487"	"LECTURER SERVICES"	="Department of Defence"	10-May-08	="Education and Training Services"	13-Feb-08	28-Feb-08	67859.40	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	10-May-08 08:32 AM	

+="CN75491"	"Provision of service to Support MEP as per DTR-A V oucher 0708 61 linked to DMO  PO 4500621176"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	30-Jun-08	80000.00	=""	="KPMG"	10-May-08 08:33 AM	

+="CN75502"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Editorial and Design and Graphic and Fine Art Services"	14-Feb-08	06-Mar-08	75000.00	=""	="STRATEGIC PERSPECTIVES"	10-May-08 08:34 AM	

+="CN75503"	"Communications Network Infrastructure Audit Area F"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	74030.00	=""	="SKM"	10-May-08 08:34 AM	

+="CN75507"	"NQ2081 - AREA G Comms Cable, Room and Cabinet Audi"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Feb-08	30-Jun-08	74030.00	=""	="SKM"	10-May-08 08:34 AM	

+="CN75518"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	31-May-08	71500.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:36 AM	

+="CN75519"	"MRH90 ANIMATION  & MODELS"	="Department of Defence"	10-May-08	="Medical training and education supplies"	14-Feb-08	30-Sep-08	74250.00	=""	="VIRTUO CITY"	10-May-08 08:36 AM	

+="CN75521"	"Computer equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Feb-08	29-Feb-08	77761.20	=""	="ASI SOLUTIONS"	10-May-08 08:36 AM	

+="CN75522"	"Fit Safety Duards to Machine Tools"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	25-Mar-08	70049.10	=""	="CPR SAFE - IND"	10-May-08 08:36 AM	

+="CN75523"	"SN02739- R3 Corridor Lighting Upgrade- Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	69256.62	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:36 AM	

+="CN75536"	"ARCGIS ARC EDITOR 9.2 CUI INDICATIVE 2ND YEAR MAINTENANCE / ARCGIS3D ANALYST 9.2 CUI INDICATIVE"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	07-Feb-08	79728.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 08:37 AM	

+="CN75541"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	05-Feb-08	22-Feb-08	75752.82	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:38 AM	

+="CN75552"	"PROVISION OF PHYSIOTHERAPY SERVICES - HSF EDN RAAF 1/1/08 - 1/1/09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	72000.50	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75554"	"PROVISION OF SENIOR PHARMACY STOREPERSON SERVICES RAAF EDINBURGH 1 JAN 08 - 01 JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	06-Feb-08	01-Jan-09	73000.40	=""	="NASANSB"	10-May-08 08:39 AM	

+="CN75574"	"ICT User App & Data"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	30-Jun-08	65604.00	=""	="SUN MICROSYSTEMS"	10-May-08 08:41 AM	

+="CN75577"	"PROJECT DEPT SUSTAINABILITY & ENVIRONMENT"	="Department of Defence"	10-May-08	="Project management"	04-Feb-08	30-Jun-08	70000.00	=""	="DEPARTMENT OF SUSTAINABILITY"	10-May-08 08:41 AM	

+="CN75607"	"Development and Support of the Materiel Sustainability Analysis Tool (MSAT) Model"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	05-Feb-08	30-May-08	77550.00	=""	="INTERDYNAMICS PTY LTD"	10-May-08 08:44 AM	

+="CN75622"	"CONDUCT FDPT RECTIFICATION WORKS"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	05-Feb-08	30-Jun-08	64240.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:46 AM	

+="CN75662"	"Training Courses"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Feb-08	30-Jun-08	67129.70	=""	="ROBERT BRENNAN & ASSOCIATES"	10-May-08 08:50 AM	

+="CN75676"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	31-May-08	68805.00	=""	="PS MANAGEMENT CONSULTANTS"	10-May-08 08:51 AM	

+="CN75692"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	07-Feb-08	23-May-08	61669.08	=""	="HARVARD UNIVERSITY"	10-May-08 08:52 AM	

+="CN75741"	"WBTA PEST ANIMAL MANAGEMENT"	="Department of Defence"	10-May-08	="Environmental management"	25-Feb-08	30-Jun-08	67026.74	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:57 AM	

+="CN75762"	"sa2366 regional weed control"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 08:59 AM	

+="CN75806"	"Network Aanlysis Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	22-Feb-08	13-Jun-08	67800.00	=""	="EBOR COMPUTING"	10-May-08 09:04 AM	

+="CN75828"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Feb-08	10-Mar-08	77695.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:06 AM	

+="CN75830"	"DEVELO SPECIFICATIONS"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	63519.89	=""	="SMS CONSULTING GROUP PTY LTD"	10-May-08 09:06 AM	

+="CN75853"	"PABX Systems"	="Department of Defence"	10-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Feb-08	30-May-08	69264.80	=""	="NEC AUSTRALIA PTY LTD"	10-May-08 09:08 AM	

+="CN75879"	"RF SIGNAL GENERATOR R&S SM 300PN"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Feb-08	28-Mar-08	76230.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	10-May-08 09:11 AM	

+="CN75885"	"COMPUTER EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Feb-08	74580.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 09:11 AM	

+="CN75913"	"Consultant"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	26-Feb-08	30-Apr-08	79200.00	=""	="NOETIC SOLUTIONS PTY LTD"	10-May-08 09:14 AM	

+="CN75925"	"RANGES & TAs MAINTENANCE TO ROADS AND FIRE ACCESS"	="Department of Defence"	10-May-08	="Roads and landscape"	28-Feb-08	30-Jun-08	75601.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:15 AM	

+="CN75928"	"NQ1842 - CSI NQ Reticulate Irrigation System to 2"	="Department of Defence"	10-May-08	="Project management"	26-Feb-08	30-Jun-08	76465.95	=""	="SPOTLESS"	10-May-08 09:15 AM	

+="CN75929"	"Liberty Data Acquisition system,and Perception Sta"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	26-Feb-08	03-Mar-08	75625.00	=""	="DAVIDSON MEASUREMENT"	10-May-08 09:15 AM	

+="CN75950"	"WAVE SENTRY PLUS SPARES, MICRO AIR-LAUNCHED EXPEND ABLE WAVE BUOYS PLUS SPARES"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	19-Feb-08	28-Mar-08	78684.22	=""	="PLANNING SYSTEMS INC"	10-May-08 09:17 AM	

+="CN75971"	"Video Conferencing Equipment"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	20-May-08	65767.86	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 09:20 AM	

+="CN75983"	"vector sensor"	="Department of Defence"	10-May-08	="Aircraft"	17-Nov-07	30-Mar-08	78954.50	=""	="WILCOXON RESEARCH INC."	10-May-08 09:58 AM	

+="CN75989"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	17-Mar-08	79200.01	=""	="NOVA AEROSPACE"	10-May-08 09:58 AM	

+="CN75993"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	61859.16	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:58 AM	

+="CN75999"	"Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	66682.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 09:58 AM	

+="CN76022"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Dec-07	61455.90	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:00 AM	

+="CN76045"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Mar-08	78540.00	=""	="FLAVOUR SOLUTIONS PTY LTD"	10-May-08 10:01 AM	

+="CN76068"	"Fax Server Kit"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	30-Nov-07	73575.70	=""	="CANON AUSTRALIA PTY LTD"	10-May-08 10:02 AM	

+="CN76070"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	12-Dec-07	62634.03	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76080"	"Desktop Installation Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	18-Jan-08	62284.50	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	10-May-08 10:03 AM	

+="CN76088"	"DEVELOP EDUCATION TOOLS FOR GREEN BUILDING REQUIRE"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	21-Nov-07	30-Jun-08	62150.00	=""	="GHD PTY LTD"	10-May-08 10:03 AM	

+="CN76089"	"LANDSCAPE MANAGEMENT"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Jun-07	30-Jun-08	60852.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:03 AM	

+="CN76094"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	07-Dec-07	69552.21	=""	="COMMANDER (ACT)"	10-May-08 10:04 AM	

+="CN76120"	"Notebook Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	21-Dec-07	79189.19	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:05 AM	

+="CN76130"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	26-Nov-07	30-Jun-08	71648.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:06 AM	

+="CN76166"	"IT user applications"	="Department of Defence"	10-May-08	="Seeds and bulbs and seedlings and cuttings"	24-Apr-08	30-Jun-08	79200.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	10-May-08 10:08 AM	

+="CN76170"	"AIR 9000 PH 4 & 6A - BLACKHAWK AND SEA KING REPLACEMENT."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	76466.50	=""	="SKM"	10-May-08 10:08 AM	

+="CN76171"	"CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jul-08	63250.00	=""	="STURDY SEATING SYSTEMS"	10-May-08 10:08 AM	

+="CN76189"	"TRAINING"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	78928.00	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 10:09 AM	

+="CN76202"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Apr-08	30-Jun-08	79572.45	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:10 AM	

+="CN76206"	"Implementation of Bushfire Management Plans at Singleton SAWR and RAAF Base Williamtown"	="Department of Defence"	10-May-08	="Fire prevention"	20-Mar-08	30-Jun-08	61499.90	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:10 AM	

+="CN76207"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Software"	27-Nov-07	01-Mar-08	72907.44	=""	="CAE PROFESSIONAL SERVICES"	10-May-08 10:10 AM	

+="CN76211"	"Contract 0708-189 Under Standing Offer 0506-271-26"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	27-Nov-07	30-Jun-08	65950.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:10 AM	

+="CN76219"	"MOVEMENT OF 10 X IMV'S FROM CULTANA TO 2/14 LHR (Q USE SOTG FUNDS"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	23-Nov-07	07-Dec-07	79750.00	=""	="FREIGHTWEST PTY LTD"	10-May-08 10:10 AM	

+="CN76248"	"AIRFIELD LIGHTING MAINTENANCE AMBERLEY ALER FITOUT & ASSOCIATED WORKS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	02-Apr-08	30-Jun-08	71504.40	=""	="NILSEN ELECTRIC (SA) PTY LTD"	10-May-08 10:12 AM	

+="CN76281"	"Site Integration"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	16-Dec-07	60327.30	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 10:14 AM	

+="CN76296"	"4032"	="Department of Defence"	10-May-08	="Traffic control"	17-Aug-07	30-Jun-08	69300.00	=""	="RESOLVE FM"	10-May-08 10:15 AM	

+="CN76317"	"contract coding for Air9000 Project"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	29-Jun-08	75075.00	=""	="PROGRESSIVE PEOPLE(AUSTRALIA) PTY L"	10-May-08 10:16 AM	

+="CN76344"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	14-Apr-08	30-Jun-08	60972.77	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:17 AM	

+="CN76347"	"Financial Management Services"	="Department of Defence"	10-May-08	="Live Plant and Animal Material and Accessories and Supplies"	27-Jun-07	08-Jan-08	75786.50	=""	="C I T SOLUTIONS PTY LTD"	10-May-08 10:17 AM	

+="CN76357"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Oct-07	31-Oct-07	79321.78	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76375"	"Cash advance to official bank account"	="Department of Defence"	10-May-08	="Banking and investment"	17-Jan-08	17-Jan-08	73000.00	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:19 AM	

+="CN76376"	"PROVISION OF MAINTENANCE SUPPORT FOR DEPARTMENT OF DEFENCE VOICEMAIL."	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	28-Apr-08	30-Jun-08	69034.76	=""	="ACTIVE VOICE LLC"	10-May-08 10:19 AM	

+="CN76387"	"building of Exhibition Booths for Land Warfare Con"	="Department of Defence"	10-May-08	="Sales and business promotion activities"	24-Oct-07	24-Oct-07	65415.74	=""	="HARRY THE HIRER PTY LTD"	10-May-08 10:20 AM	

+="CN76417"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	67428.30	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:22 AM	

+="CN76444"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Dec-07	30-Dec-07	71330.39	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:23 AM	

+="CN76457"	"TSS CONTRACT"	="Department of Defence"	10-May-08	="Temporary personnel services"	30-Jan-08	30-Jan-08	66000.00	=""	="ASSOCIATED ELECTRONIC SERVICES"	10-May-08 10:24 AM	

+="CN76479"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	10-May-08	="Motor vehicles"	31-Dec-07	31-Dec-07	70746.63	=""	="FUTURE SERVICES GENERAL TRADING CO."	10-May-08 10:25 AM	

+="CN76500"	"FUJITSU FLEXSET 280-HS"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Nov-07	31-Jan-08	69877.50	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 10:26 AM	

+="CN76501"	"ARTC NOVEMBER 2007 QANTAS STATEMENT"	="Department of Defence"	10-May-08	="Civilian and commercial rotary wing aircraft"	30-Nov-07	03-Jan-08	73417.08	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:27 AM	

+="CN76538"	"TECHNICAL CONTACT: GLYN DONALDSON PHONE; 08 8259 7704"	="Department of Defence"	10-May-08	="Medical training and education supplies"	29-Nov-07	12-Dec-07	71268.30	=""	="SOLIPSYS CORPORATION DBA RAYTHEON S"	10-May-08 10:29 AM	

+="CN76576"	"PROFESSIONAL FEES"	="Department of Defence"	10-May-08	="Legal services"	29-Nov-07	30-Jun-08	64542.50	=""	="BLAKE DAWSON WALDRON"	10-May-08 10:31 AM	

+="CN76604"	"CONTACT: ROSS CRUDEN 08 723 6037 WR: 150130310"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	27-Nov-07	30-Jun-08	64797.33	=""	="CIC SECURE PTY LTD"	10-May-08 10:33 AM	

+="CN76636"	"Provision of research services"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	27-Nov-07	27-Jun-08	68200.00	=""	="DIBA GROUP PTY LTD"	10-May-08 10:35 AM	

+="CN76679"	"Test & Tag"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	28-Feb-08	62351.33	=""	="SPOTLESS"	10-May-08 10:37 AM	

+="CN76685"	"PAYMENT TO OFFICAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	10-May-08	="Project management"	29-Jan-08	30-Jun-10	62471.09	=""	="MARITIME SURVEILLANCE ADVISOR"	10-May-08 10:38 AM	

+="CN76694"	"Contractor Support accessories and other manufactured goods."	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	28-Nov-07	30-Nov-07	75406.76	=""	="EBOR COMPUTING"	10-May-08 10:38 AM	

+="CN76698"	"PROFESSIONAL SERVICES PROVIDER"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	30-Jun-08	64790.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	10-May-08 10:38 AM	

+="CN76701"	"CONTAINER  FLLA K"	="Department of Defence"	10-May-08	="Containers and storage"	26-Jan-08	29-Aug-08	74764.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:39 AM	

+="CN76738"	"SERVICES FOR DSA REVIEW"	="Department of Defence"	10-May-08	="Office supplies"	29-Jun-07	30-Jun-08	68640.00	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	10-May-08 10:41 AM	

+="CN76751"	"For the services of engineer for F-111 SIS"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	04-Dec-07	30-Jun-08	65945.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:41 AM	

+="CN76767"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Dec-07	20-Dec-07	79677.40	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:42 AM	

+="CN76787"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	03-Dec-07	20-Dec-07	70114.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:43 AM	

+="CN76811"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 10:45 AM	

+="CN76818"	"AFPO 19 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	67197.80	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76838"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	30-Nov-07	30-Jun-08	63561.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76848"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	30-Nov-07	30-Jan-08	75339.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 10:47 AM	

+="CN76849"	"Payment for Custom Built Computers for Headline 07"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	62172.00	=""	="SEYMOUR COMPUTERS"	10-May-08 10:47 AM	

+="CN76863"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	09-Nov-07	20-Nov-07	69000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:48 AM	

+="CN76880"	"Kuttabul Bld 807 Non Single leap LIA refurbishment"	="Department of Defence"	10-May-08	="Domestic kitchenware"	30-Nov-07	30-Jun-08	68060.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:49 AM	

+="CN76887"	"SHOWTIME TV SUBSCRIPTION"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	28-Aug-07	23-Nov-07	65933.57	=""	="GULF DTH FZ LLC"	10-May-08 10:50 AM	

+="CN76907"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	22-Nov-07	30-Nov-07	75000.00	=""	="MINTER ELLISON"	10-May-08 10:51 AM	

+="CN76935"	"RENTAL OF APPARTMENTS AT SRI PANGKOR"	="Department of Defence"	10-May-08	="Accommodation furniture"	13-Dec-07	13-Dec-07	71938.03	=""	="ELCEETEE TRUST -E-"	10-May-08 10:52 AM	

+="CN76942"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	10-May-08	="Motor vehicles"	22-Nov-07	30-Jun-12	62283.62	=""	="LEASEPLAN AUSTRALIA LTD"	10-May-08 10:53 AM	

+="CN76948"	"Contract no: 0708-199"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	22-Nov-07	30-Jun-08	60054.83	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:53 AM	

+="CN76954"	"MULTIPLE COMPUTER SWITCHES"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	03-Dec-07	77638.00	=""	="TENIX DATAGATE PTY LTD"	10-May-08 10:53 AM	

+="CN76982"	"PSP for Environment team"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	22-Nov-07	30-Jun-08	79511.20	=""	="SMEC HOLDINGS PTY LTD"	10-May-08 10:55 AM	

+="CN76998"	"Project management services"	="Department of Defence"	10-May-08	="Temporary personnel services"	16-Jan-08	30-Jun-08	65945.44	=""	="DAINTREE SYSTEMS PTY LTD"	10-May-08 11:41 AM	

+="CN77002"	"Server equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	30-Mar-08	67526.25	=""	="COMPUTERCORP PTY LTD"	10-May-08 11:41 AM	

+="CN77005"	"HARDWARE FOR NIDA CLASSROOM SETUP"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	31-Jan-08	68002.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:42 AM	

+="CN77015"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Apr-08	77000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 11:42 AM	

+="CN77021"	"TRAINING FOR NIDA STAFF"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-Jan-08	29-Feb-08	72600.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:42 AM	

+="CN77029"	"SN02493- HQJOC Project C41 External Works"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	70847.22	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:43 AM	

+="CN77038"	"GT186-300 Amplifier"	="Department of Defence"	10-May-08	="Electrical components"	17-Jan-08	15-Apr-08	61669.08	=""	="INSTRUMENTS FOR INDUSTRIES INC. DBA"	10-May-08 11:43 AM	

+="CN77069"	"38 SQN COLLOCATION DELIVERY-PMCA 38SQN VARIATION TO PMCA AIR 9000 PHA"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	64900.00	=""	="THINC PROJECTS PTY LTD"	10-May-08 11:45 AM	

+="CN77076"	"Building Modifications"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	16-Jan-08	30-Jun-08	79200.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:46 AM	

+="CN77099"	"POC: MATTHEW EDWARDS CONTACT: 02 626 50789"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	28-Mar-08	60500.00	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	10-May-08 11:47 AM	

+="CN77114"	"E8257D-PSG-ANALOG SIGNAL GENERATOR / E8257D HIGH OUTPUT POWER OPTION / LOW NOISE PERFORMANCE OPTION"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	02-Feb-08	14-Mar-08	68536.57	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:48 AM	

+="CN77138"	"Scanners"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	31-Jan-08	14-Feb-08	69952.49	=""	="CORPORATE EXPRESS AUSTRALIA"	10-May-08 11:50 AM	

+="CN77139"	"SIGNAL GENERATOR"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	15-Jan-08	28-Feb-08	63822.88	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:50 AM	

+="CN77141"	"Software design and Development"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	30-May-08	63360.00	="2007/1066149"	="EBOR COMPUTING"	10-May-08 11:50 AM	

+="CN77142"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	60439.50	=""	="ROBERT A EDWARDS"	10-May-08 11:51 AM	

+="CN77160"	"HARDWARE COMPONENTS REQUIRED BY NIDA CLASSROOM ENG CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	16-Jan-08	16-Jan-08	66000.00	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 11:52 AM	

+="CN77174"	"RELOCATION OF DSTO FROM PYRMONT TO ATP REFERN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	61600.00	=""	="NTSS"	10-May-08 11:53 AM	

+="CN77200"	"Vinyl & carpet"	="Department of Defence"	10-May-08	="Interior finishing materials"	18-Jan-08	31-Jan-08	63027.80	=""	="DARWIN CARPETS & VINYLS PTY LTD"	10-May-08 11:54 AM	

+="CN77210"	"AIR MOBILE MISSION AND TASK ANALYSIS REPORT"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	21-Jan-08	21-Jan-08	65340.00	=""	="TENIX DEFENCE PTY LTD"	10-May-08 11:55 AM	

+="CN77258"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	66040.92	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:57 AM	

+="CN77271"	"Provision of Network Centric Warfare (NCW) Study Data Analysis Support Services"	="Department of Defence"	10-May-08	="Temporary personnel services"	21-Jan-08	12-May-08	65000.00	=""	="JACOBS AUSTRALIA"	10-May-08 11:58 AM	

+="CN77280"	"MEDICAL SERVICES 322HSF TINDAL"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-10	61900.00	=""	="NT MEDIC PTY LTD"	10-May-08 11:59 AM	

+="CN77298"	"Manufacture of a Duplicate Virtual MANPADS Environment"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Apr-08	67645.60	=""	="SYDAC PTY LTD"	10-May-08 12:00 PM	

+="CN77310"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	73330.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:01 PM	

+="CN77313"	"SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	30-Mar-08	63800.00	=""	="IBM AUSTRALIA PTY LTD"	10-May-08 12:01 PM	

+="CN77315"	"Lexmark Mono Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	78430.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 12:01 PM	

+="CN77329"	"Printers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	23-Jan-08	06-Feb-08	79640.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	10-May-08 12:02 PM	

+="CN77350"	"HARDWARE ITEMS REQUIRED FOR NIDA CLASSROOM SET UP HMAS CERBERUS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	18-Jan-08	65041.90	=""	="UNIVERSAL TECHNICAL TRAINING SERVIC"	10-May-08 12:03 PM	

+="CN77367"	"BULK GROCERY SUPPLIES FOR HMAS CAIRNS BASED VESSEL FOR THIS FINANCIAL YEAR (07/08)"	="Department of Defence"	10-May-08	="Food and beverage industries"	21-Jan-08	30-Jun-08	80000.00	=""	="BID VEST"	10-May-08 12:04 PM	

+="CN77449"	"HOLSWORTHY-SPECIAL OPERATIONS WORKING ACCODATION & STAGE 1"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-08	60891.60	=""	="BACTEC SE ASIA PTY LTD"	10-May-08 12:09 PM	

+="CN77463"	"POC: BERT HUNTER CONTACT 08 9956 2540"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Jan-08	30-May-08	63234.00	=""	="BOEING AUSTRALIA LTD"	10-May-08 12:09 PM	

+="CN77464"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	10-Jan-08	30-Jun-08	65500.00	=""	="CLAYTON UTZ"	10-May-08 12:10 PM	

+="CN77465"	"Under SO 45190 Provision Of Project & Engineering Services to DSTO"	="Department of Defence"	10-May-08	="Professional engineering services"	26-Jan-08	20-Jun-08	76703.00	=""	="DARONMONT TECHNOLOGIES PTY LTD"	10-May-08 12:10 PM	

+="CN77466"	"BACKUP SYSTEM TAPE UNIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP PTY LTD"	10-May-08 12:10 PM	

+="CN77556"	"Professional service for a composites engineer to to test aerospace grade adhesives"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Jan-08	30-Jun-08	66000.00	=""	="AVIATION & GENERAL PTY LTD"	10-May-08 12:15 PM	

+="CN77572"	"POC:ANDREW MCCAHON 02 626 50394"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	08-Feb-08	66292.63	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	10-May-08 12:15 PM	

+="CN77576"	"RAAF EDN FUEL - 07/08 Technical Authority: Robyn Williams"	="Department of Defence"	10-May-08	="Fuels"	09-Jan-08	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:16 PM	

+="CN77605"	"ETHERDRIVE STORAGE PLATFORM / REDUNDANT LINUX NAS GATEWAY / CUDA 7200"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	09-Jan-08	16-Jan-08	61941.00	=""	="MCR COMPUTER RESOURCES PTY LTD"	10-May-08 12:17 PM	

+="CN77618"	"POC:ANDREW WATSON IT DEVICES 02 626 50379"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	15-Feb-08	70209.94	=""	="GETRONICS (AUSTRALIA) PTY LTD"	10-May-08 12:18 PM	

+="CN77634"	"1200 SERIES BINARY PUMP SL & 1200 SERIES STANDARD AUTOSAMPLER"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	14-Jan-08	11-Feb-08	74052.02	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 12:19 PM	

+="CN77638"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	71471.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 12:19 PM	

+="CN77665"	"SUN STORAGE TEK 6140 ARRAY"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	68216.50	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 12:21 PM	

+="CN77696"	"Consultancy Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Dec-07	07-Mar-08	71224.99	=""	="GROSVENOR MANAGEMENT CONSULTING"	10-May-08 12:22 PM	

+="CN77711"	"Professional Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Jun-08	65298.54	=""	="REMOTE PTY LTD"	10-May-08 12:23 PM	

+="CN77718"	"ONGOING SUPPORT TO TMS CONTRACT"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	12-Dec-07	22-Feb-08	69960.00	=""	="AUSTRALIAN BUSINESS TELEPHONE"	10-May-08 12:23 PM	

+="CN77739"	"Specialist Training"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jan-08	30-Jun-08	67500.13	=""	="CENTRAL QLD UNI"	10-May-08 12:25 PM	

+="CN77743"	"BACKUP SYSTEM TAPE UNIT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 12:25 PM	

+="CN77753"	"SUPPLY & INSTALL 5 X POWER RECTIFIERS TO REPLACE THE FAULTY ITEMS."	="Department of Defence"	10-May-08	="Distribution and Conditioning Systems and Equipment and Components"	10-Dec-07	31-Jan-08	78347.50	=""	="CPS NATIONAL"	10-May-08 12:25 PM	

+="CN77758"	"tape drives and cartridges"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	28-Feb-08	75339.00	=""	="COMPUTERCORP (LOGISTICS)"	10-May-08 12:26 PM	

+="CN77778"	"Executive support to DSAD"	="Department of Defence"	10-May-08	="Temporary personnel services"	11-Jan-08	30-Jun-08	60885.00	=""	="HAYS SPECIALIST RECRUITMENT"	10-May-08 12:27 PM	

+="CN77804"	"CISCO Switches"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	28-Jan-08	69910.50	=""	="EMC GLOBAL HOLDINGS COMPANY"	10-May-08 12:28 PM	

+="CN77815"	"Replace alarm system"	="Department of Defence"	10-May-08	="Security systems services"	11-Dec-07	17-Dec-07	72370.10	=""	="HONEYWELL LIMITED INC IN NSW SPACE"	10-May-08 12:29 PM	

+="CN77817"	"NAVIGATIONAL CHARTS FOR ADF PILOTS"	="Department of Defence"	10-May-08	="Paper products"	11-Dec-07	31-Oct-08	69154.89	=""	="AIRSERVICES AUSTRALIA"	10-May-08 12:29 PM	

+="CN77850"	"Admin XP Professional, SOE Support, Fast Track Project Management - all Training"	="Department of Defence"	10-May-08	="Master control systems"	30-Jan-08	14-Apr-08	78784.40	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	10-May-08 12:31 PM	

+="CN77859"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	62387.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77863"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	62387.82	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:31 PM	

+="CN77871"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Mar-08	65648.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	10-May-08 12:32 PM	

+="CN77888"	"Develope SSI serial converter and power manager as per quote 847a."	="Department of Defence"	10-May-08	="Master control systems"	31-Jan-08	18-Apr-08	67867.80	=""	="CPE SYSTEMS PTY LTD"	10-May-08 12:33 PM	

+="CN77891"	"MAR Data Analysis Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	66220.00	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:33 PM	

+="CN77898"	"CONTRACTOR PROVIDE CDD FOR CCDG"	="Department of Defence"	10-May-08	="Project management"	31-Jan-08	30-Jun-08	73920.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	10-May-08 12:33 PM	

+="CN77905"	"HQJOC PROJECT-SCEL PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	31-Jan-08	30-Jun-08	76774.50	=""	="SCEL PTY LTD"	10-May-08 12:34 PM	

+="CN77918"	"Prosthodontist"	="Department of Defence"	10-May-08	="Medical Equipment and Accessories and Supplies"	31-Jan-08	30-Jun-08	77394.24	=""	="G & E WOOLLEY PROSTHODONIST &"	10-May-08 12:34 PM	

+="CN77948"	"Conservation Management Plan Officers Mess"	="Department of Defence"	10-May-08	="Environmental management"	30-Jan-08	30-Jun-08	64350.00	=""	="RESOLVE FM"	10-May-08 12:36 PM	

+="CN77953"	"INCREASED CAPACITY TO DSVE NATIONAL BRIDGE."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	13-Dec-07	28-Feb-08	73921.18	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 12:36 PM	

+="CN77956"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-May-08	73700.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77958"	"SOCIAL FACTORS IN RADICALISATION IN THE AUSTRALIAN CONTEXT DEVELOPMENT."	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	30-May-08	60209.14	=""	="KAZ GROUP PTY LTD"	10-May-08 12:37 PM	

+="CN77963"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	29-Jan-08	30-Jun-08	72176.94	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:37 PM	

+="CN77965"	"janes publications - aircraft upgrades yearbook / all the worlds aircraft yearbook"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jan-08	30-May-08	63094.90	=""	="IHS AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77985"	"CONSULTANCY FOR UPGRADE OF SECURITY PANELS"	="Department of Defence"	10-May-08	="Security and control equipment"	30-Jan-08	30-Jun-08	79700.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:38 PM	

+="CN77990"	"Body Armor Enhancement Set Version 2"	="Defence Materiel Organisation"	12-May-08	="Body armour"	09-May-08	19-May-08	66587.40	="CC1V20"	="HELLWEG INTERNATIONAL PTY LTD"	12-May-08 08:46 AM	

+="CN78003"	"SN02737 - Kitchen Equip Audit Condition Appraisal"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	70339.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 09:30 AM	

+="CN78012"	"SPECTROFLUROMETER SYSTEM COMPRISING SP 2358i SPECTROGRAPH FILTER WHEEL"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	14-Dec-07	31-Jan-08	75693.99	=""	="COHERENT SCIENTIFIC PTY LTD"	12-May-08 09:33 AM	

+="CN78035"	"FURNITURE"	="Department of Defence"	12-May-08	="Accommodation furniture"	17-Dec-07	21-Jan-08	67595.00	=""	="ABLE OFFICE FURNITURE PTY LTD"	12-May-08 09:37 AM	

+="CN78036"	"SUPPORT FROM USAF - OP SLIPPER ROTATIONS"	="Department of Defence"	12-May-08	="Aircraft"	17-Dec-07	31-Dec-07	65861.51	=""	="DFAS OMAHA OPERATING LOCATION"	12-May-08 09:37 AM	

+="CN78045"	"Provision of labour hire to 1 SIG REGT from 1 Jan TO 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	69129.18	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:39 AM	

+="CN78057"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	76295.66	=""	="COMMANDER (ACT)"	12-May-08 09:42 AM	

+="CN78068"	"SOFTWARE"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Jun-08	73255.10	=""	="KAZ GROUP PTY LTD"	12-May-08 09:44 AM	

+="CN78072"	"UPDATE HQ AIR COMMAND AIR CONDITIONING PLANT"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Dec-07	30-Jun-08	70590.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:45 AM	

+="CN78078"	"CONSULTANCY FOR CANUNGRA SIMULATION SITE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	64062.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 09:46 AM	

+="CN78105"	"Software development support"	="Department of Defence"	12-May-08	="Temporary personnel services"	19-Dec-07	30-Jun-08	60005.39	=""	="KARU IT PTY LTD"	12-May-08 09:52 AM	

+="CN78126"	"Base-X 305 Sheler ECU and Ducting"	="Department of Defence"	12-May-08	="Environmental control systems"	18-Dec-07	31-Mar-08	79178.00	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78127"	"SITE AND REGIONAL EMS DESIGN AND REFRESH - PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	77000.00	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 09:56 AM	

+="CN78135"	"ALTC PETROLEUM MOBILE LABORATORY"	="Department of Defence"	12-May-08	="Fuels"	18-Dec-07	30-Jun-08	76288.70	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-May-08 09:57 AM	

+="CN78138"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	07-Jan-08	60445.00	=""	="IBM AUSTRALIA LTD"	12-May-08 09:58 AM	

+="CN78156"	"Base-X 305 Shelter   Flooring Sets"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	75997.90	=""	="IB SUPPLIES PTY LTD"	12-May-08 10:01 AM	

+="CN78157"	"Subscription to Scopus"	="Department of Defence"	12-May-08	="Electronic reference material"	18-Dec-07	02-Jan-08	79744.50	=""	="ELSEVIER B.V."	12-May-08 10:01 AM	

+="CN78162"	"PROVISION OF CONSULTANCY TO ACCREDIT THE DSVE PERSONAL VTC."	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Dec-07	15-Feb-08	79384.80	=""	="CONNELL WAGNER PTY LTD"	12-May-08 10:02 AM	

+="CN78175-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Jan-08	30-Jun-08	61848.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:27 AM	

+="CN78179"	"Airport Policing Review"	="Australian Federal Police"	12-May-08	="Policing services"	01-Dec-07	11-Apr-08	78882.97	="RFT 01-2005"	="Oakton AA Services Pty Ltd (T/A Acumen Alliance)"	12-May-08 10:49 AM	

+="CN78230"	"LAPTOPS FOR ET NAVAL TRAINEES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	25-Jan-08	71299.92	=""	="CENTRE COM FRANKSTON PTY LTD"	12-May-08 01:08 PM	

+="CN78239-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	01-Feb-08	65550.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:09 PM	

+="CN78241-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	28-Dec-07	61599.25	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:09 PM	

+="CN78249-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	66741.37	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:10 PM	

+="CN78251-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	66741.37	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:10 PM	

+="CN78253-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	64935.00	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	12-May-08 01:10 PM	

+="CN78275"	"Software  Development and travel costs"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	30-Mar-08	69996.44	=""	="INQUIRION PTY LTD"	12-May-08 01:13 PM	

+="CN78299"	"FACOPS - SA2676"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	66000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 01:17 PM	

+="CN78308"	"SA2267 - JPEU Road Sealing"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	72710.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:18 PM	

+="CN78378"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Jan-08	64570.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	12-May-08 01:30 PM	

+="CN78433"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	03-Oct-08	77706.16	=""	="ACROSS BUSINESS CONSULTING PTY LTD"	12-May-08 01:39 PM	

+="CN78449"	"Modification to Facility 250 and Facility 17 at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	06-Dec-07	30-Jun-08	72050.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 01:42 PM	

+="CN78454"	"COMPUTER HP DC7800 + LP2065 - LCD FLAT SCREENS ASSET TAGGING AND DOCUMENTATION"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	20-Dec-07	68579.72	=""	="DATACOM SYSTEMS SA PTY LTD"	12-May-08 01:43 PM	

+="CN78462"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Jun-08	79925.00	=""	="CLAYTON UTZ"	12-May-08 01:43 PM	

+="CN78475"	"Professional support to the DMES & LCART PDS"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Dec-07	31-Jan-08	65100.20	=""	="APERIUM PTY LTD"	12-May-08 01:45 PM	

+="CN78491-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	08-Nov-07	30-Jun-08	77471.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78493"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	08-Nov-07	30-Jun-08	77471.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78512"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	05-Mar-08	60500.00	=""	="ICAN SOLUTIONS"	12-May-08 01:50 PM	

+="CN78515"	"Provision of contractor support"	="Department of Defence"	12-May-08	="Temporary personnel services"	20-Dec-07	21-Dec-07	65700.00	=""	="EBOR COMPUTING"	12-May-08 01:51 PM	

+="CN78518"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	04-Mar-08	70274.80	=""	="PROJECT OUTCOMES PTY LTD"	12-May-08 01:51 PM	

+="CN78520"	"DECON-JEZZINE BARRACKS-SITE AUDITOR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-09	78650.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:51 PM	

+="CN78523"	"WEBWASHER SUBSCRIPTION"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	61028.00	=""	="CYBERTRUST"	12-May-08 01:52 PM	

+="CN78532"	"OMNISCAN SYSTEM"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Dec-07	28-Feb-08	76202.50	=""	="OLYMPUS AUST PTY LTD"	12-May-08 01:54 PM	

+="CN78549-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	02-Oct-07	30-Jun-08	65065.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:58 PM	

+="CN78553"	"IT training courses"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	11-Oct-07	30-Jun-08	75000.00	=""	="DIMENSION DATA AUSTRALIA PTY LIMITED"	12-May-08 01:58 PM	

+="CN78562"	"TSS Contract Executive Engineer Support to MOD"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	30-Jun-08	61600.00	=""	="DAINTREE SYSTEMS PTY LTD"	12-May-08 02:01 PM	

+="CN78588"	"FURNITURE FOR TRAINING CENTRE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	20-Dec-07	30-Jan-08	68563.00	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 02:04 PM	

+="CN78589"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	62412.35	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:05 PM	

+="CN78598"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	62304.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78607"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	78216.60	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78618"	"Contract Approval for site Integration Services Hunter Business Centre"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	14-Feb-08	73742.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:10 PM	

+="CN78679"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	30-Nov-08	76384.00	=""	="CONSUNET PTY LTD"	12-May-08 02:15 PM	

+="CN78690"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	18-Feb-08	74536.49	=""	="ALLTRANS INTERNATIONAL"	12-May-08 02:16 PM	

+="CN78699"	"Forklift"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	07-Jan-08	13-Mar-08	61986.10	=""	="TOYOTA MATERIAL HANDLING (WA)"	12-May-08 02:17 PM	

+="CN78703"	"SECURITY UPGRADE"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	30-Jun-08	79992.00	=""	="HONEYWELL LTD"	12-May-08 02:17 PM	

+="CN78771"	"REPAIR WATER MAIN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	14-Apr-08	30-Jun-08	70048.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:21 PM	

+="CN78785"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	79661.96	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:22 PM	

+="CN78786"	"fees"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Oct-07	30-Nov-07	72547.71	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:22 PM	

+="CN78840"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	12-May-08	="Recreational aircraft"	23-Nov-07	01-Sep-08	70866.25	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:25 PM	

+="CN78860"	"MOVEMENT OF FREIGHT FROM CAIRNS TO BRUSSELS, BELGI"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	26-Oct-07	06-Dec-07	62999.58	=""	="DGM AUSTRALIA"	12-May-08 02:27 PM	

+="CN78865"	"3 x Aircraft Accident Investigation Courses in the UK - CAPTs Steel, Eves and Gray"	="Department of Defence"	12-May-08	="Education and Training Services"	11-Apr-08	18-Apr-08	66964.29	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 02:27 PM	

+="CN78869"	"QANTAS ACCN:02-231815"	="Department of Defence"	12-May-08	="Aircraft"	30-Sep-07	31-Dec-07	74941.29	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:27 PM	

+="CN78873"	"PROJECTORS"	="Department of Defence"	12-May-08	="Photographic and recording media"	02-Jan-08	29-Feb-08	62672.50	=""	="AVPRO"	12-May-08 02:28 PM	

+="CN78878"	"qantas invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Oct-07	31-Oct-07	62296.33	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:28 PM	

+="CN78883"	"MATERIALS AND LABOUR FOR SPRUNG TENT CONSTRUCTION FINAL PAYMENT"	="Department of Defence"	12-May-08	="General building construction"	08-Apr-08	10-Apr-08	65405.99	=""	="MR FAEIQ FARHAN HASAN"	12-May-08 02:28 PM	

+="CN78892"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	72270.00	=""	="BORLAND AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78935"	"DIER 0607-1166 Procurement of a Blade Chassis and"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-May-08	60028.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:32 PM	

+="CN78958"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	65127.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:34 PM	

+="CN78965"	"CONTACT PAUL MEULENBROEK 08 8935 4622"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	17-Dec-07	30-Jun-08	73338.98	=""	="ASSET SERVICES"	12-May-08 02:34 PM	

+="CN78971"	"RESEARCH INTO THE DESIGN OF OPTIMUM DATA SCHEMA'S FOR RAN MAINTENANCE DATA & CODIFICATION O"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	17-Dec-07	31-Jan-08	75000.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	12-May-08 02:34 PM	

+="CN78972"	"LEASE OF VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	18-Apr-08	01-Jun-08	66424.88	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:35 PM	

+="CN78975"	"LEASE OF VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	18-Apr-08	01-Jun-08	66389.37	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:35 PM	

+="CN79002"	"TSS Contract Software Engineering Services for C3ID"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Dec-07	20-May-08	66000.00	=""	="HIGHWAY 20 PTY LTD"	12-May-08 02:37 PM	

+="CN79004"	"PORT COSTS"	="Department of Defence"	12-May-08	="Transportation services equipment"	11-Apr-08	30-Apr-08	70790.77	=""	="PDL TOLL"	12-May-08 02:37 PM	

+="CN79032"	"REQUIRED FOR KIT 1 FOR DEMALSH"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	17-Dec-07	23-Dec-07	66645.14	=""	="VELDEMAN AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79040"	"Security Consultancy Services"	="Department of Defence"	12-May-08	="Security and control equipment"	07-Apr-08	30-Jun-08	79750.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:40 PM	

+="CN79056"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	67848.08	=""	="ELCEETEE TRUST -E-"	12-May-08 02:41 PM	

+="CN79063"	"FDI Master Plan"	="Department of Defence"	12-May-08	="Land and soil preparation and management and protection"	17-Dec-07	30-Jun-08	70360.40	=""	="RESOLVE FM"	12-May-08 02:41 PM	

+="CN79064"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	02-Jun-08	72900.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:41 PM	

+="CN79090"	"SN02294 - Hazardous Substances and Dangerous Goods"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	68371.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:44 PM	

+="CN79096"	"QANTAS ACCOUNT FOR JANUARY 2008"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	01-Apr-08	01-Apr-08	67547.57	=""	="QANTAS"	12-May-08 02:45 PM	

+="CN79100"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	68705.41	=""	="KAZ GROUP PTY LTD"	12-May-08 02:45 PM	

+="CN79103"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Jan-08	05-Apr-08	78973.20	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:45 PM	

+="CN79105"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Mar-08	05-Apr-08	78973.20	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:46 PM	

+="CN79110"	"connectors base-x tents"	="Department of Defence"	12-May-08	="Prefabricated structures"	07-Apr-08	10-Jun-08	63167.50	=""	="IB SUPPLIES PTY LTD"	12-May-08 02:46 PM	

+="CN79191"	"Tenix Multiple Computer Switches units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	64798.87	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79199"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	76233.96	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79215"	"IT devices"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-May-08	75949.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 02:56 PM	

+="CN79237"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	60000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:58 PM	

+="CN79238"	"Immediate and Urgent General Building Works"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	23-Nov-07	30-Jun-08	60500.02	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79243"	"AIRCRAFT PLATFORMS / STANDS"	="Department of Defence"	12-May-08	="Prefabricated structures"	03-Apr-08	30-May-08	64515.00	=""	="COUNTRYWIDE ENGINEERING"	12-May-08 02:59 PM	

+="CN79260"	"Delivery of CMC CNNSW - FP&EM Fire Reactive (Non-LIA) work directions for FY04/05"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	06-Jul-05	30-Jun-06	64541.03	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:00 PM	

+="CN79262"	"Delivery of CMC CNNSW - FP&EM RWL Reactive (inc. Force Majeure) work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	73933.62	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79289"	"COGENT REQUIRED TO CONDUCT THE CORPORATE & FINANCIAL EVALUATION OF VIDEO CONFERENCING."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	31-Dec-08	76890.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-May-08 03:04 PM	

+="CN79322"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	31-Oct-07	24-Apr-08	69675.40	=""	="HMA BLAZE PTY LTD"	12-May-08 03:07 PM	

+="CN79366"	"RELEVANT DOCUMENTATION PREPARED"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	30-Jun-08	69382.50	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	12-May-08 03:10 PM	

+="CN79369"	"CATALYST 3560E 48 10/100/1000+2 10GEX2 265WIPB SMARTNET ONSITE 24X7X4"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	09-May-08	77351.60	=""	="COMPUTERCORP PTY LTD"	12-May-08 03:10 PM	

+="CN79383"	"OFFICE EQUIPMENT REPAIRS - OBGW"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	01-May-08	67723.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:11 PM	

+="CN79408"	"PowerPC CPU Boards"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	01-Apr-08	24-Jun-08	72930.00	=""	="BRAETEC PTY LTD"	12-May-08 03:13 PM	

+="CN79411"	"Logistics Support for Darwin and Tindal for Pitch Black 2008."	="Department of Defence"	12-May-08	="Human resources services"	08-Apr-08	30-Jun-08	60508.80	=""	="CUBIC DEFENSE APPLICATIONS INC"	12-May-08 03:14 PM	

+="CN79419"	"RELOCATION OF DSTO FROM PYRMONT TO ATP REFERN."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	63425.78	=""	="TAC PACIFIC PTY LTD"	12-May-08 03:14 PM	

+="CN79427"	"S5262, WR 300073784. Consultation to develop techn including design of;"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	65752.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:14 PM	

+="CN79428"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	67599.99	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79430"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Manufacturing technologies"	18-Apr-08	22-Apr-08	61820.00	=""	="PLACARD PTY LTD"	12-May-08 03:15 PM	

+="CN79441"	"QANTAS ACCOUNT 1 AVN REGT JANUARY ACCOUNT NO 04-422406"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	21-Feb-08	79820.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:15 PM	

+="CN79455"	"AIR 7000 SHARP MAK VR-FORCES DEVELOPMENT ENVIRONME NT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Apr-08	16-Apr-08	77000.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 03:16 PM	

+="CN79513"	"Site Clearance of former Point Cook RAAF training grounds"	="Department of Defence"	12-May-08	="Environmental Services"	08-Apr-08	30-May-08	63800.00	=""	="TRANSFIELD SERVICES PTY LTD"	12-May-08 03:20 PM	

+="CN79631"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	79932.60	=""	="G&D AUSTRALASIA PTY LTD"	12-May-08 03:28 PM	

+="CN79642"	"Provision of equipment to improve target mounting on tower."	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	15-Nov-07	30-Jun-08	77000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 03:29 PM	

+="CN79650"	"Provision of IT Hardware"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	78593.90	=""	="Gemalto Pty Ltd"	12-May-08 03:29 PM	

+="CN79654"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Jan-08	31-Jan-08	68908.16	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 03:30 PM	

+="CN79687"	"VIC Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	75432.42	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79728"	"AFM00961"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	25-Mar-08	04-Jun-08	76329.00	=""	="ETMC TECHNOLOGIES PTY LTD"	12-May-08 03:35 PM	

+="CN79729"	"OA3YVJ SDSS payment failed due to workhop order be selected on PO creation."	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	13-Feb-08	60445.00	=""	="HAWKER DE HAVILLAND"	12-May-08 03:35 PM	

+="CN79783"	"EWSP AFT RADOME MODIFICATION"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	15-Feb-08	20-Jun-08	63654.03	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 03:39 PM	

+="CN79822"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	07-Apr-08	30-Jun-08	67894.20	=""	="Talent International (ACT) Pty Ltd"	12-May-08 03:41 PM	

+="CN79828"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Graphic design"	08-Apr-08	30-Jun-08	79365.00	=""	="GREY WORLDWIDE CANBERRA PTY LTD"	12-May-08 03:42 PM	

+="CN79837"	"Services of AIR05276PH8A ESM ATE Project Engineering Manager"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	18-Feb-08	30-Jun-08	76373.96	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 03:43 PM	

+="CN79842"	"ISO CONTAINERS - AIRCONDITIONED"	="Department of Defence"	12-May-08	="Containers and storage"	15-Nov-07	21-Dec-07	76802.40	=""	="ROYAL WOLF TRADING AUSTRALIA"	12-May-08 03:43 PM	

+="CN79845"	"CISCO Hardware"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	31-Dec-07	62317.22	=""	="GETRONICS"	12-May-08 03:43 PM	

+="CN79852"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	09-Apr-08	30-Jun-08	79842.40	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 03:43 PM	

+="CN79863"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	21-Dec-07	67496.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:44 PM	

+="CN79904"	"MHC STERN TUBE REPLACEMENT TASK# 101762"	="Department of Defence"	12-May-08	="Military watercraft"	27-Mar-08	30-Apr-08	72539.50	=""	="THALES AUSTRALIA"	12-May-08 03:47 PM	

+="CN79941"	"Use of Exisitng ASP Contract.- ECP for Alpha Lubricator"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	23-May-08	77521.40	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:50 PM	

+="CN79947"	"Use of Exisitng ASP Contract.- ECP for Engine Diagnostic System"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	23-May-08	71374.60	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:51 PM	

+="CN79948"	"GWEO Temporary Training Manger - Continuation"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	20-Jun-08	64064.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 03:51 PM	

+="CN79956"	"PC9 SPARES"	="Department of Defence"	12-May-08	="Aircraft equipment"	27-Mar-08	27-Oct-08	67947.08	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:51 PM	

+="CN79959"	"MILDS SENSOR SOFTWARE UPGRADE"	="Defence Materiel Organisation"	12-May-08	="Air transportation support systems and equipment"	14-Feb-08	31-Mar-08	68785.11	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	12-May-08 03:52 PM	

+="CN79973"	"ACCOMMODATION FOR 2008 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	60000.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 03:53 PM	

+="CN79988"	"Supply of fresh rations"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	05-Nov-07	31-Jan-08	74080.20	=""	="WOOLWORTHS SA DIVISION"	12-May-08 03:55 PM	

+="CN80005"	"telephone charges during maintenance period 28"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	11-Dec-07	31-Jan-08	78100.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 03:56 PM	

+="CN80008"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	12-May-08	="Legal services"	01-Apr-08	30-Jun-08	68729.99	=""	="BLAKE DAWSON WALDRON"	12-May-08 03:57 PM	

+="CN80016"	"IT LICENCE"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	30-Apr-08	70786.10	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 03:57 PM	

+="CN80026"	"CONSULTANCY SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	77000.00	=""	="PALADIN RISK MANAGEMENT SERVICES"	12-May-08 03:58 PM	

+="CN80029"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	29-Feb-08	26-Mar-08	78981.84	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 03:58 PM	

+="CN80070"	"CONDUCT MESS UPGRADES HMAS KANIMBLA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Apr-08	25-Jun-08	60602.30	=""	="SYDNEY HARBOUR BOATBUILDERS"	12-May-08 04:01 PM	

+="CN80093"	"270162575 - Russell- CP"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-Nov-07	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:02 PM	

+="CN80106"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	07-Feb-08	28-Oct-08	66487.20	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 04:03 PM	

+="CN80120"	"WAVEGUIDE SWITCH"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Apr-08	01-Feb-09	78463.85	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 04:04 PM	

+="CN80132"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	20-Nov-07	30-Jun-08	78941.50	=""	="PERSONNEL PLACEMENT CONSULTANCIES"	12-May-08 04:05 PM	

+="CN80144"	"MATERIALS & LABOUR FOR SPRUNG TENT CONSTRUCTION - PARTIAL PAYMENT"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	14-Jan-08	29-Feb-08	76292.84	=""	="MR FAEIQ FARHAN HASAN"	12-May-08 04:05 PM	

+="CN80165"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	68650.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:07 PM	

+="CN80196"	"QANTAS CHARGES FOR DS-CNNSW PERSONNEL NOV/DEC07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	73739.23	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:10 PM	

+="CN80207"	"QANTAS ACC"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	28-Feb-08	77750.13	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:11 PM	

+="CN80213"	"Remediated Schedule Review"	="Defence Materiel Organisation"	12-May-08	="Management support services"	05-Feb-08	14-Mar-08	62062.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:11 PM	

+="CN80219"	"DTS 69 Provision of TADRS Technical Support"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	05-Feb-08	15-Jun-08	75707.51	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:11 PM	

+="CN80247"	"JEFM Project Contractor Support"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-08	68092.81	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:13 PM	

+="CN80256"	"Scoping Study Serial Item / Configuration Tracking"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	29-Feb-08	64640.40	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 04:14 PM	

+="CN80260"	"QANTAS INVOICE NOV.2007 - RHQ 1 CDO REGIMENT"	="Department of Defence"	12-May-08	="Aircraft passenger restraints"	30-Nov-07	30-Jun-08	61097.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:15 PM	

+="CN80271"	"Repair of ADSCC Ka HPA 7309"	="Department of Defence"	12-May-08	="Professional engineering services"	10-Apr-08	30-Jun-08	73382.33	=""	="OPTUS BILLING SERVICES PTY LTD"	12-May-08 04:16 PM	

+="CN80293"	"ROAD CHTR OP SLIPPER"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	21-Nov-07	03-Dec-07	70000.00	=""	="NORTHLINE PTY LTD"	12-May-08 04:17 PM	

+="CN80283"	"NSN 4670-66-131-8241, Canopy Personnel Parachute"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	29-Apr-07	21-Sep-08	79031.37	=""	="Milspec Services Pty Ltd"	12-May-08 04:18 PM	

+="CN80298-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	12-May-08	="Satellites"	12-Feb-08	28-Feb-10	68048.36	=""	="STRATOS"	12-May-08 04:18 PM	

+="CN80323"	"Refurbishment of Enhanced Combat Body Armour Various sizes"	="Department of Defence"	12-May-08	="Personal safety and protection"	14-Apr-08	16-May-08	71555.72	=""	="HELLWEG INTERNATIONAL"	12-May-08 04:21 PM	

+="CN80335"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	20-Mar-08	75000.00	=""	="KOBOLD SERVICE CANBERRA"	12-May-08 04:21 PM	

+="CN80336"	"This Purchase Order is raised to procure items for CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	71321.35	=""	="AVIATION SAFETY & DEFENCE"	12-May-08 04:21 PM	

+="CN80412"	"Project Support"	="Department of Defence"	12-May-08	="Domestic pet products"	16-Nov-07	30-Jun-08	68206.46	=""	="INFOFOCUS AUSTRALIA"	12-May-08 04:25 PM	

+="CN80437"	"Notebook computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	79331.64	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 04:27 PM	

+="CN80444"	"EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	61526.10	=""	="MEASUREMENT INNOVATION PTY LTD"	12-May-08 04:27 PM	

+="CN80448"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	66939.07	=""	="MEASUREMENT INNOVATION PTY LTD"	12-May-08 04:27 PM	

+="CN80499"	"Beval Gear"	="Department of Defence"	12-May-08	="Aircraft equipment"	11-Apr-08	30-Apr-08	77593.07	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:31 PM	

+="CN80510"	"Develop Explosive Ordnance Certification Plan (EOCP) for ESSM on FFG Class ships"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	60555.00	=""	="NOVA DEFENCE"	12-May-08 04:32 PM	

+="CN80531"	"Generator replacement for MMTR"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	31-May-08	71577.00	=""	="GENERATOR POWER"	12-May-08 04:33 PM	

+="CN80533"	"Project Insurance"	="Department of Foreign Affairs and Trade"	12-May-08	="Insurance and retirement services"	01-Aug-07	29-Jan-08	77993.01	=""	="Comcover"	12-May-08 04:33 PM	

+="CN80534"	"VIDEO CONFERENCE SYSTEM TO FACILITATE MEETINGS BETWEEN ASPSPO AND ADL BASED COMPANIES."	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	07-Feb-08	30-Apr-08	67372.16	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 04:33 PM	

+="CN80536"	"Training"	="Department of Defence"	12-May-08	="Software"	10-Jan-08	30-Jun-08	70000.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 04:33 PM	

+="CN80537"	"DIVEX DEF (AUST) 5000 DRAWING PACKAAGE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	71500.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:33 PM	

+="CN80542"	"Hotel Hire - APEC 2007"	="Department of Foreign Affairs and Trade"	12-May-08	="Hotels and lodging and meeting facilities"	03-Aug-07	29-Aug-07	61840.00	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	12-May-08 04:34 PM	

+="CN80557"	"Property Expenses"	="Department of Foreign Affairs and Trade"	12-May-08	="Real estate services"	06-Aug-07	06-Aug-07	73748.68	=""	="Knight Frank (Vic) Pty Ltd"	12-May-08 04:35 PM	

+="CN80560"	"Lease of 2  vehicles, plus petrol/tyre costs for PPBSPO"	="Department of Defence"	12-May-08	="Motor vehicles"	21-Dec-07	30-Jun-09	68259.68	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80600"	"GFM"	="Department of Defence"	12-May-08	="Ammunition"	21-Dec-07	30-Jan-08	60120.23	=""	="PENTARCH PTY LTD"	12-May-08 04:37 PM	

+="CN80624"	"Office Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Computer Equipment and Accessories"	03-Aug-07	31-Aug-07	75185.00	=""	="Commander Integrated Networks Pty L"	12-May-08 04:38 PM	

+="CN80640"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	21-Dec-07	65719.99	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:39 PM	

+="CN80648"	"Revalidation of the BHIE CMDS as result of Part Number Changes"	="Department of Defence"	12-May-08	="Aircraft"	04-Apr-08	30-Jun-08	61597.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:39 PM	

+="CN80653"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Decontamination aids and safety cleaning equipment"	09-Jan-08	30-Apr-08	72079.70	=""	="REDI-BRITE INDUSTRIES PTY LTD"	12-May-08 04:40 PM	

+="CN80656"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Domestic kitchenware"	09-Jan-08	31-Oct-08	67035.67	=""	="CMI OPERATIONS PTY LTD"	12-May-08 04:40 PM	

+="CN80657"	"WLR upgrade price variation claims"	="Department of Defence"	12-May-08	="Location and navigation systems and components"	21-Dec-07	30-Jun-10	64268.65	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:40 PM	

+="CN80699"	"EEH Desk Officer Support to GWEO DEOH"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	26-Feb-08	20-Jun-08	70510.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:42 PM	

+="CN80702"	"AEKMS INSTALLATION"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Apr-08	30-Jun-08	60451.60	=""	="EML AUSTRALIA"	12-May-08 04:42 PM	

+="CN80703"	"TD-322/4C50OR Orange"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	26-Feb-08	01-Dec-22	73700.00	=""	="TRIANGLE CABLES PTY LTD"	12-May-08 04:42 PM	

+="CN80709"	"Use of Exisitng ASP Contract. Gyro Compass Repeat"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	20-Dec-07	29-Apr-08	63056.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:43 PM	

+="CN80724"	"ELECTRICAL SPARES AND EQUIPMENT TO SUPPORT THE PODS."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	30-Jan-08	30-Apr-08	78245.30	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:44 PM	

+="CN80725-A1"	" 1078-3 TV CABINET 2LZ4 "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	27-Jul-10	73558.36	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:44 PM	

+="CN80788"	"Tec Rec Phase 2 - Cart 5.125" Chaff Mk214-1 (AV)(S"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	31-Jan-08	26-May-08	63449.21	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:47 PM	

+="CN80792"	"Tech Rec Phase 2 signal Illum M125A1 (Green)M126A1 (White)"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	31-Jan-08	25-May-08	60726.66	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:47 PM	

+="CN80794"	"JP2077 Schedule Review"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	02-May-08	61578.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:47 PM	

+="CN80799"	"BLANKET ORDER RAISED TO ENGAGE AN EXTERNAL SERVICE TO REVIEW JFLA PROCUREMENT PROCESSES"	="Defence Materiel Organisation"	12-May-08	="Fuels"	22-Feb-08	30-May-08	76000.00	=""	="AVIATION FUEL ASSOCIATES (AUST) P/L"	12-May-08 04:47 PM	

+="CN80804"	"FLYERS HELMET (SMALL & MEDIUM)"	="Department of Defence"	12-May-08	="Face and head protection"	31-Jan-08	20-Oct-08	78852.00	=""	="TRANSAERO INC."	12-May-08 04:48 PM	

+="CN80844"	"SG 2  Baseline Developer"	="Department of Defence"	12-May-08	="Manufacturing support services"	29-Jan-08	01-Apr-09	65890.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:49 PM	

+="CN80881"	"BSC -C Design Consultancy"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Dec-07	28-Mar-08	64062.90	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:51 PM	

+="CN80908"	"Use of Exisitng ASP Contract. Main Engine Injector Spares"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	29-Jan-08	31-Mar-08	62235.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:52 PM	

+="CN80913"	"Provision of guidance and assistance in the use, customisation and administration of Infra Enterpri"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Mar-08	77000.00	=""	="INFRA CORPORATION PTY LTD"	12-May-08 04:53 PM	

+="CN80941"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	30-Aug-08	78513.48	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:54 PM	

+="CN80950"	"Technical and Engineering Support EMU"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Feb-08	30-Jun-08	67485.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:54 PM	

+="CN80969"	"REQUIREMENTS ANALYSIS FOR TOB  AC HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	25-Feb-08	62920.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80972"	"FACILITATE COMPLEX PROCUREMENT COURSE"	="Department of Defence"	12-May-08	="Education and Training Services"	08-Apr-08	31-Jul-08	61229.10	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 04:56 PM	

+="CN81028"	"Test Equipment"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	01-Oct-08	77831.36	=""	="ROSEBANK ENGINEERING"	12-May-08 04:59 PM	

+="CN81029"	"4549.03 350 HOURS LABOUR OF TECH & ENGINEERING"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	28-May-08	62700.00	=""	="THALES AUSTRALIA"	12-May-08 04:59 PM	

+="CN81033"	"TASK 4142-4 LOE COMBAT SNC"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	30-Jun-08	76158.46	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:00 PM	

+="CN81059"	"MANUFACTURE NEW POKER GAUGES"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Apr-08	23-May-08	68510.31	=""	="MADCO"	12-May-08 05:01 PM	

+="CN81065"	"PROCUREMENT OF QUANTITY 2 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	22-May-08	70808.28	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:01 PM	

+="CN81073"	"Ford Ranger PK 4 x 4 Ranger Dual Cab Pick Up (UM4) Qty 3"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	08-Aug-08	74202.02	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81079"	"Coordinate Measurement Machine"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	08-Apr-08	09-May-08	79990.00	=""	="PORTABLE CMM PTY LTD"	12-May-08 05:02 PM	

+="CN81134"	"Scope and Introduce EMERALD to GTESPO"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Feb-08	30-Jun-08	67778.70	=""	="JACOBS AUSTRALIA"	12-May-08 05:04 PM	

+="CN81164"	"Propellant Stability Evaluation of FMS 25mm HEI-T"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	19-Feb-08	25-May-08	62194.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:05 PM	

+="CN81189"	"MOTOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	01-Oct-08	78902.09	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 05:06 PM	

+="CN81198"	"ALR - 2002 DETECTOR DEVELOPMENT AND DELIVERY"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	31-Mar-08	66000.00	=""	="MICREO LIMITED"	12-May-08 05:07 PM	

+="CN81229"	"MMM Mobility Device Project"	="Department of Defence"	12-May-08	="Management support services"	19-Dec-07	19-Feb-08	69360.01	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81246"	"helmet parts"	="Department of Defence"	12-May-08	="Clothing"	24-Jan-08	27-Jun-08	67137.21	=""	="TRANSAERO INC."	12-May-08 05:09 PM	

+="CN81257"	"Dell Servers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	60624.19	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:09 PM	

+="CN81262"	"LEGAL ADVICE."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	23-Jan-08	30-Jun-08	78650.00	=""	="ANNE CAINE LEGAL"	12-May-08 05:10 PM	

+="CN81299"	"GWEO Engineering Induction Training"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-Apr-08	70524.92	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81315"	"CHINOOK MOUNTS"	="Department of Defence"	12-May-08	="Aircraft"	22-Jan-08	21-Mar-08	62189.69	=""	="DILLON AERO INC"	12-May-08 05:12 PM	

+="CN81334"	"Development of the Pharmacy Stock Control"	="Department of Defence"	12-May-08	="Computer services"	27-Nov-07	31-Dec-07	68607.00	=""	="OCEAN SOFTWARE PTY LTD"	12-May-08 05:13 PM	

+="CN81346"	"PELTOR PTT ADAPTOR"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	27-Nov-07	04-Jan-08	61875.00	=""	="NIOA TRADING PTY LTD"	12-May-08 05:14 PM	

+="CN81368"	"Renewal of Annual Restricted licenses"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	31-Mar-08	72184.72	=""	="TECOLOTE RESEARCH INC"	12-May-08 05:15 PM	

+="CN81380"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	22-Feb-08	30-May-08	71609.40	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:16 PM	

+="CN81441"	"ILS MANAGEMENT SUPPORT FOR EWSP PROJECT"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	27-Jun-08	62365.60	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:19 PM	

+="CN81525"	"Two portable gantry cranes, include operational Tr manual, operator Maintenance and saftey Manual an"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	30-Jun-08	62832.00	=""	="SUPERCRANE ENGINEERED LIFTING TECH"	12-May-08 05:25 PM	

+="CN81534"	"Probity advisor"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Apr-08	30-Jun-09	66000.00	=""	="KPMG AUSTRALIA"	12-May-08 05:26 PM	

+="CN81554"	"MWRO Hardware Upgrade"	="Defence Materiel Organisation"	12-May-08	="Hardware"	21-Apr-08	30-Apr-08	73172.55	=""	="TILDA COMMUNICATIONS"	12-May-08 05:27 PM	

+="CN81561"	"HOUSING, FIRING MECHANISM"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	14-Dec-07	12-Dec-08	75452.59	=""	="BOFORS AB"	12-May-08 05:28 PM	

+="CN81574"	"AEWC RADAR STUDY"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	31-Mar-08	66000.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 05:29 PM	

+="CN81578"	"PURCHASE ORDER FOR THE REPAIR AND OVERHAUL OF QTY REMOVAL MACHINES"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	05-Mar-08	62101.24	=""	="ROSEBANK ENGINEERING PTY LTD"	12-May-08 05:29 PM	

+="CN81597"	"BEARING BALL"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	19-Apr-08	02-Oct-08	63370.30	=""	="DERCO AEROSPACE INC."	12-May-08 05:31 PM	

+="CN81616"	"POC: MARK HAMBROOK CONTACT: 02 626 50640"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	03-Jan-08	74038.54	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 05:33 PM	

+="CN81627"	"CX1551"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	12-Mar-08	70840.32	=""	="E2V TECHNOLOGIES (UK) LIMITED"	12-May-08 05:34 PM	

+="CN81640"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	17-Dec-07	06-Jun-08	60500.02	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 05:36 PM	

+="CN81680"	"MSD Assurance Boards - Service Provider"	="Department of Defence"	12-May-08	="Public administration and finance services"	14-Dec-07	30-Jun-09	71216.00	=""	="CLARK CORPORATE CONSULTING PTY LTD"	12-May-08 05:41 PM	

+="CN81684"	"HP MCA SERVERS  PROLIANT SERVER -DL 380 DEN 5"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	73326.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 05:42 PM	

+="CN81700"	"BAE & Thales participation in tele conf. call base Integrated Product Team meetings"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Dec-07	30-Jan-08	72784.18	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:44 PM	

+="CN81703"	"REPLACMENT TAILGATE LOADER FOR TRUCK PLATFORM ELEVATING"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Dec-07	31-Mar-08	72798.00	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:44 PM	

+="CN81747"	"PROCUREMENT NUMBERPLATES"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	30-Jun-08	60000.00	=""	="LICENSYS HOLDINGS PTY LTD"	12-May-08 05:50 PM	

+="CN81769"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	01-Mar-08	01-Mar-08	79717.00	=""	="Ernst & Young"	12-May-08 07:33 PM	

+="CN81772"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Marketing and distribution"	18-Feb-08	18-Feb-08	72712.14	=""	="HMA Blaze"	12-May-08 07:34 PM	

+="CN81777"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Apr-08	17-Apr-08	78768.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81785"	"IT consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	14-Mar-08	14-Mar-08	63000.00	=""	="NetMap Analytics Pty Ltd"	12-May-08 07:35 PM 

--- /dev/null
+++ b/admin/partialdata/10May2008to12May2008val80000to150000.xls
@@ -1,1 +1,651 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN75491"	"Provision of service to Support MEP as per DTR-A V oucher 0708 61 linked to DMO  PO 4500621176"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	30-Jun-08	80000.00	=""	="KPMG"	10-May-08 08:33 AM	

+="CN75493"	"Computer Software"	="Department of Defence"	10-May-08	="Software"	13-Feb-08	29-Feb-08	93825.60	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 08:33 AM	

+="CN75499"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	116600.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:33 AM	

+="CN75500"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	132000.00	=""	="HAYES SPECIALIST RECRUITMENT AUSTRA"	10-May-08 08:33 AM	

+="CN75515"	"AIRFIELD LIGHTING SERVICES AND REVIEW OF PROJECT D"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	88000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	10-May-08 08:35 AM	

+="CN75516"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	28-Nov-08	90200.00	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	10-May-08 08:35 AM	

+="CN75537"	"provision of contractors"	="Department of Defence"	10-May-08	="Office supplies"	05-Feb-08	30-Jun-08	83952.00	=""	="ICON RECRUITMENT"	10-May-08 08:37 AM	

+="CN75569"	"TSS Contract Support to Migration of the Sonar Concept Demonstrators to GOANNA Architecture"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	06-Feb-08	30-Jun-08	132000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 08:40 AM	

+="CN75594"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	04-Feb-08	01-May-08	110000.00	=""	="UNIVERSITY OF SYDNEY"	10-May-08 08:43 AM	

+="CN75616"	"S5180, WR's 300077030, 300077033, 300077035, 30007 investigations on various sites on inground"	="Department of Defence"	10-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-08	91430.63	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 08:45 AM	

+="CN75624"	"ABM-TDM SYSTEMS ENGINEER"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	10-Jun-08	117277.01	=""	="C-E SOLUTIONS"	10-May-08 08:46 AM	

+="CN75625"	"BTT TEAM LEAD"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	05-Feb-08	06-Jun-08	119056.06	=""	="NOVA AEROSPACE"	10-May-08 08:46 AM	

+="CN75628"	"CONTACT CASPER MCDERMOTT 08 89354 622"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Feb-08	30-Jun-08	143000.00	=""	="NORTHERN LAND COUNCIL"	10-May-08 08:46 AM	

+="CN75637"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	08-Feb-08	97968.75	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	10-May-08 08:47 AM	

+="CN75661"	"RESEARCH AGREEMENT TITLED :"DEVELOPMENT OF TECHNOLOGY FOR PRCISIO ATOM""	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Feb-08	02-May-08	88000.00	=""	="DEPARTMENT OF PHYSICS"	10-May-08 08:49 AM	

+="CN75667"	"MEDALS"	="Department of Defence"	10-May-08	="Alloys"	08-Feb-08	15-Apr-08	95700.93	=""	="THE ROYAL MINT"	10-May-08 08:50 AM	

+="CN75669"	"CENTRE OF EXPERTISE IN PHOTONICS TASK AGREEMENT PHONE: 8259 7012"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	08-Feb-08	30-Jun-08	132000.00	=""	="THE UNIVERSITY OF ADELAIDE"	10-May-08 08:50 AM	

+="CN75671"	"Developing Concepts for Integrated ISR"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	08-Feb-08	30-Dec-08	80080.00	=""	="VCORP CONSULTING PTY LTD"	10-May-08 08:50 AM	

+="CN75677"	"Senior Health Adviser Services"	="Department of Defence"	10-May-08	="Healthcare Services"	08-Feb-08	30-Jun-08	97743.70	=""	="DR ROSLYN BLAKLEY"	10-May-08 08:51 AM	

+="CN75681"	"NQ2081 - Area E Comms Cable, Room and Cabinet Audi"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-08	30-Jun-08	81510.00	=""	="SKM"	10-May-08 08:51 AM	

+="CN75684"	"RAAF BASE AMBERLEY HERITAGE MANAGMENT PLAN."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	07-Feb-08	30-Jun-08	93164.50	=""	="WOODHEAD INTERNATIONAL"	10-May-08 08:52 AM	

+="CN75687"	"Provision of Contract Development Support for 81WG"	="Department of Defence"	10-May-08	="Manufacturing support services"	07-Feb-08	30-Jun-08	112100.00	=""	="BALL SERVICES SOLUTIONS"	10-May-08 08:52 AM	

+="CN75694"	"NQ2081 - B SQN Hammet Way Pit and Conduit Works La"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	30-Jun-08	147312.00	=""	="EMAK COMMUNICATIONS"	10-May-08 08:53 AM	

+="CN75695"	"Desktop Computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	06-Feb-08	15-Feb-08	105620.90	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 08:53 AM	

+="CN75718"	"HQJOC PROJECT-HEWLETT PACKARD AUSTRALIA PTY LTD"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Feb-08	30-Jun-08	115835.06	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 08:55 AM	

+="CN75723"	"PROVISION OF DENTAL ASSISTANT SERVICES - HSF EDN 0"	="Department of Defence"	10-May-08	="Healthcare Services"	07-Feb-08	01-Jan-09	129000.30	=""	="NASANSB"	10-May-08 08:55 AM	

+="CN75734"	"DISPOSAL OF FORTUNA,BENDIGO,VICTORIA-PROJECT MANAG ADMINISTRATOR."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-09	137995.00	=""	="FORESITE PTY LTD"	10-May-08 08:56 AM	

+="CN75758"	"EXTERNAL REPAINT BLDG E067"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	80639.59	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 08:59 AM	

+="CN75763"	"Road cartage and consolidation of cargo OP OUTREACH"	="Department of Defence"	10-May-08	="Transportation and Storage and Mail Services"	25-Feb-08	01-Mar-08	81396.70	=""	="PDL TOLL"	10-May-08 08:59 AM	

+="CN75768"	"Provision of storage facilities for Edinburgh and Fishermans Bend."	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Nov-08	113995.20	=""	="EMC GLOBAL HOLDINGS COMPANY"	10-May-08 09:00 AM	

+="CN75771"	"THERMOMETRIC 3208-3 MULTICALORIMETER WITH 12 CHANEL INTERFACE MODULE"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Feb-08	30-May-08	100402.50	=""	="WATERS AUSTRALIA PTY LTD"	10-May-08 09:00 AM	

+="CN75777"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Jun-08	140970.51	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	10-May-08 09:01 AM	

+="CN75781"	"SQ REG PROJECT DEVELOPMENT - CONDITION REPORT RAAF BASE AMBERLEY ROADS"	="Department of Defence"	10-May-08	="Roads and landscape"	25-Feb-08	30-Jun-08	87725.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:01 AM	

+="CN75795"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Apr-08	143000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	10-May-08 09:02 AM	

+="CN75807"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	30-Jun-08	140000.00	=""	="DIMENSION DATA LEARNING"	10-May-08 09:04 AM	

+="CN75815"	"ASI Engineering Services"	="Department of Defence"	10-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-08	86612.33	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 09:04 AM	

+="CN75846"	"AIR CHTR OP ASTUTE AFP INSERTION"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	108900.00	=""	="PDL TOLL"	10-May-08 09:07 AM	

+="CN75848"	"AIR CHTR ASTUTE TLAG 6"	="Department of Defence"	10-May-08	="Aircraft"	28-Feb-08	29-Feb-08	115230.00	=""	="ALLTRANS INTERNATIONAL"	10-May-08 09:08 AM	

+="CN75852"	"Computer Equip"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	06-Mar-08	91068.60	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 09:08 AM	

+="CN75855"	"WATER CONSERVATION MEASURES - BRISBANE WATER TANKS"	="Department of Defence"	10-May-08	="Environmental management"	28-Feb-08	30-Jun-08	105127.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 09:08 AM	

+="CN75857"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	118438.01	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 09:08 AM	

+="CN75859"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	145990.41	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 09:09 AM	

+="CN75874"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	29-Feb-08	95983.68	=""	="ALPHAWEST PTY LTD"	10-May-08 09:10 AM	

+="CN75875"	"LOED SERVERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	28-Feb-08	28-Mar-08	119572.20	=""	="HEWLETT PACKARD AUSTRALIA LTD"	10-May-08 09:10 AM	

+="CN75895"	"FAIRBAIRN-MAJURA LEASES-BLOCK 102/146 (AREA H) DEM"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	139355.95	=""	="SPOTLESS P & F PTY LTD"	10-May-08 09:12 AM	

+="CN75911"	"PROP STUDIES-STOCKTON RIFLE RANGE-PROJECT MANAGER."	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-09	105728.70	=""	="URS AUSTRALIA PTY LTD"	10-May-08 09:14 AM	

+="CN75916"	"FCI Targets Contract Development Support for ACG"	="Department of Defence"	10-May-08	="Military fixed wing aircraft"	27-Feb-08	30-Jun-09	94061.00	=""	="NOVA AEROSPACE"	10-May-08 09:14 AM	

+="CN75919"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	27-Feb-08	114520.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	10-May-08 09:15 AM	

+="CN75932"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	143880.00	=""	="BCT GROUP"	10-May-08 09:16 AM	

+="CN75945"	"Software procurement"	="Department of Defence"	10-May-08	="Software"	19-Feb-08	30-Jun-09	96764.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 09:17 AM	

+="CN75946"	"NT1326 Repair Mt Bundy AFV Field Training Area"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	19-Feb-08	30-Jun-08	106554.00	=""	="NORBUILT PTY LTD"	10-May-08 09:17 AM	

+="CN75949"	"HP Notebooks"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	19-Feb-08	10-Mar-08	92217.24	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 09:17 AM	

+="CN76004"	"Computer PCI Combo card"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	21-Dec-07	97000.20	=""	="SCITECH PTY LTD"	10-May-08 09:59 AM	

+="CN76008"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	13-Dec-07	87463.21	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 09:59 AM	

+="CN76018"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	82500.00	=""	="CAZIQUE SOLUTIONS PTY LTD"	10-May-08 09:59 AM	

+="CN76028"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Jun-08	132000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	10-May-08 10:00 AM	

+="CN76036"	"VIDEO AND AUDIO SYSTEM"	="Department of Defence"	10-May-08	="Audio and visual presentation and composing equipment"	21-Nov-07	21-Nov-07	90893.71	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:00 AM	

+="CN76052"	"ANNUAL MAINTENANCE ON SOFTWARE - CANBERRA BATTLELA B, MELB DEVELOPMENT LAB, ADELAIDE NET WARRIOR"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	21-Nov-07	21-Nov-07	134090.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	10-May-08 10:01 AM	

+="CN76053"	"Contract to support CFD"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	19-Nov-07	30-Jun-08	111842.50	=""	="ADVANCED VTOL TECHNOLOGIES"	10-May-08 10:01 AM	

+="CN76062"	"Site Integration"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	03-Jan-08	99307.44	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 10:02 AM	

+="CN76072"	"Desk top computers"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	21-Dec-07	82551.15	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 10:02 AM	

+="CN76075"	"Provision of profession support for BORIS BASIS"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	03-Jan-08	30-Jun-08	96228.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:03 AM	

+="CN76083"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Apr-08	80850.00	=""	="SME GATEWAY LIMITED"	10-May-08 10:03 AM	

+="CN76093"	"PROJECT MANAGER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	04-Mar-08	31-Oct-08	143000.00	=""	="CODARRA ADVANCED SYSTEMS"	10-May-08 10:04 AM	

+="CN76098"	"HERITAGE-JEZZINE BARRACKS HERITAGE/INFRASTRUCTURE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-09	93702.62	=""	="GODDEN MACKAY LOGAN PTY LTD"	10-May-08 10:04 AM	

+="CN76106"	"Video Teleconferencing Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	21-Nov-07	31-Dec-07	109749.05	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	10-May-08 10:04 AM	

+="CN76113"	"CONSULTANCY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	81020.50	=""	="GHD PTY LTD"	10-May-08 10:05 AM	

+="CN76124"	"UNDER THE BRADSHAW INDIGENOUS LAND USE AGREEMENT"	="Department of Defence"	10-May-08	="Business administration services"	26-Nov-07	26-Nov-07	136092.00	=""	="NORTHERN LAND COUNCIL"	10-May-08 10:05 AM	

+="CN76145"	"Provide Support to the SAP R/3 (ROMAN) BASIS"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	117304.00	="ESD SAP 01/2005"	="SOUTHERN CROSS COMPUTING PTY LTD"	10-May-08 10:06 AM	

+="CN76153"	"HEALTH SERVICE - 1HSB"	="Department of Defence"	10-May-08	="Medical facility products"	05-May-08	30-Jun-08	100438.80	=""	="PARKER, STEVEN WAYNE"	10-May-08 10:07 AM	

+="CN76164"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	125176.70	=""	="SMS MANAGEMENT & TECHNOLOGY"	10-May-08 10:07 AM	

+="CN76175"	"CHAIRS"	="Department of Defence"	10-May-08	="Office Equipment and Accessories and Supplies"	27-Nov-07	30-Jun-08	109219.00	=""	="STURDY SEATING SYSTEMS"	10-May-08 10:08 AM	

+="CN76186"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	28-Apr-08	116678.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 10:09 AM	

+="CN76203"	"3D MICE"	="Department of Defence"	10-May-08	="Paper Materials and Products"	27-Nov-07	11-Dec-07	88888.54	=""	="IMMERSION CORPORATION"	10-May-08 10:10 AM	

+="CN76220"	"R&D Contract Support for CMD&V Project"	="Department of Defence"	10-May-08	="Professional engineering services"	18-Sep-06	30-Jun-08	107442.50	=""	="IGATECH CONSULTING PTY LTD"	10-May-08 10:10 AM	

+="CN76230"	"PROOF & EXPERIMENTAL ESTABLISHMENT GRAYTOWN REFURBISHMENT"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Apr-08	30-Jun-09	136208.60	=""	="COLIN JOSS & CO PTY LTD"	10-May-08 10:11 AM	

+="CN76263"	"DS-NQ-TS FURNITURE STORE 232-07/08"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	23-Nov-07	30-Jun-08	86321.40	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	10-May-08 10:13 AM	

+="CN76269"	"contract coding for Air9000 Project"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	29-Jun-08	80437.50	=""	="PROGRESSIVE PEOPLE(AUSTRALIA) PTY L"	10-May-08 10:13 AM	

+="CN76271"	"GRAPHICS"	="Department of Defence"	10-May-08	="Editorial and Design and Graphic and Fine Art Services"	26-Nov-07	30-Jun-09	88000.00	=""	="FAIRHURST GRAPHICS"	10-May-08 10:13 AM	

+="CN76274"	"CTD"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	11-Mar-08	01-Sep-08	104719.45	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	10-May-08 10:13 AM	

+="CN76285"	"CONCRETE BARRIERS"	="Department of Defence"	10-May-08	="Concrete and cement and plaster"	26-Nov-07	31-Jan-08	141046.40	=""	="HANSON PRECAST"	10-May-08 10:14 AM	

+="CN76298"	"Construct a storage facility and workshop for ICT at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	110000.00	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 10:15 AM	

+="CN76307"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	01-May-09	138563.37	=""	="URBIS PTY LTD"	10-May-08 10:15 AM	

+="CN76315"	"POC: JON VAHLBERG CONTACT: 02 626 50751"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	26-Nov-07	14-Dec-07	141900.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 10:16 AM	

+="CN76318"	"ELECTRICITY"	="Department of Defence"	10-May-08	="Utilities"	02-May-08	30-Sep-08	110000.00	=""	="ACTEWAGL - WATER & ELECTRICITY"	10-May-08 10:16 AM	

+="CN76335"	"QANTAS BILL NOV 07"	="Department of Defence"	10-May-08	="Recreational aircraft"	10-Jan-08	11-Jan-08	93018.05	=""	="QANTAS"	10-May-08 10:17 AM	

+="CN76339"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	10-May-08	="Aircraft"	17-Dec-07	16-Jan-08	96976.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:17 AM	

+="CN76341"	"MSL TRAVEL BILLS"	="Department of Defence"	10-May-08	="Aircraft"	14-Jan-08	14-Jan-08	82691.53	=""	="MSL TRAVEL DN BHD"	10-May-08 10:17 AM	

+="CN76351"	"RMIT HECS Payment"	="Department of Defence"	10-May-08	="Educational institutions"	07-Sep-07	07-Jun-08	131968.20	=""	="RMIT UNIVERSITY"	10-May-08 10:18 AM	

+="CN76356"	"FACOPS"	="Department of Defence"	10-May-08	="Temporary personnel services"	12-Nov-07	30-Jun-08	137437.08	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:18 AM	

+="CN76363"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	09-Jan-08	31-Dec-08	145918.07	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:18 AM	

+="CN76400"	"SUPPLY OF TIMBER FOR CARPENTER WKSP AT RAAFWLM"	="Department of Defence"	10-May-08	="Non edible plant and forestry products"	10-Mar-08	30-Jun-08	99000.00	=""	="HUDSON BUILDING SUPPLIES"	10-May-08 10:21 AM	

+="CN76414"	"SUPPLY OF TECHNICAL GASES AND HIRE OF CYCLINDERS FOR RAAF BASE WILLIAMTOWN"	="Department of Defence"	10-May-08	="Elements and gases"	24-Apr-08	30-Jun-08	98911.36	=""	="BOC LIMITED"	10-May-08 10:21 AM	

+="CN76441"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	31-Aug-08	96492.00	=""	="ROSS"	10-May-08 10:23 AM	

+="CN76470"	"AWHC Division 1 Nursing Hours"	="Department of Defence"	10-May-08	="Medical facility products"	12-Dec-07	31-Dec-07	138572.45	=""	="ASPEN MEDICAL PTY LTD"	10-May-08 10:25 AM	

+="CN76483"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	27-Dec-07	07-Jan-08	132156.21	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:25 AM	

+="CN76532"	"CONSULTANCY SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Nov-07	31-Mar-08	115797.00	=""	="INTOTALITY PTY LTD"	10-May-08 10:28 AM	

+="CN76546"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	22-Jan-08	31-Dec-08	92576.81	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:29 AM	

+="CN76554"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	92442.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:30 AM	

+="CN76558"	"RAAF 4TH QUARTER CONTRIBUTION TO RMAF BUTTERWORTH FOR BASE SERVICES"	="Department of Defence"	10-May-08	="Manufacturing support services"	30-Jan-08	30-Jan-08	149427.03	=""	="KETUA AKAUNTAN KEMMENTERIAN"	10-May-08 10:30 AM	

+="CN76581"	"02-24435630NOV07 LINE 3868 - 3990"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	115175.31	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76583"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	10-May-08	="Recreational aircraft"	01-Feb-08	31-Dec-08	123458.00	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76585"	"AIRLINE TICKETS"	="Department of Defence"	10-May-08	="Aircraft"	31-Dec-07	31-Dec-07	108696.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:32 AM	

+="CN76592"	"TAS4076 STA Fire Management"	="Department of Defence"	10-May-08	="Environmental management"	27-Nov-07	30-Jun-08	110000.00	=""	="RESOLVE FM"	10-May-08 10:32 AM	

+="CN76593"	"Supply and installation of Intrusion Alarm System"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	27-Nov-07	27-Nov-08	105465.98	=""	="PROSEC SECURITY & COMMUNICATIONS LT"	10-May-08 10:32 AM	

+="CN76597"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	06-Feb-08	07-Feb-08	82505.45	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:32 AM	

+="CN76601"	"PAYMENT TO OFFICAL BANK ACCOUNT PALAU"	="Department of Defence"	10-May-08	="Project management"	04-Feb-08	30-Jun-10	83230.66	=""	="MARITIME SURVEILLANCE"	10-May-08 10:33 AM	

+="CN76607"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	05-Feb-08	115000.00	=""	="MINTER ELLISON"	10-May-08 10:33 AM	

+="CN76634"	"Consultancy Services"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	27-Nov-07	30-Jun-08	94325.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	10-May-08 10:35 AM	

+="CN76640"	"BMTA Fire Management 2008"	="Department of Defence"	10-May-08	="Environmental management"	27-Nov-07	30-Jun-08	110000.00	=""	="RESOLVE FM"	10-May-08 10:35 AM	

+="CN76646"	"HMAS ALBATROSS:REDEVELOPMENT STAGE1 AND 2 FDPT"	="Department of Defence"	10-May-08	="Heavy construction machinery and equipment"	28-Nov-07	30-Jun-09	101200.00	=""	="CARSON GROUP PTY LTD"	10-May-08 10:36 AM	

+="CN76675-A1"	"GST for satellite services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	10-Jan-08	27-Feb-08	110884.77	=""	="STRATOS"	10-May-08 10:37 AM	

+="CN76676"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	28-Nov-07	30-Jun-08	107463.44	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 10:37 AM	

+="CN76692"	"ASRAAM SOFTWARE SUPPORT CAPABILITY (AASSC) SIMULATION CAPABILITY SOFTWARE ENGINEER"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	28-Nov-07	30-Jun-08	88000.00	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	10-May-08 10:38 AM	

+="CN76697"	"SECDET VEHICLE LEASE FOR DECEMBER 2007"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Dec-07	29-Jan-08	81172.08	=""	="SAUDI NAVAL SUPPORT COMPANY"	10-May-08 10:38 AM	

+="CN76704"	"SOFTWARE"	="Department of Defence"	10-May-08	="Software"	03-Dec-07	21-Dec-07	104491.25	=""	="KAZ GROUP PTY LTD"	10-May-08 10:39 AM	

+="CN76705"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	23-Jan-08	24-Jan-08	125000.00	=""	="MINTER ELLISON"	10-May-08 10:39 AM	

+="CN76714"	"PAYMENT OF FUNDS"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	03-Dec-07	03-Dec-07	135916.00	=""	="AFS INTERCULTURAL PROGRAMS"	10-May-08 10:39 AM	

+="CN76715"	"QANTAS BILL HQJOC  OCT NOV 2007"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	30-Jan-08	115849.51	=""	="QANTAS"	10-May-08 10:39 AM	

+="CN76722"	"SYSTEM, PHAROSFX (AUST/NZ), 488NM/635NM EXTERNAL L ASER, FX, PDQ 1-USER NETWORK LICENSE"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	03-Dec-07	31-Jan-08	124806.00	=""	="BIO-RAD LABORATORIES PTY LTD"	10-May-08 10:40 AM	

+="CN76734"	"FLIGHTS FOR MEMBERS AND FAMILY"	="Department of Defence"	10-May-08	="Recreational aircraft"	14-Nov-07	20-Dec-08	124119.46	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:40 AM	

+="CN76749"	"S5180, WR 300071523, 300071524, 300071525, 3000715 300071354. DS-SC Regional Physcial Infrastructure"	="Department of Defence"	10-May-08	="Fabricated pipe assemblies"	04-Dec-07	30-Jun-08	92688.75	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:41 AM	

+="CN76764"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	15-Nov-07	30-Nov-07	130000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76766"	"LEGAL SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	19-Nov-07	30-Nov-07	119128.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:42 AM	

+="CN76776"	"Routine -Maintenance"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	05-Nov-07	30-Jun-08	98005.72	=""	="SPOTLESS P & F PTY LTD"	10-May-08 10:43 AM	

+="CN76804"	"TRAILER CONSTRUCTION, SUPPLY CABBLING AND WATER SE"	="Department of Defence"	10-May-08	="Transportation components and systems"	02-Oct-07	30-Nov-07	104047.23	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:44 AM	

+="CN76810"	"AFPO 13 Mail costs"	="Department of Defence"	10-May-08	="Air transportation support systems and equipment"	05-Nov-07	30-Jun-08	118917.39	=""	="AUSTRALIA POST"	10-May-08 10:45 AM	

+="CN76823"	"RemoteView Software"	="Department of Defence"	10-May-08	="Software"	30-Nov-07	10-Dec-07	96406.20	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	10-May-08 10:45 AM	

+="CN76827"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	07-May-08	84700.00	=""	="BLUELINE CONSULTING SERVICES"	10-May-08 10:46 AM	

+="CN76828"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	28-Nov-07	86328.06	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76830"	"SETTLEMENT"	="Department of Defence"	10-May-08	="Legal services"	28-Nov-07	28-Nov-07	107993.76	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	10-May-08 10:46 AM	

+="CN76876"	"Replace beds"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	03-Dec-07	30-Jun-08	88995.50	=""	="KENT"	10-May-08 10:49 AM	

+="CN76894"	"BNTS and MTA Grassland Management Strategies"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Nov-07	30-Jun-08	100390.40	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 10:50 AM	

+="CN76895"	"HIRE OF UPARMOURED VEHICLES FOR SECDET"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Oct-07	24-Nov-07	82416.96	=""	="SAUDI NAVAL SUPPORT COMPANY"	10-May-08 10:50 AM	

+="CN76897"	"SITE PREPARATION, SUPPY AND SET TO WORK TWO ACCOM TRAILERS FOR AUST PRECINCT CAMP VICTORY"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	06-Nov-07	24-Nov-07	103287.91	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	10-May-08 10:50 AM	

+="CN76904"	"AIR CHTR PNG DEPLOY OP ANODE"	="Department of Defence"	10-May-08	="Aircraft"	30-Nov-07	30-Nov-07	101790.00	=""	="PDL TOLL"	10-May-08 10:50 AM	

+="CN76908"	"CONSTRUCTION OF OFFICE AREA"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jan-08	86548.00	=""	="CAPITAL INTERIORS"	10-May-08 10:51 AM	

+="CN76914"	"ULTIMATE 3000 NANO LC (2-D SALT PLUG)"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	22-Nov-07	20-Dec-07	123555.58	=""	="DIONEX PTY LTD"	10-May-08 10:51 AM	

+="CN76920"	"Comms/IT"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	05-May-09	97175.39	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	10-May-08 10:52 AM	

+="CN76922"	"Fluent Software licences"	="Department of Defence"	10-May-08	="Software"	22-Nov-07	03-Dec-07	81685.24	=""	="LEAP AUSTRALIA PTY LTD"	10-May-08 10:52 AM	

+="CN76929"	"02-244356 30SEP07 LINE ITEMS 3643-3653,3655-3748, 3750,3752-3773"	="Department of Defence"	10-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Sep-07	30-Jun-08	120272.15	=""	="QANTAS AIRWAYS LTD"	10-May-08 10:52 AM	

+="CN76962"	"CMS Mgt Fee - Expert Estate Advice (ESD Projects)"	="Department of Defence"	10-May-08	="Building and Construction Machinery and Accessories"	22-Nov-07	30-Jun-08	128821.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 10:54 AM	

+="CN76968"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	83389.90	=""	="ROBERT BARNETT & ASSOCIATES PTY LTD"	10-May-08 10:54 AM	

+="CN76979"	"Computer Components"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Nov-07	30-Nov-07	97762.50	=""	="COMMANDER (ACT)"	10-May-08 10:55 AM	

+="CN76991"	"ROCKINGHAM - ANZSPO - OFFICE REFURBISHMENT. PM/CA SERVICES FOR THE DELIVERY PHASE OF PROJECT N"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	83738.60	=""	="COFFEY PROJECTS PTY LTD"	10-May-08 11:41 AM	

+="CN77001"	"TAS4095 - TAS Region Conduct Asbestos Inspections"	="Department of Defence"	10-May-08	="Environmental Services"	30-Jan-08	30-Jun-08	117700.00	=""	="RESOLVE FM"	10-May-08 11:41 AM	

+="CN77003"	"10 RAN MK3 TOWED TARGETS"	="Department of Defence"	10-May-08	="Military watercraft"	30-Jan-08	30-Jun-08	128700.00	=""	="DEFENCE MARITIME SERVICES"	10-May-08 11:41 AM	

+="CN77032"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	137500.00	=""	="SECURELINK PTY LTD"	10-May-08 11:43 AM	

+="CN77033"	"PROVISION OF PHARMACIST SERVICES - KESWICK BKS JAN"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	129000.30	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77035"	"PROVISION OF DENTAL ASSISTANT SERVICES - KESWICK B JAN 08 -JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	81000.70	=""	="NASANSB"	10-May-08 11:43 AM	

+="CN77039"	"PROVISION OF DENTAL PRACTICE MANAGER - KESWICK BARRACKS JAN 08- JAN 09"	="Department of Defence"	10-May-08	="Healthcare Services"	01-Feb-08	01-Jan-09	122001.00	=""	="NASANSB"	10-May-08 11:44 AM	

+="CN77040"	"Research and Development"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	31-Dec-09	94823.30	=""	="DEAKIN UNIVERSITY RESEARCH"	10-May-08 11:44 AM	

+="CN77050"	"PSG ANALOG SIGNAL GENERATOR 250KHZ TO 40 GHZ MXA SIGNAL ANALYSER 20HZ TO 26.5 GHZ"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	19-Feb-08	114361.98	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	10-May-08 11:44 AM	

+="CN77062"	"Cabling to Demountables"	="Department of Defence"	10-May-08	="Workshop machinery and equipment and supplies"	16-Jan-08	30-Jun-08	92802.00	=""	="BTEC COMMUNICATIONS PTY LTD"	10-May-08 11:45 AM	

+="CN77072"	"Security"	="Department of Defence"	10-May-08	="Personal safety and protection"	16-Jan-08	30-Jun-08	94996.00	=""	="CHUBB SECURITY AUST PTY LTD"	10-May-08 11:45 AM	

+="CN77093"	"Dev. & Evaluate Networked UAV EW Systems"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Jan-08	30-May-08	88000.00	=""	="CONSUNET PTY LTD"	10-May-08 11:47 AM	

+="CN77097"	"SUN FIRE V443 SERVER"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	22-Jan-08	93753.00	=""	="DATACOM SYSTEMS SA PTY LTD"	10-May-08 11:47 AM	

+="CN77113"	"ArcGIS Software"	="Department of Defence"	10-May-08	="Software"	15-Jan-08	01-Feb-08	93878.40	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	10-May-08 11:48 AM	

+="CN77120"	"PSP"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	15-Jan-08	30-Jun-08	97268.16	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:49 AM	

+="CN77135"	"PROVISION OF SOFTWARE DEVELOPMENT PHASE 2"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	15-Jan-08	21-Jan-08	104345.85	=""	="ALPHAWEST SERVICES PTY LTD"	10-May-08 11:50 AM	

+="CN77136"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	28-Jun-08	150000.00	=""	="MR ANDREW JOHN KIRKHAM"	10-May-08 11:50 AM	

+="CN77144"	"Firepower study for L17 Against standing offer 07/022"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	16-Jan-08	24-Jun-08	110000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	10-May-08 11:51 AM	

+="CN77145"	"Software design and Development"	="Department of Defence"	10-May-08	="Temporary personnel services"	31-Jan-08	30-May-08	131994.50	="2007/1066149"	="EBOR COMPUTING"	10-May-08 11:51 AM	

+="CN77153"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	31-Mar-08	105600.00	=""	="UNIVERSITY OF CANBERRA"	10-May-08 11:51 AM	

+="CN77154"	"ENHANCED LANDFORCE-STAGE 1 ERM-ENVIRONMENTAL SCOPING STUDY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	109675.50	=""	="ENVIRONMENTAL RESOURCE MANAGEMENT"	10-May-08 11:51 AM	

+="CN77159"	"Antenna Jackscrew"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	31-Jan-08	30-May-08	137765.10	=""	="MOTION TECHNOLOGIES PTY LTD"	10-May-08 11:52 AM	

+="CN77164"	"HOLSWORTHY: SPECIAL FORCES TRAINING FACILITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	92077.70	=""	="CROWN LIFT TRUCKS"	10-May-08 11:52 AM	

+="CN77168"	"Refurbishment of wet canteen area at Singleton Military Area"	="Department of Defence"	10-May-08	="General building construction"	15-Jan-08	30-Jun-08	110999.90	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 11:52 AM	

+="CN77172"	"POC: Amelia Charton COntact: 02 62650273"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	16-Jan-08	31-Jan-08	81290.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	10-May-08 11:52 AM	

+="CN77182"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	146080.00	=""	="HAY GROUP PTY LTD"	10-May-08 11:53 AM	

+="CN77185"	"AMX NETLINX NI13100 / MODERO 10" TOUCH PANEL WITH DESKTOP TILT BASE / IR TX MODULE / POWER CONTROL"	="Department of Defence"	10-May-08	="Electrical equipment and components and supplies"	01-Feb-08	20-Feb-08	103679.40	=""	="INTEGRATED VISION PTY LTD"	10-May-08 11:53 AM	

+="CN77193"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	30-Mar-08	124571.86	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 11:54 AM	

+="CN77194"	"STAGE 2 ENVIRONMENTAL INVESTIGATIONS RAAF BASE TIN MANUAL)"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	98380.70	=""	="GHD PTY LTD"	10-May-08 11:54 AM	

+="CN77222"	"Engineering Services under SON45190"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	31-Jan-08	20-May-08	110000.00	="2007-1055889"	="VCORP CONSULTING PTY LTD"	10-May-08 11:55 AM	

+="CN77223"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	18-Jan-08	30-Jun-08	80796.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 11:56 AM	

+="CN77232"	"STRATEGIC ADVISORY SERVICES TO THE UNFUNDED LIABIL"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	01-Feb-08	30-Jun-08	86350.00	=""	="MCGRATH NICOL & PARTNERS"	10-May-08 11:56 AM	

+="CN77235"	"PROCURE / UPGRADE SEAFARER VIEWER TOOL"	="Department of Defence"	10-May-08	="Computer services"	18-Jan-08	30-Jun-08	149171.00	=""	="HSA SYSTEMS PTY LTD"	10-May-08 11:56 AM	

+="CN77236"	"Cryptographic Equipment"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	01-Feb-08	31-Mar-08	94043.79	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 11:56 AM	

+="CN77239"	"SN02523 - PM Fees for Tennant St OJAC & AMC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	18-Jan-08	30-Jun-08	130900.00	=""	="SPOTLESS P & F PTY LTD"	10-May-08 11:56 AM	

+="CN77240"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	03-Apr-08	86257.35	=""	="PAULA KELLY & ASSOCIATES"	10-May-08 11:56 AM	

+="CN77263"	"FURNITURE FOR OFFICER MESS LARRAKAYAH BARRACKS"	="Department of Defence"	10-May-08	="Furniture and Furnishings"	21-Jan-08	28-Mar-08	89974.24	=""	="JAPE FURNISHING SUPERSTORE"	10-May-08 11:58 AM	

+="CN77272"	"Desktop COMPTERS"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	22-Jan-08	06-Feb-08	133053.03	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	10-May-08 11:58 AM	

+="CN77287"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	29-Mar-08	90058.12	=""	="CORPORATE EXECUTIVE BOARD COMPANY"	10-May-08 11:59 AM	

+="CN77292"	"SUSTAINABLE AMANGEMENT OF DEFENCE TRAINING AREAS-C"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	23-Jan-08	30-Jun-08	104599.00	=""	="GHD PTY LTD"	10-May-08 12:00 PM	

+="CN77294"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	21-Jan-08	30-Jun-08	93124.00	=""	="CLAYTON UTZ"	10-May-08 12:00 PM	

+="CN77303"	"PSP PROVIDE GUIDANCE ADVICE FOR NCWPO"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	120174.78	=""	="JACOBS AUSTRALIA"	10-May-08 12:00 PM	

+="CN77306"	"Engagement of Senior Delivery Manager"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	30-Jun-08	137500.00	=""	="KELLAWAY PTY LTD"	10-May-08 12:00 PM	

+="CN77307"	"PSP: ANNA McCARTHY PERIOD:17/03/08 - 19/08/08"	="Department of Defence"	10-May-08	="Project management"	24-Jan-08	31-Aug-08	114168.34	=""	="JACOBS AUSTRALIA"	10-May-08 12:01 PM	

+="CN77308"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	17-Jan-08	17-Feb-08	102699.65	=""	="BOEING AUSTRALIA LIMITED"	10-May-08 12:01 PM	

+="CN77319"	"ADVANCED TECHNICAL TRAINING FOR SENIOR SAILORS"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	23-Jan-08	30-Jun-08	90919.40	=""	="RMIT TRAINING CELL"	10-May-08 12:01 PM	

+="CN77322"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	10-May-08	="Legal services"	17-Jan-08	30-Jun-08	98108.66	=""	="BLAKE DAWSON WALDRON"	10-May-08 12:01 PM	

+="CN77332"	"SSPA AMPLIFIER"	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Jan-08	30-Apr-08	121748.00	=""	="RICHARDSON ELECTRONICS PTY LTD"	10-May-08 12:02 PM	

+="CN77334"	"ROBERTSON BARRACKS-1ST AVIATION REGIMENT FACILITIE PROJECT MANAGEMENT/CONTRACT ADMINISTRATOR SERVICE"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	17-Jan-08	30-Jun-08	96189.50	=""	="CONNELL WAGNER"	10-May-08 12:02 PM	

+="CN77351"	"Complex Procurement 0708-228"	="Department of Defence"	10-May-08	="Distribution and Conditioning Systems and Equipment and Components"	22-Jan-08	30-Jun-08	103053.01	=""	="MACRO RECRUITMENT AUSTRALASIA P/L"	10-May-08 12:03 PM	

+="CN77354"	"Engagement of Project Manager for NVV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-08	110000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:03 PM	

+="CN77362"	"Research Agreement"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	18-Jan-08	16-May-08	83600.00	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:04 PM	

+="CN77365"	"SN02698 - GLADSTONE ST SECURITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	123093.62	=""	="SPOTLESS P & F PTY LTD"	10-May-08 12:04 PM	

+="CN77367"	"BULK GROCERY SUPPLIES FOR HMAS CAIRNS BASED VESSEL FOR THIS FINANCIAL YEAR (07/08)"	="Department of Defence"	10-May-08	="Food and beverage industries"	21-Jan-08	30-Jun-08	80000.00	=""	="BID VEST"	10-May-08 12:04 PM	

+="CN77368"	"Engagement of Project Manager for NVV"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	18-Jan-08	30-Jun-08	121000.00	=""	="PAXUS AUSTRALIA PTY LTD"	10-May-08 12:04 PM	

+="CN77381"	"DEVELOP EXERCISE PITCH BLACK SCENARIO"	="Department of Defence"	10-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-Jan-08	30-Jun-08	132500.50	=""	="MILSKIL PTY LTD"	10-May-08 12:05 PM	

+="CN77393"	"ACCOMMODATION"	="Department of Defence"	10-May-08	="Hotels and lodging and meeting facilities"	22-Jan-08	22-Jan-08	93993.68	=""	="SOUTHERN CROSS UNIVERSITY"	10-May-08 12:06 PM	

+="CN77413"	"JP2048 PH4A/B-AMPHIBIOUS SHIPS,INFRASTRUCTURE AT G SBC CONSULTANT FOR THE ADAS INFRASTRUCTURE PROJEC"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	22-Jan-08	30-Jun-08	132495.00	=""	="WORLEY PARSONS SERVICES PTY LTD"	10-May-08 12:07 PM	

+="CN77448"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	25-Jan-08	14-Apr-08	97936.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:09 PM	

+="CN77458"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	10-Jan-08	30-Jun-08	81145.26	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:09 PM	

+="CN77459"	"RESEARCH AGREEMENT - "COHERANT TRANSFER BY ADIABATIC PASSAGE FEASIBILITY STUDY""	="Department of Defence"	10-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-Jan-08	30-Jun-08	148553.90	=""	="UNIVERSITY OF MELBOURNE"	10-May-08 12:09 PM	

+="CN77477"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	31-May-08	114950.00	=""	="TOTAL DECISION SUPPORT PTY LTD"	10-May-08 12:10 PM	

+="CN77494"	"Maintenance support of the DNSA defence contract centre hardware."	="Department of Defence"	10-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	18-Dec-08	93667.55	=""	="AVAYA AUSTRALIA PTY LTD"	10-May-08 12:11 PM	

+="CN77496"	"Provision of wireless data cards in support of Dreams"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	29-Jan-08	29-Feb-08	80000.80	=""	="TELSTRA"	10-May-08 12:11 PM	

+="CN77520"	"Storage system"	="Department of Defence"	10-May-08	="Containers and storage"	08-Jan-08	31-Jan-08	84920.00	=""	="BROWNBUILT PTY LTD"	10-May-08 12:13 PM	

+="CN77531"	"CONSTRUCTIONS"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	29-Jan-08	30-Jun-08	115159.37	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:13 PM	

+="CN77534"	"LKH BUILDING 4 REFURBISHMENT"	="Department of Defence"	10-May-08	="Construction and maintenance support equipment"	08-Jan-08	30-Jun-08	118580.00	=""	="G H D PTY LTD"	10-May-08 12:13 PM	

+="CN77547"	"PROVISION OF SOFTWARE ENGINEER"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	24-Jan-08	30-Jun-08	105354.48	=""	="RAYTHEON AUST PTY LTD"	10-May-08 12:14 PM	

+="CN77550"	"Professional Service Provider"	="Department of Defence"	10-May-08	="Software"	08-Jan-08	30-May-08	143000.00	=""	="LOCKHEED MARTIN AUSTRALIA P / L"	10-May-08 12:14 PM	

+="CN77552"	"SUPPLY SKILLED LABOUR RICHMOND SO PS 28/2005"	="Department of Defence"	10-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Jan-08	26-Jun-08	99000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	10-May-08 12:14 PM	

+="CN77573"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	24-Jan-08	30-Jun-08	88207.59	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 12:15 PM	

+="CN77587"	"DEMS INFRASTRUCTURE APPRAISAL MODULE STAGE 1 ENHAN"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	08-Jan-08	30-Jun-08	94501.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	10-May-08 12:16 PM	

+="CN77596"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	10-May-08	="Legal services"	24-Jan-08	30-Jun-08	113128.00	=""	="CLAYTON UTZ"	10-May-08 12:17 PM	

+="CN77627"	"Site Integration Services"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	24-Jan-08	29-Feb-08	140890.83	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	10-May-08 12:19 PM	

+="CN77643"	"Multimode interface"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	14-Jan-08	24-Mar-08	94600.00	=""	="DEFENCE MATERIEL ORGANISATION -"	10-May-08 12:19 PM	

+="CN77647"	"F/A-18 FEA Support"	="Department of Defence"	10-May-08	="Measuring and observing and testing instruments"	14-Jan-08	30-Jun-08	110000.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	10-May-08 12:20 PM	

+="CN77650"	"PASSPORT EQUIPMENT"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Dec-07	31-Dec-07	98160.68	=""	="WESTCON GROUP"	10-May-08 12:20 PM	

+="CN77657"	"PABX System"	="Department of Defence"	10-May-08	="Communications Devices and Accessories"	14-Jan-08	06-May-08	140750.85	=""	="FUJITSU AUSTRALIA LTD"	10-May-08 12:20 PM	

+="CN77685"	"Conversion of lunch room to office accommodation at Facility 142 at RAAF Base Williamtown"	="Department of Defence"	10-May-08	="General building construction"	15-Jan-08	30-Jun-08	142308.10	=""	="SSL ASSET SERVICES PTY LTD"	10-May-08 12:22 PM	

+="CN77689"	"DEFENCE HEALTH SERVICES PROVISION OF REGIONAL PRAC VICTORIA - HEALTH SERVICES FLIGHT WILLIAMS."	="Department of Defence"	10-May-08	="Patient care and treatment products and supplies"	15-Jan-08	30-Jun-08	124790.00	=""	="ROSEMARY J VANDENBERG"	10-May-08 12:22 PM	

+="CN77705"	"Cybird 5 Air Vehicles"	="Department of Defence"	10-May-08	="Specialty aircraft"	15-Jan-08	29-Feb-08	101200.00	=""	="CYBER TECHNOLOGY"	10-May-08 12:23 PM	

+="CN77706"	"ADVERTISING"	="Department of Defence"	10-May-08	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	110000.00	=""	="GEORGE PATTERSON Y & R"	10-May-08 12:23 PM	

+="CN77725"	"DSTO servers for COTS laboratory set hardware for RAN submarines"	="Department of Defence"	10-May-08	="Computer Equipment and Accessories"	11-Jan-08	14-Mar-08	129570.99	=""	="GERMANE SYSTEMS LC"	10-May-08 12:24 PM	

+="CN77770"	"REVIEW OF MONITORING INDICTORS"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	11-Jan-08	30-Jun-08	101008.60	=""	="ENSR AUSTRALIA PTY LIMITED"	10-May-08 12:26 PM	

+="CN77771"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	137374.00	=""	="PROJECT OUTCOMES PTY LTD"	10-May-08 12:26 PM	

+="CN77776"	"Team Lead"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	11-Jan-08	30-Apr-08	101252.01	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	10-May-08 12:27 PM	

+="CN77785"	"REFURBISH FIRE SIMULATORS & SUPPORT STRUCTURES CONSULTANCY FOR STRUCTURAL INTEGRITY"	="Department of Defence"	10-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	106150.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	10-May-08 12:27 PM	

+="CN77788"	"TRAINING"	="Department of Defence"	10-May-08	="Education and Training Services"	14-Jan-08	30-Jun-08	119942.66	=""	="MAJOR TRAINING SERVICES PTY LTD"	10-May-08 12:27 PM	

+="CN77809"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	82500.00	=""	="DSW CONSULTING"	10-May-08 12:28 PM	

+="CN77810"	"SUPPLY OF 1 X PRINCIPLE SCIENTIFIC ADVISOR FOR PERIOD 16 JAN TO 30 JUN 2008"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	94468.00	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	10-May-08 12:29 PM	

+="CN77822"	"Aircraft Technical Support"	="Department of Defence"	10-May-08	="Aircraft equipment"	21-Jan-08	30-Jun-08	88000.00	=""	="APT BUSINESS SOLUTIONS PTY LTD"	10-May-08 12:29 PM	

+="CN77857"	"Maritime Air Radr Modelling Support"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	87967.00	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:31 PM	

+="CN77899"	"Mobile Scadas Analyser"	="Department of Defence"	10-May-08	="Laboratory and scientific equipment"	13-Dec-07	15-Feb-08	114008.40	=""	="DAVIDSON MEASUREMENT"	10-May-08 12:33 PM	

+="CN77902"	"SUPPLY OF GYM EQUIPMENT"	="Department of Defence"	10-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Dec-07	31-Jan-08	81431.70	=""	="TRUE FITNESS SOLUTIONS"	10-May-08 12:34 PM	

+="CN77914"	"long term strategic analysis - JLU-N infrastractur"	="Department of Defence"	10-May-08	="Information services"	31-Jan-08	30-Jul-08	81906.00	=""	="BILL ROSS & ASSOCIATES PTY LTD"	10-May-08 12:34 PM	

+="CN77923"	"MAINTENANCE FOR IPOD & EPOD PLOTTERS"	="Department of Defence"	10-May-08	="Paper Materials and Products"	13-Dec-07	31-Oct-08	88569.80	=""	="AGFA-GEVAERT LTD"	10-May-08 12:35 PM	

+="CN77930"	"JSAF MODELLING DEVELOPMENT FOR PROJECT AIR 7000"	="Department of Defence"	10-May-08	="Professional engineering services"	29-Jan-08	30-Apr-08	128587.80	=""	="SYDAC PTY LTD"	10-May-08 12:35 PM	

+="CN77945"	"RISK MANAGER"	="Department of Defence"	10-May-08	="Business and corporate management consultation services"	13-Dec-07	31-Dec-09	126783.82	=""	="QINETIQ CONSULTING PTY LTD"	10-May-08 12:36 PM	

+="CN77957"	"TWE RF Capability in the SIL - Phase II"	="Department of Defence"	10-May-08	="Engineering and Research and Technology Based Services"	13-Dec-07	29-May-08	135724.60	=""	="AVALON SYSTEMS PTY LTD"	10-May-08 12:37 PM	

+="CN77968"	"UPGRADE POWER"	="Department of Defence"	10-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	12-Dec-07	30-Jun-08	110053.90	=""	="DEFENCE MAINTENANCE MANAGEMENT"	10-May-08 12:37 PM	

+="CN77971"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	31-Jul-08	135238.40	=""	="DELTEK AUSTRALIA PTY LTD"	10-May-08 12:37 PM	

+="CN77986"	"PROFESSIONAL SERVICES"	="Department of Defence"	10-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	90274.00	=""	="ORACLE SYSTEMS (AUSTRALIA) PTY LTD"	10-May-08 12:38 PM	

+="CN74188-A3"	" Provision of Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	91025.00	=""	="Ross Human Directons Limited"	12-May-08 09:11 AM	

+="CN74181"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	27-Aug-07	30-Jun-08	88110.00	=""	="Ross Human Directors Limited"	12-May-08 09:26 AM	

+="CN78010"	"AS PER QUOTE 30 NOV 07 YOUR REF 1191B"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	14-Dec-07	30-Jan-08	100100.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 09:32 AM	

+="CN78004-A2"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	20-Aug-07	30-Jun-08	121275.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:32 AM	

+="CN78033"	"QUARANTINE INSPECTION FEES OP CATALYST"	="Department of Defence"	12-May-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	14-Dec-07	31-Dec-07	101572.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	12-May-08 09:37 AM	

+="CN78043"	"PROVISION OF CONSULTANCY TO DEFINE DSVE SECURITY REVIEW TASK DELIVERABLES."	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Dec-07	10-Apr-08	120194.80	=""	="CONNELL WAGNER PTY LTD"	12-May-08 09:39 AM	

+="CN78050"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	87994.23	=""	="NETWORK DATA SOLUTIONS PTY LTD"	12-May-08 09:40 AM	

+="CN78055"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Dec-07	14-Dec-07	98450.00	=""	="COMPUWARE ASIA PACIFIC PTY LTD"	12-May-08 09:41 AM	

+="CN78082"	"REMOVALOF CCA TREATED STRUCTURES AND REMEDIATION OF SOIL/SAND IN CHILDCARE CENTRES"	="Department of Defence"	12-May-08	="Environmental Services"	19-Dec-07	30-Jun-08	90914.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:47 AM	

+="CN78086"	"FIRE SUPPRESSION SYSTEM FOR BLDG M3 HOLSWORTHY"	="Department of Defence"	12-May-08	="Fire prevention"	19-Dec-07	30-Jun-08	137198.26	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:48 AM	

+="CN78114"	"Ballistic Barrier for Base-X 305 Lightweight Shelt"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	83061.00	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:53 AM	

+="CN78120"	"BIENNIAL AUDIT OF DEFENCE JOINT SPECIAL LICENCE (J"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	132027.50	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 09:55 AM	

+="CN78122"	"Repair and Overhaul Qty 6 x Base-X Lightweight She"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	94477.90	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78125"	"EMS Development For RAAF Base Williams"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	88000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 09:55 AM	

+="CN78133"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office supplies"	18-Dec-07	30-Jun-08	88006.60	=""	="HMA BLAZE PTY LIMITED"	12-May-08 09:57 AM	

+="CN78150"	"REMOVALOF CCA TREATED STRUCTURES"	="Department of Defence"	12-May-08	="Environmental Services"	18-Dec-07	30-Jun-08	100000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78151"	"Dataset acquisition"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	18-Dec-07	30-Jun-09	92647.04	=""	="DELLOTTE & TOUCHE LLP"	12-May-08 10:00 AM	

+="CN78172-A1"	"Supply of Phones and Licences"	="Australian Federal Police"	12-May-08	="Personal communications device accessories or parts"	05-May-08	30-Jun-08	87814.32	="29-2005"	="Avaya Australia Pty Ltd"	12-May-08 10:14 AM	

+="CN74186-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directors Limited"	12-May-08 10:52 AM	

+="CN74183"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directors Limited"	12-May-08 10:55 AM	

+="CN74170-A2"	" Provision of Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	12-May-08 11:02 AM	

+="CN78182-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	16-Jul-07	30-Jun-08	132000.00	=""	="GREYTHORN PTY LTD"	12-May-08 11:04 AM	

+="CN78183-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	02-Jul-07	30-Jun-08	132000.00	=""	="EJOBS RECRUITMENT SPECIALISTS PTY LTD"	12-May-08 11:04 AM	

+="CN78215"	"Lease Agreement"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	30-Jun-08	110000.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	12-May-08 01:05 PM	

+="CN78219"	"Engagement M&S Support for DEWSAR PDF"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	29-May-08	82500.00	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 01:06 PM	

+="CN78221"	"OP OUTREACH"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	12-Dec-07	30-Jun-08	107250.00	=""	="PATTEMORE CONSTRUCTIONS"	12-May-08 01:06 PM	

+="CN78233"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	133000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-May-08 01:08 PM	

+="CN78237-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	27-Jun-08	138847.50	=""	="VEROSSITY PTY LTD"	12-May-08 01:09 PM	

+="CN78243-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	28-Jun-08	109500.00	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:09 PM	

+="CN78245-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	27-Jun-08	131250.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:09 PM	

+="CN78246"	"REPLACEMENT OF BUILDING & CABLE INFRASTRUCTURE PHASES 1 & 2."	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	12-Dec-07	30-May-08	82156.80	=""	="URS AUSTRALIA LTD"	12-May-08 01:10 PM	

+="CN78305"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	06-Dec-07	15-Jun-08	95750.00	=""	="CONSUNET PTY LTD"	12-May-08 01:18 PM	

+="CN78307"	"SA598 - Bulk Fuel Tanker/Deluge Shower"	="Department of Defence"	12-May-08	="Environmental management"	05-Dec-07	30-Jun-08	135129.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:18 PM	

+="CN78310"	"Renewal of Subscriptions"	="Department of Defence"	12-May-08	="Electronic reference material"	05-Dec-07	07-Dec-07	98611.42	=""	="OVID TECHNOLOGIES"	12-May-08 01:19 PM	

+="CN78312"	"Computers and accessories"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	14-Dec-07	87465.01	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 01:19 PM	

+="CN78332"	"Induction and Training courses"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Dec-07	30-Dec-07	82500.00	=""	="DFAT - AUSTRALIAN GOVERNMENT"	12-May-08 01:22 PM	

+="CN78336"	"Rackmount industrial PC"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Dec-07	30-Apr-08	81048.00	=""	="UNITRONIX PTY LTD"	12-May-08 01:23 PM	

+="CN78341"	"MEDALS"	="Department of Defence"	12-May-08	="Castings"	04-Dec-07	30-Jun-08	82225.00	=""	="CASHS AUSTRALIA PTY LTD"	12-May-08 01:24 PM	

+="CN78365"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	04-Dec-07	30-Jun-08	146235.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 01:28 PM	

+="CN78367"	"SUBSCRIPTION TO NEWS AND MILITARY ARCHIVES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	04-Dec-07	30-Jun-09	127000.01	=""	="LEXIS NEXIS"	12-May-08 01:28 PM	

+="CN78368"	"security Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	31-Dec-09	133812.65	=""	="JACOBS AUSTRALIA"	12-May-08 01:28 PM	

+="CN78392"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Dec-07	02-Jun-08	143000.00	=""	="CSIRO INDUSTRIAL PHYSICS"	12-May-08 01:32 PM	

+="CN78403"	"SOLE PROVIDER IN AUSTRALIA OF SOFTWARE REQUIRED"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	15-Dec-07	88426.80	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	12-May-08 01:34 PM	

+="CN78406"	"DMO BATTERY CHARGING - 6RAR - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	99201.36	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:34 PM	

+="CN78408"	"FACOPS - SA2266"	="Department of Defence"	12-May-08	="Roads and landscape"	10-Dec-07	30-Jun-08	83050.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78421"	"DEVIL UNITS AND SOFTWARE"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	25-Jan-08	119239.92	=""	="TURO TECHNOLOGY PTY LTD"	12-May-08 01:37 PM	

+="CN78428"	"FIRE CONFORMANCE - MINOR DELIVERY"	="Department of Defence"	12-May-08	="Fire protection"	10-Dec-07	30-Jun-08	82500.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:39 PM	

+="CN78430"	"SERVERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Dec-07	21-Dec-07	85255.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 01:39 PM	

+="CN78445"	"FACOPS - SA2482"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	129638.91	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:41 PM	

+="CN78446"	"AIR CHTR EX HIGH SIERRA"	="Department of Defence"	12-May-08	="Aircraft"	06-Dec-07	08-Dec-07	115365.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 01:41 PM	

+="CN78450"	"Contract 0708-219 Under Standing Offer 0506-271-26"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	30-Jun-08	81522.38	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 01:42 PM	

+="CN78453"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	20-Dec-07	80240.60	=""	="COMPUTERCORP PTY LTD"	12-May-08 01:42 PM	

+="CN78455"	"DSTO RATIONALISATION PROJECT. ENTIRE - SUPPLY AND INSTALL MECHANICAL SERVICES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	133738.00	=""	="ENTIRE AIRCONDITIONING PTY LTD"	12-May-08 01:43 PM	

+="CN78457"	"SQ REGIONAL FIRE SAFETY CONFORMANCE GALLIPOLI BKS"	="Department of Defence"	12-May-08	="Fire protection"	06-Dec-07	30-Jun-08	113304.41	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:43 PM	

+="CN78461"	"Contracted personnel - Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	06-May-08	30-Jun-09	100795.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	12-May-08 01:43 PM	

+="CN78469"	"GATEWAY  INFRASTRUCTURE DESIGNER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	30-Jun-08	144375.00	=""	="PEOPLEBANK AUSTRALIA LTD"	12-May-08 01:44 PM	

+="CN78481"	"PROP STUDIES-PORT KEMBLA-REMEDIATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	88546.83	=""	="WOLLONGONG CITY COUNCIL"	12-May-08 01:46 PM	

+="CN78483"	"REPAIR AND COMMISSION ONLINE AIR - AMBERLEY"	="Department of Defence"	12-May-08	="Heating and ventilation and air circulation"	06-Dec-07	30-Jun-08	116402.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:47 PM	

+="CN78494-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	03-Dec-07	30-Jun-08	96866.00	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 01:48 PM	

+="CN78496-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	99880.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78500-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	120000.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:49 PM	

+="CN78502-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	21-Jan-08	30-Jun-08	101200.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:49 PM	

+="CN78511"	"HOLSWORTHY HIGH VOLTAGE NETWORK REPLACEMENT PROGRAM"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	20-Dec-07	30-Jun-08	108350.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:50 PM	

+="CN78533"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Dec-07	14-Jan-08	109120.00	=""	="RMIT UNIVERSITY"	12-May-08 01:54 PM	

+="CN78542"	"SATCOM UPGRADE"	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	29-Feb-08	92259.20	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 01:56 PM	

+="CN78544"	"AO/038/07-08 AIR CHTR OP CATALYST A330 OVERFLOW TS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	85731.67	=""	="INDEPENDENT AVIATION PTY LTD"	12-May-08 01:56 PM	

+="CN78545"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	20-Dec-07	86900.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	12-May-08 01:56 PM	

+="CN78548"	"Design works for completion of works to Camp Sapper."	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	20-Dec-07	30-Jun-08	108460.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:58 PM	

+="CN78551-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Nov-07	30-Jun-08	107593.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:58 PM	

+="CN78555-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	05-Nov-07	30-Jun-08	114400.00	=""	="INFINITE CONSULTING PTY LIMITED"	12-May-08 01:59 PM	

+="CN78567"	"SINGLE LEAP. BALL SOLUTIONS."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	117160.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 02:01 PM	

+="CN78574"	"Purchase of Nortel Passport"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	12-Feb-08	85765.75	=""	="WESTCON GROUP"	12-May-08 02:02 PM	

+="CN78577"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	144968.05	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78578"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	30-Jan-08	94243.25	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78579"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	85941.80	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78582"	"Aluminium Alloy"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	20-Dec-07	28-Mar-08	108346.94	=""	="TRANSTAR METALS CORP"	12-May-08 02:04 PM	

+="CN78610-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	06-Sep-07	30-Jun-08	112350.00	=""	="EUROLINK CONSULTING AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78612-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	26-Sep-07	30-Jun-08	90090.00	=""	="GMT CANBERRA PTY LTD"	12-May-08 02:09 PM	

+="CN78614-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Oct-07	30-Jun-08	144210.00	=""	="INFINITE CONSULTING PTY LIMITED"	12-May-08 02:09 PM	

+="CN78616-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	17-Oct-07	30-Jun-08	90805.00	=""	="GREYTHORN PTY LTD"	12-May-08 02:09 PM	

+="CN78620"	"Contract for Software design and Implementation under SO SON46385"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Jan-08	20-May-08	93600.00	=""	="BALL SOLUTIONS GROUP"	12-May-08 02:10 PM	

+="CN78626"	"conference deposit"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	11-Apr-08	100000.00	=""	="BRISBANE CONVENTION & EXHIBITION"	12-May-08 02:11 PM	

+="CN78634"	"Supply & Deliver Road Base Materials"	="Department of Defence"	12-May-08	="Roads and landscape"	04-Jan-08	30-Jun-08	108350.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-May-08 02:12 PM	

+="CN78687-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	18-Sep-07	30-Jun-08	88908.00	=""	="GMT CANBERRA PTY LTD"	12-May-08 02:16 PM	

+="CN78730"	"02-234684 31 OCT 07 LINE ITEMS 9520-9698"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Oct-07	30-Jun-08	91295.03	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:19 PM	

+="CN78756"	"NQ2224 - RAAF BASE TOWNSVILLE DS-NQ - REPAIR FLOOD"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	30-Jun-08	88000.00	=""	="SPOTLESS"	12-May-08 02:20 PM	

+="CN78757"	"Provision of professional services to support the development of Amiel modules"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	07-Jan-08	30-Jun-08	82500.00	=""	="QUANTITATIVE AERONAUTICS"	12-May-08 02:20 PM	

+="CN78763"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	17-Mar-08	121000.00	=""	="STRATEGIC AVIATION - USD"	12-May-08 02:21 PM	

+="CN78779"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	113611.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:21 PM	

+="CN78796"	"Comms/IT"	="Department of Defence"	12-May-08	="Hardware"	14-Apr-08	05-May-08	136615.06	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:22 PM	

+="CN78798"	"LEASE FOR VEHICLES"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	03-Dec-07	81846.00	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:23 PM	

+="CN78814"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Apr-08	14-Apr-08	81280.91	=""	="CACI TECHNOLOGIES INC"	12-May-08 02:23 PM	

+="CN78833"	"Videoconferencing and audiovisual system"	="Department of Defence"	12-May-08	="Photographic or filming or video equipment"	21-Dec-07	29-Feb-08	93613.25	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78836"	"POC:Tanya Boulton 02 626 69174"	="Department of Defence"	12-May-08	="Other sports"	21-Dec-07	31-Jul-08	110195.25	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78839"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	104500.00	=""	="ROSEBANK ENGINEERING"	12-May-08 02:25 PM	

+="CN78848"	"HQIADS C2 CJOC ENHANCEMENT PROJECT"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	05-Dec-07	05-Dec-07	106603.20	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:26 PM	

+="CN78849"	"Contractor"	="Department of Defence"	12-May-08	="Personnel recruitment"	21-Dec-07	30-Jun-08	125400.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-May-08 02:26 PM	

+="CN78863"	"MS#4 & MS#5"	="Department of Defence"	12-May-08	="Environmental management"	30-Apr-07	06-Dec-07	87101.47	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 02:27 PM	

+="CN78864"	"PSP:Melissa McKenna 02 626 50791"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	02-Jan-08	30-Jun-08	138725.46	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:27 PM	

+="CN78876"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	30-Jun-08	80437.07	=""	="BOX HILL INSTITUTE OF TAFE"	12-May-08 02:28 PM	

+="CN78895"	"IT Support Services"	="Department of Defence"	12-May-08	="Temporary personnel services"	21-Dec-07	28-Apr-08	89036.64	=""	="BLUE SWIMMER CONSULTING"	12-May-08 02:29 PM	

+="CN78899"	"NETWORK LEASE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	24-Apr-08	90090.00	=""	="MOTOROLA AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78902"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	21-Apr-08	108565.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78998"	"PREMIERE PACKAGE 33 UNITS FOR 12 MONTHS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	03-Apr-08	12-Apr-08	127494.97	=""	="GULF DTH FZ LLC"	12-May-08 02:37 PM	

+="CN79003"	"LCD MONITORS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	147034.36	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	12-May-08 02:37 PM	

+="CN79012"	"PREFABRICATED SHED"	="Department of Defence"	12-May-08	="Prefabricated structures"	04-Apr-08	20-Jun-08	87064.29	=""	="AUSSIE SHEDS"	12-May-08 02:38 PM	

+="CN79022"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	01-May-08	88150.00	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79043"	"Engage a consultant for the refurbishment of the 25m Range at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	110000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:40 PM	

+="CN79052"	"Automated Super Wide Roll Cutter"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	04-Apr-08	30-Jun-08	83941.00	=""	="BUDDE INTERNATIONAL"	12-May-08 02:40 PM	

+="CN79053"	"04-425303 29FEB08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	29-Feb-08	12-Mar-08	97273.26	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:41 PM	

+="CN79057"	"LAVARACK BARRACKS - JOINT THEATRE DISTRIBUTION SYS PH2)"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	110096.80	=""	="GHD PTY LTD"	12-May-08 02:41 PM	

+="CN79073"	"Renovation of Office"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	131285.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:42 PM	

+="CN79076"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	06-Mar-08	27-Mar-08	82400.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:43 PM	

+="CN79119"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Education and Training Services"	20-Aug-07	03-Sep-07	140159.50	=""	="MINISTRY OF DEFENCE-DEFENCE PROCURE"	12-May-08 02:47 PM	

+="CN79155"	"CCC 322778 AC 21911 PRN LIS 029 EC135 TRANSITION COURSE GERMANY"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	03-Apr-08	05-Apr-08	139537.04	=""	="BUNDESWEHR SERVICE CENTRE BONN"	12-May-08 02:50 PM	

+="CN79161"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	01-May-08	05-May-08	120000.00	=""	="MINTER ELLISON"	12-May-08 02:51 PM	

+="CN79214"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	01-May-08	05-May-08	110000.00	=""	="MINTER ELLISON"	12-May-08 02:56 PM	

+="CN79219"	"RENTAL AGREEMENT FOR PRINTERS AT DPS Nationally"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	23-Apr-08	30-Jun-08	134200.00	=""	="CANNON AUSTRALIA PTY LTD"	12-May-08 02:56 PM	

+="CN79223"	"Joint Seminar Wargaming Adjudication Tool (j"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	13-Mar-08	30-Jun-08	127028.00	="2005-1082096"	="EBOR COMPUTING"	12-May-08 02:57 PM	

+="CN79229"	"REMEDIATION WORKS"	="Department of Defence"	12-May-08	="General building construction"	14-Feb-08	30-Jun-08	95783.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79244"	"LANDING FEES FOR MILITARY AIRCRAFT FOR EXERCISE WALLABY 2007"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	20-Dec-07	20-Dec-07	105152.85	=""	="ROCKHAMPTON CITY COUNCIL"	12-May-08 02:59 PM	

+="CN79254"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	29-Jan-08	27-Jun-08	117437.18	=""	="ROSS HUMAN DIRECTIONS"	12-May-08 03:00 PM	

+="CN79263"	"Undertake repairs/maintenance & upgrade works in various LIA buildings at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	82089.11	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79265"	"Passive Infrastructure Works"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Apr-08	93263.41	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:01 PM	

+="CN79287"	"Upgrade SSGUI"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	30-May-08	99000.00	=""	="SYDAC PTY LTD"	12-May-08 03:03 PM	

+="CN79294"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	21-Apr-08	28-Apr-08	95000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:04 PM	

+="CN79306"	"1 seat sofa x 50 @ $576.00 ea 2 seat sofa 50 @ $886.80 ea"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	10-Apr-08	10-Apr-08	80454.00	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 03:06 PM	

+="CN79319"	"Deployable Mast Assembly"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-May-08	88591.80	=""	="EYLEX PTY LTD"	12-May-08 03:07 PM	

+="CN79320"	"TALISMAN SABER 07 QANTAS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	24-Apr-08	122929.96	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79323"	"CF30 Panasonic Toughbook Laptop with Accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	30-May-08	91872.00	=""	="TLC DATA SYSTEMS"	12-May-08 03:07 PM	

+="CN79327"	"Milex 19" Transport Housing"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-May-08	86350.00	=""	="SHOCK & VIBRATION TECHNOLOGIES PTY"	12-May-08 03:08 PM	

+="CN79338"	"Ref No:2006/1055088"	="Department of Defence"	12-May-08	="Project management"	09-Apr-08	30-Jun-08	141030.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:08 PM	

+="CN79356"	"PUMP ASSEMBLY"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	03-Apr-08	15-Feb-09	82117.70	=""	="GE AVIATION MECHANICAL SYSTEMS-SANT"	12-May-08 03:09 PM	

+="CN79362"	"Ford Ranger PK 4x4 RANGER Dual Cab Pick Up ( UM4) Qty 6"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	17-Oct-08	148404.04	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79368"	"Ford FG Ute ( US) Qty 5"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	17-Oct-08	117112.66	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79379"	"Resarch Agreement Risk Based Assessment of Complex Systems"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	30-Jun-08	101200.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 03:11 PM	

+="CN79399"	"02-23468431DEC07 LINE 9712 - 9899"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	124229.20	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79404"	"Provision of Professional Service Provider Piangegonda  labour and  travel services"	="Department of Defence"	12-May-08	="Aircraft"	01-Apr-08	30-Jun-08	115149.70	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:13 PM	

+="CN79412"	"QANTAS ACCOUNT 1 AVN REGT DECEMBER 2007 ACCOUNT NO 04-422406"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	20-Feb-08	92470.93	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:14 PM	

+="CN79420"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	112335.08	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79424"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	97042.31	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79434"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	92730.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79452"	"QTY 500 ELECTRICAL CONNECTORS FOR USE AT HEAVY REPAIR FACILITY. REFER CAPO C439154."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	01-Apr-08	12-Jun-08	91819.20	=""	="THALES AUSTRALIA"	12-May-08 03:16 PM	

+="CN79460"	"Design Phase - Civil Infrastructure Project to Support Ground Stations ADSCS"	="Department of Defence"	12-May-08	="Satellites"	01-Apr-08	31-Jul-08	103966.24	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:17 PM	

+="CN79466"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	92730.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:17 PM	

+="CN79475"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79483"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79484"	"STAGE 2 QUOTATION FOR THE REPAIRS OF HYDRAULIC LINES"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Mar-08	30-May-08	123479.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:18 PM	

+="CN79488"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79497"	"Reference:DRMS AB806484 File Reference Number:2005/1060179/3"	="Department of Defence"	12-May-08	="Project management"	08-Apr-08	30-Jun-08	108667.05	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 03:19 PM	

+="CN79504"	"SPECTRUM ANALYZER FOR HQJTF"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Feb-08	22-Feb-08	83668.20	=""	="SHABAKKAT CELLULAR CO"	12-May-08 03:19 PM	

+="CN79508"	"QANTAS BILL"	="Department of Defence"	12-May-08	="Transportation services equipment"	20-Feb-08	25-Feb-08	104739.92	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:20 PM	

+="CN79509"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Sep-08	120120.00	=""	="PEOPLEBANK"	12-May-08 03:20 PM	

+="CN79510"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Nov-08	126500.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:20 PM	

+="CN79532"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="General building construction"	29-Apr-08	29-Apr-08	83270.00	=""	="Grand Entrance Control Pty Ltd"	12-May-08 03:21 PM	

+="CN79533"	"System Hardware Maintenance"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	31-Dec-08	91560.55	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:21 PM	

+="CN79540"	"NEW ACCOMMODATION AT KAIA"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	09-Feb-08	25-Feb-08	119941.25	=""	="KBY INTERNATIONAL"	12-May-08 03:22 PM	

+="CN79544"	"LAUNDRY AND GYM FOR AUSTRALIA ISLAND"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	23-Feb-08	25-Feb-08	108996.17	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 03:22 PM	

+="CN79546"	"SCOPING STUDIES FOR AIRFIELD PROJECTS AT RAAF BASE TOWNSVILLE AND POINT COOK AIRFIELD."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	132000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 03:22 PM	

+="CN79548"	"TRAVEL SERVICES"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	29-Feb-08	109396.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:22 PM	

+="CN79549"	"Provision of ICT Labour Hire"	="Medicare Australia"	12-May-08	="Business administration services"	01-Apr-08	30-Jun-08	91520.00	=""	="PAXUS PEOPLE"	12-May-08 03:22 PM	

+="CN79563"	"LEEUWIN Class Hydrograhic ships safety case"	="Department of Defence"	12-May-08	="Marine transport"	26-Mar-08	13-Jun-08	87000.00	=""	="AMOG CONSULTING"	12-May-08 03:23 PM	

+="CN79594"	"QANTAS CHARGES FOR DS-SING PERSONNEL NOV/DEC07"	="Department of Defence"	12-May-08	="Passenger transport"	21-Dec-07	30-Jun-08	89236.00	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79596"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	30-Jun-08	113960.00	=""	="WEBMETHODS AUSTRALIA PTY LTD"	12-May-08 03:26 PM	

+="CN79599"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	12-May-08	="Recreational aircraft"	18-Feb-08	31-Dec-08	116319.89	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79635"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	12-May-08	="Marine craft systems and subassemblies"	11-Feb-08	12-Jan-09	141029.98	=""	="RAYTHEON SYSTEMS LTD"	12-May-08 03:28 PM	

+="CN79639"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	04-Apr-08	19-May-08	95779.20	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:29 PM	

+="CN79641"	"Design & Dev. of a Design Acceptance Register"	="Department of Defence"	12-May-08	="Software"	20-Mar-08	31-Jul-08	134886.81	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 03:29 PM	

+="CN79645"	"Provision of Security Supplies"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	81377.98	=""	="Senetas Security P/L"	12-May-08 03:29 PM	

+="CN79675"	"BRASSIERES FOR ARMY & NAVY PERSONNEL"	="Department of Defence"	12-May-08	="Clothing"	25-Mar-08	30-Jun-08	120000.00	=""	="BONDS INDUSTRIES LTD"	12-May-08 03:32 PM	

+="CN79700"	"Repairs of CPT located at Brisbane, Darwin & Pucka"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	99000.00	=""	="THALES AUSTRALIA"	12-May-08 03:34 PM	

+="CN79707"	"NSW Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	97231.76	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:34 PM	

+="CN79738"	"PSP Support"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	25-Mar-08	30-Apr-08	120000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79743"	"Suppply and fit upgarde pintle hooks"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Mar-08	13-Jun-08	117799.92	=""	="SCANIA AUSTRALIA PTY LTD"	12-May-08 03:36 PM	

+="CN73472"	"Provision of Technology Planning & Management, Documentation including document production and copying services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Information technology consultation services"	03-Mar-08	30-Apr-08	91815.40	=""	="Dept of Finance & Administration"	12-May-08 03:39 PM	

+="CN79786"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	99176.00	=""	="VEROSSITY PTY LTD"	12-May-08 03:39 PM	

+="CN79788"	"V310009 HSEMS PROCEDURE DEVELOPMENT AND COMPLETION"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	15-Feb-08	30-Jun-08	103484.49	=""	="RAYTHEON AUSTRALIA"	12-May-08 03:39 PM	

+="CN79792"	"POC: James Ahern Contact: 02 6265 0962"	="Department of Defence"	12-May-08	="Software"	16-Nov-07	30-Mar-08	118118.66	=""	="KINETIC DEFENCE SERVICES PTY LTD"	12-May-08 03:40 PM	

+="CN79811"	"HMAS STIRLING - REDEVELOPMENT STAGE 2."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	83247.36	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 03:41 PM	

+="CN79814"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Specialty aircraft"	15-Feb-08	30-Mar-08	115707.14	=""	="ELBIT SYSTEMS LTD"	12-May-08 03:41 PM	

+="CN79825"	"Toyota Hiace Van (4 Cy) Qty: 4"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	29-Aug-08	113119.64	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:42 PM	

+="CN79838"	"Provision of Postal Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	08-Apr-08	31-Dec-08	85708.86	=""	="AUSTRALIA POST"	12-May-08 03:43 PM	

+="CN79840"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Leatherworking repairing machinery and equipment"	16-Jan-08	30-Jun-08	84592.22	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:43 PM	

+="CN79868"	"QUARANTINE FEES"	="Department of Defence"	12-May-08	="Environmental protection"	21-Apr-08	30-Jun-08	150000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	12-May-08 03:45 PM	

+="CN79869"	"Delivery of Kestrel Operating, Testing and Calibration Improvements"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	30-Jun-08	111185.00	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 03:45 PM	

+="CN79880"	"This is a financial transaction conducted in accor 445/2005 dated 08 August 2005."	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	15-Feb-08	16-Jun-08	90000.00	=""	="DEFENCE SCIENCE & TECHNOLOGY"	12-May-08 03:45 PM	

+="CN79883"	"TD047 ALR2002 INA AMPLIFIER OBSOLESCENCE"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	15-Feb-08	30-Jun-08	139912.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:46 PM	

+="CN79887-A1"	" 3114 COMBAT SYSTEM SIMULATOR URDEF RECTIFICATION "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	15-Feb-08	03-May-11	83155.80	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 03:46 PM	

+="CN79891"	"Various spare parts for Live Simulation Equipment"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	14-Feb-08	29-Aug-08	116028.00	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 03:46 PM	

+="CN79895"	"4516.19 CONDUCT CONDITION ASSESSMENT ON DIESEL SYSTEMS HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	14-Feb-08	03-Mar-08	90493.93	=""	="MTU DETROIT DIESEL AUSTRALIA"	12-May-08 03:46 PM	

+="CN79914"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	18-Mar-08	100000.00	=""	="MINTER ELLISON"	12-May-08 03:48 PM	

+="CN79930"	"Rework/Upgrade of ADP5110 Nitrogen Regulators to ADP5110A Standard"	="Department of Defence"	12-May-08	="Industrial process machinery and equipment and supplies"	27-Mar-08	30-Jul-08	90764.01	=""	="MONZ LTD"	12-May-08 03:49 PM	

+="CN79949"	"QANTAS ACCOUNT FOR DECEMBER 2007"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	13-Mar-08	139543.31	=""	="QANTAS"	12-May-08 03:51 PM	

+="CN79951"	"baseLINE TRANSACTIONAL DATA MANAGEMENT SYSTEM TRIAL - HMAS NORMAN IMPLEMENTATION"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	28-Feb-08	122083.09	=""	="RELEGEN PTY LTD"	12-May-08 03:51 PM	

+="CN79955"	"The Air Doctor to Provide Fuel Tank Entry Equipmen JSN4813C dated 02Nov07."	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	14-Feb-08	31-Mar-08	116644.00	=""	="THE AIR DOCTOR"	12-May-08 03:51 PM	

+="CN79965"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	92530.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:52 PM	

+="CN79978"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	107207.10	=""	="BLAKE DAWSON WALDRON"	12-May-08 03:54 PM	

+="CN79980"	"TECHNCIAL SERVICES"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	80475.84	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:54 PM	

+="CN79989"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	94380.00	=""	="CLAYTON UTZ"	12-May-08 03:55 PM	

+="CN80002"	"Profesional service"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	14-Feb-08	31-Dec-08	132000.00	=""	="CENTRIX - PM (AUST) PTY LTD"	12-May-08 03:56 PM	

+="CN80014-A1"	"GST for satellite services"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	12-Mar-08	16-Feb-10	135956.84	=""	="STRATOS"	12-May-08 03:57 PM	

+="CN80022"	"SITE SURVEYS OF UNITS FOR PROJECT"	="Defence Materiel Organisation"	12-May-08	="Management support services"	06-Feb-08	30-Jun-08	84700.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:58 PM	

+="CN80052"	"ENGAGEMENT OF EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Project management"	12-Dec-07	31-Mar-08	82965.04	=""	="JACOBS AUSTRALIA"	12-May-08 04:00 PM	

+="CN80072"	"external service provider"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	126233.32	=""	="ICON RECRUITMENT"	12-May-08 04:01 PM	

+="CN80084"	"External Service Provider for Project Engineering Support Manager"	="Defence Materiel Organisation"	12-May-08	="Guided missiles"	06-Feb-08	30-Jun-08	93663.50	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:02 PM	

+="CN80089"	"Engagement of ESP for Brisbane Based Sustainment Integration Engineering Services"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-09	120761.30	=""	="NOVA AEROSPACE"	12-May-08 04:02 PM	

+="CN80092"	"QANTAS RPT FLIGHTS FEB 08 CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	31-Mar-08	87469.42	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:02 PM	

+="CN80100"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	20-Nov-08	87974.13	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:02 PM	

+="CN80116"	"MISSILE LAUNCHER"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	11-Dec-07	10-Oct-08	142112.00	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 04:03 PM	

+="CN80121"	"40 mm cartridge"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	11-Dec-07	20-Feb-08	121262.68	=""	="DEFENSE TECHNOLOGY CORPORATION OF A"	12-May-08 04:04 PM	

+="CN80130"	"BACKLOG REMEDIATION PHASE 2"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Apr-08	30-Jun-08	110000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:04 PM	

+="CN73563"	"Broadcasting Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	02-May-08	82832.00	=""	="Department of Parliamentary Services"	12-May-08 04:05 PM	

+="CN80134"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	26-Feb-08	28-Feb-08	93100.00	=""	="MINTER ELLISON"	12-May-08 04:05 PM	

+="CN80139"	"Engagement of ESP for Brisbane Based Sustainment Iimplementation Engieer Supervisor"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-09	122190.20	=""	="NOVA AEROSPACE"	12-May-08 04:05 PM	

+="CN80150"	"pump out & disposals western st"	="Department of Defence"	12-May-08	="Refuse disposal and treatment"	21-Dec-07	30-Jun-08	91700.00	=""	="WANLESS WASTECORP"	12-May-08 04:05 PM	

+="CN80153"	"Tekronix 7051 Arbitary Waveform Generator (AWG)"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Dec-07	31-Jan-08	106692.30	=""	="TEKMARK AUSTRALIA PTY LTD"	12-May-08 04:06 PM	

+="CN80160"	"Undertake Rationalisation oof HMAS Melbourne RAST Piping System during IMAV 12"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-May-08	124783.69	=""	="THALES AUSTRALIA"	12-May-08 04:07 PM	

+="CN80162"	"Heritage and Archival recording"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	06-Feb-08	30-Jun-08	145790.70	=""	="WOODHEAD INTERNATIONAL"	12-May-08 04:07 PM	

+="CN73589"	"Provision of temporary non security staff for various duties"	="Department of the Prime Minister and Cabinet"	12-May-08	="Temporary personnel services"	14-Apr-08	02-May-08	85630.00	=""	="Department of Parliamentary Services"	12-May-08 04:07 PM	

+="CN80174"	"stores support for survey motor launches dec 07 and jan 08"	="Department of Defence"	12-May-08	="Marine transport"	11-Dec-07	31-Mar-08	96208.68	=""	="G A GLANVILLE & CO"	12-May-08 04:08 PM	

+="CN80178"	"Technical Communications Specialist"	="Department of Defence"	12-May-08	="Information services"	11-Dec-07	29-Feb-08	122128.60	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 04:08 PM	

+="CN80185"	"Conversion of Publications into SGML Format IAW Contract C338452"	="Department of Defence"	12-May-08	="Electronic reference material"	09-Apr-08	30-Jun-08	108034.30	=""	="BOEING AUSTRALIA LTD"	12-May-08 04:09 PM	

+="CN80210"	"INSTALL MODULES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	09-Apr-08	30-May-08	129025.81	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	12-May-08 04:11 PM	

+="CN80217"	"Comms/IT Quotation: 0210072"	="Department of Defence"	12-May-08	="Hardware"	19-Nov-07	03-Dec-07	86779.00	=""	="XSI DATA SOLUTIONS PTY LTD"	12-May-08 04:11 PM	

+="CN80223"	"Progress Claim no 10 Solomon Islands Wharf Project 127"	="Department of Defence"	12-May-08	="Transportation components and systems"	30-Nov-07	31-Dec-08	114861.88	=""	="FLETCHER KWAIMANI JOINT VENTURE"	12-May-08 04:12 PM	

+="CN80250"	"AIRFARES FOR DEFENCE MEMBERS AND SPOUSES FOR LEAVE AND COURSE TRAVEL."	="Department of Defence"	12-May-08	="Recreational aircraft"	21-Feb-08	31-Dec-08	84919.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:14 PM	

+="CN80261"	"Accommodation assessment and fitout for Contract Evaluation area"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	29-Feb-08	84480.00	=""	="DEFENCE SERVICES AUSTRALIA PTY LTD"	12-May-08 04:15 PM	

+="CN80265"	"ARTC JANUARY 2008 QANTAS STATEMENT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	13-Feb-08	07-Mar-08	106847.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:15 PM	

+="CN80269"	"REPAIR OF AIRCRAFT HANDLER"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	06-Feb-08	19-May-08	100834.90	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:16 PM	

+="CN80294"	"ACTO Liaison Support"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	14-Jul-08	137209.16	=""	="JACOBS AUSTRALIA"	12-May-08 04:18 PM	

+="CN80299"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	94925.00	=""	="KPMG"	12-May-08 04:18 PM	

+="CN80305"	"production of electronic copies of HMAS Melbourne Ships Information Boobs (SIBs)"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	15-Jun-08	91307.70	=""	="HALLMARK LOGISTICS & ENGINEERING"	12-May-08 04:18 PM	

+="CN80304"	"RAST PIPING SYSTEM RATIONALISATION HMAS SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	05-Feb-08	30-Apr-08	116953.49	=""	="THALES AUSTRALIA"	12-May-08 04:18 PM	

+="CN80307"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	91300.00	=""	="CENTRE FOR MILITARY AND VETERANS"	12-May-08 04:19 PM	

+="CN80312"	"PROVISION OF PM/CA SERVICES - ADF AIRFIELD PAVEMEN BUTTERWORTH, MALAYSIA."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	90090.00	=""	="GHD PTY LTD"	12-May-08 04:19 PM	

+="CN80332"	"Purchase 42 Laptops and 12 iP90 Printers"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	14-Apr-08	15-May-08	80412.00	=""	="PORTABLE COMPUTER SYSTEMS"	12-May-08 04:21 PM	

+="CN80350"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-May-08	95850.66	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80351"	"51FNQR PORTON BARRACKS - WORKSHOP AWNING"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	86273.00	=""	="SPOTLESS"	12-May-08 04:22 PM	

+="CN80360"	"Task Scheduling and Analysis"	="Defence Materiel Organisation"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Feb-08	30-Jun-08	104362.29	=""	="JACOBS AUSTRALIA"	12-May-08 04:23 PM	

+="CN80358"	"LADS SECURITY AND ICT NETWORK UPGRADE"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-Nov-07	30-Jun-08	86615.10	=""	="EMAK COMMUNICATIONS"	12-May-08 04:23 PM	

+="CN80365"	"MOBILE GIS MAPPING FOR TRAINING AREA INSPECTION RE TRAINING AREA MANAGEMENT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Nov-07	30-Jun-08	116440.50	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 04:23 PM	

+="CN80366"	"CIIP Claim for Symbol Generator - contract V310148"	="Defence Materiel Organisation"	12-May-08	="Hydraulic systems and components"	11-Feb-08	31-Mar-08	145421.91	=""	="AIRFLITE PTY LTD"	12-May-08 04:23 PM	

+="CN80373"	"Support for the Development of Documnetation"	="Defence Materiel Organisation"	12-May-08	="Electronic reference material"	11-Feb-08	30-May-08	99000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:24 PM	

+="CN80377"	"AIR CHTR OP ASTUTE"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	31-Dec-07	103700.00	=""	="PDL TOLL"	12-May-08 04:24 PM	

+="CN80388"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	07-Mar-08	112420.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 04:24 PM	

+="CN80394"	"HMAS Cairns Armoury Awning"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	16-Nov-07	30-Jun-08	93467.00	=""	="SPOTLESS"	12-May-08 04:25 PM	

+="CN80395"	"Integrated Logistic Support for BLD Sustainment Gp"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	24-Oct-08	111198.48	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	12-May-08 04:25 PM	

+="CN80408"	"Paper, Toilet"	="Department of Defence"	12-May-08	="Paper Materials and Products"	20-Dec-07	30-Apr-08	114015.00	=""	="MANSFIELDS PTY LTD"	12-May-08 04:25 PM	

+="CN80420"	"SHIPPING -SEA SPARROW"	="Department of Defence"	12-May-08	="Transportation components and systems"	20-Dec-07	31-Dec-07	80700.75	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 04:26 PM	

+="CN80421"	"DTS 82 RASS Testing and Training AN/TPS-77"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	14-Apr-08	28-Apr-08	117416.06	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 04:26 PM	

+="CN80434"	"AD HOC TASK 01/08 DMO SUPPORT TO 2/14 QMI LHR"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Feb-08	30-Jun-08	80542.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-May-08 04:27 PM	

+="CN80440"	"SML airconditioning upgrade"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	14-Apr-08	19-Sep-08	80073.84	=""	="G A GLANVILLE & CO"	12-May-08 04:27 PM	

+="CN80441"	"REPAIR NO.1 FREEZER UNIT HMAS KANIMBLA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jan-08	10-Feb-08	96994.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:27 PM	

+="CN80445"	"Amberley ILS Refurb"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Apr-08	30-Jun-08	115079.70	=""	="AIRSERVICES AUSTRALIA"	12-May-08 04:27 PM	

+="CN80450"	"wireless connectivity in HMAS CAIRNS - wireless shoreside equipment"	="Department of Defence"	12-May-08	="Electrical components"	14-Apr-08	30-May-08	86338.40	=""	="KAZ GROUP PTY LTD"	12-May-08 04:27 PM	

+="CN80457"	"DOUBLE TURN "WOODS MIL-DOTRETICULE""	="Department of Defence"	12-May-08	="Gun systems"	09-Jan-08	16-Jun-08	82802.22	=""	="SCHMIDT & BENDER GMBH & CO. KG"	12-May-08 04:28 PM	

+="CN80460"	"AUSMIMPS Version 2 - Project Support Services"	="Department of Defence"	12-May-08	="Management support services"	19-Dec-07	30-May-08	145800.00	=""	="DELTA MANAGEMENT CONSULTING PTY"	12-May-08 04:28 PM	

+="CN80479"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	20-Dec-07	30-Jun-08	148604.57	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:29 PM	

+="CN80524"	"Repair items for Tracking Mount for Deployable Field Trials Capability."	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	07-Feb-08	10-May-08	83322.00	=""	="VIPAC ENGINEERS & SCIENTISTS"	12-May-08 04:33 PM	

+="CN80546"	"External Service Provider for Aircraft Engineering Change Proposal"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Jan-08	23-May-08	102445.45	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:34 PM	

+="CN80549"	"Supply & Install Fuel Storage Tank"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	14-Apr-08	30-Jun-08	118734.00	=""	="FUEL INSTALLATION SERVICES"	12-May-08 04:34 PM	

+="CN80550"	"Provide deck lighting modifications"	="Department of Defence"	12-May-08	="Military watercraft"	21-Dec-07	11-Feb-08	99132.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	12-May-08 04:34 PM	

+="CN80576"	"Computers, Etc"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	09-Jan-08	23-Jan-08	89826.00	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 04:35 PM	

+="CN80582"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	117260.00	=""	="Innovative Business Computing P/L"	12-May-08 04:36 PM	

+="CN80589"	"SUPPLY AND INSTALL OF AC IN SUC CONCEN"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Apr-08	30-May-08	143780.00	=""	="THALES AUSTRALIA"	12-May-08 04:36 PM	

+="CN80594"	"Support of WFPS and DMOSS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	11-Apr-08	30-Jun-08	131810.80	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 04:36 PM	

+="CN80602"	"Development and Installation of NVIS Lighting and documentation for AS350BA Helicopter. Trial Purpos"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	08-Feb-08	11-Aug-08	82885.00	=""	="AEROSPACE AND DEFENCE PRODUCTS"	12-May-08 04:37 PM	

+="CN80616"	"Toyota Hilux Dual Cab Utility/Bull Bar 4 x 4 Turbo Qty 3"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	17-Jul-08	106212.41	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:38 PM	

+="CN80619"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	06-Aug-07	03-Sep-07	121440.00	=""	="Integral Consulting Services"	12-May-08 04:38 PM	

+="CN80622"	"Procure 10 GOBOOK MR-1 Rugged Ultra Mobile PC"	="Defence Materiel Organisation"	12-May-08	="Computer services"	08-Feb-08	29-Feb-08	98175.00	=""	="AVANTEC PTY LTD"	12-May-08 04:38 PM	

+="CN80626"	"ESp Support for JP2060PH2B"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Jan-08	30-Jun-08	110000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:38 PM	

+="CN80627"	"WASTE WATER REMOVAL"	="Defence Materiel Organisation"	12-May-08	="Industrial filtering and purification"	08-Feb-08	22-Feb-08	83529.48	=""	="TASMAN AVIATION ENTERPRISES"	12-May-08 04:39 PM	

+="CN80639"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	04-Sep-07	105248.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	12-May-08 04:39 PM	

+="CN80643"	"4516.35 HMAS ARUNTA VA CONDITION MONITORING PROPULSION DRIVE TRAIN,"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-May-08	128463.50	=""	="SVT HOLDING PTY LTD"	12-May-08 04:39 PM	

+="CN80649"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Cereal and pulse products"	09-Jan-08	31-Oct-08	116093.88	=""	="MULTI-PACK LTD"	12-May-08 04:40 PM	

+="CN80650"	"Land 58 Ph3 price variation"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	21-Dec-07	30-Jun-10	108526.76	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:40 PM	

+="CN80651"	"Professional Service Provider"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Jun-08	89999.80	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:40 PM	

+="CN80654"	"Conduct a Physical Configuration and Baseline Audit of HMAS Darwin Dwg Decks"	="Department of Defence"	12-May-08	="Military watercraft"	21-Dec-07	30-May-08	135403.08	=""	="THALES AUSTRALIA"	12-May-08 04:40 PM	

+="CN80660"	"Manage the Supply of material for the provision of SIDAII for FST WA"	="Department of Defence"	12-May-08	="Marine transport"	09-Jan-08	15-Jun-08	101554.29	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:40 PM	

+="CN80664"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Confectionary products"	09-Jan-08	30-Apr-08	80150.40	=""	="THE WRIGLEY COMPANY PTY LTD"	12-May-08 04:40 PM	

+="CN80667"	"Fibre optic cable and protecting articulated pipe"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	122485.00	=""	="MS DIVERSIFIED SERVICES"	12-May-08 04:41 PM	

+="CN80669"	"PSP"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	21-Dec-07	30-Jun-08	136752.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:41 PM	

+="CN80670"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	128075.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:41 PM	

+="CN80675"	"Collins Class TWC IPT participation"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	132000.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 04:41 PM	

+="CN80678"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-May-08	89572.49	=""	="ERNST & YOUNG"	12-May-08 04:41 PM	

+="CN80682"	"Removal of CSA 3 from HMAS RANKIN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Apr-08	02-May-08	125625.13	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:41 PM	

+="CN80687"	"MP80 Acoustic Upgrade"	="Defence Materiel Organisation"	12-May-08	="Missile subsystems"	25-Feb-08	02-Apr-08	108867.16	=""	="S.E.I. SOCIETA' ESPLOSIVI"	12-May-08 04:42 PM	

+="CN80694"	"4187 HMAS BALLARAT INCLINGING EXPERIMENT 16 - 19 APR 08"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-May-08	99155.10	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:42 PM	

+="CN80696"	"Launcher Reburbishment BA010 & BA011"	="Department of Defence"	12-May-08	="Launchers"	09-Jan-08	30-Jun-08	91850.86	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80700"	"Launcher Reburbishment"	="Department of Defence"	12-May-08	="Launchers"	09-Jan-08	30-Jun-08	93789.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80715"	"Staff Health Assessment"	="Department of Defence"	12-May-08	="Management support services"	07-Apr-08	30-Jun-08	98114.01	=""	="HEALTH FUTURES PTY LTD"	12-May-08 04:43 PM	

+="CN80716"	"JP2089Ph1 Loan of demo network monitor & M'gmt sys"	="Department of Defence"	12-May-08	="Hardware"	30-Jan-08	29-Feb-08	100428.56	=""	="AEROSYSTEMS INTERNATIONAL LTD"	12-May-08 04:43 PM	

+="CN80729"	"Guy Tensioning Equipment NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	12-May-08	="Building and Construction Machinery and Accessories"	25-Feb-08	30-Apr-08	122446.50	=""	="B B ENGINEERING PTY LTD"	12-May-08 04:44 PM	

+="CN80744"	"ESP Engagement to Review ANZAC SPO Accounting Proc Register ANZAC SPO/OUT/2008/175"	="Department of Defence"	12-May-08	="Military watercraft"	30-Jan-08	30-May-08	106299.06	=""	="ACUMEN ALLIANCE"	12-May-08 04:45 PM	

+="CN80763"	"Fuel Compressed Hexamine"	="Department of Defence"	12-May-08	="Miscellaneous drug categories"	20-Dec-07	19-Feb-08	134750.00	=""	="FAR-SIDE MARKETING LTD"	12-May-08 04:45 PM	

+="CN80796"	"ROBUST F-MURLIN LASER ENGINEERING STUDY In Accordance with SO 06/39 and the attached SOW v"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	30-Jun-08	130735.00	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:47 PM	

+="CN80821"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	16-Feb-08	113917.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:48 PM	

+="CN80849"	"Candy, hard"	="Department of Defence"	12-May-08	="Confectionary products"	18-Dec-07	30-Nov-08	95569.65	=""	="DOLLAR SWEETS COMPANY"	12-May-08 04:50 PM	

+="CN80854"	"AW50F SPARES"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	22-Feb-08	01-Sep-08	140882.10	=""	="SCHMIDT & BENDER GMBH & CO. KG"	12-May-08 04:50 PM	

+="CN80864"	"PMA MAINTENANCE"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	31-Dec-10	138747.95	=""	="LOCKHEED MARTIN AERONAUTICAL SYSTEM"	12-May-08 04:50 PM	

+="CN80866"	"Investigation of structural integrity of TACAN buildings"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	08-Apr-08	13-Jun-08	108625.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:50 PM	

+="CN80871"	"AMPS Support"	="Defence Materiel Organisation"	12-May-08	="Computer services"	22-Feb-08	30-Apr-08	84951.96	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:51 PM	

+="CN80874"	"ESP in support of inventory control"	="Department of Defence"	12-May-08	="Financial and Insurance Services"	08-Apr-08	08-Sep-08	117700.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:51 PM	

+="CN80880"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Aug-08	80544.96	=""	="C4I PTY LTD"	12-May-08 04:51 PM	

+="CN80893"	"PROVISION OF STAND AT AIRSHOW"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	18-Dec-07	29-Feb-08	132150.00	=""	="PICO AUSTRALIA PTY LTD"	12-May-08 04:52 PM	

+="CN80894"	"Hardware for Joint Planning Suite Trials"	="Department of Defence"	12-May-08	="Hardware"	08-Apr-08	15-Apr-08	90909.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:52 PM	

+="CN80906"	"CELL ASSEMBLY, OPTICAL, MOUNTING HARDWARE KIT"	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	09-Apr-08	10-Sep-08	81093.35	=""	="ITT CORPORATION"	12-May-08 04:52 PM	

+="CN80922"	"RADIO FREQUENCY ENVIRONMENT GENERATOR"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	18-Dec-07	30-Jun-09	149984.37	=""	="EWST AUSTRALIA PTY LTD"	12-May-08 04:53 PM	

+="CN80938"	"MK11 parts and accessories"	="Department of Defence"	12-May-08	="Firearms"	18-Dec-07	17-Feb-08	89423.35	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 04:54 PM	

+="CN80951"	"Scoping Study - Gould Host Computer Replacement"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	31-May-08	131032.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:54 PM	

+="CN80960"	"F89A1 MINIMI SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	17-Dec-07	01-Oct-08	141828.10	=""	="FN HERSTAL SA"	12-May-08 04:55 PM	

+="CN80964"	"HS and SML life of type study"	="Department of Defence"	12-May-08	="Marine transport"	09-Apr-08	30-Jun-08	132425.00	=""	="GHD PTY LTD"	12-May-08 04:55 PM	

+="CN80979"	"Repair of Roatary Joints"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	18-Dec-07	02-Jun-08	95693.40	=""	="LOCKHEED MARTIN CORPORATION DBA LOC"	12-May-08 04:56 PM	

+="CN80981"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	08-Apr-08	02-May-08	116913.71	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:56 PM	

+="CN80985"	"Backdated Labour CCP 001/2007v2 SO No 9207-001-052"	="Department of Defence"	12-May-08	="Aircraft"	04-Feb-08	28-Feb-08	89090.10	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:57 PM	

+="CN80990"	"RPLSS Functional Support for FFG Planned Maintenan ce Activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	27-Feb-08	31-Dec-08	137214.15	=""	="THALES AUSTRALIA"	12-May-08 04:57 PM	

+="CN81000"	"PSP Staff for DGLAP"	="Department of Defence"	12-May-08	="Management support services"	07-Apr-08	11-Apr-08	80839.68	=""	="DFP RECRUITMENT SERVICES"	12-May-08 04:58 PM	

+="CN81004"	"THE TERMS AND CONDITIONS OF THIS PURCHASE ORDER AR CONTRACT C338399"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	120626.85	=""	="BOEING COMPANY THE"	12-May-08 04:58 PM	

+="CN81024"	"285SQN SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	100590.60	=""	="THALES AUSTRALIA"	12-May-08 04:59 PM	

+="CN81030"	"Computer Equipmenmt"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	26-Feb-08	28-Mar-08	113668.46	=""	="FOUNDRY NETWORKS INC"	12-May-08 04:59 PM	

+="CN81045"	"PROCUREMENT OF QUANTITY 3 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	08-Apr-08	80266.56	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81049"	"FSS Palikir AMC trials and training support costs associated with the LEP activity"	="Department of Defence"	12-May-08	="Medical training and education supplies"	19-Dec-07	30-Jun-08	106814.74	=""	="AMC SEARCH LIMITED"	12-May-08 05:01 PM	

+="CN81055"	"DIRCM Laser thermal Model Verification Study"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	31-Aug-08	115478.00	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 05:01 PM	

+="CN81070"	"Harpoon block 1 Missile and Travel"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	01-Feb-08	30-May-08	145141.89	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:01 PM	

+="CN81074"	"FREIGHT"	="Department of Defence"	12-May-08	="Transportation and Storage and Mail Services"	01-Feb-08	30-Jun-08	127869.98	=""	="STAR TRACK EXPRESS"	12-May-08 05:02 PM	

+="CN81085"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	09-May-08	92324.09	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81086"	"This PO has been raised in accordance with Defence Services (DMOSS) Standing Offer Deed for quotatio"	="Department of Defence"	12-May-08	="Electrical components"	01-Feb-08	27-Jun-08	142945.36	=""	="JACOBS AUSTRALIA"	12-May-08 05:02 PM	

+="CN81089"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	13-Feb-08	103576.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	12-May-08 05:02 PM	

+="CN81103"	"Investegation into Obsolescence Management options of Thales D4 process"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-Apr-08	101943.55	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:03 PM	

+="CN81130"	"IDS Support Services"	="Department of Defence"	12-May-08	="Software"	04-Feb-08	30-Jun-08	104554.23	=""	="I.D.S. INGEGNERIA DEI SISTEMI SPA"	12-May-08 05:04 PM	

+="CN81140"	"procurement of two c-max side scan sonars for surv ey motor launches"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	19-Feb-08	18-Mar-08	135454.00	=""	="ATLAS HYDROGRAPHIC HOLDING"	12-May-08 05:04 PM	

+="CN81143"	"Level 9, DPS"	="Department of Defence"	12-May-08	="Software"	26-Nov-07	26-Nov-07	81180.00	=""	="SAI GLOBAL"	12-May-08 05:04 PM	

+="CN81146"	"ONYX COMPUTER SUPPORT AGREEMENT"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	31-Dec-08	119337.63	=""	="THALES AUSTRALIA"	12-May-08 05:05 PM	

+="CN81171"	"Indirect Fire/Forward Air Controller (IFACT) for the Singleton WTSS Facility."	="Department of Defence"	12-May-08	="Computer services"	26-Nov-07	28-Mar-08	95502.02	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:06 PM	

+="CN81177"	"OCEAN FREIGHT JP2070"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	31-Jan-08	108740.91	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81180"	"Provision of ILS Services"	="Defence Materiel Organisation"	12-May-08	="Water and wastewater treatment supply and disposal"	20-Feb-08	15-Aug-08	135870.97	=""	="JACOBS AUSTRALIA"	12-May-08 05:06 PM	

+="CN81181"	"FREIGHT COSTS FOR JP2070"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	31-Jan-08	89814.10	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81191"	"Turbo chargers"	="Department of Defence"	12-May-08	="Machine made parts"	26-Nov-07	30-Jun-08	113538.88	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	12-May-08 05:06 PM	

+="CN81207"	"Software - NAIPS"	="Department of Defence"	12-May-08	="Software"	23-Jan-08	17-Mar-08	133421.20	=""	="CKA TRADING PTY LTD"	12-May-08 05:07 PM	

+="CN81212"	"Satellite Equipment"	="Department of Defence"	12-May-08	="Satellites"	18-Dec-07	30-Jun-08	118206.00	=""	="TENIX DEFENCE SYSTEMS"	12-May-08 05:07 PM	

+="CN81218"	"Dynamic Media Pty Ltd to provide a promotion video"	="Department of Defence"	12-May-08	="Published Products"	23-Jan-08	30-Aug-08	98065.00	=""	="DYNAMIC MEDIA PTY LTD"	12-May-08 05:08 PM	

+="CN81235"	"PN 823489-2, RH Outboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	95278.81	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:08 PM	

+="CN81239"	"PN 823489-1, LH Outboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	94346.45	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81251"	"THIS PURCHASE ORDER IS RAISED IN ACCORDANCE WITH T CONDITIONS OF HACTS ISS CONTRACT C338392"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	23-Nov-07	30-Jun-08	87148.60	=""	="RAYTHEON AUST PTY LTD"	12-May-08 05:09 PM	

+="CN81254"	"Disconnect Coupling Jaw"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	15-Jun-09	91316.83	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:09 PM	

+="CN81282"	"DDP for LPA Oily Water Separator"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Nov-07	18-Feb-08	98064.95	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 05:10 PM	

+="CN81285"	"Implementation of a Methodology for the Calculation of an AESSO Contingency Factor."	="Department of Defence"	12-May-08	="Management advisory services"	26-Nov-07	30-Jun-08	137331.38	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	12-May-08 05:10 PM	

+="CN81292"	"CONSUMABLES FOR DEFIBRILLATOR"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	18-Feb-08	18-Apr-08	118004.59	=""	="ZOLL MEDICAL AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81293"	"Initiator Propellant XW55"	="Department of Defence"	12-May-08	="Elements and gases"	23-Jan-08	02-Jun-08	97203.23	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:11 PM	

+="CN81296"	"Testing compound of MEAO Lifing review activities"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-May-08	88000.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81305"	"EO Lifing when deployed to MEAO (Part 2)"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-May-08	84917.80	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81314"	"FTR OF MACHINE GUNS, 7.62MM, MAG58 FLEX."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	84636.20	=""	="THALES AUSTRALIA"	12-May-08 05:12 PM	

+="CN81316"	"Production of a BCSS Osolescence Plan"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	148626.50	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:12 PM	

+="CN81319"	"part 4 task 103"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Feb-08	19-Aug-08	121277.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81331"	"CONDITIONS OF CONTRACT: In accordance with the Agr November 2001. Note: In accordance with INCOTERMS"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	27-Nov-07	01-Jun-08	117878.96	=""	="FN HERSTAL SA"	12-May-08 05:13 PM	

+="CN81333"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	21-Jan-08	30-Jun-08	84926.38	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:13 PM	

+="CN81364"	"Procure NU Torque Actuators and Conttrollers for positions 5-212-3 and 5-212-4 (OEM Agent)"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	21-Dec-07	135102.00	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	12-May-08 05:15 PM	

+="CN81365-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	24-Feb-11	130845.24	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:15 PM	

+="CN81366"	"Provision of CAMM2 Data Manager"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	22-Jan-08	31-Mar-08	88891.45	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-May-08 05:15 PM	

+="CN81389-A1"	"Provide financial support to DMO"	="Defence Materiel Organisation"	12-May-08	="Public administration and finance services"	22-Feb-08	30-Jun-08	116782.77	=""	="KPMG AUSTRALIA"	12-May-08 05:16 PM	

+="CN81411"	"PROVISION OF EXPLOSIVE ORDNANCE (EO) FACILITIES FOR 2SQN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	25-Jan-08	30-Jun-08	88000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:17 PM	

+="CN81415"	"DTS No. 27 Spare TADRS Earth/Power Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	27-Nov-07	30-May-08	95738.23	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:17 PM	

+="CN81421"	"DTS No. 27 Spare TADRS Earth/Power Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	27-Nov-07	30-May-08	129473.06	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:18 PM	

+="CN81453"	"INITIATOR PROPELLANT JAU-23/A"	="Department of Defence"	12-May-08	="Explosive materials"	26-Jan-08	31-Jul-08	146458.75	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:19 PM	

+="CN81456"	"INITIATOR CARTRIDGE, TIME DELAY (WB56)"	="Department of Defence"	12-May-08	="Explosive materials"	26-Jan-08	30-Jul-08	90572.74	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:19 PM	

+="CN81469"	"VENUE HIRE & CATERING FOR DMO LEADERSHIP PROGRAMS"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	21-Feb-08	30-Jun-08	85699.98	=""	="CLIFTONS"	12-May-08 05:20 PM	

+="CN81479"	"This Purchas Order has been raised under Defence M Services (DMOSS) Standing Offer Deed for quotatio"	="Department of Defence"	12-May-08	="Electrical components"	24-Jan-08	30-Jun-08	135798.60	=""	="JACOBS AUSTRALIA"	12-May-08 05:21 PM	

+="CN81483"	"Support to JSF Industry Team"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	24-Jan-08	30-Jun-08	84480.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 05:21 PM	

+="CN81486-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	27-Jul-10	88054.04	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81498"	"Camon Pro Lense,Sony Battery +Charger, Blank media DriveUnit, Case with Foam, Camcorder, HD Colour V"	="Defence Materiel Organisation"	12-May-08	="Photographic or filming or video equipment"	21-Apr-08	12-Jun-08	80189.07	=""	="VIDEOGUYS AUSTRALIA PTY LTD"	12-May-08 05:23 PM	

+="CN81509"	"  IMPROVEMENT WORKS TO 2SQN MAINTENANCE FACILI"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	25-Jan-08	30-Jun-08	121000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:24 PM	

+="CN81522"	"CABLING"	="Defence Materiel Organisation"	12-May-08	="General building construction"	21-Apr-08	30-Jun-08	134200.00	=""	="COMPLIANCE ENGINEERING"	12-May-08 05:25 PM	

+="CN81546"	"install posmv, cmax and caris hips and sips on SMB GEOGRAPHE and SMB FANTOME modifications"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	21-Apr-08	06-May-08	120631.50	=""	="AIMTEK PTY LTD"	12-May-08 05:27 PM	

+="CN81568"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	84616.40	=""	="KAZ GROUP PTY LTD"	12-May-08 05:28 PM	

+="CN81570"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	86920.50	=""	="KAZ GROUP PTY LTD"	12-May-08 05:28 PM	

+="CN81575"	"Povision of Technical Support to the CWIS Project Test and Evaluation Activities."	="Defence Materiel Organisation"	12-May-08	="Engineering and Research and Technology Based Services"	18-Apr-08	30-Sep-08	88096.25	=""	="JACOBS AUSTRALIA"	12-May-08 05:29 PM	

+="CN81587"	"DSTO - JP00199PH1"	="Defence Materiel Organisation"	12-May-08	="Measuring and observing and testing instruments"	21-Apr-08	21-Apr-08	80979.80	=""	="DSTO-SCIENTIFIC ENGINEERING"	12-May-08 05:30 PM	

+="CN81595"	"ANTENNA"	="Defence Materiel Organisation"	12-May-08	="Fuel for nuclear reactors"	19-Apr-08	02-Oct-08	85992.22	=""	="CHELTON INC"	12-May-08 05:30 PM	

+="CN81612"	"COMPLETE ALIGMENT 1C MPDE HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	06-Jun-08	90352.35	=""	="GTSA ENGINEERING"	12-May-08 05:32 PM	

+="CN81613"	"Breakdown of MRGB ACX0616"	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	22-Feb-08	102062.38	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 05:32 PM	

+="CN81620"	"Rock bore from marker E1452374 to E145277 for fibre link from Bohle River to Speed Creek"	="Department of Defence"	12-May-08	="Mining and Well Drilling Machinery and Accessories"	13-Dec-07	31-Mar-08	99024.20	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 05:33 PM	

+="CN81621"	"CONSULTNT"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	31-Dec-07	94099.49	=""	="HELMSMAN INTERNATIONAL PTY LTD"	12-May-08 05:33 PM	

+="CN81622"	"M81 Igniter"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	13-Dec-07	30-Jun-09	92556.79	=""	="MAST TECHNOLOGY INC"	12-May-08 05:33 PM	

+="CN81624"	"Scoping for DoD CADAS messaging service"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	13-Dec-07	22-Jan-08	90055.90	=""	="AIRSERVICES AUSTRALIA"	12-May-08 05:34 PM	

+="CN81626"	"DISASSEMBLY OF MAIN ROTOR GEARBOX"	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	21-Mar-08	134665.15	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 05:34 PM	

+="CN81637"	"SPALL KIT-IMTV AND SPALL KIT-CV KIT"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	17-Dec-07	18-Feb-08	135751.09	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:35 PM	

+="CN81658"	"External Service Providers"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	111029.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:38 PM	

+="CN81660"	"Repair of TEODOR -Heavy Remote Positioning Vehicle (HPRV) - Echidna Replacement"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Dec-07	14-Jan-08	89943.60	=""	="XTEK LTD"	12-May-08 05:38 PM	

+="CN81663"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	14-Dec-07	30-Apr-08	99996.38	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:38 PM	

+="CN81676"	"CENTER SECTION, ALS"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	15-Dec-07	14-Nov-08	94311.16	=""	="GENERAL DYNAMICS ARMAMENT AND TECHN"	12-May-08 05:41 PM	

+="CN81688"	"TD007 - INTERGRATION OF SOFTWARE DEVELOPMENT ENVIR"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	31-May-08	94067.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:42 PM	

+="CN81690"	"PTR Storage and Maintenance"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Dec-07	30-Jan-08	85294.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 05:42 PM	

+="CN81705"	"Battery, 3.6V, 2.0Ah, Primary Lithium-thionyl Chloride (Li-SOCI2), Power Type AA size spiral cel"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	10-Dec-07	29-Feb-08	95700.00	=""	="EYLEX PTY LTD"	12-May-08 05:44 PM	

+="CN81711"	"Satellite Coordination Representative"	="Department of Defence"	12-May-08	="Satellites"	10-Dec-07	30-Jun-08	106219.68	=""	="TELECOMM STRATEGIES"	12-May-08 05:45 PM	

+="CN81717"	"THIS CONTRACT IS RAISED IN ACCORDANCE WITH G.W.E.O TEMPLATES WITH EXCEPTIONS SPECIFIED AND APPROVED"	="Department of Defence"	12-May-08	="Aircraft emergency systems"	07-Dec-07	30-May-09	94547.64	=""	="UNIVERSAL PROPULSION COMPANY INC"	12-May-08 05:46 PM	

+="CN81724"	"Jack, Aircraft, 12 Ton"	="Department of Defence"	12-May-08	="Aircraft equipment"	06-Dec-07	30-Apr-08	142774.50	=""	="FORDHAM ENGINEERING PTY LTD"	12-May-08 05:47 PM	

+="CN81725"	"NACC Aquisition Workforce Support"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	06-Dec-07	27-Jun-08	148500.00	=""	="PS MANAGEMENT CONSULTANTS"	12-May-08 05:47 PM	

+="CN81731"	"Operations Personnel Tracking System"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	31-Jan-08	100762.75	=""	="BALL SOLUTIONS GROUP PTY LTD"	12-May-08 05:48 PM	

+="CN81749"	"GWEO Engineering Training Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	31-Mar-08	83776.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:50 PM	

+="CN81751"	"Teamcenter consultancy - Nexus enhancements"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-May-08	135641.55	=""	="PLM SERVICES PTY LTD"	12-May-08 05:50 PM	

+="CN81755"	"Housing, guided missile"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	12-Dec-07	14-Jul-08	100478.07	=""	="MARVIN ENGINEERING CO INC"	12-May-08 05:51 PM	

+="CN81764"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	10-Mar-08	10-Mar-08	124336.35	=""	="DEXUS Property Group"	12-May-08 07:33 PM 

--- /dev/null
+++ b/admin/partialdata/11Jun2008to13Jun2008valto.xls
@@ -1,1 +1,511 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN90173-A1"	" Engagement of Accounting Contractor "	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	100939.00	="08.074"	="WHK Pty Ltd"	11-Jun-08 07:41 AM	

+="CN90174"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	27452.08	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:46 AM	

+="CN90176"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	12193.61	=""	="LANDROVER"	11-Jun-08 07:49 AM	

+="CN90178"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	22-Apr-08	22-May-08	47379.15	=""	="RGM"	11-Jun-08 07:49 AM	

+="CN90177"	"Repair of Black Hakw Gas turbine engine. Impellor change out on Cold Section GE-C-013277. "	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	10-Jun-08	30-Jun-08	155533.00	=""	="Sikorsky Aircraft Australia Limited"	11-Jun-08 07:51 AM	

+="CN90180"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	32403.21	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:52 AM	

+="CN90181"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	22-Apr-08	22-May-08	18168.28	=""	="RGM"	11-Jun-08 07:55 AM	

+="CN90182"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	11686.53	=""	="LANDROVER"	11-Jun-08 07:55 AM	

+="CN90183"	"Repair of Shaft Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	10-Jun-08	24-Jun-08	10359.86	=""	="Sikorsky Aircraft Australia"	11-Jun-08 07:57 AM	

+="CN90184"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	16-Apr-08	16-May-08	49102.30	=""	="RGM"	11-Jun-08 07:58 AM	

+="CN90185"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	10-Jul-08	46131.53	=""	="LAND ROVER AUSTRALIA"	11-Jun-08 07:58 AM	

+="CN90186"	"VEHICLE REPAIRS"	="Department of Defence"	11-Jun-08	="Motor vehicles"	20-Feb-08	20-Mar-08	21878.03	=""	="FB AUTOS"	11-Jun-08 08:01 AM	

+="CN90188"	"Repair of Gearbox Module"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Feb-08	10-Sep-08	105600.00	=""	="Rosebak Engineering"	11-Jun-08 08:06 AM	

+="CN90190"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	11-Jun-08	30-Jun-08	12853.48	=""	="sikorsky aircraft australia ltd"	11-Jun-08 08:24 AM	

+="CN90192"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jun-08	29-Jul-08	11297.54	=""	="Land Rover AUSTRALIA"	11-Jun-08 08:45 AM	

+="CN90193"	"Development of a Discussion Paper - Review of Higher Education"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	10-Apr-08	30-Jun-08	73480.00	="PRN19335"	="PHILLIPSKPA PTY LTD"	11-Jun-08 08:45 AM	

+="CN90194"	"Investigation"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	27-Nov-07	30-Jun-08	11137.50	="PRN19513"	="HBA CONSULTING"	11-Jun-08 08:46 AM	

+="CN90195-A1"	"Power and Cabling invoices for National Office 2007/2008"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="General building construction"	01-Aug-07	31-Jul-08	20584.23	="PRN19897"	="INTRAVISION PTY LTD"	11-Jun-08 08:46 AM	

+="CN90196-A2"	"Good Health - Great Futures Program"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	09-May-08	30-Jun-08	55000.00	="PRN19714"	="HEALTH FUTURES PTY LTD"	11-Jun-08 08:46 AM	

+="CN90197"	"Training Strategy Workshops"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	45092.00	="PRN19786"	="NETWORK SA"	11-Jun-08 08:47 AM	

+="CN90198"	"Fit out alterations DEEWR Adealide Level 5 115 Grenfell Street"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="General building construction"	17-Mar-08	06-Jun-08	14996.30	="PRN19617"	="BRUCE INTERIORS and CONSTRUCTIONS"	11-Jun-08 08:47 AM	

+="CN90199"	"Membership - Aust Employers' Network on Disability"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Organisations and Clubs"	01-Mar-08	28-Feb-09	11000.00	="PRN19504"	="EMPLOYERS MAKINGA DIFFERENCE INC"	11-Jun-08 08:47 AM	

+="CN90200"	"Facilitation of Public Relations sessions at Career Advice Australia Conferences 2008"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	20-Jun-08	14442.00	="PRN19107"	="STARR PUBLIC RELATIONS"	11-Jun-08 08:47 AM	

+="CN90201"	"Provision of contract cataloguing services"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Library"	05-May-08	09-Jan-09	11704.00	="PRN19426"	="LYNN FARKAS INFORMATION SERVICES"	11-Jun-08 08:48 AM	

+="CN90191"	"Annual Subscription for access to Information Retrieval Databases"	="Family Court of Australia"	11-Jun-08	="Data base management system software"	22-May-08	30-Jun-08	10506.54	=""	="RMIT Publishing"	11-Jun-08 08:48 AM	

+="CN90202"	"Facilitator"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Education and Training Services"	23-May-08	30-Jun-08	11400.00	="PRN19779"	="NOUS"	11-Jun-08 08:48 AM	

+="CN90203"	"Digital marketplace - extended consultancy"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	05-May-08	13-Jun-08	20250.00	="PRN18993"	="EDUCATION.AU LIMITED"	11-Jun-08 08:48 AM	

+="CN90204"	"Meeting Rooms and accommodation for Australian Apprenticeships Roundtable"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	33000.00	="PRN19419"	="NOVOTEL CANBERRA"	11-Jun-08 08:48 AM	

+="CN90206-A1"	"Review of Policy Component for Australian Apprenticeships Roundtable"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	07-Mar-08	30-Jun-08	35000.00	="PRN19903"	="JOANNE MALPAS"	11-Jun-08 08:48 AM	

+="CN90207"	"Study in Australia Advertisement with Good Universities Guide"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	30-Apr-08	30-Jun-08	10945.00	="PRN19491"	="HOBSONS AUSTRALIA PTY LIMITED"	11-Jun-08 08:48 AM	

+="CN90208"	"Australian Apprenticeship Roundtable Facilitator"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	23-May-08	19-Dec-08	75000.00	="PRN18728"	="YOUTH 2 YOUTH"	11-Jun-08 08:49 AM	

+="CN90209"	"Venue hire and Accommodation for Ministers Awards"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	04-Sep-08	33850.00	="PRN19651"	="HYATT HOTEL CANBERRA"	11-Jun-08 08:49 AM	

+="CN90210"	"Career Advice Australia (CAA) State Conferences to be held in five states/territories"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	72670.00	="PRN18656"	="NOVOTEL ST KILDA"	11-Jun-08 08:50 AM	

+="CN90211-A1"	"Career Advice Australia (CAA) State Conferences to be held in five states/territories"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Meeting facilities"	01-Apr-08	30-Jul-08	72400.00	="PRN18656"	="QP MANAGEMENT PTY LIMITED"	11-Jun-08 08:50 AM	

+="CN90212"	"Presentation of bitesized workshops at CAA Conferences"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	40000.00	="PRN19449"	="COMMUNICORP PTY LTD"	11-Jun-08 08:50 AM	

+="CN90213"	"Editing and preparation for web publication of the Better Practice Guide : ICT in Schools"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	23-Apr-08	30-Jun-08	10450.00	="PRN19422"	="WORDSWORTH WRITING PTY LTD"	11-Jun-08 08:50 AM	

+="CN90214-A2"	"School Attendance Project - Analysis and Best Practice"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Corporate objectives or policy development"	30-May-08	30-Jun-08	525680.00	="PRN13146"	="ATELIER LEARNING SOLUTIONS PTY LTD"	11-Jun-08 08:50 AM	

+="CN90215"	"Short Term contract "IYLP""	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	31-Mar-08	30-Jun-08	47496.24	="PRN19066"	="HAYS PERSONNEL SERVICES"	11-Jun-08 08:51 AM	

+="CN90217-A1"	"Temp Staff to work in the section Process Implementation and Evaluation"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Human resources services"	01-May-08	27-Jun-08	50000.00	="PRN19865"	="SOS RECRUITMENT"	11-Jun-08 08:51 AM	

+="CN90218-A1"	"Preparation and Distribution of Child Care News"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Printed media"	01-May-08	31-Oct-08	58967.81	="PRN19492"	="NATIONAL MAILING and MARKETING P/L"	11-Jun-08 08:51 AM	

+="CN90219"	"Printing CCMS Booklet for parents FDC and in Home Care Booklet"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Printed media"	01-May-08	30-Jun-08	43445.60	="PRN19731"	="PARAGON PRINTERS"	11-Jun-08 08:52 AM	

+="CN90221-A1"	"Consultation for the establishment of a Child Care Hub in Maningrida"	="Department of Education Employment and Workplace Relations"	11-Jun-08	="Marketing and distribution"	29-Apr-08	31-Aug-08	83508.15	="PRN19718"	="ACIL TASMAN"	11-Jun-08 08:52 AM	

+="CN90224"	"Maintenance Feee for Library Management System"	="Family Court of Australia"	11-Jun-08	="Computers"	22-May-08	30-Jun-08	11094.34	=""	="Optimus Prime Pty Ltd"	11-Jun-08 09:00 AM	

+="CN90226"	"Legal services"	="National Competition Council"	11-Jun-08	="Legal services"	14-May-08	30-May-08	13300.00	=""	="Australia Government Solicitor"	11-Jun-08 09:10 AM	

+="CN90228"	"Passenger transport"	="Australian Competition and Consumer Commission"	11-Jun-08	="Passenger transport"	01-Jun-08	30-Jun-08	18302.61	=""	="Lease Plan Australia Ltd"	11-Jun-08 09:12 AM	

+="CN90229"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	04-Jun-08	28-Feb-09	165000.00	="RFT2007-04"	="AM Actuaries Pty Ltd"	11-Jun-08 09:12 AM	

+="CN90230"	"Storage"	="Australian Competition and Consumer Commission"	11-Jun-08	="Storage"	05-Jun-08	30-Aug-08	50495.12	=""	="Recall Information Management"	11-Jun-08 09:12 AM	

+="CN90231"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Telecommunications media services"	14-Apr-08	13-May-08	12187.43	=""	="Telstra"	11-Jun-08 09:12 AM	

+="CN90232"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	15-May-08	15-May-08	13594.41	=""	="Xact Project Consultants"	11-Jun-08 09:12 AM	

+="CN90233"	"Human resources services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Human resources services"	17-May-08	23-May-08	13016.08	=""	="Jane Devereux Pty Ltd"	11-Jun-08 09:13 AM	

+="CN90234"	"LEGAL SERVICES"	="Australian Competition and Consumer Commission"	11-Jun-08	="Legal services"	22-Apr-08	17-May-08	14400.00	=""	="Cameron Moore"	11-Jun-08 09:13 AM	

+="CN90235"	"Computer Services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer services"	27-May-07	01-Jul-08	194398.27	=""	="Getronics Australia"	11-Jun-08 09:13 AM	

+="CN90237"	"Proprty Lease Larrakeyah NT"	="Australian Federal Police"	11-Jun-08	="Lease and rental of property or building"	11-Aug-07	11-Aug-08	33350.00	=""	="Bertram Birk"	11-Jun-08 09:17 AM	

+="CN90238"	"Management advisory services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Management advisory services"	04-Jun-08	21-Jul-08	76000.00	=""	="WIK Wissenschaftliches institute"	11-Jun-08 09:18 AM	

+="CN90240"	"Computer services"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer services"	18-Apr-08	21-Jun-08	10360.00	=""	="ASG Group LTD"	11-Jun-08 09:23 AM	

+="CN90241-A1"	"Software Maintenance for McAfee Total Protection Enterprise, One Year Gold Support"	="Family Court of Australia"	11-Jun-08	="Computers"	08-Jun-08	07-Jun-09	27747.72	=""	="Dimension Data"	11-Jun-08 09:27 AM	

+="CN90243"	"Proprty lease Vanuatu"	="Australian Federal Police"	11-Jun-08	="Lease and rental of property or building"	15-Mar-06	14-Mar-08	57600.00	=""	="Ritas Holdings"	11-Jun-08 09:28 AM	

+="CN90244"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	11-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	10450.00	=""	="Dell Australia"	11-Jun-08 09:31 AM	

+="CN90250"	"PHOTOCOPIER FAX"	="Australian Taxation Office"	11-Jun-08	="Office Equipment and Accessories and Supplies"	05-Jun-08	26-Jun-08	15910.40	=""	="Toshiba Australia Pty Ltd"	11-Jun-08 09:53 AM	

+="CN90251"	"1 X ES4520 COLOUR PHOTOCOPIER/FAX ENABLED"	="Australian Taxation Office"	11-Jun-08	="Office Equipment and Accessories and Supplies"	05-Jun-08	05-Jun-08	15910.40	=""	="Toshiba Australia Pty Ltd"	11-Jun-08 09:53 AM	

+="CN90252"	"10 X TUB 2 SEATER SUSTAINABLE LIVING 20 X TUB 1 SEATER SUSTAINABLE LIVING CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	05-Jun-08	05-Jun-08	19154.44	=""	="KLEIN BUSINESS FURNITURE"	11-Jun-08 09:53 AM	

+="CN90253"	"Wireless Headset GN9350 for Client Account Service"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	04-Jun-08	30-Jun-08	291819.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90254"	"50 x WAVE TYPIST HIGH BACK CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	04-Jun-08	04-Jun-08	16911.40	=""	="STURDY COMPONENTS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90255"	"16 X EXECUTIVE BLACK LEATHER CHAIRS"	="Australian Taxation Office"	11-Jun-08	="Furniture and Furnishings"	04-Jun-08	04-Jun-08	14621.38	=""	="STURDY COMPONENTS PTY LTD"	11-Jun-08 09:53 AM	

+="CN90256"	"GN9350 Wireless headsets for Call Centre Staff"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	79200.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90257"	"GN9350 Wireless headsets for S&ME client contact"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	15444.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90258"	"ACCOMMODATION"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	05-Jun-08	06-Jun-08	13427.50	=""	="VIBE HOTEL RUSHCUTTERS"	11-Jun-08 09:54 AM	

+="CN90259"	"WIRELESS PREMIUM DIGITAL"	="Australian Taxation Office"	11-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	05-Jun-08	32472.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	11-Jun-08 09:54 AM	

+="CN90260"	"LEGAL COSTS"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	21330.32	=""	="LIST A BARRISTERS"	11-Jun-08 09:55 AM	

+="CN90261"	"LEGAL COSTS"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	30720.92	=""	="LIST A BARRISTERS"	11-Jun-08 09:55 AM	

+="CN90262"	"RENT"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	26-May-08	02-Jun-08	12540.00	=""	="L J HOOKER CANBERRA CITY"	11-Jun-08 09:55 AM	

+="CN90263"	"COURSES"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	22-May-08	02-Jun-08	11825.00	=""	="Australian Public Service"	11-Jun-08 09:55 AM	

+="CN90264"	"TRAINING"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	27-May-08	02-Jun-08	16665.00	=""	="SPACETIME RESEARCH PTY LTD"	11-Jun-08 09:55 AM	

+="CN90265"	"CONSULTANCY"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	02-Jun-08	23249.54	=""	="WALTER TURNBULL PTY LTD"	11-Jun-08 09:55 AM	

+="CN90266"	"RENT"	="Australian Taxation Office"	11-Jun-08	="Travel and Food and Lodging and Entertainment Services"	23-May-08	02-Jun-08	14796.86	=""	="BROGAN PRESTIGE PROPERTIES P/L"	11-Jun-08 09:55 AM	

+="CN90268"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	29-Jul-08	333355.00	=""	="ASM PROFESSIONAL SERVICES PTY LTD"	11-Jun-08 09:56 AM	

+="CN90269"	"Course: MQ20AU WebSphere MQ"	="Australian Taxation Office"	11-Jun-08	="Education and Training Services"	15-May-08	29-May-08	28160.00	=""	="IBM AUSTRALIA LIMITED"	11-Jun-08 09:56 AM	

+="CN90267"	"Provision of leased computers"	="Australian Federal Police"	11-Jun-08	="Computer services"	28-Nov-02	27-Nov-07	1762591.60	=""	="Dell Financial Services"	11-Jun-08 09:57 AM	

+="CN90271"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	11-Apr-08	30-Jun-08	227592.00	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90272"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	02-Jun-08	30-Jun-08	132165.00	=""	="DEGISOFT CONSULTING PTY LTD"	11-Jun-08 09:58 AM	

+="CN90273"	"IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	02-Sep-08	60865.20	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90274"	"RFT 018-2007 IT Contractor"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	01-Jun-09	199056.00	=""	="COMPAS PTY LTD"	11-Jun-08 09:58 AM	

+="CN90275"	"IT Contractor Extension"	="Australian Taxation Office"	11-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	19-Dec-08	86130.00	="RFT 041-2006"	="PEOPLEBANK AUSTRALIA PTY LTD"	11-Jun-08 09:59 AM	

+="CN90280"	" Overwrite Kits for Hard Disk Drives. "	="Family Court of Australia"	11-Jun-08	="Printer and photocopier and facsimile accessories"	11-Jun-08	30-Jun-08	10620.45	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:40 AM	

+="CN90281"	"Multi Function Devices for Hobart registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	21078.40	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:47 AM	

+="CN90283"	"Multi Function devices for Sydney Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	11187.33	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:53 AM	

+="CN90284"	"Multi Function Devices for Parramatta Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	22913.73	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 10:59 AM	

+="CN90285"	"Multi Function devices for Melbourne Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-Jun-08	30-Jun-08	12696.17	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:04 AM	

+="CN90286"	"Multi Function Devices for Dandenong Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	23093.85	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:10 AM	

+="CN90287"	"Multi Function Devices for Wollongong Registry"	="Family Court of Australia"	11-Jun-08	="Photocopiers"	20-May-08	30-Jun-08	12569.44	=""	="Kyocera Mita Pty Ltd"	11-Jun-08 11:15 AM	

+="CN90288"	"Repair of Intermediate Gearbox"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	30-Jun-08	45356.29	=""	="Sikorsky Aircraft Australia"	11-Jun-08 11:17 AM	

+="CN90289"	"Design Consultancy, CJ Office Melbourne Registry"	="Family Court of Australia"	11-Jun-08	="Refurbishing services"	16-Oct-07	30-Jun-08	12210.00	=""	="Helen Ericson Design Pty Ltd"	11-Jun-08 11:28 AM	

+="CN90292"	" VEHICLE REPAIRS "	="Department of Defence"	11-Jun-08	="Motor vehicles"	06-May-08	06-Jun-08	10228.68	=""	="GRAEME A MCLEOD"	11-Jun-08 12:11 PM	

+="CN90296"	"a/c engine spares:5365-01-089-4114 spacer, qty 2. 2840-01-089-4123 spoiler, qty 1. 2840-01-089-4130 synchronizing ring, qty 5. 2840-01-089-4129 ring, qty5. 3020-01-095-7460 gear, qty 1. 2840-01-241-7467 shroud, qty 1. 2840-01-362-4936 shaft, qty 1. 2840-01-444-7757 shaft, qty 1."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	173621.24	=""	="asia pacific aerospace"	11-Jun-08 12:36 PM	

+="CN90297"	"a/c engine spares:5310-01-097-99933 washer, qty 320. 5310-01-102-8856 nut, qty 40. 5310-01-090-3076 washer, qty109.5306-01-089-5983 bolt, qty 85. 5306-01-101-9855 bolt, qty40. 5306-01-101-9854 bolt, qty 70. 2840-01-087-1687 lever, qty 257. 5310-01-089-4325, qty 5."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	30780.33	=""	="asia pacific aerospace"	11-Jun-08 12:50 PM	

+="CN90293-A1"	" Strategic Advice to the CIO  "	="Australian Taxation Office"	11-Jun-08	="Information technology consultation services"	10-Jun-08	18-Jul-08	197200.85	=""	="Booz & Company"	11-Jun-08 12:53 PM	

+="CN90298"	"a/c engine spares:5310-01-091-9156 nut, qty 155. 5310-01-059-4328 washer, qty 5. 2840-01249-1069 seal, qty 4. 5310-01-280-9848 nut, qty 4. 2840-01-089-4127 seal, qty 5. 2840-01-173-7128, qty 5. 2840-01-324-2232 seal, qty 5. 5306-01-137-5733 bolt, qty 1."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	98523.46	=""	="asia pacific aerospace"	11-Jun-08 01:01 PM	

+="CN90301"	"a/c engine spares:2840-01-346-4857 spacer, qty 5. 2840-01-443-6873 vane, qty 170. 2840-01-114-0956 vane, qty 30. 2840-01-112-3096 vane, qty 30. 2840-01-443-6874 vane, qty 100. 2840-01-315-0782, qty 5.5331-00-166-1036 o-ring, qty 10. 5331-00-166-8391 o-ring, qty 5. 5331-00-166-8395 o-ring, qty 5. "	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	320035.32	=""	="asia pacific aerospace"	11-Jun-08 01:11 PM	

+="CN90302"	"a/c engine spares: key, qty 5. sleeve, qty 4. ring, qty 2. vane, qty 30."	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	23-Apr-08	20-Jun-08	57266.51	=""	="asia pacific aerospace"	11-Jun-08 01:20 PM	

+="CN90304"	"Repair of Inlet Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	05-Jul-08	35827.97	=""	="Sikorsky"	11-Jun-08 01:29 PM	

+="CN90305-A1"	"Repair of Gearbox Transmission Assy"	="Defence Materiel Organisation"	11-Jun-08	="Aircraft"	05-Jun-08	30-Jun-08	58314.11	=""	="Sikorsky Aircraft Australia"	11-Jun-08 01:43 PM	

+="CN90306-A1"	"Provision of cleaning services to the Windsor premises of CRS Australia."	="CRS Australia"	11-Jun-08	="General building and office cleaning and maintenance services"	01-Jul-07	30-Jun-09	12105.00	=""	="T & B Cleaning Services"	11-Jun-08 01:47 PM	

+="CN90308"	"R1 SERVICE TO A15-103"	="Defence Materiel Organisation"	11-Jun-08	="Military rotary wing aircraft"	11-Jun-08	30-Oct-08	275000.00	=""	="BAE SYSTEMS"	11-Jun-08 02:19 PM	

+="CN73480"	" COMMUNICATIONS TRAINING "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Education and Training Services"	01-Apr-08	01-Apr-08	13200.00	=""	="PRESENTATIONSPLUS"	11-Jun-08 02:44 PM	

+="CN90300"	"Quarterly maintenance support payment for CHIRplus broadcast planning system."	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-Jun-08	22-Sep-08	43302.00	=""	="Rohde & Schwarz (Aust) Pty Ltd"	11-Jun-08 03:13 PM	

+="CN90290"	"Maintenance and update of NETCAT Program"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Integrated maintenance information systems"	02-Mar-08	01-Mar-09	11200.20	="06ACMA085"	="Netcat.Biz Pty Ltd"	11-Jun-08 03:18 PM	

+="CN90162"	"Certificate 4  in Government Investigation Course pe"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Educational certificates or diplomas"	02-Jun-08	13-Jun-08	43518.80	="05 ACMA007"	="KPS & Associates Pty Ltd"	11-Jun-08 03:20 PM	

+="CN90161"	"Supply and Install two strings of 36 JTT 12v620 batteries Quote No. CS04528"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Power supply units"	01-May-08	30-May-08	11926.20	=""	="Thycon Industrial Pty Ltd"	11-Jun-08 03:21 PM	

+="CN90160-A1"	"Provision of Procurement Policy and Project Management services"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Strategic planning consultation services"	29-May-08	30-Jun-09	79629.55	="07ACMA075"	="Unity Consulting Pty Ltd"	11-Jun-08 03:25 PM	

+="CN90159"	"Research into international regula of advertising, sponsorship and commercial disclosure in commercial radio."	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Market research"	26-May-08	30-Jun-08	43620.00	="07 ACMA 077"	="University of Technology Sydney"	11-Jun-08 03:27 PM	

+="CN90152"	"Consultant to Upgrade Data base Text catalogue and Migrate data"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Library or documentation services"	14-May-08	30-Jun-08	17600.00	="07ACMA060"	="Trimagic Software Pty Ltd"	11-Jun-08 03:29 PM	

+="CN90147"	"COGNOS reporting for Industry Monitoring Section"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Business function specific software"	16-May-08	16-May-08	16294.30	=""	="Cognos Pty Ltd"	11-Jun-08 03:32 PM	

+="CN90141"	"Course Fees for 9 people Certificate level 4, Government Investigation Course, plus expenses"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Educational certificates or diplomas"	25-Mar-08	24-Apr-08	35411.00	="05 ACMA 007"	="KPS and Associates Pty Ltd"	11-Jun-08 03:38 PM	

+="CN90131"	"ACMA Client Satisfaction Survey"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Sampling surveys"	22-May-08	21-Nov-08	73147.00	="07ACMA057"	="Orima Research Pty Ltd"	11-Jun-08 03:41 PM	

+="CN90323"	"Design Facilitation - 2008 LB&I Leadership Conference"	="Australian Taxation Office"	11-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	18-Jun-08	12430.20	=""	="ThinkPlace Pty Ltd as trustee for ThinkPlace Trust"	11-Jun-08 03:46 PM	

+="CN90130-A1"	"Consulting Services for 'Cyber Safety and Social Networking Services' Research Project"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Consumer based research or clinics or focus groups"	30-Apr-08	08-May-09	104940.00	="06ACMA129"	="Blue Moon Research & Planning Pty Ltd"	11-Jun-08 03:47 PM	

+="CN73473"	" POSTAGE MARCH 2008 "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Post office"	04-Apr-08	04-Apr-08	13068.30	=""	="AUSTRALIA POST"	11-Jun-08 03:49 PM	

+="CN90093"	"Provision of NRS Call Minutes and Performance Audit Data 2008"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Audit services"	20-May-08	30-Jun-08	31218.00	="07ACMA070"	="Gibson Quai - AAS Pty Ltd"	11-Jun-08 03:49 PM	

+="CN90085"	"Consultation to provide Data Modelling Service for Anti Siphoning"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Data management and query software"	22-Apr-08	21-Jul-08	45375.00	="07/ ACMA 038"	="Pelion Group Pty Ltd"	11-Jun-08 03:52 PM	

+="CN73482"	"PAINTING IN VARIOUS AREAS"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Painting services"	28-Feb-08	28-Feb-08	21021.00	=""	="BESSELINK"	11-Jun-08 03:52 PM	

+="CN90079"	"Organisation & Management at 20 Consumer Congress Dialogue Sydney 23/7/08"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Conference centres"	23-Jul-08	23-Jul-08	55000.00	=""	="Communication Alliance Ltd"	11-Jun-08 03:58 PM	

+="CN90063"	"Provision of research on key issues relating to the Emergency Call Service and other National Interest Issues"	="Australian Communications and Media Authority (ACMA)"	11-Jun-08	="Temporary research and development services"	01-May-08	30-Jun-08	39820.00	="05ACMA068"	="Telcon One Pty Ltd"	11-Jun-08 04:00 PM	

+="CN73540"	"REPAIRS & PAINTING OF WINDOWS & SHUTTERS"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Painting services"	04-Apr-08	04-May-08	122629.10	=""	="SYDNEY BUILDING PROJECTS"	11-Jun-08 04:04 PM	

+="CN73524"	" INSTALLATION OF CABLES "	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Electrical cable and accessories"	21-Feb-08	21-Mar-08	10555.55	=""	="IGNITE ELECTRICAL SERVICES"	11-Jun-08 04:07 PM	

+="CN73542"	"HONDA TRX 420TM"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Motorcycles"	04-Apr-08	04-May-08	11942.00	=""	="CANBERRA MOTORCYCLE CENTRE"	11-Jun-08 04:09 PM	

+="CN90326"	"Motor Vehicle Part"	="Department of Defence"	11-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	20-Jun-08	38225.14	=""	="TENIXTOLL DEFENCE LOGISTICS PTY*"	11-Jun-08 04:12 PM	

+="CN73547"	"CASE DX40 TRACTOR"	="Office of the Official Secretary to the Governor-General"	11-Jun-08	="Truck tractors"	28-Feb-08	30-Jun-08	40500.00	=""	="SEMCO EQUIPMENT SALES"	11-Jun-08 04:13 PM	

+="CN90333"	"Cleaning services relating to the use of Parliament House for 2020 Summit"	="Department of the Prime Minister and Cabinet"	11-Jun-08	="Building cleaning services"	19-Apr-08	20-Apr-08	25741.91	=""	="Limro Cleaning SErvices"	11-Jun-08 04:51 PM	

+="CN90334"	" Cleaning/labour services for 2020 Summit "	="Department of the Prime Minister and Cabinet"	11-Jun-08	="General building and office cleaning and maintenance services"	18-Apr-08	21-Apr-08	10617.00	=""	="Canberra Queanbeyan Cleaning Services Pty Ltd"	11-Jun-08 05:03 PM	

+="CN90321"	" HEAVY B VEHICLE & TRAILER PARTS "	="Department of Defence"	12-Jun-08	="Product and material trailers"	11-Jun-08	30-Jun-08	21052.38	=""	="TERRITORY TRANSPORT SALES"	12-Jun-08 07:55 AM	

+="CN90339"	" VEHICLE REPAIRS "	="Department of Defence"	12-Jun-08	="Motor vehicles"	02-Apr-08	02-May-08	28545.00	=""	="SCRATCH IT I FIX IT"	12-Jun-08 08:13 AM	

+="CN90342"	"WELD REPAIRS TO WATERCRAFT"	="Department of Defence"	12-Jun-08	="Commercial marine craft"	31-Oct-07	31-Jul-08	11247.93	=""	="THALES AUSTRALIA"	12-Jun-08 09:04 AM	

+="CN90343"	"HOUSING AND PIN NSN 1610/008870414"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	03-May-08	24-May-08	27931.80	=""	="MILITARY AVIATION SPARES PTY LTD"	12-Jun-08 09:06 AM	

+="CN90344"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	12-Jun-08	="Aircraft"	12-Jun-08	12-Aug-08	11711.34	=""	="Sikorsky Aircraft Australia LTD"	12-Jun-08 09:15 AM	

+="CN90345"	"packaging"	="Royal Australian Mint"	12-Jun-08	="Packaging materials"	02-May-08	02-May-08	13415.63	=""	="NEXUS PRINT SOLUTIONS"	12-Jun-08 09:21 AM	

+="CN90348"	"furniture"	="Royal Australian Mint"	12-Jun-08	="Office furniture"	06-May-08	06-May-08	17793.60	=""	="INO CONTRACT FURNITURE PTY LTD"	12-Jun-08 09:29 AM	

+="CN90350"	"packaging"	="Royal Australian Mint"	12-Jun-08	="Packaging materials"	08-May-08	08-May-08	17600.00	=""	="AUSTRALIA POST BURWOOD"	12-Jun-08 09:44 AM	

+="CN90353"	"S70B Aircraft Spares"	="Defence Materiel Organisation"	12-Jun-08	="Aircraft"	09-Apr-08	09-Jan-09	24725.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	12-Jun-08 09:54 AM	

+="CN90355"	"S70B Aircraft Spares"	="Defence Materiel Organisation"	12-Jun-08	="Aircraft"	15-Apr-08	07-Oct-08	11079.55	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	12-Jun-08 10:01 AM	

+="CN90356"	"Legal Advice"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Legal services"	23-Apr-08	30-Jun-08	10021.10	=""	="Aust Government Solicitor Canberra"	12-Jun-08 10:06 AM	

+="CN90357"	"Comcar  Travel"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Passenger transport"	01-Feb-08	29-Feb-08	31526.35	=""	="COMCAR"	12-Jun-08 10:13 AM	

+="CN90358"	"SANDWICH MOUNTING NSN 2995/009277719"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	05-Jun-08	18-Dec-08	12671.25	=""	="PACIFIC AERODYNE PTY LTD"	12-Jun-08 10:14 AM	

+="CN90359"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	12-Jun-08	="Aircraft spars"	10-Jun-08	25-Jun-08	12852.51	=""	="MILSPEC SERVICES PTY LTD"	12-Jun-08 10:16 AM	

+="CN90360"	"display equipment"	="Royal Australian Mint"	12-Jun-08	="Display systems or its accessories"	08-May-08	08-May-08	13877.60	=""	="XHIBIT PTY LTD"	12-Jun-08 10:18 AM	

+="CN90361"	"Comcar - Travel"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Passenger transport"	16-May-08	13-Jun-08	35830.72	=""	="COMCAR"	12-Jun-08 10:18 AM	

+="CN90362"	"VALVE, SHUT-OFF NSN 4810/012207345"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	06-Jun-08	27-Jun-08	30330.00	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-Jun-08 10:19 AM	

+="CN90363"	"LATCH ASSEMBLY NSN: 1560/008024118"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	06-Jun-08	20-Aug-08	17187.68	=""	="MILITARY AVIATION SPARES PTY LTD"	12-Jun-08 10:24 AM	

+="CN90364"	"HOSE ASSEMBLY, NONMETALIC NSN: 4720/001066300"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	06-Jun-08	15-Aug-08	10871.10	=""	="MILITARY AVIATION SPARES PTY LTD"	12-Jun-08 10:29 AM	

+="CN90366"	"WAN Carrier and Internet Services for 12 Months"	="Australian Industrial Registry"	12-Jun-08	="Wide area network WAN maintenance or support"	22-Nov-07	06-Dec-07	1032185.46	=""	="TELSTRA"	12-Jun-08 10:35 AM	

+="CN90367"	"Computer room relocation and cabling upgrade in Perth Office"	="Australian Industrial Registry"	12-Jun-08	="Property management"	12-Dec-07	09-Jan-08	120831.26	=""	="Datatel Communications"	12-Jun-08 10:35 AM	

+="CN90368"	"Supply and install switch"	="Australian Industrial Registry"	12-Jun-08	="Network switches"	10-Jan-08	07-Feb-08	18270.39	=""	="ComputerCorp"	12-Jun-08 10:35 AM	

+="CN90369"	"Cabling of new area on level 9 Melbourne office"	="Australian Industrial Registry"	12-Jun-08	="Local area network LAN maintenance or support"	10-Jan-08	07-Feb-08	21737.00	=""	="STOWE AUSTRALIA"	12-Jun-08 10:35 AM	

+="CN90370"	"Lease of 32 photocopiers"	="Australian Industrial Registry"	12-Jun-08	="Photocopiers"	11-Jan-08	08-Feb-08	246531.38	=""	="HP FINANCIAL SERVICES"	12-Jun-08 10:35 AM	

+="CN90371"	"Cabling of computer room in Hobart office"	="Australian Industrial Registry"	12-Jun-08	="Electric power systems installation or service"	18-Jan-08	15-Feb-08	12585.00	=""	="BSH ELECTRICAL"	12-Jun-08 10:36 AM	

+="CN90372"	"Cabling of computer room in Canberra office"	="Australian Industrial Registry"	12-Jun-08	="Electric power systems installation or service"	18-Jan-08	15-Feb-08	13950.00	=""	="STOWE AUSTRALIA"	12-Jun-08 10:36 AM	

+="CN90373"	"Cabling of computer room in Darwin office"	="Australian Industrial Registry"	12-Jun-08	="Electric power systems installation or service"	18-Jan-08	15-Feb-08	30118.18	=""	="DEC INSTALLATIONS"	12-Jun-08 10:36 AM	

+="CN90374"	"Supply and fit 170 blinds on level 7 and 8 in Melbourne Office"	="Australian Industrial Registry"	12-Jun-08	="Roll up shades"	13-Dec-07	10-Jan-08	30362.00	=""	="VALTAS ENTERPRISES PTY LTD"	12-Jun-08 10:36 AM	

+="CN90375"	"AIRC and AIR design standardisation - Phase 2"	="Australian Industrial Registry"	12-Jun-08	="Branding of product naming services"	05-Feb-08	04-Mar-08	27272.73	=""	="PERKS DESIGN PARTNERS"	12-Jun-08 10:36 AM	

+="CN90376"	"Architectural Services for Melbourne Level 9 fitout"	="Australian Industrial Registry"	12-Jun-08	="Architectural services"	17-Apr-08	15-May-08	25260.00	=""	="DARYL JACKSON PTY LTD"	12-Jun-08 10:36 AM	

+="CN90377"	"Upgrade of FMIS (Finance 1) from version 10.2 to 11.4"	="Australian Industrial Registry"	12-Jun-08	="Software patches or upgrades"	06-Jun-08	04-Jul-08	55704.00	=""	="TECHNOLOGY ONE"	12-Jun-08 10:36 AM	

+="CN90378"	"Fraud Control and Corporate Service Review"	="Australian Industrial Registry"	12-Jun-08	="Internal audits"	09-Jun-08	27-Jun-08	15400.00	=""	="PKF"	12-Jun-08 10:36 AM	

+="CN90379"	"Supply and Install workstations in Library"	="Australian Industrial Registry"	12-Jun-08	="Desks"	06-Jun-08	27-Jun-08	25399.00	=""	="SCHIAVELLO"	12-Jun-08 10:36 AM	

+="CN90380"	"MVS Charges April 2008"	="Australian Industrial Registry"	12-Jun-08	="Local telephone service"	06-Jun-08	07-Jun-08	37653.42	=""	="TELSTRA"	12-Jun-08 10:37 AM	

+="CN90365"	"HOSE ASSEMBLY, NONMETALIC NSN: 4720/008147764"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	06-Jun-08	05-Aug-08	10170.88	=""	="MILITARY AVIATION SPARES PTY LTD"	12-Jun-08 10:42 AM	

+="CN90381"	"NOZZEL ASSEMBLY, FUEL NSN: 2915/006551933"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	06-Jun-08	21-Jun-08	63677.76	=""	="MILITARY AVIATION SPARES PTY LTD"	12-Jun-08 10:50 AM	

+="CN90382"	"Printing of Tax Pack 2002"	="Australian Taxation Office"	12-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Jun-08	30-Jun-08	19096.00	=""	="Pirion Printing"	12-Jun-08 10:52 AM	

+="CN90383"	"BEARING, ROLLER, CYLINDRICAL NSN: 3110/000785676"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	05-Jun-08	11-Sep-08	32910.00	=""	="FLITE PATH PTY LTD"	12-Jun-08 10:56 AM	

+="CN90384"	"SHAFT, STRAIGHT NSN: 3040/013164171"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	04-Jun-08	15-Jun-08	49900.00	=""	="FLITE PATH PTY LTD"	12-Jun-08 11:04 AM	

+="CN90385"	"Hospitality"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Banquet and catering services"	01-Mar-08	24-Apr-08	10980.00	=""	="HYATT HOTEL CANBERRA"	12-Jun-08 11:04 AM	

+="CN90386"	"    Development of CTS System - Variation    "	="Therapeutic Goods Administration"	12-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-08	21120.00	=""	="Theta Technologies Pty Ltd"	12-Jun-08 11:06 AM	

+="CN90387"	"BEARING, BALL, ANNULAR NSN: 3110/001828698"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	04-Jun-08	10-Sep-08	45020.64	=""	="FLITE PATH PTY LTD"	12-Jun-08 11:08 AM	

+="CN90388"	"security cabinate"	="Royal Australian Mint"	12-Jun-08	="Cabinets"	09-May-08	09-May-08	10002.30	=""	="BROWNBUILT PTY LTD"	12-Jun-08 11:08 AM	

+="CN90389"	"    PACS 3000 0P30 MICROPROCESSOR & SUPERVISOR SYSTEM RETROFIT FOR UNIT 2013.02. Fo's on all 6 probes    "	="Therapeutic Goods Administration"	12-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	149512.00	=""	="Getinge Aust Pty Ltd"	12-Jun-08 11:09 AM	

+="CN90390-A1"	"Software Maintenance"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Software maintenance and support"	01-Jun-08	31-May-09	17461.41	=""	="Tower Software"	12-Jun-08 11:11 AM	

+="CN90391"	"    Task 1 - Delivery of Threat Risk Assessment (TRA)    "	="Therapeutic Goods Administration"	12-Jun-08	="Public Utilities and Public Sector Related Services"	01-Apr-08	30-Jun-08	66880.00	=""	="Cybertrust Australia Pty Ltd"	12-Jun-08 11:13 AM	

+="CN90393"	"    Diverse Building Entry for ICON fibres    "	="Therapeutic Goods Administration"	12-Jun-08	="Public Utilities and Public Sector Related Services"	14-May-08	30-Jun-08	138746.30	=""	="Department of Finance and Administration"	12-Jun-08 11:15 AM	

+="CN90392"	"VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS NSN: 2840/014364065"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	04-Jun-08	10-Sep-08	15750.00	=""	="FLITE PATH PTY LTD"	12-Jun-08 11:16 AM	

+="CN90395"	"    Mercer Micro Controller upgrade for autoclave FB04    "	="Therapeutic Goods Administration"	12-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Jul-07	30-Jun-08	70799.00	=""	="S-B Austoclaves"	12-Jun-08 11:19 AM	

+="CN90394"	"NUT, SHELF-LOCKING, HEXAGON NSN: 5310/005587456"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	05-Jun-08	03-Oct-08	43394.00	=""	="AVAIL AUSTRALIA PTY LTD"	12-Jun-08 11:19 AM	

+="CN90396"	"Administrative Services"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	18000.00	=""	="HAYS PERSONNEL SERVICES (AUST)"	12-Jun-08 11:21 AM	

+="CN90397"	"    Complementary Healthcare Council expenditure for March quarter 2008    "	="Therapeutic Goods Administration"	12-Jun-08	="Public Utilities and Public Sector Related Services"	01-Jul-07	30-Jun-08	33382.14	=""	="Complementary Healthcare Council of Australia"	12-Jun-08 11:22 AM	

+="CN90398"	"REPAIR - ENGINE BUILT UP UNIT, AIRCRAFT SERIAL NO: 106208"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	11-Jun-08	11-Jun-08	10425.30	=""	="Qantas Defence Services PTY LTD"	12-Jun-08 11:23 AM	

+="CN90399"	"    Household Removal and Storage    "	="Therapeutic Goods Administration"	12-Jun-08	="Transportation and Storage and Mail Services"	01-Jan-08	31-Mar-08	12139.02	=""	="Toll Transitions"	12-Jun-08 11:25 AM	

+="CN90400"	"REPAIR - ENGINE BUILT-UP UNIT, AIRCRAFT SERIAL NO: 110443"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	12-Jun-08	12-Jun-08	104247.30	=""	="Qantas Defence Services PTY LTD"	12-Jun-08 11:27 AM	

+="CN90401"	"    Fees for Consultative Services       "	="Therapeutic Goods Administration"	12-Jun-08	="Business and corporate management consultation services"	01-Jul-07	31-Dec-07	37435.24	=""	="University of Sydney"	12-Jun-08 11:28 AM	

+="CN90403-A1"	"Contract personnel for Facilities Section"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	01-May-08	30-Jun-08	22934.34	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	12-Jun-08 11:32 AM	

+="CN90402"	"    Win Lims support contract 2008/9    "	="Therapeutic Goods Administration"	12-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-08	30-Jun-09	37675.00	=""	="Quality Systems International"	12-Jun-08 11:32 AM	

+="CN90404-A2"	"Engagement of temporary staff - Content Branch"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	13-Feb-08	03-Oct-08	54370.85	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	12-Jun-08 11:45 AM	

+="CN90405"	"    Purchase of Electronic Whiteboards    "	="Therapeutic Goods Administration"	12-Jun-08	="Office Equipment and Accessories and Supplies"	01-May-08	31-May-08	10079.58	=""	="Corporate Express Australia Ltd"	12-Jun-08 11:45 AM	

+="CN90407"	"    Temporary Employment    "	="Therapeutic Goods Administration"	12-Jun-08	="Temporary personnel services"	01-May-08	30-Jun-08	10147.50	=""	="Hays Personnel Services (Australia) Pty Ltd"	12-Jun-08 11:48 AM	

+="CN90406"	"VEHICLE REPAIRS"	="Department of Defence"	12-Jun-08	="Motor vehicles"	30-May-08	30-Jun-08	10806.72	=""	="TOWNSVILLE FORKLIFT & IND. REPAIRS"	12-Jun-08 11:49 AM	

+="CN90408"	"Learning and Development"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Management advisory services"	28-Mar-08	16-Apr-08	11957.00	=""	="Effective People Pty Ltd"	12-Jun-08 11:51 AM	

+="CN90409"	"conculting for circ blanks"	="Royal Australian Mint"	12-Jun-08	="Business intelligence consulting services"	14-May-08	14-May-08	19250.00	=""	="LANGE CONSULTING AND SOFTWARE"	12-Jun-08 11:52 AM	

+="CN90412"	"PABX/MCS Upgrade"	="Australian Securities and Investments Commission"	12-Jun-08	="Temporary information technology networking specialists"	30-Oct-07	30-Apr-08	54608.04	=""	="3D Networks"	12-Jun-08 12:08 PM	

+="CN90414"	"Contract for the provision of Information Technology services - Natural Adabas Programmer"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	30-Jan-08	30-Jun-08	69520.00	=""	="Allegro Recruitment Consulting"	12-Jun-08 12:13 PM	

+="CN90415"	"Contract for the provision of Information Technology Services - Java Programmer"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	01-Feb-08	30-Jun-08	68640.00	=""	="Allegro Recruitment Consulting"	12-Jun-08 12:18 PM	

+="CN90416"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	12-Jun-08	="Legal services"	02-Jun-08	30-Jun-08	60000.00	=""	="Lyon, Dr. Gregory"	12-Jun-08 12:25 PM	

+="CN90417"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	12-Jun-08	="Legal services"	14-Jan-08	14-Mar-08	10000.00	=""	="Katter, Dominic"	12-Jun-08 12:29 PM	

+="CN90421"	"Provision of Transcription Services"	="Australian Securities and Investments Commission"	12-Jun-08	="Transcribing services"	10-Oct-07	14-Nov-07	30210.00	=""	="The Translation Studio"	12-Jun-08 12:34 PM	

+="CN90420"	"Bathroom Upgrade Newcastle Registry"	="Family Court of Australia"	12-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-May-08	30-Jun-08	15246.00	=""	="APM (Aust) Pty Ltd"	12-Jun-08 12:35 PM	

+="CN90422-A1"	"Variation on contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	17-Apr-08	31-May-08	15488.00	=""	="Mantech International Systems Pty Ltd"	12-Jun-08 12:38 PM	

+="CN90424"	"Advice on whether there is sufficient evidence to file a CALDB application with respect to an auditor"	="Australian Securities and Investments Commission"	12-Jun-08	="Legal services"	21-Sep-07	01-Dec-07	10240.00	=""	="Speakman, Mark"	12-Jun-08 12:43 PM	

+="CN90425"	"Variation of Pre FMA Act contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	01-Apr-08	30-May-08	13552.00	=""	="G Kula Computing Pty Ltd"	12-Jun-08 12:48 PM	

+="CN90426-A1"	"Property Lease - 188 MacQuarie Street Dubbo"	="Family Court of Australia"	12-Jun-08	="Lease and rental of property or building"	14-Mar-07	13-Mar-09	240891.00	=""	="MacQuarie Commercial Property Pty Ltd"	12-Jun-08 01:01 PM	

+="CN90428"	"Temporary Employment"	="Therapeutic Goods Administration"	12-Jun-08	="Temporary personnel services"	28-Apr-08	30-Jun-08	27885.00	=""	="Frontier Group Australia Pty Ltd"	12-Jun-08 01:04 PM	

+="CN90429"	"Repair of APU"	="Defence Materiel Organisation"	12-Jun-08	="Aircraft"	12-Jun-08	12-Jul-08	71767.77	=""	="Sikorsky Aircraft Australia"	12-Jun-08 01:08 PM	

+="CN90430"	"    External Legal Services - Variation    "	="Therapeutic Goods Administration"	12-Jun-08	="Legal services"	01-Mar-08	30-Jun-08	131670.00	=""	="Australian Government Solicitor (Central Office)"	12-Jun-08 01:09 PM	

+="CN90431-A1"	"    Public relations liaison and media - Variation    "	="Therapeutic Goods Administration"	12-Jun-08	="Public Utilities and Public Sector Related Services"	01-Jul-08	30-Jun-11	829337.22	=""	="McNeice Communications Pty Ltd"	12-Jun-08 01:17 PM	

+="CN90432"	"computer hardware"	="Royal Australian Mint"	12-Jun-08	="Desktop computers"	19-May-08	19-May-08	19193.02	=""	="DELL AUSTRALIA PTY LIMITED"	12-Jun-08 01:20 PM	

+="CN90433"	"    External Legal Services    "	="Therapeutic Goods Administration"	12-Jun-08	="Legal services"	07-Apr-08	30-May-08	57172.50	=""	="Australian Government Solicitor (Central Office)"	12-Jun-08 01:25 PM	

+="CN73604"	" NEW 1R3035 COPIER "	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Photocopiers"	22-Feb-08	22-Feb-08	10421.40	=""	="CANON AUSTRALIA"	12-Jun-08 01:32 PM	

+="CN90434"	"    Review of Impairment of Internally Generated Software    "	="Therapeutic Goods Administration"	12-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	12650.00	=""	="Oakton AA Services Pty LTd"	12-Jun-08 01:32 PM	

+="CN73606"	"ELECTRIC WORK VECHICLE"	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Vehicle bodies and trailers"	20-Feb-08	30-Jun-08	16164.00	=""	="JSB EQUIPMENT PTY LTD"	12-Jun-08 01:36 PM	

+="CN90435"	"Contract Services"	="Therapeutic Goods Administration"	12-Jun-08	="Business and corporate management consultation services"	26-May-08	22-Aug-08	59400.00	=""	="SMS Consulting Gorup Limited"	12-Jun-08 01:38 PM	

+="CN73619"	"METAL EDGING, PEGS & JOINTING PLATES"	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Minerals and ores and metals"	01-Feb-08	30-Jun-08	17655.00	=""	="HASTINGS SHEET METAL"	12-Jun-08 01:39 PM	

+="CN90436-A1"	"    Implementation of Government Response to the ECCMHS Report    "	="Therapeutic Goods Administration"	12-Jun-08	="Public Utilities and Public Sector Related Services"	26-Jul-05	22-Feb-06	133789.00	=""	="Focal Point Consulting"	12-Jun-08 01:41 PM	

+="CN90437"	"    External Legal Services - Variation    "	="Therapeutic Goods Administration"	12-Jun-08	="Legal services"	01-Jul-07	30-Jun-08	50000.00	=""	="Australian Government Solicitor (Central Office)"	12-Jun-08 01:45 PM	

+="CN90438"	"VEHICLE REPAIRS"	="Department of Defence"	12-Jun-08	="Motor vehicles"	10-Jun-08	10-Jul-08	10413.21	=""	="MICKS AUTOS"	12-Jun-08 01:47 PM	

+="CN90439"	"consultancy for business intergration system"	="Royal Australian Mint"	12-Jun-08	="Business intelligence consulting services"	20-May-08	20-May-08	11258.78	=""	="OAKTON AA SERVICES PTY LTD"	12-Jun-08 01:53 PM	

+="CN90440"	"DUCT ASSEMBLY, BLEED AIR"	="Defence Materiel Organisation"	12-Jun-08	="Military transport aircraft"	14-Dec-06	16-Aug-07	235520.16	=""	="FLITE PATH PTY LTD"	12-Jun-08 01:53 PM	

+="CN90441"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	25-Mar-08	30-Jun-08	62560.00	=""	="IMI & H Pty Ltd"	12-Jun-08 02:03 PM	

+="CN90443"	"security cabinates"	="Royal Australian Mint"	12-Jun-08	="Filing cabinets or accessories"	20-May-08	20-May-08	31064.00	=""	="OAKTON AA SERVICES PTY LTD"	12-Jun-08 02:11 PM	

+="CN90444"	"Variation for the Pre FMA Act contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	12-Jun-08	="Information technology consultation services"	01-Apr-08	31-May-08	26488.00	=""	="Compitas Pty Ltd"	12-Jun-08 02:14 PM	

+="CN90446-A1"	"Super & Us Mob Indigenous Resource"	="Australian Securities and Investments Commission"	12-Jun-08	="Printed publications"	12-Nov-07	29-Feb-08	38500.00	=""	="Cultural Perspectives"	12-Jun-08 02:25 PM	

+="CN90447"	"market research study"	="Royal Australian Mint"	12-Jun-08	="Market research"	21-May-08	21-May-08	18920.00	=""	="GALAXY DP PTY LTD"	12-Jun-08 02:26 PM	

+="CN90448"	"Consulting services"	="Australian Securities and Investments Commission"	12-Jun-08	="Legal services"	19-Sep-07	18-Mar-08	11275.00	=""	="CCH Workflow Solutions"	12-Jun-08 02:31 PM	

+="CN90449"	"Contract Staff for Facilities Section"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	18-Dec-07	23-May-08	23287.40	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	12-Jun-08 02:33 PM	

+="CN90452"	"Extension of contractor services for Anti-Spam Team"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	05-Oct-07	30-Jun-08	78020.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	12-Jun-08 02:38 PM	

+="CN90451"	"Certificate IV - Financial Services - Superannuation"	="Australian Securities and Investments Commission"	12-Jun-08	="Vocational training"	30-Jan-08	14-Mar-08	10800.00	=""	="Association of Super Funds of Australia"	12-Jun-08 02:38 PM	

+="CN90450"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Computer hardware maintenance or support"	12-May-08	30-Jun-08	27700.43	=""	="Dimension Data Australia Pty Ltd"	12-Jun-08 02:45 PM	

+="CN90454"	"Contractor - for Do Not Call Register. Extension of servoces and budget."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	30-Oct-07	04-Mar-08	29377.36	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	12-Jun-08 02:46 PM	

+="CN90455"	"Contract renewal"	="Australian Securities and Investments Commission"	12-Jun-08	="Temporary personnel services"	02-Jan-08	30-Jun-08	87296.00	=""	="Bishopton Services Pty Ltd"	12-Jun-08 02:46 PM	

+="CN90456-A1"	"Delivery of 50 Results through People workshops nationwide, plus associated travel and TA."	="Centrelink"	12-Jun-08	="Vocational training"	01-Jul-08	30-Jun-10	602500.00	=""	="Ross Begbie & Associates Pty Ltd"	12-Jun-08 02:48 PM	

+="CN90457"	"tool steel"	="Royal Australian Mint"	12-Jun-08	="Steel"	22-May-08	22-Jun-08	17072.00	=""	="BOHLER UDDEHOLM (AUST) P/L"	12-Jun-08 02:49 PM	

+="CN90459-A2"	"NetInsight Web Analytics Software"	="Australian Taxation Office"	12-Jun-08	="Software"	11-Aug-08	27-Jan-12	217700.00	=""	="Stellent Australasia (NZ) Ltd"	12-Jun-08 02:57 PM	

+="CN90460"	"Upgrade Adelaide office to full IP Telephony"	="Australian Securities and Investments Commission"	12-Jun-08	="IP phones"	21-Jan-08	21-Apr-08	103424.42	=""	="3D Networks"	12-Jun-08 02:58 PM	

+="CN90461"	" wooden case "	="Royal Australian Mint"	12-Jun-08	="Packaging materials"	23-May-08	10-Oct-08	36260.40	=""	="BLUE STAR PRODUCTS P/L"	12-Jun-08 03:01 PM	

+="CN90462-A1"	"Contract staff for Information System Section. Addition of $24,948.00 to contract."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	01-Sep-07	31-Jul-08	130284.00	="06/ACMA107"	="Manpower Services (Aust) P/L"	12-Jun-08 03:02 PM	

+="CN90464"	"Staff Health and Fitness Assessments"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Health systems evaluation services"	01-Jun-08	30-Jun-08	17025.00	=""	="The Trustee for CJ Males Discretionary Trust"	12-Jun-08 03:05 PM	

+="CN90465"	"Review of Personal Security Across Centrelink Offices"	="Centrelink"	12-Jun-08	="Security and personal safety"	30-May-08	30-Jun-08	60000.00	=""	="Kellogg Brown Root Pty Ltd"	12-Jun-08 03:05 PM	

+="CN90466"	"Provision of Software Services"	="Department of Immigration and Citizenship"	12-Jun-08	="Software"	29-May-08	30-Jun-09	39386.00	=""	="Lightsource Technologies"	12-Jun-08 03:08 PM	

+="CN73622"	" TREE PRUNING "	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Pruning services or ornamental plant or bush"	01-Feb-08	28-Feb-08	13620.00	=""	="ACT ARBORCARE PTY LTD"	12-Jun-08 03:09 PM	

+="CN90468"	" Contract Staff &ndash; Information System Section. Addition of $44,044.00 to existing contract "	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	01-Sep-07	31-Jul-08	155848.00	="06/ACMA107"	="Manpower Services (Aust) P/L"	12-Jun-08 03:09 PM	

+="CN73625"	" NEW HOLDEN RODEO LESS TRADE IN "	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Motor vehicles"	23-Apr-08	23-May-08	23000.00	=""	="HIGH COUNTRY AUTOMOTIVE GROUP"	12-Jun-08 03:11 PM	

+="CN90469"	"Exercise Evaluation"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="National planning services"	30-Apr-08	19-Dec-08	45000.00	="PMC 2008 P0006"	="Knowledge Pond Pty Ltd"	12-Jun-08 03:13 PM	

+="CN73685"	" SHOWER INSTALLED INTO MALE BATHROOM "	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Renovation of buildings or landmarks or monuments"	28-Apr-08	28-May-08	11451.00	=""	="ISIS PROJECTS PTY LTD"	12-Jun-08 03:15 PM	

+="CN90472-A3"	"Temporary employee for Finance and Facilities Branch."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	05-May-07	31-Oct-08	184725.50	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	12-Jun-08 03:20 PM	

+="CN90471"	"Advertising Monitoring"	="Australian Securities and Investments Commission"	12-Jun-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Apr-09	133365.65	=""	="Commercial Monitors"	12-Jun-08 03:22 PM	

+="CN90474"	"Research into Digital Television in Australian Homes. Addition of $662.18."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Market research"	08-Nov-07	28-Mar-08	122300.18	="07/ACMA007"	="Eureka Strategic Research Pty Ltd"	12-Jun-08 03:28 PM	

+="CN90475"	"Advertisement of Programs"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Advertising"	11-Apr-08	16-Jun-08	15137.66	=""	="HMA BLAZE Pty Ltd"	12-Jun-08 03:29 PM	

+="CN90478"	"Temporary Contractor - Do Not Call Taskforce. Addition of $24,000.00"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	26-Mar-07	30-Jun-08	198000.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	12-Jun-08 03:34 PM	

+="CN90479"	" ANTENNA HOUSING ASSEMBLY; C/W HOUSING,ANTENNA SOCKET AND CONNECTING ROD "	="Defence Materiel Organisation"	12-Jun-08	="Communications Devices and Accessories"	12-Jun-08	11-Sep-08	29155.50	=""	="BAE SYSTEMS AUSTRALIA P/L"	12-Jun-08 03:34 PM	

+="CN84761"	"Mail Outs for the 'Do Not Call Register'"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Mailing services"	20-Aug-07	30-Apr-08	24024.00	=""	="Mailing Today Pty Ltd"	12-Jun-08 03:37 PM	

+="CN90482"	"3rd Quarter IT Services Charges"	="Office of the Australian Building and Construction Commissioner (ABCC)"	12-Jun-08	="Information technology consultation services"	01-Jul-07	30-Sep-07	341492.80	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	12-Jun-08 03:55 PM	

+="CN90481"	"2x V880 Support Contract"	="Australian Securities and Investments Commission"	12-Jun-08	="Computer servers"	01-Nov-07	30-Nov-07	15620.00	=""	="MCR Computer Resources"	12-Jun-08 03:56 PM	

+="CN90486"	"Contract staff for Informations Systems Section. Extension of contrcat and addition of $16,447.20"	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	01-Sep-07	30-Jun-08	161339.20	="06/ACMA107"	="Leo Microsystems Pty Ltd"	12-Jun-08 04:02 PM	

+="CN90485"	"Property Charges for September & November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	12-Jun-08	="Business administration services"	01-Sep-07	30-Nov-07	91710.12	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	12-Jun-08 04:08 PM	

+="CN90487"	"Contract Staff &ndash; Comms and Publishing. Addition of $7,000 and extension of duration."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	02-Jun-08	30-Jun-08	102600.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	12-Jun-08 04:09 PM	

+="CN90490"	"Contract Staff - ISnformation Systems Section. Addition of $124,416.00 and extension of services."	="Australian Communications and Media Authority (ACMA)"	12-Jun-08	="Temporary personnel services"	10-Sep-07	31-Dec-08	288508.00	="06/ACMA107"	="Peoplebank Australia Ltd"	12-Jun-08 04:14 PM	

+="CN90491"	"Official Gifts"	="Department of the Prime Minister and Cabinet"	12-Jun-08	="Product or gift personalisation services"	27-May-08	30-Jun-08	19391.58	=""	="Beaver Galleries"	12-Jun-08 04:22 PM	

+="CN90492"	"Engagement of Michael Bryant to assist with various Financial Statement audits."	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	22-Jun-07	10-Aug-07	30000.00	="ANAOAM2006/114"	="UHY Haines Norton"	12-Jun-08 04:24 PM	

+="CN73686"	" MEDALS "	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Medals"	22-Feb-08	15-Apr-08	21780.00	=""	="T&S SIGNCRAFT PTY LTD"	12-Jun-08 04:24 PM	

+="CN73692"	"WINDOW FURNISHINGS"	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Furniture and Furnishings"	14-Feb-08	14-Mar-08	40500.00	=""	="NEIL COLLINS & ASSOCIATES"	12-Jun-08 04:27 PM	

+="CN73693"	"WINDOW FURNISHINGS"	="Office of the Official Secretary to the Governor-General"	12-Jun-08	="Furniture and Furnishings"	14-Feb-08	14-Mar-08	42900.00	=""	="NEIL COLLINS & ASSOCIATES"	12-Jun-08 04:30 PM	

+="CN90493"	" Engagement of Trevor Vivian to assist with various Financial Statement audits. "	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	16-Jul-07	24-Aug-07	40000.00	="ANAOAM2006/114"	="MaximusSolutions Australia"	12-Jun-08 04:56 PM	

+="CN90496"	" Engagement of Susan Leyton to assist with various Financial Statement audits. "	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	20-Jul-07	10-Aug-07	21000.00	="ANAOAM2006/114"	="Michelle Minaroy Pty Limited"	12-Jun-08 05:07 PM	

+="CN90498"	"CDR028 - the provision of CD replication (of 30,000 CDs) "	="Australian Taxation Office"	12-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Jun-08	18-Jun-08	21450.00	=""	="Summit Technology Australia Pty Ltd"	12-Jun-08 05:12 PM	

+="CN90497"	"2006-07 Financial Statement audit of Seafood Services"	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	16-Jul-07	31-Oct-07	11704.00	=""	="Hopley Bone Accountants Pty Ltd"	12-Jun-08 05:15 PM	

+="CN90499"	"Pei Xu to assist with various financial statement audits."	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	18-Jul-07	24-Aug-07	25000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	12-Jun-08 05:20 PM	

+="CN90500"	"Engagement of Jade Lee to assist with various financial statement audits."	="Australian National Audit Office (ANAO)"	12-Jun-08	="Audit services"	18-Jul-07	17-Aug-07	20000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	12-Jun-08 05:25 PM	

+="CN90501"	" TEST SET SYNCHRO "	="Defence Materiel Organisation"	13-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jun-08	22-Aug-08	85272.00	=""	="SCIENTIFIC DEVICES AUST PTY LTD"	13-Jun-08 07:59 AM	

+="CN90502"	"Lease Photocopier"	="Workplace Authority"	13-Jun-08	="Printer and photocopier and facsimile accessories"	02-May-08	31-Jul-10	36272.22	=""	="Ricoh Australia (ROA)"	13-Jun-08 08:00 AM	

+="CN90503"	"Recruitment Services"	="Workplace Authority"	13-Jun-08	="Recruitment services"	26-Mar-08	02-May-08	31962.75	=""	="Dixon Appointments"	13-Jun-08 08:04 AM	

+="CN90504"	"MOTOR VEHICLE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	11-Sep-08	17735.28	=""	="Land Rover AUSTRALIA"	13-Jun-08 08:05 AM	

+="CN90505"	"Project Manage fitout."	="Workplace Authority"	13-Jun-08	="Project management"	09-May-08	30-Jun-08	325105.00	=""	="Point Project Management"	13-Jun-08 08:15 AM	

+="CN90507"	"Wrapping Machine 70mm Low Profile"	="Defence Materiel Organisation"	13-Jun-08	="Workshop machinery and equipment and supplies"	13-Jun-08	13-Jul-08	12523.50	=""	="Packstrap International"	13-Jun-08 08:23 AM	

+="CN90506"	"Transport/Freight of equipment."	="Workplace Authority"	13-Jun-08	="Bulk transporters"	09-May-08	16-May-08	12153.90	=""	="Cope Sensitive Freight"	13-Jun-08 08:26 AM	

+="CN90508"	"Fitout Services"	="Workplace Authority"	13-Jun-08	="Refurbishing services"	14-May-08	31-May-08	17754.00	=""	="Interiors Australia Pty Ltd"	13-Jun-08 08:30 AM	

+="CN90509"	"AWA Career Counselling Services"	="Workplace Authority"	13-Jun-08	="Career development services"	27-May-08	27-May-08	10000.00	=""	="Living Career"	13-Jun-08 08:33 AM	

+="CN90510"	"Development Training"	="Workplace Authority"	13-Jun-08	="Work ethics or attitude training instructional materials"	30-May-08	30-May-08	13200.00	=""	="OSA Group Pty Ltd"	13-Jun-08 08:36 AM	

+="CN90512"	"Culture Awareness Training"	="Australian Federal Police"	13-Jun-08	="Education and Training Services"	16-Jun-08	20-Jun-08	47326.40	="RFT 65-2006"	="Asian Law Group Pty Ltd"	13-Jun-08 09:11 AM	

+="CN90514-A2"	"Provision of services relating to Project Management"	="Australian Federal Police"	13-Jun-08	="Project management"	01-Jul-08	30-Jun-09	288522.00	=""	="Greythorn Pty Ltd"	13-Jun-08 09:37 AM	

+="CN90513"	"Printing of Tax Pack 2000 and 2001"	="Australian Taxation Office"	13-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Jun-08	30-Jun-08	24877.60	=""	="Pirion Printing"	13-Jun-08 09:38 AM	

+="CN90516"	" SUPPLY OF CABLE, POWER, ELECTRICAL "	="Defence Materiel Organisation"	13-Jun-08	="Power cable"	12-Jun-08	12-Aug-08	11100.00	=""	="OLEX CABLES"	13-Jun-08 09:49 AM	

+="CN90519"	"West Musgrave Gravity Survey"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	01-May-08	30-Jun-08	363423.29	=""	="Daishsat Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90520"	"As per quotation 1004287D dated 21 April 2008. FieldSpec HandHeld Pro Spectrophotometer (325-1075nm/A103002 with accessories as outlined in quote"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	01-May-08	30-Jun-08	52606.52	=""	="ASD Inc"	13-Jun-08 10:03 AM	

+="CN90521"	"ERDAS Imagine maintenance renewal"	="Geoscience Australia"	13-Jun-08	="Software"	01-May-08	07-May-08	14630.00	=""	="Paradigm Geophysical Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90522"	"ERDAS Imagine maintenance renewal"	="Geoscience Australia"	13-Jun-08	="Software"	01-May-08	15-May-08	23050.50	=""	="Leica Geosystems Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90523"	"Investigate feasability, or similar state of health monitoring, for ATWS network."	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	01-May-08	30-Jun-08	15000.00	="2007/1619"	="Lindquist Consulting Inc"	13-Jun-08 10:04 AM	

+="CN90524"	"Training credits valid from 12 Jun 2008 to 8 May 2009."	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	02-May-08	31-Dec-09	33000.00	=""	="Object Consulting Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90525"	"Repairs to underwater camera"	="Geoscience Australia"	13-Jun-08	="Computer services"	02-May-08	30-Jun-08	12484.25	=""	="Underwater Video Systems Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90526"	"PO 23606  Additional works"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	19-May-08	31-May-08	10933.18	=""	="Terratest Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90527"	"Additional Trim Licences and Maintenance"	="Geoscience Australia"	13-Jun-08	="Software"	05-May-08	19-May-08	67437.04	=""	="Tower Software"	13-Jun-08 10:04 AM	

+="CN90528"	"Complete SET3X total Station"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	06-May-08	31-May-08	16500.00	=""	="Total Survey Systems Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90529"	"Auto-injector system  - Quotation No: Q08-039 PA"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	06-May-08	31-Dec-08	26290.00	=""	="Shimadzu Scientific Instruments"	13-Jun-08 10:04 AM	

+="CN90530"	"GeoHistory Modelling - Mentelle Basin Offshore Western AustraliaContract #: GA/270408"	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	07-May-08	31-Jul-08	12089.09	=""	="TGS Geological Products and Services"	13-Jun-08 10:04 AM	

+="CN90531"	"Telecommunication Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Apr-08	30-Apr-08	65962.45	=""	="Macquarie Telecom"	13-Jun-08 10:04 AM	

+="CN90532"	"MultiPhase Kerogen kinetics on Vulcan Sub Basin source rocks - GeoS4 offer 20080502"	="Geoscience Australia"	13-Jun-08	="Professional engineering services"	07-May-08	31-Aug-08	77000.00	=""	="GeoS4 Gmbh"	13-Jun-08 10:04 AM	

+="CN90533"	"Telecommunication Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Feb-08	29-Feb-08	60903.13	=""	="Macquarie Telecom"	13-Jun-08 10:05 AM	

+="CN90534"	"Gift & Exchange Program Aust Journal of Earth Sciences Calender Year 2008"	="Geoscience Australia"	13-Jun-08	="Printed publications"	07-May-08	30-Dec-08	57970.00	=""	="Geological Society of Australia"	13-Jun-08 10:05 AM	

+="CN90535"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	01-Feb-08	30-Jun-08	15724.57	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:05 AM	

+="CN90536"	"G2367 S D Provision for Contract Staff, to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	44000.00	=""	="Peoplebank Australia Ltd"	13-Jun-08 10:05 AM	

+="CN90537"	"Software Licencing and Maintenance"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	01-Feb-08	30-Jun-08	17441.88	=""	="Aurion Corporation Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90538"	"G2362 K O Provision for Contract Staff to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	46200.00	=""	="Verossity Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90539"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	01-Mar-08	31-Mar-08	13507.45	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:05 AM	

+="CN90541"	"Invoice: SYD-07/08-141, Ref: PD04317/SYD0574 MEO Australia p/l"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	13270.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90540"	"Telecommunication Service."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Mar-08	31-Mar-08	60209.89	=""	="Macquarie Telecom"	13-Jun-08 10:05 AM	

+="CN90542"	"Parking Lease Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Printing and writing paper"	01-May-08	30-Jun-09	16767.83	=""	="S and K Car Park Management Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90543"	"Invoice: 00005430, Ref: PD04483 - 3590 duplication"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	10227.80	="2006/3933"	="SpectrumData"	13-Jun-08 10:05 AM	

+="CN90544"	"Printing Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Printing"	02-May-08	30-Jun-08	35000.00	=""	="Quantum Ideas Bureau Design House"	13-Jun-08 10:05 AM	

+="CN90545"	"RP00690 St Vidgeon transcription consisting of 988 x 9 track reels - 80% payment"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	14379.66	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	13-Jun-08 10:05 AM	

+="CN90546"	"IT Contractor Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	03-Apr-08	02-Apr-09	192192.00	=""	="Paxus"	13-Jun-08 10:05 AM	

+="CN90547"	"RPHC93 - transcription, Invoice no. 00005179"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	12166.00	="2006/3933"	="SpectrumData"	13-Jun-08 10:05 AM	

+="CN90548"	"Refurbishment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Refurbishing services"	03-Sep-07	30-Jun-08	21622.21	=""	="Elite Office Environments Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90549"	"G2359 S M Provision for Contract Staff to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	27500.00	=""	="Verossity Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90551"	"Quotation 006_CMC#: G2180 - Additional processing on the Southern Margin"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	262548.00	=""	="Fugro Seismic Imaging Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90552"	"Office Equipment and Supplies"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Office supplies"	08-May-08	05-Jun-08	12882.10	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90553"	"Onsite GoCAD Training Course x 12 people"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	41371.00	=""	="Paradigm Geophysical Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90554"	"Software and Maintenance Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	11-Feb-08	10-Feb-09	56955.82	=""	="Oracle Corporation"	13-Jun-08 10:06 AM	

+="CN90556"	"RP00945 - Transcription of Macallan 3D consisting of 294 x 3590 cartridges, Invoice: SYD-07/08-140"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	26180.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90555"	"Furniture and Fittings."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Workstations and office packages"	12-Apr-08	12-Apr-08	11092.40	=""	="Commercial Images"	13-Jun-08 10:06 AM	

+="CN90557"	"IT Contractor Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	14-Nov-08	75000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90558"	"RP00953 - Transcription of Willem 3D MSS, Invoice no. 00005343"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	31255.40	="2006/3933"	="SpectrumData"	13-Jun-08 10:06 AM	

+="CN90559"	"IT Contractor Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	15-May-09	165000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90560"	"RP00952 - transcription of Tuskfish Seismic Survey, invoice: GDA-08-076 consisting of 1292 x 3590 cartridges"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	26235.88	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	13-Jun-08 10:06 AM	

+="CN90561"	"IT Contractors Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	15-May-09	165000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90562"	"Touchpaper Service Desk Analyst"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	70345.00	=""	="Touchpaper Australasia Pty Ltd T/As Helpdesk Solutions"	13-Jun-08 10:06 AM	

+="CN90564"	"Shipment of personel effects from Hyderabad to Canberra including insurance, quote dated : 28 April 2008 (Quotation Ref: EXP/HHG/1386/4-08). Container #: Rs 237970/-"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	09-May-08	30-Jun-08	10000.00	=""	="B R Shastry"	13-Jun-08 10:07 AM	

+="CN90566"	"OGC Membership Renewal 1 July 2008 to 30 June 2009"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-09	11547.34	=""	="Open Geospatial Consortium Inc"	13-Jun-08 10:07 AM	

+="CN90567"	"Software Purchase XSI"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software"	12-May-08	30-Jun-08	12166.00	=""	="XSI Data Solutions Pty Ltd"	13-Jun-08 10:07 AM	

+="CN90568"	"Weather Compliance analysis of ERS and SAR Data scenes. Quote dated May 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	16999.99	=""	="Image Analysis & Mapping Pty Ltd"	13-Jun-08 10:07 AM	

+="CN90569"	"Computer Servers Purchase Dell"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Computer servers"	12-May-08	30-Jun-08	49776.65	=""	="Dell Computer Limited"	13-Jun-08 10:07 AM	

+="CN90571"	"Funding of AGEG Tied Grant Projects"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	31-May-08	22000.00	=""	="University of Adelaide"	13-Jun-08 10:07 AM	

+="CN90572"	"Legal fees"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Legal services"	13-May-08	30-Jun-08	12804.00	=""	="Australian Government Solicitor"	13-Jun-08 10:07 AM	

+="CN90573"	"HP Maintenance and Support - 01 July 2008 to 30 June 2009"	="Geoscience Australia"	13-Jun-08	="Computer services"	12-May-08	30-Jun-09	16733.93	=""	="Hewlett Packard Australia Ltd"	13-Jun-08 10:07 AM	

+="CN90575"	"200 x Maxell Ultrium3 LTO Tapes and Cleaning Cartridges"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	12255.56	=""	="SpectrumData"	13-Jun-08 10:07 AM	

+="CN90576"	"IT Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	15-Mar-08	14-Mar-09	194480.00	=""	="Paxus"	13-Jun-08 10:07 AM	

+="CN90577"	"2 x Dell PowerEdge 295 Rack Mount Servers"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	34344.20	=""	="Dell Australia Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90578"	"Software Maintenance and Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	17-Apr-08	16-Apr-09	22000.00	=""	="Outback Imaging Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90579"	"Aboriginal Cultural Heritage Survey - Nukunu Peoples Council"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	13-May-08	31-May-08	14748.80	=""	="Nukunu Peoples Council Inc"	13-Jun-08 10:08 AM	

+="CN90580"	"Employment services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Personnel recruitment"	18-Apr-08	30-Jun-08	13750.00	=""	="Australian Public Service Commission"	13-Jun-08 10:08 AM	

+="CN90581"	"Electrical and Refurbishment"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Electrical services"	18-Feb-08	30-Jun-08	18810.00	=""	="Electrical Services Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90582"	"Central Arunta Gravity Survey"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	13-May-08	30-Jun-08	795357.31	=""	="Atlas Geophysics Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90583"	"Refurbishment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Refurbishing services"	18-Feb-08	30-Jun-08	99347.49	=""	="Electrical Services Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90584"	"Whats New in ArcGIS II 20-22 May 2008 Quote 20006345 Grads"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	14-May-08	31-May-08	14170.20	=""	="ESRI Australia"	13-Jun-08 10:08 AM	

+="CN90585"	"It Contracting Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	19-May-08	14-Nov-08	93522.00	=""	="Paxus"	13-Jun-08 10:08 AM	

+="CN90586"	"Account (Voice Hardware )  115 5965 682 to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	14-May-08	30-Jun-08	21300.00	=""	="Telstra OTC Australia"	13-Jun-08 10:08 AM	

+="CN90588"	"Positions Vacant - The Melbourne Age  and The Australian"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	14-May-08	27-May-08	14635.21	=""	="HMA Blaze Pty Limited"	13-Jun-08 10:08 AM	

+="CN90570"	"Undertaking various AGAF assessments for SBR Authentication Project."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Jun-08	90000.00	=""	="PricewaterhouseCoopers"	13-Jun-08 10:08 AM	

+="CN90589"	"Software Maintenance Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	20-Apr-08	19-Apr-09	63232.42	=""	="Technology One"	13-Jun-08 10:08 AM	

+="CN90590"	"In House Superworking Program in Canberra"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	14-May-08	27-May-08	42500.00	=""	="Qualia Learning Network P/L"	13-Jun-08 10:08 AM	

+="CN90591"	"It Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	20-Mar-08	19-Mar-09	205920.00	=""	="Paxus"	13-Jun-08 10:08 AM	

+="CN90592"	"100 x Re-conditioned Ericsson Charcoal 3213 handsets"	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	14-May-08	26-May-08	14500.00	=""	="N2 Communications Ltd"	13-Jun-08 10:08 AM	

+="CN90594"	"ENVI & IDL maintenance"	="Geoscience Australia"	13-Jun-08	="Software"	14-May-08	20-Apr-09	12754.05	=""	="ITT Visual Information Solutions"	13-Jun-08 10:09 AM	

+="CN90595"	"IT Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	23-Apr-08	22-Apr-09	178464.00	=""	="Paxus"	13-Jun-08 10:09 AM	

+="CN90596"	"Consultancy in relation to re-location of the Gescience Australia Map warehouse"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	28600.00	=""	="GHD Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90597"	"Employee Education"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Employee education"	23-Apr-08	30-Apr-09	10345.50	=""	="Locher and Associates"	13-Jun-08 10:09 AM	

+="CN90598"	"Professional Services for Remote Monitoring Communications Systems"	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	10164.00	=""	="Bridge ICT Consultants"	13-Jun-08 10:09 AM	

+="CN90599"	"Software Subscription"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software"	23-May-08	22-May-09	26125.00	=""	="Attorney General's Department"	13-Jun-08 10:09 AM	

+="CN90600"	"1,061 Microsoft Windows Vista Business Listed Upg/SA Pack MVL w/MDOP"	="Geoscience Australia"	13-Jun-08	="Software"	15-May-08	30-Jun-08	252677.15	=""	="Dimension Data Australia Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90602"	"WP DC005,6,8  Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase. Deed # G1688D; Contract # G2405"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	15-May-08	31-Jul-08	66522.50	="RFTGA2008/1336"	="Terranean Mapping Technologies"	13-Jun-08 10:09 AM	

+="CN90604"	"WP DC007, WP DC009 Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase. Deed # G1683D; Contract # G2406"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	15-May-08	31-Jul-08	23839.20	="RFTGA2008/1336"	="Photo Mapping Services Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90605"	"IT Consultant Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	28-Apr-08	09-May-08	16912.50	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:09 AM	

+="CN90606"	"Spare parts for ICPMS"	="Geoscience Australia"	13-Jun-08	="Computer services"	15-May-08	30-Jun-08	22147.40	=""	="Agilent Technologies Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90607"	"Oracle - License and Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	28-Apr-08	27-Apr-09	160854.57	=""	="Oracle Corporation"	13-Jun-08 10:09 AM	

+="CN90608"	"VSAT satellite equipment for Rabaul and Manus Island."	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	16-May-08	30-Jun-08	13107.60	=""	="Australian Satellite Communications Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90609"	"Legal Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Legal services"	28-Feb-08	12-Apr-08	12314.39	=""	="Harris Freidman Hyde Page Lawyers"	13-Jun-08 10:10 AM	

+="CN90610"	"Oracle Programs Licence and Support Fees"	="Geoscience Australia"	13-Jun-08	="Software"	16-May-08	29-May-08	117166.26	=""	="Oracle Corporation"	13-Jun-08 10:10 AM	

+="CN90611"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	31-Mar-08	31-Dec-08	10897.58	=""	="Cantlie Recruitment Services"	13-Jun-08 10:10 AM	

+="CN90612"	"Labtrobe Valley cosmogenic radionuclide dating"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	31-Jul-09	25190.00	=""	="Australian National University"	13-Jun-08 10:10 AM	

+="CN90613"	"Wind Damage Scenario Development for a Western Sydney House CMCG2347"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	30-Jun-08	34100.00	=""	="James Cook Uni Nth Queensland"	13-Jun-08 10:10 AM	

+="CN90614"	"Geopatial analyst - 14 April to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	30-Jun-08	39600.00	=""	="Finite Recruitment Pty Ltd"	13-Jun-08 10:10 AM	

+="CN90615"	"Legal Advice for Seismic Surveys"	="Geoscience Australia"	13-Jun-08	="Legal services"	19-May-08	30-Jun-08	11000.00	=""	="Minter Ellison Lawyers (Adelaide)"	13-Jun-08 10:10 AM	

+="CN90616"	"Supply of 35 x 80Ah Gel-Tech 12V Batteries (Model 8G24) including shipping to Adelaide"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	31-May-08	12100.00	=""	="Solar Online Australia"	13-Jun-08 10:10 AM	

+="CN90617"	"Timescale-Creator Pro training and development contract (CMC: G2392)"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	20-May-08	30-Jun-08	25000.00	=""	="James Ogg"	13-Jun-08 10:10 AM	

+="CN90618"	"GRAMS8 Upgrade licence"	="Geoscience Australia"	13-Jun-08	="Software"	20-May-08	29-May-08	10258.97	=""	="Seismic Micro - Technology Inc. SMT"	13-Jun-08 10:11 AM	

+="CN90619"	"Adnyamathanha Work Program Clearance of the Lake Frome (Curnamona) seismic line."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-May-08	14400.00	=""	="Miln Walker & Associates Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90620"	"Cultural Heritage Survey and report of the Lake Frome (Curnamona) seismic line."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-May-08	21166.50	=""	="Miln Walker & Associates Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90621"	"Transcription PER0108 - HJ9 MSS, invoice no: PER-07/08-126"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-Aug-08	11693.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90622"	"Defence to GA Database transfer tool (invoice # 00007202);  Defence to GA Database transfer tool Development Box  (invoice # 00007203);  CMC #: G2315"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	30-Jun-08	17160.00	=""	="Spatial Vision Innovations Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90623"	"OYO GS636-2 Thermal Plotter"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	50174.30	=""	="Seismic Asia Pacific"	13-Jun-08 10:11 AM	

+="CN90624"	"Demolition and construction works for a new office in G.049A Tsunami Area"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	21-May-08	30-Jun-08	14520.00	=""	="Skilled Group Limited"	13-Jun-08 10:11 AM	

+="CN90625"	"Oracle Learning Credits May 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	40480.00	=""	="Atlas Business Services A/T/F ABS Trust"	13-Jun-08 10:11 AM	

+="CN90626"	"Construction of a new office G.070 for the security Coordination Unit as per Work Order SB113168"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	22-May-08	30-Jun-08	15345.00	=""	="Skilled Group Limited"	13-Jun-08 10:12 AM	

+="CN90627"	"BERT Version 7.0 upgrade"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	22-May-08	05-Jun-08	22000.00	=""	="Isidore IT Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90628"	"Pyschometric testing of Grads 2008"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	22-May-08	04-Jun-08	22000.00	=""	="SHL Australia Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90629"	"WP # 1078 (NSW LPI Transportation # 4A) Unit names Tottenham, Hay.  Deed # 1688D; Contract # G 2412"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	22-May-08	31-Jul-08	155188.11	=""	="Terranean Mapping Technologies"	13-Jun-08 10:12 AM	

+="CN90631"	"Robotics_First stage payment (80%) for new Hardware after acceptance at contractor holding facility (June 2008)"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	22-May-08	31-Dec-08	1156595.00	="RFT2006/3068"	="Tardis Services Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90632"	"Marine Recon survey-Prepatory work for survey including planning, agreement of voyage plans, travel undertaken by RF Forschungsschiffahrt staff to meet GA and discuss the arrangments for voyage, booking port visits, secure the vessel"	="Geoscience Australia"	13-Jun-08	="Transportation and Storage and Mail Services"	22-May-08	30-Jun-09	5300000.00	="2006/3598"	="R F Forschungsschiffahrt Gmbh"	13-Jun-08 10:12 AM	

+="CN90633"	"Aboriginal Cultural Heritage Survey for proposed seismic survey - Lake Giles to Pinkawillinie"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	26-May-08	30-Jun-08	21883.37	=""	="Australian Cultural Heritage Management Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90634"	"Support for promotion of 34th International Geological Congress, 2012."	="Geoscience Australia"	13-Jun-08	="Meeting facilities"	26-May-08	31-May-08	98000.00	=""	="Australian Geoscience Council"	13-Jun-08 10:13 AM	

+="CN90635"	"BERT annual licence and support fee for period 1st April 08 to 31st March 09 as per tax invoice no 176"	="Geoscience Australia"	13-Jun-08	="Software"	26-May-08	31-Mar-09	11000.00	=""	="Isidore IT Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90636"	"Contract execution payment (June 2008) - CS#:0708/323"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	26-May-08	31-Dec-08	481391.90	="RFT2006/3068"	="IBM Australia Ltd"	13-Jun-08 10:13 AM	

+="CN90637"	"Legal Services for IP Policy Advice  May 2008"	="Geoscience Australia"	13-Jun-08	="Legal services"	26-May-08	30-Jun-08	19250.00	="2005/2115"	="Australian Government Solicitor"	13-Jun-08 10:13 AM	

+="CN90638"	"Cost of accommodation and meals for GA at Mt Gordaon mine shaft."	="Geoscience Australia"	13-Jun-08	="Hotels and lodging and meeting facilities"	27-May-08	31-Jul-08	14080.00	=""	="Birla Mt Gordon Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90639"	"RP Kingfish 3D - 478 x 3590 cartridges, invoice no. 00005405"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	27-May-08	31-Aug-08	20014.50	="2006/3933"	="SpectrumData"	13-Jun-08 10:13 AM	

+="CN90640"	"Certificate of Sea Saftey Training 13-19 may 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	27-May-08	30-Jun-08	18000.00	=""	="AMC Search Ltd"	13-Jun-08 10:13 AM	

+="CN90641"	"Aboriginal Cultural Heritage Assessment for GA Seismic Survey - Arrowie Line"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-08	12650.00	=""	="Australian Cultural Heritage Management Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90642"	"Further Development of SHRIMP Data Reduction Application Manual"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-08	32000.00	=""	="Dr Kenneth Ludwig"	13-Jun-08 10:14 AM	

+="CN90643"	"Contract CMC#G2322 Technical advice on geophysical data interpretation over Capel and Faust area."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-09	47756.50	=""	="RPS Energy Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90644"	"Sm-Nd isotope analyses and preparation of rock powders - 23 samples."	="Geoscience Australia"	13-Jun-08	="Professional engineering services"	29-May-08	31-May-08	11132.00	=""	="University of Melbourne"	13-Jun-08 10:14 AM	

+="CN90645"	"Terrex - North Queensland Regional MT Survey - Interpretation invoice"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	29-May-08	30-Jun-08	25300.00	=""	="Quantec Geoscience Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90646"	"PDAC 2008 booth design & construction, networking event & Geojag travel in Canada."	="Geoscience Australia"	13-Jun-08	="Meeting facilities"	29-May-08	30-Jun-08	32160.78	=""	="GeoJAG Australia"	13-Jun-08 10:14 AM	

+="CN90647"	"Reproduction and shipment of ALOS data plus direct transmission of ALOS data for the 4th quarter of 2007 and the 1st and 2nd quarters of 2008."	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	29-May-08	30-Jun-08	36000.00	=""	="Remote Sensing Technology Center Of Japan"	13-Jun-08 10:14 AM	

+="CN90648"	"Ground Penetrating Radar Surveys near Mildura, Victoria"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	29-May-08	06-Jun-08	28820.00	=""	="Ecophyte Technologies Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90649"	"Seismic Vault Additions and Modifications by ELLCON, Steve& John Fencing & Network as per Work order SB113170"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	29-May-08	30-Jun-08	38472.50	=""	="Skilled Group Limited"	13-Jun-08 10:14 AM	

+="CN90650"	"Certificate of Sea Saftey Training 13-19 may 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	30-Jun-08	28416.00	=""	="AMC Search Ltd"	13-Jun-08 10:15 AM	

+="CN90652"	"Various ESRI training courses"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	31-May-08	19690.00	=""	="ESRI Australia"	13-Jun-08 10:15 AM	

+="CN90653"	"Training course fees"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	31-Aug-08	46409.00	=""	="ESRI Australia"	13-Jun-08 10:15 AM	

+="CN90651"	"Undertaking AGAF assessments for ABS for SBR Authentication Project."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-08	27500.00	=""	="PricewaterhouseCoopers"	13-Jun-08 10:19 AM	

+="CN90654"	"Provision of services in relation to project support services"	="Australian Federal Police"	13-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	89117.60	=""	="Diversiti Pty Ltd"	13-Jun-08 10:33 AM	

+="CN90656"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Jun-08	10-Oct-08	12789.99	=""	="Land Rover AUSTRALIA"	13-Jun-08 10:37 AM	

+="CN90658"	"FORM PRINTED: EE209, SERVICEABLE TECHNICAL EQUIPMENT BOARD, RE-INFORCED EYELET ON LEFT 10CM FROM EDGE; 328FSM. QTY 300,000"	="Defence Materiel Organisation"	13-Jun-08	="Examination booklets or forms"	10-Jun-08	02-Sep-08	42372.00	="RFQ 2680172"	="PARAGON PRINTERS AUSTRALASIA"	13-Jun-08 10:55 AM	

+="CN90659"	"For the provision of risk management workshops"	="Comsuper"	13-Jun-08	="Workshops"	19-May-08	30-Jun-08	25000.00	=""	="Protiviti Independent Risk Consulting"	13-Jun-08 11:02 AM	

+="CN90660"	"Provision for an Accountant"	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	30-Sep-08	70785.00	=""	="Maximus Solutions Australia"	13-Jun-08 11:05 AM	

+="CN90661-A1"	" Provision for System tester "	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	18-Jul-08	12584.00	=""	="Paxus Australia"	13-Jun-08 11:09 AM	

+="CN90664"	"SEALING COMPOUND"	="Defence Materiel Organisation"	13-Jun-08	="Adhesives and sealants"	13-Jun-08	10-Aug-08	22359.35	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	13-Jun-08 11:20 AM	

+="CN90665"	"FOG GENERATOR, INSECTICIDAL MANUALLY CARRIED, THERMAL AEROSOL PULSE TYPE, 0-34 L/HR.  SUPERHAWK MILITARY KIT DF2605A. QTY 20."	="Defence Materiel Organisation"	13-Jun-08	="Fog or mist generators"	11-Jun-08	08-Sep-08	55176.00	=""	="GLOBE AUSTRALIA"	13-Jun-08 11:23 AM	

+="CN90667"	"Provision for System tester"	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	27-Sep-08	45188.00	=""	="Paxus Australia"	13-Jun-08 11:27 AM	

+="CN90668"	"Provision for System Tester"	="Comsuper"	13-Jun-08	="Human resources services"	09-Jun-08	08-Sep-08	40300.00	=""	="Macro Recruitment"	13-Jun-08 11:31 AM	

+="CN90669"	"Provision for IBM recovery support services"	="Comsuper"	13-Jun-08	="Software"	18-May-08	17-May-09	29100.00	=""	="Synergy Plus"	13-Jun-08 11:36 AM	

+="CN90676"	"Provicion of software for the fax gateway upgrade"	="Comsuper"	13-Jun-08	="Software"	18-Apr-08	30-May-08	16011.03	=""	="Network Help Pty Ltd"	13-Jun-08 11:40 AM	

+="CN90670"	"CLOTH BURLAP, JUTE, HESSIAN 305GM, 102CM WIDE. QTY 176,000 METRES."	="Defence Materiel Organisation"	13-Jun-08	="Fabrics and leather materials"	11-Jun-08	11-Jul-08	75310.40	="RFQ G8566"	="ASSOCIATED PACKAGING AUSTRALIA"	13-Jun-08 11:46 AM	

+="CN90677-A1"	"Report for the development of an AFP risk management database tool"	="Australian Federal Police"	13-Jun-08	="Management advisory services"	12-Jun-08	25-Jun-08	14400.00	="06/16740"	="Analytics Group Pty Ltd"	13-Jun-08 11:59 AM	

+="CN90678"	"S70B Aircraft Spares"	="Defence Materiel Organisation"	13-Jun-08	="Aircraft"	13-Jun-08	05-Nov-08	11880.00	=""	="Asia Pacific Aerospace"	13-Jun-08 12:48 PM	

+="CN90680"	"Artwork - FMC, Level 12, Melbourne"	="Federal Magistrates Court"	13-Jun-08	="Paintings"	01-May-08	31-May-08	11402.00	=""	="Aboriginal Art Online"	13-Jun-08 01:16 PM	

+="CN90679"	"ALPHA HELMETS"	="Defence Materiel Organisation"	13-Jun-08	="Head or face protective helmets or devices or accessories for the physically challenged"	13-Jun-08	12-Sep-08	58638.09	=""	="SARQUIP INTERNATIONAL"	13-Jun-08 01:17 PM	

+="CN90681"	"Commercial Photography Services - FMC Brisbane"	="Federal Magistrates Court"	13-Jun-08	="Photographers and cinematographers"	01-May-08	31-May-08	11160.00	=""	="Artist Photographer"	13-Jun-08 01:23 PM	

+="CN90683"	"Recover costs Rental, Outgoings, Car Parking - February, March & April 2008"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	302737.33	=""	="Attorney Generals Department - NSW"	13-Jun-08 01:31 PM	

+="CN90684"	"Taxi & Cabcharges"	="Federal Magistrates Court"	13-Jun-08	="Taxicab services"	01-May-08	31-May-08	16207.03	=""	="Cabcharge Australia Limited"	13-Jun-08 01:34 PM	

+="CN90685"	"Packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	25173.50	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 01:36 PM	

+="CN90686"	"Recover Costs Rental, Outgoings, Car Parking - May 2008"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	14982.12	=""	="Charter Hall Limited - Savills"	13-Jun-08 01:38 PM	

+="CN90687"	"Security Monitoring"	="Federal Magistrates Court"	13-Jun-08	="Security surveillance and detection"	01-May-08	31-May-08	17400.94	=""	="Chubb Protective Services"	13-Jun-08 01:43 PM	

+="CN90688"	"Office Reburbishment FMC JMT"	="Federal Magistrates Court"	13-Jun-08	="Carpentry"	01-May-08	31-May-08	16445.00	=""	="Claremont Joinery"	13-Jun-08 01:48 PM	

+="CN90689"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	13-Jun-08	="Stationery"	01-May-08	31-May-08	23215.58	=""	="Corporate Express Australia"	13-Jun-08 01:55 PM	

+="CN90690"	"Auditing Processes"	="Federal Magistrates Court"	13-Jun-08	="Government auditing services"	01-May-08	31-May-08	20355.50	=""	="Deloitte Touche Tohmatsu"	13-Jun-08 01:59 PM	

+="CN90692"	" Consulting Services for Federal Magistrates Court "	="Federal Magistrates Court"	13-Jun-08	="Organisational structure consultation"	01-May-08	31-May-08	27794.61	=""	="Des Semple & Associates"	13-Jun-08 02:05 PM	

+="CN90693-A2"	" VEHICLE REPAIRS "	="Department of Defence"	13-Jun-08	="Motor vehicles"	26-May-08	26-Jun-08	38344.63	=""	="FB AUTOS"	13-Jun-08 02:08 PM	

+="CN90694"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	13-Jun-08	="Temporary legal staffing needs"	01-May-08	31-May-08	25684.57	=""	="Drake Australia Pty Ltd"	13-Jun-08 02:08 PM	

+="CN90695-A1"	"VEHICLE REPAIRS"	="Department of Defence"	13-Jun-08	="Motor vehicles"	20-May-08	20-Jun-08	27941.65	=""	="MACK AUSTRALIA"	13-Jun-08 02:11 PM	

+="CN90696"	"Supply and Install Floor Coverings"	="Federal Magistrates Court"	13-Jun-08	="Floor coverings"	01-May-08	31-May-08	21784.40	=""	="Future Floor Services NSW Pty Ltd"	13-Jun-08 02:12 PM	

+="CN90697-A2"	"VEHICLE REPAIRS"	="Department of Defence"	13-Jun-08	="Motor vehicles"	13-May-08	13-Jun-08	38747.89	=""	="FB AUTOS"	13-Jun-08 02:14 PM	

+="CN90698"	"Office Refurbishment FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	160259.00	=""	="Graham J Deane Building Pty Ltd"	13-Jun-08 02:18 PM	

+="CN90700"	"Motor Vehicle Spare Parts"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	27-Jun-08	14859.07	=""	="Volvo Commericial Vehicles"	13-Jun-08 02:19 PM	

+="CN90699"	"Motor Vehicle Spare Parts"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	27-Jun-08	11796.43	=""	="Volvo Commericial Vehicles"	13-Jun-08 02:23 PM	

+="CN90701"	"Design & Engineering Consultancy Services - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Professional engineering services"	01-May-08	31-May-08	12165.56	=""	="Group GSA Pty Ltd"	13-Jun-08 02:24 PM	

+="CN90703"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	89342.00	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:37 PM	

+="CN90704"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	63045.95	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:43 PM	

+="CN90705"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	27-May-08	28-May-08	82181.00	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:50 PM	

+="CN90706"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	13429.82	=""	="Mercedes Benz Aust"	13-Jun-08 02:54 PM	

+="CN90707"	"website maintenance"	="Royal Australian Mint"	13-Jun-08	="World wide web WWW site design services"	28-May-08	28-May-08	11747.01	=""	="VIRTUOSO MEDIA"	13-Jun-08 02:56 PM	

+="CN90708"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	25636.63	=""	="Mercedes Benz Aust"	13-Jun-08 02:57 PM	

+="CN90709"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	32285.52	=""	="Harvey Consultancy - Report Writer"	13-Jun-08 02:58 PM	

+="CN90711"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	13-Jun-08	="Temporary clerical or administrative assistance"	01-May-08	31-May-08	13028.88	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	13-Jun-08 03:02 PM	

+="CN90712"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	21868.73	=""	="Mercedes Benz Aust"	13-Jun-08 03:03 PM	

+="CN90710"	"MOU Charges March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Business administration services"	01-Mar-08	31-Mar-08	56216.60	=""	="DEPARTMENT OF EMPLOYMENT, EDUCATION & WORKPLACE RELATIONS"	13-Jun-08 03:03 PM	

+="CN90713-A4"	"Lease at Strathpine, Queensland."	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	14-Sep-08	30-Jun-15	5368832.03	=""	="The Rohlf Trust ATF for Winona Holding"	13-Jun-08 03:07 PM	

+="CN90714"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	14977.05	=""	="Mercedes Benz Aust"	13-Jun-08 03:07 PM	

+="CN90715"	"Provision for Analyst Programer"	="Comsuper"	13-Jun-08	="Human resources services"	21-May-08	18-Feb-09	163020.00	=""	="M&T Resources"	13-Jun-08 03:08 PM	

+="CN90717"	" Office Refurbishment FMC JMT Level 12 "	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	13215.95	=""	="Interior Development Pty Ltd"	13-Jun-08 03:08 PM	

+="CN90718"	" upgrad of trim to V6.2 "	="Royal Australian Mint"	13-Jun-08	="Software"	30-May-08	30-May-08	24343.00	=""	="VIRTUOSO MEDIA"	13-Jun-08 03:09 PM	

+="CN90719"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Jun-08	25-Jun-08	13251.81	=""	="Mercedes Benz Aust"	13-Jun-08 03:12 PM	

+="CN90720"	"Legal Publications"	="Federal Magistrates Court"	13-Jun-08	="Printed publications"	01-May-08	31-May-08	33110.00	=""	="International Professional Publications"	13-Jun-08 03:13 PM	

+="CN90721"	"Property Charges for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Mar-08	31-Mar-08	39491.57	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	13-Jun-08 03:16 PM	

+="CN90722"	" Cabing Services - FMC Newcastle "	="Federal Magistrates Court"	13-Jun-08	="Electrical cable and accessories"	01-May-08	31-May-08	27739.25	=""	="Intravision Pty Ltd"	13-Jun-08 03:23 PM	

+="CN90723"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	14526.40	=""	="Jay Manya"	13-Jun-08 03:27 PM	

+="CN90725"	"Recover Costs Rental, Outgoings, Car Parking FMC Macquarie St, Sydney"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	20547.54	=""	="Law Courts Limited - United Group Services"	13-Jun-08 03:32 PM	

+="CN90724"	"Property Charges for December 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Dec-07	31-Dec-07	37094.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT AND WORKPLACE RELATIONS"	13-Jun-08 03:33 PM	

+="CN90726-A2"	"Lease at Busselton WA"	="Centrelink"	13-Jun-08	="Real estate services"	07-Sep-01	06-Jun-10	586278.86	=""	="Mark Hay Asset Management"	13-Jun-08 03:34 PM	

+="CN90727-A1"	"Development & pilot od a diagnostic tool for attendance & productivity improvement project."	="Australian Taxation Office"	13-Jun-08	="Scientific or research satellites"	19-May-08	19-Dec-08	23500.00	=""	="Orima Research Pty Ltd"	13-Jun-08 03:35 PM	

+="CN90728"	"Property Charges for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Feb-08	29-Feb-08	36499.15	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	13-Jun-08 03:42 PM	

+="CN90729"	"Vehicle Leases"	="Federal Magistrates Court"	13-Jun-08	="Vehicle rental"	01-May-08	31-May-08	84845.96	=""	="Lease Plan"	13-Jun-08 03:45 PM	

+="CN90730-A4"	" Lease at Mandurah, WA "	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	08-Jan-01	31-Jul-14	4162873.13	=""	="David Roy Stewart"	13-Jun-08 03:47 PM	

+="CN90731"	"Night Aiming Device Spares"	="Defence Materiel Organisation"	13-Jun-08	="Surveillance and detection equipment"	12-Jun-08	04-Sep-08	28174.30	=""	="BAE Systems Australia Ltd"	13-Jun-08 03:52 PM	

+="CN90732"	"Furniture - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Office furniture"	01-May-08	31-May-08	17025.25	=""	="Living Edge Group Pty Ltd"	13-Jun-08 03:52 PM	

+="CN90733"	"Property Charges for January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Jan-08	31-Jan-08	36474.88	=""	="DEPARTMENT OF EMPLOYMENT, EDUCATION & WORKPLACE RELATIONS"	13-Jun-08 03:53 PM	

+="CN90734-A2"	"Lease at Bairnsdale VIC"	="Department of Human Services"	13-Jun-08	="Real estate services"	21-Mar-05	20-Mar-12	1734729.33	=""	="Stirloch Developments Pty Ltd"	13-Jun-08 03:54 PM	

+="CN90735"	"Provision of brand advice, development of standards and facilitation of a brand standards workshop."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	11-Aug-08	41910.00	=""	="Principals Pty Ltd"	13-Jun-08 03:54 PM	

+="CN90736"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	13-Jun-08	="Transcribing services"	01-May-08	31-May-08	92892.54	=""	="National Transcription Services Pty Ltd"	13-Jun-08 03:56 PM	

+="CN90737"	"lease at Garbutt, QLD"	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	05-May-03	04-May-13	3120795.00	=""	="Landel Pty Ltd"	13-Jun-08 03:57 PM	

+="CN90738-A4"	" Lease at Browns Plains QLD "	="Department of Human Services"	13-Jun-08	="Real estate services"	01-Dec-01	30-Nov-11	3208709.34	=""	="The Trustee for Stephen Family Trust"	13-Jun-08 03:58 PM	

+="CN90739"	"Consulting Services for BA Services to Streamline Judgement Process"	="Federal Magistrates Court"	13-Jun-08	="Business and corporate management consultation services"	01-May-08	31-May-08	17380.00	=""	="Oakton Services Pty Ltd"	13-Jun-08 04:01 PM	

+="CN90740-A1"	"Multiservices Data Test Solution (Hardware and Software)"	="Australian Federal Police"	13-Jun-08	="Computer services"	02-Jun-08	02-Jun-11	143169.71	="RFT 3-2008"	="Optus Networks Pty Ltd"	13-Jun-08 04:02 PM	

+="CN90741"	" BRASSIERE "	="Department of Defence"	13-Jun-08	="Brassieres"	13-Jun-08	27-Jun-08	10169.60	=""	="THE BERLEI GROUP"	13-Jun-08 04:05 PM	

+="CN90742"	"Interpreting Services"	="Federal Magistrates Court"	13-Jun-08	="Interpreters"	01-May-08	31-May-08	12636.25	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	13-Jun-08 04:05 PM	

+="CN90743"	"MOU Charges January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Business administration services"	01-Jan-08	31-Jan-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT AND WORKPLACE RELATIONS"	13-Jun-08 04:08 PM	

+="CN90745"	"Lease at Armadale WA"	="Centrelink"	13-Jun-08	="Real estate services"	06-Jul-01	05-Jul-08	1041600.00	=""	="Bryan Earnest Cousins And Ronald Arnold Doubikin"	13-Jun-08 04:19 PM	

+="CN90746"	"FOG GENERATOR, INSECTICIDAL MANUALLY CARRIED, THERMAL AEROSOL PULSE TYPE, 0-34 L/HR.  SUPERHAWK MILITARY KIT DF2605A. QTY 5."	="Defence Materiel Organisation"	13-Jun-08	="Fog or mist generators"	05-May-08	04-Jun-08	13794.00	=""	="GLOBE AUSTRALIA"	13-Jun-08 04:20 PM	

+="CN90748"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	25412.54	=""	="Paris Consultancy Pty Ltd"	13-Jun-08 04:24 PM	

+="CN90749"	" Filing Cabinets "	="Federal Magistrates Court"	13-Jun-08	="Shelving and storage"	01-May-08	31-May-08	11433.74	=""	="Planex Sales Pty Ltd"	13-Jun-08 04:31 PM	

+="CN90750"	"Airfares"	="Federal Magistrates Court"	13-Jun-08	="Commercial aeroplane travel"	01-May-08	31-May-08	169363.18	=""	="Qantas - QAEBTA"	13-Jun-08 04:35 PM	

+="CN90751-A3"	" Leasing of Computer equipment "	="Office of the Director of Public Prosecutions"	13-Jun-08	="Computer Equipment and Accessories"	01-Jun-08	31-Dec-11	2693954.73	=""	="HP Financial Services (Australia) Pty Ltd"	13-Jun-08 04:40 PM	

+="CN90752"	"Temp Staff - Federal Magistrates Court, Melbourne"	="Federal Magistrates Court"	13-Jun-08	="Temporary clerical or administrative assistance"	01-May-08	31-May-08	12557.98	=""	="Robert Half Australia"	13-Jun-08 04:44 PM	

+="CN90753"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	13-Jun-08	="Transcribing services"	01-May-08	31-May-08	41551.42	=""	="Spark & Cannon Australasia Pty Ltd"	13-Jun-08 04:50 PM	

+="CN90754"	" Office Refurbishment FMC "	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	52554.94	=""	="Spotless P&F Pty Ltd"	13-Jun-08 04:54 PM	

+="CN90755-A1"	" Lease at Maitland, NSW "	="Department of Human Services"	13-Jun-08	="Real estate services"	04-Mar-02	03-Mar-12	2560224.09	=""	="UHM Units Trust"	13-Jun-08 04:55 PM	

+="CN90756"	"Purchase of Litigation Support System"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Software"	14-Mar-08	14-May-08	13200.00	=""	="CCH Workflow Solutions"	13-Jun-08 04:56 PM	

+="CN90757"	"Furniture - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Office furniture"	01-May-08	31-May-08	13626.95	=""	="Stylecraft Australia"	13-Jun-08 04:58 PM	

+="CN90759"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	13-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	31-May-08	23407.55	=""	="Telstra Corporation Limited"	13-Jun-08 05:01 PM	

+="CN90758"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	23-Apr-08	30-Jun-08	24877.16	=""	="PREMIER AUTOMOTIVE GROUP"	13-Jun-08 05:01 PM	

+="CN90760"	"Magazines & Subscriptions"	="Federal Magistrates Court"	13-Jun-08	="Legal Research Services"	01-May-08	31-May-08	40397.23	=""	="Thomson Legal & Regulatory Group"	13-Jun-08 05:04 PM	

+="CN90763"	"SUPPLY OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	24-Apr-08	30-Jun-08	15212.63	=""	="VOLVO COMMERCIAL VEHICLES"	13-Jun-08 05:06 PM	

+="CN90764"	"Office Refurbishment - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	24455.20	=""	="Zenith Interiors (NSW) Pty Ltd"	13-Jun-08 05:07 PM	

+="CN90765-A2"	" On-Line Recruitment Tool "	="Office of the Director of Public Prosecutions"	13-Jun-08	="Software"	30-Apr-08	31-Oct-11	63064.57	=""	="NGA.net"	13-Jun-08 05:08 PM	

+="CN90766"	"supply of batteries"	="Defence Materiel Organisation"	13-Jun-08	="Batteries and generators and kinetic power transmission"	24-Apr-08	30-Jun-08	11502.48	=""	="EXIDE TECHNOLOGIES PTY LTD"	13-Jun-08 05:14 PM	

+="CN90767"	"supply of vehicle repair parts"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	23-Apr-08	30-Jun-08	30552.12	=""	="MERCEDES-BENZ"	13-Jun-08 05:18 PM	

+="CN90768"	"Head Contract Fitout Project - Canberra"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	01-Jul-08	394724.00	=""	="SMI Fitout Pty Ltd"	13-Jun-08 05:28 PM	

+="CN90769"	"Temporary Staff - WA"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Human resources services"	12-May-08	30-Aug-08	20800.00	=""	="Porter Consulting Group"	13-Jun-08 05:45 PM 

--- a/admin/partialdata/12Dec2007to16Dec2007valto.xls
+++ b/admin/partialdata/12Dec2007to16Dec2007valto.xls
@@ -1,475 +1,475 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN50816"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Medical Equipment and Accessories and Supplies"	08-Aug-07	15-Aug-07	14973.75	=""	="Hospira Pty Ltd"	12-Dec-07 08:15 AM	
-="CN50817"	"ASLAV PARTS - DOOR HATCH VEHICLE RH ASSY"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	28-Jun-08	12299.05	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:09 AM	
-="CN50818"	"ASLAV PARTS - HOUSING STEERING COLUMN"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	18-Jun-08	17502.10	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:14 AM	
-="CN50819"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust. Pacific"	12-Dec-07 09:23 AM	
-="CN50820"	"Security Services Camera Monitoring"	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	11900.00	=""	="JEWELL & BUCKLEY PTY LTD"	12-Dec-07 09:24 AM	
-="CN50821"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust Pacific"	12-Dec-07 09:31 AM	
-="CN50823"	"Office Rent"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	12-Oct-07	15-Oct-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:08 AM	
-="CN50824"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	25332.95	=""	="Kaz Technology Services Pty Ltd"	12-Dec-07 10:33 AM	
-="CN50826"	"ESRI Maintenance 2008 -2009"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	03-Dec-07	31-Jan-09	61105.00	=""	="ESRI Australia Pty Ltd"	12-Dec-07 10:38 AM	
-="CN50827"	"Supply of Stationery"	="Bureau of Meteorology"	12-Dec-07	="Office supplies"	05-Dec-07	31-Dec-07	20006.38	=""	="Corporate Express Australia Limited"	12-Dec-07 10:38 AM	
-="CN50828"	"Consulting"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10725.00	=""	="Access Macquarie Limited."	12-Dec-07 10:38 AM	
-="CN50829"	"Car Hire for October 2007"	="Bureau of Meteorology"	12-Dec-07	="Transportation and Storage and Mail Services"	05-Dec-07	31-Dec-07	10399.40	=""	="AVIS"	12-Dec-07 10:38 AM	
-="CN50830"	"Telephone A/c"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	19-Nov-07	12-Dec-07	12803.50	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	
-="CN50831"	"Telecommunication Services"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	17559.92	=""	="AAPT LIMITED"	12-Dec-07 10:38 AM	
-="CN50832"	"Darwin 50MHz upgrade - Profiler Transmitter"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	27520.40	=""	="University Of Colorado"	12-Dec-07 10:38 AM	
-="CN50833"	"TELEPHONE ACCOUNT"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	27-Nov-07	03-Dec-07	16063.99	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	
-="CN50834"	"VEHICLE LEASES"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	27-Nov-07	27-Nov-07	11584.49	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	
-="CN50835"	"Vehicle Lease"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	28-Nov-07	28-Nov-07	12850.53	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	
-="CN50836"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	11033.29	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50837"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	14586.60	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50838"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	20049.79	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50839"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	42170.39	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	
-="CN50840"	"Accommodation"	="Bureau of Meteorology"	12-Dec-07	="Hotels and lodging and meeting facilities"	29-Nov-07	30-Nov-07	23241.00	=""	="Quest Docklands"	12-Dec-07 10:39 AM	
-="CN50841"	"DBCP Trust Fund for 2008"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Dec-08	18346.50	=""	="WORLD METEOROLOGICAL ORGANIZATION"	12-Dec-07 10:39 AM	
-="CN50842"	"Job ads for Professional Appointments"	="Bureau of Meteorology"	12-Dec-07	="Marketing and distribution"	04-Dec-07	31-Dec-07	34844.21	=""	="HMA BLAZE PTY LTD"	12-Dec-07 10:39 AM	
-="CN50843"	"AUSAID PROJECT"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10000.00	=""	="SPREP"	12-Dec-07 10:40 AM	
-="CN50844"	"Vehicle Fuel"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	06-Dec-07	06-Dec-07	12358.14	=""	="Leaseplan Australia"	12-Dec-07 10:40 AM	
-="CN50845"	"SA REGION AIR FARES NOV/DEC 2007"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	07-Dec-07	07-Dec-07	13928.33	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:40 AM	
-="CN50846"	"DIGICOR 3U Server"	="Bureau of Meteorology"	12-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	04-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	12-Dec-07 10:40 AM	
-="CN50847"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50849"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50850"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	
-="CN50851"	"Software implementation services B Williamson"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	29-Nov-07	21-Dec-07	19949.47	=""	="Hays Specialist Recruitment"	12-Dec-07 10:41 AM	
-="CN50852"	"Cannister MET Beacon Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	28-Dec-07	28595.56	=""	="Metocean Data Systems Ltd"	12-Dec-07 10:41 AM	
-="CN50853"	"Ceilometer Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	05-Dec-07	76428.00	=""	="Vaisala Pty Ltd"	12-Dec-07 10:41 AM	
-="CN50854"	"Data cartridge Qty 870"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	07-Dec-07	03-May-09	98561.43	=""	="Officemax Australia Ltd"	12-Dec-07 10:41 AM	
-="CN50855"	"Specialized cord"	="Bureau of Meteorology"	12-Dec-07	="Fibres and threads and yarns"	07-Dec-07	14-May-08	20717.40	=""	="Donaghys"	12-Dec-07 10:41 AM	
-="CN50848"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	17-Oct-07	19-Nov-07	22000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:42 AM	
-="CN50856"	"Software"	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	11000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:47 AM	
-="CN50857"	" Office rent "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	13-Nov-07	19-Nov-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:54 AM	
-="CN50858"	"Airfares"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Travel agents"	29-Oct-07	19-Nov-07	43176.46	=""	="American Express Travel"	12-Dec-07 11:00 AM	
-="CN50859"	"NSN 6850-66-156-0064, Inhibitor, Corrosion, Liquid Cooling, Qty 10"	="Defence Materiel Organisation"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	20-Dec-07	13475.00	=""	="Burson Automotive Pty Ltd"	12-Dec-07 11:12 AM	
-="CN50860"	"RAAF SERVICE DRESS WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	01-Dec-08	513381.00	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 11:14 AM	
-="CN50861"	" NSN 5996/66-101-9162  PURCHASE OF AMPLIFIER, AUDIO FREQUENCY  EX GST "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	12-Dec-07	10500.00	=""	="Flite Path Pty Ltd"	12-Dec-07 11:20 AM	
-="CN50862"	"SEALING COMPOUND"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	12-Dec-07	30-Jan-08	11791.08	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	12-Dec-07 11:21 AM	
-="CN50863"	"Services for the implementation of Stage 1 of the Diabetes Medication Assistance Service "	="Department of Health and Ageing"	12-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Mar-10	1142988.00	="RFT392/0607"	="University of Sydney"	12-Dec-07 11:23 AM	
-="CN50864"	" NSN 1680/01-550-3045  PURCHASE OF TRANSDUCER, AIRCRAFT  EX SGT "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	24-Mar-08	14807.73	=""	="Military Aviation Spares Pty Ltd"	12-Dec-07 11:26 AM	
-="CN50865-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	12-Dec-07	="Software"	19-Nov-07	29-Feb-08	50864.00	=""	="Cordelta Pty. Ltd."	12-Dec-07 11:27 AM	
-="CN50866"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	23-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:27 AM	
-="CN50867-A1"	"Provision of services in relation to project officer support for IT Services"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Sep-08	138336.00	=""	="Icon Recruitment Pty Ltd"	12-Dec-07 11:30 AM	
-="CN50868"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	27-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:36 AM	
-="CN50869-A1"	"PANTS, CYCLIST, VARIOUS"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	11-Dec-07	29-Feb-08	405379.70	=""	="WALKABOUT LEISUREWEAR PTY LTD"	12-Dec-07 11:38 AM	
-="CN50870-A1"	"Provision of services in relation to SharePoint and K2 Development"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Aug-08	242871.20	=""	="Paxus Australia Pty Ltd"	12-Dec-07 11:39 AM	
-="CN50871"	" Publication printing "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Printed publications"	07-Nov-07	10-Dec-07	22627.00	=""	="UNION OFFSET PRINTERS"	12-Dec-07 11:46 AM	
-="CN50872"	"Procurement Panel Services to the AFP"	="Australian Federal Police"	12-Dec-07	="Professional procurement services"	05-Dec-07	15-Jan-08	29744.00	="22-2005"	="Ball Solutions Group"	12-Dec-07 11:46 AM	
-="CN50875"	" Publication production "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Editing services"	08-Nov-07	10-Dec-07	24255.00	=""	="CORETEXT"	12-Dec-07 11:52 AM	
-="CN50876-A1"	"Provision of a Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	03-Dec-07	30-Jun-08	114240.00	=""	="Oakton Services Pty Ltf"	12-Dec-07 12:00 PM	
-="CN50877-A1"	"adhesive film"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	01-Dec-07	25-Feb-08	20738.95	=""	="Interturbine Advanced Composies"	12-Dec-07 12:36 PM	
-="CN50878"	"Heritage Management Plan - Park"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	52860.00	=""	="Duncan Marshall"	12-Dec-07 12:49 PM	
-="CN50879"	"ASLAV PARTS - LEAD ASSY SLIP"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	108389.88	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 12:53 PM	
-="CN50880"	"Heritage Management Plan - Canberra Central Parklands"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	61585.00	=""	="Duncan Marshall"	12-Dec-07 12:54 PM	
-="CN50881"	"ASLAV PARTS - BRUSH BLOCK ASSY "	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	214915.25	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 01:02 PM	
-="CN50882"	"Commemorative Works Guidelines"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	28-Mar-08	10000.00	=""	="David Headon"	12-Dec-07 01:16 PM	
-="CN50883"	" NSN 5340/01-422-0982  PURCHASE OF CLAMP, LOOP  GST INCL. "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	06-Dec-07	04-Apr-08	10849.08	=""	="Milspec Services Pty Ltd"	12-Dec-07 01:16 PM	
-="CN50884"	"CPE004278-1 - Supply of security project services - 0859-1284 - IT Security Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	30-Nov-07	30-Nov-07	19800.00	="05/0859"	="Cybertrust Australia Pty Ltd"	12-Dec-07 01:25 PM	
-="CN50885-A1"	"Provision for Senior Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	02-Jan-08	30-Jun-08	120000.00	=""	="Aristotle (Eurolink)"	12-Dec-07 01:30 PM	
-="CN50886"	"07/2328 - Management consultancy services - 1599-1938 - Consultancy and Business Services Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Oct-07	01-Feb-08	300000.00	="06/1599"	="Booz Allen Hamilton"	12-Dec-07 01:37 PM	
-="CN50888"	" Supply of communications equipment "	="Australian Federal Police"	12-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	213424.00	=""	="Motorola Australia Pty Ltd"	12-Dec-07 01:44 PM	
-="CN50887"	"06/1343 - Project Coordinator (Ext #3) - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	217000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 01:45 PM	
-="CN50890"	"Provision of Oracle Software Structure Analysis and Consultancy"	="Comsuper"	12-Dec-07	="Human resources services"	21-Aug-07	31-Aug-07	11550.00	=""	="Dataweave Pty Ltd"	12-Dec-07 01:48 PM	
-="CN50891"	"SHIRT, MENS, STEWARD SHORTS, MALE, KHAKI, RAAF"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	29-May-08	97891.20	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 01:50 PM	
-="CN50892"	" 3 Years maintenance and support for Reflection X Software "	="Comsuper"	12-Dec-07	="Software"	30-Jun-07	30-Jun-10	10411.00	=""	="Loop Technology Pty Ltd"	12-Dec-07 01:54 PM	
-="CN50895"	"07/2381 - Technical Analyst - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	133000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 02:02 PM	
-="CN50897-A1"	"07/2392 - Specialist IT Transitional Manager - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Dec-07	30-Jun-08	161289.60	="05/0717"	="Paxus Australia"	12-Dec-07 02:05 PM	
-="CN50458"	" Security Services - Monitoring "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	65600.00	=""	="JEWEL & BUCKELY PTY LTD"	12-Dec-07 02:06 PM	
-="CN50898"	" Security Services - Doors "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	17-Apr-07	24-Jul-08	20100.00	=""	="JEWELL & BUCKLEY PTY LTF"	12-Dec-07 02:14 PM	
-="CN50899"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	10232.41	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:15 PM	
-="CN50900"	"07/2198 -  Supply of Building Equipment (CPE004116-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	28538.46	=""	="Sea Swift Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50901"	"07/2233 - Supply of Building Equipment (CPO014456)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	23-Aug-07	31-Dec-07	15930.20	=""	="Precision Metals Queanbeyan Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50902"	"CPO017457 - Online learning"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	27-Nov-07	31-Oct-08	29822.00	=""	="Total Learn Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50904"	"CPE003886 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	30-Jun-08	33447.70	=""	="KW McCulloch Pty Ltd"	12-Dec-07 02:18 PM	
-="CN50905"	"07/2291 - Specialised equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer Equipment and Accessories"	25-Sep-07	30-Jun-08	190750.83	=""	="Department of Defence"	12-Dec-07 02:19 PM	
-="CN50906"	"CPO017611 - Construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	22495.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50907"	"CPO015288 - Materials for the construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	14168.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50908-A1"	"07/2200 - Building Services/ Office Installation (CPE004115-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	118140.00	=""	="Robert Clarke Builders Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50909"	"CPO017645 - Information/Reporting Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13311.47	=""	="B-Line Edit Services Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50910"	"CPO017734 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	18931.00	=""	="Australian Institute of Forensic Psychology"	12-Dec-07 02:19 PM	
-="CN50911-A2"	"07/2340 - Supply of IT Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	25-Oct-07	24-Apr-12	561328.10	=""	="KAZ Group Pty Ltd"	12-Dec-07 02:19 PM	
-="CN50912"	"CPO017535 - Training Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	29-Nov-07	02-Dec-07	10786.00	=""	="Australian Institute of Education and Training"	12-Dec-07 02:19 PM	
-="CN50903"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	28-Nov-07	12-Dec-07	10201.72	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:20 PM	
-="CN50913"	"CPO016973 - Metal detection system trial"	="Australian Customs and Border Protection Service"	12-Dec-07	="Measuring and observing and testing instruments"	04-Dec-07	04-Dec-07	32692.00	=""	="QR Sciences Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50914-A1"	"07/1909 - Training services (CPO017584)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	20-Nov-07	05-Dec-07	39649.50	=""	="D'Arcy Consulting Group"	12-Dec-07 02:20 PM	
-="CN50915"	"CPO017699 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Apr-07	30-Dec-07	16225.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	
-="CN50916"	"CPO017698 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Oct-07	30-Jun-08	61455.49	=""	="Dataline Visual Link"	12-Dec-07 02:20 PM	
-="CN50917"	"07/2286 - Compueter servers"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	12-Oct-07	11-Oct-10	149374.25	=""	="Sun Microsystems Australia Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50918"	"CPO017722 - Charter Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Passenger transport"	15-Nov-07	04-Dec-07	11024.24	=""	="Australian Helicopters Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50919-A1"	"07/2228 - Consultancy Services (CPO017401)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	13-Sep-07	31-Jan-08	38500.00	=""	="ESRI Australia"	12-Dec-07 02:20 PM	
-="CN50920"	"CPO017830 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	16801.40	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50921"	"CPO017821 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	37156.90	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	
-="CN50922"	"CPO017718 - CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	30-Jun-08	15840.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	
-="CN50926"	"CPO017889 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	53755.00	=""	="Trade Import Services"	12-Dec-07 02:21 PM	
-="CN50927"	"CPO017891 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	42212.50	=""	="Trade Import Services"	12-Dec-07 02:21 PM	
-="CN50928-A2"	"07/2194 - Project Management Services (CPE004306-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	24-Sep-07	30-Mar-08	49232.00	=""	="URS Australia"	12-Dec-07 02:21 PM	
-="CN50929"	"07/1884 - Development of On-Line Learning Program"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	15-Apr-07	15-Jul-07	15000.00	=""	="Leonie A David"	12-Dec-07 02:21 PM	
-="CN50930"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	18943.72	=""	="DAIMLER CHRYSLER AUSTRALIA"	12-Dec-07 02:24 PM	
-="CN50931"	"06/1334 - Data quality programme and training services (Ext #1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Jan-07	31-Dec-07	50000.00	=""	="Centre for Customs and Excise Studies Pty Ltd"	12-Dec-07 02:28 PM	
-="CN50932"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	12710.39	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:30 PM	
-="CN50933"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	03-Dec-07	10-Dec-07	12366.20	=""	="BRIAN ROGERS"	12-Dec-07 02:34 PM	
-="CN50934"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	11-Dec-07	16-Dec-07	20496.11	=""	="KALMAR EQUIPMENT (AUSTRALIA)"	12-Dec-07 02:39 PM	
-="CN50935"	"DECONTAMINATING ITEMS/EQUIPMENT"	="Defence Materiel Organisation"	12-Dec-07	="Decontamination services"	10-Dec-07	12-Dec-07	22248.33	=""	="TOTALLY WORKWEAR (TOWNSVILLE)"	12-Dec-07 02:46 PM	
-="CN50936"	"For the Provision of Financial  Accounting Services"	="Child Support Agency"	12-Dec-07	="Business administration services"	10-Dec-07	06-Jun-08	78000.00	=""	="Professional Careers Australia Pty Ltd"	12-Dec-07 02:50 PM	
-="CN50938"	"Flammable Liquid Storage Cabinet"	="Department of Defence"	12-Dec-07	="Storage chests and cabinets and trunks"	19-Nov-07	07-Jan-08	13112.00	=""	="FGP COMPANY PTY LTD"	12-Dec-07 03:04 PM	
-="CN50941"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	12-Dec-07	22-Dec-07	11614.05	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-Dec-07 03:10 PM	
-="CN50943"	"Vaccines For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Drugs and Pharmaceutical Products"	27-Sep-07	07-Oct-07	341275.00	=""	="GLAXOSMITHKLINE AUST P/L"	12-Dec-07 03:22 PM	
-="CN50946"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	10017.15	=""	="Rover Australia"	12-Dec-07 03:35 PM	
-="CN50949"	"Call Centre Satisfaction Survey Wave 12"	="Australian Taxation Office"	12-Dec-07	="Market research"	19-Oct-07	28-Jan-08	50000.00	=""	="ORC Aus Pty Ltd t/a NWC Research"	12-Dec-07 03:47 PM	
-="CN50947"	"Altitude Warning Device"	="Defence Materiel Organisation"	12-Dec-07	="Parachute equipment"	28-Nov-07	09-Jan-08	21714.00	=""	="Aerospace Composites Pty Ltd"	12-Dec-07 03:48 PM	
-="CN50950"	"Conduct Investigations as directed by Group Director, Support. "	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Private investigation services"	26-Feb-07	25-May-07	13750.00	=""	="Quality Management Solutions Pty Ltd"	12-Dec-07 03:50 PM	
-="CN50952"	"Provision of Cleaning - Sutherland CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	03-Apr-06	09-Nov-07	10888.51	=""	="Professional Lightning Cleaning"	12-Dec-07 03:58 PM	
-="CN50953"	"Print 10,000 copies of 'Us Taken-Away Kids."	="Australian Human Rights Commission"	12-Dec-07	="Publishing"	26-Sep-07	09-Nov-07	11653.40	=""	="Bloxham and Chambers"	12-Dec-07 04:08 PM	
-="CN50954"	"Provision of cleaning services - Hurstville CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	01-Oct-05	09-Nov-07	11616.00	=""	="Professional Lightning Cleaning"	12-Dec-07 04:08 PM	
-="CN50956"	"Conduct Survey of Athletes' Opinions"	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Educational and research structures"	01-Mar-07	28-May-07	22000.00	=""	="Curtin University"	12-Dec-07 04:17 PM	
-="CN50957"	" Compensation Process System Improvements "	="Australian Taxation Office"	12-Dec-07	="Computer services"	11-Dec-07	10-Mar-08	25000.00	=""	="CA Pacific Pty Ltd"	12-Dec-07 04:20 PM	
-="CN50958"	" MOTOR VEHILCE SPARE PARTS "	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	24957.78	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:00 PM	
-="CN50959"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	16159.43	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:04 PM	
-="CN50960"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	15588.52	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:06 PM	
-="CN50961"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	41458.12	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:10 PM	
-="CN50962"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	17-Jul-07	17-Jul-07	10046.53	=""	="Qantas"	12-Dec-07 05:22 PM	
-="CN50965"	"Air fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10099.10	=""	="Qantas Airways"	12-Dec-07 05:27 PM	
-="CN50966"	"Air Fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	10100.42	=""	="Qantas Airways"	12-Dec-07 05:38 PM	
-="CN50969"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Aug-07	03-Aug-07	10180.50	=""	="Qantas Airways"	12-Dec-07 05:55 PM	
-="CN50970"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	23-Nov-07	23-Nov-07	10192.38	=""	="Qantas Airways"	12-Dec-07 06:02 PM	
-="CN50971"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	24-Aug-07	24-Aug-07	10205.47	=""	="Qantas Airways"	12-Dec-07 06:06 PM	
-="CN50972"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Oct-07	05-Oct-07	10257.61	=""	="Qantas Airways"	12-Dec-07 06:09 PM	
-="CN50973"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	18-Oct-07	18-Oct-07	10260.03	=""	="Qantas Airways"	12-Dec-07 06:11 PM	
-="CN50974"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Sep-07	05-Sep-07	10345.06	=""	="Qantas Airways"	12-Dec-07 06:14 PM	
-="CN50975"	" Earth Stake Assembly's manufactured in accordance with Drawings; DE59050001, DE590370000, DE590500002, DE590500000, DE590500003 & DE590500004. "	="Defence Materiel Organisation"	12-Dec-07	="Motor or generator components"	12-Dec-07	03-Mar-08	31269.81	="RFQ G5598"	="Milspec Manufacturing"	12-Dec-07 07:02 PM	
-="CN50976"	"Medical onsumables For ADF"	="Defence Materiel Organisation"	13-Dec-07	="Medical Equipment and Accessories and Supplies"	27-Sep-07	08-Oct-07	18936.50	=""	="LMA  Pacmed Pty Ltd"	13-Dec-07 09:18 AM	
-="CN50977"	"Airlink Environmental Impact Monitoring Program for the Australian Antarctic Division"	="Australian Antarctic Division"	13-Dec-07	="Pollution tracking and monitoring and rehabilitation"	01-Oct-07	30-Jun-10	246800.00	="07/768"	="The University of Queensland"	13-Dec-07 09:24 AM	
-="CN50978"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	08-Nov-07	30-Jun-08	33000.00	=""	="Brand Finance (Australia) Pty Ltd"	13-Dec-07 09:31 AM	
-="CN50979"	"Review the role of ASADA State Co-ordination Officers"	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Strategic planning consultation services"	26-Mar-07	30-Jul-07	23400.00	=""	="Four Streams Consulting Services Pty Ltd"	13-Dec-07 09:35 AM	
-="CN50980"	"Survey Leader Services for Aerial Survey of Minke Whales off coast of Antarctica"	="Australian Antarctic Division"	13-Dec-07	="Earth science services"	03-Dec-07	22-Jan-08	20000.00	="07/671"	="Mr Daniel Pike"	13-Dec-07 09:35 AM	
-="CN50981-A1"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	30-Oct-07	30-Dec-08	45188.00	=""	="Brand Finance (Australia) Pty Ltd"	13-Dec-07 09:37 AM	
-="CN50982"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	26-Oct-07	30-Jun-08	155891.00	=""	="Capital Value Pty Ltd"	13-Dec-07 09:45 AM	
-="CN50984"	"Develop a framework to provide immediate, intermediate and long-term information management strategies that will meet our Quality Management System (QMS) enviroment to achieve ISO 9001 accreditation."	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Corporate objectives or policy development"	21-Jun-07	10-Aug-07	223369.00	=""	="Ernst & Young"	13-Dec-07 09:58 AM	
-="CN50983"	"Textile Webbing"	="Defence Materiel Organisation"	13-Dec-07	="Webbing fabrics"	03-Dec-07	04-Feb-08	73700.00	="G4169/70"	="Pacific Aerodyne Pty Ltd"	13-Dec-07 10:10 AM	
-="CN50985"	"Provision of Investigation Services"	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Private investigation services"	20-Jul-07	31-Jan-08	59735.00	=""	="Australian Forensic Services Pty Ltd"	13-Dec-07 10:23 AM	
-="CN50986"	" 9150 66-068-0440   Engine Lubricating Oil  40 EA OMD 113 IN 20L (I/C 116114) "	="Defence Materiel Organisation"	13-Dec-07	="Lubricants and oils and greases and anti corrosives"	12-Dec-07	19-Dec-07	26967.88	=""	="Castrol"	13-Dec-07 10:35 AM	
-="CN50987"	"Valuation services in relation to tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	28-Nov-07	30-Jun-08	45972.00	=""	="Capital Value Pty Ltd"	13-Dec-07 10:52 AM	
-="CN50988"	" NSN 5306/00-076-4751  PURCHASE OF BOLT, COMPRESSOR WHEEL  EX GST "	="Defence Materiel Organisation"	13-Dec-07	="Military transport aircraft"	19-Nov-07	01-Dec-07	50439.48	=""	="Military Aviation Spares Pty Ltd"	13-Dec-07 10:59 AM	
-="CN50990"	"Motor Vehicle Parts."	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	26281.97	=""	="Land Rover Australia"	13-Dec-07 11:51 AM	
-="CN50993"	" Provision of Cleaning Services to Parliament House (Contract JH03024)       "	="Department of Parliamentary Services"	13-Dec-07	="Building cleaning services"	26-Oct-07	30-Jun-08	2667088.52	=""	="Limro Cleaning Services (ACT)"	13-Dec-07 12:10 PM	
-="CN50994"	"Printing Binding Packaging and Distribution"	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	20-Sep-07	20-Sep-08	185927.06	="S07/08/085"	="Lane Laser Printers Pty Ltd"	13-Dec-07 12:17 PM	
-="CN50998"	"Provision for Project Manager"	="Comsuper"	13-Dec-07	="Human resources services"	13-Dec-07	05-Apr-08	71280.00	=""	="Cordelta Pty Ltd"	13-Dec-07 12:48 PM	
-="CN50999-A2"	"provision for Project Manager - Governance Consultant"	="Comsuper"	13-Dec-07	="Human resources services"	22-Dec-07	12-Mar-08	192192.00	=""	="Maximus Solutions"	13-Dec-07 12:53 PM	
-="CN51000-A1"	"Provision for Accountant"	="Comsuper"	13-Dec-07	="Human resources services"	10-Dec-07	10-Mar-08	64350.00	=""	="maximus Solutions Australia"	13-Dec-07 12:56 PM	
-="CN51001"	"Provision for the Web Design Services"	="Comsuper"	13-Dec-07	="Web page creation and editing software"	03-Dec-07	30-Jun-08	19800.00	=""	="Cre8tive Digital"	13-Dec-07 01:00 PM	
-="CN51003"	"Provision for Legal Services"	="Comsuper"	13-Dec-07	="Legal services"	30-Jan-07	21-Dec-07	230000.00	=""	="Australian Government SDolicitors"	13-Dec-07 01:06 PM	
-="CN51004-A1"	"FLASHLIGHT"	="Defence Materiel Organisation"	13-Dec-07	="Flashlights"	12-Dec-07	31-May-08	330330.00	=""	="CROSSFIRE PTY LTD"	13-Dec-07 01:37 PM	
-="CN51005"	"Microsoft support hours"	="Australian Human Rights Commission"	13-Dec-07	="Computers"	22-Oct-07	23-Oct-08	10230.00	=""	="Microsoft Pty Ltd"	13-Dec-07 01:52 PM	
-="CN51008"	"Hire of Premises"	="Australian Electoral Commission"	13-Dec-07	="Lease and rental of property or building"	05-Nov-07	10-Dec-07	11000.00	=""	="Savills (VIC) Pty Ltd"	13-Dec-07 01:56 PM	
-="CN50991"	"Motor Vehicle Parts."	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	27-Dec-07	10276.75	=""	="Mercedes Benz Aust/Pacific"	13-Dec-07 02:01 PM	
-="CN51009"	"Office Supplies"	="Australian Electoral Commission"	13-Dec-07	="Stationery"	20-Nov-07	20-Dec-07	17946.93	=""	="Corporate Express (Alexandria)"	13-Dec-07 02:02 PM	
-="CN50996"	" GENERATOR, ALTERNATING CURRENT "	="Defence Materiel Organisation"	13-Dec-07	="Motor or generator components"	12-Dec-07	06-Jun-08	16121.93	=""	="ADVANCED POWER (NSW) PTY LTD"	13-Dec-07 02:10 PM	
-="CN51011"	"VEHICLE PARTS"	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	11-Jan-08	29458.06	=""	="MERCEDES BENZ AUSTRALIA"	13-Dec-07 02:11 PM	
-="CN50995"	"PRINTED CIRCUIT BOARD"	="Defence Materiel Organisation"	13-Dec-07	="Motor or generator components"	12-Dec-07	11-Jan-08	25130.66	=""	="ADVANCED POWER (NSW) PTY LTD"	13-Dec-07 02:18 PM	
-="CN51013"	"Gazette Advertising"	="Australian Electoral Commission"	13-Dec-07	="Advertising"	22-Nov-07	22-Dec-07	15587.00	=""	="Attorney General's Department"	13-Dec-07 02:23 PM	
-="CN51014"	"Provision of temporary trades labour"	="Department of Parliamentary Services"	13-Dec-07	="Temporary technician staffing needs"	12-Dec-07	30-Jun-08	12015.85	=""	="People Consulting Services P/L"	13-Dec-07 02:26 PM	
-="CN51015"	"Provision of maintenance painting services (Contract JH99063)"	="Department of Parliamentary Services"	13-Dec-07	="Painting services"	12-Dec-07	30-Jun-08	507171.04	=""	="AGC Industries Pty Ltd"	13-Dec-07 02:26 PM	
-="CN51016"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	13-Dec-07	="Printing"	11-Dec-07	31-Mar-08	80850.00	=""	="Canprint Communications Pty Ltd"	13-Dec-07 02:27 PM	
-="CN51017"	"Provision of placement for B White"	="Department of Parliamentary Services"	13-Dec-07	="Management advisory services"	11-Dec-07	29-Jan-08	21487.76	=""	="HUDSON TMP/HUDSON GLOBAL RES"	13-Dec-07 02:27 PM	
-="CN51018"	"Provision of Protective Service at Parliament Hous Contract (DPS07050 )"	="Department of Parliamentary Services"	13-Dec-07	="Guard services"	07-Dec-07	31-Mar-08	9162038.60	=""	="Aust Federal Police"	13-Dec-07 02:27 PM	
-="CN51019"	"Maintenance of Ceramic and Quarry Tiles Contract (JH03028 )"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	30-Mar-08	30593.92	=""	="PDA Marble & Granite"	13-Dec-07 02:27 PM	
-="CN51020"	"Internal audit services"	="Department of Parliamentary Services"	13-Dec-07	="Internal audits"	04-Dec-07	28-Dec-07	20398.13	=""	="WalterTurnbull Pty Ltd"	13-Dec-07 02:27 PM	
-="CN51021"	"Internal audit services"	="Department of Parliamentary Services"	13-Dec-07	="Internal audits"	04-Dec-07	28-Dec-07	15881.25	=""	="WalterTurnbull Pty Ltd"	13-Dec-07 02:27 PM	
-="CN51022"	"Provision of  Project Mangement Services"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	11667.26	=""	="Manteena Pty Ltd"	13-Dec-07 02:27 PM	
-="CN51023"	"Provision of Engineering Works (Contract JH00007(53)"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	28688.00	=""	="G E Shaw & Associates"	13-Dec-07 02:27 PM	
-="CN51024"	"Provision of Internet Services"	="Department of Parliamentary Services"	13-Dec-07	="Internet services"	10-Dec-07	31-Dec-07	168640.66	=""	="Telstra Corporation Ltd"	13-Dec-07 02:28 PM	
-="CN51025"	"Provision Of building works package 2005-2007 Contract (JH00007  52)"	="Department of Parliamentary Services"	13-Dec-07	="Building construction management"	12-Dec-07	30-Jun-08	13167.00	=""	="Manteena Pty Ltd"	13-Dec-07 02:28 PM	
-="CN51026"	"Provision of Project Management Services"	="Department of Parliamentary Services"	13-Dec-07	="Project management"	11-Dec-07	30-Jun-08	14388.00	=""	="Manteena Pty Ltd"	13-Dec-07 02:28 PM	
-="CN51027"	"ASP ENVC ANZRC Subscription 1 year"	="Department of Parliamentary Services"	13-Dec-07	="Printed publications"	29-Nov-07	01-Nov-08	20301.60	=""	="EBSCO PUBLISHING"	13-Dec-07 02:28 PM	
-="CN51028"	"Standing Offer notice (SON27006); LEASE DEC-07 Fleet management and leasing services."	="Department of Parliamentary Services"	13-Dec-07	="Vehicle leasing"	20-Nov-07	31-Dec-07	12492.06	=""	="LeasePlan"	13-Dec-07 02:28 PM	
-="CN51029"	"1/12/07-30/11/08 Oxford Analytica comrehensive cli"	="Department of Parliamentary Services"	13-Dec-07	="Printed publications"	28-Nov-07	30-Nov-08	15316.81	=""	="OXFORD ANALYTICA INC."	13-Dec-07 02:28 PM	
-="CN51030"	"Factiva monthly & works information  1/7-30/9/07"	="Department of Parliamentary Services"	13-Dec-07	="Internet services"	01-Jul-07	30-Sep-07	18000.00	=""	="DOW JONES REUTERS BUSINESS"	13-Dec-07 02:28 PM	
-="CN51031"	"Print Advertising Supplement"	="Australian Electoral Commission"	13-Dec-07	="Print advertising"	20-Nov-07	20-Dec-07	76098.25	=""	="HMA Blaze"	13-Dec-07 02:35 PM	
-="CN51033"	"Printing of Ballot Papers"	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	03-May-07	28-Feb-08	115000.00	="Q2003/01"	="Goprint"	13-Dec-07 02:43 PM	
-="CN51034"	"Fitout management services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Oct-07	30-Jun-08	15943.19	=""	="GHD Pty Ltd"	13-Dec-07 03:31 PM	
-="CN51035-A1"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	20-Nov-07	30-Jun-08	32160.03	=""	="UNE Partnerships Pty Ltd"	13-Dec-07 03:31 PM	
-="CN51036"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	22-Nov-07	30-Jun-08	55000.11	=""	="IPA Personnel Pty Ltd"	13-Dec-07 03:31 PM	
-="CN51037"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	87820.00	=""	="Taylor Fry Pty Ltd"	13-Dec-07 03:31 PM	
-="CN51038"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	18-Nov-07	16742.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:31 PM	
-="CN51039"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	10-Dec-07	14990.80	=""	="Desa Australia (QLD) Pty Ltd"	13-Dec-07 03:32 PM	
-="CN51040"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	22-Nov-07	34320.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:32 PM	
-="CN51041"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	25-Nov-07	38830.00	=""	="MIMP Computer Cables"	13-Dec-07 03:32 PM	
-="CN51042"	"Guard service"	="Centrelink"	13-Dec-07	="Security and personal safety"	02-Nov-07	02-May-08	32852.16	=""	="Wilson Security"	13-Dec-07 03:32 PM	
-="CN51043"	"Office Fitout, Woden, ACT"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Nov-07	26-Nov-07	157633.19	=""	="Quatram Building Services Pty Ltd"	13-Dec-07 03:32 PM	
-="CN51044"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	06-Nov-07	20-Mar-08	44976.80	=""	="FGP Company Pty Ltd"	13-Dec-07 03:32 PM	
-="CN51045"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	07-Nov-07	30-Jun-08	48152.50	=""	="Regent Recruitment"	13-Dec-07 03:32 PM	
-="CN51046"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	74800.00	=""	="CRS Australia"	13-Dec-07 03:32 PM	
-="CN51047"	"Graphic design"	="Centrelink"	13-Dec-07	="Graphic design"	07-Nov-07	30-Jun-08	87230.00	=""	="Retail Environment Design"	13-Dec-07 03:32 PM	
-="CN51048"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	14300.00	=""	="Dillon Whitelaw & Associates P/L"	13-Dec-07 03:33 PM	
-="CN51049"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	44000.00	=""	="Hopwood & Associates Pty Ltd"	13-Dec-07 03:33 PM	
-="CN51050"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	22000.00	=""	="TAFE Tasmania"	13-Dec-07 03:33 PM	
-="CN51051"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	07-Nov-07	30-Jun-08	10000.00	=""	="VOID Elliott Hotel"	13-Dec-07 03:33 PM	
-="CN51052"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	20000.20	=""	="Ken Everett International Pty Ltd"	13-Dec-07 03:33 PM	
-="CN51053"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	07-Nov-07	30-Jun-08	34500.00	=""	="Ingkerreke Outstations Resource"	13-Dec-07 03:33 PM	
-="CN51054"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	07-Nov-07	30-Jun-08	10000.00	=""	="Macmahon Contractors Pty Ltd"	13-Dec-07 03:33 PM	
-="CN51055"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	07-Nov-07	20-Mar-08	129140.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:33 PM	
-="CN51056"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	14520.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:33 PM	
-="CN51058"	"Project management services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Nov-07	29-Jun-08	13822.75	=""	="IA Group Pty Ltd (Interiors Austral"	13-Dec-07 03:34 PM	
-="CN51059"	"Employee assistance program - Tasmania"	="Centrelink"	13-Dec-07	="Human resources services"	30-Nov-07	30-Nov-09	172040.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:34 PM	
-="CN51057"	" Printing of Ballot Papers "	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	01-Mar-04	01-Mar-07	198000.00	="Q2003/02"	="Goprint"	13-Dec-07 03:34 PM	
-="CN51060"	"Business administration - interpreter services"	="Centrelink"	13-Dec-07	="Business administration services"	15-Nov-07	30-Jun-08	50000.01	=""	="Non-registered interpreters"	13-Dec-07 03:34 PM	
-="CN51061"	"Courier Services"	="Centrelink"	13-Dec-07	="Mail and cargo transport"	22-Nov-07	30-Jun-08	77000.00	=""	="Toll Priority"	13-Dec-07 03:34 PM	
-="CN51062"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	14-Nov-07	07-Dec-07	62157.70	=""	="Hoban Recruitment"	13-Dec-07 03:34 PM	
-="CN51063"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Nov-07	25-Jan-08	79436.50	=""	="HBO + EMTB Interiors (Victoria) P/L"	13-Dec-07 03:34 PM	
-="CN51064"	"Information Services"	="Centrelink"	13-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	149999.99	=""	="Australian Business Research"	13-Dec-07 03:34 PM	
-="CN51065"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	20000.00	=""	="MLCOA"	13-Dec-07 03:34 PM	
-="CN51066"	"Medical services"	="Centrelink"	13-Dec-07	="Healthcare Services"	23-Nov-07	30-Jun-08	39600.00	=""	="Health for Industry"	13-Dec-07 03:35 PM	
-="CN51067"	"DVD Production Services"	="Centrelink"	13-Dec-07	="Telecommunications media services"	22-Nov-07	30-Jun-08	23854.05	=""	="National Video Centre Pty Ltd"	13-Dec-07 03:35 PM	
-="CN51068"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	06-Jul-07	31-Jul-07	291033.00	=""	="Grosvenor Management Consulting P/L"	13-Dec-07 03:35 PM	
-="CN51069-A1"	"Advertising"	="Centrelink"	13-Dec-07	="Advertising"	13-Nov-07	30-Jun-08	153804.85	=""	="HMA Blaze Pty Ltd"	13-Dec-07 03:35 PM	
-="CN51070"	"Painting Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Nov-07	10-Apr-08	44000.00	=""	="Anasson Painting & Maintenance"	13-Dec-07 03:35 PM	
-="CN51071-A1"	"Advertising"	="Centrelink"	13-Dec-07	="Advertising"	12-Nov-07	30-Sep-08	11000.00	=""	="HMA Blaze Pty Ltd"	13-Dec-07 03:35 PM	
-="CN51072"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	19-Nov-07	30-Nov-07	660000.00	=""	="Vedior Asia Pacific Pty Ltd"	13-Dec-07 03:35 PM	
-="CN51073"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	04-Dec-07	30-Jun-08	42606.74	=""	="Hoban Recruitment"	13-Dec-07 03:35 PM	
-="CN51074"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	30-Jul-07	30-Jun-08	11000.00	=""	="Wines Office Furniture"	13-Dec-07 03:35 PM	
-="CN51075"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	29-Nov-07	30-Jun-08	29215.34	=""	="Chandler Macleod"	13-Dec-07 03:36 PM	
-="CN51076"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	02-Aug-07	30-Jun-08	11000.00	=""	="Advanced Personnel Management"	13-Dec-07 03:36 PM	
-="CN51077"	"TV cabling services"	="Centrelink"	13-Dec-07	="Electronic Components and Supplies"	06-Aug-07	30-Jun-08	14960.00	=""	="Fred Palmer & Son"	13-Dec-07 03:36 PM	
-="CN51078-A1"	"Office refurbishment"	="Centrelink"	13-Dec-07	="Office machines and their supplies and accessories"	10-Sep-07	31-Dec-07	275492.99	=""	="Retail Environment Design"	13-Dec-07 03:36 PM	
-="CN51079"	"Airconditioning repairs"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Aug-07	07-Nov-07	10154.38	=""	="AIRTEMP PTY LTD"	13-Dec-07 03:36 PM	
-="CN51080"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	19-Nov-07	09-Dec-07	10993.40	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:36 PM	
-="CN51081"	"Accounting and auditing services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	20-Nov-07	30-Jun-08	15120.00	=""	="BDO Kendalls (Nsw-Vic) Pty Ltd"	13-Dec-07 03:36 PM	
-="CN51082"	"Accounting and audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	20-Nov-07	30-Jun-08	15120.00	=""	="BDO Kendalls (Nsw-Vic) Pty Ltd"	13-Dec-07 03:36 PM	
-="CN51084"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	20-Nov-07	30-Jun-08	11000.00	=""	="Families at Work"	13-Dec-07 03:36 PM	
-="CN51085"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	21-Nov-07	27-Nov-07	10326.03	=""	="Robert Brennan & Associates"	13-Dec-07 03:37 PM	
-="CN51086-A1"	"Employee assistance program"	="Centrelink"	13-Dec-07	="Community and social services"	22-Nov-07	22-Nov-07	13376.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:37 PM	
-="CN51087-A1"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Community and social services"	22-Nov-07	30-Nov-07	13376.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:37 PM	
-="CN51088"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Nov-07	03-Dec-08	78555.40	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:37 PM	
-="CN51089"	"Business administraion"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	45589.20	=""	="Corporate Executive Board"	13-Dec-07 03:37 PM	
-="CN51090"	"Business Administration"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	79781.10	=""	="Corporate Executive Board"	13-Dec-07 03:37 PM	
-="CN51091"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Human resources services"	23-Nov-07	23-Nov-08	273839.50	=""	="OSA Group"	13-Dec-07 03:37 PM	
-="CN51092"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	23-Nov-07	16-Dec-07	39952.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:38 PM	
-="CN51093"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	23-Nov-07	16-Dec-07	33949.30	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:38 PM	
-="CN51094"	"Accounting and Audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	26-Nov-07	30-Jun-08	73500.00	=""	="Pitt Group Pty Ltd"	13-Dec-07 03:38 PM	
-="CN51095"	"Accounting and Audit Services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	26-Nov-07	30-Jun-08	84000.00	=""	="PricewaterhouseCoopers"	13-Dec-07 03:38 PM	
-="CN51097"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	26-Nov-07	12-Mar-08	55001.60	=""	="PricewaterhouseCoopers"	13-Dec-07 03:38 PM	
-="CN51098"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	26-Nov-07	30-Jun-08	19600.01	=""	="Tarcus Pty Ltd"	13-Dec-07 03:38 PM	
-="CN51099"	"Fitout Management Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	89470.70	=""	="Integrated Space Ltd"	13-Dec-07 03:38 PM	
-="CN51100"	"Project Management Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	52250.00	=""	="IA Group Pty Ltd (Interiors Austral"	13-Dec-07 03:39 PM	
-="CN51101"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	27-Nov-07	15-Mar-08	433189.90	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:39 PM	
-="CN51102"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	27-Nov-07	30-Jun-08	33000.00	=""	="Customer Focus Group Training Co"	13-Dec-07 03:39 PM	
-="CN51103"	"Transport services"	="Centrelink"	13-Dec-07	="Transport operations"	29-Nov-07	30-Jun-08	50000.01	=""	="Hardy Aviation (NT) Pty Ltd"	13-Dec-07 03:39 PM	
-="CN51105"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	30-Nov-07	30-Jun-08	60000.00	=""	="Unified Healthcare Group"	13-Dec-07 03:39 PM	
-="CN51106"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	51579.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:39 PM	
-="CN51107"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	25-Nov-07	16148.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:39 PM	
-="CN51108"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	18260.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:39 PM	
-="CN51109"	"Accounting and auditing services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	08-Nov-07	30-Jun-08	84735.00	=""	="KPMG"	13-Dec-07 03:40 PM	
-="CN51110"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	08-Nov-07	30-Jun-08	30104.80	=""	="Vedior Asia Pacific Pty Ltd"	13-Dec-07 03:40 PM	
-="CN51111"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	09-Dec-07	107657.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:40 PM	
-="CN51112"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	09-Dec-07	42890.10	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:40 PM	
-="CN51113"	"External Training"	="Centrelink"	13-Dec-07	="Educational institutions"	08-Nov-07	30-Dec-08	27000.00	=""	="Box Hill Institute of TAFE"	13-Dec-07 03:40 PM	
-="CN51114"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	09-Nov-07	30-Jul-08	185828.50	=""	="Dimension Data Australia Pty Ltd"	13-Dec-07 03:40 PM	
-="CN51115"	"Business Administration Services"	="Centrelink"	13-Dec-07	="Business administration services"	09-Nov-07	30-Jun-08	10000.00	=""	="Axis Searching & Settlements"	13-Dec-07 03:40 PM	
-="CN51116"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	09-Nov-07	02-Dec-08	349152.70	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:40 PM	
-="CN51117"	" Recuitment Services "	="Centrelink"	13-Dec-07	="Human resources services"	13-Nov-07	30-Jun-08	38500.00	=""	="Hays Personnel Services (Aust) P/L"	13-Dec-07 03:40 PM	
-="CN51118"	"Office fitout, Adelaide, SA"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Nov-07	30-Jun-08	46542.00	=""	="HBO + EMTB Interiors (Victoria) P/L"	13-Dec-07 03:41 PM	
-="CN51119"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	20-Mar-08	66041.80	=""	="Solitaire Seating"	13-Dec-07 03:41 PM	
-="CN51121"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Human resources services"	14-Nov-07	31-Oct-08	135000.00	=""	="OSA Group"	13-Dec-07 03:41 PM	
-="CN51122"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	20-Mar-08	74154.30	=""	="Solitaire Seating"	13-Dec-07 03:41 PM	
-="CN51123"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	15-Nov-07	30-Jun-08	11000.00	=""	="Health for Industry"	13-Dec-07 03:41 PM	
-="CN51124"	"Recuitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	15-Nov-07	30-Jun-08	169400.00	=""	="Chandler Macleod"	13-Dec-07 03:41 PM	
-="CN51125"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	16-Nov-07	30-Jun-08	11000.00	=""	="Dept of Employment & Workplace"	13-Dec-07 03:42 PM	
-="CN51126"	"Vehicle fitouts and accessories"	="Centrelink"	13-Dec-07	="Vehicle bodies and trailers"	16-Nov-07	30-Jun-08	50000.01	=""	="ARB Vehicle Accessories"	13-Dec-07 03:42 PM	
-="CN51127"	"Accommodation and meeting facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Jun-08	30000.00	=""	="All Seasons"	13-Dec-07 03:42 PM	
-="CN51128"	"Transport Services"	="Centrelink"	13-Dec-07	="Transport operations"	16-Nov-07	30-Jun-08	30000.00	=""	="Murin Travel & Freight Services"	13-Dec-07 03:42 PM	
-="CN51129"	"Accounting and Audit Services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	16-Nov-07	30-Jun-08	13200.00	=""	="World Wide Webster Pty Ltd"	13-Dec-07 03:42 PM	
-="CN51130"	"Static Guard Services, Fremantle, WA"	="Centrelink"	13-Dec-07	="Security and personal safety"	02-Nov-07	02-May-08	32852.16	=""	="Wilson Security"	13-Dec-07 03:42 PM	
-="CN51131"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	05-Nov-07	30-Jun-08	21760.68	=""	="Compuware Asia-Pacific Pty Ltd"	13-Dec-07 03:42 PM	
-="CN51132"	"Accommodation and meeing facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	05-Nov-07	30-Jun-08	15795.12	=""	="Marcus Evans (ANZ) Limited"	13-Dec-07 03:42 PM	
-="CN51133"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	58994.10	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51134"	"Blinds"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	05-Nov-07	03-Dec-07	30140.00	=""	="Riteway Curtains and Blinds"	13-Dec-07 03:43 PM	
-="CN51135"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	05-Nov-07	05-Feb-08	12464.59	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51136"	"Floor covering, Blacktown, NSW"	="Centrelink"	13-Dec-07	="Software"	06-Nov-07	18-Nov-07	11407.00	=""	="J D C Flooring Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51137"	"Office fitout"	="Centrelink"	13-Dec-07	="Office supplies"	06-Nov-07	08-Feb-08	225940.00	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51138"	"Class "B" Safe"	="Centrelink"	13-Dec-07	="Security and personal safety"	07-Nov-07	15-Dec-07	45610.40	=""	="CMI Safe Co"	13-Dec-07 03:43 PM	
-="CN51139"	"Office fitout, Mildura, VIC"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Nov-07	18-Jan-08	10450.00	=""	="Zhomic Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51140"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	08-Nov-07	30-Jun-08	64350.00	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:43 PM	
-="CN51141"	"Business administraion"	="Centrelink"	13-Dec-07	="Business administration services"	08-Nov-07	30-Jun-08	11710.16	=""	="KPMG"	13-Dec-07 03:43 PM	
-="CN51142"	"Office furniture, Mildura, VIC"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	18-Jan-08	21410.31	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:44 PM	
-="CN51143"	"Venue hire"	="Centrelink"	13-Dec-07	="Business administration services"	08-Nov-07	06-Dec-07	56762.79	=""	="Think Business Events"	13-Dec-07 03:44 PM	
-="CN51144"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	08-Nov-07	23276.00	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:44 PM	
-="CN51145"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	03-Dec-07	80349.50	=""	="Schiavello Systems (QLD) Pty Ltd"	13-Dec-07 03:44 PM	
-="CN51146"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	14-Dec-07	18535.59	=""	="UCI"	13-Dec-07 03:44 PM	
-="CN51147"	"Office furniture, Newport, VIC"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	21-Dec-07	104115.00	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:44 PM	
-="CN51148"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	09-Nov-07	30-Jun-08	20751.01	=""	="Trowbridge Deloitte"	13-Dec-07 03:44 PM	
-="CN51149"	"Fitout Management Services"	="Centrelink"	13-Dec-07	="Professional engineering services"	09-Nov-07	30-Jun-08	11745.00	=""	="GHD Pty Ltd"	13-Dec-07 03:44 PM	
-="CN51150"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	21-Dec-07	16464.03	=""	="Empire Business Furniture"	13-Dec-07 03:44 PM	
-="CN51151"	"Blinds"	="Centrelink"	13-Dec-07	="Office supplies"	09-Nov-07	25-Nov-07	23058.18	=""	="Hunter Douglas Limited"	13-Dec-07 03:45 PM	
-="CN51153"	"Office furniture, Burnie, TAS"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	14-Dec-07	26732.86	=""	="Gregory Commercial Furniture P/L"	13-Dec-07 03:45 PM	
-="CN51154"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	29-Nov-07	03-Jun-08	82882.80	=""	="Verossity Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51155"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	10-Nov-05	12-May-06	121832.71	=""	="Peoplebank Australia Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51156"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	14-Nov-07	18-Nov-07	109309.20	=""	="Ekonsulting Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51157"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	22-Nov-07	24-Nov-07	187387.20	=""	="Peoplebank Australia Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51158"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	27-Jan-06	27-Nov-07	131670.00	=""	="Omaha IT Services Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51159"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	04-Sep-07	26-Nov-07	165445.72	=""	="OOSW Consulting Pty Ltd"	13-Dec-07 03:45 PM	
-="CN51160"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	03-Dec-07	05-Dec-07	102102.00	=""	="Degisoft Consulting"	13-Dec-07 03:45 PM	
-="CN51161"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	22-Nov-07	22-Nov-07	117717.60	=""	="Southern Cross Computing Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51162"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Human resources services"	28-Nov-07	30-Nov-07	44500.50	=""	="CSC Australia Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51163"	"Surveillance equipment"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	18-Sep-07	28-Dec-07	10252.00	=""	="Signature Security Group"	13-Dec-07 03:46 PM	
-="CN51164"	"Upgrade of Digital CCTV Monitoring Equipment"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	09-Oct-07	31-Oct-07	39069.11	=""	="Austwide Security Services"	13-Dec-07 03:46 PM	
-="CN51165"	"IT Specialist Services by specified personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Jun-08	172788.00	=""	="Talent International (ACT) Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51166"	"IT Specialist services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Apr-08	115315.20	=""	="Ekonsulting Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51167"	"CCTV system for Kurri Kurri, NSW"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	01-Nov-07	01-Nov-07	10672.00	=""	="Novocastrian Alarms Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51168"	"Floor covering"	="Centrelink"	13-Dec-07	="Office supplies"	01-Nov-07	18-Nov-07	13376.00	=""	="J D C Flooring Pty Ltd"	13-Dec-07 03:46 PM	
-="CN51169"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Jun-08	137445.00	=""	="Icon Recruitment Pty Ltd"	13-Dec-07 03:47 PM	
-="CN51170"	"Internal painting at Newport, VIC"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Nov-07	28-Dec-07	21087.00	=""	="L & A Petruccelli"	13-Dec-07 03:47 PM	
-="CN51171"	"External Training"	="Centrelink"	13-Dec-07	="Educational facilities"	02-Nov-07	30-Nov-07	17520.00	=""	="Box Hill Institute of TAFE"	13-Dec-07 03:47 PM	
-="CN51172"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	04-Nov-08	165765.60	=""	="Compas Pty Ltd"	13-Dec-07 03:47 PM	
-="CN51173"	"Office removals and storage"	="Centrelink"	13-Dec-07	="Material packing and handling"	02-Nov-07	16-Dec-07	10560.00	=""	="A-2-B Furniture Removals & Storage"	13-Dec-07 03:47 PM	
-="CN51174"	"Supply and install new carpet tiles, Newport, NSW"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Nov-07	21-Dec-07	63439.42	=""	="Interface Flor"	13-Dec-07 03:47 PM	
-="CN51175"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	02-Nov-07	02-Nov-07	21914.90	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:47 PM	
-="CN51176"	"Mechanical Services"	="Centrelink"	13-Dec-07	="Distribution and Conditioning Systems and Equipment and Components"	02-Nov-07	31-Dec-07	10340.00	=""	="Westside Services (SA) Pty Ltd"	13-Dec-07 03:47 PM	
-="CN51177"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	19-Nov-07	30-Jun-08	11748.65	=""	="Hotel Realm"	13-Dec-07 03:47 PM	
-="CN51178-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	20-Nov-07	03-Dec-07	60558.00	=""	="Australian Envelopes"	13-Dec-07 03:48 PM	
-="CN51179-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	20-Nov-07	03-Dec-07	27005.44	=""	="Australian Envelopes"	13-Dec-07 03:48 PM	
-="CN51180"	"Conference Services"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	20-Nov-07	06-Dec-07	19842.00	=""	="Citigate Sebel Sydney"	13-Dec-07 03:48 PM	
-="CN51181"	"Supply and install carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	21-Nov-07	30-Jun-08	83526.14	=""	="Interface Flor"	13-Dec-07 03:48 PM	
-="CN51182"	"Interior signage"	="Centrelink"	13-Dec-07	="Signage and accessories"	21-Nov-07	31-Dec-07	11957.00	=""	="Tint Design Pty Ltd"	13-Dec-07 03:48 PM	
-="CN51183"	"Training equipment"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	15-Jan-08	11438.90	=""	="Electroboard Solutions Pty Ltd"	13-Dec-07 03:48 PM	
-="CN51184"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	22-Nov-07	30-Jun-08	26800.00	=""	="Australian Public Servce Commission"	13-Dec-07 03:48 PM	
-="CN51185"	"Accounting and audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	22-Nov-07	30-Jun-08	38310.00	=""	="KPMG"	13-Dec-07 03:48 PM	
-="CN51186"	"Office fitout, Cabramatta, NSW"	="Centrelink"	13-Dec-07	="Office supplies"	22-Nov-07	15-Dec-07	238332.60	=""	="Formula Interiors NSW"	13-Dec-07 03:48 PM	
-="CN51187"	"Conference Services"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Nov-07	16940.00	=""	="Telos Partners Australia Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51188"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	26-Nov-07	26-Nov-07	28872.72	=""	="Dimension Data Australia Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51189"	"Electrical Services"	="Centrelink"	13-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	26-Nov-07	24-Dec-07	71412.00	=""	="Tri State Electrical & Communicatio"	13-Dec-07 03:49 PM	
-="CN51190"	"Market Research"	="Centrelink"	13-Dec-07	="Management advisory services"	26-Nov-07	31-Dec-07	10890.00	=""	="Open Mind Research Group"	13-Dec-07 03:49 PM	
-="CN51191-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	27-Nov-07	31-Dec-07	34672.00	=""	="Australian Envelopes"	13-Dec-07 03:49 PM	
-="CN51192"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	19-Dec-07	124300.00	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51193"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	28-Dec-07	32835.00	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51194"	"Business Television Production - Equipment"	="Centrelink"	13-Dec-07	="Telecommunications media services"	28-Nov-07	31-Jan-08	12491.80	=""	="Electronic Concepts Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51195"	"Install CCTV to all areas of Hobart, TAS"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	21-Dec-07	69564.00	=""	="Spotless P & F Pty Ltd"	13-Dec-07 03:49 PM	
-="CN51196"	"Install CCTV"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	21-Dec-07	15043.60	=""	="Spotless P & F Pty Ltd"	13-Dec-07 03:50 PM	
-="CN51197"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	28-Nov-07	12-Dec-07	44550.00	=""	="CPT Global Ltd"	13-Dec-07 03:50 PM	
-="CN51198"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	29-Nov-07	29-Nov-07	26276.25	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:50 PM	
-="CN51199"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	29-Nov-07	30-Jun-08	156553.10	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Dec-07 03:50 PM	
-="CN51200"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	12-Nov-07	05-Dec-07	10945.00	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:50 PM	
-="CN51201"	"Engineering Services"	="Centrelink"	13-Dec-07	="Professional engineering services"	12-Nov-07	30-Jun-08	15455.00	=""	="GHD Pty Ltd"	13-Dec-07 03:50 PM	
-="CN51202"	"Supply and install carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	12-Nov-07	30-Jun-08	108601.46	=""	="Interface Flor"	13-Dec-07 03:50 PM	
-="CN51203"	"Supply and Install Carpet"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	07-Dec-07	32010.00	=""	="Carpet Company"	13-Dec-07 03:50 PM	
-="CN51204"	"Supply & Install marketing and promotional items"	="Centrelink"	13-Dec-07	="Marketing and distribution"	13-Nov-07	13-Nov-07	21472.00	=""	="Schiavello (WA) Pty Ltd"	13-Dec-07 03:50 PM	
-="CN51205"	"Construction work"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Nov-07	15-Dec-07	24612.50	=""	="UEA Pty Ltd"	13-Dec-07 03:51 PM	
-="CN51206"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	25-Jan-08	30390.80	=""	="Stem Industries Pty Ltd"	13-Dec-07 03:51 PM	
-="CN51207"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	14-Nov-07	14-May-08	91891.80	=""	="Ambit Group"	13-Dec-07 03:51 PM	
-="CN51208"	"Joinery Services"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	30-Nov-07	56727.00	=""	="T  Early & Sons Pty Ltd"	13-Dec-07 03:51 PM	
-="CN51209"	"External Training"	="Centrelink"	13-Dec-07	="Educational facilities"	14-Nov-07	31-Dec-07	16500.00	=""	="Australian Security Academy Pty Ltd"	13-Dec-07 03:51 PM	
-="CN51210"	"Carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	30-Dec-07	23617.22	=""	="Interface Flor"	13-Dec-07 03:51 PM	
-="CN51211"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Business administration services"	14-Nov-07	30-Nov-07	18590.00	=""	="Tanner Menzies"	13-Dec-07 03:51 PM	
-="CN51212"	"Signage"	="Centrelink"	13-Dec-07	="Signage and accessories"	15-Nov-07	10-Dec-07	11030.45	=""	="Signworld Sunshine Coast"	13-Dec-07 03:51 PM	
-="CN51213"	"Office fitout"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	15-Nov-07	12-Jan-08	13383.70	=""	="Schiavello (WA) Pty Ltd"	13-Dec-07 03:52 PM	
-="CN51214"	"LCD Projectors"	="Centrelink"	13-Dec-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Nov-07	30-Nov-07	11192.50	=""	="Electroboard Solutions Pty Ltd"	13-Dec-07 03:52 PM	
-="CN51216"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	43890.00	=""	="Stem Industries Pty Ltd"	13-Dec-07 03:52 PM	
-="CN51217"	"Computer Equipment"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	30-Jun-08	28600.00	=""	="Triangle Corporation"	13-Dec-07 03:52 PM	
-="CN51218"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	54284.89	=""	="Corporate Express Australia Limited"	13-Dec-07 03:52 PM	
-="CN51219"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	16-Nov-07	30-Jun-08	36685.00	=""	="Australian Public Servce Commission"	13-Dec-07 03:52 PM	
-="CN51220"	"Transportation services equipment"	="Centrelink"	13-Dec-07	="Transportation services equipment"	16-Nov-07	30-Jun-08	10000.00	=""	="GAPUWIYAK COMMUNITY INC"	13-Dec-07 03:52 PM	
-="CN51221"	"Removalist Services"	="Centrelink"	13-Dec-07	="Material packing and handling"	16-Nov-07	18-Nov-07	10340.00	=""	="1st Fleet Pty Ltd"	13-Dec-07 03:52 PM	
-="CN51222"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	19-Nov-07	30-Jun-08	10689.00	=""	="Sydney Masonic Centre Pty Ltd"	13-Dec-07 03:53 PM	
-="CN51224"	"Advertising the Writ"	="Australian Electoral Commission"	13-Dec-07	="Advertising"	22-Nov-07	22-Dec-07	24331.89	=""	="HMA Blaze"	13-Dec-07 03:57 PM	
-="CN51227"	"Print Advertising Supplement"	="Australian Electoral Commission"	13-Dec-07	="Print advertising"	22-Nov-07	22-Dec-07	291439.24	=""	="HMA Blaze"	13-Dec-07 04:05 PM	
-="CN51096"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	04-Sep-07	04-Sep-07	10356.06	=""	="Qantas Airways"	13-Dec-07 04:08 PM	
-="CN51228"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	16054.45	=""	="VOLVO COMMERICAL VEHICLES"	13-Dec-07 04:09 PM	
-="CN51229"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	10376.08	=""	="Qantas Airways"	13-Dec-07 04:15 PM	
-="CN51230"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	08-Oct-07	08-Oct-07	10377.62	=""	="Qantas Airways"	13-Dec-07 04:17 PM	
-="CN51233-A1"	"Temporary Personnel"	="Australian Electoral Commission"	13-Dec-07	="Temporary personnel services"	02-Jan-08	30-Jun-08	40048.80	="AEC06/019"	="Hays Personnel Services"	13-Dec-07 04:30 PM	
-="CN51235"	"Record Management Software Maintenance"	="Australian Electoral Commission"	13-Dec-07	="Software maintenance and support"	01-Dec-07	30-Nov-08	17190.50	=""	="Microhelp"	13-Dec-07 04:37 PM	
-="CN51236"	" AIRCRAFT SPARES  NSN 5330-01-513-0876  PACKING MATERIAL  QTY 50 "	="Defence Materiel Organisation"	13-Dec-07	="Military transport helicopters"	13-Dec-07	12-Jan-08	13200.00	=""	="ASIA PACIFIC AEROSPACE"	13-Dec-07 04:40 PM	
-="CN51232"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10617.20	=""	="Qantas Airways"	13-Dec-07 04:42 PM	
-="CN51238"	"Delivery of Election Material"	="Australian Electoral Commission"	13-Dec-07	="Freight loading or unloading"	19-Nov-07	19-Dec-07	12166.00	=""	="Anderson's Removals and Storage"	13-Dec-07 04:45 PM	
-="CN51239"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	04-Oct-07	04-Oct-07	10680.45	=""	="Qantas Airways"	13-Dec-07 04:46 PM	
-="CN51240"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	14-Aug-07	14-Aug-07	10682.65	=""	="Qantas Airways"	13-Dec-07 04:50 PM	
-="CN51241"	"Property Management Services"	="Australian Electoral Commission"	13-Dec-07	="Property management services"	01-Jul-06	30-Jun-08	330000.00	="N01/208"	="CB Richard Ellis (A) Pty Ltd"	13-Dec-07 04:51 PM	
-="CN51242"	"Hire of Election Premises"	="Australian Electoral Commission"	13-Dec-07	="Lease and rental of property or building"	19-Nov-07	19-Dec-07	12100.00	=""	="Knight Frank Gold Coast"	13-Dec-07 04:57 PM	
-="CN51243"	"Assessment of Business Plan"	="Australian Electoral Commission"	13-Dec-07	="Business and corporate management consultation services"	16-Apr-07	10-Sep-07	92400.00	="S06/07/041"	="ALC Training Pty Ltd"	13-Dec-07 05:05 PM	
-="CN51247"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	08-Aug-07	08-Aug-07	10412.05	=""	="Qantas Airways"	13-Dec-07 05:24 PM	
-="CN51248"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	13-Sep-07	13-Sep-07	10689.58	=""	="Qantas Airways"	13-Dec-07 05:28 PM	
-="CN51249"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	02-Oct-07	02-Oct-07	10689.58	=""	="Qantas Airways"	13-Dec-07 05:31 PM	
-="CN51250"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	11818.84	=""	="Qantas Airways"	13-Dec-07 05:34 PM	
-="CN51251"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	25-Sep-07	25-Sep-07	12877.92	=""	="Qantas Airways"	13-Dec-07 05:38 PM	
-="CN51252"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	12877.92	=""	="Qantas Airways"	13-Dec-07 05:40 PM	
-="CN51253"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	27-Sep-07	27-Sep-07	12888.48	=""	="Qantas Airways"	13-Dec-07 05:42 PM	
-="CN51254"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	28-Aug-07	28-Aug-07	12934.57	=""	="Qantas Airways"	13-Dec-07 05:45 PM	
-="CN51255"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	26147.22	=""	="Qantas Airways"	13-Dec-07 05:47 PM	
-="CN51256"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	02-Oct-07	02-Oct-07	32285.22	=""	="Qantas Airways"	13-Dec-07 05:50 PM	
-="CN51257"	"Pharmaceuricals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	05-Dec-07	17-Dec-07	10631.50	=""	="GlaxoSmithKline"	14-Dec-07 07:41 AM	
-="CN51258"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	12-Dec-07	07-Jan-08	35688.29	=""	="SymbionPharmacy Services"	14-Dec-07 07:44 AM	
-="CN51259"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	20-Nov-07	20-Dec-07	81181.00	=""	="Mayne Pharma"	14-Dec-07 07:49 AM	
-="CN51260"	"Consultancy for Telecommunications & data services carrier tender."	="Australian Securities and Investments Commission"	14-Dec-07	="Business and corporate management consultation services"	26-Nov-07	31-Mar-08	90300.00	=""	="Beyond Technologies"	14-Dec-07 08:24 AM	
-="CN51261"	"Web Analyst Licences and Support and Maintenance C07/00077"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Software"	03-Dec-07	31-Dec-07	20680.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	14-Dec-07 08:34 AM	
-="CN51262"	"Disposal Organic Chemicals  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Toxic and hazardous waste cleanup"	22-Nov-07	30-Jun-08	13046.00	=""	="CLEANAWAY"	14-Dec-07 08:35 AM	
-="CN51263"	"Disposal of Solvents  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Toxic and hazardous waste cleanup"	30-Nov-07	30-Jun-08	13046.00	=""	="CLEANAWAY"	14-Dec-07 08:35 AM	
-="CN51264"	"Disposable Columns  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Laboratory supplies and fixtures"	30-Nov-07	30-Jun-08	21700.00	=""	="FLUID MANAGEMENT SYSTEMS INC"	14-Dec-07 08:35 AM	
-="CN51265"	"JLLasalle Facilities Management Fees for Feb 2007, 200005160"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	19707.60	=""	="JONES LANG LASALLE (ACT) PTY LTD"	14-Dec-07 08:35 AM	
-="CN51266"	" Executive Search for NPM "	="Australian Taxation Office"	14-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	15-Dec-07	48000.00	=""	="Paper Shuffle t/a Hansen and Searson Executive Serarch"	14-Dec-07 08:59 AM	
-="CN51267"	"Sighting Equipment Spares"	="Defence Materiel Organisation"	14-Dec-07	="Surveillance and detection equipment"	14-Dec-07	21-May-08	21546.91	=""	="Hall & Watts Pty Ltd"	14-Dec-07 09:41 AM	
-="CN51268"	"Reticle Cell Assembly"	="Defence Materiel Organisation"	14-Dec-07	="Surveillance and detection equipment"	14-Dec-07	21-May-08	38724.40	=""	="Hall & Watts Pty Ltd"	14-Dec-07 09:46 AM	
-="CN51270"	"Executive search Second Commissioner of Taxation"	="Australian Taxation Office"	14-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	01-Feb-08	94743.00	="06.042"	="Watermark Search International"	14-Dec-07 10:21 AM	
-="CN51273"	"REPAIR AND OVERHAUL OF BLACK HAWK HOIST."	="Defence Materiel Organisation"	14-Dec-07	="Military rotary wing aircraft"	10-Dec-07	31-Dec-07	16011.46	=""	="SAAL"	14-Dec-07 10:41 AM	
-="CN51276"	"REPAIR AND OVERHAUL OF BLACK HAWK HOIST."	="Defence Materiel Organisation"	14-Dec-07	="Military rotary wing aircraft"	10-Dec-07	31-Dec-07	63117.18	=""	="SAAL"	14-Dec-07 10:44 AM	
-="CN51277"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	10076.72	=""	="F.B. AUTO REPAIRS"	14-Dec-07 10:55 AM	
-="CN51278-A1"	"Lease at Orange, NSW"	="Department of Human Services"	14-Dec-07	="Real estate services"	01-May-08	31-Oct-11	3009130.00	=""	="The Petrinovic Family Pty Ltd"	14-Dec-07 10:55 AM	
-="CN43545-A1"	"Lease at Chatswood, NSW"	="Department of Human Services"	14-Dec-07	="Real estate services"	01-Dec-07	30-Nov-17	7615252.00	=""	="Highlong Pty Ltd"	14-Dec-07 10:58 AM	
-="CN51279"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	12100.00	=""	="MACK VOLVO TOWNSVILLE"	14-Dec-07 10:59 AM	
-="CN51281"	"Workstation set up and assesment training for Centrelink Staff"	="Centrelink"	14-Dec-07	="Management advisory services"	31-Oct-07	31-Dec-07	77000.00	=""	="CRS Australia"	14-Dec-07 11:16 AM	
-="CN51283-A1"	"Recruitment Services"	="Australian Taxation Office"	14-Dec-07	="Recruitment services"	10-Dec-07	30-Jun-08	434462.00	=""	="Chandler MacLeod Limited"	14-Dec-07 11:50 AM	
-="CN51284"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	08-Nov-07	21-Dec-07	10577.70	=""	="VOLVO COMMERCIAL VEHICLES"	14-Dec-07 11:57 AM	
-="CN51285"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	17050.00	=""	="VOLVO COMMERCIAL VEHICLES"	14-Dec-07 12:02 PM	
-="CN51286"	"Printing of NAT2031-7.2004 Payment Slip. Qty: 3,000,000"	="Australian Taxation Office"	14-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Dec-07	31-Mar-08	69406.00	="06.030"	="Ducor Group Pty Ltd t/a Norcross"	14-Dec-07 12:04 PM	
-="CN51287"	"Printing of NAT2024-11.2007.  Qty: 373,000"	="Australian Taxation Office"	14-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Jan-08	31-Jan-08	51114.80	="06.030"	="PMP Digital"	14-Dec-07 12:16 PM	
-="CN51288"	" Security Services "	="Australian Electoral Commission"	14-Dec-07	="Security guard services"	21-Nov-07	21-Dec-07	13904.00	=""	="AV-SEC Security Services"	14-Dec-07 12:23 PM	
-="CN51289"	" VEHICLE REPAIRS "	="Department of Defence"	14-Dec-07	="Motor vehicles"	30-Aug-07	29-Sep-07	15680.50	=""	="MICKS AUTOS"	14-Dec-07 12:35 PM	
-="CN51291-A1"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	28-Jun-07	28-Jul-07	35034.12	=""	="F.B. AUTO REPAIRS"	14-Dec-07 01:05 PM	
-="CN51292"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	07-Sep-07	05-Nov-07	32800.91	=""	="MC IMPORTS T/As MICK'S AUTOMOTIVE & MC PANEL BEATING"	14-Dec-07 01:08 PM	
-="CN51293"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	24-Jul-07	23-Aug-07	13889.64	=""	="RGM"	14-Dec-07 01:10 PM	
-="CN51294"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	07-Sep-07	07-Oct-07	28791.60	=""	="RGM"	14-Dec-07 01:14 PM	
-="CN51295"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	09-Aug-07	08-Sep-07	44486.20	=""	="MICKS AUTO"	14-Dec-07 01:19 PM	
-="CN51296"	"Telecommunications Services"	="Australian Electoral Commission"	14-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Mar-98	30-Jun-08	4095425.40	=""	="Optus Communications"	14-Dec-07 01:21 PM	
-="CN51297"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	30-Aug-07	29-Sep-07	102562.00	=""	="MACK AUSTRAILIA"	14-Dec-07 01:25 PM	
-="CN51298"	"Employee Assistance Program"	="Australian Electoral Commission"	14-Dec-07	="Employee assistance programs"	01-Feb-08	31-Jan-10	20790.00	=""	="IPS Worldwide"	14-Dec-07 01:27 PM	
-="CN51299"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	09-Nov-07	09-Dec-07	31645.32	=""	="SCRATCH IT I FIX IT"	14-Dec-07 01:29 PM	
-="CN51300-A1"	"Temporary Personnel"	="Australian Electoral Commission"	14-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	19200.00	="AEC06/019"	="CCS Technology Recruiters"	14-Dec-07 01:36 PM	
-="CN51301"	"Delivery and Collection of Election Material"	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	22-Nov-07	22-Dec-07	12474.00	=""	="Corporate Trade Services"	14-Dec-07 01:43 PM	
-="CN51302"	"Connector, Receptor, Electrical & Connector, Plug, Electrical"	="Defence Materiel Organisation"	14-Dec-07	="Electrical components"	19-Nov-07	10-Mar-08	53632.32	=""	="Amphenol Australia Ltd"	14-Dec-07 01:56 PM	
-="CN51303"	"Business Advisory Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	34850.00	="n/a"	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	14-Dec-07 01:57 PM	
-="CN51304-A1"	"Training & Education Costs"	="Department of Finance and Administration"	14-Dec-07	="Education and Training Services"	08-Jun-07	27-Aug-07	14096.10	="RMS07/05177-02"	="CLIFTONS"	14-Dec-07 01:57 PM	
-="CN51305"	"Repairs & Maintenance - Building"	="Department of Finance and Administration"	14-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	10-Dec-07	20-Dec-07	29711.74	="N/A"	="ELECTRICAL TESTING SERVICES PTY LTD"	14-Dec-07 01:57 PM	
-="CN51306-A1"	"Recruitment Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	03-Sep-07	15-Oct-07	24561.90	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Dec-07 01:57 PM	
-="CN51307"	"Contractor Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	02-Jun-08	45000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	14-Dec-07 01:57 PM	
-="CN51308"	"Travel - Transportation Costs"	="Department of Finance and Administration"	14-Dec-07	="Travel and Food and Lodging and Entertainment Services"	11-Dec-07	31-Dec-07	10464.68	="N/A"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	14-Dec-07 01:57 PM	
-="CN51309"	"Training & Education Costs"	="Department of Finance and Administration"	14-Dec-07	="Education and Training Services"	12-Dec-07	31-Jan-08	29788.17	="n/a"	="PORTER NOVELLI AUSTRALIA PTY LTD"	14-Dec-07 01:57 PM	
-="CN51310"	"Recruitment Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	11-Jan-08	11000.00	="n/a"	="AFFINITY IT RECRUITMENT PTY LTD"	14-Dec-07 01:57 PM	
-="CN51311"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	14-Dec-07	="Building and Construction and Maintenance Services"	10-Dec-07	31-Aug-08	2491863.00	="N/A"	="BAULDERSTONE HORNIBROOK PTY LTD"	14-Dec-07 01:58 PM	
-="CN51312"	"IT System Development Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	79000.00	="000000"	="OAKTON AA SERVICES PTY LTD"	14-Dec-07 01:58 PM	
-="CN51313"	"Legal Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	06-Dec-07	30-Jun-08	70000.00	="LSB01/2005"	="CLAYTON UTZ - 404925"	14-Dec-07 01:58 PM	
-="CN51314"	"Business Advisory Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Mar-08	80000.00	="0000000"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	14-Dec-07 01:58 PM	
-="CN51315"	"Project Manager and Superintendency"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Jan-08	50000.00	="n/a"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	14-Dec-07 01:58 PM	
-="CN51316"	"Insurance Advice & Management Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Apr-09	105000.00	="Fin05/AMG019"	="PRICEWATERHOUSECOOPERS- 833468126"	14-Dec-07 01:58 PM	
-="CN51317-A1"	" Production of Enrolment Print Products  Production of Voter Advices "	="Australian Electoral Commission"	14-Dec-07	="Industrial printing services"	29-Aug-07	28-Aug-10	2642431.68	="AEC06/077"	="QM Technologies"	14-Dec-07 02:00 PM	
-="CN51321"	" Delivery and Collection of Election Material "	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	01-Aug-07	01-Dec-07	14480.00	=""	="Cleave Removals Bendigo"	14-Dec-07 02:11 PM	
-="CN51322-A1"	"Computing Service Provider"	="Australian Electoral Commission"	14-Dec-07	="Computer services"	31-Mar-98	30-Jun-08	1865118.01	=""	="Computer Sciences Corporation"	14-Dec-07 02:21 PM	
-="CN51323"	"Property Expenditure for November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	26-Nov-07	26-Nov-07	243145.72	=""	="UNITED GROUP SERVICES PTY LTD"	14-Dec-07 02:29 PM	
-="CN51325"	"Print Advertising Supplement"	="Australian Electoral Commission"	14-Dec-07	="Print advertising"	28-Nov-07	28-Dec-07	522860.36	=""	="HMA Blaze"	14-Dec-07 02:38 PM	
-="CN51328"	"Delivery and Collection of Election Material"	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	22-Nov-07	22-Dec-07	16112.36	=""	="Grafton Taxi Trucks"	14-Dec-07 02:50 PM	
-="CN51327"	" New workststions Level 10 Sydney CLC "	="Family Court of Australia"	14-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Dec-07	30-Jan-08	10964.80	=""	="Iken Commercial Interiors (NSW) Pty Ltd"	14-Dec-07 02:51 PM	
-="CN51329"	"Libary Management System Software Maintenance"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Computer services"	01-Nov-07	31-Oct-08	12627.52	=""	="SirsiDynix Pty Ltd"	14-Dec-07 03:00 PM	
-="CN51330-A1"	"Provison of General Accountancy Services by whilst in process of filling EL1 position."	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	07-Nov-07	31-Mar-08	55000.00	="DAFF 18/05"	="Ascent"	14-Dec-07 03:00 PM	
-="CN51331"	"TEMPORARY SERVICES - STAFF"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	14-Dec-07	14-Mar-08	22000.00	=""	="CAREERS UNLIMITED"	14-Dec-07 03:00 PM	
-="CN51332-A1"	"Strategic review of the provision of software services to the Australian Quarantine and Inspection Service (AQIS)"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Management advisory services"	14-Jan-08	31-Mar-08	109542.11	=""	="Fujitsu Australia Limited"	14-Dec-07 03:00 PM	
-="CN51333"	"Sydney International Airport contract staff - baggage handlers"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	04-Nov-07	10-Nov-07	49631.37	=""	="WORKFORCE INTERNATIONAL"	14-Dec-07 03:00 PM	
-="CN51334"	"Journal subscriptions - Library"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Printed media"	01-Nov-07	31-Dec-08	67500.00	=""	="Ebsco Australia"	14-Dec-07 03:00 PM	
-="CN51335"	"Contracted employment"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	17-Dec-07	08-Feb-08	13403.40	=""	="Adecco Australia Pty Ltd"	14-Dec-07 03:00 PM	
-="CN51336"	"Legal consultancy report investigating legislation requiring the: (i) disclosure of information on species, country of origin and any certification of forest products at their point of sale; (ii) Identification of illegally logged timber and restriction of its importation into Australia."	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Management advisory services"	05-Dec-07	21-Dec-07	16500.00	=""	="Australian National University"	14-Dec-07 03:00 PM	
-="CN51337"	"Contractor Services"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	30-Nov-07	29-Feb-08	12000.00	=""	="Zenith Management Services Pty Ltd"	14-Dec-07 03:00 PM	
-="CN51324"	"Perth Fitout Costs"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	01-Sep-07	31-Oct-07	120996.37	=""	="UNITED GROUP SERVICES PTY LTD"	14-Dec-07 03:17 PM	
-="CN51338"	"MOU Charges"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	01-Nov-07	30-Nov-07	65408.29	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	14-Dec-07 03:31 PM	
-="CN51339-A1"	"EAP consultancy services."	="Australian Securities and Investments Commission"	14-Dec-07	="Employee assistance programs"	04-Dec-07	14-Dec-09	120000.00	=""	="International Psychological Services"	14-Dec-07 03:32 PM	
-="CN51340"	"SHIRT, MAN'S, BLUE WHITE, SHORT SLEEVE, LONG SLEEVE"	="Defence Materiel Organisation"	14-Dec-07	="Military uniforms"	23-Nov-07	09-Apr-08	150820.67	=""	="AUSTRALIAN DEFENCE APPAREL"	14-Dec-07 03:35 PM	
-="CN51342-A2"	"Provision of statistical services to the AFP"	="Australian Federal Police"	14-Dec-07	="Statistics"	03-Dec-07	30-Jun-11	180000.00	="RFT 29-2006"	="University of Qld Social Research Centre"	14-Dec-07 04:03 PM	
-="CN51341"	"SWEATER, VARIOUS"	="Defence Materiel Organisation"	14-Dec-07	="Military uniforms"	25-Jul-07	28-Feb-08	557801.00	=""	="ELEGANT KNITTING CO"	14-Dec-07 04:06 PM	
-="CN51345"	"SEALING COMPOUND"	="Defence Materiel Organisation"	14-Dec-07	="Adhesives and sealants"	14-Dec-07	08-Jan-08	13093.98	=""	="PPG INDUSTRIES AUSTRALIA P/L"	14-Dec-07 05:04 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN50816"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Medical Equipment and Accessories and Supplies"	08-Aug-07	15-Aug-07	14973.75	=""	="Hospira Pty Ltd"	12-Dec-07 08:15 AM	

+="CN50817"	"ASLAV PARTS - DOOR HATCH VEHICLE RH ASSY"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	28-Jun-08	12299.05	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:09 AM	

+="CN50818"	"ASLAV PARTS - HOUSING STEERING COLUMN"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	11-Dec-07	18-Jun-08	17502.10	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 09:14 AM	

+="CN50819"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust. Pacific"	12-Dec-07 09:23 AM	

+="CN50820"	"Security Services Camera Monitoring"	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	11900.00	=""	="JEWELL & BUCKLEY PTY LTD"	12-Dec-07 09:24 AM	

+="CN50821"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Dec-07	10-Jan-08	16150.74	=""	="Daimler Chrysler Aust Pacific"	12-Dec-07 09:31 AM	

+="CN50823"	"Office Rent"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	12-Oct-07	15-Oct-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:08 AM	

+="CN50824"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	25332.95	=""	="Kaz Technology Services Pty Ltd"	12-Dec-07 10:33 AM	

+="CN50826"	"ESRI Maintenance 2008 -2009"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	03-Dec-07	31-Jan-09	61105.00	=""	="ESRI Australia Pty Ltd"	12-Dec-07 10:38 AM	

+="CN50827"	"Supply of Stationery"	="Bureau of Meteorology"	12-Dec-07	="Office supplies"	05-Dec-07	31-Dec-07	20006.38	=""	="Corporate Express Australia Limited"	12-Dec-07 10:38 AM	

+="CN50828"	"Consulting"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10725.00	=""	="Access Macquarie Limited."	12-Dec-07 10:38 AM	

+="CN50829"	"Car Hire for October 2007"	="Bureau of Meteorology"	12-Dec-07	="Transportation and Storage and Mail Services"	05-Dec-07	31-Dec-07	10399.40	=""	="AVIS"	12-Dec-07 10:38 AM	

+="CN50830"	"Telephone A/c"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	19-Nov-07	12-Dec-07	12803.50	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	

+="CN50831"	"Telecommunication Services"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	17559.92	=""	="AAPT LIMITED"	12-Dec-07 10:38 AM	

+="CN50832"	"Darwin 50MHz upgrade - Profiler Transmitter"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	27520.40	=""	="University Of Colorado"	12-Dec-07 10:38 AM	

+="CN50833"	"TELEPHONE ACCOUNT"	="Bureau of Meteorology"	12-Dec-07	="Telecommunications media services"	27-Nov-07	03-Dec-07	16063.99	=""	="Telstra  (ID No. 740)"	12-Dec-07 10:38 AM	

+="CN50834"	"VEHICLE LEASES"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	27-Nov-07	27-Nov-07	11584.49	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	

+="CN50835"	"Vehicle Lease"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	28-Nov-07	28-Nov-07	12850.53	=""	="Leaseplan Australia"	12-Dec-07 10:39 AM	

+="CN50836"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	11033.29	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50837"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	14586.60	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50838"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	20049.79	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50839"	"Airfares"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	42170.39	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:39 AM	

+="CN50840"	"Accommodation"	="Bureau of Meteorology"	12-Dec-07	="Hotels and lodging and meeting facilities"	29-Nov-07	30-Nov-07	23241.00	=""	="Quest Docklands"	12-Dec-07 10:39 AM	

+="CN50841"	"DBCP Trust Fund for 2008"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Dec-08	18346.50	=""	="WORLD METEOROLOGICAL ORGANIZATION"	12-Dec-07 10:39 AM	

+="CN50842"	"Job ads for Professional Appointments"	="Bureau of Meteorology"	12-Dec-07	="Marketing and distribution"	04-Dec-07	31-Dec-07	34844.21	=""	="HMA BLAZE PTY LTD"	12-Dec-07 10:39 AM	

+="CN50843"	"AUSAID PROJECT"	="Bureau of Meteorology"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	31-Dec-07	10000.00	=""	="SPREP"	12-Dec-07 10:40 AM	

+="CN50844"	"Vehicle Fuel"	="Bureau of Meteorology"	12-Dec-07	="Tools and General Machinery"	06-Dec-07	06-Dec-07	12358.14	=""	="Leaseplan Australia"	12-Dec-07 10:40 AM	

+="CN50845"	"SA REGION AIR FARES NOV/DEC 2007"	="Bureau of Meteorology"	12-Dec-07	="Passenger transport"	07-Dec-07	07-Dec-07	13928.33	=""	="Carlson Wagonlit Travel"	12-Dec-07 10:40 AM	

+="CN50846"	"DIGICOR 3U Server"	="Bureau of Meteorology"	12-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	04-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	12-Dec-07 10:40 AM	

+="CN50847"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50849"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50850"	"Refurbish Radar Magnetron"	="Bureau of Meteorology"	12-Dec-07	="Electronic hardware and component parts and accessories"	28-Nov-07	14-Feb-08	12485.00	=""	="Richardson Electronics Pty Limited"	12-Dec-07 10:40 AM	

+="CN50851"	"Software implementation services B Williamson"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	29-Nov-07	21-Dec-07	19949.47	=""	="Hays Specialist Recruitment"	12-Dec-07 10:41 AM	

+="CN50852"	"Cannister MET Beacon Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	28-Dec-07	28595.56	=""	="Metocean Data Systems Ltd"	12-Dec-07 10:41 AM	

+="CN50853"	"Ceilometer Qty 2"	="Bureau of Meteorology"	12-Dec-07	="Measuring and observing and testing instruments"	03-Dec-07	05-Dec-07	76428.00	=""	="Vaisala Pty Ltd"	12-Dec-07 10:41 AM	

+="CN50854"	"Data cartridge Qty 870"	="Bureau of Meteorology"	12-Dec-07	="Computer services"	07-Dec-07	03-May-09	98561.43	=""	="Officemax Australia Ltd"	12-Dec-07 10:41 AM	

+="CN50855"	"Specialized cord"	="Bureau of Meteorology"	12-Dec-07	="Fibres and threads and yarns"	07-Dec-07	14-May-08	20717.40	=""	="Donaghys"	12-Dec-07 10:41 AM	

+="CN50848"	" Software "	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	17-Oct-07	19-Nov-07	22000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:42 AM	

+="CN50856"	"Software"	="Australian Centre for International Agricultural Research"	12-Dec-07	="License management software"	22-Oct-07	19-Nov-07	11000.00	=""	="DEPARTMENT OF FINANCE & ADMIN"	12-Dec-07 10:47 AM	

+="CN50857"	" Office rent "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Lease and rental of property or building"	13-Nov-07	19-Nov-07	45487.50	=""	="GDA DIVERSIFIED PROPERTY TRUST"	12-Dec-07 10:54 AM	

+="CN50858"	"Airfares"	="Australian Centre for International Agricultural Research"	12-Dec-07	="Travel agents"	29-Oct-07	19-Nov-07	43176.46	=""	="American Express Travel"	12-Dec-07 11:00 AM	

+="CN50859"	"NSN 6850-66-156-0064, Inhibitor, Corrosion, Liquid Cooling, Qty 10"	="Defence Materiel Organisation"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	20-Dec-07	13475.00	=""	="Burson Automotive Pty Ltd"	12-Dec-07 11:12 AM	

+="CN50860"	"RAAF SERVICE DRESS WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	01-Dec-08	513381.00	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 11:14 AM	

+="CN50861"	" NSN 5996/66-101-9162  PURCHASE OF AMPLIFIER, AUDIO FREQUENCY  EX GST "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	12-Dec-07	10500.00	=""	="Flite Path Pty Ltd"	12-Dec-07 11:20 AM	

+="CN50862"	"SEALING COMPOUND"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	12-Dec-07	30-Jan-08	11791.08	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	12-Dec-07 11:21 AM	

+="CN50863"	"Services for the implementation of Stage 1 of the Diabetes Medication Assistance Service "	="Department of Health and Ageing"	12-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Mar-10	1142988.00	="RFT392/0607"	="University of Sydney"	12-Dec-07 11:23 AM	

+="CN50864"	" NSN 1680/01-550-3045  PURCHASE OF TRANSDUCER, AIRCRAFT  EX SGT "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	05-Dec-07	24-Mar-08	14807.73	=""	="Military Aviation Spares Pty Ltd"	12-Dec-07 11:26 AM	

+="CN50865-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	12-Dec-07	="Software"	19-Nov-07	29-Feb-08	50864.00	=""	="Cordelta Pty. Ltd."	12-Dec-07 11:27 AM	

+="CN50866"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	23-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:27 AM	

+="CN50867-A1"	"Provision of services in relation to project officer support for IT Services"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Dec-07	30-Sep-08	138336.00	=""	="Icon Recruitment Pty Ltd"	12-Dec-07 11:30 AM	

+="CN50868"	" Language training "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Language schooling"	27-Nov-07	29-Nov-07	14778.00	=""	="ACL PTY LTD"	12-Dec-07 11:36 AM	

+="CN50869-A1"	"PANTS, CYCLIST, VARIOUS"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	11-Dec-07	29-Feb-08	405379.70	=""	="WALKABOUT LEISUREWEAR PTY LTD"	12-Dec-07 11:38 AM	

+="CN50870-A1"	"Provision of services in relation to SharePoint and K2 Development"	="Australian Federal Police"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Aug-08	242871.20	=""	="Paxus Australia Pty Ltd"	12-Dec-07 11:39 AM	

+="CN50871"	" Publication printing "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Printed publications"	07-Nov-07	10-Dec-07	22627.00	=""	="UNION OFFSET PRINTERS"	12-Dec-07 11:46 AM	

+="CN50872"	"Procurement Panel Services to the AFP"	="Australian Federal Police"	12-Dec-07	="Professional procurement services"	05-Dec-07	15-Jan-08	29744.00	="22-2005"	="Ball Solutions Group"	12-Dec-07 11:46 AM	

+="CN50875"	" Publication production "	="Australian Centre for International Agricultural Research"	12-Dec-07	="Editing services"	08-Nov-07	10-Dec-07	24255.00	=""	="CORETEXT"	12-Dec-07 11:52 AM	

+="CN50876-A1"	"Provision of a Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	03-Dec-07	30-Jun-08	114240.00	=""	="Oakton Services Pty Ltf"	12-Dec-07 12:00 PM	

+="CN50877-A1"	"adhesive film"	="Defence Materiel Organisation"	12-Dec-07	="Adhesives and sealants"	01-Dec-07	25-Feb-08	20738.95	=""	="Interturbine Advanced Composies"	12-Dec-07 12:36 PM	

+="CN50878"	"Heritage Management Plan - Park"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	52860.00	=""	="Duncan Marshall"	12-Dec-07 12:49 PM	

+="CN50879"	"ASLAV PARTS - LEAD ASSY SLIP"	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	108389.88	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 12:53 PM	

+="CN50880"	"Heritage Management Plan - Canberra Central Parklands"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	61585.00	=""	="Duncan Marshall"	12-Dec-07 12:54 PM	

+="CN50881"	"ASLAV PARTS - BRUSH BLOCK ASSY "	="Department of Defence"	12-Dec-07	="Armoured fighting vehicles"	12-Dec-07	04-Jul-08	214915.25	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-Dec-07 01:02 PM	

+="CN50882"	"Commemorative Works Guidelines"	="National Capital Authority"	12-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	28-Mar-08	10000.00	=""	="David Headon"	12-Dec-07 01:16 PM	

+="CN50883"	" NSN 5340/01-422-0982  PURCHASE OF CLAMP, LOOP  GST INCL. "	="Defence Materiel Organisation"	12-Dec-07	="Military transport aircraft"	06-Dec-07	04-Apr-08	10849.08	=""	="Milspec Services Pty Ltd"	12-Dec-07 01:16 PM	

+="CN50884"	"CPE004278-1 - Supply of security project services - 0859-1284 - IT Security Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	30-Nov-07	30-Nov-07	19800.00	="05/0859"	="Cybertrust Australia Pty Ltd"	12-Dec-07 01:25 PM	

+="CN50885-A1"	"Provision for Senior Business Analyst"	="Comsuper"	12-Dec-07	="Human resources services"	02-Jan-08	30-Jun-08	120000.00	=""	="Aristotle (Eurolink)"	12-Dec-07 01:30 PM	

+="CN50886"	"07/2328 - Management consultancy services - 1599-1938 - Consultancy and Business Services Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Oct-07	01-Feb-08	300000.00	="06/1599"	="Booz Allen Hamilton"	12-Dec-07 01:37 PM	

+="CN50888"	" Supply of communications equipment "	="Australian Federal Police"	12-Dec-07	="Communications Devices and Accessories"	23-Mar-07	22-Mar-10	213424.00	=""	="Motorola Australia Pty Ltd"	12-Dec-07 01:44 PM	

+="CN50887"	"06/1343 - Project Coordinator (Ext #3) - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	217000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 01:45 PM	

+="CN50890"	"Provision of Oracle Software Structure Analysis and Consultancy"	="Comsuper"	12-Dec-07	="Human resources services"	21-Aug-07	31-Aug-07	11550.00	=""	="Dataweave Pty Ltd"	12-Dec-07 01:48 PM	

+="CN50891"	"SHIRT, MENS, STEWARD SHORTS, MALE, KHAKI, RAAF"	="Defence Materiel Organisation"	12-Dec-07	="Military uniforms"	12-Dec-07	29-May-08	97891.20	=""	="AUSTRALIAN DEFENCE APPAREL"	12-Dec-07 01:50 PM	

+="CN50892"	" 3 Years maintenance and support for Reflection X Software "	="Comsuper"	12-Dec-07	="Software"	30-Jun-07	30-Jun-10	10411.00	=""	="Loop Technology Pty Ltd"	12-Dec-07 01:54 PM	

+="CN50895"	"07/2381 - Technical Analyst - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	133000.00	="05/0717"	="CCS Index Pty Ltd"	12-Dec-07 02:02 PM	

+="CN50897-A1"	"07/2392 - Specialist IT Transitional Manager - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	12-Dec-07	="Temporary personnel services"	05-Dec-07	30-Jun-08	161289.60	="05/0717"	="Paxus Australia"	12-Dec-07 02:05 PM	

+="CN50458"	" Security Services - Monitoring "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	01-Jul-07	31-Dec-07	65600.00	=""	="JEWEL & BUCKELY PTY LTD"	12-Dec-07 02:06 PM	

+="CN50898"	" Security Services - Doors "	="Department of the Prime Minister and Cabinet"	12-Dec-07	="Security systems services"	17-Apr-07	24-Jul-08	20100.00	=""	="JEWELL & BUCKLEY PTY LTF"	12-Dec-07 02:14 PM	

+="CN50899"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	21-Nov-07	05-Dec-07	10232.41	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:15 PM	

+="CN50900"	"07/2198 -  Supply of Building Equipment (CPE004116-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	28538.46	=""	="Sea Swift Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50901"	"07/2233 - Supply of Building Equipment (CPO014456)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	23-Aug-07	31-Dec-07	15930.20	=""	="Precision Metals Queanbeyan Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50902"	"CPO017457 - Online learning"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	27-Nov-07	31-Oct-08	29822.00	=""	="Total Learn Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50904"	"CPE003886 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-07	30-Jun-08	33447.70	=""	="KW McCulloch Pty Ltd"	12-Dec-07 02:18 PM	

+="CN50905"	"07/2291 - Specialised equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer Equipment and Accessories"	25-Sep-07	30-Jun-08	190750.83	=""	="Department of Defence"	12-Dec-07 02:19 PM	

+="CN50906"	"CPO017611 - Construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	22495.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50907"	"CPO015288 - Materials for the construction of kennel"	="Australian Customs and Border Protection Service"	12-Dec-07	="General building construction"	12-Jul-07	07-Nov-07	14168.00	=""	="Trusteel Fabrications Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50908-A1"	"07/2200 - Building Services/ Office Installation (CPE004115-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Building and Construction and Maintenance Services"	01-Nov-07	30-Jun-08	118140.00	=""	="Robert Clarke Builders Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50909"	"CPO017645 - Information/Reporting Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	13311.47	=""	="B-Line Edit Services Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50910"	"CPO017734 - Recruitment Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	27-Nov-07	18931.00	=""	="Australian Institute of Forensic Psychology"	12-Dec-07 02:19 PM	

+="CN50911-A2"	"07/2340 - Supply of IT Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	25-Oct-07	24-Apr-12	561328.10	=""	="KAZ Group Pty Ltd"	12-Dec-07 02:19 PM	

+="CN50912"	"CPO017535 - Training Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	29-Nov-07	02-Dec-07	10786.00	=""	="Australian Institute of Education and Training"	12-Dec-07 02:19 PM	

+="CN50903"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	28-Nov-07	12-Dec-07	10201.72	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:20 PM	

+="CN50913"	"CPO016973 - Metal detection system trial"	="Australian Customs and Border Protection Service"	12-Dec-07	="Measuring and observing and testing instruments"	04-Dec-07	04-Dec-07	32692.00	=""	="QR Sciences Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50914-A1"	"07/1909 - Training services (CPO017584)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Education and Training Services"	20-Nov-07	05-Dec-07	39649.50	=""	="D'Arcy Consulting Group"	12-Dec-07 02:20 PM	

+="CN50915"	"CPO017699 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Apr-07	30-Dec-07	16225.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	

+="CN50916"	"CPO017698 - CCTV equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Oct-07	30-Jun-08	61455.49	=""	="Dataline Visual Link"	12-Dec-07 02:20 PM	

+="CN50917"	"07/2286 - Compueter servers"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	12-Oct-07	11-Oct-10	149374.25	=""	="Sun Microsystems Australia Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50918"	"CPO017722 - Charter Services"	="Australian Customs and Border Protection Service"	12-Dec-07	="Passenger transport"	15-Nov-07	04-Dec-07	11024.24	=""	="Australian Helicopters Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50919-A1"	"07/2228 - Consultancy Services (CPO017401)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	13-Sep-07	31-Jan-08	38500.00	=""	="ESRI Australia"	12-Dec-07 02:20 PM	

+="CN50920"	"CPO017830 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	16801.40	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50921"	"CPO017821 - Supply of Furniture"	="Australian Customs and Border Protection Service"	12-Dec-07	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	37156.90	=""	="Topline Partitions & Interiors Pty Ltd"	12-Dec-07 02:20 PM	

+="CN50922"	"CPO017718 - CCTV Equipment"	="Australian Customs and Border Protection Service"	12-Dec-07	="Information Technology Broadcasting and Telecommunications"	03-Dec-07	30-Jun-08	15840.00	=""	="Direct Alarm Supplies"	12-Dec-07 02:20 PM	

+="CN50926"	"CPO017889 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	53755.00	=""	="Trade Import Services"	12-Dec-07 02:21 PM	

+="CN50927"	"CPO017891 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	12-Dec-07	="Clothing"	07-Dec-07	05-Mar-08	42212.50	=""	="Trade Import Services"	12-Dec-07 02:21 PM	

+="CN50928-A2"	"07/2194 - Project Management Services (CPE004306-1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	24-Sep-07	30-Mar-08	49232.00	=""	="URS Australia"	12-Dec-07 02:21 PM	

+="CN50929"	"07/1884 - Development of On-Line Learning Program"	="Australian Customs and Border Protection Service"	12-Dec-07	="Computer services"	15-Apr-07	15-Jul-07	15000.00	=""	="Leonie A David"	12-Dec-07 02:21 PM	

+="CN50930"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	18943.72	=""	="DAIMLER CHRYSLER AUSTRALIA"	12-Dec-07 02:24 PM	

+="CN50931"	"06/1334 - Data quality programme and training services (Ext #1)"	="Australian Customs and Border Protection Service"	12-Dec-07	="Business and corporate management consultation services"	01-Jan-07	31-Dec-07	50000.00	=""	="Centre for Customs and Excise Studies Pty Ltd"	12-Dec-07 02:28 PM	

+="CN50932"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	29-Nov-07	13-Dec-07	12710.39	=""	="LAND ROVER AUSTRALIA"	12-Dec-07 02:30 PM	

+="CN50933"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	03-Dec-07	10-Dec-07	12366.20	=""	="BRIAN ROGERS"	12-Dec-07 02:34 PM	

+="CN50934"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	11-Dec-07	16-Dec-07	20496.11	=""	="KALMAR EQUIPMENT (AUSTRALIA)"	12-Dec-07 02:39 PM	

+="CN50935"	"DECONTAMINATING ITEMS/EQUIPMENT"	="Defence Materiel Organisation"	12-Dec-07	="Decontamination services"	10-Dec-07	12-Dec-07	22248.33	=""	="TOTALLY WORKWEAR (TOWNSVILLE)"	12-Dec-07 02:46 PM	

+="CN50936"	"For the Provision of Financial  Accounting Services"	="Child Support Agency"	12-Dec-07	="Business administration services"	10-Dec-07	06-Jun-08	78000.00	=""	="Professional Careers Australia Pty Ltd"	12-Dec-07 02:50 PM	

+="CN50938"	"Flammable Liquid Storage Cabinet"	="Department of Defence"	12-Dec-07	="Storage chests and cabinets and trunks"	19-Nov-07	07-Jan-08	13112.00	=""	="FGP COMPANY PTY LTD"	12-Dec-07 03:04 PM	

+="CN50941"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-Dec-07	="Motor vehicles"	12-Dec-07	22-Dec-07	11614.05	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-Dec-07 03:10 PM	

+="CN50943"	"Vaccines For ADF"	="Defence Materiel Organisation"	12-Dec-07	="Drugs and Pharmaceutical Products"	27-Sep-07	07-Oct-07	341275.00	=""	="GLAXOSMITHKLINE AUST P/L"	12-Dec-07 03:22 PM	

+="CN50946"	"Motor Vehicle Parts."	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	10017.15	=""	="Rover Australia"	12-Dec-07 03:35 PM	

+="CN50949"	"Call Centre Satisfaction Survey Wave 12"	="Australian Taxation Office"	12-Dec-07	="Market research"	19-Oct-07	28-Jan-08	50000.00	=""	="ORC Aus Pty Ltd t/a NWC Research"	12-Dec-07 03:47 PM	

+="CN50947"	"Altitude Warning Device"	="Defence Materiel Organisation"	12-Dec-07	="Parachute equipment"	28-Nov-07	09-Jan-08	21714.00	=""	="Aerospace Composites Pty Ltd"	12-Dec-07 03:48 PM	

+="CN50950"	"Conduct Investigations as directed by Group Director, Support. "	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Private investigation services"	26-Feb-07	25-May-07	13750.00	=""	="Quality Management Solutions Pty Ltd"	12-Dec-07 03:50 PM	

+="CN50952"	"Provision of Cleaning - Sutherland CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	03-Apr-06	09-Nov-07	10888.51	=""	="Professional Lightning Cleaning"	12-Dec-07 03:58 PM	

+="CN50953"	"Print 10,000 copies of 'Us Taken-Away Kids."	="Australian Human Rights Commission"	12-Dec-07	="Publishing"	26-Sep-07	09-Nov-07	11653.40	=""	="Bloxham and Chambers"	12-Dec-07 04:08 PM	

+="CN50954"	"Provision of cleaning services - Hurstville CRS Australia"	="CRS Australia"	12-Dec-07	="General building and office cleaning and maintenance services"	01-Oct-05	09-Nov-07	11616.00	=""	="Professional Lightning Cleaning"	12-Dec-07 04:08 PM	

+="CN50956"	"Conduct Survey of Athletes' Opinions"	="Australian Sports Anti-Doping Authority (ASADA)"	12-Dec-07	="Educational and research structures"	01-Mar-07	28-May-07	22000.00	=""	="Curtin University"	12-Dec-07 04:17 PM	

+="CN50957"	" Compensation Process System Improvements "	="Australian Taxation Office"	12-Dec-07	="Computer services"	11-Dec-07	10-Mar-08	25000.00	=""	="CA Pacific Pty Ltd"	12-Dec-07 04:20 PM	

+="CN50958"	" MOTOR VEHILCE SPARE PARTS "	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	24957.78	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:00 PM	

+="CN50959"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	16159.43	=""	="VOLVO COMMERICAL VEHICLES"	12-Dec-07 05:04 PM	

+="CN50960"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	10-Jan-08	15588.52	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:06 PM	

+="CN50961"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	12-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	41458.12	=""	="LANDROVER AUSTRALIA"	12-Dec-07 05:10 PM	

+="CN50962"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	17-Jul-07	17-Jul-07	10046.53	=""	="Qantas"	12-Dec-07 05:22 PM	

+="CN50965"	"Air fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10099.10	=""	="Qantas Airways"	12-Dec-07 05:27 PM	

+="CN50966"	"Air Fare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	10100.42	=""	="Qantas Airways"	12-Dec-07 05:38 PM	

+="CN50969"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	03-Aug-07	03-Aug-07	10180.50	=""	="Qantas Airways"	12-Dec-07 05:55 PM	

+="CN50970"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	23-Nov-07	23-Nov-07	10192.38	=""	="Qantas Airways"	12-Dec-07 06:02 PM	

+="CN50971"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	24-Aug-07	24-Aug-07	10205.47	=""	="Qantas Airways"	12-Dec-07 06:06 PM	

+="CN50972"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Oct-07	05-Oct-07	10257.61	=""	="Qantas Airways"	12-Dec-07 06:09 PM	

+="CN50973"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	18-Oct-07	18-Oct-07	10260.03	=""	="Qantas Airways"	12-Dec-07 06:11 PM	

+="CN50974"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	12-Dec-07	="Passenger air transportation"	05-Sep-07	05-Sep-07	10345.06	=""	="Qantas Airways"	12-Dec-07 06:14 PM	

+="CN50975"	" Earth Stake Assembly's manufactured in accordance with Drawings; DE59050001, DE590370000, DE590500002, DE590500000, DE590500003 & DE590500004. "	="Defence Materiel Organisation"	12-Dec-07	="Motor or generator components"	12-Dec-07	03-Mar-08	31269.81	="RFQ G5598"	="Milspec Manufacturing"	12-Dec-07 07:02 PM	

+="CN50976"	"Medical onsumables For ADF"	="Defence Materiel Organisation"	13-Dec-07	="Medical Equipment and Accessories and Supplies"	27-Sep-07	08-Oct-07	18936.50	=""	="LMA  Pacmed Pty Ltd"	13-Dec-07 09:18 AM	

+="CN50977"	"Airlink Environmental Impact Monitoring Program for the Australian Antarctic Division"	="Australian Antarctic Division"	13-Dec-07	="Pollution tracking and monitoring and rehabilitation"	01-Oct-07	30-Jun-10	246800.00	="07/768"	="The University of Queensland"	13-Dec-07 09:24 AM	

+="CN50978"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	08-Nov-07	30-Jun-08	33000.00	=""	="Brand Finance (Australia) Pty Ltd"	13-Dec-07 09:31 AM	

+="CN50979"	"Review the role of ASADA State Co-ordination Officers"	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Strategic planning consultation services"	26-Mar-07	30-Jul-07	23400.00	=""	="Four Streams Consulting Services Pty Ltd"	13-Dec-07 09:35 AM	

+="CN50980"	"Survey Leader Services for Aerial Survey of Minke Whales off coast of Antarctica"	="Australian Antarctic Division"	13-Dec-07	="Earth science services"	03-Dec-07	22-Jan-08	20000.00	="07/671"	="Mr Daniel Pike"	13-Dec-07 09:35 AM	

+="CN50981-A1"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	30-Oct-07	30-Dec-08	45188.00	=""	="Brand Finance (Australia) Pty Ltd"	13-Dec-07 09:37 AM	

+="CN50982"	"Valuation services relating to a tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	26-Oct-07	30-Jun-08	155891.00	=""	="Capital Value Pty Ltd"	13-Dec-07 09:45 AM	

+="CN50984"	"Develop a framework to provide immediate, intermediate and long-term information management strategies that will meet our Quality Management System (QMS) enviroment to achieve ISO 9001 accreditation."	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Corporate objectives or policy development"	21-Jun-07	10-Aug-07	223369.00	=""	="Ernst & Young"	13-Dec-07 09:58 AM	

+="CN50983"	"Textile Webbing"	="Defence Materiel Organisation"	13-Dec-07	="Webbing fabrics"	03-Dec-07	04-Feb-08	73700.00	="G4169/70"	="Pacific Aerodyne Pty Ltd"	13-Dec-07 10:10 AM	

+="CN50985"	"Provision of Investigation Services"	="Australian Sports Anti-Doping Authority (ASADA)"	13-Dec-07	="Private investigation services"	20-Jul-07	31-Jan-08	59735.00	=""	="Australian Forensic Services Pty Ltd"	13-Dec-07 10:23 AM	

+="CN50986"	" 9150 66-068-0440   Engine Lubricating Oil  40 EA OMD 113 IN 20L (I/C 116114) "	="Defence Materiel Organisation"	13-Dec-07	="Lubricants and oils and greases and anti corrosives"	12-Dec-07	19-Dec-07	26967.88	=""	="Castrol"	13-Dec-07 10:35 AM	

+="CN50987"	"Valuation services in relation to tax client"	="Australian Taxation Office"	13-Dec-07	="Management advisory services"	28-Nov-07	30-Jun-08	45972.00	=""	="Capital Value Pty Ltd"	13-Dec-07 10:52 AM	

+="CN50988"	" NSN 5306/00-076-4751  PURCHASE OF BOLT, COMPRESSOR WHEEL  EX GST "	="Defence Materiel Organisation"	13-Dec-07	="Military transport aircraft"	19-Nov-07	01-Dec-07	50439.48	=""	="Military Aviation Spares Pty Ltd"	13-Dec-07 10:59 AM	

+="CN50990"	"Motor Vehicle Parts."	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Dec-07	11-Jan-08	26281.97	=""	="Land Rover Australia"	13-Dec-07 11:51 AM	

+="CN50993"	" Provision of Cleaning Services to Parliament House (Contract JH03024)       "	="Department of Parliamentary Services"	13-Dec-07	="Building cleaning services"	26-Oct-07	30-Jun-08	2667088.52	=""	="Limro Cleaning Services (ACT)"	13-Dec-07 12:10 PM	

+="CN50994"	"Printing Binding Packaging and Distribution"	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	20-Sep-07	20-Sep-08	185927.06	="S07/08/085"	="Lane Laser Printers Pty Ltd"	13-Dec-07 12:17 PM	

+="CN50998"	"Provision for Project Manager"	="Comsuper"	13-Dec-07	="Human resources services"	13-Dec-07	05-Apr-08	71280.00	=""	="Cordelta Pty Ltd"	13-Dec-07 12:48 PM	

+="CN50999-A2"	"provision for Project Manager - Governance Consultant"	="Comsuper"	13-Dec-07	="Human resources services"	22-Dec-07	12-Mar-08	192192.00	=""	="Maximus Solutions"	13-Dec-07 12:53 PM	

+="CN51000-A1"	"Provision for Accountant"	="Comsuper"	13-Dec-07	="Human resources services"	10-Dec-07	10-Mar-08	64350.00	=""	="maximus Solutions Australia"	13-Dec-07 12:56 PM	

+="CN51001"	"Provision for the Web Design Services"	="Comsuper"	13-Dec-07	="Web page creation and editing software"	03-Dec-07	30-Jun-08	19800.00	=""	="Cre8tive Digital"	13-Dec-07 01:00 PM	

+="CN51003"	"Provision for Legal Services"	="Comsuper"	13-Dec-07	="Legal services"	30-Jan-07	21-Dec-07	230000.00	=""	="Australian Government SDolicitors"	13-Dec-07 01:06 PM	

+="CN51004-A1"	"FLASHLIGHT"	="Defence Materiel Organisation"	13-Dec-07	="Flashlights"	12-Dec-07	31-May-08	330330.00	=""	="CROSSFIRE PTY LTD"	13-Dec-07 01:37 PM	

+="CN51005"	"Microsoft support hours"	="Australian Human Rights Commission"	13-Dec-07	="Computers"	22-Oct-07	23-Oct-08	10230.00	=""	="Microsoft Pty Ltd"	13-Dec-07 01:52 PM	

+="CN51008"	"Hire of Premises"	="Australian Electoral Commission"	13-Dec-07	="Lease and rental of property or building"	05-Nov-07	10-Dec-07	11000.00	=""	="Savills (VIC) Pty Ltd"	13-Dec-07 01:56 PM	

+="CN50991"	"Motor Vehicle Parts."	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	27-Dec-07	10276.75	=""	="Mercedes Benz Aust/Pacific"	13-Dec-07 02:01 PM	

+="CN51009"	"Office Supplies"	="Australian Electoral Commission"	13-Dec-07	="Stationery"	20-Nov-07	20-Dec-07	17946.93	=""	="Corporate Express (Alexandria)"	13-Dec-07 02:02 PM	

+="CN50996"	" GENERATOR, ALTERNATING CURRENT "	="Defence Materiel Organisation"	13-Dec-07	="Motor or generator components"	12-Dec-07	06-Jun-08	16121.93	=""	="ADVANCED POWER (NSW) PTY LTD"	13-Dec-07 02:10 PM	

+="CN51011"	"VEHICLE PARTS"	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	11-Jan-08	29458.06	=""	="MERCEDES BENZ AUSTRALIA"	13-Dec-07 02:11 PM	

+="CN50995"	"PRINTED CIRCUIT BOARD"	="Defence Materiel Organisation"	13-Dec-07	="Motor or generator components"	12-Dec-07	11-Jan-08	25130.66	=""	="ADVANCED POWER (NSW) PTY LTD"	13-Dec-07 02:18 PM	

+="CN51013"	"Gazette Advertising"	="Australian Electoral Commission"	13-Dec-07	="Advertising"	22-Nov-07	22-Dec-07	15587.00	=""	="Attorney General's Department"	13-Dec-07 02:23 PM	

+="CN51014"	"Provision of temporary trades labour"	="Department of Parliamentary Services"	13-Dec-07	="Temporary technician staffing needs"	12-Dec-07	30-Jun-08	12015.85	=""	="People Consulting Services P/L"	13-Dec-07 02:26 PM	

+="CN51015"	"Provision of maintenance painting services (Contract JH99063)"	="Department of Parliamentary Services"	13-Dec-07	="Painting services"	12-Dec-07	30-Jun-08	507171.04	=""	="AGC Industries Pty Ltd"	13-Dec-07 02:26 PM	

+="CN51016"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	13-Dec-07	="Printing"	11-Dec-07	31-Mar-08	80850.00	=""	="Canprint Communications Pty Ltd"	13-Dec-07 02:27 PM	

+="CN51017"	"Provision of placement for B White"	="Department of Parliamentary Services"	13-Dec-07	="Management advisory services"	11-Dec-07	29-Jan-08	21487.76	=""	="HUDSON TMP/HUDSON GLOBAL RES"	13-Dec-07 02:27 PM	

+="CN51018"	"Provision of Protective Service at Parliament Hous Contract (DPS07050 )"	="Department of Parliamentary Services"	13-Dec-07	="Guard services"	07-Dec-07	31-Mar-08	9162038.60	=""	="Aust Federal Police"	13-Dec-07 02:27 PM	

+="CN51019"	"Maintenance of Ceramic and Quarry Tiles Contract (JH03028 )"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	06-Dec-07	30-Mar-08	30593.92	=""	="PDA Marble & Granite"	13-Dec-07 02:27 PM	

+="CN51020"	"Internal audit services"	="Department of Parliamentary Services"	13-Dec-07	="Internal audits"	04-Dec-07	28-Dec-07	20398.13	=""	="WalterTurnbull Pty Ltd"	13-Dec-07 02:27 PM	

+="CN51021"	"Internal audit services"	="Department of Parliamentary Services"	13-Dec-07	="Internal audits"	04-Dec-07	28-Dec-07	15881.25	=""	="WalterTurnbull Pty Ltd"	13-Dec-07 02:27 PM	

+="CN51022"	"Provision of  Project Mangement Services"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	11667.26	=""	="Manteena Pty Ltd"	13-Dec-07 02:27 PM	

+="CN51023"	"Provision of Engineering Works (Contract JH00007(53)"	="Department of Parliamentary Services"	13-Dec-07	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	28688.00	=""	="G E Shaw & Associates"	13-Dec-07 02:27 PM	

+="CN51024"	"Provision of Internet Services"	="Department of Parliamentary Services"	13-Dec-07	="Internet services"	10-Dec-07	31-Dec-07	168640.66	=""	="Telstra Corporation Ltd"	13-Dec-07 02:28 PM	

+="CN51025"	"Provision Of building works package 2005-2007 Contract (JH00007  52)"	="Department of Parliamentary Services"	13-Dec-07	="Building construction management"	12-Dec-07	30-Jun-08	13167.00	=""	="Manteena Pty Ltd"	13-Dec-07 02:28 PM	

+="CN51026"	"Provision of Project Management Services"	="Department of Parliamentary Services"	13-Dec-07	="Project management"	11-Dec-07	30-Jun-08	14388.00	=""	="Manteena Pty Ltd"	13-Dec-07 02:28 PM	

+="CN51027"	"ASP ENVC ANZRC Subscription 1 year"	="Department of Parliamentary Services"	13-Dec-07	="Printed publications"	29-Nov-07	01-Nov-08	20301.60	=""	="EBSCO PUBLISHING"	13-Dec-07 02:28 PM	

+="CN51028"	"Standing Offer notice (SON27006); LEASE DEC-07 Fleet management and leasing services."	="Department of Parliamentary Services"	13-Dec-07	="Vehicle leasing"	20-Nov-07	31-Dec-07	12492.06	=""	="LeasePlan"	13-Dec-07 02:28 PM	

+="CN51029"	"1/12/07-30/11/08 Oxford Analytica comrehensive cli"	="Department of Parliamentary Services"	13-Dec-07	="Printed publications"	28-Nov-07	30-Nov-08	15316.81	=""	="OXFORD ANALYTICA INC."	13-Dec-07 02:28 PM	

+="CN51030"	"Factiva monthly & works information  1/7-30/9/07"	="Department of Parliamentary Services"	13-Dec-07	="Internet services"	01-Jul-07	30-Sep-07	18000.00	=""	="DOW JONES REUTERS BUSINESS"	13-Dec-07 02:28 PM	

+="CN51031"	"Print Advertising Supplement"	="Australian Electoral Commission"	13-Dec-07	="Print advertising"	20-Nov-07	20-Dec-07	76098.25	=""	="HMA Blaze"	13-Dec-07 02:35 PM	

+="CN51033"	"Printing of Ballot Papers"	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	03-May-07	28-Feb-08	115000.00	="Q2003/01"	="Goprint"	13-Dec-07 02:43 PM	

+="CN51034"	"Fitout management services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Oct-07	30-Jun-08	15943.19	=""	="GHD Pty Ltd"	13-Dec-07 03:31 PM	

+="CN51035-A1"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	20-Nov-07	30-Jun-08	32160.03	=""	="UNE Partnerships Pty Ltd"	13-Dec-07 03:31 PM	

+="CN51036"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	22-Nov-07	30-Jun-08	55000.11	=""	="IPA Personnel Pty Ltd"	13-Dec-07 03:31 PM	

+="CN51037"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	29-Nov-07	30-Jun-08	87820.00	=""	="Taylor Fry Pty Ltd"	13-Dec-07 03:31 PM	

+="CN51038"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	18-Nov-07	16742.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:31 PM	

+="CN51039"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	10-Dec-07	14990.80	=""	="Desa Australia (QLD) Pty Ltd"	13-Dec-07 03:32 PM	

+="CN51040"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	22-Nov-07	34320.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:32 PM	

+="CN51041"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	25-Nov-07	38830.00	=""	="MIMP Computer Cables"	13-Dec-07 03:32 PM	

+="CN51042"	"Guard service"	="Centrelink"	13-Dec-07	="Security and personal safety"	02-Nov-07	02-May-08	32852.16	=""	="Wilson Security"	13-Dec-07 03:32 PM	

+="CN51043"	"Office Fitout, Woden, ACT"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Nov-07	26-Nov-07	157633.19	=""	="Quatram Building Services Pty Ltd"	13-Dec-07 03:32 PM	

+="CN51044"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	06-Nov-07	20-Mar-08	44976.80	=""	="FGP Company Pty Ltd"	13-Dec-07 03:32 PM	

+="CN51045"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	07-Nov-07	30-Jun-08	48152.50	=""	="Regent Recruitment"	13-Dec-07 03:32 PM	

+="CN51046"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	74800.00	=""	="CRS Australia"	13-Dec-07 03:32 PM	

+="CN51047"	"Graphic design"	="Centrelink"	13-Dec-07	="Graphic design"	07-Nov-07	30-Jun-08	87230.00	=""	="Retail Environment Design"	13-Dec-07 03:32 PM	

+="CN51048"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	14300.00	=""	="Dillon Whitelaw & Associates P/L"	13-Dec-07 03:33 PM	

+="CN51049"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	44000.00	=""	="Hopwood & Associates Pty Ltd"	13-Dec-07 03:33 PM	

+="CN51050"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	22000.00	=""	="TAFE Tasmania"	13-Dec-07 03:33 PM	

+="CN51051"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	07-Nov-07	30-Jun-08	10000.00	=""	="VOID Elliott Hotel"	13-Dec-07 03:33 PM	

+="CN51052"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	07-Nov-07	30-Jun-08	20000.20	=""	="Ken Everett International Pty Ltd"	13-Dec-07 03:33 PM	

+="CN51053"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	07-Nov-07	30-Jun-08	34500.00	=""	="Ingkerreke Outstations Resource"	13-Dec-07 03:33 PM	

+="CN51054"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	07-Nov-07	30-Jun-08	10000.00	=""	="Macmahon Contractors Pty Ltd"	13-Dec-07 03:33 PM	

+="CN51055"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	07-Nov-07	20-Mar-08	129140.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:33 PM	

+="CN51056"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	14520.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:33 PM	

+="CN51058"	"Project management services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Nov-07	29-Jun-08	13822.75	=""	="IA Group Pty Ltd (Interiors Austral"	13-Dec-07 03:34 PM	

+="CN51059"	"Employee assistance program - Tasmania"	="Centrelink"	13-Dec-07	="Human resources services"	30-Nov-07	30-Nov-09	172040.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:34 PM	

+="CN51057"	" Printing of Ballot Papers "	="Australian Electoral Commission"	13-Dec-07	="Industrial printing services"	01-Mar-04	01-Mar-07	198000.00	="Q2003/02"	="Goprint"	13-Dec-07 03:34 PM	

+="CN51060"	"Business administration - interpreter services"	="Centrelink"	13-Dec-07	="Business administration services"	15-Nov-07	30-Jun-08	50000.01	=""	="Non-registered interpreters"	13-Dec-07 03:34 PM	

+="CN51061"	"Courier Services"	="Centrelink"	13-Dec-07	="Mail and cargo transport"	22-Nov-07	30-Jun-08	77000.00	=""	="Toll Priority"	13-Dec-07 03:34 PM	

+="CN51062"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	14-Nov-07	07-Dec-07	62157.70	=""	="Hoban Recruitment"	13-Dec-07 03:34 PM	

+="CN51063"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Nov-07	25-Jan-08	79436.50	=""	="HBO + EMTB Interiors (Victoria) P/L"	13-Dec-07 03:34 PM	

+="CN51064"	"Information Services"	="Centrelink"	13-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	149999.99	=""	="Australian Business Research"	13-Dec-07 03:34 PM	

+="CN51065"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	20000.00	=""	="MLCOA"	13-Dec-07 03:34 PM	

+="CN51066"	"Medical services"	="Centrelink"	13-Dec-07	="Healthcare Services"	23-Nov-07	30-Jun-08	39600.00	=""	="Health for Industry"	13-Dec-07 03:35 PM	

+="CN51067"	"DVD Production Services"	="Centrelink"	13-Dec-07	="Telecommunications media services"	22-Nov-07	30-Jun-08	23854.05	=""	="National Video Centre Pty Ltd"	13-Dec-07 03:35 PM	

+="CN51068"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	06-Jul-07	31-Jul-07	291033.00	=""	="Grosvenor Management Consulting P/L"	13-Dec-07 03:35 PM	

+="CN51069-A1"	"Advertising"	="Centrelink"	13-Dec-07	="Advertising"	13-Nov-07	30-Jun-08	153804.85	=""	="HMA Blaze Pty Ltd"	13-Dec-07 03:35 PM	

+="CN51070"	"Painting Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Nov-07	10-Apr-08	44000.00	=""	="Anasson Painting & Maintenance"	13-Dec-07 03:35 PM	

+="CN51071-A1"	"Advertising"	="Centrelink"	13-Dec-07	="Advertising"	12-Nov-07	30-Sep-08	11000.00	=""	="HMA Blaze Pty Ltd"	13-Dec-07 03:35 PM	

+="CN51072"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	19-Nov-07	30-Nov-07	660000.00	=""	="Vedior Asia Pacific Pty Ltd"	13-Dec-07 03:35 PM	

+="CN51073"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	04-Dec-07	30-Jun-08	42606.74	=""	="Hoban Recruitment"	13-Dec-07 03:35 PM	

+="CN51074"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	30-Jul-07	30-Jun-08	11000.00	=""	="Wines Office Furniture"	13-Dec-07 03:35 PM	

+="CN51075"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	29-Nov-07	30-Jun-08	29215.34	=""	="Chandler Macleod"	13-Dec-07 03:36 PM	

+="CN51076"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	02-Aug-07	30-Jun-08	11000.00	=""	="Advanced Personnel Management"	13-Dec-07 03:36 PM	

+="CN51077"	"TV cabling services"	="Centrelink"	13-Dec-07	="Electronic Components and Supplies"	06-Aug-07	30-Jun-08	14960.00	=""	="Fred Palmer & Son"	13-Dec-07 03:36 PM	

+="CN51078-A1"	"Office refurbishment"	="Centrelink"	13-Dec-07	="Office machines and their supplies and accessories"	10-Sep-07	31-Dec-07	275492.99	=""	="Retail Environment Design"	13-Dec-07 03:36 PM	

+="CN51079"	"Airconditioning repairs"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Aug-07	07-Nov-07	10154.38	=""	="AIRTEMP PTY LTD"	13-Dec-07 03:36 PM	

+="CN51080"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	19-Nov-07	09-Dec-07	10993.40	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:36 PM	

+="CN51081"	"Accounting and auditing services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	20-Nov-07	30-Jun-08	15120.00	=""	="BDO Kendalls (Nsw-Vic) Pty Ltd"	13-Dec-07 03:36 PM	

+="CN51082"	"Accounting and audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	20-Nov-07	30-Jun-08	15120.00	=""	="BDO Kendalls (Nsw-Vic) Pty Ltd"	13-Dec-07 03:36 PM	

+="CN51084"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	20-Nov-07	30-Jun-08	11000.00	=""	="Families at Work"	13-Dec-07 03:36 PM	

+="CN51085"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	21-Nov-07	27-Nov-07	10326.03	=""	="Robert Brennan & Associates"	13-Dec-07 03:37 PM	

+="CN51086-A1"	"Employee assistance program"	="Centrelink"	13-Dec-07	="Community and social services"	22-Nov-07	22-Nov-07	13376.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:37 PM	

+="CN51087-A1"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Community and social services"	22-Nov-07	30-Nov-07	13376.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	13-Dec-07 03:37 PM	

+="CN51088"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Nov-07	03-Dec-08	78555.40	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:37 PM	

+="CN51089"	"Business administraion"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	45589.20	=""	="Corporate Executive Board"	13-Dec-07 03:37 PM	

+="CN51090"	"Business Administration"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Jun-08	79781.10	=""	="Corporate Executive Board"	13-Dec-07 03:37 PM	

+="CN51091"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Human resources services"	23-Nov-07	23-Nov-08	273839.50	=""	="OSA Group"	13-Dec-07 03:37 PM	

+="CN51092"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	23-Nov-07	16-Dec-07	39952.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:38 PM	

+="CN51093"	"IT Cabling"	="Centrelink"	13-Dec-07	="Computer services"	23-Nov-07	16-Dec-07	33949.30	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:38 PM	

+="CN51094"	"Accounting and Audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	26-Nov-07	30-Jun-08	73500.00	=""	="Pitt Group Pty Ltd"	13-Dec-07 03:38 PM	

+="CN51095"	"Accounting and Audit Services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	26-Nov-07	30-Jun-08	84000.00	=""	="PricewaterhouseCoopers"	13-Dec-07 03:38 PM	

+="CN51097"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	26-Nov-07	12-Mar-08	55001.60	=""	="PricewaterhouseCoopers"	13-Dec-07 03:38 PM	

+="CN51098"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	26-Nov-07	30-Jun-08	19600.01	=""	="Tarcus Pty Ltd"	13-Dec-07 03:38 PM	

+="CN51099"	"Fitout Management Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	89470.70	=""	="Integrated Space Ltd"	13-Dec-07 03:38 PM	

+="CN51100"	"Project Management Services"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Nov-07	30-Jun-08	52250.00	=""	="IA Group Pty Ltd (Interiors Austral"	13-Dec-07 03:39 PM	

+="CN51101"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	27-Nov-07	15-Mar-08	433189.90	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:39 PM	

+="CN51102"	"External training"	="Centrelink"	13-Dec-07	="Vocational training"	27-Nov-07	30-Jun-08	33000.00	=""	="Customer Focus Group Training Co"	13-Dec-07 03:39 PM	

+="CN51103"	"Transport services"	="Centrelink"	13-Dec-07	="Transport operations"	29-Nov-07	30-Jun-08	50000.01	=""	="Hardy Aviation (NT) Pty Ltd"	13-Dec-07 03:39 PM	

+="CN51105"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	30-Nov-07	30-Jun-08	60000.00	=""	="Unified Healthcare Group"	13-Dec-07 03:39 PM	

+="CN51106"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	51579.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:39 PM	

+="CN51107"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	25-Nov-07	16148.00	=""	="Integrated Cabling Solutions Pty Lt"	13-Dec-07 03:39 PM	

+="CN51108"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	02-Dec-07	18260.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:39 PM	

+="CN51109"	"Accounting and auditing services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	08-Nov-07	30-Jun-08	84735.00	=""	="KPMG"	13-Dec-07 03:40 PM	

+="CN51110"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	08-Nov-07	30-Jun-08	30104.80	=""	="Vedior Asia Pacific Pty Ltd"	13-Dec-07 03:40 PM	

+="CN51111"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	09-Dec-07	107657.00	=""	="Stowe Australia Pty Ltd"	13-Dec-07 03:40 PM	

+="CN51112"	"Computer Cabling"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	09-Dec-07	42890.10	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:40 PM	

+="CN51113"	"External Training"	="Centrelink"	13-Dec-07	="Educational institutions"	08-Nov-07	30-Dec-08	27000.00	=""	="Box Hill Institute of TAFE"	13-Dec-07 03:40 PM	

+="CN51114"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	09-Nov-07	30-Jul-08	185828.50	=""	="Dimension Data Australia Pty Ltd"	13-Dec-07 03:40 PM	

+="CN51115"	"Business Administration Services"	="Centrelink"	13-Dec-07	="Business administration services"	09-Nov-07	30-Jun-08	10000.00	=""	="Axis Searching & Settlements"	13-Dec-07 03:40 PM	

+="CN51116"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	09-Nov-07	02-Dec-08	349152.70	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:40 PM	

+="CN51117"	" Recuitment Services "	="Centrelink"	13-Dec-07	="Human resources services"	13-Nov-07	30-Jun-08	38500.00	=""	="Hays Personnel Services (Aust) P/L"	13-Dec-07 03:40 PM	

+="CN51118"	"Office fitout, Adelaide, SA"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Nov-07	30-Jun-08	46542.00	=""	="HBO + EMTB Interiors (Victoria) P/L"	13-Dec-07 03:41 PM	

+="CN51119"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	20-Mar-08	66041.80	=""	="Solitaire Seating"	13-Dec-07 03:41 PM	

+="CN51121"	"Employee Assistance Program"	="Centrelink"	13-Dec-07	="Human resources services"	14-Nov-07	31-Oct-08	135000.00	=""	="OSA Group"	13-Dec-07 03:41 PM	

+="CN51122"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	20-Mar-08	74154.30	=""	="Solitaire Seating"	13-Dec-07 03:41 PM	

+="CN51123"	"Medical Services"	="Centrelink"	13-Dec-07	="Healthcare Services"	15-Nov-07	30-Jun-08	11000.00	=""	="Health for Industry"	13-Dec-07 03:41 PM	

+="CN51124"	"Recuitment Services"	="Centrelink"	13-Dec-07	="Human resources services"	15-Nov-07	30-Jun-08	169400.00	=""	="Chandler Macleod"	13-Dec-07 03:41 PM	

+="CN51125"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	16-Nov-07	30-Jun-08	11000.00	=""	="Dept of Employment & Workplace"	13-Dec-07 03:42 PM	

+="CN51126"	"Vehicle fitouts and accessories"	="Centrelink"	13-Dec-07	="Vehicle bodies and trailers"	16-Nov-07	30-Jun-08	50000.01	=""	="ARB Vehicle Accessories"	13-Dec-07 03:42 PM	

+="CN51127"	"Accommodation and meeting facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Jun-08	30000.00	=""	="All Seasons"	13-Dec-07 03:42 PM	

+="CN51128"	"Transport Services"	="Centrelink"	13-Dec-07	="Transport operations"	16-Nov-07	30-Jun-08	30000.00	=""	="Murin Travel & Freight Services"	13-Dec-07 03:42 PM	

+="CN51129"	"Accounting and Audit Services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	16-Nov-07	30-Jun-08	13200.00	=""	="World Wide Webster Pty Ltd"	13-Dec-07 03:42 PM	

+="CN51130"	"Static Guard Services, Fremantle, WA"	="Centrelink"	13-Dec-07	="Security and personal safety"	02-Nov-07	02-May-08	32852.16	=""	="Wilson Security"	13-Dec-07 03:42 PM	

+="CN51131"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	05-Nov-07	30-Jun-08	21760.68	=""	="Compuware Asia-Pacific Pty Ltd"	13-Dec-07 03:42 PM	

+="CN51132"	"Accommodation and meeing facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	05-Nov-07	30-Jun-08	15795.12	=""	="Marcus Evans (ANZ) Limited"	13-Dec-07 03:42 PM	

+="CN51133"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	58994.10	=""	="DESA Australia Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51134"	"Blinds"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	05-Nov-07	03-Dec-07	30140.00	=""	="Riteway Curtains and Blinds"	13-Dec-07 03:43 PM	

+="CN51135"	"Office Refurbishment"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	05-Nov-07	05-Feb-08	12464.59	=""	="Schiavello SA Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51136"	"Floor covering, Blacktown, NSW"	="Centrelink"	13-Dec-07	="Software"	06-Nov-07	18-Nov-07	11407.00	=""	="J D C Flooring Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51137"	"Office fitout"	="Centrelink"	13-Dec-07	="Office supplies"	06-Nov-07	08-Feb-08	225940.00	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51138"	"Class "B" Safe"	="Centrelink"	13-Dec-07	="Security and personal safety"	07-Nov-07	15-Dec-07	45610.40	=""	="CMI Safe Co"	13-Dec-07 03:43 PM	

+="CN51139"	"Office fitout, Mildura, VIC"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Nov-07	18-Jan-08	10450.00	=""	="Zhomic Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51140"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	08-Nov-07	30-Jun-08	64350.00	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:43 PM	

+="CN51141"	"Business administraion"	="Centrelink"	13-Dec-07	="Business administration services"	08-Nov-07	30-Jun-08	11710.16	=""	="KPMG"	13-Dec-07 03:43 PM	

+="CN51142"	"Office furniture, Mildura, VIC"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	18-Jan-08	21410.31	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:44 PM	

+="CN51143"	"Venue hire"	="Centrelink"	13-Dec-07	="Business administration services"	08-Nov-07	06-Dec-07	56762.79	=""	="Think Business Events"	13-Dec-07 03:44 PM	

+="CN51144"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	08-Nov-07	08-Nov-07	23276.00	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:44 PM	

+="CN51145"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	03-Dec-07	80349.50	=""	="Schiavello Systems (QLD) Pty Ltd"	13-Dec-07 03:44 PM	

+="CN51146"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	08-Nov-07	14-Dec-07	18535.59	=""	="UCI"	13-Dec-07 03:44 PM	

+="CN51147"	"Office furniture, Newport, VIC"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	21-Dec-07	104115.00	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:44 PM	

+="CN51148"	"Management advisory services"	="Centrelink"	13-Dec-07	="Management advisory services"	09-Nov-07	30-Jun-08	20751.01	=""	="Trowbridge Deloitte"	13-Dec-07 03:44 PM	

+="CN51149"	"Fitout Management Services"	="Centrelink"	13-Dec-07	="Professional engineering services"	09-Nov-07	30-Jun-08	11745.00	=""	="GHD Pty Ltd"	13-Dec-07 03:44 PM	

+="CN51150"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	21-Dec-07	16464.03	=""	="Empire Business Furniture"	13-Dec-07 03:44 PM	

+="CN51151"	"Blinds"	="Centrelink"	13-Dec-07	="Office supplies"	09-Nov-07	25-Nov-07	23058.18	=""	="Hunter Douglas Limited"	13-Dec-07 03:45 PM	

+="CN51153"	"Office furniture, Burnie, TAS"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	09-Nov-07	14-Dec-07	26732.86	=""	="Gregory Commercial Furniture P/L"	13-Dec-07 03:45 PM	

+="CN51154"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	29-Nov-07	03-Jun-08	82882.80	=""	="Verossity Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51155"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	10-Nov-05	12-May-06	121832.71	=""	="Peoplebank Australia Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51156"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	14-Nov-07	18-Nov-07	109309.20	=""	="Ekonsulting Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51157"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	22-Nov-07	24-Nov-07	187387.20	=""	="Peoplebank Australia Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51158"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	27-Jan-06	27-Nov-07	131670.00	=""	="Omaha IT Services Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51159"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	04-Sep-07	26-Nov-07	165445.72	=""	="OOSW Consulting Pty Ltd"	13-Dec-07 03:45 PM	

+="CN51160"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	03-Dec-07	05-Dec-07	102102.00	=""	="Degisoft Consulting"	13-Dec-07 03:45 PM	

+="CN51161"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	22-Nov-07	22-Nov-07	117717.60	=""	="Southern Cross Computing Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51162"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Human resources services"	28-Nov-07	30-Nov-07	44500.50	=""	="CSC Australia Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51163"	"Surveillance equipment"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	18-Sep-07	28-Dec-07	10252.00	=""	="Signature Security Group"	13-Dec-07 03:46 PM	

+="CN51164"	"Upgrade of Digital CCTV Monitoring Equipment"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	09-Oct-07	31-Oct-07	39069.11	=""	="Austwide Security Services"	13-Dec-07 03:46 PM	

+="CN51165"	"IT Specialist Services by specified personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Jun-08	172788.00	=""	="Talent International (ACT) Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51166"	"IT Specialist services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Apr-08	115315.20	=""	="Ekonsulting Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51167"	"CCTV system for Kurri Kurri, NSW"	="Centrelink"	13-Dec-07	="Security surveillance and detection"	01-Nov-07	01-Nov-07	10672.00	=""	="Novocastrian Alarms Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51168"	"Floor covering"	="Centrelink"	13-Dec-07	="Office supplies"	01-Nov-07	18-Nov-07	13376.00	=""	="J D C Flooring Pty Ltd"	13-Dec-07 03:46 PM	

+="CN51169"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	01-Nov-07	30-Jun-08	137445.00	=""	="Icon Recruitment Pty Ltd"	13-Dec-07 03:47 PM	

+="CN51170"	"Internal painting at Newport, VIC"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Nov-07	28-Dec-07	21087.00	=""	="L & A Petruccelli"	13-Dec-07 03:47 PM	

+="CN51171"	"External Training"	="Centrelink"	13-Dec-07	="Educational facilities"	02-Nov-07	30-Nov-07	17520.00	=""	="Box Hill Institute of TAFE"	13-Dec-07 03:47 PM	

+="CN51172"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	02-Nov-07	04-Nov-08	165765.60	=""	="Compas Pty Ltd"	13-Dec-07 03:47 PM	

+="CN51173"	"Office removals and storage"	="Centrelink"	13-Dec-07	="Material packing and handling"	02-Nov-07	16-Dec-07	10560.00	=""	="A-2-B Furniture Removals & Storage"	13-Dec-07 03:47 PM	

+="CN51174"	"Supply and install new carpet tiles, Newport, NSW"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Nov-07	21-Dec-07	63439.42	=""	="Interface Flor"	13-Dec-07 03:47 PM	

+="CN51175"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	02-Nov-07	02-Nov-07	21914.90	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:47 PM	

+="CN51176"	"Mechanical Services"	="Centrelink"	13-Dec-07	="Distribution and Conditioning Systems and Equipment and Components"	02-Nov-07	31-Dec-07	10340.00	=""	="Westside Services (SA) Pty Ltd"	13-Dec-07 03:47 PM	

+="CN51177"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	19-Nov-07	30-Jun-08	11748.65	=""	="Hotel Realm"	13-Dec-07 03:47 PM	

+="CN51178-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	20-Nov-07	03-Dec-07	60558.00	=""	="Australian Envelopes"	13-Dec-07 03:48 PM	

+="CN51179-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	20-Nov-07	03-Dec-07	27005.44	=""	="Australian Envelopes"	13-Dec-07 03:48 PM	

+="CN51180"	"Conference Services"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	20-Nov-07	06-Dec-07	19842.00	=""	="Citigate Sebel Sydney"	13-Dec-07 03:48 PM	

+="CN51181"	"Supply and install carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	21-Nov-07	30-Jun-08	83526.14	=""	="Interface Flor"	13-Dec-07 03:48 PM	

+="CN51182"	"Interior signage"	="Centrelink"	13-Dec-07	="Signage and accessories"	21-Nov-07	31-Dec-07	11957.00	=""	="Tint Design Pty Ltd"	13-Dec-07 03:48 PM	

+="CN51183"	"Training equipment"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	15-Jan-08	11438.90	=""	="Electroboard Solutions Pty Ltd"	13-Dec-07 03:48 PM	

+="CN51184"	"External Training"	="Centrelink"	13-Dec-07	="Vocational training"	22-Nov-07	30-Jun-08	26800.00	=""	="Australian Public Servce Commission"	13-Dec-07 03:48 PM	

+="CN51185"	"Accounting and audit services"	="Centrelink"	13-Dec-07	="Accounting and auditing"	22-Nov-07	30-Jun-08	38310.00	=""	="KPMG"	13-Dec-07 03:48 PM	

+="CN51186"	"Office fitout, Cabramatta, NSW"	="Centrelink"	13-Dec-07	="Office supplies"	22-Nov-07	15-Dec-07	238332.60	=""	="Formula Interiors NSW"	13-Dec-07 03:48 PM	

+="CN51187"	"Conference Services"	="Centrelink"	13-Dec-07	="Business administration services"	23-Nov-07	30-Nov-07	16940.00	=""	="Telos Partners Australia Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51188"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	26-Nov-07	26-Nov-07	28872.72	=""	="Dimension Data Australia Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51189"	"Electrical Services"	="Centrelink"	13-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	26-Nov-07	24-Dec-07	71412.00	=""	="Tri State Electrical & Communicatio"	13-Dec-07 03:49 PM	

+="CN51190"	"Market Research"	="Centrelink"	13-Dec-07	="Management advisory services"	26-Nov-07	31-Dec-07	10890.00	=""	="Open Mind Research Group"	13-Dec-07 03:49 PM	

+="CN51191-A1"	"Envelopes"	="Centrelink"	13-Dec-07	="Paper Materials and Products"	27-Nov-07	31-Dec-07	34672.00	=""	="Australian Envelopes"	13-Dec-07 03:49 PM	

+="CN51192"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	19-Dec-07	124300.00	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51193"	"Computer Equipment and Accessories"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	28-Dec-07	32835.00	=""	="Hewlett Packard Australia Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51194"	"Business Television Production - Equipment"	="Centrelink"	13-Dec-07	="Telecommunications media services"	28-Nov-07	31-Jan-08	12491.80	=""	="Electronic Concepts Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51195"	"Install CCTV to all areas of Hobart, TAS"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	21-Dec-07	69564.00	=""	="Spotless P & F Pty Ltd"	13-Dec-07 03:49 PM	

+="CN51196"	"Install CCTV"	="Centrelink"	13-Dec-07	="Building and Construction Machinery and Accessories"	28-Nov-07	21-Dec-07	15043.60	=""	="Spotless P & F Pty Ltd"	13-Dec-07 03:50 PM	

+="CN51197"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	28-Nov-07	12-Dec-07	44550.00	=""	="CPT Global Ltd"	13-Dec-07 03:50 PM	

+="CN51198"	"Computer services"	="Centrelink"	13-Dec-07	="Computer services"	29-Nov-07	29-Nov-07	26276.25	=""	="IBM Australia Pty Ltd"	13-Dec-07 03:50 PM	

+="CN51199"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	29-Nov-07	30-Jun-08	156553.10	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Dec-07 03:50 PM	

+="CN51200"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	12-Nov-07	05-Dec-07	10945.00	=""	="Schiavello (Vic) Pty  Ltd"	13-Dec-07 03:50 PM	

+="CN51201"	"Engineering Services"	="Centrelink"	13-Dec-07	="Professional engineering services"	12-Nov-07	30-Jun-08	15455.00	=""	="GHD Pty Ltd"	13-Dec-07 03:50 PM	

+="CN51202"	"Supply and install carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	12-Nov-07	30-Jun-08	108601.46	=""	="Interface Flor"	13-Dec-07 03:50 PM	

+="CN51203"	"Supply and Install Carpet"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Nov-07	07-Dec-07	32010.00	=""	="Carpet Company"	13-Dec-07 03:50 PM	

+="CN51204"	"Supply & Install marketing and promotional items"	="Centrelink"	13-Dec-07	="Marketing and distribution"	13-Nov-07	13-Nov-07	21472.00	=""	="Schiavello (WA) Pty Ltd"	13-Dec-07 03:50 PM	

+="CN51205"	"Construction work"	="Centrelink"	13-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Nov-07	15-Dec-07	24612.50	=""	="UEA Pty Ltd"	13-Dec-07 03:51 PM	

+="CN51206"	"Office furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	25-Jan-08	30390.80	=""	="Stem Industries Pty Ltd"	13-Dec-07 03:51 PM	

+="CN51207"	"IT Specialist Services by Specified Personnel"	="Centrelink"	13-Dec-07	="Computer services"	14-Nov-07	14-May-08	91891.80	=""	="Ambit Group"	13-Dec-07 03:51 PM	

+="CN51208"	"Joinery Services"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	30-Nov-07	56727.00	=""	="T  Early & Sons Pty Ltd"	13-Dec-07 03:51 PM	

+="CN51209"	"External Training"	="Centrelink"	13-Dec-07	="Educational facilities"	14-Nov-07	31-Dec-07	16500.00	=""	="Australian Security Academy Pty Ltd"	13-Dec-07 03:51 PM	

+="CN51210"	"Carpet"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	14-Nov-07	30-Dec-07	23617.22	=""	="Interface Flor"	13-Dec-07 03:51 PM	

+="CN51211"	"Recruitment Services"	="Centrelink"	13-Dec-07	="Business administration services"	14-Nov-07	30-Nov-07	18590.00	=""	="Tanner Menzies"	13-Dec-07 03:51 PM	

+="CN51212"	"Signage"	="Centrelink"	13-Dec-07	="Signage and accessories"	15-Nov-07	10-Dec-07	11030.45	=""	="Signworld Sunshine Coast"	13-Dec-07 03:51 PM	

+="CN51213"	"Office fitout"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	15-Nov-07	12-Jan-08	13383.70	=""	="Schiavello (WA) Pty Ltd"	13-Dec-07 03:52 PM	

+="CN51214"	"LCD Projectors"	="Centrelink"	13-Dec-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Nov-07	30-Nov-07	11192.50	=""	="Electroboard Solutions Pty Ltd"	13-Dec-07 03:52 PM	

+="CN51216"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	43890.00	=""	="Stem Industries Pty Ltd"	13-Dec-07 03:52 PM	

+="CN51217"	"Computer Equipment"	="Centrelink"	13-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	30-Jun-08	28600.00	=""	="Triangle Corporation"	13-Dec-07 03:52 PM	

+="CN51218"	"Office Furniture"	="Centrelink"	13-Dec-07	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	54284.89	=""	="Corporate Express Australia Limited"	13-Dec-07 03:52 PM	

+="CN51219"	"Business administration services"	="Centrelink"	13-Dec-07	="Business administration services"	16-Nov-07	30-Jun-08	36685.00	=""	="Australian Public Servce Commission"	13-Dec-07 03:52 PM	

+="CN51220"	"Transportation services equipment"	="Centrelink"	13-Dec-07	="Transportation services equipment"	16-Nov-07	30-Jun-08	10000.00	=""	="GAPUWIYAK COMMUNITY INC"	13-Dec-07 03:52 PM	

+="CN51221"	"Removalist Services"	="Centrelink"	13-Dec-07	="Material packing and handling"	16-Nov-07	18-Nov-07	10340.00	=""	="1st Fleet Pty Ltd"	13-Dec-07 03:52 PM	

+="CN51222"	"Accommodation and conference facilities"	="Centrelink"	13-Dec-07	="Hotels and lodging and meeting facilities"	19-Nov-07	30-Jun-08	10689.00	=""	="Sydney Masonic Centre Pty Ltd"	13-Dec-07 03:53 PM	

+="CN51224"	"Advertising the Writ"	="Australian Electoral Commission"	13-Dec-07	="Advertising"	22-Nov-07	22-Dec-07	24331.89	=""	="HMA Blaze"	13-Dec-07 03:57 PM	

+="CN51227"	"Print Advertising Supplement"	="Australian Electoral Commission"	13-Dec-07	="Print advertising"	22-Nov-07	22-Dec-07	291439.24	=""	="HMA Blaze"	13-Dec-07 04:05 PM	

+="CN51096"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	04-Sep-07	04-Sep-07	10356.06	=""	="Qantas Airways"	13-Dec-07 04:08 PM	

+="CN51228"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	11-Jan-08	16054.45	=""	="VOLVO COMMERICAL VEHICLES"	13-Dec-07 04:09 PM	

+="CN51229"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	10376.08	=""	="Qantas Airways"	13-Dec-07 04:15 PM	

+="CN51230"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	08-Oct-07	08-Oct-07	10377.62	=""	="Qantas Airways"	13-Dec-07 04:17 PM	

+="CN51233-A1"	"Temporary Personnel"	="Australian Electoral Commission"	13-Dec-07	="Temporary personnel services"	02-Jan-08	30-Jun-08	40048.80	="AEC06/019"	="Hays Personnel Services"	13-Dec-07 04:30 PM	

+="CN51235"	"Record Management Software Maintenance"	="Australian Electoral Commission"	13-Dec-07	="Software maintenance and support"	01-Dec-07	30-Nov-08	17190.50	=""	="Microhelp"	13-Dec-07 04:37 PM	

+="CN51236"	" AIRCRAFT SPARES  NSN 5330-01-513-0876  PACKING MATERIAL  QTY 50 "	="Defence Materiel Organisation"	13-Dec-07	="Military transport helicopters"	13-Dec-07	12-Jan-08	13200.00	=""	="ASIA PACIFIC AEROSPACE"	13-Dec-07 04:40 PM	

+="CN51232"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	03-Oct-07	03-Oct-07	10617.20	=""	="Qantas Airways"	13-Dec-07 04:42 PM	

+="CN51238"	"Delivery of Election Material"	="Australian Electoral Commission"	13-Dec-07	="Freight loading or unloading"	19-Nov-07	19-Dec-07	12166.00	=""	="Anderson's Removals and Storage"	13-Dec-07 04:45 PM	

+="CN51239"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	04-Oct-07	04-Oct-07	10680.45	=""	="Qantas Airways"	13-Dec-07 04:46 PM	

+="CN51240"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	14-Aug-07	14-Aug-07	10682.65	=""	="Qantas Airways"	13-Dec-07 04:50 PM	

+="CN51241"	"Property Management Services"	="Australian Electoral Commission"	13-Dec-07	="Property management services"	01-Jul-06	30-Jun-08	330000.00	="N01/208"	="CB Richard Ellis (A) Pty Ltd"	13-Dec-07 04:51 PM	

+="CN51242"	"Hire of Election Premises"	="Australian Electoral Commission"	13-Dec-07	="Lease and rental of property or building"	19-Nov-07	19-Dec-07	12100.00	=""	="Knight Frank Gold Coast"	13-Dec-07 04:57 PM	

+="CN51243"	"Assessment of Business Plan"	="Australian Electoral Commission"	13-Dec-07	="Business and corporate management consultation services"	16-Apr-07	10-Sep-07	92400.00	="S06/07/041"	="ALC Training Pty Ltd"	13-Dec-07 05:05 PM	

+="CN51247"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	08-Aug-07	08-Aug-07	10412.05	=""	="Qantas Airways"	13-Dec-07 05:24 PM	

+="CN51248"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	13-Sep-07	13-Sep-07	10689.58	=""	="Qantas Airways"	13-Dec-07 05:28 PM	

+="CN51249"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	02-Oct-07	02-Oct-07	10689.58	=""	="Qantas Airways"	13-Dec-07 05:31 PM	

+="CN51250"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	11-Oct-07	11-Oct-07	11818.84	=""	="Qantas Airways"	13-Dec-07 05:34 PM	

+="CN51251"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	25-Sep-07	25-Sep-07	12877.92	=""	="Qantas Airways"	13-Dec-07 05:38 PM	

+="CN51252"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	12877.92	=""	="Qantas Airways"	13-Dec-07 05:40 PM	

+="CN51253"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	27-Sep-07	27-Sep-07	12888.48	=""	="Qantas Airways"	13-Dec-07 05:42 PM	

+="CN51254"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	28-Aug-07	28-Aug-07	12934.57	=""	="Qantas Airways"	13-Dec-07 05:45 PM	

+="CN51255"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	24-Sep-07	24-Sep-07	26147.22	=""	="Qantas Airways"	13-Dec-07 05:47 PM	

+="CN51256"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	13-Dec-07	="Passenger air transportation"	02-Oct-07	02-Oct-07	32285.22	=""	="Qantas Airways"	13-Dec-07 05:50 PM	

+="CN51257"	"Pharmaceuricals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	05-Dec-07	17-Dec-07	10631.50	=""	="GlaxoSmithKline"	14-Dec-07 07:41 AM	

+="CN51258"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	12-Dec-07	07-Jan-08	35688.29	=""	="SymbionPharmacy Services"	14-Dec-07 07:44 AM	

+="CN51259"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Dec-07	="Drugs and Pharmaceutical Products"	20-Nov-07	20-Dec-07	81181.00	=""	="Mayne Pharma"	14-Dec-07 07:49 AM	

+="CN51260"	"Consultancy for Telecommunications & data services carrier tender."	="Australian Securities and Investments Commission"	14-Dec-07	="Business and corporate management consultation services"	26-Nov-07	31-Mar-08	90300.00	=""	="Beyond Technologies"	14-Dec-07 08:24 AM	

+="CN51261"	"Web Analyst Licences and Support and Maintenance C07/00077"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Software"	03-Dec-07	31-Dec-07	20680.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	14-Dec-07 08:34 AM	

+="CN51262"	"Disposal Organic Chemicals  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Toxic and hazardous waste cleanup"	22-Nov-07	30-Jun-08	13046.00	=""	="CLEANAWAY"	14-Dec-07 08:35 AM	

+="CN51263"	"Disposal of Solvents  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Toxic and hazardous waste cleanup"	30-Nov-07	30-Jun-08	13046.00	=""	="CLEANAWAY"	14-Dec-07 08:35 AM	

+="CN51264"	"Disposable Columns  N/A"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Laboratory supplies and fixtures"	30-Nov-07	30-Jun-08	21700.00	=""	="FLUID MANAGEMENT SYSTEMS INC"	14-Dec-07 08:35 AM	

+="CN51265"	"JLLasalle Facilities Management Fees for Feb 2007, 200005160"	="Department of Industry, Tourism and Resources"	14-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	19707.60	=""	="JONES LANG LASALLE (ACT) PTY LTD"	14-Dec-07 08:35 AM	

+="CN51266"	" Executive Search for NPM "	="Australian Taxation Office"	14-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	15-Dec-07	48000.00	=""	="Paper Shuffle t/a Hansen and Searson Executive Serarch"	14-Dec-07 08:59 AM	

+="CN51267"	"Sighting Equipment Spares"	="Defence Materiel Organisation"	14-Dec-07	="Surveillance and detection equipment"	14-Dec-07	21-May-08	21546.91	=""	="Hall & Watts Pty Ltd"	14-Dec-07 09:41 AM	

+="CN51268"	"Reticle Cell Assembly"	="Defence Materiel Organisation"	14-Dec-07	="Surveillance and detection equipment"	14-Dec-07	21-May-08	38724.40	=""	="Hall & Watts Pty Ltd"	14-Dec-07 09:46 AM	

+="CN51270"	"Executive search Second Commissioner of Taxation"	="Australian Taxation Office"	14-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	01-Feb-08	94743.00	="06.042"	="Watermark Search International"	14-Dec-07 10:21 AM	

+="CN51273"	"REPAIR AND OVERHAUL OF BLACK HAWK HOIST."	="Defence Materiel Organisation"	14-Dec-07	="Military rotary wing aircraft"	10-Dec-07	31-Dec-07	16011.46	=""	="SAAL"	14-Dec-07 10:41 AM	

+="CN51276"	"REPAIR AND OVERHAUL OF BLACK HAWK HOIST."	="Defence Materiel Organisation"	14-Dec-07	="Military rotary wing aircraft"	10-Dec-07	31-Dec-07	63117.18	=""	="SAAL"	14-Dec-07 10:44 AM	

+="CN51277"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	10076.72	=""	="F.B. AUTO REPAIRS"	14-Dec-07 10:55 AM	

+="CN51278-A1"	"Lease at Orange, NSW"	="Department of Human Services"	14-Dec-07	="Real estate services"	01-May-08	31-Oct-11	3009130.00	=""	="The Petrinovic Family Pty Ltd"	14-Dec-07 10:55 AM	

+="CN43545-A1"	"Lease at Chatswood, NSW"	="Department of Human Services"	14-Dec-07	="Real estate services"	01-Dec-07	30-Nov-17	7615252.00	=""	="Highlong Pty Ltd"	14-Dec-07 10:58 AM	

+="CN51279"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	12100.00	=""	="MACK VOLVO TOWNSVILLE"	14-Dec-07 10:59 AM	

+="CN51281"	"Workstation set up and assesment training for Centrelink Staff"	="Centrelink"	14-Dec-07	="Management advisory services"	31-Oct-07	31-Dec-07	77000.00	=""	="CRS Australia"	14-Dec-07 11:16 AM	

+="CN51283-A1"	"Recruitment Services"	="Australian Taxation Office"	14-Dec-07	="Recruitment services"	10-Dec-07	30-Jun-08	434462.00	=""	="Chandler MacLeod Limited"	14-Dec-07 11:50 AM	

+="CN51284"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	08-Nov-07	21-Dec-07	10577.70	=""	="VOLVO COMMERCIAL VEHICLES"	14-Dec-07 11:57 AM	

+="CN51285"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	14-Dec-07	31-Jan-08	17050.00	=""	="VOLVO COMMERCIAL VEHICLES"	14-Dec-07 12:02 PM	

+="CN51286"	"Printing of NAT2031-7.2004 Payment Slip. Qty: 3,000,000"	="Australian Taxation Office"	14-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Dec-07	31-Mar-08	69406.00	="06.030"	="Ducor Group Pty Ltd t/a Norcross"	14-Dec-07 12:04 PM	

+="CN51287"	"Printing of NAT2024-11.2007.  Qty: 373,000"	="Australian Taxation Office"	14-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Jan-08	31-Jan-08	51114.80	="06.030"	="PMP Digital"	14-Dec-07 12:16 PM	

+="CN51288"	" Security Services "	="Australian Electoral Commission"	14-Dec-07	="Security guard services"	21-Nov-07	21-Dec-07	13904.00	=""	="AV-SEC Security Services"	14-Dec-07 12:23 PM	

+="CN51289"	" VEHICLE REPAIRS "	="Department of Defence"	14-Dec-07	="Motor vehicles"	30-Aug-07	29-Sep-07	15680.50	=""	="MICKS AUTOS"	14-Dec-07 12:35 PM	

+="CN51291-A1"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	28-Jun-07	28-Jul-07	35034.12	=""	="F.B. AUTO REPAIRS"	14-Dec-07 01:05 PM	

+="CN51292"	"vehicle repairs"	="Department of Defence"	14-Dec-07	="Motor vehicles"	07-Sep-07	05-Nov-07	32800.91	=""	="MC IMPORTS T/As MICK'S AUTOMOTIVE & MC PANEL BEATING"	14-Dec-07 01:08 PM	

+="CN51293"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	24-Jul-07	23-Aug-07	13889.64	=""	="RGM"	14-Dec-07 01:10 PM	

+="CN51294"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	07-Sep-07	07-Oct-07	28791.60	=""	="RGM"	14-Dec-07 01:14 PM	

+="CN51295"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	09-Aug-07	08-Sep-07	44486.20	=""	="MICKS AUTO"	14-Dec-07 01:19 PM	

+="CN51296"	"Telecommunications Services"	="Australian Electoral Commission"	14-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Mar-98	30-Jun-08	4095425.40	=""	="Optus Communications"	14-Dec-07 01:21 PM	

+="CN51297"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	30-Aug-07	29-Sep-07	102562.00	=""	="MACK AUSTRAILIA"	14-Dec-07 01:25 PM	

+="CN51298"	"Employee Assistance Program"	="Australian Electoral Commission"	14-Dec-07	="Employee assistance programs"	01-Feb-08	31-Jan-10	20790.00	=""	="IPS Worldwide"	14-Dec-07 01:27 PM	

+="CN51299"	"VEHICLE REPAIRS"	="Department of Defence"	14-Dec-07	="Motor vehicles"	09-Nov-07	09-Dec-07	31645.32	=""	="SCRATCH IT I FIX IT"	14-Dec-07 01:29 PM	

+="CN51300-A1"	"Temporary Personnel"	="Australian Electoral Commission"	14-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	19200.00	="AEC06/019"	="CCS Technology Recruiters"	14-Dec-07 01:36 PM	

+="CN51301"	"Delivery and Collection of Election Material"	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	22-Nov-07	22-Dec-07	12474.00	=""	="Corporate Trade Services"	14-Dec-07 01:43 PM	

+="CN51302"	"Connector, Receptor, Electrical & Connector, Plug, Electrical"	="Defence Materiel Organisation"	14-Dec-07	="Electrical components"	19-Nov-07	10-Mar-08	53632.32	=""	="Amphenol Australia Ltd"	14-Dec-07 01:56 PM	

+="CN51303"	"Business Advisory Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	34850.00	="n/a"	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	14-Dec-07 01:57 PM	

+="CN51304-A1"	"Training & Education Costs"	="Department of Finance and Administration"	14-Dec-07	="Education and Training Services"	08-Jun-07	27-Aug-07	14096.10	="RMS07/05177-02"	="CLIFTONS"	14-Dec-07 01:57 PM	

+="CN51305"	"Repairs & Maintenance - Building"	="Department of Finance and Administration"	14-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	10-Dec-07	20-Dec-07	29711.74	="N/A"	="ELECTRICAL TESTING SERVICES PTY LTD"	14-Dec-07 01:57 PM	

+="CN51306-A1"	"Recruitment Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	03-Sep-07	15-Oct-07	24561.90	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Dec-07 01:57 PM	

+="CN51307"	"Contractor Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	02-Jun-08	45000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	14-Dec-07 01:57 PM	

+="CN51308"	"Travel - Transportation Costs"	="Department of Finance and Administration"	14-Dec-07	="Travel and Food and Lodging and Entertainment Services"	11-Dec-07	31-Dec-07	10464.68	="N/A"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	14-Dec-07 01:57 PM	

+="CN51309"	"Training & Education Costs"	="Department of Finance and Administration"	14-Dec-07	="Education and Training Services"	12-Dec-07	31-Jan-08	29788.17	="n/a"	="PORTER NOVELLI AUSTRALIA PTY LTD"	14-Dec-07 01:57 PM	

+="CN51310"	"Recruitment Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	11-Jan-08	11000.00	="n/a"	="AFFINITY IT RECRUITMENT PTY LTD"	14-Dec-07 01:57 PM	

+="CN51311"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	14-Dec-07	="Building and Construction and Maintenance Services"	10-Dec-07	31-Aug-08	2491863.00	="N/A"	="BAULDERSTONE HORNIBROOK PTY LTD"	14-Dec-07 01:58 PM	

+="CN51312"	"IT System Development Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	79000.00	="000000"	="OAKTON AA SERVICES PTY LTD"	14-Dec-07 01:58 PM	

+="CN51313"	"Legal Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	06-Dec-07	30-Jun-08	70000.00	="LSB01/2005"	="CLAYTON UTZ - 404925"	14-Dec-07 01:58 PM	

+="CN51314"	"Business Advisory Services"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Mar-08	80000.00	="0000000"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	14-Dec-07 01:58 PM	

+="CN51315"	"Project Manager and Superintendency"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Jan-08	50000.00	="n/a"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	14-Dec-07 01:58 PM	

+="CN51316"	"Insurance Advice & Management Costs"	="Department of Finance and Administration"	14-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Apr-09	105000.00	="Fin05/AMG019"	="PRICEWATERHOUSECOOPERS- 833468126"	14-Dec-07 01:58 PM	

+="CN51317-A1"	" Production of Enrolment Print Products  Production of Voter Advices "	="Australian Electoral Commission"	14-Dec-07	="Industrial printing services"	29-Aug-07	28-Aug-10	2642431.68	="AEC06/077"	="QM Technologies"	14-Dec-07 02:00 PM	

+="CN51321"	" Delivery and Collection of Election Material "	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	01-Aug-07	01-Dec-07	14480.00	=""	="Cleave Removals Bendigo"	14-Dec-07 02:11 PM	

+="CN51322-A1"	"Computing Service Provider"	="Australian Electoral Commission"	14-Dec-07	="Computer services"	31-Mar-98	30-Jun-08	1865118.01	=""	="Computer Sciences Corporation"	14-Dec-07 02:21 PM	

+="CN51323"	"Property Expenditure for November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	26-Nov-07	26-Nov-07	243145.72	=""	="UNITED GROUP SERVICES PTY LTD"	14-Dec-07 02:29 PM	

+="CN51325"	"Print Advertising Supplement"	="Australian Electoral Commission"	14-Dec-07	="Print advertising"	28-Nov-07	28-Dec-07	522860.36	=""	="HMA Blaze"	14-Dec-07 02:38 PM	

+="CN51328"	"Delivery and Collection of Election Material"	="Australian Electoral Commission"	14-Dec-07	="Freight loading or unloading"	22-Nov-07	22-Dec-07	16112.36	=""	="Grafton Taxi Trucks"	14-Dec-07 02:50 PM	

+="CN51327"	" New workststions Level 10 Sydney CLC "	="Family Court of Australia"	14-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Dec-07	30-Jan-08	10964.80	=""	="Iken Commercial Interiors (NSW) Pty Ltd"	14-Dec-07 02:51 PM	

+="CN51329"	"Libary Management System Software Maintenance"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Computer services"	01-Nov-07	31-Oct-08	12627.52	=""	="SirsiDynix Pty Ltd"	14-Dec-07 03:00 PM	

+="CN51330-A1"	"Provison of General Accountancy Services by whilst in process of filling EL1 position."	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	07-Nov-07	31-Mar-08	55000.00	="DAFF 18/05"	="Ascent"	14-Dec-07 03:00 PM	

+="CN51331"	"TEMPORARY SERVICES - STAFF"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	14-Dec-07	14-Mar-08	22000.00	=""	="CAREERS UNLIMITED"	14-Dec-07 03:00 PM	

+="CN51332-A1"	"Strategic review of the provision of software services to the Australian Quarantine and Inspection Service (AQIS)"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Management advisory services"	14-Jan-08	31-Mar-08	109542.11	=""	="Fujitsu Australia Limited"	14-Dec-07 03:00 PM	

+="CN51333"	"Sydney International Airport contract staff - baggage handlers"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	04-Nov-07	10-Nov-07	49631.37	=""	="WORKFORCE INTERNATIONAL"	14-Dec-07 03:00 PM	

+="CN51334"	"Journal subscriptions - Library"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Printed media"	01-Nov-07	31-Dec-08	67500.00	=""	="Ebsco Australia"	14-Dec-07 03:00 PM	

+="CN51335"	"Contracted employment"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	17-Dec-07	08-Feb-08	13403.40	=""	="Adecco Australia Pty Ltd"	14-Dec-07 03:00 PM	

+="CN51336"	"Legal consultancy report investigating legislation requiring the: (i) disclosure of information on species, country of origin and any certification of forest products at their point of sale; (ii) Identification of illegally logged timber and restriction of its importation into Australia."	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Management advisory services"	05-Dec-07	21-Dec-07	16500.00	=""	="Australian National University"	14-Dec-07 03:00 PM	

+="CN51337"	"Contractor Services"	="Department of Agriculture Fisheries and Forestry"	14-Dec-07	="Human resources services"	30-Nov-07	29-Feb-08	12000.00	=""	="Zenith Management Services Pty Ltd"	14-Dec-07 03:00 PM	

+="CN51324"	"Perth Fitout Costs"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	01-Sep-07	31-Oct-07	120996.37	=""	="UNITED GROUP SERVICES PTY LTD"	14-Dec-07 03:17 PM	

+="CN51338"	"MOU Charges"	="Office of the Australian Building and Construction Commissioner (ABCC)"	14-Dec-07	="Business administration services"	01-Nov-07	30-Nov-07	65408.29	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	14-Dec-07 03:31 PM	

+="CN51339-A1"	"EAP consultancy services."	="Australian Securities and Investments Commission"	14-Dec-07	="Employee assistance programs"	04-Dec-07	14-Dec-09	120000.00	=""	="International Psychological Services"	14-Dec-07 03:32 PM	

+="CN51340"	"SHIRT, MAN'S, BLUE WHITE, SHORT SLEEVE, LONG SLEEVE"	="Defence Materiel Organisation"	14-Dec-07	="Military uniforms"	23-Nov-07	09-Apr-08	150820.67	=""	="AUSTRALIAN DEFENCE APPAREL"	14-Dec-07 03:35 PM	

+="CN51342-A2"	"Provision of statistical services to the AFP"	="Australian Federal Police"	14-Dec-07	="Statistics"	03-Dec-07	30-Jun-11	180000.00	="RFT 29-2006"	="University of Qld Social Research Centre"	14-Dec-07 04:03 PM	

+="CN51341"	"SWEATER, VARIOUS"	="Defence Materiel Organisation"	14-Dec-07	="Military uniforms"	25-Jul-07	28-Feb-08	557801.00	=""	="ELEGANT KNITTING CO"	14-Dec-07 04:06 PM	

+="CN51345"	"SEALING COMPOUND"	="Defence Materiel Organisation"	14-Dec-07	="Adhesives and sealants"	14-Dec-07	08-Jan-08	13093.98	=""	="PPG INDUSTRIES AUSTRALIA P/L"	14-Dec-07 05:04 PM	

 ="CN51346"	"Case managers Worshops 2008"	="National Native Title Tribunal"	14-Dec-07	="Conference or non modular room packages"	13-May-08	16-May-08	65000.00	=""	="Stamford Grand Adelaide"	14-Dec-07 05:47 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val0to12000.xls
@@ -1,1 +1,533 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN77999"	"SURFACE WAVE ABSORBERS, STRUCTURAL ABSORBERS, SING LE BAND ABSORBERS"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	17-Dec-07	01-Feb-08	10152.00	=""	="R & F PRODUCTS INC."	12-May-08 09:30 AM	

+="CN78000"	"PROVISION OF ENGINEERING TECHNICAL EXPERTISE"	="Department of Defence"	12-May-08	="Paper Materials and Products"	17-Dec-07	30-Jun-08	11000.00	=""	="RUDDS CONSULTING ENGINEERS"	12-May-08 09:30 AM	

+="CN78014"	"Lenses"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	14-Dec-07	01-Feb-08	10890.00	=""	="LASTEK PTY LTD"	12-May-08 09:33 AM	

+="CN78023"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	14-Dec-07	10538.00	=""	="THE AV GROUP"	12-May-08 09:35 AM	

+="CN78025"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	14-Dec-07	11000.00	=""	="SECRETARIAT AUSTRALIA PTY LTD"	12-May-08 09:35 AM	

+="CN78029"	"CAMPING EQUIPMENT"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	14-Dec-07	14-Dec-07	11600.00	=""	="NAMBOUR DISPOSALS AND CAMPING LTD"	12-May-08 09:36 AM	

+="CN78052"	"POC: Heather Stevens Quotation: QC0756 Job2"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Dec-07	31-Jan-08	11357.50	=""	="RIVERCORP PTY TLD"	12-May-08 09:40 AM	

+="CN78060"	"Laptop computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	07-Jan-08	11344.30	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 09:42 AM	

+="CN78069"	"CHAIR HIRE"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	19-Dec-07	19-Dec-07	11735.00	=""	="KENNARDS EVENTS PTY LTD"	12-May-08 09:44 AM	

+="CN78080"	"Australian Marine Park Mapping Variation"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	30-Jun-08	10780.00	=""	="URS AUSTRALIA PTY LTD"	12-May-08 09:47 AM	

+="CN78085"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Oct-08	12000.00	=""	="YELLOW EDGE PTY LTD"	12-May-08 09:48 AM	

+="CN78089"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	12-May-08 09:49 AM	

+="CN78093"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	10487.40	=""	="ACTIVE VOICE LLC"	12-May-08 09:50 AM	

+="CN78098"	"Software upgrade kit"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Dec-07	10285.00	=""	="MCR COMPUTER RESOURCES PTY LTD"	12-May-08 09:51 AM	

+="CN78101"	"Laser cladding of 7075 Al using Al-12% Si powder, pure aluminium powder and a mixture"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	19-Dec-07	31-Mar-08	11000.00	=""	="SWINBURNE UNIVERSITY OF"	12-May-08 09:51 AM	

+="CN78115"	"JACK PRODUCT UPGRADE & MAINTENANCE PROGRAM (PUMP) RENEWAL FOR 3YRS FOR LICENSE DSTO-MPD1-050124A"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	18-Dec-07	24-Dec-07	10923.00	=""	="AGENT ORIENTED SOFTWARE PTY LTD"	12-May-08 09:53 AM	

+="CN78129"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	11077.00	=""	="TENIX DATAGATE PTY LTD"	12-May-08 09:56 AM	

+="CN78148"	"146GB 10K RPM 2.5" SAS disk drive with b racket"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	30-Dec-07	11430.14	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 10:00 AM	

+="CN78160"	"Advertising costs"	="Department of Defence"	12-May-08	="Office supplies"	18-Dec-07	31-Dec-07	11000.00	=""	="HMA BLAZE PTY LTD"	12-May-08 10:01 AM	

+="CN78225"	"RESEARCH AGREEMENT PLATE -WAVE DIFFRACTION TOMOGRA PHY"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	12-Dec-07	31-Mar-08	11000.00	=""	="UNIVERSITY OF QUEENSLAND,"	12-May-08 01:07 PM	

+="CN78227"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	11354.98	=""	="COMMANDER (ACT)"	12-May-08 01:07 PM	

+="CN78228"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	13-Dec-07	10780.00	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 01:07 PM	

+="CN78238"	"Hose & Discs"	="Department of Defence"	12-May-08	="Hardware"	13-Dec-07	10-Feb-08	11425.15	=""	="J BLACKWOOD & SON LTD"	12-May-08 01:09 PM	

+="CN78248"	"ONGOING SUPPORT-AIRFIELD LIGHTING MAINTENANCE-RAAF"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	11660.00	=""	="DOYLE PLANT HIRE PTY LTD"	12-May-08 01:10 PM	

+="CN78252"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	31-May-08	11000.00	=""	="LATROBE UNIVERSITY"	12-May-08 01:10 PM	

+="CN78262"	"Support of NAV07/119 for the corrosion fatigue and"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	13-Dec-07	30-Jun-08	11000.00	=""	="BOEING AEROSPACE SUPPORT"	12-May-08 01:11 PM	

+="CN78285"	"URN-IRR-Q80314    ACMS-14444971  RHQ/LST 0043/08 1 X SCANNER COLOUR A3 & ADDITIONAL 2 WARRANTY"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	05-Dec-07	05-Dec-07	10740.00	=""	="AVOW PTY LTD"	12-May-08 01:15 PM	

+="CN78289"	"Key watcher"	="Department of Defence"	12-May-08	="Storage"	05-Dec-07	14-Dec-07	10384.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 01:15 PM	

+="CN78292"	"FREIGHT CHARGES FROM DSTO MARIBYRNONG TO DSTO STIR LING, ROCKINGHAM, W.A."	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	05-Dec-07	10-Dec-07	11722.01	=""	="KENT TRANSPORT INDUSTRIES PTY LTD"	12-May-08 01:16 PM	

+="CN78295"	"SPONSORSHIP"	="Department of Defence"	12-May-08	="Work related organisations"	05-Dec-07	30-Jun-08	11000.00	=""	="UNIVERSITY OF MELBOURNE"	12-May-08 01:16 PM	

+="CN78296"	"POC: ANDREW HULLICK CONTACT: 08 8935 4087"	="Department of Defence"	12-May-08	="Hydraulic machinery and equipment"	06-Dec-07	28-Jan-08	10816.87	=""	="ROCKWELL COLLINS"	12-May-08 01:16 PM	

+="CN78297"	"AS PER YOUR QUOTE Q5P9OA0JUTRT DATED 30 NOV 07"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	06-Dec-07	30-Jan-08	10032.97	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 01:17 PM	

+="CN78298"	"ICT Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	24-Dec-07	11960.06	=""	="ASI SOLUTIONS"	12-May-08 01:17 PM	

+="CN78303"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	07-Jan-08	10230.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 01:18 PM	

+="CN78318"	"Print/copies of DSTO Annual Review"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	05-Dec-07	14-Dec-07	11731.50	=""	="GRAPHIC PRINT GROUP"	12-May-08 01:20 PM	

+="CN78320"	"SRA"	="Department of Defence"	12-May-08	="Seasonings and preservatives"	04-Dec-07	30-Jun-08	11100.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	12-May-08 01:20 PM	

+="CN78328"	"Tape Library, Rack mount"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Dec-07	30-Dec-07	10587.01	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 01:21 PM	

+="CN78333"	"BREAD"	="Department of Defence"	12-May-08	="Bread and bakery products"	04-Dec-07	30-Jun-08	11100.00	=""	="TIP TOP BAKERIES"	12-May-08 01:22 PM	

+="CN78334"	"Hydro Static inspection"	="Department of Defence"	12-May-08	="Minerals and ores and metals"	04-Dec-07	30-Dec-07	11572.00	=""	="ADELAIDE INSPECTION SERVICES PTY"	12-May-08 01:22 PM	

+="CN78346"	"ANNUAL CAMP REIMBURSEMENT COSTS"	="Department of Defence"	12-May-08	="Medical training and education supplies"	04-Dec-07	04-Dec-07	10738.75	=""	="SYDNEY GRAMMAR SCHOOL"	12-May-08 01:24 PM	

+="CN78348"	"supply of groceries oakey"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	05-Dec-07	30-Jun-08	10450.00	=""	="SPOTLESS SERVICES LTD"	12-May-08 01:25 PM	

+="CN78355"	"supply of fresh poultry brisbane"	="Department of Defence"	12-May-08	="Meat and poultry"	05-Dec-07	30-Jun-08	10450.00	=""	="A B D POULTRY"	12-May-08 01:26 PM	

+="CN78360"	"MILK"	="Department of Defence"	12-May-08	="Milk and butter products"	04-Dec-07	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	12-May-08 01:27 PM	

+="CN78402"	"TAXI COSTS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Dec-07	30-Jun-08	11719.00	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 01:33 PM	

+="CN78431"	"Sun Licensing"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Dec-07	14-Dec-07	10897.46	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 01:39 PM	

+="CN78458"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	10000.00	=""	="PROFESSOR WILLIAM T TOW"	12-May-08 01:43 PM	

+="CN78463"	"INTEGRATING SPATIAL DATA TRAINING"	="Department of Defence"	12-May-08	="Vocational training"	06-Dec-07	14-Dec-07	11000.00	=""	="ILLAWARRA INSTITUTE OF TECHNOLOGY"	12-May-08 01:44 PM	

+="CN78465"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	11000.00	=""	="MR ROBERT LAURIE"	12-May-08 01:44 PM	

+="CN78476"	"RPL assessment for ICT staff"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	14-Dec-07	11000.00	=""	="BLENDED LEARNING INTERNATIONAL"	12-May-08 01:46 PM	

+="CN78482"	"AMBERLEY DSN PORT"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	06-Dec-07	30-Jun-08	11726.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:47 PM	

+="CN78484"	"ALBION REMEDIATION. BIOSIS RESEARCH - ALBION."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	11000.00	=""	="BIOSIS RESEARCH PTY LTD"	12-May-08 01:47 PM	

+="CN78503"	"20FT GENERAL PURPOSE SHIPPING CONTAINERS NEW BUILD, WHIRLY BIRD, 2 X VENTS"	="Department of Defence"	12-May-08	="Containers and storage"	20-Dec-07	04-Jan-08	11599.50	=""	="ROYAL WOLF TRADING AUSTRALIA"	12-May-08 01:49 PM	

+="CN78506"	"IRON SILICIDE TYPE III POWER"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Dec-07	24-Jan-08	10738.93	=""	="STEWARD ADVANCED MATERIALS INC."	12-May-08 01:49 PM	

+="CN78514"	"ELECTRICAL INSTALLATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	18-Jan-08	11759.32	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 01:51 PM	

+="CN78570"	"HOTEL FACILITIES"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	20-Dec-07	20-Dec-07	11506.20	=""	="CROWNE PLAZA CANBERRA"	12-May-08 02:02 PM	

+="CN78559"	"A23 AIRCRAFT - REPAIRS TO CONTROL, GYROSCOPE, ATTITUDE-HEADING"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	12-May-08	16-May-08	11842.90	=""	="AIRFLITE PTY LTD"	12-May-08 02:03 PM	

+="CN78596"	"Professional services"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Dec-07	31-Dec-07	11550.00	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	12-May-08 02:06 PM	

+="CN78597"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	10230.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78592"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	11042.35	=""	="VOLVO COMMERCIAL VEHICLES"	12-May-08 02:06 PM	

+="CN78601"	"BROADLEAF AND NINE MILE PADDOCK."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	11000.00	=""	="UNITED GROUP SERVICES"	12-May-08 02:07 PM	

+="CN78627"	"GST for Phone Services"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-Oct-06	30-Jun-08	10901.23	=""	="TELSTRA"	12-May-08 02:11 PM	

+="CN78629"	"Maintenance to building"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	10-Apr-08	28-May-08	11759.00	=""	="M & P BUILDERS PTY LTD"	12-May-08 02:11 PM	

+="CN78639"	"Facilitator and material fee for training Practisi 3x2 dau courses in SA, 1x2 day course in VIC"	="Department of Defence"	12-May-08	="Raw materials processing machinery"	22-Nov-07	30-Nov-07	11434.78	=""	="PAM PRYOR & ASSOCIATES"	12-May-08 02:12 PM	

+="CN78645"	"CONTAINER HIRE FLLA AFG"	="Department of Defence"	12-May-08	="Containers and storage"	17-Oct-07	18-Dec-07	11522.37	=""	="ES-KO/PAE JOINT VENTURE"	12-May-08 02:12 PM	

+="CN78646"	"TSI 3065 - EU THERMODENUDER"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	03-Jan-08	29-Jan-08	11357.50	=""	="KENELEC SCIENTIFIC PTY LTD"	12-May-08 02:12 PM	

+="CN78655"	"Computer Equip"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	14-Apr-08	10698.14	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 02:13 PM	

+="CN78656"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	11433.48	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:13 PM	

+="CN78660"	"SPEED & TEMPERATURE SENSOR SYSTEM"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	03-Jan-08	27-Feb-08	10786.77	=""	="ROLLING HILLS RESEARCH CORP"	12-May-08 02:14 PM	

+="CN78664"	"CONSULTANT REQUIRED TO PROVIDE TRAINING TO SWITCH- BOARD SUPERVISORS IN THE USE OF AVAYA CMS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	10-Apr-08	06-Jun-08	11200.04	=""	="AVAYA AUSTRALIA PTY LTD"	12-May-08 02:14 PM	

+="CN78669"	"COURSE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jan-08	29-Feb-08	10710.00	=""	="EXCOM EDUCATION PTY LTD"	12-May-08 02:14 PM	

+="CN78721"	"abseil gloves"	="Department of Defence"	12-May-08	="Fall protection and rescue equipment"	14-Apr-08	30-Jun-08	11095.70	=""	="PAULL & WARNER BODYBUILDERS"	12-May-08 02:18 PM	

+="CN78723"	"DISIP Stage 1 Site Integration Services for 2 ACT/"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	28-Feb-08	10743.26	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:18 PM	

+="CN78727"	"Vehicle hire Project fees"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Apr-08	26-Jun-08	10936.09	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 02:19 PM	

+="CN78775"	"Printing"	="Department of Defence"	12-May-08	="Office supplies"	14-Apr-08	28-Apr-08	10596.85	=""	="LOVEDESIGN GROUP"	12-May-08 02:21 PM	

+="CN78780"	"LEGAL ASSISTANCE AT COMMONWEALTH EXPENSE"	="Department of Defence"	12-May-08	="Legal services"	22-Nov-07	10-Dec-07	10869.87	=""	="PHILLIPS FOX SYDNEY"	12-May-08 02:21 PM	

+="CN78791"	"Weibull++ Single User License x 2, BlockSim 7 Sing le User License x 2"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	21-Dec-07	07-Jan-08	10533.83	=""	="WORLD CLASS QUALITY PYT LTD"	12-May-08 02:22 PM	

+="CN78792"	"FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	03-Dec-07	03-Dec-07	11695.26	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:22 PM	

+="CN78806"	"TRIANING"	="Department of Defence"	12-May-08	="Education and Training Services"	21-Dec-07	21-Dec-07	11473.00	=""	="OUTWARD BOUND AUSTRALIA"	12-May-08 02:23 PM	

+="CN78812"	"HP xw Workstations, Mouses, Joysticks, LCD Monitor"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	21-Dec-07	21-Dec-07	11645.70	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 02:23 PM	

+="CN78813"	"CABCHARGE LTD"	="Department of Defence"	12-May-08	="Spaceships"	10-Dec-07	10-Dec-07	11466.15	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:23 PM	

+="CN78822"	"training"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	14-Nov-07	12-Dec-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	12-May-08 02:24 PM	

+="CN78826"	"Office Furniture"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	14-Apr-08	30-May-08	11319.00	=""	="SCHIAVELLO ACT PTY LTD"	12-May-08 02:24 PM	

+="CN78843"	"Freight - Safe hand -75SQN"	="Department of Defence"	12-May-08	="Transportation services equipment"	14-Nov-07	05-Dec-07	11783.93	=""	="STAR TRACK EXPRESS PTY LTD"	12-May-08 02:25 PM	

+="CN78872"	"CAB CHARGE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	15-Oct-07	31-Dec-07	11646.87	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:28 PM	

+="CN78875"	"CAB CHARGE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	17-Sep-07	31-Dec-07	11312.74	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:28 PM	

+="CN78887"	"DELL PRECISION 490 WORKSTATION x QTY 2"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	14-Jan-08	10634.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78913"	"CONSULTANT TO SUPPORT NEGOTIATIONS & ASSIST IN PRE PARATION OF DOCUMENTS"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	11018.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:30 PM	

+="CN78918"	"FEB REEFER CONT LEASE - FLLA B"	="Department of Defence"	12-May-08	="Industrial refrigeration"	01-Mar-08	12-Apr-08	11933.87	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:31 PM	

+="CN78920"	"DEMAND NO.NMEM-7DDF5P"	="Department of Defence"	12-May-08	="Hardware"	11-Apr-08	30-Jun-08	10409.41	=""	="J BLACKWOOD & SON LTD"	12-May-08 02:31 PM	

+="CN78921"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	09-Apr-08	11529.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:31 PM	

+="CN78924"	"ARTC FEBRUARY 2008 CABCHARGE STATEMENT"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Mar-08	09-Apr-08	11425.92	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:31 PM	

+="CN78936"	"PROCUREMENT OF TRAINING SERVICES"	="Department of Defence"	12-May-08	="Classroom decoratives and supplies"	19-Dec-07	21-Feb-08	11550.00	=""	="CHISHOLM INSTITUTE OF TAFE"	12-May-08 02:32 PM	

+="CN78941"	"Training"	="Department of Defence"	12-May-08	="Medical training and education supplies"	17-Dec-07	20-Jan-08	11000.00	=""	="ALTIUM LIMITED"	12-May-08 02:33 PM	

+="CN78955"	"Helicopter Hire - TS09"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	11-Apr-08	30-Jun-08	10253.10	=""	="JAYROW HELICOPTERS PTY LTD"	12-May-08 02:34 PM	

+="CN78957"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	10-Apr-08	01-Jun-08	11810.18	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:34 PM	

+="CN78970"	"ENCRYPTION DEVICE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	09-Oct-08	11578.90	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 02:34 PM	

+="CN78973"	"FURNITURE FOR SME CONSTRUCTION WING TRAINING TABLE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	11-Apr-08	18-Apr-08	11352.00	=""	="INTERWORX PTY LTD"	12-May-08 02:35 PM	

+="CN78979"	"LEASE OF FORKLIFT"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	18-Apr-08	01-Jun-08	10549.84	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:35 PM	

+="CN78984"	"ENCRYPTION DEVICE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	09-Oct-08	11578.90	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 02:36 PM	

+="CN78993"	"ENCRYPTION DEVICE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	09-Oct-08	11578.90	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 02:36 PM	

+="CN78995"	"CL604 SIMULATOR LEASE AND TRAINING"	="Department of Defence"	12-May-08	="Aircraft"	22-Apr-08	22-Apr-08	11700.73	=""	="BOMBARDIER INC"	12-May-08 02:37 PM	

+="CN79005"	"ANGUS TRIDOL-S 6% AQUEOUS FILM FORMING CONCENTRATE"	="Department of Defence"	12-May-08	="Chemicals including Bio Chemicals and Gas Materials"	17-Dec-07	07-Jan-08	10494.00	=""	="CHUBB FIRE SAFETY LTD"	12-May-08 02:37 PM	

+="CN79010"	"supply & install optic fibre"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	31-Mar-08	30-Apr-08	11154.00	=""	="BRUCE HICK ELECTRICAL DATA"	12-May-08 02:38 PM	

+="CN79011"	"CMS AUDITING AND WORKSHOPS COSTS"	="Department of Defence"	12-May-08	="Project management"	17-Dec-07	30-Jun-08	11000.00	=""	="SPOTLESS DEFENCE SERVICES"	12-May-08 02:38 PM	

+="CN79015"	"psych services"	="Department of Defence"	12-May-08	="Healthcare Services"	03-Mar-08	30-Apr-08	11880.00	=""	="FLEMING FORENSIC & CLINICAL"	12-May-08 02:38 PM	

+="CN79025"	"REF-JMAL-7D9KKD OP CATALYST 39"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	07-Apr-08	07-Apr-08	11357.30	=""	="J BLACKWOOD & SON LTD"	12-May-08 02:39 PM	

+="CN79026"	"damalsh spare parts"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	17-Dec-07	01-Feb-08	10885.11	=""	="VELDEMAN AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79038"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	31-Mar-08	11572.00	=""	="CLAYTON UTZ"	12-May-08 02:40 PM	

+="CN79055"	"Computers/server and accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	23-Apr-08	10368.60	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:41 PM	

+="CN79067"	"INMARSAT Call  Charges  HMAS Shepparton"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	04-Apr-08	30-Jun-08	11863.75	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 02:42 PM	

+="CN79069"	"purchase of shredders"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	11550.00	=""	="GBC AUSTRALIA PTY LTD"	12-May-08 02:42 PM	

+="CN79086"	"PROBITY ADVICE SUPPLIED TO DSTO FOR TENDER EVALUAT ION PROCESS IN THE STUDY INTO FEASIBILITY OF AMMC"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Apr-08	07-Apr-08	11000.00	=""	="SPARKE HELMORE LAWYERS"	12-May-08 02:44 PM	

+="CN79087"	"Port services fees -  fender hire Townsville Ex Sea Lion"	="Department of Defence"	12-May-08	="Transportation services equipment"	25-Mar-08	31-Mar-08	10670.00	=""	="PACIFIC MARINE GROUP PTY LTD"	12-May-08 02:44 PM	

+="CN79104"	"SN01677 - Eden - Fire Management"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	10744.80	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:46 PM	

+="CN79108"	"Counselling services"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-Apr-08	10065.00	=""	="LAVERS PSYCHOLOGY & CONSULTING SERV"	12-May-08 02:46 PM	

+="CN79128"	"HIRE FACILITIES"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Nov-07	14-Nov-07	10900.00	=""	="NATIONAL RD TRANSPORT HALL OF FAME"	12-May-08 02:48 PM	

+="CN79135-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	12-Feb-08	11820.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:48 PM	

+="CN79136"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	11479.74	=""	="KHSB MARKETING SDN BHD"	12-May-08 02:48 PM	

+="CN79138-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	12-Feb-08	11820.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:49 PM	

+="CN79151"	"Occupational noise survey"	="Department of Defence"	12-May-08	="Personal safety and protection"	01-Feb-08	30-Jun-08	11220.99	=""	="COAST TO COAST SAFETY SOLUTIONS"	12-May-08 02:50 PM	

+="CN79160"	"A4 Flatbed Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	11640.20	=""	="ASI SOLUTIONS"	12-May-08 02:51 PM	

+="CN79169"	"MAR 08 REEFER CONTAINER LEASE - FLLA B"	="Department of Defence"	12-May-08	="Industrial refrigeration"	31-Mar-08	05-May-08	11823.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:51 PM	

+="CN79171"	"APR 08 REEFER CONTAINER LEASE - SECDET"	="Department of Defence"	12-May-08	="Industrial refrigeration"	30-Apr-08	05-May-08	11823.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:52 PM	

+="CN79184"	"WASTE CHARGES EX WALLABY 2007"	="Department of Defence"	12-May-08	="Scrap and waste materials"	01-Dec-07	30-Dec-07	10989.89	=""	="WANLESS WASTECORP"	12-May-08 02:53 PM	

+="CN79192"	"APR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	30-Apr-08	03-May-08	10195.31	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79222"	"KOBRA SHREDDERS AUSTRALIA"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	04-Apr-08	30-Apr-08	10252.00	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	12-May-08 02:57 PM	

+="CN79217"	" PURCHASE OF HOIST HOOKS FOR CH-47D AIRCRAFT "	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	12-May-08	30-Jun-08	11048.70	=""	="AERO PRODUCTS"	12-May-08 02:57 PM	

+="CN79250"	"Professional Service Provider required for negotiations ref Project Air 5395"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	10989.37	=""	="MCPHERSON PROFESSIONAL SERVICES"	12-May-08 03:00 PM	

+="CN79275"	"SOFTWARE"	="Department of Defence"	12-May-08	="Software"	09-Apr-08	09-Apr-08	11797.50	=""	="ROSSLOGIC PTY LTD"	12-May-08 03:02 PM	

+="CN79291"	"TRAINING COURSE"	="Department of Defence"	12-May-08	="Published Products"	08-Apr-08	30-Jun-08	10725.00	=""	="MARC RATCLIFF WORKPLACE"	12-May-08 03:04 PM	

+="CN79326"	"VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	28-Feb-08	01-May-08	10131.09	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:07 PM	

+="CN79337"	"Servers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	30-Apr-08	11321.72	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:08 PM	

+="CN79351"	"MAR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	31-Mar-08	03-May-08	10195.31	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79367"	"PROVISION OF TRANSPORT SERVICES"	="Department of Defence"	12-May-08	="Transportation services equipment"	29-Apr-08	30-Jun-08	11571.68	=""	="TNT AUSTRALIA"	12-May-08 03:10 PM	

+="CN79370"	"PROVISION OF TRANSPORT SERVICES"	="Department of Defence"	12-May-08	="Transportation services equipment"	29-Apr-08	30-Jun-08	10780.00	=""	="FREIGHTWEST"	12-May-08 03:10 PM	

+="CN79377"	"ACCOMODATION & TRANSFERS BS08 PALAU PAYAR"	="Department of Defence"	12-May-08	="Transportation services equipment"	30-Apr-08	30-Apr-08	10380.60	=""	="AUR PESAKA JAYA"	12-May-08 03:11 PM	

+="CN79385"	"Counselling services"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-Apr-08	10065.00	=""	="SANDILANDS PSYCHOLOGICAL SERVICES"	12-May-08 03:12 PM	

+="CN79390"	"Use of Exisitng ASP Contract - No 1 HT Cooling Pump"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	01-Apr-08	23-Apr-08	11308.61	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:12 PM	

+="CN79394"	"Provision of Legal Services"	="Medicare Australia"	12-May-08	="Business administration services"	17-Apr-08	30-Jun-08	11440.00	=""	="QMS"	12-May-08 03:12 PM	

+="CN79401"	"FEA FOR 13 FOOT CONTAINER"	="Department of Defence"	12-May-08	="Containers and storage"	08-Apr-08	07-May-08	10780.00	=""	="IB SUPPLIES PTY LTD"	12-May-08 03:13 PM	

+="CN79414"	"Provision of Conference Facilities"	="Medicare Australia"	12-May-08	="Human resources services"	18-Apr-08	18-Apr-08	10917.99	=""	="THE SEBEL PARRAMATTA"	12-May-08 03:14 PM	

+="CN79418"	"Provision of Evaluation Services"	="Medicare Australia"	12-May-08	="Vocational training"	18-Apr-08	18-Apr-08	10560.00	=""	="Lynn Farkas Information Services Pt"	12-May-08 03:14 PM	

+="CN79422"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Paper products"	18-Apr-08	18-Apr-08	10359.11	=""	="CENTRELINK-FM&S SHARED SERVICES"	12-May-08 03:14 PM	

+="CN79426"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	18-Apr-08	18-Apr-08	10592.58	=""	="QM Technologies Pty Limited"	12-May-08 03:14 PM	

+="CN79439"	"ADVERTISING"	="Department of Defence"	12-May-08	="Advertising"	07-Apr-08	30-Apr-08	10138.26	=""	="HMA BLAZE PTY LTD"	12-May-08 03:15 PM	

+="CN79440"	"ISO9000 Accreditation Support"	="Department of Defence"	12-May-08	="Manufacturing support services"	02-Apr-08	30-Jun-08	11483.21	=""	="NOETIC CORPORATION"	12-May-08 03:15 PM	

+="CN79451"	"Counselling services"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-Apr-08	10065.00	=""	="PSYCHSESSIONS"	12-May-08 03:16 PM	

+="CN79473"	"CRANE HIRE"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Apr-08	30-Jun-08	11110.00	=""	="J & D DAVOLL PTY LTD"	12-May-08 03:18 PM	

+="CN79492"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	17-Apr-08	17-Apr-08	10032.00	=""	="Solved At McConchie Pty Ltd"	12-May-08 03:19 PM	

+="CN79500"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Structural building products"	24-Apr-08	24-Apr-08	10780.00	=""	="Schiavello (VIC) P/L"	12-May-08 03:19 PM	

+="CN79501"	"DESKTOP PC"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	06-May-08	10753.60	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 03:19 PM	

+="CN79529"	"DOUBLE ROTARY CUTTING UNIT"	="Department of Defence"	12-May-08	="Paper Materials and Products"	08-Apr-08	30-Jun-08	11792.00	=""	="BUDDE INTERNATIONAL"	12-May-08 03:21 PM	

+="CN79541"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	30-Apr-08	30-Jun-08	11968.00	=""	="DIALOG INFORMATION TECHNOLOGY"	12-May-08 03:22 PM	

+="CN79552"	"plyers"	="Department of Defence"	12-May-08	="Tools and General Machinery"	27-Mar-08	15-Jun-08	11164.23	=""	="DERCO AEROSPACE INC."	12-May-08 03:22 PM	

+="CN79568"	"Lease of Vehicle"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Mar-08	30-Mar-09	11592.50	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:23 PM	

+="CN79571"	"Lease of Vehicle"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Mar-08	09-Feb-09	10091.51	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:24 PM	

+="CN79607"	"PROVISION OF LABOUR HIRE SERVICES"	="Medicare Australia"	12-May-08	="Business administration services"	24-Apr-08	24-Apr-08	11000.00	=""	="KOOMARRI ASSOCIATION"	12-May-08 03:27 PM	

+="CN79616"	"Minor works for Navy Cadets, Reserve Depot, Maryborough"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	11825.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:27 PM	

+="CN79619"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	12-May-08	="Paper products"	03-Apr-08	03-Apr-08	10560.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79637"	"DRAFTPERSON SUPPORT"	="Department of Defence"	12-May-08	="Ergonomic support aids"	15-Nov-07	14-Dec-07	11320.00	=""	="HALLIS PERSONNEL"	12-May-08 03:29 PM	

+="CN79651"	"service/repair LPCA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Mar-08	30-Jun-08	10927.40	=""	="MANUKA ENT PTY LTD"	12-May-08 03:29 PM	

+="CN79663"	"aircraft painting"	="Defence Materiel Organisation"	12-May-08	="Paints and primers and finishes"	11-Feb-08	29-Feb-08	10000.49	=""	="TASMAN AVIATION ENTERPRISES"	12-May-08 03:30 PM	

+="CN79673"	"Elecr Componets"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Nov-07	05-Dec-07	11121.00	=""	="OPTICAL SYSTEMS DESIGN PTY LTD"	12-May-08 03:32 PM	

+="CN79617"	"Motor Vehicle parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-May-08	09-Jun-08	10461.72	=""	="Volvo Commericial Vehicles"	12-May-08 03:32 PM	

+="CN79680"	"HMAS TOBRUK ID/FAMP 08"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	25-Mar-08	30-May-08	11000.00	=""	="LLOYDS REGISTER"	12-May-08 03:32 PM	

+="CN79689"	"Contracted Freight ref Standing Offer Customer account number 430127"	="Department of Defence"	12-May-08	="Mail and cargo transport"	14-Nov-07	30-Jun-08	11000.00	=""	="TOLL PRIORITY"	12-May-08 03:33 PM	

+="CN79693"	"SERVICE SGSI"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Feb-08	20-Feb-08	10098.00	=""	="NOVAMARINE INSTRUMENTS PTY LTD"	12-May-08 03:33 PM	

+="CN79702"	"SA Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	11605.46	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:34 PM	

+="CN79709"	"engineering services"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	22-Feb-08	10813.00	=""	="ROCKWELL COLLINS AUSTRALIA"	12-May-08 03:34 PM	

+="CN79711"	"Delivery of Best Practice Defensive Tactics training."	="Department of Defence"	12-May-08	="Education and Training Services"	26-Jan-08	31-Mar-08	10000.00	=""	="DEFEND CONTROL & ARREST TRAINING"	12-May-08 03:34 PM	

+="CN79717"	"AUDIO ENGINEER FOR BCSS PROJECT"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Nov-07	29-Jun-08	11500.01	=""	="STEVE ADDERLEY"	12-May-08 03:35 PM	

+="CN79723"	"."	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	31-Dec-07	11-Feb-08	10107.21	=""	="PATRICK DEFENCE LOGISTICS"	12-May-08 03:35 PM	

+="CN79740"	"Provision of mail house services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	02-Apr-08	02-Apr-08	11000.00	=""	="Billprint P/L"	12-May-08 03:36 PM	

+="CN79742"	"JAN LEASE FEE REEFER CONT - FLLA B"	="Department of Defence"	12-May-08	="Industrial refrigeration"	06-Feb-08	14-Feb-08	10678.26	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:36 PM	

+="CN79747"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	14-Feb-08	10525.15	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:36 PM	

+="CN79760"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	11-Apr-08	10560.00	=""	="DIALOG INFORMATION TECHNOLOGY"	12-May-08 03:37 PM	

+="CN79762"	"NULKA MAINTENANCE"	="Defence Materiel Organisation"	12-May-08	="Guided missiles"	15-Feb-08	30-Mar-08	11492.27	=""	="THALES AUSTRALIA"	12-May-08 03:37 PM	

+="CN79793"	"ESS- 030 CONTRACT C439050"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	15-Feb-08	30-Apr-08	10115.06	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:40 PM	

+="CN79812"	"1SQN Qantas Account"	="Department of Defence"	12-May-08	="Recreational aircraft"	31-Dec-07	13-Feb-08	10537.68	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79821"	"Ship Maintenance"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	15-Feb-08	03-Mar-08	10598.50	=""	="BLIGH APPOINTMENTS PTY LTD"	12-May-08 03:41 PM	

+="CN73476"	"Provision of Time Capsules"	="Department of the Prime Minister and Cabinet"	12-May-08	="Containers and storage"	10-Apr-08	24-Apr-08	11785.40	=""	="Thylacine Exhibition Preparation Pty Ltd"	12-May-08 03:43 PM	

+="CN79850"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	26-Nov-07	10019.33	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 03:43 PM	

+="CN79857"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	09-Apr-08	30-Jun-08	11777.70	=""	="Mosaic Recruitment Pty Ltd"	12-May-08 03:44 PM	

+="CN79861"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Components for information technology or broadcasting or telecommunications"	09-Apr-08	09-Apr-08	10944.60	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:44 PM	

+="CN79874"	"PC3 Workshop for DSTO Staff 4-5 Dec 07 (1-20 deleg Venue catering @ $2000"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	11-Dec-07	05-Dec-08	12000.00	=""	="BIOSECURITY AND BIOCONTAINMENT"	12-May-08 03:45 PM	

+="CN79881"	"Provision of Training Courses"	="Medicare Australia"	12-May-08	="Specialised educational services"	10-Apr-08	10-Apr-08	11682.00	=""	="SCOTWORK NEGOTIATING SKILLS"	12-May-08 03:45 PM	

+="CN79888"	"GAS SUPPLY FY 07/08"	="Department of Defence"	12-May-08	="Utilities"	08-Oct-07	31-Oct-08	11979.99	=""	="ACTEWAGL RETAIL LTD"	12-May-08 03:46 PM	

+="CN79899"	"MADE TO MEASURE UNIFORMS FOR RAAF: WINTER TROUSERS, SLACKS"	="Defence Materiel Organisation"	12-May-08	="Clothing"	14-Feb-08	30-Jun-08	10000.00	=""	="THERESE M ARTHURSON"	12-May-08 03:47 PM	

+="CN79905"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	12-Oct-07	11-Dec-07	10226.04	=""	="SERVER RACKS AUSTRALIA"	12-May-08 03:47 PM	

+="CN79911"	"  LEAD AUDITOR TRAINING IN QUALITY MANAGEMENT"	="Defence Materiel Organisation"	12-May-08	="Education and Training Services"	14-Feb-08	30-Jun-08	10270.00	=""	="SAI GLOBAL LTD"	12-May-08 03:48 PM	

+="CN79916"	"TRAINING FOR HQJOC"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Apr-08	30-May-08	11880.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 03:48 PM	

+="CN79923"	"CAR MAINTENACE, SERVICEING, PARTS BUTTERWORTH"	="Department of Defence"	12-May-08	="Motor vehicles"	18-Mar-08	18-Mar-08	10113.27	=""	="SYARIKAT HENSON ENTERPRISE"	12-May-08 03:49 PM	

+="CN79934"	"Correct anomolies in C130H A/C A97-010 and A97-003"	="Department of Defence"	12-May-08	="Aircraft"	27-Mar-08	30-Jun-08	10014.40	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:50 PM	

+="CN79936"	"NEWSPAPERS AND MAGAZINES SHIPS WELFARE AMENITIES"	="Department of Defence"	12-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	02-May-08	30-Jun-08	11813.83	=""	="CENTRAL PYRMONT NEWSAGENCY"	12-May-08 03:50 PM	

+="CN79950"	"HIRE OF FORKLIFT FOR RAAF AMBERLEY FOR OP CATAYLYST"	="Department of Defence"	12-May-08	="Heavy construction machinery and equipment"	19-Sep-07	24-Jan-08	11570.36	=""	="HYSTER NORTH"	12-May-08 03:51 PM	

+="CN79970"	"ON LINE PRODUCTION"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	11000.00	=""	="GEORGE PATTERSON Y & R"	12-May-08 03:53 PM	

+="CN79972"	"PROCESSING UNIT X-RAY FILM DENTAL"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	27-Mar-08	15-Apr-08	10846.00	=""	="IVOCLAR VIVADENT"	12-May-08 03:53 PM	

+="CN79975"	"QANTAS INVOICE HMAS HUON FEB 08"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	14-Feb-08	11492.92	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:54 PM	

+="CN79986"	"Use of Exisitng ASP Contract - Monthly Freight Cha"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	27-Mar-08	30-Apr-08	11000.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:54 PM	

+="CN80018"	"List of Nominees: Stephen Clarke, Kev Clifton, Allan Cooper, Andrew"	="Defence Materiel Organisation"	12-May-08	="Education and Training Services"	14-Feb-08	20-Feb-08	11550.00	=""	="LEADER GROUP"	12-May-08 03:57 PM	

+="CN80038"	"Modifications will be installed by QDS under the provisions of WSBU Contract V309881."	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	21-Dec-07	10459.55	=""	="QANTAS DEFENCE SERVICES PTY LTD"	12-May-08 03:59 PM	

+="CN80041"	"RMIMR removal - Divers and Vessel Support"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	31-Mar-08	11814.00	=""	="SEAFORCE MARINE DIVING SERVICE P/L"	12-May-08 03:59 PM	

+="CN80067"	"TECHNICAL CONTACT:  J. Ciuk PHONE:  08 8259 6832"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	23-Oct-07	31-Jan-08	10587.50	=""	="BE BUILDING SERVICES"	12-May-08 04:01 PM	

+="CN80077"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Oct-07	31-May-08	10747.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:01 PM	

+="CN80082"	"ROAD CHTR OP SLIPPER"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	30-Oct-07	30-Nov-07	11385.00	=""	="ROD PILON TRANSPORT"	12-May-08 04:02 PM	

+="CN80140"	"Boeing/ASTA Labour costs"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	06-Feb-08	25-Jun-08	10623.70	=""	="AEROSPACE TECHNOLOGIES OF AUSTRALIA"	12-May-08 04:05 PM	

+="CN80166"	"Telephone equiptment"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	20-Nov-07	30-Jun-08	11000.00	=""	="SERVITEL COMMUNICATIONS PTY LTD"	12-May-08 04:07 PM	

+="CN80126"	" Motor Vehicle Parts "	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-May-08	09-Jun-08	11001.93	=""	="Mercedes Benz Aust"	12-May-08 04:08 PM	

+="CN80192"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	07-Jan-08	07-Jan-08	11270.26	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 04:09 PM	

+="CN73593"	" Provision of Mail Out Services "	="Department of the Prime Minister and Cabinet"	12-May-08	="Mailing services"	25-Mar-08	30-Apr-08	11715.00	=""	="Canprint Communications"	12-May-08 04:10 PM	

+="CN80211"	"Sandisk hard disk"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	19-Nov-07	30-Nov-07	11519.75	=""	="SOANAR"	12-May-08 04:11 PM	

+="CN80229"	"REPAIR OF TV CAMERA (HUD)"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	11-Dec-07	12-May-08	11148.28	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:12 PM	

+="CN80242"	"WARDROOM & SS FRIDGE HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Feb-08	13-Mar-08	11777.70	=""	="JOHN MANLEY LOGISTICS PTY LTD"	12-May-08 04:13 PM	

+="CN80252"	"POC: Terry Horgan Contact: 02 6265 0132"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	22-May-08	11432.30	=""	="600 MACHINE TOOLS PTY LTD"	12-May-08 04:14 PM	

+="CN80275"	"Provision of local admin services"	="Department of Defence"	12-May-08	="Office supplies"	18-Feb-08	01-Jan-09	10043.32	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 04:16 PM	

+="CN80287"	"Future Services - Leasing of 13K Manitou Forklift"	="Department of Defence"	12-May-08	="Transportation services equipment"	14-Feb-08	01-Jun-08	10668.04	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 04:17 PM	

+="CN80301"	"SPOD STRATEGIC & PLANNING CONFERENCE FOR 08/09"	="Department of Defence"	12-May-08	="Military watercraft"	09-Apr-08	30-Apr-08	10821.08	=""	="SACHER ASSOCIATES (AUST) PTY LTD"	12-May-08 04:18 PM	

+="CN80302"	"PRINTING OF BROCHURES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Nov-07	21-Nov-07	10450.00	=""	="CANBERRA MAILING & ENVELOPES"	12-May-08 04:18 PM	

+="CN80308"	"HALA SERVICES JAN 08 - FLLA K"	="Department of Defence"	12-May-08	="Security surveillance and detection"	11-Feb-08	11-Mar-08	11196.03	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:19 PM	

+="CN80309"	"Engagement Data Recorder (EDR) Jig and Cable"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	09-Aug-08	11725.40	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 04:19 PM	

+="CN80359"	"referance LNIDS demand #: BSAR-79E6GS JODD-RTF POC: SGT KRUCK PH: 02 9224 2746"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	04-Jan-08	30-Jun-08	10814.76	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 04:23 PM	

+="CN80362"	"MSL TRAVEL BILLS JAN/FEB 08"	="Department of Defence"	12-May-08	="Aircraft"	04-Mar-08	04-Mar-08	11638.71	=""	="MSL TRAVEL DN BHD"	12-May-08 04:23 PM	

+="CN80369"	"BALANCE DUE SUPPLY AND INSTALLATION OF BLINDS 204, 208, 212 LAGOS CIRCLE"	="Department of Defence"	12-May-08	="Interior finishing materials"	28-Dec-07	31-Mar-08	10191.33	=""	="HUNTER DOUGLAS SINGAPORE PTE LTD"	12-May-08 04:24 PM	

+="CN80392"	"IT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	10562.20	=""	="Q-MAC ELECTRONICS PTY LTD"	12-May-08 04:25 PM	

+="CN80396"	"QANTAS AIRFARES AND ACCOM"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Dec-07	06-Mar-08	10404.68	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:25 PM	

+="CN80400"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	10230.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 04:25 PM	

+="CN80413"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	11-Jun-08	11594.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:26 PM	

+="CN80432"	"Coat and test magnesium alloys"	="Department of Defence"	12-May-08	="Chemicals including Bio Chemicals and Gas Materials"	16-Nov-07	09-Apr-08	11550.00	=""	="MONASH UNI - CASHIER"	12-May-08 04:26 PM	

+="CN80439"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Department of Defence"	12-May-08	="Pneumatic machinery and equipment"	19-Dec-07	24-Apr-08	10480.76	=""	="SAAB TECH ELECTRONICS AB"	12-May-08 04:27 PM	

+="CN80462"	"HMAS CAIRNS covered berth antennae installation"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	14-Apr-08	30-May-08	10675.50	=""	="INDUSTRIAL & MARINE ELECTRICS PTY L"	12-May-08 04:28 PM	

+="CN80464"	"Use of Exisitng ASP Contract. Main Engine Governor"	="Department of Defence"	12-May-08	="Bearings and bushings and wheels and gears"	19-Dec-07	31-Jan-08	11386.52	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:28 PM	

+="CN80482"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	11-Jun-08	11594.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:29 PM	

+="CN80518"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-May-08	06-Jun-08	10500.78	=""	="Mercedes Benz Aust"	12-May-08 04:33 PM	

+="CN80540"	"INSPECTION COSTS FOR RADAR 1"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	20-Dec-07	30-Apr-08	10164.00	=""	="RLM PTY LTD"	12-May-08 04:34 PM	

+="CN80562"	"Freight"	="Department of Foreign Affairs and Trade"	12-May-08	="Mail and cargo transport"	07-Aug-07	20-Aug-07	10996.00	=""	="JR Global Logistics Pty Ltd"	12-May-08 04:35 PM	

+="CN80579"	"Computer and Accessories"	="Department of Defence"	12-May-08	="Computer services"	11-Apr-08	30-Apr-08	10580.90	=""	="COMPUTERCORP - MELBOURNE"	12-May-08 04:36 PM	

+="CN80592"	"IT Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	02-Aug-07	16-Aug-07	10824.00	=""	="Ethan Group Pty Ltd"	12-May-08 04:36 PM	

+="CN80597"	"Office Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Electrical equipment and components and supplies"	03-Aug-07	31-Aug-07	10200.00	=""	="Delta Building Automation Pty Ltd"	12-May-08 04:37 PM	

+="CN80611"	"FLIP UP REAR SIGHT, M16/M4 QD COMPENSATOR"	="Department of Defence"	12-May-08	="Firearms"	21-Dec-07	21-Jan-08	10187.53	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 04:38 PM	

+="CN80612"	"ADATS AUTOMATION CSE"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	08-Feb-08	05-Apr-08	10872.40	=""	="THALES AUSTRALIA"	12-May-08 04:38 PM	

+="CN80618"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	11739.45	=""	="BRG PRECISION PRODUCTS INC."	12-May-08 04:38 PM	

+="CN80628"	"TCE TASKS PENDING LIMB 3"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-Apr-08	10792.32	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:39 PM	

+="CN80642"	"LOGISTIC SERVICES SUPPORT"	="Defence Materiel Organisation"	12-May-08	="Office supplies"	25-Feb-08	28-Mar-08	11999.79	=""	="GHD PTY LTD"	12-May-08 04:39 PM	

+="CN80645"	"Wire Rope Isolators"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	21-Dec-07	03-Mar-08	11510.40	=""	="CAPS - IDP PTY LTD"	12-May-08 04:39 PM	

+="CN80647"	"UTR Bathymetric Data Acquisition System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	10450.00	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:39 PM	

+="CN80662"	"'k' PHONE REPAIRS"	="Department of Defence"	12-May-08	="Electrical components"	04-Apr-08	30-Apr-08	10890.00	=""	="EYLEX PTY LTD"	12-May-08 04:40 PM	

+="CN80695"	"Interpreting Services"	="Defence Materiel Organisation"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	25-Feb-08	30-Apr-08	10560.00	=""	="AUSLAN INTERPRETERS & TRANSLATOR"	12-May-08 04:42 PM	

+="CN80767"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	22-Feb-08	30-Jun-08	10230.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:46 PM	

+="CN80809"	"FOR RENTAL OF CYLINDERS TO SHIPS, FSU SYDNEY, DARW"	="Department of Defence"	12-May-08	="Elements and gases"	18-Dec-07	30-Jun-08	11000.00	=""	="HEATCRAFT AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80816"	"DEED OF RELEASE AS ATTACHED"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	30-Jan-08	31-Jan-08	11332.75	=""	="BIOLAB (AUST) LTD"	12-May-08 04:48 PM	

+="CN80836"	"ADVERTISEMENT"	="Department of Defence"	12-May-08	="Advertising"	29-Jan-08	29-Jan-08	10304.58	=""	="HMA BLAZE PTY LTD"	12-May-08 04:49 PM	

+="CN80884"	"18 Battery Charging Docks for Divers Communication System Batteries"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	29-Jan-08	30-Jun-13	11741.40	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:51 PM	

+="CN80921"	"Provision of audit services for Certification ISO 9001:2000 Quality Management System Requiremen"	="Department of Defence"	12-May-08	="Management advisory services"	29-Jan-08	31-Dec-08	11500.05	=""	="SAI GLOBAL LTD"	12-May-08 04:53 PM	

+="CN80937"	"REPAIR OF HUD CAMERA"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	29-Jan-08	29-Jun-08	11594.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:54 PM	

+="CN80974"	"Angle position indicator quote. Part of workshop task 15; High Priority workshop equipment"	="Defence Materiel Organisation"	12-May-08	="Workshop machinery and equipment and supplies"	27-Feb-08	30-Jun-08	11994.74	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:56 PM	

+="CN80977"	"MAIN GALLEY FRIDGES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	20-Mar-08	10060.34	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80982"	"MATIS Business Planning Facilitator"	="Defence Materiel Organisation"	12-May-08	="Management support services"	27-Feb-08	18-Mar-08	10346.60	=""	="SMS MANAGEMENT & TECHNOLOGY LTD"	12-May-08 04:57 PM	

+="CN80993"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	08-Feb-08	11724.15	=""	="SINGAPORE AIRSHOW & EVENTS PTE LTD"	12-May-08 04:57 PM	

+="CN81003"	"Delivery of Core Units of PSP40104 -Certificate IV"	="Department of Defence"	12-May-08	="Medical training and education supplies"	18-Dec-07	14-Jan-08	11902.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 04:58 PM	

+="CN81005"	"ASD - ADVERTISING COSTS FOR TENDERS FOR AIR 5349 P"	="Department of Defence"	12-May-08	="Office supplies"	05-Feb-08	05-Feb-08	10530.48	=""	="HMA BLAZE PTY LTD"	12-May-08 04:58 PM	

+="CN81007"	"TEMP ACCOMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Vehicle safety and security systems and components"	18-Dec-07	30-Jun-08	10200.00	=""	="RIVERSIDE HOTEL"	12-May-08 04:58 PM	

+="CN81014"	"PBAL-0006/2008 HANDBOOKS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Apr-08	10241.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	12-May-08 04:59 PM	

+="CN81026"	"PORTABLE SAWMILL CONTAINER"	="Defence Materiel Organisation"	12-May-08	="Containers and storage"	26-Feb-08	16-Apr-08	11154.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 04:59 PM	

+="CN81083"	"REPAIR OF F/A-18 EMBEDDED GPS/INU SET"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	31-Aug-08	11562.95	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81094"	"REPAIR OF AUTO PILOT TEST SET"	="Department of Defence"	12-May-08	="Aircraft equipment"	31-Jan-08	27-Mar-08	10108.45	=""	="SAGEM COMMUNICATION - GROUPE SAFRAN"	12-May-08 05:02 PM	

+="CN81112"	"REPAIR OF CIT RECEIVER-TRANSMITTER"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	19-Feb-08	29-Jun-08	10784.11	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81113"	"KEYWATCHER UPGRADE"	="Department of Defence"	12-May-08	="Security systems services"	19-Dec-07	31-Jan-08	11866.80	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 05:03 PM	

+="CN81116"	"REPAIR OF CIT RECEIVER-TRANSMITTER"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	19-Feb-08	29-Jun-08	10784.11	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81120"	"REPAIR OF CIT RECEIVER-TRANSMITTER"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	19-Feb-08	29-Jun-08	10784.11	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:04 PM	

+="CN81133"	"Environmental Auditor services for Business RMO261"	="Department of Defence"	12-May-08	="Environmental Services"	19-Dec-07	22-Dec-07	10616.66	=""	="THALES AUSTRALIA"	12-May-08 05:04 PM	

+="CN81142"	"FREIGHT"	="Department of Defence"	12-May-08	="Mail and cargo transport"	19-Dec-07	19-Dec-07	10340.00	=""	="SCHENKER INTERNATIONAL PTY LTD"	12-May-08 05:04 PM	

+="CN81155"	"Adverising for Industry Briefing"	="Department of Defence"	12-May-08	="Advertising"	26-Nov-07	30-Nov-07	10327.39	=""	="HMA BLAZE PTY LTD"	12-May-08 05:05 PM	

+="CN81157"	"REPORT ON CARRIAGE OF ARMY VEHICLES HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	01-Feb-08	29-Feb-08	11973.81	=""	="LLOYDS REGISTER"	12-May-08 05:05 PM	

+="CN81166"	"Supply 4 gauges & calibrate 16 gauges total HMAS BALIKPAPAN"	="Department of Defence"	12-May-08	="Manufacturing support services"	01-Feb-08	30-Jun-08	11682.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:05 PM	

+="CN81182"	"LEADING EDGE FLAP, O/B, LH, NSN: 01-152-0745 Sno: OA428F REPAIR"	="Department of Defence"	12-May-08	="Aircraft"	23-Jan-08	27-Jun-08	10632.60	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81186"	"LEADING EDGE FLAP, O/B, LH, NSN: 01-152-0745 Sno: OA428E REPAIR"	="Department of Defence"	12-May-08	="Aircraft"	23-Jan-08	27-Jun-08	10632.60	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81202"	"LEADING EDGE FLAP, O/B, LH, NSN: 01-152-0745 Sno: OA428B REPAIR"	="Department of Defence"	12-May-08	="Aircraft"	23-Jan-08	27-Jun-08	10632.60	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:07 PM	

+="CN81213"	"REPAIR OF F/A-18 EMBEDDED GPS/INU SET"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	19-Feb-08	15-Jun-08	10559.29	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:07 PM	

+="CN81222"	"INSTALL DUPLEX STRAINER IN SEAWATER INLET TO THE GENSET"	="Department of Defence"	12-May-08	="Military watercraft"	23-Jan-08	28-Mar-08	10961.50	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 05:08 PM	

+="CN81223"	"RMIMR Container Relocation"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	23-Nov-07	28-Feb-08	10105.84	=""	="TUTT BRYANT CRANE HIRE NT"	12-May-08 05:08 PM	

+="CN81225"	"ORDER RAISED IN ACCORDANCE WITH EMAIL REQUEST CATH ARUNTA). QUOTATION INCHCAPE 18.02.08."	="Defence Materiel Organisation"	12-May-08	="Lubricants and oils and greases and anti corrosives"	19-Feb-08	30-Jun-08	10547.71	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 05:08 PM	

+="CN81238"	"LEADING EDGE FLAP, O/B, LH, NSN: 01-152-0745 Sno: OA428G REPAIR"	="Department of Defence"	12-May-08	="Aircraft"	23-Jan-08	27-Jun-08	10632.60	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:09 PM	

+="CN81244"	"Air Conditioning repairs"	="Defence Materiel Organisation"	12-May-08	="Building construction and support and maintenance and repair services"	18-Feb-08	30-May-08	10170.05	=""	="COMPLETE AIRCONDITIONING"	12-May-08 05:09 PM	

+="CN81253"	"VENUE HIRE AND CATERING FOR DISAM CSE IN MAY08"	="Department of Defence"	12-May-08	="Medical training and education supplies"	19-Dec-07	30-Jun-08	11500.01	=""	="RYDGES LAKESIDE CANBERRA"	12-May-08 05:09 PM	

+="CN81274"	"REVIEW 1 SSDG PIPE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	23-Jan-08	16-May-08	11085.13	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:10 PM	

+="CN81275"	"Repair Lucent PSAX Modules"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	26-Nov-07	30-Jun-08	10997.28	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-May-08 05:10 PM	

+="CN81329"	"Replace Suspended Ceiling Tiles- HMAS Melbourne"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	30-Jun-08	10500.60	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	12-May-08 05:13 PM	

+="CN81348"	"window panel"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	01-Oct-08	11544.07	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:14 PM	

+="CN81354"	"Silver sponsorship of PMAA (ACT) presentation nigh"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	22-Jan-08	31-Jan-08	12000.00	=""	="AUSTRALIAN INSTITUTE OF PROJECT"	12-May-08 05:14 PM	

+="CN81363"	"VARIOUS PARTS - CONNECTOR'S, Mil approved dust, USA made gasket's"	="Department of Defence"	12-May-08	="Electrical components"	22-Jan-08	22-Jan-08	11251.90	=""	="CONNECTOR TECH"	12-May-08 05:15 PM	

+="CN81377"	"Technical Services"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	22-Feb-08	30-Apr-08	11991.15	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:15 PM	

+="CN81418"	"Update Drawings to Reflect Comments"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	27-Nov-07	31-May-08	10010.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 05:18 PM	

+="CN81424"	"- 3 DAY TRAINING TO BE CONDUCTED IN TOWNSVILLE, QL - TRAINING DATE TENTATIVELY SET FOR 18-20 MAR 08"	="Department of Defence"	12-May-08	="Medical training and education supplies"	27-Nov-07	18-Mar-08	10565.61	=""	="ZEPHYR INTERNATIONAL LLC"	12-May-08 05:18 PM	

+="CN81450"	"POC: ANTHONY WARNOCK CONTACT: 02 626 69354"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	26-Jan-08	11-Feb-08	11605.00	=""	="EATON POWER QUALITY PTY LTD"	12-May-08 05:19 PM	

+="CN81472"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	24-Jan-08	24-Jan-08	10305.61	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:21 PM	

+="CN81495"	"S&Q 02/055 Repair Adour engine, SN: 7516"	="Department of Defence"	12-May-08	="Aircraft equipment"	24-Jan-08	29-Feb-08	10115.54	=""	="BAE SYSTEMS AUSTRALIA - GBP"	12-May-08 05:23 PM	

+="CN81502"	"Operator Training Course for SmartSAT SATSIM"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	21-Apr-08	30-Jun-08	10632.60	=""	="SMARTSAT INC."	12-May-08 05:23 PM	

+="CN81514"	"Revised Instruction Plates for HMAS Darwin Reverse Osmosis (RO) Unit"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	09-Jun-08	11635.00	=""	="THALES AUSTRALIA"	12-May-08 05:24 PM	

+="CN81547"	"Professional Fees"	="Department of Defence"	12-May-08	="Legal services"	13-Dec-07	30-May-08	10615.00	=""	="BLAKE DAWSON WALDRON"	12-May-08 05:27 PM	

+="CN81585"	"Tools"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	18-Apr-08	02-May-08	10515.34	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 05:30 PM	

+="CN81598"	"MADE TO MEASURE UNIFORMS SUPPLIER: BERENSEN TAILORS"	="Department of Defence"	12-May-08	="Clothing"	12-Dec-07	25-Feb-08	11465.46	=""	="BERENSEN TAILORS PTY LTD"	12-May-08 05:31 PM	

+="CN81604"	"HMAS Melbourne Design package- replacement of Obso lete Balance Joiner Door Ellison Doors Installtio"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	28-Feb-08	11676.01	=""	="THALES AUSTRALIA"	12-May-08 05:31 PM	

+="CN81607"	"AZIMUTH MOTORS"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	12-Dec-07	20-Feb-08	10355.40	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:31 PM	

+="CN81615"	"Forklift Battery"	="Department of Defence"	12-May-08	="Transportation services equipment"	13-Dec-07	14-Feb-08	10665.60	=""	="CENTURY YUASA BATTERIES PTY LTD"	12-May-08 05:32 PM	

+="CN81639"	"Signal Illumination White 38mm"	="Department of Defence"	12-May-08	="Personal safety devices or weapons"	17-Dec-07	31-Aug-08	10763.50	=""	="CHEMRING AUSTRALIA PTY LTD"	12-May-08 05:35 PM	

+="CN81643"	"Line Printer Survey"	="Department of Defence"	12-May-08	="Industrial process machinery and equipment and supplies"	17-Dec-07	31-Mar-08	10269.53	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:36 PM	

+="CN81662"	"Computer Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	11929.72	=""	="ASI SOLUTIONS"	12-May-08 05:38 PM	

+="CN81677"	"2-STAGE MATCH TRIGGER ASSEMBLY"	="Department of Defence"	12-May-08	="Firearms"	15-Dec-07	14-Feb-08	11642.70	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 05:41 PM	

+="CN81695"	"AmendTMS 4361-RAN-020"	="Department of Defence"	12-May-08	="Military watercraft"	07-Dec-07	21-Dec-07	11480.54	=""	="THALES AUSTRALIA"	12-May-08 05:43 PM	

+="CN81784"	"consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	06-Mar-08	12000.00	=""	="Measured Insights"	12-May-08 07:35 PM	

+="CN81795"	"Repair of Drive Shaft Assy"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	12-May-08	11-Jun-08	10870.42	=""	="Sikorsky Aircraft Australia"	13-May-08 09:09 AM	

+="CN81816"	"QANTAS SEP 07 STATEMENT"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	30-Sep-07	30-Jun-08	10626.57	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:01 AM	

+="CN81831"	"5036-4 C&M MONITOR & SICARD REPLACEMENT GST COMPONENT OF INV 560710557EUR"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	09-Nov-07	31-Dec-07	11185.32	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:03 AM	

+="CN81843"	"JDAM transport of equipment"	="Defence Materiel Organisation"	13-May-08	="Transportation components and systems"	13-Nov-07	31-Dec-07	11358.70	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:05 AM	

+="CN81857"	"ALSPO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	23-Oct-07	30-Jun-08	11398.45	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 11:08 AM	

+="CN81875"	"gst paymt for invoice U11"	="Defence Materiel Organisation"	13-May-08	="Electronic reference material"	15-Oct-07	12-Feb-08	10774.43	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:11 AM	

+="CN81885"	"GST only payment for foreing currencies"	="Defence Materiel Organisation"	13-May-08	="Components for information technology or broadcasting or telecommunications"	11-Dec-07	31-Jan-08	11331.29	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	13-May-08 11:12 AM	

+="CN81896"	"TF2 ADVICE"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	21-Nov-07	19-Dec-07	11000.00	=""	="HUB CONSULTING PTY LTD"	13-May-08 11:14 AM	

+="CN81904"	"GST PAYMENT ON OVERSEAS PURCHASE ORDER"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	30-Nov-07	16-Jan-08	11815.94	=""	="BAE SYSTEMS(AUSTRALIA)"	13-May-08 11:15 AM	

+="CN81954"	"various pathology consumables"	="Defence Materiel Organisation"	13-May-08	="Laboratory supplies and fixtures"	27-Oct-07	30-Jun-08	10388.25	=""	="RANDOX AUSTRALIA PTY LTD"	13-May-08 11:24 AM	

+="CN81940"	"Advertising Positions Vacant"	="Office of Parliamentary Counsel"	13-May-08	="Newspaper advertising"	14-Sep-07	14-Sep-07	10838.52	=""	="HMA Blaze"	13-May-08 11:25 AM	

+="CN81962"	"REPAIR OF COMUTER AUTOPILOT"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	17-Oct-07	31-Jan-08	10198.85	=""	="SAGEM COMMUNICATION - GROUPE SAFRAN"	13-May-08 11:26 AM	

+="CN81973"	"SDRS Sensor Repair on P3 Orion"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Nov-07	30-Nov-07	10175.00	=""	="FORTBURN PTY LTD"	13-May-08 11:28 AM	

+="CN82004"	"2 x Dell Precision T3400 Desktops"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	15-Apr-08	10674.25	=""	="Dell Australia Pty Ltd"	13-May-08 11:34 AM	

+="CN82006"	"8 x Windows Server Standard Licences"	="Geoscience Australia"	13-May-08	="Software"	01-Apr-08	15-Apr-08	10871.96	=""	="City Software Pty Ltd  (CSW)"	13-May-08 11:34 AM	

+="CN82018"	"Dell Precison T7400 Desktop"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	03-Apr-08	17-Apr-08	10019.90	=""	="Dell Australia Pty Ltd"	13-May-08 11:35 AM	

+="CN82020"	"Paleomagnetic dating of Qld Regolith"	="Geoscience Australia"	13-May-08	="Professional engineering services"	03-Apr-08	26-Apr-08	11000.00	=""	="Australian National University"	13-May-08 11:35 AM	

+="CN82037"	"OEMD Team Building"	="Geoscience Australia"	13-May-08	="Business and corporate management consultation services"	08-Apr-08	30-Apr-08	11510.01	=""	="The Grid Company Pty Ltd"	13-May-08 11:37 AM	

+="CN82050"	"Minmet Australia Standard Renewal (includes 3 logins). Expires 1 April 2009."	="Geoscience Australia"	13-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Apr-08	11676.50	=""	="Intierra Ltd"	13-May-08 11:39 AM	

+="CN82057"	"WP DC003 Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase."	="Geoscience Australia"	13-May-08	="Temporary personnel services"	11-Apr-08	30-Jun-08	11203.50	=""	="Photo Mapping Services Pty Ltd"	13-May-08 11:39 AM	

+="CN82061"	"Legal advice for RFT for Archive and Data Delivery System (Robotics) Ref: MET:PGM/26-5732659"	="Geoscience Australia"	13-May-08	="Legal services"	11-Apr-08	30-Jun-08	10050.70	="2005/2115"	="Minter Ellison Lawyers"	13-May-08 11:40 AM	

+="CN82097"	"CONTRACT CONDITIONS: The Product Support and Techn dated 2 April 2003.   Note: in accordance with In"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	19-Apr-07	22-Feb-08	11449.58	=""	="THALES UK LTD, THALES AEROSPACE"	13-May-08 11:43 AM	

+="CN82098"	"Custom-built trailer for transportation of borehole temperature logging equipment"	="Geoscience Australia"	13-May-08	="Tools and General Machinery"	21-Apr-08	30-Jun-08	10758.00	=""	="Metal Form Industries"	13-May-08 11:43 AM	

+="CN82100"	"GA Thrifty Car Hire Feb/March 08 invoices"	="Geoscience Australia"	13-May-08	="Passenger road transportation"	21-Apr-08	01-May-08	10114.58	=""	="Kingmill Pty Ltd t/a Thrifty Car Rental"	13-May-08 11:43 AM	

+="CN82136"	"Repair of aircraft components"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	04-Jun-07	30-Jun-08	10129.86	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:48 AM	

+="CN82137"	"CMC G2387 Exchange 2007 Upgrade Statement of Work for IT"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	30-Apr-08	30-Jun-08	11776.91	=""	="Dimension Data Australia Pty Ltd"	13-May-08 11:48 AM	

+="CN82162"	"TS4017U1-4 INSTALLATION OF FOLLOW-ON (FON) TASKS TO HMAS STUART"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	24-Apr-08	31-May-08	11451.02	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:52 AM	

+="CN82163"	"LPA water mist system project"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	22-Jan-07	30-Jan-08	10004.50	=""	="DET NORSKE VERITAS"	13-May-08 11:52 AM	

+="CN82165"	"Extention Gateway Coaching for Bev Kerr"	="Defence Materiel Organisation"	13-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	04-Dec-06	30-Jun-08	11788.00	=""	="MELBOURNE BUSINESS SCHOOL"	13-May-08 11:52 AM	

+="CN82174"	"CONTRACT CONDITIONS: The Product Support and Techn dated 2 April 2003.   Note: in accordance with In"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	30-Aug-07	30-May-08	11470.59	=""	="THALES UK LTD, THALES AEROSPACE"	13-May-08 11:53 AM	

+="CN82178"	"VARIOUS DENTAL CONSUMABLES"	="Defence Materiel Organisation"	13-May-08	="Dental equipment and supplies"	23-Apr-08	30-Jun-08	11012.00	=""	="3M AUSTRALIA PTY LTD"	13-May-08 11:54 AM	

+="CN82180"	"Fund Contract No.04001 for F/Y 07/08. For Manageme nt of RAAF Master Flow Meters"	="Defence Materiel Organisation"	13-May-08	="Industrial Production and Manufacturing Services"	12-Nov-07	31-Jul-08	10373.00	=""	="GAS TECHNOLOGY SERVICES"	13-May-08 11:54 AM	

+="CN82200"	"Connector"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	06-Mar-08	27-Jun-08	10419.95	=""	="DENELEX INDUSTRIES INC"	13-May-08 11:57 AM	

+="CN82208"	"Deck Outfit Teak Repairs STS Young Endeavour"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	30-Apr-08	11390.50	=""	="NOAKES RIGGING PTY LTD"	13-May-08 11:58 AM	

+="CN82225"	"HOSPITAL HIRES"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	12-Nov-07	30-Jun-08	11000.00	=""	="DEVICE TECHNOLOGIES"	13-May-08 11:59 AM	

+="CN82227"	"Freight Charges"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jul-07	27-Jun-08	10340.00	=""	="TOLL PRIORITY"	13-May-08 12:00 PM	

+="CN82229"	"Ramset Maintenance"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jul-07	30-Jun-08	10188.76	=""	="THALES AUSTRALIA"	13-May-08 12:00 PM	

+="CN82237"	"UPGRADE LINUX SOE PROJECT O.05.30.25"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	01-May-08	30-Jun-08	10251.17	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:00 PM	

+="CN82241"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	07-Aug-07	02-Jan-08	10820.13	=""	="THALES AUSTRALIA"	13-May-08 12:01 PM	

+="CN82247"	"REPAIR OF F/A-18 DEVICE FLAP ASSY (MOTIONAL TRA) S/NO. 1051705."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	02-Aug-07	29-Feb-08	11968.32	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:01 PM	

+="CN82265"	"ESTENDER CARD ELECTRONIC TEST"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	15-Jan-08	02-Jun-08	11442.12	=""	="IMTECH MARINE & INDUSTRY B.V."	13-May-08 12:02 PM	

+="CN82278"	"bellcrank assy"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	04-Mar-08	01-Jun-09	11198.86	=""	="AGUSTAWESTLAND LTD"	13-May-08 12:03 PM	

+="CN82279"	"Use of Exisitng ASP Contract.5 Year Spares"	="Defence Materiel Organisation"	13-May-08	="Safety and rescue vehicles"	15-Jan-08	12-Mar-08	10649.10	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:04 PM	

+="CN82280"	"Repairs to WLM ILS"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	04-Mar-08	16-Apr-08	10424.55	=""	="AIRSERVICES AUSTRALIA"	13-May-08 12:04 PM	

+="CN82351"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Personnel recruitment"	10-Mar-08	31-May-08	10000.00	=""	="DAVID MORGAN WILLIAMS PTY LTD"	13-May-08 12:10 PM	

+="CN82353"	"Amend TMS 5121-RAN-018 Inspect and Test Vent System R2-213-2 Ships Crew Messroom"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	10-Mar-08	30-May-08	10933.86	=""	="THALES AUSTRALIA"	13-May-08 12:10 PM	

+="CN82357"	"Amend TMS 5121-RAN-023 Vent System R1-238-1"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	10-Mar-08	30-May-08	10933.86	=""	="THALES AUSTRALIA"	13-May-08 12:10 PM	

+="CN82359"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	10-Mar-08	10-Aug-08	11594.85	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:11 PM	

+="CN82360"	"POST DESIGN SERVICES (PDS) IAW AGREEMENT (BOA) EX-390."	="Defence Materiel Organisation"	13-May-08	="Space transportation support systems and equipment"	15-Jan-08	31-Dec-08	10632.60	=""	="THE BOEING COMPANY"	13-May-08 12:11 PM	

+="CN82361"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	10-Mar-08	10-Aug-08	11594.85	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:11 PM	

+="CN82394"	"WEATHER DECK LOCKERS HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	16-May-08	10494.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	13-May-08 12:13 PM	

+="CN82411"	"AIRCRAFT SPARES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	29-Feb-08	10094.59	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:15 PM	

+="CN82448"	"F-18 AIRCRAFT SPARES"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	10-Oct-08	10621.43	=""	="MARTIN BAKER AIRCRAFT CO LTD"	13-May-08 12:18 PM	

+="CN82474"	"CISCO 3825 Router"	="Defence Materiel Organisation"	13-May-08	="Computer services"	29-Feb-08	14-Mar-08	10937.60	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:21 PM	

+="CN82528"	"Ship Equipment"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	30-Jun-09	11752.20	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	13-May-08 12:26 PM	

+="CN82532"	"Computer equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	11492.80	=""	="ELPRO TECHNOLOGIES PTY LTD"	13-May-08 12:26 PM	

+="CN82535"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	07-Jan-08	30-May-08	11054.64	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:26 PM	

+="CN82536"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Jun-08	11272.30	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:27 PM	

+="CN82586"	"QTY 2  DELL 24" ULTRA SHARP MONITORS QTY 2  DELL XPS M1730 LAPTOPS"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	04-Mar-08	30-Apr-08	10513.80	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 12:31 PM	

+="CN82599"	"Supply 6V AG Batteries and 1 off battery charger. STS YOUNG ENDEAVOUR"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Mar-08	30-Apr-08	10019.99	=""	="BATTERY WORLD BROOKVALE"	13-May-08 12:32 PM	

+="CN82628"	"Outright purchase and ownership of images"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	09-Nov-07	09-Nov-07	10560.00	=""	="Ken Hoppen Photography"	13-May-08 12:36 PM	

+="CN82629"	"UWTR Wet end replacement costings workshop"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Mar-08	30-Mar-08	10632.60	=""	="L-3 COMMUNICATIONS MARIPRO INC"	13-May-08 12:36 PM	

+="CN82631"	"TEWSPO(ADL) Tasking Directive 03-07"	="Defence Materiel Organisation"	13-May-08	="Military services and national defence"	03-Mar-08	31-Mar-08	10485.20	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:36 PM	

+="CN82634"	"PABX Service agreement"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Telecommunications media services"	27-Dec-07	30-Jun-08	10689.53	=""	="NEC Business Solutions Pty Ltd"	13-May-08 12:36 PM	

+="CN82640"	"56kg  Ocean Nature Sea Salt"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	12-Feb-08	11883.65	=""	="Aquasonic Pty Ltd"	13-May-08 12:37 PM	

+="CN82647"	"COMPUTER MONITORS FOR MCDSPO OFFICE"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	10-Mar-08	30-Mar-08	10333.40	=""	="COMMANDER INTEGRATED NETWORKS PTY"	13-May-08 12:38 PM	

+="CN82657"	"DTS 76 Windows NT Obsolescence Report"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	17-Mar-08	22-Aug-08	10456.04	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 12:39 PM	

+="CN82659"	"DTS 76 Windows NT Obsolescence Report"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	17-Mar-08	22-Aug-08	11991.61	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:40 PM	

+="CN82661"	"Contractor Assistance"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Mar-08	31-Mar-08	11278.53	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 12:40 PM	

+="CN82671"	"Procurement of parts for installation of Sea Water Supply 'Y' Strainer for FFG Reverse Osm"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Mar-08	06-May-08	10618.15	=""	="THALES AUSTRALIA"	13-May-08 12:42 PM	

+="CN82681"	"To supply labour to mop dry and clean nominated fuel tank on HMAS Armidale in Cairns"	="Defence Materiel Organisation"	13-May-08	="Toxic and hazardous waste cleanup"	14-Mar-08	31-Mar-08	11462.00	=""	="TROPICAL REEF SHIPYARD PTY LTD"	13-May-08 12:43 PM	

+="CN82702"	"Amend TMS 5121-RAN-022 Inspect & Test Vent  System R1-204-2 Wardroom Mess"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	30-Jun-08	10933.86	=""	="THALES AUSTRALIA"	13-May-08 12:46 PM	

+="CN82703"	"Amend TMS 5121-RAN-013 Inspect & Test Vent System R1-148-2 Officers Accomodation"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	30-Jun-08	10933.87	=""	="THALES AUSTRALIA"	13-May-08 12:46 PM	

+="CN82712"	"AIMS C Business process development and mentoring"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	19-Mar-08	30-Apr-08	10359.05	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	13-May-08 12:47 PM	

+="CN82742"	"Computer for Drawing Office"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	18-Mar-08	30-Apr-08	11545.60	=""	="TI COMPUTERS"	13-May-08 12:51 PM	

+="CN82774"	"CONDUCT URDEF HULL SURVEYS HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Mar-08	30-May-08	10098.00	=""	="VIKING MARINE SURVEYS PTY LTD"	13-May-08 12:56 PM	

+="CN82827"	"MINC repair"	="Defence Materiel Organisation"	13-May-08	="Flight communications related systems"	14-Mar-08	15-Jun-08	10584.75	=""	="GENERAL DYNAMICS C4 SYSTEMS INC."	13-May-08 01:03 PM	

+="CN82831"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	13-Mar-08	30-Apr-08	10217.00	=""	="MINTER ELLISON"	13-May-08 01:04 PM	

+="CN82855"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	13-Mar-08	30-Apr-08	11044.00	=""	="ASI SOLUTIONS"	13-May-08 01:07 PM	

+="CN82891"	"CONNECTOR"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	13-Feb-08	01-Aug-08	10435.92	=""	="THALES UK LTD, AEROSPACE DIVISION"	13-May-08 01:12 PM	

+="CN82906"	"Use of Exisitng ASP Contract. Manifold for H hydraulic system"	="Defence Materiel Organisation"	13-May-08	="Hydraulic systems and components"	13-Feb-08	14-Mar-08	10683.75	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:14 PM	

+="CN82909"	"Use of Exisitng ASP Contract. O/haul Compressor"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	13-Feb-08	09-May-08	11088.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:14 PM	

+="CN82963"	"Use of Exisitng ASP Contract  - Overhaul No 2 HT Cooling Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	22-Apr-08	11-Jul-08	11308.61	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:40 PM	

+="CN83022"	"Cert IV in Project Management"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	15-Apr-08	15-Apr-08	11550.00	=""	="LEADER GROUP"	13-May-08 01:48 PM	

+="CN83070"	"S&Q 02/084 - ADDITIONAL SHEARWIRES"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	16-Apr-08	30-Apr-08	11233.20	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 01:56 PM	

+="CN83076"	"REPAIR OF CIT RECEIVER-TRANSMITTER"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	16-Apr-08	26-Aug-08	10784.11	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 01:56 PM	

+="CN83111"	"CLOTH"	="Defence Materiel Organisation"	13-May-08	="Fabrics and leather materials"	01-May-08	22-May-08	10725.00	=""	="P BLASHKI AND SONS PTY LTD"	13-May-08 02:01 PM	

+="CN83114"	"Aluminium & Glass partition divider to segregate Finance work area"	="Defence Materiel Organisation"	13-May-08	="General building construction"	02-May-08	30-Jun-08	10468.70	=""	="BAKER & BROWN CONSTRUCTIONS"	13-May-08 02:02 PM	

+="CN83121"	"Conditions of IMS Contract, CAPO No: CON(MS)W01-12 this deliverable. Ref: 07/IMS/Q/0030-2 dated 30 A"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	01-May-08	30-Jun-08	11798.62	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:02 PM	

+="CN83131"	"Enhancements to the ADAASS Web application"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	30-Apr-08	30-Jun-08	10670.00	=""	="APT BUSINESS SOLUTIONS PTY LTD"	13-May-08 02:04 PM	

+="CN83143"	"PC-9 SPARES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	01-May-08	13-Nov-08	11495.63	=""	="MARTIN BAKER AIRCRAFT CO LTD"	13-May-08 02:06 PM	

+="CN83147"	"Quotation No: AUS03845490"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	30-Apr-08	30-Jun-08	10238.80	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 02:06 PM	

+="CN83157"	"Training Course - UNIX System & Network Administration"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-May-08	25-Jun-08	10395.00	=""	="DIMENSION DATA AUSTRALIA PTY L"	13-May-08 02:08 PM	

+="CN83209"	"Conduct Activities to permit Onboard pre Tow Inspe ction of EX CANBERRA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	12-May-08	10159.13	=""	="THALES AUSTRALIA"	13-May-08 02:16 PM	

+="CN83295"	"Installation of equipment on HMAS Darwin in sup- port of Sea Trial"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Apr-08	11-May-08	11584.10	=""	="JENKINS ENGINEERING DEFENCE"	13-May-08 02:30 PM	

+="CN83301"	"COMPUTER SOFTWARE"	="Defence Materiel Organisation"	13-May-08	="Software"	30-Apr-08	21-May-08	11220.00	=""	="COMPUTERCORP - MELBOURNE"	13-May-08 02:31 PM	

+="CN83308"	"Manufacture of transit cases"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	29-Apr-08	23-May-08	10560.00	=""	="HAWKER DE HAVILLAND"	13-May-08 02:32 PM	

+="CN83331"	"AESSO GSE-ACS Requirement for Decanting and Respon Obsolete 1211 Halon Assets."	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	29-Apr-08	09-Jun-08	11485.10	=""	="DEPT OF ENVIRONMENT & HERITAGE"	13-May-08 02:35 PM	

+="CN83374"	"GASKETS"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Mar-08	02-May-08	11840.23	=""	="AVIATION DEVICES & ELECTRONIC"	13-May-08 02:42 PM	

+="CN83375"	"BEARING BALL"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Mar-08	25-Oct-08	10685.76	=""	="TRANSAERO INC."	13-May-08 02:42 PM	

+="CN83380"	"Panel"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Mar-08	15-Jun-09	11692.27	=""	="AGUSTAWESTLAND LTD"	13-May-08 02:43 PM	

+="CN83404"	"Cart Powder Act No 5 Elec & Technical Documents"	="Defence Materiel Organisation"	13-May-08	="Explosive materials"	02-Apr-08	02-Apr-08	10165.83	=""	="URDAN INDUSTRIES LTD"	13-May-08 02:47 PM	

+="CN83423"	"DSTO Personnel to attend Sea Hawk Trial"	="Defence Materiel Organisation"	13-May-08	="Travel and Food and Lodging and Entertainment Services"	03-Apr-08	31-May-08	12000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:50 PM	

+="CN83427"	"MODIFICATION OF SAW MILLS"	="Defence Materiel Organisation"	13-May-08	="Sawmilling and lumber processing machinery and equipment"	03-Apr-08	30-Jun-08	10000.00	=""	="LUCAS MILL PTY LTD"	13-May-08 02:51 PM	

+="CN83429"	"    Library management system    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	01-May-09	11000.00	=""	="First Software Solutions"	13-May-08 02:57 PM	

+="CN83461"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Mar-08	10-Jun-08	11680.00	=""	="A AND D INTERNATIONAL Pty Ltd"	13-May-08 07:29 PM	

+="CN83484"	"Procurement of:  SWITCH,LOCK;  SEMICONDUCTOR DEVICE,DIODE;  RELAY,ELECTROMAGNETIC;  CIRCUIT BREAKER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	02-Nov-08	10356.28	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:31 PM	

+="CN83500"	"Procurement of:  TRANSFORMER,POWER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Mar-08	09-Jul-08	11558.18	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:33 PM	

+="CN83503"	"Procurement of:  HOUSING,LIQUID PUMP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	13-May-08	11371.99	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:34 PM	

+="CN83504"	"Procurement of:  CORE ASSEMBLY,FLUID COOLER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	15-Jul-08	10424.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:34 PM	

+="CN83515"	"Procurement of:  PUMP UNIT,ROTARY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	29-Aug-08	10589.84	=""	="H I FRASER Pty Ltd"	13-May-08 07:35 PM	

+="CN83516"	"Procurement of:  MICROPHONE,DYNAMIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	21-Jul-08	11663.88	=""	="THALES AUSTRALIA"	13-May-08 07:35 PM	

+="CN83522"	"Procurement of:  CONNECTOR,RECEPTACLE,ELECTRICAL;  LIGHT EMITTING DIODE;  SWITCH,PUSH"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Mar-08	23-Sep-08	10646.04	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:36 PM	

+="CN83541"	"Procurement of:  SWITCH,TOGGLE;  SWITCH,TOGGLE;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	26-Sep-08	10192.24	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:39 PM	

+="CN83556"	"Procurement of:  SOLENOID,ELECTRICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	20-May-08	11841.00	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:41 PM	

+="CN83568"	"Procurement of:  KETTLE,STEAM JACKETED"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	19-Jun-08	10604.30	=""	="COMCATER INTERNATIONAL Pty Ltd"	13-May-08 07:42 PM	

+="CN83575"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	13-May-08	11300.00	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:43 PM	

+="CN83580"	"Procurement of:  PUMP,RECIPROCATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	09-Jul-08	11225.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	13-May-08 07:44 PM	

+="CN83590"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	01-Apr-08	13-May-08	10600.00	=""	="EBBCO Ltd"	13-May-08 07:45 PM	

+="CN83594"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	13-May-08	10721.04	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	13-May-08 07:45 PM	

+="CN83600"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	30-Jun-08	11557.50	=""	="TSF ENGINEERING Pty Ltd"	13-May-08 07:46 PM	

+="CN83618"	"Procurement of:  TAPE,MEASURING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Apr-08	14-May-08	10200.00	=""	="INDUSTRIAL AIR TOOLS"	13-May-08 07:48 PM	

+="CN83634"	"Procurement of:  MOTOR,HYDRAULIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	27-Jul-08	10407.55	=""	="BAKER & PROVAN Pty Ltd"	13-May-08 07:50 PM	

+="CN83675"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	25-Sep-08	11680.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:56 PM	

+="CN83687"	"Procurement of:  WRENCH SET,COMBINATION BOX AND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	13-May-08	10278.00	=""	="PLG INDUSTRIAL"	13-May-08 07:57 PM	

+="CN83709"	"Procurement of:  PUMP UNIT,RECIPROCATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	26-Jul-08	11260.60	=""	="PALL AUSTRALIA"	13-May-08 08:00 PM	

+="CN83716"	"Procurement of:  ADAPTER,HEADSET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	16-Aug-08	10518.62	=""	="THALES AUSTRALIA"	13-May-08 08:01 PM	

+="CN83719"	"Procurement of:  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	15-May-08	11520.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	13-May-08 08:01 PM	

+="CN83722"	"Procurement of:  BEARING UNIT,BALL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	30-Jun-08	10591.61	=""	="HEDEMORA DIESEL AUSTRALIA"	13-May-08 08:02 PM	

+="CN83725"	"Procurement of:  PLUG,PROTECTIVE,DUST AND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	21-Jul-08	10289.55	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	13-May-08 08:02 PM	

+="CN83733"	"SEALING COMPOUND"	="Defence Materiel Organisation"	14-May-08	="Adhesives and sealants"	14-May-08	27-Jun-08	11355.65	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	14-May-08 07:41 AM	

+="CN83743"	"Legal services - counsel"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	09-May-08	30-Jun-08	10000.00	=""	="Gageler, Stephen"	14-May-08 09:30 AM	

+="CN83746"	"packaging"	="Royal Australian Mint"	14-May-08	="Carded packaging"	07-Apr-08	21-Apr-08	10956.00	=""	="RODENPRINT P/ L"	14-May-08 09:36 AM	

+="CN83787"	"Supply of Art Works"	="Department of Parliamentary Services"	14-May-08	="Visual art services"	06-May-08	30-May-08	10240.01	=""	="Helen Maxwell Gallery"	14-May-08 10:41 AM	

+="CN83792"	"Provision of Project Management Training Services"	="Department of Parliamentary Services"	14-May-08	="Education and Training Services"	13-May-08	30-Jun-08	10205.80	=""	="Tanner James Management"	14-May-08 10:41 AM	

+="CN83794"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	09-Apr-08	09-Apr-08	11705.10	=""	="DAVIES FERGUSON PTY LTD"	14-May-08 10:48 AM	

+="CN83799"	"recruitment fees"	="Royal Australian Mint"	14-May-08	="Recruitment services"	14-Apr-08	14-Apr-08	11600.34	=""	="HAYS PERSONNEL SERVICES P/L"	14-May-08 11:10 AM	

+="CN83802"	"placement fee"	="Royal Australian Mint"	14-May-08	="Recruitment services"	16-Apr-08	16-Apr-08	10469.16	=""	="MANPOWER"	14-May-08 11:19 AM	

+="CN83815"	"Fitness for Duty Medical Assessment"	="Centrelink"	14-May-08	="Healthcare Services"	10-Apr-08	30-Jun-08	11000.00	=""	="Unified Healthcare Group"	14-May-08 12:25 PM	

+="CN83818"	"Business Administration Services"	="Centrelink"	14-May-08	="Business administration services"	08-May-08	30-Jun-08	10000.00	=""	="Axis Searching and Settlements"	14-May-08 12:26 PM	

+="CN83819-A1"	" Advertising "	="Centrelink"	14-May-08	="Advertising"	09-Nov-07	30-Jun-08	11000.00	=""	="HMA Blaze Pty Ltd"	14-May-08 12:26 PM	

+="CN83823"	"Hotel Lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	11-Apr-08	30-Jun-08	10000.00	=""	="Milikapiti Sports and Social Club"	14-May-08 12:27 PM	

+="CN83827"	"Hotel, lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	24-Sep-07	30-Jun-08	10010.00	=""	="Canberra Highland Society and Burns Club"	14-May-08 12:28 PM	

+="CN83828"	"Office supplies"	="Centrelink"	14-May-08	="Office supplies"	04-Sep-07	30-Jun-08	11909.70	=""	="Corporate Express Australia Limited"	14-May-08 12:28 PM	

+="CN83835"	"Computing"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-Jun-08	11499.99	=""	="Dimension Data Learning Solutions"	14-May-08 12:29 PM	

+="CN83838"	"Front Office Design Services"	="Centrelink"	14-May-08	="Graphic design"	02-May-08	30-Jun-08	10000.00	=""	="Retail Environment Design"	14-May-08 12:30 PM	

+="CN83846"	"Telecommunication services"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Aug-07	30-Jun-08	10019.42	=""	="Telstra"	14-May-08 12:32 PM	

+="CN83850"	"Early intervention services"	="Centrelink"	14-May-08	="Human resources services"	07-May-08	30-Jun-08	11000.00	=""	="CRS Australia"	14-May-08 12:32 PM	

+="CN83864"	"Removal Services"	="Centrelink"	14-May-08	="Material packing and handling"	04-Jan-08	30-Jun-08	11220.00	=""	="Two-Way Taxi Trucks"	14-May-08 12:34 PM	

+="CN83866"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	07-May-08	30-Jun-08	11000.00	=""	="Insite Injury Management Group"	14-May-08 12:35 PM	

+="CN83867"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	07-May-08	30-Jun-08	10000.00	=""	="OTR Consultants"	14-May-08 12:35 PM	

+="CN83868"	"Staff Medicals"	="Centrelink"	14-May-08	="Human resources services"	09-Apr-08	30-Jun-08	11000.00	=""	="HDA Medical Group"	14-May-08 12:35 PM	

+="CN83870"	"Staff medical assessments"	="Centrelink"	14-May-08	="Healthcare Services"	04-Mar-08	30-Jun-08	10450.00	=""	="CRS Australia"	14-May-08 12:35 PM	

+="CN83872"	"Fitout management"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-08	11767.25	=""	="Greenway Architects (SA) Pty Ltd"	14-May-08 12:35 PM	

+="CN83874"	"Health care equipment"	="Centrelink"	14-May-08	="Human resources services"	22-Apr-08	30-Jun-08	11000.00	=""	="MLCOA"	14-May-08 12:36 PM	

+="CN83875"	"Early intervention services"	="Centrelink"	14-May-08	="Human resources services"	21-Apr-08	30-Jun-08	11000.00	=""	="Konekt Australia Pty Ltd"	14-May-08 12:36 PM	

+="CN83878"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	24-Apr-08	30-Jun-08	10000.00	=""	="CRS Australia"	14-May-08 12:36 PM	

+="CN83881"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	11-May-08	11220.00	=""	="Commstar Communications"	14-May-08 12:37 PM	

+="CN83887"	"External training"	="Centrelink"	14-May-08	="Vocational training"	23-Apr-08	30-Jun-08	10126.88	=""	="Australian Public Servce Commission"	14-May-08 12:37 PM	

+="CN83888"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	23-Apr-08	30-Jun-08	11000.00	=""	="Actualise Consulting"	14-May-08 12:39 PM	

+="CN83902"	"Security Guard, Victoria Park,WA"	="Centrelink"	14-May-08	="Security and personal safety"	29-Apr-08	30-Jun-08	10771.20	=""	="Wilson Security"	14-May-08 12:41 PM	

+="CN83904"	"Guard Services at Fremantle, WA"	="Centrelink"	14-May-08	="Security and personal safety"	29-Apr-08	30-Jun-08	10771.20	=""	="Wilson Security"	14-May-08 12:41 PM	

+="CN83886-A3"	"Provision of Job Skills Training programs"	="CRS Australia"	14-May-08	="Job search skills instructional materials"	13-May-08	21-Oct-09	10092.50	=""	="GFM Training and Development"	14-May-08 12:42 PM	

+="CN83920"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	08-Apr-08	04-May-08	11557.70	=""	="DESA Australia Pty Ltd"	14-May-08 12:44 PM	

+="CN83921"	"Hotel, lodging and meeting faciities"	="Centrelink"	14-May-08	="Human resources services"	08-Apr-08	30-Jun-08	10000.00	=""	="Leadership Centre Catholic Missions"	14-May-08 12:45 PM	

+="CN83935"	"Fitout works"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	30-Jun-08	11000.00	=""	="KL Bartlett Pty Ltd"	14-May-08 12:48 PM	

+="CN83939"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	11-Apr-08	30-Jun-08	11566.50	=""	="Help Desk Associates Australasia Pty Ltd"	14-May-08 12:48 PM	

+="CN83952"	"Signage"	="Centrelink"	14-May-08	="Signage and accessories"	03-Apr-08	30-May-08	11627.00	=""	="Tint Design Pty Ltd"	14-May-08 12:50 PM	

+="CN83953"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	03-Apr-08	01-May-08	10000.00	=""	="K J Ross and Associates"	14-May-08 12:50 PM	

+="CN83962"	"Workstations and Storage Units"	="Centrelink"	14-May-08	="Signage and accessories"	09-Apr-08	16-May-08	11926.20	=""	="Schiavello (WA) Pty Ltd"	14-May-08 12:51 PM	

+="CN83967"	"Conference facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	08-Apr-08	09-Apr-08	11951.51	=""	="Country Comfort Greenway"	14-May-08 12:52 PM	

+="CN83971"	"Tub Chairs, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	03-Apr-08	02-May-08	11055.00	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:53 PM	

+="CN83980"	"Data cabling"	="Centrelink"	14-May-08	="Office supplies"	04-Feb-08	30-Jun-08	10868.00	=""	="Integrated Cabling Solutions Pty Ltd"	14-May-08 12:54 PM	

+="CN83983"	"Accommodation, Berrimah, NT"	="Centrelink"	14-May-08	="Real estate services"	02-Oct-07	30-Jun-08	10924.74	=""	="Yilli Rreung Housing Aboriginal Group"	14-May-08 12:54 PM	

+="CN83996"	"Valuations"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Apr-08	11-Apr-08	11000.00	=""	="Australian Valuation Office"	14-May-08 12:56 PM	

+="CN84009"	"Refills for Psychologists test kits"	="Centrelink"	14-May-08	="Paper Materials and Products"	30-Apr-08	30-Jun-08	11052.60	=""	="Harcourt Assessment"	14-May-08 12:58 PM	

+="CN84039"	"National Support Office Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	18-Apr-08	10862.50	=""	="Aspen Funds Management Ltd"	14-May-08 01:04 PM	

+="CN84040"	"Guarding Services"	="Centrelink"	14-May-08	="Security and personal safety"	15-Apr-08	05-May-08	11001.11	=""	="Secom Australia Pty Ltd"	14-May-08 01:04 PM	

+="CN84051"	"Furniture and fitout Frankston, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Apr-08	25-May-08	11401.50	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 01:06 PM	

+="CN84053"	"Building work"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Apr-08	31-May-08	11539.00	=""	="Latin Interiors Pty Ltd"	14-May-08 01:06 PM	

+="CN84055"	"Furniture removal"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Apr-08	30-Jun-08	10947.20	=""	="Wridgways The Removalists"	14-May-08 01:06 PM	

+="CN84056"	"Relocation, delivery, removal and disposal of office items"	="Centrelink"	14-May-08	="Storage"	21-Apr-08	21-Apr-08	11946.00	=""	="1st Fleet Pty Ltd"	14-May-08 01:06 PM	

+="CN84061"	"computer hardware"	="Royal Australian Mint"	14-May-08	="Computers"	17-Apr-08	17-Apr-08	10742.60	=""	="DELL AUSTRALIA PTY LIMITED"	14-May-08 01:20 PM	

+="CN84075"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	14-May-08	="Aircraft spars"	14-May-08	31-Oct-08	11937.75	=""	="MILSPEC SERVICES PTY LTD"	14-May-08 02:35 PM	

+="CN84085"	"International Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	09-Aug-07	09-Sep-07	11435.70	=""	="QANTAS AIRWAYS LTD"	14-May-08 03:00 PM	

+="CN84087"	"Property Management"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	13-Aug-07	31-Aug-07	10763.50	=""	="Property Concept & Management P/L"	14-May-08 03:00 PM	

+="CN84090"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	14-Aug-07	20-Aug-07	10442.71	=""	="AUSTRALIA POST (ACC 6102084)"	14-May-08 03:00 PM	

+="CN84091"	"Waste Collection"	="Department of Foreign Affairs and Trade"	14-May-08	="Refuse disposal and treatment"	14-Aug-07	28-Aug-07	10794.43	=""	="SITA Environmental Solutions"	14-May-08 03:00 PM	

+="CN84095"	"Electrical Installation"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	05-Sep-07	11066.00	=""	="Delta Building Automation Pty Ltd"	14-May-08 03:01 PM	

+="CN84106"	"Security Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	13-Aug-07	10-Sep-07	10712.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	14-May-08 03:03 PM	

+="CN84084"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	10325.46	=""	="LANDROVER"	14-May-08 03:08 PM	

+="CN84098-A1"	" Power supply "	="Defence Materiel Organisation"	14-May-08	="Air transportation support systems and equipment"	26-Mar-08	03-Apr-08	10971.45	=""	="BAE Systems"	14-May-08 03:20 PM	

+="CN84123"	"Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	20-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:38 PM	

+="CN84131"	"Secure Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	21-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:39 PM	

+="CN84132"	"Secure Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	21-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:40 PM	

+="CN84143"	"ICON LINK"	="Department of Human Services"	14-May-08	="Computer Equipment and Accessories"	29-Apr-08	30-Jun-08	11550.00	=""	="ICON DEPARTMENT OF FINANCE & ADMINISTRATION"	14-May-08 04:23 PM	

+="CN84147"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	11559.90	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84148"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	10247.39	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84150"	"Training Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	28-Aug-07	11453.70	=""	="Wordly Wisdom Writing & Consultancy"	14-May-08 04:34 PM	

+="CN84151"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Aug-07	31-Aug-07	10218.57	=""	="Clicks IT Recruitment"	14-May-08 04:35 PM	

+="CN84152"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	24-Aug-07	11-Sep-07	11132.00	=""	="G4S International"	14-May-08 04:35 PM	

+="CN84165"	"ICT Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	23-Aug-07	31-Aug-07	10164.04	=""	="Emerson Network Power Global"	14-May-08 04:37 PM	

+="CN84168"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	28-Aug-07	31-Aug-07	10524.80	=""	="JR Global Logistics Pty Ltd"	14-May-08 04:37 PM	

+="CN84179"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	31-Aug-07	30-Sep-07	10544.65	=""	="Translating & Interpreting Svs"	14-May-08 04:56 PM	

+="CN84183"	"Training Expenditure"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	28-Sep-07	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	14-May-08 04:56 PM	

+="CN84189"	"Equipment Lease"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	06-Sep-07	31-Dec-07	11950.16	=""	="HP Financial Services"	14-May-08 04:57 PM	

+="CN84192"	"UNESCO Conference"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	03-Nov-07	11005.74	=""	="Susan Pascoe"	14-May-08 04:58 PM	

+="CN84193"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	20-Sep-07	11633.24	=""	="AUSTRALIA POST (ACC 6102084)"	14-May-08 04:58 PM	

+="CN84216"	"Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	18-Sep-07	18-Oct-07	10138.60	=""	="QANTAS AIRWAYS LTD"	14-May-08 05:01 PM	

+="CN84222"	"Property Management"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	18-Oct-07	10077.76	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 05:02 PM	

+="CN84224"	"Recruitment Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	25-Sep-07	30-Sep-07	10848.13	=""	="hma Blaze Pty Limited"	14-May-08 05:03 PM	

+="CN84225"	"Training Expenditure"	="Department of Foreign Affairs and Trade"	14-May-08	="Education and Training Services"	26-Sep-07	30-Sep-07	10000.00	=""	="Australian National University"	14-May-08 05:03 PM	

+="CN84226"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	26-Sep-07	31-Aug-08	10600.00	=""	="ARTBANK"	14-May-08 05:03 PM	

+="CN84227"	"Hotel Hire - APEC"	="Department of Foreign Affairs and Trade"	14-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Sep-07	15-Oct-07	11830.00	=""	="INTERCONTINENTAL SYDNEY"	14-May-08 05:04 PM	

+="CN84232"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Human resources services"	28-Sep-07	28-Sep-07	11355.30	=""	="ICON RECRUITMENT PTY LTD"	14-May-08 05:05 PM	

+="CN84250"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	29-Aug-07	26-Sep-07	10900.00	=""	="Kobra Shredders Australia"	14-May-08 05:07 PM	

+="CN84253"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	03-Sep-07	01-Oct-07	10396.56	=""	="Crystal Echo Pty. Ltd."	14-May-08 05:08 PM	

+="CN84259"	"Security Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	11-Sep-07	09-Oct-07	11599.00	=""	="KABA Australia Pty Ltd"	14-May-08 05:08 PM	

+="CN84265"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	12-Sep-07	14-Sep-08	11011.00	=""	="Preemptive Consulting Pty Ltd"	14-May-08 05:09 PM	

+="CN84278"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	26-Sep-07	30-Sep-07	10177.86	=""	="AFC GROUP PTY LTD"	14-May-08 05:11 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val12000to16000.xls
@@ -1,1 +1,770 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN77998"	"CV Prep/Transition Coaching"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	17-Dec-07	30-Dec-07	15565.00	=""	="INSITE INJURY MANAGEMENT GROUP"	12-May-08 09:29 AM	

+="CN78001"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	17-Dec-07	12001.00	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 09:30 AM	

+="CN78002"	"PURCHASE OF MOTOR VEHICLE PARTS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Dec-07	31-Dec-07	14937.78	=""	="LAND ROVER AUSTRALIA PTY LTD"	12-May-08 09:30 AM	

+="CN78019"	"catalyst"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	21-Dec-07	14443.44	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 09:34 AM	

+="CN78034"	"handheld green laser"	="Department of Defence"	12-May-08	="Electrical components"	15-Dec-07	20-Dec-07	13161.03	=""	="LASERGLOW.COM LTD"	12-May-08 09:37 AM	

+="CN78047"	"LEAD AUDITOR TRAINING CONDUCTED IN-HOUSE"	="Department of Defence"	12-May-08	="Electronic reference material"	14-Dec-07	29-Feb-08	12980.00	=""	="SOUTHPAC AEROSPACE"	12-May-08 09:39 AM	

+="CN78071"	"NLP Training"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	30-Jun-08	13200.00	=""	="SYNERGETIC TRAINING SOLUTIONS"	12-May-08 09:45 AM	

+="CN78073"	"HP Computer & Docking station"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Jan-08	12424.50	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 09:45 AM	

+="CN78085"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Oct-08	12000.00	=""	="YELLOW EDGE PTY LTD"	12-May-08 09:48 AM	

+="CN78088"	"PRINT PRODUCTION LWP-G 7-4-12 x 6,000 COPYES"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	19-Dec-07	22-Jan-08	12441.00	=""	="PRESS HERE PTY LTD"	12-May-08 09:49 AM	

+="CN78091"	"Print Production LWP-G 7-7-1-x 900 Copies"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Dec-07	22-Jan-08	12876.60	=""	="PRESS HERE PTY LTD"	12-May-08 09:49 AM	

+="CN78092"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	12180.30	=""	="ACTIVE VOICE LLC"	12-May-08 09:49 AM	

+="CN78099"	"Software"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Dec-07	12650.01	=""	="IMBROS PTY LTD"	12-May-08 09:51 AM	

+="CN78103"	"COLOUR PRINTS"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Dec-07	30-Jun-09	13199.97	=""	="KONICA MINOLTA BUSINESS"	12-May-08 09:51 AM	

+="CN78107"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Dec-07	19-Dec-07	13603.70	=""	="GREENFROG PROMOTIONS"	12-May-08 09:52 AM	

+="CN78111"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	14426.50	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78112"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-07	14222.10	=""	="GENEVA GROUP"	12-May-08 09:53 AM	

+="CN78118"	"Bag Individual Equipment, Carrier Grenade, Cover Hydration System"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	07-May-08	30-May-08	13741.80	="CC1V0B"	="Sord Australia"	12-May-08 09:55 AM	

+="CN78141"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	13332.00	=""	="COMMANDER (ACT)"	12-May-08 09:58 AM	

+="CN78144"	"HOTEL ACCOMMODATION"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	18-Dec-07	18-Dec-07	13659.70	=""	="PUTERI HOTELS SDN BHD"	12-May-08 09:59 AM	

+="CN78145"	"Computers and accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	21-Dec-07	12967.77	=""	="COMMANDER INTEGRATED NETWORKS"	12-May-08 09:59 AM	

+="CN78189"	"Cognitive Skills Assessment Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Human resources services"	17-Mar-08	30-Jun-08	12285.00	=""	="THE AUSTRALIAN COUNCIL FOR EDUCATIONAL RESEARCH LIMITED"	12-May-08 11:39 AM	

+="CN78210"	"REPAIR AND OH OF BLACK HAWK LANDING GEAR ASSY."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	12-May-08	30-Jun-08	13603.66	=""	="SAAL"	12-May-08 12:45 PM	

+="CN78216"	"Supply and Install Audio System"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-Dec-07	21-Dec-07	14231.90	=""	="INTOUCH ELECTRONICS"	12-May-08 01:06 PM	

+="CN78231"	"Manufacture"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	03-Mar-08	12947.00	=""	="DIEMOULD TOOLING SERVICES PTY LTD"	12-May-08 01:08 PM	

+="CN78244"	"Computers and accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Dec-07	14-Dec-07	15759.46	=""	="COMPUTERCORP PTY LTD"	12-May-08 01:09 PM	

+="CN78254"	"DESTR CMS WORKSHOP 12-13 MARCH 2008"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	12617.00	=""	="AINSLIE FOOTBALL & SOCIAL CLUB"	12-May-08 01:10 PM	

+="CN78271"	"INTERFACE OPERATIONAL SMS MESSAGES TO EMAIL TO CIRCUMVENT INABILITY TO CONNECT MOBILE PHONE TO DR"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	05-Dec-07	02-Feb-08	15549.12	=""	="FAST NETWORKS PTY LTD"	12-May-08 01:12 PM	

+="CN78278"	"POC: Carol Bott PHONE: 6265 0349"	="Department of Defence"	12-May-08	="Office supplies"	05-Dec-07	09-Dec-07	13900.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 01:13 PM	

+="CN78283"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	05-Dec-07	13068.00	=""	="JPM MEDIA"	12-May-08 01:14 PM	

+="CN78293"	"desktop applications including Word, Managing your time in outlook, Excel, Project, Minute taking"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	30-Jun-08	15488.00	=""	="ELECTUS PTY LTD"	12-May-08 01:16 PM	

+="CN78326"	"PWB MANUFACTURING SERVICES FOR 48 PWB BOARD IS 1MM THICK WITH GOLD FINISH ON 10 DAY M/F"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Dec-07	20-Dec-07	13717.00	=""	="OPTIMUM DESIGN ASSOCIATES PTY LTD"	12-May-08 01:21 PM	

+="CN78337"	"HP Computer & Docking station"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Dec-07	07-Dec-07	15249.30	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 01:23 PM	

+="CN78342"	"JOB SEARCH SKILLS"	="Department of Defence"	12-May-08	="Audio and visual presentation and composing equipment"	04-Dec-07	17-Mar-08	14279.76	=""	="AUSTRALIAN PUBLIC SERVICE"	12-May-08 01:24 PM	

+="CN78350"	"TRAINING"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	05-Dec-07	14200.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	12-May-08 01:25 PM	

+="CN78364"	"ELECTRICAL WORKS"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	04-Dec-07	30-Jun-08	14669.60	=""	="CMP ELECTRICAL AUSTRALIA PTY LTD"	12-May-08 01:27 PM	

+="CN78369"	"ADMINSTRATIVE SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	06-Mar-08	12901.50	=""	="TOP OFFICE PERSONNEL PTY LTD"	12-May-08 01:28 PM	

+="CN78370"	"Road freight to and from Tindal"	="Department of Defence"	12-May-08	="Mass transfer equipment"	05-Dec-07	05-Dec-07	14500.20	=""	="PDL TOLL"	12-May-08 01:28 PM	

+="CN78372"	"Actros Maintainers course"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Dec-07	08-Feb-08	12500.00	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 01:29 PM	

+="CN78374"	"RESEARCH FOR DPERS"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Dec-07	30-Jun-08	15000.00	=""	="LEANDER P HANSAR"	12-May-08 01:29 PM	

+="CN78389-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	16-Oct-07	13200.00	=""	="ETHOS CRS CONSULTING PTY LTD"	12-May-08 01:31 PM	

+="CN78398"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	30-Jun-08	15800.00	=""	="SPARKE HELMORE LAWYERS"	12-May-08 01:32 PM	

+="CN78412"	"TRANSITION AIDE"	="Department of Defence"	12-May-08	="Educational institutions"	10-Dec-07	10-Dec-07	12340.48	=""	="THE HEIGHTS PRIMARY SCHOOL"	12-May-08 01:35 PM	

+="CN78424"	"    Managed PKI for SSL Premium Cert Units (0006855)    "	="Therapeutic Goods Administration"	12-May-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	01-May-08	14432.00	=""	="Verisign Australia Limited"	12-May-08 01:38 PM	

+="CN78434"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	13200.00	=""	="WALTER GEOFFREY THOMAS MILLER"	12-May-08 01:40 PM	

+="CN78435"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	13200.00	=""	="CAVAN HOGUE"	12-May-08 01:40 PM	

+="CN78441"	"FURNISHINGS"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	06-Dec-07	01-May-08	14762.00	=""	="HARTEC ENGINEERING SERVICES"	12-May-08 01:41 PM	

+="CN78447"	"AAT matter"	="Therapeutic Goods Administration"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	18-Jan-08	14-Mar-08	13983.20	=""	="Australian Government Solicitor - Sydney"	12-May-08 01:43 PM	

+="CN78456"	"Contracted personnel - Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	12-Mar-08	09-May-08	15470.00	="DFAT07-DID-004"	="COMPAS PTY LIMITED"	12-May-08 01:43 PM	

+="CN78473"	"MACQUARIE POCKET DICTIONARIES , COLLINS COBUILD AD VANCE LEARNERS, MACQUARIE CONCISE DICTIONARIES"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Dec-07	07-Dec-07	13134.66	=""	="BRIDGE BOOKSHOP & MELTING POT PRESS"	12-May-08 01:45 PM	

+="CN78488"	"FACOPS - SA2391"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	14300.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:48 PM	

+="CN78495"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	15239.99	=""	="EBSWORTH & EBSWORTH"	12-May-08 01:48 PM	

+="CN78501"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	31-Mar-08	12815.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 01:49 PM	

+="CN78509"	"DESIGN FEES FOR RECTIFICATION OF LEAKING FLOORS"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Dec-07	30-Jun-08	13750.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:50 PM	

+="CN78513"	"Advertising: Melbourne Age, Weekend Australian & The Australian"	="Department of Defence"	12-May-08	="Printed media"	20-Dec-07	07-Jan-08	15533.07	=""	="HMA BLAZE PTY LTD"	12-May-08 01:50 PM	

+="CN78519"	"CISCO Switches"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	20-Dec-07	20-Dec-07	12553.50	=""	="FIND IT HERE PTY LTD"	12-May-08 01:51 PM	

+="CN78524"	"Broadband connection"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	15923.21	=""	="TELSTRA BIG POND AUST PTY LTD"	12-May-08 01:53 PM	

+="CN78526"	"COLOUR PRINTS"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	20-Dec-07	30-Jun-09	13199.97	=""	="KONICA MINOLTA BUSINESS"	12-May-08 01:53 PM	

+="CN78530"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	20-Dec-07	30-Jun-08	12155.00	=""	="UNIMAIL PTY LTD"	12-May-08 01:54 PM	

+="CN78531"	"ADVERTISING"	="Department of Defence"	12-May-08	="Advertising"	20-Dec-07	16-Jan-08	14572.80	=""	="HMA BLAZE PTY LTD"	12-May-08 01:54 PM	

+="CN78590"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	14402.85	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:05 PM	

+="CN78594"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Dec-07	13612.50	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	12-May-08 02:05 PM	

+="CN78600"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	12870.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78611"	"Pro Windows annual maintenance - December 2007 to December 2008"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	31-Dec-08	12331.00	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	12-May-08 02:09 PM	

+="CN78628"	"DSTO RATIONALISATION PROJECT MASON-RELOCATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Jan-08	30-Jun-08	12375.00	=""	="MASON AUSTRALASIA PTY LTD"	12-May-08 02:11 PM	

+="CN78630"	"Wind Generator for SWBTA"	="Department of Defence"	12-May-08	="Power generation"	13-Nov-07	14-Dec-07	12612.77	=""	="PS MANAGEMENT CONSULTANTS"	12-May-08 02:11 PM	

+="CN78635"	"BREAKDOWN REPAIRS TO MAIN BLAST TANK CORROSION CONTROL"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	10-Apr-08	30-Jun-08	12535.45	=""	="BLASTMASTER"	12-May-08 02:12 PM	

+="CN78650"	"Electrical Components"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	10-Apr-08	21-Apr-08	14109.70	=""	="FINE-TECH ELECTRONIC SOLUTIONS"	12-May-08 02:13 PM	

+="CN78651"	"COURSE TRANSPORT (HIRE VEHICLES)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Nov-07	30-Jun-08	14983.94	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:13 PM	

+="CN78652"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printed media"	10-Apr-08	05-May-08	14152.60	=""	="PARAGON PRINTERS"	12-May-08 02:13 PM	

+="CN78653"	"VEHICLE LEASE FLLA  NOV - DEC 07"	="Department of Defence"	12-May-08	="Motor vehicles"	17-Dec-07	18-Dec-07	14370.46	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:13 PM	

+="CN78663"	"COURSE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jan-08	29-Feb-08	12437.05	=""	="TANNER JAMES MANAGEMENT CONSULTANTS"	12-May-08 02:14 PM	

+="CN78668"	"CATERING STORES"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	03-Dec-07	19-Dec-07	15919.83	=""	="BUNZL LTD"	12-May-08 02:14 PM	

+="CN78671"	"Whole ship noise assess & report @HMAS Kanimbla"	="Department of Defence"	12-May-08	="Personal safety and protection"	20-Mar-08	30-Jun-08	14925.44	=""	="CAREY MURPHY & ASSOCIATES"	12-May-08 02:14 PM	

+="CN78673"	"COURSE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jan-08	29-Feb-08	12600.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 02:14 PM	

+="CN78676"	"A5 Green 3 ring binders 22mm"	="Department of Defence"	12-May-08	="Office supplies"	10-Apr-08	17-Apr-08	14795.00	=""	="BANG STATIONARY AND PACKAGING"	12-May-08 02:15 PM	

+="CN78682"	"staff training"	="Department of Defence"	12-May-08	="Electronic reference material"	10-Apr-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	12-May-08 02:15 PM	

+="CN78683"	"FURNITURE"	="Department of Defence"	12-May-08	="Accommodation furniture"	03-Jan-08	29-Feb-08	12020.80	=""	="ELITE BUILT PTY LTD"	12-May-08 02:15 PM	

+="CN78688"	"AIR FARES"	="Department of Defence"	12-May-08	="Aircraft"	31-Oct-07	30-Jun-08	13917.54	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:16 PM	

+="CN78698"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	17-Dec-07	12057.81	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:17 PM	

+="CN78711"	"DSTO AOD Implemantation Support (Phase 2) Mid-Poin Payment / and Completion payment as per Agreement"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Jan-08	11-Jan-08	13062.51	=""	="CWCC GROUP PTY LTD"	12-May-08 02:18 PM	

+="CN78722"	"WAGES"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	04-Dec-07	04-Dec-07	15746.55	=""	="VIMALA MENON  A/P PB MENON"	12-May-08 02:18 PM	

+="CN78726"	"Payment of Qantas Invoice"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Oct-07	05-Dec-07	15667.55	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:19 PM	

+="CN78736"	"Provision of victuals and services to HMAS Perth"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	30-Oct-07	30-Jun-08	14872.45	=""	="AMOS INTERNATIONAL (S) PTY LTD"	12-May-08 02:19 PM	

+="CN78739"	"VEHICLE LEASE FLLA  B NOV 07"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	04-Dec-07	13424.81	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:19 PM	

+="CN78740"	"Hardware"	="Department of Defence"	12-May-08	="Hardware"	14-Apr-08	28-Apr-08	12790.60	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 02:19 PM	

+="CN78745"	"CONTAINER HIRE FLLA B NOV 07"	="Department of Defence"	12-May-08	="Containers and storage"	02-Dec-07	04-Dec-07	12662.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:19 PM	

+="CN78749"	"QANTAS BILLS"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Oct-07	05-Dec-07	13888.48	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:20 PM	

+="CN78750"	"LEASE OF VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Apr-08	31-Dec-08	13408.40	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:20 PM	

+="CN78755"	"Air Fares 16 AD Regt"	="Department of Defence"	12-May-08	="Aircraft"	31-Oct-07	21-Dec-07	12796.40	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:20 PM	

+="CN78759"	"PSP - DIGITAL INFORMATION ASSISTANT - RAN SURVEYS"	="Department of Defence"	12-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	13442.00	=""	="HAYS SPECIALIST RECRUITMENT"	12-May-08 02:20 PM	

+="CN78765"	"PSP - DIGITAL INFORMATION ASSISTANT - EXTERNAL SURVEYS"	="Department of Defence"	12-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	13442.00	=""	="HAYS SPECIALIST RECRUITMENT"	12-May-08 02:21 PM	

+="CN78766"	"ELECTRICAL WORK"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	07-Jan-08	07-Jan-08	14608.00	=""	="ISIS PROJECT PTY LTD"	12-May-08 02:21 PM	

+="CN78772"	"LCD MONITORS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	14-Jan-08	12760.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:21 PM	

+="CN78777"	"INVOICE FOR TEMPORARY  ACCOMODATION IN JUNE/JULY 2007 - HUNTER FLOODS"	="Department of Defence"	12-May-08	="Accommodation furniture"	01-Oct-07	31-Oct-07	12774.00	=""	="DHA - CENTRAL OFFICE"	12-May-08 02:21 PM	

+="CN78795"	"VEHICLE REPAIRS"	="Department of Defence"	12-May-08	="Motor vehicles"	17-Sep-07	03-Dec-07	12424.68	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:22 PM	

+="CN78834"	"QANTAS AIRFARES FOR HQ81WING WILLIAMTOWN FOR OCTOEBR 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	13587.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:25 PM	

+="CN78835"	"JUSTIFICATION RFT"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	20-Apr-08	12650.00	=""	="EDS (AUSTRALIA) PTY LTD"	12-May-08 02:25 PM	

+="CN78841"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Apr-08	30-May-08	15394.50	=""	="DIRECT ERGONOMICS PTY LTD"	12-May-08 02:25 PM	

+="CN78847"	"Printing"	="Department of Defence"	12-May-08	="Office supplies"	14-Apr-08	28-Apr-08	13464.08	=""	="LOVEDESIGN GROUP"	12-May-08 02:25 PM	

+="CN78851"	"CONTAINER HIRE FLLA AFG"	="Department of Defence"	12-May-08	="Containers and storage"	01-Jul-07	05-Dec-07	14886.24	=""	="ES-KO INTERNATIONAL INC."	12-May-08 02:26 PM	

+="CN78852"	"FOOD AND BEVERAGE CHARGES"	="Department of Defence"	12-May-08	="Restaurants and catering"	02-Jan-08	02-Jan-08	12295.01	=""	="HYATT REGENCY ADELAIDE"	12-May-08 02:26 PM	

+="CN78861"	"Computer equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	02-Jan-08	30-Jan-08	15061.86	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:27 PM	

+="CN78862"	"CHARTER FLIGHT"	="Department of Defence"	12-May-08	="Travel facilitation"	11-Apr-08	30-Apr-08	12400.00	=""	="HELIWORK (WA) PTY LTD"	12-May-08 02:27 PM	

+="CN78877"	"POC: Simon Carr Contact: 02 6265 0678"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	02-May-08	13750.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78879"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	02-Jan-08	29-Feb-08	13163.70	=""	="BAC SYSTEMS PTY LTD"	12-May-08 02:28 PM	

+="CN78890"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	11-Apr-08	30-Jun-08	12945.00	=""	="CLAYTON UTZ"	12-May-08 02:29 PM	

+="CN78891"	"MONTHLY SECURITY SERVICES - JANUARY 2008"	="Department of Defence"	12-May-08	="Security surveillance and detection"	30-Mar-08	10-Apr-08	15106.06	=""	="COMPASS - INTEGRATED LOGISTICS &"	12-May-08 02:29 PM	

+="CN78903"	"MECHANICAL PARTS"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	12-Apr-08	01-Jun-08	15159.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:29 PM	

+="CN78910"	"POC: Stephen Beresford Contact: 02 6266 9015"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	19-May-08	13304.50	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:30 PM	

+="CN78912"	"MISC HARDWARE SUPPLIES"	="Department of Defence"	12-May-08	="Hardware"	12-Apr-08	01-Jun-08	14602.47	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78914"	"PERSONAL EFFICIENCY PROGRAM"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	26-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	12-May-08 02:30 PM	

+="CN78915"	"FEB LEASE OF VEHICLES- FLLA B"	="Department of Defence"	12-May-08	="Motor vehicles"	01-Mar-08	12-Apr-08	15243.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78916"	"Payment of Executive Conference Package"	="Department of Defence"	12-May-08	="Food and beverage industries"	21-Dec-07	21-Dec-07	13801.28	=""	="LINDENDERRY AT RED HILL PTY LTD"	12-May-08 02:30 PM	

+="CN78923"	"AIR FORCE HQ IMAGE GUIDE"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Apr-08	13998.60	=""	="PARAGON PRINTERS"	12-May-08 02:31 PM	

+="CN78926"	"KA Band LNB filters"	="Department of Defence"	12-May-08	="Printed circuits and integrated circuits and microassemblies"	11-Apr-08	06-Jun-08	12100.00	=""	="EM SOLUTIONS PTY LTD"	12-May-08 02:31 PM	

+="CN78943"	"GERALDTON HMP UPDATE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	14813.70	=""	="ENVIRONMENTAL RESOURCES"	12-May-08 02:33 PM	

+="CN78944"	"power meter single channel"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	17-Dec-07	18-Dec-08	15341.68	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 02:33 PM	

+="CN78976"	"DIER 0607-1166 requests DRN services to provide a Station (SBRS) in the Northern Territory."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-May-08	13513.50	=""	="SERVER RACKS AUSTRALIA"	12-May-08 02:35 PM	

+="CN78978"	"S4088, WR 300074321, HMAS Watson fence Boundary Su services to determine and physcially mark externa"	="Department of Defence"	12-May-08	="Security and control equipment"	17-Dec-07	30-Jun-08	13420.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:35 PM	

+="CN78986"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	12-May-08	="Recreational aircraft"	18-Apr-08	31-Dec-08	12416.75	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:36 PM	

+="CN79001"	"TOYOTA L/CRUISER S5 ARMOURED GLASS B6 WINDSCREEN"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Apr-08	12-Apr-08	14488.07	=""	="IZ SERVICES"	12-May-08 02:37 PM	

+="CN79008"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	12507.00	=""	="AXION AUSTRALIA PTY LTD"	12-May-08 02:37 PM	

+="CN79030"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	08-Apr-08	30-Jun-10	14690.24	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 02:39 PM	

+="CN79031"	"ABCA AGM 08"	="Department of Defence"	12-May-08	="Education and Training Services"	07-Apr-08	30-Apr-08	15526.01	=""	="CAPTAIN COOK CRUISES"	12-May-08 02:39 PM	

+="CN79042"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	31-Mar-08	12914.00	=""	="CLAYTON UTZ"	12-May-08 02:40 PM	

+="CN79044"	"QANTAS TRAVEL"	="Department of Defence"	12-May-08	="Aircraft"	14-Mar-08	01-Apr-08	13165.22	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:40 PM	

+="CN79058"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	04-Apr-08	30-Jun-08	15312.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 02:41 PM	

+="CN79065"	"FRESH RATIONS, LAUNDRY, GAS & CLEANING"	="Department of Defence"	12-May-08	="Meat and poultry"	02-Apr-08	02-Apr-08	15718.37	=""	="AGENSI SRI CEMERLANG"	12-May-08 02:41 PM	

+="CN79081"	"QANTAS  BILLL DOD 322ECSS FEB 08"	="Department of Defence"	12-May-08	="Recreational aircraft"	19-Mar-08	31-Dec-08	15140.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:43 PM	

+="CN79085"	"ELECTRONIC COMPONENTS REQUIRED BY J6 CELL"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	18-Mar-08	28-Mar-08	13171.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:43 PM	

+="CN79091"	"Working Smart with MS Outlook course conducted on 07 April 2008"	="Department of Defence"	12-May-08	="Office and desk accessories"	28-Mar-08	30-Apr-08	12510.00	=""	="PRIORITY MANAGEMENT NSW"	12-May-08 02:44 PM	

+="CN79095"	"ITEMS REQUIRED BY J6 CELL"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	18-Mar-08	01-Apr-08	15784.90	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:44 PM	

+="CN79109"	"cost of meals for aircraft at perth airport for month of November 2007"	="Department of Defence"	12-May-08	="Packaged combination meals"	30-Nov-07	07-Apr-08	15939.83	=""	="QANTAS FLIGHT CATERING LTD"	12-May-08 02:46 PM	

+="CN79120"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Apr-08	14-Apr-08	12850.55	=""	="TELSTRA BUSINESS SERVICES"	12-May-08 02:47 PM	

+="CN79125"	"LEASE OF VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	08-Apr-08	01-Jun-08	13912.78	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:47 PM	

+="CN79133"	"09730018 2008-02 CABCHARGE BILL"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	10-Mar-08	07-Apr-08	12382.82	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:48 PM	

+="CN79139"	"RENTAL PAYMENTS"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	14716.92	=""	="ELCEETEE TRUST -E-"	12-May-08 02:49 PM	

+="CN79143"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	07-Apr-08	30-Jun-08	15000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:49 PM	

+="CN79147-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	26-May-08	13926.15	=""	="CLARIUS GROUP LIMITED"	12-May-08 02:49 PM	

+="CN79148"	"STS Young Endeavour berthed at Port Lincoln SA bet This is standard operating procedure for the Ship"	="Department of Defence"	12-May-08	="Water and wastewater treatment supply and disposal"	17-Dec-07	29-Feb-08	13379.85	=""	="SKILLED MARITIME SERVICES PTY LTD"	12-May-08 02:49 PM	

+="CN79149"	"CLASS B SECURITY CONTAINERS"	="Department of Defence"	12-May-08	="Containers and storage"	03-Apr-08	08-May-08	13659.80	=""	="PLANEX SALES PTY LTDLTD"	12-May-08 02:49 PM	

+="CN79150"	"PROVISION OF TRAVEL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	30-Jun-08	13154.93	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:50 PM	

+="CN79162"	"Provision of a Mechanical Trades Person - Sheetmet"	="Department of Defence"	12-May-08	="Professional engineering services"	03-Apr-08	30-Apr-08	12606.00	=""	="REDPATH TECHNICAL SERVICES PTY LTD"	12-May-08 02:51 PM	

+="CN79166"	"PRESENTATION OF ACCREDITED PROGRAM & LICENSES"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Apr-08	05-May-08	15675.40	=""	="BLANCHARD INTERNATIONAL PTY LTD"	12-May-08 02:51 PM	

+="CN79172"	"Audio microphone and accessories"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Apr-08	15-Apr-08	12321.46	=""	="LOTS OF WATTS PTY LTD"	12-May-08 02:52 PM	

+="CN79180"	"COLLECT OF WASTE MNGT FOR EX WALLABY 07"	="Department of Defence"	12-May-08	="Scrap and waste materials"	10-Dec-07	10-Dec-07	12092.16	=""	="WANLESS WASTECORP"	12-May-08 02:53 PM	

+="CN79190"	"APR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	30-Apr-08	03-May-08	12594.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:53 PM	

+="CN79200"	"BREAKFAST PACK REQ FOR ANZAC DAY"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-May-08	01-Jun-08	12433.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79203"	"BBQ  PACK REQ FOR ANZAC DAY DINNER"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-May-08	01-Jun-08	13840.47	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:55 PM	

+="CN79205"	"HARDWARE"	="Department of Defence"	12-May-08	="Hardware"	04-May-08	01-Jun-08	14984.69	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:55 PM	

+="CN79209"	"STATIONARY"	="Department of Defence"	12-May-08	="Office supplies"	04-May-08	01-Jun-08	14964.35	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:55 PM	

+="CN79218"	"PEP training for 6 tech serv staff (each get 4 day 6 May and 20 May)"	="Department of Defence"	12-May-08	="Electronic reference material"	04-Apr-08	30-Jun-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	12-May-08 02:56 PM	

+="CN79220"	"ACCOMMODATION"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	04-Apr-08	04-Apr-08	13396.01	=""	="BELCONNEN HOTEL/MOTEL & SERVICED"	12-May-08 02:57 PM	

+="CN79224"	"Technical contact: R.Pointon Contact: 83056678"	="Department of Defence"	12-May-08	="Water safety"	04-Apr-08	30-Jun-08	12705.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:57 PM	

+="CN79234"	"backfilling ASP2 Position, Publishing & printing"	="Department of Defence"	12-May-08	="Temporary personnel services"	03-Apr-08	30-Jun-08	15032.95	=""	="KELLY SERVICES (AUSTRALIA) LTD"	12-May-08 02:58 PM	

+="CN79235"	"BUILDING WORKS"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	16-Apr-08	30-Jun-08	12000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79236"	"Straight Motor 400V, 6.2 A Mounting position"	="Department of Defence"	12-May-08	="Hydraulic machinery and equipment"	03-Apr-08	10-Apr-08	12793.00	=""	="SEW-EURODRIVE PTY LTD"	12-May-08 02:58 PM	

+="CN79245"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-09	12097.80	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:59 PM	

+="CN79248"	"CONTRACT CLEANING SERVICES"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	17-Dec-07	31-Dec-07	14158.21	=""	="COMMERCIAL PROPERTY CLEANING PTY"	12-May-08 02:59 PM	

+="CN79271"	"FEB VEH LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	24-Apr-08	13888.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:01 PM	

+="CN79279"	"MINOR EXPENSES - FLLA A"	="Department of Defence"	12-May-08	="Office supplies"	09-Apr-08	26-Apr-08	13758.49	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:03 PM	

+="CN79281"	"PHOTOCOPIER - RWG"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	09-Apr-08	26-Apr-08	12583.24	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:03 PM	

+="CN79282"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	09-Apr-08	28-May-08	15600.00	=""	="AUSTRALIAN INSTITUTE OF COMPANY"	12-May-08 03:03 PM	

+="CN79300"	"Toughbooks with accessories purchase through DMO"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	31-Mar-06	30-May-08	15248.66	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 03:05 PM	

+="CN79302"	"Port costs Port Kembla - HMAS Wollongong Commisioning June 2007."	="Department of Defence"	12-May-08	="Marine transport"	17-Apr-08	17-Apr-08	13832.94	=""	="PORT KEMBLA PORT CORPORATION"	12-May-08 03:05 PM	

+="CN79303"	"CLOTHING REPLACEMENT OF STOCK"	="Department of Defence"	12-May-08	="Clothing"	08-Apr-08	01-May-08	12470.70	=""	="YAKKA PTY LTD"	12-May-08 03:05 PM	

+="CN79328"	"FEB LEASE OF VEHICLES- FLLA B"	="Department of Defence"	12-May-08	="Motor vehicles"	28-Feb-08	01-May-08	12515.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:08 PM	

+="CN79330"	"MAR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	31-Mar-08	02-May-08	15147.57	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:08 PM	

+="CN79332"	"VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Mar-08	02-May-08	13170.41	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:08 PM	

+="CN79334"	"Fender/Brow Hire - HMAS Kanimbla Townsville port visit 18-21 APR 08."	="Department of Defence"	12-May-08	="Transportation services equipment"	22-Apr-08	02-May-08	15225.10	=""	="PACIFIC MARINE GROUP PTY LTD"	12-May-08 03:08 PM	

+="CN79335"	"PRINTING OF JOURNALS"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Apr-08	18-Apr-08	14879.70	=""	="PIRION PTY LTD"	12-May-08 03:08 PM	

+="CN79340"	"DELIVERY OF AMPS 4.5/03 MAINTENANCE USER AND BI QUERY TRAINING"	="Department of Defence"	12-May-08	="Military watercraft"	03-Apr-08	30-May-08	12100.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 03:09 PM	

+="CN79345"	"APR 08 VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Motor vehicles"	15-Apr-08	03-May-08	14015.86	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79354"	"SUPPLY CURRENT TRANSFORMERS FOR ELECTRICITY SUB ME BASES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	09-Apr-08	30-Jun-08	15000.00	=""	="TRANSFORMER WINDING SERVICES LTD"	12-May-08 03:09 PM	

+="CN79355"	"MAR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	31-Mar-08	03-May-08	12594.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79358"	"Provisions of services for LSE-ME and HMAS ARUNTA"	="Department of Defence"	12-May-08	="Office supplies"	28-Apr-08	01-Jan-09	13686.04	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:10 PM	

+="CN79371"	"Overhaul No1 Main Jacket Cooling Water Pump"	="Department of Defence"	12-May-08	="Military watercraft"	01-Apr-08	25-Apr-08	12032.96	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:10 PM	

+="CN79384"	"Use of Exisitng ASP Contract - Evaporator Pump overhaul"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	01-Apr-08	25-Apr-08	12435.01	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:11 PM	

+="CN79386"	"PAYMENT OF SECURITY SERVICES FOR HMAS ADELAIDE IN FREMANTLE 07-10DEC07"	="Department of Defence"	12-May-08	="Security surveillance and detection"	18-Mar-08	30-May-08	12812.34	=""	="TEMPO SECURITY"	12-May-08 03:12 PM	

+="CN79396"	"This order is raised in accordance with the email on 1 Apr 08"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	01-Apr-08	07-Apr-08	14647.29	=""	="MOBIL OIL AUSTRALIA PTY LTD"	12-May-08 03:12 PM	

+="CN79397"	"FM50 PF Test Filters Carbon Free, FM53 Conformal P F Test Filter Carbon Free, S10 P6 Standard PF Tes"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	08-Apr-08	30-May-08	15356.00	=""	="OWEN INTERNATIONAL PTY LTD"	12-May-08 03:12 PM	

+="CN79406"	"Provision of Postal Supplies"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	17-Apr-08	17-Apr-08	15081.00	=""	="Canberra Mailing and Envelopes"	12-May-08 03:13 PM	

+="CN79421"	"Scoping study for database administration"	="Department of Defence"	12-May-08	="Computer services"	02-Apr-08	30-Apr-08	13200.00	=""	="OCEAN SOFTWARE PTY LTD"	12-May-08 03:14 PM	

+="CN79433"	"This order is raised in accordancewith the email q Thiprat Jitkaew (mobil) on 1 Apr 2008"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	08-Apr-08	14647.29	=""	="MOBIL OIL AUSTRALIA PTY LTD"	12-May-08 03:15 PM	

+="CN79445"	"Return and cleaning of 12x 3 Bunkhouse & 12x 3 Living Quarters"	="Department of Defence"	12-May-08	="Accommodation furniture"	14-Dec-07	30-Jun-08	12540.00	=""	="AUSCO MODULAR PTY LTD"	12-May-08 03:15 PM	

+="CN79449"	"Contract Management In-house short course 04-05 Feb 2008"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Feb-08	14-Mar-08	13720.30	=""	="ENGINEERING EDUCATION AUSTRALIA"	12-May-08 03:16 PM	

+="CN79450"	"Provision of Advertising Services"	="Medicare Australia"	12-May-08	="Human resources services"	14-Apr-08	14-Apr-08	13801.21	=""	="HMA BLAZE PTY LTD"	12-May-08 03:16 PM	

+="CN79454"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Human resources services"	16-Apr-08	16-Apr-08	14315.40	=""	="RECRUITMENT SOLUTIONS LIMITED"	12-May-08 03:16 PM	

+="CN79459"	"ANGLESEA BARRACKS HMP UPDATE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	13939.20	=""	="ENVIRONMENTAL RESOURCES"	12-May-08 03:17 PM	

+="CN79471"	"review and Amend TMS/TML 4412-RAN-005A - Remove, Inspect, Reinstall & Test AN/SRA-33 Multicouple"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	09-Jun-08	12187.87	=""	="THALES AUSTRALIA"	12-May-08 03:17 PM	

+="CN79482"	"SN02525 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	15965.31	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:18 PM	

+="CN79496"	"PROVISION OF CONTRACTOR (LABOUR HIRE) SERVICES"	="Medicare Australia"	12-May-08	="Computer services"	17-Apr-08	17-Apr-08	13637.25	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 03:19 PM	

+="CN79512"	"PROVISION OF PRINTED MEDIA"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	28-Apr-08	31-Dec-08	14052.50	=""	="NEOPLEX PTY LTD"	12-May-08 03:20 PM	

+="CN79511"	"YEYS 20TH ANNIVERSARY CATERING"	="Department of Defence"	12-May-08	="Food and Beverage Products"	14-Jan-08	25-Jan-08	13226.13	=""	="COMPASS GROUP AUSTRALIA PTY LTD"	12-May-08 03:20 PM	

+="CN79524"	"Provision of Re-location Services"	="Medicare Australia"	12-May-08	="Human resources services"	29-Apr-08	29-Apr-08	13999.99	=""	="Richard Luton Properties"	12-May-08 03:21 PM	

+="CN79527"	"DATABASE DESIGN AND DEVELOPMENT COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	26-Feb-08	15515.50	=""	="IT TRAINING SOLUTIONS"	12-May-08 03:21 PM	

+="CN79534"	"Maintenance and Support"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	01-May-08	12196.80	=""	="EDGE AUSTRALIA"	12-May-08 03:21 PM	

+="CN79538"	"SA2694 DSTO EDN AOD IND 191 BAY 5 FITOUT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	08-Apr-08	30-Jun-08	15840.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:22 PM	

+="CN79547"	".50 Calibre Sniper Rifle Spares"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	27-Mar-08	02-Apr-08	13877.57	=""	="BARRETT FIREARMS MANUFACTURING INC"	12-May-08 03:22 PM	

+="CN79550"	"4G DAE FIELD INSTALL, 1000GB 7200RPM SATA UPGRADE DISK DRIVE, FREIGHT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	08-Apr-08	30-Apr-08	13007.80	=""	="LOGITECH PTY LTD"	12-May-08 03:22 PM	

+="CN79556"	"RESTRAINT ASSY"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	10-Oct-08	13418.49	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:23 PM	

+="CN79557"	"SOFTWARE LICENCE AND MAINTENANCE FEE"	="Medicare Australia"	12-May-08	="Software"	21-Apr-08	30-Jun-08	15765.75	=""	="AURION CORPORATION PTY LTD"	12-May-08 03:23 PM	

+="CN79561"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="General building construction"	21-Apr-08	21-Apr-08	15895.14	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:23 PM	

+="CN79572"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	19-Jan-08	11-Mar-08	13229.04	=""	="CHANDLER MACLEOD HEALTH PTY LTD"	12-May-08 03:24 PM	

+="CN79574"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	22-Apr-08	30-Jun-08	14157.00	=""	="COMPAS PTY LTD"	12-May-08 03:24 PM	

+="CN79576"	"Payment for Professional Services - ADFWC Standing of ADDP 3.3-AEROSPACE BATTLE MANAGEMENT"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	29-Jan-08	28-Feb-08	15457.21	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 03:25 PM	

+="CN79577"	"Supply Tool Cabinets"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	08-Apr-08	16-May-08	12960.20	=""	="BAC SYSTEMS PTY LTD"	12-May-08 03:25 PM	

+="CN79585"	"STAR POSTS WITH HOLES, BARBED WIRE ROLLS, TIE WIRE"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	08-Apr-08	11-Apr-08	12155.06	=""	="WIGGIES"	12-May-08 03:26 PM	

+="CN79609"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	11-Feb-08	15754.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:27 PM	

+="CN79613"	"INSTALLATION OF FENCE FLLA-K"	="Department of Defence"	12-May-08	="Security and control equipment"	05-Feb-08	11-Feb-08	13902.94	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:27 PM	

+="CN79614"	"4516.31 HMAS TOOWOOMBA POWER/THEMO ASSESSMENT"	="Department of Defence"	12-May-08	="Military watercraft"	20-Mar-08	30-Apr-08	15180.00	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 03:27 PM	

+="CN79624"	"4521.13 HMAS ANZAC ROCKWOOL INSULATION TESTING"	="Department of Defence"	12-May-08	="Military watercraft"	20-Mar-08	04-Apr-08	12231.73	=""	="FORWARD HORIZONS"	12-May-08 03:28 PM	

+="CN79626"	"Provision of Legal Services"	="Medicare Australia"	12-May-08	="Management advisory services"	04-Apr-08	04-Apr-08	12536.45	=""	="QMS"	12-May-08 03:28 PM	

+="CN79627"	"dsto"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	15-Nov-07	17-Dec-07	14118.96	=""	="VOLZ SERVOS"	12-May-08 03:28 PM	

+="CN79629"	"JAN/FEB LEASE FEE REEFER CONT - FLLA B"	="Department of Defence"	12-May-08	="Industrial refrigeration"	03-Feb-08	11-Feb-08	12278.07	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:28 PM	

+="CN79636"	"Items are HIGH Priority, earlier delivery if possi"	="Department of Defence"	12-May-08	="Infrared IR sensors"	20-Mar-08	21-May-08	14278.31	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 03:28 PM	

+="CN79640"	"POLISHING CLOTHS"	="Defence Materiel Organisation"	12-May-08	="Grinding and polishing and smoothing materials"	11-Feb-08	10-Mar-08	12252.10	=""	="W. BALL & SON LTD (BALTEX FABRICS)"	12-May-08 03:29 PM	

+="CN79647"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	26-Nov-07	14037.31	=""	="COMMANDER (ACT)"	12-May-08 03:29 PM	

+="CN79667"	"QANTAS ACCOUNT HMAS WALLER JAN 2008"	="Department of Defence"	12-May-08	="Transportation services equipment"	31-Jan-08	29-Feb-08	12498.81	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:31 PM	

+="CN79672"	"ITIL Foundation Certificate V2.0"	="Defence Materiel Organisation"	12-May-08	="Education and Training Services"	11-Feb-08	26-Feb-08	13860.00	=""	="DIMENSION DATA LEARNING"	12-May-08 03:32 PM	

+="CN79679"	"Provision of Postal Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	07-Apr-08	07-Apr-08	12748.94	=""	="AUSTRALIA POST"	12-May-08 03:32 PM	

+="CN79685"	"Standalone Computer System"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Mar-08	30-Apr-08	14605.26	=""	="ASI SOLUTIONS"	12-May-08 03:33 PM	

+="CN79690"	"Reserve Days"	="Department of Defence"	12-May-08	="Management support services"	25-Mar-08	30-Jun-08	12800.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:33 PM	

+="CN79696"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	08-Feb-08	13111.34	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:33 PM	

+="CN79698"	"REF-TARG-78PAF6  **OP SLIPPER 39**"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Nov-07	28-Nov-07	15137.66	=""	="POLARIS SALES AUSTRALIA &"	12-May-08 03:33 PM	

+="CN79699"	"4516.18 CONDITION ASSESSMENT OF AVIATION SYSTEMS HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	12-Feb-08	02-Mar-08	15926.90	=""	="BEAK RAST ENGINEERING"	12-May-08 03:33 PM	

+="CN79705"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Mar-08	27-Jun-08	12585.45	=""	="PILATUS AIRCRAFT LTD"	12-May-08 03:34 PM	

+="CN79708"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Human resource development"	14-Nov-07	14-Dec-07	15147.52	=""	="PHILLIPPA JUDITH SMITH"	12-May-08 03:34 PM	

+="CN79735"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Public administration and finance services"	01-Apr-08	15-Apr-08	13634.19	=""	="Curran & Associates"	12-May-08 03:36 PM	

+="CN79736"	"Impact Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	21-Dec-07	12752.51	=""	="ASI SOLUTIONS"	12-May-08 03:36 PM	

+="CN79753-A1"	"Provision of computer equipment"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	13750.00	=""	="Hewlett Packard Australia"	12-May-08 03:36 PM	

+="CN79752"	"SOW develop and trial to the prioritisation of S&T"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-Nov-07	18-Jan-08	14716.01	=""	="CATALYZE LTD"	12-May-08 03:36 PM	

+="CN79761"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management advisory services"	16-Nov-07	16-Nov-07	15047.00	=""	="DR MICHAELA ANDERSON"	12-May-08 03:37 PM	

+="CN79766"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	04-Nov-08	13376.00	=""	="DIALOG INFORMATION TECHNOLOGY"	12-May-08 03:37 PM	

+="CN79771"	"QANTAS FLIGHTS 171 AVN SQN DEC 07"	="Department of Defence"	12-May-08	="Transportation services equipment"	31-Dec-07	15-Feb-08	14922.25	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:38 PM	

+="CN79773"	"Nulka Maintenace"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	11-Apr-08	14365.34	=""	="THALES AUSTRALIA"	12-May-08 03:38 PM	

+="CN79780"	"fees"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	23-Jan-08	28-Feb-08	15014.15	=""	="MRC CONSULTING PTY LTD"	12-May-08 03:39 PM	

+="CN79784"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Apr-08	15000.00	=""	="AUSTRADE"	12-May-08 03:39 PM	

+="CN79785"	"IT TRG SOLUTIONS INV 613626"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Nov-07	18-Feb-08	14723.50	=""	="IT TRAINING SOLUTIONS"	12-May-08 03:39 PM	

+="CN79799"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	28-Mar-08	30-Jun-08	13943.20	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 03:40 PM	

+="CN79808"	"strap webbing"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	28-Mar-08	20-Aug-08	13875.54	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	12-May-08 03:40 PM	

+="CN79813"	"Provision of VFM Focus software and 15 licences"	="Department of Defence"	12-May-08	="Software"	28-Mar-08	30-Oct-08	12391.50	=""	="EVALUA PTY LTD"	12-May-08 03:41 PM	

+="CN79829"	"ITEM NEEDED TO TRAIN SELECTED PERSONNEL TO CERT IV PREREQUISITE FOR FUTURE TRAINING."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	15-Nov-07	14-Dec-07	13050.00	=""	="PROSKILLS"	12-May-08 03:42 PM	

+="CN79832"	"URDEF RECTIFICATION"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	01-May-08	01-May-08	13014.03	=""	="G A GLANVILLE & CO"	12-May-08 03:42 PM	

+="CN79833"	"PROVISION OF PRINTED MEDIA"	="Medicare Australia"	12-May-08	="Reproduction services"	08-Apr-08	30-Jun-08	13572.90	=""	="SPECTRUM GRAPHICS"	12-May-08 03:42 PM	

+="CN79835"	"HIRE CAR FOR RLLT AND COURSE TRAVEL DEFENCE MBRS"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	11-Feb-08	31-Dec-08	14527.68	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:43 PM	

+="CN79843"	"Provision of Queue Management Services"	="Medicare Australia"	12-May-08	="Computer services"	08-Apr-08	30-Jun-08	13585.00	=""	="Nexa Group Pty Ltd"	12-May-08 03:43 PM	

+="CN79846"	"Provision of Telephony Services"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	09-Apr-08	09-Apr-08	12504.80	=""	="OPTUS BILLING SERVICES"	12-May-08 03:43 PM	

+="CN79853"	"DAGR-AN/PRC-117 CABLE"	="Defence Materiel Organisation"	12-May-08	="Electrical wire and cable and harness"	16-Feb-08	15-May-08	13397.08	=""	="HARRIS CORPORATION"	12-May-08 03:43 PM	

+="CN79862"	"lead auditor training in QMS for 1AVN REGT staff"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-Oct-07	28-Sep-08	14833.86	=""	="SAI GLOBAL LIMITED"	12-May-08 03:44 PM	

+="CN79864"	"Provision of 2 laptops for Interim GMMS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	28-Mar-08	30-Apr-08	12129.70	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 03:44 PM	

+="CN79874"	"PC3 Workshop for DSTO Staff 4-5 Dec 07 (1-20 deleg Venue catering @ $2000"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	11-Dec-07	05-Dec-08	12000.00	=""	="BIOSECURITY AND BIOCONTAINMENT"	12-May-08 03:45 PM	

+="CN79885"	"Employment of AM Frankston"	="Department of Defence"	12-May-08	="Human resources services"	22-Feb-08	17-Mar-08	14513.57	=""	="REED PERSONNEL SERVICES PT LTD"	12-May-08 03:46 PM	

+="CN73479"	"Accommodation services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Hotels and lodging and meeting facilities"	16-Apr-08	22-Apr-08	13800.00	=""	="Novotel Canberra"	12-May-08 03:46 PM	

+="CN79900"	"MOVT OF FREIGHT RCB"	="Department of Defence"	12-May-08	="Marine transport"	11-Oct-07	31-Dec-07	15000.00	=""	="DHL GLOBAL FORWARDING"	12-May-08 03:47 PM	

+="CN79913"	"52 A4 printed pages; actual 110 printed pages. ADD to DPS folding of A4 sheets and labour A5 book"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	16-Oct-07	16-Nov-07	13288.00	=""	="PRESS HERE PTY LTD"	12-May-08 03:48 PM	

+="CN79919"	"M.S TRADING GENERAL SUPPLIES BUTTERWORTH"	="Department of Defence"	12-May-08	="Hardware"	18-Mar-08	18-Mar-08	12709.99	=""	="M/S TRADING GENERAL SUPPLIER"	12-May-08 03:48 PM	

+="CN79924"	"For services provided by level 6 resource under existing contract CIOGCON114/5"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	12-Nov-07	31-Mar-08	12883.64	=""	="KAZ GROUP PTY LTD"	12-May-08 03:49 PM	

+="CN79928"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	13-Sep-07	31-Mar-08	15334.00	=""	="CLAYTON UTZ"	12-May-08 03:49 PM	

+="CN79953"	"TRAVEL SERVICES"	="Department of Defence"	12-May-08	="Passenger transport"	29-Feb-08	10-Apr-08	14721.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:51 PM	

+="CN79954"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	11-Apr-08	30-Jun-08	14019.79	=""	="ADAPS PTY LTD"	12-May-08 03:51 PM	

+="CN79964"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	12-Nov-07	30-Jun-08	12750.00	=""	="LAVAN LEGAL"	12-May-08 03:52 PM	

+="CN79967"	"Misc Goods, Freight, Service Charges"	="Department of Defence"	12-May-08	="Office supplies"	20-Feb-08	01-Jun-08	12306.57	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:53 PM	

+="CN79974"	"Supply of meat products"	="Department of Defence"	12-May-08	="Meat and poultry products"	11-Dec-07	30-Jun-08	15000.00	=""	="HOLCO LIMITED"	12-May-08 03:53 PM	

+="CN79979"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	13-Mar-08	30-Jun-10	15020.72	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 03:54 PM	

+="CN80001"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	27-Mar-08	30-Jun-08	13252.80	=""	="HALLMARK LOGISTICS & ENGINEERING"	12-May-08 03:56 PM	

+="CN73553"	"Equipment and Furniture Hire"	="Department of the Prime Minister and Cabinet"	12-May-08	="Furniture"	17-Apr-08	21-Apr-08	14080.00	=""	="Wwave Pty ltd"	12-May-08 03:57 PM	

+="CN80009"	"FEB REEFER CONT LEASE - FLLA B"	="Department of Defence"	12-May-08	="Industrial refrigeration"	02-Mar-08	25-Mar-08	12092.98	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:57 PM	

+="CN80020"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	12870.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:58 PM	

+="CN80024"	"MISC ITEMS FOR CAMP TERENDAK"	="Department of Defence"	12-May-08	="Colourants"	25-Mar-08	01-Jun-08	12704.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:58 PM	

+="CN80027"	"Circiut Card Assembly (LEA C4EWS EWS Quote:  18th March 2008"	="Department of Defence"	12-May-08	="Electronic reference material"	10-Apr-08	20-Jun-08	13173.16	=""	="IMARK COMMUNICATIONS PTY LTD"	12-May-08 03:58 PM	

+="CN80030"	"Storage Racking For Clothing Store RAAF Wagga"	="Department of Defence"	12-May-08	="Containers and storage"	14-Nov-07	14-Nov-07	13025.10	=""	="ULTRA STORAGE SYSTEMS"	12-May-08 03:58 PM	

+="CN80039"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	22-Mar-08	05-Apr-08	13849.65	=""	="KINGHAN & ASSOCIATES SOLICITORS"	12-May-08 03:59 PM	

+="CN80040"	"repairs to case backhoe"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	17-Oct-07	21-Dec-07	13765.46	=""	="SEMCO EQUIPMENT SALES"	12-May-08 03:59 PM	

+="CN80048"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Education and Training Services"	12-Nov-07	30-Jun-08	13204.46	=""	="AUSTRALIAN COMMUNICATIONS &"	12-May-08 03:59 PM	

+="CN80059"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	22-Oct-07	30-Jun-08	14223.00	=""	="CLAYTON UTZ"	12-May-08 04:00 PM	

+="CN80074"	"Professional Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	06-Feb-08	30-May-08	15000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:01 PM	

+="CN80073"	"LEASE OF ACTROSS TRUCK AND TRAILERS - FLLA K"	="Department of Defence"	12-May-08	="Motor vehicles"	20-Feb-08	20-Mar-08	13491.26	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:01 PM	

+="CN80107"	"The following documents must accompany the consign provide documentation will create a delay in ship"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	11-Dec-07	18-Dec-07	12344.45	=""	="R/M EQUIPMENT"	12-May-08 04:03 PM	

+="CN80110"	"Validation Netwrok Upgrade"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	11-Apr-08	30-Jun-08	15000.00	=""	="TENIX DEFENCE SYSTEMS"	12-May-08 04:03 PM	

+="CN80133"	"Face Guard, Pararescue Helmet"	="Defence Materiel Organisation"	12-May-08	="Face and head protection"	07-Feb-08	10-Jul-08	14066.93	=""	="TRANSAERO INC."	12-May-08 04:05 PM	

+="CN80142"	"bearing ball"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	06-Feb-08	01-Mar-09	12712.41	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:05 PM	

+="CN80146"	"BRUKER CARE CONSUMABLES"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Nov-07	20-Nov-07	13704.90	=""	="BRUKER BIOSCIENCES PTY LIMITED"	12-May-08 04:05 PM	

+="CN80156"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	20-Nov-07	15032.60	=""	="OBJECTIVE CORPORATION PTY LTD"	12-May-08 04:06 PM	

+="CN80159"	"Survey and Investigate MTF"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Dec-07	31-Jan-08	12977.80	=""	="OWEN INTERNATIONAL PTY LTD"	12-May-08 04:06 PM	

+="CN80163"	"HIRE OF 3 LIGHTING TOWERS FOR RTF 4 TRAINING"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	11-Feb-08	29-Feb-08	12060.00	=""	="KENNARDS HIRE"	12-May-08 04:07 PM	

+="CN80168"	"Airfares RAAF Base WILLIAMS JAN08"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	13-Mar-08	12552.97	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:07 PM	

+="CN80170"	"REPAIR OF FAILED CMIS SERVER, AT HEAVY REPAIR FACILITY. REFER SUPPORT SERVICES CONTRACT C439154"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	15-May-08	15069.74	=""	="THALES AUSTRALIA"	12-May-08 04:08 PM	

+="CN80186"	"Customised RAAF ITIL Fundamentals Foundations"	="Department of Defence"	12-May-08	="Education and Training Services"	11-Dec-07	19-Dec-07	12622.50	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 04:09 PM	

+="CN80201"	"Perforator"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	19-Nov-07	07-Jan-08	15290.00	=""	="HERBEN NUMBERING SYSTEMS"	12-May-08 04:10 PM	

+="CN80203"	"Qantas payment"	="Department of Defence"	12-May-08	="Transportation components and systems"	31-Aug-07	29-Feb-08	15509.17	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:10 PM	

+="CN80204"	"Inspect and Repair of BESS Equipment consisting of 7 Transmitters and 34 Receivers."	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	09-Apr-08	15243.97	=""	="MAS ZENGRANGE LTD"	12-May-08 04:10 PM	

+="CN80220"	"KLAS terminal adaptor (TA) GCS -7516"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	30-Jun-08	14157.00	=""	="TC COMMUNICATIONS PTY LTD"	12-May-08 04:11 PM	

+="CN80231"	"Repair and modification of an F/A-18 Hornet, F404 Engine, Electrical Control Assy."	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	09-Apr-08	08-Oct-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	12-May-08 04:12 PM	

+="CN80235"	"Repair and modification of an F/A-18 Hornet, F404 Engine, Electrical Control Assy."	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	09-Apr-08	08-Oct-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	12-May-08 04:13 PM	

+="CN80253"	"Tank holders, equipment plates, battery accessories and other manufactured goods."	="Department of Defence"	12-May-08	="Machining and processing services"	20-Nov-07	09-Jan-08	12636.20	=""	="BROENS INDUSTRIES PTY LTD"	12-May-08 04:14 PM	

+="CN80259"	"Head Set Electrical"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	06-Feb-08	25-Jun-08	12865.45	=""	="TRANSAERO INC."	12-May-08 04:15 PM	

+="CN80262"	"Computer Server"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	22-May-08	12988.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:15 PM	

+="CN80280"	"2007-08/2008-01 CABCHARGE"	="Department of Defence"	12-May-08	="Motor vehicles"	01-Feb-08	10-Mar-08	15367.89	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 04:17 PM	

+="CN80284"	"Prototype Distribution Boxes"	="Department of Defence"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	20-Dec-07	24-Jan-08	14809.30	="RFT E1-203863"	="EATON ELECTRIC SYSTEMS"	12-May-08 04:17 PM	

+="CN80292"	"QANTAS CHARGES FOR ADF BFTS PERSONNEL JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	30-Jun-08	13069.96	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:17 PM	

+="CN80306"	"REPAIR/REPLACE WORKSTATION & OFFICE CHAIRS AT HEAVY REPAIR FACILITY,  SUPPORT CONTRACT C439154"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	09-Apr-08	15-May-08	13236.23	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80322"	"BBQ OBG(W)-4 FHT"	="Department of Defence"	12-May-08	="Meat and poultry products"	12-Feb-08	01-Jun-08	15114.86	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:20 PM	

+="CN80330"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	11-Feb-08	11-Feb-08	13780.25	=""	="KAZ GROUP PTY LTD"	12-May-08 04:21 PM	

+="CN80333"	"MEDICAL SERVICES"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	18-Feb-08	31-Dec-11	13000.00	=""	="NT MEDIC PTY LTD"	12-May-08 04:21 PM	

+="CN80340"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-Apr-08	13145.40	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80348"	"MAINTENANCE FEE FOR MONSARRAT"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	30-Nov-07	30-Nov-08	13860.00	=""	="EVALUA PTY LTD"	12-May-08 04:22 PM	

+="CN80370"	"OTHER PLANT AND EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Apr-08	14773.11	=""	="PULSE POWER & MEASUREMENT LTD (PPM)"	12-May-08 04:24 PM	

+="CN80379"	"Provision of project management and contract administration services for ASC at DSTO-M"	="Department of Defence"	12-May-08	="Paper Materials and Products"	17-Dec-07	28-Sep-08	12096.76	=""	="SPECTRUM AUSTRALIA PTY LTD"	12-May-08 04:24 PM	

+="CN80386"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	08-Sep-08	13745.57	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:24 PM	

+="CN80387"	"Refurbishment & Testing of MASTIS"	="Department of Defence"	12-May-08	="Satellites"	04-Jan-08	30-Jun-08	12831.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:24 PM	

+="CN80402"	"4516.23 DRIVE TRAIN CONDITION ASSESSMENT DEVELOPMENT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	13200.00	=""	="IKAD ENGINEERING"	12-May-08 04:25 PM	

+="CN80442"	"Compactus and other Furn Items"	="Department of Defence"	12-May-08	="Office and desk accessories"	16-Nov-07	30-Jun-08	12699.50	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:27 PM	

+="CN80454"	"wireless connectivity in HMAS CAIRNS - Ship set 1"	="Department of Defence"	12-May-08	="Electrical components"	14-Apr-08	30-May-08	14823.53	=""	="KAZ GROUP PTY LTD"	12-May-08 04:28 PM	

+="CN80458"	"wireless connectivity in HMAS CAIRNS - Ship set 2"	="Department of Defence"	12-May-08	="Electrical components"	14-Apr-08	30-May-08	14823.53	=""	="KAZ GROUP PTY LTD"	12-May-08 04:28 PM	

+="CN80470"	"REVIEW & RECOMMEND ENHANCEMENTS FOR COMBAT SYSTEM UNINTERRUPTIBLE POWER SUPPLIES, MAINTENANCE RE"	="Department of Defence"	12-May-08	="Marine transport"	11-Apr-08	26-May-08	13643.30	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:28 PM	

+="CN80481"	"CONSTRUCTION OF STAND"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	11-Apr-08	30-May-08	14226.19	=""	="FOLEY EXHIBITIONS LTD"	12-May-08 04:29 PM	

+="CN80471"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-May-08	06-Jun-08	12106.55	=""	="Merceded Benz"	12-May-08 04:30 PM	

+="CN80492"	"Prepase BaseLINE Information System Threat & Risk Assessment (IS-TRA)"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	29-Feb-08	15950.00	=""	="RELEGEN PTY LTD"	12-May-08 04:30 PM	

+="CN80504"	"Lease of  vehicle"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	07-Feb-08	31-Jan-10	13160.66	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:32 PM	

+="CN80506"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	11-Apr-08	30-Jun-08	12607.09	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:32 PM	

+="CN80523"	"Building Services"	="Department of Foreign Affairs and Trade"	12-May-08	="General building construction"	01-Aug-07	30-Jun-08	12289.41	=""	="Arup Pty Limited"	12-May-08 04:33 PM	

+="CN80525"	"OCM Statement of Work"	="Department of Defence"	12-May-08	="Computer services"	10-Jan-08	18-Feb-08	12100.00	=""	="BUSINESS SYSTEMS CONSULTANCY PTY"	12-May-08 04:33 PM	

+="CN80567"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Computer services"	07-Aug-07	07-Aug-07	12468.50	=""	="ZVENO PTY LTD"	12-May-08 04:35 PM	

+="CN80586"	"This order was raised for internal purposes only t ROMAN of PO 4500605458 file 1000136275. Goods alr"	="Department of Defence"	12-May-08	="Aircraft"	09-Jan-08	10-Jan-08	15629.92	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	12-May-08 04:36 PM	

+="CN80588"	"LOT Buy 422/9/07821. C439154 Maintenance Support Services"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	08-Feb-08	30-May-08	15057.90	=""	="THALES AUSTRALIA"	12-May-08 04:36 PM	

+="CN80607"	"Conduct a survey medical equipment HMAS MANOORA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	20-Feb-08	12440.79	=""	="HOSLAB SERVICES PTY LTD"	12-May-08 04:38 PM	

+="CN80617"	"Computer switches"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	08-Feb-08	22-Feb-08	15426.84	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:38 PM	

+="CN80629"	"Office Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Computer Equipment and Accessories"	03-Aug-07	31-Aug-07	15037.00	=""	="Commander Integrated Networks Pty L"	12-May-08 04:39 PM	

+="CN80661"	"PROVISION OF TRAINING"	="Department of Defence"	12-May-08	="Audio and visual presentation and composing equipment"	21-Dec-07	31-Jan-08	13151.08	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 04:40 PM	

+="CN80671"	"Install video splitter and cables in HMAS Darwin CIC to provide signal from Low Light TV camera sys"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	29-Feb-08	12461.42	=""	="WESTERN ADVANCE PTY LTD"	12-May-08 04:41 PM	

+="CN80711"	"SOFTWARE"	="Defence Materiel Organisation"	12-May-08	="Software"	26-Feb-08	30-Apr-08	14355.00	=""	="CADGROUP AUSTRALIA LTD"	12-May-08 04:43 PM	

+="CN80717"	"IMPELLER FAN"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	25-Feb-08	15-Jun-08	12016.80	=""	="AIRSCREW LTD"	12-May-08 04:43 PM	

+="CN80727"	"FFGSPO-WA Library Management 2008"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	31-Dec-08	14411.28	=""	="THALES AUSTRALIA"	12-May-08 04:44 PM	

+="CN80728"	"Edinburgh ILS Antenna Fault"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Jan-08	16-Apr-08	13174.87	=""	="AIRSERVICES AUSTRALIA"	12-May-08 04:44 PM	

+="CN80735"	"Modification to Upgrade SPS-1000V-5 Central Receiver Processor to the SPS-1000V-5A"	="Department of Defence"	12-May-08	="Aircraft"	04-Apr-08	30-Jul-08	15850.02	=""	="ELISRA ELECTRONIC SYSTEM LTD"	12-May-08 04:44 PM	

+="CN80747"	"MAGAZINE, RAIL COVER"	="Department of Defence"	12-May-08	="Firearms"	21-Dec-07	20-Feb-08	12013.34	=""	="COLT DEFENSE LLC"	12-May-08 04:45 PM	

+="CN80751"	"REPLACEMENT OF PEARCE GEARBOX"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-Apr-08	15648.83	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:45 PM	

+="CN80766"	"TOB-SERVER A & SCREENS REPAIRS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Apr-08	09-May-08	12137.40	=""	="HONEYWELL LTD"	12-May-08 04:46 PM	

+="CN80770"	"INVESTIGATION TO IDENTIFY POSSIBLE FIX FOR TASR AIRCONDITIONING LOUVRE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-May-08	12907.15	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80779"	"GREASE 70 TONNE CRANE WIRE"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	22-Feb-08	30-May-08	13347.31	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80828"	"Waterproof Rucksacks with Inflation Systems, and Frame & Harness Assemblies"	="Department of Defence"	12-May-08	="Military watercraft"	29-Jan-08	30-Jun-13	14874.97	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:49 PM	

+="CN80847"	"ANTENNA"	="Defence Materiel Organisation"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	23-Feb-08	30-May-08	15327.96	=""	="TRIVEC-AVANT CORPORATION"	12-May-08 04:50 PM	

+="CN80851"	"Microcircuit, Digital"	="Defence Materiel Organisation"	12-May-08	="Printed circuits and integrated circuits and microassemblies"	23-Feb-08	15-Jul-08	12759.12	=""	="AERO HARDWARE & PARTS CO INC"	12-May-08 04:50 PM	

+="CN80853"	"MADE TO MEASURE UNIFORMS SUPPLIER: BERENSEN TAILORS"	="Department of Defence"	12-May-08	="Clothing"	18-Dec-07	29-Feb-08	12622.36	=""	="V & F TAILORING"	12-May-08 04:50 PM	

+="CN80856"	"Asset Management Training LSD - VBM-A1-39 dates:  13-14 Feb 2008."	="Department of Defence"	12-May-08	="Education and Training Services"	29-Jan-08	13-Feb-08	14980.00	=""	="ASSET MANAGEMENT COUNCIL INC"	12-May-08 04:50 PM	

+="CN80861"	"x-ray analysis of ballistic plates qty 608"	="Department of Defence"	12-May-08	="Personal safety and protection"	18-Dec-07	07-Jan-08	12193.50	=""	="BALLISTIC AND MECHANICAL TESTING"	12-May-08 04:50 PM	

+="CN80890"	"Repair  of Moog Turret Grip Controller"	="Department of Defence"	12-May-08	="War vehicles"	08-Apr-08	30-Jun-08	12326.60	=""	="TENIX DEFENCE PTY LTD LAND DIVISION"	12-May-08 04:52 PM	

+="CN80892"	"Electronic Filters"	="Department of Defence"	12-May-08	="Flight communications related systems"	30-Jan-08	15-Jun-08	15629.92	=""	="D L INSTRUMENTS LLC"	12-May-08 04:52 PM	

+="CN80902"	"Upgrade Security Readers"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	08-Apr-08	30-Apr-08	12219.90	=""	="PERTH BUILDING COMPANY PTY LTD"	12-May-08 04:52 PM	

+="CN80910"	"INVESTIGATION / REPAIR / CALIBRATION OF SPECTRUM ANALYSERS FSP3 USED IN MEDIUM REPAIR FACILITIES"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	09-Apr-08	12-Jun-08	15200.20	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	12-May-08 04:52 PM	

+="CN80914"	"Repair and modification of an F/A-18 Hornet, F404 Engine, Electrical Control Assy."	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	09-Apr-08	08-Oct-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	12-May-08 04:53 PM	

+="CN80936"	"STATIC FREQUENCY CONVERTER NO2 HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Feb-08	13-Mar-08	14421.27	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:54 PM	

+="CN80958"	"Clip, Spring Tension"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	28-Feb-08	14-Mar-08	12440.14	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	12-May-08 04:55 PM	

+="CN80976"	"Req analysis fo SUC COMCEN ecape"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Apr-08	14-Jun-08	13600.65	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN81017"	"SEAL ASSY"	="Department of Defence"	12-May-08	="Aircraft equipment"	05-Feb-08	01-Nov-08	12039.28	=""	="ROLLS - ROYCE PLC"	12-May-08 04:59 PM	

+="CN81025"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	30-May-08	13788.54	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:59 PM	

+="CN81041"	"FAA CERTIFICATION PROCEDURES AND AIRWORTHINESS REQ TO MILITARY PROCUREMENT - EVENT DATES: 4 - 6 FEBR"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	19-Dec-07	31-Dec-07	13389.42	=""	="UNIVERSITY OF KANSAS"	12-May-08 05:00 PM	

+="CN81058"	"DTS 77 Provision of TADRS Stowage Cabin Antenna Mast Straps and Data Pack documentation"	="Department of Defence"	12-May-08	="Rope and chain and cable and wire and strap"	04-Feb-08	13-Jun-08	12183.37	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:01 PM	

+="CN81090"	"Small Arms Parts & Accessories"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	01-Feb-08	04-Feb-08	13503.67	=""	="R/M EQUIPMENT"	12-May-08 05:02 PM	

+="CN81091"	"TOWNSVILLE AIRFIELD LIGHTING MEETING AND INVESTIGATION OF NON-CONFORMANCES"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	14797.52	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:02 PM	

+="CN81107"	"DATA COMPARISON FMDS & AMPS"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	10-May-08	14410.00	=""	="CAPABILITY BY DESIGN"	12-May-08 05:03 PM	

+="CN81110"	"MRH90 ICS LEADS FOR PILOTS"	="Department of Defence"	12-May-08	="Aircraft equipment"	26-Nov-07	31-Dec-07	13006.40	=""	="GE AVIATION"	12-May-08 05:03 PM	

+="CN81123"	"HGCE"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	26-Nov-07	31-Jan-08	15223.23	=""	="BELLINGER INSTRUMENTS PTY LTD"	12-May-08 05:04 PM	

+="CN81124"	"ANZAC SPO SHirts"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	19-Feb-08	04-Jun-08	13926.00	=""	="XPOSE UR SELF PROMOTIONS"	12-May-08 05:04 PM	

+="CN81132"	"Portege R500 Laptpos and Accessories"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	28-Feb-09	15613.68	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	12-May-08 05:04 PM	

+="CN81141"	"AERTRIM"	="Department of Defence"	12-May-08	="Medical apparel and textiles"	02-Feb-08	02-Apr-08	12397.61	=""	="SCHNELLER INC."	12-May-08 05:04 PM	

+="CN81149"	"REPAIR/REPLACE PINTAIL WORKSTATIONS AT HEAVY REPAIR FACILITY. REFER CAPO C439154."	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	01-Feb-08	05-Mar-08	13162.18	=""	="THALES AUSTRALIA"	12-May-08 05:05 PM	

+="CN81153"	"ANALOGUE INTERFACE MODULE AND CABLES FOR MEDIUM REPAIR FACILITY. REFER CAPO C439136"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	01-Feb-08	10-Jun-08	14017.68	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:05 PM	

+="CN81161"	"Banding Backshell, Backshell, Bottle Boot with Rib Sunband"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	01-Feb-08	14-Mar-08	13343.00	=""	="CAMBRIDGE TECHNOLOGIES"	12-May-08 05:05 PM	

+="CN81169"	"ACCESSORY KIT ELECTRONIC"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	19-Dec-07	01-Apr-08	12394.96	=""	="CHELTON LIMITED"	12-May-08 05:06 PM	

+="CN81172"	"H-F300 HANDSET REPAIRS  & SURVEY & QUOTE"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	20-Feb-08	07-Mar-08	12815.00	=""	="EYLEX PTY LTD"	12-May-08 05:06 PM	

+="CN81188"	"DUMMY CONNECTOR PLUG"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	20-Feb-08	20-May-08	12652.79	=""	="LCF SYSTEMS INC"	12-May-08 05:06 PM	

+="CN81194"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	23-Jan-08	30-Apr-08	14099.11	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:06 PM	

+="CN81241"	"EWRD Storage Server for Deployable Field Trials Supported under CMD&V"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	19-Dec-07	31-Jan-08	13933.70	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 05:09 PM	

+="CN81258"	"OPSPT to A27-18"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Jan-08	29-Feb-08	13820.40	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 05:09 PM	

+="CN81279"	"O & P"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	26-Nov-07	29-Feb-08	12320.00	=""	="BOEING AUSTRALIA LTD"	12-May-08 05:10 PM	

+="CN81286"	"THIS ORDER IS PLACED IN ACCORDANCE WITH TERMS AND  QUOTE STA/L/0100/051/11 DATED 14 FEB 2008."	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	18-Feb-08	30-Apr-08	15620.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	12-May-08 05:10 PM	

+="CN81288"	"Interim Service Excursion Sets"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Nov-07	15-Dec-07	12749.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 05:11 PM	

+="CN81295"	"Engagement of ESP for Codification and Catalouging Activities"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Feb-08	30-Jun-08	12060.00	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	12-May-08 05:11 PM	

+="CN81302"	"POC:Tanya Boulton IT HARDWARE 02 626 69174"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	22-Jan-08	15-Feb-08	12171.50	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81321"	"Insulation Blankets"	="Department of Defence"	12-May-08	="Aircraft equipment"	22-Jan-08	22-Apr-08	12587.82	=""	="HI-TEMP INSULATION INC"	12-May-08 05:12 PM	

+="CN81336"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	21-Jan-08	30-Apr-08	15460.05	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:13 PM	

+="CN81338"	"DELIVERY  AND COMMISSIONING OF 3CER WPU PRODUCTION UNIT"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Feb-08	28-Feb-08	13793.04	=""	="PALL AUSTRALIA"	12-May-08 05:13 PM	

+="CN81341"	"PROVISION OF OUTLOOK TRAINING"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	21-Feb-08	16-Apr-08	15480.00	=""	="PRIORITY MANAGEMENT NSW"	12-May-08 05:13 PM	

+="CN81351"	"bearing ball"	="Department of Defence"	12-May-08	="Aircraft equipment"	22-Jan-08	01-Sep-08	12333.80	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:14 PM	

+="CN81354"	"Silver sponsorship of PMAA (ACT) presentation nigh"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	22-Jan-08	31-Jan-08	12000.00	=""	="AUSTRALIAN INSTITUTE OF PROJECT"	12-May-08 05:14 PM	

+="CN81361"	"CHANGES TO THE TECHNICAL RISK MANAGEMENT SYSTEM"	="Department of Defence"	12-May-08	="Software"	28-Nov-07	14-Dec-07	13860.00	=""	="EPPS SOFTWARE PTY LTD"	12-May-08 05:14 PM	

+="CN81387"	"KITS FOR BIRCH"	="Department of Defence"	12-May-08	="War vehicles"	25-Jan-08	11-Apr-08	13513.69	=""	="TRIO SMARTCAL PTY LTD"	12-May-08 05:16 PM	

+="CN81396"	"Tenix Systems - GTS048"	="Department of Defence"	12-May-08	="Containers and storage"	25-Jan-08	28-Feb-08	15199.80	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 05:16 PM	

+="CN81402"	"Use of Exisitng ASP Contract. ECP for installation of MSS ready use lockers"	="Department of Defence"	12-May-08	="Firearms"	25-Jan-08	04-Apr-08	13744.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:17 PM	

+="CN81425"	"RECTIFY KANIMBLA SGSI"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Feb-08	30-Apr-08	13955.55	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:18 PM	

+="CN81427"	"THE FOLLOWING DOCUMENTS MUST ACCOMPANY THE CONSIGN provide documentation will create a delay in ship"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	27-Nov-07	15-Jun-08	13583.15	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 05:18 PM	

+="CN81430"	"PROVISION NOF SECURITY SUPERCARGO"	="Department of Defence"	12-May-08	="Transportation services equipment"	27-Nov-07	31-Dec-07	14407.70	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:18 PM	

+="CN81444"	"Modifications to DSTO  CH47D Chinook scale Model infrared IR Suppression Test Rig"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	29-Jan-08	30-Jun-08	13254.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:19 PM	

+="CN81454"	"Benches for VMF Lab"	="Department of Defence"	12-May-08	="Office supplies"	27-Nov-07	11-Dec-07	12496.00	=""	="CAPITAL INTERIORS"	12-May-08 05:19 PM	

+="CN81459"	"MODIFIED DIGITAL INDICATOR"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	25-Jan-08	10-Mar-08	12749.00	=""	="SOFRACO INTERNATIONAL PTY LTD"	12-May-08 05:20 PM	

+="CN81461"	"REPAIR OF F/A-18 EMBEDDED GPS/INU SET"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	20-Feb-08	15-Jun-08	13043.37	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:20 PM	

+="CN81463"	"Quote# RM-070208-162131"	="Defence Materiel Organisation"	12-May-08	="Computer services"	20-Feb-08	12-Mar-08	13505.80	=""	="EMTEC COMMUNICATIONS AUST PTY LTD"	12-May-08 05:20 PM	

+="CN81464"	"2/3 PERSON TENT & FREIGHT"	="Department of Defence"	12-May-08	="Accommodation furniture"	25-Jan-08	28-Dec-08	14406.03	=""	="SOUTHERN CROSS EQUIPMENT PTY LTD"	12-May-08 05:20 PM	

+="CN81467"	"ASTIS Packet Interceptor Software Purchase"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	31-Mar-08	13200.00	=""	="EBOR COMPUTING"	12-May-08 05:20 PM	

+="CN81470"	"VIDEO SUITE"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	24-Jan-08	25-Jan-08	13977.48	=""	="AV CENTRAL"	12-May-08 05:20 PM	

+="CN81473"	"OXYGEN, MASK"	="Defence Materiel Organisation"	12-May-08	="Face and head protection"	21-Feb-08	25-Jul-08	15135.51	=""	="AVOX SYSTEMS INC"	12-May-08 05:21 PM	

+="CN81504"	"Probity Advisor for IMS CIPT"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Apr-08	30-Apr-08	12929.99	=""	="TRESSCOX"	12-May-08 05:23 PM	

+="CN81506"	"Repair of SEM Hull Penetration & Locating Pins"	="Defence Materiel Organisation"	12-May-08	="Missile subsystems"	21-Apr-08	29-Jun-08	12738.00	=""	="BEYOND ENGINEERING PTY LTD"	12-May-08 05:24 PM	

+="CN81512"	"TOB-TECH INVEST BOW DOOR HYDRAULIC HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Apr-08	09-May-08	13818.62	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:24 PM	

+="CN81516"	"Use of Exisitng ASP Contract - HI Press 90 Day Spares"	="Defence Materiel Organisation"	12-May-08	="Bearings and bushings and wheels and gears"	21-Apr-08	13-Jun-08	15460.19	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:24 PM	

+="CN81523"	"Computer Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	24-Jan-08	01-Feb-08	13200.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:25 PM	

+="CN81539"	"ENVIRONMENTAL MANAGEMENT PLAN"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	13-Dec-07	30-Jan-08	12650.00	=""	="CONNELL WAGNER (SA) PTY LTD"	12-May-08 05:26 PM	

+="CN81555"	"Zebra Label Printers"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	13-Dec-07	20-Dec-07	12155.00	=""	="PEACOCK BROS PTY LTD"	12-May-08 05:27 PM	

+="CN81565"	"VANE"	="Department of Defence"	12-May-08	="Aircraft equipment"	14-Dec-07	01-Mar-08	14180.67	=""	="TURBINE SUPPORT LTD"	12-May-08 05:28 PM	

+="CN81583"	"Overtime costs - Repaint of aircraft A24-002"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Apr-08	24-Apr-08	14928.60	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-May-08 05:29 PM	

+="CN81589"	"INTER-AGENCY OVERSEAS TRAVEL"	="Defence Materiel Organisation"	12-May-08	="Recreational aircraft"	21-Apr-08	30-Jun-08	14043.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:30 PM	

+="CN81591"	"PULLER ASSY AIR"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	19-Apr-08	15-Aug-09	13046.20	=""	="CHAMP INDUSTRIES"	12-May-08 05:30 PM	

+="CN81592"	"Fibre Optic Modem"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	13-Dec-07	30-Jun-08	14862.65	=""	="PACLINK COMMUNICATIONS PTY LTD"	12-May-08 05:30 PM	

+="CN81609"	"INSTALL METAL RINGS AND GALVANISE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	28-Jan-08	12234.20	=""	="FORGACS ENGINEERING PTY LTD"	12-May-08 05:32 PM	

+="CN81617"	"CLUTCH SPRING ASSEMBLY"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	13-Dec-07	15-Aug-08	12590.70	=""	="ALLIANT TECHSYSTEMS INC"	12-May-08 05:33 PM	

+="CN81623"	"HP DL380G5 Servers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	21-Dec-07	13638.00	=""	="MCR COMPUTER RESOURCES PTY LTD"	12-May-08 05:33 PM	

+="CN81625"	"COTS Hewlett Packard Computers and Accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	21-Dec-07	15071.71	=""	="MONTEREY BAY COMMUNICATIONS"	12-May-08 05:34 PM	

+="CN81630"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	17-Dec-07	30-Mar-08	13580.25	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:34 PM	

+="CN81631"	"Use of Exisitng ASP Contract. Supply and Wind No 5 Berthing Wire"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	17-Dec-07	14-Feb-08	13948.94	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:34 PM	

+="CN81638"	"Signal Illumination Red 38mm"	="Department of Defence"	12-May-08	="Personal safety devices or weapons"	17-Dec-07	31-Aug-08	14343.78	=""	="CHEMRING AUSTRALIA PTY LTD"	12-May-08 05:35 PM	

+="CN81642"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	07-Jan-08	12631.30	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:36 PM	

+="CN81664"	"Line 1 - Complete Non-Combatant Blue Ensemble - NS Line 2 - Complete Disruptive Pattern Desert Unifo"	="Department of Defence"	12-May-08	="Mineral and Textile and Inedible Plant and Animal Materials"	14-Dec-07	30-Dec-07	15298.80	=""	="HELLWEG INTERNATIONAL"	12-May-08 05:39 PM	

+="CN81670"	"KALAN REPAIR"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	14-Dec-07	15-Jan-08	13233.19	=""	="E2V TECHNOLOGIES (UK) LIMITED"	12-May-08 05:40 PM	

+="CN81672"	"Window Tinting for Lvl 3 Bld 89 GIS FBE"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	11-Jan-08	15945.60	=""	="PREMIER TINT"	12-May-08 05:40 PM	

+="CN81675"	"Scale Removing Compound"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	15-Dec-07	31-Jan-08	12403.46	=""	="RANDALL INDUSTRIES LLC"	12-May-08 05:41 PM	

+="CN81697"	"Amend TMS 4361-RAN-017"	="Department of Defence"	12-May-08	="Military watercraft"	07-Dec-07	21-Dec-07	12381.25	=""	="THALES AUSTRALIA"	12-May-08 05:43 PM	

+="CN81713"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	07-Apr-08	15213.57	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:45 PM	

+="CN81714"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	07-Apr-08	15213.57	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:45 PM	

+="CN81721"	"DVRE INTEGRATION FEASIBILITY STUDY URGENT TASKING 4549.02"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	31-Mar-08	15406.60	=""	="THALES AUSTRALIA"	12-May-08 05:46 PM	

+="CN81744"	"Use ASP exisiting contract - Annual Service on Gyro #1 Autopilot and Course Recorder"	="Department of Defence"	12-May-08	="Steering system"	07-Dec-07	11-Jul-08	13170.30	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:49 PM	

+="CN81756"	"Actuator Piston"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	12-Dec-07	09-Jul-08	15406.64	=""	="GENERAL ELECTRIC COMPANY"	12-May-08 05:51 PM	

+="CN81758"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Transportation and Storage and Mail Services"	12-Feb-08	12-Feb-08	14186.39	=""	="Cabcharge Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81760"	"Insurance - Fees"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Insurance and retirement services"	07-Apr-08	07-Apr-08	12773.00	=""	="ComSuper"	12-May-08 07:32 PM	

+="CN81765"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	10-Mar-08	10-Mar-08	12433.64	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81767"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	25-Mar-08	25-Mar-08	12433.64	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81768"	"software licenses"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	05-Feb-08	05-Feb-08	15338.77	=""	="DPI Systems Pty Ltd"	12-May-08 07:33 PM	

+="CN81771"	"Personnel placement fee"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	17-Mar-08	14347.12	=""	="Hays Specialist Recruitment"	12-May-08 07:34 PM	

+="CN81778"	"Visual Media Production"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	11-Mar-08	12190.25	=""	="Louder than Words"	12-May-08 07:35 PM	

+="CN81782"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	20-Mar-08	20-Mar-08	12276.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81784"	"consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	06-Mar-08	12000.00	=""	="Measured Insights"	12-May-08 07:35 PM	

+="CN81786"	"Stationary"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	09-Apr-08	14243.85	=""	="Office National - Head Office"	12-May-08 07:36 PM	

+="CN81787"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Engineering and Research and Technology Based Services"	14-Mar-08	14-Mar-08	15150.00	=""	="Open Mind Research Group Pty Ltd"	12-May-08 07:36 PM	

+="CN81796"	"Develop Working with families in which an adult is abusive: Specialist Practice Guide"	="Australian Institute of Family Studies"	13-May-08	="Temporary research and development services"	15-May-08	30-Nov-08	15000.00	=""	="Dwycon Pty Ltd"	13-May-08 09:44 AM	

+="CN81797"	"Provision of maintenance services at Popondetta Memorial, PNG"	="Department of Veterans' Affairs"	13-May-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Apr-10	15390.00	=""	="USG Products (PNG) Pty Ltd"	13-May-08 09:47 AM	

+="CN81803"	"Aviation Spares,  Purchase of Exhaust  Duct"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	14-Apr-08	30-Apr-08	13802.92	=""	="Turbomeca A/Asia Pty Ltd"	13-May-08 09:56 AM	

+="CN81810"	" Equipment for Remote Access (Laptops & Accessories) "	="Office of Parliamentary Counsel"	13-May-08	="Notebook computers"	04-Mar-08	04-Mar-08	12123.01	=""	="Hewlett Packard"	13-May-08 10:53 AM	

+="CN81820"	"MAINTENANCE FOR OPEN PLAN PROFESSIONAL"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	31-Aug-07	30-Dec-07	12230.35	=""	="DELTEK AUSTRALIA PTY LTD"	13-May-08 11:01 AM	

+="CN81823"	"gst payment in foreign currency"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Dec-07	11-Dec-07	13253.76	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 11:02 AM	

+="CN81827"	"ALSPO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	24-Oct-06	30-Jun-08	12476.68	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 11:02 AM	

+="CN81829"	"PART 4 TASK 087"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	02-Nov-07	30-Oct-09	14115.44	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:03 AM	

+="CN81835"	"GST For invoice 44454"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	13-Sep-07	21-Nov-07	13714.42	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 11:04 AM	

+="CN81836"	"Travel to Israel - Lt Brendan Harris to witness factory acceptance"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	28-Aug-07	20-Nov-07	15127.58	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:04 AM	

+="CN81837"	"PH2A SIMULATOR - SUPPORT CONTRACT 28SEP07"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	28-Sep-07	30-Jun-08	14465.05	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	13-May-08 11:04 AM	

+="CN81856"	"ALSPO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	23-Aug-07	30-Jun-08	13759.51	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 11:08 AM	

+="CN81863"	"EESM Missile Firing Canada"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	18-Dec-07	24-Jan-08	13308.62	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:09 AM	

+="CN81866"	"Payment to Qantas - Overdue Amount"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	21-Jan-08	22-Jan-08	13500.40	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:09 AM	

+="CN81870"	"ASMD FOC ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Dec-07	31-Jan-08	12837.88	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:10 AM	

+="CN81873"	"QF 04-425298 31DEC07 DMO TRAVEL"	="Defence Materiel Organisation"	13-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	18-Feb-08	14731.55	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:10 AM	

+="CN81880"	"TAKS 6008-4 SEA01448PH2A INVOICE 74362 GST COMPONANT ON 5002153012"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Jan-08	29-Feb-08	15606.31	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:11 AM	

+="CN81888"	"GST to invoice E0031/07 RF Source Module and Controller"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	18-Dec-07	30-Jun-09	13362.46	=""	="EWST AUSTRALIA PTY LTD"	13-May-08 11:13 AM	

+="CN81917"	"Overseas Travel for ESSM Project"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	11-Dec-07	18-Jan-08	13791.05	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:17 AM	

+="CN81920"	"CABLE ASSEMBLY, SPECIAL"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Nov-07	21-Mar-08	12845.29	=""	="HONEYWELL INTERNATIONAL INC DBA HON"	13-May-08 11:18 AM	

+="CN81923"	"CABLE ASSEMBLY - FREF QUOTE 61743"	="Defence Materiel Organisation"	13-May-08	="Electrical wire and cable and harness"	14-Nov-07	07-Dec-07	15455.75	=""	="ROJONE PTY LTD"	13-May-08 11:18 AM	

+="CN81933"	"MADE TO MEASURE ATTIRE"	="Defence Materiel Organisation"	13-May-08	="Clothing"	14-Nov-07	30-Nov-07	13360.90	=""	="FULLIN TAILORING CO"	13-May-08 11:20 AM	

+="CN81936"	"To move the HMAS BALLARAT from and return"	="Defence Materiel Organisation"	13-May-08	="Mass transfer equipment"	15-Nov-07	30-Nov-07	13280.61	=""	="SVITZER TOWNSVILLE"	13-May-08 11:20 AM	

+="CN81942"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Nov-07	04-Jan-08	13808.85	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	13-May-08 11:22 AM	

+="CN81946"	"IAW Standing Offer C388551"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	15-Nov-07	15-Apr-08	15847.21	=""	="PARTECH SYSTEMS PTY LTD"	13-May-08 11:22 AM	

+="CN81948"	"Hire of Venues at Melbourne Exhibition /ConvCentre 30-31 Jan2008"	="Defence Materiel Organisation"	13-May-08	="Educational facilities"	15-Nov-07	31-Jan-08	13424.52	=""	="MELBOURNE EXHIBITION &"	13-May-08 11:23 AM	

+="CN81959"	"PROFESSIONAL FEES"	="Defence Materiel Organisation"	13-May-08	="Legal services"	12-Nov-07	30-Jun-08	14041.50	=""	="BLAKE DAWSON WALDRON"	13-May-08 11:25 AM	

+="CN81961"	"A/C TRUNKING-AOR HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Oct-07	04-Jan-08	15346.60	=""	="REGIONAL AND NORTHERN MAINTENANCE"	13-May-08 11:26 AM	

+="CN81968"	"Repair of Drive Shaft Assy"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	08-May-08	06-Jun-08	15128.22	=""	="Sikorsky Aircraft Australia"	13-May-08 11:29 AM	

+="CN81992"	"4531.08 - ANALYSE & RECTIFY DEFECT CSTT DUAL TRACKING"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Nov-07	31-Mar-08	15908.81	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 11:32 AM	

+="CN81998"	"GC2450 5MP GigE Colour Cameras"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-Apr-08	13183.50	=""	="Total Turnkey Solutions"	13-May-08 11:33 AM	

+="CN82011"	"A/C 091 7885 800 Provision for phone charges -Securenet Data Link-FY2007/08"	="Geoscience Australia"	13-May-08	="Telecommunications media services"	01-Apr-08	30-Jun-08	12500.00	=""	="Telstra OTC Australia"	13-May-08 11:34 AM	

+="CN82013"	"8 x Dell Optiplex 755 Desktops"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	15-Apr-08	15837.45	=""	="Dell Australia Pty Ltd"	13-May-08 11:35 AM	

+="CN82015"	"GoCad Software Licences"	="Geoscience Australia"	13-May-08	="Software"	03-Apr-08	09-Apr-08	14630.00	=""	="Paradigm Geophysical Pty Ltd"	13-May-08 11:35 AM	

+="CN82024"	"Training, XML including XSLT 2.0 and XPATH 2.0,  6 to 8 May 2008, plus travel costs."	="Geoscience Australia"	13-May-08	="Education and Training Services"	04-Apr-08	30-May-08	13200.00	=""	="Allette Systems (Australia) P/L"	13-May-08 11:36 AM	

+="CN82036"	"RDF (Australia) to provide Green Portable Fire Est quote: Q 254a/07 Dated: 14Nov07"	="Defence Materiel Organisation"	13-May-08	="Fire protection"	16-Nov-07	31-Mar-08	15454.78	=""	="RFD (AUSTRALIA) PTY LTD"	13-May-08 11:37 AM	

+="CN82048"	"Collaborative Agreement between Curtin Universityof Technology, GA and GeoForschungsZentrum Potsdam - Source of Gas in Australia's offshore Petroleum Basins"	="Geoscience Australia"	13-May-08	="Personnel recruitment"	10-Apr-08	30-Jun-08	13200.00	=""	="Curtin University of Technology"	13-May-08 11:39 AM	

+="CN82053"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Nov-07	02-Jan-08	12300.00	=""	="A NOBLE & SON (NSW) PTY LTD"	13-May-08 11:39 AM	

+="CN82078"	"PEP Training Course"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-Nov-07	20-Feb-08	12650.00	=""	="D'ARCY CONSULTING GROUP"	13-May-08 11:41 AM	

+="CN82079"	"Working with spatial  analyst 22 to 24 April 2008"	="Geoscience Australia"	13-May-08	="Education and Training Services"	14-Apr-08	30-Apr-08	14170.20	=""	="ESRI Australia"	13-May-08 11:42 AM	

+="CN82101"	"REPAIR OF AMPLIFIER DETECTOR"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	11-Apr-07	31-Jan-08	13722.70	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:43 AM	

+="CN82104"	"REPAIR OF AMPLIFIER DETECTOR"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	11-Apr-07	31-Jan-08	14367.30	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:44 AM	

+="CN82105"	"ANU fees for master of Science Tuition - R Costelloe"	="Geoscience Australia"	13-May-08	="Education and Training Services"	21-Apr-08	30-Apr-08	12600.00	=""	="Australian National University"	13-May-08 11:44 AM	

+="CN82106"	"REPAIR OF AMPLIFIER DETECTOR"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	11-Apr-07	31-Jan-08	12892.03	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:44 AM	

+="CN82107"	"SDSS IT Controls Framework"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	01-May-08	30-May-08	12100.00	=""	="SMS CONSULTING GROUP LIMITED"	13-May-08 11:44 AM	

+="CN82109"	"Inspect suction/discharge valves HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Apr-07	29-Feb-08	15935.09	=""	="RFD TECHNOLOGIES PTY LTD"	13-May-08 11:44 AM	

+="CN82112"	"Removalist costs for Officer"	="Geoscience Australia"	13-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	13200.00	=""	="WridgWays The Removalists"	13-May-08 11:45 AM	

+="CN82113"	"P5271 HMAS ARUNTA U39/07"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-May-07	30-Dec-07	12487.93	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:45 AM	

+="CN82120"	"Charter of 2 aircraft and pilots for Adelaideto Olympic Dam and Balcanoona return (as per your Reference No. 0204)"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	23-Apr-08	30-Jun-08	15312.00	=""	="Air South Charter Pty Ltd"	13-May-08 11:46 AM	

+="CN82121"	"TS 6010-4 ASMD LIFE-OF-TYPE SPARES PROCUREMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	31-Oct-08	13041.79	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:46 AM	

+="CN82132"	"Cart 5.56mm Ball F1 Charger Clip Pack"	="Defence Materiel Organisation"	13-May-08	="Explosive materials"	15-Apr-08	31-Oct-09	14048.71	=""	="THALES AUSTRALIA"	13-May-08 11:47 AM	

+="CN82133"	"Toad annual maintence for the period 31 Mar 2008 to 31 Mar 2009"	="Geoscience Australia"	13-May-08	="Software"	29-Apr-08	31-Mar-09	12903.00	=""	="Quest Software Pty Ltd"	13-May-08 11:47 AM	

+="CN82144"	"PROFESSIONAL SUPPORT FOR HUG PH2.3 & HUG PH3.2"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	16-Apr-08	28-Dec-08	12692.44	=""	="JACOBS AUSTRALIA"	13-May-08 11:49 AM	

+="CN82153"	"Repair and overhaul of F/A-18 ECA, Control Assy"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	06-Jul-06	25-Jul-08	14460.34	=""	="BAE SYSTEMS CONTROLS INC."	13-May-08 11:50 AM	

+="CN82168"	"REPAIR DAMAGED LIFTING STROP CORMORANT LIFT BAG"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	30-Jun-08	12491.05	=""	="LIFERAFT SYSTEMS AUSTRALIA"	13-May-08 11:52 AM	

+="CN82172"	"CONTRACT CONDITIONS: The Product Support and Techn dated 2 April 2003.   Note: in accordance with In"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	30-Aug-07	09-Jun-08	15865.54	=""	="THALES UK LTD, THALES AEROSPACE"	13-May-08 11:53 AM	

+="CN82173"	"CONTRACT CONDITIONS: The Product Support and Techn dated 2 April 2003.   Note: in accordance with In"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	30-Aug-07	30-Jun-08	15865.54	=""	="THALES UK LTD, THALES AEROSPACE"	13-May-08 11:53 AM	

+="CN82176"	"AMENDMENT  No. 1 TO ADD EXTRA ITEMS"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	28-Aug-07	30-Jun-08	12443.20	=""	="DEVICE TECHNOLOGIES"	13-May-08 11:54 AM	

+="CN82179"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	27-Aug-07	03-Mar-08	12269.95	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 11:54 AM	

+="CN82187"	"Repair main engine server HMAS-TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	16-Oct-07	08-Jan-08	14828.00	=""	="HONEYWELL LTD"	13-May-08 11:55 AM	

+="CN82190"	"complete changeout of knudsen side scan sonar"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	09-Oct-07	13-Dec-07	13697.32	=""	="G A GLANVILLE & CO"	13-May-08 11:56 AM	

+="CN82197"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	15-Sep-07	30-Jun-08	12800.70	=""	="ALLENS ARTHUR ROBINSON"	13-May-08 11:57 AM	

+="CN82201"	"ROR FOR DSU"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	13-Sep-07	31-Dec-07	14982.34	=""	="BIRDON MARINE PTY LTD"	13-May-08 11:57 AM	

+="CN82203"	"REPLACEMENT OF FAULTY CONDUCTIVITY METERS"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Sep-07	20-Dec-07	14960.00	=""	="FORGACS ENGINEERING PTY LTD"	13-May-08 11:57 AM	

+="CN82204"	"BUSINESS SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	01-Dec-09	15968.00	=""	="BROENS INDUSTRIES PTY LTD"	13-May-08 11:57 AM	

+="CN82205"	" POC: Rhys Goodwin    Contact ph: +61 2 6266 9382   "	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	09-Aug-07	30-Apr-08	12779.39	=""	="GENERAL DYNAMICS SATCOM"	13-May-08 11:58 AM	

+="CN82219"	"C4EWS-BCSS Leasing of Vehicle"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	18-Jul-07	30-Jun-08	13200.00	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 11:59 AM	

+="CN82235"	"TRAINING"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	17-Dec-07	30-Jun-08	14000.00	=""	="PUBLIC SECTOR MANAGEMENT PROGRAM"	13-May-08 12:00 PM	

+="CN82244"	"This contract is to extend Technical Support contract number 1859458."	="Defence Materiel Organisation"	13-May-08	="Software"	06-Mar-08	30-May-09	12717.75	=""	="ORACLE CORPORATION AUSTRALIA"	13-May-08 12:01 PM	

+="CN82250"	"Bandsaw"	="Defence Materiel Organisation"	13-May-08	="Material handling machinery and equipment"	06-Mar-08	28-Mar-08	14245.00	=""	="RON MACK MACHINERY"	13-May-08 12:01 PM	

+="CN82251"	"Repair of F/A-18 Device assembly S/No 951543"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	01-Aug-07	29-Feb-08	14045.66	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:01 PM	

+="CN82253"	"REPAIR OF F/A-18 DEVICE FLAP ASSY (MOTIONAL TRA)"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	01-Aug-07	29-Feb-08	14625.14	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:02 PM	

+="CN82255"	"Stationary"	="Defence Materiel Organisation"	13-May-08	="Office supplies"	01-Aug-07	30-Jun-08	14300.00	=""	="CORPORATE EXPRESS AUSTRALIA"	13-May-08 12:02 PM	

+="CN82261"	"Amend tMS 5553-RAN-004A Post Reversion of HMAS Dar win to Halon 1301"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	26-Jul-07	31-May-08	12561.11	=""	="THALES AUSTRALIA"	13-May-08 12:02 PM	

+="CN82262"	"DELIVERY OF EXECUTIVE COACHING PROGRAM - MICHELLE ASHWORTH"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-Mar-08	30-Jun-08	12100.00	=""	="MELBOURNE BUSINESS SCHOOL"	13-May-08 12:02 PM	

+="CN82297"	"Repair and Modification of NIIN 011849604."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	16-Jan-08	26-May-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	13-May-08 12:05 PM	

+="CN82299"	"Repair and Modification of NIIN 011849604."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	16-Jan-08	26-May-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	13-May-08 12:05 PM	

+="CN82301"	"Repair and Modification of NIIN 011849604."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	16-Jan-08	26-May-08	14088.20	=""	="BAE SYSTEMS CONTROLS INC."	13-May-08 12:05 PM	

+="CN82308"	"Fleet broadcast and data"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-Mar-08	20-Jul-08	12436.85	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:06 PM	

+="CN82340"	"PLEASE REFER TO QUOTE CP-12017"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	11-Jan-08	30-Jun-08	13807.34	=""	="COMMANDER (ACT)"	13-May-08 12:09 PM	

+="CN82352"	"QUOTE NUMBER:  QGM71203-1000d1"	="Defence Materiel Organisation"	13-May-08	="Patient care and treatment products and supplies"	11-Jan-08	08-Feb-08	15626.60	=""	="CONNECTOR TECH"	13-May-08 12:10 PM	

+="CN82356"	"Computational Fluid Dynamics software"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Jan-08	30-Jun-08	14130.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:10 PM	

+="CN82363"	"EQUIPMENT TO REPAIR DCSS KILOMUX"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	10-Mar-08	28-Apr-08	12724.80	=""	="UNITED GROUP INFRASTRUCTURE"	13-May-08 12:11 PM	

+="CN82364"	"External Light Fittings for HMAS TARAKAN"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	14-Jan-08	30-Mar-08	14754.28	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:11 PM	

+="CN82373"	"TOB-SURVEY OF FIREMAIN&U/W VALVES HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	14-Jan-08	15-Feb-08	12355.20	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:12 PM	

+="CN82405"	"OVERSEAS TRAVEL"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	18-Jan-08	01-Apr-08	15000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:14 PM	

+="CN82369"	"Printing of JS10517v6 RFQ process complete. Qty: 1,000,000"	="Australian Taxation Office"	13-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-May-08	28-May-08	14289.00	=""	="Canprint Communications"	13-May-08 12:14 PM	

+="CN82408"	"Defence personnel travel JNT00126PH2 ILS Conference (March 11-13, 2008)"	="Defence Materiel Organisation"	13-May-08	="Product and material transport vehicles"	07-Mar-08	31-Mar-08	13888.37	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:15 PM	

+="CN82419"	"Mortiser Chain & Chisel"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	07-Mar-08	09-May-08	14245.00	=""	="GABBETT MACHINERY PTY LTD"	13-May-08 12:15 PM	

+="CN82423"	"Planned Maintenance"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	07-Mar-08	07-Mar-08	15530.90	=""	="CEA TECHNOLOGIES PTY LTD"	13-May-08 12:16 PM	

+="CN82427"	"Develop HRA & Amend Drawings for Bridge Windows LCH Class"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	07-Mar-08	02-May-08	12602.98	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:16 PM	

+="CN82429"	"Conduct Assessment of Removal of Gas Turbine Enclo sure from FFG Class ships"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	07-Mar-08	30-Apr-08	13170.08	=""	="THALES AUSTRALIA"	13-May-08 12:17 PM	

+="CN82430"	"Rectify Capstans - HMAS TARAKAN"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	21-Jan-08	30-Jun-08	12262.89	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:17 PM	

+="CN82447"	"POCKET, DISTRESS SIGNAL"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	28-Apr-08	13082.86	=""	="BERNHARDT APPARATEBAU GMBH U. CO."	13-May-08 12:18 PM	

+="CN82453"	"URDEF Rectification Benalla"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Jan-08	07-Apr-08	14279.83	=""	="G A GLANVILLE & CO"	13-May-08 12:19 PM	

+="CN82469"	"STA General Acoustic Course"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	16-Jan-08	31-Jan-08	13480.01	=""	="SONARTECH ATLAS"	13-May-08 12:21 PM	

+="CN82480"	"RELOCATE DRN CABLING OAKEY"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	29-Feb-08	30-Dec-08	12639.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:22 PM	

+="CN82483"	"*INTERNAL COPY ONLY. THIS P/ORDER COPY SUPERSEDES ALL PREVIOUS VERSIONS. DO NOT DISPATCH or RE-ORDER"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	30-Jun-08	13453.46	=""	="LIVINGSTONE INTERNATIONAL PTY LTD"	13-May-08 12:22 PM	

+="CN82495"	"STX REPAIR"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	17-Jan-08	18-Feb-08	13233.19	=""	="E2V TECHNOLOGIES (UK) LIMITED"	13-May-08 12:23 PM	

+="CN82496"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Mar-08	15653.14	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:23 PM	

+="CN82502"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Mar-08	12684.67	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:24 PM	

+="CN82503"	"Parts"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	17-Jan-08	07-Feb-08	12334.30	=""	="SCITECH PTY LTD"	13-May-08 12:24 PM	

+="CN82526"	"TESTING OF PLATES & LABOUR"	="Defence Materiel Organisation"	13-May-08	="Personal safety and protection"	28-Feb-08	28-Feb-08	13887.50	=""	="BALLISTIC AND MECHANICAL TESTING"	13-May-08 12:26 PM	

+="CN82527"	"SOFTWARE MAINTENANCE"	="Defence Materiel Organisation"	13-May-08	="Software"	07-Jan-08	01-Feb-08	15620.72	=""	="CITRIX SYSTEMS ASIA PACIFIC PTY LTD"	13-May-08 12:26 PM	

+="CN82533"	"SOFTWARE SUBSCRIPTION RENEWAL"	="Defence Materiel Organisation"	13-May-08	="Software"	07-Jan-08	27-Feb-09	14630.00	=""	="AEC SYSTEMS PTY LTD"	13-May-08 12:26 PM	

+="CN82542"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Mar-08	13332.05	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:27 PM	

+="CN82552"	"TRAINING"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	28-Feb-08	30-Jun-08	14955.00	=""	="STATIC ENGINEERING PTY LTD"	13-May-08 12:28 PM	

+="CN82559"	"RING HALF"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	08-Jan-08	01-Sep-08	15878.99	=""	="ROLLS - ROYCE PLC"	13-May-08 12:28 PM	

+="CN82636"	"O/No:75433"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Fabrics and leather materials"	11-Jan-08	30-Jun-08	13323.42	=""	="Korimco Toys"	13-May-08 12:36 PM	

+="CN82650"	"Pitch Beam"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	17-Mar-08	01-Jan-10	12381.45	=""	="AGUSTAWESTLAND LTD"	13-May-08 12:38 PM	

+="CN82675"	"Filter, LIght , Cathode"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	18-Mar-08	25-Jun-08	15842.57	=""	="AERO PRECISION INDUSTRIES INC"	13-May-08 12:42 PM	

+="CN82676"	"CARL GUSTAF SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	18-Mar-08	03-Jan-09	15134.93	=""	="SAAB BOFORS DYNAMICS AB"	13-May-08 12:43 PM	

+="CN82693"	"RA FOR REPLACEMENT IRE ALARM PANEL HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Mar-08	17-Apr-08	15666.65	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:45 PM	

+="CN82696"	"Create TMS 5121-RAN-032 Inspect & Test Vent System R2-390-1 AFT Battle Dressing Station"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	27-Jun-08	13882.20	=""	="THALES AUSTRALIA"	13-May-08 12:45 PM	

+="CN82697"	"Create TMS 5121-RAN-031 Inspect & Test Vent System R2-301-2 Central control Station"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	27-Jun-08	13882.20	=""	="THALES AUSTRALIA"	13-May-08 12:45 PM	

+="CN82698"	"Create TMS 5121-RAN-027 Inspect & Test Vent System R2-230-2 Electrical Shop and Deguassing Equp"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	27-Jun-08	13882.20	=""	="THALES AUSTRALIA"	13-May-08 12:45 PM	

+="CN82699"	"Create TMS 5121-RAN-030 Inspect and test Vent Syst"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	27-Jun-08	13882.20	=""	="THALES AUSTRALIA"	13-May-08 12:46 PM	

+="CN82709"	"Use of Exisitng ASP Contract - Supply vacuum pump and motor"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	19-Mar-08	30-Apr-08	13210.89	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:47 PM	

+="CN82722"	"Command and control system"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	20-Mar-08	31-Jul-08	12382.72	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:49 PM	

+="CN82732"	"Configuration Management practitioners training to LSD 16-19 June 2008"	="Defence Materiel Organisation"	13-May-08	="Vocational training"	19-Mar-08	19-Jun-08	12815.00	=""	="ROSS"	13-May-08 12:50 PM	

+="CN82737"	"Repair and overhaul of F/A-18 Fan Rotor"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	19-Aug-08	15704.61	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:51 PM	

+="CN82739"	"Repair and overhaul of F/A-18 Fan Rotor"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	19-Aug-08	15704.61	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:51 PM	

+="CN82740"	"Repair and overhaul of F/A-18 Fan Rotor"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	19-Aug-08	15704.61	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:51 PM	

+="CN82756"	"Link Assembly"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	18-Mar-08	15-Jun-09	14173.25	=""	="AGUSTAWESTLAND LTD"	13-May-08 12:53 PM	

+="CN82757"	"SALA EQUIPMENT & PROTECTA EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	18-Mar-08	21-Mar-08	13615.80	=""	="DEFENDER SAFETY PTY LTD"	13-May-08 12:53 PM	

+="CN82765"	"Yokoqawa High Speed Modules"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Mar-08	30-Apr-08	13549.80	=""	="TRIO SMARTCAL PTY LTD"	13-May-08 12:55 PM	

+="CN82769"	"Use of Exisitng ASP Contract.- Supply Cathodic Protection syst Anodes for EMA 04"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	12-Mar-08	16-Apr-08	13239.07	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:55 PM	

+="CN82790"	"Gun Mounting Pedestals"	="Defence Materiel Organisation"	13-May-08	="Machine made parts"	12-Mar-08	28-Apr-08	15646.90	=""	="MILSPEC MANUFACTURING PTY LTD"	13-May-08 12:58 PM	

+="CN82799"	"Convert TMS 5611-RAN-001 to a Condition Assessment of Steering System and Test Relief Valves"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	11-Mar-08	30-Jun-08	13224.18	=""	="THALES AUSTRALIA"	13-May-08 12:59 PM	

+="CN82812"	"AIR WARFARE DESTROYER PROGRAM PH3-RELOCATION COSTS FOR PERSONNEL IN SPAIN"	="Defence Materiel Organisation"	13-May-08	="Business administration services"	11-Mar-08	30-May-08	13149.20	=""	="STEPS RELOCATION S.L."	13-May-08 01:01 PM	

+="CN82813"	"Freight and support"	="Defence Materiel Organisation"	13-May-08	="Mail and cargo transport"	11-Mar-08	30-Apr-08	15500.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:01 PM	

+="CN82820"	"9107376-11 Onsite LabVIEW Basics Course (Windows) for LEA ATS & LEA C4EWS Staff"	="Defence Materiel Organisation"	13-May-08	="Vocational training"	11-Mar-08	25-Mar-08	13200.00	=""	="NATIONAL INSTRUMENTS"	13-May-08 01:02 PM	

+="CN82821"	"Removal of Ultrasonic Cleaner and Associated Equip ment from HMAS Newcastle and HMAS Darwin"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Mar-08	30-Jun-08	15380.00	=""	="THALES AUSTRALIA"	13-May-08 01:03 PM	

+="CN82824"	"LEASE OF LAPTOPS"	="Defence Materiel Organisation"	13-May-08	="Software"	11-Mar-08	30-Jun-08	15070.00	=""	="HIRE INTELLIGENCE"	13-May-08 01:03 PM	

+="CN82848"	"ASD- Lead Auditor Training - Course."	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	14-Mar-08	30-Jun-08	12980.50	=""	="SAI GLOBAL LTD"	13-May-08 01:06 PM	

+="CN82849"	"Electronic Display Board System"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	14-Mar-08	30-Jun-08	12750.00	=""	="WINSTONU PTY LTD T/A HARVEY NORMAN"	13-May-08 01:06 PM	

+="CN82872"	"UET DEMONSTRATION"	="Defence Materiel Organisation"	13-May-08	="Specialised educational services"	13-Mar-08	30-Jun-08	15353.54	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 01:09 PM	

+="CN82884"	"MADE TO MEASURE UNIFORMS FOR RAAF MEMBERS: WINTER JACKETS, TROUSERS, SKIRTS"	="Defence Materiel Organisation"	13-May-08	="Clothing"	13-Feb-08	30-Jun-08	12499.99	=""	="DI FABIO BROS PTY LTD"	13-May-08 01:11 PM	

+="CN82893"	"MADE TO MEASURE UNIFORMS FOR RAAF: WINTER TROUSERS, SKIRTS"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Feb-08	30-Jun-08	12499.99	=""	="LIFESTYLE FASHION CONSULTANTS"	13-May-08 01:12 PM	

+="CN82898"	"MICROCLIMATE INSTALL"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-Feb-08	30-Apr-08	15330.36	=""	="BAE SYSTEMS(AUSTRALIA)"	13-May-08 01:13 PM	

+="CN82899"	"Database Changes"	="Defence Materiel Organisation"	13-May-08	="Computer services"	13-Feb-08	31-Mar-08	15444.00	=""	="OCEAN SOFTWARE PTY LTD"	13-May-08 01:13 PM	

+="CN82902"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	13-Feb-08	30-Apr-08	14955.00	=""	="PHILLIPS FOX SYDNEY"	13-May-08 01:13 PM	

+="CN82938"	"flammable liquid store"	="Defence Materiel Organisation"	13-May-08	="Environmental management"	23-Apr-08	16-May-08	13612.50	=""	="STORE-SAFE"	13-May-08 01:36 PM	

+="CN82947"	"Use of Exisitng ASP Contract  - Service LO FO Purifiers"	="Defence Materiel Organisation"	13-May-08	="Industrial filtering and purification"	22-Apr-08	30-Jun-08	13605.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:37 PM	

+="CN82952"	"Bisalloy 80 plates size-500mm x400mm thick-8.75m Bisalloy Hirad Plates, Size-500mmx400m thick-8.5m"	="Defence Materiel Organisation"	13-May-08	="Alloys"	22-Apr-08	23-Jun-08	15060.88	=""	="THALES AUSTRALIA"	13-May-08 01:38 PM	

+="CN82955"	"This order is raised in acordance with the email q Alber on 4 Apr 08"	="Defence Materiel Organisation"	13-May-08	="Fuels"	22-Apr-08	30-Sep-08	12729.20	=""	="FUEL INSTALLATION SERVICES"	13-May-08 01:39 PM	

+="CN82962"	"proprietry Satellite software"	="Defence Materiel Organisation"	13-May-08	="Satellites"	22-Apr-08	30-Jun-08	14081.10	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	13-May-08 01:40 PM	

+="CN82966"	"GTESPO Wellbeing Activity on 30 Apr & 1 May 2008"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	22-Apr-08	31-May-08	13200.00	=""	="OUTDOOR INSIGHTS PTY LTD"	13-May-08 01:41 PM	

+="CN82971"	"Fitting of the RO Membranes t"	="Defence Materiel Organisation"	13-May-08	="Industrial filtering and purification"	22-Apr-08	29-Apr-08	14757.88	=""	="PALL AUSTRALIA"	13-May-08 01:41 PM	

+="CN82976"	"Allegra X-15R Refrigerated Centrifuge"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	15-Apr-08	20-May-08	14245.00	=""	="BECKMAN COULTER AUSTRALIA PTY LTD"	13-May-08 01:42 PM	

+="CN82980"	"ROPING EDGE EQUIPMENT JNT02088"	="Defence Materiel Organisation"	13-May-08	="Rope and chain and cable and wire and strap"	15-Apr-08	31-May-08	14953.51	=""	="FERNO AUSTRALIA PTY LTD"	13-May-08 01:43 PM	

+="CN82984"	"REPAIR HOUCHIN GPUS - SERIAL 234113"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Apr-08	15-Jul-08	12973.08	=""	="SALE BRAKES & ENGINEERING"	13-May-08 01:43 PM	

+="CN82998"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	16-Apr-08	30-Apr-08	13578.40	=""	="FISHER LAMCO PTY LTD"	13-May-08 01:45 PM	

+="CN83017"	"1-1000GR 25mm Kits"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	14-Apr-08	30-Aug-08	15629.92	=""	="GRAFLEX INC"	13-May-08 01:48 PM	

+="CN83020"	"Miscelaneous Communications Equipment"	="Defence Materiel Organisation"	13-May-08	="Satellites"	14-Apr-08	30-Jun-08	13365.00	=""	="GIGASAT ASIA PACIFIC PTY LTD"	13-May-08 01:48 PM	

+="CN83021"	"Kits, Triple Display Lift Stands AW-T3400V Dell Precision."	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	28-Apr-08	14334.45	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 01:48 PM	

+="CN83011"	"REPAIR BLADE ANTENNA"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-May-08	30-Jun-08	12184.92	=""	="ROCKWELL COLLINS"	13-May-08 01:50 PM	

+="CN83038"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Apr-08	30-Jun-08	12903.15	=""	="PILATUS AIRCRAFT LTD"	13-May-08 01:51 PM	

+="CN83040"	"Accommodation"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	17-Apr-08	18-Apr-08	12100.00	=""	="BENTLEY SUITES"	13-May-08 01:51 PM	

+="CN83043"	"FREIGHT FOR AXLE ASSEMBLY - MACK  TRUCKS"	="Defence Materiel Organisation"	13-May-08	="Suspension system components"	17-Apr-08	17-Apr-08	12360.00	=""	="MACK TRUCKS AUSTRALIA"	13-May-08 01:52 PM	

+="CN83044"	"Contact SSES: Leila Coates Phone: 02 4424 3186"	="Defence Materiel Organisation"	13-May-08	="Industrial Production and Manufacturing Services"	17-Apr-08	30-Jun-08	14120.11	=""	="RAYTHEON AUST PTY LTD"	13-May-08 01:52 PM	

+="CN83057"	"WIRING HARNESS"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	17-Apr-08	01-May-09	13031.72	=""	="AGUSTAWESTLAND LTD"	13-May-08 01:54 PM	

+="CN83066"	"CHANNEL COMMUNICATION BANK REPLACEMENT"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Apr-08	30-Apr-08	12961.11	=""	="ADVANTAGE TELCOM"	13-May-08 01:55 PM	

+="CN83067"	"Air Conditioner Modifications"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	16-Apr-08	30-Apr-08	13313.30	=""	="HEUCH PTY LTD"	13-May-08 01:55 PM	

+="CN83073"	"Air Conditioner Modifications"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	16-Apr-08	30-Apr-08	13313.30	=""	="HEUCH PTY LTD"	13-May-08 01:56 PM	

+="CN49984"	"SUPPLY P/N PSD60-1AF"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	04-Dec-07	04-Apr-08	12523.50	=""	="VICOM AUSTRALIA"	13-May-08 01:59 PM	

+="CN83107"	"CONFERENCE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	01-May-08	10-Jun-08	15948.90	=""	="AETHERQUEST SOLUTIONS INC"	13-May-08 02:01 PM	

+="CN83108"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS OF Q 29.04.2008"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	01-May-08	31-May-08	13166.38	=""	="SERVER RACKS AUSTRALIA"	13-May-08 02:01 PM	

+="CN83109"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-May-08	02-Jun-08	14388.00	=""	="THALES AUSTRALIA"	13-May-08 02:01 PM	

+="CN83117"	"PSP SERVICES"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	14912.67	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 02:02 PM	

+="CN83119"	"Bulid of Machine Gun, 12.7mm, M2HB, QCB"	="Defence Materiel Organisation"	13-May-08	="Gun systems"	01-May-08	30-Jun-08	14169.08	=""	="THALES AUSTRALIA"	13-May-08 02:02 PM	

+="CN83128"	"Service Management Consulting"	="Defence Materiel Organisation"	13-May-08	="Business administration services"	30-Apr-08	30-May-08	12962.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	13-May-08 02:04 PM	

+="CN83154"	"Use of Exisitng ASP Contract  - Overhaul Emergency Fire Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	12888.65	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:07 PM	

+="CN83167"	"Develop a DOORS Database"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	05-May-08	30-Jun-08	13780.80	=""	="HOLISTECH PTY LTD"	13-May-08 02:09 PM	

+="CN83198"	"Update FFG Compartment Check-Off  List Database"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	01-Oct-08	14783.67	=""	="THALES AUSTRALIA"	13-May-08 02:14 PM	

+="CN83233"	"Professional Services to provide support for the ALSPO Mentoring Program throught 2008"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	24-Apr-08	31-Dec-08	12739.10	=""	="PILCHER PARTNERS PTY LTD"	13-May-08 02:21 PM	

+="CN83236"	"OVERHAUL LCM8 CRADLES AND PEDESTALS HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Apr-08	20-Jun-08	13156.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 02:21 PM	

+="CN83241"	"    Standards e-select annual renewal    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	08-May-08	07-May-09	14085.90	=""	="SAI Global"	13-May-08 02:22 PM	

+="CN83244"	"REPAIR PATIENT LIFT ON HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	24-Apr-08	20-Jun-08	14872.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 02:22 PM	

+="CN83257"	"Provision of Ear Plugs"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	23-Apr-08	30-Jun-10	15400.00	=""	="HEARING AID SPECIALISTS"	13-May-08 02:24 PM	

+="CN83264"	"Procurement Of Engineering Tasks In Support Of The Processor Investigation - Tasking Directive 180."	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	23-Apr-08	24-May-08	15558.58	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:25 PM	

+="CN83269"	"EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	14804.90	=""	="COMPUTERCORP PTY LTD"	13-May-08 02:26 PM	

+="CN83288"	"HP-xw4600 Workstation as per Quote xw4600/04/2008"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	29-Apr-08	30-May-08	15592.50	=""	="COMPUTER EASY AUSTRALIA"	13-May-08 02:29 PM	

+="CN83299"	"Use of Exisitng ASP Contract  - Overhaul No 3 Main Salt Water Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	15975.96	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:31 PM	

+="CN83326"	"Office Mix Room"	="Defence Materiel Organisation"	13-May-08	="Environmental Services"	29-Apr-08	30-May-08	14850.00	=""	="ARDEN PTY LTD"	13-May-08 02:34 PM	

+="CN83342"	"Repair of Mammoth Tape Drives (P/N 56928878)"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	13636.16	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 02:37 PM	

+="CN83367"	"Use of Exisitng ASP Contract - Mooring Winch"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	01-Apr-08	25-Apr-08	13300.98	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:41 PM	

+="CN83372"	"ITIL Training Course on site"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	31-Mar-08	16-Apr-08	13475.00	=""	="DIMENSION DATA LEARNING"	13-May-08 02:42 PM	

+="CN83379"	"STATIC PORT"	="Defence Materiel Organisation"	13-May-08	="Aircraft environmental control systems and components"	29-Mar-08	26-Jun-08	13779.85	=""	="AERO-INSTRUMENTS CO LLC"	13-May-08 02:43 PM	

+="CN83387"	"Replace Ceiling Tiles"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Mar-08	30-Jun-08	12848.00	=""	="NATIONAL INSULATION CONTRACTORS"	13-May-08 02:44 PM	

+="CN83398"	"Stowage Chock Assembley"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	30-May-08	30-May-08	13029.50	=""	="POLYLINE INDUSTRIES PTY LTD"	13-May-08 02:46 PM	

+="CN83412"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	02-Apr-08	02-Apr-08	13780.25	=""	="KAZ GROUP PTY LTD"	13-May-08 02:48 PM	

+="CN83415"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	02-Apr-08	30-Jun-08	12334.30	=""	="SCITECH PTY LTD"	13-May-08 02:49 PM	

+="CN83419"	"RING FRONT SHROUD"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	03-Apr-08	20-Dec-08	13217.22	=""	="ROLLS - ROYCE PLC"	13-May-08 02:49 PM	

+="CN83423"	"DSTO Personnel to attend Sea Hawk Trial"	="Defence Materiel Organisation"	13-May-08	="Travel and Food and Lodging and Entertainment Services"	03-Apr-08	31-May-08	12000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:50 PM	

+="CN83431"	"    HP DL380 G5 Servers per Quote TB37702    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	17-Apr-08	17-May-08	13417.45	=""	="Alpha West Services Pty Ltd"	13-May-08 03:06 PM	

+="CN83438"	"    Purchase of 2 x Audio Digital Interview Recorders with Accessories    "	="Therapeutic Goods Administration"	13-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	28-Mar-08	29-Mar-08	12892.00	=""	="TPR Systems"	13-May-08 03:27 PM	

+="CN74038"	"repair of COMPUTER FLIGHT CONTROL"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	08-May-08	30-Jun-08	13151.79	=""	="SIKORSKY AUST LTD"	13-May-08 04:01 PM	

+="CN74040"	"REPAIR OF FLIGHT COMPUTER"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	08-May-08	30-Jun-08	13151.79	=""	="SIKORSKY AUST LTD"	13-May-08 04:03 PM	

+="CN74045"	"REPAIR OF FLIGHT COMPUTER"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	08-May-08	30-Jun-08	13151.79	=""	="SIKORSKY AUST LTD"	13-May-08 04:04 PM	

+="CN78405"	"REPAIROF VERTICAL GYROSCOPE"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	12-May-08	22-Jul-08	13696.10	=""	="FLIGHT DATA SYSTEMS"	13-May-08 04:06 PM	

+="CN83460"	"Procurement of:  VALVE,LINEAR,DIRECTIONAL CONTROL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Mar-08	02-Jul-08	12676.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:29 PM	

+="CN83463"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	13-May-08	15600.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:29 PM	

+="CN83465"	"Procurement of:  PARTS KIT,FLUID PRESSURE FILTER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	04-Jul-08	14084.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:29 PM	

+="CN83474"	"Procurement of:  METER,FLUID FLOW INDICATING,DIFFERENTIAL;  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	13-May-08	13808.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	13-May-08 07:30 PM	

+="CN83475"	"Procurement of:  TIE DOWN,CARGO,VEHICLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	13-May-08	14900.00	=""	="SPANSET AUSTRALIA Ltd"	13-May-08 07:30 PM	

+="CN83476"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	13-May-08	12375.00	=""	="AUSTRALIAN SAFETY ENGINEERS (WA)"	13-May-08 07:31 PM	

+="CN83481"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	29-May-08	13750.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	13-May-08 07:31 PM	

+="CN83483"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	08-Jul-08	14310.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:31 PM	

+="CN83486"	"Procurement of:  TIE DOWN,CARGO,VEHICLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	13-May-08	15180.00	=""	="SPANSET AUSTRALIA Ltd"	13-May-08 07:32 PM	

+="CN83489"	"Procurement of:  BATTERY,NONRECHARGEABLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	13-May-08	14250.00	=""	="BATTERY SPECIALTIES (NSW) Pty LT"	13-May-08 07:32 PM	

+="CN83494"	"Procurement of:  CABLE ASSEMBLY,FIBER OPTIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	06-Oct-08	12276.00	=""	="PENNSYSTEMS Pty Ltd"	13-May-08 07:33 PM	

+="CN83496"	"Procurement of:  CABLE,POWER,ELECTRICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	31-Jul-08	14070.00	=""	="BAMBACH WIRES & CABLES Pty Ltd"	13-May-08 07:33 PM	

+="CN83502"	"Procurement of:  HOSE,NONMETALLIC;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Mar-08	13-May-08	14980.70	=""	="BAKER & PROVAN Pty Ltd"	13-May-08 07:34 PM	

+="CN83505"	"Procurement of:  RELAY,ELECTROMAGNETIC;  RELAY,ELECTROMAGNETIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	10-Sep-08	15897.70	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:34 PM	

+="CN83509"	"Procurement of:  RECTIFIER,METALLIC;  TRANSFORMER,POWER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	30-Jun-08	12000.80	=""	="MARINE PLANT SYSTEMS Pty Ltd"	13-May-08 07:35 PM	

+="CN83511"	"Procurement of:  INDICATOR,LIQUID QUANTITY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	16-May-08	14218.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:35 PM	

+="CN83512"	"Procurement of:  CAP,ASSEMBLY,ROTO V"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	13-May-08	12864.70	=""	="MAN DIESEL AUSTRALIA Pty Ltd"	13-May-08 07:35 PM	

+="CN83519"	"Procurement of:  GASKET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	09-Jun-08	14429.94	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:36 PM	

+="CN83530"	"Procurement of:  SNORKEL,DIVER'S"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	26-May-08	14835.00	=""	="BALDWIN ENTERPRISES Pty Ltd"	13-May-08 07:37 PM	

+="CN83540"	"Procurement of:  CHARGER,BATTERY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	13-May-08	13882.00	=""	="MEMO COMMUNICATIONS CO Pty Ltd"	13-May-08 07:39 PM	

+="CN83544"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	13-May-08	15750.00	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:39 PM	

+="CN83547"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	25-Mar-08	13-May-08	15655.00	=""	="PALL AUSTRALIA"	13-May-08 07:39 PM	

+="CN83561"	"Procurement of:  SCALE REMOVING COMPOUND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	13-May-08	13425.01	=""	="BERALON Pty Ltd"	13-May-08 07:41 PM	

+="CN83565"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	16-Jul-08	12865.90	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:42 PM	

+="CN83567"	"Procurement of:  SEAL,AIR,NONAIRCRAFT GAS TURBINE ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	01-Jun-08	13149.40	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:42 PM	

+="CN83570"	"Procurement of:  COMPRESSOR,REFRIGERATION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	13-May-08	14500.00	=""	="CARRIER AIR CONDITIONING Pty Ltd"	13-May-08 07:42 PM	

+="CN83572"	"Procurement of:  CABLE ASSEMBLY SET,ELECTRICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Mar-08	26-Nov-08	15784.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	13-May-08 07:43 PM	

+="CN83573"	"Procurement of:  RING,WIPER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Mar-08	14-Jul-08	14676.20	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:43 PM	

+="CN83576"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	05-Jun-08	15876.54	=""	="H I FRASER Pty Ltd"	13-May-08 07:43 PM	

+="CN83608"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	13-May-08	15425.00	=""	="AIR-MET SCIENTIFIC Pty Ltd"	13-May-08 07:47 PM	

+="CN83611"	"Procurement of:  LEAD,TEST"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	10-Sep-08	13433.88	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:47 PM	

+="CN83633"	"Procurement of:  DOOR,METAL,MARINE STRUCTURAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	08-Jul-08	14442.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:50 PM	

+="CN83640"	"Procurement of:  CONTROL,TEMPERATURE,INDICATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	27-Jul-08	13550.40	=""	="MILSPEC SERVICES Pty Ltd"	13-May-08 07:51 PM	

+="CN83643"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE;  VALVE,GLOBE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	27-Jul-08	14195.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:51 PM	

+="CN83644"	"Procurement of:  INDICATOR TUBE,GAS;  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	17-May-08	15720.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	13-May-08 07:52 PM	

+="CN83654"	"Procurement of:  CAM,GUN MOUNT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	31-May-08	13500.00	=""	="SPIRIT RIVER Pty Ltd"	13-May-08 07:53 PM	

+="CN83660"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	13-May-08	13531.64	=""	="PALL AUSTRALIA"	13-May-08 07:54 PM	

+="CN83661"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	25-Jul-08	12408.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:54 PM	

+="CN83665"	"Procurement of:  BLOCK,TACKLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	22-May-08	13935.00	=""	="BEAVER ENGINEERING Pty Ltd"	13-May-08 07:54 PM	

+="CN83683"	"Procurement of:  INDICATOR TUBE, WATER VAPOUR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	23-May-08	12810.00	=""	="MSA (AUST) Pty Ltd"	13-May-08 07:57 PM	

+="CN83685"	"Procurement of:  HANDLING BAG,GAS CY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	16-Jun-08	13344.80	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:57 PM	

+="CN83692"	"Procurement of:  DISK,MAGNETO-OPTIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	15-Jun-08	14400.00	=""	="UNITRONIX Pty Ltd"	13-May-08 07:58 PM	

+="CN83694"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	31-May-08	12568.60	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	13-May-08 07:58 PM	

+="CN83703"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	18-Jun-08	15235.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:59 PM	

+="CN83706"	"Procurement of:  CABLE ASSEMBLY,FIBER OPTIC,BRANCHED;  CABLE ASSEMBLY,FIBER OPTIC,BRANCHED"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Mar-08	13-Oct-08	15539.20	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 08:00 PM	

+="CN83710"	"Procurement of:  CONTROL,ROTARY SWITCH"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	26-May-08	14100.00	=""	="M&D MARINE PARTS SERVICE Pty *"	13-May-08 08:00 PM	

+="CN83712"	"Procurement of:  SCUPPER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	04-Jul-08	12589.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 08:01 PM	

+="CN83724"	"Procurement of:  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	09-Aug-08	15515.36	=""	="ASC Pty Ltd"	13-May-08 08:02 PM	

+="CN83728"	"Procurement of:  VALVE,SOLENOID;  VALVE,EXPANSION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	26-Aug-08	12142.44	=""	="ASC Pty Ltd"	13-May-08 08:03 PM	

+="CN83734"	"Supply of cover, fitted, vehicle comouflaged, NSN 2540-66-128-6222, PN HYG4470, QTY 15."	="Defence Materiel Organisation"	14-May-08	="War vehicles"	29-Apr-08	13-May-08	13890.20	=""	="LAND ROVER AUSTRALIA"	14-May-08 08:09 AM	

+="CN83741-A1"	"Secondment contract - Extension"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	26-Mar-08	09-May-08	12397.00	=""	="Blake Dawson"	14-May-08 09:21 AM	

+="CN83744"	"funiture"	="Royal Australian Mint"	14-May-08	="Furniture and Furnishings"	07-Apr-08	07-Apr-08	15832.30	=""	="ADVANCE METAL PRODUCTS PTY LIMITED"	14-May-08 09:30 AM	

+="CN83773"	"Personal Efficiency Training for EL 2s"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Specialised educational services"	13-May-08	24-Jun-08	14520.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	14-May-08 10:21 AM	

+="CN83784"	"Ad hoc support services (DPS08057)"	="Department of Parliamentary Services"	14-May-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	24-Feb-09	15255.00	=""	="Oakton Services Pty Ltd"	14-May-08 10:40 AM	

+="CN83820"	"External training"	="Centrelink"	14-May-08	="Vocational training"	07-Nov-07	30-Jun-08	13750.00	=""	="Advanced Personnel Management"	14-May-08 12:26 PM	

+="CN83845"	"Property Fitout, Frankston VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	19-May-08	14630.00	=""	="James Millar Architects"	14-May-08 12:31 PM	

+="CN83847-A1"	"Advertising"	="Centrelink"	14-May-08	="Printed media"	15-Nov-07	30-Jun-08	13200.00	=""	="HMA Blaze Pty Ltd"	14-May-08 12:32 PM	

+="CN83849"	"Surveillance services"	="Centrelink"	14-May-08	="Security surveillance and detection"	01-May-08	30-Jun-08	15000.00	=""	="Integracom Management Group Pty Ltd"	14-May-08 12:32 PM	

+="CN83860"	"Camera Operator"	="Centrelink"	14-May-08	="Telecommunications media services"	10-Sep-07	30-Jun-08	14190.00	=""	="Rotating Head Productions"	14-May-08 12:34 PM	

+="CN83862"	"Fitout Management for Port Augusta, SA, Refurbishment"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Sep-07	01-Aug-08	14907.88	=""	="Greenway Architects (SA) Pty Ltd"	14-May-08 12:34 PM	

+="CN83889"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	22-Apr-08	30-Apr-08	13640.00	=""	="Conflict Resolution Training and Consultancy Pty Ltd"	14-May-08 12:39 PM	

+="CN83897"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	18-May-08	12320.00	=""	="Commstar Communications"	14-May-08 12:40 PM	

+="CN83898"	"Design and Documentation Services"	="Centrelink"	14-May-08	="Professional engineering services"	30-Apr-08	30-Jun-08	14250.00	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 12:40 PM	

+="CN83901"	"Printer Media"	="Centrelink"	14-May-08	="Printed media"	30-Apr-08	30-Jun-08	12167.90	=""	="Child Support Agency"	14-May-08 12:41 PM	

+="CN83903"	"Engineering services, Taree, NSW"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Apr-08	30-Apr-08	13021.74	=""	="Interior Dynamics Australia Pty Ltd"	14-May-08 12:41 PM	

+="CN83905"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	29-Apr-08	30-Jun-08	12100.00	=""	="Martin Lack and Associates"	14-May-08 12:41 PM	

+="CN83912"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	10-Apr-08	30-Jun-08	13000.00	=""	="Excom Education Pty Ltd"	14-May-08 12:43 PM	

+="CN83919"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	08-Apr-08	27-Apr-08	15950.00	=""	="DESA Australia Pty Ltd"	14-May-08 12:44 PM	

+="CN83928"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	18-Apr-08	11-May-08	13585.00	=""	="Heyday Group Pty Ltd"	14-May-08 12:46 PM	

+="CN83931"	"Management Advisory Services"	="Centrelink"	14-May-08	="Management advisory services"	16-Apr-08	30-Jun-08	15000.00	=""	="Yellow Edge Pty Ltd"	14-May-08 12:47 PM	

+="CN83934"	"Removalist Services"	="Centrelink"	14-May-08	="Transportation components and systems"	15-Apr-08	30-Jun-08	14905.00	=""	="Toll Transitions"	14-May-08 12:47 PM	

+="CN83940"	"Workstations and storage units"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	21-May-08	12783.10	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:48 PM	

+="CN83942"	"Paper Materials and Products"	="Centrelink"	14-May-08	="Paper Materials and Products"	07-Apr-08	30-Jun-08	14216.40	=""	="Bill and Sandra Piper Printing"	14-May-08 12:48 PM	

+="CN83947"	"Installation of additional CCTV components"	="Centrelink"	14-May-08	="Security surveillance and detection"	04-Apr-08	30-Jun-08	12309.00	=""	="Chubb Electronic Security Pty Ltd"	14-May-08 12:49 PM	

+="CN83950"	"Software Licences"	="Centrelink"	14-May-08	="Software"	04-Apr-08	04-Apr-08	14360.15	=""	="Kaz Group Pty Ltd"	14-May-08 12:50 PM	

+="CN83955"	"Manage relocation of Noarlunga office, SA"	="Centrelink"	14-May-08	="Transport operations"	03-Apr-08	06-Apr-08	13660.90	=""	="Toll Transitions"	14-May-08 12:50 PM	

+="CN83977"	"External signs"	="Centrelink"	14-May-08	="Signage and accessories"	21-Apr-08	30-May-08	13860.00	=""	="Tint Design Pty Ltd"	14-May-08 12:53 PM	

+="CN83985"	"Architectural services"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Sep-07	28-Jun-08	12829.30	=""	="Power Graham and Dempsey Pty Ltd"	14-May-08 12:55 PM	

+="CN83993"	"Customer chairs for refit, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	14327.50	=""	="Solitaire Seating"	14-May-08 12:56 PM	

+="CN83998"	"CCTV, Caboolture, QLD"	="Centrelink"	14-May-08	="Security surveillance and detection"	01-Apr-08	30-Jun-08	13402.40	=""	="Securcom Pty Ltd"	14-May-08 12:57 PM	

+="CN84001"	"Computer cabling"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	14300.00	=""	="Department of Finance and Deregulation"	14-May-08 12:57 PM	

+="CN84002"	"Office Furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	02-Jun-08	15618.90	=""	="Bentley House Commercial Interiors"	14-May-08 12:57 PM	

+="CN84022"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Human resources services"	12-Oct-07	30-Jun-08	13960.32	=""	="Kaz Group Pty Ltd"	14-May-08 01:02 PM	

+="CN84028"	"Electrical work"	="Centrelink"	14-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	24-Apr-08	24-Apr-08	14630.00	=""	="Nakara Electrics and Building Co Pty"	14-May-08 01:02 PM	

+="CN84033"	"Office refit"	="Centrelink"	14-May-08	="Building and Construction Machinery and Accessories"	17-Apr-08	30-Jun-08	12881.00	=""	="Fyfe Interiors and Refurbishment"	14-May-08 01:03 PM	

+="CN84044"	"Accounting and auditing"	="Centrelink"	14-May-08	="Accounting and auditing"	23-Apr-08	30-Jun-08	13200.00	=""	="World Wide Webster Pty Ltd"	14-May-08 01:05 PM	

+="CN84045"	"Access Control cabling"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	23-Apr-08	30-Jun-08	14184.50	=""	="Department of Finance and Deregulation"	14-May-08 01:05 PM	

+="CN84063"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	22-Apr-08	05-Aug-08	12870.00	=""	="DELL AUSTRALIA PTY LIMITED"	14-May-08 01:28 PM	

+="CN84081"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	13366.33	=""	="LANDROVER"	14-May-08 02:33 PM	

+="CN84094"	"Maintenance & Repairs"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	23-Aug-07	14243.46	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 03:01 PM	

+="CN84092"	" Aircraft Spares  QTY 25 NSN 6210-66-123-5229  Filter Indicator Light "	="Defence Materiel Organisation"	14-May-08	="Aircraft"	14-May-08	06-Aug-08	15000.00	=""	="Aerospace and Defence Products"	14-May-08 03:03 PM	

+="CN84107"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	13-Aug-07	10-Sep-07	15754.75	=""	="DELL COMPUTER PTY LTD"	14-May-08 03:03 PM	

+="CN84109"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	14300.00	=""	="Integral Consulting Services"	14-May-08 03:03 PM	

+="CN84110"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	13-Aug-07	10-Sep-07	15180.00	=""	="Integral Consulting Services"	14-May-08 03:03 PM	

+="CN84115"	"Personal Efficiency Program (PEP) training"	="Australian Taxation Office"	14-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	25-Jun-08	13200.00	="06.241-0038"	="D'Arcy Consulting Group Ply Umited"	14-May-08 03:13 PM	

+="CN84124"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	21-Aug-07	21-Aug-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	14-May-08 03:39 PM	

+="CN84125"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	21-Aug-07	21-Aug-07	12549.76	=""	="Knight Frank (SA) Pty Ltd"	14-May-08 03:39 PM	

+="CN84129"	"Artbank Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	21-Aug-07	31-Jul-08	15000.00	=""	="ARTBANK"	14-May-08 03:39 PM	

+="CN84141"	"PRINTING COSTS"	="Department of Human Services"	14-May-08	="Printed publications"	23-Apr-08	28-Apr-08	15235.28	=""	="CENTRELINK"	14-May-08 04:14 PM	

+="CN84149"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	12386.48	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84153"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Aug-07	31-Aug-07	15988.76	=""	="Control Risks Group"	14-May-08 04:35 PM	

+="CN84154"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	24-Aug-07	24-Aug-07	13859.28	=""	="Austex Logistics Pty Ltd"	14-May-08 04:35 PM	

+="CN84157"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	31-Aug-07	13557.50	=""	="SINCLAIR KNIGHT MERZ"	14-May-08 04:35 PM	

+="CN84171"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	02-Sep-07	12289.31	=""	="Knight Frank (SA) Pty Ltd"	14-May-08 04:55 PM	

+="CN84173"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	29-Aug-07	31-Jul-08	13737.50	=""	="ARTBANK"	14-May-08 04:55 PM	

+="CN84184"	"Contracting Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	05-Sep-07	13127.40	=""	="ICON RECRUITMENT PTY LTD"	14-May-08 04:56 PM	

+="CN84188"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	13895.75	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 04:57 PM	

+="CN84190"	"Images of Australia DVD production"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	06-Sep-07	10-Sep-07	12595.00	=""	="Great Southern Communications"	14-May-08 04:57 PM	

+="CN84195"	"Subscription to Factiva.com"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	11-Sep-07	11-Sep-07	13125.00	=""	="Dow Jones Reuters Business Interact"	14-May-08 04:58 PM	

+="CN84196"	"Property Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	11-Sep-07	11-Sep-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	14-May-08 04:58 PM	

+="CN84205"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	13348.76	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84211"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	17-Sep-07	17-Sep-07	12199.00	=""	="Diebold Physical Security Pty Ltd"	14-May-08 05:01 PM	

+="CN84212"	"APEC Travel"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	17-Sep-07	17-Sep-07	12601.02	=""	="Macquarie Bank Limited"	14-May-08 05:01 PM	

+="CN84217"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Human resources services"	19-Sep-07	28-Sep-07	12490.50	=""	="Infinite Consulting Pty Ltd"	14-May-08 05:02 PM	

+="CN84219"	"Software Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	20-Sep-07	01-Oct-07	13941.40	=""	="IBM Australia Ltd"	14-May-08 05:02 PM	

+="CN84223"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	24-Sep-07	30-Sep-07	12904.55	=""	="Minter Ellison"	14-May-08 05:03 PM	

+="CN84231"	"Recruitment expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	19-Oct-07	12169.50	=""	="hma Blaze Pty Limited"	14-May-08 05:04 PM	

+="CN84262"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	14-Sep-07	12-Oct-07	12650.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 05:09 PM	

+="CN84272"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	19-Sep-07	17-Oct-07	13607.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	14-May-08 05:10 PM	

+="CN84277"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	24-Sep-07	22-Oct-07	14190.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:11 PM	

+="CN84280"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	28-Sep-07	30-Sep-07	12523.50	=""	="Commander Integrated Networks Pty L"	14-May-08 05:12 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val150000to300000.xls
@@ -1,1 +1,531 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN77993-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	25-Feb-08	22-Aug-08	193050.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:12 AM	

+="CN77995-A3"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	04-Feb-08	30-Jun-09	261800.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:18 AM	

+="CN77997"	"FACILITY CERTIFICATION"	="Department of Defence"	12-May-08	="Environmental control systems"	17-Dec-07	30-Jun-08	240199.35	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:29 AM	

+="CN78006"	"THERMAL MANIKIN SYSTEM"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Dec-07	30-Jun-08	230195.80	=""	="MEASUREMENT TECHNOLOGY NORTHWEST"	12-May-08 09:31 AM	

+="CN78032"	"SEA FREIGHT MOVT OF IMV, TRAILER AND GRADER OP"	="Department of Defence"	12-May-08	="Marine transport"	14-Dec-07	31-Mar-08	232128.73	=""	="APL LOGISTICS"	12-May-08 09:36 AM	

+="CN78054"	"Development of DARNOS"	="Department of Defence"	12-May-08	="Software"	14-Dec-07	30-Jun-08	164934.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 09:41 AM	

+="CN78065"	"HQJOC PROJECT-SECURE EDGE TECHNOLOGIES PTY LTD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-09	210262.10	=""	="SECURE EDGE TECHNOLOGIES PTY LTD"	12-May-08 09:43 AM	

+="CN78070"	"BATHURST ISLAND INSTALL DEMOUNTABLE"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	19-Dec-07	30-Jun-08	281656.10	=""	="ASSET SERVICES"	12-May-08 09:45 AM	

+="CN78079"	"Physical Infrastructure Appraisal"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Dec-07	30-Jun-08	298000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-May-08 09:47 AM	

+="CN78095"	"BACKFILLING OF OPERATIONAL VACANCIES AS APPROVED BY HEADQUARTERS AIR COMMAND"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	19-Dec-07	12-Dec-08	275000.00	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:50 AM	

+="CN78102"	"Computer components and accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	21-Mar-08	185924.20	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 09:51 AM	

+="CN78149"	"REPAIRS AND MAINTENANCE TO SECT DEFENCE RANGE"	="Department of Defence"	12-May-08	="General building construction"	18-Dec-07	30-Jun-08	154286.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78158"	"Conduct study of OHS MIS for Defence"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	284988.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 10:01 AM	

+="CN78164-A3"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	11-Feb-08	30-Jun-09	257125.00	=""	="Paxus Australia Pty Limted"	12-May-08 10:03 AM	

+="CN78174"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-07	156200.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:20 AM	

+="CN74178-A3"	"Provision of Specialist Services for Information Technology"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-09	205468.00	=""	="Ross Human Directions Limited"	12-May-08 10:56 AM	

+="CN74172-A2"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	176660.00	=""	="Ross Human Directions Limited"	12-May-08 10:59 AM	

+="CN78197-A3"	" Lease of Office Space Thursday Island "	="Department of Foreign Affairs and Trade"	12-May-08	="Lease and rental of property or building"	01-Feb-07	28-Feb-12	153444.15	=""	="TUBARAO INVESTMENTS PTY. LTD."	12-May-08 11:51 AM	

+="CN78203-A2"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-08	203060.00	=""	="Paxus Australia Pty Limited"	12-May-08 12:03 PM	

+="CN78217"	"AIR CHTRS OP PNG ASSIST PNG-TSV"	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	12-Dec-07	196000.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 01:06 PM	

+="CN78263-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	30-Dec-08	159157.35	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 01:11 PM	

+="CN78277"	"MULWALA CONTAMINATED GROUNDWATER REMEDIATION PHASE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	229900.00	=""	="THALES AUSTRALIA"	12-May-08 01:13 PM	

+="CN78284"	"WATER QUALITY MONITORING PROGRAM SOUTH QLD"	="Department of Defence"	12-May-08	="Water resources development and oversight"	05-Dec-07	30-Jun-08	224649.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78291"	"LANDSCAPE MONITORING PROGRAM SWBTA"	="Department of Defence"	12-May-08	="Environmental Services"	05-Dec-07	30-Jun-08	151658.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:15 PM	

+="CN78306"	"INFRASTRUCTURE APPRAISALS WESTERN REGION"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	05-Dec-07	30-Jun-08	195100.40	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 01:18 PM	

+="CN78330"	"SA2279 - FACOPS Building 205 Upgrade"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Dec-07	30-Jun-08	270452.22	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:22 PM	

+="CN78339"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	264000.00	=""	="PROVIDENCE CONSULTING GROUP PL"	12-May-08 01:23 PM	

+="CN78343"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	220000.00	=""	="FRONTLINE HYPERLINK PTY LTD"	12-May-08 01:24 PM	

+="CN78362"	"Task Manger"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	31-Dec-08	229147.56	=""	="KOBOLD GROUP LTD"	12-May-08 01:27 PM	

+="CN78363"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	30-Apr-08	207917.40	=""	="BLAKE DAWSON WALDRON"	12-May-08 01:27 PM	

+="CN78373"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-May-08	151839.60	=""	="SMS MANAGEMENT & TECHNOLOGY"	12-May-08 01:29 PM	

+="CN78380"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	200000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 01:30 PM	

+="CN78386"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	19-Dec-08	227873.25	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:31 PM	

+="CN78394"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	02-May-08	212578.01	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 01:32 PM	

+="CN78407"	"FACOPS - SA2245"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	188849.10	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78409"	"DMO BATTERY CHARGING - 1FD BTY - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	198402.72	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:35 PM	

+="CN78422"	"SPRINKLER HEAD REPLACEMENT CONTRACT STH QLD UNDER 200 HEAD BUILDINGS"	="Department of Defence"	12-May-08	="Fire protection"	10-Dec-07	30-Jun-08	154333.01	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:37 PM	

+="CN78426"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	01-Apr-08	246100.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-May-08 01:38 PM	

+="CN78442"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-May-08	167261.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:41 PM	

+="CN78459"	"Contracted personnel - Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	14-May-08	30-Jun-09	185152.00	="DFAT07-DID-004"	="WHIZDOM PTY LTD"	12-May-08 01:43 PM	

+="CN78460"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	28-Mar-08	250000.01	=""	="CHRISTOPHER LEE"	12-May-08 01:43 PM	

+="CN78467"	"INSTALLATION OF RAINWATER TANKS DARLING DOWNS AREA"	="Department of Defence"	12-May-08	="Water resources development and oversight"	07-Dec-07	30-Jun-08	205962.02	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:44 PM	

+="CN78471"	"AREA WEIGHBRIDGE CONSTRUCTION GALLIPOLI BKS"	="Department of Defence"	12-May-08	="Transportation services equipment"	07-Dec-07	30-Jun-08	291038.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:45 PM	

+="CN78478"	"Network Equipment"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Dec-07	10-Dec-07	196177.35	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:46 PM	

+="CN78497"	"FINANCIAL RISK AND REMEDIATION COST ASSESSMENT FY0"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	267360.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:48 PM	

+="CN78507"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	192500.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 01:50 PM	

+="CN78527"	"Lease of datasets"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jun-09	170000.60	=""	="SENSIS PTY LTD"	12-May-08 01:53 PM	

+="CN78529"	"SEA FREIGHT OP CATALYST"	="Department of Defence"	12-May-08	="Marine transport"	20-Dec-07	20-Dec-07	223538.59	=""	="APL LOGISTICS"	12-May-08 01:53 PM	

+="CN78540"	"NETWORK ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	31-Dec-08	231000.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:55 PM	

+="CN78547"	"REBURBISH NAVY HQ ABLUTIONS - BULIMBA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Dec-07	30-Jun-08	179439.70	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:57 PM	

+="CN78558"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Dec-07	191644.20	=""	="COFFEY ENVIRONMENTS PTY LTD"	12-May-08 02:00 PM	

+="CN78576"	"POC: KEVIN FERGUSON CONTACT: 02 626 50615"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	278865.40	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 02:03 PM	

+="CN78603"	"FURTHER AUDIT OF MANDATORY AND LEGISLATIVE FIXED P MAINTENANCE."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	265265.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 02:07 PM	

+="CN78606"	"To be delivered on base no later than 10december07"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	21-Jan-08	198958.43	=""	="NEC AUSTRALIA PTY LTD"	12-May-08 02:08 PM	

+="CN78625"	"JUNGLE VILLAGE REFURBISHMENT - CANUNGRA"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jan-08	30-Jun-08	156164.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 02:11 PM	

+="CN78637"	"POC:David Boyes/Liz Rankin PSP services 02 612 70809/02 626 50741"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Jan-08	30-Jun-08	190299.98	=""	="ILLUMINATED SOLUTIONS PTY LTD"	12-May-08 02:12 PM	

+="CN78654"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Dec-08	162713.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78658"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	208802.00	=""	="CAREERS MULTILIST LIMITED"	12-May-08 02:14 PM	

+="CN78661"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	177681.49	=""	="CAREERS MULTILIST LIMITED"	12-May-08 02:14 PM	

+="CN78685"	"CONCRETE BLOCKS"	="Department of Defence"	12-May-08	="Concrete and cement and plaster"	10-Apr-08	15-May-08	190190.00	=""	="HANSON PRECAST"	12-May-08 02:16 PM	

+="CN78693"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	11-Feb-08	271810.00	=""	="PDL TOLL"	12-May-08 02:16 PM	

+="CN78719"	"Airfares"	="Department of Defence"	12-May-08	="Office supplies"	31-Oct-07	31-Oct-07	165850.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:18 PM	

+="CN78731"	"AE/021/07-08 AIR CHTR EX NORTHERN ATLAS AMB-LEA-CU"	="Department of Defence"	12-May-08	="Aircraft"	12-Apr-08	10-May-08	155000.00	=""	="STRATEGIC AVIATION - USD"	12-May-08 02:19 PM	

+="CN78743"	"Professional services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	19-May-08	159154.52	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:19 PM	

+="CN78744"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	15-Jun-08	200000.00	=""	="FRANK CULLEN"	12-May-08 02:19 PM	

+="CN78758"	"LEGAL SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	15-Dec-07	226200.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:20 PM	

+="CN78760"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-09	221283.33	=""	="RAYTHEON AUST PTY LTD"	12-May-08 02:20 PM	

+="CN78769"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-09	190758.33	=""	="RAYTHEON AUST PTY LTD"	12-May-08 02:21 PM	

+="CN78799"	"This order is subject to the terms and conditions Systems Standing Offer CFO SAP 1/2005"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Apr-08	31-Mar-09	200376.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 02:23 PM	

+="CN78815"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1. ADDITIONAL 30-50% DESIGN (POST PWC)."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	180976.40	=""	="JOHN HOLLAND BENEFICIARIES TRUST"	12-May-08 02:24 PM	

+="CN78821"	"WARRADALE WTSS. WARRADALE WTSS."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	186758.00	=""	="GHD PTY LTD"	12-May-08 02:24 PM	

+="CN78830"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	21-Dec-07	30-Jun-08	160651.92	=""	="ASI SOLUTIONS"	12-May-08 02:24 PM	

+="CN78898"	"Test & Evaluation Trail"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	21-Dec-07	30-Jun-08	220000.00	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 02:29 PM	

+="CN78922"	"POC: Mark McClure Contact: 02 6265 0540"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	22-Jun-09	267625.80	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 02:31 PM	

+="CN78925"	"dsto software development"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	01-Jun-08	167948.04	=""	="MINISTRY OF DEFENCE, DSTL"	12-May-08 02:31 PM	

+="CN78952"	"ANNUAL MAINTENANCE SUPPORT FEE FOR OUTSTART EVOLUTION"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	01-May-08	182600.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	12-May-08 02:33 PM	

+="CN78962"	"OVERVIEW OF STATE THREATENED SPECIES AND ECOLOGICA DEFENCE ESTATE"	="Department of Defence"	12-May-08	="Environmental control systems"	17-Dec-07	30-Jun-08	150360.10	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 02:34 PM	

+="CN79017"	"Computer Desktops"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	15-Jan-08	151608.82	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79034"	"Construct Deployable Equipment Storage Shed at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	07-Apr-08	30-Jun-08	159999.99	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:39 PM	

+="CN79039"	"04-425295 29FEB08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	29-Feb-08	11-Mar-08	286243.09	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:40 PM	

+="CN79071"	"CONTRACTOR PROVIDE DEVELOP CDD"	="Department of Defence"	12-May-08	="Project management"	04-Apr-08	30-Jun-08	268270.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 02:42 PM	

+="CN79077"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	04-Apr-08	173800.00	=""	="SMS CONSULTING GROUP LIMITED"	12-May-08 02:43 PM	

+="CN79078"	"This order is subject to the terms and conditions Systems Standing Offer CFO SAP 1/2005"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Apr-08	14-Nov-08	209880.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 02:43 PM	

+="CN79079"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	230000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:43 PM	

+="CN79080"	"GHD4 PMCA - ELF PROGRAM COORDINATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	174885.70	=""	="GHD PTY LTD"	12-May-08 02:43 PM	

+="CN79083"	"GSS CUSTOMER PAYS INVOICES FEB 08"	="Department of Defence"	12-May-08	="Transportation services equipment"	19-Mar-08	30-Jun-08	266714.64	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 02:43 PM	

+="CN79089"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	300000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79093"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	26-Mar-08	31-Mar-08	200000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79127"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	01-Jun-08	157300.00	=""	="FLAVOUR SOLUTIONS PTY LTD"	12-May-08 02:48 PM	

+="CN79132-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jun-08	157080.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 02:48 PM	

+="CN79134"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	16-Jun-08	220000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 02:48 PM	

+="CN79153"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-Jun-08	175560.00	=""	="CARRARD SOLUTIONS"	12-May-08 02:50 PM	

+="CN79157"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	04-Apr-08	04-Apr-08	174754.82	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 02:50 PM	

+="CN79159"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	02-Apr-08	04-Apr-08	290000.00	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 02:51 PM	

+="CN79181"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-Jun-08	179740.00	=""	="CARRARD SOLUTIONS"	12-May-08 02:53 PM	

+="CN79208"	"PABX Systems"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	04-Apr-08	02-Jun-08	162862.31	=""	="FUJITSU AUSTRALIA LTD"	12-May-08 02:55 PM	

+="CN79210"	"HQJOC PROJECT - ADI LIMITED - CISTECH INTEGRATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	167883.88	=""	="THALES AUSTRALIA"	12-May-08 02:55 PM	

+="CN79239"	"Provision of Services for Stocktaking Liability"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	03-Apr-08	30-Jun-08	176000.00	=""	="WORKFORCE TRAINING SOLUTIONS"	12-May-08 02:58 PM	

+="CN79264"	"Delivery of CMC CNNSW - GB & FM Reactive Maintenance work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Jul-05	30-Jun-06	250985.31	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79272"	"CADET FACILITIES MARYBOROUGH AND GLADSTONE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	09-Apr-08	30-Jun-08	204552.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:01 PM	

+="CN79299"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	06-May-08	166106.16	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 03:04 PM	

+="CN79321"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	07-May-08	160335.91	=""	="SUN MICROSYSTEMS"	12-May-08 03:07 PM	

+="CN79341"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	31-Mar-09	248532.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 03:09 PM	

+="CN79360"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	09-Apr-08	220000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:10 PM	

+="CN79382"	"fire detection upgrade"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	09-Apr-08	30-Jun-08	217620.16	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:11 PM	

+="CN79387"	"This Purchase Order is raised to facilitate joint Iterim EW (BHIE) modification activities by BAE Sy"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Apr-08	30-Jun-08	266200.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:12 PM	

+="CN79413"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	02-Apr-08	30-Jun-08	275400.00	=""	="DEACONS"	12-May-08 03:14 PM	

+="CN79431"	"S5091, WR 300079946. Asbestos removal program - Ca To undertake the emergency removal of previously"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	205700.00	=""	="THALES AUSTRALIA"	12-May-08 03:15 PM	

+="CN79446"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	14-Apr-08	14-Apr-08	235252.85	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	12-May-08 03:16 PM	

+="CN79479"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	242008.80	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79480"	"REPAIRS TO HIGH CURRENT POWER SUPPLY UNITS AT HEAVY REPAIR FACILITY, SURGE EVE#NT AS PER C439154"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	26-Mar-08	28-Aug-08	283140.00	=""	="THALES AUSTRALIA"	12-May-08 03:18 PM	

+="CN79485"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	178794.00	=""	="PROVIDENCE CONSULTING GROUP PL"	12-May-08 03:18 PM	

+="CN79503"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	24-Apr-08	24-Jul-08	156200.00	=""	="Ingena Group Limited"	12-May-08 03:19 PM	

+="CN79519"	"TRAVEL SERVICES"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	29-Feb-08	233127.23	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:20 PM	

+="CN79554"	"UPGRADE OF MARITIME SAFETY NET"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	08-Apr-08	30-Jun-08	185191.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 03:23 PM	

+="CN79567"	"SDSS GS DATA REMEDIATION"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	28-May-08	160000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 03:23 PM	

+="CN79579"	"Engagement of ESP for Open Plan Professional Sched"	="Department of Defence"	12-May-08	="Management support services"	26-Mar-08	30-Jun-09	170950.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:25 PM	

+="CN79593"	"AIR09000PH7 STE & Software Engineering Support"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	13-Feb-08	24-Aug-08	155446.98	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:26 PM	

+="CN79597"	"CLIENT WORKSTATION REPLACEMENT AT HEAVY REPAIR REPAIR FACILITY. REFER CAPO C439136"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	15-May-08	170238.98	=""	="THALES AUSTRALIA"	12-May-08 03:26 PM	

+="CN79604"	"GSS CUSTOMER PAYS JAN 08"	="Department of Defence"	12-May-08	="Security surveillance and detection"	19-Feb-08	30-Jun-08	163951.24	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79612"	"Provision of Queue Management Services"	="Medicare Australia"	12-May-08	="Electronic hardware and component parts and accessories"	14-Apr-08	30-Jun-08	223085.00	=""	="Nexa Group Pty Ltd"	12-May-08 03:27 PM	

+="CN79618"	"INFORMATION MANAGEMENT SYSTEM MIGRATION AT HEAVY REPAIR FACILITY. REFER CAPO C439136"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Mar-08	15-May-08	154084.97	=""	="THALES AUSTRALIA"	12-May-08 03:27 PM	

+="CN79649"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	12-Feb-08	12-Feb-08	275000.00	=""	="MINTER ELLISON"	12-May-08 03:29 PM	

+="CN79666"	"Corrosion control and prevention - Seahawk aircraf"	="Defence Materiel Organisation"	12-May-08	="Aircraft fuselage and components"	11-Feb-08	30-Jun-08	176000.00	=""	="DSTO PSL SRM"	12-May-08 03:31 PM	

+="CN79671"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Feb-08	13-Feb-08	240000.00	=""	="MINTER ELLISON"	12-May-08 03:32 PM	

+="CN79621-A2"	"Forensic accounting services - Variation"	="Australian Securities and Investments Commission"	12-May-08	="Accounting services"	20-Mar-08	31-Dec-08	259783.00	=""	="Axiom Forensics"	12-May-08 03:32 PM	

+="CN79688"	"CODE REVIEW"	="Defence Materiel Organisation"	12-May-08	="Computer services"	12-Feb-08	30-Apr-08	227380.00	=""	="IBM AUSTRALIA LTD"	12-May-08 03:33 PM	

+="CN79691"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	267389.87	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:33 PM	

+="CN79695"	"ESP - SPECIFICATION WRITING FOR MEDICAL & DENTAL EQUIPMENT"	="Department of Defence"	12-May-08	="Electronic reference material"	25-Mar-08	19-Sep-08	281220.63	=""	="SME GATEWAY LIMITED"	12-May-08 03:33 PM	

+="CN79710"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	203907.84	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:34 PM	

+="CN79725"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	01-Apr-08	30-Jun-08	209440.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	12-May-08 03:35 PM	

+="CN79726"	"CONTACT: NEV IRISH 08 8935 4468 WR: 150131043"	="Department of Defence"	12-May-08	="General building construction"	14-Nov-07	30-Jun-08	298831.50	=""	="WOLPERS GRAHL PTY LTD"	12-May-08 03:35 PM	

+="CN79733"	"SRP2 NRE CONTRACT SURVEY AND QUOTE 10 REV B"	="Department of Defence"	12-May-08	="Aircraft"	25-Mar-08	30-Jun-10	205600.83	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 03:35 PM	

+="CN79741"	"CONSULTANTS"	="Department of Defence"	12-May-08	="General building construction"	16-Nov-07	30-Jun-08	150340.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:36 PM	

+="CN79758"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	28-Mar-08	30-Dec-11	151141.00	=""	="EDS (AUSTRALIA) PTY LTD"	12-May-08 03:37 PM	

+="CN79759"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	15-Feb-08	15-Feb-08	230000.00	=""	="SPARKE HELMORE LAWYERS"	12-May-08 03:37 PM	

+="CN79765-A1"	"MIMMS Maintenance Module (MMM) Business System Support Centre Help Desk"	="Defence Materiel Organisation"	12-May-08	="Business administration services"	15-Feb-08	30-Jun-08	167400.00	=""	="DIMENSION DATA LEARNING"	12-May-08 03:37 PM	

+="CN79772"	"CONTACT LEIGH GILLIGAN 08 8973 6552 WR: 150132450"	="Department of Defence"	12-May-08	="General building construction"	16-Nov-07	30-Jun-08	174130.00	=""	="ASSET SERVICES"	12-May-08 03:38 PM	

+="CN79779"	"AIRCRAFT ENGINEERING AND MAINTENANCE"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	15-Feb-08	30-Apr-08	220000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:39 PM	

+="CN79790"	"AIR FARES"	="Department of Defence"	12-May-08	="Fuels"	31-Dec-07	18-Feb-08	160561.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79794"	"Development of the PFPS And JMPS Survivability Common Component"	="Department of Defence"	12-May-08	="Software"	28-Mar-08	30-Jun-08	207845.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:40 PM	

+="CN79797"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	219800.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 03:40 PM	

+="CN79839"	"Toyota Hilux 4x2 Tray (4 Cy) Single Cab Qty:9"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	17-Oct-08	170843.01	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79844"	"Toyota Corolla Sedan Qty 11"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	29-Aug-08	252008.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79851"	"02-24435631DEC07 LINES 3991 - 4251"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	223497.17	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:43 PM	

+="CN79868"	"QUARANTINE FEES"	="Department of Defence"	12-May-08	="Environmental protection"	21-Apr-08	30-Jun-08	150000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	12-May-08 03:45 PM	

+="CN79870"	"ESD SPARES"	="Defence Materiel Organisation"	12-May-08	="Electrical equipment and components and supplies"	15-Feb-08	15-May-08	212885.08	=""	="ALLEN-VANGUARD LTD"	12-May-08 03:45 PM	

+="CN79871"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	179080.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:45 PM	

+="CN79921"	"JCSE  Information Systems Specialist"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	14-Feb-08	07-Feb-09	279400.01	=""	="L G COOK & ASSOCIATES PTY TLD"	12-May-08 03:48 PM	

+="CN73481"	"Catering Services for all participants, volunteers and attendees."	="Department of the Prime Minister and Cabinet"	12-May-08	="Banquet and catering services"	04-Apr-08	30-Apr-08	240000.00	=""	="The Hyatt Hotel"	12-May-08 03:48 PM	

+="CN79937"	"RBS 70 SPARES"	="Defence Materiel Organisation"	12-May-08	="Light weapons and ammunition"	14-Feb-08	13-Mar-09	173199.00	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 03:50 PM	

+="CN79946"	"CONSULTANCY FOR PLANNING OF 07 & 08 PROGRAM OF WORKS"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	22-Apr-08	30-Jun-08	187572.53	=""	="CARSON GROUP PTY LTD"	12-May-08 03:51 PM	

+="CN73485"	"Management Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Business and corporate management consultation services"	17-Mar-08	30-Apr-08	195000.00	=""	="Event Planners Australia Pty Ltd"	12-May-08 03:51 PM	

+="CN73546-A1"	"Production Services - Event management"	="Department of the Prime Minister and Cabinet"	12-May-08	="Stage or studio lighting systems"	14-Apr-08	22-Apr-08	242388.10	=""	="Great Big Events"	12-May-08 03:53 PM	

+="CN79976"	"Connection of Envoy Software to SDSS"	="Department of Defence"	12-May-08	="Computer services"	27-Mar-08	30-Jun-08	196032.10	=""	="MINCOM LTD"	12-May-08 03:54 PM	

+="CN79984"	"Extension of Milspec Preferred Supplier Arrangment February 08 - 30 June 08"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	14-Feb-08	30-Jun-08	269590.20	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 03:54 PM	

+="CN79985"	"ELECTRICITY SUPPLY"	="Department of Defence"	12-May-08	="Utilities"	15-Apr-08	30-Jun-08	190486.14	=""	="SYNERGY"	12-May-08 03:54 PM	

+="CN79990"	"technical services"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	187647.93	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:55 PM	

+="CN80015"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	225500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:57 PM	

+="CN80017"	"TRAINING"	="Department of Defence"	12-May-08	="Medical training and education supplies"	08-Nov-07	15-Nov-07	197340.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 03:57 PM	

+="CN80037"	"Naming ceremony"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	01-Dec-22	193503.71	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 03:59 PM	

+="CN80049"	"QANTAS ACCOUNT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	26-Mar-08	27-Mar-08	157873.67	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:59 PM	

+="CN80050"	"This order is raised in accordance with the terms DMOSS standing offer and Request for Quotation and"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Aug-08	162220.00	=""	="SME GATEWAY LIMITED"	12-May-08 04:00 PM	

+="CN80053"	"Port Wakefield Proof & experimental establishment stage 2 environmental investigation for lead c"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	16-Apr-08	30-Jun-08	161260.00	=""	="GHD PTY LTD"	12-May-08 04:00 PM	

+="CN65710"	" Academic Phase and Army Aviation Artificer Course.  Contract option to extend has been taken up.  New contract total value is now $664,540.00.  Previous Gazettal Ref 1456524. "	="Department of Defence"	12-May-08	="Education and Training Services"	22-Nov-04	01-Mar-10	285400.00	="RFT016-HQ04"	="RMIT University"	12-May-08 04:00 PM	

+="CN80055"	"This order is raised in accordance with the terms DMOSS standing offer and Request for Quotation and"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	06-Feb-08	12-Aug-08	157866.01	=""	="GHD PTY LTD"	12-May-08 04:00 PM	

+="CN80064"	"QANTAS JAN08 TRAVEL CELL"	="Department of Defence"	12-May-08	="Travel facilitation"	31-Jan-08	31-Jan-08	277753.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:01 PM	

+="CN80080"	"ILS Manager for JP 5408PH2B"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Jan-09	179740.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:02 PM	

+="CN80087"	"Regional Lavarack Barracks and RAAF Base Implement Irrigation Master Plan"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	31-Oct-07	30-Jun-08	194333.70	=""	="SPOTLESS"	12-May-08 04:02 PM	

+="CN80095"	"Air System Equipment For Infantry Mobility Vehicle"	="Defence Materiel Organisation"	12-May-08	="Automotive specialty tools"	06-Feb-08	30-Jun-09	297000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:02 PM	

+="CN80098"	"SN02716 Russell Carpark Extension"	="Department of Defence"	12-May-08	="Tools and General Machinery"	01-Nov-07	30-Jun-08	188000.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:02 PM	

+="CN80101"	"Professional Services"	="Defence Materiel Organisation"	12-May-08	="Guided missiles"	07-Feb-08	12-Nov-08	187572.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:02 PM	

+="CN80105"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	19-Dec-08	251508.84	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:03 PM	

+="CN80115"	"Radar Equipment"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	11-Apr-08	18-Jun-08	265148.01	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:03 PM	

+="CN80119"	"Asbestos Removal TS Mersey"	="Department of Defence"	12-May-08	="Decontamination services"	20-Nov-07	30-Jun-08	155388.84	=""	="RESOLVE FM"	12-May-08 04:03 PM	

+="CN80129"	"Supply of ZF LSG1000 Transmission Spare Parts contract No:2007/1023355"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-Feb-08	29-Apr-08	194666.07	=""	="ZF AUSTRALIA PACIFIC PTY LTD"	12-May-08 04:04 PM	

+="CN80172"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	06-Feb-08	30-Jun-08	211846.00	=""	="DEACONS"	12-May-08 04:08 PM	

+="CN80193"	"TFT MONITORS FOR REDUNDANT 15' CRT MONITORS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	30-Aug-08	206750.28	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:09 PM	

+="CN80195"	"Thermal Imaging Scopes for the Mallina"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	09-Apr-08	10-Jun-08	243050.50	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:10 PM	

+="CN80218"	"Progress Claim no 9 Solomon Islands Wharf Project 127"	="Department of Defence"	12-May-08	="Machinery and transport equipment manufacture"	30-Sep-07	31-Dec-08	178203.17	=""	="FLETCHER KWAIMANI JOINT VENTURE"	12-May-08 04:11 PM	

+="CN80240"	"SPMO/OUT-00010563/08PC dated 3 Apr08 Training Services"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	30-Jun-08	293220.62	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:13 PM	

+="CN80245"	"HMAS SYDNEY NDS Installation"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	05-Feb-08	30-Jun-08	216975.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 04:13 PM	

+="CN80248"	"AIR CHTR OP ANODE"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	30-Nov-07	296890.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 04:14 PM	

+="CN80286"	"Made to Measure RAN Uniforms,as follows: Winter and Summer Coat and Trousers"	="Defence Materiel Organisation"	12-May-08	="Clothing"	05-Feb-08	30-Jun-08	245701.58	=""	="V & F TAILORING"	12-May-08 04:17 PM	

+="CN80288"	"AIR CHTR OP SLIPPER TG6331.11 MRE"	="Department of Defence"	12-May-08	="Aircraft"	21-Nov-07	30-Nov-07	266018.18	=""	="ADAGOLD AVIATION PTY LTD"	12-May-08 04:17 PM	

+="CN80321"	"Full size ship badges for ACPB's 1-14"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Dec-07	01-Dec-22	205501.14	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 04:20 PM	

+="CN80324"	"DSS Laboratory Refurbishment"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Nov-07	30-Jun-08	209000.00	=""	="RESOLVE FM"	12-May-08 04:21 PM	

+="CN80331"	"Beverage, Chocolate Soups - Beef, Savoury, Chicken, Tomato"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	20-Dec-07	31-Oct-08	178729.60	=""	="MANSFIELDS PTY LTD"	12-May-08 04:21 PM	

+="CN80337"	"PURCHASE OF ONE XT458U DUAL UHF TRANSCEIVER"	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	29-Aug-08	165722.14	=""	="THALES AUSTRALIA"	12-May-08 04:21 PM	

+="CN80338"	"COURSE"	="Department of Defence"	12-May-08	="Software"	20-Nov-07	09-Jun-08	192226.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 04:21 PM	

+="CN80389"	"POC: ANTHONY WARNOCK CONTACT: 02 626 69354"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	10-Jan-08	151685.81	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:24 PM	

+="CN80415"	"*AEWC FUNDING TO DSTO FOR MISSION SYSTEMS INTERGRA 2007,2008 & 2009 AS PART OF THE STRATEGIC ALL"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	30-Jun-09	264000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:26 PM	

+="CN80418"	"Comms/IT"	="Department of Defence"	12-May-08	="Hardware"	16-Nov-07	14-Dec-07	230890.00	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	12-May-08 04:26 PM	

+="CN80425"	"This P. O. is raised for the Impellor change out o Cold Section Ser No. GE-C-013255."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	171086.30	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:26 PM	

+="CN80428"	"SERVERS 02 626 50979"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	08-Feb-08	213933.50	=""	="COMMANDER INTEGRATED NETWORKS PTY"	12-May-08 04:26 PM	

+="CN80436"	"Binoculars, 6x30 Fujinon"	="Department of Defence"	12-May-08	="Industrial optics"	14-Apr-08	30-Jun-08	279219.83	=""	="STEALTH SURVEILLANCE SYSTEMS"	12-May-08 04:27 PM	

+="CN80452"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	163226.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:28 PM	

+="CN80459"	"P.O. raised for APA Impellor, P/N 6068T91G01, chan section, SerNo. GE-C-031201"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	11-Feb-08	29-Feb-08	171086.30	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:28 PM	

+="CN80487"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Apr-08	255840.08	=""	="MULTI-PACK LTD"	12-May-08 04:30 PM	

+="CN80491"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Non alcoholic beverages"	09-Jan-08	31-Oct-08	298300.75	=""	="MULTI-PACK LTD"	12-May-08 04:30 PM	

+="CN80495"	"  PROVISION OF SUPPORT FOR IN SERVICE SUPPORT"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Jan-08	30-Jun-08	155712.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:31 PM	

+="CN80502"	"Power Station Dual Fuel Conversion Project"	="Department of Defence"	12-May-08	="Oil and gas drilling and operation materials"	11-Jan-08	30-May-08	216576.00	=""	="STRIKE OIL"	12-May-08 04:32 PM	

+="CN80511"	"Support Contract for CMDS Equipment"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Jan-08	31-Mar-09	168880.22	=""	="THALES OPTRONICS (BURY ST EDMUNDS)"	12-May-08 04:32 PM	

+="CN80513"	"Order is placed IAW Terms and Conditions of the P3 Support Contract (C338542), the RFQ MPSPO/2006/11"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	30-Jun-08	172476.68	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:32 PM	

+="CN80566"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Fish"	09-Jan-08	15-Jun-08	238211.45	=""	="MULTI-PACK LTD"	12-May-08 04:35 PM	

+="CN80570"	"PROCUREMENT OF QUANTITY 5 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	31-May-08	227055.95	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80587"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	212520.00	=""	="Innovative Business Computing P/L"	12-May-08 04:36 PM	

+="CN80595"	"C130J DYNAMIC PROPELLOR BALANCING SOFTWARE PROJECT"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	30-Jun-08	246155.80	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 04:37 PM	

+="CN80623"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	30-May-08	173250.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:38 PM	

+="CN80631"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Jams and jellies and nut and sweet spreads and fruit conserves"	08-Jan-08	30-Apr-08	237100.00	=""	="IMPALEX INTERNATIONAL PTY LTD"	12-May-08 04:39 PM	

+="CN80634"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	198352.00	=""	="Whizdom Pty Ltd"	12-May-08 04:39 PM	

+="CN80663"	"Programmable Electronic Devices"	="Defence Materiel Organisation"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	25-Feb-08	30-Jun-09	295925.81	=""	="XTEK PTY LTD"	12-May-08 04:40 PM	

+="CN80673"	"Procedure writers in support of JP2077 Project"	="Department of Defence"	12-May-08	="Computer services"	21-Dec-07	30-Jun-08	248000.01	=""	="SMS CONSULTING GROUP LIMITED"	12-May-08 04:41 PM	

+="CN80723"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	244731.81	=""	="SUN MICROSYSTEMS"	12-May-08 04:43 PM	

+="CN80733"	"FIRE EXTIGUISHER, CIRCUIT BREAKER & HARNESS KIT"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Feb-08	27-Jun-08	162360.82	=""	="THALES AUSTRALIA"	12-May-08 04:44 PM	

+="CN80759"	"FINANCIAL SERVICES FOR PROJECT CLOSEOUT"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	30-Jun-08	220000.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:45 PM	

+="CN80772"	"PAYING OFF AVAILABILITY WORKPACKAGE DEVELOPMENT ASSISTANCE"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	31-May-08	275278.97	=""	="THALES AUSTRALIA"	12-May-08 04:46 PM	

+="CN80775"	"Engagement of External Service Providers to support RFT Prime Vendor Pharmaceuticals"	="Defence Materiel Organisation"	12-May-08	="Drugs and Pharmaceutical Products"	22-Feb-08	30-Jun-08	280720.00	=""	="CONNELL WAGNER VIC PTY LTD"	12-May-08 04:46 PM	

+="CN80777"	"RE AUTHORING PUBLICATION AAP7213.006-2-SRM-210"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-Aug-08	250044.30	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:47 PM	

+="CN80800"	"ESP Support services for ATC C3 ISSP contracts"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	30-Jun-08	156401.34	=""	="JACOBS AUSTRALIA"	12-May-08 04:47 PM	

+="CN80822"	"INSTALLATION OF FALL RESTRAINT SYSTEM"	="Department of Defence"	12-May-08	="Vehicle safety and security systems and components"	04-Apr-08	19-May-08	173065.64	=""	="STANDFAST CORPORATION PTY LTD"	12-May-08 04:48 PM	

+="CN80825"	"Project Coordinator Support"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	12-May-08	154000.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:49 PM	

+="CN80838"	"Specialist Support"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	04-Apr-08	30-Dec-08	287760.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:49 PM	

+="CN80839"	"RAN/Rockwell Collins RAWS PSA (NASPO)"	="Defence Materiel Organisation"	12-May-08	="Aircraft master control systems"	23-Feb-08	31-Dec-08	271723.54	=""	="ROCKWELL COLLINS INC."	12-May-08 04:49 PM	

+="CN80862-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	27-Jul-10	296043.71	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80876"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	271100.91	=""	="C4I PTY LTD"	12-May-08 04:51 PM	

+="CN80883"	"RPLSS Functional Support for HMAS Sydney maintenan ce 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:51 PM	

+="CN80889"	"Safety and Certifcation Plans"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	18-Dec-07	30-Jun-08	174092.00	=""	="ENGINEERING & SCIENTIFIC SYSTEMS"	12-May-08 04:51 PM	

+="CN80895"	"4133 TUASSC URDEF 06/07 - PRIORITY 2 MK45 MOD 2 5 INCH GUN SYSTEM"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	165000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80865-A4"	"Provsions for Emergency Power Supply Maintenance Services"	="Department of Immigration and Citizenship"	12-May-08	="Electric utilities"	01-Nov-06	31-Oct-09	215876.00	=""	="HeydayGroup Pty Ltd"	12-May-08 04:52 PM	

+="CN80899"	"RPLSS Functional Support for HMAS Darwin mainten- ance activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:52 PM	

+="CN80909"	"PROFESSIONAL SERVICES FOR NEVILLE TOMMY"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Dec-07	29-Mar-08	220708.36	=""	="AUSTRALIAN COLLEGE OF PROJECT MANAG"	12-May-08 04:52 PM	

+="CN80923"	"Hardware for Joint Planning Suite Trials"	="Department of Defence"	12-May-08	="Hardware"	09-Apr-08	15-Apr-08	175598.50	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:53 PM	

+="CN80929"	"NIGHT VISION SYSTEMS EQUIPMENT"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	29-Jan-08	30-Jun-08	241248.56	=""	="NIOA TRADING PTY LTD"	12-May-08 04:53 PM	

+="CN80931"	"Provision of support to 2/14 QMI and 2 CAV REGT ADHOC TASK 02/08"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-Apr-08	30-Jul-08	153029.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-May-08 04:53 PM	

+="CN80934"	"RFQTS 2819 Professional Service Provider"	="Department of Defence"	12-May-08	="Environmental Services"	29-Jan-08	30-Jun-08	175692.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:53 PM	

+="CN80980"	"A total of 149,040 Rounds to be supplied by Olin W A total quantity of 621 M2A1 Canister to supplied"	="Department of Defence"	12-May-08	="Explosive materials"	04-Feb-08	30-Jun-09	168862.32	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:56 PM	

+="CN80984"	"Army Spares"	="Department of Defence"	12-May-08	="Gun systems"	08-Apr-08	31-Jan-09	248718.76	=""	="FN HERSTAL SA"	12-May-08 04:57 PM	

+="CN80988"	"MINIMI MACHINE GUN SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	07-Apr-08	02-Jan-09	295774.82	=""	="FN HERSTAL SA"	12-May-08 04:57 PM	

+="CN81002"	"RPLSS Functionasl Support for HMAS Newcastle 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	150497.14	=""	="THALES AUSTRALIA"	12-May-08 04:58 PM	

+="CN81010"	"Task backlog close out Task Groups 1A, 1B and 1C"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	26-Feb-08	20-Jun-08	221280.61	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:58 PM	

+="CN81011"	"Data Integrity Suppport for FFGSPO AMPS DataBase"	="Department of Defence"	12-May-08	="Military watercraft"	18-Dec-07	23-May-08	164087.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:59 PM	

+="CN81021"	"Ship repairs"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	30-Jun-08	218689.90	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:59 PM	

+="CN81031"	"ILS Support Services INMARSAT"	="Department of Defence"	12-May-08	="Professional engineering services"	18-Dec-07	30-Dec-08	285010.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:59 PM	

+="CN81037"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	05-May-08	30-Jun-08	163554.05	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:00 PM	

+="CN81048"	"TAM 111 6 place multicalorimeters Replacement of WSD EOP Cluster Nodes"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	26-Feb-08	20-May-08	160000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:01 PM	

+="CN81061"	"Blanket order raised for Fuel testing Services for LPT 0978 refers"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	19-Dec-07	30-Jun-08	220000.00	=""	="OILCHECK PTY LTD"	12-May-08 05:01 PM	

+="CN81076"	"RPLSS Functional for HMAS Melbourne Maintenance Activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	31-Dec-08	166092.75	=""	="THALES AUSTRALIA"	12-May-08 05:02 PM	

+="CN81078"	"HMAS ADELAIDE - TANK CLEANING"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	24-Feb-08	154891.54	=""	="BLIGH APPOINTMENTS PTY LTD"	12-May-08 05:02 PM	

+="CN81081"	"PROCUREMENT OF QUANTITY 6 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	05-May-08	251046.11	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81087"	"WARDEN 7 PUBS DEVELOPMENT"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	08-Apr-08	28-Jun-08	170711.20	=""	="DARONMONT TECHNOLOGIES PTY LTD"	12-May-08 05:02 PM	

+="CN81093"	"Public Relations Consultant"	="Department of Defence"	12-May-08	="Printed media"	19-Dec-07	30-Jun-08	181500.00	=""	="BALDWIN BOYLE GROUP PTY LTD"	12-May-08 05:02 PM	

+="CN81097"	"Field and Refridgeration"	="Department of Defence"	12-May-08	="Industrial refrigeration"	19-Dec-07	30-Apr-10	165748.00	=""	="INTERNATIONAL LOGISTICS MANAGEMENT"	12-May-08 05:03 PM	

+="CN81101"	"air conditioning upgrade on HMAS LEEUWIN"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	157250.89	=""	="AIMTEK PTY LTD"	12-May-08 05:03 PM	

+="CN81105"	"Maintenance of radios"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	19-Dec-07	27-Jun-08	261305.00	=""	="MOTOROLA COMMUNICATIONS AUST P / L"	12-May-08 05:03 PM	

+="CN81162"	"PAMMANDI SHIPPING COST"	="Department of Defence"	12-May-08	="Transportation components and systems"	19-Dec-07	19-Dec-07	179958.06	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:05 PM	

+="CN81163"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	30-May-08	224400.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:05 PM	

+="CN81173"	"OCEAN FREIGHT - GWEO"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	163140.89	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81176"	"MPITS for LCLS Butterworth Malaysia"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	20-Feb-08	21-Jul-08	227243.27	=""	="POLYTRONIC INTERNATIONAL LTD"	12-May-08 05:06 PM	

+="CN81200-A1"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	19-Feb-08	04-Mar-11	287950.32	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:07 PM	

+="CN81201"	"ILS support"	="Department of Defence"	12-May-08	="Professional engineering services"	18-Dec-07	30-Jun-08	276112.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:07 PM	

+="CN81206"	"Supporting PPC#Module File for use in PPC#applicat"	="Department of Defence"	12-May-08	="Flight communications related systems"	26-Nov-07	30-Jun-08	195214.54	=""	="WESTAR AEROSPACE & DEFENSE GROUP IN"	12-May-08 05:07 PM	

+="CN81216"	"ISO Certification"	="Department of Defence"	12-May-08	="Satellites"	18-Dec-07	30-Jun-08	173320.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81230"	"This Purchase Order is raised to cover the cost of manpower to supplement the existing BAE Chinook r"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	23-Jan-08	30-Jun-08	275000.00	=""	="BAE SYSTEMS(AUSTRALIA)"	12-May-08 05:08 PM	

+="CN81232"	"4532.05 C2 EQUIP FOR DATA LINK TESTING SAAB SYSTEM CSEG"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	30-Jun-08	297000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81252"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	195447.01	=""	="JACOBS AUSTRALIA"	12-May-08 05:09 PM	

+="CN81260"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	258800.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81272"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	293500.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81273"	"ANNUAL MANAGEMENT FEE - SEA KING"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	19-Dec-07	31-Jan-08	269014.08	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:10 PM	

+="CN81277"	"WESTLAND HELICOPTERS  ANNUAL MANAGEMENT FEE"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	19-Dec-07	31-Jan-08	260930.59	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:10 PM	

+="CN81280"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	183500.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81303"	"FTR of MAchine Guns, 5.56mm, Minimi, F89A1 LSW."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	184951.80	=""	="THALES AUSTRALIA"	12-May-08 05:11 PM	

+="CN81306"	"0.50 CAL  Syst Cont'd Wpn, Mk 19 Syst Cont'd Wpn Freight"	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	28-Mar-08	165855.80	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:12 PM	

+="CN81309"	"Procurement of Storage and Transport Containers for M113AS4 vehicles"	="Department of Defence"	12-May-08	="Transportation services equipment"	22-Jan-08	15-Jun-08	206977.83	=""	="TRIMCAST PTY LTD"	12-May-08 05:12 PM	

+="CN81311"	"FTR of Machine Guns, .50 cal M2HB and then conversion to 12.7mm M2HB Quick Change Barrel."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	154935.66	=""	="THALES AUSTRALIA"	12-May-08 05:12 PM	

+="CN81324"	"PN 901721-104, Fitting, Main Wing, Forward, RH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Mar-09	190704.91	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81327"	"PN 901721-103, Fitting, Main Wing, Forward, LH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Aug-09	190704.91	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81345"	"hydraulic rigs"	="Department of Defence"	12-May-08	="Hardware"	23-Jan-08	01-Jun-08	178007.30	=""	="SUN TEST SYSTEMS B.V."	12-May-08 05:14 PM	

+="CN81347-A1"	"Install the Defence Transactor Processor at HMAS Cairns - Software Upgrade"	="Defence Materiel Organisation"	12-May-08	="Software or hardware engineering"	21-Feb-08	30-Jun-08	222428.80	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 05:14 PM	

+="CN81352"	"Test and Evaluation Engineering Management Services"	="Department of Defence"	12-May-08	="Professional engineering services"	27-Nov-07	30-Nov-08	226182.00	=""	="RICHARDSON O'ROURKE CONSULTING"	12-May-08 05:14 PM	

+="CN81355"	"Provision of KPI Development across GWEO Branch"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Nov-07	30-May-08	184800.00	=""	="SAHA INTERNATIONAL LTD"	12-May-08 05:14 PM	

+="CN81362"	"Cheetah V processor cards As per terms and conditions of Contract N260286"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	21-Feb-08	30-Sep-08	197327.35	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:15 PM	

+="CN81367"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:15 PM	

+="CN81370"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:15 PM	

+="CN81371"	"Techical Services for MIP Gateway."	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	21-Feb-08	11-Apr-08	162412.80	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 05:15 PM	

+="CN81379"	"AIRCRAFT SPARES"	="Department of Defence"	12-May-08	="Specialty aircraft"	28-Nov-07	30-May-08	277510.86	=""	="ELBIT SYSTEMS LTD"	12-May-08 05:16 PM	

+="CN81384"	"Production Support FFG Upgrade"	="Department of Defence"	12-May-08	="Manufacturing support services"	25-Jan-08	01-Sep-08	248816.88	=""	="RELEGEN PTY LTD"	12-May-08 05:16 PM	

+="CN81393"	"air conditioning upgrade on HMAS MELVILLE"	="Department of Defence"	12-May-08	="Marine transport"	25-Jan-08	31-Mar-08	151539.41	=""	="AIMTEK PTY LTD"	12-May-08 05:16 PM	

+="CN81400"	"TASK MANAGEMENT TOOL (TMT) DEVELOPMENT"	="Department of Defence"	12-May-08	="Software"	28-Nov-07	30-Jun-08	175340.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81448"	"Rationale for CS 5600 MW ESM Spares Recommendation"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Nov-07	30-Jun-08	285461.17	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:19 PM	

+="CN81465"	"Contracting Services - Mr McCowan"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Feb-08	30-Jun-09	213180.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:20 PM	

+="CN81484-A1"	" 1070-4 COMMISSARY SPACES UPGRADE(GALLEY COMPLEX) FUNDING SUBMISSION "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	27-Jul-10	158327.39	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81487"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable."	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	24-Jan-08	15-Jun-08	245756.50	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:22 PM	

+="CN81530"	"Material Procurement for HMAS Melbourne Reverse Osmosis Plant"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Jun-08	200000.00	=""	="THALES AUSTRALIA"	12-May-08 05:26 PM	

+="CN81537"	"Testing component of MEAO Lifing Review Activities"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Apr-08	165000.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:26 PM	

+="CN81557"	"PROVISION OF ESP SUPPORT"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	187595.20	=""	="SKM"	12-May-08 05:27 PM	

+="CN81558"	"AVIATION GROUND SUPPORT EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	30-Jun-08	179709.20	=""	="FITZROY ENGINEERING GROUP LTD"	12-May-08 05:28 PM	

+="CN81564"	"Tender assessment support for Land 17"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Nov-08	188250.01	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:28 PM	

+="CN81579"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	12-May-08	="Software"	18-Apr-08	31-Mar-09	235750.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:29 PM	

+="CN81580"	"Mine Warfare Tactical Command Software Maintenance"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	31-Dec-07	173791.20	=""	="SOLUTIONS FROM SILICON"	12-May-08 05:29 PM	

+="CN81584"	"COMSARM software development"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	31-Jan-08	190300.00	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:29 PM	

+="CN81594"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	269280.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:30 PM	

+="CN81610"	"Repairs Asraam seekers"	="Department of Defence"	12-May-08	="Conventional war weapons"	12-Dec-07	10-Jan-08	168344.51	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:32 PM	

+="CN81611"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	15-Jun-10	267590.00	=""	="G H VARLEY PTY LTD"	12-May-08 05:32 PM	

+="CN81618"	"Refurbishment Marwin System"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	13-Dec-07	17-Mar-08	193105.00	=""	="VAISALA PTY LTD"	12-May-08 05:33 PM	

+="CN81652"	"Postponement costs"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	30-Mar-09	165413.18	="203845"	="UNITRONIX PTY LTD"	12-May-08 05:37 PM	

+="CN81668"	"Electical Cable Sets and Kits"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	14-Dec-07	01-Jul-08	181553.77	=""	="CMR TECHNOLOGIES INC"	12-May-08 05:39 PM	

+="CN81682"	"Review of Maritime Ranges use and Data requirement"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Dec-07	31-Jan-08	167651.00	=""	="NOVA DEFENCE"	12-May-08 05:41 PM	

+="CN81704"	"Detailed Design Package for HMAS Sydney Mini Typh- oon Weapon System Installation"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	31-Mar-08	170060.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:44 PM	

+="CN81708"	"THIS IS A FINANCIAL TRANSACTION CONDUCTED IN ACCOR 445/2005 DATED 08 AUGUST 2005"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	10-Dec-07	30-Apr-08	230000.00	=""	="DEFENCE SCIENCE & TECHNOLOGY"	12-May-08 05:45 PM	

+="CN81718"	"NASPO POINT OF CONTACT MR CHRIS LANGMAID ON 02 442 CHRIS.LANGMAID2@DEFENCE.GOV.AU"	="Department of Defence"	12-May-08	="Project management"	07-Dec-07	30-Jun-08	201912.38	=""	="JACOBS AUSTRALIA"	12-May-08 05:46 PM	

+="CN81720"	"EPHESE SPARES"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	06-Dec-07	06-Aug-08	183662.49	=""	="SP DEFENSE"	12-May-08 05:46 PM	

+="CN81729"	"POLARIS SPORTS 6X6 ATV"	="Department of Defence"	12-May-08	="War vehicles"	06-Dec-07	18-Jan-08	156049.96	=""	="POLARIS SALES AUSTRALIA &"	12-May-08 05:47 PM	

+="CN81736"	"Software"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	30-Dec-07	244486.00	=""	="BEA SYSTEMS PTY LTD"	12-May-08 05:48 PM	

+="CN81742"	"Mining Material for Ballistic Proection plate"	="Department of Defence"	12-May-08	="Structural materials and basic shapes"	07-Dec-07	07-Mar-08	158818.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 05:49 PM	

+="CN81746"	"Provision of Project Manager REARC Phase 2"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-Jun-08	166904.00	=""	="UXC LIMITED"	12-May-08 05:50 PM	

+="CN81799-A1"	"Research project The Training for Mental Health Workers."	="Department of Veterans' Affairs"	13-May-08	="Medical science research and experimentation"	01-Apr-08	28-Jul-08	297674.00	=""	="ACPMH"	13-May-08 09:48 AM	

+="CN81813"	"COVERALLS & SHIRTS & TROUSERS FLYERS PERTAINING TO STANDING OFFER NO 0306-264-26 "	="Defence Materiel Organisation"	13-May-08	="Clothing"	08-May-08	23-Jun-08	268709.34	="PD 2480063"	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 11:02 AM	

+="CN81849"	"GST PAYMENT FOR TS6004-4"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	09-Nov-07	01-Jun-12	275414.17	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:06 AM	

+="CN81879-A1"	"TASK 6004-4 SEA01448PH2A INVOICE 74359 GST COMPONANT ON 5002153013"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Jan-08	29-Feb-08	253283.46	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:11 AM	

+="CN81890"	"Contract N260471"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	03-Dec-07	31-Dec-08	280824.10	=""	="LOCKHEED MARTIN AUSTRALIA P / L"	13-May-08 11:13 AM	

+="CN81892"	"PST TRG TRAVEL EXP."	="Defence Materiel Organisation"	13-May-08	="Civilian and commercial rotary wing aircraft"	29-Nov-07	31-Dec-08	215357.98	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:13 AM	

+="CN81906"	"MARINE DIESEL FOR HMAS SIRIUS IN LANGKAWI 5-DECEMBER 2007"	="Defence Materiel Organisation"	13-May-08	="Fuels"	04-Jan-08	16-Jan-08	221779.75	=""	="BP MARINE LIMITED"	13-May-08 11:16 AM	

+="CN81922"	"AUS Surveillance spares"	="Defence Materiel Organisation"	13-May-08	="Rockets and subsystems"	14-Nov-07	30-Aug-08	274918.21	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:18 AM	

+="CN81955"	"ESP Comms Engineer for JP 2043 RFQTS 2482 (Cost Pe r Day $1188 Resource MS Karen Bibby)"	="Defence Materiel Organisation"	13-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	10-Oct-08	159999.99	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 11:24 AM	

+="CN81958-A1"	" TASK 4167.00 IMPROVED FINANCIAL REPORTING AND ENHANCEMENT OF ANZAC PROGRAM BOOK "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	04-Apr-11	168442.87	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:25 AM	

+="CN81979"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	13-May-08	="Legal services"	28-Apr-08	30-Jun-08	240770.00	=""	="PHILLIPS FOX SYDNEY"	13-May-08 11:29 AM	

+="CN81984"	"Racks"	="Defence Materiel Organisation"	13-May-08	="Hardware"	19-Nov-07	30-Jun-08	264778.90	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:31 AM	

+="CN82008"	"MANAGE HSE ISSUES FOR F-111 AIRCRAFT ITEMS"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	19-Nov-07	30-Jun-08	180079.94	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:34 AM	

+="CN82021"	"Dmoss Submission"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	19-Nov-07	20-Jun-08	189310.55	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:36 AM	

+="CN82051"	"Combat Systems Engineer"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	16-Nov-07	18-Nov-08	290099.00	=""	="NOVA AEROSPACE"	13-May-08 11:39 AM	

+="CN82066"	"Inproved Carl Gustaf sighting system & training."	="Defence Materiel Organisation"	13-May-08	="Gun systems"	16-Nov-07	29-Feb-08	274177.07	=""	="OWEN INTERNATIONAL PTY LTD"	13-May-08 11:40 AM	

+="CN82082"	"DAHA and FSE-Training"	="Defence Materiel Organisation"	13-May-08	="Software"	16-Nov-07	30-Jun-08	163320.54	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:42 AM	

+="CN82111"	"DSTO Support to LAND75 Phase 3.4 - BMS"	="Defence Materiel Organisation"	13-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	204266.87	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:45 AM	

+="CN82117"	"test engineer services"	="Defence Materiel Organisation"	13-May-08	="Satellites"	12-Nov-07	30-Jun-08	204578.00	=""	="CAZIQUE SOLUTIONS PTY LTD"	13-May-08 11:45 AM	

+="CN82123"	"TLSA for 07/08"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	23-Apr-08	30-Jun-08	236706.80	=""	="ASC PTY LTD"	13-May-08 11:46 AM	

+="CN82124"	"Darkan - Wagin (Dardadine) Airborne Electromagnetic Survey (inclusive of full stand-by charges) [Ref 2008/198]"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	23-Apr-08	30-Jun-08	218675.60	=""	="Geoforce Pty Ltd"	13-May-08 11:46 AM	

+="CN82149"	"M2A1 BOX RENTAL AGREEMENT"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	23-Apr-08	30-Jun-08	177432.87	=""	="PENTARCH PTY LTD"	13-May-08 11:50 AM	

+="CN82161"	"1405 Project Engineering Manager"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	12-Nov-07	31-Oct-08	279001.20	=""	="JACOBS AUSTRALIA"	13-May-08 11:51 AM	

+="CN82183"	"Provision of software support services to the AWSC"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	12-Nov-07	30-May-08	296244.55	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 11:55 AM	

+="CN82186"	"Training"	="Defence Materiel Organisation"	13-May-08	="Satellites"	12-Nov-07	31-Dec-08	174538.98	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 11:55 AM	

+="CN82194"	"AWD - CONTINUED EMPLOYMENT OF COMMERCIAL SUPPORT SERVICES"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-09	159249.20	=""	="BALL SOLUTIONS GROUP"	13-May-08 11:56 AM	

+="CN82195"	"Return to service activities for aircraft 880 and 881"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Feb-08	29-Feb-08	189898.75	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 11:57 AM	

+="CN82217"	"DEAKINPRIME CONDUCTED COURSES"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-May-08	30-Jun-08	194000.00	=""	="DEAKINPRIME"	13-May-08 11:58 AM	

+="CN82242-A1"	" Ship technical services "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	06-Mar-08	27-Aug-10	195973.01	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 12:01 PM	

+="CN82284"	"VENUE HIRE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	04-Mar-08	04-Mar-08	300000.00	=""	="ADELAIDE CONVENTION CENTRE"	13-May-08 12:04 PM	

+="CN82300"	"ACCOMMODATION"	="Defence Materiel Organisation"	13-May-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	05-Mar-08	250000.00	=""	="HYATT REGENCY ADELAIDE"	13-May-08 12:05 PM	

+="CN82311"	"Professional Service Provider"	="Defence Materiel Organisation"	13-May-08	="Temporary personnel services"	16-Jan-08	28-Mar-08	290000.00	=""	="KPMG"	13-May-08 12:06 PM	

+="CN82332"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	28-Mar-08	159332.54	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:08 PM	

+="CN82336"	"Technical Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	28-Mar-08	181952.30	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:08 PM	

+="CN82339"	"1405 CMDS Switch Panel Modification"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	07-Mar-08	04-Dec-08	221653.22	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:09 PM	

+="CN82342"	"Maintenance and Support Services for NMP 1770"	="Defence Materiel Organisation"	13-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	11-Jan-08	28-Feb-11	170700.00	=""	="WESTERN ADVANCE PTY LTD"	13-May-08 12:09 PM	

+="CN82338"	"Purchase of Tape Media"	="Centrelink"	13-May-08	="Mainframe computers"	13-May-08	13-Aug-08	162470.00	=""	="Sun Microsystems Australia Pty Ltd"	13-May-08 12:09 PM	

+="CN82417"	"Engineering Services as per client CAPO N260479 dated 9th January 2008 for Project Mobilisation"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	07-Mar-08	30-Jun-08	257400.00	=""	="AMOG CONSULTING"	13-May-08 12:15 PM	

+="CN82435"	"Development of an advanced ADGE data processing and display course"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	07-Mar-08	20-Jun-08	164665.89	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 12:17 PM	

+="CN82437"	"Shore/Salvage Services Power Upgrade CCP 0154"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	29-Feb-08	01-Dec-22	250612.33	=""	="DEFENCE MARITIME SERVICES PTY"	13-May-08 12:17 PM	

+="CN82444"	"UML Modelling Services"	="Defence Materiel Organisation"	13-May-08	="Computer services"	18-Jan-08	30-Apr-08	162481.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-May-08 12:18 PM	

+="CN82449"	"POC;Aaron Joy 02 626 69320"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	17-Jan-08	14-Feb-08	233673.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	13-May-08 12:18 PM	

+="CN82451"	"PSP FOR PSENG & STRUCTURES"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Jan-08	01-Jun-08	252648.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 12:19 PM	

+="CN82455"	"For the engagement of Mr Andy Morehouse. Period up to twelve months, commencing 1st Feb 200"	="Defence Materiel Organisation"	13-May-08	="Paper products"	17-Jan-08	30-Mar-09	259325.00	=""	="ROSSLOGIC PTY LTD"	13-May-08 12:19 PM	

+="CN82461"	"SYPAQ SYSTEMS PTY LTD are to provide the following DMOSS RFQTS 2856"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	17-Jan-08	30-Jun-08	160000.00	=""	="SYPAQ SYSTEMS PTY LTD"	13-May-08 12:20 PM	

+="CN82485"	"AOSG flight test engineering support"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	18-Jan-08	30-Jun-09	227272.73	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:22 PM	

+="CN82491"	"ADMINISTRATIVE COST"	="Defence Materiel Organisation"	13-May-08	="Ammunition"	18-Jan-08	18-Jul-08	154172.70	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 12:23 PM	

+="CN82494"	"Computer equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	162747.20	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	13-May-08 12:23 PM	

+="CN82504"	"monthly stores for survey motor launches for the period february - june 2008"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Feb-08	30-Jun-08	283800.00	=""	="G A GLANVILLE & CO"	13-May-08 12:24 PM	

+="CN82510"	"High Speed Digital Camera and Accessories"	="Defence Materiel Organisation"	13-May-08	="Photographic or filming or video equipment"	28-Feb-08	20-Mar-08	172425.00	=""	="MEASUREMENT & ANALYSIS CAMERA"	13-May-08 12:24 PM	

+="CN82514"	"Labour hours for periscope activation plan activities"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	28-Feb-08	30-Jun-08	227333.11	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:25 PM	

+="CN82524"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-08	275000.00	=""	="THE PHILLIPS GROUP"	13-May-08 12:25 PM	

+="CN82530"	"RPLSS Functional Support for West Coast  Based FFG 2008"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	31-Dec-08	245871.07	=""	="THALES AUSTRALIA"	13-May-08 12:26 PM	

+="CN82550"	"Services as defined in Mulwala Agreement Capabilit Revision 1 dated 15 February 2008 and Thales Aust"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	28-Feb-08	30-Jun-08	170000.00	=""	="THALES AUSTRALIA"	13-May-08 12:28 PM	

+="CN82556"	"2.0 - 18.0 GHZ DF RF Module"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	04-Mar-08	15-Mar-08	170546.90	=""	="AMHERST SYSTEMS INC."	13-May-08 12:28 PM	

+="CN82558"	"Software upgrade and travel to Australia"	="Defence Materiel Organisation"	13-May-08	="Software"	04-Mar-08	29-Apr-08	212652.00	=""	="CARTENAV SOLUTIONS INC"	13-May-08 12:28 PM	

+="CN82561"	"ANTENNA"	="Defence Materiel Organisation"	13-May-08	="Satellites"	07-Jan-08	03-Nov-08	151215.80	=""	="SELEX SISTEMI INTEGRATI SPA"	13-May-08 12:29 PM	

+="CN82562"	"DTS49 Purchase of TADRS Cones, Sandpads and Chains"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	03-Mar-08	31-Jul-08	226678.56	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:29 PM	

+="CN82567"	"Functional Support to FFG generation 2008- Under- take Engineering Assessment of Engineering Change"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-Jan-08	31-Dec-08	178743.02	=""	="THALES AUSTRALIA"	13-May-08 12:30 PM	

+="CN82573"	"Support Services to FFG generation- Configuration and Data management Section 2008"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-Jan-08	31-Dec-08	154974.44	=""	="THALES AUSTRALIA"	13-May-08 12:30 PM	

+="CN82577"	"Extension of Functional Support to FFG Generation 2008- Engineering Investigations"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-Jan-08	31-Jan-09	197243.66	=""	="THALES AUSTRALIA"	13-May-08 12:30 PM	

+="CN82596"	"Periscope tube pressure testing equipment"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	04-Mar-08	30-Jun-08	228756.09	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:32 PM	

+="CN82598"	"SYPAQ Project Controller"	="Defence Materiel Organisation"	13-May-08	="Computer services"	04-Mar-08	27-Feb-09	212509.00	=""	="SYPAQ SYSTEMS PTY LTD"	13-May-08 12:32 PM	

+="CN82607"	"SEA 1779  Component magazine required for HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	29-Feb-08	30-May-08	164845.24	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	13-May-08 12:34 PM	

+="CN82622"	"electricity charges ReefHQ"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	30-Jun-08	237400.00	=""	="Ergon Energy Pty Ltd"	13-May-08 12:36 PM	

+="CN82630"	"Reef Water Quality Plan"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Professional engineering services"	21-Dec-07	30-Jun-08	243741.80	=""	="Australian Institute of Marine Science"	13-May-08 12:36 PM	

+="CN82660"	"TOB-U 07/08 SSDG G2 REPAIRS"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Mar-08	09-May-08	256131.30	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:40 PM	

+="CN82680"	"Fuel sample analysis - Armidale"	="Defence Materiel Organisation"	13-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	14-Mar-08	31-May-08	182600.00	=""	="OILCHECK PTY LTD"	13-May-08 12:43 PM	

+="CN82684"	"Lease for 17 ISA sTREET"	="Defence Materiel Organisation"	13-May-08	="Accommodation furniture"	14-Mar-08	30-Jun-10	224668.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:44 PM	

+="CN82687"	"Togan FAMPs Savea,Pangai,Neafu"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	30-Jun-08	193556.60	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:44 PM	

+="CN82691"	"SUU-63 Refurbishment IAW 'HASHA' C338437"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Mar-08	01-Sep-08	286324.75	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:45 PM	

+="CN82692"	"goggles"	="Defence Materiel Organisation"	13-May-08	="Safety apparel"	15-Mar-08	30-Apr-08	181817.46	=""	="EYE SAFETY SYSTEMS INC"	13-May-08 12:45 PM	

+="CN82700"	"PURCHASE OF AMMONIUM PERCHLORATE"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	17-Mar-08	30-Jun-09	167356.06	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:46 PM	

+="CN82713"	"Contractor services 02 626 69320"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Jun-09	286528.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:48 PM	

+="CN82716"	"Replacement Server for Identification, approval and accreditation"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	19-Mar-08	30-Apr-08	216879.80	=""	="THALES AUSTRALIA"	13-May-08 12:48 PM	

+="CN82747"	"30 Ton Tripod Wing & Nose Jacks PNs P3-0517 &* P3-0158"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	20-Jun-08	153907.60	=""	="FORDHAM ENGINEERING PTY LTD"	13-May-08 12:52 PM	

+="CN82752"	"For Annual General Dynamics Canada (GDC) Technical (TSA)."	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	19-Mar-08	30-Nov-08	185549.58	=""	="GENERAL DYNAMICS CANADA LTD"	13-May-08 12:53 PM	

+="CN82773"	"Prime Mover 6 x 4 NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	12-Mar-08	30-Jun-08	256003.00	=""	="DIESEL MOTORS TRUCKS"	13-May-08 12:56 PM	

+="CN82776"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	261419.99	=""	="WALTER TURNBULL PTY LTD"	13-May-08 12:56 PM	

+="CN82794"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L751"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	12-Mar-08	30-Jun-08	156618.97	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:59 PM	

+="CN82801"	"Recording and Display Equipment"	="Defence Materiel Organisation"	13-May-08	="Laboratory and scientific equipment"	11-Mar-08	18-Apr-08	151107.00	=""	="MEASUREMENT & ANALYSIS CAMERA"	13-May-08 01:00 PM	

+="CN82802"	"Hi-Dependency Aero-Medical Evac Equip"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	11-Mar-08	15-Apr-08	207134.60	=""	="IMPACT INSTRUMENTATION INC"	13-May-08 01:00 PM	

+="CN82806"	"ADATS MSSR ANTENNA SPARES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	10-Mar-08	30-Jun-08	203860.75	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 01:00 PM	

+="CN82807"	"Deeper maintenance activities N24-0004 (873"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	10-Mar-08	28-Apr-08	245393.20	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 01:01 PM	

+="CN82818"	"HP Proliant G5 DL380 Server"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	11-Mar-08	28-Mar-08	183684.38	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	13-May-08 01:02 PM	

+="CN82845"	"Airborne Countermeasures - Phase 2 Milestone 4 50% Airborne Countermeasures - Phase 2 Milestone 7 40"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	14-Mar-08	27-Jun-08	233462.03	=""	="JACOBS AUSTRALIA"	13-May-08 01:06 PM	

+="CN82856"	"1059-EW1 1059-E Vibration control hardware Extende extension to be 24 months as per RFQ for Qty 2 ea"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	13-Mar-08	25-Mar-08	195989.42	=""	="BRUEL AND KJAER AUST PTY LTD"	13-May-08 01:07 PM	

+="CN82864"	"POWER STEERING BOXES"	="Defence Materiel Organisation"	13-May-08	="War vehicles"	12-Mar-08	02-Jun-08	157439.04	=""	="LAND ROVER AUSTRALIA PTY LTD"	13-May-08 01:08 PM	

+="CN82894"	"MADE TO MEASURE UNIFORMS FOR NAVY/RAAF: TROUSERS, SLACKS, COATS, JACKETS, MATERNITY WEAR- RAAF, MARC"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Feb-08	30-Jun-08	151999.99	=""	="BERENSEN TAILORS PTY LTD"	13-May-08 01:12 PM	

+="CN82900"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	13-Feb-08	30-Jun-08	189792.00	=""	="CLAYTON UTZ"	13-May-08 01:13 PM	

+="CN82907"	"Ground Engineering Support"	="Defence Materiel Organisation"	13-May-08	="Satellites"	13-Feb-08	30-Mar-09	253000.00	=""	="CROWN MANAGEMENT CONSULTANTS PTY"	13-May-08 01:14 PM	

+="CN82915"	"Visual vertical optimiser software"	="Defence Materiel Organisation"	13-May-08	="Software"	18-Apr-08	31-May-08	156830.85	=""	="WESTAR AEROSPACE & DEFENSE GROUP IN"	13-May-08 01:32 PM	

+="CN82926"	"SUPPORT ASSY"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	23-Apr-08	01-May-09	171468.75	=""	="AGUSTAWESTLAND LTD"	13-May-08 01:34 PM	

+="CN82931"	"FLIGHT VEHICLE MIDLIFE REFURBISHMENT"	="Defence Materiel Organisation"	13-May-08	="Launch vehicles and rockets"	23-Apr-08	30-Jun-09	257220.67	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:35 PM	

+="CN82932"	"This purchase order has been raised in accordance with the terms and conditions of DMO"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	23-Apr-08	30-Apr-09	299552.00	=""	="ROSSLOGIC PTY LTD"	13-May-08 01:35 PM	

+="CN82936"	"Freight reenbursement for APA HMU assemblies Qty 8 P/N: 6038T62P27"	="Defence Materiel Organisation"	13-May-08	="Aircraft power systems"	23-Apr-08	30-May-08	202377.63	=""	="ASIA PACIFIC AEROSPACE"	13-May-08 01:36 PM	

+="CN82945"	"Specialist Simulation Engineerinf Support to the Training Device Acquisition Project"	="Defence Materiel Organisation"	13-May-08	="Management support services"	23-Apr-08	30-Jun-09	270112.87	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 01:37 PM	

+="CN82946"	"Scheduling and reporting officer for project AIR 9000 Phase 3C"	="Defence Materiel Organisation"	13-May-08	="Project management"	22-Apr-08	31-Oct-08	216346.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	13-May-08 01:37 PM	

+="CN82948"	"Intergrated Logistic Support"	="Defence Materiel Organisation"	13-May-08	="Satellites"	22-Apr-08	13-May-09	226688.00	=""	="CROWN MANAGEMENT CONSULTANTS PTY"	13-May-08 01:37 PM	

+="CN82965"	"82WG SUPPORT FOR TRIAL BLACKWOOD3"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	22-Apr-08	30-Jun-08	160000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:40 PM	

+="CN82970"	"LEP LOMOR Spares and Repair Parts Costs"	="Defence Materiel Organisation"	13-May-08	="Commercial marine craft"	22-Apr-08	30-Jun-08	220000.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 01:41 PM	

+="CN82996"	"This order is placed IAW terms and conditions of C Support services to OTHR SPO"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	16-Apr-08	30-Jun-08	192610.44	=""	="RLM PTY LTD"	13-May-08 01:45 PM	

+="CN83024"	"LMU Eng Omnibus Support"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	15-Apr-08	30-Jun-08	282007.44	=""	="JACOBS AUSTRALIA"	13-May-08 01:49 PM	

+="CN83028"	"Provision of Configuration Management Support"	="Defence Materiel Organisation"	13-May-08	="Management support services"	15-Apr-08	30-Jun-08	277525.25	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 01:49 PM	

+="CN83048"	"Professional Service Support"	="Defence Materiel Organisation"	13-May-08	="Management support services"	17-Apr-08	16-May-08	165000.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-May-08 01:52 PM	

+="CN83051"	"PROJECT AIR 8000 PHASE3 - C-17 ACQUISITION - FUNDI TRAINING RELATED TRAVEL FOR THE AUTOMATED AIR LOA"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	17-Apr-08	30-Jun-09	225580.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:53 PM	

+="CN83060"	"Management Services to AEW&C Project"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	17-Apr-08	30-May-09	224911.72	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 01:54 PM	

+="CN83063"	"Performance Manager for PBSPO Sustainment"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Apr-08	17-Oct-08	161092.30	=""	="SME GATEWAY LIMITED"	13-May-08 01:54 PM	

+="CN83084"	"SPALL LINER KITS, PANELS & CONSUMABLES"	="Defence Materiel Organisation"	13-May-08	="War vehicles"	17-Apr-08	25-Jul-08	277299.98	=""	="ARMATEC SURVIVABILITY CORP"	13-May-08 01:57 PM	

+="CN83097"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-May-08	30-Jan-09	191963.75	=""	="PILATUS AIRCRAFT LTD"	13-May-08 01:59 PM	

+="CN83104"	"R5 Service for AS350BA Helicopter Tail No. N22-001 (801) and Supporting BDS/ Consumables."	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	01-May-08	01-Sep-08	216990.92	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 02:00 PM	

+="CN83120"	"SUpply of KESTREL System Spares Support to 2010"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	01-May-08	27-Jun-08	161898.00	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 02:02 PM	

+="CN83127"	"BDS & tech consumables under the ACMC for S70B"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	30-Apr-08	31-Mar-09	286000.00	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 02:03 PM	

+="CN83129"	"PROVISION OF APG73 BDS"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	30-Apr-08	07-May-08	164486.45	=""	="RAYTHEON AUST PTY LTD"	13-May-08 02:04 PM	

+="CN83133"	"LEAD IN SKILLS TRAINING"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	30-Apr-08	05-May-08	159740.01	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:04 PM	

+="CN83152"	"BDS & tech consumables under the ACMC for NCLO"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	30-Apr-08	31-Mar-09	165000.00	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 02:07 PM	

+="CN83153-A1"	"Independent legal services for review of Contracts"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-08	30-Jun-08	209050.00	=""	="CLAYTON UTZ"	13-May-08 02:07 PM	

+="CN83177"	"Procurement of Laser Pointers"	="Defence Materiel Organisation"	13-May-08	="Alloys"	07-Mar-08	30-Jun-08	163448.58	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83180"	"FMS Case AT-B-UCP"	="Defence Materiel Organisation"	13-May-08	="Engineering and Research and Technology Based Services"	14-Feb-08	31-Aug-08	296883.46	=""	="FMS ACCOUNT"	13-May-08 02:11 PM	

+="CN83222"	"Develop and Deliver Products to Support the DMO Sustainment Managment Business Model"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	162360.00	=""	="PS MANAGEMENT CONSULTANTS"	13-May-08 02:19 PM	

+="CN83231"	"MCRC Replacement"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	24-Apr-08	26-Jun-08	183356.71	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 02:20 PM	

+="CN83234"	"EDAK Cases, Transport trolleys and Tray Kit for Plotters"	="Defence Materiel Organisation"	13-May-08	="Containers and storage"	24-Apr-08	30-Jun-08	245388.00	=""	="SHOCK & VIBRATION TECHNOLOGIES"	13-May-08 02:21 PM	

+="CN83239"	"PO IS COMPRISED OF MANY SETS OF CONTAINERS PLEASE QUOTATION DETAILS."	="Defence Materiel Organisation"	13-May-08	="Containers and storage"	28-Apr-08	27-Jun-08	201681.81	=""	="UBEECO PACKAGING SOLUTIONS"	13-May-08 02:22 PM	

+="CN83249"	"BALL VALVE ASSEMBLY (6INCH) FOR FLAMMABLE FLUID IN ACCORDANCE WITH CONTRACT E1-203754"	="Defence Materiel Organisation"	13-May-08	="Fuel tanks and systems"	24-Apr-08	02-Jun-08	281355.25	=""	="KEMPE SUPPLY GROUP"	13-May-08 02:23 PM	

+="CN83266"	"Communications Network Engineer"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	24-Apr-08	27-Apr-09	231935.00	=""	="ROSSLOGIC PTY LTD"	13-May-08 02:26 PM	

+="CN83273"	"MOVEMENT OF HARPOONS SUSTAINERS"	="Defence Materiel Organisation"	13-May-08	="Transportation components and systems"	24-Apr-08	24-Apr-08	283199.30	=""	="RIDGEWAY INTERNATIONAL"	13-May-08 02:27 PM	

+="CN83275"	"Performance based contracting training, workshops and briefs"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	23-Apr-08	30-Jun-09	152598.41	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 02:27 PM	

+="CN83277"	"Engagement of PSP Support European MRH90 Core and Mission Systems Specialist"	="Defence Materiel Organisation"	13-May-08	="Management support services"	23-Apr-08	30-Jun-08	184647.33	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 02:28 PM	

+="CN83282"	"INSTALLATION OF ADATS LCD MONITORS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	29-Apr-08	01-Oct-08	272702.62	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:28 PM	

+="CN83285"	"INTERAGENCY AGREEMENT BETWEEN DMO & DOD"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	29-Apr-08	30-Jun-09	285000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:29 PM	

+="CN83316"	"Specialist Technical Advice"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Sep-08	186401.67	=""	="SME GATEWAY LIMITED"	13-May-08 02:33 PM	

+="CN83318"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS OF Q 08"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	28-Apr-08	31-May-08	150040.00	=""	="KTEC SOLUTIONS PTY LTD"	13-May-08 02:33 PM	

+="CN83335"	"84MM CARL GUSTAF SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	28-Apr-08	01-Feb-09	246946.25	=""	="SAAB BOFORS DYNAMICS AB"	13-May-08 02:36 PM	

+="CN83338"	"Annual renewal of customer support agreement 1933089062"	="Defence Materiel Organisation"	13-May-08	="Software"	28-Apr-08	30-Apr-09	176311.34	=""	="HEWLETT-PACKARD AUSTRALIA LTD"	13-May-08 02:36 PM	

+="CN83339"	"POWER STEERING BOXES (PSB)"	="Defence Materiel Organisation"	13-May-08	="War vehicles"	28-Apr-08	27-Jun-08	293268.80	=""	="LAND ROVER AUSTRALIA PTY LTD"	13-May-08 02:36 PM	

+="CN83341"	"L7A2 MACHINE GUN & SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	31-Mar-08	01-Feb-09	221603.80	=""	="FN HERSTAL SA"	13-May-08 02:37 PM	

+="CN83352"	"Transport of Simulated Weapons for the period 1/4/2008 to 31/12/2008."	="Defence Materiel Organisation"	13-May-08	="Transportation services equipment"	31-Mar-08	31-Dec-08	264000.00	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	13-May-08 02:38 PM	

+="CN83353"	"BLADE SERVERS"	="Defence Materiel Organisation"	13-May-08	="Hardware"	31-Mar-08	31-May-08	231321.76	=""	="ARION SYSTEMS PTY LTD"	13-May-08 02:38 PM	

+="CN83363"	"supply of ifo 180 fuel to hams sirius"	="Defence Materiel Organisation"	13-May-08	="Fuels"	01-Apr-08	30-May-08	154172.70	=""	="BP MARINE LIMITED"	13-May-08 02:40 PM	

+="CN83364"	"PART PAYMENT OF KIOWA SERVICING"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-Apr-08	20-Apr-08	290360.71	=""	="HELITECH DIV OF SIKORSKY"	13-May-08 02:40 PM	

+="CN83377-A1"	"Provision for Program/Analyst"	="Comsuper"	13-May-08	="Human resources services"	02-Jun-08	02-Jun-09	217248.00	=""	="Candle Australia"	13-May-08 02:43 PM	

+="CN83388"	"Commercial Support & RFT Development AIR09000PH7"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	31-Mar-08	01-Jan-09	206286.96	=""	="JACOBS AUSTRALIA"	13-May-08 02:44 PM	

+="CN83395"	"Advertisements for COP, ACSS and SOCSS-Market Svy"	="Defence Materiel Organisation"	13-May-08	="Software"	31-Mar-08	30-Apr-08	187340.09	=""	="HMA BLAZE PTY LTD"	13-May-08 02:45 PM	

+="CN83426"	"Business Management Systems Implementation GWEO DE"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	03-Apr-08	31-Dec-08	210210.00	=""	="REQUAL BUSINESS SERVICES PTY LTD"	13-May-08 02:51 PM	

+="CN83434"	"    SMI Pty Ltd - Fitout Alterations to FD and FE wings of TGA    "	="Therapeutic Goods Administration"	13-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	225885.00	=""	="SMI Fitout Pty Ltd"	13-May-08 03:16 PM	

+="CN83437"	"WALL PROTECTIVE, EXPEDIENT PROTECTIVE WALL SYSTEM, FOR TRAINING PURPOSES ONLY, CONCERTAINER HESCO BASTION ( GREEN ) MIL-3 G PLUS, 10 M LG x 1 M H x 1 MW"	="Defence Materiel Organisation"	13-May-08	="Barrier guarding"	29-Apr-08	28-Jun-08	267696.00	=""	="OWEN INTERNATIONAL PTY LTD"	13-May-08 03:24 PM	

+="CN51424"	"purchase winch drum power operated and hook assy"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Dec-07	17-Dec-08	172484.78	=""	="aero products"	13-May-08 03:54 PM	

+="CN54942"	"R1 SERVICE TO A15-202"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Jan-08	30-Apr-08	275000.00	=""	="BAE SYSTEMS"	13-May-08 03:56 PM	

+="CN68779"	"R1 SRVICE TO A15-104"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	09-Apr-08	18-Jun-08	275000.00	=""	="BAE SYSTEMS"	13-May-08 03:59 PM	

+="CN83448"	"Fitout construction of Hervey Bay Customer Service Centre QLD"	="Centrelink"	13-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jun-08	30-Jun-08	261788.00	=""	="Signature Projects Pty Ltd"	13-May-08 04:14 PM	

+="CN83451"	"Extension of Contract - 05/2005-06"	="Attorney-General's Department"	13-May-08	="Printed publications"	01-Jul-08	30-Jun-09	210000.00	=""	="Grey Worldwide (Canberra) Pty Ltd"	13-May-08 04:38 PM	

+="CN83453-A1"	"Provision of Conference Facilities"	="Attorney-General's Department"	13-May-08	="Conference centres"	21-Dec-07	13-Feb-09	180730.00	="1639491"	="Intercontinental Hotel Group (Australia) Pty Ltd"	13-May-08 04:52 PM	

+="CN83470"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	13-May-08	246562.36	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:30 PM	

+="CN83495"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	08-Nov-08	156847.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	13-May-08 07:33 PM	

+="CN83518"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	13-May-08	298272.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:36 PM	

+="CN83534"	"Procurement of:  MICROPHONE,DYNAMIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	31-May-08	160776.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	13-May-08 07:38 PM	

+="CN83543"	"Procurement of:  SAW-DEVICE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	09-Jul-09	227163.70	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:39 PM	

+="CN83612"	"Procurement of:  VALVE,GATE;  VALVE,GATE;  VALVE,CHECK"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	27-May-08	157840.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	13-May-08 07:48 PM	

+="CN83617"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	02-Jun-08	239746.20	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:48 PM	

+="CN83619"	"Procurement of:  BINOCULAR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	09-Apr-08	13-May-08	298857.00	=""	="STEALTH SURVEILLANCE SYSTEMS PT*"	13-May-08 07:48 PM	

+="CN83656"	"Procurement of:  SADDLE,HOSE;  CLAMP,HOSE;  SADDLE,HOSE;  SADDLE,HOSE;  SADDLE,HOSE;  SADDLE,HOSE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	19-Aug-08	231560.00	=""	="SOFRACO INTERNATIONAL Pty Ltd"	13-May-08 07:53 PM	

+="CN83678"	"Procurement of:  CRANKSHAFT,ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	16-Oct-08	220425.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	13-May-08 07:56 PM	

+="CN83679"	"Procurement of:  RECEIVER,RADIO"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	19-Nov-08	180960.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:56 PM	

+="CN83711"	"Procurement of:  HYDROPHONE,SONAR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	27-Mar-10	236126.80	=""	="THALES UNDERWATER SYSTEMS Pty Ltd"	13-May-08 08:00 PM	

+="CN83714"	"Procurement of:  MECHANISCHE BAUTEIL;  VALVE ASSEMBLY;  TRANSMITTER,GOVERNOR SETTING;  FIXTURE,LIGHTING;  FIXTURE,LIGHTING;  FIXTURE,LIGHTING; + MORE..."	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	30-May-08	202834.24	=""	="ASC Pty Ltd"	13-May-08 08:01 PM	

+="CN83718"	"Procurement of:  WIRE,ELECTRICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Apr-08	13-Jul-08	267840.00	=""	="BAMBACH WIRES & CABLES Pty Ltd"	13-May-08 08:01 PM	

+="CN83736-A3"	"Provision of Information Technology Business Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	11-Feb-08	30-Jun-09	287375.00	=""	="Greythorn Pty Ltd"	14-May-08 09:08 AM	

+="CN83739-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	30-Jun-09	260398.00	=""	="Greythorn Pty Ltd"	14-May-08 09:25 AM	

+="CN83742-A4"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	26-Sep-07	14-Nov-08	214775.00	=""	="Greythorn Pty Ltd"	14-May-08 09:29 AM	

+="CN83757-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-09	207625.00	=""	="Ross Human Directions Limited"	14-May-08 10:20 AM	

+="CN83785"	"Maintenance for security bollards"	="Department of Parliamentary Services"	14-May-08	="Building and Construction and Maintenance Services"	09-May-08	30-Apr-11	181880.00	="DPS07051"	="Oztime Technologies"	14-May-08 10:40 AM	

+="CN83793-A1"	"Printing of NAT4446 - ATO Letterhead. Qty: 16M"	="Australian Taxation Office"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-May-08	20-Jun-08	253858.00	=""	="Craft Printing"	14-May-08 10:49 AM	

+="CN83795-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	24-Oct-08	207625.00	=""	="Ross Human Directions Limited"	14-May-08 10:51 AM	

+="CN83800-A5"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	20-Mar-09	30-Jun-09	210760.00	=""	="Ross Human Directions Limited"	14-May-08 11:10 AM	

+="CN83843"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	201391.00	=""	="Parap Village Apartments"	14-May-08 12:31 PM	

+="CN83854-A1"	"Architectural Services"	="Centrelink"	14-May-08	="Management advisory services"	30-Jun-08	31-Dec-08	182220.00	=""	="Integrated Space Ltd"	14-May-08 12:33 PM	

+="CN83877-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	28-Apr-08	30-Jun-08	150000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	14-May-08 12:36 PM	

+="CN83892-A1"	"Building works at Maryborough, QLD"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Apr-08	30-Jun-08	281941.00	=""	="Premis Solutions Pty Ltd"	14-May-08 12:39 PM	

+="CN83906"	"Customer Service Centre Refurbishment"	="Centrelink"	14-May-08	="General building construction"	28-Apr-08	21-Apr-09	245809.30	=""	="Isis Projects Pty Ltd"	14-May-08 12:41 PM	

+="CN83918"	"System Testing Centre Refurbishment"	="Centrelink"	14-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	24-Apr-08	214133.70	=""	="Isis Projects Pty Ltd"	14-May-08 12:44 PM	

+="CN83946"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	169120.00	=""	="Novell Pty Ltd"	14-May-08 12:49 PM	

+="CN83945"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	14-May-07	30-Jun-08	164450.00	=""	="Ross Human Directions Limited"	14-May-08 12:50 PM	

+="CN83954-A1"	"Computer Software"	="Centrelink"	14-May-08	="Software"	29-Apr-08	29-Aug-08	165000.00	=""	="Actividentity"	14-May-08 12:50 PM	

+="CN83956"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	11-Apr-08	30-Apr-09	151351.20	=""	="PAXUS Australia Pty Ltd"	14-May-08 12:50 PM	

+="CN83957"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	11-Apr-08	11-Apr-09	204204.00	=""	="Stratagem"	14-May-08 12:51 PM	

+="CN83960"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	10-Apr-08	30-Jun-08	162880.85	=""	="Interface Flor"	14-May-08 12:51 PM	

+="CN83966-A1"	"Management advisory services"	="Centrelink"	14-May-08	="Management advisory services"	18-Feb-08	30-May-08	203500.00	=""	="IT Newcom Pty Ltd"	14-May-08 12:52 PM	

+="CN83973-A1"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	21-May-10	152889.00	=""	="Infront Systems Pty Ltd"	14-May-08 12:53 PM	

+="CN83995"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	01-Apr-08	01-Apr-08	277649.90	=""	="Novell Pty Ltd"	14-May-08 12:56 PM	

+="CN84005"	"Fitout Furniture"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	31-Aug-08	204048.59	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:58 PM	

+="CN84014"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	28-Apr-08	14-May-09	183783.60	=""	="Ambit Group"	14-May-08 12:59 PM	

+="CN84020"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	08-Apr-08	30-Jun-08	220000.00	=""	="Minter Ellison Lawyers"	14-May-08 01:01 PM	

+="CN84031"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	18-Apr-08	30-Sep-08	166919.45	=""	="Interface Flor"	14-May-08 01:03 PM	

+="CN84048-A1"	"Accounting and auditing"	="Centrelink"	14-May-08	="Accounting and auditing"	22-Apr-08	30-Jun-08	293091.00	=""	="Ernst and Young"	14-May-08 01:05 PM	

+="CN84052"	"Workstations and Storage Units for Hervey Bay, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	30-Jun-08	239935.74	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 01:06 PM	

+="CN84059-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Jul-07	30-Jun-09	278853.00	=""	="Ross Human Directions Limited"	14-May-08 01:09 PM	

+="CN84096"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	08-Aug-07	28-Feb-08	247105.46	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:01 PM	

+="CN84104"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	286000.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:02 PM	

+="CN84112"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	10-Aug-07	07-Sep-07	261374.41	=""	="Ethan Group Pty Ltd"	14-May-08 03:04 PM	

+="CN84116"	"PROVISION OF MEDIA MONITORING SERVICES"	="Department of Human Services"	14-May-08	="Marketing analysis"	01-Jul-08	30-Oct-10	191000.00	=""	="MEDIA MONITORS AUSTRALIA PTY LTD"	14-May-08 03:15 PM	

+="CN84130"	"Lease Payments"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	21-Aug-07	29-Aug-07	204049.98	=""	="HP Financial Services"	14-May-08 03:39 PM	

+="CN84137"	"Project Manager"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	21-Aug-07	18-Sep-07	222640.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:40 PM	

+="CN84139"	"Business Analyst"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	17-Aug-07	14-Sep-07	176088.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 03:41 PM	

+="CN84163"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	22-Aug-07	28-Feb-08	285249.57	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 04:37 PM	

+="CN84177"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	162285.20	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84200"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	202483.44	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84207"	"Library Database Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Business administration services"	10-Jan-03	30-Jun-08	181944.45	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	14-May-08 05:01 PM	

+="CN84237"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	04-Sep-07	28-Feb-08	193130.60	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84252"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	30-Aug-07	27-Sep-07	152460.00	=""	="Whizdom Pty Ltd"	14-May-08 05:08 PM	

+="CN84269"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	191444.00	=""	="Integral Consulting Services"	14-May-08 05:10 PM	

+="CN84274"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	207350.00	=""	="Integral Consulting Services"	14-May-08 05:11 PM	

+="CN84281"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	27-Sep-07	25-Oct-07	152428.10	=""	="Ethan Group Pty Ltd"	14-May-08 05:12 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val16000to20000.xls
@@ -1,1 +1,564 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN78040"	"purchase of televisions"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	17-Dec-07	21-Dec-07	17120.35	=""	="THE GOOD GUYS ALEXANDRIA"	12-May-08 09:38 AM	

+="CN78048"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Hardware"	14-Dec-07	21-Dec-07	17952.00	=""	="ALLOY COMPUTER PRODUCTS"	12-May-08 09:39 AM	

+="CN78049"	"Plumbing supplies, Construction Platoon, Army Logistic Training Centre"	="Department of Defence"	12-May-08	="Plumbing fixtures"	14-Dec-07	17-Jan-08	16925.54	=""	="SOUTHERN PLUMBING PLUS"	12-May-08 09:40 AM	

+="CN78090"	"5NMOL CYDYE DIGE FLUORE MIN KITs, Various laboratory items and chemicals"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	19-Dec-07	29-Feb-08	19859.13	=""	="GE HEALTHCARE BIO-SCIENCES"	12-May-08 09:49 AM	

+="CN78109"	"SERVICES FOR SUPPORT TO TDL JAN/FEB 08"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	19-Dec-07	29-Feb-08	19714.00	=""	="CUBIC DEFENSE APPLICATIONS INC"	12-May-08 09:52 AM	

+="CN78110"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78113"	"Voicemail upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	28-Feb-08	18365.60	=""	="ACTIVE VOICE LLC"	12-May-08 09:53 AM	

+="CN78117"	"FURNITURE FOR 278SQN"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	18-Dec-07	14-Feb-08	17963.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 09:54 AM	

+="CN78128"	"Computer Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	17358.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 09:56 AM	

+="CN78132"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	17-Jan-08	18447.77	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78136"	"DOOR LOCKS AND KEYS FOR ACCOMMODATION"	="Department of Defence"	12-May-08	="Locks and security hardware and accessories"	18-Dec-07	30-Jan-08	16053.40	=""	="MOSMAN LOCKSMITHS &"	12-May-08 09:57 AM	

+="CN78192"	"Supply and installation of cabling services at Queensland Airports"	="Australian Federal Police"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	18546.40	="37-2005"	="Absolute Cabling Systems Pty Ltd"	12-May-08 11:45 AM	

+="CN78204"	"Scribe for Marketing Communications Capability Recruitment"	="Australian Taxation Office"	12-May-08	="Management advisory services"	02-Jun-08	13-Jun-08	18500.00	="64.04-35"	="Recruitment Management Company"	12-May-08 12:09 PM	

+="CN78214"	"AMMAN CHANCERY RELOCATION."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	16142.00	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-May-08 01:05 PM	

+="CN78222"	"DIAGONAL DUAL POLARISEDHORN ANTENNA 2GHZ"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	29-Feb-08	19030.00	=""	="FARADAY PTY LTD"	12-May-08 01:06 PM	

+="CN78232"	"EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	16667.44	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:08 PM	

+="CN78250"	"HP XW 9400 WORKSTATION HPLP2465 24" TCO03 LCD MONITOR HP8710W NOTEBOOK"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Dec-07	21-Dec-07	18766.00	=""	="COMMANDER (SA/WA) PTY LTD"	12-May-08 01:10 PM	

+="CN78255-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	17038.13	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78259-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Oct-07	28-Dec-07	19641.60	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78261-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	12-Oct-07	19008.00	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78269"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="RECOVRE"	12-May-08 01:12 PM	

+="CN78270"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	05-Dec-07	30-Jun-08	19200.00	=""	="KONEKT AUSTRALIA PTY LTD"	12-May-08 01:12 PM	

+="CN78281"	"PRINT PRODUCTION LWP-G 7-4-12 AL3 X 6000 COPIES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	05-Dec-07	20-Dec-07	17870.60	=""	="PRESS HERE PTY LTD"	12-May-08 01:14 PM	

+="CN78294"	"DELIVER THE FOLLOWING COURSES INCLUDING BUT NOT LIMITED TO BUILDING SUCCESSFUL TEAMS"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	30-Jun-08	19503.00	=""	="DEVELOPING POTENTIAL AUSTRALIA"	12-May-08 01:16 PM	

+="CN78314"	"Research Agreement Heat assessment of Chemical and Biological Protective ensembles REF:2007/1096729/"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	05-Dec-07	14-Dec-07	16645.20	=""	="UNI OF WOLLONGONG - OFF OF RESEARCH"	12-May-08 01:19 PM	

+="CN78315"	"Hire of lighting equipment"	="Department of Defence"	12-May-08	="Lighting and fixtures and accessories"	05-Dec-07	07-Dec-07	19933.10	=""	="RESOLUTION X PTY LTD"	12-May-08 01:19 PM	

+="CN78335"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	17820.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	12-May-08 01:23 PM	

+="CN78347"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Dec-07	18927.68	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 01:25 PM	

+="CN78352"	"Contract - Extension Development of a LAP CHAT App"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	30-Jun-08	18287.50	=""	="ALTASYS SOFTWARE PTY LTD"	12-May-08 01:25 PM	

+="CN78358"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-08	16027.00	=""	="NGA.NET PTY LTD"	12-May-08 01:26 PM	

+="CN78359"	"CADET GLIDING CAMP"	="Department of Defence"	12-May-08	="Recreational aircraft"	05-Dec-07	15-Dec-07	19965.00	=""	="BOX GROVE"	12-May-08 01:27 PM	

+="CN78387-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	31-Jul-07	12-Oct-07	19470.00	=""	="W.E. & P.A. CAMERON PTY. LIMITED"	12-May-08 01:31 PM	

+="CN78415"	"FACOPS-SA-08-SA2352-04"	="Department of Defence"	12-May-08	="Water safety"	10-Dec-07	30-Jun-08	19140.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:36 PM	

+="CN78416"	"Edgell/McCains Beans, capsicums, diced carrots, corn kernels, and mixed vegetables"	="Department of Defence"	12-May-08	="Vegetables"	10-Dec-07	03-Mar-08	17561.06	=""	="PFD FOOD SERVICES (TAS) PTY LTD"	12-May-08 01:36 PM	

+="CN78419"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	16500.00	=""	="THOUGHTWEB PTY LTD"	12-May-08 01:37 PM	

+="CN78432"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Dec-07	14-Dec-07	19593.20	=""	="PARAGON PRINTERS"	12-May-08 01:39 PM	

+="CN78436"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	18480.00	=""	="CEO COLLEGIATES PTY LTD"	12-May-08 01:40 PM	

+="CN78448"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	06-Dec-07	06-Dec-07	16382.51	=""	="GHK GREEN KREJCI"	12-May-08 01:42 PM	

+="CN78464"	"REHABILITATION SERVICES"	="Department of Defence"	12-May-08	="Physical and occupational therapy and rehabilitation products"	06-Dec-07	30-Jun-08	19200.00	=""	="REACT"	12-May-08 01:44 PM	

+="CN78472"	"DSTO RATIONALISATION PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	16742.00	=""	="TAC PACIFIC PTY LTD"	12-May-08 01:45 PM	

+="CN78477"	"Advertising EL2 job 25495"	="Department of Defence"	12-May-08	="Advertising"	07-Dec-07	17-Dec-07	19600.42	=""	="HMA BLAZE PTY LTD"	12-May-08 01:46 PM	

+="CN78492"	"FACOPS - SA2387"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Dec-07	30-Jun-08	18700.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:48 PM	

+="CN78581"	"CONDITIONS: As per Commonwealth / QinetiQ Agreemen"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	17651.26	=""	="QINETIQ LTD"	12-May-08 02:03 PM	

+="CN78585"	"Lease of SES vehicle"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	20-Dec-07	30-Jun-09	19584.27	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:04 PM	

+="CN78586"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	17283.42	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:04 PM	

+="CN78642"	"PASSENGER TPT BY AIR"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Jun-08	16548.37	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:12 PM	

+="CN78672"	"Car Hire for members on course"	="Department of Defence"	12-May-08	="Vehicle doors"	13-Dec-07	29-Jul-08	18667.61	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:14 PM	

+="CN78678"	"Enterprise thinking August 07"	="Department of Defence"	12-May-08	="Environmental Services"	31-Aug-07	30-Jun-08	18782.29	=""	="ENTERPRISE CLARITY PTY LTD"	12-May-08 02:15 PM	

+="CN78681"	"REPAIRING OF ROOF AT AUSTRALIAN COMPOUND BAGHDAD"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Nov-07	16-Dec-07	18792.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:15 PM	

+="CN78707"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	16970.30	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78709"	"Office Relocation"	="Department of Defence"	12-May-08	="Office supplies"	14-Apr-08	16-May-08	16830.00	=""	="DIGITAL (DIGEST) DATA DESIGN PTY"	12-May-08 02:17 PM	

+="CN78715"	"Services of Sun Project Engineer"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	30-May-08	19123.50	=""	="SUN MICROSYSTEMS AUST PTY LTD"	12-May-08 02:18 PM	

+="CN78720"	"Cisco Equipment"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Jan-08	04-Feb-08	16516.18	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78724"	"IT equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	13-Jun-08	17655.66	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:18 PM	

+="CN78734"	"ACMS 1529581MAINSTREM 2008 MAINTANCE AND RELIABILT MANAGEMENT CONFERENCE"	="Department of Defence"	12-May-08	="Environmental control systems"	14-Apr-08	14-Apr-08	19316.00	=""	="EVENTFUL MANAGEMENT"	12-May-08 02:19 PM	

+="CN78742"	"VEHICLE LEASE FLLA  B NOV 07"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	04-Dec-07	16247.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:19 PM	

+="CN78752"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	29-Nov-07	03-Jan-08	16439.87	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:20 PM	

+="CN78761"	"CONTRACT ADMINISTRATOR FEES FOR JUNE 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:20 PM	

+="CN78764"	"CONTRACT ADMINISTRATOR FEES FOR JULY 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78767"	"CONTRACT ADMINISTRATOR FEES FOR AUGUST 2007"	="Department of Defence"	12-May-08	="Hardware"	26-Sep-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78770"	"CONTRACT ADMINISTRATOR FEES FOR SEPTEMBER 2007"	="Department of Defence"	12-May-08	="Hardware"	06-Oct-07	01-Dec-07	18048.48	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:21 PM	

+="CN78776"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	16500.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	12-May-08 02:21 PM	

+="CN78778"	"OFFICE FURNITURE FOR RNSW"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Apr-08	05-May-08	16390.00	=""	="INTERWORX PTY LTD"	12-May-08 02:21 PM	

+="CN78783"	"SPECIAL FINANCIAL CLAIM"	="Department of Defence"	12-May-08	="Legal services"	28-Nov-07	15-Dec-07	18250.00	=""	="WILLIAMS WINTER & HIGGS"	12-May-08 02:22 PM	

+="CN78790"	"Powerware 9355 - Three phase input output"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	14-Apr-08	16-Apr-08	18549.30	=""	="POWER ON AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78801"	"qantas invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Sep-07	30-Sep-07	17469.10	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78802"	"Services for Market & Technology Reports"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	22-Apr-08	19250.00	=""	="FROST & SULLIVAN"	12-May-08 02:23 PM	

+="CN78807"	"CAMP LABOUR FLLA NOV 07"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Nov-07	09-Dec-07	18235.68	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:23 PM	

+="CN78808"	"A4 25mm Buff Binders x Qty 2000, A4 50mm Buff Bind ers x Qty 2000"	="Department of Defence"	12-May-08	="Paper products"	14-Apr-08	25-Apr-08	17380.00	=""	="CUSTOM INDUSTRIES PTY LTD"	12-May-08 02:23 PM	

+="CN78809"	"OP DELUGE - MEDALS"	="Department of Defence"	12-May-08	="Collectibles and awards"	21-Dec-07	21-Dec-07	18507.50	=""	="G A MILLER METAL INDUSTRIES"	12-May-08 02:23 PM	

+="CN78816"	"QANTAS AIRFARES FOR AUSTRALIAN DEFENCE BASIC FLYIN TRAINING SCHOOL FOR OCTOBER 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	16547.86	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78824"	"ADVERTISING"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	21-Dec-07	30-Jun-08	19284.10	=""	="LAM AGENCY PTY LTD"	12-May-08 02:24 PM	

+="CN78829"	"Software Support"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Apr-08	18023.50	=""	="AUSPACE LIMITED"	12-May-08 02:24 PM	

+="CN78845"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Dec-07	21-Dec-07	16036.90	=""	="PIRION PTY LTD"	12-May-08 02:25 PM	

+="CN78846"	"VEHICLE LEASE"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	05-Dec-07	17707.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:25 PM	

+="CN78867"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	02-Jan-08	29-Feb-08	17545.55	=""	="HARVEY NORMAN BEDDING PENRITH"	12-May-08 02:27 PM	

+="CN78904"	"TRAINING COURSES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	20000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	12-May-08 02:29 PM	

+="CN78906"	"CONTRACT SERVICES IRAQ - FLLA B"	="Department of Defence"	12-May-08	="Industrial Cleaning Services"	01-Mar-08	12-Apr-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78909"	"IN FLIGHT MEALS"	="Department of Defence"	12-May-08	="Packaged combination meals"	07-Mar-08	12-Apr-08	17224.70	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:30 PM	

+="CN78917"	"CARRY OUT INSPECTION AND REPAIRS TO GENIE EWP FOR BASE EAST."	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	26-May-08	16684.80	=""	="NTP FORKLIFTS AUSTRALIA"	12-May-08 02:30 PM	

+="CN78927"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	09-Apr-08	09-Apr-08	18000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:31 PM	

+="CN78930"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	30-Mar-07	30-Mar-07	19212.73	=""	="HMA BLAZE PTY LTD"	12-May-08 02:31 PM	

+="CN78934"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	19176.70	=""	="ASI SOLUTIONS"	12-May-08 02:32 PM	

+="CN78932"	"STORAGE CABINETS"	="Department of Defence"	12-May-08	="Cabinets"	01-May-08	12-Jun-08	16843.20	=""	="F G P COMPANY PTY LTD"	12-May-08 02:33 PM	

+="CN78953"	"For Site Integration Services - Stage 3 DIER 0708- Australian Region"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	31-Dec-08	18004.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:33 PM	

+="CN78968"	"Consultancy for the rewiring and certification of RAAF Base Townsville.  This consultancy also cover"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	17-Dec-07	30-Jun-08	17605.50	=""	="SPOTLESS"	12-May-08 02:34 PM	

+="CN78969"	"Delivery of ADDP 3.11 CIMIC Authors Brief"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Mar-08	30-Jun-08	16445.45	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 02:34 PM	

+="CN78980"	"Provision of labour hire to RFS from 1 Jan to 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	16774.96	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 02:35 PM	

+="CN78982"	"4 X PHOTOCOPIERS - OBGW"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	16-Mar-08	19-Mar-08	17052.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:36 PM	

+="CN78985"	"CORE Software Licenses"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	04-Jan-08	17113.38	=""	="TE & JL DEECKE - USD"	12-May-08 02:36 PM	

+="CN78991"	"INCREASED CAPACITY TO DSVE NATIONAL BRIDGE."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	31-Mar-08	18024.95	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 02:36 PM	

+="CN79018"	"MSL TRAVEL BILLS APR08"	="Department of Defence"	12-May-08	="Structural materials and basic shapes"	15-Apr-08	15-Apr-08	17386.35	=""	="MSL TRAVEL DN BHD"	12-May-08 02:38 PM	

+="CN79024"	"hire car rental"	="Department of Defence"	12-May-08	="Passenger transport"	24-Mar-08	17-Apr-08	16750.79	="732"	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79041"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	09-Mar-08	12-Apr-08	18525.00	=""	="ROYAL PERTH HOSPITAL"	12-May-08 02:40 PM	

+="CN79050"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	26-Mar-08	30-May-08	18034.73	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:40 PM	

+="CN79066"	"facops"	="Department of Defence"	12-May-08	="Alloys"	17-Dec-07	30-Jun-08	19243.40	=""	="RESOLVE FM"	12-May-08 02:42 PM	

+="CN79068"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	23-Mar-08	15-Apr-08	20000.00	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79070"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	20-Feb-08	15-Apr-08	18333.32	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79088"	"REPAIR EXPLOSIVE FORKLIFT FOR ORCHARD HILLS EODF"	="Department of Defence"	12-May-08	="Hydraulic machinery and equipment"	07-Apr-08	02-Jun-08	18931.00	=""	="CHESS ENGINEERING PTY LTD"	12-May-08 02:44 PM	

+="CN79094"	"CONFERENCE"	="Department of Defence"	12-May-08	="Personal and Domestic Services"	07-Apr-08	07-Apr-08	19164.00	=""	="TOUR HOSTS PTY LTD"	12-May-08 02:44 PM	

+="CN79106"	"Line marking"	="Department of Defence"	12-May-08	="Paints and primers and finishes"	07-Apr-08	11-Apr-08	16359.20	=""	="TRICORP ENTERPRISES"	12-May-08 02:46 PM	

+="CN79112"	"COMPUTERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	07-Apr-08	18074.00	=""	="CIC SECURE PTY LTD"	12-May-08 02:46 PM	

+="CN79113"	"TRAINING EQUIPMENT FOR TPT COURSE"	="Department of Defence"	12-May-08	="Safety apparel"	12-Mar-08	08-Apr-08	17539.25	=""	="AITKEN MOTORCYCLES"	12-May-08 02:46 PM	

+="CN79121"	"Aerial surveillance SWBTA"	="Department of Defence"	12-May-08	="Environmental management"	26-Mar-08	31-Mar-08	18249.00	=""	="REID HELIWORK"	12-May-08 02:47 PM	

+="CN79122"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	18254.28	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79131"	"GROUP REGISTRATIONFOR COLLABORATIVE EMERGENCY RESPONSE CONFERENCE 2008"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Apr-08	11-Apr-08	16493.40	=""	="INTERNATIONAL QUALITY & PRODUCTIVIT"	12-May-08 02:48 PM	

+="CN79137"	"STATIONARY"	="Department of Defence"	12-May-08	="Paper products"	07-Apr-08	11-Apr-08	16390.00	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 02:48 PM	

+="CN79158"	"HP DL360G5 SERVER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	17291.68	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:50 PM	

+="CN79163"	"CHP PAYMENTS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	14-Apr-08	14-Apr-08	17496.01	=""	="RED ALLIANCE PTY LTD"	12-May-08 02:51 PM	

+="CN79167"	"APR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	30-Apr-08	05-May-08	18245.54	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:51 PM	

+="CN79182"	"COLLECT OF WASTE MNGT FOR EX WALLABY 07"	="Department of Defence"	12-May-08	="Scrap and waste materials"	10-Dec-07	10-Dec-07	17912.32	=""	="WANLESS WASTECORP"	12-May-08 02:53 PM	

+="CN79188"	"APR 08 FORKLIFT LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	15-Apr-08	03-May-08	16205.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:53 PM	

+="CN79193"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79195"	"Tenix Multiple Computer Switches units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	17152.64	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79196"	"INSTALLATION OF PLASTIC SCREENS - FLLA K"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	30-Apr-08	04-May-08	17707.64	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79198"	"APR 08 ADMINISTRATION COSTS - IRAQ"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	30-Apr-08	04-May-08	17171.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79213"	"IT Training"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Jun-08	16340.50	=""	="PROACTIVE SERVICES PTY LTD"	12-May-08 02:56 PM	

+="CN79216"	"DANGEROUS AWARENESS COURSES"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Dec-07	30-Jun-08	16201.80	=""	="THE CIVIL AVIATION ACADEMY"	12-May-08 02:56 PM	

+="CN79228"	"SERVICES FOR FLEXIBLE LEARNING COURSE ENOGGERA"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Apr-08	30-Jun-08	16711.20	=""	="TODAY CORP PTY LTD"	12-May-08 02:58 PM	

+="CN79233"	"TEMPORARY ACCOMMODATION"	="Department of Defence"	12-May-08	="Accommodation furniture"	29-Feb-08	30-Jun-08	18590.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79249"	"REPLENISHMENT OF STOCK IN BASREC"	="Department of Defence"	12-May-08	="Military watercraft"	03-Apr-08	30-Jun-08	17051.72	=""	="DEFENCE MARITIME SERVICES"	12-May-08 02:59 PM	

+="CN79257"	"Pearce is transferring to scheme water due to fail bore water supply to provide reliable potable wat"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	08-Apr-08	30-Jun-08	18110.40	=""	="ROAD SAFETY HIRE PTY LTD"	12-May-08 03:00 PM	

+="CN79297"	"LIMITS OF ACCEPTABLE CHANGE LITERATURE REVIEW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	18572.40	=""	="CONNELL WAGNER PTY LTD"	12-May-08 03:04 PM	

+="CN79312"	"MISC. CABLES REQUIRED FOR OP CATAYLST- ORDER 88/08"	="Department of Defence"	12-May-08	="Electrical components"	09-Apr-08	09-Apr-08	16950.20	=""	="AWE-SIM ELECTRICAL WHOLESALERS"	12-May-08 03:06 PM	

+="CN79315"	"LEATHER LOUNGE SUITE 2 SEATER AND SINGLE BORNEO BARRACKS CABARLAH"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	09-Apr-08	16-Jun-08	16500.06	=""	="RUBELLI DESIGN"	12-May-08 03:06 PM	

+="CN79324"	"FEB 08 TELEHANDLER LEASE - FLLA K"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	18-Mar-08	01-May-08	16103.09	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:07 PM	

+="CN79347"	"CABLING WORKS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	31-May-08	19313.80	=""	="PROFESSIONAL CABLING SERVICES"	12-May-08 03:09 PM	

+="CN79348"	"MAR 08 VEHICLE LEASE - HQJTF 633"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	31-Mar-08	03-May-08	16544.30	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79372"	"Thin client terminals"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	21-May-08	18839.92	=""	="ASI SOLUTIONS"	12-May-08 03:10 PM	

+="CN79374"	"Use of Exisitng ASP Contract - No 1 LT Cooling Pump"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	01-Apr-08	25-Apr-08	16847.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:10 PM	

+="CN79392"	"LOCAL LABOUR AND ADMIN COSTS - BAGHDAD"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	31-Mar-08	01-May-08	17062.88	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:12 PM	

+="CN79403"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	31-Aug-07	19315.43	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79405"	"POC: PHILLIP MCCULLOCH CONTACT: 02 626 50928"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	18260.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:13 PM	

+="CN79409"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	18439.73	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79435"	"Hospitality - FBT"	="Department of Defence"	12-May-08	="Accommodation furniture"	07-Apr-08	30-Jun-08	17690.40	=""	="GOOLABRI COUNTRY RESORT"	12-May-08 03:15 PM	

+="CN79453"	"QANTAS"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	18-Feb-08	18299.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:16 PM	

+="CN79465"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Sep-07	30-Sep-07	16988.20	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79468"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Apr-08	07-Apr-08	17050.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:17 PM	

+="CN79477"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	20-Apr-08	19422.70	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:18 PM	

+="CN79478"	"sUPPLY OF INTERACTIVE hARDWARE AND sOFTWARE FOR os"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	18194.77	=""	="SAI GLOBAL LTD"	12-May-08 03:18 PM	

+="CN79487"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	18993.11	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:18 PM	

+="CN79489"	"Divide Room 156 to create two new rooms at Facility 536 RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	08-Apr-08	30-Jun-08	16319.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:18 PM	

+="CN79491"	"NDT Procedure Development for PC9/A"	="Department of Defence"	12-May-08	="Flight communications related systems"	26-Mar-08	16-Apr-08	18372.75	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:18 PM	

+="CN79494"	"SN02525 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:19 PM	

+="CN79495"	"PEL AIR FLIGHT SUPPORT TO THE DIRCM PH4"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	30-Jun-08	18400.00	=""	="PEL-AIR AVIATION"	12-May-08 03:19 PM	

+="CN79499"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	16088.60	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:19 PM	

+="CN79515"	"YEYS 20TH ANNIVERSARY CATERING"	="Department of Defence"	12-May-08	="Food and Beverage Products"	11-Feb-08	11-Feb-08	18336.73	=""	="COMPASS GROUP AUSTRALIA PTY LTD"	12-May-08 03:20 PM	

+="CN79521"	"HEALTH PROGRAM"	="Department of Defence"	12-May-08	="Healthcare Services"	08-Apr-08	30-Jun-08	18241.30	=""	="PRO-FIT CORPORATE HEALTH"	12-May-08 03:21 PM	

+="CN79526"	"training services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-08	18040.00	=""	="GRIFFITH UNIVERSITY"	12-May-08 03:21 PM	

+="CN79551"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	10-Dec-07	10-Dec-07	18921.73	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 03:22 PM	

+="CN79559"	"AUSCDT ONE QANTAS STATEMENT JAN 08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	01-Mar-08	17050.53	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:23 PM	

+="CN79580"	"Payment for Professional Services - ADFWC Standing of ADDP 3.16-AIRSPACE CONTROL"	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	29-Jan-08	28-Feb-08	17051.58	=""	="NOETIC SOLUTIONS PTY LTD"	12-May-08 03:25 PM	

+="CN79590"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	19380.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 03:26 PM	

+="CN79591"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Printed media"	23-Apr-08	23-Apr-08	16879.50	=""	="PARAGON PRINTERS"	12-May-08 03:26 PM	

+="CN79598"	"Conduct an IMS workshop AASSPO-SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Feb-08	15-Feb-08	16009.17	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:26 PM	

+="CN79608"	"Use of Exisitng ASP Contract - Review Ships Hull Survey Management"	="Department of Defence"	12-May-08	="Marine transport"	20-Mar-08	17-Apr-08	19379.75	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:27 PM	

+="CN79610"	"Computer equiptment and support"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	12-Feb-08	29-Feb-08	17843.10	=""	="SCIENTIFIC DEVICES AUSTRALIA"	12-May-08 03:27 PM	

+="CN79611"	"LONG DAY CARE CENTRE CARPARK CONSULTANCY"	="Department of Defence"	12-May-08	="Roads and landscape"	15-Nov-07	30-Jun-08	19800.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:27 PM	

+="CN79620"	"CONTRACT LABOUR JAN 08- FLLA B"	="Department of Defence"	12-May-08	="Cleaning and janitorial services"	03-Feb-08	11-Feb-08	17746.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:27 PM	

+="CN79625"	"JAN LEASE FEE FLLA-B VEH"	="Department of Defence"	12-May-08	="Motor vehicles"	03-Feb-08	11-Feb-08	17098.35	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:28 PM	

+="CN79634"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	04-Apr-08	04-Apr-08	19544.70	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	12-May-08 03:28 PM	

+="CN79643"	"MEMBERS OPERATION TRAVEL"	="Department of Defence"	12-May-08	="Aircraft"	16-Jan-08	16-Feb-08	17690.80	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:29 PM	

+="CN79648"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	19159.66	=""	="RACAL ACOUSTICS LIMITED"	12-May-08 03:29 PM	

+="CN79657"	"Please Deliver to RAAF Base furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Nov-07	30-Jun-08	17078.60	=""	="KEEN OFFICE FURNITURE"	12-May-08 03:30 PM	

+="CN79664"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16665.60	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:30 PM	

+="CN79669"	"Software"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	06-Dec-07	18796.80	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 03:31 PM	

+="CN79668"	"Provision of Archiving and Storage services"	="Medicare Australia"	12-May-08	="Storage"	07-Apr-08	07-Apr-08	16471.25	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:31 PM	

+="CN79678"	"technical assistance to trials"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	31-Mar-08	19826.40	=""	="ICON RECRUITMENT"	12-May-08 03:32 PM	

+="CN79683"	"Provision of Legal Services"	="Medicare Australia"	12-May-08	="Legal services"	07-Apr-08	07-Apr-08	16500.00	=""	="SPARKE HELMORE"	12-May-08 03:32 PM	

+="CN79686"	"12/40 RTR AUGUST 07 QANTAS BILL"	="Department of Defence"	12-May-08	="Aircraft"	31-Aug-07	07-Feb-08	17589.39	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:33 PM	

+="CN79694"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	04-Jan-08	17820.00	=""	="ACACIA RESEARCH PTY LTD"	12-May-08 03:33 PM	

+="CN79719"	"DEVELOP A SOFTWARE ENGINEERING (PROJECT PRACTITIONER) COURSE"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	12-Feb-08	30-Jun-08	16384.50	=""	="DEAKINPRIME"	12-May-08 03:35 PM	

+="CN79722"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	29-Feb-08	17160.00	=""	="KAZ GROUP PTY LTD"	12-May-08 03:35 PM	

+="CN79737"	"MATTRESSES AND PROTECTORS"	="Department of Defence"	12-May-08	="Bedclothes and table and kitchen linen and towels"	05-Feb-08	12-Feb-08	19520.69	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:36 PM	

+="CN79748"	"Land 17 Tender Evaulation Suite furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	28-Mar-08	30-May-08	17230.12	=""	="MELBOURNE OFFICE FURNITURE PTY LTD"	12-May-08 03:36 PM	

+="CN79751"	"Nulka Maintenace"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	02-May-08	18674.94	=""	="THALES AUSTRALIA"	12-May-08 03:36 PM	

+="CN79756"	"Testing Technician"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	16-Nov-07	05-Jun-08	18785.25	=""	="FORTBURN PTY LTD"	12-May-08 03:37 PM	

+="CN79750"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	19882.52	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 03:37 PM	

+="CN79807"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	19134.34	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79824"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	15-Nov-07	30-Jun-08	18293.00	=""	="CRS AUSTRALIA"	12-May-08 03:41 PM	

+="CN79827"	"CALIBRATION EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	30-Mar-08	19694.40	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	12-May-08 03:42 PM	

+="CN79858"	"QANTAS PASSENGER  AIRFARES FOR AUSTRALIAN DEFENCE FORCE BASIC FLIGHT TRAINING SCHOOL FOR DECEMBER 07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	16325.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:44 PM	

+="CN79856"	"By Pass Hose Set"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	16-Feb-08	01-Jul-08	17915.93	=""	="LCF SYSTEMS INC"	12-May-08 03:44 PM	

+="CN79877"	"Travel and subsistence"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	20000.00	=""	="DEFENCE SUPPORT - WA"	12-May-08 03:45 PM	

+="CN79879"	"Publication work as required"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-08	18400.00	=""	="BALL SOLUTIONS GROUP"	12-May-08 03:45 PM	

+="CN79878"	"SALARY AND SALARY RELATED COSTS"	="Department of Defence"	12-May-08	="Medical science research and experimentation"	07-Feb-08	14-Feb-08	18587.97	=""	="QUT STUDENT FEES OFFICE"	12-May-08 03:45 PM	

+="CN79896"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Travel facilitation"	31-Jan-08	14-Mar-08	18087.49	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79901"	"RADIOLOGY SERVICES JANUARY 2008"	="Department of Defence"	12-May-08	="Patient exam and monitoring products"	11-Feb-08	20-Mar-08	19586.69	=""	="BENSON RADIOLOGY"	12-May-08 03:47 PM	

+="CN79912"	"PROJECT REPORTING TOOL"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	21-Jun-08	18106.00	=""	="HUEGIN CONSULTING"	12-May-08 03:48 PM	

+="CN79915"	"SATCOM contact - Brian Castles brian.castles2@defe"	="Defence Materiel Organisation"	12-May-08	="Satellites"	14-Feb-08	30-Jun-08	16500.00	=""	="TC COMMUNICATIONS PTY LTD"	12-May-08 03:48 PM	

+="CN79920"	"RATIONS FOR EX.SOUTHERN REACH - DAIRY PRODUCTS 01.09.2007 - 30.01.2008"	="Department of Defence"	12-May-08	="Dairy products and eggs"	12-Nov-07	30-Apr-08	19637.60	=""	="PORT AUGUST MILK VENDORS PTY LTD"	12-May-08 03:48 PM	

+="CN79926"	"RASS MEASUREMENT CAMPAIGN EAST SALE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	27-Mar-08	30-Apr-08	16099.46	=""	="NATIONAL AVIATION & COMMUNICATIONS"	12-May-08 03:49 PM	

+="CN79938"	"Rectify generator & storage issues"	="Department of Defence"	12-May-08	="General building construction"	27-Mar-08	30-May-08	16783.54	=""	="DIESEL CONTRACT SERVICES"	12-May-08 03:50 PM	

+="CN79939"	"Incidentals for AARU Europe Tour Apr 08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	21-Feb-08	12-Mar-08	18500.00	=""	="AUSTRALIAN ARMY RUGBY UNION"	12-May-08 03:50 PM	

+="CN79983"	"Flinders University Bachelor of medicine Maj G Day"	="Department of Defence"	12-May-08	="Educational institutions"	20-Dec-07	09-Aug-08	18900.00	=""	="THE FLINDERS UNIVERSITY OF SA"	12-May-08 03:54 PM	

+="CN79992"	"HIRE OF CURTAINSIDER TRUCK IN SUPPORT OF OPERATIONS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Nov-07	05-Mar-08	19714.20	=""	="THRIFTY CAR RENTALS"	12-May-08 03:55 PM	

+="CN79993"	"TECHNICAL SERVICES"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	17634.85	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:55 PM	

+="CN79995"	"ADC WESTON TEMP ACCOMODATION - SN02525"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	17465.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:56 PM	

+="CN80004"	"FEB LEASE OF VEHICLES- HQJTF 633"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Feb-08	25-Mar-08	16840.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:56 PM	

+="CN80010"	"EA & DDP FOR FRIDGE LOCK-IN ALARMS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	24-May-08	18579.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:57 PM	

+="CN73556-A1"	"Audio Visual Equipment Hire"	="Department of the Prime Minister and Cabinet"	12-May-08	="Audio visual services"	17-Apr-08	21-Apr-08	19659.00	=""	="Nova Topstage Pty Ltd"	12-May-08 03:58 PM	

+="CN80034"	"QANTAS BILL 75SQN FEB 08"	="Department of Defence"	12-May-08	="Recreational aircraft"	13-Mar-08	31-Dec-08	17091.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:58 PM	

+="CN80044"	"NSN 4440-66-151-2924, Silica Gel"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	08-May-08	18-May-08	17219.40	=""	="CONSOLIDATED CHEMICAL CO"	12-May-08 04:00 PM	

+="CN80066"	"WARRANTY ON PRODUCT IS 12 MONTHS UNIT PRICE INCLUDES DELIVERY INTO WA."	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	15-Mar-08	18658.31	=""	="PADDY PALLIN ADVENTURE EQUIPMENT"	12-May-08 04:01 PM	

+="CN80078"	"FEB LEASE OF TELE-HANDLER FORKLIFT"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	05-Feb-08	20-Mar-08	16495.39	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:01 PM	

+="CN80091"	"Elbow, Tube"	="Department of Defence"	12-May-08	="Electrical components"	11-Dec-07	25-Jul-08	19793.86	=""	="LCF SYSTEMS INC"	12-May-08 04:02 PM	

+="CN80096"	"Conduct a comprehensive appraisal report on B Hangar"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Dec-07	28-Dec-07	19800.00	=""	="GHD PTY LTD"	12-May-08 04:02 PM	

+="CN80113"	"QANTAS INVOICE"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	25-Mar-08	17567.36	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:03 PM	

+="CN80149"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	20-Nov-07	30-Jun-08	16901.50	=""	="RECOVRE PTY LTD"	12-May-08 04:05 PM	

+="CN80167"	"Training Course"	="Defence Materiel Organisation"	12-May-08	="Software"	06-Feb-08	06-Feb-08	16313.22	=""	="IDC TECHNOLOGIES PTY LTD"	12-May-08 04:07 PM	

+="CN80169"	"Seven places with Cranfield University in Adelaide for Availability & Integrated Logistic Suppor"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	11-Dec-07	11-Dec-07	17500.00	=""	="DEFENCE TEAMING CENTRE INC"	12-May-08 04:07 PM	

+="CN80173"	"PAYMENT TO HERTZ FOR DAMAGED VEHICLE BY RAAFSALT"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Jan-08	03-Mar-08	19928.60	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 04:08 PM	

+="CN80177"	"4563 - BI QUERY TRAINING SERVICES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	05-Feb-08	14-Mar-08	18260.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:08 PM	

+="CN80212"	"Repair fence around Doomadgee Council Rubbish Tip"	="Department of Defence"	12-May-08	="Environmental Services"	12-Dec-07	30-Jun-08	17905.44	=""	="DOOMADGEE CDEP ENTERPRISES"	12-May-08 04:11 PM	

+="CN80222"	"sanitary disposal"	="Department of Defence"	12-May-08	="Environmental Services"	19-Nov-07	30-Jun-08	17600.00	=""	="RENTOKIL INITIAL PTY LTD"	12-May-08 04:12 PM	

+="CN80267"	"REPAIRS TO MBITR SPARE PARTS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	20-Dec-07	20-Jun-08	16879.50	=""	="THALES AUSTRALIA"	12-May-08 04:15 PM	

+="CN80274"	"WIRING HARNESS"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	06-Feb-08	31-Jul-08	17304.56	=""	="SEMCO INSTRUMENTS INC"	12-May-08 04:16 PM	

+="CN80278"	"PRODUCTION, DESIGN OF DISPLAY AT SHOW"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Nov-07	11-Sep-08	17868.62	=""	="ZOO INSTINCTIVELY CREATIVE"	12-May-08 04:17 PM	

+="CN80285"	"Installation of remote swich, cabling & controls for power isolation at LA 1, Woomera."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	10-Apr-08	12-May-08	17552.67	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:17 PM	

+="CN80295"	"12 months support for ACUCOBOL GT Runtime and GT Dev Sys sosftware"	="Defence Materiel Organisation"	12-May-08	="Software"	05-Feb-08	09-Jan-09	18502.00	=""	="MICRO FOCUS PTY LTD"	12-May-08 04:18 PM	

+="CN80300"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	12-May-08	="Motor vehicles"	12-May-08	26-May-08	18996.32	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	12-May-08 04:19 PM	

+="CN80314"	"review & amend flexible hoses database"	="Defence Materiel Organisation"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	05-Feb-08	16-Apr-08	17427.62	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80328"	"student and staff movements"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	30-Jun-08	19157.09	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:21 PM	

+="CN80342"	"Computer maintenance to be performed on the WAT an modules."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	19860.02	=""	="ONLINE LEARNING AUSTRALIA PTY"	12-May-08 04:22 PM	

+="CN80346"	"PURCHASE 22 DELL 24"ULTRA SHARP WIDE SCREEN FLAT P MONITORS(ANALOG & DVI)"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	30-Jun-08	19844.00	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 04:22 PM	

+="CN80345"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-May-08	17971.24	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80357"	"VARIOUS IT REQUIREMENTS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	14-Apr-08	30-Jun-08	17339.32	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:23 PM	

+="CN80372"	"air chtr movt of iso container op astute"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	30-Nov-07	16791.50	=""	="PDL TOLL"	12-May-08 04:24 PM	

+="CN80375"	"Software Integration Task"	="Department of Defence"	12-May-08	="Software"	14-Apr-08	30-Jun-08	17600.00	=""	="XANALYS PTY LTD"	12-May-08 04:24 PM	

+="CN80380"	"Rugged Notebook"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	14-May-08	16014.90	=""	="APC TECHNOLOGY"	12-May-08 04:24 PM	

+="CN80384"	"AIRFARES 27/12/2007 - 13/01/2008"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	23-Mar-08	18983.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80390"	"AIR FARES"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	06-Mar-08	17914.28	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:24 PM	

+="CN80393"	"lube oil engine cooler"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	04-Jan-08	10-May-08	17543.79	=""	="HONEYWELL AEROSPACE TULSA/LORI"	12-May-08 04:25 PM	

+="CN80401"	"QANTAS PAYMENT JAN 08"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	28-Mar-08	18760.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:25 PM	

+="CN80407"	"Workforce Support to develop database modification and user documentation"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	08-Feb-08	08-Feb-08	19454.40	=""	="SME GATEWAY LIMITED"	12-May-08 04:25 PM	

+="CN80409"	"Large  LCD Monitors"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Dec-07	17-Dec-07	16328.40	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:25 PM	

+="CN80419"	"Software Benefits Renewal"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	30-Apr-08	17905.47	=""	="CORPORATE EXPRESS"	12-May-08 04:26 PM	

+="CN80424"	"Notebook computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	16797.72	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80430"	"SPRING HELICAL COMPRESSON"	="Department of Defence"	12-May-08	="Firearms"	20-Dec-07	19-Jan-08	19058.93	=""	="R/M EQUIPMENT"	12-May-08 04:26 PM	

+="CN80431"	"OUTLOOK TRAINING COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	29-Apr-08	18348.00	=""	="PRIORITY MANAGEMENT"	12-May-08 04:26 PM	

+="CN80438"	"ESRI Software Maintenance"	="Department of Defence"	12-May-08	="Software"	10-Jan-08	01-Jan-09	17625.30	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 04:27 PM	

+="CN80443"	"Repair the power transformer and set to work HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Feb-08	20-Apr-08	19085.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:27 PM	

+="CN80451"	"Arrestor System Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft environmental control systems and components"	11-Feb-08	30-Jun-08	16921.78	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:27 PM	

+="CN80453"	"Mounting Base, Electrical Equipment"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	10-Jan-08	26-Sep-08	16571.55	=""	="HELICOPTER SUPPORT INC"	12-May-08 04:28 PM	

+="CN80461"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUEL DEFENCE."	="Department of Defence"	12-May-08	="Fuels"	09-Jan-08	30-Jun-08	19800.00	=""	="PETROGAS"	12-May-08 04:28 PM	

+="CN80478"	"Trailer mounted Generator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	31-May-08	19508.50	=""	="GENERATOR POWER"	12-May-08 04:29 PM	

+="CN80529"	"1405 Simulator Design Issues investigation"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	07-Feb-08	03-Mar-08	18751.70	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:33 PM	

+="CN80535"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	05-Feb-09	16312.77	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:33 PM	

+="CN80539"	"RICOH SCANNERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	18652.59	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 04:34 PM	

+="CN80545"	"professional services"	="Department of Defence"	12-May-08	="Aircraft"	21-Dec-07	30-Jun-08	17186.40	=""	="JACOBS AUSTRALIA"	12-May-08 04:34 PM	

+="CN80572"	"Project Management"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	08-Aug-07	16300.00	=""	="Project Planning (ACT) Pty Ltd"	12-May-08 04:35 PM	

+="CN80573"	"Rectify Kedge Hydraulics"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	08-Feb-08	30-Jun-08	18157.93	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80574"	"4516.40 HMAS ARUNTA ASSESSMENT OF AVIATION SYSTEMS"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	18733.00	=""	="BEAK RAST ENGINEERING"	12-May-08 04:35 PM	

+="CN80584"	"Cable Assembly Set, Electrical 100AMP, 10 METRES"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	11-Apr-08	27-Jun-08	16896.00	="RFQ G8674"	="MIDLEC INDUSTRIES"	12-May-08 04:36 PM	

+="CN80590"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	17464.57	=""	="CERULEAN SOLUTIONS LTD"	12-May-08 04:36 PM	

+="CN80591"	"CONTRACT CONDITIONS:  The Product Support and Tech dated 28 July 1995.  Note in accordance with Inco"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Jan-08	25-Apr-08	17155.46	=""	="ROLLS ROYCE (AERO REPAIR & OVERHAUL"	12-May-08 04:36 PM	

+="CN80603"	"Bathurst Island"	="Department of Defence"	12-May-08	="Electrical components"	07-Apr-08	07-May-08	19899.00	=""	="C-E SOLUTIONS"	12-May-08 04:37 PM	

+="CN80690"	"MIP Consultancy services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-08	18282.00	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 04:42 PM	

+="CN80698"	"pump"	="Department of Defence"	12-May-08	="Manufacturing support services"	07-Apr-08	30-Jun-08	16320.29	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80706"	"Security Works for Temp Fitout"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-Jun-08	19510.16	=""	="CHUBB SECURITY AUST PTY LTD"	12-May-08 04:42 PM	

+="CN80721"	"4516.29 HMAS WARRA 400Hz CONDITION ASSESSMENT AND PROVIDE OPENING AND CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	14-Mar-08	17882.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:43 PM	

+="CN80748"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	15-Feb-08	17797.36	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:45 PM	

+="CN80756"	"Project management support services covering 1/10/ pre-dmoss engagement"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	30-Jan-08	31-Mar-08	18998.50	=""	="APP CORPORATION PTY LTD"	12-May-08 04:45 PM	

+="CN80762"	"Interagency Travel"	="Department of Defence"	12-May-08	="Truck tractors"	03-Apr-08	30-May-08	18817.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:45 PM	

+="CN80764"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jul-08	19716.95	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:46 PM	

+="CN80774"	"INVESTIGATION TO IDENTIFY POSSIBLE OPTIONS FOR IMPROVEMENTS TO TASR AIR CONDITIONING"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-May-08	18489.42	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80776"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	29-Jun-08	18430.07	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:47 PM	

+="CN80784"	"Supply and Installation of Keywatcher"	="Department of Defence"	12-May-08	="Security and control equipment"	31-Jan-08	31-Mar-08	18191.80	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 04:47 PM	

+="CN80785"	"Use of Exisitng ASP Contract. Installation of Guar Rail round Trans Room hatch"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Dec-07	29-Feb-08	19981.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:47 PM	

+="CN80787"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	22-Feb-08	16500.00	=""	="AEROSPACE AUSTRALIA LTD"	12-May-08 04:47 PM	

+="CN80795"	"G2 ENGINE DIESEL ALLEN HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	22-Feb-08	29-Feb-08	19537.23	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80807"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	22-Feb-08	30-May-08	16495.51	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:48 PM	

+="CN80815"	"4516.22 CONDUCT 400HZ CONDITION ASSESSMENT ON HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	03-Mar-08	18394.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:48 PM	

+="CN80818"	"Provide independent advice on DMO financial report risk, control & compliance framework"	="Department of Defence"	12-May-08	="Management advisory services"	04-Apr-08	30-Jun-08	17792.50	=""	="JOHN MEERT"	12-May-08 04:48 PM	

+="CN80824"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	30-Jan-08	31-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:48 PM	

+="CN80832"	"PROMOTIONAL"	="Department of Defence"	12-May-08	="Utilities"	29-Jan-08	29-Jan-08	18500.00	=""	="MARITIME AUSTRALIA LIMITED"	12-May-08 04:49 PM	

+="CN80842"	"POC: Lloyd Magner Contact: 02 6266 9353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	16401.00	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 04:49 PM	

+="CN80858"	"Piston Control Lock"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	01-Mar-09	19884.79	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:50 PM	

+="CN80870"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	30-Aug-08	17085.91	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:51 PM	

+="CN80885"	"Use of Exisitng ASP Contract. repair sheave Block and reinstall"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	18-Dec-07	31-Jan-08	17729.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:51 PM	

+="CN80887"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	26-Feb-08	26-Feb-08	16191.68	=""	="KAZ GROUP PTY LTD"	12-May-08 04:51 PM	

+="CN80897"	"USN MOUNTS - NOT FITTED TO RIFLE"	="Department of Defence"	12-May-08	="Personal safety devices or weapons"	18-Dec-07	29-Feb-08	17875.00	=""	="XTEK PTY LTD"	12-May-08 04:52 PM	

+="CN80898"	"Brassard, DPCU, Wrap Around, Hok Pile Closure, But attachment"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	08-Apr-08	29-May-08	18451.18	=""	="SPEAR OF FAME PTY LTD"	12-May-08 04:52 PM	

+="CN80919"	"Project Coronis DRN/DSN Site Certification"	="Department of Defence"	12-May-08	="National Defence and Public Order and Security and Safety Services"	09-Apr-08	20-Jun-08	17000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:53 PM	

+="CN80925"	"Repair and Overhaul of F/A-18 HPC Rear Case"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	29-Jan-08	30-Mar-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:53 PM	

+="CN80954"	"Repair and overhaul of F/A-18 HPC Rear Case"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	28-Feb-08	23-Jun-08	16717.69	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:55 PM	

+="CN80962"	"AIRCRAFT SKIN"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	28-Feb-08	17-Dec-08	18353.99	=""	="NORTHROP GRUMMAN SYSTEMS CORPORATIO"	12-May-08 04:55 PM	

+="CN80963"	"ADAPTOR UNIT"	="Department of Defence"	12-May-08	="Aircraft equipment"	17-Dec-07	01-May-08	18637.39	=""	="KONGSBERG AUTOMOTIVE"	12-May-08 04:55 PM	

+="CN80978"	"THIS ORDER PLACED IAW CAPO C439169 'SUPPORT SERVIC"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	27-Feb-08	02-Jun-08	16095.59	=""	="RLM PTY LTD"	12-May-08 04:56 PM	

+="CN80996"	"Warden telephone support"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	07-Apr-08	28-Jun-08	17699.40	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 04:57 PM	

+="CN80999"	"TEMP ACCOMMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jun-08	19200.01	=""	="THE TRUSTEE FOR CARAS FLINDERS TRUS"	12-May-08 04:58 PM	

+="CN81009"	"Spacer,  Strap, Visor"	="Department of Defence"	12-May-08	="Personal safety and protection"	05-Feb-08	23-Jun-08	17500.42	=""	="TRANSAERO INC."	12-May-08 04:58 PM	

+="CN81015"	"MADE TO MEASURE ATTIRE"	="Department of Defence"	12-May-08	="Clothing"	18-Dec-07	31-Jan-08	17598.83	=""	="V & F TAILORING"	12-May-08 04:59 PM	

+="CN81020"	"Use of Exisitng ASP Contract - Sewage Treatment Plant"	="Department of Defence"	12-May-08	="Scrap and waste materials"	07-Apr-08	25-Apr-08	19653.16	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:59 PM	

+="CN81060"	"SIMPLE PROCUREMENT TRAINING. RFT CON (G) 222/2005. STANDING OFFER ID 19496. (13-14 MAR & 17-18 M"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	26-Feb-08	18-Mar-08	17600.00	=""	="DEAKINPRIME"	12-May-08 05:01 PM	

+="CN81095"	"Transportation of Seekers and EPUs"	="Department of Defence"	12-May-08	="Transportation components and systems"	26-Nov-07	30-Jan-08	16575.63	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:02 PM	

+="CN81099"	"MANUFACTURE AND SET TO WORK TASR SUM"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	19016.18	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81115"	"Flexible hose replacement - HMAS SYDNEY"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-Apr-08	19167.01	=""	="GLOBAL GMEC PTY LTD"	12-May-08 05:03 PM	

+="CN81125"	"Conference Facilities"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	19-Dec-07	28-Feb-08	18500.00	=""	="BERIDA MANOR"	12-May-08 05:04 PM	

+="CN81126"	"WiniFRED Support Fees 01 Jan 08 - 31 Mar 08"	="Department of Defence"	12-May-08	="Software"	04-Feb-08	31-Aug-08	19536.00	=""	="PCA NU SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81129"	"P4391-002 CNFC RETURN TO STANDARD HMAS WARRAMUNGA"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	31-Dec-07	16971.55	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81156"	"Repair and overhaul of F/A-18 LPT Rotor Compressor"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	19-Feb-08	30-May-08	19147.91	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:05 PM	

+="CN81170"	"Conductor Custom Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	01-Feb-08	07-Mar-08	19898.35	=""	="CAMBRIDGE TECHNOLOGIES"	12-May-08 05:06 PM	

+="CN81183"	"DEOP200 Part 2 Lifing Development"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Nov-07	20-Jun-08	18768.75	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:06 PM	

+="CN81185"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	11-Feb-08	18069.01	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 05:06 PM	

+="CN81210"	"TSWT model construction"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:07 PM	

+="CN81219"	"Star Safire test and evaluation"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	23-Nov-07	14-Dec-07	19138.68	=""	="CARTENAV SOLUTIONS INC"	12-May-08 05:08 PM	

+="CN81226"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	23-Jan-08	23-Jan-08	17225.23	=""	="KAZ GROUP PTY LTD"	12-May-08 05:08 PM	

+="CN81233"	"RENEW 70 TONNE CRANE FLEXIBLE HOSES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	20-Jun-08	16964.95	=""	="HYDRAULIC DISTRIBUTORS PTY LTD"	12-May-08 05:08 PM	

+="CN81240"	"part 4 task 102 purchase of jigs and fixtures"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	18-Feb-08	19-May-08	17545.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:09 PM	

+="CN81242"	"This order raised IAW E-mail quote from Jeff Rosem"	="Department of Defence"	12-May-08	="Rubber and elastomers"	24-Jan-08	06-Mar-08	16614.40	=""	="PHOENIX AG (AUSTRALIA) P/L"	12-May-08 05:09 PM	

+="CN81250"	"THIS PURCHASE ORDER IS RAISED TO PAY FOR FREIGHT I 4500613314"	="Department of Defence"	12-May-08	="Containers and storage"	24-Jan-08	24-Jan-08	16480.53	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:09 PM	

+="CN81291"	"STANDING ORDER FOR 2HSB: 2007/08"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	26-Nov-07	30-Jun-08	18883.96	=""	="BIOMERIEUX AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81300"	"F1-11 SIDE SEAL TOOLS DISPOSAL"	="Department of Defence"	12-May-08	="Aircraft equipment"	24-Nov-07	19-Dec-07	18625.88	=""	="TRELLEBORG SEALING SOLUTIONS"	12-May-08 05:11 PM	

+="CN81323"	"Parts Kit, valve"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	28-Jan-08	17591.21	=""	="ADAMS RITE AEROSPACE INC"	12-May-08 05:12 PM	

+="CN81325"	"Heat Exchanger, Air"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	02-Apr-08	18341.24	=""	="LCF SYSTEMS INC"	12-May-08 05:13 PM	

+="CN81330"	"PN 939195-102, Cap, Lower, Wing Rib BL65, RH"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	21-Jan-08	31-Aug-08	18359.88	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:13 PM	

+="CN81376"	"modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	28-Nov-07	29-Feb-08	19572.91	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:15 PM	

+="CN81391"	"C4i Task Closeouts"	="Department of Defence"	12-May-08	="Electrical components"	28-Nov-07	05-Feb-08	16587.21	=""	="C4I PTY LTD"	12-May-08 05:16 PM	

+="CN81426"	"SUBSCRIPTION"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	25-Jan-08	31-Mar-08	17007.91	=""	="JEPPESEN SANDERSON INC"	12-May-08 05:18 PM	

+="CN81442"	"TS4182 SPONSORHOP OF DMO CADET NAVAL ARCHITECT"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	30-Jun-08	18000.00	=""	="AUSTRALIAN MARITIME COLLEGE"	12-May-08 05:19 PM	

+="CN81468"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Jan-08	31-Jan-08	17950.23	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:20 PM	

+="CN81481"	"TEAM BUILDING PROGRAM"	="Department of Defence"	12-May-08	="Human resource development"	24-Jan-08	30-Mar-08	18711.44	=""	="PILCHER PARTNERS PTY LTD"	12-May-08 05:21 PM	

+="CN81491"	"NIC MSD/Navy Data Upload"	="Department of Defence"	12-May-08	="Computer services"	24-Jan-08	22-Feb-08	18500.00	=""	="DIMENSION DATA LEARNING"	12-May-08 05:22 PM	

+="CN81503"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	01-Feb-08	18270.02	=""	="HARRIS TECHNOLOGY PTY LTD"	12-May-08 05:23 PM	

+="CN81511"	"WILLIAMTOWN RADAR MAINTENANCE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	25-Jan-08	28-Jan-08	19444.57	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:24 PM	

+="CN81538"	"Modification Fuel System - WLR"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	21-Apr-08	20-May-08	16599.00	=""	="AUSTRALIAN FUEL CELLS PTY LTD"	12-May-08 05:26 PM	

+="CN81541"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	13-Dec-07	20-Jan-08	17292.00	=""	="BENNETT COMMERCIAL ELECTRONICS"	12-May-08 05:26 PM	

+="CN81542"	"Provide Human Resources Investigating This PO Replaces 4500611384."	="Defence Materiel Organisation"	12-May-08	="Human resources services"	21-Apr-08	30-Jun-88	20000.00	=""	="CGF PHOENIX PTY LIMITED"	12-May-08 05:26 PM	

+="CN81544"	"DATABASE ROLLOUT"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Apr-08	20000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 05:27 PM	

+="CN81549"	"6 X Sharp Digital HD Tuners"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	13-Dec-07	21-Dec-07	18000.00	=""	="BING LEE - SKY GARDEN"	12-May-08 05:27 PM	

+="CN81552"	"Travel for 5th Aviation Brigade"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	21-Apr-08	30-Jun-08	17701.31	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:27 PM	

+="CN81556"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Apr-08	26-Sep-08	17916.41	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:27 PM	

+="CN81560"	"Technobox 100FX"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	18-Apr-08	24-Jun-08	18150.00	=""	="UNITRONIX PTY LTD"	12-May-08 05:28 PM	

+="CN81593"	"Water Purification Tablets"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	19-Apr-08	17-May-08	18607.05	=""	="WISCONSIN PHARMACAL COMPANY LLC"	12-May-08 05:30 PM	

+="CN81605"	"BATTERY PC1200"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	12-Dec-07	31-Dec-07	19602.00	=""	="METCALFE GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81608"	"Proposed modification of ELATS Stations"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	12-Dec-07	31-Jan-08	19777.01	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 05:32 PM	

+="CN81614"	"Printing and Material Costs for the RCS Maintenance Handbook"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	13-Dec-07	28-Feb-08	16065.50	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:32 PM	

+="CN81633"	"100 Acrobat 8 Professional Licences for DMO software pool"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Jan-08	18796.80	=""	="COMMANDER (ACT)"	12-May-08 05:35 PM	

+="CN81635"	"METER HYDROGEN ION TEST - QTY 25-"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Dec-07	17-Dec-07	18150.00	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 05:35 PM	

+="CN81644"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	01-Feb-08	17644.00	=""	="INTERACTIVE CABLING PTY LTD"	12-May-08 05:36 PM	

+="CN81693"	"LAMP MODULE, COVER TACTICAL ET AL"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	08-Dec-07	10-Apr-08	19024.48	=""	="LASER PRODUCTS"	12-May-08 05:43 PM	

+="CN81715"	"Repair and overhaul of F/A-18 HPC Module"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	07-Apr-08	16353.54	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:46 PM	

+="CN81726"	"DPNU Trial Uniforms"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	06-Dec-07	19-Dec-07	19831.66	=""	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 05:47 PM	

+="CN81738"	"FIXED TANK WASHING NOZZLES MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Dec-07	12-Dec-07	18625.20	=""	="SPRAYING SYSTEMS CO PTY LTD"	12-May-08 05:49 PM	

+="CN81770"	"Photocopier Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Office machines and their supplies and accessories"	07-Apr-08	07-Apr-08	17600.00	=""	="Fuji Xerox Aust. Pty Ltd - NSW"	12-May-08 07:34 PM	

+="CN81773"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Marketing and distribution"	20-Mar-08	20-Mar-08	19956.48	=""	="HMA Blaze"	12-May-08 07:34 PM	

+="CN81774"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	27-Feb-08	27-Feb-08	17000.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81788"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Engineering and Research and Technology Based Services"	15-Apr-08	15-Apr-08	17002.35	=""	="Open Mind Research Group Pty Ltd"	12-May-08 07:36 PM	

+="CN81819"	"GST Payment"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Nov-07	31-Dec-07	18838.55	=""	="BOEING AUSTRALIA LTD"	13-May-08 11:01 AM	

+="CN81830"	"CONTRACT CONSULTING REPRESENTATION"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Oct-07	02-Oct-07	16962.85	=""	="MINTER ELLISON"	13-May-08 11:03 AM	

+="CN81854"	"GST PAYT"	="Defence Materiel Organisation"	13-May-08	="Taxation"	03-Nov-07	28-Nov-07	16640.45	=""	="BAE SYSTEMS(AUSTRALIA)"	13-May-08 11:07 AM	

+="CN81865"	"ELECTRONIC & WEAPONS SYSTEM DIVISION DUMMY PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-07	23-Jan-08	18000.00	=""	="SPARKE HELMORE LAWYERS"	13-May-08 11:09 AM	

+="CN81868"	"MARINE DIESEL FOR ARMY FUEL BARGES AB1060 AND AB10 62 IN GOVE 29-SEP-2007"	="Defence Materiel Organisation"	13-May-08	="Fuels"	30-Oct-07	18-Jan-08	16752.00	=""	="B H P MANGANESE GEMCO TRADING AS"	13-May-08 11:10 AM	

+="CN81874"	"ships husbandry singapore work."	="Defence Materiel Organisation"	13-May-08	="Hydraulic systems and components"	01-Nov-07	01-Jan-08	17521.36	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:10 AM	

+="CN81899"	"GST only payment for Forex Transaction in respect of IFT Upgrade"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	28-Nov-07	28-Nov-07	18263.72	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	13-May-08 11:15 AM	

+="CN81907"	"Dec Statement 2007 02-244348"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	31-Dec-07	30-Jun-08	18644.00	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:16 AM	

+="CN81947"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Nov-07	15-Dec-07	17215.00	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	13-May-08 11:23 AM	

+="CN81963"	"REPAIR OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Oct-07	26-Sep-08	19424.90	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:26 AM	

+="CN81983"	"Update tEODor operator manual to include CWA's and accessories."	="Defence Materiel Organisation"	13-May-08	="Printed media"	19-Nov-07	31-Jan-08	16291.22	=""	="XTEK LTD"	13-May-08 11:30 AM	

+="CN81991"	"4531.09 - CONDUCT COMBAT SYSTEM SIMULATOR GROOM"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Nov-07	14-Jan-08	17670.79	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 11:32 AM	

+="CN82034"	"TENDER EVALUATION OF MSA CONTRACT RENEWAL"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Nov-07	30-Nov-07	19218.93	=""	="EVALUA PTY LTD"	13-May-08 11:37 AM	

+="CN82038"	"Spares for use within ROCCS upgrade"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	16-Nov-07	18-Jan-08	19393.00	=""	="C4I PTY LTD"	13-May-08 11:38 AM	

+="CN82045"	"2 x Dell Precision T7400n Desktops"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	09-Apr-08	17-Apr-08	17675.46	=""	="Dell Australia Pty Ltd"	13-May-08 11:38 AM	

+="CN82063"	"Norfolk ATWS Installation"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	31-May-08	20000.00	=""	="Norfolk Computer Consultancy & Repairs"	13-May-08 11:40 AM	

+="CN82070"	"MADE TO MEASURE ATTIRE"	="Defence Materiel Organisation"	13-May-08	="Clothing"	16-Nov-07	30-Nov-07	18924.79	=""	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 11:41 AM	

+="CN82130"	"HMAS HAWK FAMP 2/07 16 JUL - 10 AUG 07"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Apr-08	30-Jun-08	18575.08	=""	="THALES AUSTRALIA"	13-May-08 11:47 AM	

+="CN82135"	"satellite communications equipment (VSAT)"	="Geoscience Australia"	13-May-08	="Tools and General Machinery"	29-Apr-08	30-Jun-08	16170.00	=""	="Australian Satellite Communications Pty Ltd"	13-May-08 11:47 AM	

+="CN82138"	"Repair of aircraft components"	="Defence Materiel Organisation"	13-May-08	="Aircraft landing and braking systems"	04-Jun-07	20-Nov-08	19127.27	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:48 AM	

+="CN82155"	"Nulka ISS Travel"	="Defence Materiel Organisation"	13-May-08	="Launch vehicles and rockets"	16-Jun-06	30-Apr-08	17533.48	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:50 AM	

+="CN82175"	"SIMMAN MEDICAL SIMULATION TRG MANNEQUIN UPGRADE"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	29-Aug-07	28-Dec-07	17006.00	=""	="U-TECH MEDICAL"	13-May-08 11:53 AM	

+="CN82226"	"SURVEY RUNNING RIGGING AS PER TASK 001"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	15-May-08	17726.50	=""	="NOAKES RIGGING PTY LTD"	13-May-08 11:59 AM	

+="CN82233"	"Replacement and work on tyres of B707 Aircraft"	="Defence Materiel Organisation"	13-May-08	="Wheels and wheel trims"	17-Dec-07	30-Jun-08	18303.01	=""	="GOODYEAR AVIATION TYRES"	13-May-08 12:00 PM	

+="CN82234"	"Preservation of external timber work. Young Endeavour"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	30-Apr-08	19580.00	=""	="PATRICK BOLLEN MARINE MANAGEMENT"	13-May-08 12:00 PM	

+="CN82236"	"Upper deck preservation STS YOUNG ENDEAVOUR"	="Defence Materiel Organisation"	13-May-08	="Paints and primers and finishes"	06-Mar-08	05-Apr-08	18656.00	=""	="NOAKES RIGGING PTY LTD"	13-May-08 12:00 PM	

+="CN82243"	"Lease of Vehicle"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	03-Aug-07	30-Jun-08	16571.82	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 12:01 PM	

+="CN82257"	"Repair of UNDEF 72/07-Vellederrick slew motor"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	30-Jul-07	20-Nov-07	16485.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:02 PM	

+="CN82259"	"Stationary"	="Defence Materiel Organisation"	13-May-08	="Paper products"	30-Jul-07	30-Jun-08	19037.87	=""	="CORPORATE EXPRESS"	13-May-08 12:02 PM	

+="CN82264"	"DMO GRADUATE AND CADET ADVERTISING IN UNIMAIL FOR 2009 RECRUITMENT CAMPAIGN"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-Mar-08	30-Jun-08	17710.00	=""	="UNIMAIL PTY LTD"	13-May-08 12:02 PM	

+="CN82273"	"Repair of faulty SEM electronics"	="Defence Materiel Organisation"	13-May-08	="Missile subsystems"	16-Jan-08	13-Feb-08	17367.90	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 12:03 PM	

+="CN82287"	"Use of Exisitng ASP Contract. Installation of Guar Guard rails for brow access"	="Defence Materiel Organisation"	13-May-08	="Building construction and support and maintenance and repair services"	15-Jan-08	31-Jan-08	16735.95	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:04 PM	

+="CN82294"	"FACILITATOR & TRAININGS SVCS FOR 2008 DMO GRADUATE SCHEME"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-Mar-08	30-Jun-08	18690.74	=""	="ROBERT BRENNAN & ASSOCIATES"	13-May-08 12:05 PM	

+="CN82296"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	17500.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:05 PM	

+="CN82302"	"CATERING SERVICES"	="Defence Materiel Organisation"	13-May-08	="Restaurants and catering"	05-Mar-08	05-Mar-08	17600.00	=""	="HYATT CATERING AT THE AUSTRALIAN"	13-May-08 12:05 PM	

+="CN82320"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	07-Mar-08	01-Apr-08	16186.50	=""	="THE PHILLIPS GROUP"	13-May-08 12:07 PM	

+="CN82323"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	16966.95	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:07 PM	

+="CN82328"	"Microsoft Server Training"	="Defence Materiel Organisation"	13-May-08	="Software"	07-Mar-08	21-May-08	16170.00	=""	="IT TRAINING SOLUTIONS"	13-May-08 12:08 PM	

+="CN82366"	"Batteries for SEM"	="Defence Materiel Organisation"	13-May-08	="Batteries and generators and kinetic power transmission"	14-Jan-08	17-Mar-08	19272.00	=""	="BATTERY SPECIALTIES NSW"	13-May-08 12:11 PM	

+="CN82377"	"Asbestos service and analysis."	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Jan-08	30-Jun-08	18150.00	=""	="HEGGIES AUSTRALIA PTY LTD"	13-May-08 12:12 PM	

+="CN82392"	"Cable Assembly"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	06-Mar-08	02-Sep-09	17727.59	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:13 PM	

+="CN82406"	"Supports"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	07-Mar-08	26-Jun-08	16172.18	=""	="MARVIN ENGINEERING CO INC"	13-May-08 12:14 PM	

+="CN82422"	"Conditions of Contract (Scylla Sonar ISS), CAPO No applicable to this deliverable."	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	21-Jan-08	30-Jun-08	16170.00	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:16 PM	

+="CN82445"	"Relay Coil Indication and EMC Supression Module"	="Defence Materiel Organisation"	13-May-08	="Power Generation and Distribution Machinery and Accessories"	29-Feb-08	10-Mar-08	17537.38	=""	="YANOS AEROSPACE INC"	13-May-08 12:18 PM	

+="CN82458"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	28-Feb-08	30-Jun-08	16341.13	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:19 PM	

+="CN82460"	"Computer Software"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	28-Feb-08	31-Mar-08	16500.00	=""	="QUEST SOFTWARE PTY LTD"	13-May-08 12:19 PM	

+="CN82465"	"Duct Assemby Airconditioning"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	17-Jan-08	28-May-08	16565.59	=""	="LCF SYSTEMS INC"	13-May-08 12:20 PM	

+="CN82470"	"Repair and overhaul of F/A-18 Exhaust Frame Assy"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	29-Feb-08	14-Nov-08	16387.42	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:21 PM	

+="CN82471"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVGAS TO THE DEPARTMENT OF DEFENCE DURING FINANCIAL"	="Defence Materiel Organisation"	13-May-08	="Fuels"	16-Jan-08	30-Jun-08	19800.00	=""	="WARWICK FUEL & WASTE"	13-May-08 12:21 PM	

+="CN82472"	"Repair and overhaul of F/A-18 Exhaust Frame Assy"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	29-Feb-08	14-Nov-08	16387.42	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:21 PM	

+="CN82482"	"REVIEW SECURITY OAKEY SIMULATOR"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	29-Feb-08	30-Dec-08	19633.11	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:22 PM	

+="CN82490"	"Slip HMAS Tarakan 5 Mar 08 and Unslip on 7 Mar 08"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	29-Feb-08	30-Jun-08	18757.24	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:23 PM	

+="CN82498"	"Chinook Ballistic Protection Technical Services"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	28-Feb-08	28-Feb-08	18469.00	=""	="COMBAT CLOTHING AUST PTY LTD"	13-May-08 12:23 PM	

+="CN82540"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-May-08	16364.04	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:27 PM	

+="CN82547"	"MODIFICATION TO ANOMALIES C130H AIRCRAFT A97-001"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	08-Jan-08	31-Mar-08	17772.31	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:27 PM	

+="CN82576"	"38 Inch Static Line Extension Green"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	03-Mar-08	23-May-08	17050.00	=""	="PARA-GUARD PTY LTD"	13-May-08 12:30 PM	

+="CN82579"	"support to Project Phoenix - 15 days"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	02-Jan-08	30-May-08	18345.00	=""	="CHEMRING AUSTRALIA PTY LTD"	13-May-08 12:31 PM	

+="CN82588"	"Survey Inspection Quotation for Refurbishment of N"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	04-Mar-08	28-Mar-08	16893.33	=""	="HELLWEG INTERNATIONAL"	13-May-08 12:31 PM	

+="CN82612"	"Software Maintenane Renewal"	="Defence Materiel Organisation"	13-May-08	="Software"	29-Feb-08	28-Feb-09	17556.00	=""	="EXTRA DIMENSION SOLUTIONS"	13-May-08 12:34 PM	

+="CN82615"	"Repair to Damaged Windscreen A27-14 (UCR 02/012)"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Feb-08	31-Mar-08	19531.60	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 12:35 PM	

+="CN82617"	"Repair of  Windscreen of A27-19 (UCR348)"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Feb-08	31-Mar-08	19531.60	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 12:35 PM	

+="CN82619"	"TRAVEL COSTS FOR CONTRACTORS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	29-Feb-08	30-Jun-08	16755.76	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:35 PM	

+="CN82623"	"MEDIA ADVERTISING"	="Defence Materiel Organisation"	13-May-08	="Advertising"	03-Mar-08	03-Mar-08	19271.56	=""	="HMA BLAZE PTY LTD"	13-May-08 12:36 PM	

+="CN82641"	"PORTABLE SAW MILL M8K-27 COMPLETE"	="Defence Materiel Organisation"	13-May-08	="Sawmilling and lumber processing machinery and equipment"	29-Feb-08	02-Apr-08	18839.35	=""	="LUCAS MILL PTY LTD"	13-May-08 12:37 PM	

+="CN82642"	"205t Ocean Nature"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	14-Feb-08	18348.00	=""	="Aquasonic Pty Ltd"	13-May-08 12:37 PM	

+="CN82645"	"Production of NAVCMC DVD - February 2008"	="Defence Materiel Organisation"	13-May-08	="Computer services"	29-Feb-08	31-Mar-08	17380.00	=""	="MWA SYSTEMS PTY LTD"	13-May-08 12:37 PM	

+="CN82688"	"REVIEW OF DETAILED DESIGN PACKAGE"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	14-Mar-08	30-Jun-08	18700.00	=""	="DET NORSKE VERITAS"	13-May-08 12:44 PM	

+="CN82714"	"RECTIFY CCTV CAMERS"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Mar-08	30-Mar-08	17614.38	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:48 PM	

+="CN82738"	"Professional Services - Business Plan for Change Proposal and Staff Transition Plan"	="Defence Materiel Organisation"	13-May-08	="Human resources services"	18-Mar-08	30-Jun-08	17710.00	=""	="DAVID MORGAN WILLIAMS PTY LTD"	13-May-08 12:51 PM	

+="CN82749"	"Adobe Acrobat Windows Licenses"	="Defence Materiel Organisation"	13-May-08	="Software"	18-Mar-08	30-Mar-08	18938.70	=""	="ZALLCOM PTY LTD"	13-May-08 12:52 PM	

+="CN82750"	"Ship Check & report to develop an Installation Des ign Package to install MAC2 & Scan Eagle"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Mar-08	30-May-08	17907.87	=""	="THALES AUSTRALIA"	13-May-08 12:52 PM	

+="CN82761"	"Writing Capability Concepts - 1 day OCD Course on 04.04.2008"	="Defence Materiel Organisation"	13-May-08	="Vocational training"	18-Mar-08	04-Apr-08	18150.00	=""	="CODARRA ADVANCED SYSTEMS PTY LTD"	13-May-08 12:54 PM	

+="CN82775"	"Replace CCTV for engine room HMAS SUCCESS"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Mar-08	30-Jun-08	16746.35	=""	="THALES AUSTRALIA"	13-May-08 12:56 PM	

+="CN82777"	"EMBROIDERED, PERSONALISED NAME BADGES"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Mar-08	15-Jun-08	18576.03	=""	="APPAREL ADDITIONS"	13-May-08 12:56 PM	

+="CN82783"	"PROVISION OF FACILITY/MEALS/ACCOM/ FOR CONFERENCE"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	12-Mar-08	30-Jun-08	17815.01	=""	="RACV RESORT CAPE SCHANCK"	13-May-08 12:57 PM	

+="CN82803"	"RELAY"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	10-Mar-08	01-Nov-08	18408.61	=""	="THALES UK LTD, AEROSPACE DIVISION"	13-May-08 01:00 PM	

+="CN82828"	"Barometric Altimeters"	="Defence Materiel Organisation"	13-May-08	="Aircraft environmental control systems and components"	13-Mar-08	10-Aug-08	18286.80	=""	="CAE AUSTRALIA PTY LTD"	13-May-08 01:03 PM	

+="CN82830"	"REPAIR AND CALIBRATION OF NARDA PROBES"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	13-Mar-08	04-Apr-08	18989.49	=""	="BAE SYSTEMS AUSTRALIA - GBP"	13-May-08 01:04 PM	

+="CN82838"	"Refurbish Qty 4 Ground Power Units"	="Defence Materiel Organisation"	13-May-08	="Power Generation and Distribution Machinery and Accessories"	13-Mar-08	25-Apr-08	19607.50	=""	="T & M AUTO REPAIRS"	13-May-08 01:05 PM	

+="CN82840"	"SCM Model TI120 Class Spindle Moulder"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	14-Mar-08	12-Aug-08	17935.50	=""	="GABBETT MACHINERY PTY LTD"	13-May-08 01:05 PM	

+="CN82875"	"procurement of knudsen 320b side scan sonar"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	13-Mar-08	31-Mar-08	19800.00	=""	="G A GLANVILLE & CO"	13-May-08 01:10 PM	

+="CN82885"	"MADE TO MEASURE SHIRTS FOR RAN MEMBERS"	="Defence Materiel Organisation"	13-May-08	="Clothing"	13-Feb-08	30-Jun-08	19999.99	=""	="CTE PTY LTD"	13-May-08 01:11 PM	

+="CN82886"	"harness"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	13-Feb-08	30-Oct-08	16019.80	=""	="HELICOPTER SUPPORT INC"	13-May-08 01:11 PM	

+="CN82912"	"Provide 1 x Glass polygon, 12 sided assembly, with certification and freight"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	18-Apr-08	30-Jun-08	19934.66	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:32 PM	

+="CN82924"	"DISPOSAL OF BATTERIES"	="Defence Materiel Organisation"	13-May-08	="Batteries and generators and kinetic power transmission"	23-Apr-08	26-Jun-08	17972.81	=""	="THIESS SERVICES"	13-May-08 01:34 PM	

+="CN82943"	"Use of Exisitng ASP Contract  - Overhaul No 2 Main Engine LO Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	23-Apr-08	11-Jul-08	17182.77	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:37 PM	

+="CN82949"	"Commissioning of HMAS Newcastle RO system"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	22-Apr-08	30-Jun-08	16381.20	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	13-May-08 01:38 PM	

+="CN82964"	"Use of Exisitng ASP Contract  - Overhaul Scurbber Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	22-Apr-08	11-Jul-08	16246.23	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:40 PM	

+="CN82973"	"Denro Training Course"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	22-Apr-08	10-Jun-08	17875.36	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 01:42 PM	

+="CN82987"	"Procurement of 7 inch monitors in support of installation on HMAS WALLER"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	15-Apr-08	15-May-08	19481.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 01:44 PM	

+="CN82995"	"TOB STBD &FWD GEN SERV PUMP REPAIRS HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	16-Apr-08	16-May-08	19513.21	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:45 PM	

+="CN82999"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Apr-08	01-May-08	16068.80	=""	="FAVCOTE PTY LTD"	13-May-08 01:45 PM	

+="CN83000"	"Daughter Boards"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	16-Apr-08	09-May-08	16161.55	=""	="AMHERST SYSTEMS INC."	13-May-08 01:45 PM	

+="CN83008"	"ADSCC OSS Training"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	15-Apr-08	30-Jun-08	18397.78	=""	="OPTUS BILLING SERVICES PTY LTD"	13-May-08 01:47 PM	

+="CN83055"	"SLEEVE VANE"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	17-Apr-08	01-Jan-09	16512.60	=""	="ROLLS - ROYCE PLC"	13-May-08 01:53 PM	

+="CN83065"	"Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Apr-08	15-May-08	19372.10	=""	="DAVIDSON MEASUREMENT"	13-May-08 01:55 PM	

+="CN83124"	"F-111 Business Unit contractor support sought to ensure effective HSEMS is gap analysed"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	01-May-08	30-Jun-08	18029.00	=""	="ROSEBANK ENGINEERING"	13-May-08 02:03 PM	

+="CN83126"	"COST RELATED TO CCP020"	="Defence Materiel Organisation"	13-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	02-May-08	17223.80	=""	="THALES AUSTRALIA"	13-May-08 02:03 PM	

+="CN83130"	"Use of Exisitng ASP Contract  - Overhaul No 2 LT Cooling Water Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	16847.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:04 PM	

+="CN83136"	"Use of Exisitng ASP Contract  - Main Engine Inspec"	="Defence Materiel Organisation"	13-May-08	="Tools and General Machinery"	30-Apr-08	11-Jul-08	18938.54	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:05 PM	

+="CN83145"	"JP02087 HAZARD TESTING MATERIAL"	="Defence Materiel Organisation"	13-May-08	="Measuring and observing and testing instruments"	30-Apr-08	16-Jun-08	16580.08	=""	="COUNTER TERRORISM SOLUTIONS ASIA"	13-May-08 02:06 PM	

+="CN83155"	"Use of Exisitng ASP Contract  - Overhaul No 1 Main Engine LO Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	16786.77	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:07 PM	

+="CN83159"	"CABLE ASSEMBLY - RADIO TO DASHBOARD INCLUDING LABO UR & MATERIALS"	="Defence Materiel Organisation"	13-May-08	="Audio and visual presentation and composing equipment"	05-May-08	01-Jun-08	17101.70	=""	="AME SYSTEMS PTY LTD"	13-May-08 02:08 PM	

+="CN83168"	"Installation of 50amp, 3 phase power outlets"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	05-May-08	30-Jun-08	19580.00	=""	="PEARMAN'S ELECTRICAL SERVICES"	13-May-08 02:09 PM	

+="CN83170"	"Driver Training Course"	="Australian Federal Police"	13-May-08	="Vehicle driving schools services"	24-Jan-08	25-Jan-08	17600.00	="05/2005"	="Transport Industries Skills Centre INC"	13-May-08 02:10 PM	

+="CN83185"	"4194 Project Tracking Database Development"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-May-08	30-Jun-08	18344.70	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 02:12 PM	

+="CN83191"	"TACAN 816 Publication update"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	02-May-08	30-May-08	17956.40	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:13 PM	

+="CN83192"	"10 yr Inspection for Electric Boom Lift"	="Defence Materiel Organisation"	13-May-08	="Vehicle servicing equipment"	02-May-08	30-May-08	16962.00	=""	="JLG INDUSTRIES"	13-May-08 02:13 PM	

+="CN83195"	"Radio Fit Project"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	02-May-08	11-Jun-08	19357.81	=""	="CAMBRIDGE TECHNOLOGIES"	13-May-08 02:14 PM	

+="CN83196"	"Driver Training Course"	="Australian Federal Police"	13-May-08	="Vehicle driving schools services"	07-Feb-08	08-Feb-08	17600.00	="05/2005"	="Transport Industries Skills Centre INC"	13-May-08 02:15 PM	

+="CN83225"	"Driver Training Course"	="Australian Federal Police"	13-May-08	="Vehicle driving schools services"	28-Feb-08	29-Feb-08	17600.00	="05/2005"	="Transport Industries Skills Centre INC"	13-May-08 02:20 PM	

+="CN83232"	"TECHNICAL SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	24-Apr-08	30-Apr-08	18872.46	=""	="STANDARD AERO AUSTRALIA"	13-May-08 02:20 PM	

+="CN83237"	"RECTIFY FWD & AFT MAN OVERBOARD DAVITS HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Apr-08	20-Jun-08	17160.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 02:21 PM	

+="CN83250"	"PAYMENT OF LEGAL FEES - REF CN5297177"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	24-Apr-08	30-Jun-08	20000.00	=""	="SLATER & GORDON PTY LTD"	13-May-08 02:23 PM	

+="CN83258"	"berthage for HMAS LEEUWIN for maintenance period 29"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	06-May-08	17441.19	=""	="AIMTEK PTY LTD"	13-May-08 02:24 PM	

+="CN83265"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	23-Apr-08	30-Jun-08	17160.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-May-08 02:25 PM	

+="CN83274"	"Communication Ear Plug"	="Defence Materiel Organisation"	13-May-08	="Flight communications related systems"	23-Apr-08	30-Apr-08	16058.63	=""	="TRANSAERO INC."	13-May-08 02:27 PM	

+="CN83276"	"NDT TECHNOLOGY - ARRAY PROBES"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	23-Apr-08	31-Jul-08	19690.00	=""	="KRAUTKRAMER AUST PTY LTD"	13-May-08 02:27 PM	

+="CN83297"	"Use of Exisitng ASP Contract  - Overhaul No 3 LT Cooling Water Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	16847.99	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:30 PM	

+="CN83298"	"Air Conditioning Accessories"	="Defence Materiel Organisation"	13-May-08	="Heating and ventilation and air circulation"	30-Apr-08	30-Jun-08	18177.78	=""	="SIGMA COACHAIR GROUP"	13-May-08 02:31 PM	

+="CN83310"	"INTERVENTION PROGRAM FOR ALL NASPO STAFF ON PROMOTING A HARASSMENT FREE WORK PLACE"	="Defence Materiel Organisation"	13-May-08	="Management advisory services"	29-Apr-08	30-Jun-08	16500.00	=""	="APS COMMISSION"	13-May-08 02:32 PM	

+="CN83312"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	28-Apr-08	12-May-08	17479.00	=""	="COMPUTERCORP (LOGISTICS)"	13-May-08 02:32 PM	

+="CN83330"	"HARBOUR DUES REQUIRED FOR THE IMPORT OF F-76"	="Defence Materiel Organisation"	13-May-08	="Fuels"	29-Apr-08	30-May-08	18271.99	=""	="CAIRNS PORT AUTHORITY"	13-May-08 02:35 PM	

+="CN83332"	"Front Windscreen Glass and Side Glass"	="Defence Materiel Organisation"	13-May-08	="Product and material transport vehicles"	29-Apr-08	13-Jun-08	16500.62	=""	="VALIR PTY LTD"	13-May-08 02:35 PM	

+="CN83399"	"Consultant services for pilot study"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	31-Mar-08	09-May-08	17600.00	=""	="ALPHA OMEGA CONSULTING GROUP P/L"	13-May-08 02:46 PM	

+="CN83401"	"    2 x Secure Cores TGA Symonston to Verizon Bruce via Canberra Avenue    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	14-May-08	17050.00	=""	="Department of Finance and Administration"	13-May-08 02:47 PM	

+="CN83410"	"Use of Exisitng ASP Contract - No 2 Main Salt Water Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	02-Apr-08	26-Jun-08	17124.36	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:48 PM	

+="CN83411"	"Use of Exisitng ASP Contract - No 1 Main Salt Water Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	02-Apr-08	29-Apr-08	18128.77	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:48 PM	

+="CN83413"	"Powder Spray booth"	="Defence Materiel Organisation"	13-May-08	="Building and Construction Machinery and Accessories"	02-Apr-08	30-May-08	17600.00	=""	="AUSCO SYSTEMS PTY LTD"	13-May-08 02:48 PM	

+="CN83420"	"    2 x Secure Cores TGA Symonston to Verizon Bruce via Woden    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	14-May-08	17050.00	=""	="Department of Finance and Administration"	13-May-08 02:50 PM	

+="CN51244"	"repair of Mode Select Panel"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	18416.20	=""	="moog australia"	13-May-08 02:58 PM	

+="CN83462"	"Procurement of:  TEMPERATURE SENSOR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Mar-08	02-Jul-08	17599.26	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:29 PM	

+="CN83498"	"Procurement of:  MANIFOLD,FLUID COOLER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	11-Jul-08	18974.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:33 PM	

+="CN83513"	"Procurement of:  ACTUATOR,ELECTRO-MECHANICAL,ROTARY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	20-Aug-08	19764.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:35 PM	

+="CN83548"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	14-Jul-08	18840.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:40 PM	

+="CN83554"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	13-May-08	17400.00	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:40 PM	

+="CN83560"	"Procurement of:  CABLE,RADIO FREQUENCY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	23-Nov-08	16935.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	13-May-08 07:41 PM	

+="CN83571"	"Procurement of:  TRAINING SET,INSTRUCTIONAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Mar-08	13-May-08	18000.00	=""	="UPTON AUSTRALIA Pty Ltd"	13-May-08 07:42 PM	

+="CN83579"	"Procurement of:  TRUCK,LIFT,HAND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	13-May-08	19000.00	=""	="CROWN EQUIPMENT Pty Ltd"	13-May-08 07:43 PM	

+="CN83583"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	01-Oct-08	17073.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	13-May-08 07:44 PM	

+="CN83586"	"Procurement of:  VALVE,CHECK"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	11-Jun-08	19920.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:44 PM	

+="CN83589"	"Procurement of:  EXPANDER CARD,COMPUTER,AUTOMATIC DATA"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	07-Jun-08	16020.00	=""	="A AND D INTERNATIONAL Pty Ltd"	13-May-08 07:45 PM	

+="CN83622"	"Procurement of:  TRUCK,LIFT,HAND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	13-May-08	17700.00	=""	="CROWN EQUIPMENT Pty Ltd"	13-May-08 07:49 PM	

+="CN83625"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	15-May-08	17600.00	=""	="M&D MARINE PARTS SERVICE Pty *"	13-May-08 07:49 PM	

+="CN83629"	"Procurement of:  PARTS KIT,SEAL REPLACEMENT,MECHANICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Apr-08	05-Jun-08	19950.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:50 PM	

+="CN83635"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	13-Jan-09	19998.05	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:50 PM	

+="CN83637"	"Procurement of:  GLASS,PLATE;  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	27-May-08	19182.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	13-May-08 07:51 PM	

+="CN83642"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	30-Jun-08	17311.70	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:51 PM	

+="CN83645"	"Procurement of:  PUMP UNIT,RECIPROCATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	31-Jul-08	18813.11	=""	="PALL AUSTRALIA"	13-May-08 07:52 PM	

+="CN83648"	"Procurement of:  REELING MACHINE,CABLE,HAND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	16-Aug-08	17213.40	=""	="THALES AUSTRALIA"	13-May-08 07:52 PM	

+="CN83655"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	18-May-08	18700.00	=""	="MACE ENGINEERING Ltd"	13-May-08 07:53 PM	

+="CN83673"	"Procurement of:  BALLAST,LAMP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	07-Jul-08	18908.00	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:55 PM	

+="CN83674"	"Procurement of:  DRYING TUMBLER,LAUNDRY,COMMERCIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	23-May-08	17300.00	=""	="FALCON HERMETIC & ELECTRICAL Pty"	13-May-08 07:55 PM	

+="CN83680"	"Procurement of:  DETECTOR,LIGHT INTENSITY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	19-Nov-08	17655.86	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:56 PM	

+="CN83689"	"Procurement of:  FILTER-DRIER,REFRIGERANT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	31-Jul-08	19656.00	=""	="NOSKE-KAESER NZ Ltd"	13-May-08 07:57 PM	

+="CN83693"	"Procurement of:  SWITCH,FOOT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	10-Feb-09	18426.72	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:58 PM	

+="CN83695"	"Procurement of:  FILTER,INDICATOR LIGHT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	30-May-08	17800.00	=""	="VERSALUX LIGHTING SYSTEMS"	13-May-08 07:58 PM	

+="CN83696"	"Procurement of:  VALVE NON-RETURN"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	19-Aug-08	16970.60	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:59 PM	

+="CN83697"	"Procurement of:  RELAY,ELECTROMAGNETIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	21-Jul-08	19455.20	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:59 PM	

+="CN83698"	"Procurement of:  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	01-Aug-08	17500.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 07:59 PM	

+="CN83723"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	14-Jul-08	17230.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	13-May-08 08:02 PM	

+="CN83731"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	13-Jun-08	16855.84	=""	="BAKER & PROVAN Pty Ltd"	13-May-08 08:03 PM	

+="CN83748"	"refining recovery charges"	="Royal Australian Mint"	14-May-08	="Refining metal services"	08-Apr-08	08-Apr-08	17844.29	=""	="AGR MATTHEY"	14-May-08 09:47 AM	

+="CN83751"	"IT equipment leasing"	="Royal Australian Mint"	14-May-08	="Components for information technology or broadcasting or telecommunications"	08-Apr-08	08-Apr-08	18369.19	=""	="EQUIGROUP PTY LTD"	14-May-08 10:09 AM	

+="CN83762"	"Catering for the 8th Transport Colloquium Dinner at National Museum Wednesday 18 June 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	23-Apr-08	30-Jun-08	16449.99	=""	="PHC Operations P/L"	14-May-08 10:19 AM	

+="CN83771"	"Consultancy for special subject matter"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	12-May-08	30-Jun-08	17600.00	=""	="ANU ENTERPRISE PTY LTD"	14-May-08 10:21 AM	

+="CN83767-A2"	" Provision of Cleaning Services at the Dee Why premises of CRS Australia. "	="CRS Australia"	14-May-08	="General building and office cleaning and maintenance services"	07-May-07	06-May-10	19675.89	=""	="Pharo Cleaning Services Pty Ltd"	14-May-08 10:21 AM	

+="CN83789"	"Provision of Project Mangement Training Services Contract ( DPS07049  )"	="Department of Parliamentary Services"	14-May-08	="Education and Training Services"	08-May-08	06-Jun-08	16500.00	=""	="Project Minds Pty Limited"	14-May-08 10:41 AM	

+="CN83808"	" computer software licence "	="Royal Australian Mint"	14-May-08	="Software"	16-Apr-08	16-Apr-08	18082.02	=""	="ZALLCOM PTY LIMITED"	14-May-08 11:34 AM	

+="CN83813"	"mig wire 1.2mm aluminium"	="Department of Defence"	14-May-08	="Miscellaneous hardware"	14-May-08	14-Jun-08	19723.00	=""	="SOUTHERN CROSS INDUSTRIAL"	14-May-08 12:04 PM	

+="CN83824"	"Project Management Services"	="Centrelink"	14-May-08	="Professional engineering services"	18-Apr-08	30-Jun-08	18964.00	=""	="James Millar Architects"	14-May-08 12:27 PM	

+="CN83832"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	02-Apr-08	08-Jun-08	16885.00	=""	="Diverse Data Communications (ACT)"	14-May-08 12:29 PM	

+="CN83837"	"Secure Delivery Services"	="Centrelink"	14-May-08	="Transport operations"	07-Mar-08	30-Jun-08	20000.00	=""	="Security Specialists Northern Territory"	14-May-08 12:30 PM	

+="CN83848"	"Worksite Assessments"	="Centrelink"	14-May-08	="Human resources services"	11-Apr-08	30-Jun-08	16500.00	=""	="MLCOA"	14-May-08 12:32 PM	

+="CN83859"	"Early Intervention and Rehab Services"	="Centrelink"	14-May-08	="Human resources services"	07-Feb-08	30-Jun-08	18700.00	=""	="RTW Management"	14-May-08 12:34 PM	

+="CN83871"	"Schematic design and construction documentation"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	28-Jun-08	18286.13	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 12:35 PM	

+="CN83873"	"Seminars"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	12-Jul-07	30-Jun-08	16134.99	=""	="Ainslie Function Centre"	14-May-08 12:36 PM	

+="CN83880"	"Computer Services"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	30-Jun-08	17600.00	=""	="Microsoft Enterprise Services"	14-May-08 12:37 PM	

+="CN83900"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	15-May-08	17998.20	=""	="DESA Australia Pty Ltd"	14-May-08 12:40 PM	

+="CN83914"	"Medical Services"	="Centrelink"	14-May-08	="Healthcare Services"	09-Apr-08	30-Jun-09	16500.00	=""	="Health for Industry"	14-May-08 12:43 PM	

+="CN83923"	"Hotel lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	04-Apr-08	30-Jun-08	19250.00	=""	="Mantra on Little Bourke"	14-May-08 12:45 PM	

+="CN83924"	"Hotel lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	04-Apr-08	30-Jun-08	19250.00	=""	="Mantra on Little Bourke"	14-May-08 12:45 PM	

+="CN83929"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	17-Apr-08	30-Jun-08	16810.00	=""	="SAI Global"	14-May-08 12:46 PM	

+="CN83933"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	16-Apr-08	26-May-08	19000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:47 PM	

+="CN83949"	"Signage, Coffs Harbour, NSW"	="Centrelink"	14-May-08	="Signage and accessories"	04-Apr-08	30-Jun-08	17723.08	=""	="Signworld Sunshine Coast"	14-May-08 12:49 PM	

+="CN83951"	"Audio/Visual Equipment and Supplies"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Apr-08	30-Jun-08	18150.50	=""	="AV Central"	14-May-08 12:50 PM	

+="CN83975"	"Supply and lay corporate carpet tiles, Melton, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Apr-08	30-Jun-08	19692.04	=""	="Interface Flor"	14-May-08 12:53 PM	

+="CN83976"	"Office furniture, Werribee, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	08-May-08	30-Jun-08	18789.91	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:53 PM	

+="CN83992"	"Staff chairs and tables, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	17319.50	=""	="Unifurn Commercial Furniture"	14-May-08 12:56 PM	

+="CN83999"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	28-Feb-11	18550.48	=""	="Infront Systems Pty Ltd"	14-May-08 12:57 PM	

+="CN84013"	"Signage, Palm Beach, QLD"	="Centrelink"	14-May-08	="Signage and accessories"	29-Apr-08	01-Jun-08	16578.11	=""	="Signworld Sunshine Coast"	14-May-08 12:59 PM	

+="CN84017"	"Clerical chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	09-Jun-08	17787.00	=""	="Gregory Commercial Furniture Pty Ltd"	14-May-08 01:00 PM	

+="CN84018"	"Rehabilitation services"	="Centrelink"	14-May-08	="Healthcare Services"	30-Jan-08	30-Jun-08	19886.02	=""	="Reable Pty Ltd"	14-May-08 01:00 PM	

+="CN84027"	"Office fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-07	30-Jun-07	19312.70	=""	="CGA Bryson Interiors Pty Ltd"	14-May-08 01:02 PM	

+="CN84046"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	30-Jun-08	17831.00	=""	="Fuse Furniture"	14-May-08 01:05 PM	

+="CN84057"	"Signage and Window Treatment"	="Centrelink"	14-May-08	="Signage and accessories"	21-Apr-08	21-Apr-08	17083.00	=""	="Signrite"	14-May-08 01:07 PM	

+="CN84114"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	18781.13	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:04 PM	

+="CN84134"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	15-Aug-07	28-Feb-08	16315.70	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:40 PM	

+="CN84135"	"Equipment Purchase"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	15-Aug-07	14-Sep-07	16027.47	=""	="Dimension Data Australia Pty Ltd"	14-May-08 03:40 PM	

+="CN84138"	"ERN Site Survey"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	21-Aug-07	18-Sep-07	17028.00	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 03:41 PM	

+="CN84194"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	10-Sep-07	30-Sep-07	16474.70	=""	="Mallesons Stephen Jaques"	14-May-08 04:58 PM	

+="CN84197"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	12-Sep-07	26-Sep-07	18955.20	=""	="Sealeck Pty Ltd"	14-May-08 04:58 PM	

+="CN84210"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	17-Sep-07	17-Sep-07	17270.00	=""	="Leda-Vannaclip Pty Ltd"	14-May-08 05:00 PM	

+="CN84242"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	18-Sep-07	28-Sep-07	17057.00	=""	="Australian Government Solicitor"	14-May-08 05:06 PM	

+="CN84249"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	29-Aug-07	26-Sep-07	16016.00	=""	="GBC AUSTRALIA PTY LTD"	14-May-08 05:07 PM	

+="CN84256"	"Equipment Maintanence"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	10-Sep-07	01-Feb-08	16440.00	=""	="Kodak (Australasia) Pty Ltd"	14-May-08 05:08 PM	

+="CN84261"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	06-Sep-07	04-Oct-07	16896.00	=""	="KAZ Group Pty Ltd"	14-May-08 05:09 PM	

+="CN84270"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	08-Oct-07	19557.12	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 05:10 PM	

+="CN84273"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	19953.45	=""	="MILLHOUSE ENTERPRISE PTY LTD"	14-May-08 05:11 PM	

+="CN84275"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	20-Sep-07	18-Oct-07	17248.00	=""	="Fitzgerald Technologies"	14-May-08 05:11 PM	

+="CN84276"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	24-Sep-07	22-Oct-07	17061.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:11 PM	

+="CN84279"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	25-Sep-07	23-Oct-07	19800.00	=""	="KAZ Group Pty Ltd"	14-May-08 05:11 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val20000to30000.xls
@@ -1,1 +1,825 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN78009"	"SUPPLY & INSTALLATION OF TANK,  PUMP AND SLAB FOR RE-USE OF AFFF WATER."	="Department of Defence"	12-May-08	="Human resources services"	14-Dec-07	14-Dec-07	23705.00	=""	="ADTECH ENVIRONMENTAL PTY LTD"	12-May-08 09:32 AM	

+="CN78011"	"240 DAY SERVICE METS40 & TECHNICIAN TRAINING. STANDING OFFER C011-HQ05"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	14-Dec-07	31-Jan-08	24120.88	=""	="CAREFLIGHT QUEENSLAND"	12-May-08 09:32 AM	

+="CN78013"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	14-Dec-07	27055.60	=""	="QUALITY MANAGEMENT SOLUTIONS"	12-May-08 09:33 AM	

+="CN78015"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Dec-07	02-May-08	27500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 09:33 AM	

+="CN78017"	"Inspection and preparation of Camp Earmark Loan St"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	14-Dec-07	18-Mar-08	21503.31	=""	="TENIX TOLL DEFENCE LOGISTICS"	12-May-08 09:34 AM	

+="CN78018"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	14-Dec-07	22000.00	=""	="STRATEGIC DATA MANAGEMENT PTY LTD"	12-May-08 09:34 AM	

+="CN78024"	"APPLE MA409FE/A MAC PRO XSERVE / XSERVE RAID"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	26139.30	=""	="AV CENTRAL"	12-May-08 09:35 AM	

+="CN78028"	"Legal Advice"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Dec-07	30-Jun-08	27500.00	=""	="DLA PHILLIPS FOX"	12-May-08 09:36 AM	

+="CN78031"	"DESIGN CERTIFICATION AACAP 08 KALUMBURU"	="Department of Defence"	12-May-08	="Management support services"	14-Dec-07	30-Jun-08	24244.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 09:36 AM	

+="CN78038"	"DEMAND NO. GMAN-79LG7T"	="Department of Defence"	12-May-08	="Electrical components"	17-Dec-07	21-Dec-07	21993.42	=""	="JOHN R TURK"	12-May-08 09:38 AM	

+="CN78044"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	21142.60	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 09:39 AM	

+="CN78046"	"Manufactured equipment for Antennas"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Dec-07	31-Jan-08	25058.98	=""	="BROENS INDUSTRIES PTY LTD"	12-May-08 09:39 AM	

+="CN78056"	"Power Meter and Sensor"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Dec-07	21-Dec-07	20230.57	=""	="TRIO SMARTCAL PTY LTD"	12-May-08 09:41 AM	

+="CN78061"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	01-Mar-08	24337.50	=""	="SAVILLE & HOLDSWORTH AUSTRALIA"	12-May-08 09:42 AM	

+="CN78063"	"Electrical parts"	="Department of Defence"	12-May-08	="Electrical components"	19-Dec-07	07-Jan-08	22460.09	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 09:43 AM	

+="CN78066"	"Training course - March 2008"	="Department of Defence"	12-May-08	="Medical training and education supplies"	19-Dec-07	20-Mar-08	22000.00	=""	="SIMULINC"	12-May-08 09:43 AM	

+="CN78067"	"Cellphone and other technical equipment"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	11-Jan-08	22045.75	=""	="ASI SOLUTIONS PTY LTD"	12-May-08 09:44 AM	

+="CN78077"	"Emulex adaptor cards"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	15-Jan-08	22855.97	=""	="DATAFLEX PTY LTD"	12-May-08 09:46 AM	

+="CN78081"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	19-Dec-07	20500.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 09:47 AM	

+="CN78087"	"iTRAQ Reagents Mulitpex Kit"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	19-Dec-07	29-Feb-08	22583.00	=""	="APPLIED BIOSYSTEMS"	12-May-08 09:48 AM	

+="CN78106"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	19-Dec-07	23739.49	=""	="DR MICHAEL COX"	12-May-08 09:52 AM	

+="CN78116"	"FURNITURE FOR 77SQN"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	18-Dec-07	14-Feb-08	20337.90	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	12-May-08 09:53 AM	

+="CN78123"	"DFR'S 131901 TEXT CAMPAIGNS REQUIRE BAND LICENSING FOR TEXT VALIDATIONS OF RESPONDENTS AT COST."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	22068.75	=""	="ADIQ PTY LTD"	12-May-08 09:55 AM	

+="CN78139"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	20435.13	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 09:58 AM	

+="CN78140"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office supplies"	18-Dec-07	30-Jun-08	21582.55	=""	="GRADUATE CAREERS COUNCIL AUST"	12-May-08 09:58 AM	

+="CN78143"	"supply of groceries oakey"	="Department of Defence"	12-May-08	="Processed and prepared meats"	18-Dec-07	30-Jun-08	24200.00	=""	="SPOTLESS SERVICES LTD"	12-May-08 09:59 AM	

+="CN78155"	"Repair/replacement of GC-AED gas draw + consumable"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	18-Dec-07	14-Jan-08	24750.00	=""	="BST INTERNATIONAL PTY LTD"	12-May-08 10:01 AM	

+="CN78159"	"Poin of contact CSG MSS RAAF Laverton Deployable Accomodation Test and Evaluation"	="Department of Defence"	12-May-08	="Fabricated structural assemblies"	18-Dec-07	31-Mar-08	27185.40	=""	="IB SUPPLIES PTY LTD"	12-May-08 10:01 AM	

+="CN78167"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	18-Dec-07	21822.03	=""	="WEST COAST HI FI ROCKINGHAM"	12-May-08 10:03 AM	

+="CN78187-A1"	"Provisions for Business Analyst Services"	="Department of Immigration and Citizenship"	12-May-08	="Business intelligence consulting services"	19-Nov-07	30-Apr-08	26000.00	=""	="RM International Pty Ltd"	12-May-08 11:31 AM	

+="CN78242"	"RANDWICK DISPOSAL & RATIONALISATION PROJECT-INTERI COMPLETE PREMILLINARY CIVIL WORKS ON STAGE 1B"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Dec-07	30-Jun-08	26276.80	=""	="P WARD CIVIL ENGINEERING"	12-May-08 01:09 PM	

+="CN78256"	"MOTOROLA CPCI PERIPHERAL SLOT SBC 500MHZ"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	12-Dec-07	21-Dec-07	23672.42	=""	="BRAETEC PTY LTD"	12-May-08 01:11 PM	

+="CN78258"	"LOCKERS FOR RAAF TOWNSVILLE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	12-Dec-07	30-Jun-08	25245.00	=""	="OFFICEMAX AUSTRALIA LTD"	12-May-08 01:11 PM	

+="CN78264"	"supply of post mix products"	="Department of Defence"	12-May-08	="Non alcoholic beverages"	13-Dec-07	30-Jun-08	20365.68	=""	="COCA-COLA PTY LTD"	12-May-08 01:11 PM	

+="CN78265-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	02-Nov-07	23078.00	=""	="MCARTHUR MANAGEMENT SERVICES PTY LTD"	12-May-08 01:11 PM	

+="CN78274"	"Flex o Locks Red"	="Department of Defence"	12-May-08	="Locks and security hardware and accessories"	05-Dec-07	20-Dec-07	24464.00	=""	="LOCKSMITHS SUPPLY CO PTY LTD"	12-May-08 01:13 PM	

+="CN78300"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	24-Dec-07	22396.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 01:17 PM	

+="CN78309"	"provision of contractors"	="Department of Defence"	12-May-08	="Professional engineering services"	05-Dec-07	30-Jun-08	27500.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-May-08 01:18 PM	

+="CN78317"	"8-bay shelves, sgl std shelves, roll-out filing frames, delivery & installation"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	05-Dec-07	31-Jan-08	22140.80	=""	="COMPLETE OFFICE SUPPLIES"	12-May-08 01:20 PM	

+="CN78323"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	04-Dec-07	21059.83	=""	="LNB COMPUTING CONSULTANCY PTY LTD"	12-May-08 01:21 PM	

+="CN78331"	"FRUIT & VEGS"	="Department of Defence"	12-May-08	="Vegetables"	04-Dec-07	30-Jun-08	30000.00	=""	="TOM & FRANKS"	12-May-08 01:22 PM	

+="CN78351"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	02-Jun-08	22000.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 01:25 PM	

+="CN78356"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	29-Apr-08	28952.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	12-May-08 01:26 PM	

+="CN78361"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Dec-07	31-Oct-09	29112.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:27 PM	

+="CN78377"	"CONFERENCE COSTS"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	07-Dec-07	07-Dec-07	25289.97	=""	="HYATT HOTEL CANBERRA"	12-May-08 01:30 PM	

+="CN78379"	"Matlab software"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	11-Dec-07	25806.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	12-May-08 01:30 PM	

+="CN78385-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	01-Aug-07	16-Oct-07	27049.00	=""	="WILLIS, SUSAN JANE"	12-May-08 01:31 PM	

+="CN78393-A1"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	19-Oct-07	24980.00	=""	="BARTELS, LORAND ALEXANDER"	12-May-08 01:32 PM	

+="CN78395"	"DSN & DRN SECURITY WORKS ENOGGERA"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Dec-07	30-Jun-08	26796.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:32 PM	

+="CN78400"	"MEMBERSHIP FEES"	="Department of Defence"	12-May-08	="Organisations and Clubs"	07-Dec-07	20-Nov-08	26581.50	=""	="NCOIC"	12-May-08 01:33 PM	

+="CN78401"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	30-Jul-08	20800.00	=""	="MINTER ELLISON"	12-May-08 01:33 PM	

+="CN78404"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	01-Jul-08	24288.00	=""	="MINTER ELLISON"	12-May-08 01:34 PM	

+="CN78413"	"ACCOMMODATION COSTS"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	26980.00	=""	="CROWNE PLAZA CANBERRA & NATIONAL"	12-May-08 01:36 PM	

+="CN78418"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	15-Jan-08	22935.00	=""	="SERENA SOFTWARE PTY LTD"	12-May-08 01:37 PM	

+="CN78420"	"NTC TIDAL TABLES"	="Department of Defence"	12-May-08	="Information services"	07-Dec-07	14-Dec-07	27500.00	=""	="BUREAU OF METEOROLOGY"	12-May-08 01:37 PM	

+="CN78425"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	10-Dec-07	31-Mar-08	20857.60	=""	="HOME WILKINSON LOWRY"	12-May-08 01:38 PM	

+="CN78427"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	10-Dec-07	31-Mar-08	26679.05	=""	="HOME WILKINSON LOWRY"	12-May-08 01:38 PM	

+="CN78439"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	24912.55	=""	="SECRETARIAT AUSTRALIA PTY LTD"	12-May-08 01:40 PM	

+="CN78443"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	21-Dec-07	28137.87	=""	="APPLE COMPUTER AUST PTY LTD"	12-May-08 01:41 PM	

+="CN78466"	"HIRE OF VEHICLES X 3 IS CONTINUATION OF CURRENT AR"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Dec-07	01-Jul-08	24156.00	=""	="THRIFTY CAR RENTAL"	12-May-08 01:44 PM	

+="CN78470"	"Contract Continuation of Documentation of underwater Acoustic Measuring Apparatus"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	30-Jun-08	26400.00	=""	="APPLIED ELECTRONIC DESIGN PTY"	12-May-08 01:45 PM	

+="CN78474"	"FURNITURE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	07-Dec-07	31-Jan-08	25520.00	=""	="FURNITURE NEW VOGUE AUSTRALIA"	12-May-08 01:45 PM	

+="CN78485"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Jun-08	20350.00	=""	="MINTER ELLISON"	12-May-08 01:47 PM	

+="CN78487"	"Office supplies"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	07-Dec-07	30-Dec-07	21471.45	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 01:47 PM	

+="CN78489"	"Stepper/contoller/powersupply/rackmounting kit"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	07-Dec-07	18-Jan-08	21499.50	=""	="NATIONAL INSTRUMENTS"	12-May-08 01:48 PM	

+="CN78499"	"ROPES REQ'D BY GYM TO REPLACE OLD ONES"	="Department of Defence"	12-May-08	="Sports equipment and accessories"	20-Dec-07	28-Feb-08	28275.50	=""	="BULLIVANTS"	12-May-08 01:49 PM	

+="CN78508"	"SHIP CRUISE"	="Department of Defence"	12-May-08	="Recreational watercraft"	20-Dec-07	15-Jan-08	21780.00	=""	="WINDEWARD BOUND TRUST"	12-May-08 01:50 PM	

+="CN78510"	"Software and accessories"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jan-08	24233.00	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 01:50 PM	

+="CN78517"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	21350.00	=""	="MINTER ELLISON"	12-May-08 01:51 PM	

+="CN78525"	"AIR CHTR - FUEL REDPLOY OF BLACKHAWKS PNG ASSITS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	24000.00	=""	="HEAVYLIFT CARGO AIRLINES"	12-May-08 01:53 PM	

+="CN78546"	"POC: Heather Stevens 02 6127 7309 Quotation: 7004688"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	24-Jan-08	28369.00	=""	="IBM AUSTRALIA LTD"	12-May-08 01:57 PM	

+="CN78552"	"INSTALLATION OF RAINWATER TANKS BULIMBA"	="Department of Defence"	12-May-08	="Water resources development and oversight"	20-Dec-07	30-Jun-08	27182.10	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:58 PM	

+="CN78564"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	28-Feb-08	24200.00	=""	="MERCER (AUSTRALIA) PTY LTD"	12-May-08 02:01 PM	

+="CN78587"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	22084.37	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:04 PM	

+="CN78593"	"25 WASHING MACHINES, 25 DRYERS"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	20-Dec-07	31-Dec-07	22430.10	=""	="THE GOOD GUYS"	12-May-08 02:05 PM	

+="CN78595"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	23870.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78605"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	27934.50	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78622"	"SESSIONALIST PODIATRIST AT HEALTH CENTRE CERBERUS"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	04-Jan-08	30-Jul-08	24545.45	=""	="MR ARTUR MALISZEWSKI"	12-May-08 02:10 PM	

+="CN78624"	"Contract: File 2008-1035609 refers"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	30-Jun-08	22645.70	=""	="FINLAY RESEARCH PTY LTD"	12-May-08 02:10 PM	

+="CN78632"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	12-May-08	="Motor vehicles"	10-Apr-08	30-Apr-08	27235.90	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:11 PM	

+="CN78633"	"Flying Flights 01-08 Oct 07 - Ex Kujarra 3"	="Department of Defence"	12-May-08	="Aircraft"	11-Oct-07	30-Jun-08	20860.82	=""	="PEL-AIR AVIATION"	12-May-08 02:11 PM	

+="CN78638"	"Training"	="Department of Defence"	12-May-08	="Electronic reference material"	10-Apr-08	09-Jun-08	20778.12	=""	="CRYSTAL ECHO PTY LTD"	12-May-08 02:12 PM	

+="CN78640"	"HP PROLIANT DL 580 G5 SERVER &  INSTALLATION"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	04-Jan-08	21-Jan-08	28720.00	=""	="ORBNET PTY LTD"	12-May-08 02:12 PM	

+="CN78641"	"S5261, WR's Rockdale - 300074177, Dee Why - 300074 300074179, Banksmeadow - 300074180. Upgrade"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	24101.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:12 PM	

+="CN78647"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	20900.00	=""	="AUSTRALIAN WAR MEMORIAL"	12-May-08 02:12 PM	

+="CN78665"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Oct-07	31-Oct-07	21877.29	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:14 PM	

+="CN78666"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	03-Jan-08	29700.00	=""	="PROGRAM IT PTY LTD"	12-May-08 02:14 PM	

+="CN78667"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	25-Jun-08	22000.00	=""	="SCHOOL OF ELECTRICAL & INFORMATION"	12-May-08 02:14 PM	

+="CN78677"	"COURSE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jan-08	29-Feb-08	26829.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 02:15 PM	

+="CN78689"	"******* URGENT CONTRACT ******** COMMUNICATION EQUIPMENT"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	18-Apr-08	28865.10	=""	="BEARCOM WIRELESS WORLDWIDE"	12-May-08 02:16 PM	

+="CN78700"	"Mapping of CUTA Environmental & Heritage Managemen Plans"	="Department of Defence"	12-May-08	="Environmental management"	14-Apr-08	30-Jun-08	27637.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:17 PM	

+="CN78701"	"FREIGHT SERVICES AATTI 8"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	08-Dec-07	17-Dec-07	27865.57	=""	="DHLA INT TRANSPORTATION CO WLL"	12-May-08 02:17 PM	

+="CN78716"	"goods"	="Department of Defence"	12-May-08	="Dairy products and eggs"	20-Jul-07	18-Dec-07	26287.84	=""	="PDL TOLL"	12-May-08 02:18 PM	

+="CN78718"	"StratixI Leads - Braemec"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	12-May-08	24882.00	=""	="BRAEMAC (SA) PTY LTD"	12-May-08 02:18 PM	

+="CN78728"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	04-Feb-08	23201.86	=""	="COMMANDER (ACT)"	12-May-08 02:19 PM	

+="CN78729-A1"	"Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	27-Aug-07	23-Nov-07	28111.00	=""	="VEROSSITY PTY LTD"	12-May-08 02:19 PM	

+="CN78733"	"fees"	="Department of Defence"	12-May-08	="Aircraft"	25-Oct-07	30-Nov-07	27000.00	=""	="HELI WEST"	12-May-08 02:19 PM	

+="CN78737"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	12-May-08	29040.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	12-May-08 02:19 PM	

+="CN78746"	"Laptops for SV 01-08 MG"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	26512.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:20 PM	

+="CN78753"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Apr-08	12-May-08	22321.43	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 02:20 PM	

+="CN78782"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	29960.70	=""	="CS INFORMATION SERVICES PTY LTD"	12-May-08 02:22 PM	

+="CN78784"	"SWITCHES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	18-Apr-08	24152.36	=""	="CERULEAN SOLUTIONS LTD"	12-May-08 02:22 PM	

+="CN78787"	"MATLAB software licence"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	18-Apr-08	23749.00	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78793"	"MAYTAG COMMERCIAL TOP LOAD WASHER QTY 16"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	14-Apr-08	21-Apr-08	24950.85	=""	="RICHARD JAY LAUNDRY EQUIPMENT PTY L"	12-May-08 02:22 PM	

+="CN78797"	"HARDWARE"	="Department of Defence"	12-May-08	="Hardware"	21-Dec-07	09-Jan-08	21966.09	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:23 PM	

+="CN78800"	"Hallam cabinets"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	04-Jan-08	26894.56	=""	="A J F ELECTRICAL DISTRIBUTORS"	12-May-08 02:23 PM	

+="CN78804"	"FEE FOR SERVICE"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	08-Nov-07	13-Dec-07	24429.00	=""	="PETER G VICKERS"	12-May-08 02:23 PM	

+="CN78805"	"SECURITY-KEYWATCH"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	09-May-08	25383.60	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	12-May-08 02:23 PM	

+="CN78818"	"RAAF BASE PEARCE REDEVELOPMENT STAGE 1. INDEPENDENT SCHEDULE REVIEW - RAAF BASE PEARCE RED"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	21-Dec-07	30-Jun-08	29312.58	=""	="TRACEY BRUNSTROM & HAMMOND PTY LTD"	12-May-08 02:24 PM	

+="CN78844"	"GYM EQUIPMENT"	="Department of Defence"	12-May-08	="Gymnastics and boxing equipment"	14-Apr-08	30-Jun-08	27060.00	=""	="THE FITNESS GENERATION PTY LTD"	12-May-08 02:25 PM	

+="CN78850"	"IT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	24084.13	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:26 PM	

+="CN78853"	"manufacture complete sets of masters la parts"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	24-Apr-08	21976.50	=""	="ARRK AUSTRALIA & NEW ZEALAND"	12-May-08 02:26 PM	

+="CN78856"	"Fitness Equipment"	="Department of Defence"	12-May-08	="Fitness equipment"	11-Apr-08	30-Jun-08	20710.25	=""	="CYBEX T/A BLISS FITNESS SYSTEMS"	12-May-08 02:26 PM	

+="CN78858"	"SOFTWARE"	="Department of Defence"	12-May-08	="Software"	02-Jan-08	31-Jan-08	22426.04	=""	="KAZ GROUP LTD"	12-May-08 02:27 PM	

+="CN78868"	"POC: MICHAEL SULLIVAN CONTACT: 02 626 50662"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Jun-08	21960.00	=""	="LUCID IT PTY LTD"	12-May-08 02:27 PM	

+="CN78857"	"BATTERIES FOR OPERATIONAL USE."	="Department of Defence"	12-May-08	="Rechargeable batteries"	12-May-08	02-Jun-08	21066.65	=""	="J BLACKWOOD & SON LTD"	12-May-08 02:28 PM	

+="CN78880"	"Install Radar Anchor Points at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	11-Apr-08	30-Jun-08	30000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:28 PM	

+="CN78882"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	22965.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78885"	"BANNERS"	="Department of Defence"	12-May-08	="Signage and accessories"	11-Apr-08	05-Jun-08	22220.00	=""	="SIGNARAMA"	12-May-08 02:28 PM	

+="CN78893"	"VENUE HIRE"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	11-Apr-08	11-Apr-08	25391.63	=""	="NATIONAL CONVENTION CENTRE"	12-May-08 02:29 PM	

+="CN78894"	"MONTHLY SECURITY SERVICES - FEBRUARY 2008"	="Department of Defence"	12-May-08	="Security surveillance and detection"	30-Mar-08	10-Apr-08	27416.96	=""	="COMPASS - INTEGRATED LOGISTICS &"	12-May-08 02:29 PM	

+="CN78896"	"SCANNING OF FILM"	="Department of Defence"	12-May-08	="Photographic and recording media"	11-Apr-08	08-May-08	24226.40	=""	="DOCUMENT IMAGING SERVICES"	12-May-08 02:29 PM	

+="CN78904"	"TRAINING COURSES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	30-Jun-08	20000.00	=""	="KANGAN BATMAN INSTITUTE OF TAFE"	12-May-08 02:29 PM	

+="CN78911"	"RAAF AMBERLEY STAGE 3 - DELIVERY PHASE"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	27500.00	=""	="HMA BLAZE PTY LTD"	12-May-08 02:30 PM	

+="CN78928"	"REIMBURSEMENT"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	02-Jan-08	21216.25	=""	="SYDNEY CHURCH OF ENGLAND GRAMMAR"	12-May-08 02:31 PM	

+="CN78929"	"Technical Contact: D Dunn"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	21835.00	=""	="KEVES BUILDING WORKS"	12-May-08 02:31 PM	

+="CN78931"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	20039.15	=""	="AFFINITY IT RECRUITMENT"	12-May-08 02:32 PM	

+="CN78942"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Arts and crafts equipment and accessories and supplies"	21-Feb-08	30-May-08	26400.00	=""	="CHISHOLM INSTITUTE OF TAFE"	12-May-08 02:33 PM	

+="CN78948"	"Provision of reginonal practitioner"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	27-Jan-08	09-Apr-08	27634.44	=""	="CLEMENTS RECRUITMENT PTY LTD"	12-May-08 02:33 PM	

+="CN78961"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	23003.84	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:34 PM	

+="CN78974"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	26569.68	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 02:35 PM	

+="CN78981"	"contract under standing offer"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	11-Apr-08	30-Jun-08	23255.98	=""	="DAINTREE SYSTEMS PTY LTD"	12-May-08 02:35 PM	

+="CN78983"	"purchase of lcd projectors"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	17-Dec-07	21-Dec-07	23157.13	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	12-May-08 02:36 PM	

+="CN78987"	"ENCRYPTION DEVICE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	09-Oct-08	23157.80	=""	="DEFENCE MATERIEL ORGANISATION -"	12-May-08 02:36 PM	

+="CN78989"	"AVOP008 SHORT NOTICE FREIGHT 171 DEPLOYMENT"	="Department of Defence"	12-May-08	="Transportation components and systems"	14-Dec-07	21-Apr-08	28010.40	=""	="TOLL PRIORITY"	12-May-08 02:36 PM	

+="CN78992"	"MEDICAL APPLIANCES FOR INDIVIDUAL MEMBERS"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	10-Apr-08	30-May-08	24532.31	=""	="FRANZ FELFER PTY LTD"	12-May-08 02:36 PM	

+="CN78994"	"4 channel ACE - Quattro - 40 KHz dynamic signal analyser with additional options"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	17-Dec-07	15-Feb-08	21607.30	=""	="KINGDOM PTY LTD"	12-May-08 02:36 PM	

+="CN79013"	"SALARY AND SALARY RELATED COSTS Scientific / medical supplies,postage,freight etc"	="Department of Defence"	12-May-08	="Medical science research and experimentation"	15-Apr-08	15-Apr-08	23264.81	=""	="QUT STUDENT FEES OFFICE"	12-May-08 02:38 PM	

+="CN79016"	"Engagement of DFT to coordinate Electrical Works a Commission for DIER 0607-0586."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-Apr-08	20265.30	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	12-May-08 02:38 PM	

+="CN79021"	"CAB FARES"	="Department of Defence"	12-May-08	="Motor vehicles"	07-Apr-08	07-Apr-08	29805.99	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:38 PM	

+="CN79028"	"SHELVING REQ'D FOR INITIAL SETUP OF 2ND BUILDING FOR DP1,  LAND 125 GEAR"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	07-Apr-08	16-May-08	21951.60	=""	="DEXION NEWCASTLE"	12-May-08 02:39 PM	

+="CN79036"	"HIRING OF EQUIPMENT"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Feb-08	30-Apr-08	20227.46	=""	="PILLINGERS HIRING SERVICE PTY LTD"	12-May-08 02:40 PM	

+="CN79046"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	07-Apr-08	30-Jun-08	22722.37	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:40 PM	

+="CN79048"	"FURNITURE"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jan-08	22820.09	=""	="HARVEY NORMAN ELECTRICAL"	12-May-08 02:40 PM	

+="CN79049"	"VIDEO PRODUCTION"	="Department of Defence"	12-May-08	="Photographic and recording media"	07-Apr-08	07-Apr-08	20592.00	=""	="DYNAMIC MEDIA PTY LTD"	12-May-08 02:40 PM	

+="CN79068"	"LEGAL PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	23-Mar-08	15-Apr-08	20000.00	=""	="BRUCE LEVET"	12-May-08 02:42 PM	

+="CN79084"	"Maintenance & Development of CAPMAN"	="Department of Defence"	12-May-08	="Software"	07-Apr-08	30-Jun-08	20460.00	=""	="ZENDATA PTY LTD"	12-May-08 02:43 PM	

+="CN79092"	"SERVICE AND REPAIR EXCAVATOR 231809 O/HILLS"	="Department of Defence"	12-May-08	="Agricultural and forestry and landscape machinery and equipment"	07-Apr-08	02-Jun-08	20175.72	=""	="HITACHI CONSTRUCTION MACHINERY (AUS"	12-May-08 02:44 PM	

+="CN79116"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Apr-08	14-Apr-08	29370.00	=""	="NETCOMM LTD"	12-May-08 02:47 PM	

+="CN79141-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	25-Mar-08	26552.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:49 PM	

+="CN79144-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	17-Apr-08	25914.00	=""	="R.M. GARDINER AND ASSOCIATES PTY LTD"	12-May-08 02:49 PM	

+="CN79146"	"Development & implementation of the Aircrew Manuals Office (ACMO) Pub. & Amend. system."	="Department of Defence"	12-May-08	="Published Products"	03-Apr-08	08-May-08	24365.00	=""	="EGLOO TECHNOLOGIES PTY LIMITED"	12-May-08 02:49 PM	

+="CN79152"	"AIRFARES"	="Department of Defence"	12-May-08	="Aircraft"	14-Mar-08	30-Apr-08	21511.19	=""	="MSL TRAVEL DN BHD"	12-May-08 02:50 PM	

+="CN79164"	"Custom wireless interface/transmitter"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Apr-08	30-May-08	29556.51	=""	="MICROSTRAIN INC"	12-May-08 02:51 PM	

+="CN79174"	"Provisions of local administrative services."	="Department of Defence"	12-May-08	="Office supplies"	05-May-08	01-Jan-09	21913.33	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 02:52 PM	

+="CN79176"	"CLEANING SERVICES FOR OPTEC BLDG EX WALLABY 07. FROM 30SEP07 TO 12OCT07"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	12-Nov-07	10-Dec-07	26852.61	=""	="COMMERCIAL PROPERTY CLEANING PTY"	12-May-08 02:52 PM	

+="CN79186"	"AIR 7000 SHARP MAK VR-Forces Support"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	03-Apr-08	16-Apr-08	28490.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 02:53 PM	

+="CN79189"	"Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	22870.19	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:53 PM	

+="CN79194"	"MAR 08 VEHICLE LEASE - FIT"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Apr-08	03-May-08	27151.71	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:54 PM	

+="CN79197"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	28587.74	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79204"	"Outline Research Report & Slide show"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	04-Apr-08	04-Apr-08	22000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 02:55 PM	

+="CN79207"	"INSTALLATION OF FENCING AT QSTORE - FLLA K"	="Department of Defence"	12-May-08	="Personal safety and protection"	31-Mar-08	04-May-08	22323.43	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:55 PM	

+="CN79226"	"SPORT & REC EQUIPMENT BORNEO BKS CABARLAH"	="Department of Defence"	12-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	04-Apr-08	09-Jun-08	21923.00	=""	="BLISS FITNESS SYSTEMS"	12-May-08 02:57 PM	

+="CN79227"	"RAAF DARWIN SPECIAL OPERATIONS FORWARD MOUNTING FACILITIES"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	27804.88	=""	="GHD PTY LTD"	12-May-08 02:57 PM	

+="CN79230"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	17-Apr-08	23489.62	=""	="CORPORATE EXPRESS AUSTRALIA"	12-May-08 02:58 PM	

+="CN79241"	"Business Analyst - Paul Rowson"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	03-Apr-08	30-Apr-08	24000.08	=""	="APERIUM PTY LTD"	12-May-08 02:59 PM	

+="CN79242"	"PROVISION OF BOM SERVICE EX WALLABY 07"	="Department of Defence"	12-May-08	="Aircraft"	11-Dec-07	30-Dec-07	26107.64	=""	="BUREAU OF METEOROLOGY"	12-May-08 02:59 PM	

+="CN79251"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-08	20320.00	=""	="CLAYTON UTZ"	12-May-08 03:00 PM	

+="CN79255"	"As per Standing Offer LH 01/05 Drake"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Apr-08	30-Jun-08	25591.50	=""	="DRAKE INTERNATIONAL"	12-May-08 03:00 PM	

+="CN79273"	"VEHICLE LEASE - RWG"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	25-Apr-08	24424.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:02 PM	

+="CN79284"	"health services"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	18-Feb-08	27-Apr-08	23663.51	=""	="LJH NURSING PTY LTD"	12-May-08 03:03 PM	

+="CN79286"	"Provision of local administrative services - Bahra"	="Department of Defence"	12-May-08	="Office supplies"	27-Apr-08	01-Jan-09	21549.95	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:03 PM	

+="CN79290"	"PROVISION OF SIMULATOR TRAINING"	="Department of Defence"	12-May-08	="Aircraft"	20-Mar-08	20-Mar-08	22000.00	=""	="SIMULINC"	12-May-08 03:04 PM	

+="CN79295"	"Risk Action Software Licences"	="Department of Defence"	12-May-08	="Software"	08-Apr-08	30-Apr-08	22175.00	=""	="SILICON ROSE PTY LTD"	12-May-08 03:04 PM	

+="CN79298"	"Specialist Military Training"	="Department of Defence"	12-May-08	="Classroom decoratives and supplies"	14-Mar-08	18-Apr-08	22596.72	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 03:04 PM	

+="CN79305"	"WORK BENCHES"	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	20-May-08	21745.01	=""	="SOUTHERN SHOP & OFFICE"	12-May-08 03:05 PM	

+="CN79309"	"TRANSCRIPTION SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	22000.00	=""	="WRITE-WAY RESEARCH SERVICE"	12-May-08 03:06 PM	

+="CN79310"	"04-425303 31MAR08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Mar-08	09-Apr-08	20855.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:06 PM	

+="CN79311"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	08-Apr-08	23100.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	12-May-08 03:06 PM	

+="CN79313"	"3 YR MAINTENANCE SERVICE"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	08-Apr-08	30-Apr-09	26890.60	=""	="VARIAN AUSTRALIA PTY LTD"	12-May-08 03:06 PM	

+="CN79316"	"04-425295 31MAR08 PMCC ARMY BILL"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	09-Apr-08	26226.15	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79317"	"TEMPORARY EMPLOYEE 3MAR-30MAY08"	="Department of Defence"	12-May-08	="Temporary personnel services"	09-Apr-08	30-Jun-08	21000.10	=""	="CAREERS MULTILIST LIMITED"	12-May-08 03:07 PM	

+="CN79325"	"REPAIR, REASSEMBLY & TEST RUNNING OF SOPWORTH PUP POWER PLANT"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	09-Apr-08	26400.00	=""	="AIRCRAFT ENGINE WORKS AUSTRALIA"	12-May-08 03:07 PM	

+="CN79339"	"APR 08 VEHICLE LEASE - FLLA B"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Apr-08	03-May-08	21055.99	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79343"	"Repair of MDI S/No 1053"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	03-Apr-08	01-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:09 PM	

+="CN79344"	"FIRE MANGEMENT - HIRE OF HELICOPTER"	="Department of Defence"	12-May-08	="Fire prevention"	09-Apr-08	30-Jun-08	22158.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:09 PM	

+="CN79346"	"INTERNAL STANDARDS GAS GC/MS"	="Department of Defence"	12-May-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Apr-08	28-Apr-08	21268.50	=""	="SCITEK AUSTRALIA PTY LTD"	12-May-08 03:09 PM	

+="CN79350"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	20-Jun-08	25146.00	=""	="DOCUMENT IMAGING SERVICES"	12-May-08 03:09 PM	

+="CN79357"	"Transport of 13 Army Landrovers from Puckapunyal t As agreed 14 Day Delivery."	="Department of Defence"	12-May-08	="Transportation services equipment"	09-Apr-08	24-Apr-08	25025.00	=""	="AUSTRALIAN TRANSPORT PTY LTD"	12-May-08 03:10 PM	

+="CN79359"	"IRIS Forms and annual maintenance"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	16-Apr-08	24850.98	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 03:10 PM	

+="CN79380"	"Research Agreement to develop capability for effic of complex airframe structures"	="Department of Defence"	12-May-08	="Military science and research"	07-Apr-08	30-Jun-08	22000.00	=""	="MONASH UNI - CASHIER"	12-May-08 03:11 PM	

+="CN79381"	"Ford Fairmont Sedan ( SE) Qty 1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	05-Sep-08	25739.75	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:11 PM	

+="CN79389"	"SPECIAL PURPOSE AIRCRAFT HIRE"	="Department of Defence"	12-May-08	="Aircraft"	18-Apr-08	09-May-08	21780.00	=""	="PEL-AIR AVIATION"	12-May-08 03:12 PM	

+="CN79416"	"QANTAS"	="Department of Defence"	12-May-08	="Civilian and commercial rotary wing aircraft"	20-Feb-08	20-Feb-08	28907.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:14 PM	

+="CN79436"	"MAR-MAY 08 RENTAL OF ARC PENANG"	="Department of Defence"	12-May-08	="Recreation and playground and swimming and spa equipment and supplies"	20-Feb-08	20-Feb-08	29065.68	=""	="CHOONG LYE HOCK ESTATES SDN BHD"	12-May-08 03:15 PM	

+="CN79447"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	26194.23	=""	="M F B PRODUCTS PTY LTD"	12-May-08 03:16 PM	

+="CN79462"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	16-Apr-08	30-Jun-08	23760.00	=""	="Verisign Australia Pty Ltd (VIC)"	12-May-08 03:17 PM	

+="CN79470"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	29363.12	=""	="INTERIORS AUSTRALIA"	12-May-08 03:17 PM	

+="CN79490"	"SN02596 - ADC WESTON TEMPORARY ACCOMODATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	24-Jan-08	30-Jun-08	25597.45	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:19 PM	

+="CN79507"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	28-Apr-08	28-Apr-08	24476.05	=""	="James Richardson Corporation"	12-May-08 03:20 PM	

+="CN79517"	"CNOA Systems EngineerServices"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Jun-08	22482.00	=""	="SIGNAL PROCESSING KNOW-HOW PTY LTD"	12-May-08 03:20 PM	

+="CN79523"	"QANTAS CHARGES FOR FACDU PERSONNEL NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	26441.40	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:21 PM	

+="CN79525"	"AUTOMATIC PUNCHER & SPIRAL BINDER"	="Department of Defence"	12-May-08	="Paper Materials and Products"	08-Apr-08	15-Apr-08	22030.80	=""	="RENZ MASTERBIND PTY LTD"	12-May-08 03:21 PM	

+="CN79530"	"SERVERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Mar-08	07-Apr-08	24666.13	=""	="I-COMM AUSTRALIA PTY LTD"	12-May-08 03:21 PM	

+="CN79531"	"CAB FARES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	04-Feb-08	04-Feb-08	27137.57	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 03:21 PM	

+="CN79535"	"IP TELEPHONY NETWORK DEVELOPMENT COURSE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	26-Feb-08	27276.70	=""	="IT TRAINING SOLUTIONS"	12-May-08 03:21 PM	

+="CN79536"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	30-Apr-08	30-Jun-08	25957.36	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:21 PM	

+="CN79539"	"FOOTBALL BOOTS, QTY 174"	="Department of Defence"	12-May-08	="Safety footwear"	27-Mar-08	24-Apr-08	28710.00	=""	="SPORTSMANS WAREHOUSE PTY LTD"	12-May-08 03:22 PM	

+="CN79555"	"AUSCDT ONE QANTAS STATEMENT DEC 07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	29-Feb-08	20842.56	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:23 PM	

+="CN79560"	"TEST SET TIMING"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	09-Jan-09	24630.56	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:23 PM	

+="CN79565"	"PAYMENT OF CHP SERVICES - AHS NT/K"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	05-Dec-07	11-Mar-08	22654.73	=""	="CHANDLER MACLEOD HEALTH PTY LTD"	12-May-08 03:23 PM	

+="CN79566"	"aUDITS"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	21-Feb-08	30-Jun-08	25990.27	=""	="SAI GLOBAL LIMITED"	12-May-08 03:23 PM	

+="CN79569"	"PROVISION OF PRINTED MEDIA"	="Medicare Australia"	12-May-08	="Graphic design"	22-Apr-08	22-Apr-08	22785.00	=""	="BHB PRINTING PTY LTD"	12-May-08 03:23 PM	

+="CN79573"	"SQ REGIONAL GENERAL RESERVES ESSENTIAL  REPAIRS RELOCATE DEMOUNTABLE BUILDING"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	27680.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:24 PM	

+="CN79578"	"Provision of Software Licenses and Support"	="Medicare Australia"	12-May-08	="Computer services"	22-Apr-08	30-May-08	20240.00	=""	="SAP AUSTRALIA PTY LTD"	12-May-08 03:25 PM	

+="CN79584"	"QANTAS CHARGES FOR 2OCU PERSONNEL OCT/NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	29350.76	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79588"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	13-Feb-08	30-Jun-08	29595.01	=""	="PHILLIPS FOX SYDNEY"	12-May-08 03:26 PM	

+="CN79589"	"Multi-Rater data collection.  Management Fee."	="Department of Defence"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	31-Oct-07	21-Aug-08	26710.02	=""	="TWYFORD CONSULTING"	12-May-08 03:26 PM	

+="CN79603"	"Computer equiptment and support"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	12-Feb-08	29-Feb-08	20666.80	=""	="STEP ELECTRONICS 2005 PTY LTD"	12-May-08 03:27 PM	

+="CN79623"	"CONNECTOR PLUG AND PANEL"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Aug-08	24497.51	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 03:27 PM	

+="CN79630"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	20-Mar-08	30-Jun-08	29361.52	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:28 PM	

+="CN79632"	"dsto software"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	30-Nov-07	22029.41	=""	="ANSOFT CORPORATION (SINGAPORE BRANC"	12-May-08 03:28 PM	

+="CN79633"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Dec-07	26265.87	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:28 PM	

+="CN79652"	"Technical Writing Services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	15-Nov-07	31-Dec-07	24074.05	=""	="RECRUITMENT MANAGEMENT COMPANY"	12-May-08 03:30 PM	

+="CN79653"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	26680.67	=""	="RACAL ACOUSTICS LIMITED"	12-May-08 03:30 PM	

+="CN79656"	"Darwin Repairs - tEODor"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	20-Mar-08	30-Apr-08	23404.77	=""	="XTEK PTY LTD"	12-May-08 03:30 PM	

+="CN79677"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* PHARMACY SELF CARE"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	20860.07	=""	="PHARMACEUTICAL SOCIETY OF AUST"	12-May-08 03:32 PM	

+="CN79682"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* Folding Op. Table"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	12-Feb-08	30-Jun-08	29130.68	=""	="FERNO AUSTRALIA PTY LTD"	12-May-08 03:32 PM	

+="CN79697"	"WA Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	27794.33	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79703"	"UXO REMOVAL CONSULTANCY WBTA AND GBTA"	="Department of Defence"	12-May-08	="Ammunition"	14-Nov-07	30-Jun-08	27439.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:34 PM	

+="CN79706"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	30-Nov-07	30-Nov-07	25623.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:34 PM	

+="CN79714"	"Conditions of Contract, Scylla Sonar Iss, CAPO N26 to this deliverable under cover of quotation L753"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	12-Feb-08	18-Apr-08	27782.77	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 03:34 PM	

+="CN79715"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	21716.04	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:34 PM	

+="CN79724"	"CERTIFICATE IV PROJECT MANAGEMENT COURCE FLEET BASE EAST"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	12-Feb-08	30-Apr-08	20295.00	=""	="LEADER GROUP"	12-May-08 03:35 PM	

+="CN79730"	"Provision of IT Refurbishment"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Apr-08	01-Apr-08	25307.26	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:35 PM	

+="CN79754"	"Digital Signage Cabling"	="Defence Materiel Organisation"	12-May-08	="Electrical wire and cable and harness"	15-Feb-08	04-Apr-08	22099.00	=""	="COMMUNICATIONS AUSTRALIA PTY LTD"	12-May-08 03:36 PM	

+="CN79763"	"Transportation trailer for PODS movement between storage--maintenance-trial facilities."	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	28-Mar-08	15-May-08	21396.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 03:37 PM	

+="CN79775"	"DOD 3 CSR 31 DEC 07 LINE ITEMS 3741 - 3792"	="Department of Defence"	12-May-08	="Transportation services equipment"	31-Dec-07	18-Feb-08	28793.98	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:39 PM	

+="CN79778"	"repair of hsd"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Mar-08	26-Jul-08	23391.72	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:39 PM	

+="CN79789"	"Land Self protection SPO requires the manufacture to house and secure PCM units. atahe bins will be"	="Department of Defence"	12-May-08	="Military watercraft"	28-Mar-08	30-Jun-08	21131.44	=""	="EDAG AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79810"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	11-Apr-08	29-Jun-08	25783.68	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:40 PM	

+="CN79826"	"student and staff movements"	="Department of Defence"	12-May-08	="Aircraft"	30-Dec-07	30-Jun-08	27920.69	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:42 PM	

+="CN79834"	"***CONFIRMATION ONLY*** GOODS RECEIVED"	="Department of Defence"	12-May-08	="Vehicle servicing equipment"	15-Nov-07	15-Nov-07	28022.83	=""	="ISAS - INTEGRATED SWITCHGEAR &"	12-May-08 03:42 PM	

+="CN79847"	"SECDEF agreed contribution to APSC funding."	="Department of Defence"	12-May-08	="Management support services"	25-Oct-07	19-Oct-08	28461.00	=""	="APS COMMISSION"	12-May-08 03:43 PM	

+="CN79876"	"PROVISION OF CONTRACTOR (LABOUR HIRE) SERVICES"	="Medicare Australia"	12-May-08	="Computer services"	10-Apr-08	10-Apr-08	21396.37	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 03:45 PM	

+="CN79877"	"Travel and subsistence"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	28-Mar-08	30-Jun-08	20000.00	=""	="DEFENCE SUPPORT - WA"	12-May-08 03:45 PM	

+="CN79882"	"EMCPM LAPTOP Bulk Leasing for Participants FY07/08 & 08/09"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	28-Mar-08	30-Jun-09	29370.00	=""	="TR CORPORATION PTY LTD"	12-May-08 03:46 PM	

+="CN79884"	"FIRE UPGRADE WORKS - GRES DEPOTS"	="Department of Defence"	12-May-08	="Fire protection"	04-Oct-07	30-Jun-08	29027.78	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:46 PM	

+="CN79897"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	11-Oct-07	30-Jun-08	20575.01	=""	="DEACONS"	12-May-08 03:46 PM	

+="CN79909"	"SHOALWATER BAY TRAINING FACILITY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	20350.00	=""	="ARUP PTY LTD"	12-May-08 03:47 PM	

+="CN79918"	"Depopulate high risk CCA's and return to LSA-N"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Jun-08	21268.42	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 03:48 PM	

+="CN79917"	"Misc Goods, Freight, Service Charges"	="Department of Defence"	12-May-08	="Office supplies"	20-Feb-08	01-Jun-08	27761.16	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:48 PM	

+="CN79922"	"PRICE VARIATION FOR P/O - CC1S46"	="Department of Defence"	12-May-08	="Clothing"	27-Mar-08	04-Apr-08	26400.00	=""	="TUFFA WORKWEAR PTY LTD"	12-May-08 03:48 PM	

+="CN79957"	"HEALTH SERVICES"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	03-Mar-08	30-Jun-08	23890.41	=""	="LJH NURSING PTY LTD"	12-May-08 03:52 PM	

+="CN79902"	"Motor Vehicle Part"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-May-08	08-Jun-09	27102.87	=""	="Volvo Commericial Vehicles"	12-May-08 03:52 PM	

+="CN79963"	"convert data"	="Department of Defence"	12-May-08	="Software"	27-Mar-08	27-Jun-08	24654.75	=""	="INTERSOFT ELECTRONICS NV"	12-May-08 03:52 PM	

+="CN79971"	"Misc Goods, Freight, Service Charges"	="Department of Defence"	12-May-08	="Office supplies"	20-Feb-08	01-Jun-08	21104.73	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:53 PM	

+="CN79981"	"KEY SAFES"	="Defence Materiel Organisation"	12-May-08	="Vehicle safety and security systems and components"	14-Feb-08	30-Jun-08	20761.02	=""	="CIC SECURE PTY LTD"	12-May-08 03:54 PM	

+="CN79991"	"ADC WESTON TEMP ACCOMODATION - SN02596"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Jun-08	25798.23	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:55 PM	

+="CN79994"	"replacement airconditioner compressors"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	23070.30	=""	="G A GLANVILLE & CO"	12-May-08 03:55 PM	

+="CN79996"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	27-Mar-08	27-Jun-08	23713.85	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 03:56 PM	

+="CN79998"	"installation of cipher locks on COMCEN doors"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	24007.18	=""	="AIMTEK PTY LTD"	12-May-08 03:56 PM	

+="CN80012"	"NT1978 RAAF TINDAL FRONTLINE FACILITIES UPGRADE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	30-Apr-08	30-Jun-08	22607.20	=""	="G H D PTY LTD"	12-May-08 03:57 PM	

+="CN80023"	"POC: JONATHON MCGRATH CONTACT: 02 626 69368"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	10-Apr-08	30-Jun-08	29073.00	=""	="ROJONE PTY LTD"	12-May-08 03:58 PM	

+="CN80025"	"Office Furniture"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	14-Nov-07	29-Nov-07	22330.00	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	12-May-08 03:58 PM	

+="CN80028"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	06-Feb-08	29-Feb-08	25383.81	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:58 PM	

+="CN80033"	"DOCKING ACCOMMODATION HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Feb-08	14-May-08	23875.00	=""	="JOE BORRELLI REAL ESTATE ESTATE"	12-May-08 03:58 PM	

+="CN80035"	"Database Services"	="Department of Defence"	12-May-08	="Software"	14-Nov-07	14-Nov-07	20790.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 03:58 PM	

+="CN80036"	"EXTERNAL SERVICE PROVIDER FOR TENDER EVALUATION OF LETHALITY SUB-SYSTEM"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	28799.94	=""	="BOOZ ALLEN & HAMILTON AUSTRALIA PTY"	12-May-08 03:59 PM	

+="CN80042"	"Denro Training Course"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	10-Feb-08	21972.50	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:59 PM	

+="CN80051"	"Requirements Analysis for USQ-125"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	26344.23	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:00 PM	

+="CN80056"	"Laptops"	="Department of Defence"	12-May-08	="Fabricated sheet assemblies"	10-Apr-08	30-May-08	24096.60	=""	="ASI SOLUTIONS"	12-May-08 04:00 PM	

+="CN73558"	"Live Streaming & Video Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Video production services"	11-Apr-08	24-May-08	24200.00	=""	="Viocorp International Pty Ltd"	12-May-08 04:01 PM	

+="CN80061"	"Pearce ILS refurb scoping visit"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	12-Dec-07	14-Dec-07	28096.51	=""	="AIRSERVICES AUSTRALIA"	12-May-08 04:01 PM	

+="CN80062"	"Offr Mess Svcs"	="Department of Defence"	12-May-08	="Fruits and vegetables and nuts and seeds"	23-Oct-07	30-Jun-08	21000.00	=""	="ANGLESEA BARRACKS OFFICERS MESS"	12-May-08 04:01 PM	

+="CN80071"	"Power Cable for the AN/TPQ-36 Weapon Locating Rada"	="Department of Defence"	12-May-08	="Power generation"	12-Dec-07	31-Jan-08	29775.41	=""	="OLEX AUSTRALIA"	12-May-08 04:01 PM	

+="CN80104"	"POLARIS 6X6 ATV - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	26-Feb-08	23-Mar-08	27467.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:03 PM	

+="CN80108"	"FINAL LEASE OF 8 TONNE CRANE - FLLA A"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	17-Mar-08	23-Mar-08	23770.84	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:03 PM	

+="CN80114"	"DIESEL 6 PACK/MICRO SEPAROMETER"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	20-Nov-07	23-Nov-07	23034.00	=""	="IMEX PARTS EQUIPMENT PTY LTD"	12-May-08 04:03 PM	

+="CN80117"	"INSTALLATION OF  CABINETS AND OPTICAL FIBRE"	="Defence Materiel Organisation"	12-May-08	="Electrical wire and cable and harness"	07-Feb-08	29-Feb-08	29781.40	=""	="NBC COMMUNICATIONS"	12-May-08 04:03 PM	

+="CN80122"	"BANDICOOT FAMP 01/08 11TH FEBRUARY 2008 TO THE 28T The terms and conditions of this order are in acc"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	30-Jun-08	25188.01	=""	="BIRDON MARINE PTY LTD"	12-May-08 04:04 PM	

+="CN80124"	"QANTAS ACCOUNT JMCO ADL JAN08"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	31-Jan-08	20501.57	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:04 PM	

+="CN80136"	"REMEDIATION OF AIR CONDITIONING DEFECTS"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	25833.96	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:05 PM	

+="CN80152"	"Purchase of wing MCADS Recovery sponson"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	06-Feb-08	30-Jun-08	27863.79	=""	="WING INFLATABLES"	12-May-08 04:06 PM	

+="CN80176"	"DSTO Fellowship at University of Wollongong (Variation to Contract)"	="Department of Defence"	12-May-08	="Master control systems"	19-Nov-07	30-Nov-07	25300.00	=""	="UNI OF WOLLONGONG-PERS FIN SERVICES"	12-May-08 04:08 PM	

+="CN80181"	"PAYMENT OF FUNDS TRANSITION MENTOR"	="Department of Defence"	12-May-08	="Human resources services"	19-Nov-07	19-Nov-07	20190.12	=""	="WESTERN PORT SECONDARY COLLEGE"	12-May-08 04:09 PM	

+="CN80183"	"Repair of 2ea Mk92 FCS Ciricuit Card Assemblies"	="Department of Defence"	12-May-08	="Military watercraft"	11-Dec-07	04-Jan-08	23961.30	=""	="THALES AUSTRALIA"	12-May-08 04:09 PM	

+="CN80187"	"Computer equpment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Nov-07	31-Jan-08	23775.01	=""	="MILLENNIUM AUDIO VISUAL"	12-May-08 04:09 PM	

+="CN80188"	"QANTAS CHARGES FOR DS-CNNSW PERSONNEL DEC07/JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	30-Jun-08	28063.96	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:09 PM	

+="CN80194"	"Ship Maintenance and repair"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	05-Feb-08	18-Feb-08	28965.95	=""	="G A GLANVILLE & CO"	12-May-08 04:09 PM	

+="CN80214"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	11-Dec-07	30-Jun-08	22715.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 04:11 PM	

+="CN80226"	"S&Q 02/078 REPAIR DAMAGED STATIC PROBES"	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Apr-08	30-Apr-08	28861.34	=""	="BAE SYSTEMS AUSTRALIA - GBP"	12-May-08 04:12 PM	

+="CN80227"	"CONSULTANT TO TO PROVIDE TRANSITION DOCUMENTS FOR KC-30B"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Nov-07	30-Jun-08	29700.00	=""	="SME GATEWAY LIMITED"	12-May-08 04:12 PM	

+="CN80228"	"Ductal Protection Panels & Transport"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	11-Nov-07	23-Jan-08	23452.66	=""	="VSL AUSTRALIA PTY LTD"	12-May-08 04:12 PM	

+="CN80241"	" DIRECTOR LAND SUSTAINMENT PROGRAM MANAGEMENT - RECRUITMENT SEARCH"	="Department of Defence"	12-May-08	="Personnel recruitment"	17-Dec-07	31-Mar-08	26400.00	=""	="HAYS SPECIALIST RECRUITMENT"	12-May-08 04:13 PM	

+="CN80251"	"Spoon, Dessert, Plastic"	="Department of Defence"	12-May-08	="Domestic kitchenware"	20-Dec-07	30-Apr-08	28259.00	=""	="POLY INDUSTRIES PTY LTD"	12-May-08 04:14 PM	

+="CN80270"	"Provision of local admin services"	="Department of Defence"	12-May-08	="Office supplies"	06-Mar-08	01-Jan-09	24714.46	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 04:16 PM	

+="CN80277"	"Installation Design Support"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	23988.80	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:16 PM	

+="CN80279"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	05-Feb-08	30-Mar-08	21997.49	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 04:17 PM	

+="CN80282"	"Installation Design Support"	="Department of Defence"	12-May-08	="Manufacturing support services"	10-Apr-08	30-Jun-08	26911.06	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:17 PM	

+="CN80233"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-May-08	06-Jun-08	26366.43	=""	="Mercedes Benz Aust"	12-May-08 04:18 PM	

+="CN80296"	"HOUSING, SUB ASSY"	="Department of Defence"	12-May-08	="Aircraft"	10-Apr-08	15-Jul-08	29133.32	=""	="CAE INC"	12-May-08 04:18 PM	

+="CN80315"	"This Purchase Order raised to procure items for th Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	24411.09	=""	="MUSTANG SURVIVAL CORP"	12-May-08 04:19 PM	

+="CN80326"	"Use of Exisitng ASP Contract. Militarisation of Now Radar"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	31-Mar-08	29544.38	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:21 PM	

+="CN80341"	"Develop new TMS- Overhaul Manual Operated Firemain Valves 4" IPS and over"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	23305.72	=""	="THALES AUSTRALIA"	12-May-08 04:22 PM	

+="CN73691"	"Project Management Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Computer services"	07-Apr-08	24-Apr-08	24324.00	=""	="OPC Pty Ltd"	12-May-08 04:22 PM	

+="CN80343"	"Conference facilitator"	="Department of Defence"	12-May-08	="Paper Materials and Products"	30-Nov-07	30-Nov-07	24501.99	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 04:22 PM	

+="CN80344"	"Server Racks"	="Department of Defence"	12-May-08	="Hardware"	20-Dec-07	30-Jun-08	23754.50	=""	="SERVER RACKS AUSTRALIA"	12-May-08 04:22 PM	

+="CN80347"	"4x DELL M6300 PRECISION LAPTOPS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	14-Apr-08	30-Jun-08	22805.20	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:22 PM	

+="CN80355"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	25139.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:23 PM	

+="CN80368"	"Develop new TMS to support Overhaul of new Nu- Torque Actuators and Controllers"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	21373.48	=""	="THALES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80374"	"Cabling"	="Department of Defence"	12-May-08	="Structural building products"	20-Dec-07	21-Jan-08	27940.00	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80383"	"Amend TMS 5211-RAN-001A- Conduct PRCA of Firemain"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	23-May-08	20118.73	=""	="THALES AUSTRALIA"	12-May-08 04:24 PM	

+="CN80385"	"ACCREDITATION OF MATERIEL LOGISTICS QUALIFICATIONS AT CERTIFICATE IV, DIPLOMA AND ADVANCED DIPLOMA"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	11-Feb-08	30-Jun-08	26730.00	=""	="DEAKINPRIME"	12-May-08 04:24 PM	

+="CN80391"	"4516.21 CONDUCT ELEC SURVEY PERTH ELECTRICAL SYSTEM & PROVIDE OPENING & CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	27546.20	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:24 PM	

+="CN80354"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	07-May-08	08-Jun-08	26384.09	=""	="Mercedes Benz Aust"	12-May-08 04:25 PM	

+="CN80404"	"HMAS Melbourne Damage Control Console- Shipcheck"	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	30-Apr-08	20388.06	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:25 PM	

+="CN80405"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	03-Jan-08	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:25 PM	

+="CN80406"	"FURNITURE DS-NQ-TS MESSES 222-07/08"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	16-Nov-07	30-Jun-08	24840.20	=""	="DESIGN CHOICE"	12-May-08 04:25 PM	

+="CN80416"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	16-Jan-08	30-Jun-08	25288.00	=""	="MINTER ELLISON"	12-May-08 04:26 PM	

+="CN80426"	"DTS 82 RASS Testing and Training AN/TPS-77"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	14-Apr-08	28-Apr-08	23112.02	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80429"	"J527 Competitor Jackets"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	31-Mar-08	20979.20	=""	="STATESIDE DISTRIBUTORS"	12-May-08 04:26 PM	

+="CN80447"	"Repair of MDI S/NO 1081"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	18-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:27 PM	

+="CN80449"	"Cover Assemblies"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Jan-08	23-Jun-08	25943.54	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	12-May-08 04:27 PM	

+="CN80455"	"Repair of MDI S/NO 1019"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	11-Feb-08	18-Aug-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:28 PM	

+="CN80468"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	20922.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:28 PM	

+="CN80484"	"OEM OPERATIONS MANUALS (BAILOUT& BCJ) ARMY MARINE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	29700.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:29 PM	

+="CN80472"	"Fleet management and Leasing services (Standing Offer ID 12383)"	="Family Court of Australia"	12-May-08	="Vehicle leasing"	01-Feb-08	31-Jan-10	29650.10	=""	="LeasePlan"	12-May-08 04:30 PM	

+="CN80490"	"Manuals"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	08-Feb-08	30-Apr-08	21776.25	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:30 PM	

+="CN80494"	"CABLE ASSEMBLY"	="Defence Materiel Organisation"	12-May-08	="Marine craft systems and subassemblies"	08-Feb-08	11-Aug-08	28944.68	=""	="EADS DEUTSCHLAND GMBH -VERTEIDIGUNG"	12-May-08 04:31 PM	

+="CN80498"	"Contracting  work"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	11-Jan-08	28-Feb-08	26364.80	=""	="ROSS HUMAN DIRECTIONS"	12-May-08 04:31 PM	

+="CN80507"	"VARIETY HARDWARE"	="Department of Defence"	12-May-08	="Packing supplies"	11-Jan-08	23-Jan-08	23950.91	=""	="PLATINUM LIGHTING"	12-May-08 04:32 PM	

+="CN80514"	"Conference Facilities"	="Department of Defence"	12-May-08	="Satellites"	11-Apr-08	26-May-08	20294.51	=""	="WYS GROUP PTY LTD"	12-May-08 04:32 PM	

+="CN80515"	"4560 HMAS PARRAMATTA ELECTRICAL SURVEY 14 JAN 2008 - 28 JAN 2008"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	20900.00	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:32 PM	

+="CN80519"	"4561.01 HMAS PARRAMATTA THERMOGRAPHIC SURVEY ONBAORD 14 JAN - 28 JAN 08"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	24200.00	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:33 PM	

+="CN80528"	"Building Services"	="Department of Foreign Affairs and Trade"	12-May-08	="General building construction"	01-Aug-07	30-Jun-08	25999.86	=""	="Arup Pty Limited"	12-May-08 04:33 PM	

+="CN80530"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	31-Jan-08	27667.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:33 PM	

+="CN80532"	"This purchase order is raised to cover the cost of into Qty 40 of the Black Hawk Gunner Seat Frame P"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	28-Feb-08	20372.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:33 PM	

+="CN80547"	"Furniture - Residential compounds"	="Department of Foreign Affairs and Trade"	12-May-08	="Furniture and Furnishings"	03-Aug-07	31-Aug-07	28575.00	=""	="Harvey Norman Bedding Cairns"	12-May-08 04:34 PM	

+="CN80553"	"This Purchase Order is raised under the Terms and C438936."	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	07-Feb-08	29-Feb-08	20071.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:34 PM	

+="CN80565"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	30-Apr-08	28279.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80569"	"4516.38 HMAS ARUNT 400Hz CONDITION ASSESSMENT"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	27192.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80577"	"Security Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Metal and mineral industries"	01-Aug-07	29-Aug-07	21016.00	=""	="Dorma Automatics P/L"	12-May-08 04:35 PM	

+="CN80578"	"RELOCATE CLASSROOM 2 TO CLASSROOM 1 ATJCC BLDG/"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	08-Feb-08	30-Jun-08	24017.40	=""	="AV CENTRAL"	12-May-08 04:35 PM	

+="CN80605"	"Use of existing ASP Contract - Diesel generator O rings and Piston scraper"	="Department of Defence"	12-May-08	="Gaskets and seals"	08-Jan-08	31-Jan-08	25520.53	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:37 PM	

+="CN80606"	"GFM"	="Department of Defence"	12-May-08	="Ammunition"	21-Dec-07	30-Jan-08	22111.34	=""	="PENTARCH PTY LTD"	12-May-08 04:37 PM	

+="CN80608"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	29561.49	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:38 PM	

+="CN80614"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	04-Sep-07	22440.00	=""	="ECOWISE SERVICES"	12-May-08 04:38 PM	

+="CN80621"	"This P.O. is raised to facilitate the Build up of Pylons, P/N 70083-06100-041, at SAAL to 'Quic"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Dec-07	30-Apr-08	22000.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:38 PM	

+="CN80630"	"Reports Development"	="Department of Defence"	12-May-08	="Computer services"	21-Dec-07	01-Feb-08	25200.00	=""	="DIMENSION DATA LEARNING"	12-May-08 04:39 PM	

+="CN80632"	"berthage for HMAS MELVILLE maintenance Period"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	18-Feb-08	31-Mar-08	22426.77	=""	="AIMTEK PTY LTD"	12-May-08 04:39 PM	

+="CN80644"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	09-Jan-08	30-Mar-08	29575.20	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 04:39 PM	

+="CN80646"	"IT Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	21-Aug-07	23942.94	=""	="MILLHOUSE ENTERPRISE PTY LTD"	12-May-08 04:39 PM	

+="CN80655"	"Made to Measure Flyers Clothing"	="Defence Materiel Organisation"	12-May-08	="Clothing"	25-Feb-08	30-Jun-08	29999.99	="STANDING OFFER 0306-264-26"	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 04:40 PM	

+="CN80658"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	04-Apr-08	30-Jun-08	20658.00	=""	="CLAYTON UTZ"	12-May-08 04:40 PM	

+="CN80674"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	07-Apr-08	30-Jun-08	29865.36	=""	="KIDDE AEROSPACE & DEFENCE"	12-May-08 04:41 PM	

+="CN80679"	"Collins Class TWC IPT participation"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	27500.00	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:41 PM	

+="CN80683"	"MANUFACTURE BRIEFING ROOM TABLE HMAS KANIMBLA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	25-Feb-08	30-May-08	20328.00	=""	="SYDNEY HARBOUR BOATBUILDERS"	12-May-08 04:41 PM	

+="CN80686"	"NOWRA FAULT FINDING OF MSSR AND PSR"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	07-Apr-08	30-Apr-08	27500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:41 PM	

+="CN80708"	"MODS TO LRVS"	="Department of Defence"	12-May-08	="Truck tractors"	30-Jan-08	29-Feb-08	27231.48	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:43 PM	

+="CN80712"	"ANZAC CLASS DATA CAPTURE NEEDS ANALYSIS"	="Department of Defence"	12-May-08	="Military watercraft"	30-Jan-08	30-May-08	28567.74	=""	="JACOBS AUSTRALIA"	12-May-08 04:43 PM	

+="CN80726"	"The generators fitted to the Main Propulsion Diese HMAS SUCCESS"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	29-Feb-08	22731.97	=""	="WARTSILA AUSTRALIA PTY LTD"	12-May-08 04:44 PM	

+="CN80730"	"MHC PRESSURE VESSEL REVIEW"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	30-Mar-08	28182.00	=""	="H I FRASER PTY LTD"	12-May-08 04:44 PM	

+="CN80731"	"KANIMBLA SGSI"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Apr-08	28-Nov-08	20295.00	=""	="NOVAMARINE INSTRUMENTS PTY LTD"	12-May-08 04:44 PM	

+="CN80738"	"This Purchase Order is raised to procure items for the CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	27479.96	=""	="SWITLIK PARACHUTE COMPANY INC"	12-May-08 04:44 PM	

+="CN80741"	"B15 PANEL INSTALLATION HMAS TOBRUK"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	25-Feb-08	20-Mar-08	20025.17	=""	="FORGACS SHIP REPAIR"	12-May-08 04:44 PM	

+="CN80750"	"COLT M4 COMMANDO"	="Department of Defence"	12-May-08	="Firearms"	21-Dec-07	20-Feb-08	22222.13	=""	="COLT DEFENSE LLC"	12-May-08 04:45 PM	

+="CN80753"	"PROP BUILD TRIP"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	25-Feb-08	30-Jun-08	22686.74	=""	="SAFE AIR LTD"	12-May-08 04:45 PM	

+="CN80755"	"FILTER ELEMENTS"	="Department of Defence"	12-May-08	="Naval weapons"	21-Dec-07	21-Jan-08	23600.50	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	12-May-08 04:45 PM	

+="CN80771"	"Biomechanical and Ergonomic Testing Combat Boots Refer attached quotation dated 13 Feb 08."	="Defence Materiel Organisation"	12-May-08	="Footwear"	22-Feb-08	25-Feb-08	29854.00	=""	="CRAIG PAYNE CONSULTING"	12-May-08 04:46 PM	

+="CN80780"	"STRIP AND SURVEY OF TOWED FLEXIBLE BARGE DISCHARGE SYSTEM"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	31-Jan-08	14-Feb-08	24992.00	=""	="GILBERT GROUP QLD T/A O'SULLIVAN"	12-May-08 04:47 PM	

+="CN80808"	"COMMUNICATION EAR PLUG"	="Department of Defence"	12-May-08	="Flight communications related systems"	31-Jan-08	10-Apr-08	20229.16	=""	="TRANSAERO INC."	12-May-08 04:48 PM	

+="CN80814"	"MAGNETRONS FOR PRWRS"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	04-Apr-08	05-Oct-08	22880.00	=""	="COMMUNICATIONS & POWER INDUSTRIES"	12-May-08 04:48 PM	

+="CN80820"	"DEED OF RELEASE AS ATTACHED"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	30-Jan-08	30-Jun-08	21810.56	=""	="BIOLAB (AUST) LTD"	12-May-08 04:48 PM	

+="CN80830"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	04-Apr-08	30-Jun-08	24106.17	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:49 PM	

+="CN80831"	"POC: CHRISTIAN HANNA CONTACT: 02 626 50140"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	24750.00	=""	="JIM HENDRICKSON & ASSOCIATES PTY LT"	12-May-08 04:49 PM	

+="CN80834"	"plugs and socket connectors"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	04-Apr-08	30-Jun-08	24672.78	=""	="MOELLER ELECTRIC AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80837"	"Fuel support costs associated with LEP"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	18-Dec-07	31-Jan-08	20288.47	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	12-May-08 04:49 PM	

+="CN80843"	"Mount Waver, Switch Assembly and Weapon LIght"	="Defence Materiel Organisation"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	23-Feb-08	01-May-08	24399.16	=""	="LASER PRODUCTS"	12-May-08 04:49 PM	

+="CN80846"	"TRIDENT EMERGENT WORK"	="Department of Defence"	12-May-08	="Fire fighting equipment"	04-Apr-08	05-May-08	28189.58	=""	="R G M MAINTENANCE PTY LTD"	12-May-08 04:50 PM	

+="CN80852"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	31-Jan-08	22024.87	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:50 PM	

+="CN80855"	"MIS928 - Additional Installation Effort"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	26126.10	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80872"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* REQUIRED FOR C-17 PROJECT"	="Department of Defence"	12-May-08	="Medical Equipment and Accessories and Supplies"	29-Jan-08	30-Jun-08	26730.00	=""	="BIOLAB (AUST) PTY LTD"	12-May-08 04:51 PM	

+="CN80888"	"CONNECTING LINK"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	01-Oct-09	25616.21	=""	="AGUSTAWESTLAND LTD"	12-May-08 04:51 PM	

+="CN80907"	"Repair of 45KVA GPU Engines"	="Defence Materiel Organisation"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	26-Feb-08	18-Apr-08	25344.00	=""	="DIESEL 1 PTY LTD"	12-May-08 04:52 PM	

+="CN80911"	"REPAIR OF AILERON LH NSN 013833284 SDSS PO#: OA40QE"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:52 PM	

+="CN80912"	"Use of existing ASP Contract - Diesel Generator fuel pump spares"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	29-Jan-08	31-May-08	24171.73	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:52 PM	

+="CN80915"	"REPAIR OF AILERON LH NSN 013833284 SDSS PO#: OA419U"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80920"	"REPAIR OF AILERON RH NSN 011520841 SDSS PO#: OA40QM"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80924"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA40QG"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80928"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA419V"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:53 PM	

+="CN80933"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:53 PM	

+="CN80935"	"Purchase Weapon mount spigots"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	09-Apr-08	30-Jun-08	28764.12	=""	="W & E PLATT PTY LTD"	12-May-08 04:53 PM	

+="CN80939"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	09-Apr-08	23760.00	=""	="MORRIS WALKER"	12-May-08 04:54 PM	

+="CN80942"	"REPAIR OF FUEL COMPUTER"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	21-Apr-08	26941.17	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:54 PM	

+="CN80944"	"Netwars Project Office OPNET Engineer"	="Department of Defence"	12-May-08	="Detective services"	04-Feb-08	30-Jun-09	21806.40	=""	="JACOBS AUSTRALIA"	12-May-08 04:54 PM	

+="CN80945"	"Litter, Evacuation"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	18-Dec-07	18-Jan-08	24295.49	=""	="NORTH AMERICAN RESCUE PRODUCTS"	12-May-08 04:54 PM	

+="CN80948"	"Tube Assembly, Fuel"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	18-Dec-07	23-Apr-08	24561.31	=""	="LCF SYSTEMS INC"	12-May-08 04:54 PM	

+="CN80959"	"VAPS Porting Services"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	31-May-08	22523.92	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:55 PM	

+="CN80966"	"WA PERISCOPE WORKSHOP COMMISSIONING PROJECT"	="Defence Materiel Organisation"	12-May-08	="Workshop machinery and equipment and supplies"	27-Feb-08	30-Jun-08	22439.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:56 PM	

+="CN80973"	"KANIMBLA FM 200 Maintenance"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	20-Jun-08	28963.22	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80989"	"socket outlets for hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	04-Feb-08	31-Mar-08	20732.18	=""	="MOELLER ELECTRIC AUSTRALIA PTY LTD"	12-May-08 04:57 PM	

+="CN80991"	"Analysis of X-Raying of   Ballistic Plates CIB-19"	="Department of Defence"	12-May-08	="Personal safety and protection"	18-Dec-07	28-Dec-07	25049.18	=""	="BALLISTIC AND MECHANICAL TESTING"	12-May-08 04:57 PM	

+="CN80994"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA419Y"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:57 PM	

+="CN80995"	"TEMP ACCOMMODATION FOR CADETS"	="Department of Defence"	12-May-08	="Accommodation furniture"	18-Dec-07	30-Jun-08	23380.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 04:57 PM	

+="CN81001"	"MBITR REAPIRS  - M/E DEC 2007 THALES AUSTRALIA REF# TWS08.002  DATED 19 DEC 07"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	04-Feb-08	17-Feb-08	22419.98	=""	="THALES AUSTRALIA"	12-May-08 04:58 PM	

+="CN81006"	"Provision of 6 x GPS 500W Upgrades"	="Defence Materiel Organisation"	12-May-08	="Location and navigation systems and components"	26-Feb-08	31-May-08	27572.00	=""	="AIRFLITE PTY LTD"	12-May-08 04:58 PM	

+="CN81012"	"Ford Futura Wagon Qty 1 ( WM)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	07-Apr-08	29-Aug-08	25310.31	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:59 PM	

+="CN81013"	"TECHNICAL AID AGREEMENT FOR RAN MK31 AFCS"	="Department of Defence"	12-May-08	="Aircraft master control systems"	05-Feb-08	26-Aug-08	26195.37	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 04:59 PM	

+="CN81027"	"TASK FOS3 202 for RFELATS Upgrade plan Option 4"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	31-Mar-08	25241.08	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 04:59 PM	

+="CN81036"	"Design Services for 37 McNicholl St Rockingham"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-May-08	21965.90	=""	="GHD PTY LTD"	12-May-08 05:00 PM	

+="CN81042"	"PRINTING OF DMO ACQUISITION AND SUSTAINMENT MANUAL"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Feb-08	30-Jun-08	20373.10	=""	="PARAGON PRINTERS"	12-May-08 05:00 PM	

+="CN81043"	"Maintenance Support to the Flight Test program"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81051"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	08-Apr-08	30-Jun-08	27668.87	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:01 PM	

+="CN81052"	"REPAIR OF AILERON RH NSN 013833284 SDSS PO#: OA42XV"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81053"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	05-May-08	28279.91	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:01 PM	

+="CN81056"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42XX"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81062"	"NGEOSPO Operations Management Services - Patrick N"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Feb-08	30-Apr-08	22750.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 05:01 PM	

+="CN81067"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	19-May-08	29022.40	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 05:01 PM	

+="CN81068"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA42XX"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:01 PM	

+="CN81071"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	23713.85	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:01 PM	

+="CN81072"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA41A1"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81080"	"REPAIR OF AILERON RH NSN 012133877 SDSS PO#: OA42ZH"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81084"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42Y0"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81088"	"REPAIR OF AILERON RH NSN 013833294 SDSS PO#: OA42XZ"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:02 PM	

+="CN81092"	"Preventative Maintenance Agreement"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Feb-08	29-Apr-08	23525.70	=""	="MUNTERS PTY LTD"	12-May-08 05:02 PM	

+="CN81096"	"REPAIR OF AILERON RH NSN 012133876 SDSS PO#: OA42Y1"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81100"	"REPAIR OF AILERON RH NSN 012133876 SDSS PO#: OA42Y2"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	26-Feb-08	30-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:03 PM	

+="CN81111"	"Reinstallation of Halon 1301 System HMAS DARWIN"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-May-08	22542.00	=""	="THALES AUSTRALIA"	12-May-08 05:03 PM	

+="CN81114"	"DTS No. 15 NROC Remote Control Terminal (RCT) Equipment breakout"	="Department of Defence"	12-May-08	="Electrical components"	26-Nov-07	28-Feb-08	20137.55	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:03 PM	

+="CN81131"	"MODIFICATION OF 75SQN LIFE SUPPORT FACILITIES IN SUPPORT OF JHMCS INTRODUCTION"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	30-Jun-08	22000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:04 PM	

+="CN81159"	"Indirect Fire/Forward Air Controller (IFACT) for the Singleton WTSS Facility."	="Department of Defence"	12-May-08	="Project management"	26-Nov-07	28-Mar-08	22254.97	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:05 PM	

+="CN81168"	"Condition Appraisal of Contracted Facilities RAAF"	="Defence Materiel Organisation"	12-May-08	="Building construction and support and maintenance and repair services"	19-Feb-08	31-Mar-08	29084.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:05 PM	

+="CN81195"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	26-Nov-07	22-Mar-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81210"	"TSWT model construction"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:07 PM	

+="CN81220"	"FLAP SIDE CARRIAGE LH"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	19-Dec-07	20-Nov-08	21446.43	=""	="BLUE AEROSPACE LLC"	12-May-08 05:08 PM	

+="CN81231"	"PN 939195-101, LH Wing Rib BL65 Lower Cap"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	06-May-08	29278.70	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:08 PM	

+="CN81236"	"3 x Dell 2950 Rack-mount. Each Dual Core, 8* 75G R RAM, Gig NIC."	="Defence Materiel Organisation"	12-May-08	="Information Technology Broadcasting and Telecommunications"	18-Feb-08	31-Mar-08	29700.00	=""	="ASG GROUP LIMITED"	12-May-08 05:08 PM	

+="CN81256"	"EMC32 Immunity Software Application"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Feb-08	14-Apr-08	25388.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	12-May-08 05:09 PM	

+="CN81261"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	19-Dec-07	23-Apr-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:10 PM	

+="CN81265"	"Repair of MDI"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	19-Dec-07	23-Apr-08	20736.78	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:10 PM	

+="CN81267"	"POC: Christian Hanna Contact No: 02 6265 0140"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	23-Nov-07	30-Nov-07	29997.00	=""	="JIM HENDRICKSON & ASSOCIATES PTY LT"	12-May-08 05:10 PM	

+="CN81281"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	23-Jan-08	30-Mar-08	22058.35	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:10 PM	

+="CN81287"	"TS4113-4 HMAS ARUNTA GPS TEMPORARY UPGRADE"	="Department of Defence"	12-May-08	="Military watercraft"	23-Jan-08	30-Jun-08	28217.89	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:11 PM	

+="CN81294"	"SUPPLY OF PLASMA POWDER"	="Department of Defence"	12-May-08	="Aircraft equipment"	26-Nov-07	12-Dec-07	20578.25	=""	="SULZER METCO AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81310"	"CORRECTIVE MAINTENANCE TO DARWIN FSR DRIVETRAIN"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	18-Feb-08	29-Feb-08	24001.40	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:12 PM	

+="CN81322"	"DEVIATION FOR THE INSTALLATION OF GENSTAR MONITORS"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	18-Feb-08	30-Apr-08	22403.89	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:12 PM	

+="CN81339"	"PSP to resolve PIF Lotus Notes issues"	="Department of Defence"	12-May-08	="Satellites"	22-Jan-08	30-Apr-08	27500.00	=""	="WYS GROUP PTY LTD"	12-May-08 05:13 PM	

+="CN81350"	"Use of Exisitng ASP Contract.- ECP for Invest into RAS Rig Failure"	="Defence Materiel Organisation"	12-May-08	="Fuels"	21-Feb-08	11-Apr-08	25179.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:14 PM	

+="CN81360"	"Conduct In-Water Hull Survey - HMAS WEWAK"	="Department of Defence"	12-May-08	="Manufacturing support services"	22-Jan-08	30-Jun-08	25512.15	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:14 PM	

+="CN81372"	"Nulka EMC Lite Modification Train at Stirling"	="Department of Defence"	12-May-08	="Ammunition"	22-Jan-08	30-Jun-08	21186.36	=""	="THALES AUSTRALIA"	12-May-08 05:15 PM	

+="CN81382"	"Reomove and replace Laundry Exhaust Fan 1-154-1"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	12-Dec-07	28668.97	=""	="THALES AUSTRALIA"	12-May-08 05:16 PM	

+="CN81395"	"6V Tactical Light System"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	22-Feb-08	05-Mar-08	22105.18	=""	="LASER PRODUCTS"	12-May-08 05:16 PM	

+="CN81399"	"Use of Exisitng ASP Contract. ECP RH LAN Installation"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-Apr-08	20793.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:17 PM	

+="CN81405"	"Use of Exisitng ASP Contract. Main Engine Fuel Filters"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	25-Jan-08	15-Feb-08	23063.04	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:17 PM	

+="CN81407"	"4516.27 CONDUCT ELECTRICAL SURVEY OF HMAS WARRAMUNGA & OPENING AND CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Apr-08	24443.98	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 05:17 PM	

+="CN81408"	"TS5053ADS-4 MINI TYPHOON SURFACE COMBATANT FORCE PROTECTION UPGRADE FOR AN ANZAC CLASS SHIP"	="Department of Defence"	12-May-08	="Military watercraft"	25-Jan-08	30-Apr-08	23650.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81412"	"Split Bush (Two Halves)"	="Department of Defence"	12-May-08	="Aircraft"	27-Nov-07	30-Jan-08	23793.00	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	12-May-08 05:17 PM	

+="CN81432"	"Support to Project"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	29-Jan-08	29-Feb-08	20072.08	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:18 PM	

+="CN81460"	"MS Outlook Training"	="Department of Defence"	12-May-08	="Office supplies"	27-Nov-07	27-Nov-07	20988.00	=""	="PRIORITY MANAGEMENT SYSTEMS RETAIL"	12-May-08 05:20 PM	

+="CN81480"	"SHIP EQUIPEMENT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	22440.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:21 PM	

+="CN81489"	"  LEASE HIRE, MAINTENANCE AND PETROL  "	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Jan-08	31-Dec-09	21627.81	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:22 PM	

+="CN81490"	"Use of Exisitng ASP Contract.- ECP for Modificatio to Bow Thruster Access ladder"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	20-Feb-08	23-Jun-08	20790.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:22 PM	

+="CN81493"	"Shared Canister Budget FY08"	="Department of Defence"	12-May-08	="Missile subsystems"	24-Jan-08	31-Jan-08	20090.30	=""	="NATO SEASPARROW SURFACE MISSILE"	12-May-08 05:23 PM	

+="CN81505"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	25-Jan-08	30-Jun-08	24612.50	=""	="PHILLIPS FOX SYDNEY"	12-May-08 05:23 PM	

+="CN81518"	"Microscope, Optical, Widefield & Accessories"	="Defence Materiel Organisation"	12-May-08	="Packaging materials"	21-Apr-08	19-May-08	23531.71	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:25 PM	

+="CN81520"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Jan-08	09-May-08	26756.24	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:25 PM	

+="CN81526"	"Microscope, Optical"	="Defence Materiel Organisation"	12-May-08	="Packaging materials"	21-Apr-08	04-Jun-08	22506.00	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:25 PM	

+="CN81542"	"Provide Human Resources Investigating This PO Replaces 4500611384."	="Defence Materiel Organisation"	12-May-08	="Human resources services"	21-Apr-08	30-Jun-88	20000.00	=""	="CGF PHOENIX PTY LIMITED"	12-May-08 05:26 PM	

+="CN81544"	"DATABASE ROLLOUT"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Apr-08	20000.00	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 05:27 PM	

+="CN81548"	"Map Data Sets"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Apr-08	30-Jun-08	21901.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 05:27 PM	

+="CN81559"	"Building Work"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Jun-08	22242.00	=""	="DATA CAT COMMUNICATIONS"	12-May-08 05:28 PM	

+="CN81572"	"Professional Fees"	="Department of Defence"	12-May-08	="Legal services"	13-Dec-07	30-Jun-08	23760.00	=""	="CLAYTON UTZ"	12-May-08 05:29 PM	

+="CN81571"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	25364.05	=""	="KAZ GROUP PTY LTD"	12-May-08 05:29 PM	

+="CN81577"	"White spirits."	="Defence Materiel Organisation"	12-May-08	="Solvents"	18-Apr-08	01-May-08	28311.36	=""	="CHALLENGE CHEMICALS"	12-May-08 05:29 PM	

+="CN81582"	"Use of Exisitng ASP Contract.- Filtrex Elements and Gaskets"	="Department of Defence"	12-May-08	="Gaskets and seals"	13-Dec-07	08-Feb-08	21633.55	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:29 PM	

+="CN81590"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	29-Jan-08	23508.68	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:30 PM	

+="CN81619"	"POWER SUPPLY"	="Department of Defence"	12-May-08	="Aircraft"	13-Dec-07	20-Jun-08	20871.69	=""	="ROCKWELL COLLINS INC."	12-May-08 05:33 PM	

+="CN81628"	"SCDR Software Development Plan for the EDMS Implementation Plan"	="Department of Defence"	12-May-08	="Environmental management"	17-Dec-07	30-Apr-08	29009.20	=""	="QINETIQ (INTERNATIONAL) PTY LTD"	12-May-08 05:34 PM	

+="CN81629"	"Interim Upgrade to Prototype SCDR and dispatch and return of Prototype Server"	="Department of Defence"	12-May-08	="Environmental management"	17-Dec-07	30-Apr-08	20040.85	=""	="QINETIQ (INTERNATIONAL) PTY LTD"	12-May-08 05:34 PM	

+="CN81657"	"VENUE HIRE & AUDIO VISUAL EQUIPMENT HIRE FOR CANBERRA BPR"	="Department of Defence"	12-May-08	="Audio and visual presentation and composing equipment"	17-Dec-07	30-Dec-07	27413.21	=""	="NATIONAL CONVENTION CENTRE"	12-May-08 05:38 PM	

+="CN81661"	"Survey Inspection & Refurbishment of ECBA"	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	14-Dec-07	28-Feb-08	28321.49	=""	="HELLWEG INTERNATIONAL"	12-May-08 05:38 PM	

+="CN81665"	"PART 1E PART 1 - CH-47 LASER SCANNING"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Dec-07	30-Mar-08	23697.36	=""	="GKN AEROSPACE ENGINEERING SERVICES"	12-May-08 05:39 PM	

+="CN81683"	"Lease of Vehicle under Agency Agreement"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	31-Dec-09	23530.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:41 PM	

+="CN81687"	"Project Phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Jan-08	20319.16	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:42 PM	

+="CN81696"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	07-Dec-07	29-Feb-08	29624.11	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:43 PM	

+="CN81710"	"AIRCRAFT ARRESTING SYSTEMS"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Dec-07	07-Apr-08	20091.58	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 05:45 PM	

+="CN81712"	"Photocopiers"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	10-Dec-07	18-Jan-08	22721.60	=""	="CANON AUSTRALIA PTY LTD"	12-May-08 05:45 PM	

+="CN81723"	"HMAS Darwin URDEFs 4099/07 and 4100/07 Replace 4 Actuators and Controllers"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	10-Dec-07	20209.20	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	12-May-08 05:47 PM	

+="CN81728"	"NMI to provide Data Processing and System Operatio Comparison Systems."	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	30-Jun-08	24716.38	=""	="NATIONAL MEASUREMENT INSTITUTE"	12-May-08 05:47 PM	

+="CN81735"	"market research services - LEA client satisfaction as per Sweeney research quote no:  16578"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Dec-07	31-Mar-08	21450.00	=""	="SWEENEY RESEARCH PTY LTD"	12-May-08 05:48 PM	

+="CN81740"	"DSTO Link Equipment spares supported under CMD&V."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	07-Dec-07	20-Dec-07	28223.80	=""	="EM SOLUTIONS"	12-May-08 05:49 PM	

+="CN81743"	"Psychometric Assessment Services for LAP Trainee Project Managers"	="Department of Defence"	12-May-08	="Personnel recruitment"	07-Dec-07	14-Dec-07	25850.00	=""	="TALENT2 PTY LTD"	12-May-08 05:49 PM	

+="CN81754"	"Power Supply Assemblies"	="Department of Defence"	12-May-08	="Power sources"	12-Dec-07	14-Apr-08	28123.22	=""	="ORDNANCE TECHNOLOGY SERVICE INC."	12-May-08 05:51 PM	

+="CN81761"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	26-Feb-08	26-Feb-08	23077.05	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81762"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	28-Mar-08	28-Mar-08	25256.58	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:33 PM	

+="CN81763"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	22-Apr-08	22-Apr-08	25398.17	=""	="Cybertrust Australia Pty Ltd"	12-May-08 07:33 PM	

+="CN81776"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	01-Mar-08	01-Mar-08	26807.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81779"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Apr-08	17-Apr-08	28286.95	=""	="Mastersoft International"	12-May-08 07:35 PM	

+="CN81780"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Mar-08	17-Mar-08	23770.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81789"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Telecommunications media services"	26-Feb-08	26-Feb-08	23151.24	=""	="Telstra"	12-May-08 07:36 PM	

+="CN81821"	"Codification services and publications provided to Services provided adhoc"	="Defence Materiel Organisation"	13-May-08	="Domestic pet products"	02-Nov-07	12-Dec-07	27950.18	=""	="MINISTRY OF DEFENCE"	13-May-08 11:01 AM	

+="CN81826"	"180 x hanger sets"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	28-Sep-07	31-Dec-07	22714.59	=""	="MBDA MISSILE SYSTEMS"	13-May-08 11:02 AM	

+="CN81834"	"GST ONLY PAYMENT FOR SUPPORT ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	31-Oct-07	30-Nov-07	20009.80	=""	="HONEYWELL AEROSPACE ELECTRONIC SYST"	13-May-08 11:03 AM	

+="CN81840"	"AVIATION GASOLINE"	="Defence Materiel Organisation"	13-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	09-Nov-07	19-Nov-07	23511.13	=""	="INTEROIL PRODUCTS LTD"	13-May-08 11:05 AM	

+="CN81841"	"offload diesel from HMAS BALLARAT ONTO BUNKER"	="Defence Materiel Organisation"	13-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	07-Nov-07	14-Nov-07	28542.90	=""	="KOREVAAR MARINE GROUP PTY LTD"	13-May-08 11:05 AM	

+="CN81842"	"ALSPO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	23-Aug-07	30-Jun-08	20790.89	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 11:05 AM	

+="CN81853"	"GST on Foreign Currency Payments"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	08-Nov-07	01-Feb-12	29282.51	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:07 AM	

+="CN81859"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	30-Jan-08	30-Jun-08	22732.17	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:08 AM	

+="CN81864"	"ELECTRONIC & WEAPONS SYSTEM DIVISION DUMMY PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Legal services"	31-May-07	23-Jan-08	23000.00	=""	="SPARKE HELMORE LAWYERS"	13-May-08 11:09 AM	

+="CN81877"	"GST on Foreign Exchange Payment for Submarines"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-Feb-08	30-Jun-13	27939.20	=""	="MATHER ROACH CONSULTING PTY LTD"	13-May-08 11:11 AM	

+="CN81878"	"TASK 6009-4 ASMD PHASE 2B DEC-07 INVOICE 74363 GST COMPONENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Jan-08	31-Jan-08	25583.92	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:11 AM	

+="CN81884"	"SATCOM PSAX Maintenance FY 06/07"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	04-Dec-07	30-Jun-08	27636.16	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:12 AM	

+="CN81886"	"GST on Foreign Currency Payments"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	23-Jan-08	01-Feb-12	26953.37	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:13 AM	

+="CN81898"	"GST Only - Invoice 65959"	="Defence Materiel Organisation"	13-May-08	="Taxation"	03-Oct-07	30-Jun-08	26811.33	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:14 AM	

+="CN81901"	"GST ONLY FOR INVOICE 67222"	="Defence Materiel Organisation"	13-May-08	="Satellites"	28-Nov-07	18-Dec-07	27462.95	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:15 AM	

+="CN81902"	"GST only payment for Forex Transaction in respect IFT Upgrade."	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	31-Mar-08	20649.02	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	13-May-08 11:15 AM	

+="CN81905"	"Provision of training services"	="Defence Materiel Organisation"	13-May-08	="Live Plant and Animal Material and Accessories and Supplies"	04-Oct-07	12-Jan-08	20664.00	=""	="UNI OF NSW - THE CASHIER"	13-May-08 11:15 AM	

+="CN81908"	"GST Only MS30"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	07-Jan-08	31-Oct-08	21527.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:16 AM	

+="CN81909"	"GST only payment"	="Defence Materiel Organisation"	13-May-08	="Satellites"	17-Dec-07	30-Jun-08	27073.27	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:16 AM	

+="CN81910"	"QANTAS BILL 02-244970 NOVEMBER 2007"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	30-Nov-07	30-Nov-07	27749.26	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:16 AM	

+="CN81914"	"I tercompany reimbursement for travel on behalf of DMO by Defence member"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Dec-07	18-Dec-07	20162.75	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:17 AM	

+="CN81925"	"PLANNING FUNDING"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Nov-07	31-Mar-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:18 AM	

+="CN81944"	"Repair ofr MDRI"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Nov-07	15-Feb-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:22 AM	

+="CN81964"	"Electro-Chlorination set to work HMAS MANOORA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Oct-07	15-Feb-08	21909.36	=""	="POWER PROTECTION PRODUCTS"	13-May-08 11:26 AM	

+="CN81969"	"16 DAYS OF TRAINING AND ASSISTANCE WITH BAE IBR"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Nov-07	15-Dec-07	22880.00	=""	="TERRA FIRMA PTY LTD"	13-May-08 11:27 AM	

+="CN81972"	"Spares  of equipment"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	14-Nov-07	31-Jan-08	29980.50	=""	="BELLINGER INSTRUMENTS PTY LTD"	13-May-08 11:28 AM	

+="CN81977"	"PROCUREMENT OF QUANTITY 17 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	02-Nov-07	30-May-08	23762.64	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 11:29 AM	

+="CN81985"	"Ethernet Junction Boxes"	="Defence Materiel Organisation"	13-May-08	="Hardware"	19-Nov-07	30-Jun-08	29282.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:31 AM	

+="CN81993"	"DPNU Fabric"	="Defence Materiel Organisation"	13-May-08	="Fabrics and leather materials"	16-Nov-07	07-Dec-07	24000.00	=""	="BRUCK TEXTILES PTY LTD"	13-May-08 11:32 AM	

+="CN82019"	"NT Intel Cognos DecisiponStream Engine. Standard Support renewal between 01/07/07-30/06/07 at153680"	="Defence Materiel Organisation"	13-May-08	="Software"	19-Nov-07	14-Dec-07	27295.64	=""	="COGNOS PTY LTD"	13-May-08 11:35 AM	

+="CN82022"	"Annual subscription to Auscope Ltd"	="Geoscience Australia"	13-May-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	30-Jun-08	20625.00	=""	="AuScope"	13-May-08 11:36 AM	

+="CN82023"	"prototype trailer safety chain mount"	="Defence Materiel Organisation"	13-May-08	="Vehicle bodies and trailers"	19-Nov-07	30-May-09	23222.43	=""	="MACK TRUCKS AUSTRALIA"	13-May-08 11:36 AM	

+="CN82028"	"Sponsorship for EMA Disaster Conference 2009"	="Geoscience Australia"	13-May-08	="Meeting facilities"	04-Apr-08	17-Apr-08	22000.00	=""	="Attorney-General's Department"	13-May-08 11:36 AM	

+="CN82030"	"Hire of Reson 8101 Multibeam echosounder. Hire includes Qinsy acquisition system (Operational Hire)"	="Geoscience Australia"	13-May-08	="Tools and General Machinery"	08-Apr-08	30-Jun-08	23004.70	=""	="Seatronics Pte Ltd"	13-May-08 11:37 AM	

+="CN82035"	"Norfolk ATWS Installation"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	08-Apr-08	31-May-08	22000.00	=""	="Norfolk Computer Consultancy & Repairs"	13-May-08 11:37 AM	

+="CN82039"	"Data access fees for Landsat data downlink by (AUSLIG) Geoscience Australia during Fiscal year 2008. TRIM Ref 2008/426 & 2004/658."	="Geoscience Australia"	13-May-08	="Telecommunications media services"	08-Apr-08	30-Jun-08	26962.90	=""	="US Dept of the Interior - USGS"	13-May-08 11:38 AM	

+="CN82052"	"Annual membership contribution for WASTAC X BAND for 2008."	="Geoscience Australia"	13-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-Dec-08	22000.00	=""	="Curtin University of Technology"	13-May-08 11:39 AM	

+="CN82058"	"PRESSURE SWITCH"	="Defence Materiel Organisation"	13-May-08	="Aircraft power systems"	15-Nov-07	17-Dec-07	25824.08	=""	="DOWTY PROPELLERS"	13-May-08 11:39 AM	

+="CN82063"	"Norfolk ATWS Installation"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	31-May-08	20000.00	=""	="Norfolk Computer Consultancy & Repairs"	13-May-08 11:40 AM	

+="CN82064"	"ESP Certification Process for the Harpoon Missile"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	16-Nov-07	30-Jun-08	24712.00	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:40 AM	

+="CN82075"	"Reimbursement costs of UNISEA 2007"	="Geoscience Australia"	13-May-08	="Passenger air transportation"	14-Apr-08	30-Jun-08	25000.00	=""	="University of Sydney"	13-May-08 11:41 AM	

+="CN82077"	"Contract services for completion of the Status Report on the Spatial Enablement of Australia Government (SEAG) report 2008."	="Geoscience Australia"	13-May-08	="Business and corporate management consultation services"	14-Apr-08	30-Jun-08	22000.00	=""	="Spatial Strategies Pty Ltd"	13-May-08 11:41 AM	

+="CN82083"	"Barngarla Claimants Clearance Survey"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	16-Apr-08	30-Jun-08	22000.00	=""	="Teitzel & Partners"	13-May-08 11:42 AM	

+="CN82093"	"IQ TASK"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	23-Apr-08	30-Jun-08	26051.13	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 11:43 AM	

+="CN82095"	"INVENTORY & SUPPLY CHAIN REIEW"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	12-Nov-07	30-Jun-08	23119.54	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	13-May-08 11:43 AM	

+="CN82116"	"Pilot Study to Assess Remotely Sensed Imagery Products Derived from the OVERLAND Land Cover Analysis Tool.  CMC # G2365."	="Geoscience Australia"	13-May-08	="Business and corporate management consultation services"	22-Apr-08	31-Jul-08	28950.00	=""	="Spot Imaging Services"	13-May-08 11:45 AM	

+="CN82126"	"Barngarla Claimants Clearance Survey"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	24-Apr-08	30-Apr-08	20500.00	=""	="Teitzel & Partners"	13-May-08 11:46 AM	

+="CN82129"	"ERDAS Imagine maintenance renewal"	="Geoscience Australia"	13-May-08	="Software"	29-Apr-08	01-May-08	23050.50	=""	="Leica Geosystems GIS & Mapping Pty Limited"	13-May-08 11:46 AM	

+="CN82140"	"TRAVEL FOR PROFESSIONAL SERVICE PROVIDERS"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Mar-08	22000.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 11:48 AM	

+="CN82142"	"VMF Lab PABX"	="Defence Materiel Organisation"	13-May-08	="Detective services"	18-May-07	31-Dec-08	26241.82	=""	="TELSTRA"	13-May-08 11:49 AM	

+="CN82152"	"FREIGHT COST FOR A04 CARIBOU"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	17-Jul-06	30-Jun-09	20502.36	=""	="TOLL PRIORITY"	13-May-08 11:50 AM	

+="CN82182"	"Telephone account"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	21-Aug-07	30-Jun-08	28485.53	=""	="TELSTRA"	13-May-08 11:55 AM	

+="CN82188"	"REPAIR OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	12-Oct-07	05-Jun-08	22354.05	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:56 AM	

+="CN82191"	"PROCUREMENT OF QUANTITY 24 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	12-Nov-07	30-Apr-08	29242.82	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 11:56 AM	

+="CN82196"	"PLANNED MAINTENANCE SUPPORT FOR MINE WARFARE EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	23-Apr-08	06-Jun-08	24113.07	=""	="BIRDON MARINE PTY LTD"	13-May-08 11:57 AM	

+="CN82206"	"To be installed at the Woomera Test Facility Launc"	="Defence Materiel Organisation"	13-May-08	="Fall protection and rescue equipment"	06-Mar-08	04-Apr-08	21989.00	=""	="HALLWELD BENNETT SALES PTY LTD"	13-May-08 11:58 AM	

+="CN82209"	"MODIFICATION OF THE LAUNCH AND RECOVERY VEHICLE POD"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	12-Nov-07	30-Jun-09	23760.00	=""	="RPC TECHNOLOGIES PTY LTD"	13-May-08 11:58 AM	

+="CN82210"	"300GB Disk Drives"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	06-Mar-08	30-May-08	25489.00	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	13-May-08 11:58 AM	

+="CN82213"	"MISC ENGINEERING SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	12-Nov-07	30-Jun-08	22000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 11:58 AM	

+="CN82245"	"CONDITIONS OF CONTRACT: In accordance with the Agr November 2001. Note: In accordance with INCOTERMS"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	02-Aug-07	02-Jun-08	20003.21	=""	="FN HERSTAL SA"	13-May-08 12:01 PM	

+="CN82252"	"Contractor Assistance"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	06-Mar-08	28-Mar-08	29608.89	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 12:01 PM	

+="CN82266"	"Equipment Required"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	05-Mar-08	28-Mar-08	27562.70	=""	="JENKINS ENGINEERING DEFENCE"	13-May-08 12:02 PM	

+="CN82267"	"Use of Exisitng ASP Contract.2 Impellors Sewage Treatment Plant"	="Defence Materiel Organisation"	13-May-08	="Refuse disposal and treatment"	15-Jan-08	28-Feb-08	21554.87	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:03 PM	

+="CN82274"	"WIRE ADJUSTER ASSY"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	05-Mar-08	19-Mar-08	21393.90	=""	="MEL AVIATION LTD"	13-May-08 12:03 PM	

+="CN82277"	"Thir order is placed in accordance with the terms pricelist emailed by Amanda Grindrod (caltex) to A"	="Defence Materiel Organisation"	13-May-08	="Lubricants and oils and greases and anti corrosives"	16-Jan-08	25-Jan-08	28260.79	=""	="CALTEX AUSTRALIA PETROLEUM P / L"	13-May-08 12:03 PM	

+="CN82306"	"Repair of MDI S/NO 1034"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	05-Mar-08	01-Sep-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:06 PM	

+="CN82318"	"Power Units (DAHA)"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	07-Mar-08	30-Jun-08	26191.00	=""	="POWERBOX AUST PTY LTD"	13-May-08 12:07 PM	

+="CN82321"	"4516.29 HMAS WARRA AVAITION CONDITION ASSESSMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	07-Mar-08	14-Apr-08	22074.80	=""	="BEAK RAST ENGINEERING"	13-May-08 12:07 PM	

+="CN82329"	"MASK, GAS"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	11-Jan-08	11-Aug-08	25577.33	=""	="SP DEFENSE"	13-May-08 12:08 PM	

+="CN82331"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVIATION FU OF DEFENCE DURING FINANCIAL YEAR 07/08."	="Defence Materiel Organisation"	13-May-08	="Fuels"	11-Jan-08	30-Jun-08	20284.00	=""	="AIRLINES OF TASMANIA PTY LTD"	13-May-08 12:08 PM	

+="CN82337"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	11-Jan-08	30-Jun-08	22150.00	=""	="MINTER ELLISON"	13-May-08 12:09 PM	

+="CN82388"	"Cisco Switches"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	06-Mar-08	20-Mar-08	21134.08	=""	="ALPHAWEST SERVICES PTY LTD"	13-May-08 12:13 PM	

+="CN82396"	"Supply Six-Way Cougarnet Chargers HMAS MANOORA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	30-May-08	28474.60	=""	="EYLEX PTY LTD"	13-May-08 12:14 PM	

+="CN82416"	"PREPARE AND PRESERVE TANK DECK BLKHD HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Jan-08	08-Feb-08	25118.50	=""	="FAVCOTE PTY LTD"	13-May-08 12:15 PM	

+="CN82428"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	15-Feb-08	21392.60	=""	="KPMG AUSTRALIA"	13-May-08 12:17 PM	

+="CN82434"	"Flange Tube"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	19-Jan-08	15-May-08	22594.28	=""	="GE AVIATION SYSTEMS LLC DBA GE AVIA"	13-May-08 12:17 PM	

+="CN82439"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Feb-08	28-Apr-08	28714.87	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:18 PM	

+="CN82441"	"UHFMILSATCOM"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	29-Feb-08	30-May-08	20350.00	=""	="SPIRIT RIVER PTY LTD"	13-May-08 12:18 PM	

+="CN82456"	"Computer programming trianing"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	28-Feb-08	07-Mar-08	27225.00	=""	="SAS INSTITUTE AUST PTY LTD"	13-May-08 12:19 PM	

+="CN82459"	"AMR AUX SALT WATER CIRC PP HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Jan-08	08-Feb-08	24567.40	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:19 PM	

+="CN82462"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	27-Jul-08	21043.54	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:20 PM	

+="CN82464"	"Supply and installation of airconditioning units"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	29-Feb-08	28-Mar-08	22800.01	=""	="ASSIST BUILDING & MAINTENANCE"	13-May-08 12:20 PM	

+="CN82479"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	13-May-08	="Fuels"	18-Jan-08	30-Jun-08	21265.20	=""	="UNIVERSAL WEATHER AND AVIATION INC"	13-May-08 12:22 PM	

+="CN82489"	"Installation of a fibre optic connection"	="Defence Materiel Organisation"	13-May-08	="Electrical wire and cable and harness"	18-Jan-08	30-Jun-08	29000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:23 PM	

+="CN82492"	"Contractor Assistance"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Feb-08	28-Mar-08	21708.54	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 12:23 PM	

+="CN82506"	"Detiled Design Pack- Long Range Acoustic Device (LRAD) Mounting Brackets for HMAS Sydney"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	30-Apr-08	20640.40	=""	="ADVITECH PTY LTD"	13-May-08 12:24 PM	

+="CN82508"	"Modifications to LRV"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	28-Feb-08	31-Mar-08	24039.42	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	13-May-08 12:24 PM	

+="CN82517"	"Hire of Rigger/Crane for ILS Repairs"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	07-Jan-08	18-Jan-08	20468.91	=""	="AIRSERVICES AUSTRALIA"	13-May-08 12:25 PM	

+="CN82518"	"Vehicle Lease"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	28-Feb-08	02-Feb-10	29580.00	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 12:25 PM	

+="CN82523"	"Use of Exisitng ASP Contract. Providision of 6 & 12 Spare Kits for Purifiers"	="Defence Materiel Organisation"	13-May-08	="Fuel tanks and systems"	07-Jan-08	31-Mar-08	29718.29	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:25 PM	

+="CN82534-A1"	"Consultancy on Statistical Issues in Industry Analysis"	="Defence Materiel Organisation"	13-May-08	="Management advisory services"	28-Feb-08	15-May-09	30000.00	=""	="DES NICHOLLS"	13-May-08 12:26 PM	

+="CN82538"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Jun-08	25355.73	=""	="PILATUS AIRCRAFT LTD"	13-May-08 12:27 PM	

+="CN82539"	"THIS ORDER IS PLACED IAW CAPO 439169"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	08-Jan-08	30-Dec-08	29485.28	=""	="RLM PTY LTD"	13-May-08 12:27 PM	

+="CN82543"	"P5085-001 HMAS WARRAMUNGA DSRA04/IMAV05"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	08-Jan-08	31-Jan-08	26501.06	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:27 PM	

+="CN82549"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	08-Jan-08	08-Jan-08	20546.17	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	13-May-08 12:28 PM	

+="CN82553"	"POC: AARON JOY CONTACT: 02 626 69320"	="Defence Materiel Organisation"	13-May-08	="Software"	08-Jan-08	29-Jan-08	23923.36	=""	="SPLUNK INC."	13-May-08 12:28 PM	

+="CN82555"	"GRENADE LAUNCHER"	="Defence Materiel Organisation"	13-May-08	="Firearms"	08-Jan-08	30-Mar-08	27910.58	=""	="KNIGHTS ARMAMENT COMPANY"	13-May-08 12:28 PM	

+="CN82574"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	03-Mar-08	09-Apr-08	24332.00	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	13-May-08 12:30 PM	

+="CN82580"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	03-Mar-08	03-Mar-08	29700.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	13-May-08 12:31 PM	

+="CN82585"	"CYLINDER SLEEVE"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	22-Dec-07	21-Jan-08	28633.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 12:31 PM	

+="CN82590"	"Various electrical maintenance tasks STS Young Endeavour"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Mar-08	30-Apr-08	28488.35	=""	="SHORESIDE ELECTRICAL SERVICES PTY"	13-May-08 12:31 PM	

+="CN82595"	"Various maintenance routines and additional mechnical work  STS Young Endeavour"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Mar-08	30-Apr-08	23801.80	=""	="THOMSON MARINE SERVICES"	13-May-08 12:32 PM	

+="CN82602"	"ESSM TEST SET CCA CALIBRATION"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	04-Mar-08	30-Apr-08	21265.20	=""	="NATO SEASPARROW SURFACE MISSILE"	13-May-08 12:33 PM	

+="CN82603"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	03-Mar-08	03-Mar-08	21645.03	=""	="SYPAQ SYSTEMS PTY LTD"	13-May-08 12:33 PM	

+="CN82632"	"Soft toys"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Fabrics and leather materials"	21-Dec-07	21-Dec-07	25960.57	=""	="Korimco Toys"	13-May-08 12:36 PM	

+="CN82633"	"Emergent Work IAW Quotation 4857 and 5267"	="Defence Materiel Organisation"	13-May-08	="Fire fighting equipment"	03-Mar-08	07-Mar-08	23637.14	=""	="R G M MAINTENANCE PTY LTD"	13-May-08 12:36 PM	

+="CN82643"	"SUPPLY OF GROUND FUELS TO THE DOD"	="Defence Materiel Organisation"	13-May-08	="Fuels"	29-Feb-08	30-Jun-08	24904.00	=""	="BARKLY HOMESTEAD WAYSIDE INN"	13-May-08 12:37 PM	

+="CN82648"	"LEAD FLYING"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	18-Mar-08	01-Oct-08	23125.91	=""	="LCF SYSTEMS INC"	13-May-08 12:38 PM	

+="CN82663"	"NGEOSPO Ass Ops Management Services - Jacqui"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	18-Mar-08	30-Apr-08	23232.00	=""	="PLANPOWER PTY LTD"	13-May-08 12:41 PM	

+="CN82664"	"PROJECT PLANNING ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	18-Mar-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:41 PM	

+="CN82667"	"EMC Test Assessment on HMAS Darwin"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Mar-08	30-Apr-08	27188.70	=""	="JENKINS ENGINEERING DEFENCE"	13-May-08 12:41 PM	

+="CN82668"	"PROJECT PLANNING ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	18-Mar-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:41 PM	

+="CN82670"	"Repair and overhaul of F/A-18 HPT Rotor"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	30-Sep-08	22922.87	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:42 PM	

+="CN82672"	"Repair and overhaul of F/A-18 HPT Rotor"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	30-Sep-08	22922.87	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 12:42 PM	

+="CN82683"	"Conduct Shock Testing of baseLINE Server and Data Logger Cabinets Assembly"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-Apr-08	29242.55	=""	="RELEGEN PTY LTD"	13-May-08 12:43 PM	

+="CN82686"	"AASSPO CMMI  Training"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	14-Mar-08	30-Apr-08	21456.00	=""	="GRIFFITH UNIVERSITY"	13-May-08 12:44 PM	

+="CN82689-A1"	" Salaries RAAF Reserve member - Defence Export Unit "	="Defence Materiel Organisation"	13-May-08	="Human resources services"	14-Mar-08	30-Jun-08	21775.50	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:44 PM	

+="CN82690"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	21775.50	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:44 PM	

+="CN82704"	"Anend TMS 5121-RAN-027 Inspect and Test Vents Syst ems R01-1731 and R01-147-1 Communication Centre"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Mar-08	28-Jun-08	24414.08	=""	="THALES AUSTRALIA"	13-May-08 12:46 PM	

+="CN82705"	"HARVEY NORMAN FYSHWICK COMPUTERS QUOTATION NUMBER -  HNCQ 2079  DATED 13 MARCH 2008"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	17-Mar-08	30-Jun-08	25982.08	=""	="HARVEY NORMAN COMPUTER SUPERSTORE"	13-May-08 12:46 PM	

+="CN82708"	"TRAVEL TO USA FOR ACCEPTANCE TESTING HACTS"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	19-Mar-08	30-Jun-08	24462.50	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:47 PM	

+="CN82726"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	20-Mar-08	30-May-08	26994.00	=""	="INTERWORLD ELECTRONICS &"	13-May-08 12:49 PM	

+="CN82741"	"Travel Cost"	="Defence Materiel Organisation"	13-May-08	="Accommodation furniture"	18-Mar-08	30-Jun-09	22000.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 12:51 PM	

+="CN82744"	"OUTSTANDING TOLL VIOLATIONS"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	18-Mar-08	31-Dec-08	30000.00	=""	="INTERLINK ROADS"	13-May-08 12:52 PM	

+="CN82746"	"Completion of Initial Environmental Review"	="Defence Materiel Organisation"	13-May-08	="Environmental control systems"	18-Mar-08	02-May-08	22115.50	=""	="GHD PTY LTD"	13-May-08 12:52 PM	

+="CN82748"	"PROJECT PLANNING ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	18-Mar-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:52 PM	

+="CN82755"	"REPAIR RECEIVER ASSY"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	18-Mar-08	30-Jul-08	27554.38	=""	="LOCKHEED MARTIN CORP"	13-May-08 12:53 PM	

+="CN82758"	"On-site training in Apollo Root cause Analysis"	="Defence Materiel Organisation"	13-May-08	="Vocational training"	18-Mar-08	09-Apr-08	22000.00	=""	="ARMS RELIABILITY ENGINEERS"	13-May-08 12:54 PM	

+="CN82760"	"post amp urdef rectifiction hmas shepparton"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	30-Jun-08	20340.12	=""	="G A GLANVILLE & CO"	13-May-08 12:54 PM	

+="CN82762"	"post amp urdef rectifiction"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	30-Jun-08	20472.12	=""	="G A GLANVILLE & CO"	13-May-08 12:54 PM	

+="CN82766"	"Conditions of IMS Contract, CAPO No: CON(MS)W01-12 this deliverable."	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	12-Mar-08	30-Jun-08	29617.34	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:55 PM	

+="CN82781"	"Frankonia EMC Camera System"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Mar-08	30-Apr-08	22157.00	=""	="WESTEK ELECTRONICS PTY LTD"	13-May-08 12:57 PM	

+="CN82785"	"COMPUTERS"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	12-Mar-08	31-Mar-08	20150.01	=""	="HARRIS TECHNOLOGY"	13-May-08 12:57 PM	

+="CN82792"	"PAPER & TOP SECRET OPTICAL MEDIA SHREDDER"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	12-Mar-08	30-Jun-08	25036.83	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	13-May-08 12:58 PM	

+="CN82797"	"Repair of MDI S/NO 1125"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	11-Mar-08	11-Jul-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:59 PM	

+="CN82805"	"PURCHASE OF IT EQUIPMENT ANZAC SPO"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	10-Mar-08	30-Apr-08	26457.20	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	13-May-08 01:00 PM	

+="CN82815"	"Repair of Qty 4 45KVA Generators"	="Defence Materiel Organisation"	13-May-08	="Power Generation and Distribution Machinery and Accessories"	11-Mar-08	18-Apr-08	26565.00	=""	="HYDENG PTY LTD"	13-May-08 01:02 PM	

+="CN82829"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	13-Mar-08	29-Apr-08	20079.40	=""	="SKF AUSTRALIA PTY LTD"	13-May-08 01:04 PM	

+="CN82832"	"Use of Exisitng ASP Contract.- Install and Update Tank Radar Software"	="Defence Materiel Organisation"	13-May-08	="Fuel tanks and systems"	13-Mar-08	17-Apr-08	23121.95	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:04 PM	

+="CN82835"	"Repair of HSD S/No 1016"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	13-Mar-08	11-Jul-08	21265.20	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 01:05 PM	

+="CN82841"	"PROTECTIVE COAT FINISH PAINT-LCM8 ARMY MARINE"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	14-Mar-08	26-Mar-08	25134.34	=""	="AKZO NOBEL PTY LTD"	13-May-08 01:05 PM	

+="CN82843"	"ANZAC SPO Hardware Buy"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-Jun-08	24061.40	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	13-May-08 01:06 PM	

+="CN82846"	"Furniture for 37 McNicholl St"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-Jun-08	22815.10	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	13-May-08 01:06 PM	

+="CN82847"	"HIRE OF CONFERENCE FACILITIES FOR THE DMO FINANCE FORUM IN APR 08"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	14-Mar-08	30-May-08	23750.00	=""	="QUEANBEYAN CONFERENCE CENTRE"	13-May-08 01:06 PM	

+="CN82865"	"Provide Admin Support to COS Phase 2"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	12-Mar-08	27-Jun-08	22572.00	=""	="ACTIVE RECRUITMENT"	13-May-08 01:08 PM	

+="CN82877"	"Modifications to LRV"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	13-Mar-08	30-Apr-08	26807.45	=""	="RPC TECHNOLOGIES PTY LTD"	13-May-08 01:10 PM	

+="CN82882"	"DESO 20/22 HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	13-Mar-08	30-Mar-08	28662.92	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:11 PM	

+="CN82887"	"Adapter, Aircraft Towing"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	13-Feb-08	21-Apr-08	21222.67	=""	="AEROSPACE MANUFACTURING INCORPORATE"	13-May-08 01:11 PM	

+="CN82901"	"eMIMS Pharmaceutical Software Licences"	="Defence Materiel Organisation"	13-May-08	="Computer services"	13-Feb-08	31-Mar-08	30000.00	=""	="CMPMEDICA AUSTRALIA PTY"	13-May-08 01:13 PM	

+="CN82913"	"RENEW FLIGHT DECK NETS HMAS MANOORA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Apr-08	02-May-08	23699.50	=""	="A NOBLE & SON (NSW) PTY LTD"	13-May-08 01:32 PM	

+="CN82914"	"REPAIR OF VISER POWER SUPPLIES AT MEDIUM REPAIR FACILITIES. IN ACCORDANCE WITH CONTRACT C439136"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	18-Apr-08	02-Jun-08	29157.00	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 01:32 PM	

+="CN82920"	"Engineering Investigation- GTRB Module Drains Conc eptual Design Development"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	23-Apr-08	10-Jun-08	21170.22	=""	="THALES AUSTRALIA"	13-May-08 01:33 PM	

+="CN82922"	"Woomera Test Facility"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	23-Apr-08	31-Oct-08	22000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:33 PM	

+="CN82925"	"Night Vision Equipment"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	23-Apr-08	02-Jan-09	23563.60	=""	="ITT CORPORATION"	13-May-08 01:34 PM	

+="CN82937"	"Dehumidifier"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	23-Apr-08	04-Jun-08	21926.30	=""	="ENVIRO-TRONICS"	13-May-08 01:36 PM	

+="CN82953"	"Warden Conformance Standards Testing"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	22-Apr-08	17-Jun-08	29804.90	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 01:39 PM	

+="CN82960"	"Computer Monitors"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	21-Apr-08	13-May-08	21879.00	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 01:40 PM	

+="CN82979"	"CONFERENCE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	15-Apr-08	25-May-08	21265.20	=""	="EMBASSY OF AUSTRALIA"	13-May-08 01:43 PM	

+="CN82981"	"Supply and deliver quantity 30 ea Infra Red Driving Light"	="Defence Materiel Organisation"	13-May-08	="Lamps and lightbulbs and lamp components"	15-Apr-08	20-May-08	27692.28	=""	="OXLEY GROUP AUSTRALIA PTY LTD"	13-May-08 01:43 PM	

+="CN82985"	"QTY 5 FM DEMODULATOR & 19" ADAPTER FOR SPECTRUM ANALYSER FSP3."	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	15-Apr-08	10-Jun-08	22000.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	13-May-08 01:43 PM	

+="CN83001"	"Temp Datum Test Set"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	16-Apr-08	12-Sep-08	23072.74	=""	="CELTECH CORPORATION"	13-May-08 01:46 PM	

+="CN83002"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	15-Apr-08	15-Apr-08	29988.00	=""	="KAZ GROUP PTY LTD"	13-May-08 01:46 PM	

+="CN83004"	"Conference"	="Defence Materiel Organisation"	13-May-08	="Project management"	15-Apr-08	06-May-08	22907.50	=""	="EMERGENCY MANAGEMENT AUSTRALIA"	13-May-08 01:46 PM	

+="CN83013"	"PANEL, WINDSHIELD"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	15-Apr-08	20-Sep-08	26263.59	=""	="HELICOPTER SUPPORT INC"	13-May-08 01:47 PM	

+="CN83016"	"Bushing Sleeve"	="Defence Materiel Organisation"	13-May-08	="Bearings and bushings and wheels and gears"	14-Apr-08	16-May-08	23008.41	=""	="SKF USA INC"	13-May-08 01:48 PM	

+="CN83019"	"SOFTWARE LICENSE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	14-Apr-08	30-Jun-08	25010.56	=""	="KAZ GROUP PTY LTD"	13-May-08 01:48 PM	

+="CN83026"	"Modifications to LRV"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	15-Apr-08	30-Jun-08	28601.17	=""	="RPC TECHNOLOGIES PTY LTD"	13-May-08 01:49 PM	

+="CN83031"	"DSTO T&E Activities"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	15-Apr-08	30-Jun-08	28920.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:50 PM	

+="CN83034"	"HMAS Sydney- Detailed Design Package for Replace- ment of NAVTEX Receiver"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	15-Apr-08	30-Jun-08	29065.00	=""	="THALES AUSTRALIA"	13-May-08 01:50 PM	

+="CN83037"	"QTY: 4 x P/N: 170835, 'MANIFOLD, SAFETY, FLOW & PRESSURE', FOR AS350BA SQUIRREL HELICO"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Apr-08	05-Aug-08	28710.66	=""	="ASTRITE PTY LTD"	13-May-08 01:51 PM	

+="CN83042"	"TAAATS Contract Renewal"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	17-Apr-08	07-May-08	25570.60	=""	="AIRSERVICES AUSTRALIA"	13-May-08 01:51 PM	

+="CN83056"	"NUT"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	17-Apr-08	01-Jan-09	24378.15	=""	="ROLLS - ROYCE PLC"	13-May-08 01:54 PM	

+="CN83069"	"RADIO INTERFACE CABLE - PART EOD9 SUITS"	="Defence Materiel Organisation"	13-May-08	="Safety apparel"	16-Apr-08	08-May-08	28565.68	=""	="EXPLOSIVE PROTECTIVE EQUIPMENT"	13-May-08 01:55 PM	

+="CN83074"	"additional classification services for HS and SML'"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	30-Jun-08	26026.00	=""	="LLOYDS REGISTER OF SHIPPING"	13-May-08 01:56 PM	

+="CN83077"	"4516.39 CONDUCT CONDITION ASSESSMENT ON DIESEL SYSTEMS ON HMAS ARUNTA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Apr-08	30-May-08	28827.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 01:57 PM	

+="CN83081"	"CATALYST 3750g SWITCHES AND CONNECTORS"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Apr-08	30-Apr-08	28634.93	=""	="ALPHAWEST SERVICES PTY LTD"	13-May-08 01:57 PM	

+="CN83082"	"TOB- REPAIR RE TRANS UNIT GYRO HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Apr-08	09-May-08	21641.05	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:57 PM	

+="CN83092"	"Maintenance of CS5600"	="Defence Materiel Organisation"	13-May-08	="Flight communications related systems"	16-Apr-08	30-May-08	22329.21	=""	="JENKINS ENGINEERING DEFENCE"	13-May-08 01:59 PM	

+="CN83093"	"PROVISION OF TRAINING COURSES FOR PROJECT COST ESTIMATION"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Apr-08	30-Apr-08	24750.00	=""	="LEADER GROUP"	13-May-08 01:59 PM	

+="CN83096"	"Lvl 9, Defence Plaza, Pitt St, Sydney"	="Defence Materiel Organisation"	13-May-08	="Software"	23-Apr-08	30-Jun-08	20959.88	=""	="KAZ GROUP PTY LTD"	13-May-08 01:59 PM	

+="CN83098"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-May-08	30-Sep-08	23445.77	=""	="PILATUS AIRCRAFT LTD"	13-May-08 01:59 PM	

+="CN83106"	"RF Terminal Power Supply"	="Defence Materiel Organisation"	13-May-08	="Satellites"	01-May-08	31-Jul-08	26950.00	=""	="EM SOLUTIONS PTY LTD"	13-May-08 02:00 PM	

+="CN83116"	"Fairing Assy"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	01-May-08	15-Jun-08	25836.59	=""	="AGUSTAWESTLAND LTD"	13-May-08 02:02 PM	

+="CN83137"	"ArcGIS Licences"	="Defence Materiel Organisation"	13-May-08	="Software"	30-Apr-08	30-May-08	23389.30	=""	="ESRI AUSTRALIA PTY LTD"	13-May-08 02:05 PM	

+="CN83138"	"LEASE OF BRANCH POOL VEHICLE"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	30-Apr-08	18-Jan-09	28542.20	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:05 PM	

+="CN83139"	"Negotiation Skills Refresher Workshop"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	30-Apr-08	30-Jun-08	28380.00	=""	="SCOTWORK NEGOTIATING SKILLS"	13-May-08 02:05 PM	

+="CN83165"	"SERVICE OF PHILLIPS FOX TRAINING"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	05-May-08	30-Jun-08	29999.45	=""	="PHILLIPS FOX SYDNEY"	13-May-08 02:09 PM	

+="CN83169"	"Tenix Day to Day Activities FY07/08"	="Defence Materiel Organisation"	13-May-08	="Commercial marine craft"	05-May-08	30-Jun-08	22000.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:09 PM	

+="CN83189"	"Replacement Pool Vehicle Holden VE Omega Sedan"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Apr-10	27794.30	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:12 PM	

+="CN83204"	"SERVICE CATERING TRUCK, REG 235568"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	03-May-08	28-Jun-08	24090.00	=""	="SERVICEWORKS AUSTRALIA PTY LTD"	13-May-08 02:16 PM	

+="CN83206"	"SDSS IT Controls Framework Self Assessment Testing"	="Defence Materiel Organisation"	13-May-08	="Computer services"	02-May-08	23-May-08	24225.00	=""	="DIMENSION DATA LEARNING"	13-May-08 02:16 PM	

+="CN83208"	"Produce Planned Maintenance documentation for FFG Ordnance Pallet hand trucks"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Jun-08	21714.00	=""	="CAPABILITY BY DESIGN"	13-May-08 02:16 PM	

+="CN83216"	"4516.17 FLUID COUPLING RPCA  EUR"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Jun-08	22780.99	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:18 PM	

+="CN83221"	"Budget Review & Report"	="Defence Materiel Organisation"	13-May-08	="Management support services"	24-Apr-08	02-May-08	23100.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-May-08 02:19 PM	

+="CN83220"	"    Recruitment Advertising    "	="Therapeutic Goods Administration"	13-May-08	="Recruitment services"	01-Jan-08	30-Jun-08	20588.04	=""	="HMA Blaze Pty Ltd"	13-May-08 02:19 PM	

+="CN83226"	"WA Periscope Workshop- Task 10 Clean Room Advanced Equipment"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	24-Apr-08	30-Jun-08	20636.26	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:19 PM	

+="CN83227"	"SERVICE CATERING TRUCK, REG 232906"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	24-Apr-08	16-Jun-08	23595.00	=""	="HAWKESBURY HYDRAULICS"	13-May-08 02:20 PM	

+="CN83238"	"OVERHAUL AFFF VALVES - HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Apr-08	20-Jun-08	26312.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 02:22 PM	

+="CN83243"	"Use of Exisitng ASP Contract  - Overhaul No 2 Fire bilge general service pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	24-Apr-08	11-Jul-08	23624.70	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:22 PM	

+="CN83246"	"TASR MECHANICAL MAINTENANCE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	24-Apr-08	17-May-08	26660.54	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:23 PM	

+="CN83250"	"PAYMENT OF LEGAL FEES - REF CN5297177"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	24-Apr-08	30-Jun-08	20000.00	=""	="SLATER & GORDON PTY LTD"	13-May-08 02:23 PM	

+="CN83262"	"Support and test equipment"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	23-Apr-08	30-May-08	24434.98	=""	="ASC PTY LTD"	13-May-08 02:25 PM	

+="CN83267"	"POC: TREVOR THORNE CONTACT: 02 626 65707"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	26596.12	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 02:26 PM	

+="CN83268"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	24-Apr-08	30-Jun-08	29632.20	=""	="BLAKE DAWSON WALDRON"	13-May-08 02:26 PM	

+="CN83283"	"Use of Exisitng ASP Contract  - Overhaul No 1 Fire bilge general service pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	29-Apr-08	11-Jul-08	23624.37	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:28 PM	

+="CN83291"	"INDEPENDANT ADVICE"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	29-Apr-08	29249.99	=""	="MACROECONOMICS.COM.AU PTY LTD"	13-May-08 02:29 PM	

+="CN83293"	"Various Electrical Components"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	29-Apr-08	28-May-08	27703.17	=""	="ROJONE PTY LTD"	13-May-08 02:30 PM	

+="CN83294"	"NOISE AND FLIGHT PLAN MONITORING SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	29-Apr-08	30-Jun-08	27500.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:30 PM	

+="CN83307"	"Support-AMC SDV and Maintenance 1 year (with AMC)"	="Defence Materiel Organisation"	13-May-08	="Software"	29-Apr-08	30-Apr-08	23892.00	=""	="SECURE SYSTEMS LTD"	13-May-08 02:32 PM	

+="CN83309"	"INSTALLATION OF SPLIT SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Apr-08	30-May-08	22936.76	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:32 PM	

+="CN83328"	"Preparation Room"	="Defence Materiel Organisation"	13-May-08	="Environmental management"	29-Apr-08	20-Jun-08	28930.00	=""	="ARDEN PTY LTD"	13-May-08 02:35 PM	

+="CN83347"	"Server Racks"	="Defence Materiel Organisation"	13-May-08	="Hardware"	01-Apr-08	24-Apr-08	22792.00	=""	="SERVER RACKS AUSTRALIA"	13-May-08 02:38 PM	

+="CN83356"	"TerraExplorerPro Software Licence Renewal"	="Defence Materiel Organisation"	13-May-08	="Software"	01-Apr-08	30-Jun-08	25872.00	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	13-May-08 02:39 PM	

+="CN83370"	"$19443.94 removed from Purchase Order 4500630262 L $8642.98 removed from Purchase Order 4500631938 L"	="Defence Materiel Organisation"	13-May-08	="Industrial Cleaning Services"	01-Apr-08	30-Apr-08	28086.92	=""	="DEPARTMENT OF DEFENCE"	13-May-08 02:41 PM	

+="CN83371"	"Modifications to LRV"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	01-Apr-08	30-Jun-08	27913.55	=""	="RPC TECHNOLOGIES PTY LTD"	13-May-08 02:41 PM	

+="CN83400"	"Conduct Pre-EMA In-Water Hull Survey & Ultra Sonic Thickness Testing on HMAS Balikpapan"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	31-Mar-08	31-May-08	22340.40	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:46 PM	

+="CN83402"	"Communications Equipment"	="Defence Materiel Organisation"	13-May-08	="Satellites"	31-Mar-08	30-Apr-08	21643.44	=""	="DIGITAL STUDIO PTY LTD"	13-May-08 02:46 PM	

+="CN83406"	"HID?LED Dual Searchlight"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	02-Apr-08	30-Jun-08	21600.00	=""	="AEROSPACE AND DEFENCE PRODUCTS"	13-May-08 02:47 PM	

+="CN83421"	"TOOLS FOR POD SHOP."	="Defence Materiel Organisation"	13-May-08	="Hand tools"	03-Apr-08	20-May-08	25467.08	=""	="J BLACKWOOD & SON LTD"	13-May-08 02:49 PM	

+="CN83422"	"COMMUNICATION EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Hardware"	03-Apr-08	30-Apr-08	22038.50	=""	="STANFORD TECHNOLOGIES PTY LTD"	13-May-08 02:50 PM	

+="CN83432"	"    Evaluation and Selection of Web Content Management Systems    "	="Therapeutic Goods Administration"	13-May-08	="Public Utilities and Public Sector Related Services"	02-Apr-08	30-Jun-08	30000.00	=""	="Step Two Designs"	13-May-08 03:09 PM	

+="CN83433"	"    Project Support for Medical Devices Program Feb-April 2008    "	="Therapeutic Goods Administration"	13-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Apr-08	20148.39	=""	="APIS Consulting, The Trustee for Group Unit Trust"	13-May-08 03:13 PM	

+="CN83440"	"    Medical Devices Business Process Review    "	="Therapeutic Goods Administration"	13-May-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Mar-08	26070.00	=""	="Inside Story knowledge Management Pty Ltd"	13-May-08 03:35 PM	

+="CN83443"	"    Recall Storage 07/08 FY (PO variation)    "	="Therapeutic Goods Administration"	13-May-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	30000.00	=""	="Recall"	13-May-08 03:48 PM	

+="CN83464"	"Procurement of:  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	05-Jun-08	23967.00	=""	="GILBARCO AUSTRALIA Ltd"	13-May-08 07:29 PM	

+="CN83473"	"Procurement of:  NET,CARGO,WEBBING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	16-May-08	20200.00	=""	="SPANSET AUSTRALIA Ltd"	13-May-08 07:30 PM	

+="CN83485"	"Procurement of:  LAMP,INCANDESCENT;  NOZZLE,FUEL INJECTION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	08-Jul-08	20089.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:32 PM	

+="CN83488"	"Procurement of:  BATTERY,NONRECHARGEABLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	13-May-08	29700.00	=""	="REXEL AUSTRALIA Ltd"	13-May-08 07:32 PM	

+="CN83490"	"Procurement of:  HOLDER,HANDSET;  HOLDER,HANDSET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	10-Jul-08	28640.32	=""	="THALES AUSTRALIA"	13-May-08 07:32 PM	

+="CN83492"	"Procurement of:  LEVER ASSY,VANE ACT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	13-May-08	25728.00	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:32 PM	

+="CN83497"	"Procurement of:  BAG,TOOL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	13-Aug-08	20211.45	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:33 PM	

+="CN83501"	"Procurement of:  INTERFACE UNIT,COMMUNICATION EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Mar-08	12-Jul-08	21160.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:34 PM	

+="CN83506"	"Procurement of:  VALVE,GATE;  VALVE,GATE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	13-May-08	22900.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	13-May-08 07:34 PM	

+="CN83508"	"Procurement of:  INDICATOR TUBE,GAS;  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	13-May-08	24020.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	13-May-08 07:34 PM	

+="CN83510"	"Procurement of:  LOUDSPEAKER,ELECTROMAGNETIC;  LOUDSPEAKER,ELECTROMAGNETIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	18-Jul-08	29062.46	=""	="THALES AUSTRALIA"	13-May-08 07:35 PM	

+="CN83517"	"Procurement of:  HEADSET-MICROPHONE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	13-Jul-08	27360.00	=""	="AUSTRALIAN ELECTRONIC SERVICES P"	13-May-08 07:36 PM	

+="CN83537"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	13-May-08	20260.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	13-May-08 07:38 PM	

+="CN83538"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	13-May-08	26016.00	=""	="GLOBAL COMMUNICATION SERVICES"	13-May-08 07:38 PM	

+="CN83549"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,CROSS;  VALVE,SAFETY RELIEF;  VALVE,CROSS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	25-May-08	27718.34	=""	="H I FRASER Pty Ltd"	13-May-08 07:40 PM	

+="CN83555"	"Procurement of:  FLASHLIGHT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	13-May-08	26000.00	=""	="PELICAN PRODUCTS Pty Ltd"	13-May-08 07:40 PM	

+="CN83557"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	13-May-08	23400.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:41 PM	

+="CN83574"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Mar-08	30-May-08	23239.52	=""	="H I FRASER Pty Ltd"	13-May-08 07:43 PM	

+="CN83577"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  GASKET;  GAGE,PRESSURE,DIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	02-Jun-08	25770.84	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:43 PM	

+="CN83582"	"Procurement of:  FILTER,RADIO FREQUENCY INTERFERENCE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	23-Jul-08	22578.24	=""	="THALES AUSTRALIA"	13-May-08 07:44 PM	

+="CN83587"	"Procurement of:  CAMSHAFT,ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	01-Apr-08	30-Jul-08	29947.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	13-May-08 07:44 PM	

+="CN83595"	"Procurement of:  STEM,FLUID VALVE;  VALVE,GATE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	11-Jun-08	24289.50	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:45 PM	

+="CN83596"	"Procurement of:  FILTER ELEMENT,AIR CONDITIONING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	09-Jun-08	24000.00	=""	="NOSKE-KAESER NZ Ltd"	13-May-08 07:46 PM	

+="CN83597"	"Procurement of:  TIE DOWN,CARGO,VEHICLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	14-May-08	23000.00	=""	="SPANSET AUSTRALIA Ltd"	13-May-08 07:46 PM	

+="CN83598"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	16-Jun-08	25131.78	=""	="ERICOM"	13-May-08 07:46 PM	

+="CN83602"	"Procurement of:  HEADSET-MICROPHONE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	28-Jun-08	29800.00	=""	="JEA TECHNOLOGIES Pty Ltd"	13-May-08 07:46 PM	

+="CN83607"	"Procurement of:  ETHYLENE GLYCOL,TECHNICAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	13-May-08	27000.00	=""	="MERCK Pty Ltd"	13-May-08 07:47 PM	

+="CN83615"	"Procurement of:  COMPUTER SUBASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	16-May-08	20484.00	=""	="M&D MARINE PARTS SERVICE Pty *"	13-May-08 07:48 PM	

+="CN83631"	"Procurement of:  RECEIVER-TRANSMITTER,RADIO;  BAG,PLASTIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	16-May-08	25900.00	=""	="TELECHNICS Pty Ltd"	13-May-08 07:50 PM	

+="CN83632"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	19-Aug-08	23016.58	=""	="ASC Pty Ltd"	13-May-08 07:50 PM	

+="CN83646"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	18-Apr-09	25900.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	13-May-08 07:52 PM	

+="CN83647"	"Procurement of:  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	14-Nov-08	22599.60	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:52 PM	

+="CN83650"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	21-May-08	20290.00	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:52 PM	

+="CN83653"	"Procurement of:  VALVE,GATE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	09-Dec-08	28037.40	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:53 PM	

+="CN83662"	"Procurement of:  WAVEGUIDE ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	15-Feb-09	27136.40	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:54 PM	

+="CN83663"	"Procurement of:  HEATING ELEMENT,ELECTRICAL,IMMERSION;  HEATING ELEMENT,ELECTRICAL,IMMERSION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	22-Nov-08	23621.50	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:54 PM	

+="CN83664"	"Procurement of:  WAVEGUIDE ASSEMBLY;  WAVEGUIDE ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	17-Dec-08	27754.25	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:54 PM	

+="CN83677"	"Procurement of:  TUBESTACK"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	11-Aug-08	24408.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:56 PM	

+="CN83681"	"Procurement of:  SHAFT,TRANSMISSION,PUMP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	09-Jun-08	24825.10	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:56 PM	

+="CN83699"	"Procurement of:  SCALE REMOVING COMPOUND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	13-May-08	23580.00	=""	="ABM ENVIROSAFE"	13-May-08 07:59 PM	

+="CN83705"	"Procurement of:  ADJUSTING DEVICE,BELT-CHAIN TENSION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	11-Jun-08	22471.49	=""	="ASC Pty Ltd"	13-May-08 08:00 PM	

+="CN83707"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	28-May-08	24640.00	=""	="COMPAIR (AUSTRALASIA) Ltd"	13-May-08 08:00 PM	

+="CN83721"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	26-Sep-08	23461.84	=""	="THALES AUSTRALIA"	13-May-08 08:02 PM	

+="CN83732"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	30-Apr-08	28-Jun-08	22490.00	=""	="AMI MARINE"	13-May-08 08:03 PM	

+="CN83735"	"Security vetting services"	="Office of Parliamentary Counsel"	14-May-08	="Government departments services"	20-Jun-06	30-Jun-08	27000.00	=""	="Attorney-General's Department"	14-May-08 08:40 AM	

+="CN83749"	" Business Continuity Planning Projects "	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Jun-08	27693.00	=""	="WALTERTURNBULL PTY LTD"	14-May-08 10:02 AM	

+="CN83750"	"Delivery of EU Training Course"	="Department of Foreign Affairs and Trade"	14-May-08	="Education and Training Services"	11-Oct-07	30-Jun-08	20459.09	=""	="UMEE LTD"	14-May-08 10:05 AM	

+="CN83753"	"Contractor Services - APS 6"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	14-Apr-08	30-Jun-08	28900.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83754"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	28-Apr-08	25-Jul-08	26795.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83755"	"Temp staffing - Michael Chertok"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	12-May-08	27-Jun-08	26334.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83770"	"Helicopter charter"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Passenger transport"	05-May-08	07-May-08	25000.00	=""	="HELICOPTERS (AUSTRALIA) PTY LTD"	14-May-08 10:21 AM	

+="CN83772"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	28-Apr-08	06-Jun-08	23990.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:21 AM	

+="CN83776"	" Divisional Structure Review "	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	04-Apr-08	27500.00	=""	="GROSVENOR MANAGEMENT CONSULTING PTY LTD"	14-May-08 10:23 AM	

+="CN83778"	"Procurement Support Services"	="Australian Federal Police"	14-May-08	="Professional procurement services"	14-May-08	15-Jun-08	27456.00	="22-2005"	="Grosvenor Management Consulting"	14-May-08 10:26 AM	

+="CN83782"	"Motor vehicles lease May 2008"	="Department of Parliamentary Services"	14-May-08	="Motor vehicles"	01-May-08	31-May-08	21228.14	=""	="LeasePlan"	14-May-08 10:39 AM	

+="CN83788"	"Temporary HVAC staff hire"	="Department of Parliamentary Services"	14-May-08	="Temporary technician staffing needs"	06-May-08	30-May-08	27170.00	=""	="Honeywell Limited"	14-May-08 10:41 AM	

+="CN83790"	"Supply of Server Equipment Contract ( DPS5054)"	="Department of Parliamentary Services"	14-May-08	="Computer servers"	09-May-08	06-Jun-08	27736.28	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 10:41 AM	

+="CN83817"	"Transport Operations"	="Centrelink"	14-May-08	="Transport operations"	29-Apr-08	30-Jun-08	28999.99	=""	="Murin Travel and Freight Services"	14-May-08 12:26 PM	

+="CN83825"	"Advisory Services"	="Centrelink"	14-May-08	="Management advisory services"	10-Apr-08	30-Jun-08	20924.20	=""	="Ernst and Young"	14-May-08 12:27 PM	

+="CN83826"	"Customer Service Centre  Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Dec-07	19-Dec-08	24915.00	=""	="HBO + EMTB Interiors (Victoria) Pty Ltd"	14-May-08 12:27 PM	

+="CN83829"	"Storage of supplies"	="Centrelink"	14-May-08	="Medical Equipment and Accessories and Supplies"	14-Aug-07	30-Jun-08	27500.00	=""	="Gazele Pty Ltd"	14-May-08 12:28 PM	

+="CN83837"	"Secure Delivery Services"	="Centrelink"	14-May-08	="Transport operations"	07-Mar-08	30-Jun-08	20000.00	=""	="Security Specialists Northern Territory"	14-May-08 12:30 PM	

+="CN83851"	"Repairs and maintenance"	="Centrelink"	14-May-08	="Telecommunications media services"	29-Apr-08	30-Jun-08	22000.00	=""	="Optus Billing Services Pty Ltd"	14-May-08 12:32 PM	

+="CN83857"	"Early Intervention and Rehab Program"	="Centrelink"	14-May-08	="Human resources services"	08-Feb-08	30-Jun-08	22000.00	=""	="CRS Australia"	14-May-08 12:33 PM	

+="CN83865"	"Fitout Management"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Nov-07	26-Dec-08	23210.00	=""	="HBO + EMTB Interiors (Victoria) Pty Ltd"	14-May-08 12:34 PM	

+="CN83876"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	03-Apr-08	27-Apr-08	20872.50	=""	="DESA Australia Pty Ltd"	14-May-08 12:36 PM	

+="CN83893"	"Electrical Services"	="Centrelink"	14-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	21-Apr-08	31-Dec-08	22000.00	=""	="Sparks Electrical Services"	14-May-08 12:39 PM	

+="CN83895"	"Removal Services"	="Centrelink"	14-May-08	="Storage"	30-Apr-08	26-May-08	20878.50	=""	="Grace Removals"	14-May-08 12:39 PM	

+="CN83913"	"Security guard service at Mt Druitt, NSW"	="Centrelink"	14-May-08	="Public safety and control"	10-Apr-08	30-Jun-08	20900.00	=""	="Statewide Management Services"	14-May-08 12:43 PM	

+="CN83925"	"Flu Vaccination for Staff"	="Centrelink"	14-May-08	="Healthcare Services"	03-Apr-08	30-Jun-08	27500.00	=""	="Unified Healthcare Group"	14-May-08 12:45 PM	

+="CN83926"	"External training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	30000.00	=""	="Plan IT Test Management Solutions"	14-May-08 12:45 PM	

+="CN83937"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	14-Apr-08	05-May-08	29480.00	=""	="Heyday Group Pty Ltd"	14-May-08 12:48 PM	

+="CN83938"	"Blinds"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Apr-08	30-Apr-08	28281.00	=""	="Michael OHalloran Interiors"	14-May-08 12:48 PM	

+="CN83963"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	28797.49	=""	="Interface Flor"	14-May-08 12:51 PM	

+="CN83979"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	30-Jun-08	24255.00	="RFTS07/0129"	="Stratagem"	14-May-08 12:54 PM	

+="CN83988"	"Signage, Melton, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	26169.00	=""	="Tint Design Pty Ltd"	14-May-08 12:55 PM	

+="CN84025"	"Courier Services"	="Centrelink"	14-May-08	="Mail and cargo transport"	18-Apr-08	30-Jun-08	26636.36	=""	="Toll Priority"	14-May-08 01:02 PM	

+="CN84050"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	31-Dec-08	25246.23	=""	="Interface Flor"	14-May-08 01:06 PM	

+="CN84066"	"telephone landline charges"	="Royal Australian Mint"	14-May-08	="Fixed phones"	28-Apr-08	28-Apr-08	27500.00	=""	="TELSTRA CORPORATION LTD"	14-May-08 01:37 PM	

+="CN84089"	"CPA Congress 2007 participation"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	16-Nov-07	25410.00	=""	="CPA Australia"	14-May-08 03:00 PM	

+="CN84103"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	13-Aug-07	27-Aug-07	23560.00	=""	="Diebold Physical Security Pty Ltd"	14-May-08 03:02 PM	

+="CN84105"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	13-Aug-07	31-Aug-07	23388.04	=""	="Diletta ID Systems"	14-May-08 03:02 PM	

+="CN84128"	"Software Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	21-Aug-07	21-Aug-07	21672.02	=""	="TARDIS TECHNOLOGY PTY LTD"	14-May-08 03:39 PM	

+="CN84155"	"Building Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	24-Aug-07	24-Aug-07	29454.77	=""	="Diebold Physical Security Pty Ltd"	14-May-08 04:35 PM	

+="CN84170"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	20834.00	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 04:54 PM	

+="CN84172"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	29-Aug-07	30-Sep-07	21274.00	=""	="Mallesons Stephen Jaques"	14-May-08 04:55 PM	

+="CN84202"	"Office Equipment ADVISOR"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	13-Sep-07	30-Sep-07	24140.00	=""	="Northfreeze Refrigeration"	14-May-08 04:59 PM	

+="CN84203"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	13-Sep-07	30-Sep-07	24140.00	=""	="Northfreeze Refrigeration"	14-May-08 04:59 PM	

+="CN84214"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="General building construction"	18-Sep-07	28-Sep-07	26460.50	=""	="Solve Projects"	14-May-08 05:01 PM	

+="CN84215"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	18-Sep-07	18-Sep-07	22650.00	=""	="ARTBANK"	14-May-08 05:01 PM	

+="CN84221"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	21-Sep-07	08-Oct-07	22206.25	=""	="ARTBANK"	14-May-08 05:02 PM	

+="CN84235"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	29577.59	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84240"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	12-Sep-07	28-Feb-08	22975.75	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84247"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	29-Aug-07	26-Sep-07	22368.00	=""	="FILEGUARD"	14-May-08 05:07 PM	

+="CN84257"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	10-Sep-07	08-Oct-07	26623.85	=""	="Ethan Group Pty Ltd"	14-May-08 05:08 PM	

+="CN84271"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	19-Sep-07	17-Oct-07	26356.00	=""	="FLUKE AUSTRALIA PTY LTD"	14-May-08 05:10 PM	

+="CN84283"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	03-Sep-07	30-Sep-07	20253.20	=""	="STEP Electronics (A Hills Company)"	14-May-08 05:12 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val300000to999999999.xls
@@ -1,1 +1,709 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN74201-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	07-May-07	30-Jun-09	470828.00	=""	="Paxus Australia Limited"	12-May-08 08:50 AM	

+="CN77991-A5"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	18-Jul-07	11-Dec-08	497750.00	=""	="Paxus Australia Pty Limited"	12-May-08 08:57 AM	

+="CN74191-A3"	" Provision of Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-09	300300.00	=""	="Ross Human Directons Limited"	12-May-08 09:03 AM	

+="CN77992-A4"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	19-Sep-07	30-Jun-09	484110.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:07 AM	

+="CN77996-A4"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	14-Feb-08	29-May-09	483164.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:25 AM	

+="CN78005"	"Professional Services for ROMAN MLFF Interfaces"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	17-Dec-07	24-Oct-08	301672.45	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	12-May-08 09:31 AM	

+="CN78039-A3"	"Provisions for Specialist Infromation Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	03-Jul-06	30-Jun-09	556160.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:39 AM	

+="CN78051"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	01-Oct-10	352255.20	=""	="ANU - SCHOOL OF PACIFIC & ASIAN"	12-May-08 09:40 AM	

+="CN78053"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	01-Oct-10	422963.20	=""	="ANU - SCHOOL OF PACIFIC & ASIAN"	12-May-08 09:41 AM	

+="CN78064"	"HQJOC PROJECT-ADI LIMITED (THALES)"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-08	752930.50	=""	="THALES AUSTRALIA"	12-May-08 09:43 AM	

+="CN78075"	"FURNITURE FOR NAVY ACCOMMODATION HOMEBUSH"	="Department of Defence"	12-May-08	="Accommodation furniture"	19-Dec-07	30-Jan-08	937300.10	=""	="DIRECT ERGONOMICS PTY LTD"	12-May-08 09:45 AM	

+="CN78076"	"POC: MARK MCCLURE CONTACT: 02 626 50420"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	30-Jun-08	519948.00	=""	="OPTUS NETWORKS PTY LTD"	12-May-08 09:46 AM	

+="CN78074-A5"	" Provisions for Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	20-Nov-07	15-Mar-09	412913.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:50 AM	

+="CN78108"	"RENEWAL OF SOFTWARE MAINTENANCE"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	20-Dec-08	431200.00	=""	="SYMANTEC ASIA PACIFIC PTE LTD"	12-May-08 09:52 AM	

+="CN78121"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Dec-07	478325.42	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 09:55 AM	

+="CN78142"	"AIR CHTR OP ANODE ROTTION 13/14"	="Department of Defence"	12-May-08	="Aircraft"	18-Dec-07	31-Dec-07	502629.40	=""	="ALLTRANS INTERNATIONAL"	12-May-08 09:58 AM	

+="CN78147"	"BROADLEAF AND NINE MILE PADDOCK."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	2013146.95	=""	="SPARKE HELMORE LAWYERS"	12-May-08 09:59 AM	

+="CN78153"	"URGENT ROAD REPAIRS TO MOOREBANK AVENUE"	="Department of Defence"	12-May-08	="Roads and landscape"	18-Dec-07	30-Jun-08	2316599.84	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78161"	"EMERGENCY STRUCTURAL REPAIRS TO DINING HALL"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	428230.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:02 AM	

+="CN78168"	"S5091, WR 300075939. Asbestos Removal Program - HM 801"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	18-Dec-07	30-Jun-08	1269577.10	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:03 AM	

+="CN78171-A3"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	27-Aug-07	30-Jun-09	641438.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:10 AM	

+="CN78173"	" Provisions for Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Oct-07	30-Jun-08	303848.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:15 AM	

+="CN78176-A4"	"Provisions for Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	17-Sep-07	08-Aug-08	468179.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:32 AM	

+="CN78181-A2"	" Instrument Service & Maintenance "	="Department of Foreign Affairs and Trade"	12-May-08	="Measuring and observing and testing instruments"	01-Jul-07	01-Jul-11	833615.73	=""	="MORPHO AUSTRALASIA PTY LTD"	12-May-08 11:04 AM	

+="CN78185-A1"	"Garrison Jackets"	="Defence Materiel Organisation"	12-May-08	="Clothing accessories"	12-May-08	24-Oct-08	440000.00	=""	="CTE Pty Ltd"	12-May-08 11:09 AM	

+="CN78194-A4"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology networking specialists"	02-Feb-07	18-Jul-08	430045.00	=""	="Greythorn Pty Ltd"	12-May-08 11:47 AM	

+="CN78198"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-08	470360.00	=""	="Paxus Australia Pty Limited"	12-May-08 11:52 AM	

+="CN78202-A4"	" Architectural, Project Management, Property Management and Engineering Services "	="Department of Foreign Affairs and Trade"	12-May-08	="Architectural services"	02-Oct-07	30-Sep-11	3062058.29	="05/150932"	="INTEGRATED SPACE PTY LTD"	12-May-08 12:00 PM	

+="CN78206-A3"	"Information Technology Specialist Services (previously published as GAPS ID 1625408)"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	11-Sep-07	30-Jun-09	638880.00	=""	="Paxus Australia Pty Limited"	12-May-08 12:10 PM	

+="CN78208"	" PROVISION OF ICT SERVICES TO DHS  XREFER CONTRACT ID 1661199 DATED 12.04.2007 VALUE   $1,000,000.00. TOTAL VALUE OF BOTH CONTRACTS $3,000,000.00 "	="Department of Human Services"	12-May-08	="Components for information technology or broadcasting or telecommunications"	06-Mar-08	10-Apr-09	2000000.00	=""	="ASG GROUP LTD"	12-May-08 12:16 PM	

+="CN78218"	"Security Services"	="Department of Defence"	12-May-08	="Security surveillance and detection"	12-Dec-07	30-Jun-08	723002.60	=""	="TEMPO SECURITY"	12-May-08 01:06 PM	

+="CN78223"	"MOAC-IM BUSINESS ANALYST"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	29-Feb-08	333856.02	=""	="MILITARYTECH PTY LTD"	12-May-08 01:07 PM	

+="CN78226"	"DEFENCE STRATEGIC TRAINING AREA AND RANGES REVIEW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	13-Dec-07	30-Jun-09	654500.00	=""	="PARSONS BRINCKERHOFF"	12-May-08 01:07 PM	

+="CN78229"	"Project Management Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	449900.00	=""	="ROSSLOGIC PTY LTD"	12-May-08 01:07 PM	

+="CN78234"	"Deed of Standing Offer JLUSQ-0406  labour hire to 7 BDE"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	13-Dec-07	31-Mar-08	500611.36	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 01:08 PM	

+="CN78235"	"Labour Hire"	="Department of Defence"	12-May-08	="Manufacturing support services"	13-Dec-07	27-Jan-08	862539.68	=""	="MANPOWER SERVICES (AUST) PTY LTD"	12-May-08 01:08 PM	

+="CN78240"	"PASSPORT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	30-Apr-08	1582548.75	=""	="WESTCON GROUP"	12-May-08 01:09 PM	

+="CN78267"	"SINGLE LEAP. PLENARY IEW"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	5445000.00	=""	="PLENARY GROUP PTY LTD"	12-May-08 01:12 PM	

+="CN78268"	"SINGLE LEAP. PLENARY IEW NSW."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	2420000.00	=""	="PLENARY GROUP PTY LTD"	12-May-08 01:12 PM	

+="CN78273"	"A CKLSS INSTAVAULT  WITH A CLASS STRONG ROOM DOOR"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	31-Jan-08	303600.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	12-May-08 01:13 PM	

+="CN78280"	"NON ASSET ROAD MAINTENANCE SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	807240.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78282"	"QUARRY OPERATIONS PACKAGE 1 - ASSET ROAD  MAINTENACE SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	1443200.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:14 PM	

+="CN78288"	"ARMOURIES AND MAGAZINE COMPLIANCE WORKS CANUNGRA MAGAZINE"	="Department of Defence"	12-May-08	="Ammunition handling systems"	05-Dec-07	30-Jun-08	417142.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:15 PM	

+="CN78301"	"REFURBISHMENT OF MUCSLE TOUGHENING COURSE CANUNGRA"	="Department of Defence"	12-May-08	="Fitness equipment"	06-Dec-07	30-Jun-08	303012.16	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:17 PM	

+="CN78304"	"REFURBISHMENT OF CONFIDENCE COURSE - CANUNGRA"	="Department of Defence"	12-May-08	="Fitness equipment"	06-Dec-07	30-Jun-08	1006042.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:18 PM	

+="CN78311"	"S5091, WR's - Various see attached. DS-SC Asbestos 07/08. Phase 2, removal of asbestos containi"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	05-Dec-07	30-Jun-08	460769.35	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:19 PM	

+="CN78319"	"This order is placed under the t's and c's of SO 06/32"	="Department of Defence"	12-May-08	="Manufacturing support services"	05-Dec-07	30-Jun-08	369891.06	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 01:20 PM	

+="CN78313-A3"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jun-06	30-Jun-09	937200.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:21 PM	

+="CN78345"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Sep-08	880000.01	=""	="SUN MICROSYSTEMS"	12-May-08 01:24 PM	

+="CN78344-A5"	"Information Technology Specialist Services (previously published as GAPS ID 1614544)"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	07-Aug-06	11-Jan-09	497860.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:25 PM	

+="CN78353"	"ASBESTOS REMEDIATION WORKS 6RAR ENOGGERA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	05-Dec-07	30-Jun-08	1517376.63	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:26 PM	

+="CN78357"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	05-Dec-07	30-Jun-08	360884.70	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 01:26 PM	

+="CN78371"	"FINANCE ESTIMATES"	="Department of Defence"	12-May-08	="Naval weapons"	05-Dec-07	30-Jun-08	4125000.00	=""	="KAZ GROUP PTY LTD"	12-May-08 01:29 PM	

+="CN78375"	"Software maintenance services"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	31-Mar-09	1409654.40	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 01:29 PM	

+="CN78376"	"FACOPS - SA2228"	="Department of Defence"	12-May-08	="Environmental Services"	07-Dec-07	30-Jun-08	466939.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:29 PM	

+="CN78381"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	598400.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 01:30 PM	

+="CN78382"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Nov-09	623832.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 01:30 PM	

+="CN78383"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	642400.00	=""	="Paxus Australian Pty Limited"	12-May-08 01:32 PM	

+="CN78396"	"FACOPS - SA2229"	="Department of Defence"	12-May-08	="Environmental Services"	07-Dec-07	30-Jun-08	729003.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:32 PM	

+="CN78417"	"SECURE REAR ENTRANCE - GAL BKS"	="Department of Defence"	12-May-08	="Security surveillance and detection"	10-Dec-07	30-Jun-08	497265.30	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:36 PM	

+="CN78414-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	680900.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:38 PM	

+="CN78437"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-May-08	425628.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:40 PM	

+="CN78440"	"Provision of leased computers"	="Australian Federal Police"	12-May-08	="Operating lease finance service"	28-Nov-02	27-Nov-07	13001942.60	=""	="Dell Financial Services"	12-May-08 01:41 PM	

+="CN78451"	"TS PIONEER RELOCATION TO KOMIATUM BARRACKS MACKAY"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	06-Dec-07	30-Jun-08	356924.65	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:42 PM	

+="CN78452-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	654555.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:43 PM	

+="CN78480"	"PROP STUDIES-BNTS-ENVIRONMENTAL CONSULTANT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	303155.22	=""	="SMEC AUSTRALIA"	12-May-08 01:46 PM	

+="CN78528"	"NON ASSET ROAD WORKS SWBTA"	="Department of Defence"	12-May-08	="Roads and landscape"	20-Dec-07	30-Jun-09	576026.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:53 PM	

+="CN78522-A3"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	568799.00	=""	="Paxus Australia Pty Limited"	12-May-08 01:54 PM	

+="CN78534"	"AIR CHTR OP SLIPPER VEHICLE ROTATION"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	12-Feb-08	669322.17	=""	="STRATEGIC AVIATION - USD"	12-May-08 01:54 PM	

+="CN78543"	"AIR CHTR PNG ASSIST REDEPLOY OF BLACKHAWKS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	402791.60	=""	="HEAVYLIFT CARGO AIRLINES"	12-May-08 01:56 PM	

+="CN78554"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	27-Jun-08	649701.80	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 01:59 PM	

+="CN78557"	"AIR CHTR B747 CARGO TO MEAO OP CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	658689.57	=""	="STRATEGIC AVIATION - USD"	12-May-08 01:59 PM	

+="CN78561"	"AIR 8000 PHASE 3 - HEAVY AIR LIFT (HAL) FACILITIES PM/CA - DEPLOYMENT BASES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-10	1389131.70	=""	="GHD PTY LTD"	12-May-08 02:00 PM	

+="CN78563"	"RAAF AMBERLEY STAGE 3 - DELIVERY PHASE. DELIVERY PHASE PM/CA SERVICES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	3968123.50	=""	="THINC PROJECTS PTY LTD"	12-May-08 02:01 PM	

+="CN78565"	"PROVISION OF FIRE ENGINEERING SUPPORT SERVICES - 2"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	440000.00	=""	="ARUP"	12-May-08 02:01 PM	

+="CN78566"	"LADS Contract 12/07 to 31/7/08"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	30-Aug-08	3614949.03	=""	="TENIX LADS CORPORATION PTY LTD"	12-May-08 02:01 PM	

+="CN78572"	"DEVELOPMENT OF THE DNSA SDMS SERVICE DESK PROCESS DESIGN FRAMEWORK."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	19-Dec-07	30-Jun-08	316800.00	=""	="ACUMEN ALLIANCE"	12-May-08 02:02 PM	

+="CN78580"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	435003.25	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78609"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	09-Dec-09	428340.00	=""	="ICON RECRUITMENT"	12-May-08 02:09 PM	

+="CN78613"	"Professional Services for ROMAN MLFF Interfaces"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	20-Dec-07	24-Oct-08	402793.02	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78619"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	01-Oct-08	520000.00	=""	="KPMG AUSTRALIA"	12-May-08 02:10 PM	

+="CN78621"	"DEFENCE MAGAZINE"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	04-Jan-08	04-Jan-08	330000.00	=""	="GREY CANBERRA PTY LTD"	12-May-08 02:10 PM	

+="CN78643"	"PSP 08/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	394991.66	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 02:12 PM	

+="CN78644"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	10-Apr-08	14-Nov-08	563147.36	=""	="MINISTRY OF DEFENCE - NETHERLANDS"	12-May-08 02:12 PM	

+="CN78706"	"5 x ZODIAC JULIETTE JET TYPE RHIB 7.  INTERNAL ORDER NUMBER 15800 & 16862."	="Department of Defence"	12-May-08	="Military watercraft"	14-Apr-08	30-Sep-08	1793489.50	=""	="DEFENCE MARITIME SERVICES"	12-May-08 02:17 PM	

+="CN78708"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-Jan-08	1335708.00	=""	="IBM AUSTRALIA LTD"	12-May-08 02:17 PM	

+="CN78735"	"PSP:Aaron Joy 08/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	429091.66	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 02:19 PM	

+="CN78741"	"PSP:Aaron Joy 14/02 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	616366.66	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:19 PM	

+="CN78747"	"PSP:Aaron Joy 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	383625.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:20 PM	

+="CN78751"	"POC:Aaron Joy PSP 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-10	1136666.66	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:20 PM	

+="CN78754"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	02-Mar-16	3311000.00	=""	="THOUGHTWEB PTY LTD"	12-May-08 02:20 PM	

+="CN78773-A5"	"Provision of Property Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Building construction and support and maintenance and repair services"	01-Jul-08	30-Jun-12	62655567.00	="DFAT07-OPO07/001477-000"	="UGL SERVICES PTY LTD"	12-May-08 02:21 PM	

+="CN78781"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-09	324632.00	=""	="PAXUS AUSTRALIA PTY LTD"	12-May-08 02:21 PM	

+="CN78803"	"ANAPURNA CURABLE PRINTERS"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	03-Mar-08	449900.00	=""	="AGFA-GEVAERT LTD"	12-May-08 02:23 PM	

+="CN78825"	"02-224081 31AUG07 LINE ITEMS 6171 - 6423"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	30-Jun-08	623133.42	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78828"	"02-224081 30SEP07 LINE ITEMS 6424 - 6665"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Sep-07	30-Jun-08	719017.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78838"	"ELECTRICITY SUPPLY TO WA"	="Department of Defence"	12-May-08	="Utilities"	14-Apr-08	04-Nov-08	2499999.98	=""	="SYNERGY"	12-May-08 02:25 PM	

+="CN78842"	"blade controllers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	820960.80	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78854"	"PAYMENTS OF OPERATIONS TRAVELS"	="Department of Defence"	12-May-08	="Aircraft"	12-Nov-07	06-Dec-07	431043.80	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:26 PM	

+="CN78855"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	30-Jun-08	873663.96	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 02:26 PM	

+="CN78870"	"AZ 3825-TOWNSVILLE AREA ZONE PLAN"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	02-Jan-08	30-Jun-09	541533.30	=""	="PARSONS BRINCKERHOFF"	12-May-08 02:28 PM	

+="CN78871"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-12	470394.17	=""	="SGI AUSTRALIA PTY LTD"	12-May-08 02:28 PM	

+="CN78881"	"02-22408131DEC07 LINE 7338-8162"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	1901418.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:28 PM	

+="CN78884"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	02-Jan-08	01-Sep-08	370772.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:28 PM	

+="CN78907"	"Computer Software"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	14-Dec-08	535700.00	=""	="TIER-3 PTY LTD"	12-May-08 02:30 PM	

+="CN78919"	"POC: MARK MCCLURE CONTACT6: 02 626 50420"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	25-Jan-08	1216485.60	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 02:31 PM	

+="CN78949"	"RAAF RICHMOND TRI METS PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	11-Apr-08	30-Jun-08	1288681.90	=""	="INFINITY CONSTRUCTION PTY LTD"	12-May-08 02:33 PM	

+="CN78950"	"38 SQN COLLOCATION. DOCUMENT AND CONSTRUCT FOR DELIVERY OF FACILITIES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	3405482.30	=""	="WATPAC AUSTRALIA PTY LTD"	12-May-08 02:33 PM	

+="CN79045"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	31-Dec-08	741700.00	=""	="MINTER ELLISON"	12-May-08 02:40 PM	

+="CN79054"	"SERVICES ADDITIONAL TO CONTRACT.  ADDITIONAL PSSC"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	30-Jun-10	957000.00	=""	="DEFENCE MARITIME SERVICES PTY LTD"	12-May-08 02:41 PM	

+="CN79061"	"AIR CHARTER"	="Department of Defence"	12-May-08	="Aircraft"	04-Apr-08	30-Apr-08	622862.00	=""	="ADAGOLD AVIATION PTY LTD"	12-May-08 02:41 PM	

+="CN79060-A9"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	58600000.00	=""	="Polytechnic West"	12-May-08 02:42 PM	

+="CN79072"	"LEGAL SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Mar-08	15-Apr-08	650000.00	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:42 PM	

+="CN79074"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	20-Mar-08	27-Mar-08	317321.71	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:42 PM	

+="CN79082"	"ROUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	31-May-08	1237137.36	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:43 PM	

+="CN79089"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	28-Mar-08	300000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:44 PM	

+="CN79062"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	21-Aug-06	30-Jun-08	412847.00	=""	="Paxus Australia Pty Limited"	12-May-08 02:45 PM	

+="CN79102"	"HQJOC PROJECT - KAZ GROUP PTY LTD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	324064.85	=""	="KAZ GROUP PTY LTD"	12-May-08 02:45 PM	

+="CN79107"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	17-Jan-08	17-Jan-08	534556.57	=""	="QINETIQ GROUP PLC"	12-May-08 02:46 PM	

+="CN79099-A9"	" Provision of Adult Migrant English Services "	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	32500000.00	=""	="Central Tafe"	12-May-08 02:46 PM	

+="CN79130"	"JEZZINE BARRACKS COMMUNITY TRUST"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	03-Mar-08	30-Apr-08	10000000.00	=""	="THE JEZZINE BARRACKS COMMUNITY"	12-May-08 02:48 PM	

+="CN79140"	"2008 AFL CONTRACT TO PROMOTE AWARENESS OF ARMY AND OBJECT OF SUPPORTING THE 'CHALLENGE YOURSELF"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	1022670.00	=""	="AUSTRALIAN FOOTBALL LEAGUE"	12-May-08 02:49 PM	

+="CN79154"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	28-Mar-08	04-Apr-08	370000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:50 PM	

+="CN79156-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	18200000.00	=""	="LM Training Specialists Pty. Ltd."	12-May-08 02:51 PM	

+="CN79165"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	05-May-08	05-May-08	531597.04	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:51 PM	

+="CN79168"	"SN01305 - MFFR - Road Upgrades and Maintenance"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	03-Apr-08	30-Jun-08	326575.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:51 PM	

+="CN79173-A4"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	627000.00	=""	="Paxus Australia Pty Limited"	12-May-08 02:53 PM	

+="CN79202"	"Stakeholder Liason Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Apr-08	31-Dec-09	477149.11	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 02:54 PM	

+="CN79212-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	91600000.00	=""	="Department of Further Education Employment Science and Technology (trading as TAFE SA)"	12-May-08 02:56 PM	

+="CN79221-A1"	"IMMARSAT TERRESTIAL SERVICES"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Jan-08	30-Jun-08	4570482.10	=""	="STRATOS"	12-May-08 02:57 PM	

+="CN79231"	"MANAGING CONTRACTOR FOR RAAF COLLEGE RELOCATION PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	22-Apr-08	30-Jun-08	2664168.83	=""	="THIESS PTY LTD"	12-May-08 02:58 PM	

+="CN79252"	"Comprehensive Maintenance Contract Fees for the period 01 Nov 02 - 31 Oct 07 for CSI(ID)-CNNSW"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	26-Aug-02	31-Oct-08	3791315.06	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:00 PM	

+="CN79256"	"TELECOMMUNICATIONS SERVICES"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	02-May-08	30-Jun-08	375967.90	=""	="MCKESSON ASIA-PACIFIC PTY LTD"	12-May-08 03:00 PM	

+="CN79258"	"Contract Administration services for Phase 2 for DSTO Rationalisation Project - Stage 2."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	25-Jan-08	30-Jun-09	476911.99	=""	="CMR CONSULTANTS AUSTRALIA"	12-May-08 03:00 PM	

+="CN79266"	"Delivery of CMC CNNSW - GB & FM Routine Maintenance work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	30-Jun-08	415484.02	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79268"	"Security Hardware and Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Sep-08	1339250.00	=""	="SECURE SYSTEMS LTD"	12-May-08 03:01 PM	

+="CN79267-A2"	" Australian Passport Information Service "	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Oct-06	30-Sep-10	21540949.31	=""	="COMMONWEALTH SERVICE DELIVERY AGENCY"	12-May-08 03:02 PM	

+="CN79292"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	31-Mar-08	28-Apr-08	725000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:04 PM	

+="CN79293"	"Professional services"	="Department of Defence"	12-May-08	="Project management"	08-Apr-08	29-May-09	324720.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 03:04 PM	

+="CN79301"	"POC:  RYAN CAMPBELL CONTACT: 02 626 65735"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	656632.90	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	12-May-08 03:05 PM	

+="CN79283-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	22-May-07	30-Jun-08	607200.00	=""	="Paxus Australia Pty Limited"	12-May-08 03:05 PM	

+="CN79331"	"HUMAN FACTORS CONSULTANT"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	09-Apr-08	30-Jun-08	359844.10	=""	="ADVANCED VTOL TECHNOLOGIES"	12-May-08 03:08 PM	

+="CN79352"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.02"	="Department of Defence"	12-May-08	="Fuels"	03-Apr-08	30-Jun-08	18205000.00	=""	="CALTEX AUSTRALIA LTD"	12-May-08 03:09 PM	

+="CN79363"	"THROUGH LIFE SUPPORT OF THE AIR SAFETY NET AND DIR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	09-Apr-08	30-Jun-12	1553125.20	=""	="KARERA COMMUNICATIONS PTY LTD"	12-May-08 03:10 PM	

+="CN79364"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	29-Apr-08	30-Apr-08	950000.00	=""	="BLAKE DAWSON WALDRON TRUST ACCT"	12-May-08 03:10 PM	

+="CN79365"	"Ford Futura Wagon Qty 53 ( WM)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	1352352.56	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79378"	"Ford Fairmont Sedan ( SE) Qty 21"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	540214.69	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:11 PM	

+="CN79375-A9"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	08-Apr-03	30-Jun-11	123600000.00	=""	="ACL Pty Ltd (for the Consortium for the South Western Sydney Region"	12-May-08 03:11 PM	

+="CN79410"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	18-Apr-08	401505.50	=""	="DESKON INTERIORS PTY LTD"	12-May-08 03:13 PM	

+="CN79437"	"HUGPH2.3 Project Support (Bob Pryke & John Porter)"	="Department of Defence"	12-May-08	="Aircraft"	02-Apr-08	30-Jun-09	448305.00	=""	="JACOBS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79444"	"Analysis of  Mk3 CMS Software Problem Reports"	="Department of Defence"	12-May-08	="Military watercraft"	01-Apr-08	31-Aug-08	825000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:15 PM	

+="CN65709"	" Trainee Recruit Accommodation Services in Melbourne and Sydney.  Contract option to extend has been taken up.  New total contract value is now $1,649,000.00.  Previous Gazettal ref is 1560998. "	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	01-Jan-06	31-Dec-10	1152000.00	="RFT010-HQ05"	="Intercontinental Hotels Group"	12-May-08 03:17 PM	

+="CN79467-A8"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	137600000.00	=""	="ACL Pty Ltd (for the Consortium for the Western Sydney Region)"	12-May-08 03:18 PM	

+="CN79486"	"SDSS District Realignment"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	26-Mar-08	30-Jun-08	1250279.80	=""	="KPMG"	12-May-08 03:18 PM	

+="CN79502"	"SML replacement deck cranes"	="Department of Defence"	12-May-08	="Heavy construction machinery and equipment"	26-Mar-08	31-Jul-08	360819.83	=""	="G A GLANVILLE & CO"	12-May-08 03:19 PM	

+="CN79506"	"DOOR ASSEMBLY"	="Department of Defence"	12-May-08	="Aircraft"	26-Mar-08	15-Sep-08	390000.17	=""	="BLUE AEROSPACE LLC"	12-May-08 03:20 PM	

+="CN79518"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	367998.54	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:20 PM	

+="CN79520"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Real estate services"	29-Apr-08	29-Apr-08	4417767.16	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:20 PM	

+="CN79522"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	596640.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:21 PM	

+="CN79528"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	29-Apr-08	29-Apr-08	320077.46	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:21 PM	

+="CN79553"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	18-Apr-08	597464.69	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	12-May-08 03:22 PM	

+="CN79564"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	21-Apr-08	21-Apr-08	539930.60	=""	="Isis Projects Pty Ltd"	12-May-08 03:23 PM	

+="CN79570-A6"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	123400000.00	=""	="Training Queensland (for State of Queensland)"	12-May-08 03:25 PM	

+="CN79587"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Jan-09	1036200.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:26 PM	

+="CN79615"	"Prices quoted are based on an exchange rate of aud are fixed for a period of 8 months from order pla"	="Defence Materiel Organisation"	12-May-08	="Ammunition handling systems"	12-Feb-08	28-Feb-08	387508.79	=""	="RADIOMETER PACIFIC PTY LTD"	12-May-08 03:27 PM	

+="CN79646"	"Prototype for Kiowa Marker Beacon Replacement"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Mar-08	21-Jan-09	880000.00	=""	="HELITECH DIV OF SIKORSKY"	12-May-08 03:29 PM	

+="CN79658"	"*IAW DEED D0025*"	="Defence Materiel Organisation"	12-May-08	="Drugs and Pharmaceutical Products"	11-Feb-08	30-Jun-08	2768500.00	=""	="SYMBION PHARMACY SERVICES"	12-May-08 03:30 PM	

+="CN79665"	"Indicator Cpntrol Group"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	20-Mar-08	02-Jan-09	540327.47	=""	="DRS C3 SYSTEMS, INC"	12-May-08 03:31 PM	

+="CN79659-A8"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	12-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	6600000.00	=""	="Careers Australia International College Pty Ltd (trading as Brisbane Migrant English Centre, for the Adult Multicultural Services Consortium)"	12-May-08 03:31 PM	

+="CN79704"	"Installation of Asset Management Planning System on LCH class vessels"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	12-Feb-08	30-Jun-08	549686.50	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 03:34 PM	

+="CN79712"	"P&EE VIBRATION TEST SET"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Mar-08	30-Jun-08	1318900.00	=""	="DAVIDSON MEASUREMENT"	12-May-08 03:34 PM	

+="CN79713"	"PROVISION OF AEROMEDICAL EVACUATION SERVICES"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	14-Nov-07	30-Nov-07	433125.00	=""	="ASPEN MEDICAL PTY LTD"	12-May-08 03:34 PM	

+="CN79734"	"Spectrum Analyzers"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Feb-08	20-Jun-14	1202725.53	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 03:35 PM	

+="CN79739"	"ACCELERATED ANALYSIS OF PH3.2 CENTRE BARREL."	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Jun-08	320000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79744"	"ACCELERATED ANALYSIS OF PH3.2 CENTRE BARREL FATIGUE TEST PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	30-Jun-08	320000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79746"	"INTERIM WORKS-LONE PINE BARRACKS,SCHOOL OF INFANTR"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	16-Nov-07	30-Jun-08	1480000.50	=""	="BRISLAND PTY LTD"	12-May-08 03:36 PM	

+="CN79749"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	12-May-08	="Fuels"	12-Feb-08	30-Jun-08	552895.20	=""	="KROPP HOLDINGS INC"	12-May-08 03:36 PM	

+="CN79757"	"Ku-Band satellite communications (SATCOM) terminal Offer: ISB:SAT: 02/2005."	="Defence Materiel Organisation"	12-May-08	="Education and Training Services"	15-Feb-08	30-Jun-08	317900.00	=""	="GIGASAT ASIA PACIFIC PTY LTD"	12-May-08 03:37 PM	

+="CN79768"	"COMMONWEALTH PURCHASE OF EXTANT SCOPE 1 BDS"	="Department of Defence"	12-May-08	="Manufacturing support services"	28-Mar-08	31-Mar-08	943708.12	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 03:37 PM	

+="CN79774"	"Supply Trunk Communication support and test equipm quotation QN-A5259A, Dated 12/12/2007"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	15-Feb-08	30-Jun-08	420501.40	=""	="GIGASAT ASIA PACIFIC PTY LTD"	12-May-08 03:38 PM	

+="CN79796"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	5500000.00	=""	="IBM AUSTRALIA LIMITED"	12-May-08 03:40 PM	

+="CN79798"	"Upgrade of the current PIF PDL to enable testing o Refer Quote No: 9089"	="Defence Materiel Organisation"	12-May-08	="Satellites"	15-Feb-08	30-Jun-08	469718.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:40 PM	

+="CN79802"	"(MYAMBAT) & NEWCASTLE S3 CONTRACTOR"	="Department of Defence"	12-May-08	="Transportation services equipment"	15-Nov-07	30-Jun-08	982063.50	=""	="BACTEC SE ASIA PTY LTD"	12-May-08 03:40 PM	

+="CN79806"	"Support"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	15-Nov-07	28-Feb-08	320000.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 03:40 PM	

+="CN79816"	"Protected Containers"	="Defence Materiel Organisation"	12-May-08	="Containers and storage"	14-Feb-08	30-Nov-08	15859685.69	=""	="DREHTAINER GMBH"	12-May-08 03:41 PM	

+="CN79817"	"Rangefinder Handheld"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	28-Mar-08	01-Jul-08	387604.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79820"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE."	="Department of Defence"	12-May-08	="Fuels"	28-Mar-08	30-Jun-08	836165.00	=""	="CALTEX AUSTRALIA PETROLEUM P / L"	12-May-08 03:41 PM	

+="CN79831"	"Toyota Hilux 4x2 Dual Cab Ute (4 Cy) Qty22"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	01-Oct-08	529534.96	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:42 PM	

+="CN79848"	"PROCUREMENT OF QUANTITY 8 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	04-Aug-08	334728.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79866"	"Provision of IT Services"	="Medicare Australia"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	2582771.40	=""	="IBM GLOBAL SERVICES AUSTRALIA"	12-May-08 03:45 PM	

+="CN79873"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND"	="Department of Defence"	12-May-08	="Fuels"	28-Mar-08	30-Jun-08	965250.00	=""	="EXXONMOBIL AVIATION"	12-May-08 03:45 PM	

+="CN79875"	"Management of payments against Contract 5370058 for supply of qty 130 Laser Range finders."	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	15-Feb-08	14-Oct-08	1549271.00	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79886"	"Crypto Eqpt."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	28-Mar-08	01-Jan-09	1213999.89	=""	="EADS DEFENSE SECURITY AND SYSTEMS S"	12-May-08 03:46 PM	

+="CN79908"	"T56 tech services"	="Department of Defence"	12-May-08	="Aircraft"	27-Mar-08	30-Jun-08	720240.40	=""	="QANTAS DEFENCE SERVICES PTY LTD"	12-May-08 03:47 PM	

+="CN79933"	"TD187 DMS17.1  Software upgrades Vendor Quote: ES-TXA-MPS-1079 dated 05Feb08TD Numb"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	14-Feb-08	20-Feb-09	2024379.50	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:50 PM	

+="CN79968"	"L7A2 MACHINE GUN SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	27-Mar-08	01-Oct-08	348871.86	=""	="FN HERSTAL SA"	12-May-08 03:53 PM	

+="CN80000"	"In-service support"	="Department of Defence"	12-May-08	="Satellites"	11-Dec-07	30-Jun-12	825792.00	=""	="NOVAMARINE INSTRUMENTS PTY LTD"	12-May-08 03:56 PM	

+="CN80007"	"Centre of Gravity Table"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	30-Aug-08	817000.80	=""	="JOHN BEEVER (AUST.) PTY. LIMITED"	12-May-08 03:56 PM	

+="CN80011"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	27-Mar-08	30-Oct-08	370238.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 03:57 PM	

+="CN79961"	"Gst Prosecution Services supplied by Commonwealth Director of Public Prosecutions"	="Australian Taxation Office"	12-May-08	="Tax advisory services"	01-Jul-08	30-Jun-09	2000000.00	=""	="Commonwealth Director of Public Prosecutions"	12-May-08 03:58 PM	

+="CN80043"	"SEED MANAGEMENT CONTRACT"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	10-Apr-08	05-Jan-09	3339083.52	=""	="HAULMARK TRAILERS AUST"	12-May-08 03:59 PM	

+="CN80047"	"Field and Refrigeration"	="Department of Defence"	12-May-08	="Industrial refrigeration"	12-Dec-07	30-Apr-10	8478530.91	=""	="INTERNATIONAL LOGISTICS MANAGEMENT"	12-May-08 03:59 PM	

+="CN80057"	"Multi-Spectrual Camouflage Systems (MCS) for the M1A1 Abrams Tanka dn M88A2 Hercules"	="Department of Defence"	12-May-08	="War vehicles"	12-Dec-07	14-May-09	4483651.35	=""	="SAAB BARRACUDA PTY LTD"	12-May-08 04:00 PM	

+="CN80076"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	352000.00	=""	="DEEWR"	12-May-08 04:01 PM	

+="CN80088"	"QANTAS RPT FLIGHTS JAN 08 CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Mar-08	732780.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:02 PM	

+="CN80090"	"Quote:20080116 Electronic Counter - measure"	="Defence Materiel Organisation"	12-May-08	="War vehicles"	06-Feb-08	06-Jun-08	414476.70	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 04:02 PM	

+="CN80112"	"RESPIRATOR"	="Department of Defence"	12-May-08	="Respiratory protection"	11-Dec-07	07-Feb-08	779049.26	=""	="AVON RUBER PLC - AVON TECHNICAL PRO"	12-May-08 04:03 PM	

+="CN80123"	"DS SWS CMS MATERIAL"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Nov-07	30-Jun-08	972388.46	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 04:04 PM	

+="CN80135"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVTUR/FSII IN BULK INTO RAAF BASES  DIRECT INTO AIRCRA"	="Department of Defence"	12-May-08	="Fuels"	10-Dec-07	30-Jun-08	18150000.00	=""	="CALTEX AUSTRALIA LTD"	12-May-08 04:05 PM	

+="CN80145"	"For the procurement of Repairs and upgrades of Bir 3 ECM Systems"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	27-Jun-08	891550.00	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 04:05 PM	

+="CN80158"	"PROVISION OF A SUITE OF TRAINING COURSES"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	06-Feb-08	11-Feb-08	402886.44	=""	="DEAKINPRIME"	12-May-08 04:06 PM	

+="CN80164"	"ORDER RAISED FOR THE SUPPLY OF AVIATION FUEL (AVTU DEFENCE FORCES WHILE OVERSEAS."	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	797445.00	=""	="NORDIC CAMP SUPPLY"	12-May-08 04:07 PM	

+="CN80171"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	500000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:08 PM	

+="CN80175"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	2270498.55	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:08 PM	

+="CN80184"	"QANTAS FLIGHTS - OPS DEC07"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Mar-08	761363.19	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:09 PM	

+="CN80189"	"Contract C388585 - Hornet Maintenance and Modifica"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	05-Feb-08	30-Nov-08	16730674.13	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:09 PM	

+="CN80190"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	5625374.04	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:09 PM	

+="CN80200"	"S&Q27 FOR HUGPH3.2 OTHER DIRECT COSTS CONTRACT C338529"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	30-Apr-08	3393658.68	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 04:10 PM	

+="CN80202"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.02"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	2981000.00	=""	="SHELL CO OF AUSTRALIA LTD"	12-May-08 04:10 PM	

+="CN80205"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	4437869.68	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:11 PM	

+="CN80209"	"Leica Vector 21"	="Department of Defence"	12-May-08	="Security surveillance and detection"	11-Dec-07	30-May-08	856157.50	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:11 PM	

+="CN80208"	"gts050-2 RIMPAC"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Feb-08	18-Apr-08	352628.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:11 PM	

+="CN80221"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	2582333.60	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:11 PM	

+="CN80225"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 004.01"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	18370000.00	=""	="SHELL CO OF AUSTRALIA LTD"	12-May-08 04:12 PM	

+="CN80232"	"LICENCE MAINTENANCE AND SUPPORT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Nov-07	30-Jun-08	1622681.67	=""	="ORACLE CORPORATION AUSTRALIA"	12-May-08 04:12 PM	

+="CN80236"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 002.01"	="Department of Defence"	12-May-08	="Fuels"	11-Dec-07	30-Jun-08	18260000.00	=""	="BP AIR - DIVISION OF BP"	12-May-08 04:12 PM	

+="CN80237"	"Evoluionary System Design activities of National & Coalition Secret Local Area Networks Stage 2"	="Defence Materiel Organisation"	12-May-08	="Components for information technology or broadcasting or telecommunications"	05-Feb-08	30-Jun-08	737000.00	=""	="THALES AUSTRALIA"	12-May-08 04:12 PM	

+="CN80238"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH PROJECT R6986 DELIVERY PHASE PM/CA"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-11	1171857.50	=""	="***USE 1079487***"	12-May-08 04:13 PM	

+="CN80243"	"Replace Non-compliant Power & Lighting - Aircraft Shelters - RAAF Base Pearce"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	20-Nov-07	30-Jun-09	839999.60	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 04:13 PM	

+="CN80244"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	13-Feb-08	28-Feb-08	475000.00	=""	="MINTER ELLISON"	12-May-08 04:13 PM	

+="CN80257"	"THIS PURCHASE ORDER HAS BEEN RAISED FOR ADMINISTRA ALLOW PAYMENTS AGAINST CONTRACT NUMBER 2006/10826"	="Department of Defence"	12-May-08	="Motorised cycles"	10-Apr-08	30-Apr-09	872960.61	=""	="AITKEN MOTORCYCLES"	12-May-08 04:15 PM	

+="CN80281"	"S-70B-2 SAMT PS1405 Cockpit Realignment and Crash Modification"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	31-Mar-08	342045.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:17 PM	

+="CN80290"	"PROCUREMENT OF DIGITAL SATELITE TV CAPABILITY HMAS SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	05-Feb-08	30-Apr-08	300207.60	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 04:17 PM	

+="CN80303"	"QANTAS ACCOUNT"	="Department of Defence"	12-May-08	="Recreational aircraft"	30-Dec-07	11-Mar-08	338163.48	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:18 PM	

+="CN80310"	"MADE TO MEASURE ATTIRE"	="Department of Defence"	12-May-08	="Clothing"	20-Dec-07	28-Feb-08	341404.89	=""	="AUSTRALIAN DEFENCE APPAREL"	12-May-08 04:19 PM	

+="CN80318"	"Build of DLANs' for ACSS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	4815772.28	=""	="THALES AUSTRALIA"	12-May-08 04:20 PM	

+="CN80316-A4"	" Provisions for Handyman Services "	="Department of Immigration and Citizenship"	12-May-08	="Building support services"	15-Jan-07	14-Jan-10	471900.00	=""	="Edsring Property Maintenance Pty Ltd"	12-May-08 04:21 PM	

+="CN80327"	"Cartridge 9mm Ball M882"	="Department of Defence"	12-May-08	="Explosive materials"	14-Apr-08	01-Jul-09	2811619.03	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:21 PM	

+="CN80329"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	14-Apr-08	465480.38	=""	="MCGRATH NICOL"	12-May-08 04:21 PM	

+="CN80349"	"SDSS District Realignment Implementation"	="Department of Defence"	12-May-08	="Computer services"	02-Jan-08	22-Feb-08	305310.00	=""	="KPMG"	12-May-08 04:22 PM	

+="CN80361"	"Supply Sonar Data Recording System (SDRS) and OLM spares"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Dec-07	22-Jun-08	345977.50	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:23 PM	

+="CN80371"	"JP2077 Phase 2B.1 Planning Options"	="Department of Defence"	12-May-08	="Management support services"	04-Jan-08	30-Jun-08	374568.50	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:24 PM	

+="CN80376"	"Installation of EHSD on HMAS Darwin"	="Department of Defence"	12-May-08	="Satellites"	04-Jan-08	30-Jun-08	441353.22	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:24 PM	

+="CN80378"	"HGCE"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	11-Feb-08	05-May-08	524519.60	=""	="CYPHER RESEARCH LABORATORIES"	12-May-08 04:24 PM	

+="CN80381"	"Installation of EHSD on HMAS Success"	="Department of Defence"	12-May-08	="Satellites"	04-Jan-08	30-Jun-08	706414.42	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:24 PM	

+="CN80398"	"ESP for Project Bushranger"	="Department of Defence"	12-May-08	="Management support services"	14-Apr-08	24-Mar-09	345537.50	=""	="UXC LIMITED"	12-May-08 04:25 PM	

+="CN80399"	"81MM MORTAR SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	04-Jan-08	05-Jul-08	523880.09	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	12-May-08 04:25 PM	

+="CN80410"	"Purchase of Soldier Personal Radios Refer Contract 203517"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	23-Jun-08	2197050.00	=""	="ERICSSON AUSTRALIA PTY LTD"	12-May-08 04:25 PM	

+="CN80433"	"18MM MORTAR SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	02-Jan-08	05-Jul-08	328594.57	=""	="BAE SYSTEMS LAND SYSTEMS (MUNITIONS"	12-May-08 04:27 PM	

+="CN80456"	"Chocoalte, Ration"	="Department of Defence"	12-May-08	="Chocolate and sugars and sweeteners and confectionary products"	19-Dec-07	30-Apr-08	301998.84	=""	="NESTLE AUSTRALIA LTD"	12-May-08 04:28 PM	

+="CN80463"	"LEP TEANOAI Support and Workup Costs"	="Defence Materiel Organisation"	12-May-08	="Commercial marine craft"	11-Feb-08	30-Aug-08	344779.01	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:28 PM	

+="CN80469"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaged combination meals"	09-Jan-08	28-Sep-08	2138812.35	=""	="PREPARED FOODS PROCESSING PTY"	12-May-08 04:28 PM	

+="CN80475"	"Muesli Bars - Various"	="Department of Defence"	12-May-08	="Baking mixes and supplies"	19-Dec-07	31-May-09	314603.19	=""	="WHOLESOME BAKE PTY LTD"	12-May-08 04:29 PM	

+="CN80476"	"UHF NCS through life support contract extension"	="Department of Defence"	12-May-08	="Professional engineering services"	09-Jan-08	30-Jun-13	331537.80	=""	="SPIRIT RIVER PTY LTD"	12-May-08 04:29 PM	

+="CN80477"	"3115 ANZAC CLASS EMA PROJECT MANAGEMENT TEAMS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	11-Feb-08	30-Jun-08	600292.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:29 PM	

+="CN80480"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-09	1836472.00	=""	="1ST FLEET PTY LTD"	12-May-08 04:29 PM	

+="CN80485"	"Software Support Engineer"	="Department of Defence"	12-May-08	="Aircraft"	11-Apr-08	31-Mar-09	580479.68	=""	="JACOBS AUSTRALIA"	12-May-08 04:30 PM	

+="CN80500"	"installation of crash data recorder modifications to 2 x S-70B-2 seahawk helicopters"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	07-Feb-08	31-Aug-08	409661.20	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:31 PM	

+="CN80505"	"RMIMR Test set Acquisition"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	31-Aug-08	590997.00	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:32 PM	

+="CN80509"	"Licence and Technical Service Agreement with Sikorsky Aircaft Corporation."	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	31-Dec-17	1807542.00	=""	="SIKORSKY AIRCRAFT CORPORATION"	12-May-08 04:32 PM	

+="CN80497-A4"	"Provisions for Cleaning Services"	="Department of Immigration and Citizenship"	12-May-08	="Building cleaning services"	05-Dec-05	03-Dec-09	2275653.00	=""	="M&M Rolfe Cleaning Services Pty Ltd"	12-May-08 04:32 PM	

+="CN80512"	"Flight termination system requirement"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Feb-08	20-Jun-08	1504516.09	=""	="SYSTEM PLANNING CORPORATION"	12-May-08 04:32 PM	

+="CN80526"	"CAPO 07/08 and 09/08"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	11-Apr-08	16-Mar-09	2047950.00	=""	="RAPID ASCENT CONSULTING"	12-May-08 04:33 PM	

+="CN80543"	"SDSS IT Controls Framework Complience"	="Defence Materiel Organisation"	12-May-08	="Management support services"	07-Feb-08	15-May-08	324805.00	=""	="ERNST & YOUNG"	12-May-08 04:34 PM	

+="CN80541"	"ALR2002 Full Rate Production Profit and G&A"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Jan-08	31-Mar-08	1100078.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:34 PM	

+="CN80551"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Chocolate and sugars and sweeteners and confectionary products"	10-Jan-08	30-May-08	336441.60	=""	="MARS CONFECTIONERY OF AUSTRALIA"	12-May-08 04:34 PM	

+="CN80555"	"This purchase order is raised to carry out work as Statement of Work and Technical Specification."	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	15-May-08	408101.87	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:34 PM	

+="CN80556"	"THIS ORDER IS PLACED IAW AASPO CAPO 16/07"	="Department of Defence"	12-May-08	="Specialty aircraft"	10-Jan-08	14-Apr-08	1483607.40	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:35 PM	

+="CN80558"	"HMAS ANZAC IMAV08"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	31-Jul-08	4949780.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:35 PM	

+="CN80559"	"Workshop Equipment"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	11-Apr-08	01-Nov-08	951024.10	=""	="SUN TEST SYSTEMS B.V."	12-May-08 04:35 PM	

+="CN80561"	"Technical services"	="Department of Defence"	12-May-08	="Military watercraft"	10-Jan-08	15-Jun-08	314257.90	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:35 PM	

+="CN80563"	"Manitou 675 Telehandlers"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	08-Feb-08	02-Jun-08	1589931.77	=""	="NTP FORKLIFTS AUST"	12-May-08 04:35 PM	

+="CN80568"	"HMAS KANIMBLA MAJOR DOCKING PM"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	20-Mar-08	443473.73	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:35 PM	

+="CN80580"	"PROCUREMENT QTY 19 Medium Cargo Trucks with Crane"	="Department of Defence"	12-May-08	="Motor vehicles"	21-Dec-07	18-Apr-08	2615045.62	=""	="ISUZU AUSTRALIA LTD"	12-May-08 04:36 PM	

+="CN80593"	"softsided medical shelters"	="Defence Materiel Organisation"	12-May-08	="Camping and outdoor equipment and accessories"	08-Feb-08	10-Jun-08	1100280.78	=""	="IB SUPPLIES PTY LTD"	12-May-08 04:36 PM	

+="CN80596"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	08-Jan-08	15-Apr-08	1892315.04	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:37 PM	

+="CN80599"	"Software Upgrade Existing Standing Offer CISSD/004."	="Department of Defence"	12-May-08	="Software"	11-Apr-08	30-Jun-08	528000.00	=""	="SOLUTIONS FROM SILICON"	12-May-08 04:37 PM	

+="CN80609"	"IT Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	363173.80	=""	="STEP Electronics (A Hills Company)"	12-May-08 04:38 PM	

+="CN80613"	"POC: LLOYD MAGNER CONTACT: 02 62669353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	500945.41	=""	="SUN MICROSYSTEMS"	12-May-08 04:38 PM	

+="CN80625"	"INSTALL LOCAL AREA NETWORK ONTO HMAS SUCCESS"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	21-Dec-07	30-Jun-08	940041.17	=""	="THALES AUSTRALIA"	12-May-08 04:38 PM	

+="CN80635"	"10 Cisco Routers & Switches"	="Department of Defence"	12-May-08	="Hardware"	21-Dec-07	30-Jun-08	331392.04	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 04:39 PM	

+="CN80637"	"Procrrement of Container Sideloaders"	="Defence Materiel Organisation"	12-May-08	="Containers and storage"	25-Feb-08	31-Jan-09	2297910.85	=""	="STEELBRO NZ LTD"	12-May-08 04:39 PM	

+="CN80641"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Dairy products and eggs"	08-Jan-08	31-Oct-08	336374.50	=""	="FONTERRA BRANDS (AUST) PTY LTD"	12-May-08 04:39 PM	

+="CN80652"	"AIR BLOWERS ASSEMBLIES"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	04-Apr-08	29-Aug-08	603729.06	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 04:40 PM	

+="CN80665"	"PROCUREMENT OF QUANTITY 18 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	22-May-08	637274.48	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:40 PM	

+="CN80666"	"Interface Remediation Management"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	27-Jun-08	394958.75	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:40 PM	

+="CN80668"	"This Purchase Order is subject to the Terms and Co ISS Contract C388561."	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Jan-08	31-Jan-08	880076.34	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:41 PM	

+="CN80672"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Preserved  drupe or stone fruits"	09-Jan-08	30-Jun-08	396162.68	=""	="SPC ARDMONA OPERATIONS LTD"	12-May-08 04:41 PM	

+="CN80677"	"Land 58 PH3 Price Variation Payment"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	21-Dec-07	30-Jun-08	494743.49	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:41 PM	

+="CN80680"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaged combination meals"	09-Jan-08	30-Jun-09	544669.39	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:41 PM	

+="CN80691"	"RMIMR Sensor Interface System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	520168.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 04:42 PM	

+="CN80693"	"A25 Black Hawk Technical publication revision"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	20-Dec-07	01-Dec-14	4346507.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80701"	"ENGINEERING AND AIRWORTHINESS TASKS TO DELIVER C130 JOINT PRECISION AIRDROP SYSTEM CAPABILITY"	="Department of Defence"	12-May-08	="Aircraft equipment"	20-Dec-07	30-May-08	867609.09	=""	="AMCE PTY LTD"	12-May-08 04:42 PM	

+="CN80704"	"LEAD IN SKILLS TRAINING"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Jan-08	25-Jan-08	408899.26	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:42 PM	

+="CN80713"	"Provision of specialist software acquisition"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	20-Dec-07	01-Jan-09	361763.60	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:43 PM	

+="CN80719"	"JFIMS Software Maintenance/Support for 5 years"	="Department of Defence"	12-May-08	="Software"	07-Apr-08	31-Dec-13	5817350.00	=""	="VAREC INC"	12-May-08 04:43 PM	

+="CN80720"	"JP2077 Phase 2B.1 Interfaces Impact  Assessment"	="Department of Defence"	12-May-08	="Management support services"	30-Jan-08	28-Mar-08	502388.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:43 PM	

+="CN80732"	"Contracted S-70B-2 Phase 2 Servicing"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	30-Jan-08	31-Aug-08	303886.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:44 PM	

+="CN80736"	"BH COCKPIT BALLISTIC PROTECTION KITS"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Sep-08	1027622.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:44 PM	

+="CN80737"	"Repair of Leica Vector IV H/Held Laser Rangefinder"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	25-Feb-08	02-Dec-08	382167.17	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:44 PM	

+="CN80752"	"PROVISION OF PUBLICATION"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	31-Jul-08	323525.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:45 PM	

+="CN80758"	"ENERGIZER BATTERIES FOR TWS"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	03-Apr-08	30-Jun-08	442613.16	=""	="ENERGIZER AUSTRALIA PTY LTD"	12-May-08 04:45 PM	

+="CN80760"	"ADDITIONL FUNDING FOR ALR2002 L17C OBSOLESCENCE REMEDIATION TO SUPPORT 2A FRP"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jun-08	594000.00	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	12-May-08 04:45 PM	

+="CN80778"	"HMAS MANOORA WOOP"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	03-Apr-08	20-Jun-08	1398402.72	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:47 PM	

+="CN80781"	"Procrement of MHE-L Vehicles"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	30-Jun-09	5910724.32	=""	="CONSTRUCTION EQUIPMENT AUSTRALIA"	12-May-08 04:47 PM	

+="CN80782"	"AMBERLEY AIRFIELD LIGHTING UPGRADE"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-Oct-08	529260.83	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:47 PM	

+="CN80783"	"TD051 ALR-2002 Core Team Resourcing"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	31-Dec-08	599398.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:47 PM	

+="CN80786"	"procurement plan for essm sustainment"	="Department of Defence"	12-May-08	="Missiles"	03-Apr-08	30-Apr-08	709757.95	=""	="NATO SEASPARROW SURFACE MISSILE"	12-May-08 04:47 PM	

+="CN80790"	"AIC Support Training Device"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	30-Jun-09	309203.40	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:47 PM	

+="CN80791"	"Supply further quantities of 171 2.5kVA Generators in accord with Contract E1-7940155 clause 1.7"	="Defence Materiel Organisation"	12-May-08	="Batteries and generators and kinetic power transmission"	22-Feb-08	14-Apr-09	1526583.88	=""	="ADVANCED POWER (NSW) PTY LTD"	12-May-08 04:47 PM	

+="CN80793"	"Spares for CRT monitors"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	20-Dec-07	30-May-08	1803203.77	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:47 PM	

+="CN80797"	"Software and Support"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Sep-08	302063.70	=""	="TENFOLD NETWORK SOLUTIONS"	12-May-08 04:47 PM	

+="CN80798"	"This PO has been raised to make payments against Contract 2006/1181421 for Qty 10 Tow Vehicles"	="Department of Defence"	12-May-08	="Motor vehicles"	04-Apr-08	30-Dec-08	3055977.73	=""	="MAN MILITARY VEHICLE SYSTEMS"	12-May-08 04:47 PM	

+="CN80802"	"MANIFOLD ASSEMBLY,HYDRAULIC P/No 11157002 NSN 4730-01-459-5640"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	04-Apr-08	30-Nov-09	1771947.10	=""	="ROLLS ROYCE MARINE AUST PTY LTD"	12-May-08 04:48 PM	

+="CN80803"	"Computing equipment"	="Defence Materiel Organisation"	12-May-08	="Components for information technology or broadcasting or telecommunications"	22-Feb-08	30-Jun-08	363000.00	=""	="ACACIA RESEARCH PTY LTD"	12-May-08 04:48 PM	

+="CN80806"	"Cart .50 Cal 4 Ball / 1 Tracer M17"	="Department of Defence"	12-May-08	="Ammunition"	04-Apr-08	31-Dec-09	2638545.76	=""	="THALES AUSTRALIA"	12-May-08 04:48 PM	

+="CN80823"	"DIAMANTINA FAMP 01/08 (10-28 MARCH 2008)"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	28-Apr-08	487585.48	=""	="THALES AUSTRALIA"	12-May-08 04:48 PM	

+="CN80826"	"In accordance with terms and conditions of the Log Systems Technical Support Services Standing Offer"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	30-Jun-08	529000.00	=""	="DIMENSION DATA LEARNING"	12-May-08 04:49 PM	

+="CN80829"	"Ingres Software Licences"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	21-Dec-08	357195.44	=""	="INGRES AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80833"	"SPARES KIT FOR PMF RADIO"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	12-May-08	616172.08	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:49 PM	

+="CN80840"	"PROVISION OF FACILITIES FOR DELIVERY OF EMCPM PROGRAM"	="Department of Defence"	12-May-08	="Medical training and education supplies"	29-Jan-08	31-Jan-10	2090003.30	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 04:49 PM	

+="CN80841"	"Replacement of Obsolete Thermal Imaging Capabilty"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	18-Dec-07	30-Jun-08	1443921.29	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:49 PM	

+="CN80857"	"Heavy grade BTN support services."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	18-Dec-07	31-Aug-08	626560.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:50 PM	

+="CN80869"	"SUPPORT TO ISRD"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	18-Dec-07	31-May-08	367901.76	=""	="RLM PTY LTD"	12-May-08 04:50 PM	

+="CN80867"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	22-Feb-08	31-Jan-10	660000.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80875"	"License Fee & Field Service Representative charges Technology Inc. Business Agreement) for the p"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	27-Feb-08	31-Dec-08	478467.00	=""	="GEAE HOLDINGS INC"	12-May-08 04:51 PM	

+="CN80877"	"HMAS YARRA REFIT DOCKING 2008"	="Department of Defence"	12-May-08	="Military watercraft"	18-Dec-07	31-May-08	2283526.54	=""	="THALES AUSTRALIA"	12-May-08 04:51 PM	

+="CN80878"	"ASSIST WITH DMO FINANCIAL STATEMENTS"	="Department of Defence"	12-May-08	="Published Products"	08-Apr-08	30-Sep-08	364650.00	=""	="WALTER TURNBULL PTY LTD"	12-May-08 04:51 PM	

+="CN80886"	"VOP for AUD milestone payments, 6 to 8A, inv 69080"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Apr-08	1227380.90	=""	="BAE SYSTEMS AUSTRALIA"	12-May-08 04:51 PM	

+="CN80896"	"OIL COOLER & BAECS FOR C130J"	="Department of Defence"	12-May-08	="Aircraft"	30-Jan-08	30-Jan-09	1083111.35	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 04:52 PM	

+="CN80901"	"PO raised to cover the BAE CCP No 002/2007 to Stan 9207-001-052 for the period 01Jan to 31 Jan 2008."	="Department of Defence"	12-May-08	="Aircraft"	18-Dec-07	31-Jan-08	497852.32	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:52 PM	

+="CN80905"	"ECCM Study"	="Department of Defence"	12-May-08	="Military science and research"	18-Dec-07	31-Dec-07	375555.13	=""	="JOINT STRIKE FIGHTER-OFFICIAL"	12-May-08 04:52 PM	

+="CN80916"	"EWSP SUITE POD AND CABIN EQUIP OF LEARJET"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	30-Jun-08	469987.10	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:53 PM	

+="CN80927"	"Part 4 Task 099 Payload Video PCB"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	09-Apr-08	30-Sep-08	339010.36	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:53 PM	

+="CN80930"	"sonobouys"	="Department of Defence"	12-May-08	="Conventional war weapons"	18-Dec-07	31-May-08	1646218.39	=""	="ULTRA ELECTRONICS MARITIME SYSTEMS"	12-May-08 04:53 PM	

+="CN80940"	"OF AAP 7213.006-2-460 SERIES MANUALS"	="Defence Materiel Organisation"	12-May-08	="Live Plant and Animal Material and Accessories and Supplies"	28-Feb-08	30-Sep-08	336341.47	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:54 PM	

+="CN80953"	"ENGAGEMENT OF PSP"	="Department of Defence"	12-May-08	="Aircraft"	04-Feb-08	30-Jun-09	2046000.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:55 PM	

+="CN80955"	"AIR WARFARE DESTROYER PROGRAM - EMPLOYMENT OF SPECIALIST PLATFORM ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	09-Apr-08	30-Sep-09	597951.56	=""	="JACOBS AUSTRALIA"	12-May-08 04:55 PM	

+="CN80957"	"1. This PO is for a total of 2,859,960 rounds only to build standarded as in  SOW Supplied."	="Department of Defence"	12-May-08	="Ammunition"	04-Feb-08	30-Jun-09	2197485.44	=""	="OLIN AUSTRALIA LTD"	12-May-08 04:55 PM	

+="CN80970"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	27-Feb-08	30-Apr-08	335404.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 04:56 PM	

+="CN80971"	"Equipment upgrade"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	15-Jun-08	366457.52	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:56 PM	

+="CN80983"	"FIP4"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	30-Jun-08	363604.72	=""	="AIRFLITE PTY LTD"	12-May-08 04:57 PM	

+="CN80987"	"PACKBOT EOD"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	15-Apr-08	663631.61	=""	="IROBOT CORPORATION"	12-May-08 04:57 PM	

+="CN80992"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Apr-08	764427.10	=""	="SUN MICROSYSTEMS"	12-May-08 04:57 PM	

+="CN80997"	"THIS ORDER IS PLACED IAW AASPO CAPO 16/07"	="Department of Defence"	12-May-08	="Specialty aircraft"	04-Feb-08	15-Jun-08	868745.39	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:57 PM	

+="CN80998"	"Fitout"	="Defence Materiel Organisation"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Feb-08	30-Jun-08	8000000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:58 PM	

+="CN81032"	"Block 6.1 Upgrade Program Simulator Engineering Change Proposal"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	06-Aug-08	335000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:00 PM	

+="CN81046"	"NOTE: ORDER RAISED AGAINST CONTRACT CONL074 AND ST"	="Department of Defence"	12-May-08	="Fire fighting equipment"	04-Feb-08	30-Jun-08	500000.00	=""	="CHUBB FIRE SAFETY LTD"	12-May-08 05:00 PM	

+="CN81047"	"TD048 Woomera Pod Testing"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	322572.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81050"	"Contract N260469"	="Department of Defence"	12-May-08	="Naval weapons"	04-Feb-08	30-Jun-10	7402947.75	=""	="BAE SYSTEMS LAND & ARMAMENTS INC."	12-May-08 05:01 PM	

+="CN81063"	"POC: AARON JOY CONTACT: 02 626 69320"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	1125674.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	12-May-08 05:01 PM	

+="CN81064"	"SUPPLY ONE LST PROPELLER HUB HMAS KANIMBLA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Feb-08	30-Jun-08	418406.56	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:01 PM	

+="CN81069"	"Contractor required to perform works as Purchase O MAXIMO Phase 2 - Implemetation and as summarised"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	15-Sep-08	518654.40	=""	="THALES AUSTRALIA"	12-May-08 05:01 PM	

+="CN81035-A9"	" Provision of Adult Migrant English Services "	="Department of Immigration and Citizenship"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-Jul-03	30-Jun-11	22000000.00	=""	="Canberra Institute of Technology"	12-May-08 05:02 PM	

+="CN81102"	"HUGPH3.2 S&Q#21"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	03-Jun-08	4017580.52	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 05:03 PM	

+="CN81106"	"HUGPH3.2 S&Q#22"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	07-May-08	3857515.14	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	12-May-08 05:03 PM	

+="CN81109"	"PSP -Contract Support  to conduct a study for the Spectrum Management software tool."	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Jun-08	313900.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:03 PM	

+="CN81117"	"DSTO tasks"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	19-Dec-07	30-Jun-08	480000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:03 PM	

+="CN81121"	"PROTECTIVE CLOTHING - SPECIAL PURPOSE"	="Department of Defence"	12-May-08	="Clothing"	19-Dec-07	30-Jun-08	367645.47	=""	="BLP TRAINING & SERVICES"	12-May-08 05:04 PM	

+="CN81138"	"**For Payment Purposes Only**"	="Department of Defence"	12-May-08	="Aircraft"	02-Feb-08	01-Jan-12	525210.00	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	12-May-08 05:04 PM	

+="CN81139"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	26-Nov-07	30-Jun-08	383672.71	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:04 PM	

+="CN81144"	"ORDER RAISED TO PAY NEW ZEALAND NAVY FOR FUEL SUPP AUSTRALIAN NAVY IN FY 07/08."	="Defence Materiel Organisation"	12-May-08	="Fuels"	19-Feb-08	30-Jun-08	1744270.14	=""	="ACCOUNTS RECEIVABLE ADMINISTRATOR"	12-May-08 05:04 PM	

+="CN81145"	"PROVISION OF PROFESSIONAL CERTIFICATION AND SHIP CLASSIFICATION BY GERMANISCHER LLOYD (AUST) P/L"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	01-Oct-13	3531000.00	=""	="GERMANISCHER LLOYD AUSTRALIA PTY"	12-May-08 05:05 PM	

+="CN81147"	"hmas mermaid and paluma assisted maintenance perio"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	26-Nov-07	31-Dec-07	321865.19	=""	="G A GLANVILLE & CO"	12-May-08 05:05 PM	

+="CN81150"	"This purchase order has been raised in accordance terms and conditions and as per your quote 5888 (R"	="Department of Defence"	12-May-08	="Flight communications related systems"	19-Dec-07	30-Jun-08	415522.01	=""	="CAPEWELL COMPONENTS COMPANY LLC"	12-May-08 05:05 PM	

+="CN81151"	"CAPABILITY RETENTION ADDITIONAL SUPPORT SERVICES REQUIREMENT"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	30-Jun-08	1968549.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:05 PM	

+="CN81154"	"JSM Study"	="Department of Defence"	12-May-08	="Military science and research"	19-Dec-07	15-Jul-08	2047394.32	=""	="JOINT STRIKE FIGHTER-OFFICIAL"	12-May-08 05:05 PM	

+="CN81158"	"Fire & Explosion Suppression System-Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	19-Dec-07	30-Jun-08	2675927.71	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:05 PM	

+="CN81184"	"DELIVERY OF EDUCATION PROGRAM FOR THE EXECUTIVE MASTERS IN COMPLEX PROJECT MANAGEMENT"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	20-Feb-08	30-Jun-08	1127500.00	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 05:06 PM	

+="CN81187"	"HUGPH3.1 IM&MC CCP#1 USD Payment"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	26-Nov-07	30-Nov-07	702266.09	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:06 PM	

+="CN81190"	"TD-045"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	30-Jun-09	461065.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:06 PM	

+="CN81196"	"URS 084 - Develop Container Association"	="Defence Materiel Organisation"	12-May-08	="Software"	19-Feb-08	30-Jun-08	419256.20	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:07 PM	

+="CN81197"	"Dry Sachet - Pepper, Fruit Grains, Noodles,Coffee, Milk, Curry Powder"	="Department of Defence"	12-May-08	="Instant mixes and supplies"	18-Dec-07	31-Oct-08	414673.54	=""	="MULTI-PACK LTD"	12-May-08 05:07 PM	

+="CN81221"	"Part 4 Task 070 LSTU"	="Defence Materiel Organisation"	12-May-08	="Launch vehicles and rockets"	19-Feb-08	12-Sep-08	634134.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:08 PM	

+="CN81224"	"Annual software maintenance fees for SMARTSTREAM for FALCON finance application"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	31-Dec-08	326642.89	=""	="GEAC COMPUTERS PTY LTD"	12-May-08 05:08 PM	

+="CN81234"	"Mount Resilient"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	23-Jan-08	14-Mar-08	301251.33	=""	="GENERAL ELECTRIC COMPANY DBA GE DIV"	12-May-08 05:08 PM	

+="CN81245"	"This Purchase Order is raised in accordance with t conditions of the HUGPH2.2 Prime Contract C338399"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	19-Dec-07	30-Jun-10	22946598.96	=""	="BOEING COMPANY THE"	12-May-08 05:09 PM	

+="CN81255"	"DTS No. 15 NROC Remote Control Terminal (RCT) Equipment breakout"	="Department of Defence"	12-May-08	="Electrical components"	23-Nov-07	28-Feb-08	348814.09	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:09 PM	

+="CN81264"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Dec-08	404750.00	=""	="NOVA DEFENCE"	12-May-08 05:10 PM	

+="CN81266"	"iSMART Licence and Annual Maintenance"	="Department of Defence"	12-May-08	="Detective services"	23-Jan-08	31-Dec-08	519235.20	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	12-May-08 05:10 PM	

+="CN81271"	"ASD/HSD ICAF Phase 4."	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Jun-08	550000.00	=""	="WALTER TURNBULL PTY LTD"	12-May-08 05:10 PM	

+="CN81284"	"TS4113-4 HMAS ARUNTA GPS TEMPORARY UPGRADE"	="Department of Defence"	12-May-08	="Military watercraft"	23-Jan-08	30-Jun-08	822123.34	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:10 PM	

+="CN81297"	"Procurement of Small Load Unit"	="Department of Defence"	12-May-08	="Containers and storage"	25-Nov-07	30-Jun-09	3154240.18	=""	="OZKOR PTY LTD"	12-May-08 05:11 PM	

+="CN81301"	"Provision of Legal Services"	="Defence Materiel Organisation"	12-May-08	="Legal services"	18-Feb-08	30-Jun-08	582994.83	=""	="PHILLIPS FOX SYDNEY"	12-May-08 05:11 PM	

+="CN81304-A1"	"KAZ Support to GWEO - NEXUS RFQTS 2724"	="Defence Materiel Organisation"	12-May-08	="Management support services"	18-Feb-08	30-Jun-10	602684.57	=""	="KAZ GROUP PTY LTD"	12-May-08 05:11 PM	

+="CN81307"	"part 4 task 103"	="Defence Materiel Organisation"	12-May-08	="Material handling machinery and equipment"	18-Feb-08	18-Aug-08	331444.72	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81342"	"ARM-002, ARM-012, ARM-031 FLARES AP3-C"	="Department of Defence"	12-May-08	="Ammunition"	23-Jan-08	30-May-08	558648.50	=""	="ARMTEC COUNTERMEASURES COMPANY"	12-May-08 05:14 PM	

+="CN81344"	"Diesel Fuel required for 1 Brigade in Support of E ***"	="Defence Materiel Organisation"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	21-Feb-08	30-Jun-08	539781.00	=""	="PARNELL MOGAS PTY LTD"	12-May-08 05:14 PM	

+="CN81353-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	21-Mar-11	1206013.13	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:14 PM	

+="CN81356-A1"	"Ship technical services"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	10-Sep-09	3090878.41	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:14 PM	

+="CN81359-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	24-Jun-11	4634903.66	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:14 PM	

+="CN81369"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Packaging materials"	22-Jan-08	30-Jun-09	597505.68	=""	="NCI SPECIALTY METAL PRODUCTS"	12-May-08 05:15 PM	

+="CN81374"	"TS 4039-4 HMAS TOOWOOMBA SRA01/IMAV02 Generation P"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	4674875.70	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:15 PM	

+="CN81378"	"Preparation of a Capability Definition Document"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-Jun-08	525764.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:15 PM	

+="CN81381"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	07-Mar-08	420495.32	=""	="PICO AUSTRALIA PTY LTD"	12-May-08 05:16 PM	

+="CN81385"	"ASSISTANCE WITH GFS OBLIGATIONS"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-Nov-07	30-Nov-08	312000.00	=""	="NOVA AEROSPACE"	12-May-08 05:16 PM	

+="CN81386"	"Repairs and Overhaul"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	22-Feb-08	30-Jun-11	5368354.28	=""	="STANDARD AERO AUSTRALIA"	12-May-08 05:16 PM	

+="CN81388"	"DIRECTOR ARTILLERY L1A2 CASED"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	28-Nov-07	30-Jun-08	473965.80	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 05:16 PM	

+="CN81394"	"Project Coordination Support"	="Department of Defence"	12-May-08	="Project management"	28-Nov-07	06-Jun-08	423550.00	=""	="UXC LIMITED"	12-May-08 05:16 PM	

+="CN81398"	"1190-4 MODIFICATION TO NIXIE DOUBLE DRUM WINCH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	31-Jan-10	2499932.60	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:17 PM	

+="CN81401"	"Additional LAND134 PH1 Relocation Services"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	21-Feb-08	31-Dec-08	889900.00	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 05:17 PM	

+="CN81410"	"URS 067 - Development of Weapon Kitting"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	30-Jun-08	382890.20	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 05:17 PM	

+="CN81417"	"AIRCRAFT MAINTENANCE SUPPORT -DESIGNATED R3 STRUCTURAL SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	25-Jan-08	30-Jun-09	467962.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:17 PM	

+="CN81419"	"ARMY UTILITY WORKBOAT TRAILERS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	1211218.80	=""	="HAULMARK TRAILERS AUST"	12-May-08 05:18 PM	

+="CN81439"	"LIFTING LUG AND ADDITIONAL WORK ON THE BRIDGE ERECTION PROPULSION BOATS"	="Department of Defence"	12-May-08	="Transportation components and systems"	26-Nov-07	30-Sep-08	311315.29	="SON48619"	="BIRDON MARINE PTY LTD"	12-May-08 05:19 PM	

+="CN81445"	"AIRCRAFT ENGINEERING AND MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	26-Nov-07	30-Oct-08	572000.00	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 05:19 PM	

+="CN81451"	"HMAS GASCOYNE FAMP 01/08  MARCH 2008"	="Department of Defence"	12-May-08	="Military watercraft"	27-Nov-07	01-Apr-08	412025.89	=""	="THALES AUSTRALIA"	12-May-08 05:19 PM	

+="CN81452"	"AMPLIFIER UPGRADE"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Apr-08	542520.00	=""	="ASD TECHNOLOGY PTY LTD"	12-May-08 05:19 PM	

+="CN81457"	"The provision of services for Safety Case for Aust Submarine Escape and Rescue Services (SERS)"	="Department of Defence"	12-May-08	="Safety and rescue water craft"	27-Nov-07	30-Jun-08	757198.02	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 05:19 PM	

+="CN81462"	"CONDITIONS OF CONTRACT: Attached special condition associated documentation. Note: in accordance wit"	="Department of Defence"	12-May-08	="Ammunition"	25-Jan-08	31-Oct-08	985999.84	=""	="DENIS FERRANTI METERS LTD"	12-May-08 05:20 PM	

+="CN81471"	"Combat Load Carrying Equipment"	="Defence Materiel Organisation"	12-May-08	="Clothing"	21-Feb-08	10-Sep-08	810424.46	=""	="EAGLE INDUSTRIES UNLIMITED INC"	12-May-08 05:20 PM	

+="CN81478"	"TS4175-3 COMBAT SYSTEM ENGINEERING CHANGE - REQUIREMENTS ANALYSIS FUNDING"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	396000.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:21 PM	

+="CN81482"	"Ship equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-May-08	426360.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:21 PM	

+="CN81488"	"Ship Equipment"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	01-Apr-08	15-Jan-10	8469555.60	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81494"	"Provision of Capability Development Documentation"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Apr-08	30-Jun-09	328002.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 05:23 PM	

+="CN81499"	"CBT/TTC Support to MRH90"	="Department of Defence"	12-May-08	="Aircraft"	24-Jan-08	30-Jun-10	3498112.21	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:23 PM	

+="CN81500"	"PROVISION OF SVCS UNDER HMAS PARRAMATTA SRA03/IMAV 04 FOR MTU DETROIT DIESEL"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Oct-08	574702.32	=""	="MTU DETROIT DIESEL AUSTRALIA"	12-May-08 05:23 PM	

+="CN81507"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	25-Jan-08	31-Jan-08	660053.08	=""	="AIMTEK PTY LTD"	12-May-08 05:24 PM	

+="CN81513"	"PLM-4 Upgrade"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	25-Jan-08	30-Jun-09	892230.91	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	12-May-08 05:24 PM	

+="CN81517"	"RIDGEWAY INVOICES 142191 & 142195"	="Department of Defence"	12-May-08	="Transportation services equipment"	25-Jan-08	31-Jan-08	2015131.29	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:24 PM	

+="CN81528"	"Implementation Of Team Centre (Overlander PROG)"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Apr-08	30-Jun-09	2973207.60	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:26 PM	

+="CN81529"	"SPECIALIST CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Professional engineering services"	24-Jan-08	30-Aug-08	400000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:26 PM	

+="CN81533"	"Review of EO lifing when deployed to the MEAO"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	13-Dec-07	30-Apr-08	303617.25	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:26 PM	

+="CN81535"	"HACTS SUPPORT -CONSOLE OPERATOR"	="Department of Defence"	12-May-08	="Flight instrumentation"	13-Dec-07	30-Jun-10	3659682.64	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:26 PM	

+="CN81550"	"ORDER RAISED TO REPLACE CANCELLED LINE ITEMS 2, 3, 12, 14, 15 AND 16 ON ROMAN ORDER 4500622261"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	21-Apr-08	02-Apr-09	4916964.80	=""	="ROLLS ROYCE MARINE AUST PTY LTD"	12-May-08 05:27 PM	

+="CN81551"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	409200.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:27 PM	

+="CN81581"	"Replacement of VAX equipment"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	30-Jun-08	402820.00	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 05:29 PM	

+="CN81586"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	31-Oct-08	638750.00	=""	="ACUMEN ALLIANCE"	12-May-08 05:30 PM	

+="CN81588"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	400163.32	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:30 PM	

+="CN81602"	"Engagement of ESP support for Tech Assesor Tasking under DMOSS RFQTS No: 2817"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	31-May-08	321024.00	=""	="GHD PTY LTD"	12-May-08 05:31 PM	

+="CN81632"	"Communication services"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	30-Jun-12	4139300.00	=""	="OPTUS NETWORKS PTY LTD"	12-May-08 05:35 PM	

+="CN81634"	"INTERAGENCY AUTHORIZATION - AUTONOMY IDOL SERVER SOFTWARE"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Dec-07	379600.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:35 PM	

+="CN81636"	"Protected Weapon Stations for Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	17-Dec-07	30-Jun-08	40300000.40	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:35 PM	

+="CN81641"	"HMAS Sydney IMAV 23"	="Department of Defence"	12-May-08	="Military watercraft"	17-Dec-07	28-May-08	3105442.88	=""	="THALES AUSTRALIA"	12-May-08 05:36 PM	

+="CN81645"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	30-Jun-08	754521.93	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81646"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Law enforcement"	17-Dec-07	31-May-08	1115053.04	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81647"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	30-Apr-08	1129284.11	=""	="AIMTEK PTY LTD"	12-May-08 05:36 PM	

+="CN81648"	"Single Man Lift (SML) Trailer modifications."	="Department of Defence"	12-May-08	="Industrial process machinery and equipment and supplies"	17-Dec-07	30-May-08	440143.00	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:37 PM	

+="CN81649"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	28-Mar-08	1052719.02	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81650"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	28-Feb-08	1089418.88	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81653"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	31-Jan-08	1104572.93	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81654"	"follow on support of hydrographic ships"	="Department of Defence"	12-May-08	="Marine transport"	17-Dec-07	31-Dec-07	1055801.02	=""	="AIMTEK PTY LTD"	12-May-08 05:37 PM	

+="CN81655"	"Fire & Explosion Suppression System-Bushmaster IMV"	="Department of Defence"	12-May-08	="Fire protection"	17-Dec-07	30-Jun-08	1683554.40	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:37 PM	

+="CN81656"	"CART RF SEDUCTION"	="Department of Defence"	12-May-08	="Ammunition"	17-Dec-07	02-Feb-09	4205404.86	=""	="CHEMRING AUSTRALIA PTY LTD"	12-May-08 05:38 PM	

+="CN81659"	"PROCUREMENT OF QUANTITY 26 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	14-Dec-07	01-Apr-08	2400426.31	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:38 PM	

+="CN81667"	"JCSE Systems Engineering/Integration Specialist"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Dec-07	17-Dec-08	366014.00	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	12-May-08 05:39 PM	

+="CN81669"	"RIDGEWAY INVOICE 142093 FOR FMS CASE AT-B-UCC"	="Department of Defence"	12-May-08	="Transportation components and systems"	14-Dec-07	30-Dec-07	369478.99	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:39 PM	

+="CN81673"	"MJU -62/B COUNTERMEASURE FLARES"	="Department of Defence"	12-May-08	="Ammunition"	15-Dec-07	30-Jun-08	491226.12	=""	="ATK LAUNCH SYSTEMS INC DBA ATK LAUN"	12-May-08 05:40 PM	

+="CN81674"	"RECEIVER TRANSMITTER RADIO"	="Department of Defence"	12-May-08	="Aircraft"	15-Dec-07	30-Sep-08	549263.10	=""	="RAYTHEON COMPANY"	12-May-08 05:40 PM	

+="CN81679"	"For the Engagement of Engineering ServicesContract Support for JP2048 PH1A Amphib Watercraft Project"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	17-Mar-08	433648.34	=""	="AMOG CONSULTING"	12-May-08 05:41 PM	

+="CN81681"	"External Service Providers"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	442800.01	=""	="DIMENSION DATA LEARNING"	12-May-08 05:41 PM	

+="CN81691"	"Project Management support - NEXUS"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Oct-08	358348.00	=""	="APP CORPORATION PTY LTD"	12-May-08 05:42 PM	

+="CN81692"	"Project Management Support Phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	31-Oct-08	329000.00	=""	="APP CORPORATION PTY LTD"	12-May-08 05:43 PM	

+="CN81698"	"P3 Structural Management Plan Implementation Personnel & Equipment Ramp-Up"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	07-Dec-07	30-Apr-08	716781.73	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 05:43 PM	

+="CN81702"	"Qualitative Evaluation & Electronic Tendering Support Services"	="Department of Defence"	12-May-08	="Management support services"	10-Dec-07	30-Apr-08	345647.28	=""	="SME GATEWAY LIMITED"	12-May-08 05:44 PM	

+="CN81706"	"SPSE - Aircraft Wash Equipment"	="Department of Defence"	12-May-08	="Cleaning Equipment and Supplies"	10-Dec-07	30-May-08	459798.25	=""	="BAE SYSTEMS AUSTRALIA - GBP"	12-May-08 05:44 PM	

+="CN81716"	"(CONTRACT:  LEA-CM-2007-029)."	="Department of Defence"	12-May-08	="Intravenous and arterial administration products"	07-Dec-07	30-Aug-08	825000.00	=""	="EDAG AUSTRALIA PTY LTD"	12-May-08 05:46 PM	

+="CN81719"	"Mount Assemblies - Engine"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	07-Dec-07	07-Oct-08	344443.08	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 05:46 PM	

+="CN81722"	"Spares for Deployable Mine Warfare & Clearance Diving Headquarters"	="Department of Defence"	12-May-08	="Hardware"	06-Dec-07	14-Mar-08	425795.78	=""	="COMPUCAT RESEARCH PTY LTD"	12-May-08 05:46 PM	

+="CN81732"	"Contract Change Proposal"	="Department of Defence"	12-May-08	="Management support services"	07-Dec-07	05-Dec-08	546975.74	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:48 PM	

+="CN81733"	"Engineering support service Design review and Technical Risk Assessment activities"	="Department of Defence"	12-May-08	="Office supplies"	07-Dec-07	14-Nov-08	3000000.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	12-May-08 05:48 PM	

+="CN81741"	"DTS 67 TADRS Contract C338339"	="Department of Defence"	12-May-08	="Electrical components"	07-Dec-07	30-May-08	652953.20	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:49 PM	

+="CN81748"	"THE TERMS AND CONDITIONS DETAILED ON THE ABOVE REF ACCEPTABLE."	="Department of Defence"	12-May-08	="Aircraft master control systems"	12-Dec-07	15-Dec-08	1069335.41	=""	="BAE SYSTEMS CONTROLS INC."	12-May-08 05:50 PM	

+="CN81753"	"Royal Australian Navy (RAN) Role Adaptable Weapons System (RAWS) Agreement for"	="Department of Defence"	12-May-08	="Hardware"	12-Dec-07	30-Jun-08	631769.95	=""	="ROCKWELL COLLINS INC."	12-May-08 05:50 PM	

+="CN81757"	"4502.02 SUPPLY CHAIN REFORM PHASE 2"	="Department of Defence"	12-May-08	="Military watercraft"	11-Dec-07	17-Aug-08	550000.00	=""	="JACOBS AUSTRALIA"	12-May-08 05:51 PM	

+="CN81798"	"Research Project on Lifecycle initiatives."	="Department of Veterans' Affairs"	13-May-08	="Medical science research and experimentation"	01-Apr-08	30-Jun-08	401920.00	=""	="ACPMH"	13-May-08 09:48 AM	

+="CN81811-A11"	"ACT Policing Computer Aided Dispatch system software and support."	="Australian Federal Police"	13-May-08	="Computer Equipment and Accessories"	15-Feb-04	31-Dec-10	780094.44	=""	="Intergraph Corporation Pty Ltd"	13-May-08 10:51 AM	

+="CN81817"	"GL;OBAL FREIGHT"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	14-Nov-07	13-Dec-07	1192542.64	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:01 AM	

+="CN81818"	"GLOBAL FRIEGHT JUL-AUG 07"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	01-Nov-07	13-Dec-07	2047225.09	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:01 AM	

+="CN81838"	"GST component of foreign PRICE VARIATION payments for Mobilisation"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-Nov-07	23-Nov-07	406770.65	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:05 AM	

+="CN81839"	"GST component of foreign Payments for Mobilisation"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-Nov-07	23-Nov-07	8070585.56	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:05 AM	

+="CN81869"	"ASMD PHASE 2A"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Dec-07	31-Jan-08	385675.78	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:10 AM	

+="CN81882"	"DIESEL MARINE FUEL"	="Defence Materiel Organisation"	13-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	18-Dec-07	06-Feb-08	429965.08	=""	="RECEIVER GENERAL FOR CANADA"	13-May-08 11:12 AM	

+="CN81921"	"Payment to DSC for Facilities works"	="Defence Materiel Organisation"	13-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Nov-07	30-Nov-07	1236959.88	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:18 AM	

+="CN81938"	"Test & Trails Coordinator"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	15-Nov-07	18-Nov-08	410750.00	=""	="URS AUSTRALIA PTY LTD"	13-May-08 11:21 AM	

+="CN81941"	"ENGINEERING SERVICE SUPPORT THALES UNDERWATER"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	15-Nov-07	31-Mar-08	327800.00	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 11:21 AM	

+="CN81950"	"LABOUR RESOURCES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Nov-07	31-Dec-08	475224.77	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:23 AM	

+="CN81900"	" GOVERNMENT FURNISHED DATA CONTRACTUAL OBLIGATIONS  "	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	12-May-08	30-May-09	607420.00	=""	="VOTECH"	13-May-08 11:26 AM	

+="CN81978"	"TERMS AND CONDITIONS FOR THE SUPPLY OF THESE "ADHO ARE IAW THE HUON CLASS PLATFORM SYSTEM AND COMBAT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-Nov-07	31-May-08	423317.80	=""	="THALES AUSTRALIA"	13-May-08 11:29 AM	

+="CN81981"	"Engineering Services"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	31-Oct-07	30-Mar-08	302941.91	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:30 AM	

+="CN81988"	"CONTROL DISPLAY AND MANAGEMENT SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	17-Nov-07	02-Jun-08	2063458.05	=""	="HONEYWELL INTERNATIONAL INC DBA HON"	13-May-08 11:31 AM	

+="CN81990"	"TS1046-4 Installation of Interim Satellite TV at Sea for ANZACS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Nov-07	31-Dec-07	379241.30	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:32 AM	

+="CN81999"	"Dmoss Submission"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	19-Nov-07	20-Jun-08	916232.46	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:33 AM	

+="CN82001"	"FY07/08 Payment to CIOG as requested invoice no: 1800344336 dated 20th Sept 07"	="Defence Materiel Organisation"	13-May-08	="Software"	19-Nov-07	30-Jun-08	7600000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:34 AM	

+="CN82005"	"Dmoss Submission"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	19-Nov-07	20-Jun-08	519309.89	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:34 AM	

+="CN82012"	"RECURRING SERVICES PAYMENTS FY 07/08, FY 08/09 & FY 09/10"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Nov-07	30-Jun-10	3312042.64	=""	="STANDARD AERO AUSTRALIA"	13-May-08 11:35 AM	

+="CN82014"	"Installation and Lease of DRN & DSN at RPT"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-Nov-07	30-Jun-12	498876.36	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:35 AM	

+="CN82016"	"UHFMILSATCOM"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	12-May-08	30-Oct-08	338572.00	=""	="SPIRIT RIVER"	13-May-08 11:36 AM	

+="CN82031"	"Improved Carl Gustaf sighting system & training."	="Defence Materiel Organisation"	13-May-08	="Gun systems"	16-Nov-07	31-Jan-08	307461.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:37 AM	

+="CN82046"	"HMAS Kanimbla Emergency Docking 2007"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Nov-07	21-Nov-07	1061007.56	=""	="FORGACS ENGINEERING PTY LTD"	13-May-08 11:38 AM	

+="CN82055"	"Safety Case Production"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	16-Nov-07	18-Nov-08	927500.00	=""	="URS AUSTRALIA PTY LTD"	13-May-08 11:39 AM	

+="CN82060"	"GAS CHROMATOGRAPH/MASS SPECTROMETER"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	16-Nov-07	04-Jan-08	373981.30	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	13-May-08 11:40 AM	

+="CN82062"	"SME Gateway (Jakeman Business Solutions Group) are following services as quoted in DMOSS RFQTS 2586"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-Nov-07	16-Sep-08	314970.00	="DMOSS"	="SME GATEWAY LIMITED"	13-May-08 11:40 AM	

+="CN82074"	"JACOBS AUSTRALIA are to provide the following serv DMOSS RFQTS 2586 (REF: DMT559)"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	16-Nov-07	16-Sep-08	426614.40	="DMOSS"	="JACOBS AUSTRALIA"	13-May-08 11:41 AM	

+="CN82080"	"PROCUREMENT OF QUANTITY 63 COMMERCIAL VEHICLES"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	16-Nov-07	15-Apr-08	2830665.22	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 11:42 AM	

+="CN82085"	"Annual Order of MK 25 Canisters"	="Defence Materiel Organisation"	13-May-08	="Missile subsystems"	16-Nov-07	30-Jan-10	12588998.40	=""	="NATO SEASPARROW SURFACE MISSILE"	13-May-08 11:42 AM	

+="CN82096"	"Normanton Airborne Magnetic and Radiometric Survey (inclusive of full stand-by) [Ref 2007/1850]"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	18-Apr-08	30-Jun-08	996392.63	=""	="Thomson Aviation Pty Ltd"	13-May-08 11:43 AM	

+="CN82102-A4"	"Provision for IT Specialist Services (Previously published under GAPS ID 1615314)"	="Department of Immigration and Citizenship"	13-May-08	="Information technology consultation services"	08-Jul-06	30-Jun-09	850850.00	=""	="Paxus Australia Pty Limited"	13-May-08 11:45 AM	

+="CN82115"	"SUPPLY OF 9 TRACTOR AIRCRAFT TOWING HEAVY (ATH)"	="Defence Materiel Organisation"	13-May-08	="Specialised and recreational vehicles"	12-Nov-07	30-Apr-08	977421.68	=""	="MILSPEC SERVICES PTY LTD"	13-May-08 11:45 AM	

+="CN82119"	"TS 6010-4 ASMD LIFE-OF-TYPE SPARES PROCUREMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	31-Aug-08	527110.75	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:46 AM	

+="CN82146"	"SDSS e-business rollout management services"	="Defence Materiel Organisation"	13-May-08	="Computer services"	21-Apr-08	30-Jun-08	509503.50	=""	="MINCOM LTD"	13-May-08 11:49 AM	

+="CN82148"	"TS6008-4 ASMD PHASE 2A TARGET COST FOC ACTIVITIES"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Apr-08	30-Jun-12	536363.71	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:50 AM	

+="CN82156"	"BAE SYSTEMS COMBAT SYSTEM ROUTINE SERVICES"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	30-Mar-08	30-Mar-08	652883.16	=""	="THALES AUSTRALIA"	13-May-08 11:51 AM	

+="CN82158"	"Reengagement of Peter Richards for ACSS TBMCS"	="Defence Materiel Organisation"	13-May-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-09	370740.80	=""	="SME GATEWAY LIMITED"	13-May-08 11:51 AM	

+="CN82159"	"Fuel Tank Cable Replacement"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	12-Nov-07	30-Aug-08	771461.58	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:51 AM	

+="CN82154-A2"	"Provision for IT Specialist Services (Previously Published under GAPS ID: 1608187)"	="Department of Immigration and Citizenship"	13-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	766942.00	=""	="Paxus Australia Pty Limited"	13-May-08 11:51 AM	

+="CN82171"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	18-Feb-08	4818901.73	=""	="THALES AUSTRALIA"	13-May-08 11:53 AM	

+="CN82185"	"PAYMENT OF PV PHARMACEUTICALS"	="Defence Materiel Organisation"	13-May-08	="Drugs and Pharmaceutical Products"	12-Nov-07	30-Jun-08	1177100.00	=""	="SYMBION PHARMACY SERVICES"	13-May-08 11:55 AM	

+="CN82184-A2"	"Provision for IT Specialist Services (Previously published under GAPS ID: 1610360)"	="Department of Immigration and Citizenship"	13-May-08	="Information technology consultation services"	01-Jul-06	27-Sep-07	359700.00	=""	="Paxus Australia Pty Limited"	13-May-08 11:56 AM	

+="CN82189"	"HMAS BALLARAT DSRA02/IMAV03"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	03-Jun-08	650794.32	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:56 AM	

+="CN82199"	"CONTRACTOR SUPPORT FOR NROC SITE PREPARATION"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	18-Jan-08	31-Jan-08	469269.52	=""	="DARONMONT TECHNOLOGIES PTY LTD"	13-May-08 11:57 AM	

+="CN82228"	"NSPO IN SERVICE SUPPORT FY08 BUDGET"	="Defence Materiel Organisation"	13-May-08	="Missiles"	06-Mar-08	31-Mar-08	4171065.84	=""	="NATO SEASPARROW SURFACE MISSILE"	13-May-08 12:00 PM	

+="CN82230"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	06-Mar-08	30-Jun-08	686306.00	=""	="CLAYTON UTZ"	13-May-08 12:00 PM	

+="CN82238"	"WTR Replacement Telemetry Receivers"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Mar-08	31-May-08	1755467.78	=""	="PROLOGUE EMS, PROLOGUE TELEMETRY"	13-May-08 12:00 PM	

+="CN82240"	"JOCWEB INSERVICE SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Software"	06-Mar-08	30-Jun-11	6842391.60	=""	="BERKELEY INFORMATION TECHNOLOGY"	13-May-08 12:01 PM	

+="CN82246"	"NSPO SHARED PRODUCTION FY08 BUDGET"	="Defence Materiel Organisation"	13-May-08	="Missiles"	06-Mar-08	31-Mar-08	3355960.10	=""	="NATO SEASPARROW SURFACE MISSILE"	13-May-08 12:01 PM	

+="CN82249"	"Configuration Management and Technical Investigations"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Apr-08	30-Jun-08	455436.90	=""	="THALES AUSTRALIA"	13-May-08 12:01 PM	

+="CN82254"	"Development TA Calibration Facility"	="Defence Materiel Organisation"	13-May-08	="Workshop machinery and equipment and supplies"	06-Mar-08	30-Jun-08	624548.98	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:02 PM	

+="CN82256"	"Renewal of the AEMMS Office Ingres Database user subscription from 1 April 2008 till 31 March 2009."	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	05-Mar-08	31-Mar-09	544500.00	=""	="INGRES AUSTRALIA PTY LTD"	13-May-08 12:02 PM	

+="CN82263"	"REPAIR OF REPAIRABLE ITEMS"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Apr-08	30-Jun-08	708009.61	=""	="THALES AUSTRALIA"	13-May-08 12:02 PM	

+="CN82272"	"Tactical Situation Display Workstation & Spares Licenses"	="Defence Materiel Organisation"	13-May-08	="Measuring and observing and testing instruments"	05-Mar-08	01-Apr-08	344866.49	=""	="ULTRA ELECTRONICS ADVANCED TACTICAL"	13-May-08 12:03 PM	

+="CN82284"	"VENUE HIRE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	04-Mar-08	04-Mar-08	300000.00	=""	="ADELAIDE CONVENTION CENTRE"	13-May-08 12:04 PM	

+="CN82295"	"iStat 1 Blood Gas Analyser, Military Case & Access"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	16-Jan-08	30-Jun-08	366325.30	=""	="ABBOTT AUSTRALIASIA PTY LTD"	13-May-08 12:05 PM	

+="CN82303"	"OFFICIAL DMOSS PANEL PURCHASE ORDER"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	16-Jan-08	30-Jun-08	314116.00	=""	="CONNELL WAGNER VIC PTY LTD"	13-May-08 12:05 PM	

+="CN82307"	"CHUBBY Blue Pack"	="Defence Materiel Organisation"	13-May-08	="Vehicle bodies and trailers"	16-Jan-08	16-Jan-08	379944.35	=""	="THALES AUSTRALIA"	13-May-08 12:06 PM	

+="CN82309-A1"	" ICT INFRASATRUCTURE -UNCLASSSIFIED NETWORK ACCESS FOR REMOTE ANZAC SPO PERSONNEL "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Jan-08	18-Apr-11	428603.84	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 12:06 PM	

+="CN82310"	"Procure Mini Typhoon Cables for HMAS Sydney"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-Mar-08	30-Sep-08	402600.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	13-May-08 12:06 PM	

+="CN82312"	"Supply of Naval Distillate (F76) to NFI Sydney by 31 May 2008"	="Defence Materiel Organisation"	13-May-08	="Fuels"	05-Mar-08	31-May-08	16872000.00	=""	="MOBIL OIL AUSTRALIA PTY LTD"	13-May-08 12:06 PM	

+="CN82313"	"Contract Support  for the provision of system engineering support services JP2072"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Jan-08	30-Jun-09	331683.00	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	13-May-08 12:06 PM	

+="CN82314"	"Multiplexor Expansion Cards"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	31-Mar-08	362208.00	=""	="VOCALITY PTY LTD"	13-May-08 12:06 PM	

+="CN82315"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	31-Jan-08	1100000.00	=""	="GIPPSLAND AERONAUTICS PTY LTD"	13-May-08 12:06 PM	

+="CN82316"	"Storage System for HMAS Cairns - Air Freight"	="Defence Materiel Organisation"	13-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	07-Mar-08	30-Jun-08	373692.00	=""	="KARDEX VCA PTY LTD"	13-May-08 12:06 PM	

+="CN82324"	"follow on support of hydrographic ships"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Jan-08	31-Jan-08	1304582.15	=""	="AIMTEK PTY LTD"	13-May-08 12:07 PM	

+="CN82341"	"SEM DTE Upgrade"	="Defence Materiel Organisation"	13-May-08	="Missile subsystems"	07-Mar-08	30-Jun-08	434418.88	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 12:09 PM	

+="CN82344"	"Professional Service Provider - Requirements Manager"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	11-Jan-08	23-Dec-08	322523.52	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	13-May-08 12:09 PM	

+="CN82348"	"TEST AND EVALUATION  SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	11-Jan-08	31-Dec-08	1022444.40	=""	="NOVA AEROSPACE"	13-May-08 12:09 PM	

+="CN82365"	"66mm GRENADES"	="Defence Materiel Organisation"	13-May-08	="Ammunition"	08-Mar-08	12-Sep-08	1215647.65	=""	="RHEINMETALL WAFFE MUNITION GMBH NIE"	13-May-08 12:11 PM	

+="CN82368"	"Leasing 38 Townsville Street for 2 Years"	="Defence Materiel Organisation"	13-May-08	="Detective services"	14-Jan-08	31-Dec-09	384490.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:11 PM	

+="CN82374"	"Supply of AN/TPQ-36"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	07-Mar-08	30-Jun-08	556834.76	=""	="RAYTHEON AUSTRALIA"	13-May-08 12:12 PM	

+="CN82375"	"Ration Pack Component"	="Defence Materiel Organisation"	13-May-08	="Jams and jellies and nut and sweet spreads and fruit conserves"	14-Jan-08	31-Oct-08	564378.39	=""	="MULTI-PACK LTD"	13-May-08 12:12 PM	

+="CN82379"	"Maintenance support for software proudcts used in the MDO"	="Defence Materiel Organisation"	13-May-08	="Software"	14-Jan-08	31-Jan-08	319806.30	=""	="DELTEK AUSTRALIA PTY LTD"	13-May-08 12:12 PM	

+="CN82383"	"Ration Pack Component"	="Defence Materiel Organisation"	13-May-08	="Bread and biscuits and cookies"	14-Jan-08	31-Oct-08	570952.00	=""	="MULTI-PACK LTD"	13-May-08 12:13 PM	

+="CN82387"	"Order raised in accordance with Contract N260455"	="Defence Materiel Organisation"	13-May-08	="Lubricants and oils and greases and anti corrosives"	18-Jan-08	30-Jun-08	360000.00	=""	="TRANSPONDER TECHNOLOGIES"	13-May-08 12:13 PM	

+="CN82399"	"HACTS Prime contract CCP#007 HACTS Prime Contract C338391"	="Defence Materiel Organisation"	13-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	06-Mar-08	28-Jun-10	727817.20	=""	="RAYTHEON AUST PTY LTD"	13-May-08 12:14 PM	

+="CN82404"	"NSPO OPERATIONS FY08 BUDGET"	="Defence Materiel Organisation"	13-May-08	="Missiles"	06-Mar-08	31-Mar-08	542306.19	=""	="NATO SEASPARROW SURFACE MISSILE"	13-May-08 12:14 PM	

+="CN82426"	"ENGINEERING SUPPORT SERVICES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	21-Jan-08	30-Sep-08	4162565.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:16 PM	

+="CN82440"	"Van Carry Large MC4 Qty 25"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	08-Jan-08	28-Aug-08	1102337.23	=""	="ATECO EQUIPMENT"	13-May-08 12:18 PM	

+="CN82454"	"Ship Equipment"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	30-Jun-09	2188566.60	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:19 PM	

+="CN82473"	"FTR OF AUSTEYR RIFLE VARIANTS"	="Defence Materiel Organisation"	13-May-08	="Gun systems"	16-Jan-08	15-Oct-08	7080843.00	=""	="THALES AUSTRALIA"	13-May-08 12:21 PM	

+="CN82475"	"Ration Pack Component"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	16-Jan-08	30-Jun-09	338875.24	=""	="E E CARTONS PTY LTD"	13-May-08 12:22 PM	

+="CN82484"	"Manufacture, fit and test new Bow Door HMAS Tarakan"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	29-Feb-08	30-Jun-08	534978.32	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:22 PM	

+="CN82493"	"Electronic Equipment"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	17-Jan-08	31-Mar-08	5660465.49	=""	="L-3 TRL TECHNOLOGY"	13-May-08 12:23 PM	

+="CN82499"	"JP2077 Phase 2B.1 Personnel & Operating Costs Investigation"	="Defence Materiel Organisation"	13-May-08	="Management support services"	17-Jan-08	07-May-08	544311.24	=""	="SMS MANAGEMENT & TECHNOLOGY"	13-May-08 12:23 PM	

+="CN82500"	"assisted maintenance period for benalla / shepparton and mermaid / paluma"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Feb-08	09-May-08	770000.00	=""	="G A GLANVILLE & CO"	13-May-08 12:23 PM	

+="CN82541"	"Ship technical services"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	08-Jan-08	15-May-08	322724.16	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 12:27 PM	

+="CN82544"	"AUN - Network Services"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	30-Mar-11	717670.80	=""	="OPTUS BUSINESS"	13-May-08 12:27 PM	

+="CN82545"	"PRELIMINARY DESIGN FOR FULL SCALE PROTOTYPE INFRARED SUPPRESSION SYSTEM CTD"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	08-Jan-08	31-Jul-08	751126.20	=""	="GKN AEROSPACE ENGINEERING SERVICES"	13-May-08 12:27 PM	

+="CN82551"	"Procrement of MHE-L Vehicles"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	08-Jan-08	30-Jun-09	5272772.26	=""	="CONSTRUCTION EQUIPMENT AUSTRALIA"	13-May-08 12:28 PM	

+="CN82554"	"Impact assessment of upgradeing from Ingres R3 to Ingres 2006 on the CAMM2 application"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	04-Mar-08	30-Jun-08	2051755.20	=""	="ACCENTURE AUSTRALIA LTD"	13-May-08 12:28 PM	

+="CN82563-A1"	"Ship technical services"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	07-Jan-08	21-Jan-11	646739.21	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:29 PM	

+="CN82564"	"eBusiness Implementation to Unit Level"	="Defence Materiel Organisation"	13-May-08	="Computer services"	03-Mar-08	30-Jun-08	646060.00	=""	="KPMG"	13-May-08 12:29 PM	

+="CN82571"	"SEL Maintenance and Development Project Vendor Quote: ES-TXE-DMO-1002 dated 26Oct07"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	02-Jan-08	20-Jun-08	859669.80	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:30 PM	

+="CN82583"	"comms accessories"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	22-Dec-07	21-Jun-08	441890.85	=""	="HARRIS CORPORATION"	13-May-08 12:31 PM	

+="CN82587"	"Airconditioning Unit"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	22-Dec-07	01-Apr-08	1050971.91	=""	="TLD AMERICA CORPORATION"	13-May-08 12:31 PM	

+="CN82589"	"Deliverables Review Coordinator"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	21-Dec-07	15-Dec-08	326016.00	=""	="NOVA AEROSPACE"	13-May-08 12:31 PM	

+="CN82597"	"Provision of financial analysis to review top 10"	="Defence Materiel Organisation"	13-May-08	="Financial and Insurance Services"	04-Mar-08	15-May-08	485639.29	=""	="ERNST & YOUNG CONSULTING"	13-May-08 12:32 PM	

+="CN82600"	"This Purchase Order has been raised for Joint Oper Package 2 in accordance with the terms and condit"	="Defence Materiel Organisation"	13-May-08	="Software"	04-Mar-08	03-Feb-09	2282500.00	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 12:33 PM	

+="CN82609"	"ESP Support to C17 AME Project"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	508729.29	=""	="JACOBS AUSTRALIA"	13-May-08 12:34 PM	

+="CN82618"	"Lease of office accommodation"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	30-Jun-08	608964.00	=""	="Einstand Pty Ltd"	13-May-08 12:35 PM	

+="CN82620"	"communication services"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Telecommunications media services"	02-Nov-07	30-Jun-08	336000.00	=""	="Telstra Corporation Ltd"	13-May-08 12:35 PM	

+="CN82635"	"Technical Services to the AC-C2WS"	="Defence Materiel Organisation"	13-May-08	="Environmental Services"	03-Mar-08	10-Mar-11	965949.75	=""	="SME GATEWAY LIMITED"	13-May-08 12:36 PM	

+="CN82651"	"DATA LINK PROCESS OR SOFTWARE AND SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	17-Mar-08	30-Jun-08	1019139.00	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 12:38 PM	

+="CN82652"	"PROJECT MANAGEMENT TYPHOON PROJECT"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	17-Mar-08	30-Jun-09	517316.80	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:38 PM	

+="CN82695"	"Technical Architecture Services for Data and Data"	="Defence Materiel Organisation"	13-May-08	="Management support services"	17-Mar-08	30-Jun-08	361284.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-May-08 12:45 PM	

+="CN82711"	"SUN MICROSYSTEMS X4500 (Thumper) 48TB Server"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	19-Mar-08	31-Mar-08	1550232.32	=""	="SUN MICROSYSTEMS"	13-May-08 12:47 PM	

+="CN82719-A1"	"Enhanced reporting on the ePortal to cover region report, and organisation search function."	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	19-Mar-08	31-Mar-11	1913727.00	=""	="FUJITSU AUSTRALIA LIMITED"	13-May-08 12:48 PM	

+="CN82721"	"HUGPH3.2 April Transportation"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	19-Mar-08	22-May-08	825621.39	=""	="ALLTRANS INTERNATIONAL"	13-May-08 12:49 PM	

+="CN82728"	"SUB-CONTRACTORS TO SUPPORT A NUMBER OF PROJECTS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	19-Mar-08	30-Jun-08	1189188.00	=""	="RLM PTY LTD"	13-May-08 12:50 PM	

+="CN82734"	"Supply/Install Reverse Osmosis Unit NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	13-May-08	="Water resources development and oversight"	19-Mar-08	31-Oct-08	929664.45	=""	="OSMOFLO PTY LTD"	13-May-08 12:50 PM	

+="CN82735-A1"	" TASK 4186-4 FCD OPTRONICS APA TRANSITION REPORT "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	19-Mar-08	22-Jul-10	428397.43	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 12:51 PM	

+="CN82745"	"Satellites Communications Capability"	="Defence Materiel Organisation"	13-May-08	="Satellites"	18-Mar-08	30-Sep-20	691119000.00	=""	="WELLS FARGO BANK N.A."	13-May-08 12:52 PM	

+="CN82753"	"Nitrogen Receivers for FA-18"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	19-Mar-08	01-Dec-08	354843.89	=""	="MARVIN ENGINEERING CO INC"	13-May-08 12:53 PM	

+="CN82754"	"M113 UPGRADE VEHICLES SPARES"	="Defence Materiel Organisation"	13-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Mar-08	22-Dec-08	1344154.78	=""	="FLENSBURGER FAHRZEUGBAU GESELLSCHAF"	13-May-08 12:53 PM	

+="CN82770"	"HMAS PARRAMATTA SRA03/IMAV04"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Mar-08	31-Oct-08	4485297.69	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:55 PM	

+="CN82771"	"XK411D HF & D4410A UHF Transceivers"	="Defence Materiel Organisation"	13-May-08	="Computer services"	12-Mar-08	30-Jun-08	509729.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	13-May-08 12:55 PM	

+="CN82778"	"Avionics Mgmt Units (AMU) & Avionics Mgmt Unit Liq uid Crystal Displays (AMULCD)"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	12-Mar-08	01-Sep-08	391649.69	=""	="L-3 COMMUNICATIONS CORPORATION"	13-May-08 12:56 PM	

+="CN82793"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L738"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	12-Mar-08	16-Jun-08	594152.03	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:59 PM	

+="CN82800"	"Principle Ground Segement Engineer"	="Defence Materiel Organisation"	13-May-08	="Satellites"	11-Mar-08	17-Mar-09	313456.00	=""	="JACOBS AUSTRALIA"	13-May-08 01:00 PM	

+="CN82804"	"F-111 RADOME DEEPER LEVEL MAINTENANCE"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	10-Mar-08	30-Jun-08	462232.44	=""	="RAYTHEON AUSTRALIA"	13-May-08 01:00 PM	

+="CN82809"	"Borescopes"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	10-Mar-08	10-Apr-08	397760.00	=""	="GE INSPECTION TECHNOLOGIES"	13-May-08 01:01 PM	

+="CN82853"	"Two Forward Deployable ADSI systems and 4 Spares"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	14-Mar-08	14-Jun-08	504011.80	=""	="ULTRA ELECTRONICS ADVANCED TACTICAL"	13-May-08 01:07 PM	

+="CN82860"	"LAND BREATHING APPARATUS AND ANCILLARY EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Fall protection and rescue equipment"	12-Mar-08	04-Feb-11	418232.65	="CONL080"	="MSA (AUST) PTY LTD"	13-May-08 01:08 PM	

+="CN82862"	"Engineering Services to Support Navy Minor Project"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	12-Mar-08	18-Dec-08	569298.95	=""	="NOVA DEFENCE"	13-May-08 01:08 PM	

+="CN82867"	"Extension of Contract C438876"	="Defence Materiel Organisation"	13-May-08	="Software"	12-Mar-08	30-Jun-09	46200000.00	=""	="THALES AUSTRALIA"	13-May-08 01:09 PM	

+="CN82870"	"BDS&C & REPAIRALBLE ITEMS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-Mar-08	30-Jun-08	2350419.50	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 01:09 PM	

+="CN82876"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA MARINE 001.01"	="Defence Materiel Organisation"	13-May-08	="Fuels"	13-Mar-08	30-Jun-08	17775516.00	=""	="BP AUSTRALIA LTD"	13-May-08 01:10 PM	

+="CN82889"	"Raw materials for 10 Special Purpose Vehicles"	="Defence Materiel Organisation"	13-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Feb-08	23-Aug-08	357500.00	=""	="TENIX DEFENCE PTY LTD, LAND"	13-May-08 01:12 PM	

+="CN82896"	"MADE TO MEASURE UNIFORMS TRI-SERVICE"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Feb-08	30-Jun-08	819999.99	=""	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 01:13 PM	

+="CN82916"	"Mine Warfare D-LAN"	="Defence Materiel Organisation"	13-May-08	="Hardware"	18-Apr-08	30-Jun-08	465531.00	=""	="THALES AUSTRALIA"	13-May-08 01:32 PM	

+="CN82919"	"FLIGHT VEHICLE MIDLIFE REFURBISHMENT"	="Defence Materiel Organisation"	13-May-08	="Launch vehicles and rockets"	23-Apr-08	30-Jun-09	1242378.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:33 PM	

+="CN82929"	"TS4005-4 Subsequent Ship Engineering Change Installation Materials"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	22-Apr-08	30-Sep-09	13260359.20	=""	="TENIX DEFENCE PTY LTD"	13-May-08 01:35 PM	

+="CN82935"	"Toyota Hilux 4x2 D/C UTE (UM2) Qty22"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	28-Nov-08	529534.96	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 01:36 PM	

+="CN82944"	"Toyota Tarago Wagon (BS) Qty 8"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	30-Sep-08	333828.23	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 01:37 PM	

+="CN82972"	"Support Services for HMAS Darwin Post Upgrade Mandatory Planned Maintenance Item Audit"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	22-Apr-08	23-Jun-08	477736.45	=""	="ROSSLOGIC PTY LTD"	13-May-08 01:42 PM	

+="CN82982"	"Renewal of ESRI Software Maintenance"	="Defence Materiel Organisation"	13-May-08	="Software"	15-Apr-08	30-Jun-09	377102.97	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	13-May-08 01:43 PM	

+="CN82990"	"MODULAR COMBAT BODY ARMOUR SYSTEM (MCBAS)"	="Defence Materiel Organisation"	13-May-08	="Luggage and handbags and packs and cases"	15-Apr-08	30-Jun-11	59835296.95	=""	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 01:44 PM	

+="CN82993"	"hmas leeuwin maintenance period 29"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	02-May-08	660000.00	=""	="AIMTEK PTY LTD"	13-May-08 01:45 PM	

+="CN83003"	"MODULAR COMBAT BODY ARMOUR SYSTEM (MCBAS) SUPPORT CONTRACT"	="Defence Materiel Organisation"	13-May-08	="Luggage and handbags and packs and cases"	15-Apr-08	30-Jun-13	20680650.00	=""	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 01:46 PM	

+="CN83014"	"MISSION PLANNING SYSTEMS FOR CH-47D"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Apr-08	31-Oct-09	597126.82	=""	="WESTAR AEROSPACE & DEFENSE GROUP IN"	13-May-08 01:47 PM	

+="CN83032"	"Build DLANs' for ELF"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	15-Jun-08	10301513.15	=""	="THALES AUSTRALIA"	13-May-08 01:50 PM	

+="CN83036"	"PSP"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Apr-08	30-Mar-10	431244.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 01:51 PM	

+="CN83039"	"PWS- WEAPON MOUNTS"	="Defence Materiel Organisation"	13-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	30-Jun-08	1070722.14	=""	="THALES AUSTRALIA"	13-May-08 01:51 PM	

+="CN83041"	"BLANKET ORDER RAISED IN ACCORDANCE WITH THE TERMS CONDITIONS OF STANDING OFFER JFLA AVN 004.01"	="Defence Materiel Organisation"	13-May-08	="Fuels"	17-Apr-08	30-Jun-08	18370000.00	=""	="SHELL CO OF AUSTRALIA LTD"	13-May-08 01:51 PM	

+="CN83050"	"AIR 9000 Full Flight Mission Simulator Purchase"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Apr-08	30-Jun-13	46391383.50	=""	="CAE AUSTRALIA PTY LTD"	13-May-08 01:53 PM	

+="CN83052"	"ADSI Services and Training"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	18-Apr-08	03-Jul-09	531454.67	=""	="ULTRA ELECTRONICS ADVANCED TACTICAL"	13-May-08 01:53 PM	

+="CN83058"	"TS 6007-4 APA EXTENSION (REF ASA-A96390)"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Apr-08	31-Dec-09	1173946.91	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 01:54 PM	

+="CN83059"	"TS 6007-4 APA EXTENSION (REF ASA-A96390)"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Apr-08	31-Dec-09	4343728.30	=""	="TENIX DEFENCE PTY LTD"	13-May-08 01:54 PM	

+="CN83061"	"PSP"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Apr-08	24-Mar-10	1068265.01	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 01:54 PM	

+="CN83062"	"PSP"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	17-Apr-08	02-Apr-10	604450.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	13-May-08 01:54 PM	

+="CN83075"	"SDSS IT Controls Framework Design Effectiveness Review"	="Defence Materiel Organisation"	13-May-08	="Computer services"	16-Apr-08	15-Jun-08	308000.00	=""	="ERNST & YOUNG"	13-May-08 01:56 PM	

+="CN83079"	"SDSS Software Maintenance and Support"	="Defence Materiel Organisation"	13-May-08	="Software"	16-Apr-08	30-Apr-08	2095264.29	=""	="MINCOM LTD"	13-May-08 01:57 PM	

+="CN83080"	"hmas melville maintenance period 29"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	20-Jun-08	660000.00	=""	="AIMTEK PTY LTD"	13-May-08 01:57 PM	

+="CN83083"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA AVN 004.01"	="Defence Materiel Organisation"	13-May-08	="Fuels"	17-Apr-08	30-Jun-08	2981000.00	=""	="SHELL CO OF AUSTRALIA LTD"	13-May-08 01:57 PM	

+="CN83088"	"KUMUL garments and equipment for PNG Defence. Pertains to PD 2480038. Part 3. Delivery in 2010"	="Defence Materiel Organisation"	13-May-08	="Clothing"	16-Apr-08	30-May-10	429900.68	="CLO 01/08"	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 01:58 PM	

+="CN83089"	"KUMUL garments and equipment for PNG Defence. Pertains to PD 2480038. Purchase order for 2009"	="Defence Materiel Organisation"	13-May-08	="Clothing"	16-Apr-08	30-May-09	429900.68	="2480038"	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 01:58 PM	

+="CN83091"	"LEP TEANAOAI ME/DAs Overhaul"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	30-Jun-08	631961.21	=""	="HASTINGS DEERING (AUST) PTY LTD"	13-May-08 01:58 PM	

+="CN83156"	"Satellite terminals"	="Defence Materiel Organisation"	13-May-08	="Satellites"	05-May-08	30-Jun-08	327904.50	=""	="GIGASAT ASIA PACIFIC PTY LTD"	13-May-08 02:07 PM	

+="CN83160"	"Satellite terminals"	="Defence Materiel Organisation"	13-May-08	="Satellites"	05-May-08	30-Jun-08	307022.10	=""	="GIGASAT ASIA PACIFIC PTY LTD"	13-May-08 02:08 PM	

+="CN83163"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS OF C"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	05-May-08	30-Jun-08	415826.18	=""	="RLM PTY LTD"	13-May-08 02:08 PM	

+="CN83166"	"SDE TOOLS PROJECT - NEWTORKING EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	05-May-08	30-Jun-08	401864.99	=""	="ALPHAWEST SERVICES PTY LTD"	13-May-08 02:09 PM	

+="CN83171"	"Satellite terminals"	="Defence Materiel Organisation"	13-May-08	="Satellites"	05-May-08	30-Jun-08	512138.00	=""	="GIGASAT ASIA PACIFIC PTY LTD"	13-May-08 02:09 PM	

+="CN83172"	"FMS CAse"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	21-Apr-08	15-Sep-11	5071691.19	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83174"	"FMS Case for 23X software support for Hornet Upgrade Project"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Apr-08	15-Dec-11	33825057.63	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83176"	"PROCUREMENT OF C17 PARTS AND REPAIR AND OVERHAUL"	="Defence Materiel Organisation"	13-May-08	="Industrial Manufacturing and Processing Machinery and Accessories"	17-Dec-07	30-Mar-10	744282.00	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83178"	"CARTRIDGE 81 MM VARIOUS"	="Defence Materiel Organisation"	13-May-08	="Ammunition"	19-Dec-07	29-Feb-08	1328827.26	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83179"	"Cart 7.62mm Ammunition - Various"	="Defence Materiel Organisation"	13-May-08	="Ammunition"	30-Jan-08	15-Dec-09	9263645.31	=""	="FMS ACCOUNT"	13-May-08 02:11 PM	

+="CN83181"	"FMS Case ATBUCO - Rough Terrain Container Handler"	="Defence Materiel Organisation"	13-May-08	="Truck tractors"	22-Nov-07	31-Dec-09	6962691.59	=""	="FMS ACCOUNT"	13-May-08 02:11 PM	

+="CN83182"	"Provision of test facilities"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	29-Nov-07	31-Dec-09	324602.64	=""	="FMS ACCOUNT"	13-May-08 02:11 PM	

+="CN83193"	"Conduct Skyline Surveys for GTESPO Systems"	="Defence Materiel Organisation"	13-May-08	="Aerospace location and navigation systems and components"	02-May-08	30-Jun-08	534130.30	=""	="QASCO SURVEYS PTY LTD"	13-May-08 02:13 PM	

+="CN83197"	"    Secure Internet Gateway Services Aug 2007 to Aug 2010    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	08-Aug-07	07-Aug-10	1330111.86	=""	="Cybertrust Australia Pty Ltd"	13-May-08 02:15 PM	

+="CN83201"	"message handling terminal replacement"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-May-08	20-Jun-08	751526.29	=""	="AIMTEK PTY LTD"	13-May-08 02:15 PM	

+="CN83207"	"LCM SERIES 2000"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Jun-08	660000.00	=""	="THALES AUSTRALIA"	13-May-08 02:16 PM	

+="CN83213"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS OF S  F-AU-146905-B DATED 29 APR 2008"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	02-May-08	30-Jun-08	361975.91	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	13-May-08 02:17 PM	

+="CN83223"	"Contract N260470"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	24-Apr-08	31-Dec-09	1311170.13	=""	="AAI AEROSONDE PTY LTD"	13-May-08 02:19 PM	

+="CN83224"	"Training and Integration Periscope for STSC"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	24-Apr-08	30-Jun-08	582098.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:19 PM	

+="CN83253"	"Ford Falcon Wagon (WM) Qty 63"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	10-Oct-08	1607159.73	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:24 PM	

+="CN83255"	"Ford Fairmont Sedan Qty 30 (SM)"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	30-Sep-08	771552.41	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:24 PM	

+="CN83259"	"AIR 9000 Full Flight Mission Simulator Purchase"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	23-Apr-08	30-Jun-13	149058741.13	=""	="CAE AUSTRALIA PTY LTD"	13-May-08 02:25 PM	

+="CN83272"	"Nixie upgrade kits"	="Defence Materiel Organisation"	13-May-08	="Transportation components and systems"	24-Apr-08	01-Aug-08	2880371.34	=""	="ARGON ST INC"	13-May-08 02:27 PM	

+="CN83278"	"European Process Data Management Support"	="Defence Materiel Organisation"	13-May-08	="Management support services"	23-Apr-08	30-Jun-08	322067.67	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 02:28 PM	

+="CN83280"	"AFS contract for period of 22months from 29Mar08 28Jan10"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	09-Apr-08	28-Jan-10	3271961.00	=""	="THALES AUSTRALIA"	13-May-08 02:28 PM	

+="CN83281"	"R2 Service on kiowa A17-045"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Apr-08	30-May-08	306502.46	=""	="HELITECH DIV OF SIKORSKY"	13-May-08 02:28 PM	

+="CN83286"	"PROPULSION SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	29-Apr-08	30-Jun-09	512710.00	=""	="QANTAS DEFENCE SERVICES PTY LTD"	13-May-08 02:29 PM	

+="CN83290"	"CARDEN SAHFTS FRONT AND REAR"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	29-Apr-08	30-Apr-08	317523.36	=""	="THALES AUSTRALIA"	13-May-08 02:29 PM	

+="CN83317"	"PO raised for management of payments against contract 5370079 for FTR DFSW"	="Defence Materiel Organisation"	13-May-08	="Gun systems"	28-Apr-08	31-May-12	11631007.39	=""	="THALES AUSTRALIA"	13-May-08 02:33 PM	

+="CN83320"	"ACMC Extension 1 April 2008 - 31 March 2009"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Apr-08	31-Mar-09	21249190.12	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 02:34 PM	

+="CN83324"	"PROCUREMENT OF CCTV CAMERAS AND OVERHAUL KITS"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	28-Apr-08	20-Jun-08	323447.94	=""	="THALES AUSTRALIA"	13-May-08 02:34 PM	

+="CN83325"	"Professional Services for the TDMC Project"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	28-Apr-08	31-Jul-08	880000.00	=""	="KPMG"	13-May-08 02:34 PM	

+="CN83334"	"12.7MM QCB SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	28-Apr-08	28-Nov-08	321274.41	=""	="FN HERSTAL SA"	13-May-08 02:36 PM	

+="CN83346"	"Mass Storage Devices for DLAN"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-Jun-08	805238.04	=""	="THALES AUSTRALIA"	13-May-08 02:37 PM	

+="CN83351"	"Implementation of baseLINE Check System on FGs, at FFG PCS Trainer"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	31-Mar-08	30-Jun-08	616407.32	=""	="RELEGEN PTY LTD"	13-May-08 02:38 PM	

+="CN83355"	"HMAS Melbourne IMAV 12"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-Apr-08	27-May-08	2498222.16	=""	="THALES AUSTRALIA"	13-May-08 02:39 PM	

+="CN83358"	"Development of capability definition document and request for tender documentation for JP66 Phase 1"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-Apr-08	30-Mar-09	486354.00	=""	="NOVA AEROSPACE"	13-May-08 02:39 PM	

+="CN83362"	"Engagement of ESP as the Project Explosive Ordnance Safety Manager."	="Defence Materiel Organisation"	13-May-08	="Guided missiles"	01-Apr-08	31-Mar-09	362200.00	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 02:40 PM	

+="CN83381"	"MACHINE GUN SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Mar-08	01-Dec-08	370340.97	=""	="FN HERSTAL SA"	13-May-08 02:43 PM	

+="CN83383"	"WEAPON SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	28-Mar-08	01-Dec-08	872120.70	=""	="FN HERSTAL SA"	13-May-08 02:43 PM	

+="CN83386"	"OPNET Modelling and Simulation Software"	="Defence Materiel Organisation"	13-May-08	="Software"	28-Mar-08	01-Sep-08	448730.96	=""	="TENFOLD NETWORK SOLUTIONS"	13-May-08 02:44 PM	

+="CN83389"	"Melville maintenance period"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	31-Mar-08	713339.71	=""	="AIMTEK PTY LTD"	13-May-08 02:44 PM	

+="CN83391"	"2008 Safety By Inspection Program Subcontract Labr Part of P3 Structural Management Plan Implementat"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	31-Mar-08	31-Dec-08	1041597.06	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 02:44 PM	

+="CN83393"	"2008 Safety By Inspection Program Fixed Costs Part of P3 Structural Management Plan Implementatn"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	31-Mar-08	31-Dec-08	3094905.15	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 02:45 PM	

+="CN83394"	"HUGPH2.3 CCP#27"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	31-Mar-08	30-Jun-09	7616131.38	=""	="ELTA SYSTEMS LTD"	13-May-08 02:45 PM	

+="CN83396"	"Torque Wrench Tester Kits"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Mar-08	30-Oct-08	2090818.95	=""	="NORBAR TORQUE TOOLS PTY LTD"	13-May-08 02:45 PM	

+="CN83405"	"Projector Assembly"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	02-Apr-08	23-Feb-09	323060.87	=""	="AERONAUTICAL & GENERAL INSTRUMENTS"	13-May-08 02:47 PM	

+="CN83407"	"SME GATEWAY Limited are to provide the following s DMOSS RFQTS # 3091"	="Defence Materiel Organisation"	13-May-08	="Project management"	02-Apr-08	01-Apr-09	325000.00	=""	="SME GATEWAY LIMITED"	13-May-08 02:47 PM	

+="CN83409"	"POC: ALAN ROSS CONTACT: 02 626 50931"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	02-Apr-08	30-Jun-08	1470700.00	=""	="NETEZZA PTY LTD"	13-May-08 02:48 PM	

+="CN83416"	"GOVERNMENT FURNISHED SERVICES"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	02-Apr-08	30-Jun-10	1241480.00	=""	="JACOBS AUSTRALIA"	13-May-08 02:49 PM	

+="CN83452-A1"	" Copyright Liability  "	="Centrelink"	13-May-08	="Patent or trademark or copyright law"	30-May-03	30-Jun-09	375862.08	=""	="Copyright Agency Ltd"	13-May-08 05:01 PM	

+="CN83521"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY;  FAN,TUBEAXIAL;  CONNECTOR ASSEMBLY,ELECTRICAL;  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Mar-08	01-Sep-08	350119.96	=""	="L3 COMMUNICATIONS NAUTRONIX Ltd"	13-May-08 07:36 PM	

+="CN83606"	"Procurement of:  SWITCH,ELECTRONIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Apr-08	19-Dec-08	305262.60	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:47 PM	

+="CN83761"	"Records and File Management"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Business administration services"	10-Apr-08	09-Apr-11	2732400.00	="TRS07/390"	="Outsource Australia Pty Ltd"	14-May-08 10:18 AM	

+="CN83766"	"Vulnerability assessments"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	17-Jan-08	30-Jun-09	536649.99	=""	="T4-Protective Security"	14-May-08 10:20 AM	

+="CN83807-A4"	"Provision of Information Technology Software Programming Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology software developers"	01-Mar-08	30-Jun-09	327654.00	=""	="Ross Human Directions Limited"	14-May-08 11:31 AM	

+="CN83816"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	30-Apr-08	30-Jun-08	349999.99	=""	="Hardy Aviation (NT) Pty Ltd"	14-May-08 12:26 PM	

+="CN83834"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	30-Sep-08	365215.43	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:29 PM	

+="CN83891"	"Office fitout"	="Centrelink"	14-May-08	="General building construction"	22-Apr-08	30-Jul-08	329719.50	=""	="Isis Projects Pty Ltd"	14-May-08 12:39 PM	

+="CN83899-A1"	"Customer Service Centre Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	30-Apr-09	340809.70	=""	="Isis Projects Pty Ltd"	14-May-08 12:40 PM	

+="CN83941"	"Workstations, Palm Beach, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	30-Dec-08	345815.58	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 12:48 PM	

+="CN83961"	"Furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	708534.20	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:51 PM	

+="CN83974"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	11-Jul-08	421080.00	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 12:53 PM	

+="CN83997"	"Workstations and Storage Units, Launceston, TAS"	="Centrelink"	14-May-08	="Office and desk accessories"	01-Apr-08	06-Jun-08	653000.15	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:56 PM	

+="CN84003"	"Office Fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	30-Jul-08	587475.11	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:57 PM	

+="CN84006-A3"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	01-Nov-10	532445.76	="RFTS07/0129"	="Ekonsulting Pty Ltd"	14-May-08 12:58 PM	

+="CN84021"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	08-Apr-08	30-Jun-08	330000.00	=""	="Australian Government Solicitor"	14-May-08 01:01 PM	

+="CN84030"	"Fitout Construction, Launceston, TAS"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Apr-08	06-Jun-08	485452.00	=""	="Vos Construction and Joinery"	14-May-08 01:03 PM	

+="CN84032"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	17-Apr-08	08-Jun-08	5412000.00	="SON25474"	="Sun Microsystems Australia Pty Ltd"	14-May-08 01:03 PM	

+="CN84036"	"Paper Materials and Products"	="Centrelink"	14-May-08	="Paper Materials and Products"	16-Apr-08	30-Jun-08	854700.00	=""	="Australian Envelopes"	14-May-08 01:03 PM	

+="CN84060-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	30-Jul-07	30-Jun-09	305613.00	=""	="Ross Human Directions Limited"	14-May-08 01:12 PM	

+="CN84133"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	15-Aug-07	28-Feb-08	314992.68	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:40 PM	

+="CN84145"	"Postal Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	22-Aug-07	31-Aug-07	325381.85	=""	="Australia Post (9239640)"	14-May-08 04:34 PM	

+="CN84162"	"Nuclear Seismic Monitoring Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Aug-07	30-Jun-08	634453.60	=""	="AUST. GEOLOGICAL SURVEY ORG."	14-May-08 04:36 PM	

+="CN84169-A1"	"Refurbishment of Centrelink Geraldton office, WA"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Mar-08	30-Jun-08	949099.80	=""	="Glowpearl Pty Ltd t/a National Interiors"	14-May-08 04:52 PM	

+="CN84206"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	565092.89	=""	="Universal McCann"	14-May-08 05:00 PM	

+="CN84209"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	14-Sep-07	20-Sep-07	305080.90	=""	="Australia Post (9239640)"	14-May-08 05:00 PM	

+="CN84234"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	369817.26	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84239"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	12-Sep-07	28-Feb-08	301784.10	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84246"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	26-Sep-07	28-Feb-08	387090.66	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:07 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val30000to40000.xls
@@ -1,1 +1,538 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN78008"	"REQUIRED FOR TERMINAL TO SHOW SAFETY BRIEFS TO ALL PASSENGERS."	="Department of Defence"	12-May-08	="Electronic reference material"	14-Dec-07	24-Dec-07	30125.70	=""	="GARRY THYERS BETTA SUPERSTORE"	12-May-08 09:31 AM	

+="CN78021"	"DVD REPLICATOR"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	31735.00	=""	="SCSI INTEGRATION PTY LTD"	12-May-08 09:34 AM	

+="CN78022"	"CONSULTANCY FOR CONTAMINATED SOIL INSPECTION AND REPORT"	="Department of Defence"	12-May-08	="Environmental Services"	14-Dec-07	30-Jun-08	38384.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 09:35 AM	

+="CN78026"	"DCPD CRACK MEASUREMENT PACKAGE"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Dec-07	21-Mar-08	38212.07	=""	="AUSTRALIAN CALIBRATING SERVICES"	12-May-08 09:35 AM	

+="CN78027"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	18-Jan-08	38883.60	=""	="SUN MICROSYSTEMS"	12-May-08 09:36 AM	

+="CN78041"	"IAW CJOPS MINUTE (A1206456) DATED 3/12/07 REQUIRES HQJOC4 BE CAPABLE OF HIGH DEFINITION VIDEO CONF."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	29-Feb-08	37938.05	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78058"	"SEA FREIGHT MOVT OF IMV, TRAILER AND GRADER OP SLIPPER"	="Department of Defence"	12-May-08	="Marine transport"	14-Dec-07	31-Mar-08	30067.75	=""	="APL LOGISTICS"	12-May-08 09:42 AM	

+="CN78097"	"Supply, manufacture and install hose test rig assembly"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Dec-07	06-Feb-08	33000.00	=""	="TOOLTIME ENGINEERING"	12-May-08 09:50 AM	

+="CN78104"	"CONDUCT & DEVELOP TRAINING NEEDS ANALYSIS & PACKAG"	="Department of Defence"	12-May-08	="Education and Training Services"	19-Dec-07	28-Aug-08	39000.00	=""	="ESIM GAMES DEUTSCHLAND GMBH"	12-May-08 09:52 AM	

+="CN78124"	"Anchor Kits P/no 69KHSA305OD Base-X Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	30069.60	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78137"	"DISIP Stage 2"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	11-Feb-08	38567.42	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78146"	"Develop and Evaluate Networked UAV EW Systems"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	18-Dec-07	31-Mar-08	34496.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	12-May-08 09:59 AM	

+="CN78163"	"EMPLOYMENT OF PSP"	="Department of Defence"	12-May-08	="Community and social services"	18-Dec-07	30-Jun-08	32171.26	=""	="RECRUITMENT QUEENSLAND"	12-May-08 10:02 AM	

+="CN78169"	"VEHICLE REPAIRS"	="Department of Defence"	12-May-08	="Motor vehicles"	08-May-08	08-Jun-08	33960.30	=""	="MICKS AUTOS"	12-May-08 10:04 AM	

+="CN78196-A1"	"External Quality Assurance Review"	="Department of Foreign Affairs and Trade"	12-May-08	="Accounting and auditing"	22-Jan-08	30-Apr-08	38500.00	=""	="37 MARY STREET PTY LTD & A.C.N. 074 591 807 PTY. LTD. & ALPHA DREAMS PTY LIMITED & ARINA MANAGEMENT PTY LIMITED & ARMAC SIXTY-FOUR PTY LTD & BENONI NOMINEES PTY LTD & OTHERS"	12-May-08 11:48 AM	

+="CN78224"	"Vehicle Lease"	="Department of Defence"	12-May-08	="Motor vehicles"	12-Dec-07	31-Mar-10	36972.98	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:07 PM	

+="CN78272"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	05-Dec-07	07-Dec-07	30071.03	=""	="MAJOR TRAINING SERVICES PTY LTD"	12-May-08 01:12 PM	

+="CN78286"	"ADFA BLAZERS"	="Department of Defence"	12-May-08	="Clothing"	05-Dec-07	01-Apr-08	37000.00	=""	="LOWES MANHATTAN PTY LTD"	12-May-08 01:15 PM	

+="CN78287"	"HIRE OF PERSONNEL IAW STANDING OFFER LH 01/05"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Dec-07	30-Jun-08	35806.10	=""	="DRAKE INTERNATIONAL"	12-May-08 01:15 PM	

+="CN78290"	"CRITICAL REPLACE/REPAIR PROG - AIRCRAFT HANGAR DOOR MULLIONS"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	05-Dec-07	30-Jun-08	31033.48	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	12-May-08 01:15 PM	

+="CN78302"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-Jan-08	37759.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:17 PM	

+="CN78316"	"Research Agreement"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	05-Dec-07	30-Jun-08	31900.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 01:20 PM	

+="CN78327"	"MEAT"	="Department of Defence"	12-May-08	="Meat and poultry"	04-Dec-07	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	12-May-08 01:21 PM	

+="CN78331"	"FRUIT & VEGS"	="Department of Defence"	12-May-08	="Vegetables"	04-Dec-07	30-Jun-08	30000.00	=""	="TOM & FRANKS"	12-May-08 01:22 PM	

+="CN78391"	"Graduate Training"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	27-Jul-07	30-Oct-07	36515.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	12-May-08 01:32 PM	

+="CN78429"	"DMO BATTERY CHARGING - 7CSSB - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	33067.12	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:39 PM	

+="CN78438"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	30360.00	=""	="FRANCIS J HICKLING"	12-May-08 01:40 PM	

+="CN78504-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Feb-08	30-Jun-08	38206.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:49 PM	

+="CN78505"	"TRIPWIRE PRODUCTS"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	34157.24	=""	="TRIPWIRE INC"	12-May-08 01:49 PM	

+="CN78516"	"Watson, Replace sprinkler system"	="Department of Defence"	12-May-08	="Fire protection"	20-Dec-07	30-Jun-08	38265.70	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:51 PM	

+="CN78535"	"Multifunction Document Centres"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	20-Dec-07	21-Dec-07	37382.40	=""	="RICOH AUSTRALIA"	12-May-08 01:55 PM	

+="CN78537"	"PRINT PRODUCTION ONE MAN COMBAT RATION PACKS: INGR EDIENT SHEETS & MENU & INSTRUCTION SHEETS"	="Department of Defence"	12-May-08	="Paper products"	20-Dec-07	10-Jan-08	32311.40	=""	="PRESS HERE PTY LTD"	12-May-08 01:55 PM	

+="CN78568"	"DEVELOPMENT OF SRS FOR TIDES PROJECT"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	15-Jan-08	34760.00	=""	="WHITEWAY HOUSE NO 102 PTY LTD"	12-May-08 02:02 PM	

+="CN78569"	"WEAPON RACKING"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	20-Dec-07	20-Dec-07	39834.41	=""	="MULTIFILE"	12-May-08 02:02 PM	

+="CN78584"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	20-Dec-07	33165.30	=""	="BLUE SPINE PTY LTD"	12-May-08 02:04 PM	

+="CN78602"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	37246.00	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:07 PM	

+="CN78615"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	31686.27	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78636"	"RENTAL GURNEY BEACH APPARTMENTS"	="Department of Defence"	12-May-08	="Accommodation furniture"	13-Dec-07	13-Dec-07	34849.03	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:12 PM	

+="CN78657"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	32580.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78659"	"november invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	19-Dec-07	37519.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:14 PM	

+="CN78680"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	38005.00	=""	="PHILLIPS FOX SYDNEY"	12-May-08 02:15 PM	

+="CN78684"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	17-Dec-07	30-Jun-10	38781.76	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 02:16 PM	

+="CN78686"	"MODELLING SOFTWARE"	="Department of Defence"	12-May-08	="Software"	03-Jan-08	03-Jan-08	36938.00	=""	="SIMULATION MODELLING SERVICES PTY"	12-May-08 02:16 PM	

+="CN78694"	"ACCOMODATION & TRAVEL"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	14-Apr-08	14-Apr-08	35420.47	=""	="NANYANG TECHNOLOGICAL UNIVERSITY"	12-May-08 02:16 PM	

+="CN78696"	"DISIP Stage 1"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	07-Feb-08	34276.85	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 02:16 PM	

+="CN78704"	"QANTAS INVOICE HMAS HUON NOV 07"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	30-Nov-07	17-Jan-08	30158.84	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:17 PM	

+="CN78713"	"Promotional Equipment for Land Warfare Conference"	="Department of Defence"	12-May-08	="Sales and business promotion activities"	21-Oct-07	01-Jan-08	33660.00	=""	="ACCESS PROMOTIONAL PRODUCTS PTY"	12-May-08 02:18 PM	

+="CN78774"	"fees"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	23-Oct-07	30-Nov-07	32000.00	=""	="FUTURE FIBRE TECHNOLOGIES PTY LTD"	12-May-08 02:21 PM	

+="CN78788"	"Software maintenance"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	21-Dec-07	30-Aug-08	30683.29	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 02:22 PM	

+="CN78789"	"Fuel Farm maintenance"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	03-Dec-07	03-Dec-07	31040.00	=""	="AVIATION FUEL MAINTENANCE"	12-May-08 02:22 PM	

+="CN78794"	"White Paper payment"	="Department of Defence"	12-May-08	="Paper Materials and Products"	21-Dec-07	21-Dec-07	38500.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 02:22 PM	

+="CN78810"	"QANTAS AIRFARES FOR DEFENCE SUPPORT TRAVEL SERVICE FOR UNITS AT SINGLETON MILITARY AREA FOR OCT 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	33388.04	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:23 PM	

+="CN78823"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	31-Jul-08	34962.05	=""	="HAYS ACCOUNTANCY AND FINANCE"	12-May-08 02:24 PM	

+="CN78827"	"Provison of Analyst Programmer, Level 3"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	21-Dec-07	23-May-08	38497.80	=""	="YTEK PTY LTD"	12-May-08 02:24 PM	

+="CN78859"	"Builing maintenace"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	11-Apr-08	28-May-08	34573.00	=""	="M & P BUILDERS PTY LTD"	12-May-08 02:27 PM	

+="CN78866"	"MS#3"	="Department of Defence"	12-May-08	="Environmental management"	27-Mar-07	06-Dec-07	32326.43	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 02:27 PM	

+="CN78874"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Apr-08	36000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-May-08 02:28 PM	

+="CN78880"	"Install Radar Anchor Points at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	11-Apr-08	30-Jun-08	30000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:28 PM	

+="CN78901"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-07	32450.00	=""	="GHD PTY LTD"	12-May-08 02:29 PM	

+="CN78905"	"Upgrading of Prevon Vertical Carousel control syst M00268/08 at Shed 2, Lavarack JLU(NQ)"	="Department of Defence"	12-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	11-Apr-08	08-May-08	36381.40	=""	="PREVON PTY LTD"	12-May-08 02:30 PM	

+="CN78946"	"Equipment required fro the DRAS decommissioning Ta"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-Apr-08	31240.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:33 PM	

+="CN78951"	"Sewage and oily water removal - T'ville 21-24 MAR"	="Department of Defence"	12-May-08	="Water and wastewater treatment supply and disposal"	31-Mar-08	09-Apr-08	32641.63	=""	="NQ RESOURCE RECOVERY PTY LTD"	12-May-08 02:33 PM	

+="CN78954"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	10-Apr-08	01-Jun-08	39757.77	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:33 PM	

+="CN78959"	"EPIC licences"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	31-Mar-08	34331.00	=""	="FUJITSU AUSTRALIA LTD"	12-May-08 02:34 PM	

+="CN78966"	"PAYMENT TO OFFICIAL BANK ACCOUNT PALAU"	="Department of Defence"	12-May-08	="Project management"	18-Apr-08	30-Jun-10	39023.29	=""	="MARITIME SURVEILLANCE"	12-May-08 02:34 PM	

+="CN78996"	"Enterprise Modeller Developer Licence"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	30-Jun-08	33000.00	=""	="ENTERPRISE MANAGEMENT SERVICES"	12-May-08 02:37 PM	

+="CN79019"	"Training seminar"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-May-08	31080.00	=""	="MARC RATCLIFFE WORKPLACE EDUCATION"	12-May-08 02:38 PM	

+="CN79023"	"LG protable DVD Players Model: DP271B"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	17-Dec-07	04-Jan-08	31907.04	=""	="LG ELECTRONICS AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79047"	"DOMESTIC PET PRODUCTS"	="Department of Defence"	12-May-08	="Domestic pet products"	18-Mar-08	01-Apr-08	34468.15	=""	="SSPA PTY LTD"	12-May-08 02:40 PM	

+="CN79051"	"Install and service charges for phones in lifts & for security purposes - act / snsw region"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	30391.65	=""	="TELSTRA"	12-May-08 02:40 PM	

+="CN79059"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33559.60	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:41 PM	

+="CN79075"	"specialist system engineer under S/O 45190 Phone 8259 7059"	="Department of Defence"	12-May-08	="Computer services"	04-Apr-08	14-May-08	38500.00	=""	="VCORP CONSULTING PTY LTD"	12-May-08 02:42 PM	

+="CN79097"	"IBM HARDWARE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	11-Apr-08	31369.80	=""	="TAPESTRY SYSTEMS PTY LTD"	12-May-08 02:45 PM	

+="CN79111"	"CLOTHING"	="Department of Defence"	12-May-08	="Clothing"	17-Mar-08	07-Apr-08	30800.00	=""	="RAMMITE INTERNATIONAL PTY LTD"	12-May-08 02:46 PM	

+="CN79115"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	31-Dec-07	35852.12	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:47 PM	

+="CN79117"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Education and Training Services"	22-Aug-07	14-Mar-08	39903.33	=""	="MINISTRY OF DEFENCE-DEFENCE PROCURE"	12-May-08 02:47 PM	

+="CN79124"	"POC:  LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	30526.47	=""	="SUN MICROSYSTEMS"	12-May-08 02:47 PM	

+="CN79126"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Oct-07	26-Oct-07	34251.53	=""	="MONICO, JOHN ROBERT"	12-May-08 02:48 PM	

+="CN79142"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	33746.16	=""	="TAN SIEW CHIN SDN BHD"	12-May-08 02:49 PM	

+="CN79170"	"Fujitsu Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	34818.18	=""	="ASI SOLUTIONS"	12-May-08 02:51 PM	

+="CN79179"	"hp dl 360 server & hp msa30 smart array"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	11-Apr-08	30256.50	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 02:52 PM	

+="CN79183"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	02-Jun-08	36250.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79185"	"IET, BASIC DRIVER COURSE Army Logistic Training Centre, Bandiana"	="Department of Defence"	12-May-08	="Education and Training Services"	03-Apr-08	29-May-08	39090.00	=""	="NATIONAL INDUSTRIAL"	12-May-08 02:53 PM	

+="CN79187"	"PROVISION OF BOM SERVICE EX WALLABY 07"	="Department of Defence"	12-May-08	="Aircraft"	07-Dec-07	30-Dec-07	30472.87	=""	="BUREAU OF METEOROLOGY"	12-May-08 02:53 PM	

+="CN79206"	"HQJOC PROJECT - ADI LIMITED - GPS TIMING SOURCE FO"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	30446.03	=""	="THALES AUSTRALIA"	12-May-08 02:55 PM	

+="CN79225"	"PM/CA services for Canungra Redevelopment for the Delivery and Defects stages of proj."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Nov-07	30-Jun-08	38177.71	=""	="THINC PROJECTS PTY LTD"	12-May-08 02:57 PM	

+="CN79232"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	03-Apr-08	04-Apr-08	39875.00	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 02:58 PM	

+="CN79240"	"171 SQUADRON RELOCATION (FORMERLY AIR 9000 - TROOP LIFT HELICOPTERS"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	15-Apr-08	30-Jun-08	30538.75	=""	="RICE DAUBNEY"	12-May-08 02:59 PM	

+="CN79246"	"HIRE VEHICLES EX WALLABY 07"	="Department of Defence"	12-May-08	="Motor vehicles"	24-Dec-07	31-Jan-08	32297.14	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 02:59 PM	

+="CN79247"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	03-Apr-08	30-Jun-09	30825.30	=""	="BLAKE DAWSON WALDRON"	12-May-08 02:59 PM	

+="CN79261"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	08-Apr-08	30-Jun-08	34210.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:01 PM	

+="CN79269"	"VEHICLE LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	24-Apr-08	37323.19	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:01 PM	

+="CN79285"	"DRN AND CABINET BLDG 913 RAAF BASE AMBERLEY"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-Jun-08	35953.50	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:03 PM	

+="CN79288"	"Provisions for support of LSE-ME -attached pers"	="Department of Defence"	12-May-08	="Office supplies"	28-Apr-08	01-Jan-09	35911.39	=""	="INCHCAPE SHIPPING SERVICES"	12-May-08 03:04 PM	

+="CN79307"	"AIR FREIGHT OP CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	08-Apr-08	21-May-08	30292.28	=""	="ALLTRANS INTERNATIONAL"	12-May-08 03:06 PM	

+="CN79314"	"04-425299 31AUG07"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Aug-07	22-Apr-08	37004.06	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:06 PM	

+="CN79349"	"POC: ALAN ROSS CONTACT: 02 626 50931"	="Department of Defence"	12-May-08	="Medical training and education supplies"	03-Apr-08	30-Jun-08	30690.00	=""	="NETEZZA PTY LTD"	12-May-08 03:09 PM	

+="CN79376"	"SYNTHETIC GRASS"	="Department of Defence"	12-May-08	="Field and court sports equipment"	09-Apr-08	30-May-08	37180.00	=""	="ALL GRASS SPORTS SURFACES PTY LTD"	12-May-08 03:11 PM	

+="CN79402"	"Provision of Mailhouse Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	17-Apr-08	29-Apr-08	30510.95	=""	="QM Technologies Pty Limited"	12-May-08 03:13 PM	

+="CN79423"	"Contractor Computer Support MRH90 PROJECT  TTC -B"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	30-Jun-08	34320.00	=""	="C & S COMPUTER SOLUTIONS"	12-May-08 03:14 PM	

+="CN79438"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	33000.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79469"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31933.85	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79476"	"Conduct One Set of Deck breakage and Strain Gauge Readings HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	30-Apr-08	33121.00	=""	="THALES AUSTRALIA"	12-May-08 03:18 PM	

+="CN79514"	"PROVISION OF ASSISTANCE TO KALKARA PLATFORM LOGENG AS PER RAYTHEON TASK ID: KALKARAILM1. SO: PN8427"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	25-Mar-08	30-Jun-08	38508.99	=""	="RAYTHEON AUST PTY LTD"	12-May-08 03:20 PM	

+="CN79516"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	29-Apr-08	29-Apr-08	31086.00	=""	="Schiavello (WA) Pty Ltd"	12-May-08 03:20 PM	

+="CN79543"	"ISO 9001:2000"	="Department of Defence"	12-May-08	="Accommodation furniture"	27-Mar-08	30-Jun-08	33000.00	=""	="SAI GLOBAL LTD"	12-May-08 03:22 PM	

+="CN79545"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Office supplies"	30-Apr-08	30-Apr-08	36214.20	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:22 PM	

+="CN79558"	"COURSES & COURSEWARE"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	08-Apr-08	27-Jun-08	33168.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 03:23 PM	

+="CN79600"	"REPLACEMENT OF SEWER LINES"	="Department of Defence"	12-May-08	="Plumbing fixtures"	04-Feb-08	30-Jun-08	37955.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:27 PM	

+="CN79602"	"Procurement for FBW Workshop Task 19"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	20-Mar-08	30-Jun-08	32014.82	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:27 PM	

+="CN79606"	"Customer Satisfaction Survey - GSS-CMS Contracts 2 Years Strategic Review - Sydney West South"	="Department of Defence"	12-May-08	="Software"	15-Nov-07	31-Jul-08	34456.40	=""	="THE RYDER SELF GROUP"	12-May-08 03:27 PM	

+="CN79638"	"Progress Claim no 4 Installation of internal security caging PNGDF GRTD Project"	="Department of Defence"	12-May-08	="Containers and storage"	05-Oct-07	31-Dec-08	30258.35	=""	="PNG DOCKYARD LTD"	12-May-08 03:29 PM	

+="CN79644"	"CONNECTOR"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	11-Feb-08	01-Oct-08	31381.30	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 03:29 PM	

+="CN79655"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="Real estate services"	04-Apr-08	04-Apr-08	30030.00	=""	="UNITED GROUP SERVICES PTY LTD"	12-May-08 03:30 PM	

+="CN79660"	"HMAS CRESWELL: Redevelopment"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	35750.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 03:30 PM	

+="CN79681"	"02-24270531DEC07 LINE 2779 - 2826"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Dec-07	30-Jun-08	37127.81	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:32 PM	

+="CN79720"	"AMEX TRAVEL MAR'08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	27-Mar-08	21-Apr-08	32864.39	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	12-May-08 03:35 PM	

+="CN79721"	"SUPPLY OF DOUBLER PLATES"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	25-Mar-08	30-Jun-08	37933.28	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:35 PM	

+="CN79767"	"CABLING"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	28-Dec-07	39270.00	=""	="ACS TELECOMM"	12-May-08 03:37 PM	

+="CN79770"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	35409.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:38 PM	

+="CN79776"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	38720.00	=""	="CYBERTRUST AUST PTY LTD"	12-May-08 03:39 PM	

+="CN79777"	"24" LCD screens"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	14-Dec-07	36955.16	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79800"	"AIRLINE TICKETS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	31-Jan-08	31457.51	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79803"	"1405 Production Liaison Officer"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	15-Feb-08	07-May-08	35376.00	=""	="JACOBS AUSTRALIA"	12-May-08 03:40 PM	

+="CN79805"	"Provision of Archive/Storage Services"	="Medicare Australia"	12-May-08	="Storage"	11-Apr-08	11-Apr-08	31250.14	=""	="RECALL TOTAL INFORMATION MA"	12-May-08 03:40 PM	

+="CN79809"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	15-Feb-08	30-Mar-08	31752.05	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 03:40 PM	

+="CN79815"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	14-Apr-08	14-Apr-08	39501.18	=""	="AUSTRALIA POST"	12-May-08 03:41 PM	

+="CN79818"	"Repair and signage various security fencing at Kokoda Bks Canungra Ranges"	="Department of Defence"	12-May-08	="Signage and accessories"	15-Nov-07	30-Jun-08	30133.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:41 PM	

+="CN79823"	"1SQN Hertz Account"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Dec-07	13-Feb-08	37620.44	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:41 PM	

+="CN79836"	"SPECIALIST ADVICE/TRAVEL"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	15-Nov-07	30-Nov-07	34953.05	="RFT1110607"	="EVALUA PTY LTD"	12-May-08 03:43 PM	

+="CN79841"	"PC9 Aircraft Spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	18-Feb-08	10-Mar-08	35950.98	=""	="PILATUS AIRCRAFT LTD"	12-May-08 03:43 PM	

+="CN79849"	"Ship checks  for ballist and cargo tanks. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Feb-08	29-Feb-08	33000.00	=""	="SOFRACO ENGINEERING SYSTEM PTY LTD"	12-May-08 03:43 PM	

+="CN79819"	"Motor Vehicle Parts"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	09-May-08	09-Jun-10	35134.17	=""	="Volvo Commericial Vehicles"	12-May-08 03:43 PM	

+="CN79855"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	30-Nov-07	30888.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:44 PM	

+="CN79865"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	15-Feb-08	28-Apr-08	38401.25	=""	="MS INSTRUMENTS PLC"	12-May-08 03:45 PM	

+="CN79889"	"02-23990631JUL07 QANTAS STATEMENT ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:46 PM	

+="CN79892"	"PAYMENT TO OFFICAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	12-May-08	="Project management"	14-Mar-08	30-Jun-10	38741.03	=""	="MARITIME SURVEILLANCE ADVISOR"	12-May-08 03:46 PM	

+="CN79893"	"SECURITY CHECKS"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	33300.00	=""	="AUSTRALIAN FEDERAL POLICE"	12-May-08 03:46 PM	

+="CN79898"	"BASELINE CONFIGURATION DOCUMENTATION"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Mar-08	16-May-08	33000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 03:47 PM	

+="CN79906"	"HMAS Huon QANTAS Invoice JAN08"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	17-Mar-08	38717.47	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:47 PM	

+="CN79907"	"Hand held Vector Network and Spectrum Analyser"	="Defence Materiel Organisation"	12-May-08	="Measuring and observing and testing instruments"	14-Feb-08	14-Mar-08	35659.12	=""	="ANRITSU"	12-May-08 03:47 PM	

+="CN79925"	"TSA 2008 Technical Support Agreement (TSA) between CAE Inc."	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	28-Feb-08	36290.78	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79929"	"TSA 2006 TECHNICAL SUPPORT AGREEMENT (TSA) extension BETWEE"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	14-Feb-08	31-May-08	35068.34	=""	="CAE INC"	12-May-08 03:49 PM	

+="CN79932"	"RMC carwash"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	30750.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:49 PM	

+="CN79944"	"Cartridges 25mm High Explosive Incendiary - Traver De-linking, Breakdown, Propellant Sampling and Tr"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	25-May-08	33258.50	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 03:50 PM	

+="CN79958"	"CONSULTANCY"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	38940.00	=""	="CODARRA ADVANCED SYSTEMS"	12-May-08 03:52 PM	

+="CN79960"	"PC9 SPARES"	="Department of Defence"	12-May-08	="Aircraft equipment"	27-Mar-08	29-Sep-08	32590.01	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:52 PM	

+="CN79987"	"02-239906 31JUL07 ITEM 10410-10467"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Jul-07	30-Jun-08	31140.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:55 PM	

+="CN79997"	"APS Position Advertising - SRG"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	15-Apr-08	30-Jun-08	38500.00	=""	="HMA BLAZE PTY LTD"	12-May-08 03:56 PM	

+="CN80019"	"MISC ITEMS FOR CAMP TERENDAK"	="Department of Defence"	12-May-08	="Lubricants and oils and greases and anti corrosives"	25-Mar-08	01-Jun-08	38755.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:58 PM	

+="CN80021"	"IT SOFTWARE MAINTENANCE RENEWAL"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	30-Nov-08	31493.80	=""	="KNOWLEDGE PARTNERS PTY LTD"	12-May-08 03:58 PM	

+="CN80032"	"FFG Canteen Power Supply Investigation and Develop  Installation Specification"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-Jun-08	35997.20	=""	="THALES AUSTRALIA"	12-May-08 03:58 PM	

+="CN80045"	"Annual Maintenance"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	06-Feb-08	01-Apr-08	36080.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 03:59 PM	

+="CN80065"	"Scaffolding"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Apr-08	20-Jun-08	30800.00	=""	="NO BOLT OPERATIONS PTY LTD"	12-May-08 04:01 PM	

+="CN80094"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	31-Oct-08	33112.03	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:02 PM	

+="CN80109"	"ADF HEADQUARTERS RATIONALISATION BUTTERWORTH DISBURSEMENTS-ANTICIPATED COST OF AUSTRALIAN DOMES"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-11	33000.00	=""	="***USE 1079487***"	12-May-08 04:03 PM	

+="CN80111"	"4516.13 CONDUCT ELECTRICAL SURVEY ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	29-Feb-08	36365.45	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:03 PM	

+="CN80125"	"Payment of Artwork & Prep Files"	="Department of Defence"	12-May-08	="Office supplies"	10-Apr-08	24-Apr-08	35208.80	=""	="DOCKLANDS PRESS PTY LTD"	12-May-08 04:04 PM	

+="CN80131"	"LUMPSUM THROUGH FREIGHT FROM KONGSBERG NORWAY TO D AGREEMENT ASAMENDED BY EMAIL LETTERS DAYED 23/8/0"	="Department of Defence"	12-May-08	="Naval weapons"	11-Dec-07	28-Feb-08	30737.39	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 04:04 PM	

+="CN80143"	"Site Inspections of RFID Infrastructure"	="Department of Defence"	12-May-08	="Computer services"	10-Dec-07	30-Jun-08	30553.52	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 04:05 PM	

+="CN80148"	"FREIGHT"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Dec-07	30-Jun-08	36300.00	=""	="RLM PTY LTD"	12-May-08 04:05 PM	

+="CN80151"	"Professional Legal Fees & Disbursements"	="Department of Defence"	12-May-08	="Legal services"	10-Apr-08	01-Dec-08	32906.50	=""	="PHILLIPS FOX SYDNEY"	12-May-08 04:05 PM	

+="CN80154"	"QANTAS  DEC07 114MCRU"	="Department of Defence"	12-May-08	="Travel facilitation"	30-Nov-07	03-Mar-08	32290.08	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:06 PM	

+="CN80155"	"POC: PETER SPANDLER CONTACT: 08 8924 9421"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:06 PM	

+="CN80182"	"Modifications to LRV"	="Defence Materiel Organisation"	12-May-08	="Truck tractors"	05-Feb-08	29-Feb-08	30222.29	="E1-203873"	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:09 PM	

+="CN80191"	"Certification"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Nov-07	30-Jun-08	31883.29	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 04:09 PM	

+="CN80198"	"Dell Computer Equipment for JEWOSU"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Dec-07	14-Jan-08	30746.12	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:10 PM	

+="CN80246"	"This Purchase Order is raised to procure items for the CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	35603.20	=""	="RFD (AUSTRALIA) PTY LTD"	12-May-08 04:13 PM	

+="CN80249"	"PROVISION OF PSP"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	05-Feb-08	31-Mar-08	38500.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:14 PM	

+="CN80254"	"UWTR fibre optic wet end investigation activity"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Feb-08	31-Mar-08	31897.80	=""	="L-3 COMMUNICATIONS MARIPRO INC"	12-May-08 04:14 PM	

+="CN80258"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	29-Feb-08	33437.80	=""	="UNI OF SA - FINANCIAL SERVICES"	12-May-08 04:15 PM	

+="CN80263"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Nov-07	15-May-08	34420.10	=""	="UNIVERSITY OF WESTERN SYDNEY"	12-May-08 04:15 PM	

+="CN80264"	"Fairing Assembly and Spring, Flat and Seal, Leading Edge"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	06-Feb-08	15-Feb-08	30611.26	=""	="ASSOCIATED AIRCRAFT MANUFACTURING"	12-May-08 04:15 PM	

+="CN80268"	"High speed video aquisition system"	="Department of Defence"	12-May-08	="Photographic or filming or video equipment"	20-Nov-07	30-Nov-07	32744.80	=""	="TOTAL TURNKEY SOLUTIONS"	12-May-08 04:16 PM	

+="CN80273"	"ROAD CHTR EX DUGONG"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	21-Nov-07	30-Nov-07	34100.00	=""	="PDL TOLL"	12-May-08 04:16 PM	

+="CN80276"	"Modifications to LRV"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	32114.95	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:16 PM	

+="CN80289"	"repairs & mods to Launch and Recovery Vehicle"	="Department of Defence"	12-May-08	="Truck tractors"	20-Dec-07	29-Feb-08	30750.08	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 04:17 PM	

+="CN80291"	"DDP FOR LPA HANGER FIRE DETECTOR SYSTEM"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Apr-08	27-Jun-08	34650.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 04:17 PM	

+="CN80313"	"VEHICLE LEASE FEB 08 - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	25-Feb-08	11-Mar-08	38447.28	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:19 PM	

+="CN80320"	"CHANGE MANAGEMENT SUPPORT TO HEAQUARTERS"	="Department of Defence"	12-May-08	="Management advisory services"	20-Nov-07	21-Nov-07	38767.44	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 04:20 PM	

+="CN80339"	"CONSTUCTION  SECURE VIDEO CONFRENCE ROOM BUTT"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Jan-08	04-Mar-08	38580.31	=""	="NAHUM CONSTRUCTION AND RENOVATION"	12-May-08 04:21 PM	

+="CN80352"	"Use of Exisitng ASP Contract. Auto Emergy Lighting"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	20-Dec-07	16-Feb-08	35302.06	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:22 PM	

+="CN80353"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	14-Apr-08	11-Sep-08	32423.48	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:23 PM	

+="CN80356"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	30-Jun-08	34584.05	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:23 PM	

+="CN80364"	"Sound Quality Head & Torso Simulator"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	16-May-08	34908.06	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:23 PM	

+="CN80397"	"4516.20 CONDUCT ELECTRICAL SURVEY HMAS PERTH THERMOGRAPHIC SYSTEM & PROVIDE OPEN & CLOSE REP"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	08-Feb-08	30-Jun-08	32122.20	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:25 PM	

+="CN80411"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	03-Jan-08	21-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 04:25 PM	

+="CN80414"	"ELECTRICAL CONNECTIONS (cables, connectors, dust cap)."	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	20-Mar-08	39185.30	=""	="DKSH AUSTRALIA PTY LTD"	12-May-08 04:26 PM	

+="CN80422"	"supply of milk wbta"	="Department of Defence"	12-May-08	="Milk and butter products"	16-Jan-08	30-Jun-08	31678.99	=""	="PAULS LIMITED"	12-May-08 04:26 PM	

+="CN80427"	"TARGET RADAR"	="Department of Defence"	12-May-08	="Naval weapons"	20-Dec-07	17-Mar-08	36922.26	=""	="ENGINEERING CONTROL SUPPLIES LIMITE"	12-May-08 04:26 PM	

+="CN80446"	"PRESERVATION OF MMR HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jan-08	08-Feb-08	36359.41	=""	="ALPHABLAST"	12-May-08 04:27 PM	

+="CN80466"	"2270 Sound Level Meter & accessories"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Apr-08	05-May-08	39195.20	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 04:28 PM	

+="CN80467"	"Shallow Water Landing Frame"	="Defence Materiel Organisation"	12-May-08	="Fabricated plate assemblies"	11-Feb-08	30-Jun-08	34870.00	=""	="STRUCTURAL MARINE"	12-May-08 04:28 PM	

+="CN80486"	"Install local exhaust temperature probes. HMAS SUCCESS"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	30-Mar-08	32841.60	=""	="MAN DIESEL AUSTRALIA PTY LTD"	12-May-08 04:30 PM	

+="CN80488"	"Engineer for EROC support of trainig and questions"	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	01-Feb-08	39048.90	=""	="C4I PTY LTD"	12-May-08 04:30 PM	

+="CN80489"	"Develop Detailed Design package for Boarding Part  Equipment Mounting Arrangement"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36956.70	=""	="ADVITECH PTY LTD"	12-May-08 04:30 PM	

+="CN80493"	"LPA SHIPS SUPPLY OF COUGARNET INTERFACE CABLES4"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Apr-08	23-Jun-08	30536.00	=""	="EYLEX PTY LTD"	12-May-08 04:31 PM	

+="CN80501"	"Prototype Distribution Boxes"	="Department of Defence"	12-May-08	="Power Generation and Distribution Machinery and Accessories"	20-Dec-07	31-Jan-08	36124.00	="RFT E1-203863"	="HEINEMANN ELECTRICAL AUST PTY LTD"	12-May-08 04:31 PM	

+="CN80508"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L750"	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	07-Feb-08	30-Jun-08	37390.52	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:32 PM	

+="CN80520"	"Contractor discussions for the range flght termina tion system"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Feb-08	30-Jun-08	38277.36	=""	="SYSTEM PLANNING CORPORATION"	12-May-08 04:33 PM	

+="CN80527"	"AIRCRAFT MAINTENANCE SUPPORT - RENOVATION OF SQN WORKSHOP FACILITY"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	20-Dec-07	29-Feb-08	32558.84	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:33 PM	

+="CN80544"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	12-May-08	36912.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:34 PM	

+="CN80564"	"4516.37 - CONDUCT ELECTRICAL SURVEY HMAS ARUNTA ELECTRICAL SYSTEM"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	36914.46	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:35 PM	

+="CN80575"	"HONEYWELL FMZ SERIES (FLIGHT MANAGEMENT SERIES) - SERVICE FEE FOR AIRCRAFTS/SIMULATORS."	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	31-Oct-08	36868.54	=""	="HONEYWELL AIR TRANSPORT - PHOENIX"	12-May-08 04:35 PM	

+="CN80636"	"Purchase Order raised to procure Breakdown Spares Valves that have been shipped to OEM buy RBE for r"	="Department of Defence"	12-May-08	="Hydraulic systems and components"	08-Jan-08	31-May-08	33000.00	=""	="ROSEBANK ENGINEERING"	12-May-08 04:39 PM	

+="CN80685"	"PROCUREMENT QTY 8 MOBILE kITCHEN TRAILERS"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	20-Dec-07	11-Jan-08	35689.50	=""	="BUILT TOUGH TRAILERS"	12-May-08 04:41 PM	

+="CN80688"	"Defence CIO Group Annual maintenance fee for DRMS"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	30-Jun-08	33000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:42 PM	

+="CN80722"	"Inner Container"	="Department of Defence"	12-May-08	="Containers and storage"	20-Dec-07	09-Oct-08	37884.00	=""	="ASP PLASTICS PTY LTD"	12-May-08 04:43 PM	

+="CN80739"	"Carl Gustaf Spares"	="Department of Defence"	12-May-08	="Firearms"	04-Apr-08	01-Dec-08	35455.17	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 04:44 PM	

+="CN80742"	"MAINTENANCE CONTRACT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	03-Apr-08	09-Jan-11	33893.92	=""	="INTERSOFT ELECTRONICS NV"	12-May-08 04:44 PM	

+="CN80745"	"WTR in service support"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	31897.80	=""	="ACROAMATICS INC"	12-May-08 04:45 PM	

+="CN80757"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	22-Feb-08	30-Jun-08	35170.00	=""	="DEACONS"	12-May-08 04:45 PM	

+="CN80789"	"RE AUTHORING AAP7213.006-2-WDM-000"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-May-08	36522.20	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:47 PM	

+="CN80801"	"DTS 69 Provision of TADRS Technical Support"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	30-May-08	35014.77	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:47 PM	

+="CN80810"	"DELIVERY INTRO TO SYSTEMS ENGINEERING TRAINING FOR DMO GRADUATES"	="Department of Defence"	12-May-08	="Medical training and education supplies"	04-Apr-08	30-Jun-08	35500.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-May-08 04:48 PM	

+="CN80813"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	28-May-08	38500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80827"	"Computer equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	23-Feb-08	30-Jun-08	35517.59	=""	="XSI DATA SOLUTIONS PTY LTD"	12-May-08 04:49 PM	

+="CN80835"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Alternative educational systems"	23-Feb-08	30-Jun-08	32934.00	=""	="SUN MICROSYSTEMS"	12-May-08 04:49 PM	

+="CN80845"	"Test 150 CA/DA clusters and provide a report"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	18-Dec-07	20-Feb-08	37102.12	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:50 PM	

+="CN80848"	"Use of existing ASP Contract - ECP for Galley Fire fighting system"	="Department of Defence"	12-May-08	="Fire fighting equipment"	29-Jan-08	30-Apr-08	31831.25	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:50 PM	

+="CN80850"	"STOCK FOREEND DUAL SWITCH"	="Department of Defence"	12-May-08	="Firearms"	08-Apr-08	20-Jun-08	30938.85	=""	="LASER PRODUCTS"	12-May-08 04:50 PM	

+="CN80859"	"MIS928 - DL360 Power Consumption Rectification"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	39901.95	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80891"	"HMAS PERTH URDEF 36/07 - REPLACE AND TEST ESM BITE CABLES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	33000.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80900"	"Computor Equipment"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	28-Mar-08	34000.00	=""	="MESSAGES ON HOLD"	12-May-08 04:52 PM	

+="CN80903"	"HMAS PERTH URDEFS 6,78 AND 82/06"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-Jun-08	38500.00	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:52 PM	

+="CN80932"	"Extended Warrnty Services"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	27-Feb-08	20-Mar-08	30697.92	=""	="ARION SYSTEMS PTY LTD"	12-May-08 04:53 PM	

+="CN80965"	"DESIGN FOR TOB LAN SSERVER RM HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	12-Mar-08	39736.84	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80968"	"The Purchase of Conversion Software to convert Netvantage Data into OPNET Data - Quote# 20080066"	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	30-Apr-08	30800.00	=""	="TENFOLD NETWORK SOLUTIONS"	12-May-08 04:56 PM	

+="CN80986"	"4 Heavy Duty 7 x 5 Off Road Box Trailers"	="Defence Materiel Organisation"	12-May-08	="Vehicle bodies and trailers"	27-Feb-08	30-Apr-08	30976.00	=""	="CLASSIC TRAILERS PTY LTD"	12-May-08 04:57 PM	

+="CN81008"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	31465.69	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:58 PM	

+="CN81034"	"COMPLEX PROCUREMENT TRG"	="Defence Materiel Organisation"	12-May-08	="Business administration services"	26-Feb-08	09-May-08	34251.33	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 05:00 PM	

+="CN81039"	"M548 Box"	="Department of Defence"	12-May-08	="Packaging materials"	08-Apr-08	30-Jun-08	31233.51	=""	="PENTARCH PTY LTD"	12-May-08 05:00 PM	

+="CN81057"	"berthage for HMAS LEEUWIN maintenance period"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	31-Jan-08	31475.73	=""	="AIMTEK PTY LTD"	12-May-08 05:01 PM	

+="CN81066"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Feb-08	28-Aug-08	30725.58	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:01 PM	

+="CN81098"	"arm assy"	="Department of Defence"	12-May-08	="Aircraft equipment"	31-Jan-08	01-Mar-09	38034.38	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:03 PM	

+="CN81118"	"Replace Fan Coil Unit HMAS SYDNEY"	="Department of Defence"	12-May-08	="Manufacturing support services"	31-Jan-08	30-Jun-08	31143.20	=""	="ENVIROAIR PTY LTD"	12-May-08 05:03 PM	

+="CN81119"	"TECHNICAL ASSISTANCE IN DARWIN"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	31287.37	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81122"	"MAG58 BOX INSERT PAINTED"	="Department of Defence"	12-May-08	="Gun systems"	01-Feb-08	09-May-08	31581.00	=""	="THALES AUSTRALIA"	12-May-08 05:04 PM	

+="CN81127"	"SURVEY OF RADAR TOWERS"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	26-Nov-07	28-Jan-08	36376.79	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 05:04 PM	

+="CN81136"	"Computer Equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	14-Mar-08	37931.75	=""	="SUN MICROSYSTEMS"	12-May-08 05:04 PM	

+="CN81137"	"Technical advice"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	15-Jun-08	38500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:04 PM	

+="CN81152"	"Electrical Cable Assembly Set Procurement from Technical Services Laboratory Inc"	="Defence Materiel Organisation"	12-May-08	="Electrical components"	19-Feb-08	13-Apr-08	38680.55	=""	="TECHNICAL SERVICES LABORATORY INC"	12-May-08 05:05 PM	

+="CN81165"	"REPAIR OF THROTTLE ACTUATOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	19-Dec-07	25-Apr-08	34703.78	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:05 PM	

+="CN81167"	"Modifications to LRV Contract E1-203873"	="Department of Defence"	12-May-08	="Truck tractors"	26-Nov-07	24-Dec-07	34060.88	=""	="RPC TECHNOLOGIES PTY LTD"	12-May-08 05:05 PM	

+="CN81174"	"MOAS OBSOLESCENCE MONITORING PROGRAM"	="Department of Defence"	12-May-08	="Military watercraft"	01-Feb-08	01-Apr-08	35662.44	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:06 PM	

+="CN81178"	"Earned value management Support for MRH90 Training Device Acquisition"	="Department of Defence"	12-May-08	="Aircraft"	01-Feb-08	30-Jun-08	36184.62	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:06 PM	

+="CN81179"	"lloyds classification fees"	="Department of Defence"	12-May-08	="Environmental control systems"	26-Nov-07	31-Dec-07	39973.08	=""	="AIMTEK PTY LTD"	12-May-08 05:06 PM	

+="CN81204"	"Field Monitoring System"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	19-Feb-08	18-Apr-08	30162.00	=""	="FARADAY PTY LTD"	12-May-08 05:07 PM	

+="CN81205"	"Use of Exisitng ASP Contract. Supply of Foam"	="Department of Defence"	12-May-08	="Resin and Rosin and Rubber and Foam and Film and Elastomeric Materials"	18-Dec-07	04-Feb-08	36506.88	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:07 PM	

+="CN81214"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	23-Jan-08	27-Sep-08	39133.37	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:08 PM	

+="CN81215"	"Adhoc Purchases for repairs"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	23-Nov-07	23-Nov-07	31967.32	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:08 PM	

+="CN81217"	"Part 4 Task 070 LSTU - USD PAYMENT"	="Defence Materiel Organisation"	12-May-08	="Launch vehicles and rockets"	19-Feb-08	12-Sep-08	36715.43	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:08 PM	

+="CN81249"	"load bank for hydrograhic ships"	="Department of Defence"	12-May-08	="Marine transport"	19-Dec-07	28-Feb-08	30522.57	=""	="AIMTEK PTY LTD"	12-May-08 05:09 PM	

+="CN81259"	"MANUFACTURE OF CARL GUSTAF MK3 FIRING MOUNT"	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	31-Jan-08	30250.00	=""	="ABU ENGINEERING PTY LTD"	12-May-08 05:10 PM	

+="CN81263"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	23-Nov-07	28-Feb-08	34099.00	=""	="HAWKER PACIFIC PTY LTD"	12-May-08 05:10 PM	

+="CN81269"	"Projectile 30mm FRED"	="Department of Defence"	12-May-08	="Explosive materials"	19-Dec-07	24-Apr-08	38115.00	=""	="REFINED TOOLING PTY LTD"	12-May-08 05:10 PM	

+="CN81278"	"Repairs of Weatherhaven Shelters"	="Department of Defence"	12-May-08	="Prefabricated structures"	23-Jan-08	31-Mar-08	39292.00	=""	="G H VARLEY PTY LTD"	12-May-08 05:10 PM	

+="CN81289"	"MANIFOLD ASSY"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Feb-08	01-Dec-08	38223.52	=""	="ROLLS - ROYCE PLC"	12-May-08 05:11 PM	

+="CN81290"	"MAJOR INSPECTION OF TRUCK AIRCRAFT SIDE LOADING/UNLOADING (TASLU)"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	23-Jan-08	18-Mar-08	39441.60	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:11 PM	

+="CN81298"	"develop a Detailed Design Package for installation of MVIS on HMAS Sydney"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	18-Feb-08	28-Apr-08	38610.00	=""	="OPERATIONAL SOLUTIONS"	12-May-08 05:11 PM	

+="CN81312"	"Travel for UK MOD staff"	="Department of Defence"	12-May-08	="Travel facilitation"	22-Jan-08	30-Jun-08	31512.60	=""	="UK MINISTRY OF DEFENCE"	12-May-08 05:12 PM	

+="CN81317"	"Ship Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	02-Jan-08	39156.70	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	12-May-08 05:12 PM	

+="CN81318"	"Search Lights, Dual Mode"	="Department of Defence"	12-May-08	="Exterior vehicle lighting"	22-Jan-08	07-Jul-08	31974.99	=""	="LUMINATOR HOLDING LP"	12-May-08 05:12 PM	

+="CN81320"	"LEASE OF FOUR VEHICILES -SHORT TERM"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Nov-07	31-Dec-08	36352.97	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81326"	"PROMOTIONAL GEAR"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	18-Feb-08	33000.00	=""	="BRANDNET PTY LTD"	12-May-08 05:13 PM	

+="CN81328"	"Hose Ass, Air Breathing"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	28-Nov-07	03-Jul-08	38396.66	=""	="BAI INC"	12-May-08 05:13 PM	

+="CN81332"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Specialty aircraft"	21-Feb-08	30-Mar-08	36453.00	=""	="FLIGHT DATA SYSTEMS PTY LTD"	12-May-08 05:13 PM	

+="CN81358"	"Extended support to Nexus"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	28-Nov-07	18-Jan-08	33874.50	=""	="KAZ GROUP PTY LTD"	12-May-08 05:14 PM	

+="CN81383"	"Technical Services"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	22-Feb-08	30-Apr-08	36170.33	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:16 PM	

+="CN81392"	"Fit Assessment of Combat Boots"	="Defence Materiel Organisation"	12-May-08	="Footwear"	22-Feb-08	25-Feb-08	34320.00	=""	="ESSENTIAL FOOTWEAR INTERNATIONAL"	12-May-08 05:16 PM	

+="CN81404"	"4516.26 CONDUCT THERMO SURVEY OF WARRAMUNGA 29 MAR -11 APR PROVIDE AN OPENING & CLOSING REPORT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Apr-08	33353.98	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 05:17 PM	

+="CN81429"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	31780.34	=""	="C4I PTY LTD"	12-May-08 05:18 PM	

+="CN81433"	"4553.02 PROCUREMENT OF TRAILER DOLLY"	="Department of Defence"	12-May-08	="Military watercraft"	26-Nov-07	31-Jan-08	30800.00	=""	="HAULMARK TRAILERS"	12-May-08 05:18 PM	

+="CN81440"	"ENGAGEMENT OF NOVARE PSP"	="Defence Materiel Organisation"	12-May-08	="Published Products"	20-Feb-08	30-Jun-08	31453.95	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:19 PM	

+="CN81449"	"Supply of Software, Software Licences, Training & Support for tender Evaluation Tool"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	30-Jun-08	38000.00	=""	="EVALUA PTY LTD"	12-May-08 05:19 PM	

+="CN81466"	"6 Months hire of Furniture for FFGSPO leased Tender Evaluation office"	="Department of Defence"	12-May-08	="Military watercraft"	25-Jan-08	31-Jul-08	37494.60	=""	="EMERALD HILL ABSOLUTE OFFICE CENTRE"	12-May-08 05:20 PM	

+="CN81476"	"MOTOR CONTROL"	="Defence Materiel Organisation"	12-May-08	="Military fixed wing aircraft"	21-Feb-08	25-May-08	37192.83	=""	="CAE INC"	12-May-08 05:21 PM	

+="CN81492"	"Use of Exisitng ASP Contract.- ECP for Installatio of Sewage Syst Isolation Valve"	="Defence Materiel Organisation"	12-May-08	="Water and wastewater treatment supply and disposal"	20-Feb-08	23-May-08	35480.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:23 PM	

+="CN81527"	"2008 DMO GRADUATE INDUCTION TRAINING"	="Department of Defence"	12-May-08	="Medical training and education supplies"	24-Jan-08	31-Mar-08	39468.00	=""	="DEAKINPRIME"	12-May-08 05:25 PM	

+="CN81531"	"Maintenance"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	15-Jun-08	30022.30	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:26 PM	

+="CN81536"	"CONTRACT OF STANDING OFFER NUMBER:  LEA-CM-2008-00 LEA-CM-2008-003"	="Defence Materiel Organisation"	12-May-08	="Audio and visual presentation and composing equipment"	21-Apr-08	30-Jun-08	33000.00	=""	="EVENTRA PTY LTD"	12-May-08 05:26 PM	

+="CN81553"	"MHC MDV TETHER CONNECTION UPGRADE DETAILED DESIGN"	="Department of Defence"	12-May-08	="Military watercraft"	13-Dec-07	29-Feb-08	32590.84	=""	="THALES AUSTRALIA"	12-May-08 05:27 PM	

+="CN81599"	"BIPOD AND ADAPTORS"	="Defence Materiel Organisation"	12-May-08	="Light weapons and ammunition"	18-Apr-08	02-Aug-08	32628.26	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 05:31 PM	

+="CN81600"	"DEFECT INVESTIGATION"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	12-Dec-07	12-Dec-07	39588.02	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:31 PM	

+="CN81601"	"CONDITIONS OF CONTRACT: Attached Standard Conditio In accordance with INCOTERMS you are responsible"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Apr-08	20-Oct-08	30668.06	=""	="AT ENGINE CONTROLS LTD"	12-May-08 05:31 PM	

+="CN81603"	"Repair of Fibre Optics"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	18-Apr-08	30-Apr-08	37356.00	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 05:31 PM	

+="CN81651"	"FIT FOR PURPOSE ASSESSMENT OF ESF GST TRAILER"	="Department of Defence"	12-May-08	="Vehicle bodies and trailers"	17-Dec-07	13-Feb-08	36669.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:37 PM	

+="CN81671"	"FILTER ELEMENT"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	14-Dec-07	25-Jul-08	35677.56	=""	="HONEYWELL INTERNATIONAL INC"	12-May-08 05:40 PM	

+="CN81678"	"ANTENNA"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	15-Dec-07	20-Dec-07	39744.66	=""	="SHAKESPEARE COMPANY LLC"	12-May-08 05:41 PM	

+="CN81686"	"Computer switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	25-Jan-08	38699.55	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 05:42 PM	

+="CN81699"	"Attn: Tony Dzelalija Your quotation 711228860500 dated 05 December 2007"	="Department of Defence"	12-May-08	="Heating and ventilation and air circulation"	07-Dec-07	27-Dec-07	32670.00	=""	="J BLACKWOOD & SON LTD"	12-May-08 05:43 PM	

+="CN81701"	"Provision of EMA Work Package Documentation Supp- ort FY 2007/08"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	30-Jun-08	30380.41	=""	="THALES AUSTRALIA"	12-May-08 05:44 PM	

+="CN81707"	"prepare Installation Design Package- CHAMELEON Data Acquisition Unit SHIPALT 480 - HMAS Sydney"	="Department of Defence"	12-May-08	="Military watercraft"	10-Dec-07	31-Mar-08	39810.00	=""	="THALES AUSTRALIA"	12-May-08 05:45 PM	

+="CN81709"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	28-Feb-08	38852.66	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:45 PM	

+="CN81727"	"P2724-001 UPGRADE OF WIND SPEED AND DIRECTION"	="Department of Defence"	12-May-08	="Military watercraft"	06-Dec-07	30-Dec-07	30609.01	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:47 PM	

+="CN81734"	"PROCUREMENT QTY 8 WINCHES"	="Department of Defence"	12-May-08	="Electrical components"	07-Dec-07	21-Dec-07	30932.00	=""	="ATECO EQUIPMENT"	12-May-08 05:48 PM	

+="CN81750"	"project phoenix"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	18-Jan-08	39761.30	=""	="JACOBS AUSTRALIA"	12-May-08 05:50 PM	

+="CN81752"	"Teamcenter Consultancy/Professional Services"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-May-08	33000.00	=""	="PLM SERVICES PTY LTD"	12-May-08 05:50 PM	

+="CN81759"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Transportation and Storage and Mail Services"	02-Apr-08	02-Apr-08	31878.05	=""	="Cabcharge Australia Pty Ltd"	12-May-08 07:32 PM	

+="CN81766"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	25-Mar-08	25-Mar-08	35866.01	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81775"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	01-Mar-08	01-Mar-08	32698.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81781"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Mar-08	17-Mar-08	32564.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81783"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	14-Apr-08	14-Apr-08	31438.00	=""	="MCR Computer Resources Pty Ltd"	12-May-08 07:35 PM	

+="CN81806-A1"	"Multi Fuction Devices for National Support Office"	="Family Court of Australia"	13-May-08	="Photocopiers"	12-May-08	12-Jun-08	36293.61	=""	="Kyocera Mita Australia Pty Ltd"	13-May-08 10:28 AM	

+="CN81824"	"gst payment in foreign currency"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Oct-07	11-Dec-07	39162.90	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 11:02 AM	

+="CN81833"	"GST ONLY PAYMENT FOR ACQUISITION OF 16 X TALIN 500 AND VMS UNITS"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	31-Oct-07	30-Nov-07	35710.67	=""	="HONEYWELL AEROSPACE ELECTRONIC SYST"	13-May-08 11:03 AM	

+="CN81848"	"GST ONLY FOR INVOICE 66292"	="Defence Materiel Organisation"	13-May-08	="Satellites"	22-Oct-07	30-Nov-07	35992.61	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:06 AM	

+="CN81861"	"GST on Foreign Currency Payment"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	06-Dec-07	30-Jan-08	31445.33	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	13-May-08 11:09 AM	

+="CN81862"	"ESSM Missile Firing"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	11-Dec-07	24-Jan-08	34932.75	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:09 AM	

+="CN81867"	"C438933"	="Defence Materiel Organisation"	13-May-08	="Satellites"	02-Jan-08	30-Jun-08	36500.45	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:09 AM	

+="CN81872"	"GST on Foreign Currency Payments"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	23-Jan-08	01-Feb-12	33228.76	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:10 AM	

+="CN81881"	"GST Payment"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Dec-07	29-Feb-08	31968.45	=""	="BOEING AUSTRALIA LTD"	13-May-08 11:12 AM	

+="CN81889"	"AVIATION FUEL JET-A1"	="Defence Materiel Organisation"	13-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	15-Oct-07	03-Jan-08	33898.62	=""	="SHELL NEDERLAND VERKOOPMAATSCHAPPIJ"	13-May-08 11:13 AM	

+="CN81895"	"QANTAS Nov 07 STATEMENT"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	30-Nov-07	30-Jun-08	36312.72	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:14 AM	

+="CN81897"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	18-Dec-07	30-Jun-08	31286.12	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:14 AM	

+="CN81918"	"JFAS VHF LAN UPGRADE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	30-Jun-06	30-Jun-06	30665.04	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:18 AM	

+="CN81919"	"IALS conformance to standard test"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	15-Nov-07	19-Dec-07	31727.09	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 11:18 AM	

+="CN81927"	"AUS Surveillance Spares"	="Defence Materiel Organisation"	13-May-08	="Rockets and subsystems"	14-Nov-07	30-Aug-08	36715.96	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:19 AM	

+="CN81929"	"Manufacture of a new main staysail &assorted bags"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	14-Nov-07	30-Nov-07	33345.95	=""	="HOOD SAILMAKERS (AUST) PTY LTD"	13-May-08 11:19 AM	

+="CN81937"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Nov-07	07-Jun-08	32471.22	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:21 AM	

+="CN81943"	"KaMewa spare parts for the SFADRHIB"	="Defence Materiel Organisation"	13-May-08	="Machine made parts"	15-Nov-07	30-Jun-08	33126.50	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 11:22 AM	

+="CN81945"	"IAW standing offer number C388551"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	15-Nov-07	12-May-08	31309.89	=""	="PARTECH SYSTEMS PTY LTD"	13-May-08 11:22 AM	

+="CN81956"	"SLIMS Maintenance"	="Defence Materiel Organisation"	13-May-08	="Software"	25-Oct-07	31-Dec-07	31064.00	=""	="MWA SYSTEMS PTY LTD"	13-May-08 11:25 AM	

+="CN81957"	"MOUNT"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	21-Apr-08	30-Jun-08	33768.53	=""	="AVIALL SERVICES INC."	13-May-08 11:25 AM	

+="CN81926"	"Advertising Position Vacant"	="Office of Parliamentary Counsel"	13-May-08	="Newspaper advertising"	14-Sep-07	14-Sep-07	34994.23	=""	="HMA Blaze"	13-May-08 11:26 AM	

+="CN81974"	"Repair Towed Array MUX"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Nov-07	24-Mar-08	35789.70	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 11:28 AM	

+="CN81976"	"Repair, Modify & Service batteries on GUSTPACK"	="Defence Materiel Organisation"	13-May-08	="Industrial process machinery and equipment and supplies"	08-Nov-07	31-Dec-07	30965.00	=""	="METCALFE GROUP PTY LTD"	13-May-08 11:29 AM	

+="CN82000"	"30 x Dell optiplex 755 Desktops"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	15-Apr-08	35145.00	=""	="Dell Australia Pty Ltd"	13-May-08 11:33 AM	

+="CN82010"	"sml deck crane"	="Defence Materiel Organisation"	13-May-08	="Heavy construction machinery and equipment"	19-Nov-07	04-Feb-08	30250.00	=""	="G A GLANVILLE & CO"	13-May-08 11:34 AM	

+="CN82041"	"Contract services provided by Geospatial Analyst from 4 April 2008 to 4 July 2008."	="Geoscience Australia"	13-May-08	="Temporary personnel services"	08-Apr-08	04-Jul-08	38500.00	=""	="Finite Recruitment Pty Ltd"	13-May-08 11:38 AM	

+="CN82049"	"prepare, review and release RAAF document package"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	16-Nov-07	31-Jan-08	38733.20	=""	="C4I PTY LTD"	13-May-08 11:39 AM	

+="CN82056"	"technical services"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	16-Nov-07	30-Sep-08	33163.33	=""	="PARTECH SYSTEMS PTY LTD"	13-May-08 11:39 AM	

+="CN82076"	"Modify, Repair & Test NIIN 661515365"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	16-Nov-07	20-Nov-07	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 11:41 AM	

+="CN82081"	"G2346  T B Provision of Contract Staff 7 April to 30 June 2008  PABX Technician"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	16-Apr-08	30-Jun-08	36300.00	=""	="Finite Recruitment Pty Ltd"	13-May-08 11:42 AM	

+="CN82086"	"Provison for Freight Costs to 30 June 2008"	="Geoscience Australia"	13-May-08	="Transportation and Storage and Mail Services"	16-Apr-08	30-Jun-08	39000.00	="2006/1089"	="Australian Air Express"	13-May-08 11:42 AM	

+="CN82141"	"Quotation no: 70201419_1, Adixen (France) Hydrocarbon Free Multiple Stage Roots Pump ACP 40 CV and connectors"	="Geoscience Australia"	13-May-08	="Tools and General Machinery"	30-Apr-08	31-Dec-08	33686.40	=""	="John Morris Scientific"	13-May-08 11:48 AM	

+="CN82145"	"TS167MAT-4 MOAS FOLLOWON INSTALLATIONS MATERIAL PROCUREMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	24-Apr-08	30-Jun-08	31667.75	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:49 AM	

+="CN82150"	"INSTALLATION OF FOLLOW-ON TASKS TO HMAS PARRAMATTA DURING DSRA02/IMAV02"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	11-Nov-08	39142.09	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:50 AM	

+="CN82214"	"FLOOR MATTING"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	05-Mar-08	28-Apr-08	35420.00	=""	="SOFRACO INTERNATIONAL PTY LTD"	13-May-08 11:58 AM	

+="CN82215"	"providing consultation services to tender evaluation process"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Nov-07	28-Feb-08	38567.29	=""	="TILFORTH CONSULTING SERVICES"	13-May-08 11:58 AM	

+="CN82221-A1"	"PROFESSIONAL FEES AND DISBURSEMENTS - Armidale Class Patrol Boat Fuel Issues"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-08	30-Jun-08	36462.00	=""	="MINTER ELLISON"	13-May-08 11:59 AM	

+="CN82239"	"FFG TASK 07/08-046"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	08-Aug-07	21-Jan-08	32675.48	=""	="THALES AUSTRALIA"	13-May-08 12:01 PM	

+="CN82258"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	05-Mar-08	05-Mar-08	34450.46	=""	="KAZ GROUP PTY LTD"	13-May-08 12:02 PM	

+="CN82269"	"4531.13 - SIMULATOR SECURITY UPGRADE TO SAAB ATS"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	15-Jan-08	31-Mar-08	32587.01	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 12:03 PM	

+="CN82275"	"ABI Baordmaster 8000"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	16-Jan-08	28-Feb-08	39616.50	=""	="TEKMARK AUSTRALIA PTY LTD"	13-May-08 12:03 PM	

+="CN82276"	"Tail Wheel Support Assembly"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	05-Mar-08	15-May-08	30111.52	=""	="ROTAIR INDUSTRIES INC"	13-May-08 12:03 PM	

+="CN82283"	"PROMOTIONAL GEAR"	="Defence Materiel Organisation"	13-May-08	="Sales and business promotion activities"	15-Jan-08	15-Jan-08	33000.00	=""	="BRANDNET PTY LTD"	13-May-08 12:04 PM	

+="CN82285"	"HULL SURVEY HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	15-Jan-08	30-May-08	35062.50	=""	="VIKING MARINE SURVEYS PTY LTD"	13-May-08 12:04 PM	

+="CN82286"	"Maintenance Management for STS YOUNG ENDEAVOUR"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Mar-08	25-Apr-08	33675.90	=""	="SME GATEWAY LIMITED"	13-May-08 12:04 PM	

+="CN82292"	"Electronic Whiteboards"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	11-Mar-08	30250.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	13-May-08 12:05 PM	

+="CN82317"	"BLANLET ORDER RAISED FOR THE HIRE TO FUEL TANKS TO TIMOR."	="Defence Materiel Organisation"	13-May-08	="Fuels"	16-Jan-08	30-Jun-08	30360.00	=""	="TANK CONTAINERS AUSTRALIA"	13-May-08 12:07 PM	

+="CN82325"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	31-Mar-08	34501.50	=""	="ALLOY COMPUTER PRODUCTS"	13-May-08 12:07 PM	

+="CN82343"	"Repairs to equipment"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	07-Mar-08	29-Nov-08	39395.40	=""	="BELLINGER INSTRUMENTS PTY LTD"	13-May-08 12:09 PM	

+="CN82346"	"storage of equipment for hydrograhpic ship upgrade"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Jan-08	31-Jan-10	32132.48	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:09 PM	

+="CN82349"	"Ex-Adelaide POA Ship Agent at FBE"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	10-Mar-08	30-Jun-08	35689.83	=""	="THALES AUSTRALIA"	13-May-08 12:10 PM	

+="CN82354"	"CONFERENCE PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	11-Jan-08	21-Jan-08	33625.70	=""	="DEFENCE WORLDWIDE ASSOCIATES"	13-May-08 12:10 PM	

+="CN82376"	"Repair of Printed Circuit Board"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	07-Mar-08	30-Jun-08	33366.10	=""	="EUROTORP"	13-May-08 12:12 PM	

+="CN82389"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:13 PM	

+="CN82391"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:13 PM	

+="CN82393"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:13 PM	

+="CN82395"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:13 PM	

+="CN82397"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:14 PM	

+="CN82398"	"Modification of an F/A-18 Hornet, F404 Engine, Main Fuel Control."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Jan-08	27-May-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	13-May-08 12:14 PM	

+="CN82412"	"Repair Damaged HUD UCR02/055 S&Q02/074"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	07-Mar-08	31-Mar-08	30266.50	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 12:15 PM	

+="CN82414"	"Calibration of Thermal Imager Test Bench"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	07-Mar-08	28-Mar-08	37945.34	=""	="THALES AUSTRALIA"	13-May-08 12:15 PM	

+="CN82425"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	11-Mar-08	35700.01	=""	="IDEEA INC"	13-May-08 12:16 PM	

+="CN82431"	"Repairs to equipment"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	07-Mar-08	30-Nov-08	35970.00	=""	="BELLINGER INSTRUMENTS PTY LTD"	13-May-08 12:17 PM	

+="CN82436"	"TS1207-4 COOEE VOICE COMMS POSTION"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Jan-08	28-Mar-08	37359.60	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 12:17 PM	

+="CN82443"	"Motor, DC"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	29-Feb-08	31-Dec-08	33180.09	=""	="AAR PARTS TRADING INC."	13-May-08 12:18 PM	

+="CN82468"	"SAARS array calibration activity"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Feb-08	30-Mar-08	35125.31	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:21 PM	

+="CN82476"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE."	="Defence Materiel Organisation"	13-May-08	="Fuels"	29-Feb-08	30-Jun-08	39600.00	=""	="SEA SWIFT PTY LTD"	13-May-08 12:22 PM	

+="CN82478"	"Shore/Salvage Services Power Upgrade CCP 0154 CCP 0154"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	29-Feb-08	01-Feb-22	35393.36	=""	="MOELLER ELECTRIC AUSTRALIA PTY LTD"	13-May-08 12:22 PM	

+="CN82505"	"BLANKET ORDER RAISED FOR THE TRANSPORTATION OF DIE TO THE DEFENCE ESTABLISHMENT LOCATED ON BATHURST"	="Defence Materiel Organisation"	13-May-08	="Fuels"	17-Jan-08	30-Jun-08	35200.00	=""	="TIWI BARGE SERVICES LTD"	13-May-08 12:24 PM	

+="CN82511"	"AIRCRAFT PARTS"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	07-Jan-08	03-Aug-08	31897.80	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 12:24 PM	

+="CN82512"	"Professional services"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	28-Feb-08	19-Mar-08	32568.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	13-May-08 12:24 PM	

+="CN82519"	"Use of existing ASP Contract - Modification of CCTV System"	="Defence Materiel Organisation"	13-May-08	="Security surveillance and detection"	07-Jan-08	29-Feb-08	32330.76	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:25 PM	

+="CN82522"	"PHOTOCOPIERS FOR THE AWD SYSTEMS CENTRE"	="Defence Materiel Organisation"	13-May-08	="Reproduction services"	28-Feb-08	30-Jun-08	37620.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	13-May-08 12:25 PM	

+="CN82531"	"Headless Server"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	07-Jan-08	18-Jan-08	37540.80	=""	="APC TECHNOLOGY"	13-May-08 12:26 PM	

+="CN82534-A1"	"Consultancy on Statistical Issues in Industry Analysis"	="Defence Materiel Organisation"	13-May-08	="Management advisory services"	28-Feb-08	15-May-09	30000.00	=""	="DES NICHOLLS"	13-May-08 12:26 PM	

+="CN82557"	"VARIOUS PARTS AND ACCESSORIES WEAPON"	="Defence Materiel Organisation"	13-May-08	="Light weapons and ammunition"	08-Jan-08	11-Sep-08	37411.87	=""	="KNIGHTS ARMAMENT COMPANY"	13-May-08 12:28 PM	

+="CN82575"	"PSP 02 626 50610"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	02-Jan-08	30-Jun-08	37885.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:30 PM	

+="CN82582"	"MICROCLIMATE INSTALL"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	04-Mar-08	30-May-08	30660.72	=""	="BAE SYSTEMS(AUSTRALIA)"	13-May-08 12:31 PM	

+="CN82592"	"Design development of regional interface contoller cell computers."	="Defence Materiel Organisation"	13-May-08	="Electrical components"	04-Mar-08	15-Apr-08	38664.79	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 12:32 PM	

+="CN82601"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	13-May-08	="Software"	04-Mar-08	04-Mar-08	32727.94	=""	="KAZ GROUP PTY LTD"	13-May-08 12:33 PM	

+="CN82638"	"Council Rates Reefhq"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	35012.00	=""	="Townsville City Council"	13-May-08 12:37 PM	

+="CN82639"	"Transmitter Pressure"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	01-Mar-08	24-Jan-09	31887.17	=""	="DERCO AEROSPACE INC."	13-May-08 12:37 PM	

+="CN82644"	"Annual support & maintenance fee"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Jun-08	37702.98	=""	="Technology One"	13-May-08 12:37 PM	

+="CN82646"	"Develop FFG Class Ammunitioning Routes"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Feb-08	18-Apr-08	39815.00	=""	="NOVA DEFENCE"	13-May-08 12:37 PM	

+="CN82662"	"NOZZLE FUEL & OIL"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	18-Mar-08	30-Apr-08	31515.03	=""	="DIXIE AIR PARTS SUPPLY INC"	13-May-08 12:41 PM	

+="CN82706"	"Aimpoint Sight Unit"	="Defence Materiel Organisation"	13-May-08	="Firearms"	15-Mar-08	04-Apr-08	33273.23	=""	="ATHENES PRIDE INC."	13-May-08 12:47 PM	

+="CN82707"	"Intro to systems Engineering Course 12-14.05.2008 Intro to Requirements Engineeriong Course 24-28.06"	="Defence Materiel Organisation"	13-May-08	="Vocational training"	19-Mar-08	14-May-08	37225.15	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	13-May-08 12:47 PM	

+="CN82723"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	20-Mar-08	30-Apr-08	33766.26	=""	="BENNETT COMMERCIAL ELECTRONICS"	13-May-08 12:49 PM	

+="CN82724"	"SURVEY & EVALUATION OF PLANAR ARRAY S/N: 2227"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	20-Mar-08	19-Aug-08	30891.27	=""	="RAYTHEON AUSTRALIA"	13-May-08 12:49 PM	

+="CN82725"	"SURVEY & EVALUATION OF PLANAR ARRAY S/N: 2227"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	20-Mar-08	19-Aug-08	30891.27	=""	="RAYTHEON AUSTRALIA"	13-May-08 12:49 PM	

+="CN82729"	"INSTALLATION OF KY-100 INTO FIVE SEA KING HELICOPT THE APPROVED NASPO DESIGN."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	19-Mar-08	18-Jul-08	38197.20	=""	="PACIFIC AVIONICS PTY LTD"	13-May-08 12:50 PM	

+="CN82731"	"SERVICEABILITY ASSESSMENT OF ADATS SPARES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	19-Mar-08	30-Jun-08	38902.41	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 12:50 PM	

+="CN82744"	"OUTSTANDING TOLL VIOLATIONS"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	18-Mar-08	31-Dec-08	30000.00	=""	="INTERLINK ROADS"	13-May-08 12:52 PM	

+="CN82763"	"engineering services for FA/18 hornet"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	28-Apr-08	39600.00	=""	="NEWCASTLE TOOL & DIE"	13-May-08 12:54 PM	

+="CN82768"	"A. Daronmont TechnologiesPty Ltd Quotation for KES 6th March 2008"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	12-Mar-08	30-Jun-08	30580.00	=""	="DARONMONT TECHOLOGIES PTY LTD"	13-May-08 12:55 PM	

+="CN82782"	"Use of Exisitng ASP Contract.- Hamworthy Toilet Spares"	="Defence Materiel Organisation"	13-May-08	="Water and wastewater treatment supply and disposal"	12-Mar-08	06-Jun-08	31104.45	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:57 PM	

+="CN82786"	"HEISE MODEL 901B DIGITIAL PRESSURE INDICATOR WITH REMOTE SENSOR TO 4,500 FTSW"	="Defence Materiel Organisation"	13-May-08	="Measuring and observing and testing instruments"	12-Mar-08	30-Apr-08	30542.60	=""	="AUSTRAL-POWERFLO SOLUTIONS"	13-May-08 12:57 PM	

+="CN82814"	"Repair of Embedded GPS S/No 500264"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	11-Mar-08	31-Mar-08	34218.36	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 01:01 PM	

+="CN82834"	"HMAS STUART - EHSD INSTALLATION - SPARES"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	13-Mar-08	30-Apr-08	39497.54	=""	="KAZ GROUP PTY LTD"	13-May-08 01:04 PM	

+="CN82842"	"ANZAC SPO Hardware Buy"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-Jun-08	31013.40	=""	="JH COMPUTER SERVICES"	13-May-08 01:05 PM	

+="CN82852"	"Training course for interim EHSD"	="Defence Materiel Organisation"	13-May-08	="Education and Training Services"	14-Mar-08	31-May-08	35750.00	=""	="TC COMMUNICATIONS PTY LTD"	13-May-08 01:07 PM	

+="CN82857"	"Commvault software suite for PIF"	="Defence Materiel Organisation"	13-May-08	="Satellites"	13-Mar-08	30-Jun-08	37537.13	=""	="COMMVAULT SYSTEMS AUSTRALIA PTY LTD"	13-May-08 01:07 PM	

+="CN82874"	"LEASEPLAN VEHICLE FOR DG SHHAL  - HOLDEN  AR40RA"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	13-Mar-08	01-Feb-10	37762.03	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 01:10 PM	

+="CN82878"	"PROVISION OF SKILLED PERSONNEL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Toxic and hazardous waste cleanup"	13-Mar-08	23-May-08	37730.00	=""	="SME GATEWAY LIMITED"	13-May-08 01:10 PM	

+="CN82879"	"COMBI THERM OVENS HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	13-Mar-08	30-Mar-08	36399.79	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:10 PM	

+="CN82901"	"eMIMS Pharmaceutical Software Licences"	="Defence Materiel Organisation"	13-May-08	="Computer services"	13-Feb-08	31-Mar-08	30000.00	=""	="CMPMEDICA AUSTRALIA PTY"	13-May-08 01:13 PM	

+="CN82910"	"X-RAY OF BALLISTIC PLATES"	="Defence Materiel Organisation"	13-May-08	="Personal safety and protection"	13-Feb-08	29-Feb-08	33076.84	=""	="BALLISTIC AND MECHANICAL TESTING"	13-May-08 01:15 PM	

+="CN82921"	"Microwave Broadband Site Master to support multi EW platforms."	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	23-Apr-08	25-May-08	36222.71	=""	="ANRITSU PTY LTD"	13-May-08 01:33 PM	

+="CN82928"	"CONNECTOR MODIFICATION KIT"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	22-Apr-08	22-Nov-08	33613.44	=""	="RFD BEAUFORT LTD"	13-May-08 01:35 PM	

+="CN82941"	"FLIGHT VEHICLE MIDLIFE REFURBISHMENT"	="Defence Materiel Organisation"	13-May-08	="Launch vehicles and rockets"	23-Apr-08	30-Jun-09	33384.45	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:36 PM	

+="CN82950"	"IT DEVICES"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	22-Apr-08	30-Apr-08	31120.76	=""	="ASI SOLUTIONS"	13-May-08 01:38 PM	

+="CN82959"	"Computer Multifunction Printer"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	21-Apr-08	13-May-08	38060.66	=""	="DATA 3 GROUP"	13-May-08 01:40 PM	

+="CN82967"	"IT DEVICES"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	22-Apr-08	30-May-08	35811.57	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 01:41 PM	

+="CN82983"	"INDEPENDENT ADVICE ON 15 ECONOMICAL JOURNAL ARTICL"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	15-Apr-08	32615.00	=""	="ECONTECH PTY LTD"	13-May-08 01:43 PM	

+="CN82988"	"Plugin for falconView modification software"	="Defence Materiel Organisation"	13-May-08	="Software"	15-Apr-08	30-Jun-08	34848.00	=""	="LEICA GEOSYSTEMS GEOSPATIAL IMAGING"	13-May-08 01:44 PM	

+="CN82992"	"This order is placed IAW terms and conditions of C Support services to OTHRSPO"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	16-Apr-08	30-Jun-08	32318.98	=""	="RLM PTY LTD"	13-May-08 01:44 PM	

+="CN82997"	"CALEY DAVIT"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	16-Apr-08	16-May-08	32341.60	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:45 PM	

+="CN83009"	"POC: PAUL FAICHNEY CONTACT: 02 626 50995"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	30-Jun-08	35167.00	=""	="BAC SYSTEMS PTY LTD"	13-May-08 01:47 PM	

+="CN83012"	"INTERCOM SYSTEM FOR TRAINING AID AT 285SQN"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Apr-08	03-Jun-08	39787.00	=""	="LIGHT AIRCRAFT PTY LTD"	13-May-08 01:47 PM	

+="CN83015"	"VANE COMPRESSOR"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Apr-08	01-Feb-10	31642.43	=""	="ROLLS - ROYCE PLC"	13-May-08 01:47 PM	

+="CN83033"	"TIGER HELICOPTER WHEEL CHANGE AXLE JACK"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Apr-08	15-Jul-08	37587.00	=""	="FORDHAM ENGINEERING PTY LTD"	13-May-08 01:50 PM	

+="CN83053"	"Rechargeable Batteries"	="Defence Materiel Organisation"	13-May-08	="Batteries and generators and kinetic power transmission"	18-Apr-08	20-Jun-08	30253.74	=""	="BREN-TRONICS INC"	13-May-08 01:53 PM	

+="CN83054"	"BLANK FIRING DEVICE"	="Defence Materiel Organisation"	13-May-08	="Light weapons and ammunition"	18-Apr-08	17-Jun-08	33668.92	=""	="FN HERSTAL SA"	13-May-08 01:53 PM	

+="CN83086"	"Seawater Batteries"	="Defence Materiel Organisation"	13-May-08	="Naval weapons"	17-Apr-08	07-Oct-08	35805.28	=""	="ORDNANCE TECHNOLOGY SERVICE INC."	13-May-08 01:58 PM	

+="CN83115"	"Monitors"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	02-May-08	20-May-08	32980.20	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 02:02 PM	

+="CN83122"	"Young Achievement Australia sponsorship for DMO Under Graduate Engineering Students"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	32000.00	=""	="YOUNG ACHIEVEMENT AUSTRALIA"	13-May-08 02:03 PM	

+="CN83134"	"Use of Exisitng ASP Contract  - Caley Davit Service"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	30-Apr-08	11-Jul-08	35510.48	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:04 PM	

+="CN83140-A1"	" 1136-3 UPGRADE CCTV SYSTEM ANZAC CLASS SHORE FACILITIES "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	30-Apr-08	27-Jul-10	36216.62	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:05 PM	

+="CN83150"	"ELECTRONIC COMPONENTS/PARTS"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	30-Apr-08	29-May-08	30472.53	=""	="CONNECTOR TECH"	13-May-08 02:07 PM	

+="CN83151"	"Use of Exisitng ASP Contract  - Overhaul 30 Bar Air Compressor"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	37134.41	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:07 PM	

+="CN83175"	"FMS Case - AT-F-ABY"	="Defence Materiel Organisation"	13-May-08	="Accounting and auditing"	12-Nov-07	31-Dec-08	32233.40	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83184"	"Harness, Aircraft Safety"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	06-May-08	08-Sep-08	35087.58	=""	="AERIAL MACHINE & TOOL CORP"	13-May-08 02:11 PM	

+="CN83194"	"Installation Design for HMAS Melbourne & Sydney Sonar Radar Dome with RHOCOR Composite Keel"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Aug-08	31051.63	=""	="THALES AUSTRALIA"	13-May-08 02:14 PM	

+="CN83205"	"10 yr Inspection for 45 HD Boom Lift"	="Defence Materiel Organisation"	13-May-08	="Vehicle servicing equipment"	02-May-08	30-May-08	37560.42	=""	="JLG INDUSTRIES (AUSTRALIA)"	13-May-08 02:16 PM	

+="CN83214"	"Use of Exisitng ASP Contract  - Repair Scavenge Air Cooler Leak"	="Defence Materiel Organisation"	13-May-08	="Engine coolant system"	02-May-08	11-Jul-08	35196.32	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:17 PM	

+="CN83229"	"INVESTIGATION SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-May-08	37034.80	=""	="HBA CONSULTING"	13-May-08 02:20 PM	

+="CN83230"	"CONDUCT HULL CROP & RENEW REPAIRS HMAS KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	24-Apr-08	13-Jun-08	32066.32	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 02:20 PM	

+="CN83260"	"phone and electricity charges for hmas leeuwin for maintenance period 29"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	06-May-08	33550.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	13-May-08 02:25 PM	

+="CN83271"	"POC: MATTHEW DICKSON CONTACT: 02 626 50777"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	39964.72	=""	="BEA SYSTEMS PTY LTD"	13-May-08 02:27 PM	

+="CN83289"	"Provision of Pre-deployment 4WD Driver training"	="Australian Federal Police"	13-May-08	="Vehicle driving schools services"	14-Mar-08	17-Mar-08	37500.00	="05/2005"	="Transport Industries Skills Centre INC"	13-May-08 02:30 PM	

+="CN83314"	"THIS ORDER IS PLACED IAW TERMS AND CONDITIONS OF C"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	28-Apr-08	30-Jun-08	37885.76	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:33 PM	

+="CN83319"	"10 yr Inspection for Mobile Aircraft Washer"	="Defence Materiel Organisation"	13-May-08	="Vehicle servicing equipment"	28-Apr-08	16-Jun-08	31394.00	=""	="STATIC ENGINEERING PTY LTD"	13-May-08 02:33 PM	

+="CN83322"	"S-70 ENGINEERING DRAWING TRAINING"	="Defence Materiel Organisation"	13-May-08	="Specialised educational services"	28-Apr-08	28-Apr-08	33000.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	13-May-08 02:34 PM	

+="CN83327"	"DARWIN ADAPTATION CHANGES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	29-Apr-08	30-May-08	33000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:35 PM	

+="CN83329"	"C130J In-flight monitoring for AFM00916 - Reduced Vertical Separation Minima certification"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Apr-08	30-Jun-09	31370.04	=""	="AEROPEARL PTY LTD"	13-May-08 02:35 PM	

+="CN83340"	"TRAINING WETSUIT FLEET FOR SASR ARMY MARINE"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	28-Apr-08	30-May-08	31350.00	=""	="S2 WETSUITS"	13-May-08 02:36 PM	

+="CN83361"	"Provision of Pre-deployment 4WD Driver training"	="Australian Federal Police"	13-May-08	="Vehicle driving schools services"	28-Mar-08	31-Mar-08	37500.00	="05/2005"	="Transport Industries Skills Centre INC"	13-May-08 02:40 PM	

+="CN83365"	"Truck Access Platforms"	="Defence Materiel Organisation"	13-May-08	="Laboratory and scientific equipment"	01-Apr-08	20-Jun-08	32752.50	=""	="NO BOLT OPERATIONS PTY LTD"	13-May-08 02:40 PM	

+="CN83368"	"As per the terms and conditions of Contract N26028 CSSF Stage 5 Activities"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	01-Apr-08	30-Jul-08	35851.01	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:41 PM	

+="CN83414"	"Powder Coat Oven"	="Defence Materiel Organisation"	13-May-08	="Building and Construction Machinery and Accessories"	02-Apr-08	31-May-08	38500.00	=""	="AUSCO SYSTEMS PTY LTD"	13-May-08 02:48 PM	

+="CN83432"	"    Evaluation and Selection of Web Content Management Systems    "	="Therapeutic Goods Administration"	13-May-08	="Public Utilities and Public Sector Related Services"	02-Apr-08	30-Jun-08	30000.00	=""	="Step Two Designs"	13-May-08 03:09 PM	

+="CN83435"	"    Development of Cognos 8 Web Based Reports    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	39600.00	=""	="Cognos Pty Ltd"	13-May-08 03:21 PM	

+="CN83443"	"    Recall Storage 07/08 FY (PO variation)    "	="Therapeutic Goods Administration"	13-May-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	30000.00	=""	="Recall"	13-May-08 03:48 PM	

+="CN51245"	"repair of mode select panel"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	32019.90	=""	="moog australia"	13-May-08 03:50 PM	

+="CN51246"	"repair of mode select panel"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	32019.90	=""	="moog australia"	13-May-08 03:52 PM	

+="CN83455"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	30-May-08	34969.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	13-May-08 07:28 PM	

+="CN83458"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Mar-08	13-Jun-08	31000.00	=""	="VERSALUX LIGHTING SYSTEMS"	13-May-08 07:28 PM	

+="CN83477"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	05-Dec-08	35537.74	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:31 PM	

+="CN83482"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	04-Dec-08	33299.43	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:31 PM	

+="CN83487"	"Procurement of:  CHAIR,ROTARY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	13-May-08	31609.00	=""	="OFFICE ORGANIZATION Pty Ltd"	13-May-08 07:32 PM	

+="CN83514"	"Procurement of:  VALVE ASSEMBLY,MANIFOLD"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	28-Jun-08	36362.96	=""	="H I FRASER Pty Ltd"	13-May-08 07:35 PM	

+="CN83520"	"Procurement of:  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Mar-08	13-May-08	39380.00	=""	="VEGA AUSTRALIA Pty Ltd"	13-May-08 07:36 PM	

+="CN83527"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	27-Oct-08	34846.00	=""	="NOSKE-KAESER NZ Ltd"	13-May-08 07:37 PM	

+="CN83529"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	13-May-08	38500.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	13-May-08 07:37 PM	

+="CN83550"	"Procurement of:  SCALE REMOVING COMPOUND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	13-May-08	35075.00	=""	="ENVIRONMENTAL FLUID SYSTEMS"	13-May-08 07:40 PM	

+="CN83551"	"Procurement of:  PUMP,FUEL BOOSTER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	13-May-08	32384.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	13-May-08 07:40 PM	

+="CN83552"	"Procurement of:  VALVE,ANGLE;  VALVE,ANGLE;  VALVE,ANGLE;  VALVE,ANGLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	25-May-08	30822.92	=""	="H I FRASER Pty Ltd"	13-May-08 07:40 PM	

+="CN83562"	"Procurement of:  VALVE,ANGLE;  PIPE ASSEMBLY,METAL;  VALVE,SAFETY RELIEF;  VALVE,ANGLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	25-May-08	30989.42	=""	="H I FRASER Pty Ltd"	13-May-08 07:41 PM	

+="CN83563"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,ANGLE;  VALVE,ANGLE;  VALVE,CROSS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	25-May-08	30923.72	=""	="H I FRASER Pty Ltd"	13-May-08 07:41 PM	

+="CN83564"	"Procurement of:  O-RING;  REGULATOR,BREATHING GAS PRESSURE,DEMAND;  PARTS KIT,REGULATOR BREATHING GAS;  GAGE,DEPTH,DIVER'S"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	13-May-08	36244.83	=""	="PREECE T D AND CO Pty Ltd"	13-May-08 07:42 PM	

+="CN83584"	"Procurement of:  DE-ICING UNIT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	28-Aug-08	30320.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:44 PM	

+="CN83585"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	31-Jul-08	30499.86	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:44 PM	

+="CN83593"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	01-Apr-08	01-Oct-08	32802.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	13-May-08 07:45 PM	

+="CN83599"	"Procurement of:  FLOW INDICATOR SET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	26-Jul-08	31057.36	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:46 PM	

+="CN83604"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	13-May-08	34740.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	13-May-08 07:47 PM	

+="CN83605"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	13-Jun-08	38099.12	=""	="A AND D INTERNATIONAL Pty Ltd"	13-May-08 07:47 PM	

+="CN83613"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	16-May-08	30664.80	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:48 PM	

+="CN83614"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	17-Aug-08	38828.66	=""	="THALES AUSTRALIA"	13-May-08 07:48 PM	

+="CN83616"	"Procurement of:  INDICATOR,SHIP'S DISTANCE-SPEED"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	08-Apr-08	02-Sep-08	33800.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	13-May-08 07:48 PM	

+="CN83630"	"Procurement of:  TEST SET,HYDRAULIC COMPONENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	29-Aug-08	31860.00	=""	="AERO & MILITARY PRODUCTS"	13-May-08 07:50 PM	

+="CN83636"	"Procurement of:  TRANSMISSION,MECHANICAL,NONVEHICULAR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	07-Jul-08	37860.00	=""	="UNITED GROUP INFRASTRUCTURE"	13-May-08 07:51 PM	

+="CN83649"	"Procurement of:  TRACKBALL,DATA ENTRY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	29-May-08	35760.00	=""	="M&D MARINE PARTS SERVICE Pty *"	13-May-08 07:52 PM	

+="CN83659"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	21-Apr-08	26-Aug-08	33190.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	13-May-08 07:54 PM	

+="CN83668"	"Procurement of:  BOWL,WATER CLOSET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	31-Jul-08	35704.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	13-May-08 07:55 PM	

+="CN83686"	"Procurement of:  ANODE,CORROSION PREVENTIVE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	01-Jan-09	38544.00	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:57 PM	

+="CN83708"	"Procurement of:  CHUTE,ARC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	25-Dec-08	33900.87	=""	="ASC Pty Ltd"	13-May-08 08:00 PM	

+="CN83717"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Apr-08	13-Oct-08	33897.36	=""	="ASC Pty Ltd"	13-May-08 08:01 PM	

+="CN83726"	"Procurement of:  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE;  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	13-Jun-08	31204.00	=""	="VEGA AUSTRALIA Pty Ltd"	13-May-08 08:02 PM	

+="CN83727"	"Procurement of:  CLEANING COMPOUND,SOLVENT-DETERGENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	24-May-08	30492.00	=""	="ABM ENVIROSAFE"	13-May-08 08:02 PM	

+="CN83730"	"Procurement of:  SCALE REMOVING COMPOUND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	28-May-08	39300.00	=""	="ABM ENVIROSAFE"	13-May-08 08:03 PM	

+="CN83756"	"Change of Company Code"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Travel facilitation"	07-May-08	07-Jun-08	31421.50	="TRS08/113"	="HOGG ROBINSON AUSTRALIA PTY LTD"	14-May-08 10:18 AM	

+="CN83763"	"Valuation on three historic aircrafts Valuation on Department's assets"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Accounting and auditing"	10-Feb-08	30-Apr-08	32000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	14-May-08 10:19 AM	

+="CN83777"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	21-Apr-08	30-Jun-08	39600.00	="TRS05/251"	="Allstaff Australia P/L"	14-May-08 10:22 AM	

+="CN83783"	"Provision of  telephone calls"	="Department of Parliamentary Services"	14-May-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-08	39559.73	=""	="Telstra Corporation Ltd"	14-May-08 10:39 AM	

+="CN83798"	"Bucket Scoop Type Loader 2.6m wdd x 1.4m dx Hardened Steel"	="Defence Materiel Organisation"	14-May-08	="Vehicle bodies and trailers"	14-May-08	21-Jun-08	38610.00	=""	="Jaws Buckets & Attachments P/L"	14-May-08 11:05 AM	

+="CN83805"	"computer software licence"	="Royal Australian Mint"	14-May-08	="Software"	16-Apr-08	16-Apr-08	36920.35	=""	="ZALLCOM PTY LIMITED"	14-May-08 11:28 AM	

+="CN83811"	" packaging "	="Royal Australian Mint"	14-May-08	="Packaging materials"	16-Apr-08	17-Apr-08	34760.00	=""	="MEGARA (AUST) P/L"	14-May-08 11:48 AM	

+="CN83839"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	18-Apr-08	30-Jun-08	35000.00	=""	="Galiwinku Community Inc"	14-May-08 12:30 PM	

+="CN83840"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	28-Apr-08	30-Jun-08	30000.01	=""	="Chartair Pty Ltd"	14-May-08 12:30 PM	

+="CN83852"	"Utilities"	="Centrelink"	14-May-08	="Utilities"	31-Oct-07	30-Jun-08	38500.00	=""	="AGL Energy Sales and Marketing Ltd"	14-May-08 12:32 PM	

+="CN83856"	"Cabcharges"	="Centrelink"	14-May-08	="Passenger transport"	27-Nov-07	30-Jun-08	32460.00	=""	="Cabcharge Australia Pty Ltd"	14-May-08 12:33 PM	

+="CN83858"	"Early Intervention and Rehab Services"	="Centrelink"	14-May-08	="Human resources services"	10-Jan-08	30-Jun-08	30800.00	=""	="WorkFocus Australia"	14-May-08 12:33 PM	

+="CN83863-A1"	"Intrastate courier services, Tasmania"	="Centrelink"	14-May-08	="Mail and cargo transport"	02-Apr-08	30-Jun-08	35200.00	=""	="Australian Freight Handling"	14-May-08 12:34 PM	

+="CN83894"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:39 PM	

+="CN83910"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:42 PM	

+="CN83911"	"Hotel, lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	10-Apr-08	30-Jun-08	35000.01	=""	="Deewin Kurim Aboriginal Corporation"	14-May-08 12:43 PM	

+="CN83922"	"Freight between offices"	="Centrelink"	14-May-08	="Mail and cargo transport"	07-Apr-08	30-Jun-08	32210.75	=""	="Australian Air Express"	14-May-08 12:45 PM	

+="CN83926"	"External training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	30000.00	=""	="Plan IT Test Management Solutions"	14-May-08 12:45 PM	

+="CN83932"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	16-Apr-08	15-May-08	34000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:47 PM	

+="CN83943"	"Digital Interview recording system"	="Centrelink"	14-May-08	="Office supplies"	07-Apr-08	30-Apr-08	36080.00	=""	="Tape Products Research"	14-May-08 12:49 PM	

+="CN83958"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	34726.91	=""	="AV Central"	14-May-08 12:51 PM	

+="CN83969"	"Office Supplies"	="Centrelink"	14-May-08	="Office supplies"	08-Apr-08	30-Jun-08	36960.00	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:52 PM	

+="CN83972"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	30-Jun-08	30462.37	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:53 PM	

+="CN83981"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	07-May-08	30-Jun-08	35090.65	=""	="Kaz Group Pty Ltd"	14-May-08 12:54 PM	

+="CN83987"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	10-Apr-08	10-Jun-08	32432.40	=""	="PAXUS Australia Pty Ltd"	14-May-08 12:55 PM	

+="CN83990"	"Membership of Chief Finance Officer Board"	="Centrelink"	14-May-08	="Business administration services"	02-Apr-08	30-Jun-08	36555.91	=""	="Corporate Executive Board"	14-May-08 12:55 PM	

+="CN83994"	"TV Panels"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Apr-08	15-May-08	32334.03	=""	="JB Hi-Fi Pty Ltd"	14-May-08 12:56 PM	

+="CN84000"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	11-Jul-08	35090.00	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 12:57 PM	

+="CN84008"	"Visitor seating"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	16-Jun-08	34490.50	=""	="Flair Office Furniture"	14-May-08 12:58 PM	

+="CN84010"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	29-Apr-08	29-Apr-08	35336.12	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:59 PM	

+="CN84012"	"Furniture, Mornington, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	29-Apr-08	29-May-08	32982.40	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:59 PM	

+="CN84024"	"Office furniture and storage units"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	30-Jun-08	35041.60	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 01:02 PM	

+="CN84078"	"Juggling Chainsaws Leadership Program"	="Australian Taxation Office"	14-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	37790.00	="06.241-0032"	="Results Consulting"	14-May-08 02:30 PM	

+="CN84111"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Aug-07	07-Sep-07	32524.80	=""	="KAZ Group Pty Ltd"	14-May-08 03:03 PM	

+="CN84120"	"Aviation Spares, overhaul of Tail Rotor Gearbox"	="Defence Materiel Organisation"	14-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Jul-08	33011.00	=""	="Australian Aerospace"	14-May-08 03:36 PM	

+="CN84144"	" Develoment of Life Cycle Costing Model "	="Department of Foreign Affairs and Trade"	14-May-08	="Business administration services"	13-Nov-07	30-Jun-08	37450.00	=""	="RIDER LEVETT BUCKNALL"	14-May-08 04:30 PM	

+="CN84164"	"Electrical Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	27-Aug-07	31-Aug-07	30179.54	=""	="Kent Electrical Contractors"	14-May-08 04:37 PM	

+="CN84166"	"IT Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	23-Aug-07	20-Sep-07	39643.56	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 04:37 PM	

+="CN84167"	"Project Management Consulting"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	27-Aug-07	24-Sep-07	38280.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 04:37 PM	

+="CN84208"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="General building construction"	13-Sep-07	30-Jun-08	30293.19	=""	="Sealeck Pty Ltd"	14-May-08 05:00 PM	

+="CN84241"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	14-Sep-07	14-Sep-07	32902.97	=""	="Australian Government Solicitor"	14-May-08 05:06 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val40000to60000.xls
@@ -1,1 +1,697 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN77994"	"Pouches & Bag Textile"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	07-May-08	16-May-08	44550.00	="CC1V0L"	="Platypus Outdoors Group Pty Ltd"	12-May-08 09:21 AM	

+="CN78007"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Dec-07	01-Jun-10	45853.70	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 09:31 AM	

+="CN78016"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Jun-08	44200.20	=""	="FRESH CREATIVE DESIGN"	12-May-08 09:33 AM	

+="CN78020"	"Fibre Optic Bundles"	="Department of Defence"	12-May-08	="Laboratory supplies and fixtures"	14-Dec-07	07-Jan-08	47846.71	=""	="NUFERN"	12-May-08 09:34 AM	

+="CN78030"	"VOYAGE"	="Department of Defence"	12-May-08	="Recreational watercraft"	14-Dec-07	17-Jan-08	43340.00	=""	="LEEUWIN OCEAN ADVENTURE"	12-May-08 09:36 AM	

+="CN78037"	"IAW CJOPS MINUTE (A1206456) DATED 3/12/07 REQUIRE HQJOC4(MHQ L1) BE CAPABLE OF HIGH DEF. VIDEO CONF"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	29-Feb-08	57266.25	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78042"	"Provision of labour hire to 20 STA REGT from 1 Jan TO 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	51747.86	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:38 AM	

+="CN78059"	"Contract Doc to develop underwater acoustic measuring apparatus"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	30-Jun-08	46516.80	=""	="MIDSPAR SYSTEMS"	12-May-08 09:42 AM	

+="CN78062"	"Temp accommodation between R5-R6"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	19-Dec-07	30-Jun-08	52201.64	=""	="SPOTLESS P & F PTY LTD"	12-May-08 09:43 AM	

+="CN78083"	"CUSTOMER STATISTICAL SURVAY - GSS/CMS CONTRACTS 2 Years Strategic Review - South Australia"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	31-Jul-08	41701.00	=""	="THE RYDER SELF GROUP"	12-May-08 09:48 AM	

+="CN78096"	"Reseach scientist"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	30-Jun-08	53460.00	=""	="GHD PTY LTD"	12-May-08 09:50 AM	

+="CN78094-A1"	"The provision of advisory services to review the Cultural Language Centre (CLC) for the AFP college"	="Australian Federal Police"	12-May-08	="Audit services"	06-May-08	30-Jun-08	44000.00	="Jan-05"	="KPMG"	12-May-08 09:51 AM	

+="CN78100"	"Employment of Day Labour"	="Department of Defence"	12-May-08	="Temporary personnel services"	19-Dec-07	30-Jun-08	47477.76	=""	="RECRUITMENT QUEENSLAND"	12-May-08 09:51 AM	

+="CN78119"	"Conduct probablistic as per AIR Task 07/050"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	18-Dec-07	30-Jun-08	55797.01	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 09:54 AM	

+="CN78130"	"Training"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	18-Dec-07	31-Dec-07	44000.00	=""	="APIS CONSULTING GROUP"	12-May-08 09:56 AM	

+="CN78134"	"Stage 2 Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	11-Feb-08	45018.81	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 09:57 AM	

+="CN78152"	"NORFORCE - OP OUTREACH - ENGEL 40LT FRIDGE/FREEZER JTF641-0004"	="Department of Defence"	12-May-08	="Industrial refrigeration"	18-Dec-07	21-Dec-07	55068.75	=""	="ENGEL DISTRIBUTION PTY LTD"	12-May-08 10:00 AM	

+="CN78165"	"MAINTENANCE"	="Department of Defence"	12-May-08	="General building construction"	18-Dec-07	30-Jun-08	54529.17	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:02 AM	

+="CN78166"	"TO SUSTAIN THE DSVE CAPABILITIES IN R1 & R5."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	18-Dec-07	15-Feb-08	56271.74	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 10:03 AM	

+="CN78170-A1"	"Policy Development"	="Australian Securities and Investments Commission"	12-May-08	="Legal services"	07-Feb-08	06-May-08	45000.00	=""	="Blake Dawson"	12-May-08 10:09 AM	

+="CN78184-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Apr-08	30-Jun-08	40128.00	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 11:04 AM	

+="CN78201"	" Provision of Information Technology Specialist Services (previously published as GAPS ID 1691450) "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology networking specialists"	03-Apr-07	30-Jun-08	53480.00	=""	="Greythorn Pty Ltd"	12-May-08 11:59 AM	

+="CN78207-A3"	"Provision of cleaning services to the Midland premises of CRS Australia"	="CRS Australia"	12-May-08	="General building and office cleaning and maintenance services"	06-May-08	05-May-11	51000.00	=""	="Delron Cleaning"	12-May-08 12:13 PM	

+="CN78209"	"Production of Language training DVD's"	="Australian Federal Police"	12-May-08	="Digital versatile disks DVDs"	30-Jan-08	12-Oct-09	54800.00	="RFT6/2006"	="Centre for Adult Education (CAE)"	12-May-08 12:20 PM	

+="CN78213"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	26-May-08	45606.00	=""	="I T LOGISTICS SERVICES PTY LTD"	12-May-08 01:05 PM	

+="CN78220"	"SEA FREIGHT OP SLIPPER MOVT OF SEWAGE SYSTEM"	="Department of Defence"	12-May-08	="Aircraft"	12-Dec-07	31-Dec-07	58894.70	=""	="APL LOGISTICS"	12-May-08 01:06 PM	

+="CN78236"	"Computer equiptment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	31-Dec-07	51575.62	=""	="RAVEN RESEARCH LTD"	12-May-08 01:09 PM	

+="CN78247-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	27-Jun-08	52199.00	=""	="FUTUREPEOPLE PTY LTD"	12-May-08 01:10 PM	

+="CN78257-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	27-Jun-08	52425.00	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:11 PM	

+="CN78266"	"supply of groceries brisbane"	="Department of Defence"	12-May-08	="Food and Beverage Products"	13-Dec-07	30-Jun-08	51700.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	12-May-08 01:12 PM	

+="CN78276"	"Software development and travel expenses"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	30-Mar-08	46872.96	=""	="INQUIRION PTY LTD"	12-May-08 01:13 PM	

+="CN78279"	"LEASE COSTS - EVS VEHICLE."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	05-Dec-07	30-Jun-08	48500.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:14 PM	

+="CN78321"	"GROCERIES"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-Dec-07	30-Jun-08	51000.00	=""	="WOOLWORTHS FINANCIAL SERVICES"	12-May-08 01:20 PM	

+="CN78324"	"Hire of Forklift RAAF Williams"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	04-Dec-07	27-Jun-08	51826.50	=""	="IB SUPPLIES PTY LTD"	12-May-08 01:21 PM	

+="CN78325"	"GROCERIES"	="Department of Defence"	12-May-08	="Food and Beverage Products"	04-Dec-07	30-Jun-08	55500.00	=""	="R M SMITH FOODSERVICE DISTRIBUTION"	12-May-08 01:21 PM	

+="CN78327"	"MEAT"	="Department of Defence"	12-May-08	="Meat and poultry"	04-Dec-07	30-Jun-08	40000.00	=""	="TOP CUT SYDNEY PTY LTD"	12-May-08 01:21 PM	

+="CN78329"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	01-Jun-08	44076.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:22 PM	

+="CN78338"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	04-Dec-07	01-Jun-08	45862.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 01:23 PM	

+="CN78340"	"MEDALS"	="Department of Defence"	12-May-08	="Castings"	04-Dec-07	30-Apr-08	56276.00	=""	="CASHS AUSTRALIA PTY LTD"	12-May-08 01:23 PM	

+="CN78349"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Jun-09	49500.00	=""	="IDENTITY PR PTY LTD"	12-May-08 01:25 PM	

+="CN78354"	"CONTACT BRIAN CHASE 08 8935 4170 WR: 150134585"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	05-Dec-07	30-Jun-08	54450.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:26 PM	

+="CN78366"	"Technical Lead & Analyst"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	14-Apr-08	47480.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 01:28 PM	

+="CN78384"	"FIELD WORK"	="Department of Defence"	12-May-08	="Management advisory services"	07-Dec-07	14-Dec-07	41250.00	=""	="AIRBORNE RESEARCH AUSTRALIA"	12-May-08 01:31 PM	

+="CN78388"	"RENOVATIONS TO LADS OFFICES"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Dec-07	25-Jan-08	48414.30	=""	="EMAK COMMUNICATIONS"	12-May-08 01:31 PM	

+="CN78390"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jun-08	56762.50	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 01:31 PM	

+="CN78397"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Dec-07	57869.56	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 01:32 PM	

+="CN78399"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	07-Dec-07	30-May-08	59983.00	=""	="CLAYTON UTZ"	12-May-08 01:33 PM	

+="CN78410"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	47030.65	=""	="TOUR HOSTS PTY LTD"	12-May-08 01:35 PM	

+="CN78411"	"FACOPS - SA2359"	="Department of Defence"	12-May-08	="Environmental management"	10-Dec-07	30-Jun-08	43800.90	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78423"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	50000.01	=""	="BUSINESS CATALYST INTERNATIONAL"	12-May-08 01:37 PM	

+="CN78444"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Sep-08	42775.00	=""	="CLAYTON UTZ"	12-May-08 01:41 PM	

+="CN78468"	"REMOVAL OF FERAL HORSES FROM GBTA"	="Department of Defence"	12-May-08	="Environmental management"	07-Dec-07	30-Jun-08	55594.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:44 PM	

+="CN78479"	"Services against Standing Offer 26835"	="Department of Defence"	12-May-08	="Temporary personnel services"	06-Dec-07	27-Jun-08	45264.45	=""	="AMBIT IT&T RECRUITMENT SPECIALISTS"	12-May-08 01:46 PM	

+="CN78486"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	31-Mar-08	44672.10	=""	="CLAYTON UTZ"	12-May-08 01:47 PM	

+="CN78490"	"DEVELOP SQ REGIONAL WATER MANAGEMENT PLANS"	="Department of Defence"	12-May-08	="Water resources development and oversight"	07-Dec-07	30-Jun-08	58157.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:48 PM	

+="CN78498-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	43516.00	=""	="EJOBS RECRUITMENT SPECIALISTS PTY LTD"	12-May-08 01:49 PM	

+="CN78521"	"MIMESWEEPER PRODUCTS"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	52594.30	=""	="CLEARSWIFT PYT LTD"	12-May-08 01:52 PM	

+="CN78538"	"Manufactured tools"	="Department of Defence"	12-May-08	="Industrial Production and Manufacturing Services"	20-Dec-07	31-Jan-08	49766.10	=""	="ARRK AUSTRALIA & NEW ZEALAND"	12-May-08 01:55 PM	

+="CN78539"	"Eden Soil & Waste Contamination"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	42587.01	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:55 PM	

+="CN78541"	"TSS Contract- Submarine Consultancy MOD Stirling"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	30-Jun-08	52800.00	=""	="NOVA DEFENCE"	12-May-08 01:56 PM	

+="CN78536"	"REPAIR AND OH OF BLACK HAWK SWASHPLATE ASSY."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	12-May-08	30-Jun-08	54100.67	=""	="SAAL"	12-May-08 01:56 PM	

+="CN78550"	"REIMBURSEMENT"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-09	59955.00	=""	="RED SHIELD DEFENCE SERVICES"	12-May-08 01:58 PM	

+="CN78556"	"LEASE COSTS"	="Department of Defence"	12-May-08	="Motor vehicles"	20-Dec-07	01-Jun-10	44361.00	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 01:59 PM	

+="CN78560"	"Professional Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	29-Feb-08	44220.00	=""	="SYMANTEC ASIA PACIFIC PTE LTD"	12-May-08 02:00 PM	

+="CN78571"	"IHO MEMBERSHIP"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	15-Jan-08	58941.81	=""	="INTERNATIONAL HYDROGRAPHIC BUREAU"	12-May-08 02:02 PM	

+="CN78573"	"PUBLICATION"	="Department of Defence"	12-May-08	="Paper Materials and Products"	19-Dec-07	19-Dec-07	58608.00	=""	="AUSTRALASIAN MEDICAL PUBLISHING"	12-May-08 02:02 PM	

+="CN78575"	"Nortel Passport"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	14-Feb-08	47343.56	=""	="TELSTRA BUSINESS & GOVERNMENT"	12-May-08 02:03 PM	

+="CN78591"	"Project Hardware"	="Department of Defence"	12-May-08	="Project management"	20-Dec-07	21-Jan-08	52952.19	=""	="COMMANDER (ACT)"	12-May-08 02:05 PM	

+="CN78604"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	44695.20	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:07 PM	

+="CN78608"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	42832.90	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78617"	"Project Hardware"	="Department of Defence"	12-May-08	="Project management"	20-Dec-07	21-Jan-08	52952.19	=""	="COMMANDER (ACT)"	12-May-08 02:09 PM	

+="CN78623"	"Provide Transition Tasks for COMTRACK Deployment"	="Department of Defence"	12-May-08	="Public administration and finance services"	04-Jan-08	31-Jan-08	40509.98	=""	="UXC LIMITED"	12-May-08 02:10 PM	

+="CN78648"	"CONFERENCE FEES"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	26-Nov-07	18-Dec-07	59910.89	=""	="CROWNE PLAZA DARLING HARBOUR"	12-May-08 02:12 PM	

+="CN78649"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	03-Jan-08	30-Jun-08	42173.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:13 PM	

+="CN78662"	"TIMOR TELECOM"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	24-Oct-07	24-Oct-07	41137.54	=""	="TIMOR TELECOM"	12-May-08 02:14 PM	

+="CN78675"	"PRINTER CATRIDGES"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Dec-07	20-Dec-07	54080.04	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:15 PM	

+="CN78692"	"YOUNG ENDEAVOUR KIT BAGS FOR 2008"	="Department of Defence"	12-May-08	="Luggage and handbags and packs and cases"	07-Nov-07	17-Dec-07	41250.00	=""	="LINE 7 AUSTRALIA PTY LIMITED"	12-May-08 02:16 PM	

+="CN78695"	"ARTC AUGUST 2007 QANTAS STATEMENT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Sep-07	17-Dec-07	44834.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:16 PM	

+="CN78697"	"Serial FPDP XMC Module 4 ch VMETRO SFM product"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	28-May-08	47066.80	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 02:16 PM	

+="CN78702"	"V394 VME64X SBC KIT CONSISTING OF V394 4 SBC WITH 1GHZ AND 32 MB OF FLASH"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Jan-08	01-Feb-08	50039.00	=""	="DEDICATED SYSTEMS AUSTRALIA"	12-May-08 02:17 PM	

+="CN78705"	"Display stand for Pacific 2008"	="Department of Defence"	12-May-08	="Sales and business promotion activities"	07-Jan-08	29-Jan-08	58964.18	=""	="THE DISPLAY BUILDER'S AUSTRALASIA"	12-May-08 02:17 PM	

+="CN78710"	"As directed by John Gillies Director Business Mana HMAS ships using Thales Docking facilities due to"	="Department of Defence"	12-May-08	="Military watercraft"	08-Nov-07	18-Dec-07	51497.60	=""	="THALES AUSTRALIA"	12-May-08 02:18 PM	

+="CN78712"	"Software Engineering Services to Support Vitual ANZAC activities"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	14-Apr-08	02-May-08	42080.01	=""	="INNOVATION SCIENCE PTY LTD"	12-May-08 02:18 PM	

+="CN78714"	"AUTOMATED LANDING & LAUNCH OF A ROTARY WING UNMANN ED AIRCRAFT SYSTEM (RESEARCH AGREEMENT)"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Jan-08	19-May-08	44000.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	12-May-08 02:18 PM	

+="CN78717"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Jan-08	04-Feb-08	41536.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:18 PM	

+="CN78725-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	03-Sep-07	31-Dec-07	56339.00	=""	="EUROLINK CONSULTING AUSTRALIA PTY LTD"	12-May-08 02:19 PM	

+="CN78732"	"Software maintenance services"	="Department of Defence"	12-May-08	="Software"	07-Jan-08	30-Jun-08	48587.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	12-May-08 02:19 PM	

+="CN78738"	"Calibrations"	="Department of Defence"	12-May-08	="Leatherworking repairing machinery and equipment"	07-Jan-08	18-Jan-08	55000.00	=""	="FARADAY PTY LTD"	12-May-08 02:19 PM	

+="CN78762"	"OFFICE FITOUT"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	01-May-08	56702.25	=""	="CIVIL AVIATION SAFETY AUTHORITY"	12-May-08 02:20 PM	

+="CN78768"	"PSP SERVICES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	42395.76	=""	="KINETIC DEFENCE SERVICES PTY LTD"	12-May-08 02:21 PM	

+="CN78811"	"SECURITY UPGRADE"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	06-Jun-08	57222.00	=""	="HONEYWELL LTD"	12-May-08 02:23 PM	

+="CN78817"	"Documentation of the processes and procedures for SOLMAN within the UAF Program"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	14-Apr-08	30-Jun-08	50600.00	=""	="GWA CONSULTING"	12-May-08 02:24 PM	

+="CN78819"	"AIRFARES"	="Department of Defence"	12-May-08	="Aircraft"	10-Dec-07	10-Dec-07	48652.05	=""	="MSL TRAVEL DN BHD"	12-May-08 02:24 PM	

+="CN78820"	"GRAPHIC DESIGNER FOR DIPP PROJECT"	="Department of Defence"	12-May-08	="Medical training and education supplies"	14-Apr-08	01-Sep-08	51000.00	=""	="ANDREW HOOPER"	12-May-08 02:24 PM	

+="CN78831"	"QANTAS AIRFARES FOR DEFENCE SUPPORT TRAVEL SERVICE AT WILLIAMTOWN FOR OCTOBER 2007"	="Department of Defence"	12-May-08	="Passenger transport"	31-Oct-07	31-Oct-07	46736.31	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:24 PM	

+="CN78832"	"PURCHASE OF PRINTERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Apr-08	28-Apr-08	42760.89	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 02:24 PM	

+="CN78837"	"MEDICAL EXPENSES INCURRED"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	20-Nov-07	22-Dec-07	42750.00	=""	="ROYAL PERTH HOSPITAL"	12-May-08 02:25 PM	

+="CN78889"	"IT EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	23-Jan-08	41885.95	=""	="CPL NOTTINGHILL PTY LTD"	12-May-08 02:29 PM	

+="CN78897"	"CONSTRUCTION PROJECT MANAGEMENT - MARCH 2008"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	30-Mar-08	10-Apr-08	47290.23	=""	="COMPASS - INTEGRATED LOGISTICS &"	12-May-08 02:29 PM	

+="CN78908"	"AIR 7000 - 2 x TDF Licences. 1 year software maint enance for TDF licences, international processing"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	11-Apr-08	08-May-08	40052.32	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 02:30 PM	

+="CN78933"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	04-May-07	04-May-07	40669.93	=""	="HMA BLAZE PTY LTD"	12-May-08 02:32 PM	

+="CN78937"	"MS Outlok Trg for Staff - 6 courses"	="Department of Defence"	12-May-08	="Education and Training Services"	17-Dec-07	21-Dec-07	46508.00	=""	="PRIORITY MANAGEMENT SYSTEMS RETAIL"	12-May-08 02:32 PM	

+="CN78938"	"Services of Consutant"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	54230.00	=""	="T T BUILDING CONSULTANTS PTY LTD"	12-May-08 02:32 PM	

+="CN78939"	"HEALTH SERVICE  FY 07/08"	="Department of Defence"	12-May-08	="Emergency and field medical services products"	10-Aug-07	30-Jun-10	59951.18	=""	="CHANDLER MACLEOD GROUP LTD"	12-May-08 02:33 PM	

+="CN78945"	"QANTAS DEFENCE MEMBER TRAVEL"	="Department of Defence"	12-May-08	="Travel facilitation"	30-Nov-07	30-Nov-07	58885.76	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:33 PM	

+="CN78947"	"EMA field Upgrade"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	20-Dec-07	59691.68	=""	="LOGITECH PTY LTD"	12-May-08 02:33 PM	

+="CN78956"	"fresh fruit & vegetables brisbane"	="Department of Defence"	12-May-08	="Fruits and vegetables and nuts and seeds"	17-Dec-07	30-Jun-08	44000.00	=""	="GMN VEGIPREPI"	12-May-08 02:34 PM	

+="CN78964"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	49500.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:34 PM	

+="CN78967"	"Software Support"	="Department of Defence"	12-May-08	="Software"	11-Apr-08	20-Apr-09	45094.53	=""	="LOCKHEED MARTIN UK INSYS LTD"	12-May-08 02:34 PM	

+="CN78977"	"STATIONARY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Apr-08	01-Jun-08	45698.96	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 02:35 PM	

+="CN78997"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	17-Dec-07	30-Jun-08	43244.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:37 PM	

+="CN79000"	"brownbuilt shelving medium duty 230Kg's"	="Department of Defence"	12-May-08	="Prefabricated structures"	11-Apr-08	30-Apr-08	48095.30	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 02:37 PM	

+="CN79007"	"PORT COSTS"	="Department of Defence"	12-May-08	="Transportation services equipment"	25-Mar-08	30-Apr-08	41218.46	=""	="PDL TOLL"	12-May-08 02:37 PM	

+="CN78999"	"VEHICLE PARTS"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-May-08	14-Jun-08	40095.00	=""	="GREAT WESTERN CORPORATION"	12-May-08 02:38 PM	

+="CN79014"	"Leaseplan EVS Costs 2007-2008"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	17-Dec-07	30-Jun-08	58756.58	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 02:38 PM	

+="CN79020"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	17-Dec-07	15-Jan-08	59531.78	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79027"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	16-Apr-08	17-Apr-08	42112.48	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:39 PM	

+="CN79029"	"COGNOS SUPPORT RENEWAL"	="Department of Defence"	12-May-08	="Software"	17-Dec-07	30-Dec-07	40928.33	=""	="COGNOS PTY LTD"	12-May-08 02:39 PM	

+="CN79035"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	12-May-08	="Legal services"	17-Dec-07	01-Jun-08	41737.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:39 PM	

+="CN79037"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	07-Apr-08	30-Jun-08	40098.30	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:40 PM	

+="CN78988"	"Research & write publication on Tax Avoidance"	="Australian Taxation Office"	12-May-08	="Textbook or research publishing"	18-Feb-08	30-Jun-10	52000.00	=""	="Trevor Boucher"	12-May-08 02:41 PM	

+="CN79098"	"SUNDRY OUTSTANDING QANTAS BILL"	="Department of Defence"	12-May-08	="Transportation services equipment"	01-Apr-08	01-Apr-08	44308.32	=""	="QANTAS"	12-May-08 02:45 PM	

+="CN79114"	"FUNDING AGREEMENT WITH DEST"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Apr-08	07-Apr-08	47300.00	=""	="UNIVERSITY OF MELBOURNE"	12-May-08 02:47 PM	

+="CN79118"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	07-Apr-08	14-Apr-08	45228.70	=""	="PACLINK COMMUNICATIONS PTY LTD"	12-May-08 02:47 PM	

+="CN79123"	"CAB FARES"	="Department of Defence"	12-May-08	="Motor vehicles"	10-Mar-08	10-Mar-08	44667.32	=""	="CAB CHARGE AUST PTY LTD"	12-May-08 02:47 PM	

+="CN79129-A1"	"Records Management Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	05-Oct-07	28-Dec-07	41772.50	=""	="RECORDKEEPING INNOVATION PTY LTD"	12-May-08 02:48 PM	

+="CN79175"	"groceries brisbane"	="Department of Defence"	12-May-08	="Processed and prepared meats"	03-Apr-08	30-Jul-08	52800.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	12-May-08 02:52 PM	

+="CN79177"	"meat brisbane"	="Department of Defence"	12-May-08	="Meat and poultry"	03-Apr-08	30-Jul-08	49500.00	=""	="TENDER PLUS PTY LTD"	12-May-08 02:52 PM	

+="CN79178"	"CLEANING SERVICES FOR OPTEC BLDG EX WALLABY 07. FROM 30 SEP07-12OCT07"	="Department of Defence"	12-May-08	="Cleaning and janitorial supplies"	30-Nov-07	10-Dec-07	54384.28	=""	="COMMERCIAL PROPERTY CLEANING PTY"	12-May-08 02:52 PM	

+="CN79237"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	60000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:58 PM	

+="CN79253"	"Laptops Computers"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	03-Apr-08	18-Apr-08	41382.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:00 PM	

+="CN79259"	"Fencing for SECPOL Dog Section."	="Department of Defence"	12-May-08	="Accommodation furniture"	08-Apr-08	30-Jun-08	51480.00	=""	="SALISBURY FENCING PTY LTD"	12-May-08 03:00 PM	

+="CN79277"	"VEHICLE LEASE - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Mar-08	25-Apr-08	52691.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:02 PM	

+="CN79278"	"REPAIRS TO HANGAR ROOF"	="Department of Defence"	12-May-08	="Structural building products"	09-Apr-08	30-Jun-08	41722.67	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:02 PM	

+="CN79280"	"DPACE CARD READERS"	="Department of Defence"	12-May-08	="Security and control equipment"	09-Apr-08	30-Jun-08	53911.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:03 PM	

+="CN79304"	"2 seater lounge seat x 50 @ $886.80 ea"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	10-Apr-08	10-Apr-08	48774.00	=""	="CAM COMMERICAL INTERIORS"	12-May-08 03:05 PM	

+="CN79308"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	22-Apr-08	30-Jun-10	53101.00	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 03:06 PM	

+="CN79318"	"04-422670 31AUG07 NON DTC TRAVEL"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	24-Apr-08	24-Apr-08	43495.71	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79329"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	15-May-08	59400.00	=""	="THE GOLDEN OLIVE COMPANY PTY LTD"	12-May-08 03:08 PM	

+="CN79333"	"UNDERTAKE A SECA FOR THE DEFENCE BASE AT ENOGGERA,"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	09-Apr-08	30-Jun-08	49500.00	=""	="SMEC AUSTRALIA"	12-May-08 03:08 PM	

+="CN79342"	"APR 08 VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Motor vehicles"	15-Apr-08	03-May-08	45403.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:09 PM	

+="CN79361"	"QANTAS FEB STATEMENT"	="Department of Defence"	12-May-08	="Aircraft"	29-Apr-08	29-Apr-08	59714.67	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:10 PM	

+="CN79373"	"RANGER SERVICES FOR JAN-DEC 2007"	="Department of Defence"	12-May-08	="Public safety and control"	29-Apr-08	30-Apr-08	50383.84	=""	="DEPT OF ENVIRONMENT AND"	12-May-08 03:10 PM	

+="CN79388"	"SOFTWARE PURCHAE"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	29-Apr-08	42204.73	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 03:12 PM	

+="CN79391"	"POC: PHILLIP MCCULLOCH CONTACT: 02 626 50928"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Jun-08	45998.70	=""	="SCITECH PTY LTD"	12-May-08 03:12 PM	

+="CN79393"	"DMCN Field MT Training Course"	="Department of Defence"	12-May-08	="Education and Training Services"	01-Apr-08	30-Jun-08	45555.93	=""	="OPTUS BUSINESS"	12-May-08 03:12 PM	

+="CN79395"	"VEHICLE LEASE - FLLA K"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	24-Mar-08	01-May-08	45117.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:12 PM	

+="CN79398"	"Provision of Market Research"	="Medicare Australia"	12-May-08	="Marketing and distribution"	17-Apr-08	30-Jun-08	50000.00	=""	="Tall Poppies Research and Marketing"	12-May-08 03:13 PM	

+="CN79400"	"Holden Caprice Sedan (SL) Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	07-Aug-08	46308.33	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:13 PM	

+="CN79407"	"CYCOM 5250-4 IM7-G 145/32 49"-500lb, Dry Ice, Temp erature Recorders"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	08-Apr-08	30-Jun-08	52227.33	=""	="CYTEC ENGINEERED MATERIALS INC"	12-May-08 03:13 PM	

+="CN79415"	"S4642, WR 300078546. Undertake conservation works per the Conservation Strategy - Part 2 - Modificat"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	42071.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:14 PM	

+="CN79417"	"Scheduling Services to Support Navy Minor Projects"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	02-Apr-08	27-Jun-08	53999.99	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:14 PM	

+="CN79425"	"Project Superintendent for HMAS SUCCESS EMA 2008"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	02-Apr-08	30-Jun-08	51274.32	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:14 PM	

+="CN79429"	"Consultant services"	="Department of Defence"	12-May-08	="Human resources services"	02-Apr-08	30-Jun-08	50000.01	=""	="CHANGEDRIVERS PTY LTD"	12-May-08 03:15 PM	

+="CN79432"	"QANTAS ACCOUNT NOV07/JAN 08"	="Department of Defence"	12-May-08	="Aircraft"	20-Feb-08	21-Feb-08	44769.18	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:15 PM	

+="CN79442"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	49500.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79443"	"Heritage Works"	="Department of Defence"	12-May-08	="Environmental Services"	07-Apr-08	30-Jun-08	42731.30	=""	="RESOLVE FM"	12-May-08 03:15 PM	

+="CN79456"	"Holden Caprice Sedan (SL) Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	46308.33	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:16 PM	

+="CN79458"	"Provision of Advertising Services"	="Medicare Australia"	12-May-08	="Advertising"	16-Apr-08	16-Apr-08	52754.53	=""	="HMA BLAZE PTY LTD"	12-May-08 03:16 PM	

+="CN79461"	"QANTAS PASSENGER AIRFARES FOR VARIOUS RAAF BASE WILLIAMTOWN PERSONNEL FOR OCTOBER 2007."	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	43883.94	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:17 PM	

+="CN79463"	"HQJOC PROJECT-DELOITTE-ANAO."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	43625.59	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 03:17 PM	

+="CN79464"	"Nissan Patrol 4x4 Leaf Spring Tray Qty:1 (UL1)"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	12-Sep-08	41195.15	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:17 PM	

+="CN79474"	"QANTAS CHARGES FOR DS-SING PERSONNEL OCT/NOV07"	="Department of Defence"	12-May-08	="Passenger transport"	30-Nov-07	30-Jun-08	45413.46	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:18 PM	

+="CN79481"	"Cost modelling of security vetting"	="Department of Defence"	12-May-08	="Security surveillance and detection"	07-Apr-08	30-Jun-08	57190.00	=""	="KPMG AUSTRALIA"	12-May-08 03:18 PM	

+="CN79493"	"Wetlands Protection at SWBTA"	="Department of Defence"	12-May-08	="Wildlife and flora"	08-Apr-08	30-Jun-08	55260.99	=""	="GREENING AUSTRALIA (QLD)"	12-May-08 03:19 PM	

+="CN79498"	"codification and cataloguing of hydrographic inventory"	="Department of Defence"	12-May-08	="Location and navigation systems and components"	26-Mar-08	30-Jun-08	55776.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:19 PM	

+="CN79505"	"HP HARDWARE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	08-Apr-08	30-Apr-08	51739.63	=""	="DATA 3 LIMITED"	12-May-08 03:20 PM	

+="CN79542"	"Research Agreement - Univ Of Adelaide"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	08-Apr-08	19-Jun-08	55000.00	=""	="UNIVERSITY OF ADELAIDE"	12-May-08 03:22 PM	

+="CN79562"	"Procuring a Fax Server Kit from Canon Australia"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	11-Apr-08	57075.70	=""	="CANON AUSTRALIA PTY LTD"	12-May-08 03:23 PM	

+="CN79575"	"WALLAROO FAMP 01 OF 08"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	15-Jun-08	47841.57	=""	="BIRDON MARINE PTY LTD"	12-May-08 03:25 PM	

+="CN79581"	"SQ REG G RES REPAIRS - UPGADE MAINS POWER GLADSTONE"	="Department of Defence"	12-May-08	="Electrical components"	08-Apr-08	30-Jun-08	49885.85	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:25 PM	

+="CN79582"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	22-Apr-08	30-Jun-08	55962.50	=""	="Ross Human Directions Limited"	12-May-08 03:25 PM	

+="CN79583"	"Cabling Installation for 83 Chalgrove Ave"	="Department of Defence"	12-May-08	="Military watercraft"	26-Mar-08	30-Jun-08	45469.70	=""	="PROFESSIONAL CABLING SERVICES"	12-May-08 03:26 PM	

+="CN79586"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	29-Jun-08	44352.00	=""	="CANDLE CORPORATION"	12-May-08 03:26 PM	

+="CN79592"	"Spare Parts Kit, 60 kVA Generator"	="Department of Defence"	12-May-08	="Power generation"	20-Mar-08	26-Jun-08	55397.25	=""	="CUMMINS SOUTH PACIFIC"	12-May-08 03:26 PM	

+="CN79595"	"Cleaning & Catering for Tender Evaluation Team at Evaluation Centre"	="Department of Defence"	12-May-08	="Restaurants and catering"	08-Apr-08	31-Jul-08	46420.00	=""	="SERCO SODEXHO DEFENCE SERVICES"	12-May-08 03:26 PM	

+="CN79601"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	29-Jun-08	43187.10	=""	="Devsgroup Pty Ltd"	12-May-08 03:27 PM	

+="CN79622"	"REPLACE/REPAIR DRN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	15-Nov-07	30-Jan-08	57189.00	=""	="INTERACTIVE CABLING PTY LTD"	12-May-08 03:27 PM	

+="CN79628"	"ARMY SPARES"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	12-Feb-08	07-Jul-08	56034.49	=""	="FN HERSTAL SA"	12-May-08 03:28 PM	

+="CN79661"	"Provision of SDSS access to In-Service-Support Contractors"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	20-Mar-08	30-Jun-08	59538.22	=""	="JACOBS AUSTRALIA"	12-May-08 03:30 PM	

+="CN79670"	"AEO Support during BHIE Production Installation"	="Department of Defence"	12-May-08	="Aircraft"	25-Mar-08	30-Jun-09	49999.95	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:31 PM	

+="CN79674"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	07-Apr-08	07-Apr-08	56815.00	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:32 PM	

+="CN79676"	"02-24600830NOV07 LINE 158 - 195"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	30-Nov-07	30-Jun-08	56859.86	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:32 PM	

+="CN79684"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Nov-07	17-Dec-07	57638.41	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	12-May-08 03:32 PM	

+="CN79692"	"QLD Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	58518.98	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79718"	"SEE ATTACHED PROCUREMENT DECISION RECORD"	="Department of Defence"	12-May-08	="Animal containment and habitats"	30-Nov-07	28-Feb-08	47474.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:34 PM	

+="CN79716"	"detailed design package gaseous fire fighting system on hmas melville and hmas leeuwin"	="Department of Defence"	12-May-08	="Marine transport"	25-Mar-08	03-Jun-08	54458.58	=""	="AIMTEK PTY LTD"	12-May-08 03:34 PM	

+="CN79731"	"TSS CONTRACT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	14-Nov-07	31-Mar-08	58300.00	=""	="SOLVEIT SOFTWARE PTY LTD"	12-May-08 03:35 PM	

+="CN79745"	"Provision of Telephony Services"	="Medicare Australia"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	02-Apr-08	02-Apr-08	44405.85	=""	="OPTUS NETWORKS PTY LIMITED"	12-May-08 03:36 PM	

+="CN79781"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Accounting and auditing"	11-Apr-08	30-Jun-08	43837.20	=""	="PROTIVITI PTY LTD"	12-May-08 03:39 PM	

+="CN79782"	"LCD Screens"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	14-Dec-07	52954.00	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 03:39 PM	

+="CN79787"	"CONSULTANCY  MESS UPGRADE GALLIPOLI BARRACKS"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	16-Nov-07	30-Jun-08	47916.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 03:39 PM	

+="CN79791"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	46904.00	=""	="Mosaic Recruitment Pty Ltd"	12-May-08 03:40 PM	

+="CN79795"	"04-422670 31DEC2007"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	18-Feb-08	40448.36	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:40 PM	

+="CN79801-A1"	"Provision of Staff Training/Development Services"	="Medicare Australia"	12-May-08	="Education and Training Services"	11-Apr-08	30-Jun-08	56471.99	=""	="Think Place"	12-May-08 03:40 PM	

+="CN79804"	"DISPOSAL OF BATTERIES"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	28-Mar-08	30-Apr-08	52872.97	=""	="THIESS SERVICES"	12-May-08 03:40 PM	

+="CN79830"	"Rental vehicles for training courses"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Dec-07	30-Jun-08	41844.96	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:42 PM	

+="CN79854"	"Toyota Hiace 14 seat Bus Qty:1"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	21-Aug-08	41662.89	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:43 PM	

+="CN79859"	"Development of user documentation for GTESPO Data Management System"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	28-Mar-08	30-Jun-08	48048.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:44 PM	

+="CN79860"	"Circuit Card Assy"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	16-Feb-08	01-Mar-09	53436.34	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 03:44 PM	

+="CN79867"	"HERTZ VEHICLE HIRE FOR 2OCU PERSONNEL DEC 07"	="Department of Defence"	12-May-08	="Passenger transport"	24-Dec-07	30-Jun-08	47058.61	=""	="HERTZ AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79872"	"FEES-ERMINGTON-SITE AUDITOR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	49500.00	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 03:45 PM	

+="CN79894"	"X-RAY APPARATUS"	="Department of Defence"	12-May-08	="Packaging materials"	27-Mar-08	31-May-08	46420.00	=""	="JACOBS MEDICAL AUSTRALIA"	12-May-08 03:46 PM	

+="CN79903"	"update abr's and hydronet to identify GMDSS"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	14-Feb-08	31-Mar-08	59529.64	=""	="AIMTEK PTY LTD"	12-May-08 03:47 PM	

+="CN79927"	"PAYMENT TO OFFICIAL BANK ACCOUNT COOK ISLANDS"	="Department of Defence"	12-May-08	="Project management"	19-Mar-08	30-Jun-10	43573.00	=""	="MARITIME SURVEILLANCE ADVISOR"	12-May-08 03:49 PM	

+="CN79931"	"PAYMENT TO OFFICIAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	19-Mar-08	30-Jun-10	54247.50	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 03:49 PM	

+="CN79935"	"Hypersonic Payload Support Services to WSD, DSTO Software and sensor calibration tasks"	="Department of Defence"	12-May-08	="Software"	13-Dec-07	13-Dec-07	51675.25	=""	="BLUE SWIMMER CONSULTING"	12-May-08 03:50 PM	

+="CN79940"	"MAINTENANCE"	="Department of Defence"	12-May-08	="General building construction"	17-Sep-07	30-Jun-08	57909.37	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:50 PM	

+="CN79952"	"PAYMENT OF FIRM'S INVOICE NO.200802-433 DATED 15 F"	="Department of Defence"	12-May-08	="Metal waste and scrap"	27-Mar-08	27-Mar-08	59226.26	=""	="TENIX TOLL DEFENCE LOGISTICS"	12-May-08 03:51 PM	

+="CN79962"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	30-Jun-08	54125.22	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:52 PM	

+="CN79969"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* REQUIRED FOR DNSDC-R"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	14-Feb-08	30-Jun-08	56625.25	=""	="ARGIBOND DENTAL SUPPLIES PTY LTD"	12-May-08 03:53 PM	

+="CN79973"	"ACCOMMODATION FOR 2008 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	60000.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 03:53 PM	

+="CN79977"	"VIRTUAL IMMERSIVE COMABT ENVIRONMENT (VICE)"	="Department of Defence"	12-May-08	="Education and Training Services"	12-Nov-07	30-Jun-08	56528.72	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 03:54 PM	

+="CN79982"	"ADFA refurbishment"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	02-May-08	30-Jun-08	54663.40	=""	="SPOTLESS P & F PTY LTD"	12-May-08 03:54 PM	

+="CN73550"	"Provision of Website Development"	="Department of the Prime Minister and Cabinet"	12-May-08	="World wide web WWW site design services"	31-Mar-08	30-May-08	46750.00	=""	="Deloitte Touche Tohmatsu"	12-May-08 03:55 PM	

+="CN79999"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	25-Mar-08	25-Mar-08	50000.00	=""	="PHILLIPS FOX"	12-May-08 03:56 PM	

+="CN80003"	"VEHICLE LEASE AND OPERATING COSTS FOR DS-CNNSW VEHICLE LEASES TO 16 DEC 2010"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Apr-08	30-Jul-08	50321.82	=""	="DAS FLEET"	12-May-08 03:56 PM	

+="CN80006"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	27-Mar-08	27-Jun-08	44743.11	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 03:56 PM	

+="CN80013"	"Network Administor"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	14-Feb-08	21-Mar-08	41657.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	12-May-08 03:57 PM	

+="CN80031"	"Engineering investigation"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	15-Jun-08	40174.20	=""	="TENIX DEFENCE PTY LTD"	12-May-08 03:58 PM	

+="CN80046"	"Integrated Logistic Support Services"	="Department of Defence"	12-May-08	="Computer services"	10-Apr-08	30-Jun-08	43320.43	=""	="JACOBS AUSTRALIA"	12-May-08 03:59 PM	

+="CN80058"	"DEFENCE MEMBERS TRAVEL - QANTAS"	="Department of Defence"	12-May-08	="Travel facilitation"	29-Feb-08	29-Feb-08	53789.27	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:00 PM	

+="CN80060"	"ORDER RAISED FOR THE SUPPLY OF MARINE DIESEL TO HM OVERSEAS."	="Department of Defence"	12-May-08	="Fuels"	10-Apr-08	30-Jun-08	57097.06	=""	="KUWAIT MARITIME &"	12-May-08 04:01 PM	

+="CN80063"	"Technical services"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	30-May-08	49500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:01 PM	

+="CN80068"	"MAINTENANCE AND INSPECTION OF WILLIAMTOWN RADAR"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	06-Feb-08	20-Feb-08	40945.60	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:01 PM	

+="CN80075"	"HAULOTTE GROUP"	="Department of Defence"	12-May-08	="Heavy construction machinery and equipment"	10-Apr-08	10-May-08	42900.00	=""	="HAULOTTE GROUP (AUSTRALIA)"	12-May-08 04:01 PM	

+="CN80079"	"ENGINEERING LEVEL 2 SUPPORT TO DEVELOP OCD, FPS AND TCD FOR SEAKING BALLISTIC PROTECTION"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	06-Feb-08	30-Jun-08	56688.01	=""	="NOVA DEFENCE"	12-May-08 04:02 PM	

+="CN80081"	"VOP payment on Euro M/s Jul Aug Sep."	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	24-Dec-07	53109.78	=""	="BAE SYSTEMS AUSTRALIA - EUR"	12-May-08 04:02 PM	

+="CN80083"	"VEHICLE LEASE FEB 08 - FLLA A"	="Department of Defence"	12-May-08	="Motor vehicles"	05-Feb-08	20-Mar-08	46023.23	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:02 PM	

+="CN80085"	"CA ARC serve backup & 3yr maintenance"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Apr-08	43281.70	=""	="COMPUTERCORP PTY LTD"	12-May-08 04:02 PM	

+="CN80086"	"Contact Dave Baker 8924 2200"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	11-Dec-07	30-Jun-08	55470.00	=""	="OILCHECK PTY LTD"	12-May-08 04:02 PM	

+="CN80097"	"GENERATOR PARTS - FLLA A"	="Department of Defence"	12-May-08	="Power generation"	31-Jan-08	23-Mar-08	40079.95	=""	="HASTINGS DEERING (AUST) PTY LTD"	12-May-08 04:02 PM	

+="CN80102"	"Cartridges F18 emergency egress"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	11-Dec-07	30-Sep-08	48165.68	=""	="UNIVERSAL PROPULSION COMPANY INC"	12-May-08 04:03 PM	

+="CN80103"	"PM FEE ADFA refurb"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	49836.60	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:03 PM	

+="CN80127"	"IT CABLING"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	20-Nov-07	20-Dec-07	49472.89	=""	="NORTHERN TERRITORY COMMUNICATIONS"	12-May-08 04:04 PM	

+="CN80137"	"bearing"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	07-Feb-08	01-Dec-08	45682.77	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 04:05 PM	

+="CN80141"	"Computer"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Nov-07	21-Dec-07	47792.80	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:05 PM	

+="CN80138"	"DISTRIBUTED INTERACTIVE SIMULATION"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Dec-07	30-Jun-08	49500.00	=""	="SMS DEFENCE SOLUTIONS PTY LTD"	12-May-08 04:05 PM	

+="CN80147"	"4516.14 CONDUCT A THERMOGRAPHIC SURVEY ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	06-Feb-08	29-Feb-08	43408.40	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:05 PM	

+="CN80161"	"CONTACT: ROSS CRUDEN 08 8972 36037"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Nov-07	30-Jun-08	42795.01	=""	="CHUBB SECURITY HOLDINGS"	12-May-08 04:07 PM	

+="CN80179"	"QANTAS CHARGES FOR DS-SING PERSONNEL DEC/JAN07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	30-Jun-08	50508.44	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:08 PM	

+="CN80180"	"Advance Payment Long Lead Time Item & Material-PP3"	="Department of Defence"	12-May-08	="War vehicles"	09-Apr-08	30-Jun-12	54762.60	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 04:09 PM	

+="CN80197"	"UPGRADE AIRFIELD LIGHTING CONTAINER"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	19-Nov-07	19-Dec-07	51251.75	=""	="ELECTRICAL & VISUAL DESIGN"	12-May-08 04:10 PM	

+="CN80199"	"Antennas,Installation Kits & Antenna Elements"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	12-May-08	56731.51	="43221706"	="THALES AUSTRALIA"	12-May-08 04:10 PM	

+="CN80206"	"HEALTH SERVICE - 1HSB FY 07/08"	="Department of Defence"	12-May-08	="Patient care and treatment products and supplies"	19-Nov-07	31-Dec-07	41210.57	=""	="RAVENS RECRUITMENT PTY LTD"	12-May-08 04:11 PM	

+="CN80215"	"Software Maintenane Renewal"	="Department of Defence"	12-May-08	="Software"	09-Apr-08	30-Apr-09	42265.30	=""	="LEICA GEOSYSTEMS PTY LTD"	12-May-08 04:11 PM	

+="CN80224"	"VHF Vehicle Mounted Antenna"	="Defence Materiel Organisation"	12-May-08	="Hardware"	05-Feb-08	11-May-08	51984.57	="43221706"	="MOONRAKER AUSTRALIA"	12-May-08 04:12 PM	

+="CN80230"	"Logistics Specialist Support"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	05-Feb-08	30-Jun-08	53400.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:12 PM	

+="CN80234"	"PAYMENT TO OFFICAL BANK ACCOUNT MARSHALL ISLANDS"	="Department of Defence"	12-May-08	="Project management"	28-Feb-08	30-Jun-10	53475.50	=""	="MSA CONTINGENT ACCOUNT"	12-May-08 04:12 PM	

+="CN80266"	"Provision of IV&V - Task 02/2008 - Support for the development of the ISSC PMF"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Apr-08	30-Jun-08	44440.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:15 PM	

+="CN80272"	"Software Integration Development for ES3701 on FFG"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	29-Feb-08	55000.00	=""	="JENKINS ENGINEERING DEFENCE"	12-May-08 04:16 PM	

+="CN80311"	"HEAVY REPAIR FACILITY,  AUTOMATIC TESTING EQUIP  ENGINEERING STUDY, REFER SUPPORT CONTRACT C439154"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	10-Jun-08	53576.60	=""	="THALES AUSTRALIA"	12-May-08 04:19 PM	

+="CN80317"	"FLLA A - FEB VEHICLE LEASE"	="Department of Defence"	12-May-08	="Motor vehicles"	28-Feb-08	11-Mar-08	54278.52	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 04:20 PM	

+="CN80319"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	05-Feb-08	05-Feb-08	48162.07	=""	="KAZ GROUP PTY LTD"	12-May-08 04:20 PM	

+="CN80325"	"Repair items for Tracking Mount for Deployable Field Trials Capability."	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	05-Feb-08	10-May-08	42802.00	=""	="VIPAC ENGINEERS & SCIENTISTS"	12-May-08 04:21 PM	

+="CN80334"	"Movement of 10 IMV's to Cultana TASKORD 122/07 (PW IMVSPT to SOTG-6 dated 19 SEP 07)"	="Department of Defence"	12-May-08	="Transportation services equipment"	20-Nov-07	07-Dec-07	57750.00	=""	="FREIGHTWEST PTY LTD"	12-May-08 04:21 PM	

+="CN80363"	"TOB-STBD ME NO3 CYLINDER URDEF"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Jan-08	11-Jan-08	48313.79	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:23 PM	

+="CN80403"	"Professional Legal Fees"	="Department of Defence"	12-May-08	="Legal services"	20-Dec-07	30-Jun-08	44869.00	=""	="BLAKE DAWSON WALDRON"	12-May-08 04:25 PM	

+="CN80417"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	03-Jan-08	03-Jan-08	55000.00	=""	="SWELL DESIGN GROUP"	12-May-08 04:26 PM	

+="CN80423"	"PRINTING SERVICES"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	03-Jan-08	03-Jan-08	44000.00	=""	="SWELL DESIGN GROUP"	12-May-08 04:26 PM	

+="CN80435"	"REPAIR OF AIRCRAFT HANDLER"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	20-Dec-07	14-Apr-08	52090.60	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:27 PM	

+="CN80465"	"CONDUCT SEA ACCEPTANCE TRIALS ON HMAS TOBRUCK"	="Department of Defence"	12-May-08	="Military watercraft"	09-Jan-08	20-Jan-08	44133.32	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 04:28 PM	

+="CN80473"	"phone and electricity charges for HMAS MELVILLE"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	11-Feb-08	17-Mar-08	53900.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 04:29 PM	

+="CN80474"	"IBM SERVERS FOR MARITIME COMMUNICATIONS INSTALLATION"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	31-May-08	49576.69	=""	="THALES AUSTRALIA"	12-May-08 04:29 PM	

+="CN80483"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-09	46980.25	=""	="1ST FLEET PTY LTD"	12-May-08 04:29 PM	

+="CN80496"	"MAINTENANCE MANUALS (BAILOUT,DMM&BCJ) ARMY MARINE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	58300.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:31 PM	

+="CN80503"	"Develop Explosiive Ordnance Certification Plan (EO CP) for Helicopter CMDS on FFG Class ships"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	42375.00	=""	="NOVA DEFENCE"	12-May-08 04:32 PM	

+="CN80516"	"ENGINEERING SERVICES TO VALIDATE USER REQUIREMENTS FOR JP66 PHASE 1"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	07-Feb-08	30-May-08	54280.00	=""	="NOVA AEROSPACE"	12-May-08 04:32 PM	

+="CN80517"	"Provide Copies of SSR documentation for FFGs Pahse 2"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	17-Feb-08	52835.00	=""	="THALES AUSTRALIA"	12-May-08 04:32 PM	

+="CN80521"	"AUSTRALIAN NAVY CADETS BANNER"	="Department of Defence"	12-May-08	="Fabrics and leather materials"	11-Apr-08	31-Dec-08	51304.00	=""	="SPEAR OF FAME PTY LTD"	12-May-08 04:33 PM	

+="CN80522"	"AUSPAR Test and Evaluation program"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	30-Jun-08	43748.10	=""	="AIR-MET SCIENTIFIC PTY LTD"	12-May-08 04:33 PM	

+="CN80538"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	02-Aug-07	11-Aug-07	47231.78	=""	="TELSTRA CORPORATION"	12-May-08 04:33 PM	

+="CN80548"	"4522.06 ANZAC CLASS C&M SOFTWARE MANAGEMENT"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	07-Feb-08	30-Jun-08	56223.20	=""	="SIEMENS LTD"	12-May-08 04:34 PM	

+="CN80552"	"Lease Costs"	="Department of Foreign Affairs and Trade"	12-May-08	="Real estate services"	06-Aug-07	10-Aug-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	12-May-08 04:34 PM	

+="CN80554"	"CMMI Software Quality Audit"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	14-Apr-08	16-Jun-08	55000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:34 PM	

+="CN80571"	"QTY 7   KOBRA SHREDDERS"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	09-Jan-08	29-Feb-08	42201.50	=""	="PAPER AND MEDIA PROCESSORS PTY LTD"	12-May-08 04:35 PM	

+="CN80581"	"Casket, Transfer, Human Remains"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	09-Jan-08	22-Feb-08	58479.30	=""	="PATRIOTVETIT LLC"	12-May-08 04:36 PM	

+="CN80583"	"This P.O. is raised to facilitate the manpower and on Tail Rotor Pylon, P/N 70210-05000-042, Ser No."	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	08-Feb-08	30-Apr-08	55000.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	12-May-08 04:36 PM	

+="CN80585"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	21-Dec-07	15-Feb-08	58102.00	=""	="HILLS INDUSTRIES"	12-May-08 04:36 PM	

+="CN80598"	"ENGAGE SERVICES FOR MANOORA"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Feb-08	20-Feb-08	56056.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:37 PM	

+="CN80604"	"Office Fit out"	="Department of Foreign Affairs and Trade"	12-May-08	="General building construction"	03-Aug-07	31-Aug-07	50207.27	=""	="Delta Building Automation Pty Ltd"	12-May-08 04:37 PM	

+="CN80610"	"INSTALLATION OF FALL RESTRAINT SYSTEM"	="Department of Defence"	12-May-08	="Vehicle safety and security systems and components"	08-Jan-08	29-Feb-08	48347.42	=""	="STANDFAST CORPORATION PTY LTD"	12-May-08 04:38 PM	

+="CN80615"	"Use of existing ASP Contract - Diesel generator fuel pump spares"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	08-Jan-08	29-Feb-08	41303.85	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:38 PM	

+="CN80633"	"TCE TASKS PENDING LIMB 3"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-Apr-08	53385.67	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:39 PM	

+="CN80638"	"4516.36 HMAS ARUNTA THEMO SURVEY  OF ENGINEERING SERVICES"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-May-08	42546.46	=""	="UNITED GROUP INFRASTRUCTURE"	12-May-08 04:39 PM	

+="CN80659"	"Update FFG Ship Welding Schedule Draiwings 5351001 5415001 & A010001"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	23-Jun-08	56167.22	=""	="THALES AUSTRALIA"	12-May-08 04:40 PM	

+="CN80676"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Food and Beverage Products"	09-Jan-08	30-Jun-08	41272.20	=""	="POLY PRODUCTS CO PTY LTD"	12-May-08 04:41 PM	

+="CN80681"	"Belt, Aircraft Safety"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	21-Dec-07	12-May-08	50015.75	=""	="PACIFIC SCIENTIFIC COMPANY"	12-May-08 04:41 PM	

+="CN80684"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Sauces and spreads and condiments"	09-Jan-08	31-Oct-08	56810.49	=""	="EL BELL PACKAGING PTY LTD"	12-May-08 04:41 PM	

+="CN80689"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	46000.00	=""	="KPMG AUSTRALIA"	12-May-08 04:42 PM	

+="CN80692"	"Renewal of Long Term Leased Vehicle"	="Department of Defence"	12-May-08	="Motor vehicles"	09-Jan-08	30-Nov-09	47659.90	=""	="ENTERPRISE LEASING COMPANY INC"	12-May-08 04:42 PM	

+="CN80697"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	50000.01	=""	="KPMG AUSTRALIA"	12-May-08 04:42 PM	

+="CN80705"	"RE AUTHORING AAP7213.006-4-SRM-400"	="Department of Defence"	12-May-08	="Published Products"	20-Dec-07	14-May-08	55287.10	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 04:42 PM	

+="CN80710"	"Building Works"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-Jun-08	49302.00	=""	="DAWN EXPRESS PARTITIONING &"	12-May-08 04:43 PM	

+="CN80714"	"Helmet, Flyer's"	="Defence Materiel Organisation"	12-May-08	="Face and head protection"	26-Feb-08	12-Sep-08	44925.92	=""	="TRANSAERO INC."	12-May-08 04:43 PM	

+="CN80718"	"Use of Exisitng ASP Contract. doors and hatches security upgrade"	="Department of Defence"	12-May-08	="Security and control equipment"	20-Dec-07	31-Mar-08	58780.05	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:43 PM	

+="CN80734"	"SERVICE FEE"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	43000.00	=""	="KPMG AUSTRALIA"	12-May-08 04:44 PM	

+="CN80740"	"ELECTRICAL SPARES AND EQUIPMENT TO SUPPORT THE PODS."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	30-Jan-08	30-Apr-08	51665.00	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:44 PM	

+="CN80743"	"Use of Exisitng ASP Contract. Alternate Power Supp"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	20-Dec-07	29-Feb-08	55937.48	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:44 PM	

+="CN80746"	"WEAPON SPARES In accordance with INCOTERMS you are responsible f"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	03-Apr-08	07-Jul-08	42669.17	=""	="HECKLER & KOCH GMBH"	12-May-08 04:45 PM	

+="CN80749"	"4531.10 ENHANCE LANDMASS CREATION FUNCTIONALITY"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	30-Apr-08	50441.49	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 04:45 PM	

+="CN80754"	"DMOSS RFQTS No. 3243 Engagement of Contractor to progress Technical Assessing tasks"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	03-Apr-08	30-Jun-08	49324.00	=""	="GHD PTY LTD"	12-May-08 04:45 PM	

+="CN80761"	"Maintenance support for Multi Role Helicopters"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	22-Feb-08	30-Jun-08	55000.00	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:45 PM	

+="CN80765"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80768"	"DATA  CABLE VECTOR 21"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	31-Jan-08	15-May-08	48455.00	=""	="HALL & WATTS AUSTRALIA PTY LTD"	12-May-08 04:46 PM	

+="CN80769"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80773"	"Repair and Modification of NIIN 01-476-6269"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	20-Dec-07	04-Mar-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	12-May-08 04:46 PM	

+="CN80805"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	29-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80811"	"ENGINEERING INVESTIGATION TO DETERMINE ALTERNATIVE TO OBSOLETE EQUIPMENT"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	22-Feb-08	30-Jun-08	59906.91	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80812"	"REPAIR OF AIRCRAFT HANDLER"	="Department of Defence"	12-May-08	="Aircraft equipment"	30-Jan-08	05-May-08	54396.52	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:48 PM	

+="CN80817"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	29-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:48 PM	

+="CN80819"	"10 infraEnterprise concurent user licences and pro-rata maintenance and support until 18 June 200"	="Defence Materiel Organisation"	12-May-08	="Software"	25-Feb-08	18-Jun-08	51000.40	=""	="INFRA CORPORATION PTY LTD"	12-May-08 04:48 PM	

+="CN80860"	"Use of existing ASP Contract - Conference Room Fit Out with Audio/Visual Equip"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Jan-08	04-Mar-08	56274.17	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:50 PM	

+="CN80863"	"TEWSPO(ADL) Tasking Directive 02-08"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Apr-08	30-Apr-08	41607.50	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:50 PM	

+="CN80873"	"DTS 69 Provision of TADRS Technical Support"	="Department of Defence"	12-May-08	="Electrical components"	18-Dec-07	30-May-08	41234.86	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:51 PM	

+="CN80879"	"ACC White Paper"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	29-Feb-08	52800.00	=""	="ATACS - CONSULTING PTY LTD"	12-May-08 04:51 PM	

+="CN80882"	"Spares for Weatherhaven Shelters"	="Department of Defence"	12-May-08	="Camping and outdoor equipment and accessories"	08-Apr-08	30-Jun-08	40604.99	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	12-May-08 04:51 PM	

+="CN80904"	"REPAIR OF COLTAS NUX SERIAL NO 003"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	29-Jan-08	15-Jun-08	47654.96	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:52 PM	

+="CN80917"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	04-Jun-08	49500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:53 PM	

+="CN80926"	"FLAP SIDE CARRIAGE RH"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	18-Dec-07	25-Nov-08	58612.21	=""	="BLUE AEROSPACE LLC"	12-May-08 04:53 PM	

+="CN80943"	"Part 4 Task 099 Payload Video PCB"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	09-Apr-08	30-Sep-08	41576.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:54 PM	

+="CN80946"	"Network Component Upgrade"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	28-Feb-08	14-Mar-08	51540.78	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 04:54 PM	

+="CN80947"	"VOP for M/S payments, EURO, OCT to DEC."	="Department of Defence"	12-May-08	="Aircraft equipment"	09-Apr-08	30-Apr-08	58781.71	=""	="BAE SYSTEMS AUSTRALIA - EUR"	12-May-08 04:54 PM	

+="CN80949"	"Replacement range control Pc's"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Feb-08	31-Mar-08	47496.90	=""	="SIGMACOM PTY LTD"	12-May-08 04:54 PM	

+="CN80952"	"REPAIR OF TRIP UNIT"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	10-Mar-08	43285.71	=""	="GE AVIATION BISHOPS CLEEVE CHELTENH"	12-May-08 04:54 PM	

+="CN80956"	"ANTENNA"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	18-Dec-07	02-Jun-08	57727.72	=""	="CHELTON LIMITED"	12-May-08 04:55 PM	

+="CN80961"	"Att: Mr Dion Smith      National Government Sales Manager"	="Department of Defence"	12-May-08	="Workshop machinery and equipment and supplies"	04-Feb-08	21-Mar-08	42116.80	=""	="NTP FORKLIFTS AUST"	12-May-08 04:55 PM	

+="CN80967"	"FANFARE TRUMPETS"	="Department of Defence"	12-May-08	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	17-Dec-07	19-May-08	47893.39	=""	="RICHARD SMITH (MI) LTD"	12-May-08 04:56 PM	

+="CN80975"	"REPAIRS TO TRANSMIT AND SYNTHESIZER ASSEMBLYS UNDER SUPPORT CONTRACT CAPO 7620070"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	17-Dec-07	16-Jun-08	58923.62	=""	="THALES AUSTRALIA"	12-May-08 04:56 PM	

+="CN81016"	"Conduct Audit of GTESPO QMS"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	07-Apr-08	30-Jun-08	44000.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:59 PM	

+="CN81018"	"ENHANCING, INFLUENCING & NEGOTIATING PROGRAM FOR L EA GRADUATE ENGINEERS"	="Defence Materiel Organisation"	12-May-08	="Laboratory and scientific equipment"	26-Feb-08	19-Mar-08	51034.50	=""	="EFFECTIVE NEGOTIATION SERVICES"	12-May-08 04:59 PM	

+="CN81019"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	18-Dec-07	22-Jun-08	44000.03	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 04:59 PM	

+="CN81022"	"MODULAR LOAD CARRIAGE EQUIPMENT SAMPLES"	="Defence Materiel Organisation"	12-May-08	="Luggage and handbags and packs and cases"	26-Feb-08	30-Jun-08	48727.99	=""	="XTEK PTY LTD"	12-May-08 04:59 PM	

+="CN81023"	"Cobra Web Pack Licences - inclusive of 12 months maintenance"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	31-Jan-08	44000.00	=""	="DELTEK AUSTRALIA PTY LTD"	12-May-08 04:59 PM	

+="CN81038"	"AMPS Support to DCB Server consolidation"	="Department of Defence"	12-May-08	="Software"	18-Dec-07	31-Jan-08	56430.00	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 05:00 PM	

+="CN81040"	"QUT WORKSHOPS ASSOCIATED WITH EMCPM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	26-Feb-08	29-Feb-08	45132.35	=""	="QUEENSLAND UNIVERSITY OF"	12-May-08 05:00 PM	

+="CN81044"	"PARADE BOOTS"	="Defence Materiel Organisation"	12-May-08	="Footwear"	26-Feb-08	30-Apr-08	50160.00	=""	="BAXTER & COMPANY PTY LTD"	12-May-08 05:00 PM	

+="CN81054"	"vibration controller"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	04-Feb-08	15-Feb-08	57154.16	=""	="BRUEL AND KJAER AUST PTY LTD"	12-May-08 05:01 PM	

+="CN81075"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	30-Jun-08	44743.11	=""	="AIR NZ ENGINEERING SERVICES"	12-May-08 05:02 PM	

+="CN81077"	"PROCUREMENT OF QUANTITY 2 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	31-May-08	47525.28	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81082"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	01-Feb-08	15-Dec-08	55923.67	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 05:02 PM	

+="CN81104"	"4531.15 ANZAC SHIP COMBAT SYSTEM SIMULATOR SOFTWARE PROBLEM REPORT ANALYSIS"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	26-Feb-08	30-May-08	45491.92	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 05:03 PM	

+="CN81108"	"MODULAR LOAD CARRIAGE EQUIPMENT TENDER SAMPLES IN 7.1"	="Defence Materiel Organisation"	12-May-08	="Luggage and handbags and packs and cases"	26-Feb-08	30-Jun-08	51367.56	=""	="BAE SYSTEMS"	12-May-08 05:03 PM	

+="CN81128"	"Business Planning Workshops"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	19-Feb-08	30-Jun-09	54989.55	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:04 PM	

+="CN81135"	"CATM & DATM screws"	="Department of Defence"	12-May-08	="Hardware"	26-Nov-07	29-Feb-08	57298.31	=""	="MBDA MISSILE SYSTEMS"	12-May-08 05:04 PM	

+="CN81148"	"Computer Equipment"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	19-Feb-08	14-Mar-08	50779.70	=""	="SUN MICROSYSTEMS"	12-May-08 05:05 PM	

+="CN81160"	"25mm HEI Ballistics Recovery"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	19-Feb-08	25-May-08	43780.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:05 PM	

+="CN81175"	"DTS No. 71 Mega Anchor Additional Spares"	="Department of Defence"	12-May-08	="Rope and chain and cable and wire and strap"	26-Nov-07	08-Feb-08	46493.47	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:06 PM	

+="CN81192"	"Various spare parts for Live Simulation Equipment"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	19-Feb-08	29-Aug-08	43837.20	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 05:06 PM	

+="CN81193"	"DEEP WELL PUMP MANUALS, SHROUDS, LEADS AND CONNECTIONS"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	18-Dec-07	06-Feb-08	54587.51	=""	="BROWN BROTHERS ENGINEERS"	12-May-08 05:06 PM	

+="CN81199"	"Hire of Venue for Tender Evaluation"	="Department of Defence"	12-May-08	="Hotels and lodging and meeting facilities"	26-Nov-07	30-Nov-07	49260.20	=""	="CLIFTONS OPERATIONS PTY LTD"	12-May-08 05:07 PM	

+="CN81203"	"Harpoon Canisters electronic equipment"	="Department of Defence"	12-May-08	="Electronic manufacturing machinery and equipment and accessories"	26-Nov-07	31-Jan-08	41615.20	=""	="OLYMPUS AUST PTY LTD"	12-May-08 05:07 PM	

+="CN81208"	"DELIVERY OF TRAINING COURSE FOR 2007 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	19-Feb-08	29-Feb-08	53933.00	=""	="DEAKINPRIME"	12-May-08 05:07 PM	

+="CN81211"	"ESS- 026"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	30-Jun-08	57393.47	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:07 PM	

+="CN81227"	"WEBSITE DEVELOPMENT"	="Department of Defence"	12-May-08	="Computer services"	23-Nov-07	23-Nov-07	44000.00	=""	="ENCODE POLYMEDIA"	12-May-08 05:08 PM	

+="CN81228"	"MANIFOLD FUEL"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	18-Feb-08	01-Dec-08	40347.45	=""	="ROLLS - ROYCE PLC"	12-May-08 05:08 PM	

+="CN81237"	"Titan Festo Components"	="Department of Defence"	12-May-08	="Safety and rescue vehicles"	19-Dec-07	20-Feb-08	49471.65	=""	="FESTO PTY LTD"	12-May-08 05:08 PM	

+="CN81243"	"PN 823498-2, RH Inboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	52220.96	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81247"	"PN 823498-1, LH Inboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	52220.96	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81248"	"Provision of on-going Financial Assistance"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	30-Apr-08	59675.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 05:09 PM	

+="CN81268"	"Schedule Support"	="Defence Materiel Organisation"	12-May-08	="Office supplies"	18-Feb-08	30-Jun-08	52000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 05:10 PM	

+="CN81270"	"Additional RAM"	="Department of Defence"	12-May-08	="Hardware"	23-Jan-08	31-Jan-08	44490.60	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:10 PM	

+="CN81276"	"SITCF Compliance Monitoring Reporting"	="Defence Materiel Organisation"	12-May-08	="Computer services"	18-Feb-08	31-Mar-08	55000.01	=""	="ERNST & YOUNG"	12-May-08 05:10 PM	

+="CN81283"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	15-Jun-08	58849.01	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	12-May-08 05:10 PM	

+="CN81313"	"Maintenance Support Contract."	="Defence Materiel Organisation"	12-May-08	="Software"	18-Feb-08	29-Feb-08	57266.00	=""	="CADCENTRE ASIA PACIFIC"	12-May-08 05:12 PM	

+="CN81335"	"INSPECTION AND TRANSPORT OF TASLU"	="Defence Materiel Organisation"	12-May-08	="Transportation services equipment"	21-Feb-08	30-Apr-08	43973.60	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:13 PM	

+="CN81337"	"Development of the ADFPPD & Synchronisation"	="Department of Defence"	12-May-08	="Computer services"	27-Nov-07	31-Dec-07	45738.00	=""	="OCEAN SOFTWARE PTY LTD"	12-May-08 05:13 PM	

+="CN81340"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	27-Nov-07	28-Feb-08	48903.42	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:13 PM	

+="CN81343"	"Additional Tasking on R2 Servicing of P3 Orion"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	27-Nov-07	21-Dec-07	58420.10	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 05:14 PM	

+="CN81349"	"PELTOR PTT EXTENSION CABLE"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	27-Nov-07	04-Jan-08	49252.50	=""	="NIOA TRADING PTY LTD"	12-May-08 05:14 PM	

+="CN81357"	"Software Support"	="Department of Defence"	12-May-08	="Detective services"	22-Jan-08	31-Dec-08	59862.00	=""	="DARONMONT TECHNOLOGIES PTY LTD"	12-May-08 05:14 PM	

+="CN81373"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	28-Nov-07	30-Jun-08	47377.00	=""	="ALLENS ARTHUR ROBINSON"	12-May-08 05:15 PM	

+="CN81375"	"S&Q 033 EMC LITE MODIFICATION"	="Department of Defence"	12-May-08	="Ammunition"	22-Jan-08	30-Jun-08	48849.90	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:15 PM	

+="CN81390"	"PsP support for the management of Asbestos items"	="Department of Defence"	12-May-08	="Professional engineering services"	25-Jan-08	30-Apr-08	59928.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	12-May-08 05:16 PM	

+="CN81397"	"25mm HEI-T certification"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	28-Nov-07	18-Jan-08	41679.99	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:16 PM	

+="CN81403"	"AMPS DATABASE ACTIVITY AS PART OF MSDMC"	="Department of Defence"	12-May-08	="Software"	27-Nov-07	14-Mar-08	50678.23	=""	="KAZ GROUP LTD"	12-May-08 05:17 PM	

+="CN81406"	"phone and electricity charges for HMAS MELVILLE maintenance period"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Nov-07	31-Dec-07	50778.85	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 05:17 PM	

+="CN81409"	"laptop computer for SMB CONDER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	27-Nov-07	31-Dec-07	58520.00	=""	="ATLAS HYDROGRAPHIC HOLDING"	12-May-08 05:17 PM	

+="CN81413"	"4552 - DATA SERVICES TO IMPLEMENT AND MANAGE COSOLIDATED STANDARD ACTIVITIES"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	30-Jun-08	41324.80	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:17 PM	

+="CN81416"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	21-Feb-08	41118.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	12-May-08 05:17 PM	

+="CN81420"	"Technical Services"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	25-Jan-08	30-Apr-08	40012.50	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:18 PM	

+="CN81422"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Software"	20-Feb-08	20-Feb-08	45902.53	=""	="KAZ GROUP PTY LTD"	12-May-08 05:18 PM	

+="CN81423"	"PC9 Aircraft Spares"	="Department of Defence"	12-May-08	="Aircraft"	25-Jan-08	31-Jan-08	45012.15	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:18 PM	

+="CN81428"	"ACPB14-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81431"	"ACPB13-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81434"	"ACPB12-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81435"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Mar-08	58838.00	=""	="C4I PTY LTD"	12-May-08 05:18 PM	

+="CN81436"	"M4 BlueFire Magazines"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	26-Nov-07	28-Mar-08	40403.88	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:18 PM	

+="CN81437"	"ACPB11-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:18 PM	

+="CN81438"	"EA and DDP for SUCCESS COMCEN AC"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	29-Jan-08	20-Mar-08	54736.00	=""	="THALES AUSTRALIA"	12-May-08 05:19 PM	

+="CN81443"	"ACPB09-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:19 PM	

+="CN81446"	"ACPB06-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:19 PM	

+="CN81447"	"BATTERIES (LITHIUM)"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	29-Jan-08	25-Mar-08	54226.26	=""	="SAFT AMERICA INC"	12-May-08 05:19 PM	

+="CN81455"	"External Service Provider Services"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Feb-08	09-May-08	58080.00	=""	="LOGISTIC ENGINEERING SERVICES P/L"	12-May-08 05:19 PM	

+="CN81458"	"ACPB01-ADHOC"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	01-Dec-22	44000.00	=""	="DEFENCE MARITIME SERVICES PTY"	12-May-08 05:20 PM	

+="CN81474"	"Temperature Calibrator Dry Bloke"	="Department of Defence"	12-May-08	="Manufacture of electrical goods and precision instruments"	24-Jan-08	25-Jan-08	50553.80	=""	="ROYCE WATER TECHNOLOGIES LTD"	12-May-08 05:21 PM	

+="CN81477"	"Provision of Commercial and General Technical Support"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	24-Jan-08	30-May-08	46200.00	=""	="HUEGIN CONSULTING"	12-May-08 05:21 PM	

+="CN81485"	"This order is raised pursuant to the agreed terms DMOSS Panel."	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	24-Jan-08	31-Oct-08	52060.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:22 PM	

+="CN81497"	"Use of Exisitng ASP Contract. Cargo Pumping system parts"	="Department of Defence"	12-May-08	="Industrial pumps and compressors"	24-Jan-08	01-Feb-08	54402.34	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:23 PM	

+="CN81501"	"Development of additional report for the NetMAARS System"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	25-Jan-08	30-May-08	58916.00	=""	="APT BUSINESS SOLUTIONS PTY LTD"	12-May-08 05:23 PM	

+="CN81508"	"TOB-WARDROOM AC UNIT"	="Defence Materiel Organisation"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	21-Apr-08	09-May-08	45565.02	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 05:24 PM	

+="CN81510"	"Develop Detailed Design Package for Replace LPAC Dehydrator on FFG Class Follow-On-Ships"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	15-Jun-08	43404.90	=""	="ADVITECH PTY LTD"	12-May-08 05:24 PM	

+="CN81515"	"Circuit Card Assembly"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	25-Jan-08	11-Aug-08	44539.96	=""	="LCF SYSTEMS INC"	12-May-08 05:24 PM	

+="CN81524-A1"	" SYSTEM INTEGRATION SCOPING STUDY"	="Defence Materiel Organisation"	12-May-08	="Management advisory services"	21-Apr-08	31-May-08	44800.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 05:25 PM	

+="CN81532"	"Implementation on the DRN of  EPPS Software TRMS FFG-UP Risk Grouping Module-  Proprietary item"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Apr-08	30-Jun-08	54956.00	=""	="EPPS SOFTWARE PTY LTD"	12-May-08 05:26 PM	

+="CN81540"	"Maritime Technical Officer - Shane Hulbert"	="Defence Materiel Organisation"	12-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	30-Jun-09	51184.32	=""	="PEOPLEBANK"	12-May-08 05:26 PM	

+="CN81562"	"Hull Surveys Apr - Jun 08"	="Defence Materiel Organisation"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Apr-08	30-Jun-08	49500.00	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:28 PM	

+="CN81567"	"BURNER"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	15-Jun-08	40737.39	=""	="ROLLS - ROYCE PLC"	12-May-08 05:28 PM	

+="CN81569"	"Link Assembly"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	01-May-09	40544.99	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:28 PM	

+="CN81563"	" carry out sea trial for correct operation    "	="Department of Defence"	12-May-08	="Storage vessels and tanks"	30-Apr-08	06-May-08	47121.39	=""	="WILTRADING"	12-May-08 05:29 PM	

+="CN81573"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	55936.32	=""	="KAZ GROUP PTY LTD"	12-May-08 05:29 PM	

+="CN81576"	"Professional Fees"	="Department of Defence"	12-May-08	="Legal services"	13-Dec-07	30-Jun-08	55757.19	=""	="BLAKE DAWSON WALDRON"	12-May-08 05:29 PM	

+="CN81596"	"INDUCTION OF THIRD PARTY TECH PUB INTO THE ANZAC SUITE OF DOCUMENTS"	="Department of Defence"	12-May-08	="Military watercraft"	12-Dec-07	30-Jun-08	50295.30	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:30 PM	

+="CN81606"	"Software and Support"	="Department of Defence"	12-May-08	="Software"	12-Dec-07	30-Jun-08	41580.00	=""	="I TECHNOLOGY SOLUTIONS PTY LTD"	12-May-08 05:31 PM	

+="CN81666"	"RF STIMULATOR ROADMAP"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Dec-07	30-May-08	55460.02	=""	="NOVA AEROSPACE"	12-May-08 05:39 PM	

+="CN81685"	"Provision of HMAS Sydney Long Lead Time Contractor Furnished Material for IMAV-24"	="Department of Defence"	12-May-08	="Military watercraft"	14-Dec-07	30-Jun-08	57008.06	=""	="THALES AUSTRALIA"	12-May-08 05:42 PM	

+="CN81689"	"F1 Grenade"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	10-Dec-07	21-Jan-08	56757.84	=""	="JACOBS AUSTRALIA"	12-May-08 05:42 PM	

+="CN81694"	"The following documents must accompany the consign provide documentation will create a delay in ship"	="Department of Defence"	12-May-08	="Hardware"	08-Dec-07	12-May-08	49845.63	=""	="CAE INC"	12-May-08 05:43 PM	

+="CN81730"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	06-Dec-07	06-Dec-07	47016.20	=""	="BEA SYSTEMS PTY LTD"	12-May-08 05:48 PM	

+="CN81737"	"Communication IP Voice Equipment"	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	07-Dec-07	14-Dec-07	45982.87	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 05:48 PM	

+="CN81739"	"Computer Server and Software"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	18-Jan-08	43319.34	=""	="ENDACE ACCELERATED"	12-May-08 05:49 PM	

+="CN81745"	"Use ASP exisiting contract - 2 Yearly Inspection of Small Auxiliary Boiler"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Dec-07	21-Mar-08	52353.27	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 05:49 PM	

+="CN81747"	"PROCUREMENT NUMBERPLATES"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	30-Jun-08	60000.00	=""	="LICENSYS HOLDINGS PTY LTD"	12-May-08 05:50 PM	

+="CN81800"	"Develop strategies to raise awareness of mental issues."	="Department of Veterans' Affairs"	13-May-08	="Healthcare Services"	01-Feb-08	31-Jul-08	52500.00	=""	="Western Australian Primary Care Network Inc."	13-May-08 09:48 AM	

+="CN81804"	"Multi Function Devices for Sydney Registry"	="Family Court of Australia"	13-May-08	="Photocopiers"	12-May-08	12-Jun-08	47218.30	=""	="Kyocera Mita Australia Pty Ltd"	13-May-08 10:18 AM	

+="CN81815"	"QANTAS OCT 07 STATEMENT"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	31-Oct-07	30-Jun-08	42380.24	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:01 AM	

+="CN81825"	"GST to Invoice E0027/07 - ITEM 9 CDR PROJECT QUART"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	20-Nov-07	30-Jun-09	56439.86	=""	="EWST AUSTRALIA PTY LTD"	13-May-08 11:02 AM	

+="CN81846"	"GST ONLY FOR INVOICE 64777"	="Defence Materiel Organisation"	13-May-08	="Satellites"	21-Aug-07	30-Nov-07	40759.45	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:06 AM	

+="CN81852"	"GST on Foreign Currency Payments"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	08-Nov-07	01-Feb-12	49492.93	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:07 AM	

+="CN81871"	"ASMD PHASE 2B"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Dec-07	31-Jan-08	49872.24	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:10 AM	

+="CN81883"	"TASK 112-4 AIR WEAPONS MAGAZINE - LIMB 3 PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	04-Dec-07	29-Feb-08	41313.17	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:12 AM	

+="CN81893"	"QANTAS BILL 02-244970 OCTOBER 2007"	="Defence Materiel Organisation"	13-May-08	="Civilian and commercial rotary wing aircraft"	31-Oct-07	31-Dec-07	52991.55	=""	="QANTAS AIRWAYS LTD"	13-May-08 11:14 AM	

+="CN81894"	"Introduction to Explosives Course 19-13Nov2007"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	28-Nov-07	28-Nov-07	52500.00	=""	="DEFENCE TEAMING CENTRE INC"	13-May-08 11:14 AM	

+="CN81911"	"GST on Foreign Exchange Payment for Submarines"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Dec-07	30-Jun-13	58153.06	=""	="MATHER ROACH CONSULTING PTY LTD"	13-May-08 11:16 AM	

+="CN81912"	"TRANSPORT OF AVGAS IN PNG"	="Defence Materiel Organisation"	13-May-08	="Fuels"	23-Nov-07	11-Jan-08	48794.24	=""	="BISMARK MARITIME LTD"	13-May-08 11:16 AM	

+="CN81934"	"SINGLE LINK LICENCE"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	15-Nov-07	31-May-08	48510.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 11:20 AM	

+="CN81939"	"Computer"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Nov-07	07-Dec-07	42790.00	=""	="COMMANDER (ACT)"	13-May-08 11:21 AM	

+="CN81951"	"KIOWA R2 SERV"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	31-Oct-07	04-Mar-08	50735.14	=""	="BOEING AEROSPACE SUPPORT"	13-May-08 11:23 AM	

+="CN81953"	"Ship Maintenance"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Oct-07	03-Dec-07	46536.09	=""	="A NOBLE & SON (NSW) PTY LTD"	13-May-08 11:24 AM	

+="CN81960"	"WSBU CONTRACT RE-ALIGNMENT"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	12-Nov-07	30-Jun-08	58282.78	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 11:26 AM	

+="CN81971"	"Power Amplifiers"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	14-Nov-07	08-Feb-08	42482.00	=""	="ELECTRONIC DEVELOPMENT SALES PTY LT"	13-May-08 11:28 AM	

+="CN81975"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	08-Nov-07	28-Feb-08	59213.75	=""	="STRATEGIC PATHWAYS PTY LTD"	13-May-08 11:28 AM	

+="CN81980"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-08	30-Jun-08	54752.50	=""	="PHILLIPS FOX SYDNEY"	13-May-08 11:30 AM	

+="CN82002"	"25 x Precision T3400 Desktops"	="Geoscience Australia"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	15-Apr-08	55044.83	=""	="Dell Australia Pty Ltd"	13-May-08 11:34 AM	

+="CN82003"	"technical services"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	19-Nov-07	30-Sep-08	40138.91	=""	="PARTECH SYSTEMS PTY LTD"	13-May-08 11:34 AM	

+="CN82009"	"Preparation of Financial Statements for 2007-08"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	01-Apr-08	15-Apr-08	48922.50	=""	="Oakton AA Services Pty Ltd"	13-May-08 11:34 AM	

+="CN82033"	"Contract services provided by Oracle Database Developer from 29 February to 30 June 2008."	="Geoscience Australia"	13-May-08	="Temporary personnel services"	08-Apr-08	30-Jun-08	55000.00	="2005/1773"	="AUREC Pty Ltd"	13-May-08 11:37 AM	

+="CN82044"	"R2-6 Vault Upgrade"	="Defence Materiel Organisation"	13-May-08	="Furniture and Furnishings"	16-Nov-07	30-Apr-08	53300.39	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:38 AM	

+="CN82054"	"Oracle maintenance renewal"	="Geoscience Australia"	13-May-08	="Software"	10-Apr-08	20-Apr-08	50000.50	=""	="Oracle Corporation"	13-May-08 11:39 AM	

+="CN82059"	"SHRIMP Analyses"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	11-Apr-08	30-Apr-08	56100.00	=""	="Australian National University"	13-May-08 11:39 AM	

+="CN82067"	"WP DC001, WP DC002, WP DC004 Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase."	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	41547.00	=""	="Terranean Mapping Technologies"	13-May-08 11:40 AM	

+="CN82068"	"Workplace Demand Modelling"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	16-Nov-07	31-Dec-07	53595.23	=""	="SAHA INTERNATIONAL LTD"	13-May-08 11:41 AM	

+="CN82072"	"MADE TO MEASURE ATTIRE"	="Defence Materiel Organisation"	13-May-08	="Clothing"	16-Nov-07	30-Nov-07	45082.27	=""	="V & F TAILORING"	13-May-08 11:41 AM	

+="CN82073"	"G2339 N G Provision for Business Analyst 1 April to 13 June 2008"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	44000.00	=""	="AUREC Pty Ltd"	13-May-08 11:41 AM	

+="CN82084"	"Guy Wire Tensioning Equipment NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	13-May-08	="Hydraulic machinery and equipment"	16-Nov-07	30-Dec-07	54760.55	=""	="BOEING AUSTRALIA LTD"	13-May-08 11:42 AM	

+="CN82087"	"SAARS Calibration activity support"	="Defence Materiel Organisation"	13-May-08	="Measuring and observing and testing instruments"	16-Nov-07	31-Dec-07	41465.60	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 11:42 AM	

+="CN82089"	"3rd party effectiveness review"	="Defence Materiel Organisation"	13-May-08	="Computer services"	22-Jan-08	31-Jan-08	43714.00	=""	="ERNST & YOUNG"	13-May-08 11:42 AM	

+="CN82094"	"2 x HP Data Protector Licences and Maintenance"	="Geoscience Australia"	13-May-08	="Software"	17-Apr-08	01-May-08	40636.20	=""	="Hewlett Packard Australia Ltd"	13-May-08 11:43 AM	

+="CN82099"	"LINK 16 TECHNICAL SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Nov-07	31-Dec-08	54701.45	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 11:43 AM	

+="CN82103"	"Vexcel 3DSAR on Irix one year extended software support and maintenance"	="Geoscience Australia"	13-May-08	="Software"	21-Apr-08	01-May-08	42211.90	=""	="Vexcel Corporation"	13-May-08 11:44 AM	

+="CN82108"	"Short term personnel hire - Web editor"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	21-Apr-08	31-Jul-08	55440.00	=""	="Verossity Pty Ltd"	13-May-08 11:44 AM	

+="CN82118"	"G2335 M W Provision for Contract Staff to 30 June 2008"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	22-Apr-08	30-Jun-08	55000.00	=""	="MPM Group Pty Ltd T/as Nova IT"	13-May-08 11:45 AM	

+="CN82139"	"RE: Quotation No: 080304.1/NM, Heto PL 6000-55 Freeze Dryer System - catalogue no: 88731024"	="Geoscience Australia"	13-May-08	="Tools and General Machinery"	30-Apr-08	31-Dec-08	51026.80	=""	="KI Scientific Pty Ltd"	13-May-08 11:48 AM	

+="CN82151"	"Provision of ESS to PN1156"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	26-Jul-06	30-Sep-09	46872.71	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:50 AM	

+="CN82157"	"AIRCRAFT MAINTENANCE"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	12-Nov-07	30-Apr-08	51283.10	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 11:51 AM	

+="CN82160"	"ENGINEERING SERVICES"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	30-Jun-08	30-Jun-08	41947.13	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	13-May-08 11:51 AM	

+="CN82167"	"ISS - NON REPAIRABLE ITEMS"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	15-Apr-08	30-Dec-08	48238.72	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:52 AM	

+="CN82202"	"Connector Slip Ring Assy"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	06-Mar-08	30-Sep-08	52142.27	=""	="MOOG INC."	13-May-08 11:57 AM	

+="CN82193"	"SOCKS MERINO PERTAINING TO RFQ J8372"	="Defence Materiel Organisation"	13-May-08	="Socks"	09-May-08	06-Jun-08	56725.90	="PD 2480052"	="SCALLYWAGS INDUSTRIES"	13-May-08 11:58 AM	

+="CN82212"	"THIS PO IS RAISED TO PAY FOR FREIGHT"	="Defence Materiel Organisation"	13-May-08	="Light weapons and ammunition"	06-Mar-08	10-Mar-08	56990.74	=""	="RIDGEWAY INTERNATIONAL"	13-May-08 11:58 AM	

+="CN82218"	"DLDIP software conversion to SOE 125"	="Defence Materiel Organisation"	13-May-08	="Software"	05-Mar-08	30-Jun-08	54560.00	=""	="MWA SYSTEMS PTY LTD"	13-May-08 11:58 AM	

+="CN82220"	"Dewetron 501 Handling instrumentation upgrade and LCD Monitors for Dewetron"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Mar-08	19-May-08	41773.00	=""	="METROMATICS PTY LTD"	13-May-08 11:59 AM	

+="CN82224"	"Repair Technique for FDF Thermal Shroud"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	05-Mar-08	18-Apr-08	45412.42	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:59 AM	

+="CN82270"	"AMACCS Task backlog 05-0273"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	05-Mar-08	06-Jun-08	49500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 12:03 PM	

+="CN82282"	"Terms and Conditions are attached."	="Defence Materiel Organisation"	13-May-08	="Luggage and handbags and packs and cases"	04-Mar-08	15-Jun-08	54725.00	=""	="APPAREL ADDITIONS"	13-May-08 12:04 PM	

+="CN82290"	"AMACCS Task backlog 02-2650"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	05-Mar-08	06-Jun-08	43999.99	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 12:04 PM	

+="CN82291"	"HMAS PARRAMATTA ADMINISTRATION ASSISTANT SRA03-IMAV O4"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	15-Jan-08	29-Jun-08	41057.28	=""	="KINETIC DEFENCE SERVICES PTY LTD"	13-May-08 12:05 PM	

+="CN82293"	"Professional Service Provider"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	55282.15	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:05 PM	

+="CN82298"	"TOB-PROJ SUPER COSTS EMA MAJOR HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	05-Mar-08	29-Mar-08	44314.75	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:05 PM	

+="CN82305"	"VOIP Labs"	="Defence Materiel Organisation"	13-May-08	="Hardware"	16-Jan-08	28-Feb-08	47731.02	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:06 PM	

+="CN82319"	"Licence to use and modify the Risk Maturity Assess Tool (RMAT)"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	16-Jan-08	29-Feb-08	49999.99	=""	="RISK DECISIONS PTY LTD"	13-May-08 12:07 PM	

+="CN82326"	"MINIMI 7.62 CAL SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	11-Jan-08	02-Jul-08	57162.61	=""	="FN HERSTAL SA"	13-May-08 12:07 PM	

+="CN82330"	"EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	30-Jun-08	47863.29	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:08 PM	

+="CN82335"	"*PLEASE DIRECT INVOICE/S TO ADDRESS BELOW RIGHT* DELIVERY TO OP THEATRE 1 HSB"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	11-Jan-08	30-Jun-08	44801.75	=""	="STRYKER AUSTRALIA PTY LTD"	13-May-08 12:08 PM	

+="CN82347"	"modification to forcemate tooling"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	10-Mar-08	28-Mar-08	41389.85	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	13-May-08 12:09 PM	

+="CN82355"	"Conditions of Contract, Scylla Sonar ISS, CAPO N26 to this deliverable under cover of quotation L757"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	10-Mar-08	30-Apr-08	41278.19	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 12:10 PM	

+="CN82358"	"VOSCAL"	="Defence Materiel Organisation"	13-May-08	="Laboratory and scientific equipment"	15-Jan-08	29-Feb-08	52240.98	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	13-May-08 12:10 PM	

+="CN82370"	"CABLE"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	08-Mar-08	11-Aug-08	46926.21	=""	="EADS DEUTSCHLAND GMBH -VERTEIDIGUNG"	13-May-08 12:11 PM	

+="CN82372"	"CONNECTING CABLE"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	07-Mar-08	08-Sep-08	53698.05	=""	="EADS DEUTSCHLAND GMBH -VERTEIDIGUNG"	13-May-08 12:12 PM	

+="CN82380"	"Solid State Amplifier 0.01-1GHz, 200W"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Mar-08	02-May-08	57200.00	=""	="TEST & MEASUREMENT AUST PTY LTD"	13-May-08 12:12 PM	

+="CN82385"	"Convert USN Plant Operation and Maintenance manual into ABR 6743"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Jan-08	30-Apr-08	56114.36	=""	="THALES AUSTRALIA"	13-May-08 12:13 PM	

+="CN82390"	"REPAIR OF TOWED FLEXIBLE BARGE AND DISCHARGE SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Fuel tanks and systems"	06-Mar-08	03-Apr-08	59947.80	=""	="GILBERT GROUP QLD T/A O'SULLIVAN"	13-May-08 12:13 PM	

+="CN82400"	"MPMI Gantry Crane"	="Defence Materiel Organisation"	13-May-08	="Electronic manufacturing machinery and equipment and accessories"	18-Jan-08	09-May-08	52948.50	=""	="GM CRANES AND CONVEYORS PTY LTD"	13-May-08 12:14 PM	

+="CN82421"	"Pinger Poles"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	07-Mar-08	31-Mar-08	40297.40	=""	="OCEAN INDUSTRIES"	13-May-08 12:16 PM	

+="CN82432"	"Training Course"	="Defence Materiel Organisation"	13-May-08	="Office supplies"	21-Jan-08	30-Jun-08	40205.00	=""	="C I T SOLUTIONS PTY LTD"	13-May-08 12:17 PM	

+="CN82457"	"STBD GENERAL SERVICE PUMP MOTOR"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	17-Jan-08	11-Apr-08	45645.60	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:19 PM	

+="CN82487"	"POC:DEAN ARMBRECHT IT USER DEVICES 02 626 50859"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	18-Jan-08	15-Feb-08	54459.81	=""	="SUN MICROSYSTEMS"	13-May-08 12:23 PM	

+="CN82488"	"THE TERMS AND CONDITIONS OF THIS PURCHASE ORDER AR THE DMOSS DEED OF STANDING OFFER. DMOSS TASK NUMB"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Feb-08	30-Jun-08	48510.00	=""	="NOVA AEROSPACE"	13-May-08 12:23 PM	

+="CN82497"	"4516.16 - CONDUCT DIESEL ENGINE CONDITION ASSESSMENT ONBOARD HMAS ANZAC"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	17-Jan-08	25-Jan-08	40393.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 12:23 PM	

+="CN82515"	"EVM Support from 01 Jan 2008 to 30 June 2008"	="Defence Materiel Organisation"	13-May-08	="Management support services"	07-Jan-08	30-Jun-08	52228.00	=""	="TERRA FIRMA PTY LTD"	13-May-08 12:25 PM	

+="CN82521"	"Use of existing ASP Contract - Upgrade to Emerg Generator"	="Defence Materiel Organisation"	13-May-08	="Batteries and generators and kinetic power transmission"	07-Jan-08	28-Feb-08	49689.49	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:25 PM	

+="CN82560"	"DTS49 Purchase of TADRS Cones, Sandpads and Chains"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	03-Mar-08	31-Jul-08	45371.35	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 12:29 PM	

+="CN82566"	"SDSS IT Controls Framework Self Assessment Testing and Remediation"	="Defence Materiel Organisation"	13-May-08	="Computer services"	03-Mar-08	30-May-08	58050.00	=""	="DIMENSION DATA LEARNING"	13-May-08 12:30 PM	

+="CN82570"	"6 Servers for Modelling Defence's Networks."	="Defence Materiel Organisation"	13-May-08	="Computer services"	03-Mar-08	17-Mar-08	58672.69	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	13-May-08 12:30 PM	

+="CN82593"	"Provide Logistics Assistance to support HMAS Adela ide POA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	21-Dec-07	01-Apr-08	40987.90	=""	="THALES AUSTRALIA"	13-May-08 12:32 PM	

+="CN82604"	"Develop Explosive Ordnance (EO) Material Condition Assessment (MCA) Documentation for HMAS Sydney"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Feb-08	04-Apr-08	42715.00	=""	="NOVA DEFENCE"	13-May-08 12:33 PM	

+="CN82608"	"X-RAY OF BALLISTIC PLATES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Feb-08	14-Mar-08	48477.00	=""	="BALLISTIC AND MECHANICAL TESTING"	13-May-08 12:34 PM	

+="CN82613"	"MMTR antennae tralier"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-Feb-08	30-Apr-08	58713.60	=""	="VARLEY GROUP"	13-May-08 12:35 PM	

+="CN82614"	"Repair to Damaged Windscreen A27-14 (UCR 02/012)"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Feb-08	31-Mar-08	54105.03	=""	="BAE SYSTEMS AUSTRALIA - GBP"	13-May-08 12:35 PM	

+="CN82616"	"Repair to Damaged Windscreen A27-19 (UCR348)"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Feb-08	31-Mar-08	54102.93	=""	="BAE SYSTEMS AUSTRALIA - GBP"	13-May-08 12:35 PM	

+="CN82626"	"Annual subscription journals 2008"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	09-Nov-07	30-Jun-08	45363.77	=""	="EBSCO Australia"	13-May-08 12:36 PM	

+="CN82653"	"Use of Exisitng ASP Contract.- Mobilisation Costs EMA 04"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	17-Mar-08	11-Jul-08	56430.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:39 PM	

+="CN82654"	"Use of Exisitng ASP Contract.- Mobilisation Costs EMA 04"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	17-Mar-08	11-Jul-08	55000.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 12:39 PM	

+="CN82655"	"LEVEL 9 , 270 PITT ST, SYDNE"	="Defence Materiel Organisation"	13-May-08	="Software"	17-Mar-08	17-Mar-08	49161.75	=""	="KAZ GROUP PTY LTD"	13-May-08 12:39 PM	

+="CN82669"	"Basic Vista 550 System suoport and administration for 12 months"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	18-Mar-08	31-Jan-09	56698.40	=""	="PROLOGUE EMS, PROLOGUE TELEMETRY"	13-May-08 12:42 PM	

+="CN82673"	"Aircraft Spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	18-Mar-08	27-May-08	45462.96	=""	="TRIMCAST PTY LTD"	13-May-08 12:42 PM	

+="CN82674"	"IMPLEMENTATION OF SDSS FOR THALES AUSTRALIA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	18-Mar-08	16-Apr-08	40040.00	=""	="THALES AUSTRALIA"	13-May-08 12:42 PM	

+="CN82677"	"ANZAC Spares"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	30-Jun-08	46460.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:43 PM	

+="CN82678"	"PARACHUTE"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	15-Mar-08	29-Dec-08	56935.92	=""	="MARTIN BAKER AIRCRAFT CO LTD"	13-May-08 12:43 PM	

+="CN82679"	"IMS & CMIS REPORTING CLIENT FOR HEAVY REPAIR FACILITY FOR SINGLE CHANNEL RADIO SYSTEMS."	="Defence Materiel Organisation"	13-May-08	="Measuring and observing and testing instruments"	14-Mar-08	26-May-08	57976.84	=""	="THALES AUSTRALIA"	13-May-08 12:43 PM	

+="CN82701"	"AMMONIUM PERCHLORATE"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	17-Mar-08	30-Jun-09	44959.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:46 PM	

+="CN82710-A1"	"MAINTENANCE OF FIRE EXTINGUISHERS"	="Defence Materiel Organisation"	13-May-08	="Fire fighting equipment"	19-Mar-08	30-Jun-08	60000.00	="CONL074"	="CHUBB FIRE SAFETY LTD"	13-May-08 12:47 PM	

+="CN82715"	"SUPPLY OF JET A1 TO THE RAAF"	="Defence Materiel Organisation"	13-May-08	="Fuels"	19-Mar-08	30-Jun-08	60000.00	=""	="BURNT PINE TRAVEL"	13-May-08 12:48 PM	

+="CN82717"	"ELECTRONICS KITS FOR 275HP ARMY MARINE"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	19-Mar-08	01-Jun-08	43659.00	=""	="MERCURY MARINE PTY LTD"	13-May-08 12:48 PM	

+="CN82718"	"VMware Licenses"	="Defence Materiel Organisation"	13-May-08	="Software"	19-Mar-08	31-Mar-08	59983.00	=""	="COMPUTERCORP (LOGISTICS)"	13-May-08 12:48 PM	

+="CN82736"	"T700 Engine Fuel Test Rig"	="Defence Materiel Organisation"	13-May-08	="Aircraft environmental control systems and components"	19-Mar-08	30-May-08	46636.23	=""	="ASIA PACIFIC AEROSPACE"	13-May-08 12:51 PM	

+="CN82787"	"Analyser"	="Defence Materiel Organisation"	13-May-08	="Laboratory and scientific equipment"	12-Mar-08	09-May-08	47805.73	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	13-May-08 12:58 PM	

+="CN82788"	"External Service Provider"	="Defence Materiel Organisation"	13-May-08	="Office supplies"	12-Mar-08	20-Jun-08	48500.00	=""	="ABERGLASSLYN CONSULTING PTY LTD"	13-May-08 12:58 PM	

+="CN82789"	"Construction of workstations and office accommodation"	="Defence Materiel Organisation"	13-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Mar-08	30-Apr-08	49151.56	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:58 PM	

+="CN82791"	"CORRELATION OF TRACKS ON THE SHORE FACILITY COMBAT SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Mar-08	30-Jun-08	47652.33	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 12:58 PM	

+="CN82798"	"Provision of Probity Advise"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	11-Mar-08	06-May-08	57508.00	=""	="TRESSCOX"	13-May-08 12:59 PM	

+="CN82811"	"Circuit Card Assembly"	="Defence Materiel Organisation"	13-May-08	="Electronic hardware and component parts and accessories"	12-Mar-08	05-May-08	40268.42	=""	="RAYTHEON TECHNICAL SERVICES COMPANY"	13-May-08 01:01 PM	

+="CN82816"	"GPS Plotter with upgraded chart software"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	11-Mar-08	28-Mar-08	49020.00	=""	="HUNTS MARINE"	13-May-08 01:02 PM	

+="CN82817"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	13-Jun-08	49368.00	=""	="DUPLICATE - USE V ENDOR 1050211"	13-May-08 01:02 PM	

+="CN82822"	"E-RECRUITMENT SYSTEM FOR 2009 STRATEGIC RECRUITMENT WITHIN THE DMO"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	11-Mar-08	30-Jun-08	43974.70	=""	="NGA.NET PTY LTD"	13-May-08 01:03 PM	

+="CN82826"	"Wave Guide Assembly"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	14-Mar-08	10-Jun-08	40344.34	=""	="MICROWAVE ENGINEERING CORPORATION D"	13-May-08 01:03 PM	

+="CN82837"	"Provision of an Aircraft Avionics Log Engineer 1"	="Defence Materiel Organisation"	13-May-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	51240.00	=""	="NOVA DEFENCE"	13-May-08 01:05 PM	

+="CN82851"	"Lease of Toyota Tarago"	="Defence Materiel Organisation"	13-May-08	="Motor vehicles"	14-Mar-08	30-Jun-09	43955.50	=""	="DAS FLEET"	13-May-08 01:07 PM	

+="CN82854"	"Provision of an Aircraft Avionics Log Engineer 2"	="Defence Materiel Organisation"	13-May-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	53222.40	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 01:07 PM	

+="CN82866"	"Provide Training Manager Services Phase 3"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	12-Mar-08	30-Jun-08	44000.00	=""	="MAX SHADAY"	13-May-08 01:09 PM	

+="CN82868"	"Provision of Radar System Specialist Support DSTO to HUGPH2.3 RPT - BAF Testing"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	12-Mar-08	31-Oct-08	54680.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:09 PM	

+="CN82892"	"RBS 70 SPARES"	="Defence Materiel Organisation"	13-May-08	="Light weapons and ammunition"	12-Feb-08	12-Nov-08	52368.27	=""	="SAAB BOFORS DYNAMICS AB"	13-May-08 01:12 PM	

+="CN82897"	"MADE TO MEASURE UNIFORMS FOR HMAS STERLING"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Feb-08	30-Jun-08	47499.99	=""	="FULLIN TAILORING CO"	13-May-08 01:13 PM	

+="CN82908"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	13-Feb-08	40332.00	=""	="DUPLICATE - USE V ENDOR 1050211"	13-May-08 01:14 PM	

+="CN82917"	"DEVELOPMENT OF NOKIA GATEWAY SWITCH SOP"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	23-Apr-08	16-May-08	48250.09	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 01:32 PM	

+="CN82918"	"Survey of GayLord Galley equipment on FFG ships"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	23-Apr-08	30-Apr-08	53495.20	=""	="ENVIROAIR PTY LTD"	13-May-08 01:33 PM	

+="CN82927"	"Goggles"	="Defence Materiel Organisation"	13-May-08	="Safety apparel"	22-Apr-08	29-Apr-08	54622.86	=""	="EYE SAFETY SYSTEMS INC"	13-May-08 01:34 PM	

+="CN82951"	"HSD RISK MANAGEMENT FRAMEWORK"	="Defence Materiel Organisation"	13-May-08	="Management support services"	22-Apr-08	30-Jun-08	42000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	13-May-08 01:38 PM	

+="CN82956"	"P/N: 2980, Complete Set, Bruel & Kjaer, AS350BA Helicopter Engine and Vibration Analysis Kit."	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	21-Apr-08	04-Jun-08	41157.60	=""	="BRUEL AND KJAER AUST PTY LTD"	13-May-08 01:39 PM	

+="CN82969"	"Rectify electrical issues with the current build ot the RTCs'"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	22-Apr-08	30-Jun-08	43216.75	=""	="THALES AUSTRALIA"	13-May-08 01:41 PM	

+="CN82991"	"Use of Exisitng ASP Contract - Storage facilties for 90 day spares"	="Defence Materiel Organisation"	13-May-08	="Material Handling and Conditioning and Storage Machinery and their Accessories and Supplies"	16-Apr-08	19-Sep-08	53695.95	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:44 PM	

+="CN82994"	"This P.O. has been raised to cover the transport, and test costs for Black Hawk A25-204 engines, GE-"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	16-Apr-08	30-May-08	44000.00	=""	="ASIA PACIFIC AEROSPACE"	13-May-08 01:45 PM	

+="CN83005"	"Implement SG2 for SUCCESS ISO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	15-Apr-08	30-May-08	49759.44	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:46 PM	

+="CN83006"	"EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	30-Jun-08	42100.01	=""	="COMPUTERCORP (LOGISTICS)"	13-May-08 01:46 PM	

+="CN83007"	"24x7 support to 114MCRU"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	15-Apr-08	15-May-08	53570.79	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 01:46 PM	

+="CN83010"	"Cisco SmartNet contract renewal"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	15-Apr-08	15-May-08	47863.20	=""	="ARION SYSTEMS PTY LTD"	13-May-08 01:47 PM	

+="CN83018"	"RING HALF"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	14-Apr-08	01-Mar-09	52608.39	=""	="ROLLS - ROYCE PLC"	13-May-08 01:48 PM	

+="CN83025"	"SOFTWARE"	="Defence Materiel Organisation"	13-May-08	="Software"	15-Apr-08	15-Apr-08	44000.00	=""	="SPF ASIA PACIFIC PTY LTD"	13-May-08 01:49 PM	

+="CN83027"	"Margin payment for professional services"	="Defence Materiel Organisation"	13-May-08	="Environmental Services"	15-Apr-08	16-Apr-08	54652.06	=""	="THALES AUSTRALIA"	13-May-08 01:49 PM	

+="CN83029"	"TERMS AND CONDITIONS OF THIS PURCHASE ORDER ARE IN CONTRACT C388562"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	15-Apr-08	30-Jun-08	42657.76	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	13-May-08 01:50 PM	

+="CN83045"	"Modification Fuel System - WLR"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	17-Apr-08	13-May-08	54140.90	=""	="AUSTRALIAN FUEL CELLS PTY LTD"	13-May-08 01:52 PM	

+="CN83049"	"Generic Data Import & Batch Search Process & Classification Rankings for FBI Forensic Desktop Software"	="Australian Taxation Office"	13-May-08	="Software"	13-May-08	30-Jun-08	48840.00	=""	="Nuix Pty Ltd"	13-May-08 01:53 PM	

+="CN83071"	"S&Q 02/084 - ADDITIONAL SHEARWIRES"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	16-Apr-08	30-Apr-08	51359.24	=""	="BAE SYSTEMS AUSTRALIA - GBP"	13-May-08 01:56 PM	

+="CN83072"	"S&Q 02/073 - SPSE RIVET TOOLING"	="Defence Materiel Organisation"	13-May-08	="Tools and General Machinery"	16-Apr-08	15-May-08	51676.90	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 01:56 PM	

+="CN83090"	"PPBSPO Brisbane Office Refurbishment"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	16-Apr-08	30-Jun-08	49537.26	=""	="TENIX DEFENCE PTY LTD"	13-May-08 01:58 PM	

+="CN83094"	"Sustainment Study for TACAN"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	16-Apr-08	30-May-08	50629.70	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:59 PM	

+="CN83100"	"Modify Design and Build new Communication and Power panels for Mission Planning"	="Defence Materiel Organisation"	13-May-08	="Manufacture of electrical goods and precision instruments"	01-May-08	12-Jun-08	55992.20	=""	="NEXUS ELECTRONICS PTY LTD"	13-May-08 02:00 PM	

+="CN83110"	"COSTS REALTING TO SECURITY IN DARWIN"	="Defence Materiel Organisation"	13-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	02-May-08	50498.80	=""	="THALES AUSTRALIA"	13-May-08 02:01 PM	

+="CN83113"	"WAH SCAFFOLDING SOLUTION"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	02-May-08	30-May-08	53372.00	=""	="AMCE PTY LTD"	13-May-08 02:01 PM	

+="CN83123"	"Repair and modification of an F/A-18 Hornet  AMAD."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	01-May-08	21-Jul-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	13-May-08 02:03 PM	

+="CN83125"	"Development of an Explosive Ordance Certificate"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	05-Sep-08	59720.96	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 02:03 PM	

+="CN83132"	"Use of Exisitng ASP Contract  - 90 Day Spares Cargo Oil Pump"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	30-Apr-08	11-Jul-08	47138.91	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 02:04 PM	

+="CN83142"	"Replace 70 Tonne Crane Hoses on HMAS MANOORA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-May-08	20-Jun-08	48202.00	=""	="FORGACS SHIP REPAIR"	13-May-08 02:06 PM	

+="CN83158"	"Extend NASPO existing Carpark"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	05-May-08	30-Jun-08	46180.00	=""	="JIRGENS CIVIL PTY LTD"	13-May-08 02:08 PM	

+="CN83186"	"Hire of Training Room"	="Defence Materiel Organisation"	13-May-08	="Classroom and instructional and institutional furniture and fixtures"	05-May-08	31-Oct-08	49882.80	=""	="COMPUCAT RESEARCH PTY LTD"	13-May-08 02:12 PM	

+="CN83188"	"Develop of Environmental  UPS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	02-May-08	25-Jun-08	54296.00	=""	="AVE TECHNOLOGIES PTY LTD"	13-May-08 02:12 PM	

+="CN83200"	"P5103-001-1 CONDUCT INCLINE EXPERIMENT FOR HMAS ARUNTA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	15-May-08	49912.34	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:15 PM	

+="CN83240"	"CYLINDER, COMPRESSED GAS"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	26-Apr-08	01-Aug-08	59700.35	=""	="FLUID POWER INC"	13-May-08 02:22 PM	

+="CN83248"	"AMACCS LSH purblications Re-write"	="Defence Materiel Organisation"	13-May-08	="Location and navigation systems and components"	24-Apr-08	18-Jun-08	41930.44	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 02:23 PM	

+="CN83251"	"Holden Caprice Sedan (SL) Qty 1"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	16-Oct-08	46225.11	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:23 PM	

+="CN83263"	"software subsriptions for CARIS HIPS and SIPS"	="Defence Materiel Organisation"	13-May-08	="Software"	23-Apr-08	31-May-08	46506.46	=""	="SONARTECH ATLAS PTY LTD"	13-May-08 02:25 PM	

+="CN83279"	"ENGINE SPARES"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	23-Apr-08	23-May-08	57266.51	=""	="ASIA PACIFIC AEROSPACE"	13-May-08 02:28 PM	

+="CN83287"	"IM Desk Officer (FY 7/08) Hours Extension"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	29-Apr-08	27-Jun-08	52052.00	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 02:29 PM	

+="CN83302"	"Delivery of GWEO DCMP Induction Training"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	30-Apr-08	30-Jun-08	45359.00	=""	="NOVA AEROSPACE"	13-May-08 02:31 PM	

+="CN83303"	"Impulse Carts Ph2 - milestone 1-40% Impulse Carts Ph2 - milestone 3-25%"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	30-Apr-08	30-Jun-08	48524.30	=""	="NOVA AEROSPACE"	13-May-08 02:31 PM	

+="CN83304"	"Web Tie down"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Apr-08	15-Jun-08	42931.09	=""	="DRALLIM INDUSTRIES LTD"	13-May-08 02:31 PM	

+="CN83313"	"Repair and modification of an F/A-18 Hornet AMAD."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	28-Apr-08	17-Jul-08	43028.40	=""	="TRIUMPH GEAR SYSTEMS INC"	13-May-08 02:33 PM	

+="CN83323"	"Vehicle Spray Booth and Baking Oven"	="Defence Materiel Organisation"	13-May-08	="Fabricated structural assemblies"	28-Apr-08	13-Jun-08	59818.00	=""	="ARDEN PTY LTD"	13-May-08 02:34 PM	

+="CN83333"	"12.7MM QCB SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Apr-08	26-Sep-08	54479.11	=""	="FN HERSTAL SA"	13-May-08 02:35 PM	

+="CN83350"	"PO raised for management of PSP payment against Contract 2941."	="Defence Materiel Organisation"	13-May-08	="Gun systems"	31-Mar-08	30-Apr-08	41800.18	=""	="CONNELL WAGNER VIC PTY LTD"	13-May-08 02:38 PM	

+="CN83354"	"This Roman PO has been raised in order to pay invo was raised as a Workshop Owned Stock Order instea"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	31-Mar-08	01-Apr-08	58107.50	=""	="HAWKER DE HAVILLAND"	13-May-08 02:39 PM	

+="CN83357"	"Computer Equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-May-08	59791.60	=""	="INTERWORLD ELECTRONICS &"	13-May-08 02:39 PM	

+="CN83366"	"4512.11 ENGINEERING INVESTIGATION FOR SPLASHPROOF PROTECTIVE COVERING FOR ELECTRICAL SWITCHBOARD"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-Apr-08	15-May-08	40174.20	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:40 PM	

+="CN83373"	"LAND AIR BREATHING CYLINDERS - 9 LITRE 300 BAR CARBON FIBRE"	="Defence Materiel Organisation"	13-May-08	="Fire fighting equipment"	29-Mar-08	30-Apr-08	56848.00	="6000020826"	="WORMALD TECHNOLOGY"	13-May-08 02:42 PM	

+="CN83376"	"ANTI-G SUITS"	="Defence Materiel Organisation"	13-May-08	="Safety apparel"	29-Mar-08	10-Jun-08	58521.40	=""	="AERO HARDWARE & PARTS CO INC"	13-May-08 02:42 PM	

+="CN83382"	"WEAPON SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Mar-08	01-Jun-08	46712.54	=""	="HECKLER & KOCH GMBH"	13-May-08 02:43 PM	

+="CN83384"	"F89A1 MINIMI SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	28-Mar-08	01-Nov-08	50665.51	=""	="FN HERSTAL SA"	13-May-08 02:43 PM	

+="CN83390"	"WA Periscope Workshop - Activity 09 - Clean Room Advanced Equipment (High)"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	58180.10	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:44 PM	

+="CN83408"	"Specifications & Standards Cross-Reference Data"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Apr-08	30-Jun-08	45936.00	=""	="GHD PTY LTD"	13-May-08 02:47 PM	

+="CN83428-A1"	"    Technical Assistance with the eBS Release    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	28-Aug-08	43890.00	=""	="Rapid Technology Pty Ltd"	13-May-08 02:53 PM	

+="CN83436"	"    HP DL380 G5 Servers    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	14-Mar-08	14-Apr-08	57680.92	=""	="ComputerCorp Pty Ltd"	13-May-08 03:23 PM	

+="CN64529"	"PURCHASE TWO RELAY ASSY GROUPS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	06-Mar-08	06-Jun-08	48804.71	=""	="Pall Australia"	13-May-08 03:57 PM	

+="CN83457"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	31-Aug-08	50330.94	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:28 PM	

+="CN83459"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,ANGLE;  VALVE,BUTTERFLY;  VALVE,BUTTERFLY;  VALVE,STOP-CHECK;  VALVE,GATE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Mar-08	01-Oct-08	44635.58	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	13-May-08 07:28 PM	

+="CN83469"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	01-Jan-09	42661.28	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:30 PM	

+="CN83479"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	27-Nov-08	46950.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:31 PM	

+="CN83480"	"Procurement of:  SEAL ASSEMBLY,SHAFT,SPRING LOADED"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	06-Mar-08	30-May-08	53735.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	13-May-08 07:31 PM	

+="CN83491"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	13-May-08	46800.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:32 PM	

+="CN83493"	"Procurement of:  CCLUTCH,FLEXIBLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	09-Jul-08	49111.30	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:33 PM	

+="CN83507"	"Procurement of:  LIGHT,CHEMILUMINESCENT;  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	13-May-08	46800.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:34 PM	

+="CN83523"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Mar-08	29-Oct-08	50769.00	=""	="NOSKE-KAESER NZ Ltd"	13-May-08 07:36 PM	

+="CN83524"	"Procurement of:  INTERFACE UNIT,COMMUNICATION EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	27-Oct-08	49860.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:36 PM	

+="CN83526"	"Procurement of:  ABSORBENT,CARBON DIOXIDE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	08-Jun-08	50250.00	=""	="CHEM-SUPPLY Pty Ltd"	13-May-08 07:37 PM	

+="CN83528"	"Procurement of:  COMPRESSOR,RECIPROCATING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	27-Jun-08	59155.00	=""	="COMPAIR (AUSTRALASIA) Ltd"	13-May-08 07:37 PM	

+="CN83531"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	13-May-08	52164.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	13-May-08 07:37 PM	

+="CN83533"	"Procurement of:  PARTS KIT,REGULATOR BREATHING GAS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	25-Jun-08	58496.00	=""	="PREECE T D AND CO Pty Ltd"	13-May-08 07:38 PM	

+="CN83539"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	13-May-08	46800.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	13-May-08 07:38 PM	

+="CN83569"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	26-Jun-08	48906.00	=""	="PENNSYSTEMS Pty Ltd"	13-May-08 07:42 PM	

+="CN83581"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	27-Oct-08	50862.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:44 PM	

+="CN83588"	"Procurement of:  SYRINGE,INDUSTRIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	13-May-08	51220.00	=""	="SHELL CO OF AUSTRALIA Ltd"	13-May-08 07:45 PM	

+="CN83591"	"Procurement of:  ALARM,GAS,AUTOMATIC;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	01-Apr-08	13-May-08	52450.00	=""	="AIR-MET SCIENTIFIC Pty Ltd"	13-May-08 07:45 PM	

+="CN83601"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	31-Aug-08	58135.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:46 PM	

+="CN83609"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	13-May-08	57276.60	=""	="LAMINAR FLOW Pty Ltd"	13-May-08 07:47 PM	

+="CN83623"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	29-Jul-08	58767.45	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:49 PM	

+="CN83624"	"Procurement of:  COUPLER,ANTENNA"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	13-May-08	52548.11	=""	="THALES AUSTRALIA"	13-May-08 07:49 PM	

+="CN83627"	"Procurement of:  SEAL,PLAIN"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	13-Jun-08	57950.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	13-May-08 07:49 PM	

+="CN83628"	"Procurement of:  WIRE ROPE ASSEMBLY,SINGLE LEG"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	23-Sep-08	40166.08	=""	="BEAK RAST ENGINEERING"	13-May-08 07:50 PM	

+="CN83639"	"Procurement of:  VALVE,DIAPHRAGM,STOP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	11-Aug-08	50601.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	13-May-08 07:51 PM	

+="CN83651"	"Procurement of:  HUMIDITY ELEMENT,RESISTANCE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	17-May-09	47291.12	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:53 PM	

+="CN83652"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	17-Apr-08	16-Aug-08	40528.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	13-May-08 07:53 PM	

+="CN83657"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	02-Jul-08	59817.60	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:53 PM	

+="CN83658"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	28-May-08	54940.20	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:53 PM	

+="CN83667"	"Procurement of:  GAS SPRING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	01-Jan-09	45881.10	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:55 PM	

+="CN83702"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	10-Mar-08	09-Mar-09	48898.70	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	13-May-08 07:59 PM	

+="CN83713"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,LINEAR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	08-Aug-08	50267.15	=""	="PARKER HANNIFIN AUST Pty Ltd"	13-May-08 08:01 PM	

+="CN83715"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	02-Apr-08	13-May-08	41167.72	=""	="ASC Pty Ltd"	13-May-08 08:01 PM	

+="CN83720"	"Procurement of:  GUIDE,TORSIONAL VIBRATION DAMPER;  SHIELD ASSEMBLY,BEARING;  SHIELD ASSEMBLY,BEARING;  O-RING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	15-Apr-08	24-Jul-08	48869.76	=""	="HEDEMORA DIESEL AUSTRALIA"	13-May-08 08:02 PM	

+="CN83729"	"Procurement of:  SIMULATOR GROUP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Apr-08	07-Nov-08	49500.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	13-May-08 08:03 PM	

+="CN83758"	"Refresher and Recency research project"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Information services"	21-Apr-08	25-Jun-08	49998.99	="TRS08/048"	="Rowland Pty Ltd"	14-May-08 10:18 AM	

+="CN83759"	"Contractor services - Stephen Sedgwick"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	18-Mar-08	27-Jun-08	40505.00	="TRS06/017"	="Collective Resources IT Recruitment"	14-May-08 10:18 AM	

+="CN83764"	"Expert Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Security and personal safety"	02-May-08	30-Jun-08	49500.00	="TRS08/111"	="Intelligent Risks Pty Ltd"	14-May-08 10:19 AM	

+="CN83765"	"Use of marine salvage ROV"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Marine transport"	05-May-08	30-May-08	48730.00	="TRS08/075"	="Land & Marine Consultants Pty Ltd"	14-May-08 10:19 AM	

+="CN83780"	"mechanical training"	="Royal Australian Mint"	14-May-08	="Work ethics or attitude training instructional materials"	09-Apr-08	09-Apr-08	50755.85	=""	="SCHULER PRESSEN GMBH"	14-May-08 10:31 AM	

+="CN83786"	"Supply of broadcasting tapes"	="Department of Parliamentary Services"	14-May-08	="Blank video tapes"	06-May-08	30-May-08	43978.00	=""	="Sony Australia Ltd"	14-May-08 10:40 AM	

+="CN83821"	"Utilities"	="Centrelink"	14-May-08	="Utilities"	06-Nov-07	30-Jun-08	49999.99	=""	="Power and Water Authority"	14-May-08 12:27 PM	

+="CN83836"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	29-Apr-08	30-Jun-08	59000.00	=""	="Air Frontier Pty Ltd"	14-May-08 12:29 PM	

+="CN83853"	"Optical surveillance services"	="Centrelink"	14-May-08	="Security surveillance and detection"	30-Apr-08	30-Jun-08	60000.00	=""	="M and A Investigations"	14-May-08 12:33 PM	

+="CN83855-A1"	"Advertising"	="Centrelink"	14-May-08	="Printed media"	14-Apr-08	30-Jun-08	55190.72	=""	="HMA Blaze Pty Ltd"	14-May-08 12:33 PM	

+="CN83883"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	25-May-08	51073.00	=""	="Integrated Cabling Solutions Pty Ltd"	14-May-08 12:37 PM	

+="CN83894"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:39 PM	

+="CN83907"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	28-Apr-08	28-Apr-08	42920.00	=""	="Novell Pty Ltd"	14-May-08 12:42 PM	

+="CN83908"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	28-Apr-08	01-Jun-08	59900.50	=""	="Diverse Data Communications (ACT)"	14-May-08 12:42 PM	

+="CN83910"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:42 PM	

+="CN83915"	"Audit Services"	="Centrelink"	14-May-08	="Accounting and auditing"	09-Apr-08	30-Jun-08	40095.00	=""	="Walter turnbull"	14-May-08 12:43 PM	

+="CN83916-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	09-Apr-08	30-Jun-08	55789.47	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	14-May-08 12:44 PM	

+="CN83917"	"Hotel, lodging and meetinig facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	09-Apr-08	30-Jun-08	50000.01	=""	="Outback Caravan Park"	14-May-08 12:44 PM	

+="CN83930"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	17-Apr-08	30-Jun-08	50000.01	=""	="Katherine Aviation Pty Ltd"	14-May-08 12:46 PM	

+="CN83944"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	07-Apr-08	02-May-08	59034.80	=""	="IBM Australia Pty Ltd"	14-May-08 12:49 PM	

+="CN84007"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	30-Apr-08	30-Apr-08	48796.00	=""	="Hallam Manufacturing Pty Ltd"	14-May-08 12:58 PM	

+="CN84015"	"Furniture, Hervey Bay, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	30-Jun-08	41960.60	=""	="Emtek Furniture"	14-May-08 01:00 PM	

+="CN84016"	"Clerical chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	09-Jun-08	46769.80	=""	="Bentley House Commercial Interiors"	14-May-08 01:00 PM	

+="CN84023"	"Transport Operations"	="Centrelink"	14-May-08	="Transport operations"	24-Apr-08	30-Jun-08	50000.01	=""	="Cabcharge Australia Pty Ltd"	14-May-08 01:02 PM	

+="CN84035"	"Clerical Chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	16-Apr-08	02-Jun-08	47819.20	=""	="Bentley House Commercial Interiors"	14-May-08 01:03 PM	

+="CN84038"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	01-May-08	41153.74	=""	="OPTUS NETWORKS PTY LTD"	14-May-08 01:04 PM	

+="CN84041"	"Project management services"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	30-Jun-08	44000.00	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 01:04 PM	

+="CN84043"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	14-Apr-08	30-Jun-08	48048.00	="RFTS07/0129"	="HiTech Personnel"	14-May-08 01:05 PM	

+="CN84047"	"Intra-government Communications Network"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	22-Apr-08	30-Sep-08	51645.00	=""	="Department of Finance and Deregulation"	14-May-08 01:05 PM	

+="CN84070"	"Leased rental accommodation Darwin"	="Australian Federal Police"	14-May-08	="Lease and rental of property or building"	01-May-08	30-Apr-09	41307.50	=""	="Colliers International (NT) Pty Ltd"	14-May-08 02:09 PM	

+="CN84074"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	53692.43	=""	="LANDROVER"	14-May-08 02:23 PM	

+="CN84086"	"Property Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	27-Aug-07	40915.15	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 03:00 PM	

+="CN84088"	"Annual Membership Fee"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	30-Aug-07	48171.00	=""	="ECA INTERNATIONAL"	14-May-08 03:00 PM	

+="CN84093"	"FACILITIES MANAGEMENT"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	22-Aug-07	40548.61	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 03:00 PM	

+="CN84097"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	08-Aug-07	28-Feb-08	44361.90	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:01 PM	

+="CN84140"	"FITOUT COST"	="Department of Human Services"	14-May-08	="Housings and cabinets and casings"	06-May-08	12-May-08	47762.00	=""	="SMI FITOUT PTY LTD"	14-May-08 03:43 PM	

+="CN84158"	"Accommodation"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	27-Aug-07	18-Sep-07	52625.00	=""	="Quay Grand Suites Sydney"	14-May-08 04:36 PM	

+="CN84160"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Aug-07	02-Sep-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	14-May-08 04:36 PM	

+="CN84178"	"Engineering Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	46500.00	=""	="JJ Mcdonald & Sons Engineering"	14-May-08 04:55 PM	

+="CN84180"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	03-Sep-07	21-Sep-07	40548.61	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 04:56 PM	

+="CN84181"	"Hotel Hire - APEC"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	03-Sep-07	25-Sep-07	41575.00	=""	="Quay Grand Suites Sydney"	14-May-08 04:56 PM	

+="CN84182"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	04-Sep-07	10-Sep-07	46676.33	=""	="TELSTRA CORPORATION"	14-May-08 04:56 PM	

+="CN84187"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	48625.51	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 04:57 PM	

+="CN84201"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	59717.78	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84229"	"Lease Costs"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Sep-07	02-Oct-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	14-May-08 05:04 PM	

+="CN84230"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	28-Sep-07	40332.60	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 05:04 PM	

+="CN84238"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	04-Sep-07	28-Feb-08	42127.28	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84245"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	26-Sep-07	28-Feb-08	42517.59	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:07 PM	

+="CN84248"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	29-Aug-07	26-Sep-07	59228.00	=""	="FILEGUARD"	14-May-08 05:07 PM	

+="CN84254"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	31-Aug-07	28-Sep-07	46530.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 05:08 PM	

+="CN84258"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	11-Sep-07	09-Oct-07	40920.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:08 PM	

+="CN84263"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	15-Oct-07	47389.76	=""	="LEXMARK INT (AUST) P/L"	14-May-08 05:09 PM	

+="CN84264"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	14-Sep-07	12-Oct-07	48614.39	=""	="CLAYTONS AUSTRALIA"	14-May-08 05:09 PM	

+="CN84267"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	19-Sep-07	17-Oct-07	40810.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:10 PM	

+="CN84268"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	19-Sep-07	17-Oct-07	40931.66	=""	="Commander Integrated Networks Pty L"	14-May-08 05:10 PM	

+="CN84282"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	31-Oct-07	56760.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:12 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val60000to80000.xls
@@ -1,1 +1,394 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN77990"	"Body Armor Enhancement Set Version 2"	="Defence Materiel Organisation"	12-May-08	="Body armour"	09-May-08	19-May-08	66587.40	="CC1V20"	="HELLWEG INTERNATIONAL PTY LTD"	12-May-08 08:46 AM	

+="CN78003"	"SN02737 - Kitchen Equip Audit Condition Appraisal"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	70339.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 09:30 AM	

+="CN78012"	"SPECTROFLUROMETER SYSTEM COMPRISING SP 2358i SPECTROGRAPH FILTER WHEEL"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	14-Dec-07	31-Jan-08	75693.99	=""	="COHERENT SCIENTIFIC PTY LTD"	12-May-08 09:33 AM	

+="CN78035"	"FURNITURE"	="Department of Defence"	12-May-08	="Accommodation furniture"	17-Dec-07	21-Jan-08	67595.00	=""	="ABLE OFFICE FURNITURE PTY LTD"	12-May-08 09:37 AM	

+="CN78036"	"SUPPORT FROM USAF - OP SLIPPER ROTATIONS"	="Department of Defence"	12-May-08	="Aircraft"	17-Dec-07	31-Dec-07	65861.51	=""	="DFAS OMAHA OPERATING LOCATION"	12-May-08 09:37 AM	

+="CN78045"	"Provision of labour hire to 1 SIG REGT from 1 Jan TO 31 Mar 08"	="Department of Defence"	12-May-08	="Transportation repair or maintenance services"	17-Dec-07	31-Mar-08	69129.18	=""	="DRAKE AUSTRALIA PTY LTD"	12-May-08 09:39 AM	

+="CN78057"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	76295.66	=""	="COMMANDER (ACT)"	12-May-08 09:42 AM	

+="CN78068"	"SOFTWARE"	="Department of Defence"	12-May-08	="Software"	19-Dec-07	30-Jun-08	73255.10	=""	="KAZ GROUP PTY LTD"	12-May-08 09:44 AM	

+="CN78072"	"UPDATE HQ AIR COMMAND AIR CONDITIONING PLANT"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	18-Dec-07	30-Jun-08	70590.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:45 AM	

+="CN78078"	"CONSULTANCY FOR CANUNGRA SIMULATION SITE"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	64062.90	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 09:46 AM	

+="CN78105"	"Software development support"	="Department of Defence"	12-May-08	="Temporary personnel services"	19-Dec-07	30-Jun-08	60005.39	=""	="KARU IT PTY LTD"	12-May-08 09:52 AM	

+="CN78126"	"Base-X 305 Sheler ECU and Ducting"	="Department of Defence"	12-May-08	="Environmental control systems"	18-Dec-07	31-Mar-08	79178.00	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78127"	"SITE AND REGIONAL EMS DESIGN AND REFRESH - PROJECT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	77000.00	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 09:56 AM	

+="CN78135"	"ALTC PETROLEUM MOBILE LABORATORY"	="Department of Defence"	12-May-08	="Fuels"	18-Dec-07	30-Jun-08	76288.70	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	12-May-08 09:57 AM	

+="CN78138"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	07-Jan-08	60445.00	=""	="IBM AUSTRALIA LTD"	12-May-08 09:58 AM	

+="CN78156"	"Base-X 305 Shelter   Flooring Sets"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	75997.90	=""	="IB SUPPLIES PTY LTD"	12-May-08 10:01 AM	

+="CN78157"	"Subscription to Scopus"	="Department of Defence"	12-May-08	="Electronic reference material"	18-Dec-07	02-Jan-08	79744.50	=""	="ELSEVIER B.V."	12-May-08 10:01 AM	

+="CN78162"	"PROVISION OF CONSULTANCY TO ACCREDIT THE DSVE PERSONAL VTC."	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Dec-07	15-Feb-08	79384.80	=""	="CONNELL WAGNER PTY LTD"	12-May-08 10:02 AM	

+="CN78175-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Jan-08	30-Jun-08	61848.00	=""	="Paxus Australia Pty Limited"	12-May-08 10:27 AM	

+="CN78179"	"Airport Policing Review"	="Australian Federal Police"	12-May-08	="Policing services"	01-Dec-07	11-Apr-08	78882.97	="RFT 01-2005"	="Oakton AA Services Pty Ltd (T/A Acumen Alliance)"	12-May-08 10:49 AM	

+="CN78230"	"LAPTOPS FOR ET NAVAL TRAINEES"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	25-Jan-08	71299.92	=""	="CENTRE COM FRANKSTON PTY LTD"	12-May-08 01:08 PM	

+="CN78239-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	01-Feb-08	65550.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:09 PM	

+="CN78241-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	28-Dec-07	61599.25	=""	="MCARTHUR MANAGEMENT SERVICES (QLD) PTY LTD"	12-May-08 01:09 PM	

+="CN78249-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	66741.37	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:10 PM	

+="CN78251-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	66741.37	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:10 PM	

+="CN78253-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	27-Jun-08	64935.00	=""	="HAYS SPECIALIST RECRUITMENT (AUSTRALIA) PTY LIMITED"	12-May-08 01:10 PM	

+="CN78275"	"Software  Development and travel costs"	="Department of Defence"	12-May-08	="Software"	05-Dec-07	30-Mar-08	69996.44	=""	="INQUIRION PTY LTD"	12-May-08 01:13 PM	

+="CN78299"	"FACOPS - SA2676"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	66000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 01:17 PM	

+="CN78308"	"SA2267 - JPEU Road Sealing"	="Department of Defence"	12-May-08	="Roads and landscape"	05-Dec-07	30-Jun-08	72710.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:18 PM	

+="CN78378"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Jan-08	64570.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	12-May-08 01:30 PM	

+="CN78433"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	03-Oct-08	77706.16	=""	="ACROSS BUSINESS CONSULTING PTY LTD"	12-May-08 01:39 PM	

+="CN78449"	"Modification to Facility 250 and Facility 17 at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="General building construction"	06-Dec-07	30-Jun-08	72050.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 01:42 PM	

+="CN78454"	"COMPUTER HP DC7800 + LP2065 - LCD FLAT SCREENS ASSET TAGGING AND DOCUMENTATION"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	20-Dec-07	68579.72	=""	="DATACOM SYSTEMS SA PTY LTD"	12-May-08 01:43 PM	

+="CN78462"	"PROFESSIONAL FEES"	="Department of Defence"	12-May-08	="Legal services"	06-Dec-07	30-Jun-08	79925.00	=""	="CLAYTON UTZ"	12-May-08 01:43 PM	

+="CN78475"	"Professional support to the DMES & LCART PDS"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	07-Dec-07	31-Jan-08	65100.20	=""	="APERIUM PTY LTD"	12-May-08 01:45 PM	

+="CN78491-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	08-Nov-07	30-Jun-08	77471.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78493"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	08-Nov-07	30-Jun-08	77471.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78512"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	05-Mar-08	60500.00	=""	="ICAN SOLUTIONS"	12-May-08 01:50 PM	

+="CN78515"	"Provision of contractor support"	="Department of Defence"	12-May-08	="Temporary personnel services"	20-Dec-07	21-Dec-07	65700.00	=""	="EBOR COMPUTING"	12-May-08 01:51 PM	

+="CN78518"	"CONTRACTOR SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	04-Mar-08	70274.80	=""	="PROJECT OUTCOMES PTY LTD"	12-May-08 01:51 PM	

+="CN78520"	"DECON-JEZZINE BARRACKS-SITE AUDITOR"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-09	78650.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 01:51 PM	

+="CN78523"	"WEBWASHER SUBSCRIPTION"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	01-Jan-09	61028.00	=""	="CYBERTRUST"	12-May-08 01:52 PM	

+="CN78532"	"OMNISCAN SYSTEM"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	20-Dec-07	28-Feb-08	76202.50	=""	="OLYMPUS AUST PTY LTD"	12-May-08 01:54 PM	

+="CN78549-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	02-Oct-07	30-Jun-08	65065.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:58 PM	

+="CN78553"	"IT training courses"	="Department of Foreign Affairs and Trade"	12-May-08	="Education and Training Services"	11-Oct-07	30-Jun-08	75000.00	=""	="DIMENSION DATA AUSTRALIA PTY LIMITED"	12-May-08 01:58 PM	

+="CN78562"	"TSS Contract Executive Engineer Support to MOD"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Dec-07	30-Jun-08	61600.00	=""	="DAINTREE SYSTEMS PTY LTD"	12-May-08 02:01 PM	

+="CN78588"	"FURNITURE FOR TRAINING CENTRE"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	20-Dec-07	30-Jan-08	68563.00	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 02:04 PM	

+="CN78589"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	62412.35	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:05 PM	

+="CN78598"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	15-Jan-08	62304.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 02:06 PM	

+="CN78607"	"Multi Computer Switches"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	20-Dec-07	07-Jan-08	78216.60	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:08 PM	

+="CN78618"	"Contract Approval for site Integration Services Hunter Business Centre"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Jan-08	14-Feb-08	73742.64	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:10 PM	

+="CN78679"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	10-Apr-08	30-Nov-08	76384.00	=""	="CONSUNET PTY LTD"	12-May-08 02:15 PM	

+="CN78690"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	18-Feb-08	74536.49	=""	="ALLTRANS INTERNATIONAL"	12-May-08 02:16 PM	

+="CN78699"	"Forklift"	="Department of Defence"	12-May-08	="Material handling machinery and equipment"	07-Jan-08	13-Mar-08	61986.10	=""	="TOYOTA MATERIAL HANDLING (WA)"	12-May-08 02:17 PM	

+="CN78703"	"SECURITY UPGRADE"	="Department of Defence"	12-May-08	="Security and control equipment"	14-Apr-08	30-Jun-08	79992.00	=""	="HONEYWELL LTD"	12-May-08 02:17 PM	

+="CN78771"	"REPAIR WATER MAIN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	14-Apr-08	30-Jun-08	70048.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:21 PM	

+="CN78785"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	79661.96	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:22 PM	

+="CN78786"	"fees"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Oct-07	30-Nov-07	72547.71	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:22 PM	

+="CN78840"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	12-May-08	="Recreational aircraft"	23-Nov-07	01-Sep-08	70866.25	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:25 PM	

+="CN78860"	"MOVEMENT OF FREIGHT FROM CAIRNS TO BRUSSELS, BELGI"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	26-Oct-07	06-Dec-07	62999.58	=""	="DGM AUSTRALIA"	12-May-08 02:27 PM	

+="CN78865"	"3 x Aircraft Accident Investigation Courses in the UK - CAPTs Steel, Eves and Gray"	="Department of Defence"	12-May-08	="Education and Training Services"	11-Apr-08	18-Apr-08	66964.29	=""	="SCHOOL OF ENGINEERING, CRANFIELD UN"	12-May-08 02:27 PM	

+="CN78869"	"QANTAS ACCN:02-231815"	="Department of Defence"	12-May-08	="Aircraft"	30-Sep-07	31-Dec-07	74941.29	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:27 PM	

+="CN78873"	"PROJECTORS"	="Department of Defence"	12-May-08	="Photographic and recording media"	02-Jan-08	29-Feb-08	62672.50	=""	="AVPRO"	12-May-08 02:28 PM	

+="CN78878"	"qantas invoice"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Oct-07	31-Oct-07	62296.33	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:28 PM	

+="CN78883"	"MATERIALS AND LABOUR FOR SPRUNG TENT CONSTRUCTION FINAL PAYMENT"	="Department of Defence"	12-May-08	="General building construction"	08-Apr-08	10-Apr-08	65405.99	=""	="MR FAEIQ FARHAN HASAN"	12-May-08 02:28 PM	

+="CN78892"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	72270.00	=""	="BORLAND AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78935"	"DIER 0607-1166 Procurement of a Blade Chassis and"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	30-May-08	60028.10	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:32 PM	

+="CN78958"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	65127.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:34 PM	

+="CN78965"	"CONTACT PAUL MEULENBROEK 08 8935 4622"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	17-Dec-07	30-Jun-08	73338.98	=""	="ASSET SERVICES"	12-May-08 02:34 PM	

+="CN78971"	"RESEARCH INTO THE DESIGN OF OPTIMUM DATA SCHEMA'S FOR RAN MAINTENANCE DATA & CODIFICATION O"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	17-Dec-07	31-Jan-08	75000.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	12-May-08 02:34 PM	

+="CN78972"	"LEASE OF VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	18-Apr-08	01-Jun-08	66424.88	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:35 PM	

+="CN78975"	"LEASE OF VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	18-Apr-08	01-Jun-08	66389.37	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 02:35 PM	

+="CN79002"	"TSS Contract Software Engineering Services for C3ID"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Dec-07	20-May-08	66000.00	=""	="HIGHWAY 20 PTY LTD"	12-May-08 02:37 PM	

+="CN79004"	"PORT COSTS"	="Department of Defence"	12-May-08	="Transportation services equipment"	11-Apr-08	30-Apr-08	70790.77	=""	="PDL TOLL"	12-May-08 02:37 PM	

+="CN79032"	"REQUIRED FOR KIT 1 FOR DEMALSH"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	17-Dec-07	23-Dec-07	66645.14	=""	="VELDEMAN AUSTRALIA PTY LTD"	12-May-08 02:39 PM	

+="CN79040"	"Security Consultancy Services"	="Department of Defence"	12-May-08	="Security and control equipment"	07-Apr-08	30-Jun-08	79750.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:40 PM	

+="CN79056"	"rental payments"	="Department of Defence"	12-May-08	="Accommodation furniture"	02-Apr-08	30-Apr-08	67848.08	=""	="ELCEETEE TRUST -E-"	12-May-08 02:41 PM	

+="CN79063"	"FDI Master Plan"	="Department of Defence"	12-May-08	="Land and soil preparation and management and protection"	17-Dec-07	30-Jun-08	70360.40	=""	="RESOLVE FM"	12-May-08 02:41 PM	

+="CN79064"	"Site Integration Services"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	02-Jun-08	72900.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 02:41 PM	

+="CN79090"	"SN02294 - Hazardous Substances and Dangerous Goods"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	68371.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:44 PM	

+="CN79096"	"QANTAS ACCOUNT FOR JANUARY 2008"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	01-Apr-08	01-Apr-08	67547.57	=""	="QANTAS"	12-May-08 02:45 PM	

+="CN79100"	"COMPUTER EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	68705.41	=""	="KAZ GROUP PTY LTD"	12-May-08 02:45 PM	

+="CN79103"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Jan-08	05-Apr-08	78973.20	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:45 PM	

+="CN79105"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Mar-08	05-Apr-08	78973.20	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:46 PM	

+="CN79110"	"connectors base-x tents"	="Department of Defence"	12-May-08	="Prefabricated structures"	07-Apr-08	10-Jun-08	63167.50	=""	="IB SUPPLIES PTY LTD"	12-May-08 02:46 PM	

+="CN79191"	"Tenix Multiple Computer Switches units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	64798.87	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79199"	"Tenix Multiple Computer Switches Units"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	18-Apr-08	76233.96	=""	="TENIX DATAGATE PTY LTD"	12-May-08 02:54 PM	

+="CN79215"	"IT devices"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	04-Apr-08	30-May-08	75949.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 02:56 PM	

+="CN79237"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	60000.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	12-May-08 02:58 PM	

+="CN79238"	"Immediate and Urgent General Building Works"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	23-Nov-07	30-Jun-08	60500.02	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79243"	"AIRCRAFT PLATFORMS / STANDS"	="Department of Defence"	12-May-08	="Prefabricated structures"	03-Apr-08	30-May-08	64515.00	=""	="COUNTRYWIDE ENGINEERING"	12-May-08 02:59 PM	

+="CN79260"	"Delivery of CMC CNNSW - FP&EM Fire Reactive (Non-LIA) work directions for FY04/05"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	06-Jul-05	30-Jun-06	64541.03	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:00 PM	

+="CN79262"	"Delivery of CMC CNNSW - FP&EM RWL Reactive (inc. Force Majeure) work directions for FY05-06"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	16-Jan-08	30-Jun-08	73933.62	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79289"	"COGENT REQUIRED TO CONDUCT THE CORPORATE & FINANCIAL EVALUATION OF VIDEO CONFERENCING."	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	31-Dec-08	76890.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	12-May-08 03:04 PM	

+="CN79322"	"press advertising"	="Department of Defence"	12-May-08	="Advertising"	31-Oct-07	24-Apr-08	69675.40	=""	="HMA BLAZE PTY LTD"	12-May-08 03:07 PM	

+="CN79366"	"RELEVANT DOCUMENTATION PREPARED"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	30-Jun-08	69382.50	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	12-May-08 03:10 PM	

+="CN79369"	"CATALYST 3560E 48 10/100/1000+2 10GEX2 265WIPB SMARTNET ONSITE 24X7X4"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	09-May-08	77351.60	=""	="COMPUTERCORP PTY LTD"	12-May-08 03:10 PM	

+="CN79383"	"OFFICE EQUIPMENT REPAIRS - OBGW"	="Department of Defence"	12-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	01-May-08	67723.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	12-May-08 03:11 PM	

+="CN79408"	"PowerPC CPU Boards"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	01-Apr-08	24-Jun-08	72930.00	=""	="BRAETEC PTY LTD"	12-May-08 03:13 PM	

+="CN79411"	"Logistics Support for Darwin and Tindal for Pitch Black 2008."	="Department of Defence"	12-May-08	="Human resources services"	08-Apr-08	30-Jun-08	60508.80	=""	="CUBIC DEFENSE APPLICATIONS INC"	12-May-08 03:14 PM	

+="CN79419"	"RELOCATION OF DSTO FROM PYRMONT TO ATP REFERN."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	63425.78	=""	="TAC PACIFIC PTY LTD"	12-May-08 03:14 PM	

+="CN79427"	"S5262, WR 300073784. Consultation to develop techn including design of;"	="Department of Defence"	12-May-08	="Environmental control systems"	08-Apr-08	30-Jun-08	65752.50	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 03:14 PM	

+="CN79428"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	67599.99	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79430"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Manufacturing technologies"	18-Apr-08	22-Apr-08	61820.00	=""	="PLACARD PTY LTD"	12-May-08 03:15 PM	

+="CN79441"	"QANTAS ACCOUNT 1 AVN REGT JANUARY ACCOUNT NO 04-422406"	="Department of Defence"	12-May-08	="Passenger transport"	31-Jan-08	21-Feb-08	79820.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:15 PM	

+="CN79455"	"AIR 7000 SHARP MAK VR-FORCES DEVELOPMENT ENVIRONME NT"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	07-Apr-08	16-Apr-08	77000.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	12-May-08 03:16 PM	

+="CN79513"	"Site Clearance of former Point Cook RAAF training grounds"	="Department of Defence"	12-May-08	="Environmental Services"	08-Apr-08	30-May-08	63800.00	=""	="TRANSFIELD SERVICES PTY LTD"	12-May-08 03:20 PM	

+="CN79631"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	79932.60	=""	="G&D AUSTRALASIA PTY LTD"	12-May-08 03:28 PM	

+="CN79642"	"Provision of equipment to improve target mounting on tower."	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	15-Nov-07	30-Jun-08	77000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	12-May-08 03:29 PM	

+="CN79650"	"Provision of IT Hardware"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	78593.90	=""	="Gemalto Pty Ltd"	12-May-08 03:29 PM	

+="CN79654"	"VARIOUS VEHICLE AND BOBCAT LEASING"	="Department of Defence"	12-May-08	="Motor vehicles"	31-Jan-08	31-Jan-08	68908.16	=""	="FUTURE SERVICES GENERAL TRADING CO."	12-May-08 03:30 PM	

+="CN79687"	"VIC Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	75432.42	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:33 PM	

+="CN79728"	"AFM00961"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	25-Mar-08	04-Jun-08	76329.00	=""	="ETMC TECHNOLOGIES PTY LTD"	12-May-08 03:35 PM	

+="CN79729"	"OA3YVJ SDSS payment failed due to workhop order be selected on PO creation."	="Defence Materiel Organisation"	12-May-08	="Aircraft"	12-Feb-08	13-Feb-08	60445.00	=""	="HAWKER DE HAVILLAND"	12-May-08 03:35 PM	

+="CN79783"	"EWSP AFT RADOME MODIFICATION"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	15-Feb-08	20-Jun-08	63654.03	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 03:39 PM	

+="CN79822"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	07-Apr-08	30-Jun-08	67894.20	=""	="Talent International (ACT) Pty Ltd"	12-May-08 03:41 PM	

+="CN79828"	"Provision of Printing Services"	="Medicare Australia"	12-May-08	="Graphic design"	08-Apr-08	30-Jun-08	79365.00	=""	="GREY WORLDWIDE CANBERRA PTY LTD"	12-May-08 03:42 PM	

+="CN79837"	"Services of AIR05276PH8A ESM ATE Project Engineering Manager"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	18-Feb-08	30-Jun-08	76373.96	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 03:43 PM	

+="CN79842"	"ISO CONTAINERS - AIRCONDITIONED"	="Department of Defence"	12-May-08	="Containers and storage"	15-Nov-07	21-Dec-07	76802.40	=""	="ROYAL WOLF TRADING AUSTRALIA"	12-May-08 03:43 PM	

+="CN79845"	"CISCO Hardware"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	31-Dec-07	62317.22	=""	="GETRONICS"	12-May-08 03:43 PM	

+="CN79852"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Business administration services"	09-Apr-08	30-Jun-08	79842.40	=""	="OAKTON AA SERVICES PTY LTD"	12-May-08 03:43 PM	

+="CN79863"	"Printers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	15-Nov-07	21-Dec-07	67496.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	12-May-08 03:44 PM	

+="CN79904"	"MHC STERN TUBE REPLACEMENT TASK# 101762"	="Department of Defence"	12-May-08	="Military watercraft"	27-Mar-08	30-Apr-08	72539.50	=""	="THALES AUSTRALIA"	12-May-08 03:47 PM	

+="CN79941"	"Use of Exisitng ASP Contract.- ECP for Alpha Lubricator"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	23-May-08	77521.40	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:50 PM	

+="CN79947"	"Use of Exisitng ASP Contract.- ECP for Engine Diagnostic System"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	23-May-08	71374.60	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 03:51 PM	

+="CN79948"	"GWEO Temporary Training Manger - Continuation"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	27-Mar-08	20-Jun-08	64064.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 03:51 PM	

+="CN79956"	"PC9 SPARES"	="Department of Defence"	12-May-08	="Aircraft equipment"	27-Mar-08	27-Oct-08	67947.08	=""	="MARTIN BAKER AIRCRAFT CO LTD"	12-May-08 03:51 PM	

+="CN79959"	"MILDS SENSOR SOFTWARE UPGRADE"	="Defence Materiel Organisation"	12-May-08	="Air transportation support systems and equipment"	14-Feb-08	31-Mar-08	68785.11	=""	="EADS DEUTSCHLAND GMBH DEFENCE ELECT"	12-May-08 03:52 PM	

+="CN79973"	"ACCOMMODATION FOR 2008 DMO GRADUATE PROGRAM"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	14-Feb-08	30-Jun-08	60000.00	=""	="PINNACLE APARTMENTS HOTEL"	12-May-08 03:53 PM	

+="CN79988"	"Supply of fresh rations"	="Department of Defence"	12-May-08	="Prepared and preserved foods"	05-Nov-07	31-Jan-08	74080.20	=""	="WOOLWORTHS SA DIVISION"	12-May-08 03:55 PM	

+="CN80005"	"telephone charges during maintenance period 28"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	11-Dec-07	31-Jan-08	78100.00	=""	="CAIRNS SLIPWAYS (QLD) PTY LTD"	12-May-08 03:56 PM	

+="CN80008"	" PROFESSIONAL FEES AND DISBURSEMENTS "	="Department of Defence"	12-May-08	="Legal services"	01-Apr-08	30-Jun-08	68729.99	=""	="BLAKE DAWSON WALDRON"	12-May-08 03:57 PM	

+="CN80016"	"IT LICENCE"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	03-Apr-08	30-Apr-08	70786.10	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 03:57 PM	

+="CN80026"	"CONSULTANCY SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	30-Jun-08	77000.00	=""	="PALADIN RISK MANAGEMENT SERVICES"	12-May-08 03:58 PM	

+="CN80029"	"LEASE FEES FOR 4 ARMOURED TOYOTA LANDCRUISERS"	="Department of Defence"	12-May-08	="Motor vehicles"	29-Feb-08	26-Mar-08	78981.84	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 03:58 PM	

+="CN80070"	"CONDUCT MESS UPGRADES HMAS KANIMBLA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Apr-08	25-Jun-08	60602.30	=""	="SYDNEY HARBOUR BOATBUILDERS"	12-May-08 04:01 PM	

+="CN80093"	"270162575 - Russell- CP"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	01-Nov-07	30-Jun-08	77000.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 04:02 PM	

+="CN80106"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	07-Feb-08	28-Oct-08	66487.20	=""	="KAMAN AEROSPACE INTL CORP"	12-May-08 04:03 PM	

+="CN80120"	"WAVEGUIDE SWITCH"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Apr-08	01-Feb-09	78463.85	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 04:04 PM	

+="CN80132"	"Training for ADF members"	="Department of Defence"	12-May-08	="Classroom and instructional and institutional furniture and fixtures"	20-Nov-07	30-Jun-08	78941.50	=""	="PERSONNEL PLACEMENT CONSULTANCIES"	12-May-08 04:05 PM	

+="CN80144"	"MATERIALS & LABOUR FOR SPRUNG TENT CONSTRUCTION - PARTIAL PAYMENT"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	14-Jan-08	29-Feb-08	76292.84	=""	="MR FAEIQ FARHAN HASAN"	12-May-08 04:05 PM	

+="CN80165"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	68650.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:07 PM	

+="CN80196"	"QANTAS CHARGES FOR DS-CNNSW PERSONNEL NOV/DEC07"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	30-Jun-08	73739.23	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:10 PM	

+="CN80207"	"QANTAS ACC"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	28-Feb-08	77750.13	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:11 PM	

+="CN80213"	"Remediated Schedule Review"	="Defence Materiel Organisation"	12-May-08	="Management support services"	05-Feb-08	14-Mar-08	62062.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:11 PM	

+="CN80219"	"DTS 69 Provision of TADRS Technical Support"	="Defence Materiel Organisation"	12-May-08	="Surveillance and detection equipment"	05-Feb-08	15-Jun-08	75707.51	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 04:11 PM	

+="CN80247"	"JEFM Project Contractor Support"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-08	68092.81	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:13 PM	

+="CN80256"	"Scoping Study Serial Item / Configuration Tracking"	="Department of Defence"	12-May-08	="Software"	20-Dec-07	29-Feb-08	64640.40	=""	="FUJITSU AUSTRALIA LIMITED"	12-May-08 04:14 PM	

+="CN80260"	"QANTAS INVOICE NOV.2007 - RHQ 1 CDO REGIMENT"	="Department of Defence"	12-May-08	="Aircraft passenger restraints"	30-Nov-07	30-Jun-08	61097.52	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:15 PM	

+="CN80271"	"Repair of ADSCC Ka HPA 7309"	="Department of Defence"	12-May-08	="Professional engineering services"	10-Apr-08	30-Jun-08	73382.33	=""	="OPTUS BILLING SERVICES PTY LTD"	12-May-08 04:16 PM	

+="CN80293"	"ROAD CHTR OP SLIPPER"	="Department of Defence"	12-May-08	="Product and material transport vehicles"	21-Nov-07	03-Dec-07	70000.00	=""	="NORTHLINE PTY LTD"	12-May-08 04:17 PM	

+="CN80283"	"NSN 4670-66-131-8241, Canopy Personnel Parachute"	="Defence Materiel Organisation"	12-May-08	="Aerospace systems and components and equipment"	29-Apr-07	21-Sep-08	79031.37	=""	="Milspec Services Pty Ltd"	12-May-08 04:18 PM	

+="CN80298-A1"	"GST ON SATELLITE PAYMENT"	="Department of Defence"	12-May-08	="Satellites"	12-Feb-08	28-Feb-10	68048.36	=""	="STRATOS"	12-May-08 04:18 PM	

+="CN80323"	"Refurbishment of Enhanced Combat Body Armour Various sizes"	="Department of Defence"	12-May-08	="Personal safety and protection"	14-Apr-08	16-May-08	71555.72	=""	="HELLWEG INTERNATIONAL"	12-May-08 04:21 PM	

+="CN80335"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	20-Mar-08	75000.00	=""	="KOBOLD SERVICE CANBERRA"	12-May-08 04:21 PM	

+="CN80336"	"This Purchase Order is raised to procure items for CWIS Tender Evaluation."	="Department of Defence"	12-May-08	="Safety apparel"	20-Dec-07	16-Jan-08	71321.35	=""	="AVIATION SAFETY & DEFENCE"	12-May-08 04:21 PM	

+="CN80412"	"Project Support"	="Department of Defence"	12-May-08	="Domestic pet products"	16-Nov-07	30-Jun-08	68206.46	=""	="INFOFOCUS AUSTRALIA"	12-May-08 04:25 PM	

+="CN80437"	"Notebook computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	79331.64	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 04:27 PM	

+="CN80444"	"EQUIPMENT"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	61526.10	=""	="MEASUREMENT INNOVATION PTY LTD"	12-May-08 04:27 PM	

+="CN80448"	"POC: CARL BLACKMORE CONTACT: 08 9956 2526"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	66939.07	=""	="MEASUREMENT INNOVATION PTY LTD"	12-May-08 04:27 PM	

+="CN80499"	"Beval Gear"	="Department of Defence"	12-May-08	="Aircraft equipment"	11-Apr-08	30-Apr-08	77593.07	=""	="ASIA PACIFIC AEROSPACE"	12-May-08 04:31 PM	

+="CN80510"	"Develop Explosive Ordnance Certification Plan (EOCP) for ESSM on FFG Class ships"	="Department of Defence"	12-May-08	="Military watercraft"	11-Apr-08	30-May-08	60555.00	=""	="NOVA DEFENCE"	12-May-08 04:32 PM	

+="CN80531"	"Generator replacement for MMTR"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Apr-08	31-May-08	71577.00	=""	="GENERATOR POWER"	12-May-08 04:33 PM	

+="CN80533"	"Project Insurance"	="Department of Foreign Affairs and Trade"	12-May-08	="Insurance and retirement services"	01-Aug-07	29-Jan-08	77993.01	=""	="Comcover"	12-May-08 04:33 PM	

+="CN80534"	"VIDEO CONFERENCE SYSTEM TO FACILITATE MEETINGS BETWEEN ASPSPO AND ADL BASED COMPANIES."	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	07-Feb-08	30-Apr-08	67372.16	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 04:33 PM	

+="CN80536"	"Training"	="Department of Defence"	12-May-08	="Software"	10-Jan-08	30-Jun-08	70000.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	12-May-08 04:33 PM	

+="CN80537"	"DIVEX DEF (AUST) 5000 DRAWING PACKAAGE"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	20-Dec-07	30-Jan-08	71500.00	=""	="DIVEX ASIA PACIFIC PTY LTD"	12-May-08 04:33 PM	

+="CN80542"	"Hotel Hire - APEC 2007"	="Department of Foreign Affairs and Trade"	12-May-08	="Hotels and lodging and meeting facilities"	03-Aug-07	29-Aug-07	61840.00	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	12-May-08 04:34 PM	

+="CN80557"	"Property Expenses"	="Department of Foreign Affairs and Trade"	12-May-08	="Real estate services"	06-Aug-07	06-Aug-07	73748.68	=""	="Knight Frank (Vic) Pty Ltd"	12-May-08 04:35 PM	

+="CN80560"	"Lease of 2  vehicles, plus petrol/tyre costs for PPBSPO"	="Department of Defence"	12-May-08	="Motor vehicles"	21-Dec-07	30-Jun-09	68259.68	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:35 PM	

+="CN80600"	"GFM"	="Department of Defence"	12-May-08	="Ammunition"	21-Dec-07	30-Jan-08	60120.23	=""	="PENTARCH PTY LTD"	12-May-08 04:37 PM	

+="CN80624"	"Office Equipment"	="Department of Foreign Affairs and Trade"	12-May-08	="Computer Equipment and Accessories"	03-Aug-07	31-Aug-07	75185.00	=""	="Commander Integrated Networks Pty L"	12-May-08 04:38 PM	

+="CN80640"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Department of Defence"	12-May-08	="Software"	21-Dec-07	21-Dec-07	65719.99	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:39 PM	

+="CN80648"	"Revalidation of the BHIE CMDS as result of Part Number Changes"	="Department of Defence"	12-May-08	="Aircraft"	04-Apr-08	30-Jun-08	61597.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:39 PM	

+="CN80653"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Decontamination aids and safety cleaning equipment"	09-Jan-08	30-Apr-08	72079.70	=""	="REDI-BRITE INDUSTRIES PTY LTD"	12-May-08 04:40 PM	

+="CN80656"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Domestic kitchenware"	09-Jan-08	31-Oct-08	67035.67	=""	="CMI OPERATIONS PTY LTD"	12-May-08 04:40 PM	

+="CN80657"	"WLR upgrade price variation claims"	="Department of Defence"	12-May-08	="Location and navigation systems and components"	21-Dec-07	30-Jun-10	64268.65	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:40 PM	

+="CN80699"	"EEH Desk Officer Support to GWEO DEOH"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	26-Feb-08	20-Jun-08	70510.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:42 PM	

+="CN80702"	"AEKMS INSTALLATION"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Apr-08	30-Jun-08	60451.60	=""	="EML AUSTRALIA"	12-May-08 04:42 PM	

+="CN80703"	"TD-322/4C50OR Orange"	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	26-Feb-08	01-Dec-22	73700.00	=""	="TRIANGLE CABLES PTY LTD"	12-May-08 04:42 PM	

+="CN80709"	"Use of Exisitng ASP Contract. Gyro Compass Repeat"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	20-Dec-07	29-Apr-08	63056.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:43 PM	

+="CN80724"	"ELECTRICAL SPARES AND EQUIPMENT TO SUPPORT THE PODS."	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	30-Jan-08	30-Apr-08	78245.30	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	12-May-08 04:44 PM	

+="CN80725-A1"	" 1078-3 TV CABINET 2LZ4 "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	25-Feb-08	27-Jul-10	73558.36	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:44 PM	

+="CN80788"	"Tec Rec Phase 2 - Cart 5.125" Chaff Mk214-1 (AV)(S"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	31-Jan-08	26-May-08	63449.21	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:47 PM	

+="CN80792"	"Tech Rec Phase 2 signal Illum M125A1 (Green)M126A1 (White)"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	31-Jan-08	25-May-08	60726.66	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:47 PM	

+="CN80794"	"JP2077 Schedule Review"	="Department of Defence"	12-May-08	="Management support services"	04-Apr-08	02-May-08	61578.00	=""	="DELOITTE TOUCHE TOHMATSU"	12-May-08 04:47 PM	

+="CN80799"	"BLANKET ORDER RAISED TO ENGAGE AN EXTERNAL SERVICE TO REVIEW JFLA PROCUREMENT PROCESSES"	="Defence Materiel Organisation"	12-May-08	="Fuels"	22-Feb-08	30-May-08	76000.00	=""	="AVIATION FUEL ASSOCIATES (AUST) P/L"	12-May-08 04:47 PM	

+="CN80804"	"FLYERS HELMET (SMALL & MEDIUM)"	="Department of Defence"	12-May-08	="Face and head protection"	31-Jan-08	20-Oct-08	78852.00	=""	="TRANSAERO INC."	12-May-08 04:48 PM	

+="CN80844"	"SG 2  Baseline Developer"	="Department of Defence"	12-May-08	="Manufacturing support services"	29-Jan-08	01-Apr-09	65890.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:49 PM	

+="CN80881"	"BSC -C Design Consultancy"	="Department of Defence"	12-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Dec-07	28-Mar-08	64062.90	=""	="DEPARTMENT OF DEFENCE"	12-May-08 04:51 PM	

+="CN80908"	"Use of Exisitng ASP Contract. Main Engine Injector Spares"	="Department of Defence"	12-May-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	29-Jan-08	31-Mar-08	62235.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	12-May-08 04:52 PM	

+="CN80913"	"Provision of guidance and assistance in the use, customisation and administration of Infra Enterpri"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	31-Mar-08	77000.00	=""	="INFRA CORPORATION PTY LTD"	12-May-08 04:53 PM	

+="CN80941"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	30-Aug-08	78513.48	=""	="PILATUS AIRCRAFT LTD"	12-May-08 04:54 PM	

+="CN80950"	"Technical and Engineering Support EMU"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Feb-08	30-Jun-08	67485.00	=""	="JACOBS AUSTRALIA"	12-May-08 04:54 PM	

+="CN80969"	"REQUIREMENTS ANALYSIS FOR TOB  AC HMAS TOBRUK"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	04-Feb-08	25-Feb-08	62920.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:56 PM	

+="CN80972"	"FACILITATE COMPLEX PROCUREMENT COURSE"	="Department of Defence"	12-May-08	="Education and Training Services"	08-Apr-08	31-Jul-08	61229.10	=""	="BAYLEY AND ASSOCIATES PTY LTD"	12-May-08 04:56 PM	

+="CN81028"	"Test Equipment"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	01-Oct-08	77831.36	=""	="ROSEBANK ENGINEERING"	12-May-08 04:59 PM	

+="CN81029"	"4549.03 350 HOURS LABOUR OF TECH & ENGINEERING"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	28-May-08	62700.00	=""	="THALES AUSTRALIA"	12-May-08 04:59 PM	

+="CN81033"	"TASK 4142-4 LOE COMBAT SNC"	="Department of Defence"	12-May-08	="Military watercraft"	04-Feb-08	30-Jun-08	76158.46	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:00 PM	

+="CN81059"	"MANUFACTURE NEW POKER GAUGES"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	08-Apr-08	23-May-08	68510.31	=""	="MADCO"	12-May-08 05:01 PM	

+="CN81065"	"PROCUREMENT OF QUANTITY 2 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	22-May-08	70808.28	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:01 PM	

+="CN81073"	"Ford Ranger PK 4 x 4 Ranger Dual Cab Pick Up (UM4) Qty 3"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	08-Aug-08	74202.02	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81079"	"Coordinate Measurement Machine"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	08-Apr-08	09-May-08	79990.00	=""	="PORTABLE CMM PTY LTD"	12-May-08 05:02 PM	

+="CN81134"	"Scope and Introduce EMERALD to GTESPO"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Feb-08	30-Jun-08	67778.70	=""	="JACOBS AUSTRALIA"	12-May-08 05:04 PM	

+="CN81164"	"Propellant Stability Evaluation of FMS 25mm HEI-T"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	19-Feb-08	25-May-08	62194.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:05 PM	

+="CN81189"	"MOTOR"	="Department of Defence"	12-May-08	="Aircraft equipment"	18-Dec-07	01-Oct-08	78902.09	=""	="THALES UK LTD, AEROSPACE DIVISION"	12-May-08 05:06 PM	

+="CN81198"	"ALR - 2002 DETECTOR DEVELOPMENT AND DELIVERY"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	31-Mar-08	66000.00	=""	="MICREO LIMITED"	12-May-08 05:07 PM	

+="CN81229"	"MMM Mobility Device Project"	="Department of Defence"	12-May-08	="Management support services"	19-Dec-07	19-Feb-08	69360.01	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 05:08 PM	

+="CN81246"	"helmet parts"	="Department of Defence"	12-May-08	="Clothing"	24-Jan-08	27-Jun-08	67137.21	=""	="TRANSAERO INC."	12-May-08 05:09 PM	

+="CN81257"	"Dell Servers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	25-Jan-08	60624.19	=""	="DELL AUSTRALIA PTY LTD"	12-May-08 05:09 PM	

+="CN81262"	"LEGAL ADVICE."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	23-Jan-08	30-Jun-08	78650.00	=""	="ANNE CAINE LEGAL"	12-May-08 05:10 PM	

+="CN81299"	"GWEO Engineering Induction Training"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-Apr-08	70524.92	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81315"	"CHINOOK MOUNTS"	="Department of Defence"	12-May-08	="Aircraft"	22-Jan-08	21-Mar-08	62189.69	=""	="DILLON AERO INC"	12-May-08 05:12 PM	

+="CN81334"	"Development of the Pharmacy Stock Control"	="Department of Defence"	12-May-08	="Computer services"	27-Nov-07	31-Dec-07	68607.00	=""	="OCEAN SOFTWARE PTY LTD"	12-May-08 05:13 PM	

+="CN81346"	"PELTOR PTT ADAPTOR"	="Department of Defence"	12-May-08	="Electronic Components and Supplies"	27-Nov-07	04-Jan-08	61875.00	=""	="NIOA TRADING PTY LTD"	12-May-08 05:14 PM	

+="CN81368"	"Renewal of Annual Restricted licenses"	="Defence Materiel Organisation"	12-May-08	="Software"	21-Feb-08	31-Mar-08	72184.72	=""	="TECOLOTE RESEARCH INC"	12-May-08 05:15 PM	

+="CN81380"	"pc9 aircraft spares"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	22-Feb-08	30-May-08	71609.40	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:16 PM	

+="CN81441"	"ILS MANAGEMENT SUPPORT FOR EWSP PROJECT"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	27-Jun-08	62365.60	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:19 PM	

+="CN81525"	"Two portable gantry cranes, include operational Tr manual, operator Maintenance and saftey Manual an"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	30-Jun-08	62832.00	=""	="SUPERCRANE ENGINEERED LIFTING TECH"	12-May-08 05:25 PM	

+="CN81534"	"Probity advisor"	="Defence Materiel Organisation"	12-May-08	="Professional engineering services"	21-Apr-08	30-Jun-09	66000.00	=""	="KPMG AUSTRALIA"	12-May-08 05:26 PM	

+="CN81554"	"MWRO Hardware Upgrade"	="Defence Materiel Organisation"	12-May-08	="Hardware"	21-Apr-08	30-Apr-08	73172.55	=""	="TILDA COMMUNICATIONS"	12-May-08 05:27 PM	

+="CN81561"	"HOUSING, FIRING MECHANISM"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	14-Dec-07	12-Dec-08	75452.59	=""	="BOFORS AB"	12-May-08 05:28 PM	

+="CN81574"	"AEWC RADAR STUDY"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	13-Dec-07	31-Mar-08	66000.00	=""	="CAE PROFESSIONAL SERVICES"	12-May-08 05:29 PM	

+="CN81578"	"PURCHASE ORDER FOR THE REPAIR AND OVERHAUL OF QTY REMOVAL MACHINES"	="Department of Defence"	12-May-08	="Aircraft equipment"	13-Dec-07	05-Mar-08	62101.24	=""	="ROSEBANK ENGINEERING PTY LTD"	12-May-08 05:29 PM	

+="CN81597"	"BEARING BALL"	="Defence Materiel Organisation"	12-May-08	="Aircraft"	19-Apr-08	02-Oct-08	63370.30	=""	="DERCO AEROSPACE INC."	12-May-08 05:31 PM	

+="CN81616"	"POC: MARK HAMBROOK CONTACT: 02 626 50640"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	13-Dec-07	03-Jan-08	74038.54	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 05:33 PM	

+="CN81627"	"CX1551"	="Department of Defence"	12-May-08	="Electrical components"	12-Dec-07	12-Mar-08	70840.32	=""	="E2V TECHNOLOGIES (UK) LIMITED"	12-May-08 05:34 PM	

+="CN81640"	"Task backlog"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	17-Dec-07	06-Jun-08	60500.02	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	12-May-08 05:36 PM	

+="CN81680"	"MSD Assurance Boards - Service Provider"	="Department of Defence"	12-May-08	="Public administration and finance services"	14-Dec-07	30-Jun-09	71216.00	=""	="CLARK CORPORATE CONSULTING PTY LTD"	12-May-08 05:41 PM	

+="CN81684"	"HP MCA SERVERS  PROLIANT SERVER -DL 380 DEN 5"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	73326.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 05:42 PM	

+="CN81700"	"BAE & Thales participation in tele conf. call base Integrated Product Team meetings"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Dec-07	30-Jan-08	72784.18	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:44 PM	

+="CN81703"	"REPLACMENT TAILGATE LOADER FOR TRUCK PLATFORM ELEVATING"	="Department of Defence"	12-May-08	="Aircraft environmental control systems and components"	10-Dec-07	31-Mar-08	72798.00	=""	="STATIC ENGINEERING PTY LTD"	12-May-08 05:44 PM	

+="CN81747"	"PROCUREMENT NUMBERPLATES"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Dec-07	30-Jun-08	60000.00	=""	="LICENSYS HOLDINGS PTY LTD"	12-May-08 05:50 PM	

+="CN81769"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	01-Mar-08	01-Mar-08	79717.00	=""	="Ernst & Young"	12-May-08 07:33 PM	

+="CN81772"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Marketing and distribution"	18-Feb-08	18-Feb-08	72712.14	=""	="HMA Blaze"	12-May-08 07:34 PM	

+="CN81777"	"IT Repairs & Mtce"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	17-Apr-08	17-Apr-08	78768.00	=""	="ISIS Projects Pty Ltd"	12-May-08 07:34 PM	

+="CN81785"	"IT consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Computer services"	14-Mar-08	14-Mar-08	63000.00	=""	="NetMap Analytics Pty Ltd"	12-May-08 07:35 PM	

+="CN81794-A1"	"Provision of procurement, advisory and management services for the release of RFT for catering and accommodation services to AFP college"	="Australian Federal Police"	13-May-08	="Professional procurement services"	17-Jan-07	01-Jul-08	69300.00	="22-2005"	="JJM Holdings Pty Ltd"	13-May-08 09:01 AM	

+="CN81828"	"ALSPO"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	24-Oct-07	30-Jun-08	74520.74	=""	="LOCKHEED MARTIN CORPORATION"	13-May-08 11:03 AM	

+="CN81845"	"TS64MAT-4 USD GST PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Oct-07	30-Jun-08	73191.34	=""	="TENIX DEFENCE PTY LTD"	13-May-08 11:06 AM	

+="CN81913"	"GST ON INVOICE 67686 PO 4500597183"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	13-Dec-07	20-Jan-08	71761.87	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:17 AM	

+="CN81924"	"DISPOSAL OF RAPIER EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Missile subsystems"	14-Nov-07	29-Feb-08	71242.60	=""	="BAE SYSTEMS"	13-May-08 11:18 AM	

+="CN81931"	"PLANNING FUNDING"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	14-Nov-07	31-Mar-08	66000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:20 AM	

+="CN81932"	"RMA Surveillance Services"	="Defence Materiel Organisation"	13-May-08	="Rockets and subsystems"	14-Nov-07	28-Feb-08	75053.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:20 AM	

+="CN81935"	"Simulation Training"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	15-Nov-07	07-Dec-07	63554.56	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:20 AM	

+="CN81965"	"THIS ORDER IS RAISED IN ACCORDANCE WITH ATD 54-A."	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	31-Oct-07	16-Jun-08	74792.00	=""	="AUSTRALIAN AEROSPACE PTY LTD"	13-May-08 11:27 AM	

+="CN81966"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	14-Nov-07	10-Dec-07	63659.24	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 11:27 AM	

+="CN81986"	"MADE TO MEASURE ATTIRE"	="Defence Materiel Organisation"	13-May-08	="Clothing"	19-Nov-07	30-Nov-07	66915.79	=""	="AUSTRALIAN DEFENCE APPAREL"	13-May-08 11:31 AM	

+="CN81995"	"tEODor Training"	="Defence Materiel Organisation"	13-May-08	="Audio and visual presentation and composing equipment"	16-Nov-07	29-Feb-08	79685.76	=""	="XTEK LTD"	13-May-08 11:33 AM	

+="CN82017"	"Upgrade RPV software to support RE700"	="Defence Materiel Organisation"	13-May-08	="Software"	19-Nov-07	18-May-08	69966.38	=""	="XTEK LTD"	13-May-08 11:35 AM	

+="CN82040"	"Various items"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	16-Nov-07	16-Jan-08	61767.36	=""	="C4I PTY LTD"	13-May-08 11:38 AM	

+="CN82042"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE"	="Defence Materiel Organisation"	13-May-08	="Fuels"	16-Nov-07	30-Jun-08	77000.00	=""	="CARMODY PETROLEUM PTY LTD"	13-May-08 11:38 AM	

+="CN82043"	"Technical Support 2007/08 Observatory Stations"	="Geoscience Australia"	13-May-08	="Temporary clerical or administrative assistance"	09-Apr-08	30-Jun-08	70148.00	=""	="Australian Antarctic Division"	13-May-08 11:38 AM	

+="CN82047"	"Disco Focus maintenance renewal"	="Geoscience Australia"	13-May-08	="Software"	09-Apr-08	16-Apr-08	67292.50	=""	="Paradigm Geophysical Pty Ltd"	13-May-08 11:38 AM	

+="CN82065"	"WP 1075 (Coober Pedy Drainage) and WP 1076 (NSW LPI Transportation # 4C)"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	70245.00	=""	="DSM Geodata"	13-May-08 11:40 AM	

+="CN82071"	"Short term personnel hire - Project Manager"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	14-Apr-08	30-Jun-08	61600.00	=""	="Frontier Group Australia Pty Ltd"	13-May-08 11:41 AM	

+="CN82092"	"WP 1054 (NE Flinders Hyrography) Moolawatana + Blanchewater work units;  Deed # G1682D; Contract #  G2376"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	17-Apr-08	30-Jun-08	67348.05	=""	="Fugro Spatial Solutions Pty Ltd"	13-May-08 11:43 AM	

+="CN82110"	"Contract services - Project Manager 17 Mar - 30 Jun 2008"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	21-Apr-08	30-Jun-08	67760.00	=""	="Frontier Group Australia Pty Ltd"	13-May-08 11:45 AM	

+="CN82125"	"CONSULTANT"	="Defence Materiel Organisation"	13-May-08	="Live Plant and Animal Material and Accessories and Supplies"	14-Apr-08	30-Jun-08	70000.00	=""	="CODARRA ADVANCED SYSTEMS"	13-May-08 11:46 AM	

+="CN82128"	"ALSE IQ TASK"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	12-Nov-07	31-Jan-08	61508.36	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 11:46 AM	

+="CN82131"	"ERMapper annual maintenance renewal for period 4 Dec 2007 to 31 Dec 2008"	="Geoscience Australia"	13-May-08	="Software"	29-Apr-08	31-Dec-08	61952.00	=""	="Leica Geosystems GIS & Mapping Pty Limited"	13-May-08 11:47 AM	

+="CN82134"	"Provide HMAS SIRIUS Main Engine Spares"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	12-Nov-07	30-Sep-08	79654.67	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 11:47 AM	

+="CN82170"	"Development of equipment configuration baseline enginnering change data packs"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	18-Apr-08	78400.00	=""	="RELEGEN PTY LTD"	13-May-08 11:53 AM	

+="CN82181"	"SDSS Data Quality Management"	="Defence Materiel Organisation"	13-May-08	="Computer services"	23-Apr-08	04-May-08	74750.01	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	13-May-08 11:55 AM	

+="CN82192"	"AIR WARFARE DESTROYER PROGRAM PH3 - INDEPENDENT PROBITY AUDITOR - CONTRACT AMENDMENT"	="Defence Materiel Organisation"	13-May-08	="Business administration services"	12-Nov-07	30-Dec-09	66000.00	=""	="SIR LAURENCE STREET"	13-May-08 11:56 AM	

+="CN82211"	"Seahawk S70B taskings for 2007/08 financial year"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	28-Apr-08	27-Jun-08	71858.15	=""	="RAYTHEON AUST PTY LTD"	13-May-08 11:58 AM	

+="CN82216"	"Procurement of Lube Oil Purifier Parts for HMAS Darwin"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	05-Mar-08	14-Apr-08	64089.04	=""	="THALES AUSTRALIA"	13-May-08 11:58 AM	

+="CN82248-A1"	" Ship technical services "	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	06-Mar-08	16-Mar-11	68469.56	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:01 PM	

+="CN82260"	"CONTINUOUS PROFESSIONAL DEVELOPMENT CPM MILESTONES ASSOCIATED WITH EMCPM PROGRAM IN FY07-08"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	05-Mar-08	30-Jun-08	68464.00	=""	="QUEENSLAND UNIVERSITY OF"	13-May-08 12:02 PM	

+="CN82271"	"Spare parts for SEM"	="Defence Materiel Organisation"	13-May-08	="Missile subsystems"	16-Jan-08	02-Jul-08	73847.40	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 12:03 PM	

+="CN82289"	"PURCHASE OF AIRCRAFT COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	15-Jan-08	21-May-08	74012.99	=""	="KAMAN AEROSPACE INTL CORP"	13-May-08 12:04 PM	

+="CN82327-A2"	"Provision of ICT Services catalogue and costing"	="Australian Federal Police"	13-May-08	="Accounting and auditing"	31-Mar-08	30-Jun-08	60615.00	="06/16740"	="Oakton Services Pty Ltd"	13-May-08 12:08 PM	

+="CN82334"	"Tenix to conducte restricted RFT for Data Recorder"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	07-Mar-08	30-May-08	62762.24	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:08 PM	

+="CN82350"	"Technical services"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	11-Jan-08	30-Jun-08	66000.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:10 PM	

+="CN82381"	"REQUIRED FOR FORENSIC IDENTIFICATION KITS"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	14-Jan-08	30-Jun-08	66374.00	=""	="INLINE SYSTEMS PTY LTD"	13-May-08 12:12 PM	

+="CN82401"	"TOB-VET DUCT CLEANING ENVIROAIR"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	06-Mar-08	30-Apr-08	77073.70	=""	="ENVIROAIR PTY LTD"	13-May-08 12:14 PM	

+="CN82424"	"Recruitment Services Phase III"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	21-Jan-08	31-Dec-08	75000.00	=""	="WINNING ATTITUDES & SOLUTIONS"	13-May-08 12:16 PM	

+="CN82442"	"HMAS KANIMBLA FORWARD TUNNEL DOOR"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Jan-08	20-Jun-08	61273.65	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:18 PM	

+="CN82446"	"2008 PROJECT SIMULATION TRAINING FOR EXECUTIVE MASTERS IN COMPLEX PROJECT MANAGEMENT"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	18-Jan-08	31-Mar-08	79510.00	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 12:18 PM	

+="CN82452"	"CLEVIS ROD END"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	28-Feb-08	01-May-09	64281.27	=""	="AGUSTAWESTLAND LTD"	13-May-08 12:19 PM	

+="CN82467"	"AIR CHARTER AGREEMENT FLIGHT ASY996 *FOR PAYMENT PURPOSES ONLY*"	="Defence Materiel Organisation"	13-May-08	="Ammunition"	16-Jan-08	16-Jan-08	79695.59	=""	="RIDGEWAY INTERNATIONAL"	13-May-08 12:21 PM	

+="CN82477"	"POC:Tejinder Uppal 02 62650778"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	17-Jan-08	07-Mar-08	72556.86	=""	="AGILTRON INC"	13-May-08 12:22 PM	

+="CN82507"	"Contractor for 40 days"	="Defence Materiel Organisation"	13-May-08	="Office supplies"	07-Jan-08	28-Mar-08	60920.20	=""	="ACUMEN ALLIANCE PTY LTD"	13-May-08 12:24 PM	

+="CN82513"	"WASHER DISINFECTING MACHINE: PART NUMBER:LANCN83S"	="Defence Materiel Organisation"	13-May-08	="Medical Equipment and Accessories and Supplies"	07-Jan-08	30-Jun-08	62354.60	=""	="IN VITRO TECHNOLOGIES"	13-May-08 12:24 PM	

+="CN82520"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	13-May-08	="Software"	28-Feb-08	30-Jun-08	80000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:25 PM	

+="CN82546"	"RT3100 INS GPS System"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Feb-08	14-Mar-08	63112.50	=""	="INDUSTRIAL MEASUREMENT SOLUTION"	13-May-08 12:27 PM	

+="CN82565"	"REPAIR OF TALU"	="Defence Materiel Organisation"	13-May-08	="Product and material transport vehicles"	04-Jan-08	31-Jan-08	78617.00	=""	="STATIC ENGINEERING PTY LTD"	13-May-08 12:29 PM	

+="CN82572"	"AMPS DATA REMEDIATION PHASE 3"	="Defence Materiel Organisation"	13-May-08	="Software"	03-Mar-08	30-May-08	62925.89	=""	="KAZ GROUP LTD"	13-May-08 12:30 PM	

+="CN82581"	"continuation of KAZ support to GWEO"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	02-Jan-08	31-Mar-08	65549.00	=""	="KAZ GROUP PTY LTD"	13-May-08 12:31 PM	

+="CN82584"	"POC: DEAN ARMBRECHT CONTACT: 02 6265 0859"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	04-Mar-08	15-Mar-08	68141.54	=""	="SUN MICROSYSTEMS"	13-May-08 12:31 PM	

+="CN82605"	"ESP TO PROVIDE SERVICES TO LEGAL & PROCUREMENT SERVICES BRANCH"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	29-Feb-08	30-Jun-08	70436.85	=""	="PS2 PTY LTD"	13-May-08 12:33 PM	

+="CN82606"	"Tenix Travel"	="Defence Materiel Organisation"	13-May-08	="Commercial marine craft"	29-Feb-08	02-Mar-08	63771.63	=""	="QANTAS AIRWAYS LTD"	13-May-08 12:34 PM	

+="CN82627"	"VENUE HIRE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	03-Mar-08	03-Mar-08	71500.00	=""	="PARK HYATT MELBOURNE"	13-May-08 12:36 PM	

+="CN82637"	"PASOR Related STS requirements"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Mar-08	30-Jun-08	60635.30	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 12:37 PM	

+="CN82649"	"Support Structure Weldment"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	18-Mar-08	15-Apr-08	78902.40	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	13-May-08 12:38 PM	

+="CN82656"	"PO raised for management of payments against Contract 5370093."	="Defence Materiel Organisation"	13-May-08	="Firearms"	17-Mar-08	30-Apr-08	69501.16	=""	="THALES AUSTRALIA"	13-May-08 12:39 PM	

+="CN82685"	"Procure NU Torque Actuators for HMAS Sydney 8" Zulu Valves"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-Apr-08	69864.30	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	13-May-08 12:44 PM	

+="CN82710-A1"	"MAINTENANCE OF FIRE EXTINGUISHERS"	="Defence Materiel Organisation"	13-May-08	="Fire fighting equipment"	19-Mar-08	30-Jun-08	60000.00	="CONL074"	="CHUBB FIRE SAFETY LTD"	13-May-08 12:47 PM	

+="CN82715"	"SUPPLY OF JET A1 TO THE RAAF"	="Defence Materiel Organisation"	13-May-08	="Fuels"	19-Mar-08	30-Jun-08	60000.00	=""	="BURNT PINE TRAVEL"	13-May-08 12:48 PM	

+="CN82720"	"CISCO 3825 Routers"	="Defence Materiel Organisation"	13-May-08	="Accommodation furniture"	19-Mar-08	02-Apr-08	70963.99	=""	="GETRONICS (AUSTRALIA) PTY LTD"	13-May-08 12:49 PM	

+="CN82733"	"This Purchase Order is raised to facilitate th Multi Purpose Interface (MPI) Units Part No: FDS4"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	19-Mar-08	16-Apr-08	79200.00	=""	="FLIGHT DATA SYSTEMS PTY LTD"	13-May-08 12:50 PM	

+="CN82764"	"TMIF MODIFICATIONS"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	18-Mar-08	31-May-08	69220.80	=""	="MULTITECH ENGINEERING"	13-May-08 12:54 PM	

+="CN82779"	"Belts, Aircraft Safety Restraints"	="Defence Materiel Organisation"	13-May-08	="Aircraft passenger restraints"	12-Mar-08	18-Aug-08	68516.47	=""	="PACIFIC SCIENTIFIC COMPANY"	13-May-08 12:57 PM	

+="CN82780"	"Conditions of IMS Contract, CAPO No: CON(MS)W01-12 this deliverable."	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	12-Mar-08	30-Jun-08	76913.03	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:57 PM	

+="CN82784"	"EMEI & UHB TRAINING PACKAGE, PILOT TRAINING & FINA L TRAINING PACKAGE. CONTRACT: LEA-CM-2007"	="Defence Materiel Organisation"	13-May-08	="Laboratory and scientific equipment"	12-Mar-08	30-Jun-08	61446.00	=""	="PS MANAGEMENT CONSULTANTS"	13-May-08 12:57 PM	

+="CN82850"	"DELIVERY OF COMPLEX PROCUREMENT TRAINING AND ASSESSMENT"	="Defence Materiel Organisation"	13-May-08	="Medical training and education supplies"	14-Mar-08	16-May-08	66858.00	=""	="BAYLEY AND ASSOCIATES PTY LTD"	13-May-08 01:07 PM	

+="CN82858"	"WADGPS LICENCE SUBSCRIPTIONS"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	13-Mar-08	19-Apr-08	64845.00	=""	="BELLINGER INSTRUMENTS PTY LTD"	13-May-08 01:07 PM	

+="CN82859"	"BOLT, BREECH, GUN"	="Defence Materiel Organisation"	13-May-08	="Gun systems"	13-Mar-08	30-May-09	63733.72	=""	="ALLIANT TECHSYSTEMS INC"	13-May-08 01:08 PM	

+="CN82883"	"Refurbish additional CTRS"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	13-Mar-08	31-Dec-08	68422.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 01:11 PM	

+="CN82890"	"PILS Software Enhancements"	="Defence Materiel Organisation"	13-May-08	="Computer services"	13-Feb-08	30-Apr-08	78705.00	=""	="OCEAN SOFTWARE PTY LTD"	13-May-08 01:12 PM	

+="CN82923"	"TASR REPAIRS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	23-Apr-08	12-May-08	67881.14	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 01:33 PM	

+="CN82933"	"TM188 review and Data Packet Generation"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	23-Apr-08	30-Jun-08	79695.00	=""	="RELEGEN PTY LTD"	13-May-08 01:35 PM	

+="CN82954"	"Training needs analysis"	="Defence Materiel Organisation"	13-May-08	="Satellites"	22-Apr-08	30-Jan-09	69494.81	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 01:39 PM	

+="CN82957"	"Infrastructure Upgrade for Point Murat Pier NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	21-Apr-08	26-Jun-08	65226.70	=""	="BOEING AUSTRALIA LTD"	13-May-08 01:39 PM	

+="CN82958"	"Infrastructure Upgrade for Point Murat Pier NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	13-May-08	="Building and Construction and Maintenance Services"	21-Apr-08	26-Jun-08	61272.20	=""	="BOEING AUSTRALIA LTD"	13-May-08 01:40 PM	

+="CN82974"	"4571.01 BUSINESS CASE ANALYSIS FOR PERFORMANCE BASED CONTRACTING MODEL - MTUDDA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	22-Apr-08	30-Jun-08	73401.04	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 01:42 PM	

+="CN82975"	"ACCOMMODATION AND FUNCTION ROOM HIRE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	22-Apr-08	22-Apr-08	80000.00	=""	="ESPLANADE HOTEL"	13-May-08 01:42 PM	

+="CN82977"	"Storage Array config id 6142292"	="Defence Materiel Organisation"	13-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Apr-08	30-Apr-08	76749.84	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	13-May-08 01:42 PM	

+="CN83023"	"ASIPA Re-invigoration Workshop"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	15-Apr-08	30-Jun-08	62700.00	=""	="PROJECT CONTROL INTERNATIONAL PTY"	13-May-08 01:49 PM	

+="CN83035"	"Software"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	06-May-08	70696.16	=""	="TRESYS TECHNOLOGY LLC"	13-May-08 01:50 PM	

+="CN83068"	"Sustainment Study for ILS, DME & NDB"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	16-Apr-08	30-May-08	79433.20	=""	="AIRSERVICES AUSTRALIA"	13-May-08 01:55 PM	

+="CN83105"	"NINShore Cables"	="Defence Materiel Organisation"	13-May-08	="Hardware"	01-May-08	30-Jun-08	79200.00	=""	="JOINERS CABLING SPECIALISTS PTY"	13-May-08 02:00 PM	

+="CN83135"	"Waver Server Software Platform"	="Defence Materiel Organisation"	13-May-08	="Software"	30-Apr-08	14-May-08	61598.79	=""	="CISTECH SOLUTIONS"	13-May-08 02:05 PM	

+="CN83144"	"1316-4 DEVELOP AND IMPLEMENT A SOLUTION TO RESOLVE THE DUAL TRACKING DEFICIENCY"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	30-Apr-08	15-Jun-08	60060.14	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 02:06 PM	

+="CN83148"	"To refurbish 45x out of tolerance CA/DA clusters ex HMAS WALLER"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	30-Apr-08	06-Jun-08	69925.68	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 02:06 PM	

+="CN83149"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	13-May-08	="Powered fixed wing aircraft"	30-Apr-08	30-Jun-08	68648.17	=""	="RAYTHEON AUSTRALIA"	13-May-08 02:06 PM	

+="CN83190"	"Commercial Coverage for DnV certification of  RAN Sub Escape and Rescue System"	="Defence Materiel Organisation"	13-May-08	="Water safety"	02-May-08	30-Jun-08	63025.20	=""	="CALEY OCEAN SYSTEMS LTD"	13-May-08 02:13 PM	

+="CN83199"	"CSA Shelter repairs"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	02-May-08	25-Jul-08	72875.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 02:15 PM	

+="CN83210"	"Remove and Replace Morgan Actuators & Controllers with NU-Torque items"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Jun-08	73761.60	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	13-May-08 02:17 PM	

+="CN83211"	"DEVELOP SOFTWARE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	02-May-08	30-Dec-09	80000.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 02:17 PM	

+="CN83217"	"4516.17 FLUID COUPLING RPCA"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	30-Jun-08	62727.50	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:18 PM	

+="CN83219"	"SPORTS CLOTHING"	="Defence Materiel Organisation"	13-May-08	="Sports equipment and accessories"	24-Apr-08	08-May-08	71703.42	=""	="ONE SPORTSWEAR PTY LTD"	13-May-08 02:18 PM	

+="CN83235"	"Services as per RFQTS No. 3196"	="Defence Materiel Organisation"	13-May-08	="Guided missiles"	28-Apr-08	25-Oct-08	79200.00	=""	="NOVA DEFENCE"	13-May-08 02:21 PM	

+="CN83245"	"MIDS ANTENNA 75SQN"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	24-Apr-08	30-Jun-08	62920.00	=""	="CANDO ANTENNA AND SATELLITE"	13-May-08 02:23 PM	

+="CN83261"	"DRAFT AMACCS ILSP"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	23-Apr-08	13-Jun-08	74730.28	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 02:25 PM	

+="CN83296"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-08	30-Jun-08	79283.00	=""	="MINTER ELLISON"	13-May-08 02:30 PM	

+="CN83300"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	30-Apr-08	30-Jun-08	64811.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-May-08 02:31 PM	

+="CN83306"	"Antenna Array"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	29-Apr-08	01-Jan-09	60455.03	=""	="THALES UK LTD, AEROSPACE DIVISION"	13-May-08 02:32 PM	

+="CN83321"	"White Paper Companion Review Support"	="Defence Materiel Organisation"	13-May-08	="Management support services"	28-Apr-08	20-Jun-08	79000.00	=""	="CARRARD SOLUTIONS"	13-May-08 02:34 PM	

+="CN83369"	"Land 58.3 AN/TPQ-36 WLR Life of Type: Radars 3-5 Survey"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	01-Apr-08	30-Apr-08	65711.82	=""	="RAYTHEON AUSTRALIA"	13-May-08 02:41 PM	

+="CN83378"	"WEAPON SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Mar-08	01-Aug-08	63773.62	=""	="HECKLER & KOCH GMBH"	13-May-08 02:42 PM	

+="CN83385"	"MAG 58 SPARES"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	28-Mar-08	01-Dec-08	75183.85	=""	="FN HERSTAL SA"	13-May-08 02:44 PM	

+="CN83397"	"HGCE"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	31-Mar-08	19-May-08	70569.40	=""	="CYPHER RESEARCH LABORATORIES"	13-May-08 02:45 PM	

+="CN83425"	"Multifunction Calibrator"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Apr-08	16-May-08	68715.90	=""	="TRIPLE POINT CALIBRATIONS PTY LTD"	13-May-08 02:50 PM	

+="CN83430"	"    TGA Senior Management Learning and Development    "	="Therapeutic Goods Administration"	13-May-08	="Education and Training Services"	13-Dec-07	18-Apr-08	68596.00	=""	="Hay Group Pty Ltd"	13-May-08 03:03 PM	

+="CN83439"	"    Project Support for Medical Devices Business Process Review - April-May 2008    "	="Therapeutic Goods Administration"	13-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	31-May-08	68409.00	=""	="APIS Consulting, The Trustee for Group Unit Trust"	13-May-08 03:31 PM	

+="CN83468"	"Procurement of:  PARTS KIT,SEDIMENT STRAINER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	04-Jul-08	74294.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:30 PM	

+="CN83478"	"Procurement of:  INJECTOR ASSEMBLY,FUEL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	08-Jul-08	65444.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:31 PM	

+="CN83545"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	17-Jul-08	72797.98	=""	="PALL AUSTRALIA"	13-May-08 07:39 PM	

+="CN83578"	"Procurement of:  CONDENSER COIL,REFRIGERATION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	04-Sep-08	62775.60	=""	="PALL AUSTRALIA"	13-May-08 07:43 PM	

+="CN83603"	"Procurement of:  VALVE ASSEMBLY,MANIFOLD"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	03-Apr-08	05-Jun-08	67572.10	=""	="H I FRASER Pty Ltd"	13-May-08 07:46 PM	

+="CN83638"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	16-Apr-08	31-Jul-08	61552.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:51 PM	

+="CN83641"	"Procurement of:  INSULATION BLANKET,THERMAL;  INSULATION BLANKET,THERMAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Apr-08	18-May-08	71939.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	13-May-08 07:51 PM	

+="CN83671"	"Procurement of:  CONDUIT,NONMETALLIC,FLEXIBLE;  CONDUIT,NONMETALLIC,FLEXIBLE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	21-Jan-09	69689.90	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:55 PM	

+="CN83672"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	08-Aug-08	66209.05	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:55 PM	

+="CN83676"	"Procurement of:  INJECTOR ASSEMBLY,FUEL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	23-Apr-08	08-Oct-08	77223.92	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:56 PM	

+="CN83684"	"Procurement of:  FERRULE,GROOVED CLAMP COUPLING"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	02-Aug-08	65580.90	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:57 PM	

+="CN83691"	"Procurement of:  BOX,COLLECTOR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	31-Jul-08	67545.93	=""	="H I FRASER Pty Ltd"	13-May-08 07:58 PM	

+="CN83700"	"Procurement of:  STEM,FLUID VALVE;  SPRING,HELICAL,COMPRESSION;  SPRING,HELICAL,COMPRESSION;  INDICATOR,SIGHT,LIQUID;  PLATE,MOUNTING;  BEARING,BALL,ANNULAR; + MORE..."	="Defence Materiel Organisation"	13-May-08	="Marine transport"	31-Mar-08	15-May-08	75967.58	=""	="ASC Pty Ltd"	13-May-08 07:59 PM	

+="CN83752"	"Corporate Medical Access Program"	="Department of Foreign Affairs and Trade"	14-May-08	="Medical Equipment and Accessories and Supplies"	01-Jan-07	31-Dec-07	67251.35	=""	="INTERNATIONAL SOS"	14-May-08 10:11 AM	

+="CN83779"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Oct-07	69878.00	=""	="Paxus Australia Pty Limited"	14-May-08 10:38 AM	

+="CN83791"	"Provision of IT Licence (Contract DPL03004)"	="Department of Parliamentary Services"	14-May-08	="Library software"	13-May-08	31-Mar-09	77000.00	=""	="Visionbytes Pty Ltd"	14-May-08 10:41 AM	

+="CN83797"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	11-Apr-08	25-Jul-08	68992.00	=""	="NEXUS PRINT SOLUTIONS"	14-May-08 10:58 AM	

+="CN83801"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	78045.00	=""	="Ross Human Directions Limited"	14-May-08 11:14 AM	

+="CN83842"	"Courier Services"	="Centrelink"	14-May-08	="Mail and cargo transport"	21-Apr-08	30-Apr-08	70599.08	=""	="Courier Australia"	14-May-08 12:31 PM	

+="CN83853"	"Optical surveillance services"	="Centrelink"	14-May-08	="Security surveillance and detection"	30-Apr-08	30-Jun-08	60000.00	=""	="M and A Investigations"	14-May-08 12:33 PM	

+="CN83861"	"Courier Services"	="Centrelink"	14-May-08	="Transport operations"	07-Mar-08	30-Jun-08	70026.84	=""	="Toll Priority"	14-May-08 12:34 PM	

+="CN83869"	"Optical Surveillance"	="Centrelink"	14-May-08	="Security surveillance and detection"	06-May-08	30-Jun-08	70000.00	=""	="Maurice J Kerrigan and Assoc Pty Ltd"	14-May-08 12:35 PM	

+="CN83896"	"Courier service"	="Centrelink"	14-May-08	="Mail and cargo transport"	30-Apr-08	30-Jun-08	73500.01	=""	="Courier Australia"	14-May-08 12:40 PM	

+="CN83909-A1"	" Accommodation broker service "	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	28-Apr-08	30-Jun-08	64549.00	=""	="Hotel Network Garrs"	14-May-08 12:42 PM	

+="CN83936"	"Mail services"	="Centrelink"	14-May-08	="Mail and cargo transport"	14-Apr-08	30-Jun-08	60499.98	=""	="TNT Australia Pty Limited"	14-May-08 12:48 PM	

+="CN83948"	"Installation of CCTV systems"	="Centrelink"	14-May-08	="Security surveillance and detection"	04-Apr-08	30-Jun-08	69907.20	=""	="Chubb Electronic Security Pty Ltd"	14-May-08 12:49 PM	

+="CN83964"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	66994.40	=""	="Future Floor Services"	14-May-08 12:52 PM	

+="CN83970"	"Portable digital interview recording systems"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-Apr-08	19-May-08	60087.50	=""	="Tape Products Research"	14-May-08 12:52 PM	

+="CN83989"	"Office fitout, Brisbane, QLD"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Apr-08	30-Jun-08	66396.00	=""	="Quadric Pty Ltd"	14-May-08 12:55 PM	

+="CN83991"	"Office furniture, Palm Beach, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	61130.30	=""	="Emtek Furniture"	14-May-08 12:56 PM	

+="CN84101"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	65353.80	=""	="Carbine Security Installations"	14-May-08 03:02 PM	

+="CN84108"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	13-Aug-07	27-Aug-07	75820.96	=""	="Commander Integrated Networks Pty L"	14-May-08 03:03 PM	

+="CN84136"	"DFAT storage"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	16-Aug-07	13-Sep-07	62673.60	=""	="1st Fleet Warehousing"	14-May-08 03:40 PM	

+="CN84146"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	79290.20	=""	="Interiors Australia"	14-May-08 04:34 PM	

+="CN84156"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	27-Aug-07	02-Sep-07	73283.37	=""	="Knight Frank (Vic) Pty Ltd"	14-May-08 04:35 PM	

+="CN84159"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	27-Aug-07	30-Sep-07	64939.74	=""	="Australand Property Trust"	14-May-08 04:36 PM	

+="CN84161"	"Building Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	28-Aug-07	28-Aug-07	79891.95	=""	="Diebold Physical Security Pty Ltd"	14-May-08 04:36 PM	

+="CN84185"	"Equipment Lease"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	05-Sep-07	12-Sep-07	62678.19	=""	="HP Financial Services"	14-May-08 04:56 PM	

+="CN84213"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	18-Sep-07	18-Sep-07	64939.74	=""	="Australand Property Trust"	14-May-08 05:01 PM	

+="CN84228"	"Office Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Sep-07	02-Oct-07	74527.62	=""	="Knight Frank (Vic) Pty Ltd"	14-May-08 05:04 PM	

+="CN84233"	"Electric Gates and Motors"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	28-Sep-07	28-Sep-07	75660.18	=""	="Leda-Vannaclip Pty Ltd"	14-May-08 05:05 PM	

+="CN84244"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	19-Sep-07	28-Feb-08	74389.00	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84251"	"Infrastructure equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	31-Aug-07	28-Sep-07	65963.26	=""	="FUJITSU AUSTRALIA LIMITED"	14-May-08 05:07 PM	

+="CN84260"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	08-Oct-07	70511.10	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 05:09 PM	

+="CN84266"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	15-Oct-07	69740.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:09 PM 

--- /dev/null
+++ b/admin/partialdata/12May2008to14May2008val80000to150000.xls
@@ -1,1 +1,680 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN74188-A3"	" Provision of Specialist Information Technology Services  "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	91025.00	=""	="Ross Human Directons Limited"	12-May-08 09:11 AM	

+="CN74181"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	27-Aug-07	30-Jun-08	88110.00	=""	="Ross Human Directors Limited"	12-May-08 09:26 AM	

+="CN78010"	"AS PER QUOTE 30 NOV 07 YOUR REF 1191B"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	14-Dec-07	30-Jan-08	100100.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 09:32 AM	

+="CN78004-A2"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	20-Aug-07	30-Jun-08	121275.00	=""	="Paxus Australia Pty Limited"	12-May-08 09:32 AM	

+="CN78033"	"QUARANTINE INSPECTION FEES OP CATALYST"	="Department of Defence"	12-May-08	="Farming and Fishing and Forestry and Wildlife Contracting Services"	14-Dec-07	31-Dec-07	101572.00	=""	="AUSTRALIAN QUARANTINE & INSPECTION"	12-May-08 09:37 AM	

+="CN78043"	"PROVISION OF CONSULTANCY TO DEFINE DSVE SECURITY REVIEW TASK DELIVERABLES."	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Dec-07	10-Apr-08	120194.80	=""	="CONNELL WAGNER PTY LTD"	12-May-08 09:39 AM	

+="CN78050"	"POC: Robert Lee Contact: 02 62669043"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	14-Dec-07	21-Dec-07	87994.23	=""	="NETWORK DATA SOLUTIONS PTY LTD"	12-May-08 09:40 AM	

+="CN78055"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Dec-07	14-Dec-07	98450.00	=""	="COMPUWARE ASIA PACIFIC PTY LTD"	12-May-08 09:41 AM	

+="CN78082"	"REMOVALOF CCA TREATED STRUCTURES AND REMEDIATION OF SOIL/SAND IN CHILDCARE CENTRES"	="Department of Defence"	12-May-08	="Environmental Services"	19-Dec-07	30-Jun-08	90914.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:47 AM	

+="CN78086"	"FIRE SUPPRESSION SYSTEM FOR BLDG M3 HOLSWORTHY"	="Department of Defence"	12-May-08	="Fire prevention"	19-Dec-07	30-Jun-08	137198.26	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 09:48 AM	

+="CN78114"	"Ballistic Barrier for Base-X 305 Lightweight Shelt"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	83061.00	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:53 AM	

+="CN78120"	"BIENNIAL AUDIT OF DEFENCE JOINT SPECIAL LICENCE (J"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	132027.50	=""	="MAUNSELL AUSTRALIA PTY LTD"	12-May-08 09:55 AM	

+="CN78122"	"Repair and Overhaul Qty 6 x Base-X Lightweight She"	="Department of Defence"	12-May-08	="Prefabricated structures"	18-Dec-07	31-Mar-08	94477.90	=""	="IB SUPPLIES PTY LTD"	12-May-08 09:55 AM	

+="CN78125"	"EMS Development For RAAF Base Williams"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	18-Dec-07	30-Jun-08	88000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 09:55 AM	

+="CN78133"	"ADVERTISING"	="Department of Defence"	12-May-08	="Office supplies"	18-Dec-07	30-Jun-08	88006.60	=""	="HMA BLAZE PTY LIMITED"	12-May-08 09:57 AM	

+="CN78150"	"REMOVALOF CCA TREATED STRUCTURES"	="Department of Defence"	12-May-08	="Environmental Services"	18-Dec-07	30-Jun-08	100000.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 10:00 AM	

+="CN78151"	"Dataset acquisition"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	18-Dec-07	30-Jun-09	92647.04	=""	="DELLOTTE & TOUCHE LLP"	12-May-08 10:00 AM	

+="CN78172-A1"	"Supply of Phones and Licences"	="Australian Federal Police"	12-May-08	="Personal communications device accessories or parts"	05-May-08	30-Jun-08	87814.32	="29-2005"	="Avaya Australia Pty Ltd"	12-May-08 10:14 AM	

+="CN74186-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directors Limited"	12-May-08 10:52 AM	

+="CN74183"	"Provision of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directors Limited"	12-May-08 10:55 AM	

+="CN74170-A2"	" Provision of Specialist Information Technology Services "	="Department of Immigration and Citizenship"	12-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	12-May-08 11:02 AM	

+="CN78182-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	16-Jul-07	30-Jun-08	132000.00	=""	="GREYTHORN PTY LTD"	12-May-08 11:04 AM	

+="CN78183-A1"	"HR and Financial Services Systems Documentation"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	02-Jul-07	30-Jun-08	132000.00	=""	="EJOBS RECRUITMENT SPECIALISTS PTY LTD"	12-May-08 11:04 AM	

+="CN78215"	"Lease Agreement"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	12-Dec-07	30-Jun-08	110000.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	12-May-08 01:05 PM	

+="CN78219"	"Engagement M&S Support for DEWSAR PDF"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	12-Dec-07	29-May-08	82500.00	=""	="AVALON SYSTEMS PTY LTD"	12-May-08 01:06 PM	

+="CN78221"	"OP OUTREACH"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	12-Dec-07	30-Jun-08	107250.00	=""	="PATTEMORE CONSTRUCTIONS"	12-May-08 01:06 PM	

+="CN78233"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	133000.00	=""	="GROSVENOR MANAGEMENT CONSULTING"	12-May-08 01:08 PM	

+="CN78237-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	16-Jul-07	27-Jun-08	138847.50	=""	="VEROSSITY PTY LTD"	12-May-08 01:09 PM	

+="CN78243-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	28-Jun-08	109500.00	=""	="ADECCO SERVICES PTY LTD"	12-May-08 01:09 PM	

+="CN78245-A1"	"Labour Hire - Passport Operations"	="Department of Foreign Affairs and Trade"	12-May-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	27-Jun-08	131250.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:09 PM	

+="CN78246"	"REPLACEMENT OF BUILDING & CABLE INFRASTRUCTURE PHASES 1 & 2."	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	12-Dec-07	30-May-08	82156.80	=""	="URS AUSTRALIA LTD"	12-May-08 01:10 PM	

+="CN78305"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	06-Dec-07	15-Jun-08	95750.00	=""	="CONSUNET PTY LTD"	12-May-08 01:18 PM	

+="CN78307"	"SA598 - Bulk Fuel Tanker/Deluge Shower"	="Department of Defence"	12-May-08	="Environmental management"	05-Dec-07	30-Jun-08	135129.50	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:18 PM	

+="CN78310"	"Renewal of Subscriptions"	="Department of Defence"	12-May-08	="Electronic reference material"	05-Dec-07	07-Dec-07	98611.42	=""	="OVID TECHNOLOGIES"	12-May-08 01:19 PM	

+="CN78312"	"Computers and accessories"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Dec-07	14-Dec-07	87465.01	=""	="ALPHAWEST SERVICES PTY LTD"	12-May-08 01:19 PM	

+="CN78332"	"Induction and Training courses"	="Department of Defence"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Dec-07	30-Dec-07	82500.00	=""	="DFAT - AUSTRALIAN GOVERNMENT"	12-May-08 01:22 PM	

+="CN78336"	"Rackmount industrial PC"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Dec-07	30-Apr-08	81048.00	=""	="UNITRONIX PTY LTD"	12-May-08 01:23 PM	

+="CN78341"	"MEDALS"	="Department of Defence"	12-May-08	="Castings"	04-Dec-07	30-Jun-08	82225.00	=""	="CASHS AUSTRALIA PTY LTD"	12-May-08 01:24 PM	

+="CN78365"	"R&D CONTRACT"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	04-Dec-07	30-Jun-08	146235.00	=""	="CALYTRIX TECHNOLOGIES PTY LTD"	12-May-08 01:28 PM	

+="CN78367"	"SUBSCRIPTION TO NEWS AND MILITARY ARCHIVES"	="Department of Defence"	12-May-08	="Paper Materials and Products"	04-Dec-07	30-Jun-09	127000.01	=""	="LEXIS NEXIS"	12-May-08 01:28 PM	

+="CN78368"	"security Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	04-Dec-07	31-Dec-09	133812.65	=""	="JACOBS AUSTRALIA"	12-May-08 01:28 PM	

+="CN78392"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	07-Dec-07	02-Jun-08	143000.00	=""	="CSIRO INDUSTRIAL PHYSICS"	12-May-08 01:32 PM	

+="CN78403"	"SOLE PROVIDER IN AUSTRALIA OF SOFTWARE REQUIRED"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	15-Dec-07	88426.80	=""	="MCMULLEN NOLAN & PARTNERS SURVEYORS"	12-May-08 01:34 PM	

+="CN78406"	"DMO BATTERY CHARGING - 6RAR - CONSULTANCY"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	10-Dec-07	30-Jun-08	99201.36	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:34 PM	

+="CN78408"	"FACOPS - SA2266"	="Department of Defence"	12-May-08	="Roads and landscape"	10-Dec-07	30-Jun-08	83050.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:35 PM	

+="CN78421"	"DEVIL UNITS AND SOFTWARE"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	25-Jan-08	119239.92	=""	="TURO TECHNOLOGY PTY LTD"	12-May-08 01:37 PM	

+="CN78428"	"FIRE CONFORMANCE - MINOR DELIVERY"	="Department of Defence"	12-May-08	="Fire protection"	10-Dec-07	30-Jun-08	82500.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:39 PM	

+="CN78430"	"SERVERS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	10-Dec-07	21-Dec-07	85255.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	12-May-08 01:39 PM	

+="CN78445"	"FACOPS - SA2482"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	129638.91	=""	="SPOTLESS P & F PTY LTD"	12-May-08 01:41 PM	

+="CN78446"	"AIR CHTR EX HIGH SIERRA"	="Department of Defence"	12-May-08	="Aircraft"	06-Dec-07	08-Dec-07	115365.00	=""	="ALLTRANS INTERNATIONAL"	12-May-08 01:41 PM	

+="CN78450"	"Contract 0708-219 Under Standing Offer 0506-271-26"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	30-Jun-08	81522.38	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 01:42 PM	

+="CN78453"	"Scanners"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	06-Dec-07	20-Dec-07	80240.60	=""	="COMPUTERCORP PTY LTD"	12-May-08 01:42 PM	

+="CN78455"	"DSTO RATIONALISATION PROJECT. ENTIRE - SUPPLY AND INSTALL MECHANICAL SERVICES."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	133738.00	=""	="ENTIRE AIRCONDITIONING PTY LTD"	12-May-08 01:43 PM	

+="CN78457"	"SQ REGIONAL FIRE SAFETY CONFORMANCE GALLIPOLI BKS"	="Department of Defence"	12-May-08	="Fire protection"	06-Dec-07	30-Jun-08	113304.41	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:43 PM	

+="CN78461"	"Contracted personnel - Business Administration Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Business administration services"	06-May-08	30-Jun-09	100795.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	12-May-08 01:43 PM	

+="CN78469"	"GATEWAY  INFRASTRUCTURE DESIGNER"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Dec-07	30-Jun-08	144375.00	=""	="PEOPLEBANK AUSTRALIA LTD"	12-May-08 01:44 PM	

+="CN78481"	"PROP STUDIES-PORT KEMBLA-REMEDIATION"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	06-Dec-07	30-Jun-08	88546.83	=""	="WOLLONGONG CITY COUNCIL"	12-May-08 01:46 PM	

+="CN78483"	"REPAIR AND COMMISSION ONLINE AIR - AMBERLEY"	="Department of Defence"	12-May-08	="Heating and ventilation and air circulation"	06-Dec-07	30-Jun-08	116402.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	12-May-08 01:47 PM	

+="CN78494-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	03-Dec-07	30-Jun-08	96866.00	=""	="ICON RECRUITMENT PTY LTD"	12-May-08 01:48 PM	

+="CN78496-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	99880.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:48 PM	

+="CN78500-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	07-Jan-08	30-Jun-08	120000.00	=""	="AMBIT GROUP PTY LIMITED"	12-May-08 01:49 PM	

+="CN78502-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	21-Jan-08	30-Jun-08	101200.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:49 PM	

+="CN78511"	"HOLSWORTHY HIGH VOLTAGE NETWORK REPLACEMENT PROGRAM"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	20-Dec-07	30-Jun-08	108350.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:50 PM	

+="CN78533"	"Research Agreement"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	20-Dec-07	14-Jan-08	109120.00	=""	="RMIT UNIVERSITY"	12-May-08 01:54 PM	

+="CN78542"	"SATCOM UPGRADE"	="Department of Defence"	12-May-08	="Electrical components"	20-Dec-07	29-Feb-08	92259.20	=""	="ELECTROTECH AUSTRALIA PTY LTD"	12-May-08 01:56 PM	

+="CN78544"	"AO/038/07-08 AIR CHTR OP CATALYST A330 OVERFLOW TS"	="Department of Defence"	12-May-08	="Aircraft"	20-Dec-07	20-Dec-07	85731.67	=""	="INDEPENDENT AVIATION PTY LTD"	12-May-08 01:56 PM	

+="CN78545"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	20-Dec-07	86900.00	=""	="DATA ANALYSIS AUSTRALIA PTY LTD"	12-May-08 01:56 PM	

+="CN78548"	"Design works for completion of works to Camp Sapper."	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	20-Dec-07	30-Jun-08	108460.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 01:58 PM	

+="CN78551-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Nov-07	30-Jun-08	107593.00	=""	="GREYTHORN PTY LTD"	12-May-08 01:58 PM	

+="CN78555-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	05-Nov-07	30-Jun-08	114400.00	=""	="INFINITE CONSULTING PTY LIMITED"	12-May-08 01:59 PM	

+="CN78567"	"SINGLE LEAP. BALL SOLUTIONS."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Dec-07	30-Jun-08	117160.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 02:01 PM	

+="CN78574"	"Purchase of Nortel Passport"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	12-Feb-08	85765.75	=""	="WESTCON GROUP"	12-May-08 02:02 PM	

+="CN78577"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	144968.05	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78578"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	30-Jan-08	94243.25	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78579"	"POC: STEVE CAUSER CONTACT: 02 626 50450"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	19-Dec-07	09-Jan-08	85941.80	=""	="SUN MICROSYSTEMS"	12-May-08 02:03 PM	

+="CN78582"	"Aluminium Alloy"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	20-Dec-07	28-Mar-08	108346.94	=""	="TRANSTAR METALS CORP"	12-May-08 02:04 PM	

+="CN78610-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	06-Sep-07	30-Jun-08	112350.00	=""	="EUROLINK CONSULTING AUSTRALIA PTY LTD"	12-May-08 02:09 PM	

+="CN78612-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	26-Sep-07	30-Jun-08	90090.00	=""	="GMT CANBERRA PTY LTD"	12-May-08 02:09 PM	

+="CN78614-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	01-Oct-07	30-Jun-08	144210.00	=""	="INFINITE CONSULTING PTY LIMITED"	12-May-08 02:09 PM	

+="CN78616-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	17-Oct-07	30-Jun-08	90805.00	=""	="GREYTHORN PTY LTD"	12-May-08 02:09 PM	

+="CN78620"	"Contract for Software design and Implementation under SO SON46385"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Jan-08	20-May-08	93600.00	=""	="BALL SOLUTIONS GROUP"	12-May-08 02:10 PM	

+="CN78626"	"conference deposit"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	11-Apr-08	100000.00	=""	="BRISBANE CONVENTION & EXHIBITION"	12-May-08 02:11 PM	

+="CN78634"	"Supply & Deliver Road Base Materials"	="Department of Defence"	12-May-08	="Roads and landscape"	04-Jan-08	30-Jun-08	108350.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	12-May-08 02:12 PM	

+="CN78687-A1"	"IT Contractor Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Information services"	18-Sep-07	30-Jun-08	88908.00	=""	="GMT CANBERRA PTY LTD"	12-May-08 02:16 PM	

+="CN78730"	"02-234684 31 OCT 07 LINE ITEMS 9520-9698"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Oct-07	30-Jun-08	91295.03	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:19 PM	

+="CN78756"	"NQ2224 - RAAF BASE TOWNSVILLE DS-NQ - REPAIR FLOOD"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	30-Jun-08	88000.00	=""	="SPOTLESS"	12-May-08 02:20 PM	

+="CN78757"	"Provision of professional services to support the development of Amiel modules"	="Department of Defence"	12-May-08	="Measuring and observing and testing instruments"	07-Jan-08	30-Jun-08	82500.00	=""	="QUANTITATIVE AERONAUTICS"	12-May-08 02:20 PM	

+="CN78763"	"AIR CHTR OP SLIPPER RTF 4 MRE"	="Department of Defence"	12-May-08	="Aircraft"	07-Jan-08	17-Mar-08	121000.00	=""	="STRATEGIC AVIATION - USD"	12-May-08 02:21 PM	

+="CN78779"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	113611.85	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	12-May-08 02:21 PM	

+="CN78796"	"Comms/IT"	="Department of Defence"	12-May-08	="Hardware"	14-Apr-08	05-May-08	136615.06	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 02:22 PM	

+="CN78798"	"LEASE FOR VEHICLES"	="Department of Defence"	12-May-08	="Motor vehicles"	30-Nov-07	03-Dec-07	81846.00	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 02:23 PM	

+="CN78814"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	14-Apr-08	14-Apr-08	81280.91	=""	="CACI TECHNOLOGIES INC"	12-May-08 02:23 PM	

+="CN78833"	"Videoconferencing and audiovisual system"	="Department of Defence"	12-May-08	="Photographic or filming or video equipment"	21-Dec-07	29-Feb-08	93613.25	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78836"	"POC:Tanya Boulton 02 626 69174"	="Department of Defence"	12-May-08	="Other sports"	21-Dec-07	31-Jul-08	110195.25	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:25 PM	

+="CN78839"	"Aircraft Technical Support"	="Department of Defence"	12-May-08	="Aircraft equipment"	21-Dec-07	30-Jun-08	104500.00	=""	="ROSEBANK ENGINEERING"	12-May-08 02:25 PM	

+="CN78848"	"HQIADS C2 CJOC ENHANCEMENT PROJECT"	="Department of Defence"	12-May-08	="Electronic hardware and component parts and accessories"	05-Dec-07	05-Dec-07	106603.20	=""	="BOEING AUSTRALIA LTD"	12-May-08 02:26 PM	

+="CN78849"	"Contractor"	="Department of Defence"	12-May-08	="Personnel recruitment"	21-Dec-07	30-Jun-08	125400.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	12-May-08 02:26 PM	

+="CN78863"	"MS#4 & MS#5"	="Department of Defence"	12-May-08	="Environmental management"	30-Apr-07	06-Dec-07	87101.47	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 02:27 PM	

+="CN78864"	"PSP:Melissa McKenna 02 626 50791"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	02-Jan-08	30-Jun-08	138725.46	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 02:27 PM	

+="CN78876"	"TRAINING"	="Department of Defence"	12-May-08	="Education and Training Services"	02-Jan-08	30-Jun-08	80437.07	=""	="BOX HILL INSTITUTE OF TAFE"	12-May-08 02:28 PM	

+="CN78895"	"IT Support Services"	="Department of Defence"	12-May-08	="Temporary personnel services"	21-Dec-07	28-Apr-08	89036.64	=""	="BLUE SWIMMER CONSULTING"	12-May-08 02:29 PM	

+="CN78899"	"NETWORK LEASE"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	11-Apr-08	24-Apr-08	90090.00	=""	="MOTOROLA AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78902"	"Desktop Computers"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	21-Apr-08	108565.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	12-May-08 02:29 PM	

+="CN78998"	"PREMIERE PACKAGE 33 UNITS FOR 12 MONTHS"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	03-Apr-08	12-Apr-08	127494.97	=""	="GULF DTH FZ LLC"	12-May-08 02:37 PM	

+="CN79003"	"LCD MONITORS"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	11-Apr-08	28-Apr-08	147034.36	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	12-May-08 02:37 PM	

+="CN79012"	"PREFABRICATED SHED"	="Department of Defence"	12-May-08	="Prefabricated structures"	04-Apr-08	20-Jun-08	87064.29	=""	="AUSSIE SHEDS"	12-May-08 02:38 PM	

+="CN79022"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	01-May-08	88150.00	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	12-May-08 02:38 PM	

+="CN79043"	"Engage a consultant for the refurbishment of the 25m Range at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	07-Apr-08	30-Jun-08	110000.00	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 02:40 PM	

+="CN79052"	"Automated Super Wide Roll Cutter"	="Department of Defence"	12-May-08	="Printing and publishing equipment"	04-Apr-08	30-Jun-08	83941.00	=""	="BUDDE INTERNATIONAL"	12-May-08 02:40 PM	

+="CN79053"	"04-425303 29FEB08"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	29-Feb-08	12-Mar-08	97273.26	=""	="QANTAS AIRWAYS LTD"	12-May-08 02:41 PM	

+="CN79057"	"LAVARACK BARRACKS - JOINT THEATRE DISTRIBUTION SYS PH2)"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	110096.80	=""	="GHD PTY LTD"	12-May-08 02:41 PM	

+="CN79073"	"Renovation of Office"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Apr-08	30-Jun-08	131285.00	=""	="SPOTLESS P & F PTY LTD"	12-May-08 02:42 PM	

+="CN79076"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	06-Mar-08	27-Mar-08	82400.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 02:43 PM	

+="CN79119"	"Procurement of Training Services"	="Department of Defence"	12-May-08	="Education and Training Services"	20-Aug-07	03-Sep-07	140159.50	=""	="MINISTRY OF DEFENCE-DEFENCE PROCURE"	12-May-08 02:47 PM	

+="CN79155"	"CCC 322778 AC 21911 PRN LIS 029 EC135 TRANSITION COURSE GERMANY"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	03-Apr-08	05-Apr-08	139537.04	=""	="BUNDESWEHR SERVICE CENTRE BONN"	12-May-08 02:50 PM	

+="CN79161"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	01-May-08	05-May-08	120000.00	=""	="MINTER ELLISON"	12-May-08 02:51 PM	

+="CN79214"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	01-May-08	05-May-08	110000.00	=""	="MINTER ELLISON"	12-May-08 02:56 PM	

+="CN79219"	"RENTAL AGREEMENT FOR PRINTERS AT DPS Nationally"	="Department of Defence"	12-May-08	="Laboratory and scientific equipment"	23-Apr-08	30-Jun-08	134200.00	=""	="CANNON AUSTRALIA PTY LTD"	12-May-08 02:56 PM	

+="CN79223"	"Joint Seminar Wargaming Adjudication Tool (j"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	13-Mar-08	30-Jun-08	127028.00	="2005-1082096"	="EBOR COMPUTING"	12-May-08 02:57 PM	

+="CN79229"	"REMEDIATION WORKS"	="Department of Defence"	12-May-08	="General building construction"	14-Feb-08	30-Jun-08	95783.60	=""	="DEFENCE MAINTENANCE MANAGEMENT"	12-May-08 02:58 PM	

+="CN79244"	"LANDING FEES FOR MILITARY AIRCRAFT FOR EXERCISE WALLABY 2007"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	20-Dec-07	20-Dec-07	105152.85	=""	="ROCKHAMPTON CITY COUNCIL"	12-May-08 02:59 PM	

+="CN79254"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	29-Jan-08	27-Jun-08	117437.18	=""	="ROSS HUMAN DIRECTIONS"	12-May-08 03:00 PM	

+="CN79263"	"Undertake repairs/maintenance & upgrade works in various LIA buildings at RAAF Base Williamtown"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	82089.11	=""	="SSL ASSET SERVICES PTY LTD"	12-May-08 03:01 PM	

+="CN79265"	"Passive Infrastructure Works"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	30-Apr-08	93263.41	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:01 PM	

+="CN79287"	"Upgrade SSGUI"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	30-May-08	99000.00	=""	="SYDAC PTY LTD"	12-May-08 03:03 PM	

+="CN79294"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	21-Apr-08	28-Apr-08	95000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:04 PM	

+="CN79306"	"1 seat sofa x 50 @ $576.00 ea 2 seat sofa 50 @ $886.80 ea"	="Department of Defence"	12-May-08	="Furniture and Furnishings"	10-Apr-08	10-Apr-08	80454.00	=""	="CAM SHELVING OFFICE INTERIORS"	12-May-08 03:06 PM	

+="CN79319"	"Deployable Mast Assembly"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-May-08	88591.80	=""	="EYLEX PTY LTD"	12-May-08 03:07 PM	

+="CN79320"	"TALISMAN SABER 07 QANTAS"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	24-Apr-08	122929.96	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:07 PM	

+="CN79323"	"CF30 Panasonic Toughbook Laptop with Accessories"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	09-Apr-08	30-May-08	91872.00	=""	="TLC DATA SYSTEMS"	12-May-08 03:07 PM	

+="CN79327"	"Milex 19" Transport Housing"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	09-Apr-08	30-May-08	86350.00	=""	="SHOCK & VIBRATION TECHNOLOGIES PTY"	12-May-08 03:08 PM	

+="CN79338"	"Ref No:2006/1055088"	="Department of Defence"	12-May-08	="Project management"	09-Apr-08	30-Jun-08	141030.00	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:08 PM	

+="CN79356"	"PUMP ASSEMBLY"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	03-Apr-08	15-Feb-09	82117.70	=""	="GE AVIATION MECHANICAL SYSTEMS-SANT"	12-May-08 03:09 PM	

+="CN79362"	"Ford Ranger PK 4x4 RANGER Dual Cab Pick Up ( UM4) Qty 6"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	17-Oct-08	148404.04	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79368"	"Ford FG Ute ( US) Qty 5"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	01-Apr-08	17-Oct-08	117112.66	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:10 PM	

+="CN79379"	"Resarch Agreement Risk Based Assessment of Complex Systems"	="Department of Defence"	12-May-08	="Engineering and Research and Technology Based Services"	09-Apr-08	30-Jun-08	101200.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	12-May-08 03:11 PM	

+="CN79399"	"02-23468431DEC07 LINE 9712 - 9899"	="Department of Defence"	12-May-08	="Travel and Food and Lodging and Entertainment Services"	31-Dec-07	30-Jun-08	124229.20	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:13 PM	

+="CN79404"	"Provision of Professional Service Provider Piangegonda  labour and  travel services"	="Department of Defence"	12-May-08	="Aircraft"	01-Apr-08	30-Jun-08	115149.70	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 03:13 PM	

+="CN79412"	"QANTAS ACCOUNT 1 AVN REGT DECEMBER 2007 ACCOUNT NO 04-422406"	="Department of Defence"	12-May-08	="Passenger transport"	31-Dec-07	20-Feb-08	92470.93	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:14 PM	

+="CN79420"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jun-08	112335.08	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79424"	"PROPERTY OPERATING EXPENSE - NOD"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	04-Feb-08	30-Jun-08	97042.31	=""	="UNITED GROUP SERVICES"	12-May-08 03:14 PM	

+="CN79434"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	18-Apr-08	18-Apr-08	92730.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:15 PM	

+="CN79452"	"QTY 500 ELECTRICAL CONNECTORS FOR USE AT HEAVY REPAIR FACILITY. REFER CAPO C439154."	="Department of Defence"	12-May-08	="Electrical equipment and components and supplies"	01-Apr-08	12-Jun-08	91819.20	=""	="THALES AUSTRALIA"	12-May-08 03:16 PM	

+="CN79460"	"Design Phase - Civil Infrastructure Project to Support Ground Stations ADSCS"	="Department of Defence"	12-May-08	="Satellites"	01-Apr-08	31-Jul-08	103966.24	=""	="BOEING AUSTRALIA LIMITED"	12-May-08 03:17 PM	

+="CN79466"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	92730.00	=""	="INTERIORS AUSTRALIA"	12-May-08 03:17 PM	

+="CN79475"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79483"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79484"	"STAGE 2 QUOTATION FOR THE REPAIRS OF HYDRAULIC LINES"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Mar-08	30-May-08	123479.93	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 03:18 PM	

+="CN79488"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="General building construction"	16-Apr-08	16-Apr-08	121004.40	=""	="INTERIORS AUSTRALIA"	12-May-08 03:18 PM	

+="CN79497"	"Reference:DRMS AB806484 File Reference Number:2005/1060179/3"	="Department of Defence"	12-May-08	="Project management"	08-Apr-08	30-Jun-08	108667.05	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 03:19 PM	

+="CN79504"	"SPECTRUM ANALYZER FOR HQJTF"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Feb-08	22-Feb-08	83668.20	=""	="SHABAKKAT CELLULAR CO"	12-May-08 03:19 PM	

+="CN79508"	"QANTAS BILL"	="Department of Defence"	12-May-08	="Transportation services equipment"	20-Feb-08	25-Feb-08	104739.92	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:20 PM	

+="CN79509"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Sep-08	120120.00	=""	="PEOPLEBANK"	12-May-08 03:20 PM	

+="CN79510"	"Ship technical services"	="Department of Defence"	12-May-08	="Military watercraft"	25-Mar-08	30-Nov-08	126500.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 03:20 PM	

+="CN79532"	"Provision of Property Management Services"	="Medicare Australia"	12-May-08	="General building construction"	29-Apr-08	29-Apr-08	83270.00	=""	="Grand Entrance Control Pty Ltd"	12-May-08 03:21 PM	

+="CN79533"	"System Hardware Maintenance"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	08-Apr-08	31-Dec-08	91560.55	=""	="CISCO SYSTEMS AUSTRALIA PTY LTD"	12-May-08 03:21 PM	

+="CN79540"	"NEW ACCOMMODATION AT KAIA"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	09-Feb-08	25-Feb-08	119941.25	=""	="KBY INTERNATIONAL"	12-May-08 03:22 PM	

+="CN79544"	"LAUNDRY AND GYM FOR AUSTRALIA ISLAND"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	23-Feb-08	25-Feb-08	108996.17	=""	="SAUDI NAVAL SUPPORT COMPANY"	12-May-08 03:22 PM	

+="CN79546"	"SCOPING STUDIES FOR AIRFIELD PROJECTS AT RAAF BASE TOWNSVILLE AND POINT COOK AIRFIELD."	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-08	132000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 03:22 PM	

+="CN79548"	"TRAVEL SERVICES"	="Department of Defence"	12-May-08	="Aircraft"	31-Jan-08	29-Feb-08	109396.78	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:22 PM	

+="CN79549"	"Provision of ICT Labour Hire"	="Medicare Australia"	12-May-08	="Business administration services"	01-Apr-08	30-Jun-08	91520.00	=""	="PAXUS PEOPLE"	12-May-08 03:22 PM	

+="CN79563"	"LEEUWIN Class Hydrograhic ships safety case"	="Department of Defence"	12-May-08	="Marine transport"	26-Mar-08	13-Jun-08	87000.00	=""	="AMOG CONSULTING"	12-May-08 03:23 PM	

+="CN79594"	"QANTAS CHARGES FOR DS-SING PERSONNEL NOV/DEC07"	="Department of Defence"	12-May-08	="Passenger transport"	21-Dec-07	30-Jun-08	89236.00	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79596"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	23-Apr-08	30-Jun-08	113960.00	=""	="WEBMETHODS AUSTRALIA PTY LTD"	12-May-08 03:26 PM	

+="CN79599"	"AIRFARES FOR DEFENCE MEMBERS COURSE AND RLLT"	="Department of Defence"	12-May-08	="Recreational aircraft"	18-Feb-08	31-Dec-08	116319.89	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:26 PM	

+="CN79635"	"CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	12-May-08	="Marine craft systems and subassemblies"	11-Feb-08	12-Jan-09	141029.98	=""	="RAYTHEON SYSTEMS LTD"	12-May-08 03:28 PM	

+="CN79639"	"Provision of Office Fit-out Services"	="Medicare Australia"	12-May-08	="Commercial and industrial furniture"	04-Apr-08	19-May-08	95779.20	=""	="SCHIAVELLO (ACT) PTY LTD"	12-May-08 03:29 PM	

+="CN79641"	"Design & Dev. of a Design Acceptance Register"	="Department of Defence"	12-May-08	="Software"	20-Mar-08	31-Jul-08	134886.81	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	12-May-08 03:29 PM	

+="CN79645"	"Provision of Security Supplies"	="Medicare Australia"	12-May-08	="Computer services"	04-Apr-08	15-Jun-08	81377.98	=""	="Senetas Security P/L"	12-May-08 03:29 PM	

+="CN79675"	"BRASSIERES FOR ARMY & NAVY PERSONNEL"	="Department of Defence"	12-May-08	="Clothing"	25-Mar-08	30-Jun-08	120000.00	=""	="BONDS INDUSTRIES LTD"	12-May-08 03:32 PM	

+="CN79700"	"Repairs of CPT located at Brisbane, Darwin & Pucka"	="Department of Defence"	12-May-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	99000.00	=""	="THALES AUSTRALIA"	12-May-08 03:34 PM	

+="CN79707"	"NSW Armaguard Mar08"	="Medicare Australia"	12-May-08	="Accounting and auditing"	23-Mar-08	18-Apr-08	97231.76	=""	="LINFOX ARMAGUARD PTY LTD"	12-May-08 03:34 PM	

+="CN79738"	"PSP Support"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	25-Mar-08	30-Apr-08	120000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 03:36 PM	

+="CN79743"	"Suppply and fit upgarde pintle hooks"	="Department of Defence"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Mar-08	13-Jun-08	117799.92	=""	="SCANIA AUSTRALIA PTY LTD"	12-May-08 03:36 PM	

+="CN73472"	"Provision of Technology Planning & Management, Documentation including document production and copying services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Information technology consultation services"	03-Mar-08	30-Apr-08	91815.40	=""	="Dept of Finance & Administration"	12-May-08 03:39 PM	

+="CN79786"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	12-May-08	="Computer services"	11-Apr-08	30-Jun-08	99176.00	=""	="VEROSSITY PTY LTD"	12-May-08 03:39 PM	

+="CN79788"	"V310009 HSEMS PROCEDURE DEVELOPMENT AND COMPLETION"	="Defence Materiel Organisation"	12-May-08	="Powered fixed wing aircraft"	15-Feb-08	30-Jun-08	103484.49	=""	="RAYTHEON AUSTRALIA"	12-May-08 03:39 PM	

+="CN79792"	"POC: James Ahern Contact: 02 6265 0962"	="Department of Defence"	12-May-08	="Software"	16-Nov-07	30-Mar-08	118118.66	=""	="KINETIC DEFENCE SERVICES PTY LTD"	12-May-08 03:40 PM	

+="CN79811"	"HMAS STIRLING - REDEVELOPMENT STAGE 2."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	15-Nov-07	30-Jun-08	83247.36	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	12-May-08 03:41 PM	

+="CN79814"	"TRAINING"	="Defence Materiel Organisation"	12-May-08	="Specialty aircraft"	15-Feb-08	30-Mar-08	115707.14	=""	="ELBIT SYSTEMS LTD"	12-May-08 03:41 PM	

+="CN79825"	"Toyota Hiace Van (4 Cy) Qty: 4"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	28-Mar-08	29-Aug-08	113119.64	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 03:42 PM	

+="CN79838"	"Provision of Postal Services"	="Medicare Australia"	12-May-08	="Mail and cargo transport"	08-Apr-08	31-Dec-08	85708.86	=""	="AUSTRALIA POST"	12-May-08 03:43 PM	

+="CN79840"	"RPT  FLIGHTS"	="Department of Defence"	12-May-08	="Leatherworking repairing machinery and equipment"	16-Jan-08	30-Jun-08	84592.22	=""	="QANTAS AIRWAYS LTD"	12-May-08 03:43 PM	

+="CN79868"	"QUARANTINE FEES"	="Department of Defence"	12-May-08	="Environmental protection"	21-Apr-08	30-Jun-08	150000.00	=""	="AUSTRALIAN QUARANTINE AND INSPECTIO"	12-May-08 03:45 PM	

+="CN79869"	"Delivery of Kestrel Operating, Testing and Calibration Improvements"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	28-Mar-08	30-Jun-08	111185.00	=""	="DARONMONT TECHOLOGIES PTY LTD"	12-May-08 03:45 PM	

+="CN79880"	"This is a financial transaction conducted in accor 445/2005 dated 08 August 2005."	="Defence Materiel Organisation"	12-May-08	="Construction and maintenance support equipment"	15-Feb-08	16-Jun-08	90000.00	=""	="DEFENCE SCIENCE & TECHNOLOGY"	12-May-08 03:45 PM	

+="CN79883"	"TD047 ALR2002 INA AMPLIFIER OBSOLESCENCE"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	15-Feb-08	30-Jun-08	139912.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 03:46 PM	

+="CN79887-A1"	" 3114 COMBAT SYSTEM SIMULATOR URDEF RECTIFICATION "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	15-Feb-08	03-May-11	83155.80	=""	="CSC AUSTRALIA PTY LTD"	12-May-08 03:46 PM	

+="CN79891"	"Various spare parts for Live Simulation Equipment"	="Defence Materiel Organisation"	12-May-08	="Electronic hardware and component parts and accessories"	14-Feb-08	29-Aug-08	116028.00	=""	="CUBIC DEFENCE NEW ZEALAND LTD"	12-May-08 03:46 PM	

+="CN79895"	"4516.19 CONDUCT CONDITION ASSESSMENT ON DIESEL SYSTEMS HMAS PERTH"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	14-Feb-08	03-Mar-08	90493.93	=""	="MTU DETROIT DIESEL AUSTRALIA"	12-May-08 03:46 PM	

+="CN79914"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	18-Mar-08	18-Mar-08	100000.00	=""	="MINTER ELLISON"	12-May-08 03:48 PM	

+="CN79930"	"Rework/Upgrade of ADP5110 Nitrogen Regulators to ADP5110A Standard"	="Department of Defence"	12-May-08	="Industrial process machinery and equipment and supplies"	27-Mar-08	30-Jul-08	90764.01	=""	="MONZ LTD"	12-May-08 03:49 PM	

+="CN79949"	"QANTAS ACCOUNT FOR DECEMBER 2007"	="Department of Defence"	12-May-08	="Aircraft"	31-Dec-07	13-Mar-08	139543.31	=""	="QANTAS"	12-May-08 03:51 PM	

+="CN79951"	"baseLINE TRANSACTIONAL DATA MANAGEMENT SYSTEM TRIAL - HMAS NORMAN IMPLEMENTATION"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	13-Feb-08	28-Feb-08	122083.09	=""	="RELEGEN PTY LTD"	12-May-08 03:51 PM	

+="CN79955"	"The Air Doctor to Provide Fuel Tank Entry Equipmen JSN4813C dated 02Nov07."	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	14-Feb-08	31-Mar-08	116644.00	=""	="THE AIR DOCTOR"	12-May-08 03:51 PM	

+="CN79965"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	92530.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	12-May-08 03:52 PM	

+="CN79978"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	107207.10	=""	="BLAKE DAWSON WALDRON"	12-May-08 03:54 PM	

+="CN79980"	"TECHNCIAL SERVICES"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	27-Mar-08	30-Sep-08	80475.84	=""	="PARTECH SYSTEMS PTY LTD"	12-May-08 03:54 PM	

+="CN79989"	"Professional Legal Fees"	="Defence Materiel Organisation"	12-May-08	="Legal services"	14-Feb-08	30-Jun-08	94380.00	=""	="CLAYTON UTZ"	12-May-08 03:55 PM	

+="CN80002"	"Profesional service"	="Defence Materiel Organisation"	12-May-08	="Communications Devices and Accessories"	14-Feb-08	31-Dec-08	132000.00	=""	="CENTRIX - PM (AUST) PTY LTD"	12-May-08 03:56 PM	

+="CN80014-A1"	"GST for satellite services"	="Department of Defence"	12-May-08	="Components for information technology or broadcasting or telecommunications"	12-Mar-08	16-Feb-10	135956.84	=""	="STRATOS"	12-May-08 03:57 PM	

+="CN80022"	"SITE SURVEYS OF UNITS FOR PROJECT"	="Defence Materiel Organisation"	12-May-08	="Management support services"	06-Feb-08	30-Jun-08	84700.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 03:58 PM	

+="CN80052"	"ENGAGEMENT OF EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Project management"	12-Dec-07	31-Mar-08	82965.04	=""	="JACOBS AUSTRALIA"	12-May-08 04:00 PM	

+="CN80072"	"external service provider"	="Department of Defence"	12-May-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-09	126233.32	=""	="ICON RECRUITMENT"	12-May-08 04:01 PM	

+="CN80084"	"External Service Provider for Project Engineering Support Manager"	="Defence Materiel Organisation"	12-May-08	="Guided missiles"	06-Feb-08	30-Jun-08	93663.50	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 04:02 PM	

+="CN80089"	"Engagement of ESP for Brisbane Based Sustainment Integration Engineering Services"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-09	120761.30	=""	="NOVA AEROSPACE"	12-May-08 04:02 PM	

+="CN80092"	"QANTAS RPT FLIGHTS FEB 08 CATALYST"	="Department of Defence"	12-May-08	="Aircraft"	29-Feb-08	31-Mar-08	87469.42	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:02 PM	

+="CN80100"	"BAK 12 Aircraft Arresting System spares"	="Department of Defence"	12-May-08	="Aircraft landing and braking systems"	11-Apr-08	20-Nov-08	87974.13	=""	="DEFENCE LIAISON SERVICES PTY LTD"	12-May-08 04:02 PM	

+="CN80116"	"MISSILE LAUNCHER"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	11-Dec-07	10-Oct-08	142112.00	=""	="SAAB BOFORS DYNAMICS AB"	12-May-08 04:03 PM	

+="CN80121"	"40 mm cartridge"	="Department of Defence"	12-May-08	="Light weapons and ammunition"	11-Dec-07	20-Feb-08	121262.68	=""	="DEFENSE TECHNOLOGY CORPORATION OF A"	12-May-08 04:04 PM	

+="CN80130"	"BACKLOG REMEDIATION PHASE 2"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	10-Apr-08	30-Jun-08	110000.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:04 PM	

+="CN73563"	"Broadcasting Services"	="Department of the Prime Minister and Cabinet"	12-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	02-May-08	82832.00	=""	="Department of Parliamentary Services"	12-May-08 04:05 PM	

+="CN80134"	"SETTLEMENT"	="Department of Defence"	12-May-08	="Legal services"	26-Feb-08	28-Feb-08	93100.00	=""	="MINTER ELLISON"	12-May-08 04:05 PM	

+="CN80139"	"Engagement of ESP for Brisbane Based Sustainment Iimplementation Engieer Supervisor"	="Department of Defence"	12-May-08	="Management support services"	10-Apr-08	30-Jun-09	122190.20	=""	="NOVA AEROSPACE"	12-May-08 04:05 PM	

+="CN80150"	"pump out & disposals western st"	="Department of Defence"	12-May-08	="Refuse disposal and treatment"	21-Dec-07	30-Jun-08	91700.00	=""	="WANLESS WASTECORP"	12-May-08 04:05 PM	

+="CN80153"	"Tekronix 7051 Arbitary Waveform Generator (AWG)"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Dec-07	31-Jan-08	106692.30	=""	="TEKMARK AUSTRALIA PTY LTD"	12-May-08 04:06 PM	

+="CN80160"	"Undertake Rationalisation oof HMAS Melbourne RAST Piping System during IMAV 12"	="Department of Defence"	12-May-08	="Military watercraft"	10-Apr-08	30-May-08	124783.69	=""	="THALES AUSTRALIA"	12-May-08 04:07 PM	

+="CN80162"	"Heritage and Archival recording"	="Defence Materiel Organisation"	12-May-08	="Manufacturing support services"	06-Feb-08	30-Jun-08	145790.70	=""	="WOODHEAD INTERNATIONAL"	12-May-08 04:07 PM	

+="CN73589"	"Provision of temporary non security staff for various duties"	="Department of the Prime Minister and Cabinet"	12-May-08	="Temporary personnel services"	14-Apr-08	02-May-08	85630.00	=""	="Department of Parliamentary Services"	12-May-08 04:07 PM	

+="CN80174"	"stores support for survey motor launches dec 07 and jan 08"	="Department of Defence"	12-May-08	="Marine transport"	11-Dec-07	31-Mar-08	96208.68	=""	="G A GLANVILLE & CO"	12-May-08 04:08 PM	

+="CN80178"	"Technical Communications Specialist"	="Department of Defence"	12-May-08	="Information services"	11-Dec-07	29-Feb-08	122128.60	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	12-May-08 04:08 PM	

+="CN80185"	"Conversion of Publications into SGML Format IAW Contract C338452"	="Department of Defence"	12-May-08	="Electronic reference material"	09-Apr-08	30-Jun-08	108034.30	=""	="BOEING AUSTRALIA LTD"	12-May-08 04:09 PM	

+="CN80210"	"INSTALL MODULES HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	09-Apr-08	30-May-08	129025.81	=""	="TAYLOR BROS (SLIPWAY & ENGINEERING)"	12-May-08 04:11 PM	

+="CN80217"	"Comms/IT Quotation: 0210072"	="Department of Defence"	12-May-08	="Hardware"	19-Nov-07	03-Dec-07	86779.00	=""	="XSI DATA SOLUTIONS PTY LTD"	12-May-08 04:11 PM	

+="CN80223"	"Progress Claim no 10 Solomon Islands Wharf Project 127"	="Department of Defence"	12-May-08	="Transportation components and systems"	30-Nov-07	31-Dec-08	114861.88	=""	="FLETCHER KWAIMANI JOINT VENTURE"	12-May-08 04:12 PM	

+="CN80250"	"AIRFARES FOR DEFENCE MEMBERS AND SPOUSES FOR LEAVE AND COURSE TRAVEL."	="Department of Defence"	12-May-08	="Recreational aircraft"	21-Feb-08	31-Dec-08	84919.82	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:14 PM	

+="CN80261"	"Accommodation assessment and fitout for Contract Evaluation area"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	29-Feb-08	84480.00	=""	="DEFENCE SERVICES AUSTRALIA PTY LTD"	12-May-08 04:15 PM	

+="CN80265"	"ARTC JANUARY 2008 QANTAS STATEMENT"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	13-Feb-08	07-Mar-08	106847.83	=""	="QANTAS AIRWAYS LTD"	12-May-08 04:15 PM	

+="CN80269"	"REPAIR OF AIRCRAFT HANDLER"	="Defence Materiel Organisation"	12-May-08	="Aircraft equipment"	06-Feb-08	19-May-08	100834.90	=""	="DOUGLAS EQUIPMENT LTD"	12-May-08 04:16 PM	

+="CN80294"	"ACTO Liaison Support"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	14-Jul-08	137209.16	=""	="JACOBS AUSTRALIA"	12-May-08 04:18 PM	

+="CN80299"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	94925.00	=""	="KPMG"	12-May-08 04:18 PM	

+="CN80305"	"production of electronic copies of HMAS Melbourne Ships Information Boobs (SIBs)"	="Department of Defence"	12-May-08	="Military watercraft"	20-Dec-07	15-Jun-08	91307.70	=""	="HALLMARK LOGISTICS & ENGINEERING"	12-May-08 04:18 PM	

+="CN80304"	"RAST PIPING SYSTEM RATIONALISATION HMAS SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	05-Feb-08	30-Apr-08	116953.49	=""	="THALES AUSTRALIA"	12-May-08 04:18 PM	

+="CN80307"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	91300.00	=""	="CENTRE FOR MILITARY AND VETERANS"	12-May-08 04:19 PM	

+="CN80312"	"PROVISION OF PM/CA SERVICES - ADF AIRFIELD PAVEMEN BUTTERWORTH, MALAYSIA."	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	90090.00	=""	="GHD PTY LTD"	12-May-08 04:19 PM	

+="CN80332"	"Purchase 42 Laptops and 12 iP90 Printers"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	14-Apr-08	15-May-08	80412.00	=""	="PORTABLE COMPUTER SYSTEMS"	12-May-08 04:21 PM	

+="CN80350"	"IQ TASK"	="Defence Materiel Organisation"	12-May-08	="Specialised educational services"	11-Feb-08	30-May-08	95850.66	=""	="AUSTRALIAN AEROSPACE LTD"	12-May-08 04:22 PM	

+="CN80351"	"51FNQR PORTON BARRACKS - WORKSHOP AWNING"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	86273.00	=""	="SPOTLESS"	12-May-08 04:22 PM	

+="CN80360"	"Task Scheduling and Analysis"	="Defence Materiel Organisation"	12-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Feb-08	30-Jun-08	104362.29	=""	="JACOBS AUSTRALIA"	12-May-08 04:23 PM	

+="CN80358"	"LADS SECURITY AND ICT NETWORK UPGRADE"	="Department of Defence"	12-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-Nov-07	30-Jun-08	86615.10	=""	="EMAK COMMUNICATIONS"	12-May-08 04:23 PM	

+="CN80365"	"MOBILE GIS MAPPING FOR TRAINING AREA INSPECTION RE TRAINING AREA MANAGEMENT"	="Department of Defence"	12-May-08	="Building construction and support and maintenance and repair services"	20-Nov-07	30-Jun-08	116440.50	=""	="ENSR AUSTRALIA PTY LIMITED"	12-May-08 04:23 PM	

+="CN80366"	"CIIP Claim for Symbol Generator - contract V310148"	="Defence Materiel Organisation"	12-May-08	="Hydraulic systems and components"	11-Feb-08	31-Mar-08	145421.91	=""	="AIRFLITE PTY LTD"	12-May-08 04:23 PM	

+="CN80373"	"Support for the Development of Documnetation"	="Defence Materiel Organisation"	12-May-08	="Electronic reference material"	11-Feb-08	30-May-08	99000.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:24 PM	

+="CN80377"	"AIR CHTR OP ASTUTE"	="Department of Defence"	12-May-08	="Aircraft"	20-Nov-07	31-Dec-07	103700.00	=""	="PDL TOLL"	12-May-08 04:24 PM	

+="CN80388"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	07-Mar-08	112420.00	=""	="SMS CONSULTING GROUP PTY LTD"	12-May-08 04:24 PM	

+="CN80394"	"HMAS Cairns Armoury Awning"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	16-Nov-07	30-Jun-08	93467.00	=""	="SPOTLESS"	12-May-08 04:25 PM	

+="CN80395"	"Integrated Logistic Support for BLD Sustainment Gp"	="Department of Defence"	12-May-08	="Management support services"	20-Dec-07	24-Oct-08	111198.48	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	12-May-08 04:25 PM	

+="CN80408"	"Paper, Toilet"	="Department of Defence"	12-May-08	="Paper Materials and Products"	20-Dec-07	30-Apr-08	114015.00	=""	="MANSFIELDS PTY LTD"	12-May-08 04:25 PM	

+="CN80420"	"SHIPPING -SEA SPARROW"	="Department of Defence"	12-May-08	="Transportation components and systems"	20-Dec-07	31-Dec-07	80700.75	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 04:26 PM	

+="CN80421"	"DTS 82 RASS Testing and Training AN/TPS-77"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	14-Apr-08	28-Apr-08	117416.06	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 04:26 PM	

+="CN80434"	"AD HOC TASK 01/08 DMO SUPPORT TO 2/14 QMI LHR"	="Defence Materiel Organisation"	12-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Feb-08	30-Jun-08	80542.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	12-May-08 04:27 PM	

+="CN80440"	"SML airconditioning upgrade"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	14-Apr-08	19-Sep-08	80073.84	=""	="G A GLANVILLE & CO"	12-May-08 04:27 PM	

+="CN80441"	"REPAIR NO.1 FREEZER UNIT HMAS KANIMBLA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	10-Jan-08	10-Feb-08	96994.04	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	12-May-08 04:27 PM	

+="CN80445"	"Amberley ILS Refurb"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	14-Apr-08	30-Jun-08	115079.70	=""	="AIRSERVICES AUSTRALIA"	12-May-08 04:27 PM	

+="CN80450"	"wireless connectivity in HMAS CAIRNS - wireless shoreside equipment"	="Department of Defence"	12-May-08	="Electrical components"	14-Apr-08	30-May-08	86338.40	=""	="KAZ GROUP PTY LTD"	12-May-08 04:27 PM	

+="CN80457"	"DOUBLE TURN "WOODS MIL-DOTRETICULE""	="Department of Defence"	12-May-08	="Gun systems"	09-Jan-08	16-Jun-08	82802.22	=""	="SCHMIDT & BENDER GMBH & CO. KG"	12-May-08 04:28 PM	

+="CN80460"	"AUSMIMPS Version 2 - Project Support Services"	="Department of Defence"	12-May-08	="Management support services"	19-Dec-07	30-May-08	145800.00	=""	="DELTA MANAGEMENT CONSULTING PTY"	12-May-08 04:28 PM	

+="CN80479"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	20-Dec-07	30-Jun-08	148604.57	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:29 PM	

+="CN80524"	"Repair items for Tracking Mount for Deployable Field Trials Capability."	="Defence Materiel Organisation"	12-May-08	="Electronic Components and Supplies"	07-Feb-08	10-May-08	83322.00	=""	="VIPAC ENGINEERS & SCIENTISTS"	12-May-08 04:33 PM	

+="CN80546"	"External Service Provider for Aircraft Engineering Change Proposal"	="Department of Defence"	12-May-08	="Aircraft equipment"	10-Jan-08	23-May-08	102445.45	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 04:34 PM	

+="CN80549"	"Supply & Install Fuel Storage Tank"	="Department of Defence"	12-May-08	="Fuel tanks and systems"	14-Apr-08	30-Jun-08	118734.00	=""	="FUEL INSTALLATION SERVICES"	12-May-08 04:34 PM	

+="CN80550"	"Provide deck lighting modifications"	="Department of Defence"	12-May-08	="Military watercraft"	21-Dec-07	11-Feb-08	99132.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	12-May-08 04:34 PM	

+="CN80576"	"Computers, Etc"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	09-Jan-08	23-Jan-08	89826.00	=""	="COMPUTERCORP (LOGISTICS)"	12-May-08 04:35 PM	

+="CN80582"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	01-Aug-07	29-Aug-07	117260.00	=""	="Innovative Business Computing P/L"	12-May-08 04:36 PM	

+="CN80589"	"SUPPLY AND INSTALL OF AC IN SUC CONCEN"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Apr-08	30-May-08	143780.00	=""	="THALES AUSTRALIA"	12-May-08 04:36 PM	

+="CN80594"	"Support of WFPS and DMOSS"	="Department of Defence"	12-May-08	="Office machines and their supplies and accessories"	11-Apr-08	30-Jun-08	131810.80	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 04:36 PM	

+="CN80602"	"Development and Installation of NVIS Lighting and documentation for AS350BA Helicopter. Trial Purpos"	="Defence Materiel Organisation"	12-May-08	="Military rotary wing aircraft"	08-Feb-08	11-Aug-08	82885.00	=""	="AEROSPACE AND DEFENCE PRODUCTS"	12-May-08 04:37 PM	

+="CN80616"	"Toyota Hilux Dual Cab Utility/Bull Bar 4 x 4 Turbo Qty 3"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	21-Dec-07	17-Jul-08	106212.41	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 04:38 PM	

+="CN80619"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	06-Aug-07	03-Sep-07	121440.00	=""	="Integral Consulting Services"	12-May-08 04:38 PM	

+="CN80622"	"Procure 10 GOBOOK MR-1 Rugged Ultra Mobile PC"	="Defence Materiel Organisation"	12-May-08	="Computer services"	08-Feb-08	29-Feb-08	98175.00	=""	="AVANTEC PTY LTD"	12-May-08 04:38 PM	

+="CN80626"	"ESp Support for JP2060PH2B"	="Department of Defence"	12-May-08	="Professional engineering services"	08-Jan-08	30-Jun-08	110000.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:38 PM	

+="CN80627"	"WASTE WATER REMOVAL"	="Defence Materiel Organisation"	12-May-08	="Industrial filtering and purification"	08-Feb-08	22-Feb-08	83529.48	=""	="TASMAN AVIATION ENTERPRISES"	12-May-08 04:39 PM	

+="CN80639"	"IT Services"	="Department of Foreign Affairs and Trade"	12-May-08	="Telecommunications media services"	07-Aug-07	04-Sep-07	105248.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	12-May-08 04:39 PM	

+="CN80643"	"4516.35 HMAS ARUNTA VA CONDITION MONITORING PROPULSION DRIVE TRAIN,"	="Department of Defence"	12-May-08	="Military watercraft"	04-Apr-08	30-May-08	128463.50	=""	="SVT HOLDING PTY LTD"	12-May-08 04:39 PM	

+="CN80649"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Cereal and pulse products"	09-Jan-08	31-Oct-08	116093.88	=""	="MULTI-PACK LTD"	12-May-08 04:40 PM	

+="CN80650"	"Land 58 Ph3 price variation"	="Department of Defence"	12-May-08	="Surveillance and detection equipment"	21-Dec-07	30-Jun-10	108526.76	=""	="RAYTHEON AUSTRALIA"	12-May-08 04:40 PM	

+="CN80651"	"Professional Service Provider"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	25-Feb-08	30-Jun-08	89999.80	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	12-May-08 04:40 PM	

+="CN80654"	"Conduct a Physical Configuration and Baseline Audit of HMAS Darwin Dwg Decks"	="Department of Defence"	12-May-08	="Military watercraft"	21-Dec-07	30-May-08	135403.08	=""	="THALES AUSTRALIA"	12-May-08 04:40 PM	

+="CN80660"	"Manage the Supply of material for the provision of SIDAII for FST WA"	="Department of Defence"	12-May-08	="Marine transport"	09-Jan-08	15-Jun-08	101554.29	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 04:40 PM	

+="CN80664"	"Ration Pack Component"	="Department of Defence"	12-May-08	="Confectionary products"	09-Jan-08	30-Apr-08	80150.40	=""	="THE WRIGLEY COMPANY PTY LTD"	12-May-08 04:40 PM	

+="CN80667"	"Fibre optic cable and protecting articulated pipe"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	122485.00	=""	="MS DIVERSIFIED SERVICES"	12-May-08 04:41 PM	

+="CN80669"	"PSP"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	21-Dec-07	30-Jun-08	136752.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 04:41 PM	

+="CN80670"	"POC: LLOYD MAGNER CONTACT: 02 626 69353"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	128075.97	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:41 PM	

+="CN80675"	"Collins Class TWC IPT participation"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Feb-08	30-Jun-08	132000.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 04:41 PM	

+="CN80678"	"PROFESSIONAL SERVICES"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-May-08	89572.49	=""	="ERNST & YOUNG"	12-May-08 04:41 PM	

+="CN80682"	"Removal of CSA 3 from HMAS RANKIN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	07-Apr-08	02-May-08	125625.13	=""	="RAYTHEON AUSTRALIA PTY LTD"	12-May-08 04:41 PM	

+="CN80687"	"MP80 Acoustic Upgrade"	="Defence Materiel Organisation"	12-May-08	="Missile subsystems"	25-Feb-08	02-Apr-08	108867.16	=""	="S.E.I. SOCIETA' ESPLOSIVI"	12-May-08 04:42 PM	

+="CN80694"	"4187 HMAS BALLARAT INCLINGING EXPERIMENT 16 - 19 APR 08"	="Department of Defence"	12-May-08	="Military watercraft"	07-Apr-08	30-May-08	99155.10	=""	="TENIX DEFENCE PTY LTD"	12-May-08 04:42 PM	

+="CN80696"	"Launcher Reburbishment BA010 & BA011"	="Department of Defence"	12-May-08	="Launchers"	09-Jan-08	30-Jun-08	91850.86	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80700"	"Launcher Reburbishment"	="Department of Defence"	12-May-08	="Launchers"	09-Jan-08	30-Jun-08	93789.30	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:42 PM	

+="CN80715"	"Staff Health Assessment"	="Department of Defence"	12-May-08	="Management support services"	07-Apr-08	30-Jun-08	98114.01	=""	="HEALTH FUTURES PTY LTD"	12-May-08 04:43 PM	

+="CN80716"	"JP2089Ph1 Loan of demo network monitor & M'gmt sys"	="Department of Defence"	12-May-08	="Hardware"	30-Jan-08	29-Feb-08	100428.56	=""	="AEROSYSTEMS INTERNATIONAL LTD"	12-May-08 04:43 PM	

+="CN80729"	"Guy Tensioning Equipment NAVCOMMSTA Harold E Holt Exmouth WA 6707"	="Defence Materiel Organisation"	12-May-08	="Building and Construction Machinery and Accessories"	25-Feb-08	30-Apr-08	122446.50	=""	="B B ENGINEERING PTY LTD"	12-May-08 04:44 PM	

+="CN80744"	"ESP Engagement to Review ANZAC SPO Accounting Proc Register ANZAC SPO/OUT/2008/175"	="Department of Defence"	12-May-08	="Military watercraft"	30-Jan-08	30-May-08	106299.06	=""	="ACUMEN ALLIANCE"	12-May-08 04:45 PM	

+="CN80763"	"Fuel Compressed Hexamine"	="Department of Defence"	12-May-08	="Miscellaneous drug categories"	20-Dec-07	19-Feb-08	134750.00	=""	="FAR-SIDE MARKETING LTD"	12-May-08 04:45 PM	

+="CN80796"	"ROBUST F-MURLIN LASER ENGINEERING STUDY In Accordance with SO 06/39 and the attached SOW v"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	31-Jan-08	30-Jun-08	130735.00	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 04:47 PM	

+="CN80821"	"Computer Equipment"	="Department of Defence"	12-May-08	="Computer Equipment and Accessories"	18-Dec-07	16-Feb-08	113917.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:48 PM	

+="CN80849"	"Candy, hard"	="Department of Defence"	12-May-08	="Confectionary products"	18-Dec-07	30-Nov-08	95569.65	=""	="DOLLAR SWEETS COMPANY"	12-May-08 04:50 PM	

+="CN80854"	"AW50F SPARES"	="Defence Materiel Organisation"	12-May-08	="Arms and ammunition accessories"	22-Feb-08	01-Sep-08	140882.10	=""	="SCHMIDT & BENDER GMBH & CO. KG"	12-May-08 04:50 PM	

+="CN80864"	"PMA MAINTENANCE"	="Department of Defence"	12-May-08	="Aircraft"	29-Jan-08	31-Dec-10	138747.95	=""	="LOCKHEED MARTIN AERONAUTICAL SYSTEM"	12-May-08 04:50 PM	

+="CN80866"	"Investigation of structural integrity of TACAN buildings"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	08-Apr-08	13-Jun-08	108625.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:50 PM	

+="CN80871"	"AMPS Support"	="Defence Materiel Organisation"	12-May-08	="Computer services"	22-Feb-08	30-Apr-08	84951.96	=""	="EDEN TECHNOLOGY PTY LTD"	12-May-08 04:51 PM	

+="CN80874"	"ESP in support of inventory control"	="Department of Defence"	12-May-08	="Financial and Insurance Services"	08-Apr-08	08-Sep-08	117700.00	=""	="SYPAQ SYSTEMS PTY LTD"	12-May-08 04:51 PM	

+="CN80880"	"Task backlog close out"	="Department of Defence"	12-May-08	="Electrical components"	29-Jan-08	13-Aug-08	80544.96	=""	="C4I PTY LTD"	12-May-08 04:51 PM	

+="CN80893"	"PROVISION OF STAND AT AIRSHOW"	="Department of Defence"	12-May-08	="Building and Construction Machinery and Accessories"	18-Dec-07	29-Feb-08	132150.00	=""	="PICO AUSTRALIA PTY LTD"	12-May-08 04:52 PM	

+="CN80894"	"Hardware for Joint Planning Suite Trials"	="Department of Defence"	12-May-08	="Hardware"	08-Apr-08	15-Apr-08	90909.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	12-May-08 04:52 PM	

+="CN80906"	"CELL ASSEMBLY, OPTICAL, MOUNTING HARDWARE KIT"	="Department of Defence"	12-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	09-Apr-08	10-Sep-08	81093.35	=""	="ITT CORPORATION"	12-May-08 04:52 PM	

+="CN80922"	"RADIO FREQUENCY ENVIRONMENT GENERATOR"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	18-Dec-07	30-Jun-09	149984.37	=""	="EWST AUSTRALIA PTY LTD"	12-May-08 04:53 PM	

+="CN80938"	"MK11 parts and accessories"	="Department of Defence"	12-May-08	="Firearms"	18-Dec-07	17-Feb-08	89423.35	=""	="KNIGHTS ARMAMENT COMPANY"	12-May-08 04:54 PM	

+="CN80951"	"Scoping Study - Gould Host Computer Replacement"	="Department of Defence"	12-May-08	="Aircraft"	09-Apr-08	31-May-08	131032.00	=""	="CAE AUSTRALIA PTY LTD"	12-May-08 04:54 PM	

+="CN80960"	"F89A1 MINIMI SPARES"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	17-Dec-07	01-Oct-08	141828.10	=""	="FN HERSTAL SA"	12-May-08 04:55 PM	

+="CN80964"	"HS and SML life of type study"	="Department of Defence"	12-May-08	="Marine transport"	09-Apr-08	30-Jun-08	132425.00	=""	="GHD PTY LTD"	12-May-08 04:55 PM	

+="CN80979"	"Repair of Roatary Joints"	="Department of Defence"	12-May-08	="Marine craft systems and subassemblies"	18-Dec-07	02-Jun-08	95693.40	=""	="LOCKHEED MARTIN CORPORATION DBA LOC"	12-May-08 04:56 PM	

+="CN80981"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	08-Apr-08	02-May-08	116913.71	=""	="QINETIQ CONSULTING PTY LTD"	12-May-08 04:56 PM	

+="CN80985"	"Backdated Labour CCP 001/2007v2 SO No 9207-001-052"	="Department of Defence"	12-May-08	="Aircraft"	04-Feb-08	28-Feb-08	89090.10	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 04:57 PM	

+="CN80990"	"RPLSS Functional Support for FFG Planned Maintenan ce Activities 2008"	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	27-Feb-08	31-Dec-08	137214.15	=""	="THALES AUSTRALIA"	12-May-08 04:57 PM	

+="CN81000"	"PSP Staff for DGLAP"	="Department of Defence"	12-May-08	="Management support services"	07-Apr-08	11-Apr-08	80839.68	=""	="DFP RECRUITMENT SERVICES"	12-May-08 04:58 PM	

+="CN81004"	"THE TERMS AND CONDITIONS OF THIS PURCHASE ORDER AR CONTRACT C338399"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	120626.85	=""	="BOEING COMPANY THE"	12-May-08 04:58 PM	

+="CN81024"	"285SQN SUPPORT"	="Department of Defence"	12-May-08	="Aircraft"	07-Apr-08	30-Jun-08	100590.60	=""	="THALES AUSTRALIA"	12-May-08 04:59 PM	

+="CN81030"	"Computer Equipmenmt"	="Defence Materiel Organisation"	12-May-08	="Computer Equipment and Accessories"	26-Feb-08	28-Mar-08	113668.46	=""	="FOUNDRY NETWORKS INC"	12-May-08 04:59 PM	

+="CN81045"	"PROCUREMENT OF QUANTITY 3 COMMERCIAL VEHICLES"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	08-Apr-08	80266.56	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:00 PM	

+="CN81049"	"FSS Palikir AMC trials and training support costs associated with the LEP activity"	="Department of Defence"	12-May-08	="Medical training and education supplies"	19-Dec-07	30-Jun-08	106814.74	=""	="AMC SEARCH LIMITED"	12-May-08 05:01 PM	

+="CN81055"	"DIRCM Laser thermal Model Verification Study"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	08-Apr-08	31-Aug-08	115478.00	=""	="TENIX SYSTEMS PTY LTD"	12-May-08 05:01 PM	

+="CN81070"	"Harpoon block 1 Missile and Travel"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	01-Feb-08	30-May-08	145141.89	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:01 PM	

+="CN81074"	"FREIGHT"	="Department of Defence"	12-May-08	="Transportation and Storage and Mail Services"	01-Feb-08	30-Jun-08	127869.98	=""	="STAR TRACK EXPRESS"	12-May-08 05:02 PM	

+="CN81085"	"PROCUREMENT OF QUANTITY 1 COMMERCIAL VEHICLE"	="Department of Defence"	12-May-08	="Passenger motor vehicles"	19-Dec-07	09-May-08	92324.09	=""	="LEASEPLAN AUSTRALIA LTD"	12-May-08 05:02 PM	

+="CN81086"	"This PO has been raised in accordance with Defence Services (DMOSS) Standing Offer Deed for quotatio"	="Department of Defence"	12-May-08	="Electrical components"	01-Feb-08	27-Jun-08	142945.36	=""	="JACOBS AUSTRALIA"	12-May-08 05:02 PM	

+="CN81089"	"POC: CARL BLACKMORE CONTACT: 08 9956 2520"	="Department of Defence"	12-May-08	="Office Equipment and Accessories and Supplies"	19-Dec-07	13-Feb-08	103576.00	=""	="STANFORD TECHNOLOGIES PTY LTD"	12-May-08 05:02 PM	

+="CN81103"	"Investegation into Obsolescence Management options of Thales D4 process"	="Department of Defence"	12-May-08	="Military watercraft"	31-Jan-08	30-Apr-08	101943.55	=""	="THALES UNDERWATER SYSTEMS P/L"	12-May-08 05:03 PM	

+="CN81130"	"IDS Support Services"	="Department of Defence"	12-May-08	="Software"	04-Feb-08	30-Jun-08	104554.23	=""	="I.D.S. INGEGNERIA DEI SISTEMI SPA"	12-May-08 05:04 PM	

+="CN81140"	"procurement of two c-max side scan sonars for surv ey motor launches"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	19-Feb-08	18-Mar-08	135454.00	=""	="ATLAS HYDROGRAPHIC HOLDING"	12-May-08 05:04 PM	

+="CN81143"	"Level 9, DPS"	="Department of Defence"	12-May-08	="Software"	26-Nov-07	26-Nov-07	81180.00	=""	="SAI GLOBAL"	12-May-08 05:04 PM	

+="CN81146"	"ONYX COMPUTER SUPPORT AGREEMENT"	="Department of Defence"	12-May-08	="Military watercraft"	19-Dec-07	31-Dec-08	119337.63	=""	="THALES AUSTRALIA"	12-May-08 05:05 PM	

+="CN81171"	"Indirect Fire/Forward Air Controller (IFACT) for the Singleton WTSS Facility."	="Department of Defence"	12-May-08	="Computer services"	26-Nov-07	28-Mar-08	95502.02	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	12-May-08 05:06 PM	

+="CN81177"	"OCEAN FREIGHT JP2070"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	31-Jan-08	108740.91	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81180"	"Provision of ILS Services"	="Defence Materiel Organisation"	12-May-08	="Water and wastewater treatment supply and disposal"	20-Feb-08	15-Aug-08	135870.97	=""	="JACOBS AUSTRALIA"	12-May-08 05:06 PM	

+="CN81181"	"FREIGHT COSTS FOR JP2070"	="Department of Defence"	12-May-08	="Marine transport"	18-Dec-07	31-Jan-08	89814.10	=""	="RIDGEWAY INTERNATIONAL"	12-May-08 05:06 PM	

+="CN81191"	"Turbo chargers"	="Department of Defence"	12-May-08	="Machine made parts"	26-Nov-07	30-Jun-08	113538.88	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	12-May-08 05:06 PM	

+="CN81207"	"Software - NAIPS"	="Department of Defence"	12-May-08	="Software"	23-Jan-08	17-Mar-08	133421.20	=""	="CKA TRADING PTY LTD"	12-May-08 05:07 PM	

+="CN81212"	"Satellite Equipment"	="Department of Defence"	12-May-08	="Satellites"	18-Dec-07	30-Jun-08	118206.00	=""	="TENIX DEFENCE SYSTEMS"	12-May-08 05:07 PM	

+="CN81218"	"Dynamic Media Pty Ltd to provide a promotion video"	="Department of Defence"	12-May-08	="Published Products"	23-Jan-08	30-Aug-08	98065.00	=""	="DYNAMIC MEDIA PTY LTD"	12-May-08 05:08 PM	

+="CN81235"	"PN 823489-2, RH Outboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	95278.81	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:08 PM	

+="CN81239"	"PN 823489-1, LH Outboard Lower Skate Angle"	="Department of Defence"	12-May-08	="Aircraft fuselage and components"	23-Nov-07	07-Jul-08	94346.45	=""	="MILSPEC SERVICES PTY LTD"	12-May-08 05:09 PM	

+="CN81251"	"THIS PURCHASE ORDER IS RAISED IN ACCORDANCE WITH T CONDITIONS OF HACTS ISS CONTRACT C338392"	="Department of Defence"	12-May-08	="Postmortem and mortuary equipment and supplies"	23-Nov-07	30-Jun-08	87148.60	=""	="RAYTHEON AUST PTY LTD"	12-May-08 05:09 PM	

+="CN81254"	"Disconnect Coupling Jaw"	="Department of Defence"	12-May-08	="Aircraft equipment"	23-Jan-08	15-Jun-09	91316.83	=""	="AGUSTAWESTLAND LTD"	12-May-08 05:09 PM	

+="CN81282"	"DDP for LPA Oily Water Separator"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	26-Nov-07	18-Feb-08	98064.95	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	12-May-08 05:10 PM	

+="CN81285"	"Implementation of a Methodology for the Calculation of an AESSO Contingency Factor."	="Department of Defence"	12-May-08	="Management advisory services"	26-Nov-07	30-Jun-08	137331.38	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	12-May-08 05:10 PM	

+="CN81292"	"CONSUMABLES FOR DEFIBRILLATOR"	="Defence Materiel Organisation"	12-May-08	="Medical Equipment and Accessories and Supplies"	18-Feb-08	18-Apr-08	118004.59	=""	="ZOLL MEDICAL AUSTRALIA PTY LTD"	12-May-08 05:11 PM	

+="CN81293"	"Initiator Propellant XW55"	="Department of Defence"	12-May-08	="Elements and gases"	23-Jan-08	02-Jun-08	97203.23	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:11 PM	

+="CN81296"	"Testing compound of MEAO Lifing review activities"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-May-08	88000.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81305"	"EO Lifing when deployed to MEAO (Part 2)"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	22-Jan-08	30-May-08	84917.80	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:11 PM	

+="CN81314"	"FTR OF MACHINE GUNS, 7.62MM, MAG58 FLEX."	="Department of Defence"	12-May-08	="Gun systems"	23-Nov-07	30-Apr-08	84636.20	=""	="THALES AUSTRALIA"	12-May-08 05:12 PM	

+="CN81316"	"Production of a BCSS Osolescence Plan"	="Defence Materiel Organisation"	12-May-08	="Business and corporate management consultation services"	18-Feb-08	30-Jun-08	148626.50	=""	="SAAB SYSTEMS PTY LTD"	12-May-08 05:12 PM	

+="CN81319"	"part 4 task 103"	="Defence Materiel Organisation"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Feb-08	19-Aug-08	121277.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:12 PM	

+="CN81331"	"CONDITIONS OF CONTRACT: In accordance with the Agr November 2001. Note: In accordance with INCOTERMS"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	27-Nov-07	01-Jun-08	117878.96	=""	="FN HERSTAL SA"	12-May-08 05:13 PM	

+="CN81333"	"pc9 aircraft spares"	="Department of Defence"	12-May-08	="Aircraft"	21-Jan-08	30-Jun-08	84926.38	=""	="PILATUS AIRCRAFT LTD"	12-May-08 05:13 PM	

+="CN81364"	"Procure NU Torque Actuators and Conttrollers for positions 5-212-3 and 5-212-4 (OEM Agent)"	="Department of Defence"	12-May-08	="Military watercraft"	28-Nov-07	21-Dec-07	135102.00	=""	="AUSTRALIAN PUMP INDUSTRIES PTY LTD"	12-May-08 05:15 PM	

+="CN81365-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	21-Feb-08	24-Feb-11	130845.24	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:15 PM	

+="CN81366"	"Provision of CAMM2 Data Manager"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	22-Jan-08	31-Mar-08	88891.45	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	12-May-08 05:15 PM	

+="CN81389-A1"	"Provide financial support to DMO"	="Defence Materiel Organisation"	12-May-08	="Public administration and finance services"	22-Feb-08	30-Jun-08	116782.77	=""	="KPMG AUSTRALIA"	12-May-08 05:16 PM	

+="CN81411"	"PROVISION OF EXPLOSIVE ORDNANCE (EO) FACILITIES FOR 2SQN"	="Department of Defence"	12-May-08	="Construction and maintenance support equipment"	25-Jan-08	30-Jun-08	88000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:17 PM	

+="CN81415"	"DTS No. 27 Spare TADRS Earth/Power Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	27-Nov-07	30-May-08	95738.23	=""	="LOCKHEED MARTIN CORPORATION"	12-May-08 05:17 PM	

+="CN81421"	"DTS No. 27 Spare TADRS Earth/Power Cables"	="Department of Defence"	12-May-08	="Electrical wire and cable and harness"	27-Nov-07	30-May-08	129473.06	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	12-May-08 05:18 PM	

+="CN81453"	"INITIATOR PROPELLANT JAU-23/A"	="Department of Defence"	12-May-08	="Explosive materials"	26-Jan-08	31-Jul-08	146458.75	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:19 PM	

+="CN81456"	"INITIATOR CARTRIDGE, TIME DELAY (WB56)"	="Department of Defence"	12-May-08	="Explosive materials"	26-Jan-08	30-Jul-08	90572.74	=""	="PACIFIC SCIENTIFIC INC DBA PACIFIC"	12-May-08 05:19 PM	

+="CN81469"	"VENUE HIRE & CATERING FOR DMO LEADERSHIP PROGRAMS"	="Defence Materiel Organisation"	12-May-08	="Medical training and education supplies"	21-Feb-08	30-Jun-08	85699.98	=""	="CLIFTONS"	12-May-08 05:20 PM	

+="CN81479"	"This Purchas Order has been raised under Defence M Services (DMOSS) Standing Offer Deed for quotatio"	="Department of Defence"	12-May-08	="Electrical components"	24-Jan-08	30-Jun-08	135798.60	=""	="JACOBS AUSTRALIA"	12-May-08 05:21 PM	

+="CN81483"	"Support to JSF Industry Team"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	24-Jan-08	30-Jun-08	84480.00	=""	="DUPLICATE - USE V ENDOR 1050211"	12-May-08 05:21 PM	

+="CN81486-A1"	" Ship Equipment "	="Defence Materiel Organisation"	12-May-08	="Military watercraft"	20-Feb-08	27-Jul-10	88054.04	=""	="TENIX DEFENCE PTY LTD"	12-May-08 05:22 PM	

+="CN81498"	"Camon Pro Lense,Sony Battery +Charger, Blank media DriveUnit, Case with Foam, Camcorder, HD Colour V"	="Defence Materiel Organisation"	12-May-08	="Photographic or filming or video equipment"	21-Apr-08	12-Jun-08	80189.07	=""	="VIDEOGUYS AUSTRALIA PTY LTD"	12-May-08 05:23 PM	

+="CN81509"	"  IMPROVEMENT WORKS TO 2SQN MAINTENANCE FACILI"	="Department of Defence"	12-May-08	="Building and Construction and Maintenance Services"	25-Jan-08	30-Jun-08	121000.00	=""	="DEPARTMENT OF DEFENCE"	12-May-08 05:24 PM	

+="CN81522"	"CABLING"	="Defence Materiel Organisation"	12-May-08	="General building construction"	21-Apr-08	30-Jun-08	134200.00	=""	="COMPLIANCE ENGINEERING"	12-May-08 05:25 PM	

+="CN81546"	"install posmv, cmax and caris hips and sips on SMB GEOGRAPHE and SMB FANTOME modifications"	="Defence Materiel Organisation"	12-May-08	="Marine transport"	21-Apr-08	06-May-08	120631.50	=""	="AIMTEK PTY LTD"	12-May-08 05:27 PM	

+="CN81568"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	84616.40	=""	="KAZ GROUP PTY LTD"	12-May-08 05:28 PM	

+="CN81570"	"LEVEL 9 , 270 PITT ST, SYDNEY"	="Defence Materiel Organisation"	12-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Apr-08	86920.50	=""	="KAZ GROUP PTY LTD"	12-May-08 05:28 PM	

+="CN81575"	"Povision of Technical Support to the CWIS Project Test and Evaluation Activities."	="Defence Materiel Organisation"	12-May-08	="Engineering and Research and Technology Based Services"	18-Apr-08	30-Sep-08	88096.25	=""	="JACOBS AUSTRALIA"	12-May-08 05:29 PM	

+="CN81587"	"DSTO - JP00199PH1"	="Defence Materiel Organisation"	12-May-08	="Measuring and observing and testing instruments"	21-Apr-08	21-Apr-08	80979.80	=""	="DSTO-SCIENTIFIC ENGINEERING"	12-May-08 05:30 PM	

+="CN81595"	"ANTENNA"	="Defence Materiel Organisation"	12-May-08	="Fuel for nuclear reactors"	19-Apr-08	02-Oct-08	85992.22	=""	="CHELTON INC"	12-May-08 05:30 PM	

+="CN81612"	"COMPLETE ALIGMENT 1C MPDE HMAS MANOORA"	="Department of Defence"	12-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Dec-07	06-Jun-08	90352.35	=""	="GTSA ENGINEERING"	12-May-08 05:32 PM	

+="CN81613"	"Breakdown of MRGB ACX0616"	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	22-Feb-08	102062.38	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 05:32 PM	

+="CN81620"	"Rock bore from marker E1452374 to E145277 for fibre link from Bohle River to Speed Creek"	="Department of Defence"	12-May-08	="Mining and Well Drilling Machinery and Accessories"	13-Dec-07	31-Mar-08	99024.20	=""	="ALLIED TECHNOLOGIES GROUP PTY LTD"	12-May-08 05:33 PM	

+="CN81621"	"CONSULTNT"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	13-Dec-07	31-Dec-07	94099.49	=""	="HELMSMAN INTERNATIONAL PTY LTD"	12-May-08 05:33 PM	

+="CN81622"	"M81 Igniter"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	13-Dec-07	30-Jun-09	92556.79	=""	="MAST TECHNOLOGY INC"	12-May-08 05:33 PM	

+="CN81624"	"Scoping for DoD CADAS messaging service"	="Department of Defence"	12-May-08	="Air transportation support systems and equipment"	13-Dec-07	22-Jan-08	90055.90	=""	="AIRSERVICES AUSTRALIA"	12-May-08 05:34 PM	

+="CN81626"	"DISASSEMBLY OF MAIN ROTOR GEARBOX"	="Department of Defence"	12-May-08	="Aircraft equipment"	12-Dec-07	21-Mar-08	134665.15	=""	="ZF LUFTFAHRTTECHNIK GMBH"	12-May-08 05:34 PM	

+="CN81637"	"SPALL KIT-IMTV AND SPALL KIT-CV KIT"	="Department of Defence"	12-May-08	="Arms and ammunition accessories"	17-Dec-07	18-Feb-08	135751.09	=""	="THALES AUSTRALIA - BENDIGO"	12-May-08 05:35 PM	

+="CN81658"	"External Service Providers"	="Department of Defence"	12-May-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	111029.60	=""	="KELLOGG BROWN & ROOT PTY LTD"	12-May-08 05:38 PM	

+="CN81660"	"Repair of TEODOR -Heavy Remote Positioning Vehicle (HPRV) - Echidna Replacement"	="Department of Defence"	12-May-08	="Motor vehicles"	14-Dec-07	14-Jan-08	89943.60	=""	="XTEK LTD"	12-May-08 05:38 PM	

+="CN81663"	"AIRCRAFT MAINTENANCE SUPPORT"	="Department of Defence"	12-May-08	="Powered fixed wing aircraft"	14-Dec-07	30-Apr-08	99996.38	=""	="RAYTHEON AUSTRALIA"	12-May-08 05:38 PM	

+="CN81676"	"CENTER SECTION, ALS"	="Department of Defence"	12-May-08	="Military fixed wing aircraft"	15-Dec-07	14-Nov-08	94311.16	=""	="GENERAL DYNAMICS ARMAMENT AND TECHN"	12-May-08 05:41 PM	

+="CN81688"	"TD007 - INTERGRATION OF SOFTWARE DEVELOPMENT ENVIR"	="Department of Defence"	12-May-08	="Aerospace systems and components and equipment"	10-Dec-07	31-May-08	94067.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	12-May-08 05:42 PM	

+="CN81690"	"PTR Storage and Maintenance"	="Department of Defence"	12-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Dec-07	30-Jan-08	85294.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	12-May-08 05:42 PM	

+="CN81705"	"Battery, 3.6V, 2.0Ah, Primary Lithium-thionyl Chloride (Li-SOCI2), Power Type AA size spiral cel"	="Department of Defence"	12-May-08	="Batteries and generators and kinetic power transmission"	10-Dec-07	29-Feb-08	95700.00	=""	="EYLEX PTY LTD"	12-May-08 05:44 PM	

+="CN81711"	"Satellite Coordination Representative"	="Department of Defence"	12-May-08	="Satellites"	10-Dec-07	30-Jun-08	106219.68	=""	="TELECOMM STRATEGIES"	12-May-08 05:45 PM	

+="CN81717"	"THIS CONTRACT IS RAISED IN ACCORDANCE WITH G.W.E.O TEMPLATES WITH EXCEPTIONS SPECIFIED AND APPROVED"	="Department of Defence"	12-May-08	="Aircraft emergency systems"	07-Dec-07	30-May-09	94547.64	=""	="UNIVERSAL PROPULSION COMPANY INC"	12-May-08 05:46 PM	

+="CN81724"	"Jack, Aircraft, 12 Ton"	="Department of Defence"	12-May-08	="Aircraft equipment"	06-Dec-07	30-Apr-08	142774.50	=""	="FORDHAM ENGINEERING PTY LTD"	12-May-08 05:47 PM	

+="CN81725"	"NACC Aquisition Workforce Support"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	06-Dec-07	27-Jun-08	148500.00	=""	="PS MANAGEMENT CONSULTANTS"	12-May-08 05:47 PM	

+="CN81731"	"Operations Personnel Tracking System"	="Department of Defence"	12-May-08	="Software"	07-Dec-07	31-Jan-08	100762.75	=""	="BALL SOLUTIONS GROUP PTY LTD"	12-May-08 05:48 PM	

+="CN81749"	"GWEO Engineering Training Manager"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	31-Mar-08	83776.00	=""	="QINETIQ NOVARE PTY LTD"	12-May-08 05:50 PM	

+="CN81751"	"Teamcenter consultancy - Nexus enhancements"	="Department of Defence"	12-May-08	="Business and corporate management consultation services"	12-Dec-07	30-May-08	135641.55	=""	="PLM SERVICES PTY LTD"	12-May-08 05:50 PM	

+="CN81755"	"Housing, guided missile"	="Department of Defence"	12-May-08	="Military rotary wing aircraft"	12-Dec-07	14-Jul-08	100478.07	=""	="MARVIN ENGINEERING CO INC"	12-May-08 05:51 PM	

+="CN81764"	"Property Rental"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	12-May-08	="Real estate services"	10-Mar-08	10-Mar-08	124336.35	=""	="DEXUS Property Group"	12-May-08 07:33 PM	

+="CN81790"	"Repair of APU"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	29-Apr-08	29-May-08	81275.30	=""	="Sikorsky Aircraft Australia"	13-May-08 08:36 AM	

+="CN81814"	"escalation adjustment SML Upgrade project"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	14-Nov-07	14-Dec-07	139275.40	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 11:00 AM	

+="CN81822"	"gst payment in foreign currency"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Dec-07	11-Dec-07	81025.92	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 11:02 AM	

+="CN81844"	"GST ONLY FOR INVOICE 65433"	="Defence Materiel Organisation"	13-May-08	="Satellites"	07-Sep-07	03-Dec-07	123317.47	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:05 AM	

+="CN81847"	"GST ONLY FOR INVOICE 66720"	="Defence Materiel Organisation"	13-May-08	="Satellites"	08-Nov-07	30-Nov-07	111193.66	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:06 AM	

+="CN81850"	"GST on AUD & USD"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	25-Sep-07	31-Dec-08	137874.18	=""	="AAI AEROSONDE PTY LTD"	13-May-08 11:07 AM	

+="CN81851"	"GST on AUD & USD"	="Defence Materiel Organisation"	13-May-08	="Distribution and Conditioning Systems and Equipment and Components"	25-Sep-07	31-Dec-08	90410.20	=""	="AAI AEROSONDE PTY LTD"	13-May-08 11:07 AM	

+="CN81858"	"GST on Foreign Currency Payments"	="Defence Materiel Organisation"	13-May-08	="Military fixed wing aircraft"	23-Jan-08	01-Feb-12	140959.30	=""	="EADS CONSTRUCCIONES AERONAUTICAS SA"	13-May-08 11:08 AM	

+="CN81876"	"GST on Foreign Exchange Payment for Submarines"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	01-Feb-08	30-Jun-13	116227.09	=""	="MATHER ROACH CONSULTING PTY LTD"	13-May-08 11:11 AM	

+="CN81887"	"ASMD LOT SPARES"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Dec-07	31-Jan-08	85742.38	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:13 AM	

+="CN81891"	"MRH90-HQTTC-A NOV 07 RECOVERY"	="Defence Materiel Organisation"	13-May-08	="Civilian and commercial rotary wing aircraft"	04-Dec-07	31-Dec-08	89796.43	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:13 AM	

+="CN81903"	"GST ON FOREIGN CURRENCY PAYMENT"	="Defence Materiel Organisation"	13-May-08	="Packaging materials"	27-Nov-07	30-Jun-10	140088.72	=""	="MATHER ROACH CONSULTING PTY LTD"	13-May-08 11:15 AM	

+="CN81915"	"FIRE CONTROL DIRECTOR (FCD) PROGRESS PAYMENT 5A"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	10-Oct-07	30-Jun-08	109724.73	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:17 AM	

+="CN81916"	"P5031-001-2 PROGRESS PAYMENT OCT 2007"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	09-Nov-07	30-Dec-07	90033.31	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 11:17 AM	

+="CN81928"	"PLANNING FUNDING"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Nov-07	31-Mar-08	104679.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:19 AM	

+="CN81930"	"AUS Surveillance Spares"	="Defence Materiel Organisation"	13-May-08	="Rockets and subsystems"	14-Nov-07	30-Aug-08	125653.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:19 AM	

+="CN81949"	"BLANKET ORDER RAISED FOR THE SUPPLY OF GROUND FUELS TO THE DEPARTMENT OF DEFENCE"	="Defence Materiel Organisation"	13-May-08	="Fuels"	15-Nov-07	30-Jun-08	104170.00	=""	="PARNELL MOGAS PTY LTD"	13-May-08 11:23 AM	

+="CN81952"	"SDE TOOL IMPLEMENTATION WP 15 OTHR SYSTEMS ENGINEERING PROCEDURES/TOOLS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	31-Jan-08	31-Jan-08	135882.56	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 11:24 AM	

+="CN81967"	"1 man month engineering services not to exceed 142 engineer rate + VOP"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	14-Nov-07	31-Jan-08	82500.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 11:27 AM	

+="CN81982"	"Technical Recovery Rocket Decoy 102mm"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	19-Nov-07	20-Jun-08	86806.28	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:30 AM	

+="CN81987"	"Holder Light, Adapter Lamp, Cap Proctective, Lamp"	="Defence Materiel Organisation"	13-May-08	="Lamps and lightbulbs and lamp components"	17-Nov-07	01-Feb-08	110728.42	=""	="LASER PRODUCTS"	13-May-08 11:31 AM	

+="CN81989"	"Training"	="Defence Materiel Organisation"	13-May-08	="Electronic Components and Supplies"	16-Nov-07	01-Dec-07	84033.60	=""	="L-3 TRL TECHNOLOGY"	13-May-08 11:31 AM	

+="CN81994"	"PSP"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	16-Nov-07	30-Jun-08	107140.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 11:32 AM	

+="CN81997"	"CONTRACT STENDING OFFER NUMBER:  "LEA-CM-2007-028" NCB CODIFICATION CAPACITY STANDING OFFER DEED."	="Defence Materiel Organisation"	13-May-08	="Master control systems"	19-Nov-07	30-Jun-08	125000.00	=""	="EPICA SOLUTIONS PTY LTD"	13-May-08 11:33 AM	

+="CN82007-A5"	"Provision for IT Specialist Services (Previously published under GAPS ID 1610532)"	="Department of Immigration and Citizenship"	13-May-08	="Information technology consultation services"	01-Jul-06	01-Dec-06	145200.00	=""	="Paxus Australia Pty Ltd"	13-May-08 11:35 AM	

+="CN82027"	"Dmoss Submission"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	19-Nov-07	20-Jun-08	114403.41	=""	="QINETIQ NOVARE PTY LTD"	13-May-08 11:36 AM	

+="CN82032"	"Defect Management Assessment"	="Defence Materiel Organisation"	13-May-08	="Computer services"	16-Nov-07	29-Feb-08	138886.00	=""	="DELOITTE TOUCHE TOHMATSU"	13-May-08 11:37 AM	

+="CN82029"	"BOOTS COMBAT PLUMB LEATHER PERTAINING TO RFQ J8375"	="Defence Materiel Organisation"	13-May-08	="Boots"	09-May-08	04-Jul-08	87538.00	="PD 2480051"	="MAINPEAK PTY LTD"	13-May-08 11:37 AM	

+="CN82069"	"Progress the development of the Antelope environment towards ATWS version 1.0"	="Geoscience Australia"	13-May-08	="Business and corporate management consultation services"	14-Apr-08	24-Dec-08	100000.00	="2007/1619"	="Lindquist Consulting Inc"	13-May-08 11:41 AM	

+="CN82088"	"ANZLIC Subscription Fees (Australian Government)  for F/Y 2008/09."	="Geoscience Australia"	13-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-09	96767.00	=""	="ANZLIC"	13-May-08 11:42 AM	

+="CN82090"	"WP 1077 (NSW LPI Transportation # 4B)  Barmedman work unit Deed # G1682D; Contract # G2377"	="Geoscience Australia"	13-May-08	="Temporary personnel services"	17-Apr-08	30-Jun-08	102217.50	=""	="Fugro Spatial Solutions Pty Ltd"	13-May-08 11:42 AM	

+="CN82091"	"Box Ammunition Wood F22 with Cylinders"	="Defence Materiel Organisation"	13-May-08	="Containers and storage"	30-Jun-08	30-Jun-08	89627.50	=""	="PENTARCH PTY LTD"	13-May-08 11:43 AM	

+="CN82122"	"RP00935, Invoice: M08033 - Transcription of Northern Fields (Gippsland) 3D marine Seismic consisting of 2,149 x 3590 cartridges."	="Geoscience Australia"	13-May-08	="Temporary personnel services"	23-Apr-08	30-Jun-08	125987.40	="2006/3933"	="Fugro Seismic Imaging Pty Ltd"	13-May-08 11:46 AM	

+="CN82143"	"Provision of Systems Engineering (Training Systems within AIR 87 Project Office"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	12-Nov-07	31-Mar-08	134038.45	=""	="JACOBS AUSTRALIA"	13-May-08 11:49 AM	

+="CN82164"	"ISS PSP"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	12-Nov-07	31-Mar-08	128700.00	=""	="PROTONICS PTY LTD"	13-May-08 11:52 AM	

+="CN82166"	"REDUCTION OF AP-3C OXYGEN HAZARDS"	="Defence Materiel Organisation"	13-May-08	="Aircraft environmental control systems and components"	12-Nov-07	30-Jun-08	93205.93	=""	="AUSTRALIAN AEROSPACE PTY LTD"	13-May-08 11:52 AM	

+="CN82169"	"MOD 145 AND 151 TO A15-102"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	03-Oct-06	28-Dec-07	96075.15	=""	="BAE SYSTEMS(AUSTRALIA)"	13-May-08 11:53 AM	

+="CN82177"	"Amendment No 1 this PO to include the terms and co Offer 9702-026-105."	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	28-Aug-07	29-Jan-08	126500.00	=""	="HELITECH DIV OF SIKORSKY"	13-May-08 11:54 AM	

+="CN82198"	"AOSG - Provision for Service Provider"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	06-Mar-08	30-Oct-08	100000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 11:57 AM	

+="CN82207"	"A5800 SELF CONTAINED UNDERWATER BREATHING APPARATUS FOR RAN"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Apr-08	30-Aug-08	131819.60	=""	="RFD TECHNOLOGIES PTY LTD"	13-May-08 11:58 AM	

+="CN82222"	"ADATS TMP AMENDMENTS"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	05-Mar-08	30-Jun-08	127441.02	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 11:59 AM	

+="CN82223"	"CRASH DATA RECORDER"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	18-Apr-08	30-May-08	132581.58	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 11:59 AM	

+="CN82231"	"Integrated Logistic Support"	="Defence Materiel Organisation"	13-May-08	="Personal safety and protection"	12-Nov-07	30-Jun-08	102300.00	=""	="CAPABILITY BY DESIGN"	13-May-08 12:00 PM	

+="CN82232"	"Computer hardware  MRHPO"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	06-Mar-08	30-Apr-08	140071.36	=""	="COMMANDER (QLD) PTY LTD"	13-May-08 12:00 PM	

+="CN82114"	"Installation of SATIN Infrastructure"	="Department of the Prime Minister and Cabinet"	13-May-08	="Infrastructure construction"	01-Jan-07	30-Apr-07	114000.00	=""	="Dept of Foreign Affairs and Trade"	13-May-08 12:00 PM	

+="CN82268"	"Computer equipment"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	05-Mar-08	30-Apr-08	89870.00	=""	="DELL AUSTRALIA PTY LTD"	13-May-08 12:03 PM	

+="CN82281"	"S&Q02/053 AIRCRAFT WASH EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	15-Jan-08	31-Oct-08	128794.60	=""	="BAE SYSTEMS AUSTRALIA"	13-May-08 12:04 PM	

+="CN82288"	"TULIP"	="Defence Materiel Organisation"	13-May-08	="Computer services"	05-Mar-08	30-Jun-08	97680.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 12:04 PM	

+="CN82304"	"ACCOMMODATION"	="Defence Materiel Organisation"	13-May-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	07-Apr-08	92884.01	=""	="CROWNE PLAZA CANBERRA"	13-May-08 12:05 PM	

+="CN82322"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	16-Jan-08	29-Feb-08	97458.75	=""	="BLAKE DAWSON WALDRON"	13-May-08 12:07 PM	

+="CN82333"	"Supply of MSS Big Mouth Replacement Fabric Panels"	="Defence Materiel Organisation"	13-May-08	="Prefabricated structures"	11-Jan-08	30-Jun-08	89059.12	=""	="VELDEMAN AUSTRALIA PTY LTD"	13-May-08 12:08 PM	

+="CN82345"	"MANAGE WATERMIST MANOORA & KANIMBLA"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	07-Mar-08	30-Mar-08	94375.69	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:09 PM	

+="CN82362"	"Conditions of Contract Raytheon ISS Contract, CAPO applicable to this deliverable undercover of quot"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	14-Jan-08	07-May-08	146975.17	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 12:11 PM	

+="CN82367"	"T-700 GNOME METS Calibration and Maintenance July 2008"	="Defence Materiel Organisation"	13-May-08	="Aircraft power systems"	08-Mar-08	30-Jul-08	88404.75	=""	="CMR TECHNOLOGIES INC"	13-May-08 12:11 PM	

+="CN82371"	"Test Engineer"	="Defence Materiel Organisation"	13-May-08	="Detective services"	14-Jan-08	30-Jun-08	81466.00	=""	="JACOBS AUSTRALIA"	13-May-08 12:11 PM	

+="CN82378"	"PC-9 SPARES"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	07-Mar-08	18-Oct-08	80931.97	=""	="MARTIN BAKER AIRCRAFT CO LTD"	13-May-08 12:12 PM	

+="CN82382"	"Follow on from PEP Pilot undertaken by MATIS Execu"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	06-Mar-08	30-Jun-08	119198.20	=""	="D'ARCY CONSULTING GROUP"	13-May-08 12:12 PM	

+="CN82384"	"Procure FLIR Thermography Camera"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	06-Mar-08	30-Apr-08	80247.00	=""	="THALES AUSTRALIA"	13-May-08 12:13 PM	

+="CN82386"	"Pack, Samples and Freight"	="Defence Materiel Organisation"	13-May-08	="Electrical equipment and components and supplies"	06-Mar-08	30-Jan-09	127468.55	=""	="OWEN INTERNATIONAL PTY LTD"	13-May-08 12:13 PM	

+="CN82402"	"Payments to PSP against Contract No. 2360."	="Defence Materiel Organisation"	13-May-08	="Firearms"	18-Jan-08	30-Apr-08	96800.00	=""	="LOGISTIC ENGINEERING SERVICES P/L"	13-May-08 12:14 PM	

+="CN82403"	"Site Inspections of RFID Infrastructure"	="Defence Materiel Organisation"	13-May-08	="Computer services"	06-Mar-08	30-May-08	144144.31	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	13-May-08 12:14 PM	

+="CN82407"	"Payments to PSP against Contract No. 2368."	="Defence Materiel Organisation"	13-May-08	="Firearms"	18-Jan-08	30-Apr-08	96800.00	=""	="LOGISTIC ENGINEERING SERVICES P/L"	13-May-08 12:14 PM	

+="CN82409"	"Facility Study - Indigenous manufacture of airbourne expendable countermeasures"	="Defence Materiel Organisation"	13-May-08	="Electronic reference material"	18-Jan-08	30-Jun-08	107800.00	=""	="CHEMRING AUSTRALIA PTY LTD"	13-May-08 12:15 PM	

+="CN82410"	"Engagement of ESP"	="Defence Materiel Organisation"	13-May-08	="Vehicle servicing equipment"	07-Mar-08	31-Aug-08	134327.71	=""	="JACOBS AUSTRALIA"	13-May-08 12:15 PM	

+="CN82413"	"AOSG engineering support"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	18-Jan-08	30-Jun-09	101726.37	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:15 PM	

+="CN82418"	"Contractor to develop a Logistic Support Analysis document and plan."	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	21-Jan-08	30-Jun-08	129800.00	=""	="SIGMA BRAVO PTY LTD"	13-May-08 12:15 PM	

+="CN82420"	"Conditions of Contract Raytheon ISS Contract, CAPO applicable to this deliverable undercover of quot"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	21-Jan-08	30-Jun-08	127603.87	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 12:16 PM	

+="CN82433"	"COMPUTER HARDWARE"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	07-Mar-08	11-Apr-08	93192.00	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	13-May-08 12:17 PM	

+="CN82438"	"B737 Training for two pilots Jan 08 to Mar 08"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	18-Jan-08	31-Mar-08	111100.00	=""	="ALTEON TRAINING AUSTRALIA PTY LTD"	13-May-08 12:18 PM	

+="CN82450"	"CLEVIS ROD END"	="Defence Materiel Organisation"	13-May-08	="Aircraft equipment"	28-Feb-08	01-May-09	94217.74	=""	="AGUSTAWESTLAND LTD"	13-May-08 12:19 PM	

+="CN82463"	"Professional Legal Fees"	="Defence Materiel Organisation"	13-May-08	="Legal services"	17-Jan-08	29-Feb-08	112244.00	=""	="CLAYTON UTZ"	13-May-08 12:20 PM	

+="CN82466"	"Oakey ILS Refurbishment"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	29-Feb-08	21-Mar-08	85326.27	=""	="AIRSERVICES AUSTRALIA"	13-May-08 12:20 PM	

+="CN82481"	"Payments to PSPs against Contract No. 2367."	="Defence Materiel Organisation"	13-May-08	="Firearms"	18-Jan-08	30-Apr-08	138600.02	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	13-May-08 12:22 PM	

+="CN82486"	"Site inspections for RFID"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	29-Feb-08	30-May-08	97111.96	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	13-May-08 12:22 PM	

+="CN82501"	"Payments to PSP against Contract No. 2368."	="Defence Materiel Organisation"	13-May-08	="Firearms"	17-Jan-08	30-Apr-08	91960.00	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	13-May-08 12:24 PM	

+="CN82509"	"Pearce ILS Refurb"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	07-Jan-08	30-May-08	132882.30	=""	="AIRSERVICES AUSTRALIA"	13-May-08 12:24 PM	

+="CN82516"	"BAE SUPPORT TO THE INTEGRATION OF E2A CONFIGURED EWSP SUITE ON THE LEARJET"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	28-Feb-08	30-Sep-08	140000.00	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	13-May-08 12:25 PM	

+="CN82520"	"Microsoft Sharepoint Specialist for Joint Operations Portal"	="Defence Materiel Organisation"	13-May-08	="Software"	28-Feb-08	30-Jun-08	80000.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 12:25 PM	

+="CN82525"	"Provision of Services as Team Leader Sea"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	07-Jan-08	14-Jul-08	131282.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 12:25 PM	

+="CN82529"	"Provision of Services as Team Leader Phase 3"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	07-Jan-08	14-Jul-08	131282.80	=""	="KELLOGG BROWN & ROOT PTY LTD"	13-May-08 12:26 PM	

+="CN82537"	"PROFESSIONAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	29-Feb-08	139000.00	=""	="KPMG AUSTRALIA"	13-May-08 12:27 PM	

+="CN82548"	"RPLSS Functional Support for FFG East Coast Mainte ance Activities 2008"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Feb-08	31-Dec-08	138172.03	=""	="THALES AUSTRALIA"	13-May-08 12:28 PM	

+="CN82568"	"Professional Service to assist with revisions to the project operational concept document"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	03-Mar-08	30-Jun-08	139700.00	=""	="SYPAQ SYSTEMS PTY LTD"	13-May-08 12:30 PM	

+="CN82569"	"TD191 DMS v17.0 Vendor Quote: ES-TXE-DMO-1057 dated 04Dec07"	="Defence Materiel Organisation"	13-May-08	="Manufacturing support services"	02-Jan-08	20-Mar-08	100265.00	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:30 PM	

+="CN82578"	"Engage ESP to complete the Shipborne Torpedo System."	="Defence Materiel Organisation"	13-May-08	="Guided missiles"	03-Mar-08	30-Jun-08	116000.00	=""	="DUPLICATE - USE V ENDOR 1050211"	13-May-08 12:31 PM	

+="CN82591"	"CSC025-002-1 COMBAT SYSTEM SIMULATOR TRAINING REDEVELOPMENT"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	21-Dec-07	30-Jun-08	108231.65	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 12:31 PM	

+="CN82594"	"DTS 50 Purchase of ECU Test Power Cables"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	04-Mar-08	22-Aug-08	112204.74	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	13-May-08 12:32 PM	

+="CN82610"	"HARDWARE COMPONENTS"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	29-Feb-08	30-Jun-08	121766.95	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:34 PM	

+="CN82611"	"Detailed Design Package- Installation of CMDS Lock ers on HMAS Sydney"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	29-Feb-08	02-May-08	118833.00	=""	="AUSTRALIAN MARINE TECHNOLOGIES"	13-May-08 12:34 PM	

+="CN82621"	"NIC Cleanup & Prevention"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	03-Mar-08	25-Apr-08	109556.01	=""	="CONNELL WAGNER VIC PTY LTD"	13-May-08 12:35 PM	

+="CN82624"	"mail services"	="Great Barrier Reef Marine Park Authority"	13-May-08	="Management and Business Professionals and Administrative Services"	06-Nov-07	30-Jun-08	90000.00	=""	="Australia Post"	13-May-08 12:36 PM	

+="CN82625"	"WTR Time code translatro"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	03-Mar-08	30-Jun-08	112758.72	=""	="TRAK MICROWAVE CORPORATION"	13-May-08 12:36 PM	

+="CN82658"	"POD SERVICING"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	17-Mar-08	15-May-08	100259.50	=""	="TENIX SYSTEMS PTY LTD"	13-May-08 12:39 PM	

+="CN82665"	"Darwin TACAN Gantry refurbishment"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	18-Mar-08	26-May-08	114768.50	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 12:41 PM	

+="CN82666"	"Provision of a system administrator technical support to the Minerva program"	="Defence Materiel Organisation"	13-May-08	="Software"	18-Mar-08	30-Jun-08	85360.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	13-May-08 12:41 PM	

+="CN82682"	"PROJECT SEA 1444 # EVALUATION FOR THE EXTENSION OF THE ACPB SHIP SUPERINTENDENT AS A PROFESSIONAL SE"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	14-Mar-08	30-May-08	105340.40	=""	="MARINE SURVEY COMPANY OF AUSTRALIA"	13-May-08 12:43 PM	

+="CN82694"	"PAYMENT FOR FLOORSPACE"	="Defence Materiel Organisation"	13-May-08	="Lease and rental of property or building"	17-Mar-08	10-Apr-08	99999.60	=""	="ABU DHABI NATIONAL EXHIBITIONS CO"	13-May-08 12:45 PM	

+="CN82727"	"P5234-001-1 CERTIFICATION OF FFH CLASS CRADLE"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	19-Mar-08	31-Mar-08	90689.18	=""	="TENIX DEFENCE PTY LTD"	13-May-08 12:49 PM	

+="CN82730"	"PACIFIC AVIATION TO INSTALL THE TRIMBLE AN/ASN-175 RECEIVER (CUGR) INTO SEA KING HELICOPTERS IAW THE"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	19-Mar-08	18-Jul-08	101753.16	=""	="PACIFIC AVIONICS PTY LTD"	13-May-08 12:50 PM	

+="CN82743"	"AASSPO requires services from RRAS for IPT during HMAS TOBRUK Docking to assist the Project Super"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	18-Mar-08	17-Jun-08	139165.37	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 12:52 PM	

+="CN82751"	"Apartment Rental"	="Defence Materiel Organisation"	13-May-08	="Lease and rental of property or building"	18-Mar-08	01-Aug-08	116000.01	=""	="KINGSTON TERRACE APARTMENTS"	13-May-08 12:53 PM	

+="CN82759"	"New container for MMTR"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Mar-08	30-Jun-08	136422.00	=""	="G H VARLEY PTY LTD"	13-May-08 12:54 PM	

+="CN82767"	"Main Engine Exhaust Bellows HMAS SUCCESS"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	12-Mar-08	30-Jun-08	118616.74	=""	="MAN DIESEL AUSTRALIA PTY LTD"	13-May-08 12:55 PM	

+="CN82772"	"PSP Scheduler to support poject JP2060"	="Defence Materiel Organisation"	13-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Sep-08	142525.40	=""	="SYPAQ SYSTEMS PTY LTD"	13-May-08 12:56 PM	

+="CN82795"	"Pressure Transducer"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	12-Mar-08	25-Mar-08	90566.47	=""	="ROLLS-ROYCE CORPORATION"	13-May-08 12:59 PM	

+="CN82796"	"AIR09000PH7 Verification & Validation Support"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	11-Mar-08	14-Sep-08	140604.00	=""	="NOVA DEFENCE"	13-May-08 12:59 PM	

+="CN82808"	"AMAACS Maintenance Manual"	="Defence Materiel Organisation"	13-May-08	="Air transportation support systems and equipment"	10-Mar-08	30-Apr-08	127258.71	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	13-May-08 01:01 PM	

+="CN82810"	"T56 FLEET PLANNER"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	11-Mar-08	31-Aug-08	107960.60	=""	="QANTAS DEFENCE SERVICES PTY LTD"	13-May-08 01:01 PM	

+="CN82819"	"FIRE HYDRANT VALVES HMAS TOBRUK"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	11-Mar-08	21-Apr-08	88931.92	=""	="PROMET VALVES AUSTRALIA PTY LTD"	13-May-08 01:02 PM	

+="CN82823"	"Convert HMAS Melbourne Ships Information Books to"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Mar-08	14-Jun-08	91307.70	=""	="HALLMARK LOGISTICS & ENGINEERING"	13-May-08 01:03 PM	

+="CN82825"	"Repair and overhaul of F/A-18 HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Mar-08	31-Oct-08	110224.89	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 01:03 PM	

+="CN82833"	"Water Purification Chemicals"	="Defence Materiel Organisation"	13-May-08	="Chemicals including Bio Chemicals and Gas Materials"	13-Mar-08	20-Mar-00	80928.52	=""	="PALL AUSTRALIA"	13-May-08 01:04 PM	

+="CN82836"	"TS1127 SCEPTRE A EMULATOR UPGRADE TO CENTAUR CONFIGURATION"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	13-Mar-08	30-Jun-08	92456.58	=""	="CSC AUSTRALIA PTY LTD"	13-May-08 01:05 PM	

+="CN82839"	"Repair and overhaul of F/A-18 HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	14-Mar-08	31-Oct-08	110224.89	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 01:05 PM	

+="CN82844"	"Upgrade of Supersonic Particle Deposition equipmen"	="Defence Materiel Organisation"	13-May-08	="Aircraft environmental control systems and components"	14-Mar-08	30-Apr-08	131450.00	=""	="ROSEBANK ENGINEERING"	13-May-08 01:06 PM	

+="CN82861"	"Provision of Logistics/Project Support Services"	="Defence Materiel Organisation"	13-May-08	="Project management"	12-Mar-08	16-Sep-08	85140.00	=""	="AUSTRALIAN AEROSPACE LTD"	13-May-08 01:08 PM	

+="CN82869"	"bore cleanning"	="Defence Materiel Organisation"	13-May-08	="Decontamination aids and safety cleaning equipment"	13-Mar-08	30-Mar-08	99570.04	=""	="XTEK PTY LTD"	13-May-08 01:09 PM	

+="CN82871"	"Provision of an Aircraft Avionics Design Engineer"	="Defence Materiel Organisation"	13-May-08	="Temporary personnel services"	13-Mar-08	30-Jun-08	89000.00	=""	="GHD PTY LTD"	13-May-08 01:09 PM	

+="CN82873"	"supply and installation of DESO 30 Echo Sounder an heave compensator"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	13-Mar-08	31-Mar-08	136125.00	=""	="G A GLANVILLE & CO"	13-May-08 01:09 PM	

+="CN82880"	"LOGISTIC PACKS FOR TOBRUK IAW LS2"	="Defence Materiel Organisation"	13-May-08	="Service Industry Machinery and Equipment and Supplies"	13-Mar-08	19-Aug-08	87795.37	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	13-May-08 01:10 PM	

+="CN82881"	"All details for this order are as per ComputerCorp dated 7 March 2008."	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	13-Mar-08	28-Mar-08	99291.50	=""	="COMPUTERCORP - MELBOURNE"	13-May-08 01:11 PM	

+="CN82888"	"PASOR software radios investigations"	="Defence Materiel Organisation"	13-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Feb-08	30-Jun-08	106502.00	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	13-May-08 01:11 PM	

+="CN82895"	"MADE TO MEASURE UNIFORMS FOR RAAF: WINTER MESS JKT SKIRTS"	="Defence Materiel Organisation"	13-May-08	="Clothing"	12-Feb-08	30-Jun-08	85500.00	=""	="TRANS TAILORING CIVIC PTY LTD"	13-May-08 01:13 PM	

+="CN82903"	"Repair and overhaul of F/A-18 HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	13-Feb-08	31-Jul-08	106857.37	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 01:14 PM	

+="CN82904"	"Repair and overhaul of F/A-18 HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	13-Feb-08	31-Jul-08	106857.37	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 01:14 PM	

+="CN82905"	"Use of Exisitng ASP Contract.- Main Engine Spares"	="Defence Materiel Organisation"	13-May-08	="Industrial pumps and compressors"	13-Feb-08	20-Mar-08	110000.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:14 PM	

+="CN82911"	"Aviation Spares, Repair of Module 4"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	03-Mar-08	31-Jul-08	87686.50	=""	="Turbomeca A/Asia Pty Ltd"	13-May-08 01:26 PM	

+="CN82930"	"T&A for 6 x Tenix technicians for 7 weeks to assist with PS1405 schedule"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	22-Apr-08	20-Jun-08	137119.40	=""	="TENIX DEFENCE PTY LTD"	13-May-08 01:35 PM	

+="CN82934"	"SERVER BLADES"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	23-Apr-08	31-May-08	109927.14	=""	="HEWLETT PACKARD AUSTRALIA LTD"	13-May-08 01:35 PM	

+="CN82939"	"Risk reduction work pre financial investment decision."	="Defence Materiel Organisation"	13-May-08	="Environmental control systems"	23-Apr-08	31-May-08	99000.00	=""	="STRIKE OIL"	13-May-08 01:36 PM	

+="CN82940"	"Toyota Hilux 4x2 Tray (UM1) Qty 7"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	13-Nov-08	132877.90	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 01:36 PM	

+="CN82942"	"Toyota Corolla sedan ( SS) Qty 6"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	30-Sep-08	137186.68	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 01:37 PM	

+="CN82961"	"Use of Exisitng ASP Contract  - Caltex Oils"	="Defence Materiel Organisation"	13-May-08	="Waxes and oils"	22-Apr-08	26-May-08	84078.50	=""	="ASP SHIP MANAGEMENT PTY LTD"	13-May-08 01:40 PM	

+="CN82968"	"Hire of Furniture and Fittings"	="Defence Materiel Organisation"	13-May-08	="Furniture and Furnishings"	22-Apr-08	31-Aug-08	91163.60	=""	="SCHIAVELLO ACT PTY LTD"	13-May-08 01:41 PM	

+="CN82975"	"ACCOMMODATION AND FUNCTION ROOM HIRE"	="Defence Materiel Organisation"	13-May-08	="Hotels and lodging and meeting facilities"	22-Apr-08	22-Apr-08	80000.00	=""	="ESPLANADE HOTEL"	13-May-08 01:42 PM	

+="CN82978"	"PURCHASE & INSTALLATION OF DCAC SYSTEM"	="Defence Materiel Organisation"	13-May-08	="Vehicle safety and security systems and components"	15-Apr-08	30-Jun-08	134400.00	=""	="DEPARTMENT OF DEFENCE"	13-May-08 01:42 PM	

+="CN82989"	"POC:  G LIGHTFOOT CONTACT:  02 626 60083"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	15-Apr-08	30-Jun-08	83065.36	=""	="FOUNDRY NETWORKS INC"	13-May-08 01:44 PM	

+="CN83030"	"Barometeres"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	15-Apr-08	27-May-08	140800.00	=""	="VAISALA PTY LTD"	13-May-08 01:50 PM	

+="CN83046"	"POC: PAUL FAICHNEY CONTACT: 02 626 50995"	="Defence Materiel Organisation"	13-May-08	="Building and Construction Machinery and Accessories"	17-Apr-08	30-Jun-08	111983.08	=""	="ALL DUCT FABRICATIONS PTY LTD"	13-May-08 01:52 PM	

+="CN83047"	"Spares antenna shelters"	="Defence Materiel Organisation"	13-May-08	="Satellites"	17-Apr-08	30-Jun-08	91506.25	=""	="W & G MACHINE COMPANY INTERNATIONAL"	13-May-08 01:52 PM	

+="CN83064"	"PSP SUPPORT OF AS350BA IN SERVICE SUPPORT PROJECT"	="Defence Materiel Organisation"	13-May-08	="Professional engineering services"	17-Apr-08	30-Sep-08	142750.00	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 01:55 PM	

+="CN83078"	"4548.00 REPAIR OF IR CAMERAS 14-552-0739"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	16-Apr-08	09-Jun-08	101590.72	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 01:57 PM	

+="CN83085"	"DUCT ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	17-Apr-08	20-May-08	141190.30	=""	="KELLSTROM DEFENSE AEROSPACE INC."	13-May-08 01:58 PM	

+="CN83087"	"TACTILE GLOVES"	="Defence Materiel Organisation"	13-May-08	="Clothing"	17-Apr-08	20-Jun-08	90115.53	=""	="WATTS & STONE LTD"	13-May-08 01:58 PM	

+="CN83095"	"Technical Support to NAP Projects Minors"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	16-Apr-08	30-Oct-08	93897.94	=""	="RAYTHEON AUST PTY LTD"	13-May-08 01:59 PM	

+="CN83099"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-May-08	30-Nov-08	97806.69	=""	="PILATUS AIRCRAFT LTD"	13-May-08 02:00 PM	

+="CN83101"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	01-May-08	30-Oct-08	116884.05	=""	="PILATUS AIRCRAFT LTD"	13-May-08 02:00 PM	

+="CN83102"	"TECHNICAL SERVICES"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	01-May-08	29-Aug-08	86012.23	=""	="BOEING AUSTRALIA LIMITED"	13-May-08 02:00 PM	

+="CN83103"	"Chain Performance Support"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	01-May-08	30-Jun-08	90333.20	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	13-May-08 02:00 PM	

+="CN83112"	"Installation of CS5600 MW ESM at STSC"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	02-May-08	23-Jun-08	138687.00	=""	="RAYTHEON AUSTRALIA PTY LTD"	13-May-08 02:01 PM	

+="CN83118"	"Vendor  Support for Travel and Subsistence for the Joint Planning Suite (JPS) Trial"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	01-May-08	30-Jun-08	110000.00	=""	="DPRA AUSTRALASIA PTY LTD"	13-May-08 02:02 PM	

+="CN83141"	"pc9 aircraft spares"	="Defence Materiel Organisation"	13-May-08	="Aircraft"	30-Apr-08	30-Oct-08	90589.22	=""	="PILATUS AIRCRAFT LTD"	13-May-08 02:05 PM	

+="CN83146"	"Periscope Test Equipment - Obsolescence"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	30-Apr-08	30-Jun-08	124944.64	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:06 PM	

+="CN83161"	"Repair Hornet F404 Engine HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	05-May-08	11-Dec-08	110224.89	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 02:08 PM	

+="CN83162"	"Repair Hornet F404 Engine HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	05-May-08	11-Dec-08	110224.89	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 02:08 PM	

+="CN83164"	"Repair Hornet F404 Engine HPC Module"	="Defence Materiel Organisation"	13-May-08	="Aerospace systems and components and equipment"	05-May-08	11-Dec-08	110224.89	=""	="AIR NZ ENGINEERING SERVICES"	13-May-08 02:09 PM	

+="CN83173"	"HGCE"	="Defence Materiel Organisation"	13-May-08	="Communications Devices and Accessories"	18-Apr-08	30-Jun-11	123710.30	=""	="FMS ACCOUNT"	13-May-08 02:10 PM	

+="CN83183"	"FMS technical assistance"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	07-Jan-08	15-Nov-09	143540.10	=""	="FMS ACCOUNT"	13-May-08 02:11 PM	

+="CN83187"	"Configuration audit"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	02-May-08	27-Jun-08	95566.64	=""	="DARONMONT TECHNOLOGIES PTY LTD"	13-May-08 02:12 PM	

+="CN83202"	"Production of ILSMPs"	="Defence Materiel Organisation"	13-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-May-08	30-Jun-08	109336.00	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 02:15 PM	

+="CN83203"	"Printers and Cartridges"	="Defence Materiel Organisation"	13-May-08	="Office machines and their supplies and accessories"	02-May-08	12-Jun-08	89540.00	=""	="KYOCERA MITA AUSTRALIA PTY LTD"	13-May-08 02:16 PM	

+="CN83211"	"DEVELOP SOFTWARE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	02-May-08	30-Dec-09	80000.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	13-May-08 02:17 PM	

+="CN83212"	"Vendor Support for JPS Trials  -JCSE"	="Defence Materiel Organisation"	13-May-08	="Business and corporate management consultation services"	02-May-08	30-Jun-08	88000.00	=""	="THOUGHTWEB PTY LTD"	13-May-08 02:17 PM	

+="CN83215"	"Prepare Installation Specification- Uniflex Remote Operating Valves"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	02-May-08	01-Sep-08	120520.47	=""	="THALES AUSTRALIA"	13-May-08 02:18 PM	

+="CN83218"	"COMMUNICATIONS EQUIPMENT"	="Defence Materiel Organisation"	13-May-08	="Information Technology Broadcasting and Telecommunications"	24-Apr-08	31-May-08	118992.13	=""	="IBM AUSTRALIA LTD"	13-May-08 02:18 PM	

+="CN83228"	"EDMS IMPLEMENTATION"	="Defence Materiel Organisation"	13-May-08	="Environmental management"	24-Apr-08	30-Jun-08	123105.40	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	13-May-08 02:20 PM	

+="CN83242"	"Tenix Escalation on Mgnt. Fee FY07/08"	="Defence Materiel Organisation"	13-May-08	="Commercial marine craft"	24-Apr-08	30-Jun-08	101019.86	=""	="TENIX DEFENCE PTY LTD"	13-May-08 02:22 PM	

+="CN83247"	"Cables and Cable Connectors"	="Defence Materiel Organisation"	13-May-08	="Security surveillance and detection"	24-Apr-08	30-Nov-08	112909.48	=""	="TENIX SYSTEMS PTY LTD"	13-May-08 02:23 PM	

+="CN83252"	"Fuso Rosa Bus Medium (BM) 25 seater Qty:1"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	17-Oct-08	92324.09	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:24 PM	

+="CN83254"	"Ford Falcon XL Ute (US) Qty 6"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	17-Oct-08	140535.19	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:24 PM	

+="CN83256"	"Ford Fairmont Sedan Qty 5 (SE)"	="Defence Materiel Organisation"	13-May-08	="Passenger motor vehicles"	23-Apr-08	17-Oct-08	127418.73	=""	="LEASEPLAN AUSTRALIA LTD"	13-May-08 02:24 PM	

+="CN83270"	"POC: ALAN ROSS CONTACT: 02 626 50931"	="Defence Materiel Organisation"	13-May-08	="Computer Equipment and Accessories"	24-Apr-08	30-Jun-08	107740.84	=""	="SUN MICROSYSTEMS"	13-May-08 02:26 PM	

+="CN83284"	"ADATS RADAR COURSE"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	29-Apr-08	30-May-08	93395.50	=""	="THALES AUSTRALIA"	13-May-08 02:29 PM	

+="CN83292"	"CONFIGURATION & ENGINEERING SUPPORT SERVICES RELATED SET UP COSTS CCP 022"	="Defence Materiel Organisation"	13-May-08	="Office Equipment and Accessories and Supplies"	29-Apr-08	30-Apr-08	96053.10	=""	="THALES AUSTRALIA"	13-May-08 02:30 PM	

+="CN83305"	"Lever Lock Release"	="Defence Materiel Organisation"	13-May-08	="Arms and ammunition accessories"	29-Apr-08	05-Jul-08	106086.77	=""	="R/M EQUIPMENT"	13-May-08 02:32 PM	

+="CN83311"	"InDepth Pty Ltd engagement of an ESP to provice sy engineering services in support of execution."	="Defence Materiel Organisation"	13-May-08	="Engine coolant system"	28-Apr-08	30-Jun-09	81822.79	=""	="INDEPTH PROJECT MANAGEMENT PTY LTD"	13-May-08 02:32 PM	

+="CN83315"	"REPLACE FLAT BED TRUCK"	="Defence Materiel Organisation"	13-May-08	="Surveillance and detection equipment"	28-Apr-08	31-May-08	127123.69	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:33 PM	

+="CN83337"	"4599.001 MINI TYPHOON OPERATOR AND MAINTAINER TRAINING"	="Defence Materiel Organisation"	13-May-08	="Military watercraft"	28-Apr-08	03-Jun-08	93708.29	=""	="SAAB SYSTEMS PTY LTD"	13-May-08 02:36 PM	

+="CN83336-A1"	"    Project Management - Implementation of eBS    "	="Therapeutic Goods Administration"	13-May-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-08	30-Jun-09	96140.00	=""	="APIS Consulting, The Trustee for Group Unit Trust"	13-May-08 02:36 PM	

+="CN83343"	"Scylla ISS Contract - Overrun of CST (930 Hours)"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	140976.00	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 02:37 PM	

+="CN83344"	"Gear Box Spare Parts"	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	31-Mar-08	04-Aug-08	134721.43	=""	="MAAG GEAR AG"	13-May-08 02:37 PM	

+="CN83345"	"DIGITAL SLAVE DISPLAY (ELECTRONICS EQUIPMENT)."	="Defence Materiel Organisation"	13-May-08	="Marine craft systems and subassemblies"	31-Mar-08	03-Nov-08	93457.94	=""	="L3 COMMUNICATIONS ELAC NAUTIK GMBH"	13-May-08 02:37 PM	

+="CN83348"	"Repair of 14x COLTAS Assembly Cards"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	96713.69	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 02:38 PM	

+="CN83349"	"Survey and Repair ShortTAS AAM#6"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	103972.33	=""	="THALES UNDERWATER SYSTEMS P/L"	13-May-08 02:38 PM	

+="CN83360"	"8563E Spectrum Analyser for CMD&V"	="Defence Materiel Organisation"	13-May-08	="Electrical components"	01-Apr-08	15-May-08	127584.05	=""	="ROJONE PTY LTD"	13-May-08 02:39 PM	

+="CN83359"	"Provision for System Tester"	="Comsuper"	13-May-08	="Human resources services"	02-Jun-08	01-Dec-08	85800.00	=""	="M&T Resources"	13-May-08 02:40 PM	

+="CN83392"	"Light Transmission equipment"	="Defence Materiel Organisation"	13-May-08	="Construction and maintenance support equipment"	31-Mar-08	30-Jun-08	84765.24	=""	="BAE SYSTEMS AUSTRALIA LTD"	13-May-08 02:44 PM	

+="CN50077"	"Technical Services"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	05-Dec-07	15-May-08	88000.00	=""	="Bae Systems"	13-May-08 02:46 PM	

+="CN83403"	"SAFE"	="Defence Materiel Organisation"	13-May-08	="Furniture and Furnishings"	31-Mar-08	30-Apr-08	101178.00	=""	="BROWNBUILT"	13-May-08 02:46 PM	

+="CN83418"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	13-May-08	="Legal services"	02-Apr-08	30-Jun-08	148650.00	=""	="PHILLIPS FOX SYDNEY"	13-May-08 02:49 PM	

+="CN83424"	"PROVISION OF EXTERNAL SERVICE PROVIDER"	="Defence Materiel Organisation"	13-May-08	="Military rotary wing aircraft"	03-Apr-08	27-Apr-08	100639.84	=""	="QINETIQ CONSULTING PTY LTD"	13-May-08 02:50 PM	

+="CN83441-A1"	" Supply electricity    "	="Office of Parliamentary Counsel"	13-May-08	="Electric utilities"	01-Jul-07	30-Jun-11	85000.00	=""	="ActewAGL"	13-May-08 03:49 PM	

+="CN83445-A1"	"    Statutory Outgoings (PO variation)    "	="Therapeutic Goods Administration"	13-May-08	="Building and Construction and Maintenance Services"	01-Jul-02	30-Jun-17	103600.00	=""	="TGA Planned Investment"	13-May-08 04:22 PM	

+="CN83454"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	22-Oct-08	123003.90	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:28 PM	

+="CN83456"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	02-Jul-08	136067.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	13-May-08 07:28 PM	

+="CN83466"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	13-May-08	88800.00	=""	="RFD TECHNOLOGIES Pty Ltd"	13-May-08 07:29 PM	

+="CN83467"	"Procurement of:  FAN ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	04-Mar-08	08-Aug-08	90961.60	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:29 PM	

+="CN83471"	"Procurement of:  VALVE THERMOSTATIC;  VALVE NON-RETURN;  SWITCH,SENSITIVE;  MOUNT,RESILIENT,GENERAL PURPOSE;  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	30-May-08	135043.80	=""	="NOSKE-KAESER NZ Ltd"	13-May-08 07:30 PM	

+="CN83472"	"Procurement of:  INTERCONNECTING BOX"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	05-Mar-08	28-Jul-08	137262.84	=""	="THALES AUSTRALIA"	13-May-08 07:30 PM	

+="CN83499"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	12-Mar-08	06-Jan-09	84943.00	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:33 PM	

+="CN83525"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	05-Sep-08	86160.60	=""	="THALES AUSTRALIA"	13-May-08 07:37 PM	

+="CN83532"	"Procurement of:  NOZZLE,FUEL INJECTION"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	18-Mar-08	13-May-08	87984.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	13-May-08 07:37 PM	

+="CN83535"	"Procurement of:  MICROPHONE,DYNAMIC"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	31-May-08	94200.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	13-May-08 07:38 PM	

+="CN83536"	"Procurement of:  TRACKBALL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	19-Mar-08	10-Apr-09	93696.18	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:38 PM	

+="CN83542"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	20-Mar-08	13-May-08	130920.00	=""	="EBBCO Ltd"	13-May-08 07:39 PM	

+="CN83546"	"Procurement of:  VALVE STOP"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	25-Mar-08	25-Aug-08	101339.52	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 07:39 PM	

+="CN83553"	"Procurement of:  PRINTED CIRCUIT BOARD;  PANEL,CONTROL,ELECT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	26-Nov-08	125580.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:40 PM	

+="CN83558"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	23-Nov-08	81615.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	13-May-08 07:41 PM	

+="CN83559"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	26-Mar-08	11-Jul-08	99708.84	=""	="MARINE PLANT SYSTEMS Pty Ltd"	13-May-08 07:41 PM	

+="CN83566"	"Procurement of:  SPEED AND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	27-Mar-08	24-Oct-08	95900.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	13-May-08 07:42 PM	

+="CN83592"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	01-Apr-08	29-Oct-08	139700.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:45 PM	

+="CN83610"	"Procurement of:  LOUDSPEAKER,PERMANENT MAGNET"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Apr-08	27-Jul-08	92610.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	13-May-08 07:47 PM	

+="CN83620"	"Procurement of:  DEMODULATOR"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	09-Apr-08	27-Jun-08	99760.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	13-May-08 07:49 PM	

+="CN83621"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	09-Apr-08	20-Jun-08	84700.00	=""	="M&D MARINE PARTS SERVICE Pty *"	13-May-08 07:49 PM	

+="CN83626"	"Procurement of:  FILTER BODY,INTAKE AIR CLEANER"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	11-Apr-08	04-Mar-09	95772.00	=""	="SAAB SYSTEMS Pty Ltd"	13-May-08 07:49 PM	

+="CN83666"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  SUPPORT,WIND DIRECTION AND"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	19-Oct-08	83080.00	=""	="SITEP AUSTRALIA Pty Ltd"	13-May-08 07:54 PM	

+="CN83669"	"Procurement of:  RECEIVER-TRANSMITTER,RADIO"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	10-Jun-08	117810.00	=""	="RADLINK COMMUNICATIONS"	13-May-08 07:55 PM	

+="CN83670"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	22-Apr-08	22-Dec-08	84590.00	=""	="SULZER PUMPS (ANZ) Pty Ltd"	13-May-08 07:55 PM	

+="CN83682"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	24-Apr-08	30-Jul-08	120873.18	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:56 PM	

+="CN83688"	"Procurement of:  ADAPTER,AS-B"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	07-Aug-08	125413.16	=""	="WESTRAC EQUIPMENT Pty Ltd"	13-May-08 07:57 PM	

+="CN83690"	"Procurement of:  CYLINDER HEAD,DIESEL ENGINE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	29-Apr-08	16-Sep-08	143474.89	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	13-May-08 07:58 PM	

+="CN83701"	"Procurement of:  DISPLAY UNIT"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	07-Mar-08	07-Nov-08	138725.59	=""	="ASC Pty Ltd"	13-May-08 07:59 PM	

+="CN83704"	"Procurement of:  BEARING,SLEEVE"	="Defence Materiel Organisation"	13-May-08	="Marine transport"	28-Mar-08	25-Aug-08	106989.00	=""	="TENIX DEFENCE Pty Ltd"	13-May-08 08:00 PM	

+="CN83740-A1"	"External legal advice"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	01-Dec-07	31-Jan-08	100000.00	=""	="Johnson Winter Slattery"	14-May-08 09:17 AM	

+="CN83745-A4"	"Provision of Information Technology Business Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	12-Feb-08	10-Oct-08	128143.00	=""	="Greythorn Pty Ltd"	14-May-08 09:35 AM	

+="CN83768"	"Social Research Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Statistics"	05-May-08	23-Jun-08	119080.01	=""	="COLMAR BRUNTON PTY LTD"	14-May-08 10:20 AM	

+="CN83769"	"Passenger Opinion Research"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Graphic design"	07-May-08	30-Jun-08	99514.80	="TRS06/036"	="COLMAR BRUNTON PTY LTD"	14-May-08 10:21 AM	

+="CN83796-A1"	"Supply of Qty: 4, Fixed Standard Capcitances."	="Defence Materiel Organisation"	14-May-08	="Electronic manufacturing machinery and equipment and accessories"	12-May-08	31-Dec-08	112450.54	=""	="Aero & Military Products"	14-May-08 10:51 AM	

+="CN83803-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	14-May-08 11:19 AM	

+="CN83804"	"MDS Proof of Concept"	="Australian Taxation Office"	14-May-08	="Software"	19-May-08	30-Jun-08	99484.00	=""	="Teradata Pty Ltd"	14-May-08 11:22 AM	

+="CN83810-A5"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	06-Feb-09	120540.00	=""	="Ross Human Directions Limited"	14-May-08 11:35 AM	

+="CN83830-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	03-Apr-08	30-Jun-08	115000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	14-May-08 12:28 PM	

+="CN83831"	"Market Research Services"	="Centrelink"	14-May-08	="Statistics"	02-Apr-08	30-Jun-08	99000.00	=""	="Market Solutions Pty Ltd"	14-May-08 12:28 PM	

+="CN83833"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	31-Mar-09	144127.83	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:29 PM	

+="CN83844"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	100000.00	=""	="Dept of Local Govt Housing and Sport"	14-May-08 12:31 PM	

+="CN83877-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	28-Apr-08	30-Jun-08	150000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	14-May-08 12:36 PM	

+="CN83879"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	30-Jun-08	125195.40	=""	="Nuance Communications Int. BVBA"	14-May-08 12:37 PM	

+="CN83882"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	25-May-08	88642.41	=""	="Stowe Australia Pty Ltd"	14-May-08 12:37 PM	

+="CN83890"	"Office fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Apr-08	30-Jun-08	140184.00	=""	="Fyfe Interiors and Refurbishment"	14-May-08 12:39 PM	

+="CN83927"	"Courier services"	="Centrelink"	14-May-08	="Mail and cargo transport"	21-Apr-08	30-Jun-08	99000.00	=""	="Toll Priority"	14-May-08 12:46 PM	

+="CN83959"	" Fitout Design - Devonport, TAS "	="Centrelink"	14-May-08	="Professional engineering services"	10-Apr-08	30-Jun-09	82269.99	=""	="James Millar Architects"	14-May-08 12:51 PM	

+="CN83965"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	08-Apr-08	30-Jun-08	143147.22	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:52 PM	

+="CN83968-A1"	"Audio Visual Equipment and Supplies"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Apr-08	01-Jul-08	116903.85	=""	="Electroboard Solutions Pty Ltd"	14-May-08 12:52 PM	

+="CN83982"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	09-May-08	10-May-08	110510.40	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	14-May-08 12:54 PM	

+="CN83984"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	26-Oct-06	26-Oct-08	97288.42	=""	="Compas Pty Ltd"	14-May-08 12:54 PM	

+="CN83986"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	27-Oct-06	27-Oct-08	93693.60	=""	="Compas Pty Ltd"	14-May-08 12:55 PM	

+="CN84004"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	30-Jun-08	135094.30	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:58 PM	

+="CN84019"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	07-May-08	30-Jun-08	110000.00	=""	="DLA Phillips Fox"	14-May-08 01:00 PM	

+="CN84026"	"Optical Surveillance"	="Centrelink"	14-May-08	="Security surveillance and detection"	06-May-08	30-Jun-08	110000.00	=""	="Probe Group Pty Ltd"	14-May-08 01:02 PM	

+="CN84029-A1"	" Envelopes "	="Centrelink"	14-May-08	="Standard envelopes"	18-Apr-08	30-Jun-08	104720.00	=""	="Australian Envelopes"	14-May-08 01:02 PM	

+="CN84037"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	15-Oct-08	117717.60	="RFTS07/0129"	="Sheridan Management Services Pty Ltd"	14-May-08 01:04 PM	

+="CN84042"	"Fitout Design - Hobart, TAS"	="Centrelink"	14-May-08	="Professional engineering services"	15-Apr-08	30-Jun-09	93302.55	=""	="GHD Pty Ltd"	14-May-08 01:04 PM	

+="CN84049"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	31-Dec-08	89051.93	=""	="Interface Flor"	14-May-08 01:05 PM	

+="CN84054"	"Workstations"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Apr-08	30-Jun-08	131011.43	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 01:06 PM	

+="CN84058"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	18-Apr-08	25-Apr-08	116768.83	=""	="Dimension Data Australia Pty Ltd"	14-May-08 01:07 PM	

+="CN84064-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	95150.00	=""	="Ross Human Directions Limited"	14-May-08 01:30 PM	

+="CN84099"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	118270.20	=""	="Carbine Security Installations"	14-May-08 03:01 PM	

+="CN84100"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	119193.90	=""	="Carbine Security Installations"	14-May-08 03:02 PM	

+="CN84102"	"Electrical equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	10-Aug-07	30-Nov-07	98194.80	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	14-May-08 03:02 PM	

+="CN84113"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	13-Aug-07	10-Sep-07	111320.00	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 03:04 PM	

+="CN84119"	" OFFICE FITOUT "	="Department of Human Services"	14-May-08	="Prefabricated commercial and industrial structures"	30-May-08	20-Jun-08	123110.55	=""	="RORK DESIGNS PTY LTD"	14-May-08 03:31 PM	

+="CN84121"	"COMPOUND RENTAL"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	20-Aug-07	30-Sep-07	116839.70	=""	="Strategic Partnerships Holdings"	14-May-08 03:38 PM	

+="CN84142"	" IT Contractor Services "	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	25-Sep-07	30-Jun-08	85932.00	=""	="GMT CANBERRA PTY LTD"	14-May-08 04:16 PM	

+="CN84174"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81845.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84175"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81669.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84176"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81677.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84186"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	81488.92	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 04:56 PM	

+="CN84198"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	114773.04	=""	="Universal McCann"	14-May-08 04:58 PM	

+="CN84199"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	91551.86	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84204"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	103941.27	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84236"	"Chancery Furniture"	="Department of Foreign Affairs and Trade"	14-May-08	="Furniture and Furnishings"	31-Aug-07	31-Aug-07	108171.80	=""	="Arc Office Interiors"	14-May-08 05:05 PM	

+="CN84243"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	19-Sep-07	28-Feb-08	139451.93	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84255"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	03-Sep-07	01-Oct-07	81892.80	=""	="Integral Consulting Services"	14-May-08 05:08 PM	

+="CN84284"	"Lease at Karratha, WA"	="Centrelink"	14-May-08	="Real estate services"	16-Apr-08	17-Apr-09	113390.00	=""	="Pilbara Real Estate Pty Ltd"	14-May-08 05:26 PM	

+="CN84285-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	06-Jun-08	91025.00	=""	="Ross Human Directions Limited"	14-May-08 05:31 PM 

--- /dev/null
+++ b/admin/partialdata/13Jan2008to17Jan2008valto.xls
@@ -1,1 +1,329 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN54758-A3"	"Property Lease Alexandria NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	22-Apr-05	21-Apr-10	304493.00	=""	="Perpetual Nominees Pty Ltd"	13-Jan-08 02:29 PM	

+="CN54759-A3"	"Property Lease Sydney NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	01-Jul-05	31-Aug-08	774800.00	=""	="Loff & Liff Holdings Pty Ltd"	13-Jan-08 02:38 PM	

+="CN54760-A1"	"Property Lease Sydney NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	05-Jun-04	04-Jun-16	107067427.00	=""	="Kinder Investments Pty Ltd"	13-Jan-08 02:44 PM	

+="CN54761-A6"	"Property Lease Mascot NSW"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	14-Dec-04	27-Jul-14	6604797.00	=""	="Airport Nova Developments Pty Ltd"	13-Jan-08 02:57 PM	

+="CN54763-A3"	"Property Lease Barton ACT"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	20-Jun-01	30-Jun-09	8017484.00	=""	="AFP Canberra Property Pty Ltd"	13-Jan-08 07:29 PM	

+="CN54767"	"Property Lease Melbourne Airport Victoria"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	01-Apr-07	30-Sep-08	269940.00	=""	="Australia Pacific Airports (Melbourne) Pty Ltd"	13-Jan-08 08:19 PM	

+="CN54768-A4"	"Property Lease Brisbane Airport QLD"	="Australian Federal Police"	13-Jan-08	="Lease and rental of property or building"	23-Jan-06	31-Jan-12	1329984.13	=""	="Brisbane Airport Corporation Pty Ltd"	13-Jan-08 09:24 PM	

+="CN54770"	"M113 MTU PARTS"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	11354.20	=""	="MTU DETROIT DIESEL"	14-Jan-08 08:58 AM	

+="CN54771"	"Security Monitoring"	="Federal Magistrates Court"	14-Jan-08	="Security surveillance and detection"	01-Dec-07	31-Dec-07	19693.53	=""	="ADT Security"	14-Jan-08 09:23 AM	

+="CN54773"	"Electrical Work FMC Macquarie St & JMT"	="Federal Magistrates Court"	14-Jan-08	="Engineering equipment maintenance services"	01-Dec-07	31-Dec-07	25243.00	=""	="AFE Electrical"	14-Jan-08 09:37 AM	

+="CN54774"	"Taxi & Cabcharges"	="Federal Magistrates Court"	14-Jan-08	="Taxicab services"	01-Dec-07	31-Dec-07	13815.44	=""	="Cabcharge Australia Ltd"	14-Jan-08 09:42 AM	

+="CN54775"	"Recover Costs Rental, Outgoings, Car Parking - December 2007"	="Federal Magistrates Court"	14-Jan-08	="Commercial or industrial facility rental"	01-Dec-07	31-Dec-07	14485.18	=""	="Charter Hall Limited - Savills"	14-Jan-08 09:48 AM	

+="CN54776"	"COMCAR - PASSENGER"	="Department of the Prime Minister and Cabinet"	14-Jan-08	="Passenger motor vehicles"	31-Oct-07	31-Oct-07	32200.00	=""	="COMCAR"	14-Jan-08 09:53 AM	

+="CN54777"	"Consulting Services for Federal Magistrates Court - October 2007 & November 2007"	="Federal Magistrates Court"	14-Jan-08	="Business and corporate management consultation services"	01-Dec-07	31-Dec-07	35851.61	=""	="Des Semple & Associates"	14-Jan-08 10:02 AM	

+="CN54779"	"M113 MTU PARTS"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	12215.86	=""	="MTU DETROIT DIESEL"	14-Jan-08 10:15 AM	

+="CN54780"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	14-Jan-08	="Temporary legal staffing needs"	01-Dec-07	31-Dec-07	30443.93	=""	="Drake Australia Pty Ltd"	14-Jan-08 10:20 AM	

+="CN54781"	"Consulting Services FMC Sydney Administration Office (CFM)"	="Federal Magistrates Court"	14-Jan-08	="Business and corporate management consultation services"	01-Dec-07	31-Dec-07	37984.37	=""	="Elizabeth Montano"	14-Jan-08 10:26 AM	

+="CN54783"	"Supply and Install Floor Coverings FMC JMT Level 5"	="Federal Magistrates Court"	14-Jan-08	="Floor coverings"	01-Dec-07	31-Dec-07	39682.50	=""	="Future Floor Coverings NSW Pty Ltd"	14-Jan-08 10:32 AM	

+="CN54784"	"Design & Engineering Consultancy Services"	="Federal Magistrates Court"	14-Jan-08	="Professional engineering services"	01-Dec-07	31-Dec-07	29664.25	=""	="Group GSA Pty Ltd"	14-Jan-08 10:49 AM	

+="CN54785"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	14-Jan-08	="Temporary clerical or administrative assistance"	01-Dec-07	31-Dec-07	19642.64	=""	="Hays Specialist Recruitment (Australia) Pty Ltd"	14-Jan-08 10:56 AM	

+="CN54786"	" VEHICLE REPAIRS "	="Department of Defence"	14-Jan-08	="Motor vehicles"	25-Jul-07	24-Aug-07	23496.00	=""	="GRAEME A MCLEOD"	14-Jan-08 10:56 AM	

+="CN54787"	"Advertising"	="Federal Magistrates Court"	14-Jan-08	="Advertising"	01-Dec-07	31-Dec-07	15220.94	=""	="HMA Blaze Intergrated Communications"	14-Jan-08 11:01 AM	

+="CN54788"	"VEHICLE REPAIRS"	="Department of Defence"	14-Jan-08	="Motor vehicles"	27-Jul-07	26-Aug-07	23971.20	=""	="MICKS AUTOS"	14-Jan-08 11:05 AM	

+="CN54789"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	14-Jan-08	="Temporary clerical or administrative assistance"	01-Dec-07	31-Dec-07	25193.16	=""	="Hudson Global Resources (Aust) Pty Ltd"	14-Jan-08 11:06 AM	

+="CN54790"	"VEHICLE REPAIRS"	="Department of Defence"	14-Jan-08	="Motor vehicles"	12-Sep-07	12-Oct-07	18524.00	=""	="ALLCOCK CRASK REPAIRS"	14-Jan-08 11:09 AM	

+="CN54791"	"VEHICLE REPAIRS"	="Department of Defence"	14-Jan-08	="Motor vehicles"	17-Sep-07	17-Oct-07	19121.85	=""	="MICKS AUTOS"	14-Jan-08 11:15 AM	

+="CN54793"	" Building Works FMC JMT Level 12 "	="Federal Magistrates Court"	14-Jan-08	="Refurbishing services"	01-Dec-07	31-Dec-07	71881.04	=""	="Interior Development Pty Ltd"	14-Jan-08 11:30 AM	

+="CN54792"	" M113 MUT PARTS "	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	16828.71	=""	="MTU DETROIT DIESEL"	14-Jan-08 11:30 AM	

+="CN54794"	"M113 MTU PARTS"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	15803.99	=""	="MTU DETROIT DIESEL"	14-Jan-08 11:34 AM	

+="CN54795"	"Office Refurbishment FMC Melbourne Level 12"	="Federal Magistrates Court"	14-Jan-08	="Refurbishing services"	01-Dec-07	31-Dec-07	209721.32	=""	="IRM Interiors Pty Ltd"	14-Jan-08 11:37 AM	

+="CN54796"	"M113 MTU PARTS"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	39755.76	=""	="MTU DETROIT DIESEL"	14-Jan-08 11:38 AM	

+="CN54797"	"E071 - Editing Services within the online publishing system"	="Australian Taxation Office"	14-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	102000.00	=""	="McLeod Marketing & Management Pty Ltd"	14-Jan-08 11:39 AM	

+="CN54799-A1"	"Temporary Personnel"	="Australian Electoral Commission"	14-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	137170.38	="AEC06/019"	="CCS Index Pty Ltd"	14-Jan-08 11:40 AM	

+="CN54798"	"Counselling Services - Family Report"	="Federal Magistrates Court"	14-Jan-08	="Court reporting services"	01-Dec-07	31-Dec-07	12322.15	=""	="Joy Slattery Counselling Pty Ltd"	14-Jan-08 11:42 AM	

+="CN54801"	"Vehicle Leases"	="Federal Magistrates Court"	14-Jan-08	="Vehicle rental"	01-Dec-07	31-Dec-07	82253.91	=""	="Lease Plan"	14-Jan-08 11:49 AM	

+="CN54802"	" VEHICLE REPAIRS "	="Department of Defence"	14-Jan-08	="Motor vehicles"	06-Nov-07	06-Dec-07	20458.08	=""	="ALLCOCK CRASH REPAIRS"	14-Jan-08 11:50 AM	

+="CN54804"	"Consulting Fees November 2007"	="Federal Magistrates Court"	14-Jan-08	="Business and corporate management consultation services"	01-Dec-07	31-Dec-07	11000.00	=""	="MP Consulting Pty Ltd"	14-Jan-08 11:58 AM	

+="CN54805"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	14-Jan-08	="Transcribing services"	01-Dec-07	31-Dec-07	41457.26	=""	="National Transcription Services Pty Ltd"	14-Jan-08 12:03 PM	

+="CN54806"	"Airfares"	="Federal Magistrates Court"	14-Jan-08	="Commercial aeroplane travel"	01-Dec-07	31-Dec-07	97363.58	=""	="Qantas - QAEBTA"	14-Jan-08 12:07 PM	

+="CN54807"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	14-Jan-08	="Temporary clerical or administrative assistance"	01-Dec-07	31-Dec-07	17106.78	=""	="Robert Half Australia"	14-Jan-08 12:12 PM	

+="CN54808"	" Transcribing & Court Recording Services "	="Federal Magistrates Court"	14-Jan-08	="Transcribing services"	01-Dec-07	31-Dec-07	21034.66	=""	="Spark & Cannon Australasia Pty Ltd"	14-Jan-08 12:16 PM	

+="CN54809"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	14-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	31-Dec-07	19357.10	=""	="Telstra Corporation Limited"	14-Jan-08 12:20 PM	

+="CN54810"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF . "	="Defence Materiel Organisation"	14-Jan-08	="Mirror assemblies"	17-Jan-08	25-May-08	35640.00	=""	="SILVERGLO STAINLESS STELL P/L"	14-Jan-08 12:20 PM	

+="CN54811"	"land rover vehicle parts"	="Department of Defence"	14-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	21-Jan-08	15994.40	=""	="LAND ROVER AUSTRALIA"	14-Jan-08 12:24 PM	

+="CN54812"	"Recover Costs Rental, Outgoings, Car Parking"	="Federal Magistrates Court"	14-Jan-08	="Commercial or industrial facility rental"	01-Dec-07	31-Dec-07	40687.96	=""	="Law Courts Ltd-United Group Services (United KFPW)"	14-Jan-08 12:25 PM	

+="CN54813-A1"	"M113 Upgrade Parts - Various"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	24360.79	=""	="MTU Detroit Diesel Australia"	14-Jan-08 01:11 PM	

+="CN54814"	"training"	="Royal Australian Mint"	14-Jan-08	="Computer based training software"	04-Dec-07	04-Dec-07	22500.01	=""	="CIT SOLUTIONS"	14-Jan-08 01:15 PM	

+="CN54815"	"M113 Upgrade Parts - Various"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	13419.95	=""	="MTU Detroit Diesel Australia"	14-Jan-08 01:19 PM	

+="CN54816"	"M113 Upgrade Parts - Various"	="Department of Defence"	14-Jan-08	="Armoured fighting vehicles"	11-Jan-08	27-Jun-08	42747.34	=""	="MTU Detroit Diesel Australia"	14-Jan-08 01:25 PM	

+="CN54817"	"packaging"	="Royal Australian Mint"	14-Jan-08	="Packaging boxes"	06-Dec-07	20-Mar-08	19985.78	=""	="INPRINT"	14-Jan-08 01:31 PM	

+="CN54818"	"motor vehicle spare parts"	="Department of Defence"	14-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	10-Feb-08	24532.90	=""	="LANDROVER"	14-Jan-08 01:42 PM	

+="CN54819"	"Scribe for EL1.2 process"	="Australian Taxation Office"	14-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-Jan-08	15824.60	=""	="VEROSSITY PTY LTD"	14-Jan-08 02:12 PM	

+="CN54820"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	11-Jan-08	13-Jan-09	308880.00	=""	="DELSIT PTY LTD"	14-Jan-08 02:12 PM	

+="CN54821"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	09-Jan-08	06-Jan-09	276700.61	="096-2007"	="ANTZ CONSULTING PTY LTD"	14-Jan-08 02:13 PM	

+="CN54822"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	10-Jan-08	31-Dec-08	229561.20	=""	="InfoRail Pty Ltd"	14-Jan-08 02:13 PM	

+="CN54823"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	11-Jan-08	13-Jan-09	261976.00	=""	="Encore IT Services Pty Ltd"	14-Jan-08 02:13 PM	

+="CN54824"	"TRAINING"	="Australian Taxation Office"	14-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	10-Jan-08	30525.00	=""	="TERADATA AUSTRALIA PTY LTD"	14-Jan-08 02:14 PM	

+="CN54825"	"TRAINING"	="Australian Taxation Office"	14-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	10-Jan-08	12760.00	=""	="TERADATA AUSTRALIA PTY LTD"	14-Jan-08 02:15 PM	

+="CN54826"	"CAR HIRE"	="Australian Taxation Office"	14-Jan-08	="Transportation and Storage and Mail Services"	09-Jan-08	09-Jan-08	75435.65	=""	="LEASEPLAN AUSTRALIA LIMITED"	14-Jan-08 02:15 PM	

+="CN54828-A2"	"IT Contractor."	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	01-Feb-08	01-Jul-09	313436.56	=""	="WIZARD INFORMATION SERVICES PTY"	14-Jan-08 02:16 PM	

+="CN54827"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	13-Feb-08	13112.50	=""	="LANDROVER"	14-Jan-08 02:16 PM	

+="CN54829"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	10-Jan-08	13-Jul-08	135022.16	=""	="M&T Resources (SMS Group)"	14-Jan-08 02:17 PM	

+="CN54830"	"IT 06.125 RFQ 09-2007"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	16-Nov-07	31-Dec-07	24365.00	=""	="PricewaterhouseCoopers"	14-Jan-08 02:17 PM	

+="CN54831"	"IT Contractor"	="Australian Taxation Office"	14-Jan-08	="Engineering and Research and Technology Based Services"	03-Jan-08	06-Jan-09	220492.80	=""	="ICON RECRUITMENT"	14-Jan-08 02:17 PM	

+="CN54832"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	13-Feb-08	25946.00	=""	="LANDROVER"	14-Jan-08 02:21 PM	

+="CN54833"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	13-Feb-08	17965.95	=""	="LANDROVER"	14-Jan-08 02:26 PM	

+="CN54834"	"Repair of aircraft parts"	="Defence Materiel Organisation"	14-Jan-08	="Aircraft"	14-Jan-08	29-Jan-08	10582.22	=""	="Sikorsky Aircraft Australia Limited"	14-Jan-08 02:57 PM	

+="CN54835"	"software"	="Royal Australian Mint"	14-Jan-08	="Software"	07-Dec-07	07-Dec-07	18150.00	=""	="COMMSNET GROUP PTY LTD"	14-Jan-08 02:58 PM	

+="CN54836"	"Repair of aircraft parts"	="Defence Materiel Organisation"	14-Jan-08	="Aircraft"	07-Jan-08	22-Jan-08	28798.80	=""	="Sikorsky Aircraft Australia Limited"	14-Jan-08 03:02 PM	

+="CN54837"	"Repair of aircraft parts"	="Defence Materiel Organisation"	14-Jan-08	="Aircraft"	07-Jan-08	22-Jan-08	12169.58	=""	="Sikorsky Aircraft Australia Limited"	14-Jan-08 03:06 PM	

+="CN54838-A2"	"Design Facilitation & Information Design Services."	="Australian Taxation Office"	14-Jan-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	31-Dec-08	94590.00	=""	="Hoffmann Donohue Pty Ltd"	14-Jan-08 03:07 PM	

+="CN54840"	"computer equipment"	="Royal Australian Mint"	14-Jan-08	="Electronic hardware and component parts and accessories"	10-Dec-07	10-Dec-07	20592.57	=""	="DELL AUSTRALIA PTY LIMITED"	14-Jan-08 03:14 PM	

+="CN54841"	"packaging"	="Royal Australian Mint"	14-Jan-08	="Packaging materials"	18-Dec-07	18-Dec-07	12738.35	=""	="CHIPPENDALE PRINTING COMPANY P/L"	14-Jan-08 03:30 PM	

+="CN54842"	"For the provision of administrative servcies to the Exceptional Case Unit (ECU)"	="Department of Veterans' Affairs"	14-Jan-08	="Comprehensive health services"	20-Sep-07	19-Sep-08	23000.00	=""	="Effective People Recruitment and HR Specialists"	14-Jan-08 03:31 PM	

+="CN54843"	"To provide administrative services in relation to the Minimum Dataset (MDS)"	="Department of Veterans' Affairs"	14-Jan-08	="Comprehensive health services"	23-Aug-07	23-Aug-08	24000.00	=""	="Wizard Personnel and Office Services Pty Ltd"	14-Jan-08 03:31 PM	

+="CN54844"	"Provision of help desk support to the Nursing Services Package (NSP) and associated technical and administrative services."	="Department of Veterans' Affairs"	14-Jan-08	="Comprehensive health services"	06-Mar-07	05-Mar-08	50000.00	=""	="Aylin Pty Ltd"	14-Jan-08 03:31 PM	

+="CN54845"	"Provide expetise in setting up a Balanced Configuration Unit (BCU) IBM Database appliance & assistance and knowledge transfer on BCU"	="Department of Veterans' Affairs"	14-Jan-08	="Computer services"	14-Jan-08	08-Feb-08	48400.00	=""	="Winch Computer Consulting Pty Ltd (Trading: Datasync Consulting)"	14-Jan-08 03:31 PM	

+="CN54846"	"Facilitation & Assessment of Facilitate Individual Learning training workshops"	="Department of Veterans' Affairs"	14-Jan-08	="Education and Training Services"	10-Dec-07	30-Jun-08	11000.00	=""	="Greg Seberry & Associates Pty Ltd"	14-Jan-08 03:31 PM	

+="CN54847"	"coins"	="Royal Australian Mint"	14-Jan-08	="Mint coin collections"	19-Dec-07	26-Dec-07	666019.64	=""	="ROYAL MINT"	14-Jan-08 03:37 PM	

+="CN54848"	"Printing of NAT9497 MIETC books. Qty: 7,000"	="Australian Taxation Office"	14-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Jan-08	14-Mar-08	16104.00	=""	="Paragon Printers"	14-Jan-08 03:47 PM	

+="CN54850"	"Purchase TRIM Context licenses and maintenance for upgrade to EDRMS"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Computer services"	31-Dec-07	30-Jun-08	392420.00	=""	="iCognition Pty Ltd"	14-Jan-08 04:02 PM	

+="CN54851"	"Case studies on Private Forestry Development Committees"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	18-Dec-07	30-Jun-08	69465.00	=""	="URS Australia Pty Ltd"	14-Jan-08 04:02 PM	

+="CN54852"	"Australia is a members of the CCSBT and makes an annual membership contribution. The Commission's objective is to ensure, through appropriate management, the conservation and optimum utilisation of the global Southern Bluefin Tuna (SBT) fishery. The Commission also provides an internationally recognised forum for other countries/entities to actively participate in SBT issues."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-08	466610.00	=""	="CCSBT 2007/08 membership"	14-Jan-08 04:03 PM	

+="CN54853"	"Computing consultancy"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Computer services"	01-Oct-07	01-Mar-08	12068.26	=""	="LNB Computer consultancy"	14-Jan-08 04:03 PM	

+="CN54854-A1"	"Transition of DAFF disaster Recovery facility from Edmund Barton Building to Fyshwick Disaster Recovery site."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	15-Oct-07	29-Feb-08	78045.00	=""	="RPV Consultants Pty Ltd"	14-Jan-08 04:03 PM	

+="CN54855"	"Development of on-farm biosecurity protocols for nodavirus"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	20-Dec-07	30-May-08	14111.90	=""	="Panaquatic Health Solutions Pty Ltd"	14-Jan-08 04:03 PM	

+="CN54856"	"Addidtional Employee Survey reporting. Chart Packs for ABARE, MS & RPI"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	07-Dec-07	10000.00	=""	="Orima Research Pty Ltd"	14-Jan-08 04:03 PM	

+="CN54857"	"To supply 17 underwater cameras for Biofouling inspections on Yachts."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	110610.50	=""	="INLINE SYSTEMS"	14-Jan-08 04:03 PM	

+="CN54860-A1"	"To provide Artwork, design concepts, printing and distribution of Horn Island Signage and 2008 Top Watch Calendars."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Nov-07	84528.00	=""	="Couch Creative"	14-Jan-08 04:03 PM	

+="CN54861"	"Provide Scientific advice and act as a member of the import risk analysis team in relation to Philippines bananas.THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 5699"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	07-Sep-07	30-Jun-08	37000.00	=""	="Robert Maxwell Cannon"	14-Jan-08 04:04 PM	

+="CN54862"	"Foxtel Install at 18 marcus Clarke and London Cct."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Telecommunications media services"	01-Nov-07	20-Nov-07	10274.00	=""	="Intravision"	14-Jan-08 04:04 PM	

+="CN54863"	"Advertising job vacancy for VO2 and VO3"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Printed media"	03-Nov-07	03-Nov-07	13911.65	=""	="HMA Blaze Pty Ltd"	14-Jan-08 04:04 PM	

+="CN54865"	"Australia is a member of the CCSBT and is required to make a contribution to the Commision's reseacrh budget (Special Budget), of which $16,094 will be Australia's contribution for 2007/08"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	19-Oct-07	18-Oct-08	16094.00	=""	="CCSBT Tagging Program 2007/08"	14-Jan-08 04:04 PM	

+="CN54866"	"confernce venue, loan of conference equipment.catering"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	16-Nov-07	10665.50	=""	="Clifton on Northbourne"	14-Jan-08 04:04 PM	

+="CN54864"	" Accounting advice on GST matter "	="Future Fund Management Agency"	14-Jan-08	="Accounting and auditing"	01-Oct-07	14-Jan-08	10824.00	=""	="Ernst & Young"	14-Jan-08 04:04 PM	

+="CN54867"	"System vendor enhancement of iTM1 system software to support preparation of annual Administered financial statements."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	19-Dec-07	29-Feb-08	48000.00	=""	="Excelerated Consulting Pty Ltd"	14-Jan-08 04:04 PM	

+="CN54868"	"Dismantle remove and storage of BA furniture"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Building and Construction and Maintenance Services"	17-Dec-07	17-Dec-08	36850.00	=""	="kaleja pty ltd"	14-Jan-08 04:04 PM	

+="CN54869"	"Temporary Staff Services"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	07-Jan-08	30-Jun-08	22000.00	=""	="Careers Unlimited Pty Ltd"	14-Jan-08 04:04 PM	

+="CN54870"	"Tempporary Staff Services"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	07-Jan-08	30-Jun-08	22000.00	=""	="Careers Unlimited Pty Ltd"	14-Jan-08 04:05 PM	

+="CN54871-A1"	"Implementing Harvest Transition Paths to Biomass (Maximum Economic Yield) in Commonwealth Fisheries."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	01-Jan-08	31-Dec-08	155000.00	=""	="Sustainable Environment Group Pty Ltd"	14-Jan-08 04:05 PM	

+="CN54872"	"Provide counselling service to staff post Code of Conduct investigation"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Education and Training Services"	01-Nov-07	30-Dec-07	10109.90	=""	="Davidson Trahaire Corpsych"	14-Jan-08 04:05 PM	

+="CN54873"	"Testing of scientific samples"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	26-Jun-08	200000.00	=""	="CSIRO"	14-Jan-08 04:05 PM	

+="CN54874"	"Electrical Services for Gym at 18 Marcus Clarke Street."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Jan-08	11000.00	=""	="WEBB Australia"	14-Jan-08 04:05 PM	

+="CN54875"	"Extra Chairs for Media Centre & trolleys."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	28-Feb-08	16692.50	=""	="Designcraft"	14-Jan-08 04:05 PM	

+="CN54876"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:05 PM	

+="CN54877"	"Welcom Gift Mugs for new accommodation."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	24-Jan-08	24858.63	=""	="Brandnet Pty Ltd"	14-Jan-08 04:05 PM	

+="CN54878"	"Supply & installation of Workstaions at offsite storage facility in Fyshwick."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	22-Aug-07	31-Jan-08	41494.44	=""	="Cite Office Design"	14-Jan-08 04:06 PM	

+="CN54879"	"Legal Services"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Legal services"	01-Nov-07	30-Jun-08	90000.00	=""	="Australian Government Solicitor"	14-Jan-08 04:06 PM	

+="CN54880"	"Clamp on tool bar for office desks accessories - new accommodation."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	31-Jan-08	11704.75	=""	="Cite Office Design Pty Ltd"	14-Jan-08 04:06 PM	

+="CN54881"	"Dairy Design Phase II"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Computer services"	01-Dec-07	31-Dec-07	26754.20	=""	="Aladn System Solutions"	14-Jan-08 04:06 PM	

+="CN54882"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	11000.00	=""	="Careers Unlimited"	14-Jan-08 04:06 PM	

+="CN54883"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:06 PM	

+="CN54884"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:06 PM	

+="CN54885"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:06 PM	

+="CN54886"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:07 PM	

+="CN54887"	"Blackberry access and charges for Nov 07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	22-Nov-07	14505.15	=""	="Telstra Corporation"	14-Jan-08 04:07 PM	

+="CN54888"	"Managing ill and injured workers training"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Education and Training Services"	22-Nov-07	06-Dec-07	13472.70	=""	="Blake Dawson"	14-Jan-08 04:07 PM	

+="CN54889-A1"	"Editorial expertise in publications of the PAES and PBS documents."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Printed media"	29-Jan-08	30-Apr-08	15120.00	=""	="Words Worth Writing"	14-Jan-08 04:07 PM	

+="CN54891"	"Switchboard operators for Nov 07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	01-Nov-07	30-Nov-07	24012.21	=""	="Sirius Telecommunications"	14-Jan-08 04:07 PM	

+="CN54892"	"PABX services for Nov 07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Nov-07	23306.64	=""	="Telstra Corporation"	14-Jan-08 04:07 PM	

+="CN54893"	"Provision of facilitation services for three SENCC meetings in 2007-08 for Social Sciences"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	01-Jan-08	30-Jun-08	16170.00	=""	="Hassall & Associates Pty Ltd"	14-Jan-08 04:07 PM	

+="CN54890"	"Internal audit service on IT control"	="Future Fund Management Agency"	14-Jan-08	="Audit services"	01-Dec-07	31-Mar-08	22682.00	=""	="Pricewaterhouse Coopers"	14-Jan-08 04:07 PM	

+="CN54894"	"Management Accountant for 1 -31/12/07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	01-Dec-07	31-Jan-08	12262.80	=""	="Walter Turnbull"	14-Jan-08 04:07 PM	

+="CN54895"	"Engagement of four key plant industries to identify plant health surveillance activities and to utilise the National Plant Surveillance Reporting Tool"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	01-Aug-07	30-Jun-08	66000.00	=""	="Plant Health Australia Limited"	14-Jan-08 04:08 PM	

+="CN54896"	"The project will evaluate the Aquaculture Industry Action Agenda to assess its effectiveness, efficiency and appropriateness and make recommendations as necessary."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	01-Dec-07	29-Feb-08	50000.00	=""	="Australian Bureau of Agriculture and Resource Economics - ABARE"	14-Jan-08 04:08 PM	

+="CN54897"	"Contract staff for Clyde International Mail Centre Dec07-Mar08."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	01-Dec-07	07-Mar-08	180000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	14-Jan-08 04:08 PM	

+="CN54898-A1"	"Provide Spatial Data Infrastructure Technology review services for the Bureau."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	10-Dec-07	31-Jan-08	32439.00	=""	="NGIS Australia Pty Ltd"	14-Jan-08 04:08 PM	

+="CN54899"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:08 PM	

+="CN54900"	"Temp Staff"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	17-Dec-07	14-Feb-08	16500.00	=""	="Careers Unlimited"	14-Jan-08 04:08 PM	

+="CN54901"	"AQIS required the services of a Russian speaking interpretor to accompany AQIS officers and a Russian Government delegation who were inspecting fish export establishments in several towns across several States of Australia."	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Passenger transport"	09-Dec-07	23-Dec-07	10278.00	=""	="Linguaset Translations"	14-Jan-08 04:08 PM	

+="CN54902"	"FOR PAYMENT OF WAGES TO CONTRACTORS"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	20-Jan-08	20-Apr-08	27500.00	=""	="KOWALSKI RECRUITMENT"	14-Jan-08 04:08 PM	

+="CN54903-A2"	"Legal Service for Equine Influenza Inquiry"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Insurance and retirement services"	01-Nov-07	30-Jun-08	5334840.22	=""	="Blake Dawson and Waldron"	14-Jan-08 04:09 PM	

+="CN54904"	"PABX call costs for Nov 07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Telecommunications media services"	01-Nov-07	30-Nov-07	12216.50	=""	="AAPT Limited"	14-Jan-08 04:09 PM	

+="CN54905"	"ARC/GMS support and enhancements"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Management advisory services"	08-Jan-08	31-Mar-09	48678.00	=""	="F1 Solutions Pty Ltd"	14-Jan-08 04:09 PM	

+="CN54906"	"Switchboard operators for December 07"	="Department of Agriculture Fisheries and Forestry"	14-Jan-08	="Human resources services"	01-Dec-07	31-Dec-07	22986.63	=""	="Sirius Corporation Ltd"	14-Jan-08 04:09 PM	

+="CN54908"	" Relocation costs to Darwin including vehicle "	="National Native Title Tribunal"	14-Jan-08	="Relocation services"	24-Jan-08	24-Jan-08	15262.82	=""	="Allied Pickfords"	14-Jan-08 05:17 PM	

+="CN54909"	"Balance of Contract for Workshop, Room Hire and Accomodation"	="National Native Title Tribunal"	14-Jan-08	="Conference centres"	24-Jul-07	26-Jul-07	24944.74	=""	="Novotel Barossa Valley Resort"	14-Jan-08 05:24 PM	

+="CN54913"	"36 month Contract Microsoft Enterprise Enrollment agreement"	="National Native Title Tribunal"	14-Jan-08	="License management software"	31-Aug-07	30-Aug-10	136930.01	=""	="Commander Integrated Networks Pty Ltd"	14-Jan-08 05:35 PM	

+="CN54912"	"Project management services for Woy Woy CSC relocation from Ettalong CSC"	="Centrelink"	14-Jan-08	="Building construction management"	14-Jan-08	30-Jun-08	19937.50	=""	="GHD Pty Ltd"	14-Jan-08 05:40 PM	

+="CN54914-A1"	"DBA Services Backup and Recovery.  General support and Troubleshooting.  Installation and setup."	="National Native Title Tribunal"	14-Jan-08	="Business intelligence consulting services"	01-Jul-07	31-Jan-08	104426.30	=""	="Aurora Consulting Pty Ltd"	14-Jan-08 05:45 PM	

+="CN54915-A8"	" Provision of an on-line referral management system for ACT Police "	="Australian Federal Police"	14-Jan-08	="Management advisory services"	01-Nov-06	30-Nov-11	1107059.00	="RFT 38-2006"	="SupportLink IT Pty Ltd"	14-Jan-08 08:05 PM	

+="CN54924"	"Business Analysis Services for AFP Applications and systems"	="Australian Federal Police"	14-Jan-08	="Engineering and Research and Technology Based Services"	01-Jan-08	14-Mar-08	40964.00	=""	="ConSolve Pty Ltd"	14-Jan-08 09:20 PM	

+="CN54928-A1"	"Provision of software testing services"	="Australian Federal Police"	14-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	22-Feb-08	127362.82	=""	="Candle Australia Limited"	14-Jan-08 09:56 PM	

+="CN54930"	"coin pack"	="Royal Australian Mint"	15-Jan-08	="Mint coin collections"	20-Dec-07	21-Dec-07	159244.80	=""	="AUSTRALIA POST"	15-Jan-08 08:25 AM	

+="CN54931"	"motor vehicle spare parts"	="Department of Defence"	15-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Jan-08	04-Feb-08	10813.92	=""	="LAND ROVER AUSTRALIA"	15-Jan-08 08:31 AM	

+="CN54932"	"coins"	="Royal Australian Mint"	15-Jan-08	="Mint coin collections"	20-Dec-07	21-Dec-07	709500.00	=""	="ROYAL CANADIAN MINT"	15-Jan-08 08:41 AM	

+="CN54933-A1"	"Night Vision Goggle Spares"	="Defence Materiel Organisation"	15-Jan-08	="Surveillance and detection equipment"	23-Jan-07	23-Apr-07	2781950.49	=""	="Point Trading"	15-Jan-08 09:33 AM	

+="CN54935"	"M113UPGRADE PARTS"	="Department of Defence"	15-Jan-08	="Armoured fighting vehicles"	03-Jan-08	27-Jan-08	18542.43	=""	="MTU DETROIT DIESEL ASUTRALIS P/L"	15-Jan-08 10:22 AM	

+="CN54936"	"M113 UPGRADE PARTS"	="Department of Defence"	15-Jan-08	="Armoured fighting vehicles"	03-Jan-08	27-Jan-08	12031.23	=""	="MTU DETROIT DIESEL AUSTRALIA P/L"	15-Jan-08 10:32 AM	

+="CN54937"	"M113 UPGRADE PARTS"	="Department of Defence"	15-Jan-08	="Armoured fighting vehicles"	02-Jan-08	25-Jul-08	40277.23	=""	="MTU DETROIT DIESEL AUSTRALIA P/L"	15-Jan-08 10:37 AM	

+="CN54938"	"COATED CLOTH"	="Defence Materiel Organisation"	15-Jan-08	="Specialty fabrics or cloth"	11-Jan-08	15-Feb-08	15616.66	=""	="INTERTURBINE ADVANCED COMPOSITES"	15-Jan-08 11:07 AM	

+="CN45514"	"ACCOUNTING ASSISTANCE"	="Department of Human Services"	15-Jan-08	="Accounting services"	24-Oct-07	24-Nov-07	30000.00	=""	="HAYS ACCOUNTANCY & FINANCE"	15-Jan-08 11:13 AM	

+="CN47988"	"CLEANING COMPOUND, ALKALI, FERROUS SURFACE"	="Defence Materiel Organisation"	15-Jan-08	="Compounds and mixtures"	22-Nov-07	17-Dec-07	13482.78	=""	="HENKEL AUSTRALIA PTY LTD"	15-Jan-08 11:13 AM	

+="CN54939"	"Purchase of Aircraft Components"	="Defence Materiel Organisation"	15-Jan-08	="Aircraft"	15-Jan-08	20-Jun-08	16400.78	=""	="Kaman Aerospace International Corporation"	15-Jan-08 11:27 AM	

+="CN54940"	"Election software evaluation"	="Australian Electoral Commission"	15-Jan-08	="Information technology consultation services"	15-Oct-07	14-Mar-08	40700.00	="S07/08/111"	="Sue Sheridan & Associates"	15-Jan-08 11:28 AM	

+="CN54943"	"Purchase 5 Blade servers"	="Department of Human Services"	15-Jan-08	="Computer Equipment and Accessories"	12-Dec-07	12-Dec-07	30315.00	=""	="Hewlett-Packard Australia"	15-Jan-08 12:03 PM	

+="CN54944"	" ITIL practitioner training. "	="IP Australia"	15-Jan-08	="Computer based training software"	19-Dec-07	19-Dec-07	11533.50	=""	="ALC Training Pty Ltd"	15-Jan-08 12:22 PM	

+="CN54947"	"Legal services"	="Department of Human Services"	15-Jan-08	="Legal services"	01-Nov-07	10-Jan-08	11000.00	=""	="Australian Government Solicitor"	15-Jan-08 01:56 PM	

+="CN40423"	"SOFTWARE REDEVELOPMENT"	="Office of the Official Secretary to the Governor-General"	15-Jan-08	="Software"	25-Jul-07	25-Aug-07	36765.00	=""	="ALPHAWEST SERVICES PTY LTD"	15-Jan-08 02:00 PM	

+="CN54948"	"Evaluation of the Pay As You Go Instalment (PAYGI) system"	="Australian Taxation Office"	15-Jan-08	="Economic or financial evaluation of projects"	19-Dec-07	10-Mar-08	40000.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	15-Jan-08 02:00 PM	

+="CN54949"	"Internal Audit FMA Act Compliance"	="Department of Human Services"	15-Jan-08	="Internal audits"	01-Oct-07	30-Jun-08	75000.00	=""	="Ascent Accounting and IT Solutions"	15-Jan-08 02:08 PM	

+="CN54951"	"Aviation spares. Repair of FCU S/N A565B"	="Defence Materiel Organisation"	15-Jan-08	="Military rotary wing aircraft"	19-Jun-07	31-Mar-08	36199.90	=""	="Turbomeca A/Asia Pty Ltd"	15-Jan-08 02:19 PM	

+="CN54952"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	15-Jan-08	="Motor vehicles"	17-Dec-07	31-Dec-07	12936.00	=""	="PREMIER AUTO GROUP"	15-Jan-08 02:19 PM	

+="CN54953"	"Vehicle lease"	="Department of Human Services"	15-Jan-08	="Vehicle leasing"	01-Nov-07	31-Oct-09	34503.00	=""	="Leaseplan Australia Limited"	15-Jan-08 02:21 PM	

+="CN40419-A1"	"LANDSCAPE WORKS-ADMIRALTY HOUSE"	="Office of the Official Secretary to the Governor-General"	15-Jan-08	="General building construction"	30-Aug-07	30-Nov-07	37779.50	=""	="ROWLANDS LANDSCAPES"	15-Jan-08 02:22 PM	

+="CN54954"	"Supply of cover fitted vehicular canopy, NSN 2540-66-144-3362, 5 qty."	="Defence Materiel Organisation"	15-Jan-08	="War vehicles"	14-Jan-08	04-Feb-08	30199.24	=""	="LAND ROVER AUSTRALIA"	15-Jan-08 02:32 PM	

+="CN40418"	"OFFICE SUPPLIES"	="Office of the Official Secretary to the Governor-General"	15-Jan-08	="Office supplies"	01-Aug-07	30-Sep-07	11165.00	=""	="ROLLS FILING SYSTEMS"	15-Jan-08 02:39 PM	

+="CN54955"	"legal services"	="Department of Human Services"	15-Jan-08	="Legal services"	04-Jul-07	20-Jul-07	15000.00	=""	="DLA Phillips Fox"	15-Jan-08 02:42 PM	

+="CN54957"	"Legal services"	="Department of Human Services"	15-Jan-08	="Legal services"	20-Jul-07	31-Dec-07	16500.00	=""	="DLA Phillips Fox"	15-Jan-08 02:46 PM	

+="CN54956"	"Aviation Spares. Repair of Module 5 S/N 2435"	="Defence Materiel Organisation"	15-Jan-08	="Military rotary wing aircraft"	28-Nov-07	30-May-08	58051.40	=""	="Turbomeca A/Asia Pty Ltd"	15-Jan-08 02:47 PM	

+="CN40321-A2"	" MEDALS PURCHASING "	="Office of the Official Secretary to the Governor-General"	15-Jan-08	="Medals"	06-Aug-07	30-Nov-07	53900.00	=""	="T&S SIGNCRAFT"	15-Jan-08 03:03 PM	

+="CN40314"	"BUILDING MAINTENANCE"	="Office of the Official Secretary to the Governor-General"	15-Jan-08	="Building construction and support and maintenance and repair services"	21-Sep-07	01-Nov-07	68057.55	=""	="SYDNEY BUILDING PROJECTS PTY LTD"	15-Jan-08 03:28 PM	

+="CN54959"	"ASLAV PARTS - PUMP FUEL ELECTRICAL"	="Department of Defence"	15-Jan-08	="Armoured fighting vehicles"	15-Jan-08	19-Feb-08	13200.00	=""	="A and D INTERNATIONAL PTY LTD"	15-Jan-08 03:59 PM	

+="CN54960"	"Teamprise client suite licenses"	="Australian Taxation Office"	15-Jan-08	="Software"	25-Jan-08	24-Jan-09	41246.70	=""	="Zallcom P/L"	15-Jan-08 04:04 PM	

+="CN54961"	"Aviation spares. Repair of Module 5 S/N 2490"	="Defence Materiel Organisation"	15-Jan-08	="Military rotary wing aircraft"	29-Nov-07	30-May-08	83373.40	=""	="Turbomeca A/Asia Pty Ltd"	15-Jan-08 04:09 PM	

+="CN54962-A1"	"Placement Fee - permanent employee"	="Comsuper"	15-Jan-08	="Human resources services"	29-Dec-07	30-Dec-07	11800.00	=""	="Professional carers Australia"	15-Jan-08 04:11 PM	

+="CN54963-A2"	"Provision of an Internal Employee Staff Survey"	="CRS Australia"	15-Jan-08	="Management advisory services"	07-Jan-08	30-Nov-10	156865.33	=""	="International Survey Research Pty Ltd"	15-Jan-08 04:34 PM	

+="CN54964"	"Lease of Election Premises"	="Australian Electoral Commission"	15-Jan-08	="Lease and rental of property or building"	05-Nov-07	23-Nov-07	10589.66	=""	="Yeperenya Pty Ltd"	15-Jan-08 04:45 PM	

+="CN54965"	"Security Services"	="Australian Electoral Commission"	15-Jan-08	="Security guard services"	12-Nov-07	14-Dec-07	19681.20	=""	="Safeguard Security Group Pty Ltd"	15-Jan-08 04:53 PM	

+="CN54966"	"Repair of aircraft parts"	="Defence Materiel Organisation"	16-Jan-08	="Aircraft"	19-Sep-07	14-Jan-08	34508.94	=""	="Sikorsky Aircraft Australia Limited"	16-Jan-08 07:22 AM	

+="CN54967"	"Repair of aircraft parts"	="Defence Materiel Organisation"	16-Jan-08	="Aircraft"	10-May-07	14-Jan-08	10772.54	=""	="Sikorsky Aircraft Australia Limited"	16-Jan-08 07:26 AM	

+="CN54968"	"Repair of aircraft parts"	="Defence Materiel Organisation"	16-Jan-08	="Aircraft"	19-Sep-07	14-Jan-08	37824.22	=""	="Sikorsky Aircraft Australia Limited"	16-Jan-08 07:31 AM	

+="CN54970"	"Training course"	="Department of the House of Representatives"	16-Jan-08	="Educational and research structures"	08-Feb-07	07-Feb-08	17893.25	=""	="The Australian & New Zealand School of Government"	16-Jan-08 08:48 AM	

+="CN54973"	"Purchase of workstations for Genge Street, ACT"	="Australian Taxation Office"	16-Jan-08	="Workstations and office packages"	20-Dec-07	29-Feb-08	23047.00	=""	="Schiavello (VIC) Pty Ltd"	16-Jan-08 10:22 AM	

+="CN54974-A1"	" Provision of a Business Analyst "	="Comsuper"	16-Jan-08	="Human resources services"	16-Aug-07	13-Feb-08	77792.00	=""	="Peoplebank Australia Pty Ltd"	16-Jan-08 10:40 AM	

+="CN54975-A1"	"Provision of a Solutions Architect"	="Comsuper"	16-Jan-08	="Human resources services"	13-Jan-08	30-Jun-08	110400.00	=""	="Cordelta Pty Limited"	16-Jan-08 10:45 AM	

+="CN54976"	"Recruitment Services"	="Australian Taxation Office"	16-Jan-08	="Recruitment services"	13-Nov-07	06-Dec-07	18519.60	="06.042"	="Ross Human Directions Limited"	16-Jan-08 10:54 AM	

+="CN54977"	"Repair and OH of Black Hawk Hoist Assy."	="Defence Materiel Organisation"	16-Jan-08	="Military rotary wing aircraft"	19-Dec-07	30-Jun-08	39231.08	=""	="SAAL"	16-Jan-08 10:55 AM	

+="CN54978"	"qty 100 mounting brackets; qty 40 hexagon nuts; spares for use with military radios."	="Defence Materiel Organisation"	16-Jan-08	="Electrical fixture brackets"	15-Jan-08	15-Apr-08	17418.72	="C7065"	="A&D International Pty Ltd"	16-Jan-08 11:17 AM	

+="CN54979"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jan-08	="Motor vehicles"	27-Jul-07	22-Aug-07	10424.87	=""	="MICKS AUTOS"	16-Jan-08 11:22 AM	

+="CN54980"	"Repair and OH of Black Hawk Spindle Assy"	="Defence Materiel Organisation"	16-Jan-08	="Military rotary wing aircraft"	13-Dec-07	30-Jun-08	10238.38	=""	="SAAL"	16-Jan-08 11:43 AM	

+="CN54981"	"Repair and OH of Black Hawk Spindle Assy."	="Defence Materiel Organisation"	16-Jan-08	="Military rotary wing aircraft"	13-Dec-07	31-Jan-08	17717.43	=""	="SAAL"	16-Jan-08 12:02 PM	

+="CN54982"	"ASLAV Components, Rotor Left Exention"	="Defence Materiel Organisation"	16-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Oct-06	19-Oct-07	46458.40	=""	="General Dynamics"	16-Jan-08 12:03 PM	

+="CN54985"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jan-08	="Motor vehicles"	17-Sep-07	17-Oct-07	17274.40	=""	="MICKS AUTOS"	16-Jan-08 12:51 PM	

+="CN54986"	"VEHICLE REPAIR"	="Department of Defence"	16-Jan-08	="Motor vehicles"	25-Sep-07	25-Oct-07	20806.51	=""	="MICKS AUTOS"	16-Jan-08 12:55 PM	

+="CN54987"	"Repair & OH of Black Hawk Main Rotor Blade."	="Defence Materiel Organisation"	16-Jan-08	="Military rotary wing aircraft"	19-Dec-07	31-Jan-08	19713.04	=""	="SAAL"	16-Jan-08 01:07 PM	

+="CN54988"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jan-08	="Motor vehicles"	16-Jan-08	30-Jan-08	14173.12	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	16-Jan-08 01:19 PM	

+="CN54989"	"Supply of ballistic cushion cover and squb cover, 50 qty and 70 qty, NSN 2540-66-152-8520 and 2540-66-152-8521."	="Defence Materiel Organisation"	16-Jan-08	="War vehicles"	15-Jan-08	09-Apr-08	85718.27	=""	="LAND ROVER AUSTRALIA"	16-Jan-08 01:31 PM	

+="CN54992"	"motor vehicle spare parts"	="Department of Defence"	16-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Jan-08	14-Feb-08	13910.41	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	16-Jan-08 01:45 PM	

+="CN54993"	"Design and construction of Australian National Stand for Medica 2007 in Germany"	="Austrade"	16-Jan-08	="Marketing and distribution"	01-Nov-07	20-Nov-07	154055.16	=""	="Pico Australia Pty Ltd"	16-Jan-08 02:00 PM	

+="CN54994"	"Hurstville Office Fit-Out"	="Austrade"	16-Jan-08	="General building construction"	03-Oct-07	02-Nov-07	30855.00	=""	="Euroline Pty Ltd"	16-Jan-08 02:00 PM	

+="CN54995"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	18-Oct-07	19-Oct-07	112504.01	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:00 PM	

+="CN54996"	"Acquisition of TM1 Enterprise Planning Software and annual Maintenance fees"	="Austrade"	16-Jan-08	="Computer services"	12-Oct-07	20-Oct-07	66000.00	=""	="Excelerated Consulting Pty Limited"	16-Jan-08 02:01 PM	

+="CN54997"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	12-Oct-07	26-Oct-07	216839.38	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:01 PM	

+="CN54998"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	17-Jul-07	10-Sep-07	727777.01	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:01 PM	

+="CN54999"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	16-Oct-07	29-Nov-07	759335.31	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:01 PM	

+="CN55000"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	05-Dec-07	06-Dec-07	583610.83	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:01 PM	

+="CN55001"	"Development of commercial & residential guidelines"	="Austrade"	16-Jan-08	="General building construction"	24-Jul-07	27-Nov-07	14189.56	=""	="Coffey Corporate Pty Ltd"	16-Jan-08 02:01 PM	

+="CN55002"	"Preparation, facilitation and delivery of Personal Travel Safety course in Frankfurt & Fujairah"	="Austrade"	16-Jan-08	="Education and Training Services"	07-Nov-07	14-Nov-07	13095.70	=""	="Yu ShihTao Kung Fu"	16-Jan-08 02:01 PM	

+="CN55003"	"Brand strategy consultancy services for 'Kangaroo Dreaming' image"	="Austrade"	16-Jan-08	="Marketing and distribution"	29-Nov-07	31-Dec-07	12100.00	=""	="Keystone Corporate Positioning Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55004"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	16-Jan-08	="Computer services"	14-Dec-07	15-Dec-07	145738.61	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55005"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	16-Jan-08	="Computer services"	22-Nov-07	23-Nov-07	128397.55	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55006"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	16-Jan-08	="Computer services"	07-Jun-07	08-Jun-07	132003.52	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55007"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	16-Jan-08	="Computer services"	07-May-07	08-May-07	131902.99	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55008"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	16-Jan-08	="Computer services"	07-Apr-07	08-Apr-07	104040.43	=""	="Hewlett Packard Australia Pty Ltd"	16-Jan-08 02:02 PM	

+="CN55010"	"Cable Assembly, Special Purpose, Electrical Branched."	="Defence Materiel Organisation"	16-Jan-08	="Electrical cable and accessories"	16-Jan-08	05-May-08	26325.00	=""	="BAE Systems Australia"	16-Jan-08 02:18 PM	

+="CN55011"	"Conference Re-imbursement: BTH 10 years Later"	="Australian Human Rights Commission"	16-Jan-08	="Meetings events"	26-Sep-07	06-Dec-07	24993.93	=""	="University of NSW"	16-Jan-08 02:23 PM	

+="CN55012"	"Cooperative arrangment for use of facilities"	="Australian Human Rights Commission"	16-Jan-08	="Meeting facilities"	01-Jul-07	30-Jun-08	11000.00	=""	="Equal Opportunity Commission"	16-Jan-08 02:30 PM	

+="CN55013"	"Printing ballot papers"	="Australian Electoral Commission"	16-Jan-08	="Industrial printing services"	13-Aug-07	12-Aug-10	23130.80	="03/04/037"	="SEP Sprint (Australia) Pty Ltd"	16-Jan-08 02:31 PM	

+="CN55014"	"Co-operative arrangement for use of facilities."	="Australian Human Rights Commission"	16-Jan-08	="Meeting facilities"	01-Jul-06	30-Jun-07	11000.00	=""	="Equal Opportunity Commission WA"	16-Jan-08 02:33 PM	

+="CN55016"	"Human Rights Awards Ceremony"	="Australian Human Rights Commission"	16-Jan-08	="Awards"	10-Dec-07	12-Dec-07	34985.61	=""	="Sheraton on the Park"	16-Jan-08 02:38 PM	

+="CN55017-A1"	"Managed Information Technology Rack Space"	="Australian Electoral Commission"	16-Jan-08	="Rack systems for rack mount electronic equipment"	01-Jul-07	30-Jun-08	315047.87	=""	="IBM Australia Ltd"	16-Jan-08 02:42 PM	

+="CN55019"	"Novell Master Licence Agreement software acquisition, maintenance and support"	="Comsuper"	16-Jan-08	="Software"	31-Aug-05	31-Aug-08	203271.00	=""	="Open Channel"	16-Jan-08 02:50 PM	

+="CN55021"	"Replication printing 'Bringing them Home' DVD."	="Australian Human Rights Commission"	16-Jan-08	="Read only digital versatile disc DVD"	09-Dec-07	07-Jan-08	14245.00	=""	="Oziris Pty Ltd"	16-Jan-08 03:09 PM	

+="CN55024"	"Recruitment Services"	="Australian Taxation Office"	16-Jan-08	="Recruitment services"	22-Nov-07	04-Mar-08	224500.00	="06.042"	="Chandler Macleod Limited"	16-Jan-08 04:04 PM	

+="CN55025"	"Printing of NAT7392-10.2007 - Activity statement instructions. Qty: 10,000"	="Australian Taxation Office"	16-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-Jan-08	23-Jan-08	10428.00	=""	="Paragon Printers"	16-Jan-08 04:18 PM	

+="CN55026"	"Technical Telecommunications Consultancy Services"	="Australian Electoral Commission"	16-Jan-08	="Information technology consultation services"	20-Dec-07	30-Jun-08	22532.00	=""	="Gibson Quai-AAS Pty Ltd"	16-Jan-08 04:23 PM	

+="CN55029"	"Delivery and collection of election material"	="Australian Electoral Commission"	16-Jan-08	="Material handling services"	07-Dec-07	07-Jan-08	123983.54	=""	="TNT Express (Mascot)"	16-Jan-08 04:43 PM	

+="CN55031"	" Hire of Election Premises "	="Australian Electoral Commission"	16-Jan-08	="Lease and rental of property or building"	24-Sep-07	24-Dec-07	30000.00	=""	="Wynomi Pty Ltd"	16-Jan-08 04:52 PM	

+="CN55034"	"Modification of Seahawk HMU for Black Hawk use."	="Defence Materiel Organisation"	16-Jan-08	="Military rotary wing aircraft"	16-Jan-08	30-Jun-08	40475.53	=""	="APA"	16-Jan-08 04:59 PM	

+="CN55037"	" Freight services - election material "	="Australian Electoral Commission"	16-Jan-08	="Freight loading or unloading"	03-Dec-07	03-Jan-08	16225.00	=""	="1st Fleet Warehousing and Distribution"	16-Jan-08 05:07 PM	

+="CN55043-A1"	"Business analysis services for IT applications and systems"	="Australian Federal Police"	16-Jan-08	="Engineering and Research and Technology Based Services"	30-Jan-07	31-Mar-08	254320.00	=""	="ConSolve Pty Ltd"	16-Jan-08 08:11 PM	

+="CN55045-A2"	" Provision of Network management activities for the AFP's data network "	="Australian Federal Police"	16-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	492201.60	=""	="Consult Holt Pty Ltd"	16-Jan-08 08:39 PM	

+="CN55046-A2"	" Services in relation to IT communications projects, support and maintenance of AFP's data network and other specialised networks "	="Australian Federal Police"	16-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	424688.00	=""	="Consult Holt Pty Ltd"	16-Jan-08 08:48 PM	

+="CN55053-A1"	" Services relating to analysing and designing specific geospatial requirements and architect solutions "	="Australian Federal Police"	16-Jan-08	="Computer services"	11-Apr-07	30-Jun-08	206052.00	=""	="Clicks Recruit Pty Ltd"	16-Jan-08 09:51 PM	

+="CN55055-A1"	" Management of procurement projects for Information Services "	="Australian Federal Police"	16-Jan-08	="Professional procurement services"	21-Feb-07	31-Aug-07	112892.00	=""	="Candle Australia Limited"	16-Jan-08 10:07 PM	

+="CN55056"	"A23 AIRCRAFT - REPAIRS TO ACTUATOR, ELECTRO-MECHANICAL, LINEAR"	="Defence Materiel Organisation"	17-Jan-08	="Military fixed wing aircraft"	16-Jan-08	25-Feb-08	19296.20	=""	="AIRFLITE PTY LTD"	17-Jan-08 08:43 AM	

+="CN55057"	" VEHICLE REPAIRS "	="Department of Defence"	17-Jan-08	="Motor vehicles"	21-Sep-07	21-Oct-07	24443.10	=""	="ALLCOCK CRASH REPAIRS"	17-Jan-08 09:00 AM	

+="CN55058"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	17-Jan-08	="Drugs and Pharmaceutical Products"	18-Sep-07	24-Sep-07	11716.32	=""	="Symbion Pharmacy Services"	17-Jan-08 09:48 AM	

+="CN55059"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	17-Jan-08	="Medical Equipment and Accessories and Supplies"	31-May-07	30-Sep-07	61680.96	=""	="Smith & Nephew (Australia) Pty Ltd"	17-Jan-08 09:53 AM	

+="CN55060"	"Courier Services"	="Australian Electoral Commission"	17-Jan-08	="Postal and small parcel and courier services"	10-Nov-07	24-Nov-07	48432.11	=""	="TNT Express (Mascot)"	17-Jan-08 09:57 AM	

+="CN55061"	"Recruitment Services"	="Australian Taxation Office"	17-Jan-08	="Recruitment services"	30-Oct-07	13-Nov-07	79500.00	="06.042"	="DFP Recruitment Services Pty Ltd"	17-Jan-08 10:00 AM	

+="CN55062"	"Printing of ballot papers"	="Australian Electoral Commission"	17-Jan-08	="Industrial printing services"	19-Nov-07	19-Dec-07	46906.10	=""	="Colemans Printing Pty Ltd"	17-Jan-08 10:05 AM	

+="CN55063"	"FLUGELHORN WITH MOUTHPIECE, LYRE AND CASE, QUANTITY 9."	="Defence Materiel Organisation"	17-Jan-08	="Musical Instruments and parts and accessories"	16-Jan-08	16-Mar-08	21266.78	="2580077"	="ENGADINE MUSIC EDUCATION CENTRE"	17-Jan-08 10:08 AM	

+="CN55064"	" SAXOPHONE WITH LEATHER NECK STRAP, MOUTHPIECE, CASE, LYRE AND STAND, QUANTITY 2. "	="Defence Materiel Organisation"	17-Jan-08	="Musical Instruments and parts and accessories"	16-Jan-08	26-May-08	15406.60	="2580076"	="KURT JACOB AND CO. PTY LTD"	17-Jan-08 10:33 AM	

+="CN55066"	"Professional fees"	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	21-Oct-07	18-Dec-07	38500.00	=""	="McKinsey Pacific Rim Inc"	17-Jan-08 10:52 AM	

+="CN55018"	"Professional fees for Intervention in Federal Court."	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	10-Jul-07	01-Nov-07	14009.50	=""	="Ms Kate Eastman, Barrister"	17-Jan-08 10:55 AM	

+="CN55068"	"Purchase of 40 chairs"	="Australian Human Rights Commission"	17-Jan-08	="Chairs"	02-Nov-07	12-Dec-07	28600.00	=""	="Stem Industries Pty Ltd"	17-Jan-08 11:06 AM	

+="CN55070"	"Professional services"	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	21-Sep-07	25-Oct-07	31122.52	=""	="Clayton Utz"	17-Jan-08 11:12 AM	

+="CN55071"	"vehicle parts."	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Sep-07	04-Jan-08	17667.93	=""	="Land Rover Australia"	17-Jan-08 11:14 AM	

+="CN55072"	"Lease renewal at Nowra, NSW"	="Department of Human Services"	17-Jan-08	="Real estate services"	20-Dec-08	19-Dec-11	1462544.00	=""	="Matela P/L"	17-Jan-08 11:14 AM	

+="CN55073"	" VEHICLE REPAIRS "	="Department of Defence"	17-Jan-08	="Motor vehicles"	07-Dec-07	06-Jan-08	11762.75	=""	="MACK AUSTRALIA"	17-Jan-08 12:12 PM	

+="CN55074"	" vehicle repair "	="Department of Defence"	17-Jan-08	="Motor vehicles"	07-Dec-06	21-Jan-08	17205.90	=""	="VOLVO COMMERCIAL VEHCILES"	17-Jan-08 12:26 PM	

+="CN55076-A1"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	71391.33	=""	="SAAL"	17-Jan-08 01:41 PM	

+="CN55077-A1"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	68040.82	=""	="SAAL"	17-Jan-08 01:44 PM	

+="CN55078"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	64862.85	=""	="SAAL"	17-Jan-08 01:47 PM	

+="CN55079"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	69713.02	=""	="SAAL"	17-Jan-08 01:51 PM	

+="CN45149"	"REPAIR AND OVERHAUL OF BLACK HAWK INTERMEDIATE GEARBOX"	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	07-Nov-07	31-Dec-07	42109.72	=""	="SAAL"	17-Jan-08 02:01 PM	

+="CN55082"	"Supply of Diesel & Petrol fuels"	="Department of Parliamentary Services"	17-Jan-08	="Diesel fuel"	18-Dec-07	31-Dec-07	16500.00	=""	="Caltex Australia Petroleum Pty Ltd"	17-Jan-08 02:22 PM	

+="CN55083"	"Provision of machinery condition monitoring services (Contract JH99065C)"	="Department of Parliamentary Services"	17-Jan-08	="Electromechanical services"	19-Dec-07	30-Dec-07	10890.00	=""	="Hatch Associates Pty ltd"	17-Jan-08 02:22 PM	

+="CN55085"	"Supply of elevating work platform"	="Department of Parliamentary Services"	17-Jan-08	="Self elevating workover platforms"	19-Dec-07	31-Jan-08	11825.00	=""	="Snorkel Elevating Work Platforms"	17-Jan-08 02:22 PM	

+="CN55087"	"Supply and Maintenance of Printers (Standing Offer DPS07004)"	="Department of Parliamentary Services"	17-Jan-08	="Computer printers"	19-Dec-07	31-Jan-08	130853.47	=""	="Hewlett Packard Australia Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55089"	"Supply of diesel fuel"	="Department of Parliamentary Services"	17-Jan-08	="Diesel fuel"	20-Dec-07	31-Dec-07	28380.00	=""	="Caltex Australia Petroleum Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55091"	"Security training Services for Parliamentary Security Contract (DPS03042 )"	="Department of Parliamentary Services"	17-Jan-08	="Education and Training Services"	21-Dec-07	31-Dec-07	11330.00	=""	="Xtek Limited"	17-Jan-08 02:23 PM	

+="CN55093"	"Provision of maintenance painting services"	="Department of Parliamentary Services"	17-Jan-08	="Painting services"	21-Dec-07	30-Jun-08	22000.00	=""	="AGC Industries Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55094"	"Provision of Security Advice"	="Department of Parliamentary Services"	17-Jan-08	="National security"	08-Jan-08	30-Jan-08	15649.21	=""	="T4 Protective Security"	17-Jan-08 02:23 PM	

+="CN55096"	"Provision of support services for PeopleSoft HRMS"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	30-Jun-08	21450.00	=""	="Oracle Corporation Australia P/L"	17-Jan-08 02:24 PM	

+="CN55098"	"Supply of ZIP boiling water appliances"	="Department of Parliamentary Services"	17-Jan-08	="Commercial water heaters"	15-Jan-08	31-Jan-08	28400.41	=""	="Zip Heaters (Aust) Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55099"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	154684.51	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55101"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	38748.82	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55103"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	98909.80	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55105"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	17-Jan-08	="Carpeting"	15-Jan-08	31-Jan-08	18715.40	=""	="Chesta's Floors"	17-Jan-08 02:25 PM	

+="CN55106"	"Provision of  telephone calls"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	38315.18	=""	="Telstra Corporation Ltd"	17-Jan-08 02:25 PM	

+="CN55107"	"Provision of Purchase of Turf Maintenance Products"	="Department of Parliamentary Services"	17-Jan-08	="Grounds maintenance services"	29-Nov-07	30-Jun-08	19800.00	=""	="Nuturf Pty Ltd"	17-Jan-08 02:25 PM	

+="CN55108"	"Provision of ICT Services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	29-Feb-08	18700.00	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:25 PM	

+="CN55109"	"Provision of Water & Sewerage services"	="Department of Parliamentary Services"	17-Jan-08	="Supply of water"	14-Dec-07	30-Jun-08	181795.90	=""	="ACTEW AGL Water"	17-Jan-08 02:25 PM	

+="CN55110"	"Provision of bulk photocoping"	="Department of Parliamentary Services"	17-Jan-08	="Photocopying"	16-Jul-07	03-Mar-08	11000.00	=""	="Konica Minolta Business Solutions"	17-Jan-08 02:25 PM	

+="CN55111"	"Provision of tempory nurse for nurse center Contract (DPS07088)"	="Department of Parliamentary Services"	17-Jan-08	="Nursery services"	24-Jul-07	03-Mar-08	11000.00	=""	="National Health Care Services"	17-Jan-08 02:25 PM	

+="CN55112"	"Provision of Character Checks"	="Department of Parliamentary Services"	17-Jan-08	="Security and protection software"	15-Aug-07	03-Mar-08	14300.00	=""	="Aust Federal Police"	17-Jan-08 02:26 PM	

+="CN55113"	"Provision of Security Checks"	="Department of Parliamentary Services"	17-Jan-08	="Security and protection software"	15-Aug-07	03-Mar-08	14300.00	=""	="Attorney-General's Department"	17-Jan-08 02:26 PM	

+="CN55115"	"Building works Package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	17-Jan-08	="Building construction management"	08-Jan-08	03-Mar-08	16500.00	=""	="Manteena Pty Ltd"	17-Jan-08 02:26 PM	

+="CN55116"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jan-08	="Printing"	18-Dec-07	30-Jun-08	60390.00	=""	="Canprint Communications Pty Ltd"	17-Jan-08 02:26 PM	

+="CN55117"	"PABX-Supply and Implementation Facilites Mangement Team ( DPS04082)"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	03-Mar-08	147287.82	=""	="Telstra Corporation Ltd"	17-Jan-08 02:26 PM	

+="CN55118"	"Supply of electrical cable"	="Department of Parliamentary Services"	17-Jan-08	="Electrical cable and accessories"	17-Dec-07	29-Feb-08	15650.80	=""	="Next Entertainment Technology P/L"	17-Jan-08 02:26 PM	

+="CN55119"	"Provision of legal services Contract (JH03027)"	="Department of Parliamentary Services"	17-Jan-08	="Legal services"	18-Dec-07	03-Mar-08	33000.00	=""	="Blake Dawson"	17-Jan-08 02:27 PM	

+="CN55114"	"R2 Servicing on A17-012"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	05-Sep-07	16-Jan-08	110654.23	=""	="Helitech Pty Ltd"	17-Jan-08 02:27 PM	

+="CN55120"	"Supply of  Transmitting equipment"	="Department of Parliamentary Services"	17-Jan-08	="Computer Equipment and Accessories"	18-Dec-07	03-Mar-08	12443.20	=""	="Pacific Broadband Networks"	17-Jan-08 02:27 PM	

+="CN55121"	"R2 servicing on A17-031"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	15-Oct-07	14-Jan-08	117822.78	=""	="Helitech Pty Ltd"	17-Jan-08 02:31 PM	

+="CN55123"	" R2 servicing A17-011 "	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	18-Oct-07	07-Dec-07	151192.24	=""	="Helitech Pty Ltd"	17-Jan-08 02:36 PM	

+="CN55122"	"qty 540 Soldier Personal Radios,"	="Defence Materiel Organisation"	17-Jan-08	="Two way radios"	17-Jan-08	24-Apr-08	1117000.00	=""	="Ericsson Australia Pty Ltd"	17-Jan-08 02:41 PM	

+="CN55124"	" Publlications "	="Australian Centre for International Agricultural Research"	17-Jan-08	="Publication printing"	12-Nov-07	17-Dec-07	10392.80	=""	="Piroon Pty Ltd"	17-Jan-08 02:58 PM	

+="CN55125"	"Turbine Overhaul"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	09-Mar-07	15-Jan-08	23874.54	=""	="aviation Turbine O/h"	17-Jan-08 02:58 PM	

+="CN55126"	"Distribution services"	="Australian Centre for International Agricultural Research"	17-Jan-08	="Distribution"	29-Nov-07	17-Dec-07	16849.39	=""	="National Mailing and Marketing"	17-Jan-08 03:13 PM	

+="CN55127"	" Distribution services "	="Australian Centre for International Agricultural Research"	17-Jan-08	="Distribution"	27-Nov-07	17-Dec-07	17268.74	=""	="National Mailing and Marketing"	17-Jan-08 03:18 PM	

+="CN55129"	"Rent"	="Australian Centre for International Agricultural Research"	17-Jan-08	="Lease and rental of property or building"	13-Nov-07	17-Dec-07	45487.50	=""	="GDA Diversified Property Trust"	17-Jan-08 03:24 PM	

+="CN55133"	"Motor Vehicle Parts"	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jan-08	17-Feb-08	24187.60	=""	="Volvo Commerical Vehicles"	17-Jan-08 03:58 PM	

+="CN55134"	"Motor Vehicle Parts"	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jan-08	17-Feb-10	15277.15	=""	="Merceded Benz"	17-Jan-08 04:06 PM	

+="CN55135-A1"	" Staff to assist with various IT audits plus Out Of Pocket Expenses. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	01-Dec-07	30-Apr-08	56886.20	=""	="Protiviti Pty Ltd"	17-Jan-08 04:26 PM	

+="CN55136-A1"	" Purchase of IT Network equipment. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Fixed network equipment and components"	01-Jul-07	31-Dec-07	277854.50	=""	="Unisys Australia Pty Ltd"	17-Jan-08 04:27 PM	

+="CN55137-A1"	" Computer room fitout and planning "	="Australian National Audit Office (ANAO)"	17-Jan-08	="General building and office cleaning and maintenance services"	01-Nov-07	30-Jun-08	24970.00	=""	="SMI Fitout Pty Limited"	17-Jan-08 04:27 PM	

+="CN55138-A1"	" Placement fee "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Personnel recruitment"	01-Oct-07	21-Nov-07	21325.92	=""	="Cordelta Pty Ltd"	17-Jan-08 04:27 PM	

+="CN55139"	"PricewaterhouseCoopers"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	03-Mar-05	31-Oct-08	313152.00	=""	="Pricewaterhouse Coopers"	17-Jan-08 04:27 PM	

+="CN55140-A1"	"Provide advice on Issues Paper for Preparation of Tax Expenditure Statement."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	03-Oct-07	30-Nov-07	21585.89	=""	="Collaborative Business"	17-Jan-08 04:27 PM	

+="CN55141-A1"	" Prepare and present 2 day training course Critical Thinking "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Human resource development"	04-Dec-07	05-Dec-07	14500.00	=""	="Robert M Spillane"	17-Jan-08 04:27 PM	

+="CN55142-A9"	" Centrelink Financial Statements Audit 07-08 to 10-11. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	05-Nov-07	30-Sep-12	2923311.50	="ANAOAM2007/240"	="Ernst and Young"	17-Jan-08 04:27 PM	

+="CN55143-A1"	"Assistance with the development of a BPG on Internal Budgeting - Phase 1"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	07-Nov-07	07-Dec-07	22226.00	=""	="KPMG Peat Marwick - ACT"	17-Jan-08 04:27 PM	

+="CN55144-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	08-Nov-07	30-Apr-08	169730.00	=""	="Oakton Services Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55145-A1"	"Assist in Review and Update of AASG PAAM"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	08-Oct-07	31-Dec-07	30000.00	=""	="Thompson Consulting and Accoutning Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55146-A1"	"Undertake Performance Audit of Management of E-Business in DEST"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	09-Nov-07	30-Jun-08	92782.00	=""	="KNJ Professional Services Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55147-A1"	"PASG Audit Advisory Panel Member for Initiation of Business System Projects"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	14-Nov-07	30-Jun-08	15200.00	=""	="Christopher Conybeare and Associates"	17-Jan-08 04:28 PM	

+="CN55148-A1"	"Provision of audit services for the Initiation of Business System Projects Audit (Second Contract)."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	15-Oct-07	14-Dec-07	34650.00	=""	="Pitt Group Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55149-A1"	"Engagement of staff to review the IT environment of Active After-School Communities."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	19-Nov-07	24-Dec-07	17160.00	=""	="Axiom Associates Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55150-A1"	"2007-08 Design of Corporate Publications"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Printed publications"	19-Nov-07	30-Jun-08	17000.00	=""	="Comcom Pty Ltd T/A Zoo"	17-Jan-08 04:28 PM	

+="CN55151-A1"	"Placement Fee"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Personnel recruitment"	28-Sep-07	28-Sep-07	14114.69	=""	="Firstwater Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55152-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	30-Nov-07	30-Apr-08	100320.00	=""	="KPMG Peat Marwick - ACT"	17-Jan-08 04:29 PM	

+="CN55156"	"FIBREGLASS MAT, TEFLON"	="Defence Materiel Organisation"	17-Jan-08	="Fibres"	17-Jan-08	21-Feb-08	21454.57	=""	="INTERTURBINE ADVANCED COMPOSITES"	17-Jan-08 04:55 PM	

+="CN55157"	" FITTING ASSEMBLY QUANTITY 10 - P/No 206-011-140-001; MC 97499. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	14-Feb-08	14761.04	=""	="HELITECH A DIVISION OF SIKORSKY"	17-Jan-08 05:28 PM	

+="CN55158"	" Araphat Cap "	="Defence Materiel Organisation"	17-Jan-08	="Clothing accessories"	17-Jan-08	31-Mar-08	108900.00	="J8110"	="Frillneck U.T.E."	17-Jan-08 05:44 PM	

+="CN55163-A2"	" Provision of services relating to Linux systems adminstration "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	413820.00	=""	="Patriot Alliance Pty Ltd"	17-Jan-08 08:56 PM	

+="CN55164"	"Development of application integration soloutions and prototypes"	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Apr-04	30-Jun-08	818144.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:02 PM	

+="CN55165"	" Business analysis activities for Information Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	04-Sep-06	30-Jun-08	387112.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:17 PM	

+="CN55167"	" Business analysis activities for Information Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	04-May-05	30-Jun-08	325736.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:33 PM	

+="CN55169"	" Information Services high level systems administration servies "	="Australian Federal Police"	17-Jan-08	="Computer services"	18-Dec-06	30-Jun-08	292160.00	=""	="Greythorn Pty Ltd"	17-Jan-08 10:07 PM	

+="CN55170-A4"	" Provision of services relating to data communications technical officer activities "	="Australian Federal Police"	17-Jan-08	="Computer services"	01-Jul-07	30-Jun-09	353456.40	=""	="Greythorn Pty Ltd"	17-Jan-08 10:13 PM	

+="CN55171-A1"	" Specialised IT Security Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Apr-08	192522.00	=""	="Greythorn Pty Ltd"	17-Jan-08 10:22 PM	

+="CN55172-A1"	"Applications development support services for specialised AFP applications"	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Sep-08	229345.60	=""	="Greythorn Pty Ltd"	17-Jan-08 10:31 PM 

--- /dev/null
+++ b/admin/partialdata/13Jun2008to15Jun2008valto.xls
@@ -1,1 +1,241 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN90501"	" TEST SET SYNCHRO "	="Defence Materiel Organisation"	13-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jun-08	22-Aug-08	85272.00	=""	="SCIENTIFIC DEVICES AUST PTY LTD"	13-Jun-08 07:59 AM	

+="CN90502"	"Lease Photocopier"	="Workplace Authority"	13-Jun-08	="Printer and photocopier and facsimile accessories"	02-May-08	31-Jul-10	36272.22	=""	="Ricoh Australia (ROA)"	13-Jun-08 08:00 AM	

+="CN90503"	"Recruitment Services"	="Workplace Authority"	13-Jun-08	="Recruitment services"	26-Mar-08	02-May-08	31962.75	=""	="Dixon Appointments"	13-Jun-08 08:04 AM	

+="CN90504"	"MOTOR VEHICLE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	11-Sep-08	17735.28	=""	="Land Rover AUSTRALIA"	13-Jun-08 08:05 AM	

+="CN90505"	"Project Manage fitout."	="Workplace Authority"	13-Jun-08	="Project management"	09-May-08	30-Jun-08	325105.00	=""	="Point Project Management"	13-Jun-08 08:15 AM	

+="CN90507"	"Wrapping Machine 70mm Low Profile"	="Defence Materiel Organisation"	13-Jun-08	="Workshop machinery and equipment and supplies"	13-Jun-08	13-Jul-08	12523.50	=""	="Packstrap International"	13-Jun-08 08:23 AM	

+="CN90506"	"Transport/Freight of equipment."	="Workplace Authority"	13-Jun-08	="Bulk transporters"	09-May-08	16-May-08	12153.90	=""	="Cope Sensitive Freight"	13-Jun-08 08:26 AM	

+="CN90508"	"Fitout Services"	="Workplace Authority"	13-Jun-08	="Refurbishing services"	14-May-08	31-May-08	17754.00	=""	="Interiors Australia Pty Ltd"	13-Jun-08 08:30 AM	

+="CN90509"	"AWA Career Counselling Services"	="Workplace Authority"	13-Jun-08	="Career development services"	27-May-08	27-May-08	10000.00	=""	="Living Career"	13-Jun-08 08:33 AM	

+="CN90510"	"Development Training"	="Workplace Authority"	13-Jun-08	="Work ethics or attitude training instructional materials"	30-May-08	30-May-08	13200.00	=""	="OSA Group Pty Ltd"	13-Jun-08 08:36 AM	

+="CN90512"	"Culture Awareness Training"	="Australian Federal Police"	13-Jun-08	="Education and Training Services"	16-Jun-08	20-Jun-08	47326.40	="RFT 65-2006"	="Asian Law Group Pty Ltd"	13-Jun-08 09:11 AM	

+="CN90514-A2"	"Provision of services relating to Project Management"	="Australian Federal Police"	13-Jun-08	="Project management"	01-Jul-08	30-Jun-09	288522.00	=""	="Greythorn Pty Ltd"	13-Jun-08 09:37 AM	

+="CN90513"	"Printing of Tax Pack 2000 and 2001"	="Australian Taxation Office"	13-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Jun-08	30-Jun-08	24877.60	=""	="Pirion Printing"	13-Jun-08 09:38 AM	

+="CN90516"	" SUPPLY OF CABLE, POWER, ELECTRICAL "	="Defence Materiel Organisation"	13-Jun-08	="Power cable"	12-Jun-08	12-Aug-08	11100.00	=""	="OLEX CABLES"	13-Jun-08 09:49 AM	

+="CN90519"	"West Musgrave Gravity Survey"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	01-May-08	30-Jun-08	363423.29	=""	="Daishsat Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90520"	"As per quotation 1004287D dated 21 April 2008. FieldSpec HandHeld Pro Spectrophotometer (325-1075nm/A103002 with accessories as outlined in quote"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	01-May-08	30-Jun-08	52606.52	=""	="ASD Inc"	13-Jun-08 10:03 AM	

+="CN90521"	"ERDAS Imagine maintenance renewal"	="Geoscience Australia"	13-Jun-08	="Software"	01-May-08	07-May-08	14630.00	=""	="Paradigm Geophysical Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90522"	"ERDAS Imagine maintenance renewal"	="Geoscience Australia"	13-Jun-08	="Software"	01-May-08	15-May-08	23050.50	=""	="Leica Geosystems Pty Ltd"	13-Jun-08 10:03 AM	

+="CN90523"	"Investigate feasability, or similar state of health monitoring, for ATWS network."	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	01-May-08	30-Jun-08	15000.00	="2007/1619"	="Lindquist Consulting Inc"	13-Jun-08 10:04 AM	

+="CN90524"	"Training credits valid from 12 Jun 2008 to 8 May 2009."	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	02-May-08	31-Dec-09	33000.00	=""	="Object Consulting Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90525"	"Repairs to underwater camera"	="Geoscience Australia"	13-Jun-08	="Computer services"	02-May-08	30-Jun-08	12484.25	=""	="Underwater Video Systems Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90526"	"PO 23606  Additional works"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	19-May-08	31-May-08	10933.18	=""	="Terratest Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90527"	"Additional Trim Licences and Maintenance"	="Geoscience Australia"	13-Jun-08	="Software"	05-May-08	19-May-08	67437.04	=""	="Tower Software"	13-Jun-08 10:04 AM	

+="CN90528"	"Complete SET3X total Station"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	06-May-08	31-May-08	16500.00	=""	="Total Survey Systems Pty Ltd"	13-Jun-08 10:04 AM	

+="CN90529"	"Auto-injector system  - Quotation No: Q08-039 PA"	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	06-May-08	31-Dec-08	26290.00	=""	="Shimadzu Scientific Instruments"	13-Jun-08 10:04 AM	

+="CN90530"	"GeoHistory Modelling - Mentelle Basin Offshore Western AustraliaContract #: GA/270408"	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	07-May-08	31-Jul-08	12089.09	=""	="TGS Geological Products and Services"	13-Jun-08 10:04 AM	

+="CN90531"	"Telecommunication Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Apr-08	30-Apr-08	65962.45	=""	="Macquarie Telecom"	13-Jun-08 10:04 AM	

+="CN90532"	"MultiPhase Kerogen kinetics on Vulcan Sub Basin source rocks - GeoS4 offer 20080502"	="Geoscience Australia"	13-Jun-08	="Professional engineering services"	07-May-08	31-Aug-08	77000.00	=""	="GeoS4 Gmbh"	13-Jun-08 10:04 AM	

+="CN90533"	"Telecommunication Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Feb-08	29-Feb-08	60903.13	=""	="Macquarie Telecom"	13-Jun-08 10:05 AM	

+="CN90534"	"Gift & Exchange Program Aust Journal of Earth Sciences Calender Year 2008"	="Geoscience Australia"	13-Jun-08	="Printed publications"	07-May-08	30-Dec-08	57970.00	=""	="Geological Society of Australia"	13-Jun-08 10:05 AM	

+="CN90535"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	01-Feb-08	30-Jun-08	15724.57	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:05 AM	

+="CN90536"	"G2367 S D Provision for Contract Staff, to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	44000.00	=""	="Peoplebank Australia Ltd"	13-Jun-08 10:05 AM	

+="CN90537"	"Software Licencing and Maintenance"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	01-Feb-08	30-Jun-08	17441.88	=""	="Aurion Corporation Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90538"	"G2362 K O Provision for Contract Staff to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	46200.00	=""	="Verossity Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90539"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	01-Mar-08	31-Mar-08	13507.45	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:05 AM	

+="CN90541"	"Invoice: SYD-07/08-141, Ref: PD04317/SYD0574 MEO Australia p/l"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	13270.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90540"	"Telecommunication Service."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Telephony equipment"	01-Mar-08	31-Mar-08	60209.89	=""	="Macquarie Telecom"	13-Jun-08 10:05 AM	

+="CN90542"	"Parking Lease Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Printing and writing paper"	01-May-08	30-Jun-09	16767.83	=""	="S and K Car Park Management Pty Ltd"	13-Jun-08 10:05 AM	

+="CN90543"	"Invoice: 00005430, Ref: PD04483 - 3590 duplication"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	10227.80	="2006/3933"	="SpectrumData"	13-Jun-08 10:05 AM	

+="CN90544"	"Printing Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Printing"	02-May-08	30-Jun-08	35000.00	=""	="Quantum Ideas Bureau Design House"	13-Jun-08 10:05 AM	

+="CN90545"	"RP00690 St Vidgeon transcription consisting of 988 x 9 track reels - 80% payment"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	14379.66	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	13-Jun-08 10:05 AM	

+="CN90546"	"IT Contractor Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	03-Apr-08	02-Apr-09	192192.00	=""	="Paxus"	13-Jun-08 10:05 AM	

+="CN90547"	"RPHC93 - transcription, Invoice no. 00005179"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-09	12166.00	="2006/3933"	="SpectrumData"	13-Jun-08 10:05 AM	

+="CN90548"	"Refurbishment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Refurbishing services"	03-Sep-07	30-Jun-08	21622.21	=""	="Elite Office Environments Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90549"	"G2359 S M Provision for Contract Staff to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	07-May-08	30-Jun-08	27500.00	=""	="Verossity Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90551"	"Quotation 006_CMC#: G2180 - Additional processing on the Southern Margin"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	262548.00	=""	="Fugro Seismic Imaging Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90552"	"Office Equipment and Supplies"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Office supplies"	08-May-08	05-Jun-08	12882.10	=""	="Schiavello Systems (NSW) Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90553"	"Onsite GoCAD Training Course x 12 people"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	08-May-08	30-Jun-08	41371.00	=""	="Paradigm Geophysical Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90554"	"Software and Maintenance Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	11-Feb-08	10-Feb-09	56955.82	=""	="Oracle Corporation"	13-Jun-08 10:06 AM	

+="CN90556"	"RP00945 - Transcription of Macallan 3D consisting of 294 x 3590 cartridges, Invoice: SYD-07/08-140"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	26180.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:06 AM	

+="CN90555"	"Furniture and Fittings."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Workstations and office packages"	12-Apr-08	12-Apr-08	11092.40	=""	="Commercial Images"	13-Jun-08 10:06 AM	

+="CN90557"	"IT Contractor Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	14-Nov-08	75000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90558"	"RP00953 - Transcription of Willem 3D MSS, Invoice no. 00005343"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	31255.40	="2006/3933"	="SpectrumData"	13-Jun-08 10:06 AM	

+="CN90559"	"IT Contractor Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	15-May-09	165000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90560"	"RP00952 - transcription of Tuskfish Seismic Survey, invoice: GDA-08-076 consisting of 1292 x 3590 cartridges"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-09	26235.88	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	13-Jun-08 10:06 AM	

+="CN90561"	"IT Contractors Services Paxus"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	12-May-08	15-May-09	165000.00	=""	="Paxus"	13-Jun-08 10:06 AM	

+="CN90562"	"Touchpaper Service Desk Analyst"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	70345.00	=""	="Touchpaper Australasia Pty Ltd T/As Helpdesk Solutions"	13-Jun-08 10:06 AM	

+="CN90564"	"Shipment of personel effects from Hyderabad to Canberra including insurance, quote dated : 28 April 2008 (Quotation Ref: EXP/HHG/1386/4-08). Container #: Rs 237970/-"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	09-May-08	30-Jun-08	10000.00	=""	="B R Shastry"	13-Jun-08 10:07 AM	

+="CN90566"	"OGC Membership Renewal 1 July 2008 to 30 June 2009"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-09	11547.34	=""	="Open Geospatial Consortium Inc"	13-Jun-08 10:07 AM	

+="CN90567"	"Software Purchase XSI"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software"	12-May-08	30-Jun-08	12166.00	=""	="XSI Data Solutions Pty Ltd"	13-Jun-08 10:07 AM	

+="CN90568"	"Weather Compliance analysis of ERS and SAR Data scenes. Quote dated May 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	16999.99	=""	="Image Analysis & Mapping Pty Ltd"	13-Jun-08 10:07 AM	

+="CN90569"	"Computer Servers Purchase Dell"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Computer servers"	12-May-08	30-Jun-08	49776.65	=""	="Dell Computer Limited"	13-Jun-08 10:07 AM	

+="CN90571"	"Funding of AGEG Tied Grant Projects"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	31-May-08	22000.00	=""	="University of Adelaide"	13-Jun-08 10:07 AM	

+="CN90572"	"Legal fees"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Legal services"	13-May-08	30-Jun-08	12804.00	=""	="Australian Government Solicitor"	13-Jun-08 10:07 AM	

+="CN90573"	"HP Maintenance and Support - 01 July 2008 to 30 June 2009"	="Geoscience Australia"	13-Jun-08	="Computer services"	12-May-08	30-Jun-09	16733.93	=""	="Hewlett Packard Australia Ltd"	13-Jun-08 10:07 AM	

+="CN90575"	"200 x Maxell Ultrium3 LTO Tapes and Cleaning Cartridges"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	12255.56	=""	="SpectrumData"	13-Jun-08 10:07 AM	

+="CN90576"	"IT Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	15-Mar-08	14-Mar-09	194480.00	=""	="Paxus"	13-Jun-08 10:07 AM	

+="CN90577"	"2 x Dell PowerEdge 295 Rack Mount Servers"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	34344.20	=""	="Dell Australia Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90578"	"Software Maintenance and Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	17-Apr-08	16-Apr-09	22000.00	=""	="Outback Imaging Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90579"	"Aboriginal Cultural Heritage Survey - Nukunu Peoples Council"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	13-May-08	31-May-08	14748.80	=""	="Nukunu Peoples Council Inc"	13-Jun-08 10:08 AM	

+="CN90580"	"Employment services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Personnel recruitment"	18-Apr-08	30-Jun-08	13750.00	=""	="Australian Public Service Commission"	13-Jun-08 10:08 AM	

+="CN90581"	"Electrical and Refurbishment"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Electrical services"	18-Feb-08	30-Jun-08	18810.00	=""	="Electrical Services Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90582"	"Central Arunta Gravity Survey"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	13-May-08	30-Jun-08	795357.31	=""	="Atlas Geophysics Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90583"	"Refurbishment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Refurbishing services"	18-Feb-08	30-Jun-08	99347.49	=""	="Electrical Services Pty Ltd"	13-Jun-08 10:08 AM	

+="CN90584"	"Whats New in ArcGIS II 20-22 May 2008 Quote 20006345 Grads"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	14-May-08	31-May-08	14170.20	=""	="ESRI Australia"	13-Jun-08 10:08 AM	

+="CN90585"	"It Contracting Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	19-May-08	14-Nov-08	93522.00	=""	="Paxus"	13-Jun-08 10:08 AM	

+="CN90586"	"Account (Voice Hardware )  115 5965 682 to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	14-May-08	30-Jun-08	21300.00	=""	="Telstra OTC Australia"	13-Jun-08 10:08 AM	

+="CN90588"	"Positions Vacant - The Melbourne Age  and The Australian"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	14-May-08	27-May-08	14635.21	=""	="HMA Blaze Pty Limited"	13-Jun-08 10:08 AM	

+="CN90570"	"Undertaking various AGAF assessments for SBR Authentication Project."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	30-Jun-08	90000.00	=""	="PricewaterhouseCoopers"	13-Jun-08 10:08 AM	

+="CN90589"	"Software Maintenance Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	20-Apr-08	19-Apr-09	63232.42	=""	="Technology One"	13-Jun-08 10:08 AM	

+="CN90590"	"In House Superworking Program in Canberra"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	14-May-08	27-May-08	42500.00	=""	="Qualia Learning Network P/L"	13-Jun-08 10:08 AM	

+="CN90591"	"It Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	20-Mar-08	19-Mar-09	205920.00	=""	="Paxus"	13-Jun-08 10:08 AM	

+="CN90592"	"100 x Re-conditioned Ericsson Charcoal 3213 handsets"	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	14-May-08	26-May-08	14500.00	=""	="N2 Communications Ltd"	13-Jun-08 10:08 AM	

+="CN90594"	"ENVI & IDL maintenance"	="Geoscience Australia"	13-Jun-08	="Software"	14-May-08	20-Apr-09	12754.05	=""	="ITT Visual Information Solutions"	13-Jun-08 10:09 AM	

+="CN90595"	"IT Contractor Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	23-Apr-08	22-Apr-09	178464.00	=""	="Paxus"	13-Jun-08 10:09 AM	

+="CN90596"	"Consultancy in relation to re-location of the Gescience Australia Map warehouse"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	28600.00	=""	="GHD Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90597"	"Employee Education"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Employee education"	23-Apr-08	30-Apr-09	10345.50	=""	="Locher and Associates"	13-Jun-08 10:09 AM	

+="CN90598"	"Professional Services for Remote Monitoring Communications Systems"	="Geoscience Australia"	13-Jun-08	="Business and corporate management consultation services"	15-May-08	30-Jun-08	10164.00	=""	="Bridge ICT Consultants"	13-Jun-08 10:09 AM	

+="CN90599"	"Software Subscription"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software"	23-May-08	22-May-09	26125.00	=""	="Attorney General's Department"	13-Jun-08 10:09 AM	

+="CN90600"	"1,061 Microsoft Windows Vista Business Listed Upg/SA Pack MVL w/MDOP"	="Geoscience Australia"	13-Jun-08	="Software"	15-May-08	30-Jun-08	252677.15	=""	="Dimension Data Australia Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90602"	"WP DC005,6,8  Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase. Deed # G1688D; Contract # G2405"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	15-May-08	31-Jul-08	66522.50	="RFTGA2008/1336"	="Terranean Mapping Technologies"	13-Jun-08 10:09 AM	

+="CN90604"	"WP DC007, WP DC009 Conversion & Translation of IGDS Data to the TLM50 GISD Geodatabase. Deed # G1683D; Contract # G2406"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	15-May-08	31-Jul-08	23839.20	="RFTGA2008/1336"	="Photo Mapping Services Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90605"	"IT Consultant Services"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	28-Apr-08	09-May-08	16912.50	=""	="Oxford Funding Pty Ltd t/as"	13-Jun-08 10:09 AM	

+="CN90606"	"Spare parts for ICPMS"	="Geoscience Australia"	13-Jun-08	="Computer services"	15-May-08	30-Jun-08	22147.40	=""	="Agilent Technologies Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90607"	"Oracle - License and Support"	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Software maintenance and support"	28-Apr-08	27-Apr-09	160854.57	=""	="Oracle Corporation"	13-Jun-08 10:09 AM	

+="CN90608"	"VSAT satellite equipment for Rabaul and Manus Island."	="Geoscience Australia"	13-Jun-08	="Tools and General Machinery"	16-May-08	30-Jun-08	13107.60	=""	="Australian Satellite Communications Pty Ltd"	13-Jun-08 10:09 AM	

+="CN90609"	"Legal Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Legal services"	28-Feb-08	12-Apr-08	12314.39	=""	="Harris Freidman Hyde Page Lawyers"	13-Jun-08 10:10 AM	

+="CN90610"	"Oracle Programs Licence and Support Fees"	="Geoscience Australia"	13-Jun-08	="Software"	16-May-08	29-May-08	117166.26	=""	="Oracle Corporation"	13-Jun-08 10:10 AM	

+="CN90611"	"Recruitment Services."	="Insolvency and Trustee Service Australia (ITSA)"	13-Jun-08	="Temporary personnel services"	31-Mar-08	31-Dec-08	10897.58	=""	="Cantlie Recruitment Services"	13-Jun-08 10:10 AM	

+="CN90612"	"Labtrobe Valley cosmogenic radionuclide dating"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	31-Jul-09	25190.00	=""	="Australian National University"	13-Jun-08 10:10 AM	

+="CN90613"	"Wind Damage Scenario Development for a Western Sydney House CMCG2347"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	30-Jun-08	34100.00	=""	="James Cook Uni Nth Queensland"	13-Jun-08 10:10 AM	

+="CN90614"	"Geopatial analyst - 14 April to 30 June 2008"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	16-May-08	30-Jun-08	39600.00	=""	="Finite Recruitment Pty Ltd"	13-Jun-08 10:10 AM	

+="CN90615"	"Legal Advice for Seismic Surveys"	="Geoscience Australia"	13-Jun-08	="Legal services"	19-May-08	30-Jun-08	11000.00	=""	="Minter Ellison Lawyers (Adelaide)"	13-Jun-08 10:10 AM	

+="CN90616"	"Supply of 35 x 80Ah Gel-Tech 12V Batteries (Model 8G24) including shipping to Adelaide"	="Geoscience Australia"	13-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	31-May-08	12100.00	=""	="Solar Online Australia"	13-Jun-08 10:10 AM	

+="CN90617"	"Timescale-Creator Pro training and development contract (CMC: G2392)"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	20-May-08	30-Jun-08	25000.00	=""	="James Ogg"	13-Jun-08 10:10 AM	

+="CN90618"	"GRAMS8 Upgrade licence"	="Geoscience Australia"	13-Jun-08	="Software"	20-May-08	29-May-08	10258.97	=""	="Seismic Micro - Technology Inc. SMT"	13-Jun-08 10:11 AM	

+="CN90619"	"Adnyamathanha Work Program Clearance of the Lake Frome (Curnamona) seismic line."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-May-08	14400.00	=""	="Miln Walker & Associates Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90620"	"Cultural Heritage Survey and report of the Lake Frome (Curnamona) seismic line."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-May-08	21166.50	=""	="Miln Walker & Associates Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90621"	"Transcription PER0108 - HJ9 MSS, invoice no: PER-07/08-126"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	31-Aug-08	11693.00	="2006-3933"	="Phoenix Data Services Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90622"	"Defence to GA Database transfer tool (invoice # 00007202);  Defence to GA Database transfer tool Development Box  (invoice # 00007203);  CMC #: G2315"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	21-May-08	30-Jun-08	17160.00	=""	="Spatial Vision Innovations Pty Ltd"	13-Jun-08 10:11 AM	

+="CN90623"	"OYO GS636-2 Thermal Plotter"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	21-May-08	04-Jun-08	50174.30	=""	="Seismic Asia Pacific"	13-Jun-08 10:11 AM	

+="CN90624"	"Demolition and construction works for a new office in G.049A Tsunami Area"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	21-May-08	30-Jun-08	14520.00	=""	="Skilled Group Limited"	13-Jun-08 10:11 AM	

+="CN90625"	"Oracle Learning Credits May 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	21-May-08	30-Jun-08	40480.00	=""	="Atlas Business Services A/T/F ABS Trust"	13-Jun-08 10:11 AM	

+="CN90626"	"Construction of a new office G.070 for the security Coordination Unit as per Work Order SB113168"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	22-May-08	30-Jun-08	15345.00	=""	="Skilled Group Limited"	13-Jun-08 10:12 AM	

+="CN90627"	"BERT Version 7.0 upgrade"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	22-May-08	05-Jun-08	22000.00	=""	="Isidore IT Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90628"	"Pyschometric testing of Grads 2008"	="Geoscience Australia"	13-Jun-08	="Personnel recruitment"	22-May-08	04-Jun-08	22000.00	=""	="SHL Australia Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90629"	"WP # 1078 (NSW LPI Transportation # 4A) Unit names Tottenham, Hay.  Deed # 1688D; Contract # G 2412"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	22-May-08	31-Jul-08	155188.11	=""	="Terranean Mapping Technologies"	13-Jun-08 10:12 AM	

+="CN90631"	"Robotics_First stage payment (80%) for new Hardware after acceptance at contractor holding facility (June 2008)"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	22-May-08	31-Dec-08	1156595.00	="RFT2006/3068"	="Tardis Services Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90632"	"Marine Recon survey-Prepatory work for survey including planning, agreement of voyage plans, travel undertaken by RF Forschungsschiffahrt staff to meet GA and discuss the arrangments for voyage, booking port visits, secure the vessel"	="Geoscience Australia"	13-Jun-08	="Transportation and Storage and Mail Services"	22-May-08	30-Jun-09	5300000.00	="2006/3598"	="R F Forschungsschiffahrt Gmbh"	13-Jun-08 10:12 AM	

+="CN90633"	"Aboriginal Cultural Heritage Survey for proposed seismic survey - Lake Giles to Pinkawillinie"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	26-May-08	30-Jun-08	21883.37	=""	="Australian Cultural Heritage Management Pty Ltd"	13-Jun-08 10:12 AM	

+="CN90634"	"Support for promotion of 34th International Geological Congress, 2012."	="Geoscience Australia"	13-Jun-08	="Meeting facilities"	26-May-08	31-May-08	98000.00	=""	="Australian Geoscience Council"	13-Jun-08 10:13 AM	

+="CN90635"	"BERT annual licence and support fee for period 1st April 08 to 31st March 09 as per tax invoice no 176"	="Geoscience Australia"	13-Jun-08	="Software"	26-May-08	31-Mar-09	11000.00	=""	="Isidore IT Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90636"	"Contract execution payment (June 2008) - CS#:0708/323"	="Geoscience Australia"	13-Jun-08	="Computer Equipment and Accessories"	26-May-08	31-Dec-08	481391.90	="RFT2006/3068"	="IBM Australia Ltd"	13-Jun-08 10:13 AM	

+="CN90637"	"Legal Services for IP Policy Advice  May 2008"	="Geoscience Australia"	13-Jun-08	="Legal services"	26-May-08	30-Jun-08	19250.00	="2005/2115"	="Australian Government Solicitor"	13-Jun-08 10:13 AM	

+="CN90638"	"Cost of accommodation and meals for GA at Mt Gordaon mine shaft."	="Geoscience Australia"	13-Jun-08	="Hotels and lodging and meeting facilities"	27-May-08	31-Jul-08	14080.00	=""	="Birla Mt Gordon Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90639"	"RP Kingfish 3D - 478 x 3590 cartridges, invoice no. 00005405"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	27-May-08	31-Aug-08	20014.50	="2006/3933"	="SpectrumData"	13-Jun-08 10:13 AM	

+="CN90640"	"Certificate of Sea Saftey Training 13-19 may 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	27-May-08	30-Jun-08	18000.00	=""	="AMC Search Ltd"	13-Jun-08 10:13 AM	

+="CN90641"	"Aboriginal Cultural Heritage Assessment for GA Seismic Survey - Arrowie Line"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-08	12650.00	=""	="Australian Cultural Heritage Management Pty Ltd"	13-Jun-08 10:13 AM	

+="CN90642"	"Further Development of SHRIMP Data Reduction Application Manual"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-08	32000.00	=""	="Dr Kenneth Ludwig"	13-Jun-08 10:14 AM	

+="CN90643"	"Contract CMC#G2322 Technical advice on geophysical data interpretation over Capel and Faust area."	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	28-May-08	30-Jun-09	47756.50	=""	="RPS Energy Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90644"	"Sm-Nd isotope analyses and preparation of rock powders - 23 samples."	="Geoscience Australia"	13-Jun-08	="Professional engineering services"	29-May-08	31-May-08	11132.00	=""	="University of Melbourne"	13-Jun-08 10:14 AM	

+="CN90645"	"Terrex - North Queensland Regional MT Survey - Interpretation invoice"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	29-May-08	30-Jun-08	25300.00	=""	="Quantec Geoscience Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90646"	"PDAC 2008 booth design & construction, networking event & Geojag travel in Canada."	="Geoscience Australia"	13-Jun-08	="Meeting facilities"	29-May-08	30-Jun-08	32160.78	=""	="GeoJAG Australia"	13-Jun-08 10:14 AM	

+="CN90647"	"Reproduction and shipment of ALOS data plus direct transmission of ALOS data for the 4th quarter of 2007 and the 1st and 2nd quarters of 2008."	="Geoscience Australia"	13-Jun-08	="Telecommunications media services"	29-May-08	30-Jun-08	36000.00	=""	="Remote Sensing Technology Center Of Japan"	13-Jun-08 10:14 AM	

+="CN90648"	"Ground Penetrating Radar Surveys near Mildura, Victoria"	="Geoscience Australia"	13-Jun-08	="Temporary personnel services"	29-May-08	06-Jun-08	28820.00	=""	="Ecophyte Technologies Pty Ltd"	13-Jun-08 10:14 AM	

+="CN90649"	"Seismic Vault Additions and Modifications by ELLCON, Steve& John Fencing & Network as per Work order SB113170"	="Geoscience Australia"	13-Jun-08	="Real estate management services"	29-May-08	30-Jun-08	38472.50	=""	="Skilled Group Limited"	13-Jun-08 10:14 AM	

+="CN90650"	"Certificate of Sea Saftey Training 13-19 may 2008"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	30-Jun-08	28416.00	=""	="AMC Search Ltd"	13-Jun-08 10:15 AM	

+="CN90652"	"Various ESRI training courses"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	31-May-08	19690.00	=""	="ESRI Australia"	13-Jun-08 10:15 AM	

+="CN90653"	"Training course fees"	="Geoscience Australia"	13-Jun-08	="Education and Training Services"	30-May-08	31-Aug-08	46409.00	=""	="ESRI Australia"	13-Jun-08 10:15 AM	

+="CN90651"	"Undertaking AGAF assessments for ABS for SBR Authentication Project."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-08	27500.00	=""	="PricewaterhouseCoopers"	13-Jun-08 10:19 AM	

+="CN90654"	"Provision of services in relation to project support services"	="Australian Federal Police"	13-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	89117.60	=""	="Diversiti Pty Ltd"	13-Jun-08 10:33 AM	

+="CN90656"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Jun-08	10-Oct-08	12789.99	=""	="Land Rover AUSTRALIA"	13-Jun-08 10:37 AM	

+="CN90658"	"FORM PRINTED: EE209, SERVICEABLE TECHNICAL EQUIPMENT BOARD, RE-INFORCED EYELET ON LEFT 10CM FROM EDGE; 328FSM. QTY 300,000"	="Defence Materiel Organisation"	13-Jun-08	="Examination booklets or forms"	10-Jun-08	02-Sep-08	42372.00	="RFQ 2680172"	="PARAGON PRINTERS AUSTRALASIA"	13-Jun-08 10:55 AM	

+="CN90659"	"For the provision of risk management workshops"	="Comsuper"	13-Jun-08	="Workshops"	19-May-08	30-Jun-08	25000.00	=""	="Protiviti Independent Risk Consulting"	13-Jun-08 11:02 AM	

+="CN90660"	"Provision for an Accountant"	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	30-Sep-08	70785.00	=""	="Maximus Solutions Australia"	13-Jun-08 11:05 AM	

+="CN90661-A1"	" Provision for System tester "	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	18-Jul-08	12584.00	=""	="Paxus Australia"	13-Jun-08 11:09 AM	

+="CN90664"	"SEALING COMPOUND"	="Defence Materiel Organisation"	13-Jun-08	="Adhesives and sealants"	13-Jun-08	10-Aug-08	22359.35	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	13-Jun-08 11:20 AM	

+="CN90665"	"FOG GENERATOR, INSECTICIDAL MANUALLY CARRIED, THERMAL AEROSOL PULSE TYPE, 0-34 L/HR.  SUPERHAWK MILITARY KIT DF2605A. QTY 20."	="Defence Materiel Organisation"	13-Jun-08	="Fog or mist generators"	11-Jun-08	08-Sep-08	55176.00	=""	="GLOBE AUSTRALIA"	13-Jun-08 11:23 AM	

+="CN90667"	"Provision for System tester"	="Comsuper"	13-Jun-08	="Human resources services"	01-Jul-08	27-Sep-08	45188.00	=""	="Paxus Australia"	13-Jun-08 11:27 AM	

+="CN90668"	"Provision for System Tester"	="Comsuper"	13-Jun-08	="Human resources services"	09-Jun-08	08-Sep-08	40300.00	=""	="Macro Recruitment"	13-Jun-08 11:31 AM	

+="CN90669"	"Provision for IBM recovery support services"	="Comsuper"	13-Jun-08	="Software"	18-May-08	17-May-09	29100.00	=""	="Synergy Plus"	13-Jun-08 11:36 AM	

+="CN90676"	"Provicion of software for the fax gateway upgrade"	="Comsuper"	13-Jun-08	="Software"	18-Apr-08	30-May-08	16011.03	=""	="Network Help Pty Ltd"	13-Jun-08 11:40 AM	

+="CN90670"	"CLOTH BURLAP, JUTE, HESSIAN 305GM, 102CM WIDE. QTY 176,000 METRES."	="Defence Materiel Organisation"	13-Jun-08	="Fabrics and leather materials"	11-Jun-08	11-Jul-08	75310.40	="RFQ G8566"	="ASSOCIATED PACKAGING AUSTRALIA"	13-Jun-08 11:46 AM	

+="CN90677-A1"	"Report for the development of an AFP risk management database tool"	="Australian Federal Police"	13-Jun-08	="Management advisory services"	12-Jun-08	25-Jun-08	14400.00	="06/16740"	="Analytics Group Pty Ltd"	13-Jun-08 11:59 AM	

+="CN90678"	"S70B Aircraft Spares"	="Defence Materiel Organisation"	13-Jun-08	="Aircraft"	13-Jun-08	05-Nov-08	11880.00	=""	="Asia Pacific Aerospace"	13-Jun-08 12:48 PM	

+="CN90680"	"Artwork - FMC, Level 12, Melbourne"	="Federal Magistrates Court"	13-Jun-08	="Paintings"	01-May-08	31-May-08	11402.00	=""	="Aboriginal Art Online"	13-Jun-08 01:16 PM	

+="CN90679"	"ALPHA HELMETS"	="Defence Materiel Organisation"	13-Jun-08	="Head or face protective helmets or devices or accessories for the physically challenged"	13-Jun-08	12-Sep-08	58638.09	=""	="SARQUIP INTERNATIONAL"	13-Jun-08 01:17 PM	

+="CN90681"	"Commercial Photography Services - FMC Brisbane"	="Federal Magistrates Court"	13-Jun-08	="Photographers and cinematographers"	01-May-08	31-May-08	11160.00	=""	="Artist Photographer"	13-Jun-08 01:23 PM	

+="CN90683"	"Recover costs Rental, Outgoings, Car Parking - February, March & April 2008"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	302737.33	=""	="Attorney Generals Department - NSW"	13-Jun-08 01:31 PM	

+="CN90684"	"Taxi & Cabcharges"	="Federal Magistrates Court"	13-Jun-08	="Taxicab services"	01-May-08	31-May-08	16207.03	=""	="Cabcharge Australia Limited"	13-Jun-08 01:34 PM	

+="CN90685"	"Packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	25173.50	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 01:36 PM	

+="CN90686"	"Recover Costs Rental, Outgoings, Car Parking - May 2008"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	14982.12	=""	="Charter Hall Limited - Savills"	13-Jun-08 01:38 PM	

+="CN90687"	"Security Monitoring"	="Federal Magistrates Court"	13-Jun-08	="Security surveillance and detection"	01-May-08	31-May-08	17400.94	=""	="Chubb Protective Services"	13-Jun-08 01:43 PM	

+="CN90688"	"Office Reburbishment FMC JMT"	="Federal Magistrates Court"	13-Jun-08	="Carpentry"	01-May-08	31-May-08	16445.00	=""	="Claremont Joinery"	13-Jun-08 01:48 PM	

+="CN90689"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	13-Jun-08	="Stationery"	01-May-08	31-May-08	23215.58	=""	="Corporate Express Australia"	13-Jun-08 01:55 PM	

+="CN90690"	"Auditing Processes"	="Federal Magistrates Court"	13-Jun-08	="Government auditing services"	01-May-08	31-May-08	20355.50	=""	="Deloitte Touche Tohmatsu"	13-Jun-08 01:59 PM	

+="CN90692"	" Consulting Services for Federal Magistrates Court "	="Federal Magistrates Court"	13-Jun-08	="Organisational structure consultation"	01-May-08	31-May-08	27794.61	=""	="Des Semple & Associates"	13-Jun-08 02:05 PM	

+="CN90693-A2"	" VEHICLE REPAIRS "	="Department of Defence"	13-Jun-08	="Motor vehicles"	26-May-08	26-Jun-08	38344.63	=""	="FB AUTOS"	13-Jun-08 02:08 PM	

+="CN90694"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	13-Jun-08	="Temporary legal staffing needs"	01-May-08	31-May-08	25684.57	=""	="Drake Australia Pty Ltd"	13-Jun-08 02:08 PM	

+="CN90695-A1"	"VEHICLE REPAIRS"	="Department of Defence"	13-Jun-08	="Motor vehicles"	20-May-08	20-Jun-08	27941.65	=""	="MACK AUSTRALIA"	13-Jun-08 02:11 PM	

+="CN90696"	"Supply and Install Floor Coverings"	="Federal Magistrates Court"	13-Jun-08	="Floor coverings"	01-May-08	31-May-08	21784.40	=""	="Future Floor Services NSW Pty Ltd"	13-Jun-08 02:12 PM	

+="CN90697-A2"	"VEHICLE REPAIRS"	="Department of Defence"	13-Jun-08	="Motor vehicles"	13-May-08	13-Jun-08	38747.89	=""	="FB AUTOS"	13-Jun-08 02:14 PM	

+="CN90698"	"Office Refurbishment FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	160259.00	=""	="Graham J Deane Building Pty Ltd"	13-Jun-08 02:18 PM	

+="CN90700"	"Motor Vehicle Spare Parts"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	27-Jun-08	14859.07	=""	="Volvo Commericial Vehicles"	13-Jun-08 02:19 PM	

+="CN90699"	"Motor Vehicle Spare Parts"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	27-Jun-08	11796.43	=""	="Volvo Commericial Vehicles"	13-Jun-08 02:23 PM	

+="CN90701"	"Design & Engineering Consultancy Services - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Professional engineering services"	01-May-08	31-May-08	12165.56	=""	="Group GSA Pty Ltd"	13-Jun-08 02:24 PM	

+="CN90703"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	89342.00	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:37 PM	

+="CN90704"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	26-May-08	26-May-08	63045.95	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:43 PM	

+="CN90705"	"packaging"	="Royal Australian Mint"	13-Jun-08	="Packaging materials"	27-May-08	28-May-08	82181.00	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Jun-08 02:50 PM	

+="CN90706"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	13429.82	=""	="Mercedes Benz Aust"	13-Jun-08 02:54 PM	

+="CN90707"	"website maintenance"	="Royal Australian Mint"	13-Jun-08	="World wide web WWW site design services"	28-May-08	28-May-08	11747.01	=""	="VIRTUOSO MEDIA"	13-Jun-08 02:56 PM	

+="CN90708"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	25636.63	=""	="Mercedes Benz Aust"	13-Jun-08 02:57 PM	

+="CN90709"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	32285.52	=""	="Harvey Consultancy - Report Writer"	13-Jun-08 02:58 PM	

+="CN90711"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	13-Jun-08	="Temporary clerical or administrative assistance"	01-May-08	31-May-08	13028.88	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	13-Jun-08 03:02 PM	

+="CN90712"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	21868.73	=""	="Mercedes Benz Aust"	13-Jun-08 03:03 PM	

+="CN90710"	"MOU Charges March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Business administration services"	01-Mar-08	31-Mar-08	56216.60	=""	="DEPARTMENT OF EMPLOYMENT, EDUCATION & WORKPLACE RELATIONS"	13-Jun-08 03:03 PM	

+="CN90713-A4"	"Lease at Strathpine, Queensland."	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	14-Sep-08	30-Jun-15	5368832.03	=""	="The Rohlf Trust ATF for Winona Holding"	13-Jun-08 03:07 PM	

+="CN90714"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Jun-08	26-Jun-08	14977.05	=""	="Mercedes Benz Aust"	13-Jun-08 03:07 PM	

+="CN90715"	"Provision for Analyst Programer"	="Comsuper"	13-Jun-08	="Human resources services"	21-May-08	18-Feb-09	163020.00	=""	="M&T Resources"	13-Jun-08 03:08 PM	

+="CN90717"	" Office Refurbishment FMC JMT Level 12 "	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	13215.95	=""	="Interior Development Pty Ltd"	13-Jun-08 03:08 PM	

+="CN90718"	" upgrad of trim to V6.2 "	="Royal Australian Mint"	13-Jun-08	="Software"	30-May-08	30-May-08	24343.00	=""	="VIRTUOSO MEDIA"	13-Jun-08 03:09 PM	

+="CN90719"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	13-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	11-Jun-08	25-Jun-08	13251.81	=""	="Mercedes Benz Aust"	13-Jun-08 03:12 PM	

+="CN90720"	"Legal Publications"	="Federal Magistrates Court"	13-Jun-08	="Printed publications"	01-May-08	31-May-08	33110.00	=""	="International Professional Publications"	13-Jun-08 03:13 PM	

+="CN90721"	"Property Charges for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Mar-08	31-Mar-08	39491.57	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	13-Jun-08 03:16 PM	

+="CN90722"	" Cabing Services - FMC Newcastle "	="Federal Magistrates Court"	13-Jun-08	="Electrical cable and accessories"	01-May-08	31-May-08	27739.25	=""	="Intravision Pty Ltd"	13-Jun-08 03:23 PM	

+="CN90723"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	14526.40	=""	="Jay Manya"	13-Jun-08 03:27 PM	

+="CN90725"	"Recover Costs Rental, Outgoings, Car Parking FMC Macquarie St, Sydney"	="Federal Magistrates Court"	13-Jun-08	="Commercial or industrial facility rental"	01-May-08	31-May-08	20547.54	=""	="Law Courts Limited - United Group Services"	13-Jun-08 03:32 PM	

+="CN90724"	"Property Charges for December 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Dec-07	31-Dec-07	37094.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT AND WORKPLACE RELATIONS"	13-Jun-08 03:33 PM	

+="CN90726-A2"	"Lease at Busselton WA"	="Centrelink"	13-Jun-08	="Real estate services"	07-Sep-01	06-Jun-10	586278.86	=""	="Mark Hay Asset Management"	13-Jun-08 03:34 PM	

+="CN90727-A1"	"Development & pilot od a diagnostic tool for attendance & productivity improvement project."	="Australian Taxation Office"	13-Jun-08	="Scientific or research satellites"	19-May-08	19-Dec-08	23500.00	=""	="Orima Research Pty Ltd"	13-Jun-08 03:35 PM	

+="CN90728"	"Property Charges for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Feb-08	29-Feb-08	36499.15	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	13-Jun-08 03:42 PM	

+="CN90729"	"Vehicle Leases"	="Federal Magistrates Court"	13-Jun-08	="Vehicle rental"	01-May-08	31-May-08	84845.96	=""	="Lease Plan"	13-Jun-08 03:45 PM	

+="CN90730-A4"	" Lease at Mandurah, WA "	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	08-Jan-01	31-Jul-14	4162873.13	=""	="David Roy Stewart"	13-Jun-08 03:47 PM	

+="CN90731"	"Night Aiming Device Spares"	="Defence Materiel Organisation"	13-Jun-08	="Surveillance and detection equipment"	12-Jun-08	04-Sep-08	28174.30	=""	="BAE Systems Australia Ltd"	13-Jun-08 03:52 PM	

+="CN90732"	"Furniture - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Office furniture"	01-May-08	31-May-08	17025.25	=""	="Living Edge Group Pty Ltd"	13-Jun-08 03:52 PM	

+="CN90733"	"Property Charges for January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Property management services"	01-Jan-08	31-Jan-08	36474.88	=""	="DEPARTMENT OF EMPLOYMENT, EDUCATION & WORKPLACE RELATIONS"	13-Jun-08 03:53 PM	

+="CN90734-A2"	"Lease at Bairnsdale VIC"	="Department of Human Services"	13-Jun-08	="Real estate services"	21-Mar-05	20-Mar-12	1734729.33	=""	="Stirloch Developments Pty Ltd"	13-Jun-08 03:54 PM	

+="CN90735"	"Provision of brand advice, development of standards and facilitation of a brand standards workshop."	="Australian Taxation Office"	13-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	11-Aug-08	41910.00	=""	="Principals Pty Ltd"	13-Jun-08 03:54 PM	

+="CN90736"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	13-Jun-08	="Transcribing services"	01-May-08	31-May-08	92892.54	=""	="National Transcription Services Pty Ltd"	13-Jun-08 03:56 PM	

+="CN90737"	"lease at Garbutt, QLD"	="Department of Human Services"	13-Jun-08	="Lease and rental of property or building"	05-May-03	04-May-13	3120795.00	=""	="Landel Pty Ltd"	13-Jun-08 03:57 PM	

+="CN90738-A4"	" Lease at Browns Plains QLD "	="Department of Human Services"	13-Jun-08	="Real estate services"	01-Dec-01	30-Nov-11	3208709.34	=""	="The Trustee for Stephen Family Trust"	13-Jun-08 03:58 PM	

+="CN90739"	"Consulting Services for BA Services to Streamline Judgement Process"	="Federal Magistrates Court"	13-Jun-08	="Business and corporate management consultation services"	01-May-08	31-May-08	17380.00	=""	="Oakton Services Pty Ltd"	13-Jun-08 04:01 PM	

+="CN90740-A1"	"Multiservices Data Test Solution (Hardware and Software)"	="Australian Federal Police"	13-Jun-08	="Computer services"	02-Jun-08	02-Jun-11	143169.71	="RFT 3-2008"	="Optus Networks Pty Ltd"	13-Jun-08 04:02 PM	

+="CN90741"	" BRASSIERE "	="Department of Defence"	13-Jun-08	="Brassieres"	13-Jun-08	27-Jun-08	10169.60	=""	="THE BERLEI GROUP"	13-Jun-08 04:05 PM	

+="CN90742"	"Interpreting Services"	="Federal Magistrates Court"	13-Jun-08	="Interpreters"	01-May-08	31-May-08	12636.25	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	13-Jun-08 04:05 PM	

+="CN90743"	"MOU Charges January 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	13-Jun-08	="Business administration services"	01-Jan-08	31-Jan-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT AND WORKPLACE RELATIONS"	13-Jun-08 04:08 PM	

+="CN90745"	"Lease at Armadale WA"	="Centrelink"	13-Jun-08	="Real estate services"	06-Jul-01	05-Jul-08	1041600.00	=""	="Bryan Earnest Cousins And Ronald Arnold Doubikin"	13-Jun-08 04:19 PM	

+="CN90746"	"FOG GENERATOR, INSECTICIDAL MANUALLY CARRIED, THERMAL AEROSOL PULSE TYPE, 0-34 L/HR.  SUPERHAWK MILITARY KIT DF2605A. QTY 5."	="Defence Materiel Organisation"	13-Jun-08	="Fog or mist generators"	05-May-08	04-Jun-08	13794.00	=""	="GLOBE AUSTRALIA"	13-Jun-08 04:20 PM	

+="CN90748"	"Consulting Services - Family Report"	="Federal Magistrates Court"	13-Jun-08	="Court reporting services"	01-May-08	31-May-08	25412.54	=""	="Paris Consultancy Pty Ltd"	13-Jun-08 04:24 PM	

+="CN90749"	" Filing Cabinets "	="Federal Magistrates Court"	13-Jun-08	="Shelving and storage"	01-May-08	31-May-08	11433.74	=""	="Planex Sales Pty Ltd"	13-Jun-08 04:31 PM	

+="CN90750"	"Airfares"	="Federal Magistrates Court"	13-Jun-08	="Commercial aeroplane travel"	01-May-08	31-May-08	169363.18	=""	="Qantas - QAEBTA"	13-Jun-08 04:35 PM	

+="CN90751-A3"	" Leasing of Computer equipment "	="Office of the Director of Public Prosecutions"	13-Jun-08	="Computer Equipment and Accessories"	01-Jun-08	31-Dec-11	2693954.73	=""	="HP Financial Services (Australia) Pty Ltd"	13-Jun-08 04:40 PM	

+="CN90752"	"Temp Staff - Federal Magistrates Court, Melbourne"	="Federal Magistrates Court"	13-Jun-08	="Temporary clerical or administrative assistance"	01-May-08	31-May-08	12557.98	=""	="Robert Half Australia"	13-Jun-08 04:44 PM	

+="CN90753"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	13-Jun-08	="Transcribing services"	01-May-08	31-May-08	41551.42	=""	="Spark & Cannon Australasia Pty Ltd"	13-Jun-08 04:50 PM	

+="CN90754"	" Office Refurbishment FMC "	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	52554.94	=""	="Spotless P&F Pty Ltd"	13-Jun-08 04:54 PM	

+="CN90755-A1"	" Lease at Maitland, NSW "	="Department of Human Services"	13-Jun-08	="Real estate services"	04-Mar-02	03-Mar-12	2560224.09	=""	="UHM Units Trust"	13-Jun-08 04:55 PM	

+="CN90756"	"Purchase of Litigation Support System"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Software"	14-Mar-08	14-May-08	13200.00	=""	="CCH Workflow Solutions"	13-Jun-08 04:56 PM	

+="CN90757"	"Furniture - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Office furniture"	01-May-08	31-May-08	13626.95	=""	="Stylecraft Australia"	13-Jun-08 04:58 PM	

+="CN90759"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	13-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	31-May-08	23407.55	=""	="Telstra Corporation Limited"	13-Jun-08 05:01 PM	

+="CN90758"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	23-Apr-08	30-Jun-08	24877.16	=""	="PREMIER AUTOMOTIVE GROUP"	13-Jun-08 05:01 PM	

+="CN90760"	"Magazines & Subscriptions"	="Federal Magistrates Court"	13-Jun-08	="Legal Research Services"	01-May-08	31-May-08	40397.23	=""	="Thomson Legal & Regulatory Group"	13-Jun-08 05:04 PM	

+="CN90763"	"SUPPLY OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	24-Apr-08	30-Jun-08	15212.63	=""	="VOLVO COMMERCIAL VEHICLES"	13-Jun-08 05:06 PM	

+="CN90764"	"Office Refurbishment - FMC Newcastle"	="Federal Magistrates Court"	13-Jun-08	="Refurbishing services"	01-May-08	31-May-08	24455.20	=""	="Zenith Interiors (NSW) Pty Ltd"	13-Jun-08 05:07 PM	

+="CN90765-A2"	" On-Line Recruitment Tool "	="Office of the Director of Public Prosecutions"	13-Jun-08	="Software"	30-Apr-08	31-Oct-11	63064.57	=""	="NGA.net"	13-Jun-08 05:08 PM	

+="CN90766"	"supply of batteries"	="Defence Materiel Organisation"	13-Jun-08	="Batteries and generators and kinetic power transmission"	24-Apr-08	30-Jun-08	11502.48	=""	="EXIDE TECHNOLOGIES PTY LTD"	13-Jun-08 05:14 PM	

+="CN90767"	"supply of vehicle repair parts"	="Defence Materiel Organisation"	13-Jun-08	="Motor vehicles"	23-Apr-08	30-Jun-08	30552.12	=""	="MERCEDES-BENZ"	13-Jun-08 05:18 PM	

+="CN90768"	"Head Contract Fitout Project - Canberra"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Building construction and support and maintenance and repair services"	15-May-08	01-Jul-08	394724.00	=""	="SMI Fitout Pty Ltd"	13-Jun-08 05:28 PM	

+="CN90769"	"Temporary Staff - WA"	="Office of the Director of Public Prosecutions"	13-Jun-08	="Human resources services"	12-May-08	30-Aug-08	20800.00	=""	="Porter Consulting Group"	13-Jun-08 05:45 PM 

--- /dev/null
+++ b/admin/partialdata/13Mar2008to17Mar2008valto.xls
@@ -1,1 +1,681 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN65176"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR G/BOX ASSY."	="Defence Materiel Organisation"	13-Mar-08	="Military rotary wing aircraft"	13-Mar-08	31-Mar-08	87186.57	=""	="SAAL"	13-Mar-08 08:26 AM	

+="CN65177"	"Professional Services"	="Australian Office of Financial Management"	13-Mar-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Apr-11	62500.00	=""	="Mr. P Warne"	13-Mar-08 09:14 AM	

+="CN65180"	"Provision of Training and Technical Writing Services for the National Pollutant Inventory"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	11-Oct-07	25-Oct-07	15510.00	="0708-452"	="Air Charter Network"	13-Mar-08 09:33 AM	

+="CN65181-A1"	"Audit of Portable and Attractive Asset Management by ACT Policing"	="Australian Federal Police"	13-Mar-08	="Audit services"	11-Mar-08	30-Jun-08	13200.00	="Jan-05"	="PriceWaterhouseCoopers"	13-Mar-08 09:40 AM	

+="CN65183"	"To obtain a professional service for preparing a publication on the History of the Development of Australian Democracy."	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Writing and translations"	11-Oct-07	30-Dec-07	36000.00	="0607-284"	="John Hirst"	13-Mar-08 09:41 AM	

+="CN65185"	" Bush Guides,Shipping and Storage Container and Piston "	="Defence Materiel Organisation"	13-Mar-08	="Electronic Components and Supplies"	13-Mar-08	28-May-08	40744.00	="RFQ-C7119"	="CLARK MASTS ASIA PACIFIC P/L"	13-Mar-08 09:45 AM	

+="CN65184"	"Facilitation service for the National Heritage Place Manager's Forum"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	26-Oct-07	14000.00	="0708-429"	="Mary Dickie Issues Management Pty Ltd T/A Quay Connection"	13-Mar-08 09:45 AM	

+="CN65186-A1"	"Internal Audit of IDG Knowledge Management"	="Australian Federal Police"	13-Mar-08	="Audit services"	17-Mar-08	30-Sep-08	33000.00	="01-2005"	="KPMG"	13-Mar-08 09:52 AM	

+="CN65187"	"Provision of Accounting and Financial Services"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	50000.00	="0708-178"	="Total Decision Support Pty Ltd"	13-Mar-08 09:55 AM	

+="CN65189-A2"	"Internal Audit of IDG procurement & Contracting"	="Australian Federal Police"	13-Mar-08	="Audit services"	17-Mar-08	30-Jun-08	40040.00	="01-2005"	="KPMG"	13-Mar-08 10:01 AM	

+="CN65188"	"Development and Training Services to Enhance the Departments Project Server Implementation"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Computer services"	12-Oct-07	30-Jun-08	75000.00	="0708-287"	="Strategic Data Management PTY LTD"	13-Mar-08 10:07 AM	

+="CN65191"	"Blackberry Charges August 2007"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Oct-07	31-Oct-07	15017.73	="0708-405"	="Telstra Corporation Limited"	13-Mar-08 10:10 AM	

+="CN65192"	"Construction Management works Ringwood fitout"	="Centrelink"	13-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	13-Apr-08	273768.00	=""	="Pirotta Services Pty Ltd"	13-Mar-08 10:11 AM	

+="CN65193"	"Blackberry Charges Sept 2007"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Oct-07	31-Oct-07	17189.66	="0708-406"	="Telstra Corporation Limited"	13-Mar-08 10:13 AM	

+="CN65195"	"Evaluation of Australian Opportunities for more water efficient toilets"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	15-Oct-07	31-Dec-07	53333.50	="0708-076"	="University of Technology Sydney"	13-Mar-08 10:18 AM	

+="CN65196"	"Development of  Administration System Services for On-line applications for the Hot Water Rebate Program"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	31-Oct-07	49500.00	="0708-481"	="Toldark Pty Ltd"	13-Mar-08 10:22 AM	

+="CN65197"	" Forms Printed, Operational - Various items. "	="Defence Materiel Organisation"	13-Mar-08	="Examination booklets or forms"	28-Nov-07	22-Dec-07	11417.01	=""	="Canprint Communications"	13-Mar-08 10:24 AM	

+="CN65199"	"Technical Support for Enterprise Project Management Pilot and Implemantation"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Information services"	15-Oct-07	30-Mar-08	88000.00	="0708-158"	="ASI Solutions"	13-Mar-08 10:38 AM	

+="CN65204-A2"	"Supply of Computer cabling Equipment"	="Australian Federal Police"	13-Mar-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	56682.78	="37-2005"	="Absolute Cabling Systems Pty Ltd"	13-Mar-08 11:51 AM	

+="CN65205-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	24-Jan-08	06-Mar-08	11400.00	=""	="Australian Federal Police"	13-Mar-08 11:58 AM	

+="CN65207"	"BOOK RECORD - ON015, SHIP'S LOG. QTY 1200."	="Defence Materiel Organisation"	13-Mar-08	="Log books or pads"	30-Nov-07	25-Jan-08	14718.00	="2680071"	="LIGARE PTY LTD"	13-Mar-08 12:00 PM	

+="CN65208-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	08-Feb-08	23-Mar-08	13400.00	=""	="Australian Federal Police"	13-Mar-08 12:01 PM	

+="CN65209-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	01-Feb-08	14-Mar-08	11000.00	=""	="Australian Federal Police"	13-Mar-08 12:04 PM	

+="CN65210-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	20-Feb-08	04-Apr-08	17300.00	=""	="Australian Federal Police"	13-Mar-08 12:11 PM	

+="CN65215-A2"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	07-Dec-07	10-Jan-08	13300.00	=""	="Australian Federal Police"	13-Mar-08 12:29 PM	

+="CN65212-A2"	"Tax Consultant secondment"	="Australian Federal Police"	13-Mar-08	="Tax accounting"	01-Jan-08	01-Mar-08	97452.00	="23-2005"	="KPMG"	13-Mar-08 12:51 PM	

+="CN65217"	"Key Management System"	="Attorney-General's Department"	13-Mar-08	="Keys"	11-Feb-08	11-Feb-08	11931.01	=""	="CIC Secure Pty Ltd"	13-Mar-08 01:08 PM	

+="CN65218"	"Module delivery"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	12-Feb-08	12-Feb-08	17930.00	=""	="RMIT"	13-Mar-08 01:08 PM	

+="CN65219"	"Training"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	12-Feb-08	29-Feb-08	16280.00	=""	="Hotel Realm"	13-Mar-08 01:08 PM	

+="CN65220"	"Consultancy"	="Attorney-General's Department"	13-Mar-08	="Public Utilities and Public Sector Related Services"	12-Feb-08	30-Jun-08	62500.00	="07/125"	="GHD Pty Ltd"	13-Mar-08 01:09 PM	

+="CN65221"	"Expert advice on procurement"	="Attorney-General's Department"	13-Mar-08	="Procurement or supply chain training"	12-Feb-08	12-Feb-08	21440.00	=""	="The Trustee for Argonautica Trust"	13-Mar-08 01:09 PM	

+="CN65222"	"NCTC PTG Equipment"	="Attorney-General's Department"	13-Mar-08	="Computer Equipment and Accessories"	12-Feb-08	28-Feb-08	10806.00	=""	="HARRIS TECHNOLOGY"	13-Mar-08 01:09 PM	

+="CN65224"	"Police records checks"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	14-Feb-08	30-Jun-08	30000.00	=""	="Australian Federal Police"	13-Mar-08 01:09 PM	

+="CN65225"	"Training facility"	="Attorney-General's Department"	13-Mar-08	="General educational facility fixtures"	14-Feb-08	14-Feb-08	46000.01	=""	="A Yarra Valley Conferecne Centre"	13-Mar-08 01:09 PM	

+="CN65226"	"Data maintenance"	="Attorney-General's Department"	13-Mar-08	="Data services"	11-Feb-08	30-Apr-08	16116.38	=""	="NSC Enterprise Solutions"	13-Mar-08 01:09 PM	

+="CN65227"	"Security maintenance"	="Attorney-General's Department"	13-Mar-08	="Security surveillance and detection"	06-Feb-08	06-Feb-08	117645.00	="06/21859"	="Chubb Security Aust Pty Ltd"	13-Mar-08 01:10 PM	

+="CN65230"	"Venue & Accomodation Costs"	="Attorney-General's Department"	13-Mar-08	="Meeting facilities"	07-Feb-08	05-Mar-08	56535.00	=""	="Marque Hotels International Pty Ltd"	13-Mar-08 01:10 PM	

+="CN65231"	"Accomodation costs- Meting"	="Attorney-General's Department"	13-Mar-08	="Meeting facilities"	07-Feb-08	05-Mar-08	23913.00	=""	="Saville Park Suites Canberra"	13-Mar-08 01:10 PM	

+="CN65234"	"CISCO bundles with switch & without switch"	="Attorney-General's Department"	13-Mar-08	="Internet services"	08-Feb-08	20-Feb-08	77149.71	=""	="Dimension Data Australia Pty Ltd"	13-Mar-08 01:11 PM	

+="CN65235"	"Rent"	="Attorney-General's Department"	13-Mar-08	="Lease and rental of property or building"	11-Feb-08	11-Feb-08	15949.51	=""	="Finlease Equipment Rentals"	13-Mar-08 01:11 PM	

+="CN65236"	"Interface Maintenance"	="Attorney-General's Department"	13-Mar-08	="Maintenance or support fees"	14-Feb-08	30-Jun-10	287735.80	=""	="Department of Immigration and"	13-Mar-08 01:11 PM	

+="CN65237"	"Goods"	="Attorney-General's Department"	13-Mar-08	="Cabinets"	21-Feb-08	21-Feb-08	17919.00	=""	="Planex Sales Pty Ltd"	13-Mar-08 01:11 PM	

+="CN65238"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Government accounting services"	21-Feb-08	30-Jun-08	29999.99	="06/16740"	="KPMG Chartered Accountants"	13-Mar-08 01:11 PM	

+="CN65239"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Educational and research structures"	22-Feb-08	22-Feb-08	55066.00	=""	="Colmar Brunton Social Research"	13-Mar-08 01:11 PM	

+="CN65240"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Aircraft"	27-Feb-08	27-Feb-08	4400000.00	=""	="NATIONAL AERIAL FIREFIGHTING CENTRE"	13-Mar-08 01:11 PM	

+="CN65241"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Temporary legal staffing needs"	27-Feb-08	27-Feb-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:12 PM	

+="CN65242"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Lighting and fixtures and accessories"	27-Feb-08	01-Apr-08	22918.50	=""	="The Cunningham Family Trust"	13-Mar-08 01:12 PM	

+="CN65243"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Relocation services"	28-Feb-08	28-Feb-08	67018.60	=""	="Rail Infrastructure Corporation"	13-Mar-08 01:12 PM	

+="CN65244-A1"	" Contractor services "	="Attorney-General's Department"	13-Mar-08	="Personnel recruitment"	28-Feb-08	30-Sep-10	564856.80	="06/18160"	="Intrain Corporation Pty Ltd"	13-Mar-08 01:12 PM	

+="CN65245"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Temporary financial staffing needs"	28-Feb-08	29-Feb-08	29999.99	=""	="Hays Personnel Services (Aust) PL"	13-Mar-08 01:12 PM	

+="CN65246"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Printing and writing paper"	21-Feb-08	21-Feb-08	19004.70	=""	="Grey Worldwide Canberra Pty Ltd"	13-Mar-08 01:12 PM	

+="CN65247"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Machine made parts"	15-Feb-08	30-Jun-08	24919.18	=""	="MAN DIESEL AUSTRALIA PTY LTD"	13-Mar-08 01:12 PM	

+="CN65248"	"Services"	="Attorney-General's Department"	13-Mar-08	="System administrators"	18-Feb-08	30-Aug-08	24200.00	="07/13009"	="Relevance"	13-Mar-08 01:12 PM	

+="CN65249"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Relocation services"	18-Feb-08	30-Jun-08	58300.00	="07/13009"	="Digital (Digest) Data Design"	13-Mar-08 01:13 PM	

+="CN65250"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Electrical services"	18-Feb-08	30-Jun-08	16145.00	=""	="WOODWARD GOVERNOR COMPANY"	13-Mar-08 01:13 PM	

+="CN65251"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Technical cooperation services"	18-Feb-08	30-Jun-08	27118.43	=""	="Powercorp Operations Pty Ltd"	13-Mar-08 01:13 PM	

+="CN65252"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="License management software"	19-Feb-08	29-Feb-08	13265.86	="07/13009"	="Data#3 Ltd"	13-Mar-08 01:13 PM	

+="CN65253"	"Services provided"	="Attorney-General's Department"	13-Mar-08	="Print advertising"	19-Feb-08	19-Feb-08	48607.90	=""	="Universal McCann"	13-Mar-08 01:13 PM	

+="CN65254"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Project management"	20-Feb-08	30-Jun-08	19646.00	=""	="Bligh Voller Nield"	13-Mar-08 01:13 PM	

+="CN65255"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Hotels and lodging and meeting facilities"	21-Feb-08	05-Mar-08	30345.00	=""	="The Trustee for Pavilion Trust"	13-Mar-08 01:13 PM	

+="CN65256"	"Blackberry"	="Attorney-General's Department"	13-Mar-08	="Communications Devices and Accessories"	05-Feb-08	05-Feb-08	22440.00	=""	="Telstra"	13-Mar-08 01:13 PM	

+="CN65257"	"Professional Fees"	="Attorney-General's Department"	13-Mar-08	="International business associations"	12-Jan-08	31-Dec-08	17716.00	=""	="Cathco"	13-Mar-08 01:14 PM	

+="CN65258"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	02-May-07	31-Dec-08	12862.50	=""	="Commonwealth Director of"	13-Mar-08 01:14 PM	

+="CN65259"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	02-May-07	31-Dec-08	12862.50	=""	="Commonwealth Director of"	13-Mar-08 01:14 PM	

+="CN65260"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	31-Jan-08	31-Dec-08	10222.30	=""	="Australian Government Solicitor"	13-Mar-08 01:14 PM	

+="CN65261-A1"	"Purchase of Comm books, journals and magazines"	="Attorney-General's Department"	13-Mar-08	="Division activity or resource books"	19-Jan-08	31-Jan-08	23945.91	=""	="Copyright Agency Limited"	13-Mar-08 01:14 PM	

+="CN65262"	"Nauru Mission"	="Attorney-General's Department"	13-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	19-Feb-08	18448.00	=""	="Cathco"	13-Mar-08 01:14 PM	

+="CN65263"	"Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	31-Oct-07	31-Oct-17	14355.00	="06#195748DOC"	="Australian Government Solictor"	13-Mar-08 01:14 PM	

+="CN65264"	"*Professional fees and disbursements"	="Attorney-General's Department"	13-Mar-08	="Legal services"	16-Nov-07	21-Nov-07	22129.06	="07/21250"	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:14 PM	

+="CN65265-A1"	"Ffees for profession services"	="Attorney-General's Department"	13-Mar-08	="Finance accounting and enterprise resource planning ERP software"	29-Jan-08	31-Jul-10	10043.00	="07/16757"	="Deloitte Touche Tohmatsu"	13-Mar-08 01:15 PM	

+="CN65266-A1"	"Legal Professional Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	07-Jan-07	31-Dec-18	14771.74	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	13-Mar-08 01:15 PM	

+="CN65267"	"Supply of Power"	="Attorney-General's Department"	13-Mar-08	="Public Utilities and Public Sector Related Services"	14-Dec-07	31-Dec-07	17808.05	="26130000"	="Christmas Island Adminstration"	13-Mar-08 01:15 PM	

+="CN65268"	"Power supply"	="Attorney-General's Department"	13-Mar-08	="Building and Construction and Maintenance Services"	15-Jan-08	15-Jan-08	19088.80	=""	="Christmas Island Adminstration"	13-Mar-08 01:15 PM	

+="CN65269"	"Funding Pathways Network 2007-2008"	="Attorney-General's Department"	13-Mar-08	="Relationship building or family life skills instructional materials"	31-Jan-08	30-Jun-08	33000.00	=""	="RELATIONSHIPS AUSTRALIA WA"	13-Mar-08 01:15 PM	

+="CN65274"	"Leagl services"	="Attorney-General's Department"	13-Mar-08	="Temporary legal staffing needs"	07-Feb-08	25-Apr-08	92350.50	="06#195748000"	="Australian Government Solictor"	13-Mar-08 01:16 PM	

+="CN65275"	"Recovery Costs"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	26-Nov-07	26-Nov-07	52586.21	=""	="Dept Transport & Regional Services"	13-Mar-08 01:16 PM	

+="CN65276"	"*Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	23-Oct-07	04-Mar-18	42342.21	="06#195748 DOC"	="Australian Government Solicitor"	13-Mar-08 01:16 PM	

+="CN65277"	"Temporary Recruitment"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	18-Feb-08	03-Mar-08	66572.00	="06/18397"	="Clicks Recruit Pty Ltd"	13-Mar-08 01:16 PM	

+="CN65278"	"Security Maintenance"	="Attorney-General's Department"	13-Mar-08	="Security surveillance and detection"	01-Feb-08	31-Jan-11	20511.49	="05/18399"	="ADT"	13-Mar-08 01:16 PM	

+="CN65279"	"Computer services"	="Attorney-General's Department"	13-Mar-08	="Computer services"	01-Feb-08	01-Feb-08	21000.00	="06/18392"	="Stratsec.Net Pty Ltd"	13-Mar-08 01:16 PM	

+="CN65280"	"Installation of cabling"	="Attorney-General's Department"	13-Mar-08	="Communications Devices and Accessories"	01-Feb-08	01-Feb-08	11099.00	="07/13009"	="DATAVOICE COMMUNICATIONS"	13-Mar-08 01:17 PM	

+="CN65281"	"Vetting services"	="Attorney-General's Department"	13-Mar-08	="Reference or background check services"	04-Feb-08	30-Jun-08	30000.00	="97/21603"	="J Sainsbury"	13-Mar-08 01:17 PM	

+="CN65282"	"Security systems maintenance"	="Attorney-General's Department"	13-Mar-08	="Security systems services"	04-Feb-08	29-Feb-08	10120.00	="07/12836"	="Intec 1 Pty Ltd"	13-Mar-08 01:17 PM	

+="CN65283"	"Contracting fees"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	04-Feb-08	28-Feb-08	30000.00	=""	="Clicks Recruit Pty Ltd"	13-Mar-08 01:17 PM	

+="CN65284"	"Equipment"	="Attorney-General's Department"	13-Mar-08	="Education and Training Services"	04-Feb-08	31-May-08	153696.40	=""	="The Trustee for Wesfire Unit Trust"	13-Mar-08 01:17 PM	

+="CN65285"	"Text books"	="Attorney-General's Department"	13-Mar-08	="Educational or vocational textbooks"	05-Feb-08	05-Feb-08	22000.00	=""	="Thomson Legal & Regulatory Ltd"	13-Mar-08 01:17 PM	

+="CN65286"	"Construction Costs"	="Attorney-General's Department"	13-Mar-08	="General building construction"	04-Mar-08	30-Apr-09	2225192.20	=""	="ISPT"	13-Mar-08 01:17 PM	

+="CN65287"	"Legal Services"	="Attorney-General's Department"	13-Mar-08	="Legal services"	16-Jan-08	27-Feb-08	11578.04	="06#195748DOC"	="Australian Government Solicitor"	13-Mar-08 01:18 PM	

+="CN65289"	"Communication for National Security Campaign"	="Attorney-General's Department"	13-Mar-08	="Communications vocational training services"	18-Feb-08	18-Feb-08	45100.00	=""	="Cultural Partners"	13-Mar-08 01:18 PM	

+="CN65290"	"Goods and Services"	="Attorney-General's Department"	13-Mar-08	="Personal communications device accessories or parts"	07-Mar-08	07-Mar-08	26473.70	=""	="TENIX DEFENCE SYSTEMS PTY LTD"	13-Mar-08 01:18 PM	

+="CN65291"	"Contract services"	="Attorney-General's Department"	13-Mar-08	="Unemployment services"	07-Mar-08	07-Mar-08	53130.00	=""	="The Trustee for The Cordelta"	13-Mar-08 01:18 PM	

+="CN65292"	"Provision of contracted vetting services"	="Attorney-General's Department"	13-Mar-08	="National security"	04-Mar-08	30-Jun-08	22000.00	="02/4856"	="Bellegarde Marketing & Consultancie"	13-Mar-08 01:18 PM	

+="CN65293"	"Vehicle lease"	="Attorney-General's Department"	13-Mar-08	="Motor vehicles"	07-Jan-08	30-Jun-08	15300.00	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	13-Mar-08 01:18 PM	

+="CN65294"	"Consultant"	="Attorney-General's Department"	13-Mar-08	="Business intelligence consulting services"	04-Mar-08	30-Jun-08	145200.00	=""	="Clicks Recruit Pty Ltd"	13-Mar-08 01:18 PM	

+="CN65295"	"Consultancy Services"	="Attorney-General's Department"	13-Mar-08	="Temporary personnel services"	04-Mar-08	04-Mar-08	78100.00	=""	="Southern Cross Computing Pty Ltd"	13-Mar-08 01:19 PM	

+="CN65296"	"The Cost of Water Efficiency Infrastructure Investments in Irrigation Industries and Valleys across Australia"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Water resources development and oversight"	16-Oct-07	30-Nov-07	68365.00	="0708-459"	="Hassall & Associates Pty Ltd"	13-Mar-08 01:26 PM	

+="CN65298"	"Annual Report Editing Services"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	17-Oct-07	24-Oct-07	17250.00	="0708-468"	="Elizabeth Hutchings Editing"	13-Mar-08 01:29 PM	

+="CN65299"	"Chest Wound Dressings For ADF"	="Defence Materiel Organisation"	13-Mar-08	="Bandages or dressings for general use"	29-Feb-08	01-Apr-08	20785.60	=""	="Medical Kinetics Pty Ltd"	13-Mar-08 01:30 PM	

+="CN65301"	"Supply and installation of fibre optical cabling"	="Australian Federal Police"	13-Mar-08	="Installation cables"	01-Feb-08	31-Mar-08	22703.78	="37/2005"	="Absolute Cabling Systems Pty Ltd"	13-Mar-08 01:34 PM	

+="CN65302"	" Project Management Training Programe Services "	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Education and Training Services"	17-Oct-07	30-Oct-07	13530.00	=""	="Innovation Partners Australia"	13-Mar-08 01:36 PM	

+="CN65304"	"Office Furniture and Supplies"	="Department of the Environment Water Heritage and the Arts"	13-Mar-08	="Accommodation furniture"	17-Oct-07	12-Dec-07	37980.80	="0708-434"	="Workspace Commercial Furniture"	13-Mar-08 01:42 PM	

+="CN65307-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	14-Dec-07	25-Jan-08	11100.00	=""	="Australian Federal Police"	13-Mar-08 02:00 PM	

+="CN65309-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Management advisory services"	19-Dec-07	30-Jan-08	10650.00	=""	="Australian Federal Police"	13-Mar-08 02:04 PM	

+="CN65308"	"2 Toshiba: R500 laptops"	="Australian Human Rights Commission"	13-Mar-08	="Notebook computers"	17-Jan-08	13-Feb-08	10840.50	=""	="Jeas Solutions"	13-Mar-08 02:05 PM	

+="CN65311"	"Legal Services"	="Australian Human Rights Commission"	13-Mar-08	="Legal services"	28-Sep-07	29-Jan-08	16391.00	=""	="Clayton Utz"	13-Mar-08 02:20 PM	

+="CN65315"	"work benches"	="Royal Australian Mint"	13-Mar-08	="Work benches"	15-Feb-08	15-Feb-08	11008.80	=""	="BAC AUSTRALIAN SYSTEMS P/L"	13-Mar-08 02:26 PM	

+="CN65314"	"Catering for HREOC 21 Conference"	="Australian Human Rights Commission"	13-Mar-08	="Catering services"	14-Feb-08	15-Feb-08	25744.00	=""	="Jones Bay Wharf Group Pty Ltd"	13-Mar-08 02:32 PM	

+="CN65317"	"moulding costs"	="Royal Australian Mint"	13-Mar-08	="Packaging tubes and cores and labels and accessories"	15-Feb-08	15-Feb-08	10088.12	=""	="SHANGHAI SPRING INTERNATIONAL TRADE"	13-Mar-08 02:34 PM	

+="CN65320"	"capsules"	="Royal Australian Mint"	13-Mar-08	="Packaging tubes and cores and labels and accessories"	15-Feb-08	28-Feb-08	74745.00	=""	="RIAN INDUSTRIES P/L"	13-Mar-08 02:45 PM	

+="CN65322"	"Ni/silver strip"	="Royal Australian Mint"	13-Mar-08	="Nickel based super alloys"	22-Feb-08	22-Feb-08	17560.40	=""	="B. MASON & SONS LTD"	13-Mar-08 02:57 PM	

+="CN65321"	"Various Parts ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	18-Jun-08	29571.23	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 02:58 PM	

+="CN65325"	"packaging"	="Royal Australian Mint"	13-Mar-08	="Packaging materials"	25-Feb-08	09-Jun-08	10494.00	=""	="FORM-RITE AUSTRALIA PTY LTD"	13-Mar-08 03:24 PM	

+="CN65327"	"Realignment of Oracle licences to main agreement renewel date Service Contract 2258607, term 14-Nov-07 to 28-May-08"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	31-May-02	30-May-08	37217.51	=""	="Oracle Corporation Aust P/L"	13-Mar-08 03:31 PM	

+="CN65328"	"Computer hardware"	="Australian Bureau of Statistics"	13-Mar-08	="Components for information technology or broadcasting or telecommunications"	07-Apr-04	30-Apr-08	35578.95	=""	="Corporate Express"	13-Mar-08 03:31 PM	

+="CN65329"	"Legal Services"	="Australian Bureau of Statistics"	13-Mar-08	="Legal services"	24-Jan-06	23-Jan-09	136896.22	=""	="Aust Govt Solicitor"	13-Mar-08 03:32 PM	

+="CN65331"	"Consultancy services"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	06-Sep-06	05-Sep-08	16632.00	=""	="Acumen Alliance (Act) Pty Ltd"	13-Mar-08 03:32 PM	

+="CN65332"	"Keep the Knowledge - Recordkeeping Awareness E-learning Training Package 2007 version"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-07	31-Dec-07	19250.00	=""	="Tactics Consulting P/L"	13-Mar-08 03:32 PM	

+="CN65333"	"Contract for provision of editorial services for the 2008 Yearbook."	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	06-Feb-07	05-Feb-08	48950.00	=""	="Green, Robin P"	13-Mar-08 03:32 PM	

+="CN65334"	"Consulting Engineers - VIC Office Refurbishment Project"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jun-07	31-Jul-08	13750.00	=""	="Vos Group Pty Ltd"	13-Mar-08 03:32 PM	

+="CN65335"	"ABS-ICON annual levy operational"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	33000.00	=""	="Dofa"	13-Mar-08 03:32 PM	

+="CN65330"	"Various Parts - ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	16-Jun-08	14561.27	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 03:32 PM	

+="CN65336"	"ABS-ICON annual levy operational"	="Australian Bureau of Statistics"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	33000.00	=""	="Dofa"	13-Mar-08 03:33 PM	

+="CN65337"	"Telstra CDMA replacement phones"	="Australian Bureau of Statistics"	13-Mar-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	34744.55	=""	="Telstra Corporation Ltd"	13-Mar-08 03:33 PM	

+="CN65338"	"Design, Development and Delivery of ABS Leadership Program"	="Australian Bureau of Statistics"	13-Mar-08	="Education and Training Services"	02-Jul-07	30-Jun-08	220000.00	="SON25954"	="Vantage Point Consulting P/L"	13-Mar-08 03:33 PM	

+="CN65339"	"Part A - the production of information to be used to update the structure, weights and price collection of the price indexes in all capital cities, plus North Queensland. Part B - The provision of prices (unit rates) on a quarterly basis fo"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	25-Jul-07	30-Jun-08	192610.00	=""	="Rider Levett Bucknall Pty Ltd"	13-Mar-08 03:33 PM	

+="CN65340"	"Supply, deliver, install and commission 1 x APC 20kw ISX UPS"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	16-Aug-07	28-Oct-07	68750.00	=""	="Datatech Australia"	13-Mar-08 03:33 PM	

+="CN65341"	"Sunfire Maintenance - 1/10/09 - 31/10/07"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Oct-07	11406.32	=""	="Alpha West P/L"	13-Mar-08 03:33 PM	

+="CN65342"	"Maintenance"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Oct-07	23754.50	=""	="Heyday Group Pty Ltd"	13-Mar-08 03:33 PM	

+="CN65343"	"Maintenance Charges - 1/10/07 - 31/12/07"	="Australian Bureau of Statistics"	13-Mar-08	="Computer services"	01-Oct-07	31-Dec-07	16954.58	=""	="Ibm Australia Ltd"	13-Mar-08 03:34 PM	

+="CN65345"	"Legal fees for NT office lease at 22 Harry Chan Avenue"	="Australian Bureau of Statistics"	13-Mar-08	="Legal services"	03-Oct-07	31-Jan-08	11000.00	="SON26836"	="Aust Govt Solicitor"	13-Mar-08 03:34 PM	

+="CN65346"	"Computer hardware"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	04-Oct-07	31-Oct-07	417450.00	=""	="Corporate Express"	13-Mar-08 03:34 PM	

+="CN65347"	"Personal Storage Units"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	04-Oct-07	29-Nov-07	29535.00	=""	="Ofm Furniture Division"	13-Mar-08 03:34 PM	

+="CN65348"	"Computer accessoriues"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	10-Oct-07	31-Oct-07	15404.40	=""	="Officemax Australia Ltd"	13-Mar-08 03:34 PM	

+="CN65349"	"Guard Services for the NSW Refurbishment Project"	="Australian Bureau of Statistics"	13-Mar-08	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Jan-08	16500.00	=""	="Chubb Protective Services"	13-Mar-08 03:34 PM	

+="CN65350"	"Loose furniture for SA office fitout as per PO number 223515 )"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	17-Oct-07	30-Nov-07	27500.00	=""	="Mabarrack Furniture"	13-Mar-08 03:35 PM	

+="CN65351"	"Paper"	="Australian Bureau of Statistics"	13-Mar-08	="Paper materials"	18-Oct-07	18-Oct-07	19800.00	=""	="Spicers Stationery"	13-Mar-08 03:35 PM	

+="CN65352"	"Supply and Installation of security equipment for Vic office fitout"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	25-Oct-07	31-Dec-07	36300.00	=""	="Chubb Electronic Security Systems"	13-Mar-08 03:35 PM	

+="CN65353"	"EL2 Credenza's & Mobile Storage Units"	="Australian Bureau of Statistics"	13-Mar-08	="Furniture and Furnishings"	26-Oct-07	14-Dec-07	14487.00	=""	="Ofm Furniture Division"	13-Mar-08 03:35 PM	

+="CN65354"	"ICT framewor business case training"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Jun-08	13200.00	=""	="Ernst & Young"	13-Mar-08 03:35 PM	

+="CN65355"	"Construction Work for NSW Office Project"	="Australian Bureau of Statistics"	13-Mar-08	="Building and Construction and Maintenance Services"	30-Oct-07	30-Jun-08	522187.59	=""	="The Builder Construction Group International Pty Limited"	13-Mar-08 03:35 PM	

+="CN65356"	"Library subscription renewals for 2008 for publications supplied through subscription agent Ebsco Australia."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	01-Jan-08	31-Dec-08	61653.12	=""	="Ebsco Aust"	13-Mar-08 03:35 PM	

+="CN65359"	"AVIS charges September 07 less non-ABS transaction for Hutson taken off after investigations by Astrid Boore(rep) see credit note. 13/11/07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Sep-07	30-Sep-07	14962.05	=""	="Avis Australia"	13-Mar-08 03:36 PM	

+="CN65360"	"consultancy services for review of 2008 Year Book Australia."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	01-Oct-07	30-Jun-08	32285.00	=""	="Green, Robin P"	13-Mar-08 03:36 PM	

+="CN65361"	"C/no: 88; health assessments, OHAS exams & psych tests - Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Comprehensive health services"	01-Oct-07	30-Jun-08	10081.95	=""	="Health Services Australia"	13-Mar-08 03:36 PM	

+="CN65362"	"NSW office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	19134.38	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65363"	"Vic office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	14645.03	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65364"	"CO/ACT office vehicle lease costs Oct 07."	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Oct-07	30-Jun-08	16165.15	=""	="Lease Plan"	13-Mar-08 03:36 PM	

+="CN65373"	"Vic postal charges for Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Mail and cargo transport"	04-Oct-07	30-Jun-08	12949.76	=""	="Australia Post"	13-Mar-08 03:38 PM	

+="CN65374"	"NSW office postal services, Sept 07."	="Australian Bureau of Statistics"	13-Mar-08	="Mail and cargo transport"	04-Oct-07	30-Jun-08	102677.85	=""	="Australia Post"	13-Mar-08 03:38 PM	

+="CN65370"	"Various Parts - ASLAV"	="Department of Defence"	13-Mar-08	="Armoured fighting vehicles"	13-Mar-08	18-Jul-08	39476.84	=""	="GENERAL DYNAMICS LAND SYSTEMS"	13-Mar-08 03:38 PM	

+="CN65376"	"workers comp adjustments, 2006/07."	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	08-Oct-07	30-Jun-08	131074.00	=""	="Comcare Australia"	13-Mar-08 03:38 PM	

+="CN65377"	"CSS/PSS actuarial & associated costs"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Jun-08	16000.00	=""	="Dept Finance & Administration"	13-Mar-08 03:38 PM	

+="CN65378"	"longtitudinal change for teashers & students."	="Australian Bureau of Statistics"	13-Mar-08	="Education and Training Services"	10-Oct-07	30-Jun-08	43419.20	=""	="University Of Tasmania"	13-Mar-08 03:39 PM	

+="CN65379"	"TEL SQL svr std Lic +SA; powerpoint"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	15-Oct-07	30-Jun-08	20740.84	=""	="Data#3 Group"	13-Mar-08 03:39 PM	

+="CN65380"	"print ABS annual report."	="Australian Bureau of Statistics"	13-Mar-08	="Printed media"	15-Oct-07	30-Jun-08	15129.40	=""	="Rtm Pty Ltd"	13-Mar-08 03:39 PM	

+="CN65381"	"state offices connect seats"	="Australian Bureau of Statistics"	13-Mar-08	="Computer Equipment and Accessories"	16-Oct-07	30-Jun-08	23712.15	=""	="Reed Construction Data"	13-Mar-08 03:39 PM	

+="CN65375-A1"	"Provision for Positive Leadership Workshops"	="Department of Immigration and Citizenship"	13-Mar-08	="Employee education"	07-Mar-08	01-Jul-08	12100.00	=""	="Amanda Horne Pty Limited"	13-Mar-08 03:39 PM	

+="CN65382"	"APS Jobs subscription 2007-08"	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	17-Oct-07	30-Jun-08	17442.06	=""	="Aust Public Service Commission"	13-Mar-08 03:39 PM	

+="CN65383"	"24 Sept-19 Oct CFO services, 4wks."	="Australian Bureau of Statistics"	13-Mar-08	="Accounting and auditing"	19-Oct-07	30-Jun-08	20182.80	=""	="Debra Jane Foggin"	13-Mar-08 03:39 PM	

+="CN65384"	"grant for writing research papers for a CAP project."	="Australian Bureau of Statistics"	13-Mar-08	="Information services"	19-Oct-07	30-Jun-08	58000.00	=""	="The Academy Of The Social Sciences In Aust"	13-Mar-08 03:39 PM	

+="CN65385"	"100,000 ESDC C4 Reply Paid Envelopes"	="Australian Bureau of Statistics"	13-Mar-08	="Printed media"	24-Oct-07	30-Jun-08	15840.00	=""	="Canprint Communications"	13-Mar-08 03:40 PM	

+="CN65386"	"statistical consultancy for SDSB."	="Australian Bureau of Statistics"	13-Mar-08	="Human resources services"	24-Oct-07	30-Jun-08	12375.00	=""	="Queensland University Of Technology"	13-Mar-08 03:40 PM	

+="CN65387"	"Library licence"	="Australian Bureau of Statistics"	13-Mar-08	="Management and Business Professionals and Administrative Services"	28-Oct-07	27-Oct-08	63016.80	=""	="Skillsoff"	13-Mar-08 03:40 PM	

+="CN65388"	"BOISE:OCT-2007"	="Australian Bureau of Statistics"	13-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Oct-07	30-Jun-08	56708.54	=""	="Boise Cascade Office Products"	13-Mar-08 03:40 PM	

+="CN65389-A1"	"Consulting services."	="Australian Bureau of Statistics"	13-Mar-08	="Accounting and auditing"	31-Oct-07	30-Jun-08	11180.10	=""	="Resolution Consulting Services"	13-Mar-08 03:40 PM	

+="CN65390"	"NSW vehicle lease costs for November 2007"	="Australian Bureau of Statistics"	13-Mar-08	="Motor vehicles"	01-Nov-07	30-Nov-07	21097.18	=""	="Lease Plan"	13-Mar-08 03:40 PM	

+="CN65395-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	55044.00	=""	="C.T.M. Refridgeration & Airconditioning Pty. Ltd."	13-Mar-08 04:07 PM	

+="CN65396-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	16378.00	=""	="Wolpers Grahl Pty Limited"	13-Mar-08 04:13 PM	

+="CN65397-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	11418.00	=""	="A & J Bilske Pty Ltd"	13-Mar-08 04:17 PM	

+="CN65398-A1"	"Provision for Facilities Maintenance Services"	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Aug-07	31-Dec-08	53416.00	=""	="Security & Technology Services (NT) Pty Ltd"	13-Mar-08 04:22 PM	

+="CN65400-A1"	" Provision for Facilities Maintenance Services "	="Department of Immigration and Citizenship"	13-Mar-08	="Facilities management"	01-Jul-07	31-Dec-08	67929.00	=""	="TSC (Aust) Pty. Ltd."	13-Mar-08 04:27 PM	

+="CN65403"	"Provision of Centarelink Agent Services at Badu Island, Qld"	="Centrelink"	13-Mar-08	="Business administration services"	01-Jul-07	30-Jun-08	18003.53	=""	="Badu Island Council"	13-Mar-08 04:43 PM	

+="CN65406"	"Applications Development - Executive Diary"	="Department of the Prime Minister and Cabinet"	13-Mar-08	="Application programming services"	11-Feb-08	02-May-08	46200.00	=""	="APA Management"	13-Mar-08 05:15 PM	

+="CN65407-A2"	"Applications Development (Stage 3)"	="Department of the Prime Minister and Cabinet"	13-Mar-08	="Application programming services"	02-Jan-08	30-Jun-08	124880.00	=""	="One Planet"	13-Mar-08 05:20 PM	

+="CN65408"	"SYNTHESIZER, ELECTRIC, EQUIPMENT - QTY 13."	="Defence Materiel Organisation"	13-Mar-08	="Musical Instruments and parts and accessories"	22-Oct-07	11-Dec-07	76839.04	="258056"	="PRO AUDIO SUPPLIES"	13-Mar-08 05:23 PM	

+="CN65419"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Medical Equipment and Accessories and Supplies"	11-Mar-08	15-Apr-08	12967.71	=""	="Johnson & Johnson Medical"	14-Mar-08 06:47 AM	

+="CN65420"	"medical Consumables For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Medical Equipment and Accessories and Supplies"	04-Mar-08	08-Apr-08	19376.50	=""	="Orthotic & Prosthetic Centre"	14-Mar-08 06:52 AM	

+="CN65422"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Drugs and Pharmaceutical Products"	11-Mar-08	10-Apr-08	20998.85	=""	="Symbion Pharmacy Services"	14-Mar-08 07:01 AM	

+="CN65423"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Drugs and Pharmaceutical Products"	06-Mar-08	11-Apr-08	13260.58	=""	="Symbion Pharmacy Services"	14-Mar-08 07:04 AM	

+="CN65424"	"Dental Consumables For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Dental equipment and supplies"	06-Mar-08	10-Apr-08	11773.68	=""	="Henry schein Halas"	14-Mar-08 07:07 AM	

+="CN65425"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Medical Equipment and Accessories and Supplies"	03-Mar-08	06-Apr-08	10725.00	=""	="GKE Pty Ltd"	14-Mar-08 07:12 AM	

+="CN65426"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	14-Mar-08	="Drugs and Pharmaceutical Products"	05-Mar-08	10-Apr-08	44286.00	=""	="Hospira Pty td"	14-Mar-08 07:27 AM	

+="CN65427"	"repairs to s'liner arn-51258 wally"	="Department of Defence"	14-Mar-08	="Motor vehicles"	06-Mar-08	28-Mar-08	19373.18	=""	="MC IMPORTS"	14-Mar-08 08:20 AM	

+="CN65428-A1"	"Plate cooling Turbine Engine, P/N: 6064T10P01 x qty 12."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	398042.83	=""	="Asia Pacific Aerospace"	14-Mar-08 08:55 AM	

+="CN65430"	"Rental of Office"	="Federal Magistrates Court"	14-Mar-08	="Lease and rental of property or building"	01-Feb-08	29-Feb-08	605474.88	=""	="Attorney Generals Department - NSW"	14-Mar-08 08:56 AM	

+="CN65433"	"PUMP INTRAVENOUS INFUSION & ACCESSORIES"	="Defence Materiel Organisation"	14-Mar-08	="Multichannel intravenous infusion pumps"	13-Mar-08	05-Jun-08	274837.64	=""	="CARDINAL HEALTH ALARIS PRODUCTS"	14-Mar-08 09:01 AM	

+="CN65434"	"Frame front, P/N: 6039t65G03 x qty 2"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	150456.48	=""	="Asia Pacific Aerospace"	14-Mar-08 09:03 AM	

+="CN65436"	"Recover Costs Rental, Outgoings, Car Parking - February 2008"	="Federal Magistrates Court"	14-Mar-08	="Commercial or industrial facility rental"	01-Feb-08	29-Feb-08	14485.18	=""	="Charter Hall Limited - Savills"	14-Mar-08 09:10 AM	

+="CN65438"	"Security Monitoring"	="Federal Magistrates Court"	14-Mar-08	="Security surveillance and detection"	01-Feb-08	29-Feb-08	17056.13	=""	="Chubb Protective Services"	14-Mar-08 09:14 AM	

+="CN65439"	"Bearing roller, Cylindrical x qty 10, P/N: 5053T69P01"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	48374.92	=""	="Asia Pacific Aerospace"	14-Mar-08 09:15 AM	

+="CN65440"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	14-Mar-08	="Stationery"	01-Feb-08	29-Feb-08	22023.84	=""	="Corporate Express Australia"	14-Mar-08 09:18 AM	

+="CN65441"	"Disk, compressor, aircraft gas turbine x qty 20, P/N: 6038T09P04 "	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	435504.52	=""	="Asia Pacific Aerospace"	14-Mar-08 09:22 AM	

+="CN65442-A1"	"Shroud sector, turbine x qty 40, P/N: 6038T35G02"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	165721.16	=""	="Asia Pacific Aerospace"	14-Mar-08 09:27 AM	

+="CN65429"	"PUMP INTRAVENOUS INFUSION & ACCESSORIES"	="Defence Materiel Organisation"	14-Mar-08	="Multichannel intravenous infusion pumps"	13-Mar-08	05-Jun-08	274837.64	=""	="CARDINAL HEALTH ALARIS PRODUCTS"	14-Mar-08 09:28 AM	

+="CN65445"	"Spacer aircraft compressor rotor x qty 8, P/N:5066T79P01"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	40917.71	=""	="Asia Pacific Aerospace"	14-Mar-08 09:36 AM	

+="CN65446"	" FMC QSLC Refurbishment Phase 3 Quantity surveying services - JMT Levels 6 and 7, Design Development Estimate, Review Tenders "	="Federal Magistrates Court"	14-Mar-08	="Refurbishing services"	01-Feb-08	29-Feb-08	10010.00	=""	="Currie & Brown (Australia) Pty Ltd"	14-Mar-08 09:39 AM	

+="CN65447"	"Tie rod Compressor x qty 10, P/N: 5043T04P02."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	212399.99	=""	="Asia Pacific Aerospace"	14-Mar-08 09:43 AM	

+="CN65448"	"Various Computer Equipment"	="Federal Magistrates Court"	14-Mar-08	="Computer Equipment and Accessories"	01-Feb-08	29-Feb-08	31127.80	=""	="Dell Australia Pty Ltd"	14-Mar-08 09:44 AM	

+="CN65450"	"Vane, Turbine engine x qty 140, P/N: 6043T87g01"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	383028.80	=""	="Asia Pacific Aerospace"	14-Mar-08 09:50 AM	

+="CN65449"	"Consulting Services for Federal Magistrates Court"	="Federal Magistrates Court"	14-Mar-08	="Organisational structure consultation"	01-Feb-08	29-Feb-08	15493.00	=""	="Des Semple & Associates"	14-Mar-08 09:51 AM	

+="CN65451-A3"	"Printing and Testing of Certified Lists"	="Australian Electoral Commission"	14-Mar-08	="Industrial printing services"	02-Aug-07	02-Mar-11	60407.74	="AEC06/062"	="Sema Group Pty Ltd"	14-Mar-08 09:56 AM	

+="CN65452"	" FMC - Newcastle Design & Engineering Consultancy fee on Stage 1 -100% and Stage 2 - 30% "	="Federal Magistrates Court"	14-Mar-08	="Professional engineering services"	01-Feb-08	29-Feb-08	11440.00	=""	="Group GSA Pty Ltd"	14-Mar-08 09:58 AM	

+="CN65453"	"Plate swirl x qty 12, P/N: 6053T43G02"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	199259.94	=""	="Asia Pacific Aerospace"	14-Mar-08 10:01 AM	

+="CN65454"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	14-Mar-08	="Temporary clerical or administrative assistance"	01-Feb-08	29-Feb-08	27369.07	=""	="Hays Specialist Recruitment (Australia) Pty Ltd"	14-Mar-08 10:03 AM	

+="CN65455"	" HEADSET MICROPHONE, OSK2 "	="Defence Materiel Organisation"	14-Mar-08	="Microphones"	13-Mar-08	02-Jul-08	87520.00	=""	="EYLEX PTY LTD"	14-Mar-08 10:05 AM	

+="CN65457"	"Advertising"	="Federal Magistrates Court"	14-Mar-08	="Advertising"	01-Feb-08	29-Feb-08	16489.03	=""	="HMA Blaze Intergrated Communications"	14-Mar-08 10:07 AM	

+="CN65456"	"Rotor compressor aircraft gas turbine x qty 20, P/N: 6032T27P08"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	595330.56	=""	="Asia Pacific Aerospace"	14-Mar-08 10:11 AM	

+="CN65458"	"Telephone Account"	="Australian Electoral Commission"	14-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Jan-08	89964.59	=""	="Telstra"	14-Mar-08 10:14 AM	

+="CN65460"	"furniture"	="Royal Australian Mint"	14-Mar-08	="Furniture"	25-Feb-08	25-Feb-08	11784.30	=""	="INO CONTRACT FURNITURE PTY LTD"	14-Mar-08 10:16 AM	

+="CN65459"	"Support shroud, turbine x qty 8, P/N: 6039T21G02."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	434636.40	=""	="Asia Pacific Aerospace"	14-Mar-08 10:16 AM	

+="CN65461"	"setup/ dismantle show stand"	="Royal Australian Mint"	14-Mar-08	="Exhibitions"	26-Feb-08	26-Feb-08	16269.00	=""	="XHIBIT PTY LTD"	14-Mar-08 10:20 AM	

+="CN65462"	"Second deposit on Accommodation for FM Plenary 4 day conference April 2008."	="Federal Magistrates Court"	14-Mar-08	="Hotels and motels and inns"	01-Feb-08	29-Feb-08	23050.00	=""	="Hyatt Regency - Adelaide"	14-Mar-08 10:22 AM	

+="CN65463"	"plate cooling turbine engine x qty 6, P/N: 6064T09P01."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	221580.02	=""	="Asia Pacific Aerospace"	14-Mar-08 10:23 AM	

+="CN65464"	"Supply of Northern and Southern Hemisphere Compasses"	="Defence Materiel Organisation"	14-Mar-08	="Direction finding compasses"	13-Mar-08	29-May-08	96376.50	="G9062"	="Fiskars Brands Austalia Pty Ltd"	14-Mar-08 10:24 AM	

+="CN65465"	" Telephone charges "	="Royal Australian Mint"	14-Mar-08	="Telephone line sharing devices"	27-Feb-08	27-Feb-08	10128.61	=""	="TELSTRA CORPORATION LTD"	14-Mar-08 10:26 AM	

+="CN65466"	"Rotor compressor aircraft gas turbine x qty 18, P/N: 6038T08P04."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	695623.50	=""	="Asia Pacific Aerospace"	14-Mar-08 10:32 AM	

+="CN65468"	"Seal engine x qty 10, P/N:6055T05G04."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	47464.67	=""	="Asia Pacific Aerospace"	14-Mar-08 10:37 AM	

+="CN65469"	" Revised contract for works on FMC Level 12 JMT and office fit out Level 7 JMT "	="Federal Magistrates Court"	14-Mar-08	="Refurbishing services"	01-Feb-08	29-Feb-08	41748.96	=""	="Interior Development Pty Ltd"	14-Mar-08 10:40 AM	

+="CN65471"	"Injector assembly, fuel, P/N: 4045T30G05."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	364545.72	=""	="Asia Pacific Aerospace"	14-Mar-08 10:42 AM	

+="CN65473"	"Rotor compressor aircraft gas turbine x qty 8, P/N: 6055T59P01"	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	467280.00	=""	="Asia Pacific Aerospace"	14-Mar-08 10:48 AM	

+="CN65475"	"Shaft turbine aircraft gas turbine, P/N: 512T92G01."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	869797.19	=""	="Asia Pacific Aerospace"	14-Mar-08 10:55 AM	

+="CN65477"	"Office Refurbishment FMC Level 12, Melbourne - Final Claim"	="Federal Magistrates Court"	14-Mar-08	="Refurbishing services"	01-Feb-08	29-Feb-08	71024.28	=""	="IRM Interiors Pty Ltd"	14-Mar-08 11:00 AM	

+="CN65476"	"Plate cooling, turbine engine x qty 24, P/N: 6064T07P05."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	762480.05	=""	="Asia Pacific Aerospace"	14-Mar-08 11:00 AM	

+="CN65478"	"Rotor compressor Aircraft gas turbine x qty 26, P/N: 6043T56G02."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	1077216.14	=""	="Asia Pacific Aerospace"	14-Mar-08 11:05 AM	

+="CN65479"	"Office Furniture FMC"	="Federal Magistrates Court"	14-Mar-08	="Office furniture"	01-Feb-08	29-Feb-08	10432.18	=""	="Jardan Australia Pty Ltd"	14-Mar-08 11:11 AM	

+="CN65480"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	14-Mar-08	="Aircraft"	14-Mar-08	14-May-10	39058.11	=""	="Sikorsky Aircraft Australia LTD"	14-Mar-08 11:23 AM	

+="CN65482"	"Consulting Services - Family Report"	="Federal Magistrates Court"	14-Mar-08	="Court reporting services"	01-Feb-08	29-Feb-08	15028.40	=""	="Jay Manya"	14-Mar-08 11:35 AM	

+="CN65481"	"Ring IGV actuating, P/N: 6039T22G01."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	12-Mar-08	30-Jun-08	19326.60	=""	="Asia Pacific Aerospace"	14-Mar-08 11:36 AM	

+="CN65483-A1"	"Lease at Kotara Call Centre, NSW"	="Department of Human Services"	14-Mar-08	="Lease and rental of property or building"	08-Sep-02	07-Nov-12	8784205.01	=""	="Wile Investments Pty Ltd"	14-Mar-08 11:39 AM	

+="CN65484"	"Counselling Services - Family Report"	="Federal Magistrates Court"	14-Mar-08	="Court reporting services"	01-Feb-08	29-Feb-08	15670.45	=""	="Joy Slattery Counselling Pty Ltd"	14-Mar-08 11:39 AM	

+="CN65486"	"Vehicle Leases"	="Federal Magistrates Court"	14-Mar-08	="Vehicle rental"	01-Feb-08	29-Feb-08	102456.46	=""	="Lease Plan"	14-Mar-08 11:44 AM	

+="CN65487"	"TEMPORARY ADMINISTRATIVE SUPPORT"	="Department of Human Services"	14-Mar-08	="Temporary personnel services"	03-Mar-08	02-May-08	16000.00	=""	="CAREERS UNLIMITED"	14-Mar-08 11:47 AM	

+="CN65489"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	14-Mar-08	="Transcribing services"	01-Feb-08	29-Feb-08	75443.20	=""	="National Transcription Services Pty Ltd"	14-Mar-08 11:48 AM	

+="CN65490"	"R3 service and repairs as required on Black Hawk A25-112."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	17-Dec-07	30-Mar-08	300000.00	=""	="BAE Systems Aust Military Air Support"	14-Mar-08 11:50 AM	

+="CN65493"	"Interpreting Services"	="Federal Magistrates Court"	14-Mar-08	="Interpreters"	01-Feb-08	29-Feb-08	44925.87	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	14-Mar-08 11:53 AM	

+="CN65496"	"Airfares"	="Federal Magistrates Court"	14-Mar-08	="Commercial aeroplane travel"	01-Feb-08	29-Feb-08	27160.84	=""	="Qantas - QAEBTA"	14-Mar-08 11:57 AM	

+="CN65495"	"Community Representative for technical quality review"	="Australian Taxation Office"	14-Mar-08	="Business and corporate management consultation services"	25-Feb-08	14-Mar-08	18123.00	=""	="KPMG"	14-Mar-08 11:57 AM	

+="CN65498"	" half-length hexagonal pencils "	="Australian Electoral Commission"	14-Mar-08	="Graphite pencils"	19-Feb-08	19-Mar-08	10280.00	=""	="Wise Choice Products Pty Ltd"	14-Mar-08 12:03 PM	

+="CN65499"	" SECURITY SERVICES "	="Department of Human Services"	14-Mar-08	="Temporary personnel services"	01-Jan-08	31-Mar-08	12820.50	=""	="SNP SECURITY"	14-Mar-08 12:04 PM	

+="CN65500-A1"	"R3 service and repairs as required on Black hawk A25-223."	="Defence Materiel Organisation"	14-Mar-08	="Military rotary wing aircraft"	04-Mar-08	28-May-08	250000.00	=""	="BAE Systems Aust Military Air Support"	14-Mar-08 12:05 PM	

+="CN65505"	"SECURITY SERVICES"	="Department of Human Services"	14-Mar-08	="Temporary personnel services"	01-Jan-08	30-Jun-08	37031.46	=""	="SNP SECURITY"	14-Mar-08 12:11 PM	

+="CN65506"	"FMC Brisbane Registry contract value claim"	="Federal Magistrates Court"	14-Mar-08	="Carpentry"	01-Feb-08	29-Feb-08	13088.90	=""	="Raffles Joinery Pty Ltd"	14-Mar-08 12:23 PM	

+="CN65508"	"Computer hardware"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	29-May-03	31-May-07	12424.18	=""	="Dell Computer Ltd"	14-Mar-08 12:28 PM	

+="CN65509"	"Removalist & Storage Fees for Relocatees"	="Australian Bureau of Statistics"	14-Mar-08	="Transportation and Storage and Mail Services"	01-Sep-05	30-Sep-09	55000.00	=""	="Kent Moving & Storage"	14-Mar-08 12:28 PM	

+="CN65510"	"Computer hardware"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	28-Jun-07	27-Jun-09	29265.50	=""	="Acer Computer Australia Pty Ltd"	14-Mar-08 12:28 PM	

+="CN65511"	"IT training courses"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	01-Aug-07	01-Jul-08	22000.00	=""	="Australian Management Control"	14-Mar-08 12:29 PM	

+="CN65512"	"Delivery of training courses"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	03-Sep-07	30-Jun-08	22000.00	=""	="Effective People Pty Limited"	14-Mar-08 12:29 PM	

+="CN65513"	"Provision of training services"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	03-Sep-07	30-Jun-08	332200.00	="SON25954"	="Talent Solutions Pty Ltd"	14-Mar-08 12:29 PM	

+="CN65514"	"Work Value Study"	="Australian Bureau of Statistics"	14-Mar-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	28-Sep-07	39600.00	=""	="Workplace Research Associates P/L"	14-Mar-08 12:29 PM	

+="CN65515"	"Consultancy Service"	="Australian Bureau of Statistics"	14-Mar-08	="Management advisory services"	03-Oct-07	31-Mar-08	26400.00	=""	="Sigma Management Science P/L"	14-Mar-08 12:29 PM	

+="CN65516"	"Consultancy for Standard Business Reporting (SBR) project."	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	05-Oct-07	05-Oct-08	121000.00	=""	="King Partnership"	14-Mar-08 12:30 PM	

+="CN65517"	"Support and Maintenance for Utimaco Safeguard software"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	31-Oct-07	30-Oct-08	16302.00	=""	="Eb2b.Com Pty Ltd"	14-Mar-08 12:30 PM	

+="CN65518"	"Sunfire Maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Nov-07	30-Nov-07	11406.32	=""	="Alpha West P/L"	14-Mar-08 12:30 PM	

+="CN65519"	"Computer hardware"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Nov-07	30-Nov-07	421231.67	=""	="Data#3 Group"	14-Mar-08 12:30 PM	

+="CN65520"	"Software Maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	01-Nov-07	31-Oct-08	60048.59	=""	="Hewlett Packard Australia Pty Ltd"	14-Mar-08 12:30 PM	

+="CN65521"	"Executive Furniture Suites"	="Australian Bureau of Statistics"	14-Mar-08	="Furniture and Furnishings"	08-Nov-07	07-Mar-08	13095.50	=""	="Workspace Commercial Furniture Pty Ltd"	14-Mar-08 12:30 PM	

+="CN65522"	"Professional fees incurred for negotiation of DPC Lease"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	12-Nov-07	30-Jun-08	11000.00	=""	="Blake Dawson"	14-Mar-08 12:30 PM	

+="CN65523"	"Design and Project Management Services - Level 3 VIC Office"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	13-Nov-07	30-Jun-08	11000.00	=""	="Reid Campbell Group"	14-Mar-08 12:30 PM	

+="CN65524"	"Workstation desks"	="Australian Bureau of Statistics"	14-Mar-08	="Furniture and Furnishings"	13-Nov-07	14-Jan-08	12100.00	=""	="Schiavello (Act) Pty Ltd"	14-Mar-08 12:31 PM	

+="CN65525"	"Purchase of 60 Men's Watches and 30 Ladies' Watches to be awarded to recipients of the Long Service Awards."	="Australian Bureau of Statistics"	14-Mar-08	="Marketing and distribution"	14-Nov-07	21-Dec-07	14718.00	=""	="Corporate Express"	14-Mar-08 12:31 PM	

+="CN65526"	"Proventia"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	15-Nov-07	04-Dec-08	169631.00	=""	="Alpha West P/L"	14-Mar-08 12:31 PM	

+="CN65527"	"Construction Works for NSW Office Fitout Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	19-Nov-07	30-Jun-08	245351.72	=""	="The Builder Construction Group International Pty Limited"	14-Mar-08 12:31 PM	

+="CN65528"	"Cisco switchgear"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	20-Nov-07	31-Dec-07	11886.52	=""	="Commander Intergrated Networks P/L"	14-Mar-08 12:31 PM	

+="CN65529"	"Casual Guard Services - NSW Fitout Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building construction and support and maintenance and repair services"	21-Nov-07	30-Jun-08	11000.00	=""	="Chubb Security Personnel Pty Ltd"	14-Mar-08 12:31 PM	

+="CN65530"	"Computer software"	="Australian Bureau of Statistics"	14-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	23-Nov-07	22-Nov-08	24117.58	=""	="Dimension Data Aust P/L"	14-Mar-08 12:31 PM	

+="CN65531"	"Delivery of training and facilitation of events"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	23-Nov-07	30-Jun-08	24200.00	="SON25954"	="People Foundations Consulting Gr"	14-Mar-08 12:31 PM	

+="CN65532"	"Paper Supplies"	="Australian Bureau of Statistics"	14-Mar-08	="Paper materials"	26-Nov-07	30-Jun-08	19800.00	=""	="Paperlinx Australia Pty Ltd"	14-Mar-08 12:32 PM	

+="CN65533"	"Casual Guards Services - NSW Office Fitout Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building construction and support and maintenance and repair services"	27-Nov-07	30-Jun-08	11000.00	=""	="Chubb Security Personnel Pty Ltd"	14-Mar-08 12:32 PM	

+="CN65534"	"Communications hardware as per quote Cisco 2811-V/K9 bundle"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	01-Dec-07	30-Nov-08	20315.35	=""	="Dimension Data Aust P/L"	14-Mar-08 12:32 PM	

+="CN65535"	"SPSS Maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Dec-07	30-Nov-08	23024.00	=""	="Spss Australasia Pty Ltd"	14-Mar-08 12:32 PM	

+="CN65536"	"Software maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	04-Jan-08	04-Jan-08	37897.83	=""	="Esri Australia"	14-Mar-08 12:32 PM	

+="CN65537"	"MIMEsweeper forweb URL"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	16-Apr-08	04-Dec-08	54016.05	=""	="Dimension Data Aust P/L"	14-Mar-08 12:32 PM	

+="CN65538"	":NOV-2007"	="Australian Bureau of Statistics"	14-Mar-08	="Passenger transport"	01-Jul-07	30-Jun-08	336680.22	=""	="American Express Australia Limit"	14-Mar-08 12:32 PM	

+="CN65540"	"Fees for customised ICT Business case training in accordance with ABS105"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	01-Jul-07	30-Jun-08	12214.17	=""	="Ernst & Young"	14-Mar-08 12:33 PM	

+="CN65541"	"Lease costs for Vic Nov 2007."	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Jul-07	30-Jun-08	14645.03	=""	="Lease Plan"	14-Mar-08 12:33 PM	

+="CN65542"	"Lease costsfor CO/ACT vehicles November 2007."	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Jul-07	30-Jun-08	18725.03	=""	="Lease Plan"	14-Mar-08 12:33 PM	

+="CN65544"	"Vic office postal charges for October 2007"	="Australian Bureau of Statistics"	14-Mar-08	="Transportation and Storage and Mail Services"	01-Oct-07	31-Oct-07	15778.38	=""	="Australia Post"	14-Mar-08 12:33 PM	

+="CN65545"	"Postal services Oct 07"	="Australian Bureau of Statistics"	14-Mar-08	="Transportation and Storage and Mail Services"	01-Oct-07	31-Oct-07	89856.02	=""	="Australia Post"	14-Mar-08 12:33 PM	

+="CN65546"	"Vehicle hire charges for October 2007"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Oct-07	31-Oct-07	14866.42	=""	="Avis Australia"	14-Mar-08 12:33 PM	

+="CN65547"	"Provision of consultancy services & expenses incurred"	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	01-Oct-07	31-Oct-07	22044.00	=""	="Ibm Australia Ltd"	14-Mar-08 12:33 PM	

+="CN65548"	"Interim Chief Financial Officer services 22/10-30/11/07"	="Australian Bureau of Statistics"	14-Mar-08	="Accounting and auditing"	22-Oct-07	30-Nov-07	20182.80	=""	="Debra Jane Foggin"	14-Mar-08 12:34 PM	

+="CN65549"	"Development & facilitation of STSS Planning Workshop 30/10-1/11/07"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	30-Oct-07	01-Nov-07	10174.54	=""	="Ps2 Pty Ltd"	14-Mar-08 12:34 PM	

+="CN65550"	"Qld office, carpark & storage rental for Nov/Dec 07, & after-hours air-conditioning"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Nov-07	31-Dec-07	292033.52	=""	="Gpt Group"	14-Mar-08 12:34 PM	

+="CN65551"	"Assistance with preparation of funding proposals"	="Australian Bureau of Statistics"	14-Mar-08	="Management advisory services"	01-Nov-07	30-Nov-07	14986.67	=""	="Resolution Consulting Services"	14-Mar-08 12:34 PM	

+="CN65552"	"Licences for online courses hosted in ABS environment"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	01-Nov-07	31-Oct-08	17600.00	=""	="Techniworks Action Learning Pty Ltd"	14-Mar-08 12:34 PM	

+="CN65554"	"Accommodation expenses"	="Australian Bureau of Statistics"	14-Mar-08	="Hotels and lodging and meeting facilities"	06-Nov-07	08-Nov-07	17535.42	=""	="Novotel Barossa Valley Resort"	14-Mar-08 12:34 PM	

+="CN65557"	"Refund due to miscalculation in MOU between ABS & SA Dept of Health dated 19/5/04"	="Australian Bureau of Statistics"	14-Mar-08	="Management and Business Professionals and Administrative Services"	13-Nov-07	30-Jun-08	13918.08	=""	="Sa Dept Of Health"	14-Mar-08 12:35 PM	

+="CN65559"	"balance payment for AIC offsite workshop, 13-15 Nov."	="Australian Bureau of Statistics"	14-Mar-08	="Hotels and lodging and meeting facilities"	19-Nov-07	30-Jun-08	12718.00	=""	="Grange At Cleveland Winery P/L The"	14-Mar-08 12:35 PM	

+="CN65560"	"Catalyst 3750 24"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	26-Nov-07	30-Jun-08	11886.53	=""	="Commander Intergrated Networks P/L"	14-Mar-08 12:35 PM	

+="CN65562"	"BOISE:NOV-2007"	="Australian Bureau of Statistics"	14-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Nov-07	30-Jun-08	52454.66	=""	="Boise Cascade Office Products"	14-Mar-08 12:35 PM	

+="CN65563"	"job adverts for Weekend Aust, Aust Financial Review, Canberra Times, Newsnet."	="Australian Bureau of Statistics"	14-Mar-08	="Printed media"	30-Nov-07	30-Jun-08	21586.27	=""	="Hma Blaze Pty Limited"	14-Mar-08 12:36 PM	

+="CN65564"	"Lease costs for CO/ACT vehicles for December 2007"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Dec-07	31-Dec-07	16544.01	=""	="Lease Plan"	14-Mar-08 12:36 PM	

+="CN65565"	"NSW vehicle lease costs for Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Dec-07	31-Dec-07	15383.94	=""	="Lease Plan"	14-Mar-08 12:36 PM	

+="CN65566"	"Vic vehicle lease costs for Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Dec-07	31-Dec-07	13641.60	=""	="Lease Plan"	14-Mar-08 12:36 PM	

+="CN65568"	"Supply and Install Workstation, Executive Office desking & Associated office Furniture - FMC"	="Federal Magistrates Court"	14-Mar-08	="Office furniture"	01-Feb-08	29-Feb-08	39503.31	=""	="Schiavello Systems (NSW) Pty Ltd"	14-Mar-08 12:54 PM	

+="CN65569"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	14-Mar-08	="Transcribing services"	01-Feb-08	29-Feb-08	18445.01	=""	="Spark & Cannon Australasia Pty Ltd"	14-Mar-08 12:58 PM	

+="CN65570"	"PABX maintenance for Jan-Mar 2008"	="Australian Bureau of Statistics"	14-Mar-08	="Office machines and their supplies and accessories"	02-Jul-01	31-Mar-08	15853.20	=""	="Fujitsu Aust Ltd"	14-Mar-08 01:03 PM	

+="CN65571"	"Renewal of sas software"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Nov-01	31-Oct-08	993973.20	=""	="Sas Institute Aust Pty Ltd"	14-Mar-08 01:04 PM	

+="CN65572"	"Software maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Jul-02	30-Jun-08	217737.30	=""	="Ibm Gsa"	14-Mar-08 01:04 PM	

+="CN65573"	"Click charges"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	16-Sep-02	14-Dec-07	20505.52	=""	="Ati Group Pty Ltd"	14-Mar-08 01:04 PM	

+="CN65574"	"Software renewal 2008"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	20-Jun-04	31-Dec-08	67684.54	=""	="Dimension Data Aust P/L"	14-Mar-08 01:04 PM	

+="CN65575"	"Software maintenance 2008"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	02-Aug-04	31-Dec-08	76372.67	=""	="Dimension Data Aust P/L"	14-Mar-08 01:04 PM	

+="CN65576"	"Cisco hardware maintenance renewal 1/1-30/6/08"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Jan-05	30-Jun-08	218372.03	=""	="Dimension Data Aust P/L"	14-Mar-08 01:04 PM	

+="CN65577"	"Renewal software maintenance to 4/12/2008 your ref TB35601-2"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	05-Dec-05	04-Dec-08	67208.28	=""	="Alpha West P/L"	14-Mar-08 01:04 PM	

+="CN65578"	"Legal services"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	24-Jan-06	23-Jan-09	18746.75	="SON26836"	="Aust Govt Solicitor"	14-Mar-08 01:05 PM	

+="CN65579"	"Computer hardware"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	28-Jun-07	27-Jun-09	242088.00	=""	="Acer Computer Australia Pty Ltd"	14-Mar-08 01:05 PM	

+="CN65581"	"Legal services"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	29-Jun-07	23-Jan-09	13134.00	="SON26836"	="Aust Govt Solicitor"	14-Mar-08 01:05 PM	

+="CN65582"	"Computer software"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	07-Aug-07	07-Aug-08	15187.48	=""	="Alpha West P/L"	14-Mar-08 01:05 PM	

+="CN65580"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	14-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	29-Feb-08	19307.66	=""	="Telstra Corporation Limited"	14-Mar-08 01:05 PM	

+="CN65584"	"Software review"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	26-Nov-07	30-Jun-08	38500.00	=""	="Stratsec.Net Pty Ltd"	14-Mar-08 01:05 PM	

+="CN65585"	"Hardware maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Dec-07	31-Dec-07	11406.36	=""	="Alpha West P/L"	14-Mar-08 01:06 PM	

+="CN65586"	"Telecommunication services"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	01-Dec-07	31-Jan-08	44706.20	=""	="Data#3 Group"	14-Mar-08 01:06 PM	

+="CN65587"	"Quantity Surveyor and Construction Cost Consultant for Tas Accommodation Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	04-Dec-07	31-Aug-08	33000.00	=""	="Wt Partnership"	14-Mar-08 01:06 PM	

+="CN65588"	"Photo copy charges"	="Australian Bureau of Statistics"	14-Mar-08	="Office machines and their supplies and accessories"	06-Dec-07	30-Jun-08	11000.00	=""	="Konica Minolta Business Solutions Aust"	14-Mar-08 01:06 PM	

+="CN65589"	"Delivery and Facilitation of L&D training"	="Australian Bureau of Statistics"	14-Mar-08	="Education and Training Services"	07-Dec-07	30-Jun-08	33000.00	=""	="People And Strategy"	14-Mar-08 01:06 PM	

+="CN65590"	"Postage"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	10-Dec-07	30-Jun-08	66000.00	=""	="Australia Post"	14-Mar-08 01:06 PM	

+="CN65591"	"Project Management Services - ABS TAS Accommodation Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	11-Dec-07	30-Jun-08	165000.00	="ABS-058"	="Colliers International Workplace Integration P/L"	14-Mar-08 01:07 PM	

+="CN65592"	"Hire"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	14-Dec-07	14-Jun-08	38516.50	=""	="Honeywell Limited"	14-Mar-08 01:07 PM	

+="CN65593"	"Provision of up to 3 sessions of the training course "Building Java Applications Using Spring/Hibernate/JSF" (10 attendees for each course)"	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	14-Dec-07	30-Jun-08	46872.01	=""	="Object Consulting P/L"	14-Mar-08 01:07 PM	

+="CN65594"	"Architectural Design Services for the Hobart office refurbishment"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	19-Dec-07	31-Oct-08	148500.00	=""	="Gray Puksand"	14-Mar-08 01:07 PM	

+="CN65595"	"Copy Charges"	="Australian Bureau of Statistics"	14-Mar-08	="Office machines and their supplies and accessories"	19-Dec-07	30-Jun-08	11000.00	=""	="Ricoh Australia P/L - Qld"	14-Mar-08 01:07 PM	

+="CN65596"	"Relocations - ABS House Block and Stack"	="Australian Bureau of Statistics"	14-Mar-08	="Business administration services"	20-Dec-07	30-Jun-08	80300.00	=""	="Allied Pickfords Business Relocations"	14-Mar-08 01:07 PM	

+="CN65597"	"NSW office rental 2007/08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	20-Dec-07	31-Jul-08	1496000.00	=""	="St Andrews House Corporation"	14-Mar-08 01:07 PM	

+="CN65598"	"HP storage"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	21-Dec-07	21-Dec-08	165878.88	=""	="Corporate Express"	14-Mar-08 01:07 PM	

+="CN65599"	"Backtrack for Oracle"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	31-Dec-07	31-Dec-08	24136.20	=""	="Bmc Software Asia Pacific P/L"	14-Mar-08 01:07 PM	

+="CN65600"	"DPC site Rental for the period 1/1/2008 - 30/6/2008"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Jan-08	30-Jun-08	735000.00	=""	="Fitzroys"	14-Mar-08 01:08 PM	

+="CN65601"	"Cisco Hardware"	="Australian Bureau of Statistics"	14-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Jan-08	01-Jan-09	749668.74	=""	="Fujitsu Aust Ltd"	14-Mar-08 01:08 PM	

+="CN65602"	"Provision of consulting services as editor of Year Book Australia 2008"	="Australian Bureau of Statistics"	14-Mar-08	="Management advisory services"	01-Mar-07	31-Dec-07	32285.00	=""	="Green, Robin P"	14-Mar-08 01:08 PM	

+="CN65603"	"Optus charges for month of Dec 2007."	="Australian Bureau of Statistics"	14-Mar-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	56105.28	=""	="Optus Communications"	14-Mar-08 01:08 PM	

+="CN65604"	"TN: 2690; Vic office rent, Dec 07."	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Dec-07	30-Jun-08	222075.89	=""	="Investa Asset Management P/L"	14-Mar-08 01:08 PM	

+="CN65605"	"WA office rent, Dec 07."	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Dec-07	30-Jun-08	207567.03	=""	="Knight Frank Australia Pty Ltd"	14-Mar-08 01:08 PM	

+="CN65608"	"car rentals for Nov 07."	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	04-Dec-07	30-Jun-08	21288.88	=""	="Avis Australia"	14-Mar-08 01:09 PM	

+="CN65610"	"CP Cisco phone items."	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	04-Dec-07	30-Jun-08	202209.74	=""	="Data#3 Group"	14-Mar-08 01:09 PM	

+="CN65609"	"Magazines & Subscriptions"	="Federal Magistrates Court"	14-Mar-08	="Legal Research Services"	01-Feb-08	29-Feb-08	74303.38	=""	="Thomson Legal & Regulatory Group"	14-Mar-08 01:09 PM	

+="CN65613"	"annual contribution to Aust Mathematical Sciences Institute"	="Australian Bureau of Statistics"	14-Mar-08	="Organisations and Clubs"	04-Dec-07	30-Jun-08	11000.00	=""	="University Of Melbourne"	14-Mar-08 01:09 PM	

+="CN65614"	"postal charges, p/e 30 Nov -07."	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	06-Dec-07	30-Jun-08	81183.20	=""	="Australia Post"	14-Mar-08 01:10 PM	

+="CN65615"	"Vic office postal charges Nov 07"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	06-Dec-07	30-Jun-08	15604.86	=""	="Australia Post"	14-Mar-08 01:10 PM	

+="CN65616"	"research project - local evaluation of ABS census indigenous count in the Kimberley"	="Australian Bureau of Statistics"	14-Mar-08	="Information services"	10-Dec-07	30-Jun-08	19639.00	=""	="Edith Cowan University"	14-Mar-08 01:10 PM	

+="CN65617"	"Cisco unified phone power, footstand, phone expansion, call manager etc."	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	11-Dec-07	30-Jun-08	199029.72	=""	="Data#3 Group"	14-Mar-08 01:10 PM	

+="CN65619"	"relocate 155 ABS staff"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	12-Dec-07	30-Jun-08	12290.85	=""	="Allied Pickfords Business Relocations"	14-Mar-08 01:10 PM	

+="CN65621"	"guard services for Oct 07"	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	13-Dec-07	30-Jun-08	11722.98	=""	="Chubb Protective Services"	14-Mar-08 01:11 PM	

+="CN65625"	"IBIS World advantage licence"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	11000.00	=""	="Ibisworld P/L"	14-Mar-08 01:11 PM	

+="CN65626"	"SA office rent, Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	21-Dec-07	30-Jun-08	183122.15	=""	="Jones Lang Lasalle Sa"	14-Mar-08 01:11 PM	

+="CN65627"	"SES band 1 positions recruitment consultancy services."	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	21-Dec-07	30-Jun-08	10428.00	=""	="Ron Hogan & Associates"	14-Mar-08 01:11 PM	

+="CN65628"	":DEC-2007"	="Australian Bureau of Statistics"	14-Mar-08	="Passenger transport"	28-Dec-07	30-Jun-08	311916.74	=""	="American Express Australia Limit"	14-Mar-08 01:12 PM	

+="CN65629"	"exp CISCO IP phone"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	28-Dec-07	30-Jun-08	44706.00	=""	="Data#3 Group"	14-Mar-08 01:12 PM	

+="CN65630"	"Prop no: COL0271 - DPC rent Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	28-Dec-07	30-Jun-08	491524.91	=""	="Fitzroys"	14-Mar-08 01:12 PM	

+="CN65631"	"BOISE:DEC-2007"	="Australian Bureau of Statistics"	14-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Dec-07	30-Jun-08	31360.77	=""	="Boise Cascade Office Products"	14-Mar-08 01:12 PM	

+="CN65632"	"Recover Costs Rental, Outgoings, Car Parking FMC Macquarie St, Sydney"	="Federal Magistrates Court"	14-Mar-08	="Commercial or industrial facility rental"	01-Feb-08	29-Feb-08	21228.20	=""	="Law Courts Limited - United Group Services"	14-Mar-08 01:17 PM	

+="CN65633"	"Office Furniture - FMC"	="Federal Magistrates Court"	14-Mar-08	="Office furniture"	01-Feb-08	29-Feb-08	11324.50	=""	="Workspace Commercial Furniture Pty Ltd"	14-Mar-08 01:22 PM	

+="CN65634-A1"	"Provision for System Tester"	="Comsuper"	14-Mar-08	="Human resources services"	08-Mar-08	07-Jun-08	40300.00	=""	="Macro Recruitment"	14-Mar-08 01:44 PM	

+="CN65635-A1"	"repairs after ti for mack arn-36378"	="Department of Defence"	14-Mar-08	="Motor vehicles"	14-Mar-08	27-Jun-08	15400.00	=""	="MACK VOLVO AUSTRALIA"	14-Mar-08 01:49 PM	

+="CN65637"	"Provision for UPS Maintenance Services"	="Comsuper"	14-Mar-08	="Software"	25-Feb-08	25-Feb-11	48390.76	=""	="MGE UPS Systems"	14-Mar-08 01:52 PM	

+="CN65639"	"MAJOR PAINT S'LINER ARN-51252"	="Department of Defence"	14-Mar-08	="Motor vehicles"	14-Mar-08	27-Jun-08	12947.00	=""	="MC IMPORTS"	14-Mar-08 01:53 PM	

+="CN65638"	"Shipping and Storage Containers, General Purpose ICA, quantity 20 raised under the terms and conditions of Standing Offer 2560176."	="Defence Materiel Organisation"	14-Mar-08	="Containers and storage"	07-Mar-08	03-Apr-08	75626.32	="2580193"	="SCF CONTAINERS INTERNATIONAL"	14-Mar-08 01:56 PM	

+="CN65497"	"1. Gear, bevel, NSN 3020-66-141-5022, M/C OF6V7, P/N 801-291-001, qty 4. 1. Bushing, sleeve, NSN 3120-66-140-6071, M/C OF6V7, P/N 801-101-001, qty 50."	="Defence Materiel Organisation"	14-Mar-08	="Communication satellites"	20-Aug-07	12-Nov-07	51204.34	=""	="Associated Aircraft Manufacturing"	14-Mar-08 01:57 PM	

+="CN65640"	" Motor Vehicle Parts. "	="Department of Defence"	14-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Mar-08	14-Apr-08	13007.59	=""	="Volvo Commercial Vehicle Albury"	14-Mar-08 02:02 PM	

+="CN65641"	" DEFIBRILLATOR/MONITOR-RECORDER SYSTEM & ACCESSORIES "	="Defence Materiel Organisation"	14-Mar-08	="Automated external defibrillators AED or hard paddles"	29-Feb-08	30-Apr-08	1059384.59	=""	="ZOLL MEDICAL AUSTRALIA P/L"	14-Mar-08 02:08 PM	

+="CN65643"	"Motor Vehicle Parts."	="Department of Defence"	14-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Mar-08	14-Apr-08	40698.91	=""	="LandRover Australia"	14-Mar-08 02:13 PM	

+="CN65644"	"Software license maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Jul-01	31-Dec-08	293961.28	=""	="Ibm Australia Ltd"	14-Mar-08 02:46 PM	

+="CN65645"	"Hardware Maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	24-Dec-03	31-Mar-08	22660.44	=""	="Ibm Australia Ltd"	14-Mar-08 02:46 PM	

+="CN65646"	"Legal services"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	24-Jan-06	23-Jan-09	10386.20	="SON26836"	="Aust Govt Solicitor"	14-Mar-08 02:46 PM	

+="CN65647"	"Legal services"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	24-Jan-06	23-Jan-09	212908.50	="SON26836"	="Aust Govt Solicitor"	14-Mar-08 02:46 PM	

+="CN65648"	"Copyright material (Agreement between the Commonwealth and Copyright Agency Limited):"	="Australian Bureau of Statistics"	14-Mar-08	="Management and Business Professionals and Administrative Services"	24-Jan-06	23-Jan-09	52325.30	=""	="Copyright Agency Limited"	14-Mar-08 02:46 PM	

+="CN65649"	"Wise package studio professional edition Aust, AUP coverage 31-Jan-2008 to 31-Jan-2009"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	31-Jan-07	31-Jan-09	15423.06	=""	="Altiris Australia Pty Ltd"	14-Mar-08 02:46 PM	

+="CN65650"	"eCensus focus group testing"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	17-May-07	16-May-08	25660.00	=""	="Mark Dignam And Associates Pty Ltd"	14-Mar-08 02:47 PM	

+="CN65651"	"Computer software"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	21-May-07	31-Dec-08	104266.07	=""	="Data#3 Group"	14-Mar-08 02:47 PM	

+="CN65652"	"Hardware maintenance"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Nov-07	31-Oct-08	52177.55	=""	="Integ Communications"	14-Mar-08 02:47 PM	

+="CN65653-A1"	"Software maintanence"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	01-Dec-07	30-Nov-08	132000.00	=""	="Space Time Research P/L"	14-Mar-08 02:47 PM	

+="CN65654"	"Workstation Desks"	="Australian Bureau of Statistics"	14-Mar-08	="Furniture and Furnishings"	21-Dec-07	21-Apr-08	24200.00	=""	="Schiavello (Act) Pty Ltd"	14-Mar-08 02:47 PM	

+="CN65655"	"Labour and Maintenance Services for ABS House 2007/08"	="Australian Bureau of Statistics"	14-Mar-08	="Building construction and support and maintenance and repair services"	02-Jan-08	30-Jun-08	33000.00	=""	="Skilled Group Limited"	14-Mar-08 02:47 PM	

+="CN65656"	"Professional Fees Incurred for Negotiation of DPC Lease"	="Australian Bureau of Statistics"	14-Mar-08	="Legal services"	03-Jan-08	30-Jun-08	11000.00	="SON27634"	="Blake Dawson"	14-Mar-08 02:47 PM	

+="CN65658"	"Construction Works for NSW Office Fitout Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	03-Jan-08	30-Jun-08	126665.10	=""	="The Builder Construction Group International Pty Limited"	14-Mar-08 02:48 PM	

+="CN65659"	"Recovery of Increase in Statutory Outgoings 2006/07 FY"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	07-Jan-08	30-Jun-08	103591.94	=""	="Knight Frank Australia Pty Ltd"	14-Mar-08 02:48 PM	

+="CN65660"	"Focus group testing for Census 2011"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	11-Jan-08	29-Feb-08	27720.00	=""	="Market Attitude Research Serv"	14-Mar-08 02:48 PM	

+="CN65661"	"Copy charges"	="Australian Bureau of Statistics"	14-Mar-08	="Computer services"	11-Jan-08	10-Jan-10	14980.01	=""	="Sharp Corp Aust"	14-Mar-08 02:48 PM	

+="CN65662"	"Labour and Maintenance Services for Block and Stack Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	15-Jan-08	31-May-08	11000.00	=""	="Skilled Group Limited"	14-Mar-08 02:48 PM	

+="CN65663"	"Printing"	="Australian Bureau of Statistics"	14-Mar-08	="Printed media"	21-Jan-08	29-Feb-08	70048.00	=""	="Canprint Communications"	14-Mar-08 02:49 PM	

+="CN65664"	"Stage 1 Construction for Block and Stack Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	21-Jan-08	30-Jun-08	79200.00	=""	="Isis Projects Pty Ltd"	14-Mar-08 02:49 PM	

+="CN65665"	"Computer software"	="Australian Bureau of Statistics"	14-Mar-08	="Components for information technology or broadcasting or telecommunications"	21-Jan-08	20-Jan-09	19250.00	=""	="Senetas Corporation Ltd"	14-Mar-08 02:49 PM	

+="CN65666"	"Telecommonication accessories"	="Australian Bureau of Statistics"	14-Mar-08	="Components for information technology or broadcasting or telecommunications"	22-Jan-08	22-Feb-08	44864.05	=""	="Dimension Data Aust P/L"	14-Mar-08 02:49 PM	

+="CN65667"	"Presentation of 2 sessions of the 3 day "ITIL Essentials" training course for up 16 attendees"	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	23-Jan-08	27-Jun-08	21120.00	=""	="Alc Training P/L"	14-Mar-08 02:49 PM	

+="CN65668"	"Stage 1 Demolition Works for Tas Accommodation Project"	="Australian Bureau of Statistics"	14-Mar-08	="Building and Construction and Maintenance Services"	24-Jan-08	31-Jan-08	71500.00	=""	="Hansen Yuncken"	14-Mar-08 02:50 PM	

+="CN65669"	"Computer accessories"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	24-Jan-08	24-Feb-08	17020.63	=""	="Pacific Datacom"	14-Mar-08 02:50 PM	

+="CN65670"	"Recruitment consultant participation in TSD APS6 Bulk Recruitment 2008"	="Australian Bureau of Statistics"	14-Mar-08	="Human resources services"	07-Feb-08	28-Mar-08	27500.00	=""	="Finite Recruitment Pty Ltd"	14-Mar-08 02:50 PM	

+="CN65673"	"Leasing CO/ACT Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Dec-07	30-Jun-08	15200.15	=""	="Lease Plan"	14-Mar-08 02:50 PM	

+="CN65674"	"Interim Chief Financial Officer services"	="Australian Bureau of Statistics"	14-Mar-08	="Accounting and auditing"	03-Dec-07	01-Feb-08	38347.32	=""	="Debra Jane Foggin"	14-Mar-08 02:50 PM	

+="CN65675"	"maintenance charges, Jan-Mar 08"	="Australian Bureau of Statistics"	14-Mar-08	="Computer Equipment and Accessories"	01-Jan-08	30-Jun-08	22660.50	=""	="Ibm Australia Ltd"	14-Mar-08 02:51 PM	

+="CN65676"	"Vic office rent, Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Jan-08	30-Jun-08	214968.56	=""	="Investa Asset Management P/L"	14-Mar-08 02:51 PM	

+="CN65677"	"WA office rent, Jan 08."	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	01-Jan-08	30-Jun-08	214350.58	=""	="Knight Frank Australia Pty Ltd"	14-Mar-08 02:51 PM	

+="CN65678"	"VIC vehicle lease costs, Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Jan-08	30-Jun-08	13641.60	=""	="Lease Plan"	14-Mar-08 02:51 PM	

+="CN65679"	"NSW lease costs Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Motor vehicles"	01-Jan-08	30-Jun-08	12184.14	=""	="Lease Plan"	14-Mar-08 02:51 PM	

+="CN65680"	"electricity supply, 1 Dec 07-31 Jan 08"	="Australian Bureau of Statistics"	14-Mar-08	="Power generation"	02-Jan-08	30-Jun-08	11463.89	=""	="Energy Australia"	14-Mar-08 02:51 PM	

+="CN65682"	"Vic postal charges Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	07-Jan-08	30-Jun-08	22051.44	=""	="Australia Post"	14-Mar-08 02:52 PM	

+="CN65683"	"NSW bulk mail charges, p/e 31 Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	07-Jan-08	30-Jun-08	15091.82	=""	="Australia Post"	14-Mar-08 02:52 PM	

+="CN65684"	"bulk postal charges, p/e 31Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	07-Jan-08	30-Jun-08	19274.40	=""	="Australia Post"	14-Mar-08 02:52 PM	

+="CN65685"	"NSW DCU bulk mail charges, p/e 31Dec 07"	="Australian Bureau of Statistics"	14-Mar-08	="Mail and cargo transport"	07-Jan-08	30-Jun-08	55406.96	=""	="Australia Post"	14-Mar-08 02:52 PM	

+="CN65691"	"T/ID: COMAU/A Qld office rent, Feb 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	15-Jan-08	30-Jun-08	146698.76	=""	="Gpt Group"	14-Mar-08 02:53 PM	

+="CN65692"	"T/no: 57611; rent for Feb 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	18-Jan-08	30-Jun-08	13732.82	=""	="L J Hooker Commercial"	14-Mar-08 02:53 PM	

+="CN65693"	"T.no: COMAUA1; rent for Feb 08"	="Australian Bureau of Statistics"	14-Mar-08	="Real estate services"	22-Jan-08	30-Jun-08	189189.49	=""	="Jones Lang Lasalle Sa"	14-Mar-08 02:53 PM	

+="CN65696"	":JAN-2008"	="Australian Bureau of Statistics"	14-Mar-08	="Passenger transport"	28-Jan-08	30-Jun-08	109569.04	=""	="American Express Australia Limit"	14-Mar-08 02:53 PM	

+="CN65694"	"DETECTING SET, MINE C/W HEADSET, BATTERY PACK & CABLE"	="Defence Materiel Organisation"	14-Mar-08	="Detectors"	14-Mar-08	28-Mar-08	16759.60	=""	="MINELAB ELECTRONICS PTY LTD"	14-Mar-08 02:54 PM	

+="CN65698"	"BOISE:JAN-2008"	="Australian Bureau of Statistics"	14-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	38173.28	=""	="Boise Cascade Office Products"	14-Mar-08 02:54 PM	

+="CN65695"	"1. Cable assembly, power, electrical, NSN 6150-66-155-5736, M/C Z5199, P/N 12-00274, qty 15. 2. Reel, cable, heavy duty, NSN 8130-66-155-5749, M/C Z5199, P/N 12-00277."	="Defence Materiel Organisation"	14-Mar-08	="Electrical cable and accessories"	20-Dec-07	19-Feb-08	15613.13	=""	="Eylex Pty Ltd"	14-Mar-08 02:54 PM	

+="CN65699"	"MONITOR PATIENT VITAL SIGNS & ACCESSORIES"	="Defence Materiel Organisation"	14-Mar-08	="Transport or mobile multiparameter vital sign units or accessories"	19-Feb-08	14-Apr-08	544649.12	=""	="WELCH ALLYN AUSTRALIA P/L"	14-Mar-08 03:06 PM	

+="CN65700"	"Handle, carrying, A, drum reel, mild steel, NSN 3895-66-128-2538, M/C Z7101, P/N CR-2-13, qty 25."	="Defence Materiel Organisation"	14-Mar-08	="Electrical cable and accessories"	11-Dec-07	08-Jan-08	10325.00	=""	="BB Composite Laminates"	14-Mar-08 03:12 PM	

+="CN65702"	"Operational backpacks"	="Department of Defence"	14-Mar-08	="Backpacks"	14-Mar-08	28-Apr-08	143990.00	=""	="Legear"	14-Mar-08 03:34 PM	

+="CN65703"	"Waveguide assembly, WR 75 twist flex, NSN 5985-01-519-5002, M/C 1GD22, P/N 804-733, qty 7."	="Defence Materiel Organisation"	14-Mar-08	="Communications Devices and Accessories"	06-Feb-08	19-Mar-08	15565.00	=""	="Page Data Pty Ltd"	14-Mar-08 03:39 PM	

+="CN65704"	"Crank, handle, NSN 5340-66-140-7884, M/C 0F6V7, P/N 801-273-501, qty 2."	="Defence Materiel Organisation"	14-Mar-08	="Electrical cable and accessories"	29-Jan-08	02-Apr-08	12029.60	=""	="Associated Aircraft Manufacturing"	14-Mar-08 03:47 PM	

+="CN65705"	"Case, electronic communications equipment, NSN 5895-66-154-3884, M/C Z07N0, P/N MP346, qty 512."	="Defence Materiel Organisation"	14-Mar-08	="Electronic Components and Supplies"	23-Jan-08	25-Jan-08	23040.00	=""	="Integrated Wireless"	14-Mar-08 04:05 PM	

+="CN65706"	" MONITOR OXYGEN & ACCESORIES "	="Defence Materiel Organisation"	14-Mar-08	="Oxygen monitors or supplies"	19-Feb-08	14-Mar-08	18116.39	=""	="MSA AUST P/L"	14-Mar-08 04:11 PM	

+="CN65708"	"Cable assembly, radio frequency, NSN 5995-66-144-2772, M/C Z0979, P/N 73110-2-100, qty 5."	="Defence Materiel Organisation"	14-Mar-08	="Electrical cable and accessories"	11-Dec-07	25-Mar-08	12182.50	=""	="Eylex Pty Ltd"	14-Mar-08 04:16 PM	

+="CN65714"	"work stations"	="Royal Australian Mint"	17-Mar-08	="Work benches"	28-Feb-08	28-Feb-08	24101.00	=""	="BAC AUSTRALIAN SYSTEMS P/L"	17-Mar-08 08:42 AM	

+="CN65715"	"Various Parts - ASLAV"	="Department of Defence"	17-Mar-08	="Armoured fighting vehicles"	13-Mar-08	19-Jun-08	35944.26	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Mar-08 08:45 AM	

+="CN65716"	"Various Parts - ASLAV"	="Department of Defence"	17-Mar-08	="Armoured fighting vehicles"	08-Mar-08	01-Jun-08	42507.75	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Mar-08 08:48 AM	

+="CN65717"	"packaging"	="Royal Australian Mint"	17-Mar-08	="Packaging materials"	28-Feb-08	12-Jun-08	18425.00	=""	="DAVIES FERGUSON PTY LTD"	17-Mar-08 08:53 AM	

+="CN65718"	"packaging"	="Royal Australian Mint"	17-Mar-08	="Packaging materials"	28-Feb-08	12-Jun-08	36300.00	=""	="DAVIES FERGUSON PTY LTD"	17-Mar-08 08:58 AM	

+="CN65720"	"Temporary staffing - Michael Chertok"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	17-Mar-08	09-May-08	24000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:13 AM	

+="CN65721"	"Contractor Services - Paul Harvey"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	17-Mar-08	30-Apr-08	28777.06	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:13 AM	

+="CN65722"	"Protiviti SAP Assure maintenance fee"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Software"	31-Jan-08	31-Jan-10	22000.00	="TRS08/035"	="PROTIVITI PTY LTD"	17-Mar-08 09:13 AM	

+="CN65723"	"Surface Transport Security Review"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Security and personal safety"	07-Feb-08	18-Apr-08	83050.00	=""	="GHD Pty Ltd"	17-Mar-08 09:13 AM	

+="CN65724"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	17-Mar-08	18-Apr-08	25000.00	="TRS06/017"	="Peoplebank Australia Ltd"	17-Mar-08 09:13 AM	

+="CN65725"	"Legal Services Expenditure 6995"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	11-Aug-06	30-Jun-09	18263.30	="TRS06/175"	="Clayton Utz Canberra"	17-Mar-08 09:13 AM	

+="CN65726"	"VMWare Server"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Computer Equipment and Accessories"	24-Jan-08	24-Feb-08	16327.09	="TRS08/057"	="CORPORATE EXPRESS"	17-Mar-08 09:14 AM	

+="CN65727"	"Branded promotional items"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Office supplies"	29-Nov-07	30-Jun-08	17554.89	="TRS07/208"	="Inkspott Promotions"	17-Mar-08 09:14 AM	

+="CN65728"	"Writing and editing services"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Graphic design"	12-Mar-08	31-May-08	16000.00	="TRS06/036"	="Cinden Lester Communications"	17-Mar-08 09:14 AM	

+="CN65729"	"Personal Efficiency Program"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	31-Jan-08	30-Apr-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	17-Mar-08 09:14 AM	

+="CN65730"	"Contractor Services -Christopher Roberts"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	04-Feb-08	30-Jun-08	75148.46	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:14 AM	

+="CN65731"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	01-Dec-07	29-Feb-08	36094.08	="TRS06/017"	="Hyro Solutions Pty Ltd"	17-Mar-08 09:14 AM	

+="CN65732"	"LEGAL SERVICES EXPENDITURE 7013 Legal Services Expenditure 7013"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	11-Aug-06	30-Jun-09	16003.46	="TRS06/175"	="MINTER ELLISON LAWYERS"	17-Mar-08 09:14 AM	

+="CN65733"	"Training Management Plan"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	10-Dec-07	21-Dec-07	25000.00	=""	="APIS CONSULTING"	17-Mar-08 09:15 AM	

+="CN65734"	"Australian Transport Council Meeting"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Restaurants and catering"	03-Jan-08	29-Feb-08	10893.00	=""	="HYATT HOTEL CANBERRA"	17-Mar-08 09:15 AM	

+="CN65735"	"Legal Services Expenditure 6826"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	04-Mar-08	30-Jun-09	100255.93	="TRS06/175"	="MINTER ELLISON LAWYERS"	17-Mar-08 09:15 AM	

+="CN65746-A2"	"07/2481 - Program Assurance Services - 1599-1944 - Consultancy and Business Services Panel (06/1599)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	04-Feb-08	19-May-09	51600.00	="06/1599"	="Oakton AA Services Pty Ltd"	17-Mar-08 10:36 AM	

+="CN65747-A1"	"07/2516 - Program Review - Consultancy and Business Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	05-Feb-08	27-Apr-08	47561.00	=""	="Grosvenor Management Consulting"	17-Mar-08 10:39 AM	

+="CN65748"	"08/2544 - IT Contractor - 1599-1950 - Consultantcy and Business Services Panel - 06/1599 (CPE004543-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	21-Feb-08	01-Jul-08	135000.00	=""	="EDS (Australia) Pty Ltd"	17-Mar-08 10:43 AM	

+="CN65749"	"08/2588 - Project Manager - 0717-0890 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Mar-08	="Temporary personnel services"	03-Mar-08	03-Aug-08	79000.00	=""	="Paxus Australia Pty Ltd"	17-Mar-08 10:52 AM	

+="CN65751-A4"	"07/2455 - IT Contractor - 1599-1984 - C&B Services Panel - 06/1599 (CPE004477-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	20-Feb-08	30-Jun-10	251125.00	=""	="ThinkPlace Pty Ltd"	17-Mar-08 10:56 AM	

+="CN65755"	"08/2590 - Survey Services - 1599-1976 - C&B Services Panel 06/1599 - (CPO020022)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	28-Feb-08	07-Apr-08	15000.00	=""	="Worplace Research Associates Pty Ltd"	17-Mar-08 11:05 AM	

+="CN65754"	" SUPPLY OF REPAIR VEHICLE PARTS "	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	12493.05	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 11:06 AM	

+="CN65757"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	14-Mar-08	14-Apr-08	13078.73	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 11:14 AM	

+="CN65758"	"08/2564 - Project Manager - 1599-1981 - C&B Services Panel - 06/1599 (CPE004580-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	03-Mar-08	13-Jun-08	77990.00	=""	="Point Project Management Pty Ltd"	17-Mar-08 11:19 AM	

+="CN65760-A1"	" EDRMS Project Implementation "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	01-Dec-07	30-Jun-08	39584.00	=""	="Trinogy Systems Pty Ltd"	17-Mar-08 11:21 AM	

+="CN65761-A1"	" 2007-08 Dairy Adjustment Authority Financial Statement Audit "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	01-Jan-99	31-Oct-08	19250.00	=""	="Ernst and Young - VIC"	17-Mar-08 11:22 AM	

+="CN65762-A1"	" 2007-08 Design of Corporate Publications "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Printing"	03-Dec-07	23-Jan-08	14431.89	=""	="Comcom Pty Ltd T/A Zoo"	17-Mar-08 11:22 AM	

+="CN65763-A1"	"RMS Business Case Consultancy"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	04-Jan-08	04-Mar-08	14520.00	=""	="Consolve Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65764-A2"	" Financial Statement Audits of teh Federal Court of Australia, the High Court of Australia and the Australian Public Service Commission. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	11-Mar-08	30-Oct-12	538628.00	=""	="WalterTurnbull Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65765-A6"	" Financial Statement Audit of Australian Fisheries Management Authority, Grains R&D, Land and Water R&D, Australian Research Council and Geoscience Australia. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	11-Mar-08	31-Oct-12	1054477.30	=""	="WalterTurnbull Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65766"	"Hays Personnel Services (Aust) Pty Ltd"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Personnel recruitment"	13-Nov-07	11-Feb-08	18062.65	=""	="Hays Personnel Services (Aust) Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65767-A1"	" In-house training 14-15 February 2008 "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Adult education"	13-Nov-07	15-Feb-08	11000.00	=""	="Australian Capital Training Group P/L"	17-Mar-08 11:22 AM	

+="CN65759"	"07/2416 - Procurement Services - 0717-0890 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Temporary personnel services"	19-Feb-08	07-Dec-08	125000.00	=""	="Paxus Australia Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65768-A1"	"Australian Government Accounting and Accountability training 18 - 19 February 2008"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Adult education"	13-Nov-07	19-Feb-08	11000.00	=""	="Australian Capital Training Group P/L"	17-Mar-08 11:22 AM	

+="CN65769-A1"	"Member of PASG Advisory Panel for Active After-School Communities Performance Audit"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	13-Nov-07	31-Jul-08	21820.00	=""	="James Ferguson"	17-Mar-08 11:23 AM	

+="CN65770-A1"	" ANAO Marketing and Advertising Review 2008 "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	14-Mar-99	30-Apr-02	21120.00	=""	="Comcom Pty Ltd T/A Zoo"	17-Mar-08 11:23 AM	

+="CN65771-A3"	" Consultancy services - Project to Refurbish 19 National Circuit Barton "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	24-Jan-08	30-Sep-09	175000.00	=""	="Coffey Projects (Australia) Pty Limited"	17-Mar-08 11:23 AM	

+="CN65772-A7"	" Financial Statement audits of Indigenous Business Australia and the Australian Institute of Aboriginal and Torres Strait Islander Studies.  Extended by two Option Years to 31 October 2011. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	26-Feb-08	31-Oct-11	1243485.50	="ANAOAM2007/876"	="Ascent Audit Pty Ltd"	17-Mar-08 11:23 AM	

+="CN65774-A2"	" Financial Statement audits of National Archives of Australia, National Library of Australia, National Museum of Australia and the Australian War Memorial. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	26-Feb-08	31-Oct-12	1113192.00	="ANAOAM2007/876"	="Ascent Audit Pty Ltd"	17-Mar-08 11:23 AM	

+="CN65775-A1"	" Relocate and upgrade audio equipment - Ground Floor Training Room "	="Australian National Audit Office (ANAO)"	17-Mar-08	="General building and office cleaning and maintenance services"	28-Feb-08	31-Mar-08	11150.56	=""	="Canberra Professional Equipment"	17-Mar-08 11:23 AM	

+="CN65776-A2"	" Financial Statement Audit of the National Gallery of Australia and Foundation. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	28-Feb-08	31-Oct-12	282650.00	="ANAOAM2007/876"	="RSM Bird Cameron"	17-Mar-08 11:24 AM	

+="CN65777-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	29-Feb-08	15-Aug-08	46200.00	=""	="Pricewaterhouse Coopers"	17-Mar-08 11:24 AM	

+="CN65778"	"Legal services"	="National Competition Council"	17-Mar-08	="Legal services"	08-Jan-06	31-Jan-08	18957.95	=""	="Clayton Utz"	17-Mar-08 11:48 AM	

+="CN65780"	"legal services"	="National Competition Council"	17-Mar-08	="Legal services"	08-Jan-08	31-Jan-08	25093.83	=""	="Clayton Utz"	17-Mar-08 12:04 PM	

+="CN65782"	"Legal Services"	="National Competition Council"	17-Mar-08	="Legal services"	02-Jan-08	31-Jan-08	11977.44	=""	="Australian Goverment Solocitor"	17-Mar-08 12:08 PM	

+="CN65783-A1"	"To develop the 2008 Education Resource, 'Australian Women in War',"	="Department of Veterans' Affairs"	17-Mar-08	="Specialised educational services"	03-Dec-07	04-Apr-08	177947.00	=""	="Ryebuck Media Pty Ltd"	17-Mar-08 12:08 PM	

+="CN65784"	"Licence and Maintenance 13/02/2008 to 12/02/2009."	="Department of Veterans' Affairs"	17-Mar-08	="Computer services"	13-Feb-08	12-Feb-09	61025.00	=""	="Compuware Asia-Pacific Pty Ltd"	17-Mar-08 12:08 PM	

+="CN65785"	"IBM Maintenance and RenewalSee Register for more detail and breakdown"	="Department of Veterans' Affairs"	17-Mar-08	="Computer services"	01-Mar-08	28-Feb-09	90252.00	=""	="IBM Australia Ltd"	17-Mar-08 12:08 PM	

+="CN65786"	"Restoration of the Cross of Sacrifice at the Wagga Wagga War Cemetery"	="Department of Veterans' Affairs"	17-Mar-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	13805.00	=""	="Jasper Swan Stonemasonery Pty Ltd"	17-Mar-08 12:09 PM	

+="CN65787"	"Broadcastin of the Anzac Day Dawn Service and Australian Service, Lone Pine, on 25 April each year at Gallipoli, Turkey for years 2008 - 2010."	="Department of Veterans' Affairs"	17-Mar-08	="Components for information technology or broadcasting or telecommunications"	01-Feb-08	25-Apr-10	540000.00	=""	="Australian Broadcasting Corporation"	17-Mar-08 12:09 PM	

+="CN65788"	"CONTRACT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	28-Feb-08	28-Feb-08	55176.00	=""	="PAXUS AUSTRALIA PTY LTD"	17-Mar-08 12:10 PM	

+="CN65790"	"TEMPORARY ADMIN ASSISTANT"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	21-Feb-08	21-Feb-08	36595.83	="SON50684"	="COX PURTELL"	17-Mar-08 12:11 PM	

+="CN65791"	"MS PROJECT SERVER EPM"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Information technology consultation services"	15-Feb-08	15-Feb-08	62540.50	=""	="STRATEGIC DATA MANAGEMENT"	17-Mar-08 12:11 PM	

+="CN65792"	"SECRETARIAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	30-Jan-08	29-Jan-09	52000.00	=""	="LISA PERRI"	17-Mar-08 12:11 PM	

+="CN65793"	"ALTERATION AND ALLOCATION OF WORKSTATIONS"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Building and Construction and Maintenance Services"	21-Feb-08	21-Feb-08	11253.00	=""	="CARRINGTON TRADING PTY LTD"	17-Mar-08 12:11 PM	

+="CN65794"	"ANNUAL AUDIT CONSULTANCY FEES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Audit services"	21-Feb-08	21-Feb-08	44000.00	=""	="ELIZABETH ALEXANDER"	17-Mar-08 12:11 PM	

+="CN65795"	"TEMPORARY STAFF"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	21-Feb-08	21-Feb-08	18919.03	=""	="MANPOWER SERVICES (AUSTRALIA) PTY LTD"	17-Mar-08 12:11 PM	

+="CN65796"	"STAFF CLIMATE SURVEY"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Business and corporate management consultation services"	21-Feb-08	21-Feb-08	66000.00	=""	="HEWITT ASSOCIATES PTY LTD"	17-Mar-08 12:11 PM	

+="CN65797"	"ITSM LICENCE MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Software maintenance and support"	29-Feb-08	29-Feb-08	67564.79	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	17-Mar-08 12:11 PM	

+="CN65798"	"RECORDS MANAGMENT CONSULTING"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Business intelligence consulting services"	29-Feb-08	29-Feb-08	27315.20	=""	="RECORDKEEPING INNOVATION PTY LTD"	17-Mar-08 12:12 PM	

+="CN65799"	"RECRUTIMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Recruitment services"	29-Feb-08	29-Feb-08	44000.00	=""	="PORTERALLEN HENDREN PTY LTD"	17-Mar-08 12:12 PM	

+="CN65800"	"SOFTWARE LICENSING"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Software or hardware engineering"	29-Feb-08	29-Feb-08	20130.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	17-Mar-08 12:12 PM	

+="CN65803"	" Legal Services "	="Australian Human Rights Commission"	17-Mar-08	="Legal services"	02-Apr-07	17-Jan-08	15300.00	=""	="A J Dever Pty Ltd"	17-Mar-08 12:28 PM	

+="CN65806"	"NSN 1650-00-808-0179, Control Shaft Assemblies"	="Defence Materiel Organisation"	17-Mar-08	="Aerospace systems and components and equipment"	17-Mar-08	12-Jan-09	277825.61	=""	="Milspec Services Pty Ltd"	17-Mar-08 01:26 PM	

+="CN65810"	"Counter, Electronic Digital readout"	="Defence Materiel Organisation"	17-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Mar-08	07-May-08	85552.28	=""	="AGILENT TECHNOLOGIES"	17-Mar-08 02:01 PM	

+="CN65812"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	11334.58	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 02:14 PM	

+="CN65814"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Mar-08	13852.79	=""	="MERCEDES-BENZ"	17-Mar-08 02:22 PM	

+="CN65815"	"NSN 1730-66-093-3146, Aircraft Chock Fittings"	="Defence Materiel Organisation"	17-Mar-08	="Aerospace systems and components and equipment"	13-Mar-08	21-Jul-08	15049.32	=""	="Milspec Services Pty Ltd"	17-Mar-08 02:29 PM	

+="CN65816-A1"	"Temporary Personnel"	="Australian Electoral Commission"	17-Mar-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	20160.00	="AEC06/019"	="Clicks IT Recruitment"	17-Mar-08 02:34 PM	

+="CN65818"	"Legal Services"	="Australian Electoral Commission"	17-Mar-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	="AEC06/032"	="Australian Government Solicitor"	17-Mar-08 02:40 PM	

+="CN65817"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	10702.66	=""	="MERCEDES-BENZ"	17-Mar-08 02:45 PM	

+="CN65819-A1"	"Provision of demountable toilet block at Bribane airport"	="Australian Federal Police"	17-Mar-08	="Portable toilettes"	01-Feb-08	30-Jun-08	75268.60	=""	="Manteena Pty Ltd"	17-Mar-08 02:46 PM	

+="CN65820"	"Courier Services"	="Australian Electoral Commission"	17-Mar-08	="Postal and small parcel and courier services"	21-Dec-07	21-Dec-10	106700.00	="S07/08/071"	="Toll Priority"	17-Mar-08 02:48 PM	

+="CN65821"	"Conduct the Pathology Payments Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	06-Jul-07	22-Feb-08	188540.00	=""	="Ascent Governance Pty Ltd"	17-Mar-08 02:51 PM	

+="CN65822"	"Print Advertising"	="Australian Electoral Commission"	17-Mar-08	="Newspaper advertising"	01-Oct-02	30-Jun-08	19448.66	=""	="HMA Blaze"	17-Mar-08 02:57 PM	

+="CN65825"	"Undertake DEWR's Administration of Job Network Service Fees audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	04-Jul-07	03-Jul-08	264000.00	=""	="KNJ Professional Services Pty Ltd"	17-Mar-08 03:06 PM	

+="CN65826-A1"	"Security upgrade of international mission"	="Australian Federal Police"	17-Mar-08	="Security surveillance and detection"	19-Feb-08	08-Jul-08	542522.20	=""	="Manteena Pty Ltd"	17-Mar-08 03:07 PM	

+="CN65829"	"HOSE ASSEMBLY, NONMETALLIC RUBBER LINED, REINFORCED, 30 M LG, C/W BIC MALE AND FEMALE ALUMINIUM ALLOY COUPLINGS, 64 MM ID"	="Defence Materiel Organisation"	17-Mar-08	="Water hoses"	06-Feb-08	27-Feb-08	15523.20	=""	="CHUBB FIRE SAFETY LTD"	17-Mar-08 03:23 PM	

+="CN65831"	"Assist with the Management Of Credit Card Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	09-Jul-07	16-May-08	123200.00	=""	="Pat Farrelly and Associates Pty Ltd"	17-Mar-08 03:38 PM	

+="CN65832"	"Advisory and management services for the preperation and release of RFT's for tender for supply of Audio and visual equiptment; Accomadation services; and venue servicesfor the AFP."	="Australian Federal Police"	17-Mar-08	="Audio and visual equipment"	03-Mar-08	01-Jul-08	55000.00	="22-2005"	="Qinetiq"	17-Mar-08 03:41 PM	

+="CN65833-A1"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	17-Mar-08	="Community and social services"	01-Jul-06	30-Jun-07	39682.15	=""	="Ngaliwurru-Wuli Association (Timber Creek)"	17-Mar-08 03:45 PM	

+="CN65835-A4"	"Software licence, installation and support agreement for Fleet Management"	="Australian Federal Police"	17-Mar-08	="Fleet management services"	29-Jun-05	28-Feb-12	145311.29	=""	="Open Windows Australia Pty Ltd"	17-Mar-08 03:54 PM	

+="CN65840"	"Early intervention costs"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	11000.00	=""	="Konekt Australia Pty Ltd"	17-Mar-08 04:04 PM	

+="CN65841"	"Translating services"	="Centrelink"	17-Mar-08	="Writing and translations"	11-Jul-07	30-Jun-08	11000.00	=""	="On-Call Interpreters and Translators"	17-Mar-08 04:04 PM	

+="CN65842"	"Courier service"	="Centrelink"	17-Mar-08	="Transport operations"	25-Feb-08	30-Jun-08	123200.00	=""	="Toll Priority"	17-Mar-08 04:04 PM	

+="CN65843"	"Courier services"	="Centrelink"	17-Mar-08	="Office supplies"	06-Sep-07	30-Jun-08	16498.90	=""	="Toll Fast"	17-Mar-08 04:04 PM	

+="CN65844"	"Advertising"	="Centrelink"	17-Mar-08	="Advertising"	13-Mar-08	30-Jun-08	16500.00	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:04 PM	

+="CN65845"	"Sustenance and venue hire"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Jun-08	17039.00	=""	="Windmill Motel"	17-Mar-08 04:05 PM	

+="CN65846"	"Mechanical Services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Sep-07	21-Apr-08	16753.00	=""	="IA Group Pty Ltd (Interiors Austral"	17-Mar-08 04:05 PM	

+="CN65847"	"Accommodation costs for the NT emergency response teams"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	12-Feb-08	30-Jun-08	10982.40	=""	="White Gum Motel"	17-Mar-08 04:05 PM	

+="CN65848"	"Freight"	="Centrelink"	17-Mar-08	="Transportation services equipment"	29-Feb-08	30-Jun-08	220000.00	=""	="Cope Transport"	17-Mar-08 04:05 PM	

+="CN65849"	"Accommodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	14-Feb-08	30-Jun-08	26000.01	=""	="Tapatjatjaka Community Govt Council"	17-Mar-08 04:05 PM	

+="CN65850"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	22-Feb-08	30-Jun-08	36500.00	=""	="St John Ambulance Australia(NT) Inc"	17-Mar-08 04:05 PM	

+="CN65851"	"Accommodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	18-Jan-08	30-May-08	19175.01	=""	="Jessica Court Serviced Apartments"	17-Mar-08 04:05 PM	

+="CN65852"	"Transport Operations"	="Centrelink"	17-Mar-08	="Transport operations"	13-Mar-08	30-Jun-08	20000.01	=""	="Murin Travel & Freight Services"	17-Mar-08 04:05 PM	

+="CN65853"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	35000.00	=""	="Dept of Human Services"	17-Mar-08 04:06 PM	

+="CN65854-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	21-Feb-08	17-Mar-08	10230.00	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:06 PM	

+="CN65855-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Mar-08	30-Jun-08	18700.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65856"	"Project Management Services for refurbishment, Melton, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Feb-08	30-Jun-08	29700.00	=""	="James Millar Architects"	17-Mar-08 04:06 PM	

+="CN65857"	"Staff flu vaccinations"	="Centrelink"	17-Mar-08	="Healthcare Services"	01-Feb-08	30-Jun-08	16500.00	=""	="Health for Industry"	17-Mar-08 04:06 PM	

+="CN65858"	"Energy Management Advisory Services"	="Centrelink"	17-Mar-08	="Environmental Services"	01-Feb-08	30-Jun-08	19800.00	=""	="Norman Disney & Young"	17-Mar-08 04:06 PM	

+="CN65860"	"Screens, posts and electrical cords for fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	04-Feb-08	15-Apr-08	165695.20	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:06 PM	

+="CN65861"	"Fitout management services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-09	82000.00	=""	="Interior Dynamics Australia Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65862"	"Searches"	="Centrelink"	17-Mar-08	="Public administration and finance services"	10-Jul-07	30-Aug-08	13820.00	=""	="Landgate"	17-Mar-08 04:06 PM	

+="CN65863"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	29-Feb-08	07-Mar-08	179236.71	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65864"	"Supply and install carpet"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	29-Feb-08	30-Jun-08	115025.35	=""	="Interface Flor"	17-Mar-08 04:07 PM	

+="CN65865"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	29-Feb-08	01-Mar-09	216216.00	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65866"	"3 Digital recording sytems"	="Centrelink"	17-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Feb-08	14-Mar-08	39549.40	=""	="Tape Products Research"	17-Mar-08 04:07 PM	

+="CN65867"	"Video Conferencing"	="Centrelink"	17-Mar-08	="Telecommunications media services"	05-Jul-05	30-Jun-06	33000.00	=""	="Telstra"	17-Mar-08 04:07 PM	

+="CN65868"	"Transport Services"	="Centrelink"	17-Mar-08	="Transport operations"	28-Feb-08	30-Jun-08	18084.61	=""	="Cabcharge Australia Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65869"	"Transport operations"	="Centrelink"	17-Mar-08	="Transport operations"	28-Feb-08	30-Jun-08	25067.11	=""	="Cabcharge Australia Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65871"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	13-Feb-08	30-Jun-08	10890.00	=""	="Chandler Macleod Group"	17-Mar-08 04:07 PM	

+="CN65873"	"Legal Services"	="Centrelink"	17-Mar-08	="Legal services"	27-Feb-08	30-Jun-08	550000.00	=""	="Sparke Helmore Solicitors"	17-Mar-08 04:08 PM	

+="CN65874"	"Information Services"	="Centrelink"	17-Mar-08	="Computer services"	12-Mar-08	30-Jun-08	121000.00	=""	="Australian Business Research"	17-Mar-08 04:08 PM	

+="CN65875"	"Vendue hire and sustenance"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Jun-08	19045.40	=""	="Best Western Windmill Motel"	17-Mar-08 04:08 PM	

+="CN65872"	" Website Development Services "	="Department of the Prime Minister and Cabinet"	17-Mar-08	="World wide web WWW site design services"	25-Oct-07	30-Jun-08	42000.00	=""	="OPC Pty Ltd"	17-Mar-08 04:08 PM	

+="CN65876"	"Editing, Camera Operator"	="Centrelink"	17-Mar-08	="Telecommunications media services"	10-Sep-07	30-Jun-08	11000.00	=""	="Arttractions"	17-Mar-08 04:08 PM	

+="CN65877"	"Courier services"	="Centrelink"	17-Mar-08	="Mail and cargo transport"	03-Mar-08	30-Jun-08	65161.80	=""	="Toll Priority"	17-Mar-08 04:08 PM	

+="CN65878"	"Customer Searches"	="Centrelink"	17-Mar-08	="Legal services"	07-Mar-08	27-Jun-08	26000.00	=""	="Dept Attorney General"	17-Mar-08 04:08 PM	

+="CN65879"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	15258.10	=""	="Resolutions"	17-Mar-08 04:08 PM	

+="CN65880"	"Advertising"	="Centrelink"	17-Mar-08	="Printed media"	13-Feb-08	30-Jun-08	34771.37	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:08 PM	

+="CN65881"	"Architectural Services"	="Centrelink"	17-Mar-08	="Management advisory services"	31-Jan-08	30-Jun-08	38380.00	=""	="Integrated Space Ltd"	17-Mar-08 04:09 PM	

+="CN65882"	"Search fees for fraud investigations"	="Centrelink"	17-Mar-08	="Information services"	28-Sep-07	30-Jun-08	72727.27	=""	="Executive Security & Investigations"	17-Mar-08 04:09 PM	

+="CN65883"	"Early intervention costs"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	22000.00	=""	="CRS Australia"	17-Mar-08 04:09 PM	

+="CN65884"	"Government Rates and Land Tax"	="Centrelink"	17-Mar-08	="Utilities"	20-Feb-08	30-Jun-08	53584.00	=""	="Tuggeranong Office Park Pty Limited"	17-Mar-08 04:09 PM	

+="CN65885"	"Hotel, Lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	30-Jun-08	16348.55	=""	="Spotless Services Australia Ltd"	17-Mar-08 04:09 PM	

+="CN65886"	"Hotel, Lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	30-Jun-08	20944.00	=""	="Thamarrurr Regional Council"	17-Mar-08 04:09 PM	

+="CN65887"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	13200.00	=""	="D'Arcy Consulting Group Pty Ltd"	17-Mar-08 04:09 PM	

+="CN65888"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	20-Feb-08	30-Jun-08	34000.01	=""	="IBM Australia Pty Ltd"	17-Mar-08 04:09 PM	

+="CN65889"	"Demountable fitout alterations"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Jun-08	30000.00	=""	="Schiavello (ACT) Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65890"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	25000.00	=""	="Interface21 Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65891"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	12420.00	=""	="Computer Corporation of  America"	17-Mar-08 04:10 PM	

+="CN65892-A1"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	12420.00	=""	="Computer Corporation of America"	17-Mar-08 04:10 PM	

+="CN65893"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	09-Mar-08	28435.00	=""	="Integrated Cabling Solutions Pty Lt"	17-Mar-08 04:10 PM	

+="CN65894-A1"	"Advertising"	="Centrelink"	17-Mar-08	="Advertising"	21-Feb-08	30-Jun-08	19999.10	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65895"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	21-Feb-08	30-Jun-08	30000.30	=""	="CIT Solutions Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65839"	" Electron Tube "	="Defence Materiel Organisation"	17-Mar-08	="Air transportation support systems and equipment"	09-Aug-07	05-Feb-08	111334.00	=""	="Communications & Power Industries"	17-Mar-08 04:10 PM	

+="CN65896"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	23-Mar-08	26378.00	=""	="Stowe Australia Pty Ltd"	17-Mar-08 04:11 PM	

+="CN65898"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	22-Feb-08	30-Jun-08	15000.00	=""	="Ntaria Council Inc"	17-Mar-08 04:11 PM	

+="CN65899"	"Office Supplies"	="Centrelink"	17-Mar-08	="Office supplies"	22-Feb-08	30-Jun-08	15000.00	=""	="Barbeques Galore"	17-Mar-08 04:11 PM	

+="CN65900"	"Transportation services equipment"	="Centrelink"	17-Mar-08	="Transportation services equipment"	22-Feb-08	30-Jun-08	15000.00	=""	="Top Gear Car & 4WD Centre"	17-Mar-08 04:11 PM	

+="CN65901"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	22-Feb-08	30-Jun-08	50000.01	=""	="SMART - NT"	17-Mar-08 04:11 PM	

+="CN65897"	"Supply Ten XTL5000 Mobile Radios"	="Australian Federal Police"	17-Mar-08	="Two way radios"	25-Feb-08	25-Jun-08	35074.60	=""	="Motorola Australia Pty Limited"	17-Mar-08 04:11 PM	

+="CN65902"	"Transport operations"	="Centrelink"	17-Mar-08	="Transport operations"	22-Feb-08	30-Jun-08	50000.01	=""	="Tiwi Travel & Freight"	17-Mar-08 04:11 PM	

+="CN65903-A1"	"Security Guard Services"	="Centrelink"	17-Mar-08	="Security and personal safety"	25-Feb-08	30-Jun-08	17036.80	=""	="Fly Security Services"	17-Mar-08 04:12 PM	

+="CN65905"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	26-Feb-08	30-Jun-08	13100.01	=""	="Country Comfort Greenway"	17-Mar-08 04:12 PM	

+="CN65906"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	26-Feb-08	30-Jun-08	44550.00	=""	="Ginger Catering"	17-Mar-08 04:12 PM	

+="CN65907"	"Fitout management services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	11000.00	=""	="James Millar Architects"	17-Mar-08 04:12 PM	

+="CN65908"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	16000.00	=""	="IBM Australia Pty Ltd"	17-Mar-08 04:12 PM	

+="CN65909"	"Office refurbishment"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-08	72311.80	=""	="Formula Interiors NSW"	17-Mar-08 04:12 PM	

+="CN65910"	"Office fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	20-Apr-08	303360.20	=""	="Schiavello (WA) Pty Ltd"	17-Mar-08 04:12 PM	

+="CN65911"	"Hotel, lodging and other meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Galiwinku Community Inc"	17-Mar-08 04:13 PM	

+="CN65912"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Lajamanu Community Government"	17-Mar-08 04:13 PM	

+="CN65913"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	35200.00	=""	="Alice Springs Airport Shuttle P/L"	17-Mar-08 04:13 PM	

+="CN65914"	"Hotel, lodging and meeting facilities."	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	07-Feb-08	30-Jun-08	32000.00	=""	="Pavilion on Northbourne"	17-Mar-08 04:13 PM	

+="CN65916"	"Customer Service Centre Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Feb-08	04-Feb-09	213671.70	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:13 PM	

+="CN65917"	"Customer Service Centre Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Feb-08	26-Dec-08	165313.50	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:13 PM	

+="CN65918"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	08-Feb-08	30-Jun-08	20000.00	=""	="Amoonguna Community Council"	17-Mar-08 04:13 PM	

+="CN65919"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	11-Feb-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:13 PM	

+="CN65920"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	13-Feb-08	09-Mar-08	13583.90	=""	="Desa Australia (QLD) Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65921"	"Flu Vaccinations"	="Centrelink"	17-Mar-08	="Human resources services"	13-Feb-08	30-Jun-08	11032.78	=""	="Peak Health Management"	17-Mar-08 04:14 PM	

+="CN65922"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	03-Mar-08	17182.00	=""	="Stowe Australia Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65923"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	15-Feb-08	30-Jun-08	27272.73	=""	="S & L Wicik"	17-Mar-08 04:14 PM	

+="CN65924"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	15-Feb-08	16-Mar-08	56779.80	=""	="DESA Australia Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65925"	"Furniture for Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Feb-08	18-Feb-08	56714.90	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:14 PM	

+="CN65926-A1"	"External Training"	="Centrelink"	17-Mar-08	="Specialised educational services"	18-Feb-08	30-Jun-08	75780.00	=""	="Australian Forensic Services Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65927"	"Employee Assistance Program Critical Incidents"	="Centrelink"	17-Mar-08	="Human resources services"	18-Feb-08	30-Jun-08	12000.00	=""	="OSA Group"	17-Mar-08 04:14 PM	

+="CN65928"	"Fitout management of Palm Beach, QLD refurbishment"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Feb-08	19-Dec-08	17120.00	=""	="Interior Dynamics Australia Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65929"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	14320.00	=""	="Excom Education Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65930-A2"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	28-Feb-08	30-Jun-11	683298.00	=""	="Techpoint Consulting Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65931"	"Business administration services"	="Centrelink"	17-Mar-08	="Business administration services"	01-Feb-08	30-Jun-08	24803.77	=""	="Corporate Executive Board"	17-Mar-08 04:15 PM	

+="CN65932-A1"	"Presentation Aids"	="Centrelink"	17-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Feb-08	30-Apr-08	11480.98	=""	="Electroboard Solutions Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65933-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	01-Feb-08	30-Apr-08	22299.35	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:15 PM	

+="CN65934"	"Office Chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	21-Mar-08	25086.60	=""	="Arteil (WA) Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65935"	"Customer Chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	02-Apr-08	17407.50	=""	="Solitaire Seating"	17-Mar-08 04:16 PM	

+="CN65936"	"Engineering services for Caloundra, QLD refurbishment"	="Centrelink"	17-Mar-08	="Professional engineering services"	04-Feb-08	30-Jun-08	12241.00	=""	="Smith Madden Group"	17-Mar-08 04:16 PM	

+="CN65937"	"Furniture for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	04-Feb-08	30-Jun-08	42498.50	=""	="Emtek Furniture"	17-Mar-08 04:16 PM	

+="CN65938"	"Business administration services"	="Centrelink"	17-Mar-08	="Business administration services"	04-Feb-08	30-Jun-08	27500.00	=""	="University of Technology Housing Se"	17-Mar-08 04:16 PM	

+="CN65939"	"Software Licences"	="Centrelink"	17-Mar-08	="Software"	05-Feb-08	05-Feb-08	45346.06	=""	="Kaz Group Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65940"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	05-Feb-08	30-Apr-08	92400.00	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65941"	"Workstations and Storage Units for Coffs Harbour, NSW fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	30-Jun-08	442365.00	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65942"	"carpet tiles for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Mineral and Textile and Inedible Plant and Animal Materials"	05-Feb-08	30-Jun-08	23275.34	=""	="Interface Flor"	17-Mar-08 04:17 PM	

+="CN65943"	"Chairs and table For Coffs Harbour, NSW Refit"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	30-Jun-08	60141.40	=""	="Emtek Furniture"	17-Mar-08 04:17 PM	

+="CN65944"	"Office refurbishment, Newcastle, NSW"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Feb-08	06-Feb-08	32369.84	=""	="David J Smith Building Pty Ltd"	17-Mar-08 04:17 PM	

+="CN65945"	"Office Furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	06-Feb-08	04-Mar-08	30877.00	=""	="Bentley House Commercial Interiors"	17-Mar-08 04:17 PM	

+="CN65946"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Hinds Workforce Research Pty Ltd"	17-Mar-08 04:17 PM	

+="CN65947"	"Furniture"	="Centrelink"	17-Mar-08	="Office supplies"	07-Feb-08	28-Feb-08	11065.12	=""	="Ricmar Australia Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65948-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	07-Feb-08	28-Feb-10	803140.80	="RTFS07/0129"	="Peoplebank Australia Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65949"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	08-Feb-08	02-May-08	74976.00	="RTFS07/0129"	="Sensory7 Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65950"	"Visitors chairs for Geraldton, WA"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	08-Feb-08	18-Apr-08	14245.00	=""	="Solitaire Seating"	17-Mar-08 04:18 PM	

+="CN65951"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	11-Feb-08	30-Jun-08	76879.00	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65952-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	01-Feb-08	01-Feb-09	171771.60	=""	="Ekonsulting Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65953"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	11-Mar-08	30-Jun-08	68468.40	=""	="Verossity Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65954"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	12-Feb-08	12-Aug-08	91891.80	=""	="Compas Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65955"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	14-Feb-09	209008.80	=""	="Compas Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65956"	"Fitout management - Launceston, TAS"	="Centrelink"	17-Mar-08	="Professional engineering services"	07-May-07	30-Jun-08	10728.01	=""	="James Millar Architects"	17-Mar-08 04:18 PM	

+="CN65957"	"General freight services"	="Centrelink"	17-Mar-08	="Transport operations"	18-Jul-07	30-Jun-08	15400.00	=""	="TNT Australia Pty Limited"	17-Mar-08 04:19 PM	

+="CN65958"	"Workstations and storage units"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Mar-08	30-Jun-08	11431.20	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65959"	"Property fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	21890.00	=""	="Designphase Australia"	17-Mar-08 04:19 PM	

+="CN65960"	"Signage"	="Centrelink"	17-Mar-08	="Signage and accessories"	02-Oct-07	29-Feb-08	10485.33	=""	="Signshop"	17-Mar-08 04:19 PM	

+="CN65961"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	21-Nov-07	31-Jan-08	17911.47	=""	="IPA Personnel Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65962"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	22-Feb-08	30-Jun-08	743509.12	=""	="CSC Australia Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65963"	"Market Research"	="Centrelink"	17-Mar-08	="Management advisory services"	21-Feb-08	09-Jun-08	94999.98	=""	="NWC Research"	17-Mar-08 04:19 PM	

+="CN65964"	"IT specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	21-Dec-07	30-Jun-08	96096.00	=""	="Interpro Australia Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65965-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Jan-08	30-Jun-08	27931.04	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:19 PM	

+="CN65966-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Jan-08	30-Jun-08	27931.04	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:20 PM	

+="CN65967"	"Office Fitout, St Mary's, NSW"	="Centrelink"	17-Mar-08	="Office supplies"	12-Feb-08	30-Jun-08	19800.00	=""	="Latin Interiors Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65968"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	01-Feb-08	30-Jun-08	12429.83	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65969"	"Hire P2 boothing kits for employment Expo"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	29-Feb-08	11695.20	=""	="Underwood Party Hire"	17-Mar-08 04:20 PM	

+="CN65970"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	30-Jun-08	19538.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65971"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	01-Feb-08	02-Feb-09	230630.40	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65972"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	30-Jun-08	287524.05	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65973"	"Audio visual equipment"	="Centrelink"	17-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Feb-08	30-Jun-08	44881.00	=""	="Electroboard Solutions Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65974"	"External and internal signs for Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Jun-08	25894.00	=""	="Tint Design Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65975"	"Furniture"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Apr-08	246170.10	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65976"	"Office Fitout"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	10-Mar-08	178632.74	=""	="Cordwell Lane Building Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65977"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	21-Feb-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:21 PM	

+="CN65978"	"Supply and install carpet"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	49763.95	=""	="Interface Flor"	17-Mar-08 04:21 PM	

+="CN65979"	"Furniture for Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	18103.80	=""	="Emtek Furniture"	17-Mar-08 04:21 PM	

+="CN65980"	"Office fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	37340.60	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:21 PM	

+="CN65981"	"Office fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	378471.76	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:21 PM	

+="CN65982"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	17-Aug-08	114400.00	=""	="Compas Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65983"	"Signage for the Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Signage and accessories"	22-Feb-08	30-Jun-08	12396.92	=""	="Signworld Sunshine Coast"	17-Mar-08 04:22 PM	

+="CN65984"	"Landscaping court yard at Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Feb-08	30-Jun-08	28395.40	=""	="Ian Kelly Landscape Contractor"	17-Mar-08 04:22 PM	

+="CN65985"	"Office Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	25-Feb-08	21-Mar-08	17894.93	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65986"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	25-Feb-08	01-Apr-08	34650.00	="RFTS07/0129"	="Omaha IT Services Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65987"	"External painting at Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Feb-08	30-Jun-08	14916.00	=""	="L & A Petruccelli"	17-Mar-08 04:22 PM	

+="CN65988"	"office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	26-Feb-08	30-Jun-08	142980.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65989"	"Supply and Installation of tiles and vinyl"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	26-Feb-08	07-Mar-08	10311.06	=""	="B & R Tiles & Floor Coverings"	17-Mar-08 04:23 PM	

+="CN65990"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	27-Feb-08	30-Jun-08	20000.00	=""	="Quality Hotel Old Adelaide"	17-Mar-08 04:23 PM	

+="CN65991"	"Painting services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Feb-08	14-Mar-08	15019.40	=""	="Fyfe Interiors & Refurbishment"	17-Mar-08 04:23 PM	

+="CN65992"	"Furniture for new Centrelink office Werribee, VIC"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	27-Feb-08	30-Jun-08	432941.01	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:23 PM	

+="CN65993"	"Pallet racking"	="Centrelink"	17-Mar-08	="Containers and storage"	27-Feb-08	30-Jun-08	14450.00	=""	="Design Systems Office Interiors"	17-Mar-08 04:23 PM	

+="CN65994"	"Workstations"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	27-Feb-08	30-Jun-08	21024.87	=""	="Schiavello (ACT) Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65995-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	20-Feb-08	31-Dec-10	618895.20	=""	="Peoplebank Australia Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65996"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	11-Feb-08	10-Aug-08	114114.00	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65997"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	13-Feb-08	11-Feb-09	204204.00	=""	="Acumen Contracting & Recruitment P/"	17-Mar-08 04:23 PM	

+="CN65998"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	13-Feb-08	13-Feb-08	23597.61	=""	="Commander Integrated Networks P/L"	17-Mar-08 04:23 PM	

+="CN65999"	"Conference Venue Hire"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	13-Feb-08	28-Feb-08	11069.49	=""	="Rydges Port Macquarie"	17-Mar-08 04:24 PM	

+="CN66000"	"Accomodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	13-Feb-08	27-Feb-08	16365.38	=""	="Observatory Port Macquarie"	17-Mar-08 04:24 PM	

+="CN66001"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	16-Feb-09	252252.00	=""	="Ambit Group"	17-Mar-08 04:24 PM	

+="CN66002"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	09-May-08	41580.00	="RFTS07/0129"	="Stratagem"	17-Mar-08 04:24 PM	

+="CN66003"	"Screens, tables and office chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	14-Feb-08	31-Mar-08	19769.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66004-A1"	"Construction fitout for Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Feb-08	30-Jun-08	439290.50	=""	="Pirotta Services Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66005"	"Workstations/Storage and Reception Units/Signage"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	15-Feb-08	18-Apr-08	120896.60	=""	="Schiavello (WA) Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66006"	"Removal Works for Coffs Harbour, NSW refit"	="Centrelink"	17-Mar-08	="Containers and storage"	15-Feb-08	22-Mar-08	13090.00	=""	="Classic Office Relocations Qld P/L"	17-Mar-08 04:24 PM	

+="CN66007"	"External signs"	="Centrelink"	17-Mar-08	="Signage and accessories"	18-Feb-08	31-Mar-08	24860.00	=""	="Tint Design Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66008-A1"	"Envelopes"	="Centrelink"	17-Mar-08	="Paper Materials and Products"	18-Feb-08	29-Feb-08	41469.12	=""	="Australian Envelopes"	17-Mar-08 04:25 PM	

+="CN66009"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	11825.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:25 PM	

+="CN66010"	"Supply and install security optical fibre"	="Centrelink"	17-Mar-08	="Security and personal safety"	18-Feb-08	30-Jun-08	10615.00	=""	="Secom Technical Services Pty Ltd"	17-Mar-08 04:25 PM	

+="CN66011"	"Signage for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Signage and accessories"	19-Feb-08	30-Jun-08	15073.63	=""	="Signworld Sunshine Coast"	17-Mar-08 04:25 PM	

+="CN66012"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	19-Feb-08	30-Sep-09	29185.20	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:25 PM	

+="CN66013"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	19-Feb-08	30-Jun-08	191827.90	=""	="Nuance Communications Int. BVBA"	17-Mar-08 04:26 PM	

+="CN66014"	"Workstations for Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	20-Feb-08	30-Jun-08	119429.20	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:26 PM	

+="CN66015"	"Relocate furniture"	="Centrelink"	17-Mar-08	="Office supplies"	20-Feb-08	09-Mar-08	10736.00	=""	="Allied Pickfords"	17-Mar-08 04:26 PM	

+="CN66016"	"Computer Equipment Network"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	20-Feb-08	20-Feb-08	67601.68	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:26 PM	

+="CN66018"	"EXTINGUISHER, FIRE WATER, AIR PRESSURE TYPE, 10 L, C/W WALL BRACKET"	="Defence Materiel Organisation"	17-Mar-08	="Fire extinguishers"	13-Mar-08	15-May-08	65092.50	=""	="CHUBB FIRE SAFETY LTD"	17-Mar-08 04:39 PM	

+="CN64833"	"Facilitation Services"	="Australian Taxation Office"	17-Mar-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	28-Feb-08	19112.00	=""	="Peiat Consulting Pty Ltd"	17-Mar-08 04:48 PM	

+="CN66019"	"Dialog Newsroom subscription for 2007-08."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Information services"	01-Jul-07	30-Jun-08	28200.00	=""	="The Dialog Corporation Asia Pacific Ltd"	17-Mar-08 05:49 PM	

+="CN66020"	"Provide audit assistance for the National Heritage Trust and the National Action Plan for Salinity and Water Control Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	31-May-07	30-Nov-07	20000.00	=""	="The Hedging Company Pty Ltd"	17-Mar-08 06:05 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008val0to16000.xls
@@ -1,1 +1,281 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70678"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 08:04 AM	

+="CN70683"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL ASSY."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 09:13 AM	

+="CN70691"	"4 X HDR-SR7 SONY VIDEO CAMERA, 4 X BATTERY CHARGER 4 X TELECONVERTER, 4 X BATTERIES NPFH100,"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	10062.80	=""	="Nikon On Broadway"	14-Apr-08 09:38 AM	

+="CN70693"	"CONSULTANT FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	07-Apr-08	12498.75	=""	="PM BUSINESS CONSULTING PTY LTD"	14-Apr-08 09:57 AM	

+="CN70695"	"CONTRACTING SERVICES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	12603.00	=""	="SIDNEY WILLIAM HAMMELL"	14-Apr-08 09:58 AM	

+="CN70696"	"VENUE/EQUIPMENT HIRE AND ACCOMODATION AT WORKSHOP VENUE"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	10-Apr-08	10-Apr-08	13709.15	=""	="Crowne Plaza Canberra"	14-Apr-08 09:58 AM	

+="CN70697"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	09-Apr-08	11695.20	=""	="MINTER ELLISON"	14-Apr-08 09:58 AM	

+="CN70698"	"ACCOMMODATION"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	09-Apr-08	14822.00	=""	="NOVOTEL ST KILDA"	14-Apr-08 09:58 AM	

+="CN70700"	"TRAINING"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	08-Apr-08	10472.00	=""	="COGNOS PTY LTD"	14-Apr-08 09:58 AM	

+="CN70702"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	09-Apr-08	15162.46	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70707"	"REcruitment services - Speech writer"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Apr-08	11000.00	=""	="VEDIOR ASIA PACIFIC PTY LIMITED"	14-Apr-08 10:00 AM	

+="CN70708"	"Executive Facilitation Services"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	10502.22	=""	="CAPGEMINI AUSTRALIA PTY LTD"	14-Apr-08 10:07 AM	

+="CN70713"	"Repair & OH of Black Hawk Spindle Assy."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	14479.49	=""	="SAAL"	14-Apr-08 10:53 AM	

+="CN70756"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	15795.77	=""	="Greythorn"	14-Apr-08 12:53 PM	

+="CN70767"	" repairs to 8 x-20' shipping containers "	="Department of Defence"	14-Apr-08	="Containers and storage"	14-Apr-08	20-Jun-08	13522.86	=""	="WILTRADING"	14-Apr-08 01:00 PM	

+="CN70776"	"Postage Services - WA"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	27-Jul-07	30-Jun-08	10555.30	=""	="Australian Post"	14-Apr-08 01:07 PM	

+="CN70782"	"Provision of supply of work stations"	="Australian Federal Police"	14-Apr-08	="Workstations and office packages"	02-Oct-07	15-Dec-07	13068.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:34 PM	

+="CN70787"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	17-Sep-07	04-Dec-07	10777.80	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:45 PM	

+="CN70788"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	03-Oct-07	03-Oct-07	13313.30	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:54 PM	

+="CN70793"	"REPAIRS TO MRV ARN-202864 ON W/O-35919"	="Department of Defence"	14-Apr-08	="Motor vehicles"	14-Apr-08	27-Jun-08	11195.05	=""	="PREMIER TRUCKS NQ"	14-Apr-08 02:10 PM	

+="CN70797"	"Motor Vehicle Parts"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	15745.87	=""	="Volvo Commerical Vehicles"	14-Apr-08 02:20 PM	

+="CN70799"	"Provision of storage of excess furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Mar-07	30-Jul-07	13576.42	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:37 PM	

+="CN70804"	"Fitout - Melbourne Office"	="Workplace Authority"	14-Apr-08	="Property management services"	28-Aug-07	31-Aug-08	13472.80	=""	="Interiors Australia Pty Ltd"	14-Apr-08 03:10 PM	

+="CN70820"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Transportation and Storage and Mail Services"	28-Sep-07	31-Dec-07	10929.02	=""	="AUSTEX LOGISTICS PTY LTD"	14-Apr-08 03:55 PM	

+="CN70827"	"Verisign Premium PKI Certificates"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	24-Jan-08	30-Jun-08	15840.00	="PRN18427"	="VERISIGN AUSTRALIA LIMITED"	14-Apr-08 03:59 PM	

+="CN70828"	"MapInfo and StreetPro License"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	21-Jan-08	30-Jun-08	13798.13	="PRN18330"	="PITNEY BOWES MAPINFO AUSTRALIA PTY"	14-Apr-08 04:00 PM	

+="CN70833"	"labour and parts cost"	="Department of Defence"	14-Apr-08	="Satellites"	14-Apr-08	22-Jul-08	10489.23	=""	="NOVAMARINE INSTRUMENTS"	14-Apr-08 04:02 PM	

+="CN70835"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="PHOENIX BUSINESS COLLEGE"	14-Apr-08 04:02 PM	

+="CN70836"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="JIGSAW TRAINING ACADEMY"	14-Apr-08 04:02 PM	

+="CN70837"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="INTERNATIONAL SECURITY TRAINING"	14-Apr-08 04:02 PM	

+="CN70838"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11550.00	="PRN12579"	="COASTAL and RURAL TRAINING PTY LTD"	14-Apr-08 04:02 PM	

+="CN70839-A2"	"Career Advice Australia State Conference - Darwin"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Trade shows and exhibits"	20-Nov-07	12-Feb-08	10892.85	="PRN16534"	="SKYCITY DARWIN PTY LTD"	14-Apr-08 04:02 PM	

+="CN70840"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="AUSTRAINING BUSINESS INSTITUTE"	14-Apr-08 04:02 PM	

+="CN70841"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11440.00	="PRN12579"	="Integrity Business College"	14-Apr-08 04:03 PM	

+="CN70842"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10450.00	="PRN12579"	="Australian Institute of Applied"	14-Apr-08 04:03 PM	

+="CN70843"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12760.00	="PRN12579"	="Vixen Investments Pty Ltd"	14-Apr-08 04:03 PM	

+="CN70844"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Australian Industry Group Training"	14-Apr-08 04:03 PM	

+="CN70847"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12980.00	="PRN12579"	="SALES PARTNER"	14-Apr-08 04:03 PM	

+="CN70849"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="CONWAL 3 ASSOCIATES"	14-Apr-08 04:04 PM	

+="CN70850-A2"	"2007 Census of Non-Government Schools"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	19-Sep-07	24-Dec-07	15000.00	="PRN16564"	="ROBERT JOHN MESSAGE"	14-Apr-08 04:04 PM	

+="CN70851"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="MAJOR OPERATOR DRIVER TRAINING"	14-Apr-08 04:04 PM	

+="CN70853"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11000.00	="PRN12579"	="AUSTRALIAN INSTITUTE OF FINANCIAL"	14-Apr-08 04:04 PM	

+="CN70854"	"Legal services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	12000.00	=""	="Mr Martin Cuerden"	14-Apr-08 04:09 PM	

+="CN70864"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	02-May-07	30-Jun-07	10752.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70865"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-May-07	30-Jun-07	10212.40	=""	="WOODHEAD PTY LTD"	14-Apr-08 04:27 PM	

+="CN70866"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	04-May-07	30-Jun-07	11726.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	14-Apr-08 04:27 PM	

+="CN70868"	" Printing of: NAT 1908-07.2007 - 'Tax basics for small business' booklet  Qty: 10,000 "	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-Apr-08	22-Apr-08	13148.30	=""	="Paragon Printers"	14-Apr-08 04:29 PM	

+="CN70880"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70884"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Temporary personnel services"	13-Mar-08	13-Mar-08	12540.00	=""	="ASG GROUP LIMITED"	14-Apr-08 04:42 PM	

+="CN70887"	"JOB EVALUATIONS - CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Business and corporate management consultation services"	14-Mar-08	14-Mar-08	12127.50	=""	="MERCER HUMAN RESOURCE CONSULTING PTY LTD"	14-Apr-08 04:42 PM	

+="CN70888"	"SUPPORT AND MAINTENANCE FOR ITSM SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	19-Mar-08	19-Mar-08	12234.20	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:42 PM	

+="CN70907"	"Seminar Delivery"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	29-Oct-07	30-Nov-07	13875.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	14-Apr-08 05:15 PM	

+="CN70910"	"REPAIR AND OH OF BLACK HAWK SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	13259.94	=""	="SAAL"	15-Apr-08 07:52 AM	

+="CN70911"	"REPAIR AND OH OF BH SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	12480.36	=""	="SAAL"	15-Apr-08 08:19 AM	

+="CN70915"	"Strategic Internal Audit Annual Planning - 2008-11"	="Australian Federal Police"	15-Apr-08	="Internal audits"	14-Apr-08	30-Jun-08	14300.00	="RFT 01-2005"	="KPMG"	15-Apr-08 08:44 AM	

+="CN70926"	"REPAIR AND OH OF BH HOIST."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	11390.65	=""	="SAAL"	15-Apr-08 09:22 AM	

+="CN70930"	"Professional Services"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Human resources services"	30-Aug-07	28-Sep-07	10732.25	=""	="ICON RECRUITMENT PTY LTD"	15-Apr-08 09:33 AM	

+="CN70932"	"Independent Member of Audit and Risk Committee"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Management advisory services"	01-Oct-07	30-Sep-08	12372.00	=""	="ROEX MANAGEMENT PTY LTD"	15-Apr-08 09:33 AM	

+="CN70934"	"Legal services - counsel"	="Australian Securities and Investments Commission"	15-Apr-08	="Legal services"	01-Jan-08	30-Jun-08	15000.00	=""	="Mr Geoff Abbott"	15-Apr-08 09:39 AM	

+="CN70936"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	12055.40	=""	="LAND ROVER AUSTRALIA"	15-Apr-08 09:44 AM	

+="CN70944"	"16 Mort Street - Purchase of Portable Dance Floor"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	13-Nov-07	30-Nov-07	10010.00	="PRN17658"	="Ezi-Flor"	15-Apr-08 09:59 AM	

+="CN70949"	"Design, document tender and project manage DEST Thursday Island Fitout"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	10-Oct-07	27-Jun-08	10450.00	="PRN17903"	="GECHAWELL PTY LTD"	15-Apr-08 10:00 AM	

+="CN70939"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	15771.91	=""	="LANDROVER"	15-Apr-08 10:00 AM	

+="CN70952"	"E-RECRUITMENT 2008"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Jun-07	07-Dec-07	10000.00	="PRN17902"	="NGA.NET PTY LTD"	15-Apr-08 10:00 AM	

+="CN70953"	"5x desks, underdesk drawers, PSU's- Schiavello"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Building and Construction and Maintenance Services"	23-Oct-07	04-Dec-07	10876.80	="PRN17855"	="Schiavello Commercial Interiors"	15-Apr-08 10:01 AM	

+="CN70955"	"Cleaning and Repairing Office Chairs - ISG"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	13-Nov-07	20-Dec-07	11682.00	="PRN17721"	="KReliance Pty Ltd"	15-Apr-08 10:01 AM	

+="CN70956"	"Consultant to develop Project plan for establishmet of Vocational Education and Training Support"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	30-Aug-07	11-Oct-07	14040.00	="PRN17894"	="PAUL FITZGERALD"	15-Apr-08 10:01 AM	

+="CN70957"	"ITIL Awareness Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	19-Nov-07	31-Mar-08	15000.00	="PRN17813"	="Proactive Services Pty Ltd"	15-Apr-08 10:01 AM	

+="CN70959"	"Appsense Management Software"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	14064.93	="PRN17895"	="Dimension Data Australia Pty Ltd"	15-Apr-08 10:02 AM	

+="CN70960"	"Reporting Services Training - Superior Software for windows"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	26-Nov-07	30-Jun-08	11008.80	="PRN17808"	="SUPERIOR SOFTWARE FOR WINDOWS PTY L"	15-Apr-08 10:02 AM	

+="CN70963"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Institute of Hair and Aesthetics"	15-Apr-08 10:03 AM	

+="CN70964"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="The Daniels Associates of"	15-Apr-08 10:03 AM	

+="CN70965"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Pro-System Training Services Pty"	15-Apr-08 10:03 AM	

+="CN70966-A1"	"Temp Staff Member in EA Role"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	17-Sep-07	31-Dec-07	15000.00	="PRN17037"	="JULIA ROSS RECRUITMENT LTD"	15-Apr-08 10:03 AM	

+="CN70967"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	14080.00	="PRN12579"	="Bathun Pty Ltd"	15-Apr-08 10:03 AM	

+="CN70968"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Griffith Skills Training Centre"	15-Apr-08 10:04 AM	

+="CN70969"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="TAFE NSW - ACCESS DIVISION"	15-Apr-08 10:04 AM	

+="CN70972"	"Influencing and Negotiations Skills workshop"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	08-Nov-07	30-May-08	10511.40	="PRN17739"	="POLLAK LEARNING ALLIANCE PTY LTD"	15-Apr-08 10:04 AM	

+="CN70973"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	13750.00	="PRN12579"	="AVOCARE LIMITED"	15-Apr-08 10:05 AM	

+="CN70975"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SOURCE4 PTY LIMITED"	15-Apr-08 10:05 AM	

+="CN70976"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="COLLEGE OF AUSTRALIAN TRAINING PTY"	15-Apr-08 10:06 AM	

+="CN70978"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="KUNEXION PTY LTD"	15-Apr-08 10:06 AM	

+="CN70979"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="EXECUTIVE INSTITUTE OF MANAGEMENT"	15-Apr-08 10:07 AM	

+="CN70980"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="MW TRAINING CONSULTANTS"	15-Apr-08 10:07 AM	

+="CN70985"	"Public Notices for the notice inviting comment period for the South East Network"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	11265.28	="0708-1201"	="HMA Blaze Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70993"	"Install Fibre Optic Cabeling at Canberra Office Locations"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	04-Apr-08	30-Apr-08	11983.40	="0708-1082"	="MRB Communications Pty Ltd"	15-Apr-08 10:17 AM	

+="CN70997"	"Energy  Efficiency Fast Track Report"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	08-Apr-08	10230.00	="0708-1145"	="Pitt & Sherry Holdings Pty Ltd"	15-Apr-08 10:18 AM	

+="CN70998"	"Urgent repair of roofing to Department Building"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Building and Construction and Maintenance Services"	03-Apr-08	15-Apr-08	12000.00	="0708-1179"	="Tennant & Pratt"	15-Apr-08 10:18 AM	

+="CN71002"	"Reprint of Community Water Grants signs"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Printed media"	01-Apr-08	30-Apr-08	15675.00	="0708-1180"	="Screenmakers P/L"	15-Apr-08 10:19 AM	

+="CN71008"	"Application Migration Services"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	15106.50	="0708-1107"	="SRA Information Technology"	15-Apr-08 10:20 AM	

+="CN71010"	" VEHICLE REPAIRS "	="Department of Defence"	15-Apr-08	="Motor vehicles"	01-Apr-08	01-May-08	15329.55	=""	="RGM"	15-Apr-08 10:24 AM	

+="CN71011"	"Sea Marker, Fluorescein"	="Defence Materiel Organisation"	15-Apr-08	="Protein chemifluorescent detection reagents or kits or substrates"	15-Apr-08	03-Jun-08	13200.00	=""	="Chemring Australia"	15-Apr-08 10:42 AM	

+="CN71012"	"Photographic services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Photographic services"	01-Jan-08	31-Jan-08	11123.20	=""	="Bearcage productions"	15-Apr-08 10:46 AM	

+="CN71018"	"Provision of air travel"	="National Blood Authority"	15-Apr-08	="Commercial aeroplane travel"	08-Jan-08	14-Feb-08	13018.15	=""	="Flight Centre"	15-Apr-08 11:29 AM	

+="CN71021"	"Legal Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Legal services"	14-Jan-08	30-Jan-08	11880.00	=""	="Dale Boucher Solicitor & accountant"	15-Apr-08 11:35 AM	

+="CN71020"	"Legal Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Legal services"	14-Jan-08	30-Jan-08	11880.00	=""	="Dale Boucher Solicitor & accountant"	15-Apr-08 11:36 AM	

+="CN71023"	"Purchase of Imported IVIg"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Jan-08	31-Jan-08	15444.00	=""	="CSL Ltd"	15-Apr-08 11:42 AM	

+="CN71042"	"Procurement of the Consulting Services for Workshop Facilitation"	="National Blood Authority"	15-Apr-08	="Education and Training Services"	07-Apr-08	09-Apr-08	15500.00	=""	="Palm Consulting"	15-Apr-08 01:23 PM	

+="CN71043"	"PEP Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	23-Nov-07	31-Jan-08	13200.00	="PRN17881"	="D'ARCY CONSULTING GROUP PTY LTD"	15-Apr-08 01:40 PM	

+="CN71044-A1"	"2007 Census of Non-Government Schools"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	29-Sep-07	24-Dec-07	15200.00	="PRN16564"	="WVR and BJ STEVENSON CONSULTANTS PTY"	15-Apr-08 01:40 PM	

+="CN71057"	"IF08 - Promo Bags - Execugifts"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	01-Feb-08	30-Jun-08	12331.00	="PRN18446"	="EXECUGIFTS"	15-Apr-08 01:47 PM	

+="CN71065"	"Hire of Clifton's IT Training Facilities in Brisbane"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	10820.70	="PRN18766"	="CLIFTON OPERATIONS PTY LIMITED"	15-Apr-08 01:48 PM	

+="CN71066"	"New DEEWR Signage - National Offices"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	01-Dec-07	30-Jun-08	11561.00	="PRN18781"	="Neoplex Pty Ltd"	15-Apr-08 01:49 PM	

+="CN71077"	"Four Points by Sheraton Darling Harbour"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Travel and Food and Lodging and Entertainment Services"	06-Feb-08	25-Mar-08	10601.08	="PRN18589"	="Four Points Hotel Sydney"	15-Apr-08 01:51 PM	

+="CN71081"	"Office Furniture"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Office machines and their supplies and accessories"	08-Feb-08	30-Jun-08	14855.50	="PRN18560"	="IKEN COMMERCIAL INTERIORS PTY LTD"	15-Apr-08 01:52 PM	

+="CN71086"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10450.00	="PRN12579"	="H and H Accredited Training"	15-Apr-08 01:55 PM	

+="CN71088"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11660.00	="PRN12579"	="ACE - North Coast Inc"	15-Apr-08 01:55 PM	

+="CN71089"	"Recruitment of contractor to fill sick leave"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	26-Feb-08	30-Jun-08	10000.00	="PRN18712"	="SOS RECRUITMENT"	15-Apr-08 01:55 PM	

+="CN71090"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="Laranda Pty Ltd"	15-Apr-08 01:55 PM	

+="CN71091"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Maxwells Services Pty Ltd"	15-Apr-08 01:55 PM	

+="CN71092"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11000.00	="PRN12579"	="Orion Training and Performance"	15-Apr-08 01:55 PM	

+="CN71093"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="The Career Training Institute of"	15-Apr-08 01:55 PM	

+="CN71095"	"Personal Efficiency Program training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Feb-07	15-Feb-08	13200.00	="PRN17606"	="D'ARCY CONSULTING GROUP PTY LTD"	15-Apr-08 01:56 PM	

+="CN71096"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="ME BIOCOSMETICS AUSTRALIA PTY LTD"	15-Apr-08 01:56 PM	

+="CN71097"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="LADY GOWRIE CHILD CENTRE"	15-Apr-08 01:56 PM	

+="CN71098"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12650.00	="PRN12579"	="JET Consultants Pty Ltd"	15-Apr-08 01:56 PM	

+="CN71102-A1"	"Advice on Industry Advisory Arrangement"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	02-Jul-07	27-Jun-08	11000.00	="PRN16426"	="ITHACA GROUP PTY LTD"	15-Apr-08 01:57 PM	

+="CN71106"	"Provision of training for emergency wardens"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	18-Jan-08	30-Dec-10	11550.00	="PRN17897"	="TRIM EVAC PTY LTD"	15-Apr-08 01:59 PM	

+="CN71107-A2"	"Residual Legal Advice from Phillips Fox 2007/08"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Legal services"	01-Sep-07	31-Dec-08	11000.00	="PRN17291"	="PHILLIPS FOX"	15-Apr-08 02:00 PM	

+="CN71119"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	15-Apr-08	="Medical health associations"	02-Apr-08	05-May-08	11668.42	=""	="TYCO HEATHCARE P/L"	15-Apr-08 02:45 PM	

+="CN71122"	"IVR Tuning and Analysis Part A"	="Australian Taxation Office"	15-Apr-08	="Computer services"	20-Mar-08	15-Apr-08	11458.00	="RFQ T&A"	="Ve Commerce"	15-Apr-08 02:56 PM	

+="CN71125"	"Venue and catering for 3rd Regional Perspectives Conference 2008."	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	08-Apr-08	30-Jun-08	15000.00	=""	="HYATT HOTEL CANBERRA"	15-Apr-08 03:06 PM	

+="CN71127"	"Writing & Editing services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Graphic design"	09-Apr-08	30-Apr-08	10000.00	="TRS06/036"	="Cinden Lester Communications"	15-Apr-08 03:06 PM	

+="CN71129"	"Placement Fee APS 4.3"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	10-Apr-08	10-Apr-08	10128.28	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	15-Apr-08 03:06 PM	

+="CN71131"	"HWMD Training round 3 ASIC"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Security and personal safety"	01-Jul-07	30-Jun-08	10098.00	="TRS05/084"	="VAST Pty Ltd Trading as Vast"	15-Apr-08 03:07 PM	

+="CN71135"	"Editing 2006/07 National Report"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Business administration services"	01-Apr-08	30-Jun-08	10989.00	="2007/0358"	="PEN ULTIMATE"	15-Apr-08 03:07 PM	

+="CN71138"	"Procurement of desktops and monitors"	="Workplace Authority"	15-Apr-08	="Computer Equipment and Accessories"	14-Aug-07	30-Jun-08	10252.00	=""	="Dataflex"	15-Apr-08 03:17 PM	

+="CN71146"	"FABS Panel - Actuarial Services"	="Australian Taxation Office"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	10-Apr-08	14465.00	="123.02"	="KPMG"	15-Apr-08 03:22 PM	

+="CN71156"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Aug-07	20-Mar-08	10220.10	=""	="Hays Personnel Services (Australia)"	15-Apr-08 04:03 PM	

+="CN71164"	" Professional Legal Services "	="Workplace Authority"	15-Apr-08	="Legal services"	23-Aug-07	30-Jun-08	10629.41	=""	="Phillips Fox Lawyers"	15-Apr-08 04:37 PM	

+="CN71185"	"Radio Communication"	="Australian Crime Commission"	16-Apr-08	="Communication wiring harness"	20-Mar-08	20-Mar-09	15942.00	=""	="Australian Communication & Media Authority"	16-Apr-08 10:18 AM	

+="CN71187"	" MEDICAL CONSUMABLE "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	10857.00	=""	="MEDICAL DEVELOPMENTS INTERNATIONAL LTD"	16-Apr-08 10:25 AM	

+="CN71190"	"Delivery of Australian Government Financial Framework course"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	01-Apr-08	30-Jun-10	10692.00	=""	="CHRIS ADAMS AND ASSOCIATES"	16-Apr-08 10:28 AM	

+="CN71192"	"CHAIR OF ADVISORY PANEL GEELONG INVESTMENT AND INNOVATION FU"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management advisory services"	01-Jan-08	30-Apr-08	11000.00	=""	="MORGAN, DAVID"	16-Apr-08 10:28 AM	

+="CN71206"	"DAVIDSON MEASUREMENT BLDG A GAS FLOW STD LO030408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	03-Apr-08	25-Jun-08	10337.80	=""	="DAVIDSON MEASUREMENT PTY LTD"	16-Apr-08 10:30 AM	

+="CN71207"	"10000615"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	03-Jan-08	03-Jan-08	15195.00	=""	="ADEX NIHON KEIZAI ADVERTISING CO LTD"	16-Apr-08 10:30 AM	

+="CN71211"	"IBM Rack Mounted KVM Switches for VANguard Server Room Reloc"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	05-Mar-08	31-Mar-08	10879.00	=""	="IBM AUST LTD"	16-Apr-08 10:31 AM	

+="CN71213"	"Southern Controls orbit valve LO070408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	07-Apr-08	25-Jun-08	10089.20	=""	="SOUTHERN CONTROLS PTY LTD"	16-Apr-08 10:31 AM	

+="CN71215"	"Construction Advice - NSW Fitout 341 George Street Sydney Pr"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	30-Apr-08	14834.96	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	16-Apr-08 10:31 AM	

+="CN71216"	"Research on the Industry Economic Effects of Population Agin"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Economics"	07-Apr-08	30-Jun-08	13500.00	=""	="MONASH UNI"	16-Apr-08 10:31 AM	

+="CN71218"	"Catering for the Innovation Australia showcase event - 8 Apr"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Restaurants and catering"	08-Apr-08	30-Apr-08	13866.25	=""	="COMPASS GROUP (AUSTRALIA"	16-Apr-08 10:31 AM	

+="CN71222"	"Mallessons Stephen Jaques Port Melbourne fitout LO080408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Legal services"	09-Apr-08	25-Jun-08	11259.60	=""	="MALLESONS STEPHEN JAQUES"	16-Apr-08 10:32 AM	

+="CN71224"	"Konica Photocopier HR office Lo100408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Office machines and their supplies and accessories"	10-Apr-08	30-Apr-08	10296.00	=""	="KONICA MINOLTA BUSINESS SOLUTIONS AUST"	16-Apr-08 10:32 AM	

+="CN71226"	"Temperature Controls Pty Ltd"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jan-08	31-Jan-08	14319.80	=""	="TEMPERATURE CONTROLS P/L"	16-Apr-08 10:32 AM	

+="CN71227"	"bERNESE gps sOFTWARE uNIVERSITY OF bERN sWITZERLAND ks KS100"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	11-Apr-08	30-Apr-08	13000.00	=""	="UNIVERSITY OF BERN"	16-Apr-08 10:32 AM	

+="CN71235"	"2nd Review of the Australian Stem Cell Centre Innov Div PO F"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	19-Sep-08	15000.00	=""	="BIOLATRIS LTD"	16-Apr-08 10:33 AM	

+="CN71240"	"Placement fee of contractor"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Legal services"	18-Feb-08	18-Feb-08	10764.00	=""	="GILLIAN BEAUMONT RECRUITMENT PTY LTD"	16-Apr-08 10:34 AM	

+="CN71241"	"Lexis Nexis subscription"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Electronic reference material"	18-Feb-08	18-Feb-08	11447.70	=""	="LEXISNEXIS"	16-Apr-08 10:34 AM	

+="CN71242"	"KONICA COPIER/PRINTER KONIKA. library LO18/03/08"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Office machines and their supplies and accessories"	18-Mar-08	12-Apr-08	14809.30	=""	="KONICA MINOLTA BUSINESS SOLUTIONS AUST"	16-Apr-08 10:34 AM	

+="CN71247"	"2nd Review of the Australian Stem Cell Centre Inno Div PO Fo"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	19-Sep-08	15000.00	=""	="KLINKEN, SVEND PETER"	16-Apr-08 10:35 AM	

+="CN71250"	"FAPAS Program 2008  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory supplies and fixtures"	26-Mar-08	31-Dec-08	12874.36	=""	="BIO SYS AUSTRALIA PTY LTD"	16-Apr-08 10:35 AM	

+="CN71253"	"Media Training for NMI Staff Econnect Communication 00002115"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	27-Mar-08	11-Apr-08	10758.00	=""	="ECONNECT COMMUNICATION"	16-Apr-08 10:35 AM	

+="CN71255"	"Relocation Costs C07/07657"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	28-Mar-08	30-Apr-08	10131.40	=""	="QUEST JOLIMONT"	16-Apr-08 10:36 AM	

+="CN71261"	"REPAIR MACK TTW ARN-36435 W/O-36249"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	27-Jun-08	13200.00	=""	="MACK VOLVO AUSTRALIA"	16-Apr-08 10:50 AM	

+="CN71266"	"Repair to Cylinder Assy Act Linear"	="Defence Materiel Organisation"	16-Apr-08	="Military rotary wing aircraft"	16-Apr-08	25-Jun-08	13681.60	=""	="Rosebank Engineering"	16-Apr-08 10:53 AM	

+="CN71274"	"Facilitate Strategic Planning Workshop Global Opportunities"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	05-Sep-07	06-Sep-07	10879.00	=""	="STAMFORD PLAZA ADELAIDE"	16-Apr-08 11:08 AM	

+="CN71271-A1"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	04-Apr-08	02-May-08	13912.75	=""	="ROCHE DIAGNOSTIC AUSTRALIA"	16-Apr-08 11:08 AM	

+="CN71279-A1"	" Fringe Benefits Tax audit "	="Department of Resources Energy and Tourism"	16-Apr-08	="Accounting and auditing"	06-Aug-07	30-Jun-09	14712.00	=""	="KPMG (ACT)"	16-Apr-08 11:08 AM	

+="CN71283-A1"	" Printing of Energy research and development 2008 report "	="Department of Resources Energy and Tourism"	16-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Jul-07	30-Jun-09	13336.40	=""	="PARAGON PRINTERS"	16-Apr-08 11:09 AM	

+="CN71284-A1"	" Legal services for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	26-Jul-07	30-Jun-08	12730.30	=""	="CLAYTON UTZ"	16-Apr-08 11:09 AM	

+="CN71285-A1"	" Energy Efficiency Opportunities venue hire and services for workshops  "	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	26-Jul-07	30-Jun-08	12999.80	=""	="MERCURE HOTEL BRISBANE"	16-Apr-08 11:09 AM	

+="CN71286-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	26-Jul-07	30-Jun-08	14999.60	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	16-Apr-08 11:09 AM	

+="CN71289-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	30-Jul-07	30-Aug-07	11699.60	=""	="CQ FUNCTIONS"	16-Apr-08 11:09 AM	

+="CN71290-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	30-Jul-07	31-Aug-07	12399.20	=""	="MERCURE HOTEL PERTH"	16-Apr-08 11:09 AM	

+="CN71184"	"Radio Communication"	="Australian Crime Commission"	16-Apr-08	="Communication wiring harness"	20-Mar-08	20-Mar-09	15942.00	=""	="Australian Communication & Media Authority"	16-Apr-08 11:29 AM	

+="CN71296"	" VARIOUS MEDICAL CONSUMABLE ITEMS "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	01-May-08	10879.00	=""	="SMITH & NEPHEW SURGICAL"	16-Apr-08 11:36 AM	

+="CN71298"	"REPAIRS TO ARN-36285 W/O-36313"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	27-Jun-08	12100.00	=""	="MACK VOLVO AUSTRALIA"	16-Apr-08 11:40 AM	

+="CN71304-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	16-May-08	12400.30	=""	="MICKS AUTOS"	16-Apr-08 12:48 PM	

+="CN71317"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	16-Apr-08	="Aircraft spars"	14-Apr-08	30-Apr-08	15458.52	=""	="MILSPEC SERVICES PTY LTD"	16-Apr-08 02:58 PM	

+="CN71323"	"SHEAR PINS"	="Defence Materiel Organisation"	16-Apr-08	="Shear pins"	21-Apr-08	16-Jul-08	15448.00	=""	="PRODUCTION PARTS P/L"	16-Apr-08 03:54 PM	

+="CN71324"	"SHEAR PINS"	="Defence Materiel Organisation"	16-Apr-08	="Shear pins"	16-Apr-08	16-Jul-08	15448.00	=""	="PRODUCTION PARTS P/L"	16-Apr-08 04:10 PM	

+="CN71328"	"Bracket Mounting   ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	21-Aug-08	10813.57	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:13 PM	

+="CN71329"	"legal services"	="Australian Securities and Investments Commission"	16-Apr-08	="Legal services"	21-Nov-07	30-Jun-08	10199.77	=""	="Mr Craig Slater"	16-Apr-08 04:16 PM	

+="CN71330"	"Bar Armour Modules ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	21-Aug-08	11282.96	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:18 PM	

+="CN71332"	"ANPR Business Benifts Workshop"	="CrimTrac"	16-Apr-08	="Conference centres"	07-Mar-08	30-Apr-08	15000.00	=""	="Hyatt Regency Adelaide"	16-Apr-08 04:18 PM	

+="CN71333"	"Administrative support Temp"	="CrimTrac"	16-Apr-08	="Temporary clerical or administrative assistance"	05-Mar-08	30-Apr-08	14186.00	=""	="Wizard Personnel  Office Services"	16-Apr-08 04:18 PM	

+="CN71337"	"Maintenance Renewal and licences"	="CrimTrac"	16-Apr-08	="Software maintenance and support"	17-Mar-08	30-Apr-08	15470.00	=""	="Embarcadero Technologies"	16-Apr-08 04:19 PM	

+="CN71348"	"State Funeral"	="Department of the Prime Minister and Cabinet"	17-Apr-08	="Funeral services"	14-Mar-08	14-Mar-08	15509.00	=""	="Peter Elberg Funerals"	17-Apr-08 09:23 AM	

+="CN71356"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Apr-08	="Aircraft spars"	17-Apr-08	18-Dec-08	14705.35	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Apr-08 10:12 AM	

+="CN71357"	"Purchase 20 x Disks NSN 4820-01-107-1810"	="Defence Materiel Organisation"	17-Apr-08	="Military rotary wing aircraft"	17-Apr-08	19-Jun-09	13640.00	=""	="H I Fraser Pty Ltd"	17-Apr-08 10:20 AM	

+="CN71366"	"Ceiling Mount LCD installation in committee room"	="Department of Parliamentary Services"	17-Apr-08	="Building and Construction and Maintenance Services"	10-Apr-08	05-May-08	11686.40	=""	="GPT Designs Pty Ltd"	17-Apr-08 10:57 AM	

+="CN71369"	"Provision of security training services"	="Department of Parliamentary Services"	17-Apr-08	="In service training and manpower development"	07-Apr-08	30-Apr-08	10033.10	=""	="Ulong Pty Ltd"	17-Apr-08 10:58 AM	

+="CN71370"	"Provision of security training services"	="Department of Parliamentary Services"	17-Apr-08	="In service training and manpower development"	07-Apr-08	30-Apr-08	11330.00	=""	="Xtek Limited"	17-Apr-08 10:58 AM	

+="CN71374"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	03-Apr-08	30-Apr-08	11090.01	=""	="Nomad Art Productions"	17-Apr-08 10:59 AM	

+="CN71375"	"Provision of Mechanical Engineering services"	="Department of Parliamentary Services"	17-Apr-08	="Temporary engineering services"	02-Apr-08	30-Apr-08	10492.90	=""	="Chillmech Services (Australia)"	17-Apr-08 10:59 AM	

+="CN71377"	"Supply of paintings"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	02-Apr-08	30-Apr-08	10163.76	=""	="Impressions on Paper Gallery"	17-Apr-08 10:59 AM	

+="CN71378"	"Supply of paintings"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	01-Apr-08	30-Apr-08	14399.21	=""	="Hogarth Galleries P/L"	17-Apr-08 11:00 AM	

+="CN71382"	"Supply of Stationary and office products Contract (DPS04197)"	="Department of Parliamentary Services"	17-Apr-08	="Office supplies"	10-Apr-08	10-Apr-08	10557.34	=""	="Corporate Express"	17-Apr-08 11:00 AM	

+="CN71383"	"Provision of financial advice and assessments in relation to catering services at APH"	="Department of Parliamentary Services"	17-Apr-08	="Government finance services"	07-Apr-08	30-Jun-08	14696.00	="DPS08040"	="Grey Advantage Consulting P/L"	17-Apr-08 11:00 AM	

+="CN71385"	"Subscription to software and data services"	="Department of Parliamentary Services"	17-Apr-08	="Electronic publications and music"	06-Jun-07	31-May-08	15072.75	=""	="THOMSON FINANCIAL PTY LTD"	17-Apr-08 11:01 AM	

+="CN71410"	" PROVISION OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	12457.21	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	17-Apr-08 01:28 PM	

+="CN71449"	"Purchase Of Artworks"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Socio cultural services"	04-Apr-08	04-Apr-08	12300.00	="0708-1281"	="Melbourne Art Rooms"	17-Apr-08 03:33 PM	

+="CN71460"	"Accommodation package for Govt Business Conference"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	11-Apr-08	11-Apr-08	13522.99	=""	="Novotel Brighton Beach"	17-Apr-08 03:42 PM	

+="CN71469"	"Contractor"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	12-Mar-08	30-May-08	15291.38	=""	="Frontier Group Australia"	17-Apr-08 03:43 PM	

+="CN71470"	"Accommodation"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	13-Mar-08	11581.00	=""	="Quality Hotel Woden"	17-Apr-08 03:43 PM	

+="CN71472"	"Temporary  Staff"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	27-Feb-08	04-Apr-08	14129.07	=""	="Kowalski Recruitment Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71476"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	06-Feb-08	06-Feb-08	12379.70	="APS COMMISSION 2005/014"	="Timmins Stewart Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71479"	"Venue & Catering for SES Programmes"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	13-Mar-08	30-Jun-08	12100.00	=""	="Peppers Manor House"	17-Apr-08 03:45 PM	

+="CN71494-A2"	"Project Management - Workplace Authority Leases"	="Workplace Authority"	17-Apr-08	="Project management"	19-Sep-07	30-Sep-08	14442.56	=""	="APP Corporation"	17-Apr-08 04:35 PM	

+="CN71496"	"Conduct a Survey on Staff Attitudes and Perceptions to Security"	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	19-Oct-07	09-Nov-07	14300.00	=""	="WORKPLACE RESEARCH ASSOCIATES PTY LTD"	17-Apr-08 04:38 PM	

+="CN71516"	"Extension of Legal services"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	22-Feb-08	30-Jun-08	10000.00	=""	="John V. Gooley"	18-Apr-08 10:30 AM	

+="CN71546"	"FAIRLEAD ASSEMBLY - ASLAV"	="Department of Defence"	18-Apr-08	="Armoured fighting vehicles"	17-Apr-08	10-Jan-09	15889.76	=""	="GENERAL DYNAMICS LAND SYSTEMS"	18-Apr-08 12:05 PM	

+="CN71561"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	17-Apr-08	17-May-08	11039.60	=""	="MICKS AUTOS"	18-Apr-08 01:50 PM	

+="CN71566"	"Blackberry access and usage to 19 Feb 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	19-Jan-08	19-Feb-08	14313.09	=""	="Telstra Corporation Ltd"	18-Apr-08 01:57 PM	

+="CN71573"	"Onsite tech 28/1/08 - 22/2/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	28-Jan-08	22-Feb-08	10560.00	=""	="Telstra Business Systems"	18-Apr-08 01:58 PM	

+="CN71578"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	11737.00	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71582"	"For professional services rendered during the period 18 February 2008 to 02 March 2008 AQIS contractor Phillip Livingstone."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	18-Feb-08	02-Mar-08	11550.00	=""	="M&T Resources"	18-Apr-08 02:00 PM	

+="CN71583"	"Contractor Michael Young"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	25-Feb-08	16-Mar-08	10048.50	=""	="Transformed Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71589"	"Production of Cargo Merchandise - Cap"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	11550.00	=""	="Product Supply Solutions"	18-Apr-08 02:00 PM	

+="CN71595"	"Professional services rendered by Glenn Thornton on Phase 3 of the Cargo Business Continuity Project."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Feb-08	30-Jun-08	14018.00	=""	="Ascent"	18-Apr-08 02:01 PM	

+="CN71596"	"CDAC Training Course"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	03-Jul-08	11825.00	=""	="Australian Public Service Commission"	18-Apr-08 02:01 PM	

+="CN71598"	"The supply of Certificate III in Government Folders to all AQIS regions."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Apr-08	12204.00	=""	="Addcolour digital Pty Ltd"	18-Apr-08 02:01 PM	

+="CN71607"	"2 x 90 Evinrude Outboards - fit & remove old motors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-Jun-08	16000.00	=""	="Wynnum Marine Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71608"	"Provision of ergonomic assessments for Management Services Division staff"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	19-Mar-08	26-Jun-08	15000.00	=""	="Konekt Australia Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71611"	"Provision of Sorghum production data analysis for Queensland from 1990 to 2006 from Season Crop Outlook reports for the National Agricultural & Monitoring System"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	10000.00	=""	="Qld Department of Primary Industries & Fisheries"	18-Apr-08 02:03 PM	

+="CN71612"	"Bee export certification inspections @ $130.00 per hour"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	13-Mar-08	11147.50	=""	="NSW Department of Primary Industries"	18-Apr-08 02:03 PM	

+="CN71614"	"Works commissioned by Eugene Nolan"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	11278.60	=""	="Orbit Communications Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71616"	"Provision of training in the identification (diagnostics) of phytophagous mites (Acari)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	06-Apr-08	08-Jun-08	14220.90	=""	="Landcare Research New Zealand"	18-Apr-08 02:04 PM	

+="CN71619"	"Staff training"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING PTY LTD"	18-Apr-08 02:04 PM	

+="CN71620"	"Printing of Sustainable Production Booklet (NLP National Component)"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	01-Mar-08	31-Mar-08	12970.10	=""	="Paragon Printers Australia"	18-Apr-08 02:04 PM	

+="CN71621"	"Purchase of 1 x Leica MZ16 Stereomicroscope"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Tools and General Machinery"	16-Apr-08	30-May-08	13481.60	=""	="Leica Microsystems Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71625"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	12988.25	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71630-A1"	"Regional Managers conference"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Apr-08	30-May-08	10920.00	=""	="Bellinzona Grange Country Retreat"	18-Apr-08 02:05 PM	

+="CN71645"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	18-Mar-08	18-Mar-08	14390.07	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:43 PM	

+="CN71651"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	14795.00	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71657"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	05-Mar-09	15397.70	=""	="Dell Australia PTY Limited"	18-Apr-08 03:44 PM	

+="CN71661"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Pharmaceutical filters or ultra filters"	13-Mar-08	31-Mar-08	13806.65	=""	="Scott Health and Safety"	18-Apr-08 03:45 PM	

+="CN71665"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	13-Mar-08	30-Jun-08	12355.20	="06#199427DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71667"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	12-Mar-08	12-Mar-08	13846.23	=""	="Staging Connections"	18-Apr-08 03:45 PM	

+="CN71668"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Building construction and support and maintenance and repair services"	12-Mar-08	31-Oct-10	11198.00	="07#50688DOC"	="Leda-Vannaclip Pty Limited"	18-Apr-08 03:46 PM	

+="CN71671"	"Services"	="Attorney-General's Department"	18-Apr-08	="Diplomats security services"	14-Mar-08	14-Mar-08	10120.00	="07/12836"	="Intec 1 Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71683"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Personal computer television PC TV tuners"	27-Mar-08	19-Oct-08	11000.00	=""	="Department of Finance and"	18-Apr-08 03:47 PM	

+="CN71685"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Consumer electronics"	27-Mar-08	30-Mar-08	15480.52	=""	="Electroboard Solutions Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71689"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	26-Mar-08	30-Jun-08	11402.36	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71692"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Industrial machinery components and accessories"	31-Mar-08	30-Apr-08	11440.00	=""	="Xtek Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71699"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Wireless internet gateway"	28-Mar-08	31-Mar-08	10054.92	=""	="Amcom Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71702"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Rescue service station"	20-Mar-08	30-Jun-08	14090.77	=""	="Fuelquip (Australia) Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71703"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sports event promotion and sponsorship"	20-Mar-08	20-Mar-08	13750.00	=""	="High Profile Exhibitions Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71709"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Private investigation services"	19-Mar-08	19-Mar-08	10000.00	=""	="Quality Management Solutions"	18-Apr-08 03:51 PM	

+="CN71711"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Expert system software"	25-Mar-08	25-Mar-08	15480.00	="06/18396"	="Swell Design Group Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71713"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	14418.80	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71719"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="National security"	25-Mar-08	01-Feb-09	15334.36	=""	="Chubb Security Aust Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71724"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	12383.40	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71726"	"Printing Services"	="Attorney-General's Department"	18-Apr-08	="Photocopiers"	29-Feb-08	19-Mar-08	12804.41	=""	="Fuji Xerox Australia PTY LTD"	18-Apr-08 03:53 PM	

+="CN71729"	"Career Development"	="Attorney-General's Department"	18-Apr-08	="Career development services"	21-Feb-08	31-Jul-08	11825.00	=""	="Australian Public Service"	18-Apr-08 03:53 PM	

+="CN71731"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	28-Feb-08	31-Dec-08	11490.60	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71733"	"Professional fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	20-Feb-08	31-Jul-08	10285.00	="07/24134"	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:54 PM	

+="CN71738"	"EQUIPMENT"	="Attorney-General's Department"	18-Apr-08	="Notebook computers"	12-Mar-08	29-Mar-08	12821.61	="07/566"	="SOUTH AUSTRALIA POLICE DEPT"	18-Apr-08 03:55 PM	

+="CN71739"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	14544.20	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71741"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	13341.90	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71745"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	14-Mar-08	24-Apr-08	13239.33	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71747"	"Termite Control Services"	="Attorney-General's Department"	18-Apr-08	="Termite control services"	21-Dec-07	21-Dec-07	14150.00	="10190000"	="COCOS MANPOWER PTY LTD"	18-Apr-08 03:56 PM	

+="CN71750"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	18-Mar-08	11696.15	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71753"	"Financial Review"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	22-Feb-08	30-Jun-08	12231.80	=""	="HMA BLAZE"	18-Apr-08 03:57 PM	

+="CN71755"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	25-Feb-08	31-Dec-08	13700.40	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:57 PM	

+="CN71756"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Jan-08	31-Dec-18	13470.82	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:57 PM	

+="CN71759"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	11-Feb-08	29-Feb-08	10298.47	=""	="Cantlie Recruitment"	18-Apr-08 03:58 PM	

+="CN71768"	"Services"	="Attorney-General's Department"	18-Apr-08	="National security"	04-Mar-08	28-Mar-08	12375.00	=""	="Electronic Technology Consulting"	18-Apr-08 03:59 PM	

+="CN71770"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Metal heating services"	05-Mar-08	30-Jun-08	14620.00	=""	="Abbotts Industrial Cooling"	18-Apr-08 04:00 PM	

+="CN71771"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="In service training and manpower development"	06-Mar-08	06-Mar-08	15688.40	=""	="ROYAL ON THE PARK"	18-Apr-08 04:00 PM	

+="CN71772"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	06-Mar-08	07-Mar-08	11760.21	=""	="Hotel Realm"	18-Apr-08 04:00 PM	

+="CN71775"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	11-Mar-08	30-Jun-08	13764.30	=""	="Gillian Beaumont"	18-Apr-08 04:00 PM	

+="CN71776"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sterilisation biological kits"	11-Mar-08	30-Mar-08	11500.01	=""	="St John Ambulance Australia Tasmani"	18-Apr-08 04:00 PM	

+="CN71779"	"Services"	="Attorney-General's Department"	18-Apr-08	="Public enterprises management or financial services"	07-Mar-08	07-Mar-08	13200.00	="07/8967"	="Analytics Group"	18-Apr-08 04:01 PM	

+="CN71785"	"Vetting Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	20-Mar-08	30-Jun-08	10000.00	=""	="Sara Maree Minehan"	18-Apr-08 04:02 PM	

+="CN71806"	"One-off Referral fee - placement of officer"	="Office of the Director of Public Prosecutions"	18-Apr-08	="Human resources services"	18-Apr-08	18-Apr-08	10902.50	=""	="Hays Legal"	18-Apr-08 04:16 PM	

+="CN71814"	"Security Costs"	="Department of Finance and Deregulation"	18-Apr-08	="National Defence and Public Order and Security and Safety Services"	01-Jul-07	30-Jun-08	10598.00	=""	="CIC SECURE"	18-Apr-08 05:19 PM	

+="CN71817"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	11-Apr-08	13200.00	="PR4790"	="DELL COMPUTER PTY LIMITED"	18-Apr-08 05:20 PM	

+="CN71826"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	10500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71829"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	02-Apr-08	30-Apr-08	14421.19	="N/A"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:21 PM	

+="CN71832"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	04-Feb-08	30-Jun-08	14080.00	=""	="THE NOUS GROUP"	18-Apr-08 05:21 PM	

+="CN71834"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	08-Apr-08	31-May-08	11485.21	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:22 PM	

+="CN71835"	"Minor Capital Acquisitions"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	12582.90	=""	="ROYAL AUSTRALIAN MINT"	18-Apr-08 05:22 PM	

+="CN71837"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	08-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	18-Apr-08 05:22 PM	

+="CN71844"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	31-Mar-08	13500.00	="n/a"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71848"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	30-Apr-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71855"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:24 PM	

+="CN71856"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13750.00	="N/A"	="DOYLE CONSULTANTS PTY LTD"	18-Apr-08 05:24 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008val16000to20000.xls
@@ -1,1 +1,109 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70685"	" VARRIOUS PHARMACEUTICAL ITEMS "	="Defence Materiel Organisation"	14-Apr-08	="Medical health associations"	11-Apr-08	12-May-08	18386.86	=""	="SYMBION PHARMACY SERVICES"	14-Apr-08 09:34 AM	

+="CN70690"	"22 X CANON CAMERA MODEL IXUS 960IS 22 X CANON FLASM MODEL HFDC1"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	16161.00	=""	="THE GOOD GUYS"	14-Apr-08 09:37 AM	

+="CN70694"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	10-Apr-08	17531.25	=""	="J A LOGAN"	14-Apr-08 09:57 AM	

+="CN70701"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	09-Apr-08	16600.85	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:58 AM	

+="CN70706"	"EL2.2 Accommodation whilst interstate as per the EL2 Accommodation Guidelines"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	17269.70	=""	="SPIKE TRUST"	14-Apr-08 10:00 AM	

+="CN66070"	"Liquidator Opinion"	="Australian Securities and Investments Commission"	14-Apr-08	="Liquidation law services"	01-Nov-07	30-Jun-08	17160.00	=""	="George Divitkos"	14-Apr-08 10:35 AM	

+="CN70712-A2"	"Provision of cleaning services at the Mandurah premises of CRS Australia"	="CRS Australia"	14-Apr-08	="General building and office cleaning and maintenance services"	10-Mar-08	09-Mar-11	16530.00	=""	="GWC Total Management"	14-Apr-08 10:38 AM	

+="CN70716"	"qty 60 antenna group , base matching unit, upper assembly, spares for use with military radios"	="Defence Materiel Organisation"	14-Apr-08	="Radio antennas"	10-Apr-08	04-Sep-08	18480.00	="RFQ-7066A"	="A&D International Pty Ltd"	14-Apr-08 11:23 AM	

+="CN70717"	"RAN Antenna Assembly"	="Defence Materiel Organisation"	14-Apr-08	="Aircraft antennas"	18-Apr-08	15-Aug-08	19147.04	=""	="BAE Systems"	14-Apr-08 11:35 AM	

+="CN70727-A2"	" Curam Software "	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	25-Feb-08	06-Mar-08	18000.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70739"	"Office supplies: Epson Projector & Smart Board"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	16040.82	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:24 PM	

+="CN70742"	"Office Supplies - Electronic Whiteboards"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	17083.60	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:32 PM	

+="CN70769"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	30-Jul-07	30-Jun-08	19256.38	=""	="Hays Personnel Services (Australia)"	14-Apr-08 01:00 PM	

+="CN70780"	"Probity Advisor for the SBR Authentication Project"	="Australian Taxation Office"	14-Apr-08	="Management advisory services"	13-Mar-08	02-Jun-08	19725.00	=""	="Walter & Turnbull Pty Ltd"	14-Apr-08 01:29 PM	

+="CN70791"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	04-Oct-07	04-Oct-07	18440.95	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:05 PM	

+="CN70806"	"VEHICLE PARTS"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Apr-08	06-May-08	18853.35	=""	="Land Rover Australia"	14-Apr-08 03:34 PM	

+="CN70809"	"Australia New Zealand Agents Workshop - AEI Participation"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20000.00	="PRN17759"	="EDMEDIA STUDENT RECRUITMENT PTY"	14-Apr-08 03:50 PM	

+="CN70811"	"EBSCO - 2008 Journal subcriptions"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	31-Jan-08	30-Jun-08	16442.94	="PRN18481"	="EBSCO AUSTRALIA"	14-Apr-08 03:50 PM	

+="CN70816"	"14 Mort Street, Level 3 - Feature paint and Office"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	31-Dec-07	29-Feb-08	16950.30	="PRN18366"	="CONSTRUCTION CONTROL INTERIORS P/L"	14-Apr-08 03:54 PM	

+="CN70829"	"Video Conferencing Support and Maintenance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer services"	21-Dec-07	30-Jun-08	19500.00	="PRN18208"	="SERVICEPOINT AUSTRALIA PTY LTD"	14-Apr-08 04:00 PM	

+="CN70834"	"Consultant for the development of a strategic framework"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Engineering and Research and Technology Based Services"	01-Jan-08	15-May-08	18000.00	="PRN18247"	="PAUL FITZGERALD"	14-Apr-08 04:02 PM	

+="CN70846"	"Review of Australian Training Awards selection pro"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	26-Nov-07	15-Feb-08	16200.00	="PRN17899"	="JOANNE MALPAS"	14-Apr-08 04:03 PM	

+="CN70852"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	18480.00	="PRN12579"	="ALL BUSINESS LEARNING END"	14-Apr-08 04:04 PM	

+="CN70848"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	28-Aug-07	30-Jun-08	19305.00	=""	="DEEWR"	14-Apr-08 04:04 PM	

+="CN70861"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	04-Apr-08	30-Jun-08	20000.00	=""	="Ms Elizabeth Cheeseman"	14-Apr-08 04:24 PM	

+="CN70862"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	28-Aug-07	11-Sep-07	20000.00	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	14-Apr-08 04:26 PM	

+="CN70869"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	29-Aug-07	30-Jun-08	18544.55	=""	="Hugo Personnell Pty Ltd"	14-Apr-08 04:29 PM	

+="CN70871"	"Procurement of desktops and monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	17941.00	=""	="Dataflex"	14-Apr-08 04:39 PM	

+="CN70894"	"UNSW CO-OP PROGRAM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	09-Apr-08	09-Apr-08	16775.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70917"	"REPAIR AND OH OF BH SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	16805.28	=""	="SAAL"	15-Apr-08 08:51 AM	

+="CN70948"	"Benchmark Data Set - Australian Bureau of Statistics data"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Printed media"	07-Nov-07	30-Jun-08	16500.00	="PRN17633"	="AUSTRALIAN BUREAU OF STATISTICS"	15-Apr-08 10:00 AM	

+="CN70950"	"SAP Australia - InfoPak Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	22-Nov-07	30-Jun-08	17167.54	="PRN17893"	="SAP Australia Pty Ltd"	15-Apr-08 10:00 AM	

+="CN70986"	"Upgrade the CCTV & Access Control for Office Locations in Canberra"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Security and personal safety"	10-Apr-08	17-Apr-08	19749.40	="0708-1215"	="TAC Pacific Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70994"	"Workshopping the AusBIOSEC national response arrangements"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-May-08	19525.00	="0708-1122"	="Bureau of Rural Sciences"	15-Apr-08 10:17 AM	

+="CN71007"	"Blackberry Charges feb"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Apr-08	17430.57	="0708-1158"	="Telstra Corporation Limited"	15-Apr-08 10:20 AM	

+="CN70982"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	18042.04	=""	="LANDROVER"	15-Apr-08 10:32 AM	

+="CN69433"	"Applications Development Services"	="Department of the Prime Minister and Cabinet"	15-Apr-08	="Application programming services"	22-Feb-08	03-May-08	17050.00	=""	="APA Management"	15-Apr-08 11:35 AM	

+="CN71058"	"Provision of administrative support services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Feb-08	30-Jun-08	19535.25	="PRN18395"	="Omega Personnel Pty Ltd"	15-Apr-08 01:47 PM	

+="CN71067"	"Interior Deisgn - Upgrading Floor Plans for Nation"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	01-Dec-07	30-Jun-08	16236.00	="PRN18700"	="PECKVONHARTEL"	15-Apr-08 01:49 PM	

+="CN71068"	"Video capture of live DEEWR Event at National Exhibition Centre"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Telecommunications media services"	26-Feb-08	31-Mar-08	18000.00	="PRN18742"	="ALCAM FILM and VIDEO PRODUCTION P/L"	15-Apr-08 01:49 PM	

+="CN71079"	"Rad Controls"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer services"	01-Feb-08	30-Jun-08	19900.00	="PRN18504"	="TELERIK INC"	15-Apr-08 01:52 PM	

+="CN71100"	"Payment for conferencing package and venue hire"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	31-Jul-08	18456.94	="PRN18779"	="NATIONAL WINE CENTRE OF AUSTRALIA"	15-Apr-08 01:56 PM	

+="CN71104"	"Provision of contract librarian services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	07-Jan-08	07-Apr-08	19305.00	="PRN18246"	="INFORMED SOURCES PTY LTD"	15-Apr-08 01:58 PM	

+="CN71111"	"Provision of Cleaning services at CRS Australia Murray Bridge premises"	="CRS Australia"	15-Apr-08	="General building and office cleaning and maintenance services"	01-Jul-04	30-Dec-07	19468.60	=""	="JE & CG Underwood"	15-Apr-08 02:08 PM	

+="CN71117"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	15-Apr-08	="Medical health associations"	11-Apr-08	11-May-09	16443.10	=""	="SYMBION PHARMACY SERVICES"	15-Apr-08 02:31 PM	

+="CN71123"	"Administrative Services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	19999.99	="TRS06/017"	="QINETIQ CONSULTING PTY LTD"	15-Apr-08 03:05 PM	

+="CN71126"	"Venue Costs Ridges Eagle Hawk Motorcycle Scooter Safety Summit"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Motor vehicles"	10-Apr-08	30-Jun-08	16678.20	=""	="The Trustte for Australian Hotels T"	15-Apr-08 03:06 PM	

+="CN71136"	"Deliver writing skills to department Deliver writing skills to department"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Specialised educational services"	01-Jan-08	30-Jun-08	18796.49	="APS COMMISSION 2005/014"	="ETHOS CRS CONSULTING PTY LTD"	15-Apr-08 03:07 PM	

+="CN71137"	"Deliver writing skills to department Deliver writing skills training"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Specialised educational services"	01-Jan-08	30-Jun-08	18404.99	="APS COMMISSION 2005/014"	="THE TRUSTEE FOR ASPIRE LEARNING &"	15-Apr-08 03:08 PM	

+="CN71139"	"Contract Staff - Karen Heath"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	11-Apr-08	06-Jun-08	19800.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	15-Apr-08 03:08 PM	

+="CN71155"	"motor vehicle spare parts"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	16504.18	=""	="LANDROVER"	15-Apr-08 04:03 PM	

+="CN71158"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	19398.98	=""	="LANDROVER"	15-Apr-08 04:06 PM	

+="CN71170"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	18789.89	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:19 AM	

+="CN71209"	"Cool room installation-ARRC Kensington  080402"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory supplies and fixtures"	04-Apr-08	06-Jun-08	17297.00	=""	="ARCUS AUSTRALIA PTY LTD"	16-Apr-08 10:30 AM	

+="CN71220"	"Force transducer used a s a tension transfer force std PO Ra"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	08-Jan-08	23-Jan-08	19500.00	=""	="GASSMAN TESTING AND METROLOGY GMBH"	16-Apr-08 10:32 AM	

+="CN71244"	"Project Management Wilde and Woollard job 0750, 08-315 ks"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	11-Apr-08	17967.33	=""	="WILDE AND WOOLLARD"	16-Apr-08 10:34 AM	

+="CN71245"	"JLLasalle Facilities Management Fees for March 2008, 2100070"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	11-Apr-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	16-Apr-08 10:34 AM	

+="CN71246"	"pURCHASE OF cISCO 11502 cONTENT sWITCH  c04/01986"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	21-Dec-07	31-Dec-07	19236.42	=""	="DELL AUSTRALIA"	16-Apr-08 10:35 AM	

+="CN71257"	"Duesburys Nexia Account and Tax Services Venture Capital Sec"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Accounting and auditing"	30-Jun-05	30-Jun-09	20000.00	=""	="DUESBURYS"	16-Apr-08 10:36 AM	

+="CN71263"	"MEDICAL CONSUMABLE ITEM"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	17094.00	=""	="PROTECTOR ALSAFE"	16-Apr-08 10:51 AM	

+="CN71267"	"Form Printed: PM105, Outpatient Clinical Record. Qty 16,500."	="Defence Materiel Organisation"	16-Apr-08	="Examination booklets or forms"	28-Nov-07	21-Dec-08	19965.00	="RFQ 2680072"	="Moore Business Systems Pty Ltd"	16-Apr-08 10:56 AM	

+="CN71280-A1"	"PEP Training for ICT Application Branch 8 Staff Members"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Nov-07	19624.00	=""	="INNOVATION DYNAMICS"	16-Apr-08 11:08 AM	

+="CN71326"	"Seat Assy - ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	20-Jul-08	19092.70	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:10 PM	

+="CN71327"	"Equipment Hire"	="National Capital Authority"	16-Apr-08	="Promotional services"	09-Nov-07	16-Nov-07	16268.90	=""	="Kennards Events Pty Ltd"	16-Apr-08 04:10 PM	

+="CN71368"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	08-Apr-08	30-Apr-08	19735.00	=""	="Stills Gallery"	17-Apr-08 10:58 AM	

+="CN71371"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	07-Apr-08	30-Apr-08	17639.71	=""	="Lauraine Diggins Fine Art Pty Ltd"	17-Apr-08 10:58 AM	

+="CN71379"	"Provision of Duct work maintenance and rehabilitation services (Contract JH00057M)"	="Department of Parliamentary Services"	17-Apr-08	="Electromechanical services"	01-Apr-08	30-Apr-08	16500.00	=""	="Chubb Fire Safety Limited"	17-Apr-08 11:00 AM	

+="CN71391"	"Centrifugal Fan and Filter Elements"	="Defence Materiel Organisation"	17-Apr-08	="Plumbing and heating and air conditioning"	03-Mar-08	05-May-08	18458.31	="G8923"	="Air International Transit Pty Ltd"	17-Apr-08 11:11 AM	

+="CN71430"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	17078.76	=""	="LAND ROVER AUSTRALIA"	17-Apr-08 02:29 PM	

+="CN71447"	"Purchase of Artwork"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Socio cultural services"	14-Apr-08	14-Apr-08	18000.00	="0708-1280"	="Jan Murphy Gallery"	17-Apr-08 03:20 PM	

+="CN71467"	"Placement costs under Horizons Programme"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	12-Mar-08	02-Apr-08	16500.00	=""	="Australian Customs Service"	17-Apr-08 03:43 PM	

+="CN71468"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	17-Apr-08	="Marketing and distribution"	12-Mar-08	12-Mar-08	18590.00	=""	="Hotel Realm Pty Ltd"	17-Apr-08 03:43 PM	

+="CN71523"	" DESICCANT CONTAINER "	="Defence Materiel Organisation"	18-Apr-08	="Desiccants"	16-Apr-08	02-Jul-08	18150.00	=""	="A & D INTERNATIONAL PTY LTD"	18-Apr-08 10:59 AM	

+="CN71560-A1"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	18-Apr-08	18-May-08	17926.15	=""	="MICKS AUTOS"	18-Apr-08 01:47 PM	

+="CN71564"	"Assessment of requirements,functional analysis and solution design for ARC database"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Apr-08	31-May-08	19008.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71607"	"2 x 90 Evinrude Outboards - fit & remove old motors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-Jun-08	16000.00	=""	="Wynnum Marine Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71609"	"Analytical testing for the National Residue Survey - Program 15THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2943"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	16995.00	=""	="National Measurement Institute"	18-Apr-08 02:03 PM	

+="CN71624"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	18262.75	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71652"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	19461.20	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71663"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	13-Mar-08	16500.00	=""	="Indigenous Law Students and Lawyers"	18-Apr-08 03:45 PM	

+="CN71672"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	16-May-08	19511.25	="06/18147"	="Face 2 Face Recruitment Pty Limited"	18-Apr-08 03:46 PM	

+="CN71695"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Oil pumps"	31-Mar-08	31-Mar-08	17257.86	=""	="MAN DIESEL AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71708"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military police training"	19-Mar-08	19-Mar-08	16058.68	=""	="Chemring Australia Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71714"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	18068.60	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71715"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	25-Mar-08	16500.00	="06/18392"	="Verossity Pty Limited"	18-Apr-08 03:52 PM	

+="CN71717"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	07-May-08	19800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71720"	"Network Module"	="Attorney-General's Department"	18-Apr-08	="Network gateway"	25-Mar-08	30-Jun-08	19392.73	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71721"	"Furniture"	="Attorney-General's Department"	18-Apr-08	="Furniture"	28-Feb-08	26-Mar-08	18440.95	=""	="Australian Federal Police"	18-Apr-08 03:52 PM	

+="CN71723"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Feb-08	13-Feb-18	18487.71	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:53 PM	

+="CN71725"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	17660.50	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71728"	"Legal professional services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	19-Mar-08	17775.45	="195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:53 PM	

+="CN71730"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Feb-08	30-Jun-08	18058.70	=""	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71748"	"Professional services"	="Attorney-General's Department"	18-Apr-08	="Communications vocational training services"	22-Feb-08	27-Feb-08	19250.00	=""	="LIFELINE CANBERRA INC"	18-Apr-08 03:56 PM	

+="CN71758"	"Consultancy Costs"	="Attorney-General's Department"	18-Apr-08	="Strategic planning consultation services"	06-Dec-07	29-Feb-08	16843.75	=""	="EXCELERATED CONSULTING PTY LTD"	18-Apr-08 03:58 PM	

+="CN71760"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Jan-08	20-Feb-09	18901.85	="07/23004"	="Australian Government Solicitor"	18-Apr-08 03:58 PM	

+="CN71769"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	05-Mar-08	30-Jun-08	18350.00	=""	="Powercorp Operations Pty Ltd"	18-Apr-08 03:59 PM	

+="CN71789"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Apr-08	17127.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71792"	"Funding Model"	="Attorney-General's Department"	18-Apr-08	="Basic operations models"	18-Mar-08	30-Jun-08	19000.00	=""	="Malcolm Pascoe"	18-Apr-08 04:02 PM	

+="CN71797"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Risk or hazard assessment"	04-Mar-08	04-Mar-08	17904.70	="06/12401"	="KPMG"	18-Apr-08 04:03 PM	

+="CN71798"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Education and Training Services"	04-Mar-08	04-Mar-08	19130.32	=""	="The Trustee for Wesfire Unit Trust"	18-Apr-08 04:03 PM	

+="CN71803"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office furniture"	19-Dec-07	30-Mar-08	18849.60	=""	="Cite Office Design"	18-Apr-08 04:03 PM	

+="CN71820"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-Jun-08	18270.00	=""	="FRANKS PAINTING SERVICE"	18-Apr-08 05:20 PM	

+="CN71827"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	17500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71845"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	16-May-08	20000.00	="."	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	18-Apr-08 05:23 PM	

+="CN71849"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	16750.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71850"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	19250.00	="N/A"	="WALLAGA PTY LTD"	18-Apr-08 05:24 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008val20000to30000.xls
@@ -1,1 +1,163 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70686-A1"	"Scoping study of Financial Management"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	30000.00	=""	="KPMG (CANBERRA)"	14-Apr-08 09:34 AM	

+="CN70687"	"LOCKERS"	="Australian Taxation Office"	14-Apr-08	="Furniture and Furnishings"	09-Apr-08	30-Apr-08	25872.00	=""	="SPACEPAC INDUSTRIES"	14-Apr-08 09:37 AM	

+="CN70688"	"Printing - Training material for Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	25-Jan-08	25-Jan-08	21068.01	=""	="Snap Printing"	14-Apr-08 09:37 AM	

+="CN70699"	"FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	08-Apr-08	28406.64	=""	="DUUS & CO"	14-Apr-08 09:58 AM	

+="CN70703"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	09-Apr-08	25729.83	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70705"	"IT Contractor"	="Australian Taxation Office"	14-Apr-08	="Engineering and Research and Technology Based Services"	10-Apr-07	23-May-08	21120.00	=""	="COMPAS PTY LTD"	14-Apr-08 10:00 AM	

+="CN70709"	"Provision for SDV hard drives and maintenance"	="Comsuper"	14-Apr-08	="Hardware"	20-Mar-08	30-Jun-08	28946.50	=""	="Secure Systems Limited"	14-Apr-08 10:16 AM	

+="CN70741"	"Office supplies - Polycom HDX 8004 XL HD Package"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	25683.10	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:29 PM	

+="CN70746"	"Employer Advisor Programme"	="Workplace Authority"	14-Apr-08	="Work related organisations"	06-Aug-07	30-Jun-08	21747.50	=""	="Master Builders Australia Incorporation"	14-Apr-08 12:39 PM	

+="CN70753"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	27610.00	=""	="Greythorn"	14-Apr-08 12:50 PM	

+="CN70762"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	31-Jul-07	30-Jun-08	28994.64	=""	="Cubic Consulting"	14-Apr-08 12:55 PM	

+="CN70786"	"Legal fees"	="Family Court of Australia"	14-Apr-08	="Legal services"	04-Feb-08	28-Feb-08	22347.33	=""	="Australian Government Solicitor"	14-Apr-08 01:40 PM	

+="CN70794"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	27-Jul-07	30-Jun-08	28216.80	=""	="Julia Ross Personnel"	14-Apr-08 02:20 PM	

+="CN70805"	"VEHICLE BATTERIES (MILITARY VERSION)"	="Department of Defence"	14-Apr-08	="Vehicle batteries"	28-Mar-08	18-Apr-08	20373.21	=""	="EXIDE TECHNOLOGIES PTY LTD"	14-Apr-08 03:17 PM	

+="CN70809"	"Australia New Zealand Agents Workshop - AEI Participation"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20000.00	="PRN17759"	="EDMEDIA STUDENT RECRUITMENT PTY"	14-Apr-08 03:50 PM	

+="CN70819-A1"	"Design, document and contract administration, 71 Northbourne Ave L2-4"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	03-Sep-07	30-Apr-08	25000.00	="PRN18364"	="PECKVONHARTEL"	14-Apr-08 03:55 PM	

+="CN70826"	"2004 Benchmark results"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	20-Dec-07	18-Jan-08	24395.00	="PRN15440"	="MINISTERIAL COUNCIL ON EDUCATION,"	14-Apr-08 03:59 PM	

+="CN70856-A1"	"Procurement of services for recruitment activity for HR"	="Australian Securities and Investments Commission"	14-Apr-08	="Human resources services"	03-Mar-08	30-Jun-08	28000.00	=""	="HR Partners"	14-Apr-08 04:15 PM	

+="CN70861"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	04-Apr-08	30-Jun-08	20000.00	=""	="Ms Elizabeth Cheeseman"	14-Apr-08 04:24 PM	

+="CN70862"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	28-Aug-07	11-Sep-07	20000.00	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	14-Apr-08 04:26 PM	

+="CN70863"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	20-Jun-07	20-Aug-07	21807.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70886"	"ONLINE RECRUITMENT SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	29-Mar-07	28-Mar-09	22000.00	=""	="NGA.NET PTY LTD"	14-Apr-08 04:42 PM	

+="CN70896"	"VMWARE MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	01-Apr-08	01-Apr-08	20075.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:44 PM	

+="CN70903"	"REPAIRS AND MAINTENANCE SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	08-Apr-08	26393.40	=""	="INTAFIX PTY LTD"	14-Apr-08 04:45 PM	

+="CN70912"	"Physical Security Fit Out"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Building and Construction and Maintenance Services"	08-Feb-08	08-Apr-08	28280.54	=""	="SEALECK PTY LTD"	15-Apr-08 08:36 AM	

+="CN70919"	"Certification Services"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Business administration services"	24-Dec-07	31-Mar-08	25000.00	=""	="ANABELLE BITS PTY LTD"	15-Apr-08 09:08 AM	

+="CN70925"	"Prefessional Legal Services"	="Workplace Authority"	15-Apr-08	="Legal services"	29-Aug-07	30-Jun-08	24350.26	=""	="Minter Ellison"	15-Apr-08 09:21 AM	

+="CN70935"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	29821.94	=""	="LAND ROVER AUSTRALIA"	15-Apr-08 09:40 AM	

+="CN70945"	"Higher Education Removalist fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Building and Construction and Maintenance Services"	24-Sep-07	30-Nov-07	24992.00	="PRN17621"	="Movers and Shakers Business Relocatio"	15-Apr-08 10:00 AM	

+="CN70946-A1"	"Fitout plans and floor plans for level 2, 72 Northbourne Ave"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Workstations and office packages"	28-Aug-07	30-Jun-08	29260.00	="PRN16823"	="PECKVONHARTEL"	15-Apr-08 10:00 AM	

+="CN70947-A1"	"Minor fit out level 12, 188 Collins St Hobart"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	02-Oct-07	30-Nov-07	20582.00	="PRN17550"	="Cunic Constructions Pty Ltd"	15-Apr-08 10:00 AM	

+="CN70958"	"Imation Tape Cartridges"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	28270.00	="PRN17742"	="PRODATA COMPUTER PRODUCTS"	15-Apr-08 10:01 AM	

+="CN70971"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	20790.00	="PRN12579"	="SYDNEY TAXI TRAINING CENTRE PTY LTD"	15-Apr-08 10:04 AM	

+="CN70977"	"Financial Statement Guidelines for Australian High Higher Education Providers 2007 Reporting Period"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	31-Oct-07	31-Dec-07	29150.00	="PRN17465"	="PRICEWATERHOUSECOOPERS"	15-Apr-08 10:06 AM	

+="CN70983"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Oct-07	31-Oct-07	23248.50	=""	="Ortho-Clinical Diagnostics"	15-Apr-08 10:14 AM	

+="CN70990"	"Review and update of the National Pollutant Inventory maritime manual"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	08-Apr-08	15-Apr-08	23689.00	="0708-1169"	="Pacific Air & Environment Pty Ltd"	15-Apr-08 10:16 AM	

+="CN71001"	"Maintenance and ehancement of the National Pollutant Inventory online system database"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	30-Jun-08	26000.00	="0708-1200"	="Dialog Information Technology"	15-Apr-08 10:19 AM	

+="CN71013"	" Photographic services "	="Australian Competition and Consumer Commission"	15-Apr-08	="Photographic services"	01-Nov-07	30-Nov-07	20019.48	=""	="Bearcage productions"	15-Apr-08 10:54 AM	

+="CN71014"	"For the procurement of graphics desgin and printing services for the production of the accompanying resources for the Criteria for the Clinical Use of Intravenous Immunoglobulin in Australia"	="National Blood Authority"	15-Apr-08	="Published Products"	21-Dec-07	25-Feb-08	27000.00	=""	="Wilton Hanford Hanover"	15-Apr-08 11:01 AM	

+="CN71022"	"Computer Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Computer services"	28-Feb-08	27-Feb-09	27506.60	=""	="Funnellback Pty Ltd"	15-Apr-08 11:42 AM	

+="CN71032"	"Memorial - Minor Works"	="National Capital Authority"	15-Apr-08	="Garden planting or maintenance services"	14-Mar-08	25-Apr-09	26884.00	=""	="Pyramid Corporation Pty Ltd"	15-Apr-08 12:26 PM	

+="CN71046-A1"	"Administering Industry/Business Satisfaction Survey"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	01-Oct-07	31-Dec-07	28814.50	="PRN16859"	="ACNielsen (Holdings) Pty Ltd"	15-Apr-08 01:41 PM	

+="CN71048-A1"	"Review of the Prime Minister's Prizes for Science 2007/2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	30000.00	="PRN17429"	="SCIENCE IN PUBLIC"	15-Apr-08 01:42 PM	

+="CN71049"	"Construction work at Finke Community"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	18-Oct-07	12-Dec-07	22755.00	="PRN17970"	="PETER ROPER"	15-Apr-08 01:42 PM	

+="CN71051"	"Annual Indigenous Higher Education Advisory Council Conference 21 November 2007, Adelaide"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	31-Dec-07	26373.14	="PRN16957"	="NATIONAL WINE CENTRE OF AUSTRALIA"	15-Apr-08 01:43 PM	

+="CN71054"	"Contract with Green and Green to supply APS 4"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	04-Feb-08	30-Jun-08	23690.10	="PRN18444"	="THE GREEN and GREEN GROUP PTY LTD"	15-Apr-08 01:46 PM	

+="CN71060"	"OAKS - AEI accommodation block booking for the AEI"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Hotels and lodging and meeting facilities"	12-Feb-08	30-Jun-08	29000.00	="PRN18522"	="OAKS ON COLLINS"	15-Apr-08 01:47 PM	

+="CN71061"	"Combined event with the Carrick Institute for Learning and Teaching Preformance Fund"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	28-Mar-08	25000.00	="PRN17755"	="THE CARRICK INSTITUTE FOR LEARNING"	15-Apr-08 01:47 PM	

+="CN71069"	"ECA (Employment Conditions Abroad) Membership 01/12/07 to 30/11/08 and Country reports 1-20"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Dec-07	30-Nov-08	26010.00	="PRN18014"	="ECA INTERNATIONAL PTY LTD"	15-Apr-08 01:49 PM	

+="CN71071"	"20 Workstation for L2, 14 Mort (Backfilling fitout)"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	02-Feb-08	01-Aug-08	20636.00	="PRN18609"	="Schiavello Commercial Interiors"	15-Apr-08 01:50 PM	

+="CN71082-A1"	"Consultancy for provision of professional services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Business administration services"	07-Feb-08	30-Jun-08	30000.00	="PRN18518"	="Dimension Data Australia Pty Ltd"	15-Apr-08 01:53 PM	

+="CN71087"	"Financial advice for VET (Vocational Education and Training)"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Financial and Insurance Services"	29-Nov-07	07-Mar-08	22803.00	="PRN17619"	="WALTERTURNBULL"	15-Apr-08 01:55 PM	

+="CN71094"	"Assess the liquidity and financial viability of a school"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Financial and Insurance Services"	09-Jan-08	31-Mar-08	23925.00	="PRN18107"	="DELOITTE GROWTH SOLUTIONS PTY LTD"	15-Apr-08 01:56 PM	

+="CN71115"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	30-Aug-07	30-Jun-08	23263.68	=""	="Freehills"	15-Apr-08 02:20 PM	

+="CN68763"	"Permeation tube and Permeation Ammonia Device"	="Defence Materiel Organisation"	15-Apr-08	="Permeability testing apparatus"	09-Apr-08	30-Apr-08	21978.00	=""	="BENFIELD MARKETING LTD"	15-Apr-08 02:26 PM	

+="CN71128"	"Recruitment for APS 4 Admin Support"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	08-Apr-08	30-Jun-08	25791.15	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	15-Apr-08 03:06 PM	

+="CN71130"	"Provision of conference administration services for Transport Colloquium and Regional Perspectives"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	14-Mar-08	30-Jun-08	21000.00	="TRS08/056"	="CONFERENCE LOGISTICS"	15-Apr-08 03:07 PM	

+="CN71132"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	07-Apr-08	27-Jun-08	27225.00	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	15-Apr-08 03:07 PM	

+="CN71149"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Aug-07	30-Jun-08	25000.00	=""	="MEGT"	15-Apr-08 03:37 PM	

+="CN71171"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	20-Mar-08	19-Apr-08	28594.50	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:27 AM	

+="CN71182"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	21-Sep-07	20-Sep-09	28600.00	=""	="Leaseplan"	16-Apr-08 10:13 AM	

+="CN71183"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	25-May-07	24-May-09	24300.00	=""	="Leasepaln"	16-Apr-08 10:17 AM	

+="CN71193"	"EAP- Quarter Three January- March 08 C07/07657"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	01-Jul-05	30-Apr-08	21895.96	=""	="I P S WORLDWIDE"	16-Apr-08 10:28 AM	

+="CN71210"	"TRIM Software Maintenance  08/00116"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	04-Apr-08	30-Jun-08	20078.00	=""	="ALPHAWEST SERVICES PTY LTD"	16-Apr-08 10:30 AM	

+="CN71214"	"LEAR SIEGLER S4000 chilled mirror-C0023307 LO040408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	07-Apr-08	25-Jun-08	26651.90	=""	="LEAR SIEGLER AUSTRALASIA P/L"	16-Apr-08 10:31 AM	

+="CN71228"	"Milestone MultiPREP 41 Rotar  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	11-Apr-08	30-Jun-08	27524.75	=""	="JOHN MORRIS SCIENTIFIC P/L"	16-Apr-08 10:32 AM	

+="CN71230"	"Recruitment of a BA for SA"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	11-Mar-08	27-Jun-08	27214.00	=""	="HUDSON GLOBAL RESOURCES (AUST)"	16-Apr-08 10:33 AM	

+="CN71232"	"cONTENT kEEPER lICENCE rENEWAL"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	14-Apr-08	30-Jun-08	28480.93	=""	="ZALLCOM PTY LTD"	16-Apr-08 10:33 AM	

+="CN71236"	"Ausindustry Innovation Australia showcase event 8 April 08 E"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Hotels and lodging and meeting facilities"	15-Apr-08	30-Apr-08	25374.80	=""	="ADELAIDE EXPO HIRE PTY LTD"	16-Apr-08 10:33 AM	

+="CN71237"	"Business Consultation Website Campaign Advertisement C07/108"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	15-Apr-08	30-Jun-08	26650.80	=""	="HMA BLAZE PTY LTD"	16-Apr-08 10:33 AM	

+="CN71238"	"To supply and implement the ValueFinancials software package"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	15-Feb-08	30-Jun-08	24090.00	=""	="PRICE WATERHOUSE COOPERS (ACT)"	16-Apr-08 10:34 AM	

+="CN71243"	"EVA Disk Tray  C07/07028"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	18-Mar-08	30-Apr-08	29506.41	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	16-Apr-08 10:34 AM	

+="CN71251"	"Translation Service"	="Australian Crime Commission"	16-Apr-08	="Written translation services"	01-Sep-07	31-Dec-07	22324.00	=""	="Auscript A'Asia P/L"	16-Apr-08 10:36 AM	

+="CN71256"	"Media Skills  2 courses CanbMelb"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	28-Mar-08	30-Apr-08	24966.00	=""	="RED RIVER"	16-Apr-08 10:36 AM	

+="CN71257"	"Duesburys Nexia Account and Tax Services Venture Capital Sec"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Accounting and auditing"	30-Jun-05	30-Jun-09	20000.00	=""	="DUESBURYS"	16-Apr-08 10:36 AM	

+="CN71258"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	22-Jan-07	21-Jan-09	26600.00	=""	="Leaseplan"	16-Apr-08 10:43 AM	

+="CN71265"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	16-Mar-06	15-Mar-08	21600.00	=""	="Leaseplan"	16-Apr-08 10:53 AM	

+="CN71270-A1"	" Energy Efficiency Opportunities Workshop Registration Management Services "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	30-Nov-07	23650.00	=""	="PROFESSIONAL CONFERENCE SERVICES"	16-Apr-08 11:07 AM	

+="CN71281-A1"	"Migration of IBM X3650 AND X3550 series servers"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Aug-07	23375.00	=""	="JVPIE"	16-Apr-08 11:08 AM	

+="CN71294"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	19-Apr-08	24232.27	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 11:19 AM	

+="CN71295"	"Electronic Goods"	="Australian Crime Commission"	16-Apr-08	="Electronic hardware and component parts and accessories"	01-Jan-08	30-Jun-08	23313.84	=""	="Panasonic Australia P/L"	16-Apr-08 11:27 AM	

+="CN71297-A1"	"staff remuneration services: contract extension"	="Australian Institute of Family Studies"	16-Apr-08	="Employment"	01-Feb-09	30-Jun-09	25000.00	=""	="La Trobe University"	16-Apr-08 11:38 AM	

+="CN71299"	"Freight Charges for W/E 15/06/07 APEC related charges NA"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	17-Jul-07	27-Jul-07	21500.00	=""	="JW and LE WEBSTER"	16-Apr-08 11:56 AM	

+="CN71300"	"Seconment C07/00346"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	17-Jul-07	30-Aug-07	23650.00	=""	="JW and LE WEBSTER"	16-Apr-08 11:57 AM	

+="CN71306"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	16-Apr-08	="Community and social services"	01-Jul-07	30-Jun-08	25941.85	=""	="Iwantja Community Inc"	16-Apr-08 01:19 PM	

+="CN71311"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	13-Sep-07	30-Jun-08	26000.00	=""	="Australian Government Solicitor (ACT)"	16-Apr-08 01:53 PM	

+="CN71316"	"Provision of suppling Maxwell Media DLT Data Tapes"	="Australian Federal Police"	16-Apr-08	="Electronic media or data duplicating equipment"	30-Aug-07	30-Jul-08	21511.60	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	16-Apr-08 02:26 PM	

+="CN71320"	"FLOAT BAG INFLATION LINE ASSEMBLIES"	="Defence Materiel Organisation"	16-Apr-08	="Endoscopic dilators or inflation devices or related products"	16-Apr-08	05-Jun-08	22012.68	=""	="RFD AUSTRALIA P/L"	16-Apr-08 03:24 PM	

+="CN71339"	"Studio Enterprise package"	="CrimTrac"	16-Apr-08	="Software maintenance and support"	14-Mar-08	31-Mar-08	21043.20	=""	="Embarcadero Technologies"	16-Apr-08 04:19 PM	

+="CN71353"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Apr-08	="Aircraft spars"	17-Apr-08	27-Nov-08	29175.30	=""	="MILSPEC SERVICES PTY LTD"	17-Apr-08 10:01 AM	

+="CN71364"	"Provision for Financial Resources"	="Comsuper"	17-Apr-08	="Business and corporate management consultation services"	19-Mar-08	30-Apr-08	30000.00	=""	="Analytics Group"	17-Apr-08 10:55 AM	

+="CN71381"	"Provision of Cabling and associated Services Contract (DPS04198 )"	="Department of Parliamentary Services"	17-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	05-May-08	22000.00	=""	="Secom Technical Services P/L"	17-Apr-08 11:00 AM	

+="CN71403-A1"	"Legislative drafting services"	="Office of Parliamentary Counsel"	17-Apr-08	="Bill drafting services"	01-Apr-07	30-Sep-07	25000.00	=""	="Simone Collins"	17-Apr-08 11:59 AM	

+="CN71404-A2"	"Maintenance agreement for PABX hardware/software"	="Office of Parliamentary Counsel"	17-Apr-08	="Software or hardware engineering"	12-Aug-07	11-Aug-11	25968.00	=""	="NECare"	17-Apr-08 12:34 PM	

+="CN71418-A1"	" Provision of Security Clearance Processing "	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	28-Sep-07	30-Jun-08	21000.00	="DFAT06/210066"	="BARRINGTON CORPORATE RISK LTY LTD"	17-Apr-08 01:55 PM	

+="CN71422"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	23288.92	=""	="LAND ROVER AUSTRALIA"	17-Apr-08 02:05 PM	

+="CN71429"	" Provision of Security Clearance Processing "	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	04-Sep-07	30-Jun-08	22000.00	="SON71424"	="THE TRUSTEE FOR MPS"	17-Apr-08 02:17 PM	

+="CN71462"	"Coaching Services"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	08-Apr-08	10-Apr-08	22322.30	="APS COMMISSION 2005/014"	="Dominic Downie & Associates"	17-Apr-08 03:42 PM	

+="CN71463"	"STEP IELRP to ATO"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	07-Apr-08	30-Jun-09	24640.00	=""	="Australian Taxation Office"	17-Apr-08 03:43 PM	

+="CN71464"	"STEP IELRP to ATO"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	04-Apr-08	30-Sep-08	24640.00	=""	="Australian Taxation Office"	17-Apr-08 03:43 PM	

+="CN71466"	"Certificate III in government"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	14-Mar-08	31-Mar-08	27198.05	=""	="UNE Partnerships Pty Ltd"	17-Apr-08 03:43 PM	

+="CN71473"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	27-Feb-08	27-Feb-08	25300.00	="APS COMMISSION 2005/014"	="CIT Solutions"	17-Apr-08 03:44 PM	

+="CN71475"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	08-Feb-08	04-Apr-08	26518.00	=""	="Mirvac Hotel Investment Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71481"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	07-Nov-07	30-Jun-08	28612.88	="APS COMMISSION 2005/014"	="People and Strategy (ACT) Pty Ltd"	17-Apr-08 03:45 PM	

+="CN71488-A1"	"Additional costs to previosuly advertised contract CN49385 - total now $51,540.  Stationery Items"	="Department of the Prime Minister and Cabinet"	17-Apr-08	="Stationery"	19-Jun-07	18-Jun-09	20140.00	=""	="CANPRINT COMMUNICATIONS Pty Ltd"	17-Apr-08 03:59 PM	

+="CN71489"	"Motor vehicle Parts."	="Department of Defence"	17-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	26846.37	=""	="Mercedes Benz Aust. Pacific"	17-Apr-08 04:12 PM	

+="CN71497"	"Provision of telecommunications services"	="Department of Foreign Affairs and Trade"	17-Apr-08	="Telecommunications media services"	19-Jan-07	19-Jan-09	20276.00	=""	="TRANSACT CAPITAL COMMUNICATIONS PTY LTD"	17-Apr-08 04:38 PM	

+="CN71505"	"motor vehicle spare parts"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	21133.87	=""	="LANDROVER"	18-Apr-08 09:33 AM	

+="CN71506"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	22462.90	=""	="LANDROVER"	18-Apr-08 09:38 AM	

+="CN71545-A1"	"Provision of Fitout works to the Brisbane unit of CRS Australia"	="CRS Australia"	18-Apr-08	="Building and Construction and Maintenance Services"	19-Apr-08	20-Apr-08	29942.00	=""	="Latin Interiors Pty Ltd"	18-Apr-08 12:02 PM	

+="CN71565"	"Helicopter Charter For Locust Survey"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	05-Apr-08	11-Apr-08	27500.00	=""	="Heli-Aust Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71567"	"Marcus Clarke call costs 15/2/08 - 14/3/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	15-Feb-08	14-Mar-08	22665.50	=""	="AAPT Ltd"	18-Apr-08 01:57 PM	

+="CN71571"	"Dairy Development March 2008"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	01-Mar-08	31-Mar-08	29700.00	=""	="Aladn System Solutions Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71575"	"SUPPLY OF VETERINARY PHARMACEUTICALS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	22-Apr-08	29850.15	=""	="PROVET QUEENSLAND"	18-Apr-08 01:58 PM	

+="CN71579"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	24821.50	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71580-A1"	"Privision of assistance in implementation of the animal welfare strategy communications strategy."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	25646.72	=""	="Lorraine Follett"	18-Apr-08 01:59 PM	

+="CN71584"	"Temp staff services - Accounts Receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimited"	18-Apr-08 02:00 PM	

+="CN71590-A1"	"Copyediting Australia's State of the Forests 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Feb-08	30-Jun-08	22000.00	=""	="Biotext"	18-Apr-08 02:00 PM	

+="CN71603"	"Switchboard operators for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	31-Mar-08	23499.42	=""	="Sirius Corporation Ltd"	18-Apr-08 02:02 PM	

+="CN71605-A1"	" Soil erosion project: a) provide an agreed approach which integrates with most recent developments in remote sensing and other techniques to monitor soil erosion loss be wind and b) identify the extent to which ground cover monitoring could provide a useful surrogate for the monitoring of soil erosion loss by wind and water, including the suitability of ground cover for use as a resource condition target at regional and national levels. "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Mar-08	30-Jun-08	30000.00	=""	="Department of Environment and Climate Change NSW"	18-Apr-08 02:02 PM	

+="CN71558"	"Building maintenance/handyman"	="Australian Securities and Investments Commission"	18-Apr-08	="Building and Construction and Maintenance Services"	26-Nov-07	28-Nov-08	22000.00	=""	="360 Facility Management"	18-Apr-08 02:03 PM	

+="CN71610-A1"	"Provide technical advice for the fisheries bycatch project"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	25000.00	=""	="Nicole Mazur t/a ENVision Environmental Consulting"	18-Apr-08 02:03 PM	

+="CN71615"	"Temp Staff services - Accounts receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimted"	18-Apr-08 02:04 PM	

+="CN71617"	"Production of Cargo Pormotionl Product - Thermal Mug"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	28325.00	=""	="IM Promotions"	18-Apr-08 02:04 PM	

+="CN71618"	"Supply of veterinary drugs"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	20-May-08	21285.00	=""	="Parnell Laboratories"	18-Apr-08 02:04 PM	

+="CN71626"	"Advertising Expenses"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	25000.00	=""	="HMA Blaze"	18-Apr-08 02:05 PM	

+="CN71640"	" Printing of: NAT15209 - Save time do your business online.  Qty: 1,040,000 "	="Australian Taxation Office"	18-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Apr-08	30-Apr-08	26268.00	=""	="Canprint Communications"	18-Apr-08 03:34 PM	

+="CN71642"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Bulk transporters"	18-Mar-08	18-Mar-08	24000.00	=""	="TQUIP"	18-Apr-08 03:42 PM	

+="CN71643"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Communication equipment installation"	18-Mar-08	01-Jan-09	29680.06	=""	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71646"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Passenger transport"	17-Mar-08	30-Mar-08	23933.00	=""	="Temka Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71647"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Local and long distance telephone communications"	17-Mar-08	30-Jun-08	22000.00	="07/13009"	="Servitel Communications Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71658"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	18-Mar-08	21832.80	=""	="Digital Networks Australia"	18-Apr-08 03:44 PM	

+="CN71660"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	18-Mar-08	18-Mar-08	27500.00	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71675"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary medical staffing needs"	14-Mar-08	28-Apr-08	21000.00	=""	="DR ANDREW ZDENKOWSKI"	18-Apr-08 03:46 PM	

+="CN71681"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	26-Mar-08	26-Mar-08	20146.00	=""	="Australian Communications and"	18-Apr-08 03:47 PM	

+="CN71690"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Power supply transformers"	26-Mar-08	26-Mar-08	22606.70	=""	="Electricity Networks Corporation"	18-Apr-08 03:48 PM	

+="CN71707"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29568.00	="08/166978"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71710"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29700.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71722"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	26232.75	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:52 PM	

+="CN71732"	"Professional Services"	="Attorney-General's Department"	18-Apr-08	="Accounting and auditing"	28-Feb-08	30-Jul-08	20526.00	="07/16757"	="Deloitte Touche Tohmatsu"	18-Apr-08 03:54 PM	

+="CN71737"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	08-Feb-08	18-Feb-18	25292.59	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:55 PM	

+="CN71740"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	29411.80	="06#199427DOC"	="Australian Government Solictor"	18-Apr-08 03:55 PM	

+="CN71746"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Mar-08	25-Apr-08	29700.00	=""	="James Gilkerson"	18-Apr-08 03:56 PM	

+="CN71751"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	20-Mar-08	23062.81	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71761"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	14-Feb-08	20-Feb-08	29183.89	="07/23004"	="Victorian Government Solicitor's"	18-Apr-08 03:58 PM	

+="CN71762"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Electrical equipment and components and supplies"	06-Mar-08	07-Mar-08	21225.00	=""	="COCOS AUTOS/DIGGER SHED"	18-Apr-08 03:58 PM	

+="CN71767"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Surveillance and detection equipment"	07-Mar-08	07-Mar-08	20548.00	=""	="ACTIVE ENVIRONMENTAL SOLUTIONS"	18-Apr-08 03:59 PM	

+="CN71774"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	30-Jun-08	25600.00	="06/18392"	="Stratsec.Net Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71784"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	07-Apr-08	30-Jun-08	24200.00	=""	="WIZARD PERSONNEL & OFFICE"	18-Apr-08 04:01 PM	

+="CN71796"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Mass transfer equipment"	03-Mar-08	30-Jun-08	24497.00	="07#622510"	="Dell Australia PTY Limited"	18-Apr-08 04:03 PM	

+="CN71810"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176."	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	17-Apr-08	30-May-08	28394.21	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:27 PM	

+="CN71811"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	30-Jun-08	30000.00	="Panel"	="VERIZON"	18-Apr-08 05:19 PM	

+="CN71818"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	01-Feb-08	30-Dec-08	27850.00	="N/A"	="PEOPLE & STRATEGY (ACT) PTY"	18-Apr-08 05:20 PM	

+="CN71821"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	25-Apr-08	30000.00	="N/A"	="HAYS PERSONNEL SERVICES"	18-Apr-08 05:20 PM	

+="CN71831"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	30000.00	="n/a"	="EXHIBIT SYSTEMS"	18-Apr-08 05:21 PM	

+="CN71836"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Apr-08	30-Jun-08	21780.00	="N/A"	="TELELOGIC AUSTRLAIA PTY LTD"	18-Apr-08 05:22 PM	

+="CN71845"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	16-May-08	20000.00	="."	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	18-Apr-08 05:23 PM	

+="CN71847"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	21500.00	="N/A"	="PROTIVITI PTY LTD"	18-Apr-08 05:23 PM	

+="CN71854"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	30000.00	=""	="KPMG AUSTRALIA"	18-Apr-08 05:24 PM	

+="CN71858"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Dec-08	30000.00	="N/A"	="KROPP, JIM"	18-Apr-08 05:24 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008val30000to40000.xls
@@ -1,1 +1,89 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70686-A1"	"Scoping study of Financial Management"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	30000.00	=""	="KPMG (CANBERRA)"	14-Apr-08 09:34 AM	

+="CN70715"	" Probity Advisory Services - APCM123.02-81 "	="Australian Taxation Office"	14-Apr-08	="Financial and Insurance Services"	08-Apr-08	31-Dec-08	40000.00	="123.02-81"	="Walter Turnbull Pty Ltd"	14-Apr-08 11:07 AM	

+="CN70736"	" Web Content Developer "	="Workplace Authority"	14-Apr-08	="Content management software"	10-Dec-07	29-Feb-08	35000.00	=""	="HiTech Personnel"	14-Apr-08 12:17 PM	

+="CN70740-A1"	"Mature Age Employment and Workplace Strategy"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Employment promotion or planning services"	04-Apr-08	30-Jun-08	39600.00	=""	="Sureway Employment"	14-Apr-08 12:25 PM	

+="CN70752"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	35167.00	=""	="Greythorn"	14-Apr-08 12:47 PM	

+="CN70774"	"Mobile phone expenses"	="Workplace Authority"	14-Apr-08	="Mobile phones"	30-Jul-07	30-Jun-08	36068.28	=""	="Optus Administration"	14-Apr-08 01:03 PM	

+="CN70779"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	10-Oct-07	10-Dec-07	30823.65	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:27 PM	

+="CN70807"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	15-Dec-07	15-Dec-07	32923.81	=""	="HMA Blaze"	14-Apr-08 03:36 PM	

+="CN70812"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	23-Feb-08	23-Feb-08	34400.37	=""	="HMA Blaze"	14-Apr-08 03:53 PM	

+="CN70821"	"Development and maintainance of the Project Management Plans for World Expo 2010 - Shanghai"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-Jul-07	30-Jun-08	33000.00	=""	="ALAMEIN CONSULTING PTY LTD"	14-Apr-08 03:55 PM	

+="CN70831"	"PDMS Deployment Assistance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Business administration services"	12-Nov-07	30-Jun-08	31050.00	="PRN18256"	="MICROSOFT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70832"	"Training Package Development Handbook Policy Text"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	02-Jan-08	30-Jun-08	40000.00	="PRN18224"	="QUALITY TRAINING CONCEPTS PTY LTD"	14-Apr-08 04:00 PM	

+="CN70870"	"Procurement of desktops & monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	33319.00	=""	="Dataflex"	14-Apr-08 04:36 PM	

+="CN70879"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	37400.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70897"	"BARRISTER FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	01-Apr-08	01-Apr-08	33000.00	=""	="MICHAEL IZZO"	14-Apr-08 04:44 PM	

+="CN70898"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	07-Apr-08	07-Apr-08	33000.00	=""	="NOEL HUTLEY"	14-Apr-08 04:44 PM	

+="CN70931-A1"	"Independent Member of Audit and Risk Committee"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Management advisory services"	01-Oct-07	30-Sep-10	37116.00	=""	="LEN EARLY PTY LTD"	15-Apr-08 09:33 AM	

+="CN70938"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	33470.03	=""	="LANDROVER"	15-Apr-08 09:48 AM	

+="CN71003"	"Creation of conservation advices for EPBC Act threatened species"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Engineering and Research and Technology Based Services"	01-Apr-08	25-Jun-08	37200.00	="0708-1143"	="Environmental Protection Agency"	15-Apr-08 10:19 AM	

+="CN71024"	"Management advisory services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Management advisory services"	29-Feb-08	21-Mar-08	38135.00	="2005-31"	="Sinclair Knight Merz"	15-Apr-08 11:49 AM	

+="CN71029"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Dec-07	31-Dec-07	30905.60	=""	="Ortho-Clinical Diagnostics"	15-Apr-08 12:06 PM	

+="CN71048-A1"	"Review of the Prime Minister's Prizes for Science 2007/2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	30000.00	="PRN17429"	="SCIENCE IN PUBLIC"	15-Apr-08 01:42 PM	

+="CN71062"	"Student Mobility Mapping Exercise"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	32900.00	="PRN18603"	="AIM OVERSEAS PTY LTD"	15-Apr-08 01:48 PM	

+="CN71082-A1"	"Consultancy for provision of professional services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Business administration services"	07-Feb-08	30-Jun-08	30000.00	="PRN18518"	="Dimension Data Australia Pty Ltd"	15-Apr-08 01:53 PM	

+="CN71113"	"National Order - Stationary"	="Australian Crime Commission"	15-Apr-08	="Stationery"	01-Oct-07	30-Jun-08	30072.40	=""	="Corporate Express"	15-Apr-08 02:14 PM	

+="CN70814"	"Consultancy Services - Review of IT Unit"	="Workplace Authority"	15-Apr-08	="Information technology consultation services"	28-Aug-07	30-Jun-08	33880.00	=""	="Intergen Solutions Pty Ltd"	15-Apr-08 02:34 PM	

+="CN71133"	"3-month contract staff - Phil Gregory"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	09-Apr-08	30-Jun-08	34918.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	15-Apr-08 03:07 PM	

+="CN71142"	"Purchase of Qty 5 BH Link Assy's."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	30684.89	=""	="SAAL"	15-Apr-08 03:11 PM	

+="CN71145"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	17-Aug-07	30-Jun-08	34849.34	=""	="Harmers Workplace Lawyers"	15-Apr-08 03:20 PM	

+="CN71168"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	39512.95	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:07 AM	

+="CN71178"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	21-Dec-07	20-Dec-09	37500.00	=""	="Leaseplan"	16-Apr-08 10:04 AM	

+="CN71179"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	26-Oct-07	25-Oct-09	33900.00	=""	="Leaseplan"	16-Apr-08 10:10 AM	

+="CN71189"	"Provision of Support and Professional Services with Cybertru"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer services"	01-Apr-08	30-Jun-08	38766.00	=""	="CYBERTRUST AUSTRALIA PTY LTD"	16-Apr-08 10:28 AM	

+="CN71229"	"Media Dispenser System"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	11-Apr-08	30-Jun-08	31350.00	=""	="A I SCIENTIFIC P/L"	16-Apr-08 10:33 AM	

+="CN71231"	"2nd Review of the Australian Stem Cell Centre Inno Div PO Fo"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	19-Sep-08	35200.00	=""	="FUNDER (PROF) JOHN"	16-Apr-08 10:33 AM	

+="CN71234"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	32887.85	=""	="SMITH & NEPHEW AUSTRALIA P/L"	16-Apr-08 10:34 AM	

+="CN71259"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	13-Feb-06	12-Sep-08	31500.00	=""	="Leaseplan"	16-Apr-08 10:46 AM	

+="CN71272-A1"	"Provide strategic advice to Compliance Unit on Risk Management"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	31-Aug-07	34400.00	=""	="ASIAN CONNECTIONS INTERNATIONAL PTY LIMITED"	16-Apr-08 11:07 AM	

+="CN71301"	" PHARMACEUTICAL ITEM "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	20-Mar-08	15-Apr-08	35750.00	=""	="GLAXOSMITHKLINE AUSTRALIA P/L"	16-Apr-08 12:03 PM	

+="CN71308"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Employee assistance programs"	12-Sep-07	30-Jun-08	33280.50	=""	="Blake Dawson Waldron"	16-Apr-08 01:34 PM	

+="CN71309-A1"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	12-Sep-07	30-Jun-08	34424.51	=""	="Corrs Chambers Westgarth"	16-Apr-08 01:38 PM	

+="CN71315"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	13-Sep-07	30-Jun-08	39173.64	=""	="clayton Utz"	16-Apr-08 02:30 PM	

+="CN71358"	"Water, Drinking, Emergency"	="Defence Materiel Organisation"	17-Apr-08	="Water bags"	16-Apr-08	09-Jul-08	38764.00	="CC1UK2"	="HELLWEG INTERNATIONAL PTY LTD"	17-Apr-08 10:22 AM	

+="CN71364"	"Provision for Financial Resources"	="Comsuper"	17-Apr-08	="Business and corporate management consultation services"	19-Mar-08	30-Apr-08	30000.00	=""	="Analytics Group"	17-Apr-08 10:55 AM	

+="CN71372"	"Supply of computer servers"	="Department of Parliamentary Services"	17-Apr-08	="Computer servers"	04-Apr-08	30-Apr-08	36687.20	=""	="Dell Australia P/L"	17-Apr-08 10:59 AM	

+="CN71373"	"Supply of Broadcasting equipment"	="Department of Parliamentary Services"	17-Apr-08	="Components for information technology or broadcasting or telecommunications"	04-Apr-08	31-May-08	34145.10	=""	="TekMark Australia P/L"	17-Apr-08 10:59 AM	

+="CN71376"	"Supply of Desktop computers & monitors (Standing Offer DPS07041)"	="Department of Parliamentary Services"	17-Apr-08	="Desktop computers"	02-Apr-08	30-Apr-08	30519.50	=""	="Dell Australia P/L"	17-Apr-08 10:59 AM	

+="CN71477"	"Evaluation of the APS Employment and Capability Strategy for Aboriginal & Torres Strait Islander"	="Australian Public Service Commission"	17-Apr-08	="Business administration services"	01-Feb-08	08-Feb-08	31019.99	=""	="Dominic Downie & Associates"	17-Apr-08 03:45 PM	

+="CN71498"	"Fleet Vehicle Expenses"	="Workplace Authority"	17-Apr-08	="Fleet management services"	20-Sep-07	30-Jun-08	39240.00	=""	="Leaseplan Australia Ltd"	17-Apr-08 04:39 PM	

+="CN71499"	"Fleet Vehicle Expenses"	="Workplace Authority"	17-Apr-08	="Fleet management services"	20-Sep-07	30-Jun-08	33480.00	=""	="Leaseplan Australia Ltd"	17-Apr-08 04:41 PM	

+="CN71501"	"Development of Methodology for the Estimation of Greenhouse Gas Emissions and Sinks for Energy Subsector"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Methodology and analysis"	29-May-07	01-Oct-07	34958.00	="0607-552"	="Energy Strategies Pty Ltd T/a Energy Partners"	17-Apr-08 06:15 PM	

+="CN71555"	"Personal Insect Repellant"	="Defence Materiel Organisation"	18-Apr-08	="Disinsectisation services"	18-Apr-08	07-Sep-08	38500.00	=""	="Colbar Q.S.R Pty Ltd"	18-Apr-08 01:27 PM	

+="CN71569-A1"	"Member of Dairy Quota Review Panel 2008, tasked to review the appropriateness, effectiveness and efficiency of current US & EU dairy quota administrative arrangements and identify areas where improvements to the quota management arrangements could be made."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	19-Mar-08	31-Jul-08	39265.29	=""	="David Harris"	18-Apr-08 01:58 PM	

+="CN71572"	"Insurance policy for AQIS Meat Inspectors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	01-Jan-09	31750.00	=""	="Marsh Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71593"	"Analytical testing for the National Residue Survey - Program 8THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2948"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	38479.41	=""	="HPC Holdings Pty Ltd trading as Symbio Alliance"	18-Apr-08 02:01 PM	

+="CN71605-A1"	" Soil erosion project: a) provide an agreed approach which integrates with most recent developments in remote sensing and other techniques to monitor soil erosion loss be wind and b) identify the extent to which ground cover monitoring could provide a useful surrogate for the monitoring of soil erosion loss by wind and water, including the suitability of ground cover for use as a resource condition target at regional and national levels. "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Mar-08	30-Jun-08	30000.00	=""	="Department of Environment and Climate Change NSW"	18-Apr-08 02:02 PM	

+="CN71613-A1"	"Inventory plot measurement and sample plots, private native forests, Upper North East NSW Regional Forest."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	39600.00	=""	="Norfor Pty Ltd T/as Northern NSW Forestry Services"	18-Apr-08 02:03 PM	

+="CN71628"	"Analytical Testing for the National Residue Survey - Program 1THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2921"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	33275.00	=""	="Department of Primary Industries Victoria - Werribee Centre"	18-Apr-08 02:05 PM	

+="CN71629"	"ABBOT POINT SHIP INSPECTIONS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	32000.00	=""	="Department of Primary Industries and Fisheries QLD"	18-Apr-08 02:05 PM	

+="CN71631"	"Call costs for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Mar-08	31-Mar-08	31229.62	=""	="AAPT Ltd"	18-Apr-08 02:05 PM	

+="CN71636"	" PROVISION OF FLAME PROOF STORAGE CABINETS "	="Defence Materiel Organisation"	18-Apr-08	="Storage"	18-Apr-08	02-Jun-08	32604.00	=""	="F G P COMPANY PTY LTD"	18-Apr-08 02:44 PM	

+="CN71638"	"Finance Conference"	="Australian Securities and Investments Commission"	18-Apr-08	="Hotels and lodging and meeting facilities"	21-Nov-07	23-Nov-07	31905.00	=""	="Stamford Plaza Melbourne"	18-Apr-08 03:28 PM	

+="CN71641"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	17-Mar-08	17-Mar-08	35443.38	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:42 PM	

+="CN71669"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office machinery or equipment manufacture services"	12-Mar-08	31-Jan-11	37177.17	="05/18399"	="ADT"	18-Apr-08 03:46 PM	

+="CN71679"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	14-Mar-08	14-Mar-08	31680.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71686"	"Software Maintenance"	="Attorney-General's Department"	18-Apr-08	="Software maintenance and support"	25-Mar-08	30-Jun-08	32143.65	=""	="Quest Software Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71688"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Telecommunication devices TDD or teletypewriters TTY  for the physically challenged"	26-Mar-08	24-Jul-08	38347.82	="07/13009"	="3D Networks Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71705"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	25-Mar-08	30-Jun-08	40000.00	=""	="AMA PTY LTD (Aust Medical Assoc.)"	18-Apr-08 03:50 PM	

+="CN71716"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Safety or risk analysis"	25-Mar-08	25-Mar-08	37699.99	="07/17170"	="KPMG"	18-Apr-08 03:52 PM	

+="CN71744"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	12-Mar-08	25-Apr-08	31528.00	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71764"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Business function specific software"	14-Mar-08	15-Feb-09	37119.19	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:58 PM	

+="CN71795"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	14-Mar-08	23-Mar-08	36432.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71800"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	15-May-08	30800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:03 PM	

+="CN71801"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	11-Apr-08	38720.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71808"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176. "	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	18-Apr-08	10-Jun-08	37813.16	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:20 PM	

+="CN71811"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	30-Jun-08	30000.00	="Panel"	="VERIZON"	18-Apr-08 05:19 PM	

+="CN71821"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	25-Apr-08	30000.00	="N/A"	="HAYS PERSONNEL SERVICES"	18-Apr-08 05:20 PM	

+="CN71825"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	25-Mar-08	25-Apr-08	34698.93	="06/06590"	="ZALLCOM PTY LTD"	18-Apr-08 05:21 PM	

+="CN71831"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	30000.00	="n/a"	="EXHIBIT SYSTEMS"	18-Apr-08 05:21 PM	

+="CN71833"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	22-Apr-08	33440.00	="N/A"	="PREDICATE PARTNERS PTY LTD"	18-Apr-08 05:21 PM	

+="CN71842"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	30516.15	="N/A"	="BAULDERSTONE HORNIBROOK PTY LTD"	18-Apr-08 05:23 PM	

+="CN71846"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-May-08	32135.00	="0"	="DLA PHILLIPS FOX LAWYERS"	18-Apr-08 05:23 PM	

+="CN71851"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	38500.00	="N/A"	="BLAKE DAWSON - ACT"	18-Apr-08 05:24 PM	

+="CN71853"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Nov-08	40000.00	="."	="OAKTON AA SERVICES PTY LTD"	18-Apr-08 05:24 PM	

+="CN71854"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	30000.00	=""	="KPMG AUSTRALIA"	18-Apr-08 05:24 PM	

+="CN71858"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Dec-08	30000.00	="N/A"	="KROPP, JIM"	18-Apr-08 05:24 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008val40000to80000.xls
@@ -1,1 +1,171 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70680-A1"	"Consultancy service for Contact Centre"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	29-Nov-07	21-Dec-08	70000.00	=""	="Vivaz Pty Ltd"	14-Apr-08 09:02 AM	

+="CN70711"	"Property Lease Rental Accommadation Vanuatu"	="Australian Federal Police"	14-Apr-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-10	50000.00	=""	="Louise Stevens"	14-Apr-08 10:32 AM	

+="CN68765-A2"	"Cost Management and Quantity Surveying Services"	="Australian Securities and Investments Commission"	14-Apr-08	="Project management"	25-Feb-08	01-Nov-08	56000.00	=""	="Rider Levett Bucknall SA Pty Ltd"	14-Apr-08 10:32 AM	

+="CN70715"	" Probity Advisory Services - APCM123.02-81 "	="Australian Taxation Office"	14-Apr-08	="Financial and Insurance Services"	08-Apr-08	31-Dec-08	40000.00	="123.02-81"	="Walter Turnbull Pty Ltd"	14-Apr-08 11:07 AM	

+="CN70723"	"Centrelink Panel IMU Contract Programmer: IMU-ICT100 Work Order DVAIMU2008/002"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	06-Oct-08	75504.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70724"	"Centrelink Panel IMU Contract Programmer IMU-ICT112 Work Order DVAIMU2008/001"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	01-Aug-08	69212.00	=""	="Peoplebank Australia Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70728"	"CCC Phase 1"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	29-Jan-08	29-Feb-08	40800.00	=""	="IBM Australia Ltd"	14-Apr-08 11:48 AM	

+="CN70731-A1"	"DocGen / E Transactions"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	27-Jun-08	65000.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70732-A1"	"SDMP Transport - Reporting"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	27-Jun-08	66000.00	=""	="F1 Solutions"	14-Apr-08 11:48 AM	

+="CN70744"	"Printing - Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	24-Sep-07	05-Jun-08	55000.00	=""	="HMA Blaze Pty Ltd"	14-Apr-08 12:36 PM	

+="CN70765"	"Health Checks"	="Workplace Authority"	14-Apr-08	="Health service planning"	31-Jul-07	30-Jun-08	43727.00	=""	="Health Services Australia Ltd"	14-Apr-08 12:58 PM	

+="CN70778"	"Postage Services - NSW"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	21-Mar-08	27-Jun-08	79220.90	=""	="Australian Post"	14-Apr-08 01:10 PM	

+="CN70748"	"IVR Tuning and Analysis"	="Australian Taxation Office"	14-Apr-08	="Computer services"	14-Apr-08	30-Jun-08	49060.00	="RFQ T&A"	="Dimension Data Aust Pty Ltd"	14-Apr-08 01:14 PM	

+="CN70777"	" survey and inspection and repairs on 28 LAR V1 "	="Department of Defence"	14-Apr-08	="Respiration air supplying self contained breathing apparatus or accessories"	20-Nov-07	10-Apr-08	53571.35	=""	="Drager Safety"	14-Apr-08 01:14 PM	

+="CN70790"	"Security Services"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	24-Mar-08	30-Jun-08	46574.00	=""	="SECOM TECHNICAL SERVICES Pty Ltd"	14-Apr-08 02:02 PM	

+="CN70795"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	27-Feb-08	06-Mar-08	76136.50	=""	="SECOM Technical Services Pty Ltd"	14-Apr-08 02:14 PM	

+="CN70798"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Accommodation furniture"	27-Nov-07	19-Feb-08	47408.90	=""	="MDA Interiors Pty Ltd"	14-Apr-08 02:22 PM	

+="CN70800-A1"	"A and BAC External Member"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Accounting services"	20-Nov-07	21-Dec-09	49500.00	="PRN12008"	="MORISON CONSULTING"	14-Apr-08 02:46 PM	

+="CN70801"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Dec-07	31-Jan-08	48161.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:51 PM	

+="CN70810-A1"	"Quality in offshore delivery in VET Dissemination activities"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	10-Dec-07	06-Jun-08	64500.00	="PRN17892"	="NCVER"	14-Apr-08 03:50 PM	

+="CN70813"	"Wellington Group Forum 2008"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	04-Jan-09	60000.00	="PRN16997"	="INTERCONTINENTAL SYDNEY"	14-Apr-08 03:53 PM	

+="CN70815"	"APS Jobs (Gazette) Annual Subsription 2007-08"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	46121.38	="PRN18314"	="AUSTRALIAN PUBLIC SERVICE COMM"	14-Apr-08 03:54 PM	

+="CN70817"	"Maintenance of tennant owned supplementary Airconditioning Units"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Building and Construction and Maintenance Services"	05-Jan-07	03-Jan-08	42000.00	="PRN17932"	="RILEY SHELLEY BUILDING SERVICES P/L"	14-Apr-08 03:55 PM	

+="CN70824-A1"	"Barriers to providing school based prevention programms for ecstacy and related drugs"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Market research"	01-Apr-05	31-May-05	55000.00	="PRN6981"	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 03:57 PM	

+="CN70830-A1"	"Period Order 0708: COPE Courier"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Mail and cargo transport"	02-Jan-08	30-Jun-09	45000.00	="PRN18248"	="COPE TRANSPORT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70832"	"Training Package Development Handbook Policy Text"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	02-Jan-08	30-Jun-08	40000.00	="PRN18224"	="QUALITY TRAINING CONCEPTS PTY LTD"	14-Apr-08 04:00 PM	

+="CN70858-A1"	"Evaluation of Successful Learning in the Early Years of Schooling Project : Indigenous Parent Factor"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	23-Nov-07	23-Jan-08	74200.00	="PRN16540"	="DENIS MULLER and ASSOCIATES"	14-Apr-08 04:15 PM	

+="CN70890"	"UNSW CO-OP PROGRAM 2006"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-05	30-Jun-09	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70892"	"UNSW CO-OP PROGRAM 2008"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-07	30-Jun-11	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70893"	"MS PROJECT SERVER EPM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	03-Mar-08	31-May-08	56855.00	=""	="STRATEGIC DATA MANAGEMENT"	14-Apr-08 04:43 PM	

+="CN70895"	"ITSM SOFTWARE LICENCES (KNOWLEDGE AND INVENTORY MANAGEMENT)"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	01-Apr-08	01-Apr-08	46750.00	="ATM016"	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:44 PM	

+="CN70901"	"HP HARDWARE SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	01-Apr-08	31-Mar-09	44616.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70902"	"SOFTWARE UPDATE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	08-Apr-08	08-Apr-08	75115.79	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70905"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1639 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	14-Apr-08	="Aerospace systems and components and equipment"	14-Apr-08	30-Apr-08	64956.07	=""	="Goodrich Control Systems PTY LTD"	14-Apr-08 04:58 PM	

+="CN70909"	"Training course - Senior Administrative Officer & Post Security Officer"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	01-Jul-08	30-Jun-10	60000.00	=""	="AKE ASIA-PACIFIC PTY LIMITED"	14-Apr-08 05:15 PM	

+="CN70933"	"Conference venue and equipment hire for 14th AANZFTA round of negotiations - Brisbane 19-27/4/08"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Hotels and lodging and meeting facilities"	26-Mar-08	27-Apr-08	69230.00	=""	="BRISBANE CONVENTION AND EXHIBITION CENTRE"	15-Apr-08 09:34 AM	

+="CN70928"	"motor vehicle spare parts"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	41600.08	=""	="LANDROVER"	15-Apr-08 09:34 AM	

+="CN70937"	"REPAIR AND OH OF BH CENTRE STAB ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	42263.33	=""	="SAAL"	15-Apr-08 09:46 AM	

+="CN70940-A1"	"CLIENT/STAKEHOLDER REVIEW OF THE PRISMS SYSTEM"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	15-Oct-07	31-Dec-07	80000.00	="PRN16331"	="Corporate Diagnostics pty ltd"	15-Apr-08 09:57 AM	

+="CN70941-A1"	"APEC Education Network Presentation cross-border provision of education services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Application implementation services"	08-Nov-07	10-Jan-08	52250.00	="PRN16264"	="INTERNATIONAL ECONOMICS UNTIS TRUST"	15-Apr-08 09:58 AM	

+="CN70943"	"Leading Australia's Future in Asia Programme 2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	07-Aug-07	30-Jun-08	53674.79	="PRN17828"	="AUSTRALIAN PUBLIC SERVICE COMM"	15-Apr-08 09:58 AM	

+="CN70954"	"Adobe Products"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jun-08	78950.00	="PRN17743"	="DATA#3 LIMITED"	15-Apr-08 10:01 AM	

+="CN70962"	"Fax Interface Hardware"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	49747.50	="PRN17931"	="Axient P/L"	15-Apr-08 10:02 AM	

+="CN70987-A1"	"Cleaning services for Department of Climate Change"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Industrial Cleaning Services"	08-Apr-08	09-May-08	72923.49	="0708-1206"	="BIC Service Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70989"	"Information Technology Research and Advice Services"	="Australian Electoral Commission"	15-Apr-08	="Information services"	01-Mar-08	28-Feb-09	66880.00	=""	="Gartner Australasia"	15-Apr-08 10:17 AM	

+="CN70995"	"Prepare draft Guidelines for Onshore and Offshore Carbon and Storage"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	55440.00	="0708-979"	="Gerry Morvell"	15-Apr-08 10:18 AM	

+="CN70996"	"Production Services of Your Home Renovators Guide"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-May-08	44000.00	="0708-822"	="RMIT University - Centre for Design"	15-Apr-08 10:18 AM	

+="CN70999"	"Qualitative Evaluation Services to assess National Water Quality Management Strategy workshop series"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Water resources development and oversight"	02-Apr-08	31-May-08	60469.20	="0708-427"	="URBIS JHD Pty Ltd"	15-Apr-08 10:18 AM	

+="CN71006-A1"	"Development of the National Vegetation Information Portal"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	13-Jun-08	53020.00	="0708-703"	="Parisfirst Partners Pty Ltd"	15-Apr-08 10:19 AM	

+="CN68722-A1"	"Ecological Sustainable Design Consultant"	="Australian Securities and Investments Commission"	15-Apr-08	="Project management"	29-Jan-08	31-Aug-08	71850.00	=""	="Turner & Townsend Pty Ltd"	15-Apr-08 10:34 AM	

+="CN71017-A3"	"Storage, mail and distribution services"	="National Blood Authority"	15-Apr-08	="Mailing services"	31-Jan-08	30-Jun-11	63587.00	=""	="National Mail and Marketing Pty Ltd"	15-Apr-08 11:23 AM	

+="CN71026"	"Provision of Project Management Services"	="National Blood Authority"	15-Apr-08	="Project management"	01-Jan-08	31-Jan-08	60000.00	=""	="Naidu Consulting Services"	15-Apr-08 11:52 AM	

+="CN71036"	"Implement PAS system in London"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Computer services"	23-Nov-07	01-Mar-08	43820.75	=""	="KAZ GROUP PTY LIMITED"	15-Apr-08 01:02 PM	

+="CN71045"	"Development of performance framework for Education"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	22-Nov-07	30-Apr-08	67650.00	="PRN16920"	="ATELIER LEARNING SOLUTIONS PTY LTD"	15-Apr-08 01:41 PM	

+="CN71053"	"Ebsco - 2008 renewal to bulk subscription of journals print and online"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Printed media"	28-Nov-07	30-Jun-08	49774.04	="PRN17961"	="EBSCO AUSTRALIA"	15-Apr-08 01:43 PM	

+="CN71055"	"AEI IF08 - Speaker Fee"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	60000.00	="PRN18445"	="SPEAKERS FOR BUSINESS"	15-Apr-08 01:47 PM	

+="CN71056-A1"	"Fixed term contract to review the content of the Country Education Profile (CEP) Online"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	11-Feb-08	30-Jun-08	56073.60	="PRN18403"	="THE GREEN and GREEN GROUP PTY LTD"	15-Apr-08 01:47 PM	

+="CN71070"	"APS JOBS SUBSCRIPTION RENEWAL 2007-2008"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	05-Feb-08	31-Dec-08	49000.00	="PRN18465"	="AUSTRALIAN PUBLIC SERVICE COMM"	15-Apr-08 01:49 PM	

+="CN71073"	"Event management: staging, audio, lighting, production"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Telecommunications media services"	26-Feb-08	31-Mar-08	48000.00	="PRN18741"	="DB EVENTECH"	15-Apr-08 01:50 PM	

+="CN71074"	"DEST Corporate Event Venue Hire November 2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	24-Apr-07	24-Apr-08	44030.00	="PRN15647"	="INTERCONTINENTAL HOTELS GROUP (AUST"	15-Apr-08 01:50 PM	

+="CN71080"	"Data Management Software"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	14-Feb-08	30-Jun-08	62040.00	="PRN18574"	="MANAGEMENT INFORMATION PRINCIPLES"	15-Apr-08 01:52 PM	

+="CN71084"	"WELL Programme promotional DVD"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	31-Jan-08	30-Jun-08	49998.00	="PRN18201"	="IDEAS THAT WORK"	15-Apr-08 01:53 PM	

+="CN71099"	"Evaluation of the Australian Apprenticeships website"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	15-Jan-08	01-May-08	55550.00	="PRN17563"	="INSIDE STORY KNOWLEDGE MNGT P/L"	15-Apr-08 01:56 PM	

+="CN71105"	"Mapping of additional para and associate professionals"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	15-Feb-08	30-Jun-08	63360.00	="PRN18149"	="MILES MORGAN AUSTRALIA PTY LTD"	15-Apr-08 01:58 PM	

+="CN71109"	"Recruitment selection process"	="Australian Crime Commission"	15-Apr-08	="Staff recruiting services"	11-Apr-08	30-Jun-08	52800.00	=""	="Ford Kelly Connection"	15-Apr-08 02:04 PM	

+="CN71116"	"Consultancy Services - Review of IT unit"	="Workplace Authority"	15-Apr-08	="Information technology consultation services"	30-Aug-07	30-Jun-08	43691.76	=""	="Intergen Solutions Pty Ltd"	15-Apr-08 02:32 PM	

+="CN71124"	"To review OTS - Governance & OTS Branch"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Business administration services"	02-Apr-08	08-May-08	50000.50	=""	="Thinkplace Pty Ltd"	15-Apr-08 03:06 PM	

+="CN71134"	"SharePoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	77000.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	15-Apr-08 03:07 PM	

+="CN71140"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	08-Apr-08	30-Jun-08	60968.25	="T2004/0699"	="DIALOG PTY LTD"	15-Apr-08 03:08 PM	

+="CN71157"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	22-Aug-07	30-Jun-08	69013.00	=""	="NT Working Women's Centre"	15-Apr-08 04:08 PM	

+="CN71159"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	64680.00	=""	="LANDROVER"	15-Apr-08 04:10 PM	

+="CN71165"	"Professional Legal Services"	="Workplace Authority"	15-Apr-08	="Legal services"	23-Aug-07	30-Jun-08	45349.95	=""	="Minter Ellison"	15-Apr-08 04:42 PM	

+="CN71173"	"MEDICAL CONSUMABLE ITEM"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	45100.00	=""	="MIDMED"	16-Apr-08 09:35 AM	

+="CN71175"	"Tracking Devices"	="Australian Crime Commission"	16-Apr-08	="Surveillance and detection equipment"	11-Apr-08	30-Jun-08	63030.00	=""	="Geonautics International"	16-Apr-08 09:54 AM	

+="CN71208"	"GC WITH PLOT COLUMNS AND TCD VARIAN AUST"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	03-Jan-08	18-Jan-08	41657.00	=""	="VARIAN AUSTRALIA PTY LTD"	16-Apr-08 10:30 AM	

+="CN71212"	"Cisco Network Communications Equipemt for VANguard Server Ro"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	05-Mar-08	31-Mar-08	65194.37	=""	="GETRONICS (AUSTRALIA) PTY LTD"	16-Apr-08 10:31 AM	

+="CN71225"	"Online promotions - e-bulletin, events, seminars, online inv"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Marketing and distribution"	10-Jan-08	28-Feb-09	59885.00	=""	="INSITEC"	16-Apr-08 10:32 AM	

+="CN71233"	"Autoclave  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	14-Apr-08	30-Jun-08	50976.20	=""	="BIO-STRATEGY DISTRIBUTION PTY LTD"	16-Apr-08 10:33 AM	

+="CN71260"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	20-Dec-05	19-Dec-09	68100.00	=""	="Leaseplan"	16-Apr-08 10:50 AM	

+="CN71264"	"SAP Maintenance"	="Australian Crime Commission"	16-Apr-08	="Ground support test or maintenance systems"	01-Jan-08	31-Dec-08	73865.00	=""	="SAP Australian P/L"	16-Apr-08 10:55 AM	

+="CN71268-A1"	"Subscriber and Subscription Management System"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management advisory services"	01-Jul-07	30-Oct-07	49500.00	=""	="D and J GRIFFITHS PTY LTD"	16-Apr-08 11:07 AM	

+="CN71269-A1"	" Facilitation of Workshops for Energy Efficiency Opportunities "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	30-Jun-08	48910.00	=""	="GHD PTY LTD"	16-Apr-08 11:07 AM	

+="CN71273-A1"	" Independent member of IT Sub-Committee "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management advisory services"	03-Aug-07	30-Sep-07	42900.00	=""	="MORISON CONSULTING PTY LTD"	16-Apr-08 11:07 AM	

+="CN71275-A1"	"Financial performance audits"	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	06-Aug-07	04-Sep-07	48863.45	="1003"	="AUSTRALIAN GOVERNMENT SOLICITOR"	16-Apr-08 11:08 AM	

+="CN71276-A1"	" Energy Efficiency Opportunities design and print of the energy savings measurement guide "	="Department of Resources Energy and Tourism"	16-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	06-Aug-07	25-Jun-10	40219.97	=""	="ZOO COMMUNICATIONS PTY LTD"	16-Apr-08 11:08 AM	

+="CN71277-A1"	" Information Technology equipment for enabling services "	="Department of Resources Energy and Tourism"	16-Apr-08	="Computer Equipment and Accessories"	06-Aug-07	30-Jun-08	65765.70	=""	="DELL AUSTRALIA"	16-Apr-08 11:08 AM	

+="CN71282-A1"	" APEC Energy Trade and Investment Roundtable Conference "	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	19-Jul-07	26-Jul-07	51497.65	=""	="SHANGRI-LA HOTEL"	16-Apr-08 11:09 AM	

+="CN71287-A1"	" Australian Destination Status visitor satisfaction survey "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	31-Aug-07	52338.00	=""	="ORC AUS PTY LTD"	16-Apr-08 11:09 AM	

+="CN71288-A1"	" Legal services for the National Mines Safety Legislation framework "	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	30-Jul-07	28-Sep-07	50000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	16-Apr-08 11:09 AM	

+="CN71310"	"Recruitment Services"	="Workplace Authority"	16-Apr-08	="Recruitment services"	12-Mar-08	30-Jun-08	45000.00	=""	="Taylor Root"	16-Apr-08 01:42 PM	

+="CN71319"	"Provision of Project Management Training courses"	="Australian Federal Police"	16-Apr-08	="Project management"	28-Jan-08	30-Nov-08	58822.50	="APS Commission 2005/014"	="PALM Consulting Group Pty Ltd"	16-Apr-08 03:20 PM	

+="CN71321"	"Legal services - counsel"	="Australian Securities and Investments Commission"	16-Apr-08	="Legal services"	27-Jul-07	30-Jun-08	45000.00	=""	="Mr Peter Murdoch QC"	16-Apr-08 03:49 PM	

+="CN71336-A1"	"Intellectual Property review"	="CrimTrac"	16-Apr-08	="Business intelligence consulting services"	31-Mar-08	30-Apr-08	55000.00	=""	="Spruson  Ferguson Lawyers"	16-Apr-08 04:19 PM	

+="CN71341"	"Box Accessories Stowage  ASLAV "	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	26-Aug-08	51492.76	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:21 PM	

+="CN71359"	" Aircraft Spares "	="Defence Materiel Organisation"	17-Apr-08	="Aircraft"	17-Apr-08	08-Dec-08	70612.87	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Apr-08 10:31 AM	

+="CN71363"	"Recruitment Services"	="Workplace Authority"	17-Apr-08	="Recruitment services"	12-Mar-08	30-Jun-08	60000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	17-Apr-08 10:55 AM	

+="CN71380"	"Supply of IT Hardware and Software"	="Department of Parliamentary Services"	17-Apr-08	="Electronic hardware and component parts and accessories"	31-Mar-08	30-Apr-08	69642.92	=""	="Cerulean Solutions Ltd"	17-Apr-08 11:00 AM	

+="CN71384"	"Provision of Internet access services"	="Department of Parliamentary Services"	17-Apr-08	="Internet services"	11-Apr-08	27-Feb-11	57640.00	="DPS06088"	="Optus Billing Services Pty Ltd"	17-Apr-08 11:00 AM	

+="CN71406-A1"	"Internal Audit services - piggybank arrangement under Attorney-General's Department tender process"	="Office of Parliamentary Counsel"	17-Apr-08	="Internal audits"	01-Aug-07	31-Jul-11	59000.00	=""	="Deloitte Touche Tohmatsu"	17-Apr-08 12:19 PM	

+="CN71427"	"Technology Assessment JADE Technology for Spectrum Program"	="Australian Federal Police"	17-Apr-08	="Diagnostic assessment and exam products for general use"	01-Nov-07	30-Jan-08	41372.32	=""	="Booz Allen Hamilton (Australia) Ldt"	17-Apr-08 02:13 PM	

+="CN71431"	"Development and Learning Materials"	="Child Support Agency"	17-Apr-08	="Vocational training"	01-Apr-08	30-Jun-08	43560.00	=""	="Changecorp"	17-Apr-08 02:42 PM	

+="CN71461-A1"	"Review of APS Accountability and Performance Framework"	="Australian Public Service Commission"	17-Apr-08	="Information services"	08-Apr-08	30-Nov-08	60500.00	=""	="LECG LTD"	17-Apr-08 03:42 PM	

+="CN71465"	"Upgrading Capability to the Enterprise"	="Australian Public Service Commission"	17-Apr-08	="Software"	19-Mar-08	31-Mar-08	60500.00	=""	="OATC P/L t/a DPM Consulting"	17-Apr-08 03:43 PM	

+="CN71474"	"Delivery of Human Resource Capability Development Programme"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	08-Feb-08	05-Sep-08	61556.02	="APS COMMISSION 2005/014"	="Dominic Downie & Associates"	17-Apr-08 03:44 PM	

+="CN71478"	"Fit out Sydney Office"	="Australian Public Service Commission"	17-Apr-08	="Building construction and support and maintenance and repair services"	22-Nov-07	07-Mar-08	51487.54	=""	="CBD Projects"	17-Apr-08 03:45 PM	

+="CN71514"	" Legal services - counsel "	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	14-Apr-08	30-Jun-08	55000.00	=""	="Ms Kerri Judd"	18-Apr-08 10:13 AM	

+="CN71524"	"Employer Advisor Programme"	="Workplace Authority"	18-Apr-08	="Work related organisations"	21-Sep-07	30-Jun-08	75883.50	=""	="National Retail Association Ltd"	18-Apr-08 11:04 AM	

+="CN71557"	"Suspenders Individual Equipment Belt"	="Defence Materiel Organisation"	18-Apr-08	="Belts or suspenders"	18-Apr-08	11-Jul-08	55176.00	="CC1UNF"	="Gee Yan Industry Pty Ltd"	18-Apr-08 01:36 PM	

+="CN71559"	" VEHICLE REPAIRS "	="Department of Defence"	18-Apr-08	="Motor vehicles"	16-Apr-08	16-May-08	63461.89	=""	="RGM"	18-Apr-08 01:44 PM	

+="CN71562"	"contract for the provision of Information Technology Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Computer servers"	10-Mar-08	20-Jun-08	48279.00	=""	="Aurec"	18-Apr-08 01:54 PM	

+="CN71563"	"Assistance with publication of Portfolio Budget Statement"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Apr-08	13-May-08	44000.00	=""	="AA Services Pty Limited"	18-Apr-08 01:57 PM	

+="CN71570"	"Press Advertising - 2009 Graduate Development Program in national and regional newspapers."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Marketing and distribution"	31-Mar-08	30-Jun-08	60000.00	=""	="HMA Blaze"	18-Apr-08 01:58 PM	

+="CN71577"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	40306.75	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71576"	"Recruitment Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Recruitment services"	22-Oct-07	19-May-08	53300.00	=""	="Law Solutions"	18-Apr-08 01:59 PM	

+="CN71585"	"Contract to supply DAFF with a framework and set of indicators to describe and quantify the social and economic impacts of forestry on a national, regional and local level."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	27-Jun-08	65000.00	=""	="Australian National University Fenner School of Environment and Society"	18-Apr-08 02:00 PM	

+="CN71586-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	07-Apr-08	30-Jun-08	60000.00	=""	="Northern Territory Department of Natural Resources, Environment and the Arts"	18-Apr-08 02:00 PM	

+="CN71587-A1"	"Testing services to the Australian Water Data Infrastructure Project, specifically testing of AWDI compliant web feature service implementations."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	79980.00	=""	="LISAsoft Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71588"	"to ensure a simple english seamless report that is consistent in tone and style, a writer/ editor is required. There is no departmental member with the expertise to do this task over the period required"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-May-08	31-Oct-08	61750.00	=""	="WordsWorth Writing"	18-Apr-08 02:00 PM	

+="CN71591"	"Annual renewal of COGNOS software licences and support"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	25-May-08	24-May-09	58572.69	=""	="COGNOS PTY LTD"	18-Apr-08 02:01 PM	

+="CN71599"	"Good Health - Great Future program 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	17-Apr-08	30-Jun-08	55000.00	=""	="Health Futures"	18-Apr-08 02:01 PM	

+="CN71600"	"Enhancements to ARC and GMS databases"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Mar-08	31-May-08	73260.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71601"	"Consultancy agreement for requirements gathering, design and development of a website for the Australian Animal Welfare Strategy (AAWS).THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 4162"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	16-Apr-07	30-Jun-08	67070.92	=""	="Parisfirst Partners Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71604-A1"	"Participation in the ?Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool? Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	30-Jun-08	60000.00	=""	="Western Australia Department of Water"	18-Apr-08 02:02 PM	

+="CN71622"	"1)Workshop and resolution on vocabulary management in registries and service metadata binding to vocabulary services2)Initial service profiles for AWDI, with tool capable of generating acceptable documentation(3)Publication (interim) of service profiles in registry infrastructure4)Report on the review of the formal documentation of the query model, with examples5)Brief overview of the alignment between AWDI and the emerging WOML profile"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	77000.00	=""	="CSIRO Land and Water"	18-Apr-08 02:04 PM	

+="CN71623"	"Training and assessment of offshore fumigators for the Australian Fumigation Accreditation Scheme in India, Thailand, Vietnam, Philippines, China, Malaysia and Indonesia.THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6448THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6450"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	20-Apr-08	04-May-08	55000.00	=""	="Peter Meadows Consulting Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71627"	"Logistical arrangements for Workshop on Diagnostics of Phytophagous Mites (Kuala Lumpur, Malaysia 5-10 May 2008)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Apr-08	24-May-08	49775.25	=""	="ASEANET, The South East Asian LOOP of BioNET International"	18-Apr-08 02:05 PM	

+="CN71532"	"Labour hire"	="Australian Securities and Investments Commission"	18-Apr-08	="Foreign languages resources"	01-Apr-08	30-Jun-08	56500.00	=""	="McQuillan & Associates Pty Ltd"	18-Apr-08 02:17 PM	

+="CN71637"	"legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	17-Dec-07	30-Jun-09	70000.00	=""	="Mr Philip Crutchfield"	18-Apr-08 02:49 PM	

+="CN71639"	"Conduct AAT 2008 User Survey, report & presentation of results incl estimated outlays"	="Administrative Appeals Tribunal"	18-Apr-08	="Market research"	07-Apr-08	31-Aug-08	45000.00	=""	="Profmark Consulting Pty Ltd"	18-Apr-08 03:30 PM	

+="CN71649"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	17-Mar-08	30-Jun-08	54340.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71650"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary research and development services"	17-Mar-08	30-Jun-08	49104.00	="WOT08/007"	="Arup Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71653"	"Services"	="Attorney-General's Department"	18-Apr-08	="Electronic computers or data processing equipment manufacture services"	19-Mar-08	30-Jun-08	67392.58	="05/4934"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71655"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Outside plant telecommunications cable"	19-Mar-08	30-Jun-08	52000.00	=""	="The Trustee for DECCA Building"	18-Apr-08 03:44 PM	

+="CN71656"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	18-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71664"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Jun-08	62656.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:45 PM	

+="CN71673"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	43296.00	="06/18412"	="Verossity Pty Limited"	18-Apr-08 03:46 PM	

+="CN71674"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71676"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Research programs"	13-Mar-08	30-Apr-08	44000.00	=""	="Department of Health & Ageing"	18-Apr-08 03:47 PM	

+="CN71677"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Completion tools and equipment"	14-Mar-08	30-Jun-08	79876.32	=""	="Hurlome Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71680"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	79200.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71687"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	25-Mar-08	31-Aug-08	76000.00	=""	="Staffing and Office Solutions"	18-Apr-08 03:48 PM	

+="CN71696"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Facsimile units for office machines"	28-Mar-08	30-Apr-08	71995.00	=""	="RICOH AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71697"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	28-Mar-08	28-Mar-08	66048.29	=""	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71700"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Aircraft fuel tanks and systems"	28-Mar-08	28-Mar-08	55000.00	=""	="Water Corporation"	18-Apr-08 03:49 PM	

+="CN71705"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	25-Mar-08	30-Jun-08	40000.00	=""	="AMA PTY LTD (Aust Medical Assoc.)"	18-Apr-08 03:50 PM	

+="CN71712"	"Communications"	="Attorney-General's Department"	18-Apr-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	44000.00	=""	="Balfran Removals"	18-Apr-08 03:51 PM	

+="CN71718"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Proprietary or licensed systems maintenance or support"	25-Mar-08	25-Mar-08	60000.00	=""	="Australian Radiation Protection &"	18-Apr-08 03:52 PM	

+="CN71734"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	13-Mar-08	30-Jun-08	64414.40	="06/10059"	="Synergy Innovations"	18-Apr-08 03:54 PM	

+="CN71742"	"Equine Flu inquiry"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	06-Mar-08	25-Apr-08	76998.90	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:56 PM	

+="CN71743"	"Patient emergency Medivac"	="Attorney-General's Department"	18-Apr-08	="Emergency medical services long distance response LDR trauma packs"	07-Feb-08	28-Mar-08	58500.00	=""	="AVWEST PTY LTD"	18-Apr-08 03:56 PM	

+="CN71752"	"Consultant"	="Attorney-General's Department"	18-Apr-08	="Data base reporting software"	31-Jan-08	31-Jan-08	45225.65	=""	="Dr Theodor Krauthammer"	18-Apr-08 03:57 PM	

+="CN71754"	"Legal Research Services"	="Attorney-General's Department"	18-Apr-08	="Legal Research Services"	27-Feb-08	12-Mar-08	76819.03	=""	="Professor James Crawford"	18-Apr-08 03:57 PM	

+="CN71757"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	19-Mar-08	25-Apr-08	79302.30	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:58 PM	

+="CN71777"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	11-Mar-08	47520.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71781"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	11-Mar-08	11-Mar-08	49995.22	=""	="HMA BLAZE"	18-Apr-08 04:01 PM	

+="CN71782"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	18-May-08	43296.00	="06/18396"	="Verossity Pty Limited"	18-Apr-08 04:01 PM	

+="CN71780"	" Fitout services for Level 25 / 324 Queen Street Brisbane. "	="Centrelink"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Feb-08	30-Jun-08	66396.00	=""	="Quadric Pty Ltd"	18-Apr-08 04:01 PM	

+="CN71787"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	23-Apr-08	41695.50	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:02 PM	

+="CN71788"	"Temporary Recruitment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	30-Jun-08	49280.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71791"	"Vehicle lease"	="Attorney-General's Department"	18-Apr-08	="Motor vehicles"	16-Apr-08	30-Jun-08	43000.00	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	18-Apr-08 04:02 PM	

+="CN71794"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	02-Apr-08	44000.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71819"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	12-Jun-08	74811.00	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	18-Apr-08 05:20 PM	

+="CN71822"	"HR Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	27-Jun-08	53430.00	="rft"	="HUDSON"	18-Apr-08 05:20 PM	

+="CN71840"	"Architectural Services"	="Department of Finance and Deregulation"	18-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	31-Dec-08	69741.65	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	18-Apr-08 05:22 PM	

+="CN71852"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	28-Nov-08	45000.00	="."	="BRUCE DONALD LAWYER AND CONSULTANT"	18-Apr-08 05:24 PM	

+="CN71853"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Nov-08	40000.00	="."	="OAKTON AA SERVICES PTY LTD"	18-Apr-08 05:24 PM	

+="CN71857"	"Business Advisory Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	16-May-08	79684.00	="000000000000000"	="FUJITSU AUSTRALIA LIMITED"	18-Apr-08 05:24 PM	

+="CN71859"	"IT System Development Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	76000.00	="000000000000000"	="FUNNELBACK PTY LTD"	18-Apr-08 05:25 PM 

--- /dev/null
+++ b/admin/partialdata/14Apr2008to18Apr2008valto.xls
@@ -1,1 +1,956 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN70678"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 08:04 AM	

+="CN70679"	"Provision of Storage and backup equipment"	="Australian Federal Police"	14-Apr-08	="File archive storage"	30-Aug-07	30-Jul-08	1834328.73	=""	="Dimension Data Australia Pty Limited"	14-Apr-08 09:01 AM	

+="CN70680-A1"	"Consultancy service for Contact Centre"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	29-Nov-07	21-Dec-08	70000.00	=""	="Vivaz Pty Ltd"	14-Apr-08 09:02 AM	

+="CN70681"	"Disruptive Pattern Camouflage Trousers raised against standing offer 1001-154-25"	="Defence Materiel Organisation"	14-Apr-08	="Military uniforms"	03-Apr-08	16-May-08	411576.00	="2480042"	="Can't Tear Em Pty Ltd"	14-Apr-08 09:05 AM	

+="CN70682-A2"	"Provision of expert Financial assistance"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Oct-07	28-Mar-08	90000.00	=""	="Resolution Consulting Services Pty Ltd"	14-Apr-08 09:06 AM	

+="CN70683"	"REPAIR AND OH OF BLACK HAWK FAN VANEAXIAL ASSY."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	11521.36	=""	="SAAL"	14-Apr-08 09:13 AM	

+="CN70686-A1"	"Scoping study of Financial Management"	="Workplace Authority"	14-Apr-08	="Business and corporate management consultation services"	18-Dec-07	28-Mar-08	30000.00	=""	="KPMG (CANBERRA)"	14-Apr-08 09:34 AM	

+="CN70685"	" VARRIOUS PHARMACEUTICAL ITEMS "	="Defence Materiel Organisation"	14-Apr-08	="Medical health associations"	11-Apr-08	12-May-08	18386.86	=""	="SYMBION PHARMACY SERVICES"	14-Apr-08 09:34 AM	

+="CN70687"	"LOCKERS"	="Australian Taxation Office"	14-Apr-08	="Furniture and Furnishings"	09-Apr-08	30-Apr-08	25872.00	=""	="SPACEPAC INDUSTRIES"	14-Apr-08 09:37 AM	

+="CN70689"	"IT Contractor"	="Australian Taxation Office"	14-Apr-08	="Engineering and Research and Technology Based Services"	10-Apr-08	13-Oct-08	190080.00	=""	="Omaha IT Services PTY LTD"	14-Apr-08 09:37 AM	

+="CN70690"	"22 X CANON CAMERA MODEL IXUS 960IS 22 X CANON FLASM MODEL HFDC1"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	16161.00	=""	="THE GOOD GUYS"	14-Apr-08 09:37 AM	

+="CN70688"	"Printing - Training material for Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	25-Jan-08	25-Jan-08	21068.01	=""	="Snap Printing"	14-Apr-08 09:37 AM	

+="CN70691"	"4 X HDR-SR7 SONY VIDEO CAMERA, 4 X BATTERY CHARGER 4 X TELECONVERTER, 4 X BATTERIES NPFH100,"	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	11-Apr-08	11-Apr-08	10062.80	=""	="Nikon On Broadway"	14-Apr-08 09:38 AM	

+="CN70692"	"ACCOUNT MANAGEMENT FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	11-Apr-08	1006561.00	=""	="COMSUPER"	14-Apr-08 09:57 AM	

+="CN70693"	"CONSULTANT FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	07-Apr-08	12498.75	=""	="PM BUSINESS CONSULTING PTY LTD"	14-Apr-08 09:57 AM	

+="CN70694"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	10-Apr-08	17531.25	=""	="J A LOGAN"	14-Apr-08 09:57 AM	

+="CN70695"	"CONTRACTING SERVICES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-08	12603.00	=""	="SIDNEY WILLIAM HAMMELL"	14-Apr-08 09:58 AM	

+="CN70696"	"VENUE/EQUIPMENT HIRE AND ACCOMODATION AT WORKSHOP VENUE"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	10-Apr-08	10-Apr-08	13709.15	=""	="Crowne Plaza Canberra"	14-Apr-08 09:58 AM	

+="CN70697"	"LEGAL COSTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	09-Apr-08	11695.20	=""	="MINTER ELLISON"	14-Apr-08 09:58 AM	

+="CN70698"	"ACCOMMODATION"	="Australian Taxation Office"	14-Apr-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	09-Apr-08	14822.00	=""	="NOVOTEL ST KILDA"	14-Apr-08 09:58 AM	

+="CN70699"	"FEES"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	08-Apr-08	28406.64	=""	="DUUS & CO"	14-Apr-08 09:58 AM	

+="CN70700"	"TRAINING"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	08-Apr-08	10472.00	=""	="COGNOS PTY LTD"	14-Apr-08 09:58 AM	

+="CN70701"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	09-Apr-08	16600.85	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:58 AM	

+="CN70702"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	09-Apr-08	15162.46	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70703"	"LABOUR"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	09-Apr-08	25729.83	=""	="Hudson Global Resources (Aust) P/L"	14-Apr-08 09:59 AM	

+="CN70704"	"POSITION ADVERTISEMENTS"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-08	159284.51	=""	="HMA BLAZE PTY LTD"	14-Apr-08 09:59 AM	

+="CN70705"	"IT Contractor"	="Australian Taxation Office"	14-Apr-08	="Engineering and Research and Technology Based Services"	10-Apr-07	23-May-08	21120.00	=""	="COMPAS PTY LTD"	14-Apr-08 10:00 AM	

+="CN70706"	"EL2.2 Accommodation whilst interstate as per the EL2 Accommodation Guidelines"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	17269.70	=""	="SPIKE TRUST"	14-Apr-08 10:00 AM	

+="CN70707"	"REcruitment services - Speech writer"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Apr-08	11000.00	=""	="VEDIOR ASIA PACIFIC PTY LIMITED"	14-Apr-08 10:00 AM	

+="CN70708"	"Executive Facilitation Services"	="Australian Taxation Office"	14-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	10502.22	=""	="CAPGEMINI AUSTRALIA PTY LTD"	14-Apr-08 10:07 AM	

+="CN70709"	"Provision for SDV hard drives and maintenance"	="Comsuper"	14-Apr-08	="Hardware"	20-Mar-08	30-Jun-08	28946.50	=""	="Secure Systems Limited"	14-Apr-08 10:16 AM	

+="CN70711"	"Property Lease Rental Accommadation Vanuatu"	="Australian Federal Police"	14-Apr-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-10	50000.00	=""	="Louise Stevens"	14-Apr-08 10:32 AM	

+="CN68765-A2"	"Cost Management and Quantity Surveying Services"	="Australian Securities and Investments Commission"	14-Apr-08	="Project management"	25-Feb-08	01-Nov-08	56000.00	=""	="Rider Levett Bucknall SA Pty Ltd"	14-Apr-08 10:32 AM	

+="CN66070"	"Liquidator Opinion"	="Australian Securities and Investments Commission"	14-Apr-08	="Liquidation law services"	01-Nov-07	30-Jun-08	17160.00	=""	="George Divitkos"	14-Apr-08 10:35 AM	

+="CN70712-A2"	"Provision of cleaning services at the Mandurah premises of CRS Australia"	="CRS Australia"	14-Apr-08	="General building and office cleaning and maintenance services"	10-Mar-08	09-Mar-11	16530.00	=""	="GWC Total Management"	14-Apr-08 10:38 AM	

+="CN70713"	"Repair & OH of Black Hawk Spindle Assy."	="Defence Materiel Organisation"	14-Apr-08	="Military rotary wing aircraft"	14-Apr-08	30-Jun-08	14479.49	=""	="SAAL"	14-Apr-08 10:53 AM	

+="CN70714"	"Lease at Torrensville, SA"	="Department of Human Services"	14-Apr-08	="Lease and rental of property or building"	01-Jun-08	31-May-12	1445503.00	=""	="Kadia Nominees & L G Ermidis & Albersid Pty Ltd"	14-Apr-08 10:54 AM	

+="CN70715"	" Probity Advisory Services - APCM123.02-81 "	="Australian Taxation Office"	14-Apr-08	="Financial and Insurance Services"	08-Apr-08	31-Dec-08	40000.00	="123.02-81"	="Walter Turnbull Pty Ltd"	14-Apr-08 11:07 AM	

+="CN70716"	"qty 60 antenna group , base matching unit, upper assembly, spares for use with military radios"	="Defence Materiel Organisation"	14-Apr-08	="Radio antennas"	10-Apr-08	04-Sep-08	18480.00	="RFQ-7066A"	="A&D International Pty Ltd"	14-Apr-08 11:23 AM	

+="CN70717"	"RAN Antenna Assembly"	="Defence Materiel Organisation"	14-Apr-08	="Aircraft antennas"	18-Apr-08	15-Aug-08	19147.04	=""	="BAE Systems"	14-Apr-08 11:35 AM	

+="CN70718"	"e-recruitment licence fee for 2008"	="Department of Veterans' Affairs"	14-Apr-08	="Software"	16-Dec-07	16-Dec-10	89707.00	=""	="NGA.NET Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70719"	"IMU Contract Programmer: IMU-ICT063 Official Order IMU2008/011"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	189868.00	=""	="Reitan Holdings Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70720"	"IMU Contract Programmer: IMU-ICT056 Official Order IMU2008/014"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	31-Mar-08	30-Mar-09	235664.00	=""	="Srigo Pty Ltd"	14-Apr-08 11:46 AM	

+="CN70721"	"IMU Contract Programmer: IMU-ICT002 Official Order IMU2008/012"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	166954.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70722"	"IMU Contract Programmer: IMU-ICT003 Official Order IMU2008/010"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	31-Mar-09	188778.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70723"	"Centrelink Panel IMU Contract Programmer: IMU-ICT100 Work Order DVAIMU2008/002"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	06-Oct-08	75504.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70724"	"Centrelink Panel IMU Contract Programmer IMU-ICT112 Work Order DVAIMU2008/001"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	01-Aug-08	69212.00	=""	="Peoplebank Australia Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70725-A1"	"Incap Phase 1"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	21-Mar-08	177600.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:47 AM	

+="CN70726-A1"	"R&C project"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	29-Aug-08	107120.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	14-Apr-08 11:47 AM	

+="CN70727-A2"	" Curam Software "	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	25-Feb-08	06-Mar-08	18000.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70728"	"CCC Phase 1"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	29-Jan-08	29-Feb-08	40800.00	=""	="IBM Australia Ltd"	14-Apr-08 11:48 AM	

+="CN70729-A1"	"V5 Upgrade"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	18-Feb-08	13-Jun-08	173000.00	=""	="Curam Software Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70730-A1"	"Infrastructure project"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	03-Mar-08	31-Oct-08	144200.00	=""	="Peoplebank Australia Pty Ltd (Former iGATE Australia P/L)"	14-Apr-08 11:48 AM	

+="CN70731-A1"	"DocGen / E Transactions"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	01-Apr-08	27-Jun-08	65000.00	=""	="GMT Canberra Pty Ltd"	14-Apr-08 11:48 AM	

+="CN70732-A1"	"SDMP Transport - Reporting"	="Department of Veterans' Affairs"	14-Apr-08	="Computer services"	07-Apr-08	27-Jun-08	66000.00	=""	="F1 Solutions"	14-Apr-08 11:48 AM	

+="CN70733"	"Printing - Agreement info statements for employees"	="Workplace Authority"	14-Apr-08	="Print advertising"	17-Dec-07	17-Dec-07	98650.40	=""	="HMA Blaze Pty Ltd"	14-Apr-08 11:59 AM	

+="CN70734"	"Property Services"	="Workplace Authority"	14-Apr-08	="Property management"	12-Dec-07	30-Jun-08	1254323.01	=""	="United Group Services"	14-Apr-08 12:06 PM	

+="CN70735"	"Hiring of Analyst Programmer"	="Workplace Authority"	14-Apr-08	="Recruitment services"	25-Mar-08	30-Jun-08	83589.50	=""	="Ambit Recruitment Group"	14-Apr-08 12:13 PM	

+="CN70736"	" Web Content Developer "	="Workplace Authority"	14-Apr-08	="Content management software"	10-Dec-07	29-Feb-08	35000.00	=""	="HiTech Personnel"	14-Apr-08 12:17 PM	

+="CN70738"	" Recruitment Services "	="Workplace Authority"	14-Apr-08	="Recruitment services"	08-Dec-07	27-Jun-08	97020.00	=""	="Frontier Group Australia Pty Ltd"	14-Apr-08 12:21 PM	

+="CN70739"	"Office supplies: Epson Projector & Smart Board"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	16040.82	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:24 PM	

+="CN70740-A1"	"Mature Age Employment and Workplace Strategy"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Employment promotion or planning services"	04-Apr-08	30-Jun-08	39600.00	=""	="Sureway Employment"	14-Apr-08 12:25 PM	

+="CN70741"	"Office supplies - Polycom HDX 8004 XL HD Package"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	25683.10	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:29 PM	

+="CN70742"	"Office Supplies - Electronic Whiteboards"	="Workplace Authority"	14-Apr-08	="Office supplies"	08-Dec-07	27-Jun-08	17083.60	=""	="Electroboard Solutions Pty Ltd"	14-Apr-08 12:32 PM	

+="CN70744"	"Printing - Fairness Test"	="Workplace Authority"	14-Apr-08	="Print advertising"	24-Sep-07	05-Jun-08	55000.00	=""	="HMA Blaze Pty Ltd"	14-Apr-08 12:36 PM	

+="CN70746"	"Employer Advisor Programme"	="Workplace Authority"	14-Apr-08	="Work related organisations"	06-Aug-07	30-Jun-08	21747.50	=""	="Master Builders Australia Incorporation"	14-Apr-08 12:39 PM	

+="CN70752"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	35167.00	=""	="Greythorn"	14-Apr-08 12:47 PM	

+="CN70753"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	27610.00	=""	="Greythorn"	14-Apr-08 12:50 PM	

+="CN70756"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	01-Jul-07	30-Jun-08	15795.77	=""	="Greythorn"	14-Apr-08 12:53 PM	

+="CN70762"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	31-Jul-07	30-Jun-08	28994.64	=""	="Cubic Consulting"	14-Apr-08 12:55 PM	

+="CN70765"	"Health Checks"	="Workplace Authority"	14-Apr-08	="Health service planning"	31-Jul-07	30-Jun-08	43727.00	=""	="Health Services Australia Ltd"	14-Apr-08 12:58 PM	

+="CN70767"	" repairs to 8 x-20' shipping containers "	="Department of Defence"	14-Apr-08	="Containers and storage"	14-Apr-08	20-Jun-08	13522.86	=""	="WILTRADING"	14-Apr-08 01:00 PM	

+="CN70769"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	30-Jul-07	30-Jun-08	19256.38	=""	="Hays Personnel Services (Australia)"	14-Apr-08 01:00 PM	

+="CN70774"	"Mobile phone expenses"	="Workplace Authority"	14-Apr-08	="Mobile phones"	30-Jul-07	30-Jun-08	36068.28	=""	="Optus Administration"	14-Apr-08 01:03 PM	

+="CN70776"	"Postage Services - WA"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	27-Jul-07	30-Jun-08	10555.30	=""	="Australian Post"	14-Apr-08 01:07 PM	

+="CN70778"	"Postage Services - NSW"	="Workplace Authority"	14-Apr-08	="Franking or postage machines"	21-Mar-08	27-Jun-08	79220.90	=""	="Australian Post"	14-Apr-08 01:10 PM	

+="CN70748"	"IVR Tuning and Analysis"	="Australian Taxation Office"	14-Apr-08	="Computer services"	14-Apr-08	30-Jun-08	49060.00	="RFQ T&A"	="Dimension Data Aust Pty Ltd"	14-Apr-08 01:14 PM	

+="CN70777"	" survey and inspection and repairs on 28 LAR V1 "	="Department of Defence"	14-Apr-08	="Respiration air supplying self contained breathing apparatus or accessories"	20-Nov-07	10-Apr-08	53571.35	=""	="Drager Safety"	14-Apr-08 01:14 PM	

+="CN70779"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	10-Oct-07	10-Dec-07	30823.65	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:27 PM	

+="CN70780"	"Probity Advisor for the SBR Authentication Project"	="Australian Taxation Office"	14-Apr-08	="Management advisory services"	13-Mar-08	02-Jun-08	19725.00	=""	="Walter & Turnbull Pty Ltd"	14-Apr-08 01:29 PM	

+="CN70782"	"Provision of supply of work stations"	="Australian Federal Police"	14-Apr-08	="Workstations and office packages"	02-Oct-07	15-Dec-07	13068.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:34 PM	

+="CN70784"	"Provision of Team Leader Services"	="Family Court of Australia"	14-Apr-08	="Information technology consultation services"	10-Apr-07	10-Apr-08	221336.00	=""	="TALENT INTERNATIONAL"	14-Apr-08 01:34 PM	

+="CN70786"	"Legal fees"	="Family Court of Australia"	14-Apr-08	="Legal services"	04-Feb-08	28-Feb-08	22347.33	=""	="Australian Government Solicitor"	14-Apr-08 01:40 PM	

+="CN70787"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	17-Sep-07	04-Dec-07	10777.80	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:45 PM	

+="CN70788"	"Provision of office furniture and fittings"	="Australian Federal Police"	14-Apr-08	="Office furniture"	03-Oct-07	03-Oct-07	13313.30	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 01:54 PM	

+="CN70789"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	14-Apr-08	="Aircraft spars"	14-Apr-08	10-Nov-09	222630.32	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	14-Apr-08 01:59 PM	

+="CN70790"	"Security Services"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	24-Mar-08	30-Jun-08	46574.00	=""	="SECOM TECHNICAL SERVICES Pty Ltd"	14-Apr-08 02:02 PM	

+="CN70791"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	04-Oct-07	04-Oct-07	18440.95	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:05 PM	

+="CN70793"	"REPAIRS TO MRV ARN-202864 ON W/O-35919"	="Department of Defence"	14-Apr-08	="Motor vehicles"	14-Apr-08	27-Jun-08	11195.05	=""	="PREMIER TRUCKS NQ"	14-Apr-08 02:10 PM	

+="CN70792-A1"	"Fitout works at National Musuem sites located at 9-13 Vicars St, and Unit 2/90 Vicars St, Mitchell"	="National Museum of Australia"	14-Apr-08	="General building construction"	31-Mar-08	06-Jun-08	531399.00	="NMAT0708/08"	="SMI Fitout Pty Ltd"	14-Apr-08 02:12 PM	

+="CN70795"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Security and control equipment"	27-Feb-08	06-Mar-08	76136.50	=""	="SECOM Technical Services Pty Ltd"	14-Apr-08 02:14 PM	

+="CN70797"	"Motor Vehicle Parts"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	15745.87	=""	="Volvo Commerical Vehicles"	14-Apr-08 02:20 PM	

+="CN70794"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	27-Jul-07	30-Jun-08	28216.80	=""	="Julia Ross Personnel"	14-Apr-08 02:20 PM	

+="CN70798"	"Office Fitout"	="Department of the Prime Minister and Cabinet"	14-Apr-08	="Accommodation furniture"	27-Nov-07	19-Feb-08	47408.90	=""	="MDA Interiors Pty Ltd"	14-Apr-08 02:22 PM	

+="CN70799"	"Provision of storage of excess furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Mar-07	30-Jul-07	13576.42	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:37 PM	

+="CN70800-A1"	"A and BAC External Member"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Accounting services"	20-Nov-07	21-Dec-09	49500.00	="PRN12008"	="MORISON CONSULTING"	14-Apr-08 02:46 PM	

+="CN70801"	"Provision of office furniture"	="Australian Federal Police"	14-Apr-08	="Office furniture"	01-Dec-07	31-Jan-08	48161.00	=""	="Iken Commercial Interiors (ACT) Pty Ltd"	14-Apr-08 02:51 PM	

+="CN38541-A1"	" Provision of legislative drafting services "	="Office of Parliamentary Counsel"	14-Apr-08	="Bill drafting services"	01-Jul-07	30-Jun-08	180000.00	=""	="HGH Constulting Group"	14-Apr-08 03:01 PM	

+="CN70803"	"Vehicle parts."	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Jan-08	15-Apr-08	85718.02	=""	="HITACHI CONSTRUCTION MACHINERY"	14-Apr-08 03:06 PM	

+="CN70804"	"Fitout - Melbourne Office"	="Workplace Authority"	14-Apr-08	="Property management services"	28-Aug-07	31-Aug-08	13472.80	=""	="Interiors Australia Pty Ltd"	14-Apr-08 03:10 PM	

+="CN70805"	"VEHICLE BATTERIES (MILITARY VERSION)"	="Department of Defence"	14-Apr-08	="Vehicle batteries"	28-Mar-08	18-Apr-08	20373.21	=""	="EXIDE TECHNOLOGIES PTY LTD"	14-Apr-08 03:17 PM	

+="CN70806"	"VEHICLE PARTS"	="Department of Defence"	14-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	08-Apr-08	06-May-08	18853.35	=""	="Land Rover Australia"	14-Apr-08 03:34 PM	

+="CN70807"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	15-Dec-07	15-Dec-07	32923.81	=""	="HMA Blaze"	14-Apr-08 03:36 PM	

+="CN70808"	"Fitout - Elizabeth Street, Sydney"	="Workplace Authority"	14-Apr-08	="Property management services"	28-Aug-07	31-Aug-08	181482.40	=""	="Interiors Australia Pty Ltd"	14-Apr-08 03:38 PM	

+="CN70809"	"Australia New Zealand Agents Workshop - AEI Participation"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20000.00	="PRN17759"	="EDMEDIA STUDENT RECRUITMENT PTY"	14-Apr-08 03:50 PM	

+="CN70810-A1"	"Quality in offshore delivery in VET Dissemination activities"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	10-Dec-07	06-Jun-08	64500.00	="PRN17892"	="NCVER"	14-Apr-08 03:50 PM	

+="CN70811"	"EBSCO - 2008 Journal subcriptions"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	31-Jan-08	30-Jun-08	16442.94	="PRN18481"	="EBSCO AUSTRALIA"	14-Apr-08 03:50 PM	

+="CN70813"	"Wellington Group Forum 2008"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	04-Jan-09	60000.00	="PRN16997"	="INTERCONTINENTAL SYDNEY"	14-Apr-08 03:53 PM	

+="CN70812"	"Advertising Services"	="Australian Fair Pay Commission"	14-Apr-08	="Advertising"	23-Feb-08	23-Feb-08	34400.37	=""	="HMA Blaze"	14-Apr-08 03:53 PM	

+="CN70815"	"APS Jobs (Gazette) Annual Subsription 2007-08"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	46121.38	="PRN18314"	="AUSTRALIAN PUBLIC SERVICE COMM"	14-Apr-08 03:54 PM	

+="CN70816"	"14 Mort Street, Level 3 - Feature paint and Office"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	31-Dec-07	29-Feb-08	16950.30	="PRN18366"	="CONSTRUCTION CONTROL INTERIORS P/L"	14-Apr-08 03:54 PM	

+="CN70817"	"Maintenance of tennant owned supplementary Airconditioning Units"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Building and Construction and Maintenance Services"	05-Jan-07	03-Jan-08	42000.00	="PRN17932"	="RILEY SHELLEY BUILDING SERVICES P/L"	14-Apr-08 03:55 PM	

+="CN70819-A1"	"Design, document and contract administration, 71 Northbourne Ave L2-4"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="General building construction"	03-Sep-07	30-Apr-08	25000.00	="PRN18364"	="PECKVONHARTEL"	14-Apr-08 03:55 PM	

+="CN70820"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Transportation and Storage and Mail Services"	28-Sep-07	31-Dec-07	10929.02	=""	="AUSTEX LOGISTICS PTY LTD"	14-Apr-08 03:55 PM	

+="CN70821"	"Development and maintainance of the Project Management Plans for World Expo 2010 - Shanghai"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-Jul-07	30-Jun-08	33000.00	=""	="ALAMEIN CONSULTING PTY LTD"	14-Apr-08 03:55 PM	

+="CN70822-A1"	"National School Drug Education Strategy - development of evaluative survey instruments"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Audit services"	10-Jun-05	30-Sep-05	88000.00	="PRN7684"	="EREBUS CONSULTING GROUP PTY LTD"	14-Apr-08 03:56 PM	

+="CN70824-A1"	"Barriers to providing school based prevention programms for ecstacy and related drugs"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Market research"	01-Apr-05	31-May-05	55000.00	="PRN6981"	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 03:57 PM	

+="CN70825"	"Australian Government Summer Schools for Teacher Prorgamme Review"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	22-Nov-07	30-Sep-08	249120.78	="PRN16638"	="KPMG"	14-Apr-08 03:57 PM	

+="CN70826"	"2004 Benchmark results"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Printed media"	20-Dec-07	18-Jan-08	24395.00	="PRN15440"	="MINISTERIAL COUNCIL ON EDUCATION,"	14-Apr-08 03:59 PM	

+="CN70827"	"Verisign Premium PKI Certificates"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	24-Jan-08	30-Jun-08	15840.00	="PRN18427"	="VERISIGN AUSTRALIA LIMITED"	14-Apr-08 03:59 PM	

+="CN70828"	"MapInfo and StreetPro License"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer Equipment and Accessories"	21-Jan-08	30-Jun-08	13798.13	="PRN18330"	="PITNEY BOWES MAPINFO AUSTRALIA PTY"	14-Apr-08 04:00 PM	

+="CN70829"	"Video Conferencing Support and Maintenance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Computer services"	21-Dec-07	30-Jun-08	19500.00	="PRN18208"	="SERVICEPOINT AUSTRALIA PTY LTD"	14-Apr-08 04:00 PM	

+="CN70830-A1"	"Period Order 0708: COPE Courier"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Mail and cargo transport"	02-Jan-08	30-Jun-09	45000.00	="PRN18248"	="COPE TRANSPORT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70831"	"PDMS Deployment Assistance"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Business administration services"	12-Nov-07	30-Jun-08	31050.00	="PRN18256"	="MICROSOFT PTY LTD"	14-Apr-08 04:00 PM	

+="CN70832"	"Training Package Development Handbook Policy Text"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	02-Jan-08	30-Jun-08	40000.00	="PRN18224"	="QUALITY TRAINING CONCEPTS PTY LTD"	14-Apr-08 04:00 PM	

+="CN70834"	"Consultant for the development of a strategic framework"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Engineering and Research and Technology Based Services"	01-Jan-08	15-May-08	18000.00	="PRN18247"	="PAUL FITZGERALD"	14-Apr-08 04:02 PM	

+="CN70833"	"labour and parts cost"	="Department of Defence"	14-Apr-08	="Satellites"	14-Apr-08	22-Jul-08	10489.23	=""	="NOVAMARINE INSTRUMENTS"	14-Apr-08 04:02 PM	

+="CN70835"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="PHOENIX BUSINESS COLLEGE"	14-Apr-08 04:02 PM	

+="CN70836"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="JIGSAW TRAINING ACADEMY"	14-Apr-08 04:02 PM	

+="CN70837"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="INTERNATIONAL SECURITY TRAINING"	14-Apr-08 04:02 PM	

+="CN70838"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11550.00	="PRN12579"	="COASTAL and RURAL TRAINING PTY LTD"	14-Apr-08 04:02 PM	

+="CN70839-A2"	"Career Advice Australia State Conference - Darwin"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Trade shows and exhibits"	20-Nov-07	12-Feb-08	10892.85	="PRN16534"	="SKYCITY DARWIN PTY LTD"	14-Apr-08 04:02 PM	

+="CN70840"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="AUSTRAINING BUSINESS INSTITUTE"	14-Apr-08 04:02 PM	

+="CN70841"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11440.00	="PRN12579"	="Integrity Business College"	14-Apr-08 04:03 PM	

+="CN70842"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10450.00	="PRN12579"	="Australian Institute of Applied"	14-Apr-08 04:03 PM	

+="CN70843"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12760.00	="PRN12579"	="Vixen Investments Pty Ltd"	14-Apr-08 04:03 PM	

+="CN70844"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Australian Industry Group Training"	14-Apr-08 04:03 PM	

+="CN70846"	"Review of Australian Training Awards selection pro"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	26-Nov-07	15-Feb-08	16200.00	="PRN17899"	="JOANNE MALPAS"	14-Apr-08 04:03 PM	

+="CN70847"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12980.00	="PRN12579"	="SALES PARTNER"	14-Apr-08 04:03 PM	

+="CN70849"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="CONWAL 3 ASSOCIATES"	14-Apr-08 04:04 PM	

+="CN70850-A2"	"2007 Census of Non-Government Schools"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	19-Sep-07	24-Dec-07	15000.00	="PRN16564"	="ROBERT JOHN MESSAGE"	14-Apr-08 04:04 PM	

+="CN70851"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="MAJOR OPERATOR DRIVER TRAINING"	14-Apr-08 04:04 PM	

+="CN70852"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	18480.00	="PRN12579"	="ALL BUSINESS LEARNING END"	14-Apr-08 04:04 PM	

+="CN70848"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	28-Aug-07	30-Jun-08	19305.00	=""	="DEEWR"	14-Apr-08 04:04 PM	

+="CN70853"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11000.00	="PRN12579"	="AUSTRALIAN INSTITUTE OF FINANCIAL"	14-Apr-08 04:04 PM	

+="CN70854"	"Legal services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	28-Mar-08	30-Jun-08	12000.00	=""	="Mr Martin Cuerden"	14-Apr-08 04:09 PM	

+="CN70857"	"Evaluation of the outcomes of COAG's recommendations on mutual recognition of occupational licensing"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	20-Dec-07	30-Jun-08	225000.00	="PRN17134"	="THE ALLEN CONSULTING GROUP PTY LTD"	14-Apr-08 04:14 PM	

+="CN70856-A1"	"Procurement of services for recruitment activity for HR"	="Australian Securities and Investments Commission"	14-Apr-08	="Human resources services"	03-Mar-08	30-Jun-08	28000.00	=""	="HR Partners"	14-Apr-08 04:15 PM	

+="CN70858-A1"	"Evaluation of Successful Learning in the Early Years of Schooling Project : Indigenous Parent Factor"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Marketing and distribution"	23-Nov-07	23-Jan-08	74200.00	="PRN16540"	="DENIS MULLER and ASSOCIATES"	14-Apr-08 04:15 PM	

+="CN70859-A1"	"Study into the successful transition of Indigenous"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Corporate objectives or policy development"	02-Jul-07	31-Jan-08	97460.00	="PRN13226"	="EREBUS CONSULTING GROUP PTY LTD"	14-Apr-08 04:15 PM	

+="CN70860-A3"	"Debt Recovery Agency"	="Department of Education Employment and Workplace Relations"	14-Apr-08	="Debt management"	26-Nov-07	26-Nov-09	146000.00	="PRN10785"	="AUSTRAL MERCANTILE SOLUTIONS"	14-Apr-08 04:16 PM	

+="CN70861"	"Legal Services - counsel"	="Australian Securities and Investments Commission"	14-Apr-08	="Legal services"	04-Apr-08	30-Jun-08	20000.00	=""	="Ms Elizabeth Cheeseman"	14-Apr-08 04:24 PM	

+="CN70862"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	28-Aug-07	11-Sep-07	20000.00	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	14-Apr-08 04:26 PM	

+="CN70863"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	20-Jun-07	20-Aug-07	21807.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70864"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	02-May-07	30-Jun-07	10752.50	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	14-Apr-08 04:26 PM	

+="CN70865"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	03-May-07	30-Jun-07	10212.40	=""	="WOODHEAD PTY LTD"	14-Apr-08 04:27 PM	

+="CN70866"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	04-May-07	30-Jun-07	11726.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	14-Apr-08 04:27 PM	

+="CN70867-A1"	"Property Suitability Assessment"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Business administration services"	01-Oct-07	04-Sep-09	95865.00	=""	="SINCLAIR KNIGHTMERZ PTY LIMITED"	14-Apr-08 04:27 PM	

+="CN70868"	" Printing of: NAT 1908-07.2007 - 'Tax basics for small business' booklet  Qty: 10,000 "	="Australian Taxation Office"	14-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-Apr-08	22-Apr-08	13148.30	=""	="Paragon Printers"	14-Apr-08 04:29 PM	

+="CN70869"	"Recruitment Services"	="Workplace Authority"	14-Apr-08	="Recruitment services"	29-Aug-07	30-Jun-08	18544.55	=""	="Hugo Personnell Pty Ltd"	14-Apr-08 04:29 PM	

+="CN70870"	"Procurement of desktops & monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	33319.00	=""	="Dataflex"	14-Apr-08 04:36 PM	

+="CN70871"	"Procurement of desktops and monitors"	="Workplace Authority"	14-Apr-08	="Computer Equipment and Accessories"	29-Aug-07	27-Jun-08	17941.00	=""	="Dataflex"	14-Apr-08 04:39 PM	

+="CN70874"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	02-Apr-08	02-Apr-08	135300.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:40 PM	

+="CN70876"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Personnel recruitment"	02-Apr-08	02-Apr-08	180400.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70877"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Personnel recruitment"	02-Apr-08	02-Apr-08	125400.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70878"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Information technology consultation services"	02-Apr-08	02-Apr-08	89210.00	="ATM016"	="OAKTON SERVICES PTY LTD"	14-Apr-08 04:41 PM	

+="CN70879"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	37400.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70880"	"CONSULTANCY PROPERTY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	09-Apr-08	09-Apr-08	13200.00	=""	="CB RICHARD ELLIS SWALEHYNES WORLDWIDE P/L"	14-Apr-08 04:41 PM	

+="CN70884"	"IT CONTRACTOR SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Temporary personnel services"	13-Mar-08	13-Mar-08	12540.00	=""	="ASG GROUP LIMITED"	14-Apr-08 04:42 PM	

+="CN70886"	"ONLINE RECRUITMENT SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	29-Mar-07	28-Mar-09	22000.00	=""	="NGA.NET PTY LTD"	14-Apr-08 04:42 PM	

+="CN70887"	"JOB EVALUATIONS - CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Business and corporate management consultation services"	14-Mar-08	14-Mar-08	12127.50	=""	="MERCER HUMAN RESOURCE CONSULTING PTY LTD"	14-Apr-08 04:42 PM	

+="CN70888"	"SUPPORT AND MAINTENANCE FOR ITSM SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	19-Mar-08	19-Mar-08	12234.20	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:42 PM	

+="CN70889"	"CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Temporary personnel services"	19-Mar-08	19-Mar-08	81345.00	=""	="INTERPRO AUSTRALIA PTY LTD"	14-Apr-08 04:43 PM	

+="CN70890"	"UNSW CO-OP PROGRAM 2006"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-05	30-Jun-09	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70892"	"UNSW CO-OP PROGRAM 2008"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	01-Jul-07	30-Jun-11	61000.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70893"	"MS PROJECT SERVER EPM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	03-Mar-08	31-May-08	56855.00	=""	="STRATEGIC DATA MANAGEMENT"	14-Apr-08 04:43 PM	

+="CN70894"	"UNSW CO-OP PROGRAM"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Sponsorship of event or celebrity"	09-Apr-08	09-Apr-08	16775.00	=""	="UNIVERSITY OF NEW SOUTH WALES"	14-Apr-08 04:43 PM	

+="CN70895"	"ITSM SOFTWARE LICENCES (KNOWLEDGE AND INVENTORY MANAGEMENT)"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	01-Apr-08	01-Apr-08	46750.00	="ATM016"	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	14-Apr-08 04:44 PM	

+="CN70896"	"VMWARE MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software maintenance and support"	01-Apr-08	01-Apr-08	20075.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:44 PM	

+="CN70897"	"BARRISTER FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	01-Apr-08	01-Apr-08	33000.00	=""	="MICHAEL IZZO"	14-Apr-08 04:44 PM	

+="CN70898"	"COUNSEL FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	07-Apr-08	07-Apr-08	33000.00	=""	="NOEL HUTLEY"	14-Apr-08 04:44 PM	

+="CN70900"	"MICROSOFT SOFTWARE MAINTENANCE AND SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Information technology consultation services"	29-Feb-08	28-Feb-09	92000.00	=""	="MICROSOFT PTY LTD"	14-Apr-08 04:45 PM	

+="CN70901"	"HP HARDWARE SUPPORT"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software or hardware engineering"	01-Apr-08	31-Mar-09	44616.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70902"	"SOFTWARE UPDATE"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Software"	08-Apr-08	08-Apr-08	75115.79	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Apr-08 04:45 PM	

+="CN70903"	"REPAIRS AND MAINTENANCE SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	08-Apr-08	26393.40	=""	="INTAFIX PTY LTD"	14-Apr-08 04:45 PM	

+="CN70904"	"LEGAL FEES"	="Australian Prudential Regulation Authority (APRA)"	14-Apr-08	="Legal services"	01-Jul-05	02-Jan-08	100000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	14-Apr-08 04:45 PM	

+="CN70905"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1639 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	14-Apr-08	="Aerospace systems and components and equipment"	14-Apr-08	30-Apr-08	64956.07	=""	="Goodrich Control Systems PTY LTD"	14-Apr-08 04:58 PM	

+="CN70906"	"Operating Lease for IT Equipment (SEP07)"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Computer Equipment and Accessories"	14-Sep-07	14-Sep-10	420930.84	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	14-Apr-08 05:15 PM	

+="CN70907"	"Seminar Delivery"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	29-Oct-07	30-Nov-07	13875.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	14-Apr-08 05:15 PM	

+="CN70908"	"Operating Lease for IT Equipment (DEC07)"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Computer Equipment and Accessories"	21-Dec-07	20-Dec-10	335266.20	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	14-Apr-08 05:15 PM	

+="CN70909"	"Training course - Senior Administrative Officer & Post Security Officer"	="Department of Foreign Affairs and Trade"	14-Apr-08	="Education and Training Services"	01-Jul-08	30-Jun-10	60000.00	=""	="AKE ASIA-PACIFIC PTY LIMITED"	14-Apr-08 05:15 PM	

+="CN70910"	"REPAIR AND OH OF BLACK HAWK SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	13259.94	=""	="SAAL"	15-Apr-08 07:52 AM	

+="CN70911"	"REPAIR AND OH OF BH SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	12480.36	=""	="SAAL"	15-Apr-08 08:19 AM	

+="CN70912"	"Physical Security Fit Out"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Building and Construction and Maintenance Services"	08-Feb-08	08-Apr-08	28280.54	=""	="SEALECK PTY LTD"	15-Apr-08 08:36 AM	

+="CN70913"	"Polyurea protective coating"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Building and Construction and Maintenance Services"	28-Mar-08	26-Jul-08	1087160.40	=""	="DEFENCE SAFETY SYSTEMS PTY LTD"	15-Apr-08 08:36 AM	

+="CN70914"	"Forensic IT Services"	="Australian Securities and Investments Commission"	15-Apr-08	="Computer servers"	30-Aug-07	30-Jun-09	230000.00	=""	="Deloitte Touche Tohmatsu"	15-Apr-08 08:44 AM	

+="CN70915"	"Strategic Internal Audit Annual Planning - 2008-11"	="Australian Federal Police"	15-Apr-08	="Internal audits"	14-Apr-08	30-Jun-08	14300.00	="RFT 01-2005"	="KPMG"	15-Apr-08 08:44 AM	

+="CN70916"	"R2 Servicing on kiowa A17-036"	="Defence Materiel Organisation"	15-Apr-08	="Aircraft"	10-Feb-08	15-Jun-08	148071.97	=""	="Helitech Pty Ltd"	15-Apr-08 08:46 AM	

+="CN70917"	"REPAIR AND OH OF BH SPINDLE ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	16805.28	=""	="SAAL"	15-Apr-08 08:51 AM	

+="CN70919"	"Certification Services"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Business administration services"	24-Dec-07	31-Mar-08	25000.00	=""	="ANABELLE BITS PTY LTD"	15-Apr-08 09:08 AM	

+="CN70922"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	29-Aug-07	30-Jun-08	140000.00	=""	="Michael Lewis Owen"	15-Apr-08 09:15 AM	

+="CN70925"	"Prefessional Legal Services"	="Workplace Authority"	15-Apr-08	="Legal services"	29-Aug-07	30-Jun-08	24350.26	=""	="Minter Ellison"	15-Apr-08 09:21 AM	

+="CN70926"	"REPAIR AND OH OF BH HOIST."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	11390.65	=""	="SAAL"	15-Apr-08 09:22 AM	

+="CN70927"	" Physical Security Fit Out "	="Department of Foreign Affairs and Trade"	15-Apr-08	="Building and Construction and Maintenance Services"	12-Nov-07	28-Feb-08	172326.00	=""	="AVON BARRIER COMPANY LTD"	15-Apr-08 09:23 AM	

+="CN70929"	"ISDN Lines"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	126000.00	=""	="TELSTRA CORPORATION LIMITED"	15-Apr-08 09:33 AM	

+="CN70930"	"Professional Services"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Human resources services"	30-Aug-07	28-Sep-07	10732.25	=""	="ICON RECRUITMENT PTY LTD"	15-Apr-08 09:33 AM	

+="CN70931-A1"	"Independent Member of Audit and Risk Committee"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Management advisory services"	01-Oct-07	30-Sep-10	37116.00	=""	="LEN EARLY PTY LTD"	15-Apr-08 09:33 AM	

+="CN70932"	"Independent Member of Audit and Risk Committee"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Management advisory services"	01-Oct-07	30-Sep-08	12372.00	=""	="ROEX MANAGEMENT PTY LTD"	15-Apr-08 09:33 AM	

+="CN70933"	"Conference venue and equipment hire for 14th AANZFTA round of negotiations - Brisbane 19-27/4/08"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Hotels and lodging and meeting facilities"	26-Mar-08	27-Apr-08	69230.00	=""	="BRISBANE CONVENTION AND EXHIBITION CENTRE"	15-Apr-08 09:34 AM	

+="CN70928"	"motor vehicle spare parts"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	41600.08	=""	="LANDROVER"	15-Apr-08 09:34 AM	

+="CN70934"	"Legal services - counsel"	="Australian Securities and Investments Commission"	15-Apr-08	="Legal services"	01-Jan-08	30-Jun-08	15000.00	=""	="Mr Geoff Abbott"	15-Apr-08 09:39 AM	

+="CN70935"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	29821.94	=""	="LAND ROVER AUSTRALIA"	15-Apr-08 09:40 AM	

+="CN70936"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	12055.40	=""	="LAND ROVER AUSTRALIA"	15-Apr-08 09:44 AM	

+="CN70937"	"REPAIR AND OH OF BH CENTRE STAB ASSY."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	42263.33	=""	="SAAL"	15-Apr-08 09:46 AM	

+="CN70938"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	33470.03	=""	="LANDROVER"	15-Apr-08 09:48 AM	

+="CN70940-A1"	"CLIENT/STAKEHOLDER REVIEW OF THE PRISMS SYSTEM"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	15-Oct-07	31-Dec-07	80000.00	="PRN16331"	="Corporate Diagnostics pty ltd"	15-Apr-08 09:57 AM	

+="CN70941-A1"	"APEC Education Network Presentation cross-border provision of education services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Application implementation services"	08-Nov-07	10-Jan-08	52250.00	="PRN16264"	="INTERNATIONAL ECONOMICS UNTIS TRUST"	15-Apr-08 09:58 AM	

+="CN70942"	"Development of a VET Capability Statement"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	12-Nov-07	01-May-08	140000.00	="PRN16517"	="TAFE DIRECTORS AUSTRALIA"	15-Apr-08 09:58 AM	

+="CN70943"	"Leading Australia's Future in Asia Programme 2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	07-Aug-07	30-Jun-08	53674.79	="PRN17828"	="AUSTRALIAN PUBLIC SERVICE COMM"	15-Apr-08 09:58 AM	

+="CN70944"	"16 Mort Street - Purchase of Portable Dance Floor"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	13-Nov-07	30-Nov-07	10010.00	="PRN17658"	="Ezi-Flor"	15-Apr-08 09:59 AM	

+="CN70945"	"Higher Education Removalist fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Building and Construction and Maintenance Services"	24-Sep-07	30-Nov-07	24992.00	="PRN17621"	="Movers and Shakers Business Relocatio"	15-Apr-08 10:00 AM	

+="CN70946-A1"	"Fitout plans and floor plans for level 2, 72 Northbourne Ave"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Workstations and office packages"	28-Aug-07	30-Jun-08	29260.00	="PRN16823"	="PECKVONHARTEL"	15-Apr-08 10:00 AM	

+="CN70947-A1"	"Minor fit out level 12, 188 Collins St Hobart"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	02-Oct-07	30-Nov-07	20582.00	="PRN17550"	="Cunic Constructions Pty Ltd"	15-Apr-08 10:00 AM	

+="CN70948"	"Benchmark Data Set - Australian Bureau of Statistics data"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Printed media"	07-Nov-07	30-Jun-08	16500.00	="PRN17633"	="AUSTRALIAN BUREAU OF STATISTICS"	15-Apr-08 10:00 AM	

+="CN70949"	"Design, document tender and project manage DEST Thursday Island Fitout"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	10-Oct-07	27-Jun-08	10450.00	="PRN17903"	="GECHAWELL PTY LTD"	15-Apr-08 10:00 AM	

+="CN70950"	"SAP Australia - InfoPak Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	22-Nov-07	30-Jun-08	17167.54	="PRN17893"	="SAP Australia Pty Ltd"	15-Apr-08 10:00 AM	

+="CN70951-A1"	"Design ,document, tender and project manage fit out 188 Collins St Hobart"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	26-Nov-07	30-Jun-08	95010.00	="PRN17915"	="GANLEY POPE JOHNSON"	15-Apr-08 10:00 AM	

+="CN70939"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	14-May-08	15771.91	=""	="LANDROVER"	15-Apr-08 10:00 AM	

+="CN70952"	"E-RECRUITMENT 2008"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Jun-07	07-Dec-07	10000.00	="PRN17902"	="NGA.NET PTY LTD"	15-Apr-08 10:00 AM	

+="CN70953"	"5x desks, underdesk drawers, PSU's- Schiavello"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Building and Construction and Maintenance Services"	23-Oct-07	04-Dec-07	10876.80	="PRN17855"	="Schiavello Commercial Interiors"	15-Apr-08 10:01 AM	

+="CN70954"	"Adobe Products"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	21-Nov-07	30-Jun-08	78950.00	="PRN17743"	="DATA#3 LIMITED"	15-Apr-08 10:01 AM	

+="CN70955"	"Cleaning and Repairing Office Chairs - ISG"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	13-Nov-07	20-Dec-07	11682.00	="PRN17721"	="KReliance Pty Ltd"	15-Apr-08 10:01 AM	

+="CN70956"	"Consultant to develop Project plan for establishmet of Vocational Education and Training Support"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	30-Aug-07	11-Oct-07	14040.00	="PRN17894"	="PAUL FITZGERALD"	15-Apr-08 10:01 AM	

+="CN70957"	"ITIL Awareness Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	19-Nov-07	31-Mar-08	15000.00	="PRN17813"	="Proactive Services Pty Ltd"	15-Apr-08 10:01 AM	

+="CN70958"	"Imation Tape Cartridges"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	28270.00	="PRN17742"	="PRODATA COMPUTER PRODUCTS"	15-Apr-08 10:01 AM	

+="CN70959"	"Appsense Management Software"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	14064.93	="PRN17895"	="Dimension Data Australia Pty Ltd"	15-Apr-08 10:02 AM	

+="CN70960"	"Reporting Services Training - Superior Software for windows"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	26-Nov-07	30-Jun-08	11008.80	="PRN17808"	="SUPERIOR SOFTWARE FOR WINDOWS PTY L"	15-Apr-08 10:02 AM	

+="CN70961"	"Investigation into Industry Expectations of VET Assessment"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	26-Nov-07	30-Apr-08	114840.00	="PRN16628"	="PRECISION CONSULTANCY"	15-Apr-08 10:02 AM	

+="CN70962"	"Fax Interface Hardware"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	49747.50	="PRN17931"	="Axient P/L"	15-Apr-08 10:02 AM	

+="CN70963"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Institute of Hair and Aesthetics"	15-Apr-08 10:03 AM	

+="CN70964"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="The Daniels Associates of"	15-Apr-08 10:03 AM	

+="CN70965"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Pro-System Training Services Pty"	15-Apr-08 10:03 AM	

+="CN70966-A1"	"Temp Staff Member in EA Role"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	17-Sep-07	31-Dec-07	15000.00	="PRN17037"	="JULIA ROSS RECRUITMENT LTD"	15-Apr-08 10:03 AM	

+="CN70967"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	14080.00	="PRN12579"	="Bathun Pty Ltd"	15-Apr-08 10:03 AM	

+="CN70968"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Griffith Skills Training Centre"	15-Apr-08 10:04 AM	

+="CN70969"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="TAFE NSW - ACCESS DIVISION"	15-Apr-08 10:04 AM	

+="CN70971"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	20790.00	="PRN12579"	="SYDNEY TAXI TRAINING CENTRE PTY LTD"	15-Apr-08 10:04 AM	

+="CN70972"	"Influencing and Negotiations Skills workshop"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	08-Nov-07	30-May-08	10511.40	="PRN17739"	="POLLAK LEARNING ALLIANCE PTY LTD"	15-Apr-08 10:04 AM	

+="CN70973"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	13750.00	="PRN12579"	="AVOCARE LIMITED"	15-Apr-08 10:05 AM	

+="CN70974"	"strategies to address the international recognition of Australian VET qualifications"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	08-Nov-07	30-Jun-08	181390.00	="PRN16569"	="ESCALIER CONSULTING PTY LTD"	15-Apr-08 10:05 AM	

+="CN70975"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SOURCE4 PTY LIMITED"	15-Apr-08 10:05 AM	

+="CN70970-A1"	"Provision for Business Analyst"	="Comsuper"	15-Apr-08	="Human resources services"	20-Apr-08	19-Apr-09	208320.00	=""	="Talent International"	15-Apr-08 10:06 AM	

+="CN70976"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="COLLEGE OF AUSTRALIAN TRAINING PTY"	15-Apr-08 10:06 AM	

+="CN70977"	"Financial Statement Guidelines for Australian High Higher Education Providers 2007 Reporting Period"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	31-Oct-07	31-Dec-07	29150.00	="PRN17465"	="PRICEWATERHOUSECOOPERS"	15-Apr-08 10:06 AM	

+="CN70978"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="KUNEXION PTY LTD"	15-Apr-08 10:06 AM	

+="CN70979"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="EXECUTIVE INSTITUTE OF MANAGEMENT"	15-Apr-08 10:07 AM	

+="CN70980"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="MW TRAINING CONSULTANTS"	15-Apr-08 10:07 AM	

+="CN70981"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Oct-07	31-Oct-07	131991.20	=""	="DiaMed Australia Pty Ltd"	15-Apr-08 10:08 AM	

+="CN70983"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Oct-07	31-Oct-07	23248.50	=""	="Ortho-Clinical Diagnostics"	15-Apr-08 10:14 AM	

+="CN70985"	"Public Notices for the notice inviting comment period for the South East Network"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	11265.28	="0708-1201"	="HMA Blaze Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70986"	"Upgrade the CCTV & Access Control for Office Locations in Canberra"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Security and personal safety"	10-Apr-08	17-Apr-08	19749.40	="0708-1215"	="TAC Pacific Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70987-A1"	"Cleaning services for Department of Climate Change"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Industrial Cleaning Services"	08-Apr-08	09-May-08	72923.49	="0708-1206"	="BIC Service Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70990"	"Review and update of the National Pollutant Inventory maritime manual"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	08-Apr-08	15-Apr-08	23689.00	="0708-1169"	="Pacific Air & Environment Pty Ltd"	15-Apr-08 10:16 AM	

+="CN70991"	"Nitrous oxide testing of vehicles"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	10-Jun-08	275000.00	="0708-1066"	="Orbital Australia Pty Ltd"	15-Apr-08 10:17 AM	

+="CN70989"	"Information Technology Research and Advice Services"	="Australian Electoral Commission"	15-Apr-08	="Information services"	01-Mar-08	28-Feb-09	66880.00	=""	="Gartner Australasia"	15-Apr-08 10:17 AM	

+="CN70993"	"Install Fibre Optic Cabeling at Canberra Office Locations"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	04-Apr-08	30-Apr-08	11983.40	="0708-1082"	="MRB Communications Pty Ltd"	15-Apr-08 10:17 AM	

+="CN70994"	"Workshopping the AusBIOSEC national response arrangements"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-May-08	19525.00	="0708-1122"	="Bureau of Rural Sciences"	15-Apr-08 10:17 AM	

+="CN70992"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Oct-07	31-Oct-07	256593.15	=""	="CSL Ltd"	15-Apr-08 10:18 AM	

+="CN70995"	"Prepare draft Guidelines for Onshore and Offshore Carbon and Storage"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	55440.00	="0708-979"	="Gerry Morvell"	15-Apr-08 10:18 AM	

+="CN70996"	"Production Services of Your Home Renovators Guide"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-May-08	44000.00	="0708-822"	="RMIT University - Centre for Design"	15-Apr-08 10:18 AM	

+="CN70997"	"Energy  Efficiency Fast Track Report"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	08-Apr-08	10230.00	="0708-1145"	="Pitt & Sherry Holdings Pty Ltd"	15-Apr-08 10:18 AM	

+="CN70998"	"Urgent repair of roofing to Department Building"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Building and Construction and Maintenance Services"	03-Apr-08	15-Apr-08	12000.00	="0708-1179"	="Tennant & Pratt"	15-Apr-08 10:18 AM	

+="CN70999"	"Qualitative Evaluation Services to assess National Water Quality Management Strategy workshop series"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Water resources development and oversight"	02-Apr-08	31-May-08	60469.20	="0708-427"	="URBIS JHD Pty Ltd"	15-Apr-08 10:18 AM	

+="CN71001"	"Maintenance and ehancement of the National Pollutant Inventory online system database"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	30-Jun-08	26000.00	="0708-1200"	="Dialog Information Technology"	15-Apr-08 10:19 AM	

+="CN71002"	"Reprint of Community Water Grants signs"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Printed media"	01-Apr-08	30-Apr-08	15675.00	="0708-1180"	="Screenmakers P/L"	15-Apr-08 10:19 AM	

+="CN71003"	"Creation of conservation advices for EPBC Act threatened species"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Engineering and Research and Technology Based Services"	01-Apr-08	25-Jun-08	37200.00	="0708-1143"	="Environmental Protection Agency"	15-Apr-08 10:19 AM	

+="CN71006-A1"	"Development of the National Vegetation Information Portal"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	13-Jun-08	53020.00	="0708-703"	="Parisfirst Partners Pty Ltd"	15-Apr-08 10:19 AM	

+="CN71007"	"Blackberry Charges feb"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Apr-08	17430.57	="0708-1158"	="Telstra Corporation Limited"	15-Apr-08 10:20 AM	

+="CN71008"	"Application Migration Services"	="Department of the Environment Water Heritage and the Arts"	15-Apr-08	="Computer services"	25-Mar-08	31-Mar-08	15106.50	="0708-1107"	="SRA Information Technology"	15-Apr-08 10:20 AM	

+="CN71010"	" VEHICLE REPAIRS "	="Department of Defence"	15-Apr-08	="Motor vehicles"	01-Apr-08	01-May-08	15329.55	=""	="RGM"	15-Apr-08 10:24 AM	

+="CN70982"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	18042.04	=""	="LANDROVER"	15-Apr-08 10:32 AM	

+="CN68722-A1"	"Ecological Sustainable Design Consultant"	="Australian Securities and Investments Commission"	15-Apr-08	="Project management"	29-Jan-08	31-Aug-08	71850.00	=""	="Turner & Townsend Pty Ltd"	15-Apr-08 10:34 AM	

+="CN71011"	"Sea Marker, Fluorescein"	="Defence Materiel Organisation"	15-Apr-08	="Protein chemifluorescent detection reagents or kits or substrates"	15-Apr-08	03-Jun-08	13200.00	=""	="Chemring Australia"	15-Apr-08 10:42 AM	

+="CN71012"	"Photographic services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Photographic services"	01-Jan-08	31-Jan-08	11123.20	=""	="Bearcage productions"	15-Apr-08 10:46 AM	

+="CN71013"	" Photographic services "	="Australian Competition and Consumer Commission"	15-Apr-08	="Photographic services"	01-Nov-07	30-Nov-07	20019.48	=""	="Bearcage productions"	15-Apr-08 10:54 AM	

+="CN71014"	"For the procurement of graphics desgin and printing services for the production of the accompanying resources for the Criteria for the Clinical Use of Intravenous Immunoglobulin in Australia"	="National Blood Authority"	15-Apr-08	="Published Products"	21-Dec-07	25-Feb-08	27000.00	=""	="Wilton Hanford Hanover"	15-Apr-08 11:01 AM	

+="CN71015"	"Provision of services in relation to the management of the National Reserve of Therapeutic Plasma Products"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Jan-08	31-Dec-09	539000.00	=""	="CSL Ltd"	15-Apr-08 11:08 AM	

+="CN71016-A3"	"Provision of the Australian Bleeding Disorders Registry system"	="National Blood Authority"	15-Apr-08	="Software maintenance and support"	01-Jan-08	17-Dec-11	2129611.00	=""	="Genix Ventures Pty Ltd"	15-Apr-08 11:17 AM	

+="CN71017-A3"	"Storage, mail and distribution services"	="National Blood Authority"	15-Apr-08	="Mailing services"	31-Jan-08	30-Jun-11	63587.00	=""	="National Mail and Marketing Pty Ltd"	15-Apr-08 11:23 AM	

+="CN71018"	"Provision of air travel"	="National Blood Authority"	15-Apr-08	="Commercial aeroplane travel"	08-Jan-08	14-Feb-08	13018.15	=""	="Flight Centre"	15-Apr-08 11:29 AM	

+="CN71021"	"Legal Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Legal services"	14-Jan-08	30-Jan-08	11880.00	=""	="Dale Boucher Solicitor & accountant"	15-Apr-08 11:35 AM	

+="CN69433"	"Applications Development Services"	="Department of the Prime Minister and Cabinet"	15-Apr-08	="Application programming services"	22-Feb-08	03-May-08	17050.00	=""	="APA Management"	15-Apr-08 11:35 AM	

+="CN71020"	"Legal Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Legal services"	14-Jan-08	30-Jan-08	11880.00	=""	="Dale Boucher Solicitor & accountant"	15-Apr-08 11:36 AM	

+="CN71022"	"Computer Services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Computer services"	28-Feb-08	27-Feb-09	27506.60	=""	="Funnellback Pty Ltd"	15-Apr-08 11:42 AM	

+="CN71023"	"Purchase of Imported IVIg"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Jan-08	31-Jan-08	15444.00	=""	="CSL Ltd"	15-Apr-08 11:42 AM	

+="CN71024"	"Management advisory services"	="Australian Competition and Consumer Commission"	15-Apr-08	="Management advisory services"	29-Feb-08	21-Mar-08	38135.00	="2005-31"	="Sinclair Knight Merz"	15-Apr-08 11:49 AM	

+="CN71026"	"Provision of Project Management Services"	="National Blood Authority"	15-Apr-08	="Project management"	01-Jan-08	31-Jan-08	60000.00	=""	="Naidu Consulting Services"	15-Apr-08 11:52 AM	

+="CN71028"	" The procurement is for the supply of Defined Blood Products "	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Feb-08	29-Feb-08	90076.80	=""	="CSL Ltd"	15-Apr-08 12:02 PM	

+="CN71029"	"Supply of Diagnostic Reagents"	="National Blood Authority"	15-Apr-08	="Healthcare Services"	01-Dec-07	31-Dec-07	30905.60	=""	="Ortho-Clinical Diagnostics"	15-Apr-08 12:06 PM	

+="CN71032"	"Memorial - Minor Works"	="National Capital Authority"	15-Apr-08	="Garden planting or maintenance services"	14-Mar-08	25-Apr-09	26884.00	=""	="Pyramid Corporation Pty Ltd"	15-Apr-08 12:26 PM	

+="CN71036"	"Implement PAS system in London"	="Department of Foreign Affairs and Trade"	15-Apr-08	="Computer services"	23-Nov-07	01-Mar-08	43820.75	=""	="KAZ GROUP PTY LIMITED"	15-Apr-08 01:02 PM	

+="CN71039-A2"	"Contractor Services"	="Australian Crime Commission"	15-Apr-08	="Personnel recruitment"	25-Jun-07	31-Dec-08	472491.20	=""	="Jakeman Business Solution"	15-Apr-08 01:14 PM	

+="CN71042"	"Procurement of the Consulting Services for Workshop Facilitation"	="National Blood Authority"	15-Apr-08	="Education and Training Services"	07-Apr-08	09-Apr-08	15500.00	=""	="Palm Consulting"	15-Apr-08 01:23 PM	

+="CN71043"	"PEP Training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	23-Nov-07	31-Jan-08	13200.00	="PRN17881"	="D'ARCY CONSULTING GROUP PTY LTD"	15-Apr-08 01:40 PM	

+="CN71044-A1"	"2007 Census of Non-Government Schools"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	29-Sep-07	24-Dec-07	15200.00	="PRN16564"	="WVR and BJ STEVENSON CONSULTANTS PTY"	15-Apr-08 01:40 PM	

+="CN71045"	"Development of performance framework for Education"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	22-Nov-07	30-Apr-08	67650.00	="PRN16920"	="ATELIER LEARNING SOLUTIONS PTY LTD"	15-Apr-08 01:41 PM	

+="CN71046-A1"	"Administering Industry/Business Satisfaction Survey"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	01-Oct-07	31-Dec-07	28814.50	="PRN16859"	="ACNielsen (Holdings) Pty Ltd"	15-Apr-08 01:41 PM	

+="CN71047-A1"	"Niche Marketing Pilot for Mining VET in Latin America"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	25-Oct-07	30-Jun-08	209000.00	="PRN16490"	="BOX HILL INSTITUTE OF TAFE"	15-Apr-08 01:41 PM	

+="CN71048-A1"	"Review of the Prime Minister's Prizes for Science 2007/2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	12-Nov-07	30-Jun-08	30000.00	="PRN17429"	="SCIENCE IN PUBLIC"	15-Apr-08 01:42 PM	

+="CN71049"	"Construction work at Finke Community"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	18-Oct-07	12-Dec-07	22755.00	="PRN17970"	="PETER ROPER"	15-Apr-08 01:42 PM	

+="CN71051"	"Annual Indigenous Higher Education Advisory Council Conference 21 November 2007, Adelaide"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	31-Dec-07	26373.14	="PRN16957"	="NATIONAL WINE CENTRE OF AUSTRALIA"	15-Apr-08 01:43 PM	

+="CN71052"	"Evaluation of the Enterprise Learning for the 21st Century Iniative"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	22-Nov-07	29-Jun-08	262300.00	="PRN14888"	="ATELIER LEARNING SOLUTIONS PTY LTD"	15-Apr-08 01:43 PM	

+="CN71053"	"Ebsco - 2008 renewal to bulk subscription of journals print and online"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Printed media"	28-Nov-07	30-Jun-08	49774.04	="PRN17961"	="EBSCO AUSTRALIA"	15-Apr-08 01:43 PM	

+="CN71054"	"Contract with Green and Green to supply APS 4"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	04-Feb-08	30-Jun-08	23690.10	="PRN18444"	="THE GREEN and GREEN GROUP PTY LTD"	15-Apr-08 01:46 PM	

+="CN71055"	"AEI IF08 - Speaker Fee"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	30-Jun-08	60000.00	="PRN18445"	="SPEAKERS FOR BUSINESS"	15-Apr-08 01:47 PM	

+="CN71056-A1"	"Fixed term contract to review the content of the Country Education Profile (CEP) Online"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	11-Feb-08	30-Jun-08	56073.60	="PRN18403"	="THE GREEN and GREEN GROUP PTY LTD"	15-Apr-08 01:47 PM	

+="CN71057"	"IF08 - Promo Bags - Execugifts"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	01-Feb-08	30-Jun-08	12331.00	="PRN18446"	="EXECUGIFTS"	15-Apr-08 01:47 PM	

+="CN71058"	"Provision of administrative support services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Feb-08	30-Jun-08	19535.25	="PRN18395"	="Omega Personnel Pty Ltd"	15-Apr-08 01:47 PM	

+="CN71060"	"OAKS - AEI accommodation block booking for the AEI"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Hotels and lodging and meeting facilities"	12-Feb-08	30-Jun-08	29000.00	="PRN18522"	="OAKS ON COLLINS"	15-Apr-08 01:47 PM	

+="CN71061"	"Combined event with the Carrick Institute for Learning and Teaching Preformance Fund"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	28-Mar-08	25000.00	="PRN17755"	="THE CARRICK INSTITUTE FOR LEARNING"	15-Apr-08 01:47 PM	

+="CN71062"	"Student Mobility Mapping Exercise"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	29-Feb-08	30-Jun-08	32900.00	="PRN18603"	="AIM OVERSEAS PTY LTD"	15-Apr-08 01:48 PM	

+="CN71063-A1"	"Melbourne Convention Centre (MEC) - Venue and Service Contract"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Meeting facilities"	15-Feb-08	30-Jun-08	240000.00	="PRN18370"	="MELB EXHIBITION and CONVENTION CENTRE"	15-Apr-08 01:48 PM	

+="CN71064-A2"	"Speechwriter"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	04-Feb-08	06-Feb-09	99015.08	="PRN18369"	="SAMUEL DENNIS GLOVER"	15-Apr-08 01:48 PM	

+="CN71065"	"Hire of Clifton's IT Training Facilities in Brisbane"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	10820.70	="PRN18766"	="CLIFTON OPERATIONS PTY LIMITED"	15-Apr-08 01:48 PM	

+="CN71066"	"New DEEWR Signage - National Offices"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	01-Dec-07	30-Jun-08	11561.00	="PRN18781"	="Neoplex Pty Ltd"	15-Apr-08 01:49 PM	

+="CN71067"	"Interior Deisgn - Upgrading Floor Plans for Nation"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	01-Dec-07	30-Jun-08	16236.00	="PRN18700"	="PECKVONHARTEL"	15-Apr-08 01:49 PM	

+="CN71068"	"Video capture of live DEEWR Event at National Exhibition Centre"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Telecommunications media services"	26-Feb-08	31-Mar-08	18000.00	="PRN18742"	="ALCAM FILM and VIDEO PRODUCTION P/L"	15-Apr-08 01:49 PM	

+="CN71069"	"ECA (Employment Conditions Abroad) Membership 01/12/07 to 30/11/08 and Country reports 1-20"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	01-Dec-07	30-Nov-08	26010.00	="PRN18014"	="ECA INTERNATIONAL PTY LTD"	15-Apr-08 01:49 PM	

+="CN71070"	"APS JOBS SUBSCRIPTION RENEWAL 2007-2008"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	05-Feb-08	31-Dec-08	49000.00	="PRN18465"	="AUSTRALIAN PUBLIC SERVICE COMM"	15-Apr-08 01:49 PM	

+="CN71071"	"20 Workstation for L2, 14 Mort (Backfilling fitout)"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="General building construction"	02-Feb-08	01-Aug-08	20636.00	="PRN18609"	="Schiavello Commercial Interiors"	15-Apr-08 01:50 PM	

+="CN71072-A2"	"DEEWR National Office Accommodation Project Quantity Surveyor Services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Project administration or planning"	01-Nov-07	30-Jul-10	111166.00	="PRN12258"	="WILDE AND WOOLLARD CONSULTANTS"	15-Apr-08 01:50 PM	

+="CN71073"	"Event management: staging, audio, lighting, production"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Telecommunications media services"	26-Feb-08	31-Mar-08	48000.00	="PRN18741"	="DB EVENTECH"	15-Apr-08 01:50 PM	

+="CN71074"	"DEST Corporate Event Venue Hire November 2007"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	24-Apr-07	24-Apr-08	44030.00	="PRN15647"	="INTERCONTINENTAL HOTELS GROUP (AUST"	15-Apr-08 01:50 PM	

+="CN71075-A1"	"Dev of Pre and Post Tuition Assessment Tool"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	17-Dec-07	30-Jun-08	1207943.00	="PRN16798"	="AUST COUNCIL FOR EDUC RESEARCH"	15-Apr-08 01:50 PM	

+="CN71076-A1"	"2008 National Schools Constitutional Convention"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Project administration or planning"	30-Jan-08	30-Jun-09	523120.00	="PRN16918"	="NATIONAL CURRICULUM SERVICES PTY"	15-Apr-08 01:51 PM	

+="CN71077"	"Four Points by Sheraton Darling Harbour"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Travel and Food and Lodging and Entertainment Services"	06-Feb-08	25-Mar-08	10601.08	="PRN18589"	="Four Points Hotel Sydney"	15-Apr-08 01:51 PM	

+="CN71078-A1"	"Mid-term Review for Boosting Innovation in Science"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	04-Feb-08	30-Nov-09	164896.00	="PRN16204"	="AUST COUNCIL FOR EDUC RESEARCH"	15-Apr-08 01:51 PM	

+="CN71079"	"Rad Controls"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer services"	01-Feb-08	30-Jun-08	19900.00	="PRN18504"	="TELERIK INC"	15-Apr-08 01:52 PM	

+="CN71080"	"Data Management Software"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Computer Equipment and Accessories"	14-Feb-08	30-Jun-08	62040.00	="PRN18574"	="MANAGEMENT INFORMATION PRINCIPLES"	15-Apr-08 01:52 PM	

+="CN71081"	"Office Furniture"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Office machines and their supplies and accessories"	08-Feb-08	30-Jun-08	14855.50	="PRN18560"	="IKEN COMMERCIAL INTERIORS PTY LTD"	15-Apr-08 01:52 PM	

+="CN71082-A1"	"Consultancy for provision of professional services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Business administration services"	07-Feb-08	30-Jun-08	30000.00	="PRN18518"	="Dimension Data Australia Pty Ltd"	15-Apr-08 01:53 PM	

+="CN71084"	"WELL Programme promotional DVD"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	31-Jan-08	30-Jun-08	49998.00	="PRN18201"	="IDEAS THAT WORK"	15-Apr-08 01:53 PM	

+="CN71085-A1"	"Skilling Australia - creative"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	25-Feb-08	30-Jun-08	126024.00	="PRN18657"	="THE SCHOOL OF THOUGHT"	15-Apr-08 01:54 PM	

+="CN71086"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10450.00	="PRN12579"	="H and H Accredited Training"	15-Apr-08 01:55 PM	

+="CN71087"	"Financial advice for VET (Vocational Education and Training)"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Financial and Insurance Services"	29-Nov-07	07-Mar-08	22803.00	="PRN17619"	="WALTERTURNBULL"	15-Apr-08 01:55 PM	

+="CN71088"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11660.00	="PRN12579"	="ACE - North Coast Inc"	15-Apr-08 01:55 PM	

+="CN71089"	"Recruitment of contractor to fill sick leave"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	26-Feb-08	30-Jun-08	10000.00	="PRN18712"	="SOS RECRUITMENT"	15-Apr-08 01:55 PM	

+="CN71090"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="Laranda Pty Ltd"	15-Apr-08 01:55 PM	

+="CN71091"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Maxwells Services Pty Ltd"	15-Apr-08 01:55 PM	

+="CN71092"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11000.00	="PRN12579"	="Orion Training and Performance"	15-Apr-08 01:55 PM	

+="CN71093"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="The Career Training Institute of"	15-Apr-08 01:55 PM	

+="CN71094"	"Assess the liquidity and financial viability of a school"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Financial and Insurance Services"	09-Jan-08	31-Mar-08	23925.00	="PRN18107"	="DELOITTE GROWTH SOLUTIONS PTY LTD"	15-Apr-08 01:56 PM	

+="CN71095"	"Personal Efficiency Program training"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Feb-07	15-Feb-08	13200.00	="PRN17606"	="D'ARCY CONSULTING GROUP PTY LTD"	15-Apr-08 01:56 PM	

+="CN71096"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="ME BIOCOSMETICS AUSTRALIA PTY LTD"	15-Apr-08 01:56 PM	

+="CN71097"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="LADY GOWRIE CHILD CENTRE"	15-Apr-08 01:56 PM	

+="CN71098"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12650.00	="PRN12579"	="JET Consultants Pty Ltd"	15-Apr-08 01:56 PM	

+="CN71099"	"Evaluation of the Australian Apprenticeships website"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	15-Jan-08	01-May-08	55550.00	="PRN17563"	="INSIDE STORY KNOWLEDGE MNGT P/L"	15-Apr-08 01:56 PM	

+="CN71100"	"Payment for conferencing package and venue hire"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	31-Jul-08	18456.94	="PRN18779"	="NATIONAL WINE CENTRE OF AUSTRALIA"	15-Apr-08 01:56 PM	

+="CN71101"	"Formative Evaluation of the Implementation of AQTF"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	21-Dec-07	26-Sep-08	251203.00	="PRN17896"	="KPMG"	15-Apr-08 01:56 PM	

+="CN71102-A1"	"Advice on Industry Advisory Arrangement"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Marketing and distribution"	02-Jul-07	27-Jun-08	11000.00	="PRN16426"	="ITHACA GROUP PTY LTD"	15-Apr-08 01:57 PM	

+="CN71103"	"Supports/Barriers to Science Technology Engineering and Maths engagement"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	24-Dec-07	30-May-08	83444.00	="PRN17602"	="DEAKIN UNIVERSITY"	15-Apr-08 01:57 PM	

+="CN71104"	"Provision of contract librarian services"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Human resources services"	07-Jan-08	07-Apr-08	19305.00	="PRN18246"	="INFORMED SOURCES PTY LTD"	15-Apr-08 01:58 PM	

+="CN71105"	"Mapping of additional para and associate professionals"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Engineering and Research and Technology Based Services"	15-Feb-08	30-Jun-08	63360.00	="PRN18149"	="MILES MORGAN AUSTRALIA PTY LTD"	15-Apr-08 01:58 PM	

+="CN71106"	"Provision of training for emergency wardens"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Education and Training Services"	18-Jan-08	30-Dec-10	11550.00	="PRN17897"	="TRIM EVAC PTY LTD"	15-Apr-08 01:59 PM	

+="CN71107-A2"	"Residual Legal Advice from Phillips Fox 2007/08"	="Department of Education Employment and Workplace Relations"	15-Apr-08	="Legal services"	01-Sep-07	31-Dec-08	11000.00	="PRN17291"	="PHILLIPS FOX"	15-Apr-08 02:00 PM	

+="CN71109"	"Recruitment selection process"	="Australian Crime Commission"	15-Apr-08	="Staff recruiting services"	11-Apr-08	30-Jun-08	52800.00	=""	="Ford Kelly Connection"	15-Apr-08 02:04 PM	

+="CN71111"	"Provision of Cleaning services at CRS Australia Murray Bridge premises"	="CRS Australia"	15-Apr-08	="General building and office cleaning and maintenance services"	01-Jul-04	30-Dec-07	19468.60	=""	="JE & CG Underwood"	15-Apr-08 02:08 PM	

+="CN71113"	"National Order - Stationary"	="Australian Crime Commission"	15-Apr-08	="Stationery"	01-Oct-07	30-Jun-08	30072.40	=""	="Corporate Express"	15-Apr-08 02:14 PM	

+="CN71114"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	30-Aug-07	30-Jun-08	90093.37	=""	="Select Appointments"	15-Apr-08 02:16 PM	

+="CN71115"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	30-Aug-07	30-Jun-08	23263.68	=""	="Freehills"	15-Apr-08 02:20 PM	

+="CN68763"	"Permeation tube and Permeation Ammonia Device"	="Defence Materiel Organisation"	15-Apr-08	="Permeability testing apparatus"	09-Apr-08	30-Apr-08	21978.00	=""	="BENFIELD MARKETING LTD"	15-Apr-08 02:26 PM	

+="CN71117"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	15-Apr-08	="Medical health associations"	11-Apr-08	11-May-09	16443.10	=""	="SYMBION PHARMACY SERVICES"	15-Apr-08 02:31 PM	

+="CN71116"	"Consultancy Services - Review of IT unit"	="Workplace Authority"	15-Apr-08	="Information technology consultation services"	30-Aug-07	30-Jun-08	43691.76	=""	="Intergen Solutions Pty Ltd"	15-Apr-08 02:32 PM	

+="CN70814"	"Consultancy Services - Review of IT Unit"	="Workplace Authority"	15-Apr-08	="Information technology consultation services"	28-Aug-07	30-Jun-08	33880.00	=""	="Intergen Solutions Pty Ltd"	15-Apr-08 02:34 PM	

+="CN71119"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	15-Apr-08	="Medical health associations"	02-Apr-08	05-May-08	11668.42	=""	="TYCO HEATHCARE P/L"	15-Apr-08 02:45 PM	

+="CN71120-A2"	"Provision of an Employee Assistance Program"	="Australian Taxation Office"	15-Apr-08	="Occupational health or safety services"	03-Mar-08	29-Feb-12	2488236.00	=""	="International Psychological Services Pty Ltd t/as IPS Worldwide"	15-Apr-08 02:55 PM	

+="CN71122"	"IVR Tuning and Analysis Part A"	="Australian Taxation Office"	15-Apr-08	="Computer services"	20-Mar-08	15-Apr-08	11458.00	="RFQ T&A"	="Ve Commerce"	15-Apr-08 02:56 PM	

+="CN71123"	"Administrative Services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	19999.99	="TRS06/017"	="QINETIQ CONSULTING PTY LTD"	15-Apr-08 03:05 PM	

+="CN71124"	"To review OTS - Governance & OTS Branch"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Business administration services"	02-Apr-08	08-May-08	50000.50	=""	="Thinkplace Pty Ltd"	15-Apr-08 03:06 PM	

+="CN71125"	"Venue and catering for 3rd Regional Perspectives Conference 2008."	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	08-Apr-08	30-Jun-08	15000.00	=""	="HYATT HOTEL CANBERRA"	15-Apr-08 03:06 PM	

+="CN71126"	"Venue Costs Ridges Eagle Hawk Motorcycle Scooter Safety Summit"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Motor vehicles"	10-Apr-08	30-Jun-08	16678.20	=""	="The Trustte for Australian Hotels T"	15-Apr-08 03:06 PM	

+="CN71127"	"Writing & Editing services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Graphic design"	09-Apr-08	30-Apr-08	10000.00	="TRS06/036"	="Cinden Lester Communications"	15-Apr-08 03:06 PM	

+="CN71128"	"Recruitment for APS 4 Admin Support"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	08-Apr-08	30-Jun-08	25791.15	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	15-Apr-08 03:06 PM	

+="CN71129"	"Placement Fee APS 4.3"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	10-Apr-08	10-Apr-08	10128.28	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	15-Apr-08 03:06 PM	

+="CN71130"	"Provision of conference administration services for Transport Colloquium and Regional Perspectives"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	14-Mar-08	30-Jun-08	21000.00	="TRS08/056"	="CONFERENCE LOGISTICS"	15-Apr-08 03:07 PM	

+="CN71131"	"HWMD Training round 3 ASIC"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Security and personal safety"	01-Jul-07	30-Jun-08	10098.00	="TRS05/084"	="VAST Pty Ltd Trading as Vast"	15-Apr-08 03:07 PM	

+="CN71132"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	07-Apr-08	27-Jun-08	27225.00	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	15-Apr-08 03:07 PM	

+="CN71133"	"3-month contract staff - Phil Gregory"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	09-Apr-08	30-Jun-08	34918.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	15-Apr-08 03:07 PM	

+="CN71134"	"SharePoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	77000.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	15-Apr-08 03:07 PM	

+="CN71135"	"Editing 2006/07 National Report"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Business administration services"	01-Apr-08	30-Jun-08	10989.00	="2007/0358"	="PEN ULTIMATE"	15-Apr-08 03:07 PM	

+="CN71136"	"Deliver writing skills to department Deliver writing skills to department"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Specialised educational services"	01-Jan-08	30-Jun-08	18796.49	="APS COMMISSION 2005/014"	="ETHOS CRS CONSULTING PTY LTD"	15-Apr-08 03:07 PM	

+="CN71137"	"Deliver writing skills to department Deliver writing skills training"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Specialised educational services"	01-Jan-08	30-Jun-08	18404.99	="APS COMMISSION 2005/014"	="THE TRUSTEE FOR ASPIRE LEARNING &"	15-Apr-08 03:08 PM	

+="CN71139"	"Contract Staff - Karen Heath"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Community and social services"	11-Apr-08	06-Jun-08	19800.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	15-Apr-08 03:08 PM	

+="CN71140"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Management advisory services"	08-Apr-08	30-Jun-08	60968.25	="T2004/0699"	="DIALOG PTY LTD"	15-Apr-08 03:08 PM	

+="CN71141"	"GEUS Annual Maintenance Agreement"	="Department of Infrastructure Transport Regional Development and Local Government"	15-Apr-08	="Computer services"	10-Apr-08	10-May-08	105849.59	=""	="EXCELERATED CONSULTING"	15-Apr-08 03:08 PM	

+="CN71142"	"Purchase of Qty 5 BH Link Assy's."	="Defence Materiel Organisation"	15-Apr-08	="Military rotary wing aircraft"	15-Apr-08	30-Jun-08	30684.89	=""	="SAAL"	15-Apr-08 03:11 PM	

+="CN71138"	"Procurement of desktops and monitors"	="Workplace Authority"	15-Apr-08	="Computer Equipment and Accessories"	14-Aug-07	30-Jun-08	10252.00	=""	="Dataflex"	15-Apr-08 03:17 PM	

+="CN71145"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	17-Aug-07	30-Jun-08	34849.34	=""	="Harmers Workplace Lawyers"	15-Apr-08 03:20 PM	

+="CN71146"	"FABS Panel - Actuarial Services"	="Australian Taxation Office"	15-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	10-Apr-08	14465.00	="123.02"	="KPMG"	15-Apr-08 03:22 PM	

+="CN71147"	"Recruitment Services - Legal"	="Workplace Authority"	15-Apr-08	="Recruitment services"	17-Aug-07	30-Jun-08	117770.62	=""	="Hudson Global Resources (Aust) Pty Ltd"	15-Apr-08 03:27 PM	

+="CN71148"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Mar-08	30-Jun-08	3731698.58	=""	="Hays Personnel Services (Australia)"	15-Apr-08 03:29 PM	

+="CN71149"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Aug-07	30-Jun-08	25000.00	=""	="MEGT"	15-Apr-08 03:37 PM	

+="CN71151-A3"	" Provision of Financial Services "	="Department of the Prime Minister and Cabinet"	15-Apr-08	="Public enterprises management or financial services"	05-Apr-06	04-Apr-12	2605164.00	=""	="Duesburys Nexia"	15-Apr-08 03:43 PM	

+="CN71152"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Mar-08	30-Jun-08	934857.19	=""	="Julia Ross Personnel"	15-Apr-08 03:44 PM	

+="CN71153"	"Spectrum Analyzers, Part No E4407B Opt 1"	="Defence Materiel Organisation"	15-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Mar-08	22-Apr-08	169413.77	=""	="AGILENT TECHNOLOGIES"	15-Apr-08 03:45 PM	

+="CN71155"	"motor vehicle spare parts"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	16504.18	=""	="LANDROVER"	15-Apr-08 04:03 PM	

+="CN71156"	"Recruitment Services"	="Workplace Authority"	15-Apr-08	="Recruitment services"	20-Aug-07	20-Mar-08	10220.10	=""	="Hays Personnel Services (Australia)"	15-Apr-08 04:03 PM	

+="CN71158"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	19398.98	=""	="LANDROVER"	15-Apr-08 04:06 PM	

+="CN71157"	"Employer Advisor Programme"	="Workplace Authority"	15-Apr-08	="Employee assistance programs"	22-Aug-07	30-Jun-08	69013.00	=""	="NT Working Women's Centre"	15-Apr-08 04:08 PM	

+="CN71159"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	15-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	64680.00	=""	="LANDROVER"	15-Apr-08 04:10 PM	

+="CN71164"	" Professional Legal Services "	="Workplace Authority"	15-Apr-08	="Legal services"	23-Aug-07	30-Jun-08	10629.41	=""	="Phillips Fox Lawyers"	15-Apr-08 04:37 PM	

+="CN71165"	"Professional Legal Services"	="Workplace Authority"	15-Apr-08	="Legal services"	23-Aug-07	30-Jun-08	45349.95	=""	="Minter Ellison"	15-Apr-08 04:42 PM	

+="CN71166"	"Antenna Whip,Switch,Switch Dual,Headset,Wireless remote to talk & Harness Headset"	="Defence Materiel Organisation"	16-Apr-08	="Communications Devices and Accessories"	15-Apr-08	23-Jun-08	218354.99	=""	="ERICSSON AUSTRALIA PTY LTD"	16-Apr-08 08:29 AM	

+="CN71168"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	39512.95	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:07 AM	

+="CN71170"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	18789.89	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:19 AM	

+="CN71171"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	20-Mar-08	19-Apr-08	28594.50	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 09:27 AM	

+="CN71173"	"MEDICAL CONSUMABLE ITEM"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	11-Apr-08	08-May-08	45100.00	=""	="MIDMED"	16-Apr-08 09:35 AM	

+="CN71175"	"Tracking Devices"	="Australian Crime Commission"	16-Apr-08	="Surveillance and detection equipment"	11-Apr-08	30-Jun-08	63030.00	=""	="Geonautics International"	16-Apr-08 09:54 AM	

+="CN71177"	"Satellite Vehicle Communication"	="Australian Crime Commission"	16-Apr-08	="Satellite access equipment"	01-Apr-08	01-Apr-09	545000.00	=""	="Optus Billing Service P/L"	16-Apr-08 09:57 AM	

+="CN71178"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	21-Dec-07	20-Dec-09	37500.00	=""	="Leaseplan"	16-Apr-08 10:04 AM	

+="CN71179"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	26-Oct-07	25-Oct-09	33900.00	=""	="Leaseplan"	16-Apr-08 10:10 AM	

+="CN71182"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	21-Sep-07	20-Sep-09	28600.00	=""	="Leaseplan"	16-Apr-08 10:13 AM	

+="CN71183"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	25-May-07	24-May-09	24300.00	=""	="Leasepaln"	16-Apr-08 10:17 AM	

+="CN71185"	"Radio Communication"	="Australian Crime Commission"	16-Apr-08	="Communication wiring harness"	20-Mar-08	20-Mar-09	15942.00	=""	="Australian Communication & Media Authority"	16-Apr-08 10:18 AM	

+="CN71187"	" MEDICAL CONSUMABLE "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	10857.00	=""	="MEDICAL DEVELOPMENTS INTERNATIONAL LTD"	16-Apr-08 10:25 AM	

+="CN71189"	"Provision of Support and Professional Services with Cybertru"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer services"	01-Apr-08	30-Jun-08	38766.00	=""	="CYBERTRUST AUSTRALIA PTY LTD"	16-Apr-08 10:28 AM	

+="CN71188-A1"	"FLASHLIGHT                                  RECON-M PERSONAL FLASHLIGHT, LED,       SINGLE AA BATTERY,                      WHITE/RED/BLUE/GREEN FILTERS, BLACK     HARD ANODIZED BODY, HEAVY DUTY CLIP "	="Defence Materiel Organisation"	16-Apr-08	="Flashlights"	15-Apr-08	30-Jun-08	112162.05	=""	="CROSSFIRE PTY LTD"	16-Apr-08 10:28 AM	

+="CN71190"	"Delivery of Australian Government Financial Framework course"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	01-Apr-08	30-Jun-10	10692.00	=""	="CHRIS ADAMS AND ASSOCIATES"	16-Apr-08 10:28 AM	

+="CN71191"	"Capital + Expense costs for NSW Fitout 341 George Street Syd"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Building and Construction and Maintenance Services"	01-Feb-08	31-Aug-08	3362845.20	=""	="ST HILLIERS CONTRACTING PTY LTD"	16-Apr-08 10:28 AM	

+="CN71192"	"CHAIR OF ADVISORY PANEL GEELONG INVESTMENT AND INNOVATION FU"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management advisory services"	01-Jan-08	30-Apr-08	11000.00	=""	="MORGAN, DAVID"	16-Apr-08 10:28 AM	

+="CN71193"	"EAP- Quarter Three January- March 08 C07/07657"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	01-Jul-05	30-Apr-08	21895.96	=""	="I P S WORLDWIDE"	16-Apr-08 10:28 AM	

+="CN71194"	"Contract extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-08	220000.00	=""	="BEAUCHAMP PTY LTD"	16-Apr-08 10:29 AM	

+="CN71195"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	110000.00	=""	="STEELE BUSINESS SOLUTIONS PTY. LTD."	16-Apr-08 10:29 AM	

+="CN71196"	"Contract Variation for the phase out arrangement for existin"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	142980.00	=""	="INOTEK CORPORATION PTY LTD"	16-Apr-08 10:29 AM	

+="CN71197"	"Contract Extenison to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="TOWERS BUSINESS DEVELOPMENT"	16-Apr-08 10:29 AM	

+="CN71198"	"Contract Extenison to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="CERNOTECH PTY LTD"	16-Apr-08 10:29 AM	

+="CN71199"	"Contract Extenison to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="KJW CONSULTANTS PTY LTD"	16-Apr-08 10:29 AM	

+="CN71200"	"Contract Extenison to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="ARGO PARTNERS PTY LIMITED"	16-Apr-08 10:29 AM	

+="CN71201"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="KIZMET CONSULTING GROUP PTY LTD"	16-Apr-08 10:29 AM	

+="CN71202"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="BUSINESS TREE PTY LTD"	16-Apr-08 10:30 AM	

+="CN71203"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="SPIN CONSULTING PTY LTD"	16-Apr-08 10:30 AM	

+="CN71204"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="FREEBIRD PTY LTD"	16-Apr-08 10:30 AM	

+="CN71205"	"Contract Extension to 30 June 2009"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-09	220000.00	=""	="CLASE VENTURES PTY LTD"	16-Apr-08 10:30 AM	

+="CN71206"	"DAVIDSON MEASUREMENT BLDG A GAS FLOW STD LO030408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	03-Apr-08	25-Jun-08	10337.80	=""	="DAVIDSON MEASUREMENT PTY LTD"	16-Apr-08 10:30 AM	

+="CN71207"	"10000615"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	03-Jan-08	03-Jan-08	15195.00	=""	="ADEX NIHON KEIZAI ADVERTISING CO LTD"	16-Apr-08 10:30 AM	

+="CN71208"	"GC WITH PLOT COLUMNS AND TCD VARIAN AUST"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	03-Jan-08	18-Jan-08	41657.00	=""	="VARIAN AUSTRALIA PTY LTD"	16-Apr-08 10:30 AM	

+="CN71209"	"Cool room installation-ARRC Kensington  080402"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory supplies and fixtures"	04-Apr-08	06-Jun-08	17297.00	=""	="ARCUS AUSTRALIA PTY LTD"	16-Apr-08 10:30 AM	

+="CN71210"	"TRIM Software Maintenance  08/00116"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	04-Apr-08	30-Jun-08	20078.00	=""	="ALPHAWEST SERVICES PTY LTD"	16-Apr-08 10:30 AM	

+="CN71211"	"IBM Rack Mounted KVM Switches for VANguard Server Room Reloc"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	05-Mar-08	31-Mar-08	10879.00	=""	="IBM AUST LTD"	16-Apr-08 10:31 AM	

+="CN71212"	"Cisco Network Communications Equipemt for VANguard Server Ro"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	05-Mar-08	31-Mar-08	65194.37	=""	="GETRONICS (AUSTRALIA) PTY LTD"	16-Apr-08 10:31 AM	

+="CN71213"	"Southern Controls orbit valve LO070408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	07-Apr-08	25-Jun-08	10089.20	=""	="SOUTHERN CONTROLS PTY LTD"	16-Apr-08 10:31 AM	

+="CN71214"	"LEAR SIEGLER S4000 chilled mirror-C0023307 LO040408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	07-Apr-08	25-Jun-08	26651.90	=""	="LEAR SIEGLER AUSTRALASIA P/L"	16-Apr-08 10:31 AM	

+="CN71215"	"Construction Advice - NSW Fitout 341 George Street Sydney Pr"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	30-Apr-08	14834.96	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	16-Apr-08 10:31 AM	

+="CN71216"	"Research on the Industry Economic Effects of Population Agin"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Economics"	07-Apr-08	30-Jun-08	13500.00	=""	="MONASH UNI"	16-Apr-08 10:31 AM	

+="CN71217"	"NIS Review- Consultancy  Innovation Div PO folder"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	27-Jun-08	280000.00	=""	="CUTLER and COMPANY PTY LTD"	16-Apr-08 10:31 AM	

+="CN71218"	"Catering for the Innovation Australia showcase event - 8 Apr"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Restaurants and catering"	08-Apr-08	30-Apr-08	13866.25	=""	="COMPASS GROUP (AUSTRALIA"	16-Apr-08 10:31 AM	

+="CN71219"	"HMA Blaze - Branding '08 Pre-bill for Commercial Ready"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	08-Apr-08	30-Apr-08	154126.19	=""	="HMA BLAZE PTY LTD"	16-Apr-08 10:32 AM	

+="CN71220"	"Force transducer used a s a tension transfer force std PO Ra"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	08-Jan-08	23-Jan-08	19500.00	=""	="GASSMAN TESTING AND METROLOGY GMBH"	16-Apr-08 10:32 AM	

+="CN71221"	"sUPPLY OF WAREHOUSING, DUPLICATION, PRINTING AND DISTRIBUTIO"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Marketing and distribution"	08-Mar-08	07-Mar-09	419903.66	=""	="COMPLETE MAIL and WAREHOUSING"	16-Apr-08 10:32 AM	

+="CN71222"	"Mallessons Stephen Jaques Port Melbourne fitout LO080408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Legal services"	09-Apr-08	25-Jun-08	11259.60	=""	="MALLESONS STEPHEN JAQUES"	16-Apr-08 10:32 AM	

+="CN71223"	"HMA Blaze - Yahoo and Google charges February 08 to June 08"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	09-Apr-08	31-May-08	154600.00	=""	="HMA BLAZE PTY LTD"	16-Apr-08 10:32 AM	

+="CN71224"	"Konica Photocopier HR office Lo100408"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Office machines and their supplies and accessories"	10-Apr-08	30-Apr-08	10296.00	=""	="KONICA MINOLTA BUSINESS SOLUTIONS AUST"	16-Apr-08 10:32 AM	

+="CN71225"	"Online promotions - e-bulletin, events, seminars, online inv"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Marketing and distribution"	10-Jan-08	28-Feb-09	59885.00	=""	="INSITEC"	16-Apr-08 10:32 AM	

+="CN71226"	"Temperature Controls Pty Ltd"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jan-08	31-Jan-08	14319.80	=""	="TEMPERATURE CONTROLS P/L"	16-Apr-08 10:32 AM	

+="CN71227"	"bERNESE gps sOFTWARE uNIVERSITY OF bERN sWITZERLAND ks KS100"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	11-Apr-08	30-Apr-08	13000.00	=""	="UNIVERSITY OF BERN"	16-Apr-08 10:32 AM	

+="CN71228"	"Milestone MultiPREP 41 Rotar  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	11-Apr-08	30-Jun-08	27524.75	=""	="JOHN MORRIS SCIENTIFIC P/L"	16-Apr-08 10:32 AM	

+="CN71229"	"Media Dispenser System"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	11-Apr-08	30-Jun-08	31350.00	=""	="A I SCIENTIFIC P/L"	16-Apr-08 10:33 AM	

+="CN71230"	"Recruitment of a BA for SA"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	11-Mar-08	27-Jun-08	27214.00	=""	="HUDSON GLOBAL RESOURCES (AUST)"	16-Apr-08 10:33 AM	

+="CN71231"	"2nd Review of the Australian Stem Cell Centre Inno Div PO Fo"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	19-Sep-08	35200.00	=""	="FUNDER (PROF) JOHN"	16-Apr-08 10:33 AM	

+="CN71232"	"cONTENT kEEPER lICENCE rENEWAL"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	14-Apr-08	30-Jun-08	28480.93	=""	="ZALLCOM PTY LTD"	16-Apr-08 10:33 AM	

+="CN71233"	"Autoclave  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	14-Apr-08	30-Jun-08	50976.20	=""	="BIO-STRATEGY DISTRIBUTION PTY LTD"	16-Apr-08 10:33 AM	

+="CN71235"	"2nd Review of the Australian Stem Cell Centre Innov Div PO F"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	19-Sep-08	15000.00	=""	="BIOLATRIS LTD"	16-Apr-08 10:33 AM	

+="CN71236"	"Ausindustry Innovation Australia showcase event 8 April 08 E"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Hotels and lodging and meeting facilities"	15-Apr-08	30-Apr-08	25374.80	=""	="ADELAIDE EXPO HIRE PTY LTD"	16-Apr-08 10:33 AM	

+="CN71237"	"Business Consultation Website Campaign Advertisement C07/108"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Advertising"	15-Apr-08	30-Jun-08	26650.80	=""	="HMA BLAZE PTY LTD"	16-Apr-08 10:33 AM	

+="CN71238"	"To supply and implement the ValueFinancials software package"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	15-Feb-08	30-Jun-08	24090.00	=""	="PRICE WATERHOUSE COOPERS (ACT)"	16-Apr-08 10:34 AM	

+="CN71234"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	32887.85	=""	="SMITH & NEPHEW AUSTRALIA P/L"	16-Apr-08 10:34 AM	

+="CN71239-A1"	" Engage Project Manager for Port Melbourne fitout "	="Department of Innovation Industry Science and Research"	16-Apr-08	="Building and Construction and Maintenance Services"	15-Nov-07	17-Apr-08	504680.00	=""	="MONTLAUR PROJECT SERVICES"	16-Apr-08 10:34 AM	

+="CN71240"	"Placement fee of contractor"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Legal services"	18-Feb-08	18-Feb-08	10764.00	=""	="GILLIAN BEAUMONT RECRUITMENT PTY LTD"	16-Apr-08 10:34 AM	

+="CN71241"	"Lexis Nexis subscription"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Electronic reference material"	18-Feb-08	18-Feb-08	11447.70	=""	="LEXISNEXIS"	16-Apr-08 10:34 AM	

+="CN71242"	"KONICA COPIER/PRINTER KONIKA. library LO18/03/08"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Office machines and their supplies and accessories"	18-Mar-08	12-Apr-08	14809.30	=""	="KONICA MINOLTA BUSINESS SOLUTIONS AUST"	16-Apr-08 10:34 AM	

+="CN71243"	"EVA Disk Tray  C07/07028"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	18-Mar-08	30-Apr-08	29506.41	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	16-Apr-08 10:34 AM	

+="CN71244"	"Project Management Wilde and Woollard job 0750, 08-315 ks"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	11-Apr-08	17967.33	=""	="WILDE AND WOOLLARD"	16-Apr-08 10:34 AM	

+="CN71245"	"JLLasalle Facilities Management Fees for March 2008, 2100070"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	11-Apr-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	16-Apr-08 10:34 AM	

+="CN71246"	"pURCHASE OF cISCO 11502 cONTENT sWITCH  c04/01986"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Computer Equipment and Accessories"	21-Dec-07	31-Dec-07	19236.42	=""	="DELL AUSTRALIA"	16-Apr-08 10:35 AM	

+="CN71247"	"2nd Review of the Australian Stem Cell Centre Inno Div PO Fo"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	19-Sep-08	15000.00	=""	="KLINKEN, SVEND PETER"	16-Apr-08 10:35 AM	

+="CN71248"	"Capital costs - QLDSO Fitout 100 Creek Street Brisbane Prope"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-Jun-08	330000.00	=""	="INTERIORS AUSTRALIA"	16-Apr-08 10:35 AM	

+="CN71249"	"Office Fitout works - QLD SO Level 12, 100 Creek Street Bris"	="Department of Innovation Industry Science and Research"	16-Apr-08	="General building construction"	25-Mar-08	31-Mar-08	530554.10	=""	="PREMIS SOLUTIONS PTY LTD"	16-Apr-08 10:35 AM	

+="CN71250"	"FAPAS Program 2008  na"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory supplies and fixtures"	26-Mar-08	31-Dec-08	12874.36	=""	="BIO SYS AUSTRALIA PTY LTD"	16-Apr-08 10:35 AM	

+="CN71252-A1"	"Concurrent User Licences + Questacon Annual maintenance"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	27-Feb-08	31-Dec-08	1113706.45	=""	="TECHNOLOGY ONE PTY LTD"	16-Apr-08 10:35 AM	

+="CN71253"	"Media Training for NMI Staff Econnect Communication 00002115"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	27-Mar-08	11-Apr-08	10758.00	=""	="ECONNECT COMMUNICATION"	16-Apr-08 10:35 AM	

+="CN71254-A1"	"VMware Enterprise License Agreement"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Software"	27-Mar-08	30-Apr-08	1155549.65	=""	="IBM AUST LTD"	16-Apr-08 10:36 AM	

+="CN71251"	"Translation Service"	="Australian Crime Commission"	16-Apr-08	="Written translation services"	01-Sep-07	31-Dec-07	22324.00	=""	="Auscript A'Asia P/L"	16-Apr-08 10:36 AM	

+="CN71255"	"Relocation Costs C07/07657"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Human resources services"	28-Mar-08	30-Apr-08	10131.40	=""	="QUEST JOLIMONT"	16-Apr-08 10:36 AM	

+="CN71256"	"Media Skills  2 courses CanbMelb"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Education and Training Services"	28-Mar-08	30-Apr-08	24966.00	=""	="RED RIVER"	16-Apr-08 10:36 AM	

+="CN71257"	"Duesburys Nexia Account and Tax Services Venture Capital Sec"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Accounting and auditing"	30-Jun-05	30-Jun-09	20000.00	=""	="DUESBURYS"	16-Apr-08 10:36 AM	

+="CN71258"	"Lease of EVS vehicle under Commonwealth Fleet Management Arrangement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	22-Jan-07	21-Jan-09	26600.00	=""	="Leaseplan"	16-Apr-08 10:43 AM	

+="CN71259"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	13-Feb-06	12-Sep-08	31500.00	=""	="Leaseplan"	16-Apr-08 10:46 AM	

+="CN71260"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	20-Dec-05	19-Dec-09	68100.00	=""	="Leaseplan"	16-Apr-08 10:50 AM	

+="CN71261"	"REPAIR MACK TTW ARN-36435 W/O-36249"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	27-Jun-08	13200.00	=""	="MACK VOLVO AUSTRALIA"	16-Apr-08 10:50 AM	

+="CN71263"	"MEDICAL CONSUMABLE ITEM"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	29-Apr-08	17094.00	=""	="PROTECTOR ALSAFE"	16-Apr-08 10:51 AM	

+="CN71265"	"Lease of EVS vehicle under Commonwealth Fleet Management Agreement"	="Office of Parliamentary Counsel"	16-Apr-08	="Vehicle leasing"	16-Mar-06	15-Mar-08	21600.00	=""	="Leaseplan"	16-Apr-08 10:53 AM	

+="CN71266"	"Repair to Cylinder Assy Act Linear"	="Defence Materiel Organisation"	16-Apr-08	="Military rotary wing aircraft"	16-Apr-08	25-Jun-08	13681.60	=""	="Rosebank Engineering"	16-Apr-08 10:53 AM	

+="CN71264"	"SAP Maintenance"	="Australian Crime Commission"	16-Apr-08	="Ground support test or maintenance systems"	01-Jan-08	31-Dec-08	73865.00	=""	="SAP Australian P/L"	16-Apr-08 10:55 AM	

+="CN71267"	"Form Printed: PM105, Outpatient Clinical Record. Qty 16,500."	="Defence Materiel Organisation"	16-Apr-08	="Examination booklets or forms"	28-Nov-07	21-Dec-08	19965.00	="RFQ 2680072"	="Moore Business Systems Pty Ltd"	16-Apr-08 10:56 AM	

+="CN71268-A1"	"Subscriber and Subscription Management System"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management advisory services"	01-Jul-07	30-Oct-07	49500.00	=""	="D and J GRIFFITHS PTY LTD"	16-Apr-08 11:07 AM	

+="CN71269-A1"	" Facilitation of Workshops for Energy Efficiency Opportunities "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	30-Jun-08	48910.00	=""	="GHD PTY LTD"	16-Apr-08 11:07 AM	

+="CN71270-A1"	" Energy Efficiency Opportunities Workshop Registration Management Services "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	30-Nov-07	23650.00	=""	="PROFESSIONAL CONFERENCE SERVICES"	16-Apr-08 11:07 AM	

+="CN71272-A1"	"Provide strategic advice to Compliance Unit on Risk Management"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	31-Aug-07	34400.00	=""	="ASIAN CONNECTIONS INTERNATIONAL PTY LIMITED"	16-Apr-08 11:07 AM	

+="CN71273-A1"	" Independent member of IT Sub-Committee "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management advisory services"	03-Aug-07	30-Sep-07	42900.00	=""	="MORISON CONSULTING PTY LTD"	16-Apr-08 11:07 AM	

+="CN71274"	"Facilitate Strategic Planning Workshop Global Opportunities"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	05-Sep-07	06-Sep-07	10879.00	=""	="STAMFORD PLAZA ADELAIDE"	16-Apr-08 11:08 AM	

+="CN71275-A1"	"Financial performance audits"	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	06-Aug-07	04-Sep-07	48863.45	="1003"	="AUSTRALIAN GOVERNMENT SOLICITOR"	16-Apr-08 11:08 AM	

+="CN71271-A1"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	04-Apr-08	02-May-08	13912.75	=""	="ROCHE DIAGNOSTIC AUSTRALIA"	16-Apr-08 11:08 AM	

+="CN71276-A1"	" Energy Efficiency Opportunities design and print of the energy savings measurement guide "	="Department of Resources Energy and Tourism"	16-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	06-Aug-07	25-Jun-10	40219.97	=""	="ZOO COMMUNICATIONS PTY LTD"	16-Apr-08 11:08 AM	

+="CN71277-A1"	" Information Technology equipment for enabling services "	="Department of Resources Energy and Tourism"	16-Apr-08	="Computer Equipment and Accessories"	06-Aug-07	30-Jun-08	65765.70	=""	="DELL AUSTRALIA"	16-Apr-08 11:08 AM	

+="CN71278-A1"	" Executive recruitment services "	="Department of Resources Energy and Tourism"	16-Apr-08	="Human resources services"	06-Aug-07	30-Jun-08	400353.19	=""	="KORN FERRY INTERNATIONAL"	16-Apr-08 11:08 AM	

+="CN71279-A1"	" Fringe Benefits Tax audit "	="Department of Resources Energy and Tourism"	16-Apr-08	="Accounting and auditing"	06-Aug-07	30-Jun-09	14712.00	=""	="KPMG (ACT)"	16-Apr-08 11:08 AM	

+="CN71280-A1"	"PEP Training for ICT Application Branch 8 Staff Members"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Nov-07	19624.00	=""	="INNOVATION DYNAMICS"	16-Apr-08 11:08 AM	

+="CN71281-A1"	"Migration of IBM X3650 AND X3550 series servers"	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Aug-07	23375.00	=""	="JVPIE"	16-Apr-08 11:08 AM	

+="CN71282-A1"	" APEC Energy Trade and Investment Roundtable Conference "	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	19-Jul-07	26-Jul-07	51497.65	=""	="SHANGRI-LA HOTEL"	16-Apr-08 11:09 AM	

+="CN71283-A1"	" Printing of Energy research and development 2008 report "	="Department of Resources Energy and Tourism"	16-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Jul-07	30-Jun-09	13336.40	=""	="PARAGON PRINTERS"	16-Apr-08 11:09 AM	

+="CN71284-A1"	" Legal services for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	26-Jul-07	30-Jun-08	12730.30	=""	="CLAYTON UTZ"	16-Apr-08 11:09 AM	

+="CN71285-A1"	" Energy Efficiency Opportunities venue hire and services for workshops  "	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	26-Jul-07	30-Jun-08	12999.80	=""	="MERCURE HOTEL BRISBANE"	16-Apr-08 11:09 AM	

+="CN71286-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	26-Jul-07	30-Jun-08	14999.60	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	16-Apr-08 11:09 AM	

+="CN71287-A1"	" Australian Destination Status visitor satisfaction survey "	="Department of Resources Energy and Tourism"	16-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	31-Aug-07	52338.00	=""	="ORC AUS PTY LTD"	16-Apr-08 11:09 AM	

+="CN71288-A1"	" Legal services for the National Mines Safety Legislation framework "	="Department of Resources Energy and Tourism"	16-Apr-08	="Legal services"	30-Jul-07	28-Sep-07	50000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	16-Apr-08 11:09 AM	

+="CN71289-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	30-Jul-07	30-Aug-07	11699.60	=""	="CQ FUNCTIONS"	16-Apr-08 11:09 AM	

+="CN71290-A1"	"Energy Efficiency Opportunities venue hire and services for workshops"	="Department of Resources Energy and Tourism"	16-Apr-08	="Hotels and lodging and meeting facilities"	30-Jul-07	31-Aug-07	12399.20	=""	="MERCURE HOTEL PERTH"	16-Apr-08 11:09 AM	

+="CN71294"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	19-Apr-08	24232.27	=""	="SYMBION PHARMACY SERVICES"	16-Apr-08 11:19 AM	

+="CN71295"	"Electronic Goods"	="Australian Crime Commission"	16-Apr-08	="Electronic hardware and component parts and accessories"	01-Jan-08	30-Jun-08	23313.84	=""	="Panasonic Australia P/L"	16-Apr-08 11:27 AM	

+="CN71184"	"Radio Communication"	="Australian Crime Commission"	16-Apr-08	="Communication wiring harness"	20-Mar-08	20-Mar-09	15942.00	=""	="Australian Communication & Media Authority"	16-Apr-08 11:29 AM	

+="CN71296"	" VARIOUS MEDICAL CONSUMABLE ITEMS "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	01-Apr-08	01-May-08	10879.00	=""	="SMITH & NEPHEW SURGICAL"	16-Apr-08 11:36 AM	

+="CN71297-A1"	"staff remuneration services: contract extension"	="Australian Institute of Family Studies"	16-Apr-08	="Employment"	01-Feb-09	30-Jun-09	25000.00	=""	="La Trobe University"	16-Apr-08 11:38 AM	

+="CN71298"	"REPAIRS TO ARN-36285 W/O-36313"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	27-Jun-08	12100.00	=""	="MACK VOLVO AUSTRALIA"	16-Apr-08 11:40 AM	

+="CN71299"	"Freight Charges for W/E 15/06/07 APEC related charges NA"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	17-Jul-07	27-Jul-07	21500.00	=""	="JW and LE WEBSTER"	16-Apr-08 11:56 AM	

+="CN71300"	"Seconment C07/00346"	="Department of Innovation Industry Science and Research"	16-Apr-08	="Laboratory and scientific equipment"	17-Jul-07	30-Aug-07	23650.00	=""	="JW and LE WEBSTER"	16-Apr-08 11:57 AM	

+="CN71301"	" PHARMACEUTICAL ITEM "	="Defence Materiel Organisation"	16-Apr-08	="Medical health associations"	20-Mar-08	15-Apr-08	35750.00	=""	="GLAXOSMITHKLINE AUSTRALIA P/L"	16-Apr-08 12:03 PM	

+="CN71304-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-Apr-08	="Motor vehicles"	16-Apr-08	16-May-08	12400.30	=""	="MICKS AUTOS"	16-Apr-08 12:48 PM	

+="CN71306"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	16-Apr-08	="Community and social services"	01-Jul-07	30-Jun-08	25941.85	=""	="Iwantja Community Inc"	16-Apr-08 01:19 PM	

+="CN71308"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Employee assistance programs"	12-Sep-07	30-Jun-08	33280.50	=""	="Blake Dawson Waldron"	16-Apr-08 01:34 PM	

+="CN71309-A1"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	12-Sep-07	30-Jun-08	34424.51	=""	="Corrs Chambers Westgarth"	16-Apr-08 01:38 PM	

+="CN71310"	"Recruitment Services"	="Workplace Authority"	16-Apr-08	="Recruitment services"	12-Mar-08	30-Jun-08	45000.00	=""	="Taylor Root"	16-Apr-08 01:42 PM	

+="CN71311"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	13-Sep-07	30-Jun-08	26000.00	=""	="Australian Government Solicitor (ACT)"	16-Apr-08 01:53 PM	

+="CN71316"	"Provision of suppling Maxwell Media DLT Data Tapes"	="Australian Federal Police"	16-Apr-08	="Electronic media or data duplicating equipment"	30-Aug-07	30-Jul-08	21511.60	="RFT 6/2003"	="Dimension Data Australia Pty Limited"	16-Apr-08 02:26 PM	

+="CN71315"	"Employer Advisor Programme"	="Workplace Authority"	16-Apr-08	="Work related organisations"	13-Sep-07	30-Jun-08	39173.64	=""	="clayton Utz"	16-Apr-08 02:30 PM	

+="CN71317"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	16-Apr-08	="Aircraft spars"	14-Apr-08	30-Apr-08	15458.52	=""	="MILSPEC SERVICES PTY LTD"	16-Apr-08 02:58 PM	

+="CN71319"	"Provision of Project Management Training courses"	="Australian Federal Police"	16-Apr-08	="Project management"	28-Jan-08	30-Nov-08	58822.50	="APS Commission 2005/014"	="PALM Consulting Group Pty Ltd"	16-Apr-08 03:20 PM	

+="CN71320"	"FLOAT BAG INFLATION LINE ASSEMBLIES"	="Defence Materiel Organisation"	16-Apr-08	="Endoscopic dilators or inflation devices or related products"	16-Apr-08	05-Jun-08	22012.68	=""	="RFD AUSTRALIA P/L"	16-Apr-08 03:24 PM	

+="CN71321"	"Legal services - counsel"	="Australian Securities and Investments Commission"	16-Apr-08	="Legal services"	27-Jul-07	30-Jun-08	45000.00	=""	="Mr Peter Murdoch QC"	16-Apr-08 03:49 PM	

+="CN71323"	"SHEAR PINS"	="Defence Materiel Organisation"	16-Apr-08	="Shear pins"	21-Apr-08	16-Jul-08	15448.00	=""	="PRODUCTION PARTS P/L"	16-Apr-08 03:54 PM	

+="CN71325"	"Legal services - counsel"	="Australian Securities and Investments Commission"	16-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	369600.00	=""	="Mr Norman J O'Bryan"	16-Apr-08 04:06 PM	

+="CN71324"	"SHEAR PINS"	="Defence Materiel Organisation"	16-Apr-08	="Shear pins"	16-Apr-08	16-Jul-08	15448.00	=""	="PRODUCTION PARTS P/L"	16-Apr-08 04:10 PM	

+="CN71326"	"Seat Assy - ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	20-Jul-08	19092.70	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:10 PM	

+="CN71327"	"Equipment Hire"	="National Capital Authority"	16-Apr-08	="Promotional services"	09-Nov-07	16-Nov-07	16268.90	=""	="Kennards Events Pty Ltd"	16-Apr-08 04:10 PM	

+="CN71328"	"Bracket Mounting   ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	21-Aug-08	10813.57	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:13 PM	

+="CN71329"	"legal services"	="Australian Securities and Investments Commission"	16-Apr-08	="Legal services"	21-Nov-07	30-Jun-08	10199.77	=""	="Mr Craig Slater"	16-Apr-08 04:16 PM	

+="CN71330"	"Bar Armour Modules ASLAV"	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	21-Aug-08	11282.96	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:18 PM	

+="CN71331"	"Engagement of Business Analyst"	="CrimTrac"	16-Apr-08	="Temporary information technology software developers"	26-Mar-08	26-Sep-08	118000.00	="RFQ42"	="Cordelta Pty Ltd"	16-Apr-08 04:18 PM	

+="CN71332"	"ANPR Business Benifts Workshop"	="CrimTrac"	16-Apr-08	="Conference centres"	07-Mar-08	30-Apr-08	15000.00	=""	="Hyatt Regency Adelaide"	16-Apr-08 04:18 PM	

+="CN71333"	"Administrative support Temp"	="CrimTrac"	16-Apr-08	="Temporary clerical or administrative assistance"	05-Mar-08	30-Apr-08	14186.00	=""	="Wizard Personnel  Office Services"	16-Apr-08 04:18 PM	

+="CN71336-A1"	"Intellectual Property review"	="CrimTrac"	16-Apr-08	="Business intelligence consulting services"	31-Mar-08	30-Apr-08	55000.00	=""	="Spruson  Ferguson Lawyers"	16-Apr-08 04:19 PM	

+="CN71337"	"Maintenance Renewal and licences"	="CrimTrac"	16-Apr-08	="Software maintenance and support"	17-Mar-08	30-Apr-08	15470.00	=""	="Embarcadero Technologies"	16-Apr-08 04:19 PM	

+="CN71338"	"Test Manager - MNPP Project"	="CrimTrac"	16-Apr-08	="Temporary technician staffing needs"	10-Aug-07	31-Dec-07	234520.00	="03/2006"	="Talent International ACT Pty Ltd"	16-Apr-08 04:19 PM	

+="CN71339"	"Studio Enterprise package"	="CrimTrac"	16-Apr-08	="Software maintenance and support"	14-Mar-08	31-Mar-08	21043.20	=""	="Embarcadero Technologies"	16-Apr-08 04:19 PM	

+="CN71340"	"Amendment No.1 - Reference CN 27761"	="CrimTrac"	16-Apr-08	="Temporary technician staffing needs"	14-Mar-07	14-Mar-08	120000.00	=""	="Sensory7"	16-Apr-08 04:19 PM	

+="CN71341"	"Box Accessories Stowage  ASLAV "	="Department of Defence"	16-Apr-08	="Armoured fighting vehicles"	16-Apr-08	26-Aug-08	51492.76	=""	="GENERAL DYNAMICS LAND SYSTEMS"	16-Apr-08 04:21 PM	

+="CN71348"	"State Funeral"	="Department of the Prime Minister and Cabinet"	17-Apr-08	="Funeral services"	14-Mar-08	14-Mar-08	15509.00	=""	="Peter Elberg Funerals"	17-Apr-08 09:23 AM	

+="CN71350"	"Supply of VOIP telephones & associated equipment"	="Australian Federal Police"	17-Apr-08	="Special purpose telephones"	08-Dec-05	07-Dec-08	247254.32	="29-2005"	="Avaya Australia Pty Ltd"	17-Apr-08 09:40 AM	

+="CN71353"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Apr-08	="Aircraft spars"	17-Apr-08	27-Nov-08	29175.30	=""	="MILSPEC SERVICES PTY LTD"	17-Apr-08 10:01 AM	

+="CN71354"	"SAN Storage Aray - AEGIS Project"	="Australian Federal Police"	17-Apr-08	="Computer servers"	30-Aug-07	30-Jul-08	281637.93	="6/2003"	="Dimension Data Australia Pty Limited"	17-Apr-08 10:04 AM	

+="CN71356"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Apr-08	="Aircraft spars"	17-Apr-08	18-Dec-08	14705.35	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Apr-08 10:12 AM	

+="CN71357"	"Purchase 20 x Disks NSN 4820-01-107-1810"	="Defence Materiel Organisation"	17-Apr-08	="Military rotary wing aircraft"	17-Apr-08	19-Jun-09	13640.00	=""	="H I Fraser Pty Ltd"	17-Apr-08 10:20 AM	

+="CN71358"	"Water, Drinking, Emergency"	="Defence Materiel Organisation"	17-Apr-08	="Water bags"	16-Apr-08	09-Jul-08	38764.00	="CC1UK2"	="HELLWEG INTERNATIONAL PTY LTD"	17-Apr-08 10:22 AM	

+="CN71359"	" Aircraft Spares "	="Defence Materiel Organisation"	17-Apr-08	="Aircraft"	17-Apr-08	08-Dec-08	70612.87	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Apr-08 10:31 AM	

+="CN71360"	"REPAIR AND OH OF BH MAIN ROTOR BLADE."	="Defence Materiel Organisation"	17-Apr-08	="Military rotary wing aircraft"	17-Apr-08	30-Jun-08	105549.64	=""	="SAAL"	17-Apr-08 10:31 AM	

+="CN71363"	"Recruitment Services"	="Workplace Authority"	17-Apr-08	="Recruitment services"	12-Mar-08	30-Jun-08	60000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	17-Apr-08 10:55 AM	

+="CN71364"	"Provision for Financial Resources"	="Comsuper"	17-Apr-08	="Business and corporate management consultation services"	19-Mar-08	30-Apr-08	30000.00	=""	="Analytics Group"	17-Apr-08 10:55 AM	

+="CN71365-A1"	"Provision of Architectural Services"	="Department of Parliamentary Services"	17-Apr-08	="Architectural services"	11-Apr-08	31-Jan-10	328893.51	=""	="LFA (ACT) Pty Ltd"	17-Apr-08 10:57 AM	

+="CN71366"	"Ceiling Mount LCD installation in committee room"	="Department of Parliamentary Services"	17-Apr-08	="Building and Construction and Maintenance Services"	10-Apr-08	05-May-08	11686.40	=""	="GPT Designs Pty Ltd"	17-Apr-08 10:57 AM	

+="CN71368"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	08-Apr-08	30-Apr-08	19735.00	=""	="Stills Gallery"	17-Apr-08 10:58 AM	

+="CN71369"	"Provision of security training services"	="Department of Parliamentary Services"	17-Apr-08	="In service training and manpower development"	07-Apr-08	30-Apr-08	10033.10	=""	="Ulong Pty Ltd"	17-Apr-08 10:58 AM	

+="CN71370"	"Provision of security training services"	="Department of Parliamentary Services"	17-Apr-08	="In service training and manpower development"	07-Apr-08	30-Apr-08	11330.00	=""	="Xtek Limited"	17-Apr-08 10:58 AM	

+="CN71371"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	07-Apr-08	30-Apr-08	17639.71	=""	="Lauraine Diggins Fine Art Pty Ltd"	17-Apr-08 10:58 AM	

+="CN71372"	"Supply of computer servers"	="Department of Parliamentary Services"	17-Apr-08	="Computer servers"	04-Apr-08	30-Apr-08	36687.20	=""	="Dell Australia P/L"	17-Apr-08 10:59 AM	

+="CN71373"	"Supply of Broadcasting equipment"	="Department of Parliamentary Services"	17-Apr-08	="Components for information technology or broadcasting or telecommunications"	04-Apr-08	31-May-08	34145.10	=""	="TekMark Australia P/L"	17-Apr-08 10:59 AM	

+="CN71374"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	03-Apr-08	30-Apr-08	11090.01	=""	="Nomad Art Productions"	17-Apr-08 10:59 AM	

+="CN71375"	"Provision of Mechanical Engineering services"	="Department of Parliamentary Services"	17-Apr-08	="Temporary engineering services"	02-Apr-08	30-Apr-08	10492.90	=""	="Chillmech Services (Australia)"	17-Apr-08 10:59 AM	

+="CN71376"	"Supply of Desktop computers & monitors (Standing Offer DPS07041)"	="Department of Parliamentary Services"	17-Apr-08	="Desktop computers"	02-Apr-08	30-Apr-08	30519.50	=""	="Dell Australia P/L"	17-Apr-08 10:59 AM	

+="CN71377"	"Supply of paintings"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	02-Apr-08	30-Apr-08	10163.76	=""	="Impressions on Paper Gallery"	17-Apr-08 10:59 AM	

+="CN71378"	"Supply of paintings"	="Department of Parliamentary Services"	17-Apr-08	="Visual art services"	01-Apr-08	30-Apr-08	14399.21	=""	="Hogarth Galleries P/L"	17-Apr-08 11:00 AM	

+="CN71379"	"Provision of Duct work maintenance and rehabilitation services (Contract JH00057M)"	="Department of Parliamentary Services"	17-Apr-08	="Electromechanical services"	01-Apr-08	30-Apr-08	16500.00	=""	="Chubb Fire Safety Limited"	17-Apr-08 11:00 AM	

+="CN71380"	"Supply of IT Hardware and Software"	="Department of Parliamentary Services"	17-Apr-08	="Electronic hardware and component parts and accessories"	31-Mar-08	30-Apr-08	69642.92	=""	="Cerulean Solutions Ltd"	17-Apr-08 11:00 AM	

+="CN71381"	"Provision of Cabling and associated Services Contract (DPS04198 )"	="Department of Parliamentary Services"	17-Apr-08	="Building and Construction and Maintenance Services"	08-Apr-08	05-May-08	22000.00	=""	="Secom Technical Services P/L"	17-Apr-08 11:00 AM	

+="CN71382"	"Supply of Stationary and office products Contract (DPS04197)"	="Department of Parliamentary Services"	17-Apr-08	="Office supplies"	10-Apr-08	10-Apr-08	10557.34	=""	="Corporate Express"	17-Apr-08 11:00 AM	

+="CN71383"	"Provision of financial advice and assessments in relation to catering services at APH"	="Department of Parliamentary Services"	17-Apr-08	="Government finance services"	07-Apr-08	30-Jun-08	14696.00	="DPS08040"	="Grey Advantage Consulting P/L"	17-Apr-08 11:00 AM	

+="CN71384"	"Provision of Internet access services"	="Department of Parliamentary Services"	17-Apr-08	="Internet services"	11-Apr-08	27-Feb-11	57640.00	="DPS06088"	="Optus Billing Services Pty Ltd"	17-Apr-08 11:00 AM	

+="CN71385"	"Subscription to software and data services"	="Department of Parliamentary Services"	17-Apr-08	="Electronic publications and music"	06-Jun-07	31-May-08	15072.75	=""	="THOMSON FINANCIAL PTY LTD"	17-Apr-08 11:01 AM	

+="CN71154"	"Provision of Secure Gateway Services"	="Australian Public Service Commission"	17-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	31-Mar-11	276000.00	=""	="Macquarie Telecom"	17-Apr-08 11:01 AM	

+="CN71391"	"Centrifugal Fan and Filter Elements"	="Defence Materiel Organisation"	17-Apr-08	="Plumbing and heating and air conditioning"	03-Mar-08	05-May-08	18458.31	="G8923"	="Air International Transit Pty Ltd"	17-Apr-08 11:11 AM	

+="CN71403-A1"	"Legislative drafting services"	="Office of Parliamentary Counsel"	17-Apr-08	="Bill drafting services"	01-Apr-07	30-Sep-07	25000.00	=""	="Simone Collins"	17-Apr-08 11:59 AM	

+="CN71406-A1"	"Internal Audit services - piggybank arrangement under Attorney-General's Department tender process"	="Office of Parliamentary Counsel"	17-Apr-08	="Internal audits"	01-Aug-07	31-Jul-11	59000.00	=""	="Deloitte Touche Tohmatsu"	17-Apr-08 12:19 PM	

+="CN71407-A2"	" Provision of Security Clearance Processing "	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	15-Jan-08	23-Jun-08	143000.00	="DFAT06/210066"	="BARRINGTON CORPORATE RISK PTY LIMITED"	17-Apr-08 12:34 PM	

+="CN71404-A2"	"Maintenance agreement for PABX hardware/software"	="Office of Parliamentary Counsel"	17-Apr-08	="Software or hardware engineering"	12-Aug-07	11-Aug-11	25968.00	=""	="NECare"	17-Apr-08 12:34 PM	

+="CN71410"	" PROVISION OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	12457.21	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	17-Apr-08 01:28 PM	

+="CN71418-A1"	" Provision of Security Clearance Processing "	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	28-Sep-07	30-Jun-08	21000.00	="DFAT06/210066"	="BARRINGTON CORPORATE RISK LTY LTD"	17-Apr-08 01:55 PM	

+="CN71422"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	23288.92	=""	="LAND ROVER AUSTRALIA"	17-Apr-08 02:05 PM	

+="CN71427"	"Technology Assessment JADE Technology for Spectrum Program"	="Australian Federal Police"	17-Apr-08	="Diagnostic assessment and exam products for general use"	01-Nov-07	30-Jan-08	41372.32	=""	="Booz Allen Hamilton (Australia) Ldt"	17-Apr-08 02:13 PM	

+="CN71429"	" Provision of Security Clearance Processing "	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	04-Sep-07	30-Jun-08	22000.00	="SON71424"	="THE TRUSTEE FOR MPS"	17-Apr-08 02:17 PM	

+="CN71430"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Apr-08	="Motor vehicles"	17-Apr-08	01-May-08	17078.76	=""	="LAND ROVER AUSTRALIA"	17-Apr-08 02:29 PM	

+="CN71431"	"Development and Learning Materials"	="Child Support Agency"	17-Apr-08	="Vocational training"	01-Apr-08	30-Jun-08	43560.00	=""	="Changecorp"	17-Apr-08 02:42 PM	

+="CN71447"	"Purchase of Artwork"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Socio cultural services"	14-Apr-08	14-Apr-08	18000.00	="0708-1280"	="Jan Murphy Gallery"	17-Apr-08 03:20 PM	

+="CN71449"	"Purchase Of Artworks"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Socio cultural services"	04-Apr-08	04-Apr-08	12300.00	="0708-1281"	="Melbourne Art Rooms"	17-Apr-08 03:33 PM	

+="CN71456"	"Provision of Applications Development Support Services"	="Australian Federal Police"	17-Apr-08	="Project management"	28-Apr-04	07-Mar-08	523796.25	=""	="Peoplebank Australia Ltd"	17-Apr-08 03:37 PM	

+="CN71450"	"COVERALLS,NUCLEAR,BIOLOGICAL AND CHEMICAL CONTAMINANTS PROTECTIVE COVERALLS, VARIOUS SIZES"	="Defence Materiel Organisation"	17-Apr-08	="Protective coveralls"	02-Apr-08	23-Jun-08	117645.00	=""	="AUSTRALIAN DEFENCE APPAREL"	17-Apr-08 03:39 PM	

+="CN71460"	"Accommodation package for Govt Business Conference"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	11-Apr-08	11-Apr-08	13522.99	=""	="Novotel Brighton Beach"	17-Apr-08 03:42 PM	

+="CN71461-A1"	"Review of APS Accountability and Performance Framework"	="Australian Public Service Commission"	17-Apr-08	="Information services"	08-Apr-08	30-Nov-08	60500.00	=""	="LECG LTD"	17-Apr-08 03:42 PM	

+="CN71462"	"Coaching Services"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	08-Apr-08	10-Apr-08	22322.30	="APS COMMISSION 2005/014"	="Dominic Downie & Associates"	17-Apr-08 03:42 PM	

+="CN71463"	"STEP IELRP to ATO"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	07-Apr-08	30-Jun-09	24640.00	=""	="Australian Taxation Office"	17-Apr-08 03:43 PM	

+="CN71464"	"STEP IELRP to ATO"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	04-Apr-08	30-Sep-08	24640.00	=""	="Australian Taxation Office"	17-Apr-08 03:43 PM	

+="CN71465"	"Upgrading Capability to the Enterprise"	="Australian Public Service Commission"	17-Apr-08	="Software"	19-Mar-08	31-Mar-08	60500.00	=""	="OATC P/L t/a DPM Consulting"	17-Apr-08 03:43 PM	

+="CN71466"	"Certificate III in government"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	14-Mar-08	31-Mar-08	27198.05	=""	="UNE Partnerships Pty Ltd"	17-Apr-08 03:43 PM	

+="CN71467"	"Placement costs under Horizons Programme"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	12-Mar-08	02-Apr-08	16500.00	=""	="Australian Customs Service"	17-Apr-08 03:43 PM	

+="CN71468"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	17-Apr-08	="Marketing and distribution"	12-Mar-08	12-Mar-08	18590.00	=""	="Hotel Realm Pty Ltd"	17-Apr-08 03:43 PM	

+="CN71469"	"Contractor"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	12-Mar-08	30-May-08	15291.38	=""	="Frontier Group Australia"	17-Apr-08 03:43 PM	

+="CN71470"	"Accommodation"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	05-Mar-08	13-Mar-08	11581.00	=""	="Quality Hotel Woden"	17-Apr-08 03:43 PM	

+="CN71471"	"Software Support"	="Australian Public Service Commission"	17-Apr-08	="Computer services"	05-Mar-08	28-Aug-08	90200.00	=""	="Innovative Business Computing"	17-Apr-08 03:44 PM	

+="CN71472"	"Temporary  Staff"	="Australian Public Service Commission"	17-Apr-08	="Human resources services"	27-Feb-08	04-Apr-08	14129.07	=""	="Kowalski Recruitment Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71473"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	27-Feb-08	27-Feb-08	25300.00	="APS COMMISSION 2005/014"	="CIT Solutions"	17-Apr-08 03:44 PM	

+="CN71474"	"Delivery of Human Resource Capability Development Programme"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	08-Feb-08	05-Sep-08	61556.02	="APS COMMISSION 2005/014"	="Dominic Downie & Associates"	17-Apr-08 03:44 PM	

+="CN71475"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	17-Apr-08	="Travel and Food and Lodging and Entertainment Services"	08-Feb-08	04-Apr-08	26518.00	=""	="Mirvac Hotel Investment Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71476"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	06-Feb-08	06-Feb-08	12379.70	="APS COMMISSION 2005/014"	="Timmins Stewart Pty Ltd"	17-Apr-08 03:44 PM	

+="CN71477"	"Evaluation of the APS Employment and Capability Strategy for Aboriginal & Torres Strait Islander"	="Australian Public Service Commission"	17-Apr-08	="Business administration services"	01-Feb-08	08-Feb-08	31019.99	=""	="Dominic Downie & Associates"	17-Apr-08 03:45 PM	

+="CN71478"	"Fit out Sydney Office"	="Australian Public Service Commission"	17-Apr-08	="Building construction and support and maintenance and repair services"	22-Nov-07	07-Mar-08	51487.54	=""	="CBD Projects"	17-Apr-08 03:45 PM	

+="CN71479"	"Venue & Catering for SES Programmes"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	13-Mar-08	30-Jun-08	12100.00	=""	="Peppers Manor House"	17-Apr-08 03:45 PM	

+="CN71480"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	19-Dec-07	30-Jun-08	369086.10	="APS COMMISSION 2005/014"	="Saville and Holdsworth Australia"	17-Apr-08 03:45 PM	

+="CN71481"	"Delivery of Training"	="Australian Public Service Commission"	17-Apr-08	="Education and Training Services"	07-Nov-07	30-Jun-08	28612.88	="APS COMMISSION 2005/014"	="People and Strategy (ACT) Pty Ltd"	17-Apr-08 03:45 PM	

+="CN71483"	" Commonwealth/State cost sharing agreement  Taskforce campaign advertising "	="Australian Competition and Consumer Commission"	17-Apr-08	="Advertising"	24-Feb-08	02-Mar-08	114810.84	=""	="HMA Blaze"	17-Apr-08 03:47 PM	

+="CN71488-A1"	"Additional costs to previosuly advertised contract CN49385 - total now $51,540.  Stationery Items"	="Department of the Prime Minister and Cabinet"	17-Apr-08	="Stationery"	19-Jun-07	18-Jun-09	20140.00	=""	="CANPRINT COMMUNICATIONS Pty Ltd"	17-Apr-08 03:59 PM	

+="CN71489"	"Motor vehicle Parts."	="Department of Defence"	17-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	26846.37	=""	="Mercedes Benz Aust. Pacific"	17-Apr-08 04:12 PM	

+="CN71494-A2"	"Project Management - Workplace Authority Leases"	="Workplace Authority"	17-Apr-08	="Project management"	19-Sep-07	30-Sep-08	14442.56	=""	="APP Corporation"	17-Apr-08 04:35 PM	

+="CN71495"	"Services Relating to Consular Training Courses"	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	08-Jul-05	08-Jul-08	365629.84	="05/120331"	="THE GREEN & GREEN GROUP PTY LIMITED"	17-Apr-08 04:37 PM	

+="CN71496"	"Conduct a Survey on Staff Attitudes and Perceptions to Security"	="Department of Foreign Affairs and Trade"	17-Apr-08	="Business administration services"	19-Oct-07	09-Nov-07	14300.00	=""	="WORKPLACE RESEARCH ASSOCIATES PTY LTD"	17-Apr-08 04:38 PM	

+="CN71497"	"Provision of telecommunications services"	="Department of Foreign Affairs and Trade"	17-Apr-08	="Telecommunications media services"	19-Jan-07	19-Jan-09	20276.00	=""	="TRANSACT CAPITAL COMMUNICATIONS PTY LTD"	17-Apr-08 04:38 PM	

+="CN71498"	"Fleet Vehicle Expenses"	="Workplace Authority"	17-Apr-08	="Fleet management services"	20-Sep-07	30-Jun-08	39240.00	=""	="Leaseplan Australia Ltd"	17-Apr-08 04:39 PM	

+="CN71499"	"Fleet Vehicle Expenses"	="Workplace Authority"	17-Apr-08	="Fleet management services"	20-Sep-07	30-Jun-08	33480.00	=""	="Leaseplan Australia Ltd"	17-Apr-08 04:41 PM	

+="CN71500-A1"	"Study to Provide Estimated East Coast Population Numbers for Grey Nurse Sharks"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	01-Jun-08	130000.00	="0708-029"	="The Ecology Lab Pty Ltd"	17-Apr-08 05:54 PM	

+="CN71501"	"Development of Methodology for the Estimation of Greenhouse Gas Emissions and Sinks for Energy Subsector"	="Department of the Environment Water Heritage and the Arts"	17-Apr-08	="Methodology and analysis"	29-May-07	01-Oct-07	34958.00	="0607-552"	="Energy Strategies Pty Ltd T/a Energy Partners"	17-Apr-08 06:15 PM	

+="CN71505"	"motor vehicle spare parts"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	21133.87	=""	="LANDROVER"	18-Apr-08 09:33 AM	

+="CN71506"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	22462.90	=""	="LANDROVER"	18-Apr-08 09:38 AM	

+="CN71514"	" Legal services - counsel "	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	14-Apr-08	30-Jun-08	55000.00	=""	="Ms Kerri Judd"	18-Apr-08 10:13 AM	

+="CN71516"	"Extension of Legal services"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	22-Feb-08	30-Jun-08	10000.00	=""	="John V. Gooley"	18-Apr-08 10:30 AM	

+="CN71515-A5"	"Forensic accounting services"	="Australian Securities and Investments Commission"	18-Apr-08	="Accounting services"	20-Mar-08	31-Dec-08	424270.00	=""	="Axiom Forensics"	18-Apr-08 10:42 AM	

+="CN71521"	"Motor Vehicle Leases"	="Workplace Authority"	18-Apr-08	="Fleet management services"	21-Sep-07	30-Jun-08	143000.00	=""	="Leaseplan Australia Ltd"	18-Apr-08 10:57 AM	

+="CN71523"	" DESICCANT CONTAINER "	="Defence Materiel Organisation"	18-Apr-08	="Desiccants"	16-Apr-08	02-Jul-08	18150.00	=""	="A & D INTERNATIONAL PTY LTD"	18-Apr-08 10:59 AM	

+="CN71524"	"Employer Advisor Programme"	="Workplace Authority"	18-Apr-08	="Work related organisations"	21-Sep-07	30-Jun-08	75883.50	=""	="National Retail Association Ltd"	18-Apr-08 11:04 AM	

+="CN71545-A1"	"Provision of Fitout works to the Brisbane unit of CRS Australia"	="CRS Australia"	18-Apr-08	="Building and Construction and Maintenance Services"	19-Apr-08	20-Apr-08	29942.00	=""	="Latin Interiors Pty Ltd"	18-Apr-08 12:02 PM	

+="CN71546"	"FAIRLEAD ASSEMBLY - ASLAV"	="Department of Defence"	18-Apr-08	="Armoured fighting vehicles"	17-Apr-08	10-Jan-09	15889.76	=""	="GENERAL DYNAMICS LAND SYSTEMS"	18-Apr-08 12:05 PM	

+="CN71548"	"Operating Lease for IT Equipment (MAR08)"	="Department of Foreign Affairs and Trade"	18-Apr-08	="Computer Equipment and Accessories"	18-Apr-08	17-Apr-11	757108.56	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	18-Apr-08 12:46 PM	

+="CN71555"	"Personal Insect Repellant"	="Defence Materiel Organisation"	18-Apr-08	="Disinsectisation services"	18-Apr-08	07-Sep-08	38500.00	=""	="Colbar Q.S.R Pty Ltd"	18-Apr-08 01:27 PM	

+="CN71556"	"Legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	237000.00	=""	="Dr Hanak"	18-Apr-08 01:32 PM	

+="CN71557"	"Suspenders Individual Equipment Belt"	="Defence Materiel Organisation"	18-Apr-08	="Belts or suspenders"	18-Apr-08	11-Jul-08	55176.00	="CC1UNF"	="Gee Yan Industry Pty Ltd"	18-Apr-08 01:36 PM	

+="CN71559"	" VEHICLE REPAIRS "	="Department of Defence"	18-Apr-08	="Motor vehicles"	16-Apr-08	16-May-08	63461.89	=""	="RGM"	18-Apr-08 01:44 PM	

+="CN71560-A1"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	18-Apr-08	18-May-08	17926.15	=""	="MICKS AUTOS"	18-Apr-08 01:47 PM	

+="CN71561"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	17-Apr-08	17-May-08	11039.60	=""	="MICKS AUTOS"	18-Apr-08 01:50 PM	

+="CN71562"	"contract for the provision of Information Technology Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Computer servers"	10-Mar-08	20-Jun-08	48279.00	=""	="Aurec"	18-Apr-08 01:54 PM	

+="CN71563"	"Assistance with publication of Portfolio Budget Statement"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Apr-08	13-May-08	44000.00	=""	="AA Services Pty Limited"	18-Apr-08 01:57 PM	

+="CN71564"	"Assessment of requirements,functional analysis and solution design for ARC database"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Apr-08	31-May-08	19008.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71565"	"Helicopter Charter For Locust Survey"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	05-Apr-08	11-Apr-08	27500.00	=""	="Heli-Aust Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71566"	"Blackberry access and usage to 19 Feb 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	19-Jan-08	19-Feb-08	14313.09	=""	="Telstra Corporation Ltd"	18-Apr-08 01:57 PM	

+="CN71567"	"Marcus Clarke call costs 15/2/08 - 14/3/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	15-Feb-08	14-Mar-08	22665.50	=""	="AAPT Ltd"	18-Apr-08 01:57 PM	

+="CN71569-A1"	"Member of Dairy Quota Review Panel 2008, tasked to review the appropriateness, effectiveness and efficiency of current US & EU dairy quota administrative arrangements and identify areas where improvements to the quota management arrangements could be made."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	19-Mar-08	31-Jul-08	39265.29	=""	="David Harris"	18-Apr-08 01:58 PM	

+="CN71570"	"Press Advertising - 2009 Graduate Development Program in national and regional newspapers."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Marketing and distribution"	31-Mar-08	30-Jun-08	60000.00	=""	="HMA Blaze"	18-Apr-08 01:58 PM	

+="CN71571"	"Dairy Development March 2008"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	01-Mar-08	31-Mar-08	29700.00	=""	="Aladn System Solutions Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71572"	"Insurance policy for AQIS Meat Inspectors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	01-Jan-09	31750.00	=""	="Marsh Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71573"	"Onsite tech 28/1/08 - 22/2/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	28-Jan-08	22-Feb-08	10560.00	=""	="Telstra Business Systems"	18-Apr-08 01:58 PM	

+="CN71575"	"SUPPLY OF VETERINARY PHARMACEUTICALS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	22-Apr-08	29850.15	=""	="PROVET QUEENSLAND"	18-Apr-08 01:58 PM	

+="CN71577"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	40306.75	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71574"	"Cables Assemblies"	="Defence Materiel Organisation"	18-Apr-08	="Electrical wire and cable and harness"	18-Apr-08	29-Aug-08	108600.80	=""	="OWEN INTERNATIONAL"	18-Apr-08 01:59 PM	

+="CN71578"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	11737.00	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71579"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	24821.50	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71580-A1"	"Privision of assistance in implementation of the animal welfare strategy communications strategy."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	25646.72	=""	="Lorraine Follett"	18-Apr-08 01:59 PM	

+="CN71576"	"Recruitment Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Recruitment services"	22-Oct-07	19-May-08	53300.00	=""	="Law Solutions"	18-Apr-08 01:59 PM	

+="CN71581-A2"	"Closed - AQIS Contract Staff"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	09-Apr-08	31-Oct-08	900000.00	=""	="Workforce International"	18-Apr-08 01:59 PM	

+="CN71582"	"For professional services rendered during the period 18 February 2008 to 02 March 2008 AQIS contractor Phillip Livingstone."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	18-Feb-08	02-Mar-08	11550.00	=""	="M&T Resources"	18-Apr-08 02:00 PM	

+="CN71583"	"Contractor Michael Young"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	25-Feb-08	16-Mar-08	10048.50	=""	="Transformed Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71584"	"Temp staff services - Accounts Receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimited"	18-Apr-08 02:00 PM	

+="CN71585"	"Contract to supply DAFF with a framework and set of indicators to describe and quantify the social and economic impacts of forestry on a national, regional and local level."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	27-Jun-08	65000.00	=""	="Australian National University Fenner School of Environment and Society"	18-Apr-08 02:00 PM	

+="CN71586-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	07-Apr-08	30-Jun-08	60000.00	=""	="Northern Territory Department of Natural Resources, Environment and the Arts"	18-Apr-08 02:00 PM	

+="CN71587-A1"	"Testing services to the Australian Water Data Infrastructure Project, specifically testing of AWDI compliant web feature service implementations."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	79980.00	=""	="LISAsoft Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71588"	"to ensure a simple english seamless report that is consistent in tone and style, a writer/ editor is required. There is no departmental member with the expertise to do this task over the period required"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-May-08	31-Oct-08	61750.00	=""	="WordsWorth Writing"	18-Apr-08 02:00 PM	

+="CN71589"	"Production of Cargo Merchandise - Cap"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	11550.00	=""	="Product Supply Solutions"	18-Apr-08 02:00 PM	

+="CN71590-A1"	"Copyediting Australia's State of the Forests 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Feb-08	30-Jun-08	22000.00	=""	="Biotext"	18-Apr-08 02:00 PM	

+="CN71591"	"Annual renewal of COGNOS software licences and support"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	25-May-08	24-May-09	58572.69	=""	="COGNOS PTY LTD"	18-Apr-08 02:01 PM	

+="CN71592-A1"	" Provision of contractor services for continued work on the developement and maintenance of the National Agricultural Monitoring System database.  "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	14-Apr-08	30-Jun-08	100000.00	=""	="SMS Management & Technology"	18-Apr-08 02:01 PM	

+="CN71593"	"Analytical testing for the National Residue Survey - Program 8THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2948"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	38479.41	=""	="HPC Holdings Pty Ltd trading as Symbio Alliance"	18-Apr-08 02:01 PM	

+="CN71594-A4"	"Program Manager for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-May-08	30-Jun-10	621082.00	=""	="ICON RECRUITMENT PTY LTD"	18-Apr-08 02:01 PM	

+="CN71595"	"Professional services rendered by Glenn Thornton on Phase 3 of the Cargo Business Continuity Project."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Feb-08	30-Jun-08	14018.00	=""	="Ascent"	18-Apr-08 02:01 PM	

+="CN71596"	"CDAC Training Course"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	03-Jul-08	11825.00	=""	="Australian Public Service Commission"	18-Apr-08 02:01 PM	

+="CN71598"	"The supply of Certificate III in Government Folders to all AQIS regions."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Apr-08	12204.00	=""	="Addcolour digital Pty Ltd"	18-Apr-08 02:01 PM	

+="CN71599"	"Good Health - Great Future program 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	17-Apr-08	30-Jun-08	55000.00	=""	="Health Futures"	18-Apr-08 02:01 PM	

+="CN71600"	"Enhancements to ARC and GMS databases"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Mar-08	31-May-08	73260.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71601"	"Consultancy agreement for requirements gathering, design and development of a website for the Australian Animal Welfare Strategy (AAWS).THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 4162"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	16-Apr-07	30-Jun-08	67070.92	=""	="Parisfirst Partners Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71602-A2"	"Rental of Property in Karratha- 13 Armstrong Drive, Karratha WA 6714 - Rent increase"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Personal and Domestic Services"	01-Apr-08	31-Mar-10	177285.00	=""	="Pilbara Real Estate Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71603"	"Switchboard operators for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	31-Mar-08	23499.42	=""	="Sirius Corporation Ltd"	18-Apr-08 02:02 PM	

+="CN71604-A1"	"Participation in the ?Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool? Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	30-Jun-08	60000.00	=""	="Western Australia Department of Water"	18-Apr-08 02:02 PM	

+="CN71605-A1"	" Soil erosion project: a) provide an agreed approach which integrates with most recent developments in remote sensing and other techniques to monitor soil erosion loss be wind and b) identify the extent to which ground cover monitoring could provide a useful surrogate for the monitoring of soil erosion loss by wind and water, including the suitability of ground cover for use as a resource condition target at regional and national levels. "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Mar-08	30-Jun-08	30000.00	=""	="Department of Environment and Climate Change NSW"	18-Apr-08 02:02 PM	

+="CN71558"	"Building maintenance/handyman"	="Australian Securities and Investments Commission"	18-Apr-08	="Building and Construction and Maintenance Services"	26-Nov-07	28-Nov-08	22000.00	=""	="360 Facility Management"	18-Apr-08 02:03 PM	

+="CN71607"	"2 x 90 Evinrude Outboards - fit & remove old motors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-Jun-08	16000.00	=""	="Wynnum Marine Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71608"	"Provision of ergonomic assessments for Management Services Division staff"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	19-Mar-08	26-Jun-08	15000.00	=""	="Konekt Australia Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71609"	"Analytical testing for the National Residue Survey - Program 15THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2943"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	16995.00	=""	="National Measurement Institute"	18-Apr-08 02:03 PM	

+="CN71610-A1"	"Provide technical advice for the fisheries bycatch project"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	25000.00	=""	="Nicole Mazur t/a ENVision Environmental Consulting"	18-Apr-08 02:03 PM	

+="CN71611"	"Provision of Sorghum production data analysis for Queensland from 1990 to 2006 from Season Crop Outlook reports for the National Agricultural & Monitoring System"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	10000.00	=""	="Qld Department of Primary Industries & Fisheries"	18-Apr-08 02:03 PM	

+="CN71612"	"Bee export certification inspections @ $130.00 per hour"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	13-Mar-08	11147.50	=""	="NSW Department of Primary Industries"	18-Apr-08 02:03 PM	

+="CN71613-A1"	"Inventory plot measurement and sample plots, private native forests, Upper North East NSW Regional Forest."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	39600.00	=""	="Norfor Pty Ltd T/as Northern NSW Forestry Services"	18-Apr-08 02:03 PM	

+="CN71614"	"Works commissioned by Eugene Nolan"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	11278.60	=""	="Orbit Communications Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71615"	"Temp Staff services - Accounts receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimted"	18-Apr-08 02:04 PM	

+="CN71616"	"Provision of training in the identification (diagnostics) of phytophagous mites (Acari)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	06-Apr-08	08-Jun-08	14220.90	=""	="Landcare Research New Zealand"	18-Apr-08 02:04 PM	

+="CN71617"	"Production of Cargo Pormotionl Product - Thermal Mug"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	28325.00	=""	="IM Promotions"	18-Apr-08 02:04 PM	

+="CN71618"	"Supply of veterinary drugs"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	20-May-08	21285.00	=""	="Parnell Laboratories"	18-Apr-08 02:04 PM	

+="CN71619"	"Staff training"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING PTY LTD"	18-Apr-08 02:04 PM	

+="CN71620"	"Printing of Sustainable Production Booklet (NLP National Component)"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	01-Mar-08	31-Mar-08	12970.10	=""	="Paragon Printers Australia"	18-Apr-08 02:04 PM	

+="CN71621"	"Purchase of 1 x Leica MZ16 Stereomicroscope"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Tools and General Machinery"	16-Apr-08	30-May-08	13481.60	=""	="Leica Microsystems Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71622"	"1)Workshop and resolution on vocabulary management in registries and service metadata binding to vocabulary services2)Initial service profiles for AWDI, with tool capable of generating acceptable documentation(3)Publication (interim) of service profiles in registry infrastructure4)Report on the review of the formal documentation of the query model, with examples5)Brief overview of the alignment between AWDI and the emerging WOML profile"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	77000.00	=""	="CSIRO Land and Water"	18-Apr-08 02:04 PM	

+="CN71623"	"Training and assessment of offshore fumigators for the Australian Fumigation Accreditation Scheme in India, Thailand, Vietnam, Philippines, China, Malaysia and Indonesia.THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6448THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6450"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	20-Apr-08	04-May-08	55000.00	=""	="Peter Meadows Consulting Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71624"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	18262.75	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71625"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	12988.25	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71626"	"Advertising Expenses"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	25000.00	=""	="HMA Blaze"	18-Apr-08 02:05 PM	

+="CN71627"	"Logistical arrangements for Workshop on Diagnostics of Phytophagous Mites (Kuala Lumpur, Malaysia 5-10 May 2008)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Apr-08	24-May-08	49775.25	=""	="ASEANET, The South East Asian LOOP of BioNET International"	18-Apr-08 02:05 PM	

+="CN71628"	"Analytical Testing for the National Residue Survey - Program 1THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2921"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	33275.00	=""	="Department of Primary Industries Victoria - Werribee Centre"	18-Apr-08 02:05 PM	

+="CN71629"	"ABBOT POINT SHIP INSPECTIONS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	32000.00	=""	="Department of Primary Industries and Fisheries QLD"	18-Apr-08 02:05 PM	

+="CN71630-A1"	"Regional Managers conference"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Apr-08	30-May-08	10920.00	=""	="Bellinzona Grange Country Retreat"	18-Apr-08 02:05 PM	

+="CN71631"	"Call costs for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Mar-08	31-Mar-08	31229.62	=""	="AAPT Ltd"	18-Apr-08 02:05 PM	

+="CN71632"	"Counsel fees"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	338100.00	=""	="Mr Cam H. Truong"	18-Apr-08 02:07 PM	

+="CN71532"	"Labour hire"	="Australian Securities and Investments Commission"	18-Apr-08	="Foreign languages resources"	01-Apr-08	30-Jun-08	56500.00	=""	="McQuillan & Associates Pty Ltd"	18-Apr-08 02:17 PM	

+="CN71634"	" Study - Foreign Illegal Fishing in Australian and Indonesian Waters "	="Department of Foreign Affairs and Trade"	18-Apr-08	="Business administration services"	20-Dec-07	27-Jun-08	150000.00	=""	="MRAG"	18-Apr-08 02:34 PM	

+="CN71635"	"legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	284000.00	=""	="Mr Philip Crutchfield"	18-Apr-08 02:36 PM	

+="CN71636"	" PROVISION OF FLAME PROOF STORAGE CABINETS "	="Defence Materiel Organisation"	18-Apr-08	="Storage"	18-Apr-08	02-Jun-08	32604.00	=""	="F G P COMPANY PTY LTD"	18-Apr-08 02:44 PM	

+="CN71637"	"legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	17-Dec-07	30-Jun-09	70000.00	=""	="Mr Philip Crutchfield"	18-Apr-08 02:49 PM	

+="CN71638"	"Finance Conference"	="Australian Securities and Investments Commission"	18-Apr-08	="Hotels and lodging and meeting facilities"	21-Nov-07	23-Nov-07	31905.00	=""	="Stamford Plaza Melbourne"	18-Apr-08 03:28 PM	

+="CN71639"	"Conduct AAT 2008 User Survey, report & presentation of results incl estimated outlays"	="Administrative Appeals Tribunal"	18-Apr-08	="Market research"	07-Apr-08	31-Aug-08	45000.00	=""	="Profmark Consulting Pty Ltd"	18-Apr-08 03:30 PM	

+="CN71640"	" Printing of: NAT15209 - Save time do your business online.  Qty: 1,040,000 "	="Australian Taxation Office"	18-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Apr-08	30-Apr-08	26268.00	=""	="Canprint Communications"	18-Apr-08 03:34 PM	

+="CN71641"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	17-Mar-08	17-Mar-08	35443.38	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:42 PM	

+="CN71642"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Bulk transporters"	18-Mar-08	18-Mar-08	24000.00	=""	="TQUIP"	18-Apr-08 03:42 PM	

+="CN71643"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Communication equipment installation"	18-Mar-08	01-Jan-09	29680.06	=""	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71644"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Wireless internet gateway"	18-Mar-08	30-Jun-08	167738.98	="05/4934"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71645"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	18-Mar-08	18-Mar-08	14390.07	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:43 PM	

+="CN71646"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Passenger transport"	17-Mar-08	30-Mar-08	23933.00	=""	="Temka Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71647"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Local and long distance telephone communications"	17-Mar-08	30-Jun-08	22000.00	="07/13009"	="Servitel Communications Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71648"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	17-Mar-08	30-Jun-09	1098469.62	=""	="Knight Frank Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71649"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	17-Mar-08	30-Jun-08	54340.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71650"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary research and development services"	17-Mar-08	30-Jun-08	49104.00	="WOT08/007"	="Arup Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71651"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	14795.00	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71652"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	19461.20	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71653"	"Services"	="Attorney-General's Department"	18-Apr-08	="Electronic computers or data processing equipment manufacture services"	19-Mar-08	30-Jun-08	67392.58	="05/4934"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71654"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Telecommunications cable"	19-Mar-08	03-Apr-08	102000.00	=""	="Telstra"	18-Apr-08 03:44 PM	

+="CN71655"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Outside plant telecommunications cable"	19-Mar-08	30-Jun-08	52000.00	=""	="The Trustee for DECCA Building"	18-Apr-08 03:44 PM	

+="CN71656"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	18-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71657"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	05-Mar-09	15397.70	=""	="Dell Australia PTY Limited"	18-Apr-08 03:44 PM	

+="CN71658"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	18-Mar-08	21832.80	=""	="Digital Networks Australia"	18-Apr-08 03:44 PM	

+="CN71659"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	05-Mar-09	87007.27	="03/9344"	="Data#3 Ltd"	18-Apr-08 03:45 PM	

+="CN71660"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	18-Mar-08	18-Mar-08	27500.00	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71661"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Pharmaceutical filters or ultra filters"	13-Mar-08	31-Mar-08	13806.65	=""	="Scott Health and Safety"	18-Apr-08 03:45 PM	

+="CN71662"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Enhanced telecommunications services"	13-Mar-08	30-Jun-08	111783.60	=""	="Optus Billing Services Pty Ltd"	18-Apr-08 03:45 PM	

+="CN71663"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	13-Mar-08	16500.00	=""	="Indigenous Law Students and Lawyers"	18-Apr-08 03:45 PM	

+="CN71664"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Jun-08	62656.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:45 PM	

+="CN71665"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	13-Mar-08	30-Jun-08	12355.20	="06#199427DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71666"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Public enterprises management or financial services"	12-Mar-08	12-Mar-08	81400.00	=""	="Paul Gerard Healey"	18-Apr-08 03:45 PM	

+="CN71667"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	12-Mar-08	12-Mar-08	13846.23	=""	="Staging Connections"	18-Apr-08 03:45 PM	

+="CN71668"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Building construction and support and maintenance and repair services"	12-Mar-08	31-Oct-10	11198.00	="07#50688DOC"	="Leda-Vannaclip Pty Limited"	18-Apr-08 03:46 PM	

+="CN71669"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office machinery or equipment manufacture services"	12-Mar-08	31-Jan-11	37177.17	="05/18399"	="ADT"	18-Apr-08 03:46 PM	

+="CN71670-A1"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Community and social services"	13-Mar-08	30-Jun-10	95844.89	="05/7573"	="IPS WORLDWIDE"	18-Apr-08 03:46 PM	

+="CN71671"	"Services"	="Attorney-General's Department"	18-Apr-08	="Diplomats security services"	14-Mar-08	14-Mar-08	10120.00	="07/12836"	="Intec 1 Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71672"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	16-May-08	19511.25	="06/18147"	="Face 2 Face Recruitment Pty Limited"	18-Apr-08 03:46 PM	

+="CN71673"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	43296.00	="06/18412"	="Verossity Pty Limited"	18-Apr-08 03:46 PM	

+="CN71674"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71675"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary medical staffing needs"	14-Mar-08	28-Apr-08	21000.00	=""	="DR ANDREW ZDENKOWSKI"	18-Apr-08 03:46 PM	

+="CN71676"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Research programs"	13-Mar-08	30-Apr-08	44000.00	=""	="Department of Health & Ageing"	18-Apr-08 03:47 PM	

+="CN71677"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Completion tools and equipment"	14-Mar-08	30-Jun-08	79876.32	=""	="Hurlome Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71678"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	110000.00	="08/306"	="Aurec Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71679"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	14-Mar-08	14-Mar-08	31680.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71680"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	79200.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71681"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	26-Mar-08	26-Mar-08	20146.00	=""	="Australian Communications and"	18-Apr-08 03:47 PM	

+="CN71682"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Jun-08	539000.00	=""	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71683"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Personal computer television PC TV tuners"	27-Mar-08	19-Oct-08	11000.00	=""	="Department of Finance and"	18-Apr-08 03:47 PM	

+="CN71684"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	27-Mar-08	27-Mar-08	119276.52	="07/13009"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71685"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Consumer electronics"	27-Mar-08	30-Mar-08	15480.52	=""	="Electroboard Solutions Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71686"	"Software Maintenance"	="Attorney-General's Department"	18-Apr-08	="Software maintenance and support"	25-Mar-08	30-Jun-08	32143.65	=""	="Quest Software Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71687"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	25-Mar-08	31-Aug-08	76000.00	=""	="Staffing and Office Solutions"	18-Apr-08 03:48 PM	

+="CN71688"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Telecommunication devices TDD or teletypewriters TTY  for the physically challenged"	26-Mar-08	24-Jul-08	38347.82	="07/13009"	="3D Networks Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71689"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	26-Mar-08	30-Jun-08	11402.36	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71690"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Power supply transformers"	26-Mar-08	26-Mar-08	22606.70	=""	="Electricity Networks Corporation"	18-Apr-08 03:48 PM	

+="CN71691"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Building and Construction and Maintenance Services"	28-Mar-08	28-Mar-08	225000.00	=""	="Water Corporation"	18-Apr-08 03:48 PM	

+="CN71692"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Industrial machinery components and accessories"	31-Mar-08	30-Apr-08	11440.00	=""	="Xtek Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71693"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Electronic and communication measuring and testing instruments"	31-Mar-08	30-Jun-08	133236.40	=""	="Owen International"	18-Apr-08 03:49 PM	

+="CN71694"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Storage tanks"	31-Mar-08	30-Jun-08	435000.00	=""	="Water Corporation"	18-Apr-08 03:49 PM	

+="CN71695"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Oil pumps"	31-Mar-08	31-Mar-08	17257.86	=""	="MAN DIESEL AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71696"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Facsimile units for office machines"	28-Mar-08	30-Apr-08	71995.00	=""	="RICOH AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71697"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	28-Mar-08	28-Mar-08	66048.29	=""	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71698"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Forest or wilderness firefighting services"	28-Mar-08	31-Mar-08	157300.00	=""	="BUSHFIRE CRC LIMITED"	18-Apr-08 03:49 PM	

+="CN71699"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Wireless internet gateway"	28-Mar-08	31-Mar-08	10054.92	=""	="Amcom Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71700"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Aircraft fuel tanks and systems"	28-Mar-08	28-Mar-08	55000.00	=""	="Water Corporation"	18-Apr-08 03:49 PM	

+="CN71701"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Satellites"	19-Mar-08	19-Mar-08	118809.74	=""	="Optus Billing Services Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71702"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Rescue service station"	20-Mar-08	30-Jun-08	14090.77	=""	="Fuelquip (Australia) Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71703"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sports event promotion and sponsorship"	20-Mar-08	20-Mar-08	13750.00	=""	="High Profile Exhibitions Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71704"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military police training"	20-Mar-08	30-Mar-08	236966.40	=""	="Tiger International - Precision"	18-Apr-08 03:50 PM	

+="CN71705"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	25-Mar-08	30-Jun-08	40000.00	=""	="AMA PTY LTD (Aust Medical Assoc.)"	18-Apr-08 03:50 PM	

+="CN71706"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management software"	19-Mar-08	31-Oct-08	218471.90	=""	="Tower Software"	18-Apr-08 03:50 PM	

+="CN71707"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29568.00	="08/166978"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71708"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military police training"	19-Mar-08	19-Mar-08	16058.68	=""	="Chemring Australia Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71709"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Private investigation services"	19-Mar-08	19-Mar-08	10000.00	=""	="Quality Management Solutions"	18-Apr-08 03:51 PM	

+="CN71710"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29700.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71711"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Expert system software"	25-Mar-08	25-Mar-08	15480.00	="06/18396"	="Swell Design Group Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71712"	"Communications"	="Attorney-General's Department"	18-Apr-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	44000.00	=""	="Balfran Removals"	18-Apr-08 03:51 PM	

+="CN71713"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	14418.80	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71714"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	18068.60	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71715"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	25-Mar-08	16500.00	="06/18392"	="Verossity Pty Limited"	18-Apr-08 03:52 PM	

+="CN71716"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Safety or risk analysis"	25-Mar-08	25-Mar-08	37699.99	="07/17170"	="KPMG"	18-Apr-08 03:52 PM	

+="CN71717"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	07-May-08	19800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71718"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Proprietary or licensed systems maintenance or support"	25-Mar-08	25-Mar-08	60000.00	=""	="Australian Radiation Protection &"	18-Apr-08 03:52 PM	

+="CN71719"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="National security"	25-Mar-08	01-Feb-09	15334.36	=""	="Chubb Security Aust Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71720"	"Network Module"	="Attorney-General's Department"	18-Apr-08	="Network gateway"	25-Mar-08	30-Jun-08	19392.73	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71721"	"Furniture"	="Attorney-General's Department"	18-Apr-08	="Furniture"	28-Feb-08	26-Mar-08	18440.95	=""	="Australian Federal Police"	18-Apr-08 03:52 PM	

+="CN71722"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	26232.75	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:52 PM	

+="CN71723"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Feb-08	13-Feb-18	18487.71	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:53 PM	

+="CN71724"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	12383.40	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71725"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	17660.50	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71726"	"Printing Services"	="Attorney-General's Department"	18-Apr-08	="Photocopiers"	29-Feb-08	19-Mar-08	12804.41	=""	="Fuji Xerox Australia PTY LTD"	18-Apr-08 03:53 PM	

+="CN71728"	"Legal professional services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	19-Mar-08	17775.45	="195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:53 PM	

+="CN71729"	"Career Development"	="Attorney-General's Department"	18-Apr-08	="Career development services"	21-Feb-08	31-Jul-08	11825.00	=""	="Australian Public Service"	18-Apr-08 03:53 PM	

+="CN71730"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Feb-08	30-Jun-08	18058.70	=""	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71731"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	28-Feb-08	31-Dec-08	11490.60	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71732"	"Professional Services"	="Attorney-General's Department"	18-Apr-08	="Accounting and auditing"	28-Feb-08	30-Jul-08	20526.00	="07/16757"	="Deloitte Touche Tohmatsu"	18-Apr-08 03:54 PM	

+="CN71733"	"Professional fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	20-Feb-08	31-Jul-08	10285.00	="07/24134"	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:54 PM	

+="CN71734"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	13-Mar-08	30-Jun-08	64414.40	="06/10059"	="Synergy Innovations"	18-Apr-08 03:54 PM	

+="CN71735"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	14-Mar-08	30-Jun-08	93016.00	=""	="Bridge IT Engineering Pty Ltd"	18-Apr-08 03:55 PM	

+="CN71736"	"Software Upgrade"	="Attorney-General's Department"	18-Apr-08	="Software maintenance and support"	30-Jun-07	30-Jun-07	99000.00	=""	="Kaz Group Pty Limited"	18-Apr-08 03:55 PM	

+="CN71737"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	08-Feb-08	18-Feb-18	25292.59	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:55 PM	

+="CN71738"	"EQUIPMENT"	="Attorney-General's Department"	18-Apr-08	="Notebook computers"	12-Mar-08	29-Mar-08	12821.61	="07/566"	="SOUTH AUSTRALIA POLICE DEPT"	18-Apr-08 03:55 PM	

+="CN71739"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	14544.20	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71740"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	29411.80	="06#199427DOC"	="Australian Government Solictor"	18-Apr-08 03:55 PM	

+="CN71741"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	13341.90	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71742"	"Equine Flu inquiry"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	06-Mar-08	25-Apr-08	76998.90	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:56 PM	

+="CN71743"	"Patient emergency Medivac"	="Attorney-General's Department"	18-Apr-08	="Emergency medical services long distance response LDR trauma packs"	07-Feb-08	28-Mar-08	58500.00	=""	="AVWEST PTY LTD"	18-Apr-08 03:56 PM	

+="CN71744"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	12-Mar-08	25-Apr-08	31528.00	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71745"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	14-Mar-08	24-Apr-08	13239.33	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71746"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Mar-08	25-Apr-08	29700.00	=""	="James Gilkerson"	18-Apr-08 03:56 PM	

+="CN71747"	"Termite Control Services"	="Attorney-General's Department"	18-Apr-08	="Termite control services"	21-Dec-07	21-Dec-07	14150.00	="10190000"	="COCOS MANPOWER PTY LTD"	18-Apr-08 03:56 PM	

+="CN71748"	"Professional services"	="Attorney-General's Department"	18-Apr-08	="Communications vocational training services"	22-Feb-08	27-Feb-08	19250.00	=""	="LIFELINE CANBERRA INC"	18-Apr-08 03:56 PM	

+="CN71749"	"Professional Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	25-Apr-08	82500.00	=""	="Anthony J Meagher"	18-Apr-08 03:56 PM	

+="CN71750"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	18-Mar-08	11696.15	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71751"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	20-Mar-08	23062.81	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71752"	"Consultant"	="Attorney-General's Department"	18-Apr-08	="Data base reporting software"	31-Jan-08	31-Jan-08	45225.65	=""	="Dr Theodor Krauthammer"	18-Apr-08 03:57 PM	

+="CN71753"	"Financial Review"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	22-Feb-08	30-Jun-08	12231.80	=""	="HMA BLAZE"	18-Apr-08 03:57 PM	

+="CN71754"	"Legal Research Services"	="Attorney-General's Department"	18-Apr-08	="Legal Research Services"	27-Feb-08	12-Mar-08	76819.03	=""	="Professor James Crawford"	18-Apr-08 03:57 PM	

+="CN71755"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	25-Feb-08	31-Dec-08	13700.40	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:57 PM	

+="CN71756"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Jan-08	31-Dec-18	13470.82	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:57 PM	

+="CN71757"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	19-Mar-08	25-Apr-08	79302.30	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:58 PM	

+="CN71758"	"Consultancy Costs"	="Attorney-General's Department"	18-Apr-08	="Strategic planning consultation services"	06-Dec-07	29-Feb-08	16843.75	=""	="EXCELERATED CONSULTING PTY LTD"	18-Apr-08 03:58 PM	

+="CN71759"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	11-Feb-08	29-Feb-08	10298.47	=""	="Cantlie Recruitment"	18-Apr-08 03:58 PM	

+="CN71760"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Jan-08	20-Feb-09	18901.85	="07/23004"	="Australian Government Solicitor"	18-Apr-08 03:58 PM	

+="CN71761"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	14-Feb-08	20-Feb-08	29183.89	="07/23004"	="Victorian Government Solicitor's"	18-Apr-08 03:58 PM	

+="CN71762"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Electrical equipment and components and supplies"	06-Mar-08	07-Mar-08	21225.00	=""	="COCOS AUTOS/DIGGER SHED"	18-Apr-08 03:58 PM	

+="CN71764"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Business function specific software"	14-Mar-08	15-Feb-09	37119.19	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:58 PM	

+="CN71765"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Communications Devices and Accessories"	07-Mar-08	07-Mar-08	105000.01	=""	="Telstra"	18-Apr-08 03:59 PM	

+="CN71766"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Network channel or data service units"	07-Mar-08	30-May-08	128181.82	=""	="Telstra"	18-Apr-08 03:59 PM	

+="CN71767"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Surveillance and detection equipment"	07-Mar-08	07-Mar-08	20548.00	=""	="ACTIVE ENVIRONMENTAL SOLUTIONS"	18-Apr-08 03:59 PM	

+="CN71768"	"Services"	="Attorney-General's Department"	18-Apr-08	="National security"	04-Mar-08	28-Mar-08	12375.00	=""	="Electronic Technology Consulting"	18-Apr-08 03:59 PM	

+="CN71769"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	05-Mar-08	30-Jun-08	18350.00	=""	="Powercorp Operations Pty Ltd"	18-Apr-08 03:59 PM	

+="CN71770"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Metal heating services"	05-Mar-08	30-Jun-08	14620.00	=""	="Abbotts Industrial Cooling"	18-Apr-08 04:00 PM	

+="CN71771"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="In service training and manpower development"	06-Mar-08	06-Mar-08	15688.40	=""	="ROYAL ON THE PARK"	18-Apr-08 04:00 PM	

+="CN71772"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	06-Mar-08	07-Mar-08	11760.21	=""	="Hotel Realm"	18-Apr-08 04:00 PM	

+="CN71773"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Ground support training systems"	11-Mar-08	11-Mar-08	106537.20	=""	="NIOA Trading"	18-Apr-08 04:00 PM	

+="CN71774"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	30-Jun-08	25600.00	="06/18392"	="Stratsec.Net Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71775"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	11-Mar-08	30-Jun-08	13764.30	=""	="Gillian Beaumont"	18-Apr-08 04:00 PM	

+="CN71776"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sterilisation biological kits"	11-Mar-08	30-Mar-08	11500.01	=""	="St John Ambulance Australia Tasmani"	18-Apr-08 04:00 PM	

+="CN71777"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	11-Mar-08	47520.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71778"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	07-Mar-08	30-Jun-08	130757.12	=""	="National Convention Centre"	18-Apr-08 04:01 PM	

+="CN71779"	"Services"	="Attorney-General's Department"	18-Apr-08	="Public enterprises management or financial services"	07-Mar-08	07-Mar-08	13200.00	="07/8967"	="Analytics Group"	18-Apr-08 04:01 PM	

+="CN71781"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	11-Mar-08	11-Mar-08	49995.22	=""	="HMA BLAZE"	18-Apr-08 04:01 PM	

+="CN71782"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	18-May-08	43296.00	="06/18396"	="Verossity Pty Limited"	18-Apr-08 04:01 PM	

+="CN71783"	"Services"	="Attorney-General's Department"	18-Apr-08	="Ground support test or maintenance systems"	11-Mar-08	30-Jun-08	935000.00	=""	="Kaz Group Pty Limited"	18-Apr-08 04:01 PM	

+="CN71784"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	07-Apr-08	30-Jun-08	24200.00	=""	="WIZARD PERSONNEL & OFFICE"	18-Apr-08 04:01 PM	

+="CN71780"	" Fitout services for Level 25 / 324 Queen Street Brisbane. "	="Centrelink"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Feb-08	30-Jun-08	66396.00	=""	="Quadric Pty Ltd"	18-Apr-08 04:01 PM	

+="CN71785"	"Vetting Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	20-Mar-08	30-Jun-08	10000.00	=""	="Sara Maree Minehan"	18-Apr-08 04:02 PM	

+="CN71786"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	17-Mar-08	08-Aug-08	181632.00	="07/18787"	="Finite Recruitment Pty ltd"	18-Apr-08 04:02 PM	

+="CN71787"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	23-Apr-08	41695.50	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:02 PM	

+="CN71788"	"Temporary Recruitment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	30-Jun-08	49280.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71789"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Apr-08	17127.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71790"	"Rent, Car parking, cleaning & outgoings"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	08-Apr-08	30-Jun-09	214303.42	=""	="HAMIB Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71791"	"Vehicle lease"	="Attorney-General's Department"	18-Apr-08	="Motor vehicles"	16-Apr-08	30-Jun-08	43000.00	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	18-Apr-08 04:02 PM	

+="CN71792"	"Funding Model"	="Attorney-General's Department"	18-Apr-08	="Basic operations models"	18-Mar-08	30-Jun-08	19000.00	=""	="Malcolm Pascoe"	18-Apr-08 04:02 PM	

+="CN71793"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	13-Mar-08	30-Jun-08	132352.00	=""	="10 Acres Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71794"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	02-Apr-08	44000.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71795"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	14-Mar-08	23-Mar-08	36432.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71796"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Mass transfer equipment"	03-Mar-08	30-Jun-08	24497.00	="07#622510"	="Dell Australia PTY Limited"	18-Apr-08 04:03 PM	

+="CN71797"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Risk or hazard assessment"	04-Mar-08	04-Mar-08	17904.70	="06/12401"	="KPMG"	18-Apr-08 04:03 PM	

+="CN71798"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Education and Training Services"	04-Mar-08	04-Mar-08	19130.32	=""	="The Trustee for Wesfire Unit Trust"	18-Apr-08 04:03 PM	

+="CN71799"	"Phone Charges"	="Attorney-General's Department"	18-Apr-08	="Data services"	02-Apr-08	02-Apr-08	150000.00	=""	="Telstra"	18-Apr-08 04:03 PM	

+="CN71800"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	15-May-08	30800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:03 PM	

+="CN71801"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	11-Apr-08	38720.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71802"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	31-Mar-08	30-Nov-08	2750000.00	="07/13009"	="e.law Australia Pty Ltd"	18-Apr-08 04:03 PM	

+="CN71803"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office furniture"	19-Dec-07	30-Mar-08	18849.60	=""	="Cite Office Design"	18-Apr-08 04:03 PM	

+="CN71806"	"One-off Referral fee - placement of officer"	="Office of the Director of Public Prosecutions"	18-Apr-08	="Human resources services"	18-Apr-08	18-Apr-08	10902.50	=""	="Hays Legal"	18-Apr-08 04:16 PM	

+="CN71808"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176. "	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	18-Apr-08	10-Jun-08	37813.16	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:20 PM	

+="CN71810"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176."	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	17-Apr-08	30-May-08	28394.21	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:27 PM	

+="CN71811"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	30-Jun-08	30000.00	="Panel"	="VERIZON"	18-Apr-08 05:19 PM	

+="CN71812"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	31-Jan-10	351236.14	="ISEC007905"	="CONNELL WAGNER PTY LTD"	18-Apr-08 05:19 PM	

+="CN71813"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	31-Jan-10	175354.82	="ISEC007905"	="CONNELL WAGNER PTY LTD"	18-Apr-08 05:19 PM	

+="CN71814"	"Security Costs"	="Department of Finance and Deregulation"	18-Apr-08	="National Defence and Public Order and Security and Safety Services"	01-Jul-07	30-Jun-08	10598.00	=""	="CIC SECURE"	18-Apr-08 05:19 PM	

+="CN71815-A1"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Advertising"	08-Apr-08	30-Jun-08	1095750.00	="CN1192"	="MCCANN WORLDGROUP PTY LTD"	18-Apr-08 05:19 PM	

+="CN71816"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	22-Mar-08	20-Mar-09	180000.00	="FIN 05CRP004-41"	="ICON RECRUITMENT PTY LTD"	18-Apr-08 05:20 PM	

+="CN71817"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	11-Apr-08	13200.00	="PR4790"	="DELL COMPUTER PTY LIMITED"	18-Apr-08 05:20 PM	

+="CN71818"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	01-Feb-08	30-Dec-08	27850.00	="N/A"	="PEOPLE & STRATEGY (ACT) PTY"	18-Apr-08 05:20 PM	

+="CN71819"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	12-Jun-08	74811.00	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	18-Apr-08 05:20 PM	

+="CN71820"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-Jun-08	18270.00	=""	="FRANKS PAINTING SERVICE"	18-Apr-08 05:20 PM	

+="CN71821"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	25-Apr-08	30000.00	="N/A"	="HAYS PERSONNEL SERVICES"	18-Apr-08 05:20 PM	

+="CN71822"	"HR Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	27-Jun-08	53430.00	="rft"	="HUDSON"	18-Apr-08 05:20 PM	

+="CN71823"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	31-Aug-08	171600.00	="rft"	="CORDELTA PTY LTD"	18-Apr-08 05:20 PM	

+="CN71824"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	231000.00	="FIN06AGI1014-15"	="UNIFY SOLUTIONS PTY LTD"	18-Apr-08 05:20 PM	

+="CN71825"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	25-Mar-08	25-Apr-08	34698.93	="06/06590"	="ZALLCOM PTY LTD"	18-Apr-08 05:21 PM	

+="CN71826"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	10500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71827"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	17500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71828"	"Communication Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Mar-08	30-Jun-08	82500.00	=""	="ECOWISE SERVICES (AUSTRALIA) P/L"	18-Apr-08 05:21 PM	

+="CN71829"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	02-Apr-08	30-Apr-08	14421.19	="N/A"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:21 PM	

+="CN71830"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	26-Sep-08	100584.00	="n/a"	="GREYTHORN PTY LTD"	18-Apr-08 05:21 PM	

+="CN71831"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	30000.00	="n/a"	="EXHIBIT SYSTEMS"	18-Apr-08 05:21 PM	

+="CN71832"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	04-Feb-08	30-Jun-08	14080.00	=""	="THE NOUS GROUP"	18-Apr-08 05:21 PM	

+="CN71833"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	22-Apr-08	33440.00	="N/A"	="PREDICATE PARTNERS PTY LTD"	18-Apr-08 05:21 PM	

+="CN71834"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	08-Apr-08	31-May-08	11485.21	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:22 PM	

+="CN71835"	"Minor Capital Acquisitions"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	12582.90	=""	="ROYAL AUSTRALIAN MINT"	18-Apr-08 05:22 PM	

+="CN71836"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Apr-08	30-Jun-08	21780.00	="N/A"	="TELELOGIC AUSTRLAIA PTY LTD"	18-Apr-08 05:22 PM	

+="CN71837"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	08-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	18-Apr-08 05:22 PM	

+="CN71838"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	01-Jan-08	31-Dec-10	575000.00	="FIN06/CRP014"	="UNIVERSITY OF CANBERRA"	18-Apr-08 05:22 PM	

+="CN71839"	"Architectural Services"	="Department of Finance and Deregulation"	18-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	30-Jun-08	164300.40	="Pre Austender"	="SUTERS ARCHITECTS"	18-Apr-08 05:22 PM	

+="CN71840"	"Architectural Services"	="Department of Finance and Deregulation"	18-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	31-Dec-08	69741.65	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	18-Apr-08 05:22 PM	

+="CN71841"	"Travel - Insurance Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-09	487089.33	="Fin05/AMG002"	="INTERNATIONAL SOS (AUST) PTY LTD"	18-Apr-08 05:22 PM	

+="CN71842"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	30516.15	="N/A"	="BAULDERSTONE HORNIBROOK PTY LTD"	18-Apr-08 05:23 PM	

+="CN71843"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	01-Feb-08	30-Jun-08	210000.00	="1596180"	="GEORGE PATTERSON Y & R PTY LTD"	18-Apr-08 05:23 PM	

+="CN71844"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	31-Mar-08	13500.00	="n/a"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71845"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	16-May-08	20000.00	="."	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	18-Apr-08 05:23 PM	

+="CN71846"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-May-08	32135.00	="0"	="DLA PHILLIPS FOX LAWYERS"	18-Apr-08 05:23 PM	

+="CN71847"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	21500.00	="N/A"	="PROTIVITI PTY LTD"	18-Apr-08 05:23 PM	

+="CN71848"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	30-Apr-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71849"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	16750.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71850"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	19250.00	="N/A"	="WALLAGA PTY LTD"	18-Apr-08 05:24 PM	

+="CN71851"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	38500.00	="N/A"	="BLAKE DAWSON - ACT"	18-Apr-08 05:24 PM	

+="CN71852"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	28-Nov-08	45000.00	="."	="BRUCE DONALD LAWYER AND CONSULTANT"	18-Apr-08 05:24 PM	

+="CN71853"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Nov-08	40000.00	="."	="OAKTON AA SERVICES PTY LTD"	18-Apr-08 05:24 PM	

+="CN71854"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	30000.00	=""	="KPMG AUSTRALIA"	18-Apr-08 05:24 PM	

+="CN71855"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:24 PM	

+="CN71856"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13750.00	="N/A"	="DOYLE CONSULTANTS PTY LTD"	18-Apr-08 05:24 PM	

+="CN71857"	"Business Advisory Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	16-May-08	79684.00	="000000000000000"	="FUJITSU AUSTRALIA LIMITED"	18-Apr-08 05:24 PM	

+="CN71858"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Dec-08	30000.00	="N/A"	="KROPP, JIM"	18-Apr-08 05:24 PM	

+="CN71859"	"IT System Development Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	76000.00	="000000000000000"	="FUNNELBACK PTY LTD"	18-Apr-08 05:25 PM 

--- a/admin/partialdata/14Aug2007to18Aug2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- a/admin/partialdata/14Aug2007to22Aug2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- a/admin/partialdata/14Aug2007to29Aug2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val0to16000.xls
@@ -1,1 +1,392 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60734"	"A23 AIRCRAFT - REPAIRS TO FLAP, WING LANDING"	="Defence Materiel Organisation"	14-Feb-08	="Military fixed wing aircraft"	12-Feb-08	11-Apr-08	13693.43	=""	="AIRFLITE PTY LTD"	14-Feb-08 10:15 AM	

+="CN60735"	"A23 AIRCRAFT - REPAIRS TO FLAP, WING LANDING"	="Defence Materiel Organisation"	14-Feb-08	="Military fixed wing aircraft"	12-Feb-08	11-Apr-08	14451.38	=""	="AIRFLITE PTY LTD"	14-Feb-08 10:20 AM	

+="CN60737"	"Administrative Personnel"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	17-Oct-07	31-Dec-07	16000.00	=""	="Wizard Personnel  Office Services"	14-Feb-08 10:41 AM	

+="CN60747"	"Tablet computers"	="CrimTrac"	14-Feb-08	="Tablet computers"	23-Jan-08	15-Feb-08	13101.95	=""	="Infront Systems Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60749"	"Power over Ethernet Cisco Switch"	="CrimTrac"	14-Feb-08	="Switch ports or cards"	31-Jan-08	31-Jan-08	12809.67	=""	="Dimension Data Australia Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60768"	"Supply of Radio communication equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	31-Dec-07	14220.00	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:54 AM	

+="CN60769"	" Facilitation services to GST Executive events in 2007/2008 "	="Australian Taxation Office"	14-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	15-Mar-08	15760.00	="06.028"	="Clear Lead P/L"	14-Feb-08 12:13 PM	

+="CN60780"	"Electricity charges UPS Room Dec 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Dec-07	21-Dec-07	15041.80	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60784"	"Electricity charges UPS Room Nov 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Nov-07	30-Nov-07	14806.21	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60786"	"Electrical charges UPS Room Jan 08"	="Austrade"	14-Feb-08	="Electric utilities"	01-Jan-08	31-Jan-08	14272.07	=""	="ActewAGL"	14-Feb-08 02:48 PM	

+="CN60787"	"Electricity Charges Jul/Aug 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Jul-07	31-Aug-07	13732.84	=""	="Energy Australia"	14-Feb-08 02:48 PM	

+="CN60789"	"Advertising for Kuala Lumpur & New Dehli"	="Austrade"	14-Feb-08	="Advertising"	23-Nov-07	30-Nov-07	13429.94	=""	="HMA Blaze"	14-Feb-08 02:48 PM	

+="CN60790"	"Advertising package"	="Austrade"	14-Feb-08	="Advertising"	30-Jun-07	01-Jul-07	11000.00	=""	="HMA Blaze"	14-Feb-08 02:48 PM	

+="CN60791"	"Sydney office Dec switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	30-Dec-07	30-Dec-07	12990.48	=""	="Telstra"	14-Feb-08 02:48 PM	

+="CN60795"	"Canberra Nov Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Dec-07	02-Dec-07	15661.14	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60796"	"Sydney office Oct switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	29-Oct-07	15445.69	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60797"	"Canberra Oct Domestic calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	01-Nov-07	12303.63	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60798"	"Melbourne Sep Domestic calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	02-Oct-07	10084.59	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60801"	"Canberra Aug Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Sep-07	02-Sep-07	14666.69	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60803"	"Canberra Apr Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-May-07	02-May-07	12954.62	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60805"	"Security clearances"	="Austrade"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	28-Feb-08	10645.05	=""	="Key Vetting Services Pty Ltd"	14-Feb-08 02:50 PM	

+="CN60822-A1"	"Leasing facility for photocopier equipment"	="Federal Court of Australia"	14-Feb-08	="Photocopiers"	05-Jul-07	04-Jul-12	14580.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:36 PM	

+="CN60832"	"DEWR Asset Management for marketing/communication"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Aug-07	30-Jun-08	15000.00	=""	="THE EXHIBITION CENTRE"	14-Feb-08 03:37 PM	

+="CN60835"	"Printing of Information materials"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	13-Aug-07	31-Aug-07	12000.00	=""	="PMP DIGITAL PTY LTD"	14-Feb-08 03:38 PM	

+="CN60836"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Aug-07	24-Sep-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 03:38 PM	

+="CN60838"	"Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	13-Aug-07	15-Oct-07	12000.00	=""	="CAREERS UNLIMITED P/L"	14-Feb-08 03:38 PM	

+="CN60844"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	07-Aug-07	30-Jun-08	12490.50	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 03:39 PM	

+="CN60845"	"TRA Trade Tests 07/08 - Electrical Train"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	30-Jun-08	10000.00	=""	="COLLEGE OF ELECTRICAL TRAINING"	14-Feb-08 03:39 PM	

+="CN60846"	"Payment to IP in relation to GEERS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	07-Aug-07	11220.00	=""	="BK HAMILTON AND ASSOCIATES"	14-Feb-08 03:39 PM	

+="CN60847"	"Leasing facility for photocopier equipment"	="Federal Court of Australia"	14-Feb-08	="Photocopiers"	08-Jan-08	07-Jan-13	14350.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:40 PM	

+="CN60856"	"Stevedoring industry benchmarking report"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Aug-07	11550.00	=""	="BRYAN BOTTOMLEY & ASOC PTY LTD"	14-Feb-08 03:40 PM	

+="CN60861"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="DRAKE"	14-Feb-08 03:41 PM	

+="CN60863"	"recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	15000.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 03:41 PM	

+="CN60864"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Nov-10	15000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:41 PM	

+="CN60865"	"Contractor Fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	31-Aug-07	11995.83	=""	="SELECT APPOINTMENTS"	14-Feb-08 03:42 PM	

+="CN60870"	"Recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="MANPOWER SERVICES"	14-Feb-08 03:42 PM	

+="CN60872"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10312.50	=""	="HAMILTON JAMES & BRUCE PTY LTD"	14-Feb-08 03:43 PM	

+="CN60873"	"Recruitment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	10000.00	=""	="JULIA ROSS PERSONNEL"	14-Feb-08 03:43 PM	

+="CN60877"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	14-Aug-07	04-Nov-07	10000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:43 PM	

+="CN60883"	"EEB Translating Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	15-Aug-07	30-Jun-08	10000.00	=""	="DIMIA - TIS NATIONAL CENTRE"	14-Feb-08 03:44 PM	

+="CN60888"	"Printing services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	30-Jun-08	10000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 03:45 PM	

+="CN60889"	"Staff Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	15-Aug-07	30-Jun-08	10000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 03:45 PM	

+="CN60890"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	23-Dec-07	15000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 03:45 PM	

+="CN60891"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	27-Jul-07	30-Jun-08	11033.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 03:45 PM	

+="CN60906"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	22-Dec-10	14014.68	=""	="GRACE REMOVALS GROUP"	14-Feb-08 03:47 PM	

+="CN60911"	"Workstation Assessments - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	13500.00	=""	="SCOTTISH PACIFIC BUS. FINANCE P/L"	14-Feb-08 03:48 PM	

+="CN60941"	"Panasonic UB-5315 - 2-Screen Plain Paper x 6"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	06-Aug-07	31-Aug-07	14123.00	=""	="ALLTEQ PTY LTD"	14-Feb-08 03:51 PM	

+="CN60951"	"Freight and Courier Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Aug-07	30-Jun-08	15000.00	=""	="TNT DOMESTIC & INTERNATIONAL"	14-Feb-08 03:52 PM	

+="CN60955"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	02-Aug-07	30-Jun-08	13700.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:53 PM	

+="CN60962"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	11764.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60965"	"UPGRADE TELECOMMUNICATIONS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Aug-07	30-Aug-07	13367.20	=""	="DATAVOICE CANBERRA P/L"	14-Feb-08 03:53 PM	

+="CN60967"	"Labels - printing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Aug-07	31-Aug-07	10884.50	=""	="ROLLS FILING SYSTEMS"	14-Feb-08 03:54 PM	

+="CN60971"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Aug-07	30-Jun-08	10000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:54 PM	

+="CN60972"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	13-Dec-07	13-Dec-07	15004.88	=""	="Oracle Corporation Ltd"	14-Feb-08 03:54 PM	

+="CN60975"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	19-Dec-07	30-Jun-08	15000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	14-Feb-08 03:54 PM	

+="CN60976"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	01-Dec-07	13984.60	=""	="Ryder Shop & Office Fitting Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60979"	"Venue Hire for Career Directions for Graduates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	11-Oct-07	05-Nov-07	10285.00	=""	="CLIFTONS"	14-Feb-08 03:54 PM	

+="CN60980"	"Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	11178.00	=""	="SafeNet Australia Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60983"	"Provision of scribing services for NT office"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Oct-07	31-Oct-07	12000.00	=""	="SHELLEY BEARD"	14-Feb-08 03:55 PM	

+="CN60985"	"Cabling installation services for MATV units"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	17-Oct-07	20-Dec-07	10406.00	=""	="FRED PALMER AND SON PTY LTD"	14-Feb-08 03:55 PM	

+="CN60988"	"ICON CORE USAGE CHARGES. PARLIAMENTARY TV"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	12-Dec-07	12-Dec-07	11000.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:56 PM	

+="CN61001"	"Security clearence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Security and personal safety"	13-Sep-07	30-Jun-08	15411.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 03:57 PM	

+="CN61007"	"Contractor Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	28-Sep-07	23-Nov-07	15815.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 03:58 PM	

+="CN61008"	"Warehouse and Distribution Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Oct-07	23-Jan-10	15000.00	=""	="NATIONAL MAILING & MARKETING"	14-Feb-08 03:58 PM	

+="CN61012"	"HAND HELD BARCODE SCANNER DEVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	15-Jan-08	29-Jan-08	11489.78	=""	="TIG INTERNATIONAL PTY LTD"	14-Feb-08 03:59 PM	

+="CN61014"	"CONVERT TV RECEPTION -  ANALOGUE TO DIGITAL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	21-Jan-08	31-Jan-08	10406.00	=""	="FRED PALMER AND SON PTY LTD"	14-Feb-08 03:59 PM	

+="CN61015"	"security equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Security surveillance and detection"	21-Jan-08	30-Jun-08	10711.80	=""	="CUSTOM DESIGNED SOLUTIONS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61042"	"Professional Fees and Disbursements - Legal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Aug-07	31-Aug-07	10005.27	=""	="CHURCH AND GRACE"	14-Feb-08 04:03 PM	

+="CN61043"	"Legal costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Aug-07	31-Aug-07	10005.27	=""	="CHURCH AND GRACE"	14-Feb-08 04:03 PM	

+="CN61044"	"staff relocation expenses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Human resources services"	20-Aug-07	30-Jun-08	10000.00	=""	="TOLL TRANSITIONS"	14-Feb-08 04:03 PM	

+="CN61046"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	20-Aug-07	04-Nov-07	11800.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 04:03 PM	

+="CN61049"	"Staff accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	21-Aug-07	31-Aug-07	14004.00	=""	="BOTANIC GARDENS APARTMENTS"	14-Feb-08 04:03 PM	

+="CN61050"	"Temp employee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	21-Aug-07	28-Sep-07	11213.70	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:04 PM	

+="CN61051"	"Temp employee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	21-Aug-07	05-Oct-07	10390.19	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:04 PM	

+="CN61052"	"OFSC TRAINING EXPENSES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	21-Aug-07	30-Jun-08	10000.00	=""	="MAURA FAY GROUP"	14-Feb-08 04:04 PM	

+="CN61055"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	10147.22	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	14-Feb-08 04:04 PM	

+="CN61059"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Aug-07	30-Jun-08	15000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:05 PM	

+="CN61067"	"removals"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	31-Aug-07	10000.00	=""	="MOVERS & SHAKERS"	14-Feb-08 04:06 PM	

+="CN61077"	"Warden training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	27-Aug-07	30-Jun-08	12000.00	=""	="TRIMEVAC"	14-Feb-08 04:07 PM	

+="CN61078"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	30-Jun-08	10000.00	=""	="CHUBB ELECTRONIC SECURITY"	14-Feb-08 04:07 PM	

+="CN61080"	"Staff Training for Cairns staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	28-Aug-07	31-Oct-07	13000.00	=""	="PEPWORLDWIDE"	14-Feb-08 04:08 PM	

+="CN61082"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	28-Aug-07	30-Jun-08	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:08 PM	

+="CN61085"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	29-Aug-07	30-Jun-08	12100.00	=""	="THOMSON LEGAL & REGULATORY LTD"	14-Feb-08 04:08 PM	

+="CN61091"	""20,000.00 File covers - printing""	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	22-Aug-07	30-Jun-08	12975.26	=""	="MCDONALD PRINTING GROUP"	14-Feb-08 04:09 PM	

+="CN61093"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	23-Aug-07	30-Jun-08	11328.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:09 PM	

+="CN61097"	"CDEP Assets Review/Assessment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Aug-07	14-Sep-07	13050.00	=""	="WALTER AND TURNBULL PTY LTD"	14-Feb-08 04:10 PM	

+="CN61099"	"Industry Strategies - Printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	23-Aug-07	04-Jan-08	10000.00	=""	="UNION OFFSET PRINTERS"	14-Feb-08 04:10 PM	

+="CN61102"	"Commission for Debt Collector"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	31-Jul-08	10000.00	=""	="BRIDGEMENT SMITH COLLECTIONS"	14-Feb-08 04:10 PM	

+="CN61109"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	14000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:11 PM	

+="CN61112"	"Queensland venue for 2008 graduate interviews"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	05-Jul-07	14111.98	=""	="CHRISTIE CORPORATE CONFERENCE CENTR"	14-Feb-08 04:12 PM	

+="CN61113"	"Provision of Taxation Advice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	30-Jun-08	15000.00	=""	="KPMG (CANBERRA)"	14-Feb-08 04:12 PM	

+="CN61116"	"Plants Supply & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	13000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:12 PM	

+="CN61117"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	11005.50	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:12 PM	

+="CN61123"	"Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Jun-08	10400.00	=""	="ELIZABETH ANDREWS CATERING"	14-Feb-08 04:13 PM	

+="CN61143"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Jul-07	30-Jul-07	11814.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:15 PM	

+="CN61146"	"Contractor Fees - Pat Dunn - FSU"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	31-Dec-07	13500.00	=""	="FRONTIERGROUP AUSTRALIA P/L"	14-Feb-08 04:16 PM	

+="CN61147"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	10-Jul-07	23-Dec-07	10000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 04:16 PM	

+="CN61148"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	30-Nov-08	12000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:16 PM	

+="CN61150"	"Training Course"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	10-Jul-07	27-Jul-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:16 PM	

+="CN61153"	"Cabcharge Fees for FY 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	11-Jul-07	30-Jun-08	11872.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 04:17 PM	

+="CN61154"	"Ergonomic Chairs after workplace assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	11500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:17 PM	

+="CN61163"	"IES Job Seeker Mailout"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Aug-07	11672.45	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 04:18 PM	

+="CN61170"	"Asset Register Maintenance Shedule and Rent Review"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	31-Jul-07	12072.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:19 PM	

+="CN61179"	"WRS Pre-Employment Medical Tests 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:20 PM	

+="CN61182"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	11000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:21 PM	

+="CN61188"	"WRS Furniture 2007/08 (McNally's)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	03-Jul-07	30-Jun-08	15000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:21 PM	

+="CN61191"	"OASCC workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:22 PM	

+="CN61192"	"OASCC medical tests 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:22 PM	

+="CN61195"	"Security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	16000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61197"	"OASCC workstation assessments for staff 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:22 PM	

+="CN61199"	"Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	02-Jul-07	24-Jul-07	12000.00	=""	="CROWNE PLAZA ALICE SPRINGS"	14-Feb-08 04:23 PM	

+="CN61203"	"OFSC workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:23 PM	

+="CN61204"	"OFSC Workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:23 PM	

+="CN61206"	"OFSC pre-employment medical tests 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:24 PM	

+="CN61207"	"WRS Workstation Assessments 07/08 SRC"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:24 PM	

+="CN61210"	"WRS Newspapers 2007/08 (Fyshwick)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	04-Jul-07	30-Jun-08	15000.00	=""	="FYSHWICK NEWSAGENCY (ACT) PTY LTD"	14-Feb-08 04:24 PM	

+="CN61211"	"WRS Security Clearances 2007/08 KVS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	10000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:24 PM	

+="CN61212"	"WRS Plant Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	15000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:24 PM	

+="CN61213"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	04-Jul-07	30-Nov-07	10000.00	=""	="J S MCMILLAN PTY LTD"	14-Feb-08 04:24 PM	

+="CN61227"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	15990.00	=""	="INFO SALONS AUSTRALIA PTY LTD"	14-Feb-08 04:26 PM	

+="CN61231"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	03-Jul-07	28-Sep-07	10000.00	=""	="SALMAT  LIMITED"	14-Feb-08 04:27 PM	

+="CN61239"	""Room hire, catering for ELP Recall day 13 Dec 07""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	20-Jul-07	24-Dec-07	12581.11	=""	="THE HYATT HOTEL CANBERRA"	14-Feb-08 04:28 PM	

+="CN61247"	"OH&S Workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Dec-07	10962.50	=""	="WORK SOLUTIONS AUSTRALIA PTY LTD"	14-Feb-08 04:29 PM	

+="CN61254"	"Secondment of Alan Grinsell-Jones"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	23-Jul-07	11899.80	=""	="DEACONS - CANBERRA OFFICE"	14-Feb-08 04:30 PM	

+="CN61258"	"Introduction to Senate  - Graduate Course"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	19-Jul-07	05-Sep-07	10000.00	=""	="DEPARTMENT OF THE SENATE"	14-Feb-08 04:30 PM	

+="CN61261"	"Pre-employment Medical Exams - NT - 2007-2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	19-Jul-07	30-Jun-08	15000.00	=""	="HEALTH FOR INDUSTRY"	14-Feb-08 04:30 PM	

+="CN61267"	"PLANT HIRE FROM LIVING SIMPLY"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	30-Jun-08	12000.00	=""	="LIVING SIMPLY"	14-Feb-08 04:31 PM	

+="CN61268"	"Provision for Cross Cultutal Awareness Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	20-Jul-07	30-Jun-08	10000.00	=""	="MORNING STAR INDIGENOUS INSERVICES"	14-Feb-08 04:31 PM	

+="CN61270"	"Lockes and repairs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	01-Jul-08	15000.00	=""	="KEELER HARDWARE (ACT) PTY LTD"	14-Feb-08 04:32 PM	

+="CN61271"	"Freight and Courier Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	25-Jul-07	30-Jun-08	15000.00	=""	="TNT DOMESTIC & INTERNATIONAL"	14-Feb-08 04:32 PM	

+="CN61273"	"Relocation of Library materials to 10 Mort ST"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	25-Jul-07	11000.00	=""	="ATLANTIS = PTY LTD"	14-Feb-08 04:32 PM	

+="CN61274"	"Provision for staff housing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	11228.60	=""	="RAINE & HORNE DARWIN"	14-Feb-08 04:32 PM	

+="CN61276"	"Vehicle Lease"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	25-Jul-07	30-Jul-08	13050.00	=""	="LEASEPLAN AUSTRALIA LTD"	14-Feb-08 04:32 PM	

+="CN61277"	"Stationery"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	25-Jul-07	30-Jul-08	10500.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:32 PM	

+="CN61278"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	26-Jul-07	30-Jun-08	10560.00	=""	="CAPTELL DEVELOPMENTS PTY LTD"	14-Feb-08 04:33 PM	

+="CN61288"	"debt collector fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	10000.00	=""	="DUN & BRADSTREET (AUSTRALIA)"	14-Feb-08 04:34 PM	

+="CN61289"	"Printing  products for information sessions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	24-Jul-07	26-Jul-07	12000.00	=""	="PMP DIGITAL PTY LTD"	14-Feb-08 04:34 PM	

+="CN61292"	"Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	24-Jul-07	31-Aug-07	13170.60	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	14-Feb-08 04:34 PM	

+="CN61294"	"Tech-Ed 2007 group registration fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	30-Jun-08	13365.00	=""	="INFO SALONS AUSTRALIA PTY LTD"	14-Feb-08 04:35 PM	

+="CN61296"	"Provision for meals and accommodation new starters"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	25-Jul-07	30-Jun-08	10000.00	=""	="DARWIN AIRPORT RESORT"	14-Feb-08 04:35 PM	

+="CN61299"	"Seminars and Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	30-Jun-08	11480.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	14-Feb-08 04:35 PM	

+="CN61301"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	25-Jul-07	30-Jun-08	11088.00	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 04:35 PM	

+="CN61306"	"Indigenous Leadership Workshop"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Jul-07	31-Dec-07	10890.00	=""	="AUSTRALIAN INDIGENOUS LEADERSHIP CE"	14-Feb-08 04:36 PM	

+="CN61309"	"Stationery Items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	13-Jul-07	30-Jul-08	15000.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	14-Feb-08 04:36 PM	

+="CN61314"	"W'STATION ASSESSMENTS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	10200.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:37 PM	

+="CN61317"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	10000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:38 PM	

+="CN61319"	"Registration of Federal Legislative Instruments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	15000.00	=""	="ATTORNEY-GENERAL'S DEPT-CPM"	14-Feb-08 04:38 PM	

+="CN61327"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	12-Jul-07	30-Sep-08	10000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:39 PM	

+="CN61344-A1"	" TM1 Web software and Maintenance "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Development software"	01-Jul-07	30-Jun-08	15842.72	=""	="Excelerated Consulting Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61345"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Aug-08	15000.00	=""	="NSW BUSINESS CHAMBER LIMITED"	14-Feb-08 04:40 PM	

+="CN61346-A1"	"50% Share of Construction Costs"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Carpentry"	01-Sep-07	31-Dec-07	14328.00	=""	="OSA Group Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61351"	"IBISWORLd Advantage Licence Renewal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	20-Nov-07	11000.00	=""	="IBISWORLD"	14-Feb-08 04:40 PM	

+="CN61358-A1"	"Consultancy for Health Workforce Audit."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	05-Dec-07	30-May-08	12982.00	=""	="Unisuper Limited"	14-Feb-08 04:41 PM	

+="CN61360-A1"	" Mentor Training December 2007 - January 2008 "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Educational exchanges"	06-Dec-07	29-Jan-08	10780.00	=""	="Talkforce Consultants and Trainers"	14-Feb-08 04:41 PM	

+="CN61361"	"STAFF RELOCATION"	="Department of Employment and Workplace Relations"	14-Feb-08	="Human resources services"	17-Jul-07	31-Jul-07	13167.00	=""	="WRIDGWAYS LIMITED"	14-Feb-08 04:41 PM	

+="CN61366"	"Supply of First Aid Kit, General Purpose, Wall Mounted"	="Defence Materiel Organisation"	14-Feb-08	="Medical Equipment and Accessories and Supplies"	14-Feb-08	28-Mar-08	13227.50	=""	="Amada-Amavic Pty Ltd"	14-Feb-08 04:42 PM	

+="CN61372"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Jul-07	30-Jun-08	11814.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:42 PM	

+="CN61376"	"Security Clearances"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	18-Jul-07	30-Jun-08	10000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:42 PM	

+="CN61381-A1"	"Assistance with completion of Discussion Papers for Tourism Australia Audit."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	14-Jan-08	01-Feb-08	11550.00	=""	="ORIMA Research"	14-Feb-08 04:43 PM	

+="CN61387-A1"	" Placement Fee "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Personnel recruitment"	17-Dec-07	14-Jan-08	11310.35	=""	="Julia Ross Recruitment"	14-Feb-08 04:43 PM	

+="CN61394"	"STAFF REMOVAL COSTS / RELOCATION"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	31-Dec-07	10000.00	=""	="WRIDGEWAYS LTD"	14-Feb-08 04:44 PM	

+="CN61398"	"W'STATION ASSESSMENTS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Jul-07	30-Jun-08	10200.00	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:44 PM	

+="CN61400"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	15750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM	

+="CN61402"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	10750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM	

+="CN61406"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	12200.00	=""	="CCH AUSTRALIA"	14-Feb-08 04:45 PM	

+="CN61415"	"Printing of: NAT2944-4.2008 ABN Registration for Superannuation entities."	="Australian Taxation Office"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	29-Feb-08	11110.00	=""	="Blue Star Printing T/A National Capital Printing"	15-Feb-08 09:44 AM	

+="CN61429"	"OCSET Cabling - Perth Level 1"	="Australian Federal Police"	15-Feb-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	10072.22	=""	="Absolute Cabling Systems Pty Ltd"	15-Feb-08 11:39 AM	

+="CN61431"	"OCSET Cabling - Perth Level 2"	="Australian Federal Police"	15-Feb-08	="Computer Equipment and Accessories"	01-Jan-07	31-Dec-07	13797.89	=""	="Absolute Cabling Systems Pty Ltd"	15-Feb-08 11:46 AM	

+="CN61432"	"Polyurethane Coating"	="Defence Materiel Organisation"	15-Feb-08	="Paints and primers and finishes"	22-Jan-08	02-Mar-08	11672.95	=""	="The Valspar (Australia) Corporation Pty Ltd"	15-Feb-08 11:56 AM	

+="CN61435"	" DETECTING SET MINE C/W HEADSET, BATTERY PACK AND CABLE  PART NO. 3111-0801 FOR MINE DETECTOR                 3001-0036 FOR BATTERY PACK BAG                 9511-0019 FOR CABLE ASSY BP "	="Defence Materiel Organisation"	15-Feb-08	="Detectors"	15-Feb-08	20-Feb-08	12652.20	=""	="MINELAB ELECTRONICS PTY LTD"	15-Feb-08 12:49 PM	

+="CN61441"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	15-Feb-08	="Gels"	08-Feb-08	03-Mar-08	13788.50	=""	="Clean Room Garments Pty Ltd"	15-Feb-08 02:23 PM	

+="CN61453"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	20-Aug-07	19-Aug-08	14803.80	="FIN06/FES3"	="VERIZON"	15-Feb-08 03:21 PM	

+="CN61458"	"Communication Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	20-May-08	15021.39	="N/A"	="CIT GROUP (AUSTRALIA) LTD"	15-Feb-08 03:25 PM	

+="CN61460"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	31-Jan-08	14000.00	="N/A"	="CENTRELINK"	15-Feb-08 03:25 PM	

+="CN61476"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	03-Jan-08	24-Jan-08	10988.79	="06/06590"	="ZALLCOM PTY LTD"	15-Feb-08 03:27 PM	

+="CN61478"	"Training & Education Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Education and Training Services"	07-Jan-08	29-Feb-08	13145.00	=""	="THE NOUS GROUP"	15-Feb-08 03:28 PM	

+="CN61485"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	15-Feb-08	="Building and Construction and Maintenance Services"	23-Jan-08	31-Mar-08	14652.49	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	15-Feb-08 03:28 PM	

+="CN61489"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	31-Jan-08	30-Jun-08	13337.50	="000000000"	="CANON AUSTRALIA P/L - ACT"	15-Feb-08 03:29 PM	

+="CN61509"	"Consultancy Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Mar-08	12320.00	="."	="DILMA CONSULTING PTY LTD"	15-Feb-08 03:31 PM	

+="CN61511"	"Legal Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	11-Mar-08	11400.00	="."	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	15-Feb-08 03:32 PM	

+="CN61513"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	13750.00	="TBA"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	15-Feb-08 03:32 PM	

+="CN61514"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	16000.00	="TBA"	="CPT GLOBAL LIMITED"	15-Feb-08 03:32 PM	

+="CN61517-A1"	"Advertising Services"	="Centrelink"	15-Feb-08	="Advertising"	31-Jan-08	30-Sep-08	11218.41	=""	="HMA Blaze Pty Ltd"	15-Feb-08 03:42 PM	

+="CN61522"	"Healthcare services"	="Centrelink"	15-Feb-08	="Healthcare Services"	17-Sep-07	30-Jun-08	11000.00	=""	="Hopwood and Associates Pty Ltd"	15-Feb-08 03:42 PM	

+="CN61523"	"Accomodation and other meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Jun-08	10000.00	=""	="Minjilang Community Inc"	15-Feb-08 03:42 PM	

+="CN61524"	"Accommodation"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	30-Nov-07	30-Jun-08	10000.10	=""	="Knotts Crossing Resort"	15-Feb-08 03:43 PM	

+="CN61525"	"Accomodation and other meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	30-Jan-08	30-Jun-08	10000.00	=""	="Dept of Local Govt Housing and Sport"	15-Feb-08 03:43 PM	

+="CN61526"	"Fitout Management for Coffs Harbour NSW Refit"	="Centrelink"	15-Feb-08	="Management advisory services"	05-Feb-08	27-Jun-08	12591.17	=""	="Interior Dynamics Australia Pty Ltd"	15-Feb-08 03:43 PM	

+="CN61535"	"Customer Service Centre Refurbishment"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	31-Jan-08	30-Jun-08	12055.13	=""	="Greenway Architects (SA) Pty Ltd"	15-Feb-08 03:44 PM	

+="CN61537"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	13-Jul-07	30-Jun-08	15400.00	=""	="Cabcharge Australia Pty Ltd"	15-Feb-08 03:44 PM	

+="CN61539"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	11-Jan-08	30-Jun-08	11000.00	=""	="Cabcharge Australia Pty Ltd"	15-Feb-08 03:44 PM	

+="CN61540"	"Fitout Management"	="Centrelink"	15-Feb-08	="Business administration services"	13-Feb-07	31-Aug-07	12077.13	=""	="James Millar Architects"	15-Feb-08 03:45 PM	

+="CN61546"	"staff counselling"	="Centrelink"	15-Feb-08	="Human resources services"	25-Jan-08	30-Jun-08	11000.00	=""	="ITIM Australia"	15-Feb-08 03:45 PM	

+="CN61554"	"IT Cabling"	="Centrelink"	15-Feb-08	="Computer services"	21-Jan-08	16-Mar-08	12320.00	=""	="Integrated Cabling Solutions Pty Lt"	15-Feb-08 03:46 PM	

+="CN61563"	"External Training"	="Centrelink"	15-Feb-08	="Vocational training"	30-Jan-08	30-Jun-08	11950.00	=""	="Australian Public Servce Commission"	15-Feb-08 03:48 PM	

+="CN61566"	"Accomodation and meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	09-Jan-08	30-Jun-08	10000.00	=""	="Daily River Barra Resort Pty Ltd"	15-Feb-08 03:48 PM	

+="CN61568"	"Vocational training"	="Centrelink"	15-Feb-08	="Vocational training"	09-Jan-08	01-Feb-08	14320.00	=""	="Excom Education Pty Ltd"	15-Feb-08 03:48 PM	

+="CN61569"	"Vocational training"	="Centrelink"	15-Feb-08	="Vocational training"	09-Jan-08	01-Mar-08	14320.00	=""	="Excom Education Pty Ltd"	15-Feb-08 03:48 PM	

+="CN61578"	"Healthcare services"	="Centrelink"	15-Feb-08	="Healthcare Services"	15-Jan-08	30-Jun-08	11000.00	=""	="MLCOA"	15-Feb-08 03:50 PM	

+="CN61579"	"External Training"	="Centrelink"	15-Feb-08	="Vocational training"	15-Jan-08	30-Jun-08	10000.00	=""	="Metron Technology Limited"	15-Feb-08 03:50 PM	

+="CN61580"	"Healthcare services"	="Centrelink"	15-Feb-08	="Healthcare Services"	15-Jan-08	30-Jun-08	11000.00	=""	="Recovre Pty Ltd"	15-Feb-08 03:50 PM	

+="CN61581"	"Sydney Leadership 2008 program"	="Centrelink"	15-Feb-08	="Specialised educational services"	07-Jan-08	31-Dec-08	15015.00	=""	="The Benevolent Society"	15-Feb-08 03:50 PM	

+="CN61582"	"Supply and install monitor arms"	="Centrelink"	15-Feb-08	="Computer Equipment and Accessories"	07-Jan-08	28-Feb-08	12210.00	=""	="Schiavello Systems (NSW) Pty Ltd"	15-Feb-08 03:50 PM	

+="CN61583"	"concreting as part of fitout"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Jan-08	30-Jun-08	15202.00	=""	="KL Bartlett Pty Ltd"	15-Feb-08 03:50 PM	

+="CN61589"	"Customer Service Centre Refurbishment"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	10-Jan-08	30-Jun-08	11447.70	=""	="Solitaire Seating"	15-Feb-08 03:51 PM	

+="CN61590"	"conferenec room chair"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	11-Jan-08	22-Feb-08	10216.25	=""	="Stem Industries Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61595"	"Multicultural SBS"	="Centrelink"	15-Feb-08	="Advertising"	14-Jan-08	31-Jan-08	13310.00	=""	="Special Broadcasting Service"	15-Feb-08 03:52 PM	

+="CN61607"	"Office signage"	="Centrelink"	15-Feb-08	="Office supplies"	20-Sep-07	29-Feb-08	12342.00	=""	="Opalescent Signs Aust Pty Ltd"	15-Feb-08 03:53 PM	

+="CN61608"	"Internal and external signs for Centrelink Newport"	="Centrelink"	15-Feb-08	="Signage and accessories"	20-Nov-07	11-Jan-08	15048.00	=""	="Tint Design Pty Ltd"	15-Feb-08 03:53 PM	

+="CN61609"	"Customer chairs for Centrelink Bendigo"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	16-Jan-08	30-Jun-08	12144.00	=""	="Solitaire Seating"	15-Feb-08 03:53 PM	

+="CN61611"	"Printing and distribution of cards"	="Centrelink"	15-Feb-08	="Marketing and distribution"	03-Jan-08	31-Jan-08	14135.00	=""	="Avant Card"	15-Feb-08 03:54 PM	

+="CN61619"	"Security works at Centrelink Ballarat VIC"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	10914.20	=""	="Pirotta Services Pty Ltd"	15-Feb-08 03:55 PM	

+="CN61626"	"supply and install signage"	="Centrelink"	15-Feb-08	="Office supplies"	29-Jan-08	30-Jun-08	12646.70	=""	="Albert Smith Signs Pty Ltd"	15-Feb-08 03:56 PM	

+="CN61630"	"Report on air conditioning"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jan-08	30-Jun-08	11896.50	=""	="Designphase Australia"	15-Feb-08 03:57 PM	

+="CN61631"	"Vistors chairs for Fremantle Office WA"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	16-Jan-08	07-Mar-08	11550.00	=""	="Solitaire Seating"	15-Feb-08 03:57 PM	

+="CN61637"	"Fit Out"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Jan-08	15-Feb-08	14058.00	=""	="Bronts Commercial Interiors Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61640"	"Training"	="Centrelink"	15-Feb-08	="Specialised educational services"	22-Jan-08	30-Jun-08	15000.00	=""	="PSM Program"	15-Feb-08 03:58 PM	

+="CN61656"	"Equipment"	="Attorney-General's Department"	15-Feb-08	="Office supplies"	17-Jan-08	30-Jun-08	10747.00	=""	="NORTH BEACH ELECTRICAL PTY LTD"	15-Feb-08 04:37 PM	

+="CN61663"	"Storage"	="Attorney-General's Department"	15-Feb-08	="Storage"	10-Jan-08	30-Jun-08	15111.80	="06/8489"	="Comcar"	15-Feb-08 04:38 PM	

+="CN61670"	"Building and surveying"	="Attorney-General's Department"	15-Feb-08	="Surveying systems"	25-Jan-08	30-Apr-09	13200.00	=""	="Philip Chun & Associates Pty Ltd"	15-Feb-08 04:39 PM	

+="CN61674"	"Services"	="Attorney-General's Department"	15-Feb-08	="Relocation services"	31-Jan-08	31-Jan-08	15158.00	=""	="Schiavello (ACT) Pty Ltd"	15-Feb-08 04:40 PM	

+="CN61675"	"Services & Equipment Rental 07.01.2008"	="Attorney-General's Department"	15-Feb-08	="Communications Devices and Accessories"	31-Jan-08	31-Jan-08	10064.95	=""	="Telstra"	15-Feb-08 04:40 PM	

+="CN61692"	"Conference"	="Attorney-General's Department"	15-Feb-08	="Sponsorship of event or celebrity"	29-Nov-07	31-Mar-08	10000.00	=""	="Event Planners Australia Pty Ltd"	15-Feb-08 04:42 PM	

+="CN61695"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	17-Dec-07	31-Dec-09	12067.55	="06#195748"	="Australian Government Solicitor"	15-Feb-08 04:42 PM	

+="CN61696"	"Registration"	="Attorney-General's Department"	15-Feb-08	="Career development services"	10-Dec-07	30-Jun-08	11825.00	=""	="Australian Public Service"	15-Feb-08 04:42 PM	

+="CN61703"	"Printing Services"	="Attorney-General's Department"	15-Feb-08	="Printing"	05-Dec-07	05-Dec-07	11069.30	=""	="National Mailing & Marketing"	15-Feb-08 04:43 PM	

+="CN61706"	"Training"	="Attorney-General's Department"	15-Feb-08	="Project management"	20-Dec-07	03-Jan-08	10367.37	=""	="Indigenous Business Australia"	15-Feb-08 04:44 PM	

+="CN61710"	"Conference"	="Attorney-General's Department"	15-Feb-08	="Conference or non modular room packages"	31-Dec-07	03-Jan-08	10000.00	=""	="National Convention Centre"	15-Feb-08 04:44 PM	

+="CN61733"	"Client Survey Finance & Budgets,Corp & Business"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Jan-08	11039.00	="2007/00459"	="Wallis Research Group Pty Ltd"	15-Feb-08 05:05 PM	

+="CN61735"	"VP 185- Tumbleweed and Mimesweeper"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	10-Nov-05	13-Apr-08	15552.00	="DCON/05/177"	="KAZ Group Pty Ltd"	15-Feb-08 05:06 PM	

+="CN61736-A1"	"Additional chairs for meeting rooms"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction and Maintenance Services"	12-Dec-07	29-Jan-08	15954.40	="ATM 07/835"	="INO CONTRACT  FURNITURE"	15-Feb-08 05:06 PM	

+="CN61742"	"SPSS Public Notices Advertisements"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	24-Dec-07	24-Dec-07	13574.00	="2007/00842"	="HMA BLAZE PTY LTD"	15-Feb-08 05:07 PM	

+="CN61755-A1"	"SPR002 Support & Prepare Business requirements Lis"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	19-Dec-09	11000.00	="DCON/07/65"	="Usability One"	15-Feb-08 05:08 PM	

+="CN61758"	"LegalNet Licences x 5"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	08-Feb-08	28-Feb-08	13387.28	="2008/00890"	="Nsynergy International Pty Ltd"	15-Feb-08 05:08 PM	

+="CN61760"	"Litigation"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	15-Nov-07	30-Jun-08	14000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 05:08 PM	

+="CN61773"	"Venue for Strategic Mgmt Prog"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	14-Aug-07	30-Jun-08	14556.01	="ATM/07/64"	="Territory Venues and Events"	15-Feb-08 05:09 PM	

+="CN61775"	"FOI Advice - General"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	25-Jun-07	30-Jun-08	15000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 05:09 PM	

+="CN61776"	"Office mod L1 Burns Centre"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction Machinery and Accessories"	11-Feb-08	30-Jun-08	14354.23	="ATM/07/117"	="GE SHAW  & ASSOCIATES (ACT) PTY LTD"	15-Feb-08 05:09 PM	

+="CN61778"	"Milk Delivery - 38 Sydney Ave & Burns Centre"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Food and Beverage Products"	30-Jun-08	30-Jun-08	14858.51	="CCR/07/3065"	="Capitol Chilled Foods"	15-Feb-08 05:09 PM	

+="CN61783"	"Repair Manitou Vehicle"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Jul-06	01-Oct-06	12098.34	=""	="N T P FORKLIFT AUST"	15-Feb-08 06:56 PM	

+="CN61785"	"Inner Tubes Tyre"	="Department of Defence"	15-Feb-08	="Plastic and chemical industries"	19-Jul-06	23-Aug-06	10509.77	=""	="BEAUREPAIRES FOR TYRES"	15-Feb-08 06:56 PM	

+="CN61787"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	25-Jul-06	03-Aug-06	14921.54	=""	="VOLVO COMMERCIAL VEHICLES"	15-Feb-08 06:57 PM	

+="CN61792"	"rebuild bushmaster wheels"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	15-Aug-06	14-Sep-06	10836.40	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 06:57 PM	

+="CN61799"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	11-Sep-06	14-Oct-06	10663.68	=""	="VOLVO COMMERCIAL VEHICLES"	15-Feb-08 06:58 PM	

+="CN61801"	"Hose Assembly"	="Department of Defence"	15-Feb-08	="Motor vehicles"	12-Sep-06	26-Oct-06	15788.25	=""	="HARVEY HOSE SUPPLIES"	15-Feb-08 06:58 PM	

+="CN61802"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	14-Sep-06	22-Oct-06	10292.02	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 06:58 PM	

+="CN61803"	"Batteries"	="Department of Defence"	15-Feb-08	="Motor vehicles"	14-Sep-06	04-Nov-06	10721.10	=""	="EXIDE TECHNOLOGIES Pty Ltd"	15-Feb-08 06:59 PM	

+="CN61805"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	19-Nov-06	10861.46	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61806"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	22-Nov-06	11848.48	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61807"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	30-Jun-07	13040.93	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61809"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	22-Nov-06	11340.20	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61810"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	22-Nov-06	12600.91	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61811"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	22-Nov-06	15600.72	=""	="THALES AUSTRALIA"	15-Feb-08 07:00 PM	

+="CN61812"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	14-Apr-07	10277.64	=""	="THALES AUSTRALIA"	15-Feb-08 07:00 PM	

+="CN61814"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Oct-06	21-Jan-07	10185.80	=""	="JOHN L ROBERTSON Pty Ltd"	15-Feb-08 07:00 PM	

+="CN61815"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	01-Nov-06	20-Jul-07	12413.12	=""	="THALES AUSTRALIA"	15-Feb-08 07:00 PM	

+="CN61824"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	06-Nov-06	20-Dec-06	14000.26	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:01 PM	

+="CN61825"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	07-Nov-06	24-May-07	11913.33	=""	="THALES AUSTRALIA"	15-Feb-08 07:01 PM	

+="CN61826"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	08-Nov-06	20-Dec-06	15408.68	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:01 PM	

+="CN61827"	"Repairs Truck"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	13-Nov-06	07-Jan-07	10400.00	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:01 PM	

+="CN61829"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	22-Dec-06	13737.31	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:02 PM	

+="CN61830"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	22-Dec-06	15595.58	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:02 PM	

+="CN61835"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Nov-06	29-Dec-06	15295.20	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61836"	"Tyre Inner Tubes"	="Department of Defence"	15-Feb-08	="Plastic and chemical industries"	20-Nov-06	18-Jan-07	15589.60	=""	="BEAUREPAIRES FOR TYRES"	15-Feb-08 07:03 PM	

+="CN61837"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	21-Nov-06	28-Dec-06	10651.60	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61840"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	24-Nov-06	27-Apr-07	10804.93	=""	="THALES AUSTRALIA"	15-Feb-08 07:03 PM	

+="CN61841"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	24-Nov-06	28-Jul-07	14400.02	=""	="THALES AUSTRALIA"	15-Feb-08 07:03 PM	

+="CN61842"	"Jack Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	27-Nov-06	05-Jul-07	13485.00	=""	="RPC TECHNOLOGIES Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61844"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	28-Nov-06	06-Jan-07	12243.00	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61845"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	28-Nov-06	07-Feb-07	10078.80	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61846"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	28-Nov-06	06-Jan-07	10530.42	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61852"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	06-Dec-06	19-Jan-07	11187.54	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61855"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Dec-06	21-Apr-07	13490.90	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61856"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	14-Dec-06	14-Feb-07	15840.00	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61857"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	15-Dec-06	14-Feb-07	15633.35	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 07:05 PM	

+="CN61861"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Dec-06	31-May-07	14774.16	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:06 PM	

+="CN61868"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	11-Jan-07	15-Jun-07	12567.11	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:06 PM	

+="CN61869"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	11-Jan-07	18-Feb-07	10922.22	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61870"	"Paper Labels"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Jan-07	07-Mar-07	10770.00	=""	="OSSIE LABELS & SIGNS"	15-Feb-08 07:07 PM	

+="CN61875"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	22-Jan-07	21-Mar-07	11256.24	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61877"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	22-Jan-07	14-Mar-07	13096.20	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:08 PM	

+="CN61878"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	25-Jan-07	21-Mar-07	12010.73	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:08 PM	

+="CN61882"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	08-Feb-07	18-Mar-07	12421.87	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 07:08 PM	

+="CN61883"	"Vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	08-Feb-07	19-Mar-07	10282.67	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:08 PM	

+="CN61885"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	08-Feb-07	29-Mar-07	12465.14	=""	="QUINN TRUCK SERVICES Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61886"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Feb-07	29-Mar-07	12973.60	=""	="TECHNO BRITISH"	15-Feb-08 07:09 PM	

+="CN61890"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Feb-07	30-Mar-07	12080.20	=""	="VOLVO COMMERCIAL VEHICLES"	15-Feb-08 07:09 PM	

+="CN61894"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	22-Feb-07	30-Apr-07	15950.98	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:10 PM	

+="CN61899"	"Cabinet Storage"	="Department of Defence"	15-Feb-08	="Storage"	16-Mar-07	15-Jun-07	12737.00	=""	="F G P COMPANY Pty Ltd"	15-Feb-08 07:10 PM	

+="CN61900"	"Safety Vests High Vis"	="Department of Defence"	15-Feb-08	="Clothing"	27-Mar-07	22-Jun-07	10773.00	=""	="ELLIOTT AUSTRALIA Pty Ltd"	15-Feb-08 07:10 PM	

+="CN61902"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	23-Apr-07	21-Jun-07	14857.74	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 07:11 PM	

+="CN61905"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	23-May-07	29-Jul-07	15700.25	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61908"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	01-Jun-07	29-Jul-07	14433.09	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61910"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	13-Jun-07	14-Jul-07	13118.73	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 07:12 PM	

+="CN61911"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Jun-07	29-Jul-07	10909.69	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:12 PM	

+="CN61912"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	15-Jun-07	15-Jul-07	13538.50	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 07:12 PM	

+="CN61913"	"spare parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	18-Jun-07	26-Jul-07	13216.15	=""	="ADVANCED POWER (NSW) Pty Ltd"	15-Feb-08 07:12 PM	

+="CN61937"	"LAND ROVER PARTS"	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	15-May-08	11430.85	=""	="Land Rover Australiua"	18-Feb-08 10:46 AM	

+="CN61941"	"Printing of: NAT15634-6.2006 - FTC calculation worksheet."	="Australian Taxation Office"	18-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Feb-08	30-Mar-08	13959.00	=""	="Canprint Communications"	18-Feb-08 11:04 AM	

+="CN40316-A1"	"MOTOR VEHICLE"	="Office of the Official Secretary to the Governor-General"	18-Feb-08	="Motor vehicles"	21-Sep-07	30-Nov-07	14533.00	=""	="HIGH COUNTRY"	18-Feb-08 12:22 PM	

+="CN61969"	"KERP M&E - Mdm Chen Jielian"	="AusAid"	18-Feb-08	="Management advisory services"	04-Jun-07	30-Nov-07	10169.49	=""	="CHEN JIE LIAN"	18-Feb-08 12:43 PM	

+="CN62026"	"IAT Implementation Support Scoping Mission-Mark Borg"	="AusAid"	18-Feb-08	="Human resources services"	30-Jul-07	30-Sep-07	10800.05	=""	="BORG, MARK"	18-Feb-08 12:50 PM	

+="CN62042"	"Purchase of Task Chairs"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	14400.00	=""	="ERGONOMIC OFFICE PTY LTD"	18-Feb-08 12:52 PM	

+="CN62047"	"Committe Member - Accelerating Economic Growth RSC"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	12094.50	=""	="CAMERON, LISA"	18-Feb-08 12:53 PM	

+="CN62063"	"Contract: Bangladesh Academic Dr PETHERAM"	="AusAid"	18-Feb-08	="Human resources services"	07-Sep-07	16-Sep-07	12000.00	=""	="PETHERAM, R.J"	18-Feb-08 12:55 PM	

+="CN62072"	"Contract_Kathy McKenzie"	="AusAid"	18-Feb-08	="Human resources services"	17-Aug-07	31-Aug-07	10587.16	=""	="FIRE UP COACHING"	18-Feb-08 12:56 PM	

+="CN62079"	"ADRA External Commitee Member - HIV/AIDS RSC - Juliet Richters"	="AusAid"	18-Feb-08	="Management advisory services"	03-Sep-07	31-Dec-07	12094.50	=""	="RICHTERS, ASSOCIATE PROFESSOR JULIET"	18-Feb-08 12:57 PM	

+="CN62084"	"BRF Redesign - Sharon Menzies"	="AusAid"	18-Feb-08	="Management advisory services"	01-Sep-07	30-Oct-07	13526.73	=""	="NIMMO-BELL & COMPANY LIMITED"	18-Feb-08 12:58 PM	

+="CN62088"	"Tax Advisory Service for EINRIP"	="AusAid"	18-Feb-08	="Business administration services"	27-Aug-07	31-Oct-08	10265.45	=""	="PT PRIMA WAHANA CARAKA"	18-Feb-08 12:58 PM	

+="CN62092"	"ADRA Committee Member - Health RSC - UQ for Theo Vos"	="AusAid"	18-Feb-08	="Management advisory services"	05-Sep-07	31-Dec-07	11550.00	=""	="UNIVERSITY OF QUEENSLAND"	18-Feb-08 12:59 PM	

+="CN62098"	"Power Sector Short-Term Input - Phacelift Consulting Services Pty Ltd"	="AusAid"	18-Feb-08	="Utilities"	25-Sep-07	12-Oct-07	11949.01	=""	="PHACELIFT CONSULTING SERVICES PTY. LTD."	18-Feb-08 01:00 PM	

+="CN62101"	"Peter Smith Contracts Training Presentation SVP & ACT"	="AusAid"	18-Feb-08	="Vocational training"	26-Sep-07	31-Oct-07	13460.00	=""	="SMITH, PETER WILLIAM"	18-Feb-08 01:00 PM	

+="CN62102"	"ADRA Committee Chair - Environment RSC - Don Blackmore"	="AusAid"	18-Feb-08	="Management advisory services"	07-Sep-07	31-Dec-07	12589.50	=""	="BLACKMORE, DON"	18-Feb-08 01:00 PM	

+="CN62104"	"BEAM Review PFM Specialist - Ma Dulce Cacha"	="AusAid"	18-Feb-08	="Management advisory services"	15-Sep-07	26-Oct-07	13048.85	=""	="Cacha, Maria Dulce"	18-Feb-08 01:00 PM	

+="CN62105"	"Democratic Governance Program Strategy Mission: Stephen Sherlock"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Nov-07	13530.00	=""	="SHERLOCK, STEPHEN MARK"	18-Feb-08 01:00 PM	

+="CN62109"	"ADRA Committee Member - HIV/AIDS RSC - Doreen Rosenthal"	="AusAid"	18-Feb-08	="Management advisory services"	05-Sep-07	31-Dec-07	12094.50	=""	="DOREEN ROSENTHAL"	18-Feb-08 01:01 PM	

+="CN62115"	"Drivers of Change Issue Papers"	="AusAid"	18-Feb-08	="Writing and translations"	20-Sep-07	31-Oct-07	13200.00	=""	="WATERGALL CONSULTING LTD"	18-Feb-08 01:02 PM	

+="CN62125"	"HASMI - Review and Document Health System Issues in Papua and Papua Barat Provinces of Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	08-Oct-07	31-Dec-07	12481.60	=""	="HASMI"	18-Feb-08 01:03 PM	

+="CN62127"	"Short Term Consultant for SPHERE (E Pefianco)"	="AusAid"	18-Feb-08	="Management advisory services"	15-Oct-07	16-Nov-07	14171.63	=""	="SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION REGIONAL CENTER FOR EDUCATIONAL INNOVATION AND TECHNOLOGY (SEAMEO INNTOCH)"	18-Feb-08 01:03 PM	

+="CN62128"	"Dwi Handono - Review and Document Health System Issues in Papua and Papua Barat Provinces of Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	08-Oct-07	31-Dec-07	14996.32	=""	="HANDONO, DWI"	18-Feb-08 01:03 PM	

+="CN62135"	"Review of the Australia-Kiribati Country Program"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	14280.00	=""	="BENNETT, CATHERINE"	18-Feb-08 01:04 PM	

+="CN62157"	"SO Access Economics for Hughes to attend TAP for Accountability Mangager and Director"	="AusAid"	18-Feb-08	="Political systems and institutions"	01-Jul-07	30-Sep-07	12293.60	=""	="FOCUS ECONOMICS PTY LTD"	18-Feb-08 01:07 PM	

+="CN62162"	"Economics of Development PNG 6-7 September 2007"	="AusAid"	18-Feb-08	="Vocational training"	03-Sep-07	30-Sep-07	14841.20	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:08 PM	

+="CN62170"	"Tonga Fisheries Management Project - Technical Adviser"	="AusAid"	18-Feb-08	="Fisheries and aquaculture"	01-Jul-07	30-Jun-08	12457.50	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:09 PM	

+="CN62176"	"Workplan for Interim assistance to MOHLS - Solomon Islands"	="AusAid"	18-Feb-08	="Management advisory services"	19-Jun-07	31-Jul-07	10175.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62179"	"Tender Related Services"	="AusAid"	18-Feb-08	="Business administration services"	12-Jul-07	01-Sep-07	10703.00	=""	="ALLABURTON, ROBERT"	18-Feb-08 01:11 PM	

+="CN62201"	"Coffey M.P.W. Pty Limited"	="AusAid"	18-Feb-08	="Electronic reference material"	20-Aug-07	30-Jun-08	10304.58	=""	="COFFEY MPW PTY LTD"	18-Feb-08 01:14 PM	

+="CN62212"	"Initiative Management Training in Canberra - July 2007"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Sep-07	28-Sep-07	15827.90	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62227"	"Independent Appraisal of Cambodia Health Sector Engagement Strategy"	="AusAid"	18-Feb-08	="Human resources services"	31-Jul-07	30-Jun-09	10419.31	=""	="BISCOE, GILLIAN"	18-Feb-08 01:17 PM	

+="CN62229"	"Appraisal of Pakistan Health Strategy"	="AusAid"	18-Feb-08	="Comprehensive health services"	20-Nov-07	31-Dec-07	10341.00	=""	="BISCOE, GILLIAN"	18-Feb-08 01:18 PM	

+="CN62243"	"Lynn Pieper SFDI Design Appraisal"	="AusAid"	18-Feb-08	="Community and social services"	13-Jul-07	22-Aug-07	10170.18	=""	="PIEPER, LYNN AS TRUSTEE FOR PIEPER FAMILY TRUST"	18-Feb-08 01:19 PM	

+="CN62248"	"OAGDS Assessment Hands Across the Water"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	19-Nov-07	04-Feb-08	13555.30	=""	="TRUSCOTT, WILLIAM P"	18-Feb-08 01:20 PM	

+="CN62262"	"Mission for the Development of M&E System"	="AusAid"	18-Feb-08	="Management advisory services"	01-Feb-07	30-Jan-08	14196.80	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:22 PM	

+="CN62271"	"2007 PNG PRMP - Facilitation Consultant - EDG Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	10-Sep-07	05-Oct-07	12529.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:23 PM	

+="CN62279"	"Solomons trip"	="AusAid"	18-Feb-08	="Photographic services"	25-Jul-07	03-Aug-07	13459.38	=""	="WALKER, ROBERT KENNETH"	18-Feb-08 01:25 PM	

+="CN62280"	"fiji and vanuatu trip"	="AusAid"	18-Feb-08	="Marketing and distribution"	01-Aug-07	31-Aug-07	11243.90	=""	="WALKER, ROBERT KENNETH"	18-Feb-08 01:25 PM	

+="CN62282"	"AusAID 2010 Change Communication Strategy - Preparation"	="AusAid"	18-Feb-08	="Educational facilities"	29-May-07	31-Jul-07	13200.00	=""	="JUNIPER LEBIR PTY LTD & VERDEN ENT PTY LTD & EMILIANO BURZOTTO & SUSAN PARKER HORIZON PUBLIC RELATIONS &  MARKETING"	18-Feb-08 01:25 PM	

+="CN62283"	"PAF Rapid review Focus Groups"	="AusAid"	18-Feb-08	="Management advisory services"	02-Oct-07	02-Nov-07	15867.00	=""	="HORIZON COMMUNICATION GROUP PTY LTD"	18-Feb-08 01:25 PM	

+="CN62285"	"GRiD - ongoing design fees"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="GRID COMMUNICATIONS PTY LTD"	18-Feb-08 01:26 PM	

+="CN62288"	"Exhibition Centre - general admin service order"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	14-Mar-08	11000.00	=""	="THE EXHIBITION CENTRE PTY LTD"	18-Feb-08 01:26 PM	

+="CN62289"	"Exhibition Centre"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="THE EXHIBITION CENTRE PTY LTD"	18-Feb-08 01:26 PM	

+="CN62292"	"Managing Safe Water Field Manual printing"	="AusAid"	18-Feb-08	="Printed media"	20-Aug-07	03-Sep-07	10803.10	=""	="PIRION PTY LTD"	18-Feb-08 01:27 PM	

+="CN62293"	"Aid_Map"	="AusAid"	18-Feb-08	="Printed media"	01-Jul-07	30-Jun-08	11000.00	=""	="PIRION PTY LTD"	18-Feb-08 01:27 PM	

+="CN62304"	"Provison of Ad hoc Technical and Administrative Services"	="AusAid"	18-Feb-08	="Business administration services"	19-Sep-07	26-Sep-07	13200.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62313"	"TAP related financial services"	="AusAid"	18-Feb-08	="Accounting and auditing"	11-Sep-07	30-Sep-07	12309.00	=""	="JOWEE TRUST & LISMAR TRUST & MILOJO TRUST & SMERGI TRUST & THE TRUSTEE FOR SCOTT FAMILY TRUST T/A DEUSBURYS"	18-Feb-08 01:29 PM	

+="CN62340"	"HIV/AIDS Training in Jakarta 3 October 2007"	="AusAid"	18-Feb-08	="Alternative educational systems"	01-Oct-07	31-Oct-07	10945.00	=""	="MACFARLANE BURNET INSTITUTE FOR MEDICAL RESEARCH AND PUBLIC HEALTH LTD T/A BURNET INSTITUTE"	18-Feb-08 01:33 PM	

+="CN62358"	"2007 R&FMP Quality Assurance Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	30-Oct-07	10732.92	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:35 PM	

+="CN62376"	"Services Order Deborah Rhodes"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	31-Dec-07	12950.00	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62396"	"National Mailing and Marketing - general admin service order"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="NATIONAL MAILING & MARKETING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62408"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	15-Aug-06	30-Jun-08	15257.88	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62448"	"CCJAG - procurement of key team members"	="AusAid"	18-Feb-08	="Human resources services"	31-Aug-07	31-Oct-07	11000.00	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62502"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-00	31-Jan-08	11787.60	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:55 PM	

+="CN62512"	"Sonar Trials at Jervis Bay 3-14/12/2007, plus pre trial meeting on 8/11/2007"	="Geoscience Australia"	18-Feb-08	="Transportation and Storage and Mail Services"	07-Jan-08	14-Jan-08	13057.00	=""	="HELSCO Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62513"	"Consultancy Services Building Condition Index Review 2008"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	08-Jan-08	30-Jun-08	13255.00	=""	="Advance FM Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62518"	"RP00936 SOPAC Various"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	10-Jan-08	30-Jun-08	11181.72	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:54 PM	

+="CN62526"	"Consultation November to December 2007."	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	14-Jan-08	30-Jun-08	12017.50	=""	="Australian National University"	18-Feb-08 03:55 PM	

+="CN62528"	"RP - transcription of tapes consisting of 4688 x 3480 cartriges."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	11879.66	="2006/3933"	="SpectrumData"	18-Feb-08 03:55 PM	

+="CN62521"	"Motor Vehicle Parts."	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	18-Mar-08	12123.08	=""	="Mercedes Benz Aust. Pacific"	18-Feb-08 03:55 PM	

+="CN62533"	"4 x 4GB of RAM DDR1 memory"	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	01-Mar-08	13609.20	=""	="Anabelle Bits T/as ASI Solutions"	18-Feb-08 03:56 PM	

+="CN62535"	"ALOS derived Digital Elevation Model for ALOS Stereo Modelling pilot program - 17 January 2008 to 9 April 2008."	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	11000.00	=""	="Terranean Mapping Technologies"	18-Feb-08 03:56 PM	

+="CN62540"	"GEPS Australasia from Petroconsultants MAI Ltd an IHS company."	="Geoscience Australia"	18-Feb-08	="Printed publications"	18-Jan-08	31-Jan-08	10520.00	=""	="IHS Energy Group"	18-Feb-08 03:57 PM	

+="CN62542"	"6 x Sonnenchein A600 OPZV1700 Batteries"	="Geoscience Australia"	18-Feb-08	="Tools and General Machinery"	21-Jan-08	30-Jun-08	11085.43	=""	="M+H Power Systems Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62546"	"Palynostratigraphic analysis of core samples"	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	23-Jan-08	29-Feb-08	14410.00	=""	="Antiques ACT T/AS Consultant Palynological Services"	18-Feb-08 03:58 PM	

+="CN62548"	"Supply and install 17 System 55 suspended screens as per quote MG25/02062"	="Geoscience Australia"	18-Feb-08	="Real estate management services"	24-Jan-08	30-Jun-08	15190.00	=""	="Schiavello ACT Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62554"	"Relocation expenses - from Bordersholm, Germany to Curtin, ACT"	="Geoscience Australia"	18-Feb-08	="Personnel recruitment"	29-Jan-08	31-Mar-08	14231.00	=""	="Hasenkamp"	18-Feb-08 03:59 PM	

+="CN62555"	"Sample Analysis - Pollen Analysis"	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	29-Jan-08	31-Dec-08	11825.00	=""	="Australian National University"	18-Feb-08 03:59 PM	

+="CN62557"	"Employment of contract staff  - Admin and technical work"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	29-Jan-08	14-Mar-08	13750.00	=""	="Frontier Group Australia Pty Ltd"	18-Feb-08 03:59 PM	

+="CN62559"	"Core Boxes - GSO Box 650 x 500, GSO Lid 650 x 500, GSO Divider 650 x 1500, Long Core Box x 100."	="Geoscience Australia"	18-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Jun-08	15152.50	=""	="M J Samcore Pty Ltd"	18-Feb-08 03:59 PM	

+="CN62561"	"GeoS4 - 1. Quantitative yields of C1, C2-C5, C6-C14, C15+ and individual compounds."	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	31-Jan-08	30-Jun-08	10750.00	=""	="GeoS4 Gmbh"	18-Feb-08 04:00 PM	

+="CN62567"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	18-Feb-08	12112.56	=""	="CAIRNS BATTERY FACTORY"	18-Feb-08 05:10 PM	

+="CN62568"	"Procurement of:  LEVER,RELEASE,SMALL ARMS"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	18-Feb-08	15750.00	=""	="THALES AUSTRALIA - BENDIGO"	18-Feb-08 05:10 PM	

+="CN62569"	"Procurement of:  TERMINAL BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	02-Jan-08	15-Jun-08	11621.36	=""	="THALES AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62573"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,GATE;  PLUG,MACHINE THREAD"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	08-Apr-08	12659.64	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62580"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	10-Mar-08	13975.00	=""	="RFD TECHNOLOGIES Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62591"	"Procurement of:  COMPUTER SUBASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	04-Apr-08	10182.00	=""	="NOSKE-KAESER NZ Ltd"	18-Feb-08 05:13 PM	

+="CN62592"	"Procurement of:  DUMMY CONNECTOR ASSEMBLY,ELECTRICAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	16-Jun-08	15480.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62597"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	14-Oct-08	12211.78	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62599"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	14-Oct-08	10125.00	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62604"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	18-Feb-08	15400.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:14 PM	

+="CN62607"	"Procurement of:  PLATE,METAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	11-Apr-08	12918.72	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:15 PM	

+="CN62615"	"Procurement of:  BEACON,SONAR"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	12-Apr-08	15452.40	=""	="RFD TECHNOLOGIES Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62616"	"Procurement of:  SCUPPER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	12-Apr-08	15357.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	18-Feb-08 05:16 PM	

+="CN62618"	"Procurement of:  CABLE ASSEMBLY SET,FIBER OPTIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	08-Apr-08	12450.00	=""	="MILSPEC SERVICES Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62620"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	19-May-08	14680.00	=""	="RECORD MARINE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62622"	"Procurement of:  PRINTED WIRING BOARD"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	31-Jan-08	01-Nov-08	10326.96	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62629"	"Procurement of:  VALVE, TEST, CYLINDER COMPRESSION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	20-Mar-08	10335.30	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62636"	"Procurement of:  PARTS KIT,BALL VALVE;  REPAIR KIT,VALVE;  VALVE,BALL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	10984.05	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62640"	"Procurement of:  NET,RAILING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	28-Feb-08	11545.54	=""	="AUSTRALIAN NETMAKERS"	18-Feb-08 05:19 PM	

+="CN62643"	"Content management and on-going development of the ACSSA website"	="Australian Institute of Family Studies"	18-Feb-08	="Internet related services"	11-Feb-08	30-Jun-08	12750.00	=""	="W3 Consulting Pty Ltd"	18-Feb-08 05:30 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val16000to20000.xls
@@ -1,1 +1,183 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60736"	"Legal advice in relation to a business case"	="CrimTrac"	14-Feb-08	="Legal services"	13-Apr-07	30-Jun-08	20000.00	=""	="Australian Government Solicitor"	14-Feb-08 10:41 AM	

+="CN60737"	"Administrative Personnel"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	17-Oct-07	31-Dec-07	16000.00	=""	="Wizard Personnel  Office Services"	14-Feb-08 10:41 AM	

+="CN59810-A1"	"Furniture for Dandenong Registry"	="Family Court of Australia"	14-Feb-08	="Chairs"	12-Feb-08	30-Mar-08	16759.60	=""	="Jardan Australia Pty Ltd"	14-Feb-08 01:09 PM	

+="CN60781"	"Electricity charges UPS Room Oct 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Oct-07	31-Oct-07	17160.80	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60783"	"Electricity charges UPS Room Sep 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Sep-07	30-Sep-07	16060.35	=""	="ActewAGL"	14-Feb-08 02:47 PM	

+="CN60785"	"Electricity charges UPS Room Aug 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Aug-07	31-Aug-07	16025.41	=""	="ActewAGL"	14-Feb-08 02:48 PM	

+="CN60788"	"Electricity charges Oct/Nov 07"	="Austrade"	14-Feb-08	="Electric utilities"	01-Oct-07	30-Nov-07	17267.37	=""	="Energy Australia"	14-Feb-08 02:48 PM	

+="CN60792"	"Sydney Office Sep Switchboard Costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Sep-07	29-Sep-07	18640.01	=""	="Telstra"	14-Feb-08 02:48 PM	

+="CN60793"	"Sydney office Nov switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	29-Nov-07	17909.81	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60794"	"Canberra Sep Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	02-Oct-07	17363.82	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60799"	"Sydney office Aug switchboard costs"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	29-Aug-07	29-Aug-07	18690.72	=""	="Telstra"	14-Feb-08 02:49 PM	

+="CN60800"	"Canberra Jul Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Aug-07	01-Aug-07	18482.55	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60802"	"Canberra May Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jun-07	01-Jun-07	18555.49	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60804"	"Canberra Jan Domestica calls"	="Austrade"	14-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	01-Feb-08	16573.49	=""	="Telstra"	14-Feb-08 02:50 PM	

+="CN60829"	"Accommodation/Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	09-Aug-07	02-Feb-08	16498.00	=""	="ELDERS TERRITORY REAL ESTATE"	14-Feb-08 03:37 PM	

+="CN60834"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	13-Aug-07	01-Jun-10	17148.62	=""	="SALMAT  LIMITED"	14-Feb-08 03:38 PM	

+="CN60837"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	13-Aug-07	30-Jun-08	16558.50	=""	="HELP DESK ASSOCIATES"	14-Feb-08 03:38 PM	

+="CN60851"	"TRA Trade Tests 07/08 - Bne Nth Tafe"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Jun-08	18500.00	=""	="BRISBANE NORTH INSTITUTE OF TAFE"	14-Feb-08 03:40 PM	

+="CN60855"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	09-Aug-07	30-Sep-07	20000.00	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:40 PM	

+="CN60859"	""Access to Leadership,Learning&Developmen""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	16-Aug-07	17-Jan-08	18500.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 03:41 PM	

+="CN60871"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	20000.00	=""	="WRIDGWAYS THE REMOVALISTS"	14-Feb-08 03:42 PM	

+="CN60884"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	20000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60898"	"Security Vetting"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Jul-07	31-Oct-07	17000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 03:46 PM	

+="CN60901"	"Cabcharge"	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	30-Jul-07	30-Jun-08	17000.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 03:46 PM	

+="CN60905"	"Contract services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	31-Aug-07	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	14-Feb-08 03:47 PM	

+="CN60935"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	20000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 03:51 PM	

+="CN60946"	"security upgrade"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	06-Dec-07	16738.76	=""	="API Security Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60948"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	14-Dec-07	14-Dec-07	17600.00	=""	="B-Sec Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60949"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	02-Aug-07	30-Jun-08	16500.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 03:52 PM	

+="CN60953"	"NT Emergency Responce Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Aug-07	02-Aug-08	19040.00	=""	="DARWIN RENTAL SPECIALISTS"	14-Feb-08 03:53 PM	

+="CN60958"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	01-Dec-07	01-Dec-07	18630.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60959"	"UPGRADE WORKS TO PARLIAMENTAY TV FEED TO DEWR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	03-Aug-07	31-Aug-07	18000.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:53 PM	

+="CN60984"	"Fitout - 47 Mitchell St, Darwin (L5)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	10-Dec-07	31-Dec-07	18638.13	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 03:55 PM	

+="CN61000"	"OHS online training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	10-Sep-07	30-Jun-08	18000.00	=""	="WSP ENVIRONMENTAL PTY LTD"	14-Feb-08 03:57 PM	

+="CN61003"	"Car Parking Fees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Sep-07	21-Dec-07	19600.00	=""	="DELMEGE COMMERCIAL PTY LIMITED"	14-Feb-08 03:57 PM	

+="CN61019"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	31-Jan-08	30-Jun-08	16505.89	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61033"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	19965.00	=""	="STATSEEKER"	14-Feb-08 04:01 PM	

+="CN61045"	"6 months  staff property rental in Alice Springs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Aug-07	30-Jan-08	18020.00	=""	="FRAMPTON FIRST NATIONAL REAL ESTATE"	14-Feb-08 04:03 PM	

+="CN61040"	"Repair of F/A-18 Generator Converter Unit S/No 0904 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	14-Feb-08	="Aerospace systems and components and equipment"	14-Feb-08	31-Mar-08	16244.98	=""	="Goodrich Control Systems"	14-Feb-08 04:03 PM	

+="CN61060"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	17600.00	=""	="CONSULTING GROUP PTY LTD AS TRUSTEE"	14-Feb-08 04:05 PM	

+="CN61090"	"TRA Trades Expo - September 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	30-Aug-07	30-Oct-07	20000.00	=""	="TOUR HOSTS"	14-Feb-08 04:09 PM	

+="CN61094"	"Air charters for National Emergency Response"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="CHARTAIR"	14-Feb-08 04:09 PM	

+="CN61095"	"Air Charter for the NT National  Emergency  Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="AUSTRALASIAN JET (NT) AIRCRAFT CHAR"	14-Feb-08 04:09 PM	

+="CN61098"	""Conference costs: Venue Hire, Accommodation, meal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	05-Sep-07	18025.70	=""	="THE MARQUE HOTELS INTERNATIONAL"	14-Feb-08 04:10 PM	

+="CN61104"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	24-Aug-07	30-Jun-08	17114.92	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:11 PM	

+="CN61106"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	27-Aug-07	04-Nov-07	17500.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 04:11 PM	

+="CN61111"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:11 PM	

+="CN61120"	"Provision for driver trainig 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="SMART-NT"	14-Feb-08 04:13 PM	

+="CN61122"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	06-Jul-07	16500.00	=""	="SELECT WRITE RECRUITMENT SUPPORT"	14-Feb-08 04:13 PM	

+="CN61133"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-09	18000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:14 PM	

+="CN61138"	"Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	05-Jul-07	30-Jun-08	16368.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	14-Feb-08 04:15 PM	

+="CN61155"	"Ergonomic chairs (estimated exp FY07-08)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	16500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:17 PM	

+="CN61158"	"Provision for staff training NT 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:17 PM	

+="CN61175"	"Ergonomic chairs for workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:20 PM	

+="CN61181"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-09	20000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:20 PM	

+="CN61184"	"Contruction Safety Competency Framework"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Dec-07	18000.00	=""	="CRC FOR CONSTRUCTION INNOVATION"	14-Feb-08 04:21 PM	

+="CN61185"	"OFSC promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	14-Feb-08 04:21 PM	

+="CN61193"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	02-Jul-07	30-Jun-08	19250.00	=""	="BLUELINE SOFTWARE PTY LTD"	14-Feb-08 04:22 PM	

+="CN61194"	"OASCC security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61195"	"Security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	16000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61214"	"indoor plant hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	18487.00	=""	="LIVING SIMPLY"	14-Feb-08 04:25 PM	

+="CN61222"	"OFSC training courses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	20000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 04:26 PM	

+="CN61229"	"SWAW printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Jun-08	19000.00	=""	="INSTANT COLOUR PRESS"	14-Feb-08 04:26 PM	

+="CN61230"	"OFSC security assessments for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:27 PM	

+="CN61232"	"Courier Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	04-Jul-07	30-Jun-08	20000.00	=""	="DPS COURIERS"	14-Feb-08 04:27 PM	

+="CN61236"	"OFSC training and seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61237"	"WRS Recycling Bin Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	20000.00	=""	="RECALL SECURE DESTRUCTION SERVICES"	14-Feb-08 04:27 PM	

+="CN61241"	"First Aid training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	23-Jul-07	01-Jul-08	18000.00	=""	="ST JOHN AMBULANCE AUSTRALIA (ACT)"	14-Feb-08 04:28 PM	

+="CN61246"	"Pre-employment Exams 2007-2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Jun-08	16500.00	=""	="PREVENTATIVE MEDICINE &"	14-Feb-08 04:29 PM	

+="CN61255"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	19500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61291"	"SWAW storage costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	20000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:34 PM	

+="CN61298"	"General Audit Services - Service 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Jun-10	19976.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	14-Feb-08 04:35 PM	

+="CN61303"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Nov-10	20000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:36 PM	

+="CN61308"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Jul-07	30-Jun-08	17619.50	=""	="TONVIA P/L (Tony&Sylvia De Luca)"	14-Feb-08 04:36 PM	

+="CN61310"	"ERGONOMIC CHAIRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	13-Jul-07	30-Jun-08	19000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:37 PM	

+="CN61316"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:37 PM	

+="CN61318"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Jul-07	30-Jun-08	20000.00	=""	="CANPRINT COMMUNICATIONS PTY LTD"	14-Feb-08 04:38 PM	

+="CN61322"	"Subscription Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	11-Jul-07	30-Jun-08	17663.38	=""	="THOMSON LEGAL & REGULATORY LTD"	14-Feb-08 04:38 PM	

+="CN61330-A1"	"Management of Personnel Security Clearances follow-up audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Accounting services"	01-Dec-07	30-Jan-08	19800.00	=""	="Allanson Consulting Pty Ltd"	14-Feb-08 04:39 PM	

+="CN61333"	"Mail Services 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	12-Jul-07	30-Jun-08	17000.00	=""	="AUSTRALIA POST (SA ACCOUNT)"	14-Feb-08 04:39 PM	

+="CN61340-A1"	"Advice on Establishment and Management of the Communications Audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61343"	"Qualitative Research on AJS new project"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	12-Jul-07	26-Oct-07	17279.35	=""	="IPSOS AUSTRALIA PTY LTD"	14-Feb-08 04:40 PM	

+="CN61347"	"Subscriptions and purchase of Standards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	19600.00	=""	="SAI-GLOBAL LIMITED"	14-Feb-08 04:40 PM	

+="CN61350"	"Applied Financial Diagnostic Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	31-Oct-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61353"	"Subscriptions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	17-Jul-07	30-Jun-08	16400.00	=""	="SPECIALIST NEWSLETTERS"	14-Feb-08 04:40 PM	

+="CN61369-A1"	" Conduct scoping study for Call Centre service delivery - Centrelink "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	07-Dec-07	31-Jan-08	16590.00	=""	="Resolution Consulting Services"	14-Feb-08 04:42 PM	

+="CN61385-A1"	" Pre-brief of Illegal Unreported and Unregulated Fishing in the Southern Ocean Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	16-Nov-07	23-Nov-07	17325.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:43 PM	

+="CN61422"	" REPAIR AND OH OF BLACK HAWK PIPE EXHAUST SYSTEM. "	="Defence Materiel Organisation"	15-Feb-08	="Military rotary wing aircraft"	15-Feb-08	30-Jun-08	16402.69	=""	="SAAL"	15-Feb-08 10:25 AM	

+="CN61455"	"Contractor Costs"	="Department of Finance and Administration"	15-Feb-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	15-Feb-08	20000.00	="N/A"	="THE ONE UMBRELLA"	15-Feb-08 03:21 PM	

+="CN61488"	"Finance Services"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	16-Jan-09	16500.00	="N/A"	="SQUIZ.NET"	15-Feb-08 03:29 PM	

+="CN61514"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	16000.00	="TBA"	="CPT GLOBAL LIMITED"	15-Feb-08 03:32 PM	

+="CN61520"	"Staff Medicals Vic"	="Centrelink"	15-Feb-08	="Human resources services"	16-Nov-07	30-Jun-08	16500.00	=""	="MLCOA"	15-Feb-08 03:42 PM	

+="CN61529"	"External Training"	="Centrelink"	15-Feb-08	="Vocational training"	04-Jan-08	30-Jun-08	17225.00	=""	="Navybridge Pty Ltd"	15-Feb-08 03:43 PM	

+="CN61530-A1"	"Recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	07-Jan-08	30-Jun-08	16500.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:43 PM	

+="CN61545-A1"	"Access Control System maintenance"	="Centrelink"	15-Feb-08	="Security surveillance and detection"	06-Jul-07	30-Jun-08	16500.00	=""	="Chubb Electronic Security"	15-Feb-08 03:45 PM	

+="CN61550"	"fitout fees for Byron Bay NSW refurbishment"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Jan-08	30-Jun-08	19648.75	=""	="Interior Dynamics Australia Pty Ltd"	15-Feb-08 03:46 PM	

+="CN61565"	"Healthcare Services"	="Centrelink"	15-Feb-08	="Healthcare Services"	08-Jan-08	30-Jun-08	16500.00	=""	="Chromis Occupational Medicine"	15-Feb-08 03:48 PM	

+="CN61577"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	14-Jan-08	30-Jun-08	20000.00	=""	="Chartair Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61604"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	15-Jan-08	12-Jul-08	19847.97	=""	="ComPro Solutions Pty Ltd"	15-Feb-08 03:53 PM	

+="CN61610"	"Market research - Centrelink National Customer Survey"	="Centrelink"	15-Feb-08	="Marketing and distribution"	14-Jan-08	31-Jan-08	17340.00	=""	="DBM Consultants Pty Ltd"	15-Feb-08 03:54 PM	

+="CN61613"	"Cyclone George Fence Repairs"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jan-08	24-Jan-08	17600.00	=""	="Pilbara Supervision and Consulting Se"	15-Feb-08 03:54 PM	

+="CN61624"	"sigange for new Caboolture Centrelink QLD"	="Centrelink"	15-Feb-08	="Signage and accessories"	25-Jan-08	30-Jun-08	19494.74	=""	="Signworld Sunshine Coast"	15-Feb-08 03:56 PM	

+="CN61665-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	14-Jan-08	14-Jan-08	18000.00	="06/18397"	="Clicks Recruit Pty Ltd"	15-Feb-08 04:38 PM	

+="CN61666-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	14-Jan-08	23-Feb-08	17028.00	="06/18394"	="Face 2 Face Recruitment Pty Limited"	15-Feb-08 04:39 PM	

+="CN61678"	"Training"	="Attorney-General's Department"	15-Feb-08	="Education and Training Services"	30-Jan-08	30-Jan-08	19050.00	=""	="Sydney Harbour Marriott Hotel"	15-Feb-08 04:40 PM	

+="CN61687"	"Goods and Services"	="Attorney-General's Department"	15-Feb-08	="Motion pictures on digital video disk DVD"	25-Jan-08	30-May-08	19195.02	=""	="Victoria Police"	15-Feb-08 04:41 PM	

+="CN61708"	"Printing Services"	="Attorney-General's Department"	15-Feb-08	="Advertising"	16-Dec-07	19-Dec-07	17845.50	=""	="National Mailing & Marketing"	15-Feb-08 04:44 PM	

+="CN61716"	"Relocation Charges"	="Attorney-General's Department"	15-Feb-08	="Relocation services"	03-Jan-08	30-Jan-08	16885.00	=""	="PREMIER OFFICE RELOCATIONS (NSW)"	15-Feb-08 04:45 PM	

+="CN61721"	"Administration Charges"	="Attorney-General's Department"	15-Feb-08	="Administrative fees or tax collection services"	11-Jan-08	31-Aug-08	16500.00	=""	="Department of Employment & Workplac"	15-Feb-08 04:46 PM	

+="CN61722"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Staff recruiting services"	26-Dec-07	31-Dec-08	16406.50	=""	="Professional Careers Aust P/L"	15-Feb-08 04:46 PM	

+="CN61724"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	30-Nov-07	31-Dec-18	19811.00	="06#195748DOC"	="Australian Government Solicitor"	15-Feb-08 04:46 PM	

+="CN61727"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	27-Dec-07	30-Jul-08	19762.60	=""	="Australian Government Solictor"	15-Feb-08 04:47 PM	

+="CN61728"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Budget preparation or review services"	15-Jan-08	31-Jul-10	18964.00	="07/16757 - TRIM NO."	="Deloitte Touche Tohmatsu"	15-Feb-08 04:47 PM	

+="CN61761"	"IBM X61 T7250"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	08-Feb-08	07-Mar-08	19673.50	="2008/00892"	="Chapelli Unlimited Pty Ltd"	15-Feb-08 05:08 PM	

+="CN61767-A1"	"Community Broadcasting Foundation"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	30-Jun-08	18700.00	="ATM07/350"	="COMMUNITY BROADCASTING FOUNDATION"	15-Feb-08 05:09 PM	

+="CN61771"	"Backing indigenous ability"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	20-Aug-07	30-Jun-08	16681.40	="DCON/06/45"	="Clayton Utz"	15-Feb-08 05:09 PM	

+="CN61782"	"Vehicle Repair"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	06-Jul-06	03-Aug-06	18464.52	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 06:56 PM	

+="CN61786"	"Vehicle Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	24-Jul-06	02-Sep-06	16235.15	=""	="DAIMLER CHRYSLER AUSTRALIA"	15-Feb-08 06:56 PM	

+="CN61789"	"Vehicle Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	26-Jul-06	08-Aug-06	19841.79	=""	="VOLVO COMMERCIAL VEHICLES"	15-Feb-08 06:57 PM	

+="CN61791"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	11-Aug-06	30-Aug-06	16347.10	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 06:57 PM	

+="CN61808"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	16-Oct-06	22-Nov-06	18499.34	=""	="THALES AUSTRALIA"	15-Feb-08 06:59 PM	

+="CN61813"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	17-Oct-06	23-Dec-06	16210.00	=""	="HAULMARK TRAILERS AUSTRALIA"	15-Feb-08 07:00 PM	

+="CN61823"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	03-Nov-06	21-Jul-07	16615.73	=""	="THALES AUSTRALIA"	15-Feb-08 07:01 PM	

+="CN61828"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	13-Nov-06	04-Feb-07	19793.92	=""	="VOLVO COMMERCIAL VEHICLES"	15-Feb-08 07:02 PM	

+="CN61838"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	21-Nov-06	28-Dec-06	17245.92	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61848"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	04-Dec-06	02-Mar-07	16455.69	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:04 PM	

+="CN61864"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	20-Dec-06	12-Aug-07	19887.86	=""	="THALES AUSTRALIA"	15-Feb-08 07:06 PM	

+="CN61867"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	09-Jan-07	09-Mar-07	17502.63	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:06 PM	

+="CN61874"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	18-Jan-07	23-May-07	16416.10	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61891"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Feb-07	20-Apr-07	16514.24	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61898"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	13-Mar-07	27-Apr-07	19565.91	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:10 PM	

+="CN61901"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	17-Apr-07	13-Jul-07	18304.00	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61903"	"spare parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	30-Apr-07	13-Jul-07	16995.00	=""	="FORDHAM ENGINEERING Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61904"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-May-07	29-Jul-07	17832.47	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61909"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	06-Jun-07	12-Aug-07	16279.93	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61975"	"Leadership Workshop at ALAS 2007 Leadership Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	23-Jul-07	31-Aug-07	16500.00	=""	="BENEVOLENT SOCIETY, THE"	18-Feb-08 12:43 PM	

+="CN61990"	" NSN 1660/00-956-4032  REPAIR/OVERHAUL OF REGULATOR, O, YGEN  EX GST "	="Defence Materiel Organisation"	18-Feb-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17675.68	=""	="John Holland Aviation Services"	18-Feb-08 12:46 PM	

+="CN62003"	"Medium Term Expenditure Framework"	="AusAid"	18-Feb-08	="Educational institutions"	04-Jul-07	31-Dec-07	18700.00	=""	="WATERGALL CONSULTING LTD"	18-Feb-08 12:47 PM	

+="CN62018"	" NSN 1660/00-956-4032  REPAIR/OVERHAUL OF REGULATOR, O, YGEN  EX GST "	="Defence Materiel Organisation"	18-Feb-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17675.68	=""	="John Holland Aviation Services"	18-Feb-08 12:50 PM	

+="CN62041"	"Temporary AIPRD Program Manager FY 2007/2008"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	20-Oct-07	17050.00	=""	="FULLER, KATE MARIANNE"	18-Feb-08 12:52 PM	

+="CN62057"	"Contract for Solomon Islands Ranking of Scholarships Application"	="AusAid"	18-Feb-08	="Educational facilities"	01-Jul-07	30-Jun-10	17114.86	=""	="SOUTH PACIFIC BOARD FOR EDUCATIONAL ASSESSMENT"	18-Feb-08 12:54 PM	

+="CN62073"	"Democratic Governance Program Strategy Mission: Dr Frank Feulner"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Nov-07	16063.35	=""	="FEULNER, FRANK"	18-Feb-08 12:56 PM	

+="CN62077"	"MId Trem Review of ACRP - Nick"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Nov-07	17653.28	=""	="BRIDGER, NICHOLAS"	18-Feb-08 12:57 PM	

+="CN62081"	"Risk Management Advisory Indonesia 07/08"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Jul-07	30-Jun-08	19500.00	=""	="RISK MANAGEMENT ADVISORY INDONESIA"	18-Feb-08 12:57 PM	

+="CN62086"	"Independent Completion Report for HARAP - Pudjirahardjo, dr Widodo J"	="AusAid"	18-Feb-08	="Community and social services"	15-Aug-07	31-Oct-07	16684.05	=""	="PUDJIRAHARDJO, WIDODO J."	18-Feb-08 12:58 PM	

+="CN62090"	"Review of Whole of Government Briefings for Overseas Deployment"	="AusAid"	18-Feb-08	="Information services"	30-Aug-07	31-Mar-08	19415.00	=""	="UPTON MARTIN AND ASSOC UNIT TRUST"	18-Feb-08 12:58 PM	

+="CN62097"	"Power Sector Short-Term Input - Barry Trembath"	="AusAid"	18-Feb-08	="Utilities"	23-Sep-07	30-Mar-08	18880.01	=""	="TREMBATH, BARRY"	18-Feb-08 12:59 PM	

+="CN62119"	"Miller Aviation Partners (CAPA Consulting) - Aviation background"	="AusAid"	18-Feb-08	="Economics"	15-Oct-07	31-Oct-07	19250.00	=""	="MILLER AVIATION PARTNERS PTY LTD"	18-Feb-08 01:02 PM	

+="CN62142"	"Review of Copra Industry and Commodities Marketing - Team Leader"	="AusAid"	18-Feb-08	="Management advisory services"	05-Nov-07	31-Jan-08	16248.44	=""	="HOPA, DAVID"	18-Feb-08 01:05 PM	

+="CN62144"	"PNG Electoral Support Program - Six Monthly Contractor Performance Review -Tanorama"	="AusAid"	18-Feb-08	="Management advisory services"	29-Oct-07	07-Dec-07	18768.13	=""	="BRASH, MARTIN E"	18-Feb-08 01:05 PM	

+="CN62178"	"TA for Establishing the OACC - Dr Alex Taylor"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	30-Oct-07	18271.00	=""	="BRISBANE CITY ENTERPRISES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62216"	"Hassall & Associates Pty Ltd - Service Order District Health Planning Mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Sep-07	31-Oct-07	20000.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62217"	"Azwar Hasan_National Governance Advisor_HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	20-Oct-07	30-Jan-08	18436.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62235"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	31-Oct-07	18805.60	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:18 PM	

+="CN62263"	"Martine Van de Velde - Presentation on M&E framework at AusAID/WB Conference and the MWG (Nov 07)."	="AusAid"	18-Feb-08	="International relations"	06-Nov-07	30-Nov-07	18069.53	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:22 PM	

+="CN62276"	"ACFID - Funding for East Timor NGO Forum"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	31-Jul-07	31-Aug-07	16720.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62281"	"Photographic assignment in Kirbati & Nauru"	="AusAid"	18-Feb-08	="Printed media"	14-Jun-07	31-Aug-07	17332.92	=""	="LORRIE GRAHAM PHOTOGRAPHER PTY LTD"	18-Feb-08 01:25 PM	

+="CN62287"	"Swell"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	19759.30	=""	="SWELL DESIGN GROUP PTY LTD"	18-Feb-08 01:26 PM	

+="CN62305"	"Probity Audit - Solomon Islands Public Sector Improvement Program (PSIP)"	="AusAid"	18-Feb-08	="Human resources services"	18-May-07	18-Jun-07	16494.39	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:28 PM	

+="CN62374"	"Review of Vanuatu Kastom Governance Partnership"	="AusAid"	18-Feb-08	="Vocational training"	25-Aug-07	17-Sep-07	18396.40	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62437"	"Recruitment of Customs Adviser"	="AusAid"	18-Feb-08	="Human resources services"	24-Sep-07	31-Dec-07	17050.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62475"	"2009 Indonesia Elections Support Scoping and Strategy Study"	="AusAid"	18-Feb-08	="Business administration services"	19-Mar-07	30-Nov-07	18920.00	=""	="WHELAN, PHIL R"	18-Feb-08 01:52 PM	

+="CN62484"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-May-07	30-Sep-07	17732.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN40312"	"BUILDING MAINTENANCE"	="Office of the Official Secretary to the Governor-General"	18-Feb-08	="Building construction and support and maintenance and repair services"	25-Oct-07	25-Nov-07	19714.75	=""	="BESSELINK MASTER PAINTERS PTY LTD"	18-Feb-08 03:04 PM	

+="CN62517"	"G1821 Travel  support  and per diem for Simon Cox as part of CSIRO contributions towards report to  OGC/ISO Joint Advisory Group   held in Italy, 10-14 Dec 07"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	10-Jan-08	30-Jan-08	18857.27	=""	="CSIRO"	18-Feb-08 03:54 PM	

+="CN62519"	"RP00936 80% payment to Guardian Data Transcripton of tapes"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	10-Jan-08	30-Jun-08	18049.68	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:54 PM	

+="CN62525"	"Leica GS20 Differential GPS and accessories."	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	14-Jan-08	31-Jan-08	16005.00	=""	="Johnny Appleseed GPS"	18-Feb-08 03:55 PM	

+="CN62529"	"RP00901 Transcription of 45 x 3590 cartridges."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	16076.50	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:55 PM	

+="CN62558"	"Supply and install glazed partitioning Level 2 NE Quadrant."	="Geoscience Australia"	18-Feb-08	="Real estate management services"	29-Jan-08	30-Jun-08	19756.00	=""	="Skilled Group Limited"	18-Feb-08 03:59 PM	

+="CN62570"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	28-Apr-08	19180.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	18-Feb-08 05:10 PM	

+="CN62572"	"Procurement of:  TEST KIT,OIL CONDITION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	26-Feb-08	17225.00	=""	="OWEN INTERNATIONAL Pty Ltd"	18-Feb-08 05:10 PM	

+="CN62576"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	08-Apr-08	16662.32	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62586"	"Procurement of:  TRANSMITTER,TEMPERATURE,ELECTRICAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	05-Mar-08	16446.20	=""	="MAN DIESEL AUSTRALIA Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62593"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	18-Feb-08	18492.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62598"	"Procurement of:  LOUDSPEAKER-MICROPHONE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	18-Feb-08	19500.00	=""	="TR CORPORATION Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62606"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	21-Jan-08	18-Feb-08	18077.25	=""	="ROCKWELL AUTOMATION AUST Ltd"	18-Feb-08 05:14 PM	

+="CN62613"	"Procurement of:  VALVE,CHECK"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	14-May-08	16277.28	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:15 PM	

+="CN62619"	"Procurement of:  ADAPTOR,SNIB;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	16-Jun-08	16754.00	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62627"	"Procurement of:  GUARD,MECHANICAL DRIVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	09-Jan-08	08-Apr-08	19213.60	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62628"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	15-Oct-08	19395.18	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:17 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val20000to30000.xls
@@ -1,1 +1,297 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60736"	"Legal advice in relation to a business case"	="CrimTrac"	14-Feb-08	="Legal services"	13-Apr-07	30-Jun-08	20000.00	=""	="Australian Government Solicitor"	14-Feb-08 10:41 AM	

+="CN60746"	"2 SQL servers"	="CrimTrac"	14-Feb-08	="Computer servers"	15-Jan-08	23-Jan-08	20611.67	=""	="Infront Systems Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60752"	"Printer paper"	="CrimTrac"	14-Feb-08	="Office supplies"	04-Jan-08	30-Jun-08	21945.28	=""	="Toner Express"	14-Feb-08 10:43 AM	

+="CN60776"	"Server Bundles"	="Family Court of Australia"	14-Feb-08	="Computer servers"	24-Dec-07	23-Jan-08	20916.00	=""	="IBM"	14-Feb-08 01:47 PM	

+="CN60809"	"Development and integration of online Learning Modules"	="Austrade"	14-Feb-08	="Education and Training Services"	20-Dec-07	21-Feb-08	20470.00	=""	="Elcom Technology Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60826"	"Supply of mobile phones and PDA handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	22000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60827"	"Supply of mobile phones and PDA handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	22000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60833"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	13-Aug-07	31-Aug-07	20213.28	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:38 PM	

+="CN60843"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	07-Aug-07	30-Jun-08	20900.00	=""	="COMPUTERCORP PTY LTD"	14-Feb-08 03:39 PM	

+="CN60850"	"Food Manufacturing WP Flexibility"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Oct-07	25000.00	=""	="NORCO CO-OPERATIVE LTD"	14-Feb-08 03:40 PM	

+="CN60852"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Nov-10	21125.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:40 PM	

+="CN60855"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	09-Aug-07	30-Sep-07	20000.00	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:40 PM	

+="CN60866"	"Professional Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	30000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60867"	"Property - AGS Lease premises"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	16-Aug-07	30-Jun-08	20100.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60871"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	20000.00	=""	="WRIDGWAYS THE REMOVALISTS"	14-Feb-08 03:42 PM	

+="CN60881"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	22-Nov-07	30-Jun-08	22000.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60884"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	20000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60905"	"Contract services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Jul-07	31-Aug-07	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	14-Feb-08 03:47 PM	

+="CN60913"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	30000.00	=""	="LIVING SIMPLY"	14-Feb-08 03:48 PM	

+="CN60927"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Nov-10	23573.28	=""	="SELECT APPOINTMENTS"	14-Feb-08 03:50 PM	

+="CN60928"	"Rental for Property"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Aug-07	07-Aug-08	29120.00	=""	="RAINE & HORNE DARWIN"	14-Feb-08 03:50 PM	

+="CN60935"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	20000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 03:51 PM	

+="CN60944"	"DEWR Garema Court HQ AV - audio equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	01-Aug-07	06-Aug-07	26400.00	=""	="SOUND ADVICE"	14-Feb-08 03:52 PM	

+="CN60945"	"Records Storage Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	01-Aug-07	30-Dec-07	22999.44	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	14-Feb-08 03:52 PM	

+="CN60956"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	20605.55	=""	="ISIS Projects Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60960"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	25161.00	=""	="MCR Computer Resources Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60964"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Education and Training Services"	13-Dec-07	13-Dec-07	24960.00	=""	="Nu Solutions Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60966"	"Stationary"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	19-Dec-07	20660.65	=""	="Office National - Head Office"	14-Feb-08 03:53 PM	

+="CN60968"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Engineering and Research and Technology Based Services"	04-Dec-07	04-Dec-07	29053.00	=""	="Open Mind Research Group Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60973"	"Scribe services for broadband 2 positions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Oct-07	31-Oct-07	25000.00	=""	="RMC- RECRUITMENT MANAGEMENT"	14-Feb-08 03:54 PM	

+="CN60974"	"Software Liscence Agreement"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	21-Dec-07	21-Dec-07	24975.00	=""	="QAS Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60981"	"Executive fellows Programme 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	12-Oct-07	30-Nov-07	24530.00	=""	="AUST & NEW Z/LAND SCHOOL OF GOV"	14-Feb-08 03:55 PM	

+="CN60989"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	21035.30	="TBA"	="INSIGHT ENTERPRISES AUST P/L"	14-Feb-08 03:56 PM	

+="CN60992"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Dec-07	30-Jun-08	20725.36	="TBA"	="TELSTRA (VIC)"	14-Feb-08 03:56 PM	

+="CN60994"	""PropNSWSydney255ElizabethSt(12,13&15)""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	31-Aug-07	31-Dec-15	25000.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:56 PM	

+="CN60995"	"Hire temporary staff through Hays Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	31-Aug-07	01-Jan-08	21000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:56 PM	

+="CN61002"	"Printing for workplace relations campaign"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	17-Sep-07	02-Nov-07	28325.00	=""	="AVANT CARD"	14-Feb-08 03:57 PM	

+="CN61006"	"Reed Construction Data annual subscription"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	28-Sep-07	30-Jun-08	24640.00	=""	="REED EXHIBITIONS AUSTRALIA"	14-Feb-08 03:58 PM	

+="CN61011"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	14-Jan-08	30-Jun-08	27927.90	=""	="QUANTUM TECHNOLOGY"	14-Feb-08 03:59 PM	

+="CN61022"	"Subscription Renewal"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Feb-08	30-Jun-08	20370.37	="TBA"	="OPEN SYSTEMS PTY LTD"	14-Feb-08 04:00 PM	

+="CN61058"	"Contract for staff coaching"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	22-Aug-07	31-Dec-07	27000.00	=""	="VT COACH PTY LTD"	14-Feb-08 04:05 PM	

+="CN61071"	"Conference facilities and room hire for"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	02-Sep-07	28341.00	=""	="VOYAGES HOTELS AND RESORTS"	14-Feb-08 04:06 PM	

+="CN61073"	"enviro bags"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	20-Aug-07	26026.00	=""	="CLAYTONS AUSTRALIA"	14-Feb-08 04:07 PM	

+="CN61084"	"Accommodation rental for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	23-Aug-09	27600.00	=""	="COLLIERS INTERNATIONAL (NT) PTY LTD"	14-Feb-08 04:08 PM	

+="CN61086"	""DEWR Fitout at 80 Mitchell St, Darwin (L2)""	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	29-Aug-07	30-Jun-08	23005.29	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:08 PM	

+="CN61090"	"TRA Trades Expo - September 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	30-Aug-07	30-Oct-07	20000.00	=""	="TOUR HOSTS"	14-Feb-08 04:09 PM	

+="CN61094"	"Air charters for National Emergency Response"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="CHARTAIR"	14-Feb-08 04:09 PM	

+="CN61095"	"Air Charter for the NT National  Emergency  Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	23-Aug-07	30-Jun-08	20000.00	=""	="AUSTRALASIAN JET (NT) AIRCRAFT CHAR"	14-Feb-08 04:09 PM	

+="CN61096"	"Scribe Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	30000.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	14-Feb-08 04:10 PM	

+="CN61101"	"Staff accommodation  for National Emergency Plan"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	07-Sep-09	23520.00	=""	="DARWIN RENTAL SPECIALISTS"	14-Feb-08 04:10 PM	

+="CN61105"	"Managment Fee - August 2007"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Aug-07	31-Aug-07	26460.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:11 PM	

+="CN61108"	""Lease:  Office rent, Australian Embassy,""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	05-Jul-07	30-Jun-09	21530.72	=""	="UNITED GROUP SERVICES*BLOCKED*"	14-Feb-08 04:11 PM	

+="CN61110"	"Cost recovery for Fringe Benefits Tax"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	05-Jul-07	23947.55	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	14-Feb-08 04:11 PM	

+="CN61111"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	05-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:11 PM	

+="CN61120"	"Provision for driver trainig 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="SMART-NT"	14-Feb-08 04:13 PM	

+="CN61121"	"Translating and Interpreting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Jul-07	30-Jun-08	25000.00	=""	="DIMIA - TIS NATIONAL CENTRE"	14-Feb-08 04:13 PM	

+="CN61140"	"CONTRACTOR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	31-Oct-07	21313.00	=""	="HAYS OFFICE SUPPORT"	14-Feb-08 04:15 PM	

+="CN61141"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	30-Nov-10	30000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:15 PM	

+="CN61157"	"Office Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	06-Jul-07	31-Jul-07	28472.18	=""	="DEPT OF HUMAN SERVICES"	14-Feb-08 04:17 PM	

+="CN61158"	"Provision for staff training NT 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:17 PM	

+="CN61164"	"IES Job Seeker Mailout Postage"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	06-Jul-07	30-Aug-07	27114.68	=""	="AUSTRALIA POST (ACT 9397355)"	14-Feb-08 04:18 PM	

+="CN61175"	"Ergonomic chairs for workstation assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:20 PM	

+="CN61181"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-09	20000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:20 PM	

+="CN61183"	"SME OHS Assistance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	31-Jul-07	26345.00	=""	="RMIT UNIVERSITY"	14-Feb-08 04:21 PM	

+="CN61185"	"OFSC promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	14-Feb-08 04:21 PM	

+="CN61189"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Nov-07	22000.00	=""	="J S MCMILLAN PTY LTD"	14-Feb-08 04:21 PM	

+="CN61194"	"OASCC security vetting for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:22 PM	

+="CN61196"	"course fee"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	02-Jul-07	30-Jun-08	25154.50	=""	="READIFY PTY LTD"	14-Feb-08 04:22 PM	

+="CN61200"	"VIC TRA Australia Post Bulk PO"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	02-Jul-07	30-Jun-08	25000.00	=""	="AUSTRALIA POST (VIC)  9992771 TRA"	14-Feb-08 04:23 PM	

+="CN61202"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	03-Jul-07	30-Jun-08	23628.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:23 PM	

+="CN61205"	"SWAW advertising for 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Jun-08	27000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:23 PM	

+="CN61209"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	04-Jul-07	30-Sep-08	22000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:24 PM	

+="CN61218"	"Devel'ment of Model Client Process Guide"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	30-Sep-07	28198.50	=""	="RMIT UNIVERSITY"	14-Feb-08 04:25 PM	

+="CN61220"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	24000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:25 PM	

+="CN61222"	"OFSC training courses"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	20000.00	=""	="ACORN TRAINING & CONSULTANCY"	14-Feb-08 04:26 PM	

+="CN61230"	"OFSC security assessments for staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Jul-07	30-Jun-08	20000.00	=""	="KVS KEY VETTING SERVICES"	14-Feb-08 04:27 PM	

+="CN61232"	"Courier Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	04-Jul-07	30-Jun-08	20000.00	=""	="DPS COURIERS"	14-Feb-08 04:27 PM	

+="CN61236"	"OFSC training and seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	20000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61237"	"WRS Recycling Bin Hire 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	04-Jul-07	30-Jun-08	20000.00	=""	="RECALL SECURE DESTRUCTION SERVICES"	14-Feb-08 04:27 PM	

+="CN61238"	"Ergonomic Chairs after Workplace Assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	11-Jul-07	30-Jun-08	23500.00	=""	="MCNALLYS FURNITURE & UPHOLSTERY"	14-Feb-08 04:28 PM	

+="CN61245"	"Printing"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	23-Jul-07	01-Jul-08	25000.00	=""	="MCDONALD PRINTING GROUP"	14-Feb-08 04:28 PM	

+="CN61248"	"Workstation Assessments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	30-Jun-08	26365.75	=""	="SRC SOLUTIONS PTY LTD"	14-Feb-08 04:29 PM	

+="CN61256"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	22821.30	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61262"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Dec-07	30-Jun-08	27200.00	=""	="TARAKAN CONSULTING PTY LTD"	14-Feb-08 04:31 PM	

+="CN61272"	"Management Fee - JULY07"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	25-Jul-07	31-Jul-07	26460.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:32 PM	

+="CN61285"	"Comcar"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	30000.00	=""	="COMCAR"	14-Feb-08 04:33 PM	

+="CN61291"	"SWAW storage costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	24-Jul-07	30-Jun-08	20000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:34 PM	

+="CN61293"	"Provision for RAE Interpreter Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	30000.00	=""	="INSTITUTE FOR ABORIGINAL DEVELOPMEN"	14-Feb-08 04:34 PM	

+="CN61302"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Nov-10	25000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:35 PM	

+="CN61303"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Nov-10	20000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:36 PM	

+="CN61307"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Jul-07	30-Jun-08	25597.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:36 PM	

+="CN61315"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	16-Jul-07	19-Dec-11	30000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:37 PM	

+="CN61316"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	16-Jul-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:37 PM	

+="CN61318"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	16-Jul-07	30-Jun-08	20000.00	=""	="CANPRINT COMMUNICATIONS PTY LTD"	14-Feb-08 04:38 PM	

+="CN61329"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	12-Jul-07	30-Nov-10	27340.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:39 PM	

+="CN61335"	"Seminars and Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	12-Jul-07	12-Jul-07	27000.00	=""	="GARTNER AUSTRALASIA PTY LTD"	14-Feb-08 04:39 PM	

+="CN61340-A1"	"Advice on Establishment and Management of the Communications Audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61341"	"SCOPE Software Maintenance - Corporate Licence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	12-Jul-07	30-Jun-08	26788.30	=""	="TOTAL METRICS"	14-Feb-08 04:40 PM	

+="CN61350"	"Applied Financial Diagnostic Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	31-Oct-08	20000.00	=""	="Applied Financial Diagnostics"	14-Feb-08 04:40 PM	

+="CN61355"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	17-Jan-09	25000.00	=""	="DELOITTE TOUCHE TOHMATSU- SYDNEY"	14-Feb-08 04:41 PM	

+="CN61363"	"IT Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	17-Jul-07	30-Jun-08	20172.74	=""	="TOWER SOFTWARE"	14-Feb-08 04:41 PM	

+="CN61368"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	18-Jul-07	30-Jun-08	25000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:41 PM	

+="CN61373-A1"	"One NAS ITB Data Storage Device for IT Network Storage"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Computer accessories"	08-Feb-08	31-Mar-08	24930.00	=""	="Infront Systems Pty Limited"	14-Feb-08 04:42 PM	

+="CN61392"	"Recruitment and training services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	16-Jul-07	30-Dec-07	28000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:44 PM	

+="CN61401-A1"	" EDRMS Project 2007-08 Termsite Support "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Software maintenance and support"	30-Apr-07	12-May-07	21417.00	=""	="Trinogy Systems Pty Ltd"	14-Feb-08 04:44 PM	

+="CN61403"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	31-May-12	20750.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 04:44 PM	

+="CN61428"	"repair and oh of Black Hawk Support Assy."	="Defence Materiel Organisation"	15-Feb-08	="Military rotary wing aircraft"	15-Feb-08	30-Jun-08	22028.18	=""	="SAAL"	15-Feb-08 11:01 AM	

+="CN60697"	"Fee for Services"	="Attorney-General's Department"	15-Feb-08	="National Defence and Public Order and Security and Safety Services"	13-Dec-07	30-Jun-08	30000.00	=""	="Kibbey Laison Services"	15-Feb-08 11:26 AM	

+="CN61430"	" Course on Time Management "	="Australian Taxation Office"	15-Feb-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Mar-08	29010.00	="07.256"	="BSILearning"	15-Feb-08 11:44 AM	

+="CN61446"	"Research review on the use of survey results for effectiveness measures."	="Australian Taxation Office"	15-Feb-08	="Business and corporate management consultation services"	21-Dec-07	30-Apr-08	23870.00	=""	="DBM Consultants Pty Ltd"	15-Feb-08 03:13 PM	

+="CN61449"	"Capital Expenditure - Plant & Equipment"	="Department of Finance and Administration"	15-Feb-08	="Office Equipment and Accessories and Supplies"	14-Dec-07	31-Jan-08	20273.00	="N/A"	="GLOBAL TANKS PTY LTD"	15-Feb-08 03:20 PM	

+="CN61450"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	31-Dec-07	27690.71	=""	="ASSA ABLOY AUSTRALIA PTY LTD"	15-Feb-08 03:20 PM	

+="CN61455"	"Contractor Costs"	="Department of Finance and Administration"	15-Feb-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	15-Feb-08	20000.00	="N/A"	="THE ONE UMBRELLA"	15-Feb-08 03:21 PM	

+="CN61456"	"Publishing & Printing Costs"	="Department of Finance and Administration"	15-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	25000.00	=""	="FUJI XEROX AUSTRALIA PTY LTD - ACT"	15-Feb-08 03:21 PM	

+="CN61461"	"Capital Expenditure - Plant & Equipment"	="Department of Finance and Deregulation"	15-Feb-08	="Office Equipment and Accessories and Supplies"	14-Dec-07	31-Jan-08	20273.00	="N/A"	="GLOBAL TANKS PTY LTD"	15-Feb-08 03:25 PM	

+="CN61464"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61465"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61466"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61467"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61468"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61469"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61470"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61471"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61472"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61473"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61474"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	19-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61475"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	04-Apr-08	25000.00	="."	="EFFECTIVE PEOPLE PTY LIMITED"	15-Feb-08 03:27 PM	

+="CN61477"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	03-Jan-08	24-Jan-08	21523.68	="06/09065-04"	="INFRONT SYSTEMS PTY LTD"	15-Feb-08 03:27 PM	

+="CN61483"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	18-Feb-08	20900.00	="-"	="KPMG AUSTRALIA"	15-Feb-08 03:28 PM	

+="CN61484"	"Memberships & Subscriptions Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	31-Dec-08	25718.60	=""	="SIRSIDYNIX PTY LTD"	15-Feb-08 03:28 PM	

+="CN61490"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:29 PM	

+="CN61492"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:29 PM	

+="CN61493"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:29 PM	

+="CN61494"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:29 PM	

+="CN61495"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:30 PM	

+="CN61496"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:30 PM	

+="CN61497"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:30 PM	

+="CN61498"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:30 PM	

+="CN61499"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	15-Feb-08 03:30 PM	

+="CN61500"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	15-Feb-08 03:30 PM	

+="CN61501"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	22-Jun-08	25000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	15-Feb-08 03:30 PM	

+="CN61502"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	07-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:31 PM	

+="CN61503"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	20-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:31 PM	

+="CN61504"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	20-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:31 PM	

+="CN61505"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	30-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:31 PM	

+="CN61506"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-Feb-08	29-Feb-08	20625.00	="N/A"	="MACQUARIE UNIVERSITY"	15-Feb-08 03:31 PM	

+="CN61512"	"Consultancy Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Mar-08	27378.00	="."	="PAT FARRELLY & ASSOCIATES PTY LTD"	15-Feb-08 03:32 PM	

+="CN61518-A1"	"Translation and interpreter"	="Centrelink"	15-Feb-08	="Writing and translations"	11-Sep-07	30-Jun-08	25976.50	=""	="Lote Marketing Pty Ltd"	15-Feb-08 03:42 PM	

+="CN61519"	"workstations and storage units"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	18-Sep-07	30-Jun-08	20109.54	=""	="Schiavello Systems (QLD) Pty Ltd"	15-Feb-08 03:42 PM	

+="CN61527"	"External training"	="Centrelink"	15-Feb-08	="Vocational training"	02-Jan-08	30-Jun-08	25000.00	=""	="Software Education Australia Pty Lt"	15-Feb-08 03:43 PM	

+="CN61531-A1"	"Recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	07-Jan-08	30-Jun-08	25000.00	=""	="Chandler Macleod Group"	15-Feb-08 03:43 PM	

+="CN61547"	"Worksite Assessment and Rehabilitation Cases"	="Centrelink"	15-Feb-08	="Human resources services"	04-Oct-07	30-Jun-08	22000.00	=""	="Bridge Rehabilitation"	15-Feb-08 03:46 PM	

+="CN61553"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	17-Jan-08	30-Jun-08	23181.82	=""	="Cabcharge Australia Pty Ltd"	15-Feb-08 03:46 PM	

+="CN61555"	"Management advisory services"	="Centrelink"	15-Feb-08	="Management advisory services"	21-Jan-08	30-Jun-08	22000.00	=""	="Value Creation Group"	15-Feb-08 03:47 PM	

+="CN61558"	"External Training"	="Centrelink"	15-Feb-08	="Vocational training"	23-Jan-08	30-Jun-08	24000.00	=""	="Excom Education Pty Ltd"	15-Feb-08 03:47 PM	

+="CN61559-A1"	" Recruitment Services "	="Centrelink"	15-Feb-08	="Human resources services"	24-Jan-08	30-Jun-08	24750.00	="RFT07/0021"	="Chandler Macleod Group"	15-Feb-08 03:47 PM	

+="CN61562"	"Health Care services"	="Centrelink"	15-Feb-08	="Healthcare Services"	29-Jan-08	30-Jun-08	22000.00	=""	="KTM - SDA Group Pty Ltd"	15-Feb-08 03:47 PM	

+="CN61567"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	09-Jan-08	30-Jun-08	30000.00	=""	="Vincent Aviation"	15-Feb-08 03:48 PM	

+="CN61571"	"Accomodation and meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	09-Jan-08	03-Mar-08	30000.00	=""	="Clifton Suites on Northbourne Ave"	15-Feb-08 03:49 PM	

+="CN61574-A1"	"Advertising"	="Centrelink"	15-Feb-08	="Advertising"	10-Jan-08	30-Jun-08	22000.00	=""	="HMA Blaze Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61576"	"IT Cabling"	="Centrelink"	15-Feb-08	="Computer services"	14-Jan-08	17-Feb-08	25643.20	=""	="DESA Australia Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61577"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	14-Jan-08	30-Jun-08	20000.00	=""	="Chartair Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61585"	"Vocational training"	="Centrelink"	15-Feb-08	="Vocational training"	09-Jan-08	12-Sep-08	26800.00	=""	="Australian Public Servce Commission"	15-Feb-08 03:50 PM	

+="CN61587"	"Computer services"	="Centrelink"	15-Feb-08	="Computer services"	10-Jan-08	31-Mar-08	25666.67	=""	="Singtel Optus Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61594"	"Fit out management - Mornington Vic"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Jan-08	30-Apr-08	29981.88	=""	="James Millar Architects"	15-Feb-08 03:52 PM	

+="CN61598"	"Building Project Management Services"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Jan-07	28-May-08	20348.68	=""	="Hoadley Budge Olphert and Edwards Mad"	15-Feb-08 03:52 PM	

+="CN61605"	"Telecommunications media services"	="Centrelink"	15-Feb-08	="Telecommunications media services"	14-Jan-08	14-Jan-08	24248.40	=""	="Telstra"	15-Feb-08 03:53 PM	

+="CN61612"	"Storage Units"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	03-Jan-08	28-Feb-08	22166.10	=""	="Schiavello Systems (NSW) Pty Ltd"	15-Feb-08 03:54 PM	

+="CN61614"	"Storage units for Centrelink Bendigo VIC"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	16-Jan-08	02-May-08	29009.77	=""	="Schiavello (Vic) Pty  Ltd"	15-Feb-08 03:54 PM	

+="CN61616"	"Fitout Documention"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	30-Sep-08	28875.00	=""	="James Millar Architects"	15-Feb-08 03:55 PM	

+="CN61634"	"Internal external signs"	="Centrelink"	15-Feb-08	="Signage and accessories"	18-Jan-08	30-May-08	24783.00	=""	="Tint Design Pty Ltd"	15-Feb-08 03:57 PM	

+="CN61644"	"workstations for 342 Queen St QLD"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	23-Jan-08	30-Jun-08	27047.90	=""	="Schiavello Systems (QLD) Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61653"	"Accomodation"	="Attorney-General's Department"	15-Feb-08	="Hotels"	16-Jan-08	16-Jan-08	24596.73	=""	="DEPT OF PRIME MINISTER AND CABINET"	15-Feb-08 04:37 PM	

+="CN61657"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	17-Jan-08	30-Dec-08	22000.00	=""	="Face 2 Face Recruitment Pty Limited"	15-Feb-08 04:37 PM	

+="CN61658"	"Reimbursment of costs"	="Attorney-General's Department"	15-Feb-08	="Maintenance or support fees"	17-Jan-08	30-Apr-08	20900.00	=""	="Department of the Premier & Cabinet"	15-Feb-08 04:38 PM	

+="CN61671"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	25-Jan-08	30-Jan-08	21367.50	="08/1632"	="CSC Australia Pty Limited"	15-Feb-08 04:39 PM	

+="CN61672"	"Data Services"	="Attorney-General's Department"	15-Feb-08	="Data services"	25-Jan-08	30-Jun-08	22356.72	=""	="Optus Billing Services Pty Ltd"	15-Feb-08 04:39 PM	

+="CN61673"	"Services"	="Attorney-General's Department"	15-Feb-08	="Communications server software"	25-Jan-08	31-Jan-08	20058.57	=""	="Telstra"	15-Feb-08 04:39 PM	

+="CN61683-A1"	"Business Analyst Service"	="Attorney-General's Department"	15-Feb-08	="Business and corporate management consultation services"	24-Jan-08	29-Feb-08	20064.00	="064/18411"	="Oakton AA Services Pty Ltd"	15-Feb-08 04:41 PM	

+="CN61694"	"Professional services"	="Attorney-General's Department"	15-Feb-08	="Security and control equipment"	21-Dec-07	18-May-08	26735.50	=""	="TAC Pacific Pty Ltd"	15-Feb-08 04:42 PM	

+="CN61697"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	17-Dec-07	31-Dec-09	24478.33	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 04:42 PM	

+="CN61698"	"*SAP Maintenance Services"	="Attorney-General's Department"	15-Feb-08	="Permanent information technology software developers"	07-Jan-08	30-Jun-08	26647.50	="05/3953"	="SAP Australia"	15-Feb-08 04:43 PM	

+="CN61701"	"Professional services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	30-Nov-07	25-Apr-08	22000.00	=""	="Robert James Anderson"	15-Feb-08 04:43 PM	

+="CN61712"	"CIPMA Launch Video"	="Attorney-General's Department"	15-Feb-08	="Production logging downhole video services"	13-Feb-08	13-Feb-08	20317.00	=""	="Bearcage Productions"	15-Feb-08 04:45 PM	

+="CN61713"	"Contract Services"	="Attorney-General's Department"	15-Feb-08	="Temporary legal staffing needs"	26-Aug-07	26-Aug-07	22409.21	=""	="Staffing and Office Solutions"	15-Feb-08 04:45 PM	

+="CN61723"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	17-Dec-07	17-Dec-07	20573.50	="STANDING OFFER"	="Australian Government Solictor"	15-Feb-08 04:46 PM	

+="CN61730"	"Annual reporting Tool licence"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	30-Nov-08	25300.00	="2007/00780"	="KPMG"	15-Feb-08 05:05 PM	

+="CN61741"	"Leaseplan Contract for  07-09 (YFE 13M)"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	07-Nov-09	28741.62	="ATM07/841"	="LEASEPLAN"	15-Feb-08 05:06 PM	

+="CN61743"	"NetAlert-PAFO information Campaign; Printing & Distrubution of Brouchures"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Dec-07	31-Dec-07	27216.45	="ATM07/773"	="Australia Post 6284121"	15-Feb-08 05:07 PM	

+="CN61744"	"Web Support Pack - maintence support work"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	15-Mar-07	09-Jan-08	22000.00	="DCON/01/16"	="Squiz Pty Ltd"	15-Feb-08 05:07 PM	

+="CN61745"	"Marketing and Research publication for Broadband Development Branch"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Published Products"	11-Jan-08	11-Jan-08	24200.00	="ATM2008/853"	="Solutions Marketing & Research Pty"	15-Feb-08 05:07 PM	

+="CN61746-A1"	"The Development of selected documents into the Exari System"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	07-Jan-08	31-May-08	22440.00	="DCON/07/196"	="ODS Management Consulting Pty Ltd"	15-Feb-08 05:07 PM	

+="CN61747"	"Advertising for submissions for the Regional Telecommunicatiosn Review"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	15-Jan-08	15-Jan-08	24966.65	="2008/00855"	="HMA BLAZE"	15-Feb-08 05:07 PM	

+="CN61757-A1"	"SPR002 Focus Group"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Education and Training Services"	11-Apr-08	19-Dec-09	22000.00	="DCON/07/65"	="Usability One"	15-Feb-08 05:08 PM	

+="CN61762"	"Web support packs"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	04-Feb-08	30-Jun-08	27500.00	="DCON/07/224"	="Squiz Pty Ltd"	15-Feb-08 05:08 PM	

+="CN61764"	"Corporate Video - Induction/info & promo tool for external stakeholders & the wider communit"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Jan-08	15-Mar-08	26185.50	="2008/00874"	="BEARCAGE PRODUCTIONS"	15-Feb-08 05:08 PM	

+="CN61784"	"repair vehicle"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Jul-06	30-Aug-06	25179.26	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 06:56 PM	

+="CN61788"	"Wheel Assembly ASLAV"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	26-Jul-06	30-Sep-06	28685.00	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 06:57 PM	

+="CN61804"	"Repairs Truck"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Sep-06	15-Oct-06	29844.80	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 06:59 PM	

+="CN61818"	"Repair Tanker"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	03-Jan-07	28399.49	=""	="LANE WATER TREATMENT"	15-Feb-08 07:00 PM	

+="CN61831"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	12-Jan-07	29472.00	=""	="HAULMARK TRAILERS AUSTRALIA"	15-Feb-08 07:02 PM	

+="CN61833"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	12-Jan-07	28974.00	=""	="HAULMARK TRAILERS AUSTRALIA"	15-Feb-08 07:02 PM	

+="CN61834"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	20-Jan-07	29678.00	=""	="HAULMARK TRAILERS AUSTRALIA"	15-Feb-08 07:02 PM	

+="CN61839"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	22-Nov-06	30-Dec-06	26758.89	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61843"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	28-Nov-06	10-May-07	22791.16	=""	="LAND ROVER AUSTRALIA Pty Ltd"	15-Feb-08 07:03 PM	

+="CN61849"	"Truck repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	04-Dec-06	30-Mar-07	25979.26	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61850"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	04-Dec-06	27-Jan-07	29147.51	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61851"	"Wheel Assembly ASLAV"	="Department of Defence"	15-Feb-08	="Motor vehicles"	05-Dec-06	13-Jan-07	21090.50	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61853"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Dec-06	28-Feb-07	21557.00	=""	="RPC TECHNOLOGIES Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61854"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Dec-06	02-Mar-07	23229.73	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61858"	"ASLAV Wheel assembly"	="Department of Defence"	15-Feb-08	="Motor vehicles"	18-Dec-06	17-Jan-07	21456.00	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61859"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Dec-06	18-May-07	26390.15	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:05 PM	

+="CN61860"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Dec-06	30-Mar-07	23774.09	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:05 PM	

+="CN61862"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	19-Dec-06	21-Jul-07	20856.19	=""	="THALES AUSTRALIA"	15-Feb-08 07:06 PM	

+="CN61863"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	20-Dec-06	28-Jul-07	24913.61	=""	="THALES AUSTRALIA"	15-Feb-08 07:06 PM	

+="CN61866"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	08-Jan-07	08-Mar-07	21100.50	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:06 PM	

+="CN61872"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	15-Jan-07	02-May-07	20545.95	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61873"	"Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	17-Jan-07	22-Mar-07	22889.04	=""	="MITCHS DIESEL SERVICES Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61876"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	22-Jan-07	05-Apr-07	24767.63	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61880"	"Spare Parts"	="Department of Defence"	15-Feb-08	="Motor vehicles"	30-Jan-07	24-Jun-07	24876.44	=""	="VEOLIA WATER SOLUTIONS &"	15-Feb-08 07:08 PM	

+="CN61888"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Feb-07	19-Apr-07	28689.49	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61889"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	15-Feb-07	30-Mar-07	21777.03	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61892"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	20-Feb-07	30-Apr-07	22582.74	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61893"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	21-Feb-07	28-Mar-07	20019.02	=""	="BEL AIR TRUCK SPRAY PAINTING CO"	15-Feb-08 07:10 PM	

+="CN61897"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	13-Mar-07	01-Apr-07	25161.00	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 07:10 PM	

+="CN61906"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	30-May-07	30-Jun-07	21045.15	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:11 PM	

+="CN61945"	" CRS Australia - Suite 8, Level 1, 51-55 Bulcock Street, Caloundra, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	14-Dec-07	13-Dec-08	23680.80	=""	="Lorelei Investments Pty Ltd"	18-Feb-08 11:41 AM	

+="CN61958"	"East Timor Education Sector Program Review"	="AusAid"	18-Feb-08	="Educational institutions"	01-Mar-07	30-Jun-07	22000.00	=""	="DGB CONCEPTS PTY. LTD."	18-Feb-08 12:41 PM	

+="CN61977"	"Contract for Margaret Gosling"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	29-Feb-08	23800.00	=""	="GOSLING, MARGARET HONOR"	18-Feb-08 12:44 PM	

+="CN61982"	"CARD MTR August 2007 - John Soussan"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	30-Sep-07	23150.00	=""	="STOCKHOLM ENVIRONMENT INSTITUTE (SEI)"	18-Feb-08 12:44 PM	

+="CN61992"	"Evaluation of Three Environment Projects in China - Evaluation Team Member Zheng Baohua"	="AusAid"	18-Feb-08	="Business administration services"	15-Jun-07	30-Nov-07	20123.27	=""	="ZHENG, BAOHUA"	18-Feb-08 12:45 PM	

+="CN62004"	"Paciifc Land Program - Concept Paper Stage 3- Solomon Islands Land Sector  Program- Larden"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jul-07	30-Oct-07	29057.00	=""	="LARDEN, PROFESSOR DOUGLAS"	18-Feb-08 12:47 PM	

+="CN62013"	"Rob MacColl Pacific trip contract engagement"	="AusAid"	18-Feb-08	="Photographic services"	01-Jul-07	30-Sep-07	23887.60	=""	="MACCOLL, ROBERT"	18-Feb-08 12:48 PM	

+="CN62015"	"TVET review- David Fretwell"	="AusAid"	18-Feb-08	="Educational institutions"	28-Jul-07	10-Sep-07	29679.00	=""	="FRETWELL, DAVID H"	18-Feb-08 12:48 PM	

+="CN62021"	"Aceh Rehabilitation Program - Building Materials Inspection Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	16-Jul-07	16-Sep-07	24431.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:49 PM	

+="CN62023"	"Aceh Rehabilitation Program - Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	30-Jul-07	30-Aug-07	20680.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 12:49 PM	

+="CN62027"	"Bear Cage - corporate Video"	="AusAid"	18-Feb-08	="Graphic design"	01-Jul-07	01-Sep-07	26620.00	=""	="BEARCAGE MEDIA SERVICES PTY LTD"	18-Feb-08 12:50 PM	

+="CN62040"	"Chair - Accelerating Economic Growth RSC"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	31-Dec-07	22550.00	=""	="UNIVERSITY OF THE SOUTH PACIFIC"	18-Feb-08 12:52 PM	

+="CN62045"	"Supply of storage units -Lelei office Honiara"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	23611.50	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	18-Feb-08 12:53 PM	

+="CN62046"	"Interpreter for TA in Dien Bien province-Contract with URS"	="AusAid"	18-Feb-08	="Business administration services"	22-Aug-07	31-Dec-08	24942.13	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:53 PM	

+="CN62059"	"Chair - Humanitarian Assistance RSC"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	31-Dec-07	22550.00	=""	="OVERSEAS DEVELOPMENT INSTITUTE"	18-Feb-08 12:54 PM	

+="CN62069"	"ADRA Committee Chairs for Health & HIV RSC - AIHI"	="AusAid"	18-Feb-08	="Management advisory services"	22-Aug-07	31-Mar-08	21726.52	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 12:56 PM	

+="CN62071"	"Minor Contract to perform ongoing M & E"	="AusAid"	18-Feb-08	="Forestry"	27-Aug-07	30-Jun-09	27500.00	=""	="BOND, ANDREW"	18-Feb-08 12:56 PM	

+="CN62078"	"John P Pace - Philippines Human Rights scoping Mission"	="AusAid"	18-Feb-08	="International relations"	31-Aug-07	17-Oct-07	27811.00	=""	="JOHN PACE"	18-Feb-08 12:57 PM	

+="CN62091"	"PACAP Strategic Directions & Effectiveness Review - Jessie Ponce"	="AusAid"	18-Feb-08	="Management advisory services"	22-Aug-07	31-Oct-07	24050.00	=""	="PONCE, JESSIE T"	18-Feb-08 12:59 PM	

+="CN62106"	"Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	17-Sep-07	19-Oct-07	24640.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:01 PM	

+="CN62108"	"Contract Margaret Gosling Oct-Dec"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	21-Dec-07	25800.00	=""	="GOSLING, MARGARET HONOR"	18-Feb-08 01:01 PM	

+="CN62112"	"In Line Secretary for Health and Medical Services October 07"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Oct-07	09-Nov-07	21348.34	=""	="BACIGALUPO, MAREE LOUISE"	18-Feb-08 01:01 PM	

+="CN62130"	"Nauru Security Risk Assessment of Deployees"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Jul-07	31-Dec-07	22000.00	=""	="DDW CONSULTING PTY LTD"	18-Feb-08 01:04 PM	

+="CN62133"	"Strategy paper for health performance incentives"	="AusAid"	18-Feb-08	="Comprehensive health services"	17-Oct-07	31-Jan-08	22000.00	=""	="CHAMBERLAIN, CHRISTOPHER A"	18-Feb-08 01:04 PM	

+="CN62151"	"Education Consultant Bangladesh - Mr James Jennings"	="AusAid"	18-Feb-08	="Business administration services"	05-Aug-07	15-Nov-07	21991.65	=""	="JENNINGS, JAMES EDWIN"	18-Feb-08 01:06 PM	

+="CN62164"	"Development of an Australian Scholarships Student Survey"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jul-07	30-Sep-07	26009.50	=""	="THE AUSTRALIAN COUNCIL FOR EDUCATIONAL RESEARCH LTD (ACER)"	18-Feb-08 01:08 PM	

+="CN62165"	"Analysis of ALA Student Survey"	="AusAid"	18-Feb-08	="Educational institutions"	31-Aug-07	30-Sep-07	21342.20	=""	="THE AUSTRALIAN COUNCIL FOR EDUCATIONAL RESEARCH LTD (ACER)"	18-Feb-08 01:09 PM	

+="CN62166"	"Review of Transitional Support - Cathy Deane"	="AusAid"	18-Feb-08	="Information services"	04-Oct-07	30-Apr-08	22889.43	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:09 PM	

+="CN62182"	"Program Monitoring Group: Strategic Review"	="AusAid"	18-Feb-08	="Management advisory services"	10-Oct-07	31-Dec-07	29332.88	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62189"	"James McGovern - Tonga Police Force Strengthening Phase 1"	="AusAid"	18-Feb-08	="Public order and safety"	20-Aug-07	30-Sep-07	21996.70	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62193"	"East Timor JSSF & SJA TAP member"	="AusAid"	18-Feb-08	="Management advisory services"	09-Nov-07	01-Dec-07	26769.40	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:13 PM	

+="CN62216"	"Hassall & Associates Pty Ltd - Service Order District Health Planning Mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Sep-07	31-Oct-07	20000.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62218"	"Design Mission - Local Government Capacity Building Adviser - Azwar Hasan"	="AusAid"	18-Feb-08	="Management advisory services"	19-Nov-07	31-Dec-07	25135.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62220"	"Review of the monitoring and evaluation components of the draft IMR framework and NGOs projects designs under PASHIP"	="AusAid"	18-Feb-08	="Disease prevention and control"	06-Aug-07	31-Oct-07	25261.50	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:16 PM	

+="CN62234"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	30-Sep-07	27475.80	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:18 PM	

+="CN62237"	"Administrative support for PGSP"	="AusAid"	18-Feb-08	="Public administration and finance services"	10-Jul-07	30-Nov-07	29879.08	=""	="ZABAR, PENELOPE GRACE"	18-Feb-08 01:19 PM	

+="CN62238"	"Paris Declaration Headquarters Evaluation - Michael Pilbrow"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	14-Dec-07	26511.89	=""	="BROW, MICHAEL JEREMY"	18-Feb-08 01:19 PM	

+="CN62268"	"S Dawson Input for Health MnE Workshop"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	28-Sep-07	26471.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62286"	"APMM Branding - Business + Government Against HIV/AIDS"	="AusAid"	18-Feb-08	="Management advisory services"	28-Feb-07	31-Aug-07	21032.50	=""	="GRID COMMUNICATIONS PTY LTD"	18-Feb-08 01:26 PM	

+="CN62290"	"Environment strategy printing"	="AusAid"	18-Feb-08	="Business administration services"	09-Aug-07	15-Sep-07	22596.20	=""	="PIRION PTY LTD"	18-Feb-08 01:26 PM	

+="CN62295"	"Audit of International Needs Australia"	="AusAid"	18-Feb-08	="Accounting and auditing"	20-Aug-07	31-Mar-08	21018.60	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62296"	"Audit of AidWorks and FMIS"	="AusAid"	18-Feb-08	="Business administration services"	17-Sep-07	30-Jun-08	21671.93	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62297"	"AusAID Audit Committee Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Nov-07	01-Feb-10	29700.00	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62306"	"Service Order 13562/88 for the Review of Improved Financial Management by Coffey International Development on ASFII"	="AusAid"	18-Feb-08	="Business administration services"	12-Aug-07	24-Aug-07	25885.09	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:28 PM	

+="CN62309"	"FSA for Accreditation of Interplast and ACMFF"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	01-May-07	30-Jun-08	20418.10	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62317"	"Procurement of RAMSI Management Information System Website"	="AusAid"	18-Feb-08	="Management advisory services"	23-May-07	31-Dec-07	29491.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62319"	"Recruitment of Public Health Specialist"	="AusAid"	18-Feb-08	="Human resources services"	01-Aug-07	31-Dec-08	24013.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62359"	"Fraud and Risk Management Training"	="AusAid"	18-Feb-08	="Management advisory services"	02-Feb-07	28-Sep-07	28183.38	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:36 PM	

+="CN62365"	"DAC CRS++ Reporting for Stats Unit, Altis Consulting"	="AusAid"	18-Feb-08	="Computer services"	10-Sep-07	30-Nov-07	22088.00	=""	="ALTIS CONSULTING PTY LTD"	18-Feb-08 01:36 PM	

+="CN62368"	"Making a Difference Aug-Sept 2007 Robyn Rennenberg"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	17-Sep-07	25080.00	=""	="ELLIOTT STREET CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62375"	"Consultancy - Deborah Rhodes"	="AusAid"	18-Feb-08	="Information services"	15-Aug-07	30-Jun-08	23399.75	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62377"	"Making a Difference Aug-Sept 2007 Sue Emmott"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	17-Sep-07	23400.00	=""	="EMMOTT, SUE"	18-Feb-08 01:38 PM	

+="CN62384"	"Heather Baser-Presentation/discussions on joint evaluation"	="AusAid"	18-Feb-08	="Business administration services"	22-Sep-07	30-Dec-07	20205.44	=""	="BASER, HEATHER"	18-Feb-08 01:39 PM	

+="CN62420"	"Recruitment - Legal Advisor (Office of the Attorney General)"	="AusAid"	18-Feb-08	="Human resources services"	30-Apr-07	03-Aug-07	23650.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62421"	"Recruitment - Peoples Lawyers Office"	="AusAid"	18-Feb-08	="Human resources services"	30-Apr-07	03-Aug-07	23650.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62423"	"Samoa National Provident Fund - Recruitment Services Order"	="AusAid"	18-Feb-08	="Credit agencies"	22-May-07	31-Oct-07	27500.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62439"	"Recruitment of Budget Management Advisor"	="AusAid"	18-Feb-08	="Development finance"	01-Oct-07	31-Dec-07	21500.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62446"	"THE PROVISION OF PERSONAL SAFETY AND AWARENESS TRAINING"	="AusAid"	18-Feb-08	="Human resources services"	09-Sep-06	30-Jun-10	27984.00	=""	="YU SHIH TAD KUNG FU SOCIETY"	18-Feb-08 01:48 PM	

+="CN62532"	"Reproduction and shipment of ALOS data plus Direct transmission of ALOS data for the 2nd and 3rd quarters of 2007 - 1 April 2007 to 30 September 2007."	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	15-Jan-08	30-Jun-08	22900.30	=""	="Remote Sensing Technology Center Of Japan"	18-Feb-08 03:56 PM	

+="CN62575"	"Procurement of:  FILTER ELEMENT,FLUID;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	07-Apr-08	25720.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62579"	"Procurement of:  PUMP SET"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	28-Apr-08	29939.47	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62584"	"Procurement of:  HEATER,FLUID,ELECTRIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	04-Mar-08	26925.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62590"	"Procurement of:  VALVE,SAFETY RELIEF;  PIN,GUDGEON"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	10-Mar-08	20547.12	=""	="COMPAIR (A/ASIA) Ltd"	18-Feb-08 05:12 PM	

+="CN62611"	"Procurement of:  JACKET,BUOYANCY AID"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	15-Apr-08	25500.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62617"	"Procurement of:  TRANSMITTER,POSITION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	24-Jan-08	30-Apr-08	20945.52	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:16 PM	

+="CN62632"	"Procurement of:  PIPE,AIR"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	08-May-08	29298.92	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62637"	"Procurement of:  REPAIR KIT,VALVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	20603.73	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62641"	"Procurement of:  SHUNT,INSTRUMENT;  SHUNT,INSTRUMENT;  SHUNT,INSTRUMENT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	18-Feb-08	27916.14	=""	="SCHNEIDER ELECTRICS (AUST) P / L"	18-Feb-08 05:19 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val300000to999999999.xls
@@ -1,1 +1,210 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60731"	"Various codified Rohde & Schwarz Radio spare parts"	="Defence Materiel Organisation"	14-Feb-08	="Circuit assemblies and radio frequency RF components"	23-Aug-07	12-Feb-08	368518.21	=""	="BAE SYSTEMS"	14-Feb-08 09:35 AM	

+="CN60748"	"Contracting Services for senior management of MNPP"	="CrimTrac"	14-Feb-08	="Temporary personnel services"	21-Jan-08	21-Jan-08	354640.00	=""	="Collective Resources IT Recruitment Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60753"	"Office Fitout"	="CrimTrac"	14-Feb-08	="Site offices"	09-Jan-08	30-Jun-08	300784.90	=""	="Comsuper"	14-Feb-08 10:43 AM	

+="CN59901"	"Executive Leadership Training"	="Workplace Ombudsman"	14-Feb-08	="Management and Business Professionals and Administrative Services"	21-Sep-07	31-Mar-09	596940.00	=""	="HayGroup"	14-Feb-08 11:10 AM	

+="CN60765"	"Provision for Software & Software Support"	="Department of Immigration and Citizenship"	14-Feb-08	="Software"	01-Jun-07	31-Dec-09	1765371.00	=""	="Data#3 Limited."	14-Feb-08 11:35 AM	

+="CN60766"	"Supply 244 Portable radio tranceivers"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	13-Aug-07	13-Oct-07	855068.50	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:43 AM	

+="CN60770"	"Supply of communication services and equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	13-Feb-08	30-Jun-08	803308.00	=""	="Motorola Australia Pty Limited"	14-Feb-08 12:39 PM	

+="CN59088-A2"	"Provision of telecommunication services.  Mobile phone, Broadband and Data Services"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Mobile communications services"	13-Nov-07	12-Feb-11	2085000.00	=""	="Telstra Corporation Limited"	14-Feb-08 01:55 PM	

+="CN59096-A1"	"Provision of telecommunication services. Fixed line voice carriage & teleconferencing"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Local and long distance telephone communications"	31-Jul-07	30-Jul-11	360000.00	=""	="AAPT Limited"	14-Feb-08 01:56 PM	

+="CN60807"	"Mechanical services works"	="Austrade"	14-Feb-08	="Air conditioning installation or maintenance or repair services"	27-Nov-07	21-Dec-07	458700.00	=""	="Air Con Systems Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60854"	"DATA STOREAGE SERVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Aug-07	30-Jun-08	1620000.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 03:40 PM	

+="CN60893"	"Warehousing and distribution costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	30-Jul-07	30-Nov-07	330000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:45 PM	

+="CN60895"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	30-Jun-08	754380.00	=""	="ANSWERZ PTY LTD"	14-Feb-08 03:46 PM	

+="CN60897"	"Funding to fulfil obligations as member"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	30-Jun-10	352000.00	=""	="AUST CHAMBER OF COMMERCE"	14-Feb-08 03:46 PM	

+="CN60899"	"Postage and Freight"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	314000.00	=""	="AUST POST (ACT 131316)"	14-Feb-08 03:46 PM	

+="CN60902"	"PSS/CSS Addtional Lump Sum Employer Contributions"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Jul-07	31-Jul-07	623797.00	=""	="DEPARTMENT OF FINANCE"	14-Feb-08 03:46 PM	

+="CN60904"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	31-Jul-07	30-Jun-08	440000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:47 PM	

+="CN60907"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	31-Jul-07	30-Sep-07	3694009.86	=""	="UNIVERSAL MCCANN"	14-Feb-08 03:47 PM	

+="CN60914"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60917"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	27-Jul-07	30-Jun-08	350000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60922"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	3545451.80	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60923"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	3556697.98	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60924"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	625554.89	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60925"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	355300.00	=""	="NEXTGEN NETWORKS PTY LTD"	14-Feb-08 03:49 PM	

+="CN60936"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	657000.00	=""	="CLAYTON UTZ"	14-Feb-08 03:51 PM	

+="CN60937"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	467500.00	=""	="SPARKE HELMORE"	14-Feb-08 03:51 PM	

+="CN60939"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	1080646.10	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:51 PM	

+="CN60940"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	716000.00	=""	="DEACONS - CANBERRA OFFICE"	14-Feb-08 03:51 PM	

+="CN60977"	"COMPUTER HARDWARE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	10-Oct-07	30-Jun-08	2055385.22	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 03:54 PM	

+="CN60991"	"DATA STOREAGE UPGRADE SERVICES"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	14-Dec-07	30-Jun-08	425920.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 03:56 PM	

+="CN60996"	""Motor vehicles, trailers  semitrailer, parts etc""	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	31-Aug-07	30-Jun-08	1316267.80	=""	="LEASEPLAN AUSTRALIA LTD"	14-Feb-08 03:56 PM	

+="CN61010"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	14-Jan-08	30-Jun-08	330000.00	="TBA"	="LANGE CONSULTING"	14-Feb-08 03:58 PM	

+="CN61023"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Feb-08	30-Jun-08	657000.00	="TBA"	="IBM AUSTRALIA LTD"	14-Feb-08 04:00 PM	

+="CN61025"	"IT STORAGE EQUIPMENT INCLUDING MAINTENANCE 4 YRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Dec-07	30-Jun-08	1837866.78	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61028"	"NETWORK SERVER HARDWARE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Dec-07	30-Jun-08	312461.60	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:01 PM	

+="CN61029"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	20-Dec-07	30-Jun-08	799524.00	="TBA"	="BORLAND AUSTRALIA PTY LTD"	14-Feb-08 04:01 PM	

+="CN61034"	"SERVER REPLACEMENT PROGRAM - STAGE 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	09-Jan-08	30-Jun-08	1276490.34	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61035"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jan-08	30-Jun-08	545721.06	="ITC"	="ELMTREE CONSULTING SERVICES"	14-Feb-08 04:02 PM	

+="CN61039"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	397020.66	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61047"	""DEWR - LVL1, Bendigo-alterations to current accom"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	21-Aug-07	31-Dec-07	338095.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:03 PM	

+="CN61048"	"Renting"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	21-Aug-07	31-Dec-07	547552.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:03 PM	

+="CN61064"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Aug-07	30-Jun-08	2805000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61075"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	27-Aug-07	31-Aug-07	3593897.89	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:07 PM	

+="CN61100"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	1251338.39	=""	="TELSTRA (VIC)"	14-Feb-08 04:10 PM	

+="CN61124"	"Fitout"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	31-Jul-07	307790.67	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:13 PM	

+="CN61127"	"research services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	04-Jul-08	950900.00	=""	="THE OPEN MIND RESEARCH GROUP"	14-Feb-08 04:13 PM	

+="CN61135"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	30-Nov-10	600000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	14-Feb-08 04:14 PM	

+="CN61137"	"Postage and Freight"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	30-Jun-10	440000.00	=""	="AUST POST (ACT 131316)"	14-Feb-08 04:15 PM	

+="CN61144"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jul-07	30-Jun-08	5500000.00	=""	="IBM AUSTRALIA LTD"	14-Feb-08 04:16 PM	

+="CN61152"	"Lease of Handsets"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	11-Jul-07	01-Jan-10	1609860.38	=""	="CISCO SYSTEMS CAPITAL (AUSTRALIA) P"	14-Feb-08 04:17 PM	

+="CN61159"	"Workplace Relations Campaign - Creative Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Jun-08	687736.64	=""	="EARDRUM PTY LIMITED"	14-Feb-08 04:17 PM	

+="CN61253"	"Kiosk Maintenance 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	23-Jul-07	30-Jun-08	1909600.00	=""	="IBM AUSTRALIA LTD"	14-Feb-08 04:29 PM	

+="CN61266"	"Apprentices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	20-Jul-07	30-Jun-08	637717.76	=""	="AUSTRALIAN TRAINING COMPANY LTD"	14-Feb-08 04:31 PM	

+="CN61269"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	20-Jul-07	30-Jun-09	1000000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:31 PM	

+="CN61279"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	1557232.30	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61280"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	655997.75	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61281"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	385000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:33 PM	

+="CN61282"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	26-Jul-07	31-Jul-07	3383376.63	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:33 PM	

+="CN61287"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	24-Jul-07	30-Jun-08	1746096.00	=""	="MICROSOFT P/L"	14-Feb-08 04:34 PM	

+="CN61290"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	15-Jan-08	30-Jun-08	468105.00	="ITC"	="COMPAS PTY LTD"	14-Feb-08 04:34 PM	

+="CN61295"	"JobAccess"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	25-Jul-07	30-Jun-08	1099000.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	14-Feb-08 04:35 PM	

+="CN61300"	"Media Relations"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	25-Jul-07	31-Jul-07	990000.00	=""	="WHYBIN TBWA & PARTNERS PTY LTD"	14-Feb-08 04:35 PM	

+="CN61313"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	599447.20	=""	="RIGHTNOW TECHNOLOGIES"	14-Feb-08 04:37 PM	

+="CN61321"	"Comcover Premium"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	11-Jul-07	30-Jun-08	366817.38	=""	="COMCOVER INSURANCE SERVICES"	14-Feb-08 04:38 PM	

+="CN61331"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	503160.94	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:39 PM	

+="CN61334-A5"	" Financial Statement Audits of the Future Fund Management Agency.  Added additional related entities to be audited. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-08	30-Oct-12	1022539.40	=""	="Deloitte Touche Tohmatsu"	14-Feb-08 04:39 PM	

+="CN61337"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	6252284.50	=""	="COMPUTER ASSOCIATES PTY LTD"	14-Feb-08 04:39 PM	

+="CN61338-A1"	" Christmas Island IRPC Performance Audit and the Commonwealth Government Public Works Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-08	31-Dec-08	787446.00	=""	="ARUP Pty Limited"	14-Feb-08 04:40 PM	

+="CN61354-A2"	" Design Phase of the Refurbishment Project for 19 National Circuit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Business and corporate management consultation services"	05-Dec-07	04-Dec-08	373510.00	=""	="HBO EMTB Interiors (ACT) Pty Limited"	14-Feb-08 04:41 PM	

+="CN61356-A1"	" Data Centre Refit "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Carpentry"	05-Dec-07	30-Jun-08	434319.00	=""	="SMI Fitout Pty Limited"	14-Feb-08 04:41 PM	

+="CN61365"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 04:41 PM	

+="CN61377-A9"	" Financial Statement Audit of the ComSuper Group 2005-08.  Plus two Option Years to 09-10. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	11-Jan-08	31-Oct-12	3267984.46	=""	="Deloitte Touche Tohmatsu"	14-Feb-08 04:42 PM	

+="CN61426-A2"	"Provision of SAP System Administrator."	="CRS Australia"	15-Feb-08	="Computer programmers"	01-Jan-08	31-Dec-08	402026.88	=""	="Southern Cross Computing Pty Ltd"	15-Feb-08 10:51 AM	

+="CN61459"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	15-Feb-08	="Building and Construction and Maintenance Services"	12-Feb-08	31-Jul-09	2317502.00	="FIN06AMG002"	="ST HILLIERS CONTRACTING PTY LTD"	15-Feb-08 03:25 PM	

+="CN61541"	"Computer Services"	="Centrelink"	15-Feb-08	="Computer services"	30-Jan-08	30-Jun-08	372976.00	=""	="Office of the Privacy Commissioner"	15-Feb-08 03:45 PM	

+="CN61551"	"Management advisory services"	="Centrelink"	15-Feb-08	="Management advisory services"	16-Jan-08	30-Jun-08	353377.00	=""	="Nous Group Pty Ltd"	15-Feb-08 03:46 PM	

+="CN61586-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	09-Jan-08	13-Jan-11	610209.60	=""	="Yoda Software Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61650"	"Rent"	="Attorney-General's Department"	15-Feb-08	="Lease and rental of property or building"	17-Jan-08	30-Dec-08	528000.00	=""	="Investa Asset Management Pty Ltd"	15-Feb-08 04:37 PM	

+="CN61655"	"Fitout Works"	="Attorney-General's Department"	15-Feb-08	="Office Equipment and Accessories and Supplies"	21-Jan-08	30-Mar-08	2997200.80	=""	="Hytec Carpentry Services"	15-Feb-08 04:37 PM	

+="CN61715"	"Rent"	="Attorney-General's Department"	15-Feb-08	="Lease and rental of property or building"	07-Jan-08	30-Dec-09	984000.01	=""	="Knight Frank Australia Pty Ltd"	15-Feb-08 04:45 PM	

+="CN61769-A1"	"Telstra License Conditions"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	23-Aug-07	13-May-08	614339.29	="DCON/06/45"	="DLA  Phillips Fox"	15-Feb-08 05:09 PM	

+="CN61770-A1"	"Provision of Maintenance for electronic security alarm access control & CCTV systems 07 - 12"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction Machinery and Accessories"	20-Dec-07	30-Jun-12	341551.10	="CCR/07/2201"	="Ray Jewell - Secom Technical Servic"	15-Feb-08 05:09 PM	

+="CN61777-A2"	"Provision of a budgeting & reporting tool BART"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	19-Dec-06	31-Dec-08	746960.24	="CCR/06/3261"	="Excelerated Consulting Pty Ltd"	15-Feb-08 05:09 PM	

+="CN61781"	"Disruptive Pattern Camouflage Uniforms purchased against standing offer 1001-153-25"	="Defence Materiel Organisation"	15-Feb-08	="Military uniforms"	15-Feb-08	21-Feb-08	378950.00	="CC2007/21"	="Australian Defence Apparel"	15-Feb-08 05:24 PM	

+="CN61936"	" CRS Australia - Level 12, 215 Adelaide Street, Brisbane, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	15-Jun-08	14-Jun-13	3190805.54	=""	="South Hooke Pty Ltd"	18-Feb-08 10:44 AM	

+="CN61955-A4"	"Provision of Serial Publications"	="Australian Taxation Office"	18-Feb-08	="Printed publications"	01-Jan-08	30-Jun-10	340000.00	=""	="Ebsco Information Services Australia"	18-Feb-08 12:34 PM	

+="CN61956"	"Kiribati Australia Nursing Initiative (KANI)"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jun-07	30-Jun-12	4663238.80	=""	="GRIFFITH UNIVERSITY"	18-Feb-08 12:41 PM	

+="CN61960-A2"	" Australia China Environment Development Program "	="AusAid"	18-Feb-08	="Environmental management"	01-Jul-07	30-Jun-12	27193793.00	=""	="GHD PTY LTD"	18-Feb-08 12:42 PM	

+="CN61963"	"Engineering Advisor for Road Infrastructure Program"	="AusAid"	18-Feb-08	="Professional engineering services"	09-Jul-07	09-Jul-09	694000.00	=""	="ROBERTSON, LESLIE"	18-Feb-08 12:42 PM	

+="CN61965"	"International Senior Health Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	29-Jun-07	28-Jun-09	389694.66	=""	="INFONOMICS INTERNATIONAL PTY LTD"	18-Feb-08 12:42 PM	

+="CN61967"	"China-Australia Health and HIV/AIDS Facility (CAHHF)"	="AusAid"	18-Feb-08	="Disease prevention and control"	13-Aug-07	12-Aug-10	26840000.00	=""	="THE MACFARLANE BURNET INSTITUTE FOR MEDICAL RESEARCH AND PUBLIC HEALTH LTD"	18-Feb-08 12:42 PM	

+="CN61973"	"HAARP Program Director"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Jul-07	31-Dec-08	384694.48	=""	="CHATTERJEE, ANINDYA"	18-Feb-08 12:43 PM	

+="CN61976"	"TSSP ISP Contract"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Jun-10	16500000.00	=""	="SNOWY MOUNTAINS ENGINEERING CORPORATION LTD"	18-Feb-08 12:44 PM	

+="CN61979"	"Third Party Cost Sharing Agreement - Government of Australia (AusAID) & United Nations Development Program (UNDP)"	="AusAid"	18-Feb-08	="Management advisory services"	18-Jun-07	30-Jul-07	1000000.00	=""	="UNITED NATIONS DEVELOPMENT PROGRAM"	18-Feb-08 12:44 PM	

+="CN61983"	"Enterprise Challenge Fund for the Pacific and South East Asia"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	31-Oct-13	21392949.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 12:44 PM	

+="CN61985"	"Development Assistance Facility for Afghanistan - Interim Facility Manager"	="AusAid"	18-Feb-08	="Political systems and institutions"	01-Jul-07	01-Mar-08	425180.80	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 12:45 PM	

+="CN62007"	"Australia-Pacific Technical College Phase II Design Health and Community Services School"	="AusAid"	18-Feb-08	="Vocational training"	19-Jul-07	31-Mar-08	657397.40	=""	="BOX HILL INSTITUTE OF TAFE"	18-Feb-08 12:47 PM	

+="CN62008"	"Business Process Reform Project - Implementation Phase II"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-07	31-Oct-08	731933.40	=""	="THE TRUSTEE FOR APIS CONSULTING UNIT TRUST T/A APIS CONSULTING GROUP PTY LTD"	18-Feb-08 12:48 PM	

+="CN62014"	"Building Sustainable Electoral Admin Phase3 TAF"	="AusAid"	18-Feb-08	="Political systems and institutions"	17-Jul-07	30-Sep-08	739067.00	=""	="THE ASIA FOUNDATION"	18-Feb-08 12:48 PM	

+="CN62029"	"RAMSI Security Officer"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Sep-07	31-Aug-09	1253812.91	=""	="DDW CONSULTING PTY LTD"	18-Feb-08 12:50 PM	

+="CN62030"	"Technical Assistance for Natural Disaster Risk Management in Viet Nam"	="AusAid"	18-Feb-08	="Business administration services"	30-Aug-07	31-Aug-09	4758800.20	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Feb-08 12:50 PM	

+="CN62037"	"Transition Plan for a Sustainable Response to Child Sex Tourism in SE Asia"	="AusAid"	18-Feb-08	="International relations"	01-Aug-07	31-Mar-09	550000.00	=""	="CHILD WISE LTD"	18-Feb-08 12:52 PM	

+="CN62038-A1"	"Rural Water Supply and Sanitation Program (RWSSP) East Timor - Implementation"	="AusAid"	18-Feb-08	="Environmental management"	17-Sep-07	30-Jun-12	45187106.80	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 12:52 PM	

+="CN62048"	"UNODC: Kokang & Wa Initiative (transition phase)"	="AusAid"	18-Feb-08	="General building construction"	10-Aug-07	31-Dec-08	372000.00	=""	="UNITED NATIONS OFFICE ON DRUGS AND CRIME (UNODC)"	18-Feb-08 12:53 PM	

+="CN62052"	"Local consultants for RWSS NTPII - Contract with URS"	="AusAid"	18-Feb-08	="Human resources services"	16-Oct-07	31-Dec-08	500000.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:54 PM	

+="CN62053"	"Infrastructure for Growth Advisor"	="AusAid"	18-Feb-08	="Utilities"	22-Aug-07	30-Aug-08	463000.00	=""	="HAWES, DAVID MICHAEL"	18-Feb-08 12:54 PM	

+="CN62055"	"Communities and Education in Aceh (CEPA) Phase 2."	="AusAid"	18-Feb-08	="Educational institutions"	19-Sep-07	25-Sep-09	7001687.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 12:54 PM	

+="CN62062"	"ANU Diplomatic Training Phase1"	="AusAid"	18-Feb-08	="Vocational training"	07-May-07	30-Jun-08	420236.30	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 12:55 PM	

+="CN62066-A2"	" Sexual and Reproductive health in Crisis and Post Crisis Situations "	="AusAid"	18-Feb-08	="Comprehensive health services"	03-Sep-07	31-Dec-11	3355445.00	=""	="INTERNATIONAL PLANNED PARENTHOOD FEDERATION"	18-Feb-08 12:55 PM	

+="CN62083"	"Lease of Emergency Gensets for Nauru - Coates"	="AusAid"	18-Feb-08	="Utilities"	01-Jul-07	30-Jun-08	692307.00	=""	="COATES"	18-Feb-08 12:58 PM	

+="CN62089-A1"	"Vision Myanmar: Reducing preventable blindness"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Aug-07	31-Dec-12	1099987.90	=""	="ROYAL ADELAIDE HOSPITAL"	18-Feb-08 12:58 PM	

+="CN62113"	"Nauru Public Sector Reform and Capacity Building Program Design Team (PDT)"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	30-Jun-08	673948.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:01 PM	

+="CN62120"	"Coffey International Limited"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	500000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:02 PM	

+="CN62121"	"Global Justice Solutions"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	2000000.00	=""	="GLOBAL JUSTICE SOLUTIONS PTY LTD"	18-Feb-08 01:02 PM	

+="CN62122"	"GRM International Pty Ltd"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	500000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:03 PM	

+="CN62141"	"Freedom House - Political Communication and Marketing Training Program for Civil Society Groups (NGO's)"	="AusAid"	18-Feb-08	="Socio political conditions"	01-Nov-07	30-Nov-08	559200.00	=""	="FREEDOM HOUSE"	18-Feb-08 01:05 PM	

+="CN62149"	"Freedom House Political Training Zimbabwe"	="AusAid"	18-Feb-08	="Socio political conditions"	01-Nov-07	30-Nov-08	562017.26	=""	="FREEDOM HOUSE"	18-Feb-08 01:06 PM	

+="CN62200"	"Interim CTA position"	="AusAid"	18-Feb-08	="Management advisory services"	10-Oct-06	31-Aug-07	328482.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Feb-08 01:14 PM	

+="CN62203"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	18-Feb-08	="Business administration services"	03-Jan-02	30-Apr-08	19082109.50	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 01:14 PM	

+="CN62204"	"Tonga Fisheries Management Project"	="AusAid"	18-Feb-08	="Fisheries and aquaculture"	14-Jan-02	30-Jun-08	7976626.90	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:14 PM	

+="CN62205"	"Papua New Guinea-Australia Targeted Training Facility"	="AusAid"	18-Feb-08	="Alternative educational systems"	02-Apr-02	01-Oct-08	5252876.88	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:14 PM	

+="CN62206"	"PNG - Lae City WaterSupply Project Phase II"	="AusAid"	18-Feb-08	="Utilities"	09-Jul-02	31-Dec-07	2958505.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62207"	"Indonesia HIV/AIDS Prevention and Care Project - Phase II"	="AusAid"	18-Feb-08	="Disease prevention and control"	31-Jul-02	30-Jun-08	45210000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62208"	"Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Community and social services"	17-Jul-02	17-Nov-07	14421000.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62209"	"Australia - East Timor Capacity Building Facility"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Sep-02	30-Jun-07	16692005.99	=""	="ILLAWARA TECHNOLOGY CORPORATION LTD"	18-Feb-08 01:15 PM	

+="CN62222"	"Nauru - Health Sector Assistance Facility"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Oct-06	30-Sep-07	1883877.05	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	18-Feb-08 01:17 PM	

+="CN62230"	"Asean-Australia Development Cooperation Program Program Stream"	="AusAid"	18-Feb-08	="Trade policy and services"	19-May-03	31-Dec-08	5485420.60	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:18 PM	

+="CN62231"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	18-Feb-08	="Business administration services"	19-May-03	18-Jul-08	810171.15	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:18 PM	

+="CN62239"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jul-03	30-Jun-09	11853068.61	=""	="IDP EDUCATION PTY LTD"	18-Feb-08 01:19 PM	

+="CN62240"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jul-03	31-Dec-08	27303650.95	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:19 PM	

+="CN62241"	"Pacific Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Disease prevention and control"	20-Nov-03	31-Dec-08	7812679.60	=""	="International Development Support Services Pty Ltd"	18-Feb-08 01:19 PM	

+="CN62242"	"RAFI Extension"	="AusAid"	18-Feb-08	="Political systems and institutions"	09-Oct-07	30-Sep-08	5557906.28	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:19 PM	

+="CN62245"	"Samoa Police Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Dec-03	28-Feb-09	3106628.11	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:20 PM	

+="CN62247"	"In Africa ADS Management Project"	="AusAid"	18-Feb-08	="Human resources services"	01-Feb-04	31-May-09	2194276.81	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:20 PM	

+="CN62249"	"Solid Waste Management for Tonga"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Mar-04	01-Mar-08	1255465.82	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:20 PM	

+="CN62251"	"Vanuatu Secondary Schools Extension Project - Phase 2"	="AusAid"	18-Feb-08	="Educational facilities"	15-Apr-04	30-Jun-09	3636490.00	=""	="REEVES CONSTRUCTION SERVICES PTY LTD"	18-Feb-08 01:21 PM	

+="CN62253"	"TIMOR LESTE POLICE DEVELOPMENT PROGRAM"	="AusAid"	18-Feb-08	="Public order and safety"	02-Jun-04	02-Dec-08	8585974.46	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:21 PM	

+="CN62274"	"Solomon Island Foresty Management Project Phase II"	="AusAid"	18-Feb-08	="Forestry"	01-Oct-04	30-Sep-08	388521.75	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:24 PM	

+="CN62275"	"Provision of Coordination and liaison with NGOs"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-04	30-Jun-08	363000.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62278"	"International Quality Assurance Programs for HIV Testing and Laboratory Management"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Dec-04	31-May-08	1195012.50	=""	="ST VINCENT'S INSTITUTE OF MEDICAL RESEARCH"	18-Feb-08 01:25 PM	

+="CN62294"	"Solomon Islands Machinery of Government Infrastructure Project"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-05	31-Mar-08	1101175.29	=""	="SAKHIWE CONSULTANTS PTY LIMITED"	18-Feb-08 01:27 PM	

+="CN62314"	"Philippines Australia Partnership for Economic Governance Reforms (PEGR)"	="AusAid"	18-Feb-08	="Development finance"	18-Apr-05	31-May-10	13172122.80	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:30 PM	

+="CN62315"	"Solomon Islands Disaster Risk Management Project Short Term Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-07	31-Dec-07	326317.20	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62318"	"Management of Interim Assistance TSAP Manager Position"	="AusAid"	18-Feb-08	="Business administration services"	19-Jun-07	31-Dec-08	454045.90	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62321"	"RGSF MOG - Strengthening Accountability"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	10372034.02	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62322"	"RGSF MOG - Public Service Repair and Reform"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	10462716.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62323"	"RGSF MOG - Parliament and Electoral"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	4093249.60	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62324"	"RGSF MOG - Program Governance and Evaluation"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	2137357.55	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62325"	"RGSF MOG - Provincial Governance"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	2997440.69	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62326"	"Facilitation of Interim Assistance Package for Ministry of Lands Housing and Survey"	="AusAid"	18-Feb-08	="Business administration services"	15-Oct-07	29-Aug-08	705171.50	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62329"	"GOVERNANCE AND RELATED AID ACTIVITY IN SOLOMON ISLANDS (GRAISI)"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-05	30-Sep-09	3481737.39	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62331"	"AIPRD Procurement & Logistic Support"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	10388253.77	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62332"	"HKSI Logistics Support to GPF"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	31-Dec-07	1334546.66	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62333"	"Nauru Shipping"	="AusAid"	18-Feb-08	="Transport operations"	01-Jul-07	30-Jun-08	550000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62334"	"Emergency Disaster Warehouse Facility HK"	="AusAid"	18-Feb-08	="Transport operations"	01-Jul-07	30-Jun-10	549111.16	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62335"	"AusAID Emergency Purchase through HK Logistics"	="AusAid"	18-Feb-08	="Material packing and handling"	10-Sep-07	10-Sep-08	990000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62336"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	2508299.85	=""	="AUSTRALIAN BUSINESS VOLUNTEERS LIMITED"	18-Feb-08 01:32 PM	

+="CN62337"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	2255308.00	=""	="AUSTRAINING INTERNATIONAL PTY LTD"	18-Feb-08 01:33 PM	

+="CN62338"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	5477054.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:33 PM	

+="CN62349"	"AIPRD - Health Assistance Rehabilitation - Aceh Program (HARAP)"	="AusAid"	18-Feb-08	="Comprehensive health services"	05-Sep-05	11-Sep-07	5652170.50	=""	="JTA INTERNATIONAL PTY LTD"	18-Feb-08 01:34 PM	

+="CN62352"	"TRADE ANALYSIS AND REFORM PROJECT"	="AusAid"	18-Feb-08	="Trade policy and regulation"	23-Sep-05	23-Sep-08	646766.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62355"	"AIRPD - Education Rehabilitation in Aceh (ERA) Program"	="AusAid"	18-Feb-08	="Educational institutions"	30-Sep-05	09-Apr-08	687120.87	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:35 PM	

+="CN62356"	"Bangladesh English Language Teacher (ELT) Trainers"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jul-07	30-Jun-10	1382311.70	=""	="AUSTRAINING INTERNATIONAL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62360"	"Local Governance and Infrastructure for Communities in Aceh (LOGICA)"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-06	14-Jul-08	4509999.78	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:36 PM	

+="CN62364"	"Project Preparation Consultant (PPC) for the Eastern Indonesia National Road Improvement Project (EINRIP)"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	15-Mar-06	31-Dec-08	7421468.05	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:36 PM	

+="CN62372"	"EPSG Design Coordinator"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	335500.00	=""	="THE TRUSTEE FOR TRUST -SEAVIEW MONTVILLE T/A TRUST -SEAVIEW MONTVILLE"	18-Feb-08 01:37 PM	

+="CN62379"	"Budget Management Technical Assistance for GoT-Long Term Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	01-Apr-06	31-Oct-07	450428.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:39 PM	

+="CN62387"	"Operational Support in Nauru"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Nov-06	31-Dec-07	1105902.09	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62388"	"Operational Support in Nauru"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Nov-06	30-Jun-08	1085480.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62389"	"HK Shipping - Admin & Logistic Support for AIP Health NTT"	="AusAid"	18-Feb-08	="Community and social services"	28-May-07	07-May-08	2535197.17	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62393"	"PNG-Australia Transport Sector Support Program - Interim Phase"	="AusAid"	18-Feb-08	="Transport operations"	30-May-06	31-Dec-07	2127741.00	=""	="CARDNO INTERNATIONAL PTY LTD"	18-Feb-08 01:40 PM	

+="CN62394"	"Construction Contract for Police Building"	="AusAid"	18-Feb-08	="General building construction"	29-May-06	30-Nov-08	1216399.24	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:41 PM	

+="CN62395"	"East Timor Public Sector Capacity Development Program"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-06	15-Jul-11	13750000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:41 PM	

+="CN62399"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	350592.00	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:41 PM	

+="CN62401"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	337920.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62402"	"Provision of Services to the RAMSI Law & Justice Sector Program"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	19800000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:42 PM	

+="CN62405"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	390851.13	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:42 PM	

+="CN62406"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	327733.72	=""	="WIZARD INFORMATION SERVICES PTY LTD"	18-Feb-08 01:42 PM	

+="CN62412"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	21-Aug-06	30-Jun-08	483582.00	=""	="CONSOLVE PTY LTD"	18-Feb-08 01:43 PM	

+="CN62413"	"PNG Health -  Independent Monitoring and Review Group Team Leader"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Sep-06	31-Dec-08	692120.00	=""	="HEALTH RESEARCH FOR ACTION"	18-Feb-08 01:43 PM	

+="CN62414"	"AIPRD BASIC EDUCATION PROGRAM - INDEPENDENT AUDIT CONTRACTOR (IAC)"	="AusAid"	18-Feb-08	="Educational facilities"	01-Oct-06	01-Oct-09	1320000.00	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:43 PM	

+="CN62416"	"Dr David Fegan"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	31-Oct-08	320552.73	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:43 PM	

+="CN62418"	"Dr Tony Diprose"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	31-Aug-08	360942.10	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62419"	"Community Development Specialist - SIRIP"	="AusAid"	18-Feb-08	="Management advisory services"	24-Mar-07	30-Jun-09	308074.80	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62422"	"Incountry Management Long Term Adviser CDRC"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jan-07	30-Jun-09	483641.71	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62426"	"Placement of General Surgeon (Chief Surgeon Specialist)"	="AusAid"	18-Feb-08	="Medical practice"	25-Aug-07	24-Aug-09	356456.10	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62434"	"PACTAM Placement Service Order - Air Kiribati Deputy Engineer"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Oct-07	30-Oct-09	361452.41	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62438-A1"	" Water Supply Operations Adviser - Placement "	="AusAid"	18-Feb-08	="Environmental management"	19-Oct-07	24-Oct-11	496777.05	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62464"	"Cambodia Criminal Justice Assistance Project Phase III"	="AusAid"	18-Feb-08	="Management advisory services"	05-Feb-07	04-Feb-12	4245383.10	=""	="GLOBAL JUSTICE SOLUTIONS (ASIA) PTY LTD"	18-Feb-08 01:50 PM	

+="CN62470"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	26-Feb-07	30-Jun-08	309069.75	=""	="PAXUS AUSTRALIA PTY LTD"	18-Feb-08 01:51 PM	

+="CN62478"	"Independant Review Group (IRG) Team Leader"	="AusAid"	18-Feb-08	="Management advisory services"	18-Apr-07	30-Jun-10	438317.78	=""	="AGGLETON, PETER"	18-Feb-08 01:52 PM	

+="CN62480"	"Pacific Land Program - Case Study Proper - ANU Enterprise Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	29-Mar-07	31-Jan-08	394975.57	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:52 PM	

+="CN62486"	"APTC Coordination Office - Personnel and Logistics"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Jun-11	1879544.70	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:53 PM	

+="CN62488"	"Emergency Gensets and Consumables for Nauru"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Apr-07	31-Dec-07	369837.60	=""	="CUMMINS SOUTH PACIFIC PTY LTD"	18-Feb-08 01:53 PM	

+="CN62489"	"Disaster Management Adviser to Indonesia"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	31-Dec-07	335500.00	=""	="LOCKTON MORRISSEY CONSULTING PTY LTD"	18-Feb-08 01:53 PM	

+="CN62499"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	729716.01	=""	="MGF WEBB"	18-Feb-08 01:55 PM	

+="CN62501"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	18-Feb-08	="Management advisory services"	26-Jul-00	31-Dec-07	22588197.68	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:55 PM	

+="CN62504"	"E44484A Spectrum analysers"	="Defence Materiel Organisation"	18-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	20-Jun-14	1321465.56	=""	="AGILENT TECHNOLOGIES"	18-Feb-08 02:11 PM	

+="CN62522"	"Provision for Monthly internet charges for (Jan-Jun) 2008"	="Geoscience Australia"	18-Feb-08	="Computer services"	11-Jan-08	30-Jun-08	726000.00	=""	="Verizon (Cybertrust Australia Pty Ltd)"	18-Feb-08 03:54 PM	

+="CN62523"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by).  Ref:  2007/3575"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	12-Jan-08	30-Jun-08	340438.23	=""	="Fugro Airborne Surveys"	18-Feb-08 03:55 PM	

+="CN62527"	"Airborne Magnetic Survey - Offshore NW Tasmania. DEED #: G2023B C - TRIM Container: 2007/2161"	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	14-Jan-08	30-Apr-08	503012.40	=""	="Fugro Airborne Surveys"	18-Feb-08 03:55 PM	

+="CN62538"	"Bass Strait Airborne Magnetic Survey (inclusive of full stand-by) - Reference:  2007/3573"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	30-Jun-08	426926.50	=""	="Thomson Aviation Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62596"	"Procurement of:  DETECTOR,WIND DIRECTION AND;  ELECTRONIC COMPONENTS ASSEMBLY;  JUNCTION BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	15-Aug-08	319910.00	=""	="SITEP AUSTRALIA Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62600"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	10-Jun-08	312218.16	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:14 PM	

+="CN62633"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	15-Apr-08	365640.00	=""	="MEASUREMENT RESOURCES Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62639"	"Procurement of:  TUBE,METALLIC;  HOUSING;  HOUSING;  PLATE,MOUNTING;  PLATE,MOUNTING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	24-Jan-08	13-Dec-08	366182.14	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM	

+="CN62642"	"Procurement of:  CIRCUIT BREAKER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	20-Nov-09	958345.26	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val30000to40000.xls
@@ -1,1 +1,170 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60745"	"Programme Management Support"	="CrimTrac"	14-Feb-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	29-Feb-08	32175.00	=""	="Tanner James Managment Consultants"	14-Feb-08 10:42 AM	

+="CN60772"	"Profesional services for future stategic positioning."	="Family Court of Australia"	14-Feb-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	06-Feb-08	33541.00	=""	="Trent Litster"	14-Feb-08 01:21 PM	

+="CN60806"	"Computer Centre Augmentation"	="Austrade"	14-Feb-08	="Computer services"	27-Sep-07	21-Dec-07	31900.00	=""	="John Raineri & Associates"	14-Feb-08 02:50 PM	

+="CN60824"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	34100.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:36 PM	

+="CN60828"	"Accommodation/National Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	09-Aug-07	01-Sep-08	31920.00	=""	="ELDERS TERRITORY REAL ESTATE"	14-Feb-08 03:37 PM	

+="CN60830"	"temporary staff wages"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Dec-08	40000.00	=""	="CHOICE ONE"	14-Feb-08 03:37 PM	

+="CN60866"	"Professional Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	30000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:42 PM	

+="CN60868"	"PropACTCanberra12MortSt(Grd to6th floor)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	16-Aug-07	13-Nov-11	33275.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:42 PM	

+="CN60874"	"GEERS - Active Creditor Pilot - Keys Trading P/L"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	14-Aug-07	33734.31	=""	="BENT & COUGLE PTY LTD"	14-Feb-08 03:43 PM	

+="CN60886"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	31000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60894"	"Bulk PO for postage of Employment Extra 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIA POST (9821984 ACC.ONLY)"	14-Feb-08 03:45 PM	

+="CN60913"	"Plant Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	30000.00	=""	="LIVING SIMPLY"	14-Feb-08 03:48 PM	

+="CN60950"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Transportation and Storage and Mail Services"	04-Dec-07	04-Dec-07	31020.92	=""	="Cabcharge Australia Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60952"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer Equipment and Accessories"	11-Dec-07	11-Dec-07	33547.64	=""	="Electroboard Solutions Pty Ltd"	14-Feb-08 03:52 PM	

+="CN60982"	"Career Directions for Graduates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	15-Oct-07	05-Nov-07	35002.03	=""	="EFFECTIVE PEOPLE P/L"	14-Feb-08 03:55 PM	

+="CN60987"	"Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	11-Dec-07	30-Jun-08	34980.00	=""	="AVOKA TECHNOLOGIES PTY LTD"	14-Feb-08 03:55 PM	

+="CN60993"	"PropQLDBrisbane200MarySt (level 15-17)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	31-Aug-07	30-Jun-08	34724.05	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 03:56 PM	

+="CN61013"	"SP75 Plus Printers"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	30019.00	=""	="TECHNICARD PTY LTD"	14-Feb-08 03:59 PM	

+="CN61024"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Feb-08	30-Jun-08	31755.17	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:00 PM	

+="CN61030"	"IT Communications  Equipment - maint. agreement"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	09-Jan-08	30-Jun-08	37022.37	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:01 PM	

+="CN61031"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	33168.30	=""	="EDEN TECHNOLOGY PTY LIMITED"	14-Feb-08 04:01 PM	

+="CN61037"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	35957.30	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61057"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	40000.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:05 PM	

+="CN61062"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	39600.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:05 PM	

+="CN61068"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	37400.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61070"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Aug-07	30-Jun-08	33600.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61072"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	17-Aug-07	30-Sep-08	40000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:07 PM	

+="CN61074"	"Reprint brochures for Support the System campain"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	20-Aug-07	31-Aug-07	37538.46	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:07 PM	

+="CN61076"	"Synergy Bulk PO - WRS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	27-Aug-07	30-Jun-08	35500.00	=""	="SYNERGY PLUS TRAINING"	14-Feb-08 04:07 PM	

+="CN61087"	"Payment of AFP character checks invoices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Aug-07	30-Jun-08	40000.00	=""	="AUST FEDERAL POLICE"	14-Feb-08 04:08 PM	

+="CN61092"	"Temporary Services - Corporate"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	26-Oct-07	34236.98	=""	="ROSS HUMAN DIRECTIONS LIMITED"	14-Feb-08 04:09 PM	

+="CN61096"	"Scribe Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Aug-07	30-Jun-08	30000.00	=""	="SCRIBE MANAGEMENT AUSTRALIA"	14-Feb-08 04:10 PM	

+="CN61103"	"course fee FY 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	24-Aug-07	30-Jun-08	32337.00	=""	="TOTAL METRICS"	14-Feb-08 04:10 PM	

+="CN61114"	"SiteCensus and Market Intelligence Subscription"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	39600.00	=""	="NETRATINGS AUSTRALIA PTY LTD"	14-Feb-08 04:12 PM	

+="CN61141"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jul-07	30-Nov-10	30000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:15 PM	

+="CN61166"	"National Office Property Inspections"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Jul-07	33401.50	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:18 PM	

+="CN61171"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	09-Jul-07	19-Dec-11	39000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61174"	"Review of efficiency of OHS instuments"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Nov-07	39860.00	=""	="GUNNINGHAM & ASSOCIATES"	14-Feb-08 04:19 PM	

+="CN61186"	"OASCC Training courses/seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:21 PM	

+="CN61223"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	33300.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:26 PM	

+="CN61242"	"SOLE SOURCE"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	31-Dec-07	33977.35	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:28 PM	

+="CN61243"	"Photcopiers"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office machines and their supplies and accessories"	23-Jul-07	30-Jan-12	35000.00	=""	="RICOH AUSTRALIA (ROA)"	14-Feb-08 04:28 PM	

+="CN61252"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Jul-07	02-Oct-07	32000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:29 PM	

+="CN61257"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Nov-10	31000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:30 PM	

+="CN61260"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	19-Jul-07	19-Dec-11	39000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:30 PM	

+="CN61284"	"Internet based media monitoring service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	40000.00	=""	="AAP INFORMATION SERVICES P/L"	14-Feb-08 04:33 PM	

+="CN61285"	"Comcar"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	30000.00	=""	="COMCAR"	14-Feb-08 04:33 PM	

+="CN61293"	"Provision for RAE Interpreter Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	30000.00	=""	="INSTITUTE FOR ABORIGINAL DEVELOPMEN"	14-Feb-08 04:34 PM	

+="CN61315"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	16-Jul-07	19-Dec-11	30000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:37 PM	

+="CN61332-A1"	"2007-08 Financial Statement Audit Australian River Company"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jan-94	31-Dec-05	31113.50	=""	="Ernst and Young - VIC"	14-Feb-08 04:39 PM	

+="CN61336-A1"	" 50 leaders licences "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	01-Jan-08	31-Dec-08	33000.00	=""	="80-20 Software Pty Ltd"	14-Feb-08 04:39 PM	

+="CN61352-A1"	"TM1 and CALUMO Software Maintenance 2008"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Software maintenance and support"	03-Jan-08	02-Jan-09	36649.80	=""	="Excelerated Consulting Pty Ltd"	14-Feb-08 04:40 PM	

+="CN61357"	"DEWR Dinner"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	17-Jul-07	31-Jul-08	34026.46	=""	="DOLTONE HOUSE"	14-Feb-08 04:41 PM	

+="CN61359"	"Course to be attended by staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	17-Jul-07	30-Jun-08	37279.00	=""	="SOFTWARE EDUCATION"	14-Feb-08 04:41 PM	

+="CN61379-A1"	"Undertake Scoping Study for Contract Management in AusAid audit"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Finance accounting and enterprise resource planning ERP software"	13-Dec-07	31-Jan-08	37000.00	=""	="Origin Consulting"	14-Feb-08 04:43 PM	

+="CN61382"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	35000.00	=""	="HARMERS WORKPLACE LAWYERS"	14-Feb-08 04:43 PM	

+="CN61386"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	35000.00	=""	="CORRS CHAMBERS WESTGARTH"	14-Feb-08 04:43 PM	

+="CN61388"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	35000.00	=""	="CLAYTON UTZ"	14-Feb-08 04:43 PM	

+="CN61389-A1"	" Contract-In Supplementary Audit Staff "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Temporary personnel services"	17-Oct-07	24-Dec-07	37000.00	=""	="BM Partners Pty Ltd"	14-Feb-08 04:43 PM	

+="CN61399-A1"	"Print Management and Publishing of the Managing Parliamentary Workflow - Better Practice Guide."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Printing"	29-Jan-08	30-Apr-08	40000.00	=""	="hma Blaze Pty Limited"	14-Feb-08 04:44 PM	

+="CN61408-A1"	"Provision of services in relation to supporting the delivery of new information systems, Enhancements to existing systems, Performance Improvements and fault diagnosis/rectification"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	19-Nov-07	08-Feb-08	37997.65	=""	="Aurec Pty Ltd"	15-Feb-08 08:20 AM	

+="CN60697"	"Fee for Services"	="Attorney-General's Department"	15-Feb-08	="National Defence and Public Order and Security and Safety Services"	13-Dec-07	30-Jun-08	30000.00	=""	="Kibbey Laison Services"	15-Feb-08 11:26 AM	

+="CN61454"	"Memberships & Subscriptions Costs"	="Department of Finance and Administration"	15-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	30138.51	="N/A"	="COPYRIGHT AGENCY LIMITED"	15-Feb-08 03:21 PM	

+="CN61464"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61465"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61466"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61467"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61468"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61469"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:26 PM	

+="CN61470"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61471"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61472"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61473"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61474"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	19-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	15-Feb-08 03:27 PM	

+="CN61481"	"Legal Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	31-Mar-08	38500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 03:28 PM	

+="CN61482"	"Training & Education Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Education and Training Services"	17-Dec-07	19-Dec-07	38360.00	="N/A"	="PEOPLE & STRATEGY (ACT) PTY"	15-Feb-08 03:28 PM	

+="CN61507"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	30-May-08	32447.25	=""	="HANNOVER FAIRS AUSTRALIA PTY LTD"	15-Feb-08 03:31 PM	

+="CN61508"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	15-Feb-08	="Engineering and Research and Technology Based Services"	08-Feb-08	13-Oct-08	33000.00	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	15-Feb-08 03:31 PM	

+="CN61532"	"Freight between offices"	="Centrelink"	15-Feb-08	="Mail and cargo transport"	08-Jan-08	28-Mar-08	32210.75	=""	="Australian Air Express"	15-Feb-08 03:44 PM	

+="CN61544"	"Office relocation services"	="Centrelink"	15-Feb-08	="Transport operations"	30-Jan-08	30-Jan-08	33550.00	=""	="Balfran Removals"	15-Feb-08 03:45 PM	

+="CN61564-A1"	"recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	40000.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:48 PM	

+="CN61567"	"Transport operations"	="Centrelink"	15-Feb-08	="Transport operations"	09-Jan-08	30-Jun-08	30000.00	=""	="Vincent Aviation"	15-Feb-08 03:48 PM	

+="CN61570-A1"	" External Training "	="Centrelink"	15-Feb-08	="Specialised educational services"	09-Jan-08	07-Mar-08	32250.00	=""	="UNE Partnerships Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61571"	"Accomodation and meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	09-Jan-08	03-Mar-08	30000.00	=""	="Clifton Suites on Northbourne Ave"	15-Feb-08 03:49 PM	

+="CN61615"	"Fitout"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	30-Sep-08	38500.00	=""	="James Millar Architects"	15-Feb-08 03:54 PM	

+="CN61633"	"Accomodation and other meeting facilities"	="Centrelink"	15-Feb-08	="Hotels and lodging and meeting facilities"	17-Jan-08	30-Jun-08	39384.62	=""	="Airport Motel and Convention Centre"	15-Feb-08 03:57 PM	

+="CN61642"	"workstations for 340 Adelaide St Brisbane QLD"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	23-Jan-08	30-Jun-08	36396.80	=""	="Schiavello Systems (QLD) Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61659-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	10-Jan-08	23-Mar-08	36400.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	15-Feb-08 04:38 PM	

+="CN61667"	"Equipment"	="Attorney-General's Department"	15-Feb-08	="Cleaning equipment"	11-Jan-08	11-Jan-08	30114.70	=""	="Owen International"	15-Feb-08 04:39 PM	

+="CN61689"	"Equipment"	="Attorney-General's Department"	15-Feb-08	="Alarm systems"	08-Jan-08	30-Jan-08	35295.00	=""	="Smiths Detection (Australia)"	15-Feb-08 04:41 PM	

+="CN61693"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	18-Jan-08	25-Apr-08	36026.10	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 04:42 PM	

+="CN61699"	"Professional services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	29-Jan-08	25-Apr-08	30074.22	=""	="Robert James Anderson"	15-Feb-08 04:43 PM	

+="CN61700"	"Professional services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	14-Dec-07	25-Apr-08	31898.00	=""	="Robert James Anderson"	15-Feb-08 04:43 PM	

+="CN61704"	"Consultancy Services"	="Attorney-General's Department"	15-Feb-08	="Management and Business Professionals and Administrative Services"	05-Dec-07	05-Dec-07	37290.00	=""	="Gavin Jones Communications Pty Ltd"	15-Feb-08 04:43 PM	

+="CN61707"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	17-Dec-07	30-Jun-08	33000.00	=""	="Centacare Catholic Family Services"	15-Feb-08 04:44 PM	

+="CN61714"	"Contractor Services"	="Attorney-General's Department"	15-Feb-08	="Temporary technician staffing needs"	08-Jan-08	08-Jan-08	32081.50	=""	="Face 2 Face Recruitment Pty Limited"	15-Feb-08 04:45 PM	

+="CN61717"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	03-Jan-08	30-Jun-08	37400.00	=""	="Hudson Global Resources"	15-Feb-08 04:45 PM	

+="CN61748-A1"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	24-Apr-08	35916.91	="ATM/08/863"	="Hudson Global Resources (Aust) P/L"	15-Feb-08 05:07 PM	

+="CN61754"	"TRIM Annual Maintenance"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	38539.82	="ATM 07/754"	="TOWER SOFTWARE"	15-Feb-08 05:08 PM	

+="CN61798"	"Refurbish 4x Bushmaster"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	06-Sep-06	28-Jul-07	38241.17	=""	="THALES AUSTRALIA"	15-Feb-08 06:58 PM	

+="CN61832"	"Trailer Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	14-Nov-06	12-Jan-07	30173.30	=""	="HAULMARK TRAILERS AUSTRALIA"	15-Feb-08 07:02 PM	

+="CN61847"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	04-Dec-06	28-Feb-07	32558.15	=""	="RPC TECHNOLOGIES Pty Ltd"	15-Feb-08 07:04 PM	

+="CN61871"	"Wheel Assembly ASLAV"	="Department of Defence"	15-Feb-08	="Motor vehicles"	15-Jan-07	18-Feb-07	39223.00	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 07:07 PM	

+="CN61879"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	29-Jan-07	30-Mar-07	31063.73	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:08 PM	

+="CN61887"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Feb-07	22-Apr-07	39447.39	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61931"	"Development of training materials and their presentation to DVA staff nationally"	="Department of Veterans' Affairs"	18-Feb-08	="Specialised educational services"	30-Jul-07	12-Sep-07	39861.00	=""	="HSA GROUP"	18-Feb-08 10:31 AM	

+="CN61935"	" CRS Australia - Temporary Lease, Christie Centre, CRS QLD Corporate Office "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	05-Mar-08	04-May-08	33000.00	=""	="Christie Systems Services"	18-Feb-08 10:38 AM	

+="CN61944"	"Provision for Administrative Personnel"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	29-May-06	23-Jun-06	34650.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:38 AM	

+="CN61946"	"Provision for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	38709.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:43 AM	

+="CN61978"	"Labour Market Analysis"	="AusAid"	18-Feb-08	="Vocational training"	30-Aug-07	31-Oct-07	33429.00	=""	="VOIGT-GRAF, CARMEN"	18-Feb-08 12:44 PM	

+="CN62001"	"Finance Management Assesment- Roger Jenkins"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jul-07	01-Sep-07	36995.94	=""	="JENKINS, ROGER DOUGLAS"	18-Feb-08 12:47 PM	

+="CN62022"	"Minor Contract - Judith Johnson"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Nov-07	33315.15	=""	="JOHNSON, JUDITH"	18-Feb-08 12:49 PM	

+="CN62031"	"Public Financial Management Specialists - Mark Harradine"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	12-Oct-07	30024.50	=""	="HARRADINE, MARK"	18-Feb-08 12:51 PM	

+="CN62034"	"Peter Millington - Water Resource Specialist - NVN ICR"	="AusAid"	18-Feb-08	="Environmental management"	02-Aug-07	31-Jul-08	33550.00	=""	="PETER MILLINGTON & ASSOCIATES PTY LTD"	18-Feb-08 12:51 PM	

+="CN62043"	"People Movement Paper"	="AusAid"	18-Feb-08	="Community and social services"	20-Aug-07	29-Feb-08	32600.00	=""	="THE ADELAIDE RESEARCH & INNOVATION INVESTMENT TRUST"	18-Feb-08 12:52 PM	

+="CN62061"	"Payment for ICR Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	18-Aug-07	31-Oct-07	33009.90	=""	="UNIVERSITY OF TECHNOLOGY, SYDNEY"	18-Feb-08 12:55 PM	

+="CN62076"	"Mid Term Review of ACRP"	="AusAid"	18-Feb-08	="Human resources services"	01-Aug-07	31-Dec-07	35250.00	=""	="JANSSEN, GUY MATHIEU AGNES"	18-Feb-08 12:57 PM	

+="CN62082"	"Pacific Cluster Evaluation - Julie Eagles"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	39775.45	=""	="EAGLES, JULIE ANNE"	18-Feb-08 12:57 PM	


+="CN62095"	"Contract with David Barber - Annual Review 2007"	="AusAid"	18-Feb-08	="Management advisory services"	20-Sep-07	30-Nov-07	38964.00	=""	="BARBER, DAVID G"	18-Feb-08 12:59 PM	

+="CN62103"	"TA for Establihing the OACC - John Wood"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	31-Jan-08	33643.01	=""	="BALJURDA COMPREHENSIVE CONSULTING"	18-Feb-08 01:00 PM	

+="CN62117"	"HSSP Interim Health Sector Adviser (Chris Chamberlin)"	="AusAid"	18-Feb-08	="Comprehensive health services"	22-Oct-07	12-Mar-08	36972.83	=""	="CHAMBERLAIN, CHRISTOPHER A"	18-Feb-08 01:02 PM	

+="CN62138"	"UNIFEM Bangkok VAW Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Jul-07	30-Jun-08	40000.00	=""	="UNITED NATIONS FUND FOR WOMEN"	18-Feb-08 01:05 PM	

+="CN62139"	"Carol Beaver"	="AusAid"	18-Feb-08	="Disease prevention and control"	15-Oct-07	15-Nov-07	33550.00	=""	="THE TRUSTEE FOR VAN KONKELENBERG FAMILY TRUST"	18-Feb-08 01:05 PM	

+="CN62140"	"Review of Copra Industry - Duncan Burnett"	="AusAid"	18-Feb-08	="Management advisory services"	04-Nov-07	31-Jan-08	30528.81	=""	="BURNETT, DUNCAN"	18-Feb-08 01:05 PM	

+="CN62168-A1"	"GIFC Indonesia - fire and peatland prefeasibility mission"	="AusAid"	18-Feb-08	="Forestry"	26-Jul-07	10-Oct-07	31826.30	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:09 PM	

+="CN62169"	"GIFC program management - general input"	="AusAid"	18-Feb-08	="Forestry"	30-Jul-07	30-Jun-08	36982.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:09 PM	

+="CN62173"	"Independent Completion Report Mission, Cuu Long RWSS Project"	="AusAid"	18-Feb-08	="Human resources services"	06-Sep-07	31-Oct-07	33331.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:10 PM	

+="CN62177"	"ABC/NBC Review Diane Berryman"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	30-May-08	36723.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:10 PM	

+="CN62190"	"Livingston - AFCJP 2008 AP Pre Planning Mission"	="AusAid"	18-Feb-08	="Security and personal safety"	16-Sep-07	30-Nov-07	30676.80	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62198"	"Service Order for Beijing Post Staffing Review Consolidation"	="AusAid"	18-Feb-08	="Human resources services"	10-Sep-07	28-Feb-08	33150.00	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:13 PM	

+="CN62223"	"Evaluation of WHO-RBM in Mindanao and ADS-MCP Initiatives"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Sep-07	30-Nov-07	39500.02	=""	="CONDON, ROBERT JAMES"	18-Feb-08 01:17 PM	

+="CN62224"	"TAG Oct 2007 - Consultant Costs"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Oct-07	31-Dec-07	37314.20	=""	="CONDON, ROBERT JAMES"	18-Feb-08 01:17 PM	

+="CN62260"	"ABC/NBC Review Ian Teese"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	30-Nov-07	30998.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:22 PM	

+="CN62264"	"Iraq capacity Building Facility Design inputs"	="AusAid"	18-Feb-08	="Human resources services"	01-May-07	01-Nov-07	35200.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:22 PM	

+="CN62266"	"Service Order - administrative inputs"	="AusAid"	18-Feb-08	="Electronic reference material"	03-Sep-07	30-Nov-07	30426.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:23 PM	

+="CN62269"	"Aceh Program PMSG M&E Helpdesk - Sue Dawson Aug 07"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	31-Oct-07	33000.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62298"	"Audit of ANU & ANU Enterprises"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	01-Mar-08	30654.20	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62299"	"IT Audit of SIMON and OASIS"	="AusAid"	18-Feb-08	="Business administration services"	05-Nov-07	30-Jun-08	34886.42	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:28 PM	

+="CN62311"	"Performance Audit of VCMB"	="AusAid"	18-Feb-08	="Accounting and auditing"	05-Nov-07	31-Jan-08	31258.70	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62348"	"Review of AusAID Port Moresby Disaster Preparedness and Response Capacity"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Aug-07	21-Sep-07	31433.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62354"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	20-Feb-07	29-Jun-07	33336.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:36 PM	

+="CN62425"	"Recruitment of Vocational & Educational Training Specialist"	="AusAid"	18-Feb-08	="Vocational training"	04-Jul-07	05-Oct-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62435"	"PACTAM Recruitment - Strategic Health Planner/Project Manager, Naurau"	="AusAid"	18-Feb-08	="Medical practice"	19-Sep-07	14-Nov-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62436"	"PACTAM Recruitment - Secretary Health and Medical Services, Nauru"	="AusAid"	18-Feb-08	="Medical practice"	19-Sep-07	14-Nov-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62440"	"FSM PACTAM Tax Reform Adviser Recruitment"	="AusAid"	18-Feb-08	="Accounting and auditing"	27-Sep-07	31-Mar-08	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62444"	"PACTAM Recruitment - Health Educator, Nauru"	="AusAid"	18-Feb-08	="Medical practice"	05-Oct-07	30-Jan-08	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:48 PM	

+="CN62445"	"Pacific Land Program Phase 1 Advisory Services"	="AusAid"	18-Feb-08	="Management advisory services"	11-Sep-06	31-May-08	35516.80	=""	="MUNRO, JOHN"	18-Feb-08 01:48 PM	

+="CN62461"	"Aceh Infrastructure Monitoring Team - Team Member - Leon Mayers"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	29-Jan-07	10-May-08	39327.84	=""	="MAYERS, LEON C"	18-Feb-08 01:50 PM	

+="CN62497"	"Aceh Rehabilitation Program - Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	30-Jul-07	31-Aug-07	35090.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:54 PM	

+="CN62510"	"Provision for National Action Plan to Promote understanding and Dialogue among Australians"	="Department of Immigration and Citizenship"	18-Feb-08	="Civic organisations and associations and movements"	21-Jan-08	30-Jun-08	31075.00	=""	="Islamic Council of Victoria Inc"	18-Feb-08 03:30 PM	

+="CN62516"	"3 x VMWare Infrastructure Enterprise for 2CPU and 3 x 3Yr  Gold Support"	="Geoscience Australia"	18-Feb-08	="Software"	10-Jan-08	02-Jan-09	31445.70	=""	="Dell Australia Pty Ltd"	18-Feb-08 03:54 PM	

+="CN62530"	"RP - transcription of tapes consisting of 11,583 x 3480 tapes."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	30851.46	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:56 PM	

+="CN62537"	"Master of Science Academic Program 2007 Semesters"	="Geoscience Australia"	18-Feb-08	="Education and Training Services"	17-Jan-08	31-Jan-08	31443.20	=""	="Australian National University"	18-Feb-08 03:57 PM	

+="CN62543"	"30 x Dell Optiplex 755 Desktops"	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	21-Jan-08	01-Feb-08	35145.00	=""	="Dell Australia Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62544"	"Consultancy contract for QC services for the North Perth Basin Seismic Reprocessing"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	21-Jan-08	31-Jul-08	33000.00	=""	="Makaira Geotechnical Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62553"	"Consultancy contract for provision of environmental approval documentation for the GA WA Offshore Seismic Survey Program."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	29-Jan-08	30-Aug-08	36300.00	=""	="RPS Environment Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62560"	"Import charges for the movement of 1 x 20ft gp owner sea container."	="Geoscience Australia"	18-Feb-08	="Transportation and Storage and Mail Services"	30-Jan-08	30-Jan-08	31226.61	=""	="International Art Services"	18-Feb-08 04:00 PM	

+="CN62574"	"Procurement of:  GEAR ASSEMBLY,SPEED DECREASER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	14-Sep-08	33124.67	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62581"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	28-Apr-08	34688.90	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62588"	"Procurement of:  THERMOSTAT,FLOW CONTROL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	17-Apr-08	31102.36	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62602"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	21-Mar-08	34969.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	18-Feb-08 05:14 PM	

+="CN62610"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	15-Apr-08	33900.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62624"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	21-Jan-08	17-Oct-08	33564.64	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62626"	"Procurement of:  TRANSDUCER, DC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	01-May-08	33800.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	18-Feb-08 05:17 PM	

+="CN62634"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	11-Jul-08	31639.08	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62635"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	33011.11	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val40000to80000.xls
@@ -1,1 +1,338 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60751"	"Contractor"	="CrimTrac"	14-Feb-08	="Temporary personnel services"	08-Jan-08	13-Jun-08	68640.00	=""	="Finite IT Recruitment Solutions"	14-Feb-08 10:43 AM	

+="CN60756"	"Contract administration staff"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	18-Jun-07	21-Dec-07	69492.18	=""	="Green  Green"	14-Feb-08 10:43 AM	

+="CN59902"	"Training"	="Workplace Ombudsman"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	29-Feb-08	49581.80	=""	="Justitia"	14-Feb-08 11:09 AM	

+="CN60767"	"Supply of radio communication equiptment"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	31-Dec-07	70244.46	=""	="Motorola Australia Pty Limited"	14-Feb-08 11:49 AM	

+="CN60811"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	14-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	30-Jan-08	79742.63	=""	="Hewlett Packard Australia Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60818"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	08-Jan-08	07-Jan-11	68875.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:27 PM	

+="CN60825"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	10-Aug-07	30-Jun-08	76621.25	=""	="TELSTRA (VIC)"	14-Feb-08 03:37 PM	

+="CN60823-A1"	"Services to develop and implement an e-Channel Agenda for Centrelink"	="Centrelink"	14-Feb-08	="Management advisory services"	13-Feb-08	30-Jun-08	77000.00	=""	="Smartnet Pty Ltd"	14-Feb-08 03:37 PM	

+="CN60830"	"temporary staff wages"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	31-Dec-08	40000.00	=""	="CHOICE ONE"	14-Feb-08 03:37 PM	

+="CN60831"	"WRS Scribe Services 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	30-Jun-08	50000.00	=""	="WORDSWORTH WRITING (WWW)"	14-Feb-08 03:37 PM	

+="CN60840"	""Accommodation, catering for Management Devt prog""	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	06-Aug-07	24-Dec-07	57868.18	=""	="RYDGES EAGLE HAWK RESORT"	14-Feb-08 03:38 PM	

+="CN60841"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Aug-07	30-Jun-08	40500.00	=""	="STAFF CHECK PTY LTD"	14-Feb-08 03:39 PM	

+="CN60848"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	07-Aug-07	30-Nov-10	70621.71	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:39 PM	

+="CN60849"	"General Audit Services - Service 2"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	08-Aug-07	30-Jun-10	43461.00	=""	="RSM BIRD CAMERON"	14-Feb-08 03:40 PM	

+="CN60857"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	15-Aug-07	30-Jun-08	48158.70	=""	="TELSTRA (VIC)"	14-Feb-08 03:41 PM	

+="CN60860"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	60578.10	=""	="TELSTRA (VIC)"	14-Feb-08 03:41 PM	

+="CN60869"	"Legal advice costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Aug-07	30-Jun-08	50000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	14-Feb-08 03:42 PM	

+="CN60875"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	14-Aug-07	30-Nov-10	47087.50	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 03:43 PM	

+="CN60876"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	14-Aug-07	30-Nov-10	60000.00	=""	="MANPOWER"	14-Feb-08 03:43 PM	

+="CN60878"	"SWAW promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	30-Jun-08	50000.00	=""	="INKSPOTT PROMOTIONS"	14-Feb-08 03:43 PM	

+="CN60879"	"SWAW promotional items"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	14-Aug-07	30-Jun-08	50000.00	=""	="CHILLI PROMOTIONS PTY LTD"	14-Feb-08 03:43 PM	

+="CN60882"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Aug-07	30-Jun-08	58190.00	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60885"	"Printing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	15-Aug-07	04-Nov-07	60500.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	14-Feb-08 03:44 PM	

+="CN60894"	"Bulk PO for postage of Employment Extra 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	30-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIA POST (9821984 ACC.ONLY)"	14-Feb-08 03:45 PM	

+="CN60896"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Dec-06	04-Dec-09	54556.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:46 PM	

+="CN60900"	"Forensic audit of Northern Star CDEP"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	30-Jul-07	20-Aug-07	45136.75	=""	="WALTER AND TURNBULL PTY LTD"	14-Feb-08 03:46 PM	

+="CN60910"	"Freight charges 2007/2008"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	26-Jul-07	30-Jun-08	64000.00	=""	="AUSTRALIAN AIR EXPRESS"	14-Feb-08 03:47 PM	

+="CN60909"	"Services in relation to coordinating and publishing web content on internal and external AFP websites, and undertaking web management projects and reviews as required"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-07	31-Aug-07	58960.00	=""	="Aurec Pty Ltd"	14-Feb-08 03:48 PM	

+="CN60916"	"Campaign media promotional advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	27-Jul-07	30-Jun-08	65000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 03:48 PM	

+="CN60920"	"UPGRADE WORKS TO RIGHTFAX SERVER"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	27-Jul-07	10-Aug-07	67432.20	=""	="AXIENT PTY LTD"	14-Feb-08 03:49 PM	

+="CN60921"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Telecommunications media services"	22-Jan-08	30-Jun-08	72173.20	=""	="TELSTRA (VIC)"	14-Feb-08 03:49 PM	

+="CN60926"	"Lawpoint Galloway - GEERS ASIC Reports"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Aug-07	03-Aug-07	50000.00	=""	="LAWPOINT GALLOWAYS"	14-Feb-08 03:50 PM	

+="CN60929"	"WRS Scribe Services - 07/08 RMC"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	50000.00	=""	="RECRUITMENT MANAGEMENT COMPANY"	14-Feb-08 03:50 PM	

+="CN60930"	"Employment of welfare to work job"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Aug-07	16-Jun-08	77910.00	=""	="RESTAURANT & CATERING INDUSTRY ASSO"	14-Feb-08 03:50 PM	

+="CN60938"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Jun-08	71000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 03:51 PM	

+="CN60943"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	31-Jul-07	19-Dec-11	45000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:52 PM	

+="CN60947"	"Electronic Press Clippings"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	01-Aug-07	30-Jun-09	51198.62	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 03:52 PM	

+="CN60957"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	02-Aug-07	30-Jun-08	54670.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:53 PM	

+="CN60961"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Aug-07	30-Jun-08	47729.00	=""	="COMPUTER ASSOCIATES PTY LTD"	14-Feb-08 03:53 PM	

+="CN60963"	"WRS Scribe Services - Tony De Luca 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	03-Aug-07	30-Jun-08	50000.00	=""	="TONVIA P/L (Tony&Sylvia De Luca)"	14-Feb-08 03:53 PM	

+="CN60969"	"Employment Extra printing and distribution 07-08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	03-Aug-07	30-Jun-08	70000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 03:54 PM	

+="CN60978"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	01-Dec-07	70700.00	=""	="Ryder Shop & Office Fitting Pty Ltd"	14-Feb-08 03:54 PM	

+="CN60986"	"DEWR expo stand hire at EOC Career Expos"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Oct-07	22-Aug-08	60687.00	=""	="EOC GROUP PTY LTD"	14-Feb-08 03:55 PM	

+="CN60998"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jan-08	30-Sep-08	42453.26	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 03:57 PM	

+="CN60999"	"IT Contractor"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jan-08	30-Jun-08	67485.00	="ICT"	="IT MATTERS"	14-Feb-08 03:57 PM	

+="CN61004"	"Graduate Training - Policy Formulation and Advice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	19-Sep-07	19-Oct-07	59180.00	=""	="TIMMINS STEWART PTY LTD"	14-Feb-08 03:58 PM	

+="CN61005"	"Pallet Storage Communications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Sep-07	30-Sep-08	49540.00	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 03:58 PM	

+="CN61032"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	09-Jan-08	30-Jun-08	55863.50	=""	="SOFTWARE DESIGN ASSOCIATES PTY"	14-Feb-08 04:01 PM	

+="CN61053"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	21-Aug-07	30-Jun-08	74441.40	=""	="TELSTRA (VIC)"	14-Feb-08 04:04 PM	

+="CN61056"	"DEWR - Brindabella Park - Proposed Accommodation"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Aug-07	31-Dec-07	71830.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:04 PM	

+="CN61057"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	22-Aug-07	30-Nov-10	40000.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:05 PM	

+="CN61061"	"Data"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	46200.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:05 PM	

+="CN61072"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	17-Aug-07	30-Sep-08	40000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:07 PM	

+="CN61081"	"WRS Media Monitors - 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Printed media"	28-Aug-07	30-Jun-08	50000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:08 PM	

+="CN61083"	"Rental for the National Emergency Responce"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	28-Aug-07	27-Feb-08	49115.57	=""	="FOCUS FIRST NATIONAL REAL ESTATE"	14-Feb-08 04:08 PM	

+="CN61087"	"Payment of AFP character checks invoices"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Aug-07	30-Jun-08	40000.00	=""	="AUST FEDERAL POLICE"	14-Feb-08 04:08 PM	

+="CN61089"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	30-Aug-07	30-Jun-08	41349.00	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:09 PM	

+="CN61119"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	03-Dec-07	30-Jun-08	62357.83	=""	="CANDLE AUSTRALIA LTD"	14-Feb-08 04:12 PM	

+="CN61126"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	80000.00	=""	="LLOYD'S REGISTER QUALITY ASSURANCE"	14-Feb-08 04:13 PM	

+="CN61128"	"Provision for stationery 07/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	05-Jul-07	30-Jun-08	48000.00	=""	="CORPORATE EXPRESS AUSTRALIA"	14-Feb-08 04:14 PM	

+="CN61129"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	70000.00	=""	="HSEQ SOLUTIONS PTY LTD"	14-Feb-08 04:14 PM	

+="CN61139"	"Provision of Bulk Mailhouse Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	05-Jul-07	30-Jun-08	56672.45	=""	="SALMAT DOCUMENT MANAGEMENT"	14-Feb-08 04:15 PM	

+="CN61145"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	09-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:16 PM	

+="CN61149"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	10-Jul-07	10-Jul-07	58500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:16 PM	

+="CN61160"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	48000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61161"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	30-Jun-08	43500.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61162"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	71000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:18 PM	

+="CN61165"	"PropNSWSyd ElizabethSt"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Dec-15	63663.60	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:18 PM	

+="CN61167"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	64850.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61168"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Sep-08	70000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:19 PM	

+="CN61169"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	06-Jul-07	19-Dec-11	56000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:19 PM	

+="CN61172"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	50000.00	=""	="GLOBAL SAFETY STRATEGIES"	14-Feb-08 04:19 PM	

+="CN61176"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	70000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:20 PM	

+="CN61177"	"Lease: Paris Apartment - OECD Minister-"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	03-Jul-07	14-Mar-08	56525.96	=""	="UNITED GROUP SERVICES*BLOCKED*"	14-Feb-08 04:20 PM	

+="CN61180"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	44220.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:20 PM	

+="CN61186"	"OASCC Training courses/seminars"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	03-Jul-07	30-Jun-08	40000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:21 PM	

+="CN61187"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Sep-08	50000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:21 PM	

+="CN61190"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	02-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:21 PM	

+="CN61201"	"cabcharges FY 2007/2008."	="Department of Employment and Workplace Relations"	14-Feb-08	="Passenger transport"	02-Jul-07	30-Jun-08	75900.00	=""	="CABCHARGE AUSTRALIA PTY LTD"	14-Feb-08 04:23 PM	

+="CN61208"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	50000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:24 PM	

+="CN61215"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	04-Jul-07	19-Dec-11	66000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:25 PM	

+="CN61217"	"Professional services - Comcare asbestos claims"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	30-Jun-08	50000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 04:25 PM	

+="CN61219"	"Property Costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	30-Sep-07	49376.25	=""	="MASTER CARPETS (ACT) P/L"	14-Feb-08 04:25 PM	

+="CN61221"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	09-Jan-09	50000.00	=""	="TBN SOLUTIONS PTY LTD"	14-Feb-08 04:25 PM	

+="CN61224"	"OFSC printing costs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Manufacturing support services"	03-Jul-07	30-Jun-08	50000.00	=""	="NATIONAL CAPITAL PRINTING"	14-Feb-08 04:26 PM	

+="CN61225"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	03-Jul-07	19-Dec-11	66000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 04:26 PM	

+="CN61228"	"OFSC temprorary staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Jun-08	70000.00	=""	="THE GREEN & GREEN GROUP"	14-Feb-08 04:26 PM	

+="CN61233"	"APS Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	47300.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61234"	"APS Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	48000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61235"	"WRS Courses 2007/08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	04-Jul-07	30-Jun-08	50000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	14-Feb-08 04:27 PM	

+="CN61240"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	23-Jul-07	30-Jun-08	72930.00	=""	="DATA#3 LTD"	14-Feb-08 04:28 PM	

+="CN61250"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	08-Jan-08	30-Jun-08	79200.00	="ITC"	="FINITE RECRUITMENT PTY LTD"	14-Feb-08 04:29 PM	

+="CN61264"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	03-Dec-07	30-Jun-08	73360.00	=""	="MANPOWER SERVICES"	14-Feb-08 04:31 PM	

+="CN61265"	"Contract Staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	07-Sep-07	74000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:31 PM	

+="CN61284"	"Internet based media monitoring service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	40000.00	=""	="AAP INFORMATION SERVICES P/L"	14-Feb-08 04:33 PM	

+="CN61286"	"Car Hire"	="Department of Employment and Workplace Relations"	14-Feb-08	="Motor vehicles"	26-Jul-07	30-Jun-08	45000.00	=""	="COMCAR"	14-Feb-08 04:34 PM	

+="CN61297"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	25-Jul-07	30-Jun-08	45000.00	=""	="SPARKE HELMORE"	14-Feb-08 04:35 PM	

+="CN61305"	"IT Equipment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	12-Jul-07	30-Jun-08	70987.87	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:36 PM	

+="CN61323"	"NRP Project Management Fee and Adjustment"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	11-Jul-07	11-Jul-07	56067.00	=""	="UNITED GROUP SERVICES - BUSINESS AC"	14-Feb-08 04:38 PM	

+="CN61349"	"SERVER AND STORAGE H/W ELECTRICAL  INSTALLATIONS"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	17-Jul-07	30-Jun-08	53977.00	=""	="HITACHI DATA SYSTEMS"	14-Feb-08 04:40 PM	

+="CN61375-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	11-Feb-08	28-Mar-08	75000.00	=""	="WalterTurnbull Pty Ltd"	14-Feb-08 04:42 PM	

+="CN61391-A1"	" Engagement of staff to assist with IT Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	22-Jan-08	30-Apr-08	49857.50	="ANAOAM2007/294"	="KPMG Peat Marwick - ACT"	14-Feb-08 04:44 PM	

+="CN61397-A1"	" Accommodation costs for 2 Secondees from Papua New Guinea - Sydney "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Lease and rental of property or building"	28-Jan-08	31-Dec-08	60000.00	=""	="The Apartment Service Pty Ltd"	14-Feb-08 04:44 PM	

+="CN61399-A1"	"Print Management and Publishing of the Managing Parliamentary Workflow - Better Practice Guide."	="Australian National Audit Office (ANAO)"	14-Feb-08	="Printing"	29-Jan-08	30-Apr-08	40000.00	=""	="hma Blaze Pty Limited"	14-Feb-08 04:44 PM	

+="CN61405"	"Recruitment Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	17-Jul-07	30-Nov-10	56500.00	=""	="SELECT APPOINTMENTS"	14-Feb-08 04:45 PM	

+="CN61404"	"Design and Development of Staff Training Program"	="Department of Immigration and Citizenship"	14-Feb-08	="Employee education"	23-Jan-08	30-Apr-08	40480.00	=""	="Yellow Edge Pty Ltd"	14-Feb-08 04:45 PM	

+="CN61409"	"Qty 10,000 Lens Brushes"	="Defence Materiel Organisation"	15-Feb-08	="Surveillance and detection equipment"	13-Feb-08	28-Mar-08	46090.00	=""	="Stealth Surveillance Systems P/L"	15-Feb-08 08:20 AM	

+="CN61410-A2"	"Provision of services in relation to administrative support to the Information services devision of the Australian Federal Police"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	15-Oct-07	30-Jun-08	52060.80	=""	="CCS Index Pty Ltd"	15-Feb-08 08:30 AM	

+="CN61411-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	29-Oct-07	31-Mar-08	75548.00	=""	="Icon Recruitment Pty Ltd"	15-Feb-08 08:40 AM	

+="CN61412-A3"	"Provision of indexing and abstracting of published materials in the AFP library"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	01-Oct-08	30-Jun-09	68340.00	=""	="Informed Sources Pty. Ltd."	15-Feb-08 09:18 AM	

+="CN61414"	"Provision of services in relation to administrative support for Information Services"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	78355.20	=""	="Innovative Business Computing Pty Limited"	15-Feb-08 09:32 AM	

+="CN61416-A1"	"Provision of services in relation to the trainee program within Information services"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	17-Sep-07	30-Sep-08	71462.16	=""	="Innovative Business Computing Pty Limited"	15-Feb-08 09:47 AM	

+="CN61437"	"SAW, CIRCULAR, PORTABLE, GASOLINE"	="Defence Materiel Organisation"	15-Feb-08	="Saws"	14-Feb-08	28-Feb-08	67375.00	="G7530"	="SYDNEY TOOLS PTY LTD"	15-Feb-08 01:22 PM	

+="CN61436"	"06.030-1095 Printing of NAT16524-2.2008 - Activity Statement Update Q3 2007-2008."	="Australian Taxation Office"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-Feb-08	31-Mar-08	54890.00	=""	="Blue Star Print Group T/A National Capital Printing"	15-Feb-08 01:44 PM	

+="CN61440"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	15-Feb-08	="Drugs and Pharmaceutical Products"	06-Feb-08	22-Feb-08	42929.87	=""	="Symbion Pharmacy Services"	15-Feb-08 02:19 PM	

+="CN61457"	"Business Advisory Services"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	31-Jul-08	60280.00	=""	="GARTNER GROUP PACIFIC PTY LTD"	15-Feb-08 03:25 PM	

+="CN61479"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	18-Mar-08	48696.00	="-"	="KPMG AUSTRALIA"	15-Feb-08 03:28 PM	

+="CN61480"	"Training & Education Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Education and Training Services"	13-Jan-08	31-Jan-09	71814.87	=""	="HEC PARIS"	15-Feb-08 03:28 PM	

+="CN61491"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	24-Apr-08	49708.00	="N/A"	="CPT GLOBAL LIMITED"	15-Feb-08 03:29 PM	

+="CN61510"	"Consultancy Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-May-08	79999.99	="."	="PAT FARRELLY & ASSOCIATES PTY LTD"	15-Feb-08 03:32 PM	

+="CN61528-A1"	" Recruitment Services "	="Centrelink"	15-Feb-08	="Human resources services"	03-Jan-08	17-Mar-08	49780.01	="RFT07/0021"	="Chandler Macleod Group"	15-Feb-08 03:43 PM	

+="CN61533"	"Supply and install carpet"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	31-Jan-08	30-Jun-08	46780.42	=""	="Interface Flor"	15-Feb-08 03:44 PM	

+="CN61534"	"Supply and install carpet"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	31-Jan-08	30-Jun-08	74419.40	=""	="Future Floor Services"	15-Feb-08 03:44 PM	

+="CN61543-A1"	" Advertising "	="Centrelink"	15-Feb-08	="Printed media"	16-Jan-08	30-Jun-08	65824.67	=""	="HMA Blaze Pty Ltd"	15-Feb-08 03:45 PM	

+="CN61549"	"Freight charges"	="Centrelink"	15-Feb-08	="Mail and cargo transport"	08-Jan-08	30-Jun-08	56628.00	=""	="Australian Air Express"	15-Feb-08 03:46 PM	

+="CN61556"	"Computer Services"	="Centrelink"	15-Feb-08	="Computer services"	22-Jan-08	30-Jun-08	50281.00	=""	="Nuance Communications Int. BVBA"	15-Feb-08 03:47 PM	

+="CN61560"	"Marketing and distribution"	="Centrelink"	15-Feb-08	="Marketing and distribution"	24-Jan-08	30-Jun-08	50000.01	=""	="Unimail Pty Ltd"	15-Feb-08 03:47 PM	

+="CN61564-A1"	"recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	31-Jan-08	30-Jun-08	40000.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:48 PM	

+="CN61572-A1"	"Recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	10-Jan-08	30-Jun-08	54450.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:49 PM	

+="CN61575"	"IT Cabling"	="Centrelink"	15-Feb-08	="Computer services"	14-Jan-08	16-Mar-08	48730.00	=""	="Integrated Cabling Solutions Pty Lt"	15-Feb-08 03:49 PM	

+="CN61593"	"Fitout of Ayr QLD"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	30-Jun-08	68662.00	=""	="Quadric Pty Ltd"	15-Feb-08 03:52 PM	

+="CN61601"	"IT Contractor"	="Centrelink"	15-Feb-08	="Computer services"	15-Jan-08	15-Jan-08	77935.00	=""	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:52 PM	

+="CN61618"	"Shepparton VIC Fitout"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	30-Sep-08	55825.00	=""	="James Millar Architects"	15-Feb-08 03:55 PM	

+="CN61621"	"furniture for Centrelink Caboolture relocation QLD"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	24-Jan-08	30-Jun-08	46477.20	=""	="Emtek Furniture"	15-Feb-08 03:55 PM	

+="CN61622"	"broadloom carpet for Toowong Centrelink refurbishmemt QLD"	="Centrelink"	15-Feb-08	="Mineral and Textile and Inedible Plant and Animal Materials"	24-Jan-08	30-Jun-08	50776.99	=""	="Future Floor Services"	15-Feb-08 03:55 PM	

+="CN61641-A1"	" Envelopes "	="Centrelink"	15-Feb-08	="Paper Materials and Products"	22-Jan-08	15-Feb-08	64680.00	=""	="Australian Envelopes"	15-Feb-08 03:58 PM	

+="CN61646"	"Fitout"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	30-Sep-08	57750.00	=""	="James Millar Architects"	15-Feb-08 03:59 PM	

+="CN61647"	"CRS Australia - Mt. Gravatt, Level 2, 47 Sanders Street, Upper Mt. Gravatt, QLD"	="CRS Australia"	15-Feb-08	="Lease and rental of property or building"	01-Sep-07	31-Aug-09	44536.25	=""	="Bridgeworks"	15-Feb-08 04:23 PM	

+="CN61648-A2"	"Provision for Development and Implementation of Background Components for Australian Citizenship Test "	="Department of Immigration and Citizenship"	15-Feb-08	="Management advisory services"	25-Jul-07	30-Jun-08	72191.00	=""	="Cultural Perspectives Pty Ltd"	15-Feb-08 04:32 PM	

+="CN61651"	"Fitout Works"	="Attorney-General's Department"	15-Feb-08	="Office Equipment and Accessories and Supplies"	17-Jan-08	30-May-08	72050.00	=""	="W. E. Bassett & Partners Pty Ltd"	15-Feb-08 04:37 PM	

+="CN61660"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	10-Jan-08	02-Apr-08	52360.00	="06/18414"	="Icon Recruitment Pty Ltd"	15-Feb-08 04:38 PM	

+="CN61661"	"Consultancy Fees"	="Attorney-General's Department"	15-Feb-08	="Business and corporate management consultation services"	10-Jan-08	30-Jun-08	80000.00	=""	="Success Works Pty Ltd"	15-Feb-08 04:38 PM	

+="CN61664"	"Cleaning"	="Attorney-General's Department"	15-Feb-08	="Industrial Cleaning Services"	16-Jan-08	30-Jun-08	62700.00	=""	="Ultra Care Cleaning Services"	15-Feb-08 04:38 PM	

+="CN61669"	"Computer Equipment"	="Attorney-General's Department"	15-Feb-08	="Computer Equipment and Accessories"	29-Jan-08	30-Jun-08	43339.98	="07/13009"	="Random Computing Services Pty Ltd"	15-Feb-08 04:39 PM	

+="CN61676"	"Development & delivery of Tsunami Awareness Show"	="Attorney-General's Department"	15-Feb-08	="Development"	31-Jan-08	31-Jan-09	71500.00	=""	="QUESTACON"	15-Feb-08 04:40 PM	

+="CN61680-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	25-Jan-08	30-Jun-08	45384.08	=""	="Icon Recruitment Pty Ltd"	15-Feb-08 04:40 PM	

+="CN61681"	"Maintenance"	="Attorney-General's Department"	15-Feb-08	="Maintenance or support fees"	25-Jan-08	30-Mar-08	52800.00	=""	="Centrelink"	15-Feb-08 04:40 PM	

+="CN61682"	"Professional Services"	="Attorney-General's Department"	15-Feb-08	="Computer services"	24-Jan-08	30-Jun-08	60000.00	="07/13009"	="Akamai Technologies Netherlands B.V"	15-Feb-08 04:41 PM	

+="CN61684"	"Project"	="Attorney-General's Department"	15-Feb-08	="LAN software"	25-Jan-08	30-Jun-08	48675.00	="07/13009"	="Cistech Solutions Pty Ltd"	15-Feb-08 04:41 PM	

+="CN61685-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	25-Jan-08	29-Mar-08	40656.00	="06/18412"	="Verossity Pty Limited"	15-Feb-08 04:41 PM	

+="CN61688"	"Venue Hire"	="Attorney-General's Department"	15-Feb-08	="Hotels and lodging and meeting facilities"	25-Jan-08	30-Jun-08	53570.00	=""	="Kildair Hotels(Grosvenor) Pty Ltd"	15-Feb-08 04:41 PM	

+="CN61709"	"Professional services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	12-Dec-07	25-Apr-08	68858.88	=""	="Alister Henskens"	15-Feb-08 04:44 PM	

+="CN61718"	"Day workshops"	="Attorney-General's Department"	15-Feb-08	="Education and Training Services"	03-Jan-08	29-Feb-08	59400.00	=""	="Family Transitions Pty Ltd"	15-Feb-08 04:45 PM	

+="CN61719"	"Training"	="Attorney-General's Department"	15-Feb-08	="Education and Training Services"	03-Jan-08	13-Jun-08	44310.88	=""	="Didasko Learning Resources Pty Ltd"	15-Feb-08 04:45 PM	

+="CN61720"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	17-Dec-07	31-Dec-08	64507.53	="06#195748DOC"	="Australian Government Solictor"	15-Feb-08 04:46 PM	

+="CN61726"	"PROFESSIONAL COSTS"	="Attorney-General's Department"	15-Feb-08	="Legal services"	04-Dec-07	01-Jan-09	42239.00	="06#199427DOC"	="Blake Dawson"	15-Feb-08 04:46 PM	

+="CN61729"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	30-Oct-07	31-Dec-08	70386.91	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 04:47 PM	

+="CN61732"	"Communication Courses"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Education and Training Services"	17-Dec-07	17-Dec-07	63875.42	="ATM 07/811"	="Anthony W Eyers"	15-Feb-08 05:05 PM	

+="CN61737"	"VP 174- Sharepoint functional directory"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction and Maintenance Services"	10-Nov-05	13-Apr-08	49248.00	="DCON/05/177"	="KAZ Group Pty Ltd"	15-Feb-08 05:06 PM	

+="CN61738-A1"	"Keysafe Maintenance"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building construction and support and maintenance and repair services"	01-Dec-07	30-Nov-09	58379.99	="CCR/07/3196"	="CIC Secure Pty Ltd"	15-Feb-08 05:06 PM	

+="CN61749"	"Lease plan for Corporate and SES"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	06-Feb-08	30-Jun-08	58810.00	="2008/00882"	="LEASEPLAN"	15-Feb-08 05:07 PM	

+="CN61750-A1"	"IT&F Staff Member - Apprenticeship"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Education and Training Services"	02-Apr-07	20-Dec-08	69255.46	="ATM08/864"	="Australian Training Company"	15-Feb-08 05:07 PM	

+="CN61752"	"Computer room upgrade for 38 Syd Ave"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	25-May-08	65197.00	="DCON/05/225"	="GE SHAW  & ASSOCIATES (ACT) PTY LTD"	15-Feb-08 05:08 PM	

+="CN61753-A2"	"SAP Sortware Licence & Support Agreement to GITC4"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	30-Jun-05	30-Jun-12	76519.30	="CCR/07/100"	="SAP AUSTRALIA PTY LTD"	15-Feb-08 05:08 PM	

+="CN61756"	"SES Furniture OPH"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction Machinery and Accessories"	17-May-07	11-Dec-07	47002.00	="CCR/07/2303"	="CITE OFFICE DESIGN"	15-Feb-08 05:08 PM	

+="CN61759"	"Accomadation 17x 2008 Graduates"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Travel and Food and Lodging and Entertainment Services"	07-Feb-08	29-Feb-08	55650.00	="2008/00883"	="MEDINA CLASSIC APARTMENTS CANBERRA"	15-Feb-08 05:08 PM	

+="CN61766"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	09-May-08	40920.00	="ATM2008/00885"	="SOUTHERN CROSS COMPUTING PTY LTD"	15-Feb-08 05:08 PM	

+="CN61768"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	02-May-08	70224.00	="ATM2008/00884"	="Charter Mason P/L ATF Antz Services"	15-Feb-08 05:09 PM	

+="CN61772-A1"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	27-Feb-09	66676.96	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	15-Feb-08 05:09 PM	

+="CN61790"	"storage cabinets Steel"	="Department of Defence"	15-Feb-08	="Storage"	09-Aug-06	22-Oct-06	57858.00	=""	="F G P COMPANY Pty Ltd"	15-Feb-08 06:57 PM	

+="CN61793"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	22-Aug-06	07-Oct-06	67567.76	=""	="LANE WATER TREATMENT"	15-Feb-08 06:57 PM	

+="CN61795"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	28-Aug-06	03-Nov-06	73105.56	=""	="LANE WATER TREATMENT"	15-Feb-08 06:58 PM	

+="CN61796"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	28-Aug-06	14-Oct-06	72418.00	=""	="LANE WATER TREATMENT"	15-Feb-08 06:58 PM	

+="CN61797"	"rebuild aslav wheels"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	29-Aug-06	28-Sep-06	41109.00	=""	="MARATHON TYRES Pty Ltd"	15-Feb-08 06:58 PM	

+="CN61817"	"Repair Tanker"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	14-Dec-06	51079.00	=""	="LANE WATER TREATMENT"	15-Feb-08 07:00 PM	

+="CN61819"	"Tanker Repair"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	05-Jan-07	64165.46	=""	="LANE WATER TREATMENT"	15-Feb-08 07:01 PM	

+="CN61820"	"Tanker Repair"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	15-Apr-07	65707.00	=""	="LANE WATER TREATMENT"	15-Feb-08 07:01 PM	

+="CN61821"	"Tanker Repair"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	03-Mar-07	66128.50	=""	="LANE WATER TREATMENT"	15-Feb-08 07:01 PM	

+="CN61822"	"Tanker Repair"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	18-Jan-07	60379.00	=""	="LANE WATER TREATMENT"	15-Feb-08 07:01 PM	

+="CN61865"	"Truck Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	21-Dec-06	22-Jul-07	44653.32	=""	="THALES AUSTRALIA"	15-Feb-08 07:06 PM	

+="CN61881"	"Tanker Repair"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	05-Feb-07	30-Jun-07	76875.23	=""	="LANE WATER TREATMENT"	15-Feb-08 07:08 PM	

+="CN61884"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	08-Feb-07	30-Mar-07	51246.23	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:09 PM	

+="CN61907"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	30-May-07	29-Jul-07	75609.05	=""	="LANE WATER TREATMENT"	15-Feb-08 07:11 PM	

+="CN61914"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	21-Jun-07	22-Jul-07	75564.37	=""	="THALES AUSTRALIA"	15-Feb-08 07:12 PM	

+="CN61915"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	21-Jun-07	22-Jul-07	51703.26	=""	="THALES AUSTRALIA"	15-Feb-08 07:12 PM	

+="CN61916"	"vehicle repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	22-Jun-07	25-Jul-07	54493.77	=""	="THALES AUSTRALIA"	15-Feb-08 07:12 PM	

+="CN61929"	"Development and Implementation of DVA Capability Framework"	="Department of Veterans' Affairs"	18-Feb-08	="Human resources services"	30-Apr-07	30-Jun-07	50000.00	=""	="Yellow Edge Pty Ltd"	18-Feb-08 10:30 AM	

+="CN61930"	"MOU for Cannon Hill, Queensland File Services premises"	="Department of Veterans' Affairs"	18-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jun-03	30-Jun-08	77717.00	=""	="National Archives of Australia"	18-Feb-08 10:30 AM	

+="CN61947"	" CRS Australia - 32 Horseshoe Bend Road, Gympie, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Jan-07	31-Dec-08	43056.00	=""	="Lynelle Mason"	18-Feb-08 11:46 AM	

+="CN61949"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:53 AM	

+="CN61952"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 12:00 PM	

+="CN61954"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 12:15 PM	

+="CN61957"	"PACAP Strategic Directions & Effectiveness Review - Peter Bazeley"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	30-Nov-07	64020.00	=""	="PETER BAZELEY DEVELOPMENT CONSULTING"	18-Feb-08 12:41 PM	

+="CN61959"	"Edwin Shanks - Policy Research and Institutional Development Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	10-May-07	30-Jun-09	62970.59	=""	="SHANKS, ROBERT EDWIN"	18-Feb-08 12:41 PM	

+="CN61961"	"Mekong Development Issues Conference"	="AusAid"	18-Feb-08	="Management advisory services"	09-May-07	31-Oct-07	55000.00	=""	="UNIVERSITY OF SYDNEY"	18-Feb-08 12:42 PM	

+="CN61962"	"Aceh Infrastructure Monitoring Team-Intermittent Support:ASSAI"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-May-07	30-Apr-08	40480.00	=""	="ASSAI PTY LTD"	18-Feb-08 12:42 PM	

+="CN61966"	"Rapid review of AusAID Media - by CARMA, Media Monitors"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Sep-07	55000.00	=""	="MEDIA MONITORS PTY LTD"	18-Feb-08 12:42 PM	

+="CN61968"	"Reproductive Health in Emergencies Review"	="AusAid"	18-Feb-08	="Specialised educational services"	18-Jun-07	12-Oct-07	42350.00	=""	="SARAH DAWSON"	18-Feb-08 12:43 PM	

+="CN61970"	"Fiduciary Risk Assessment to inform the Poverty Reduction Support Credit 6-10"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jun-07	31-Oct-07	67963.47	=""	="DAI EUROPE LTD"	18-Feb-08 12:43 PM	

+="CN61974"	"Hilton Hotel, Cairns"	="AusAid"	18-Feb-08	="Hotels and lodging and meeting facilities"	14-Jun-07	30-Jun-08	71628.60	=""	=" Hilton Hotel Cairns"	18-Feb-08 12:43 PM	

+="CN61980"	"Mercer - Recruitment of Head of TCS"	="AusAid"	18-Feb-08	="Human resources services"	04-Jun-07	30-Sep-07	45100.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	18-Feb-08 12:44 PM	

+="CN61981"	"Economic Insights Pty Ltd - Pacific Performance Chapter"	="AusAid"	18-Feb-08	="Economics"	23-Jul-07	29-Feb-08	60445.00	=""	="ECONOMIC INSIGHTS PTY LTD"	18-Feb-08 12:44 PM	

+="CN61984"	"B Kerstan - Gender and Poverty Analysis in Papua"	="AusAid"	18-Feb-08	="Community and social services"	31-Jul-07	30-Nov-07	67408.60	=""	="KERSTAN, BIRGIT"	18-Feb-08 12:45 PM	

+="CN61996"	"Contract - Bennett"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	31-Dec-07	51315.00	=""	="BENNETT, CATHERINE"	18-Feb-08 12:46 PM	

+="CN61999"	"Team Leader - Appropriate Hydrological Network Improvement Project Independent Completion Report"	="AusAid"	18-Feb-08	="Community and social services"	22-Jul-07	30-Sep-07	57200.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 12:46 PM	

+="CN62000"	"Technical Expert - Appropriate Hydrological Network Improvement Project Independent Completion Report"	="AusAid"	18-Feb-08	="Community and social services"	22-Jul-07	30-Sep-07	46750.00	=""	="PETER MILLINGTON & ASSOCIATES PTY LTD"	18-Feb-08 12:47 PM	

+="CN62005"	"Preparation of a PEFA Public Financial Management Performance Report for Tonga"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	31-Dec-07	75600.00	=""	="DELOITTE TOUCHE TOHMATSU"	18-Feb-08 12:47 PM	

+="CN62006"	"Thomas Cook - contract for IADS re-design mission"	="AusAid"	18-Feb-08	="Specialised educational services"	02-Sep-07	31-Dec-07	45265.00	=""	="THOMS J. COOK"	18-Feb-08 12:47 PM	

+="CN62009"	"Prof Steven Schwartz - Macquarie Uni: Representation on University of the South Pacific Council"	="AusAid"	18-Feb-08	="Educational institutions"	01-Oct-07	31-Jan-12	77000.00	=""	="MACQUARIE UNIVERSITY"	18-Feb-08 12:48 PM	

+="CN62016"	"Wan Smolbag contract with Siula Bulu"	="AusAid"	18-Feb-08	="Disease prevention and control"	31-Jul-07	01-Dec-07	52280.00	=""	="WAN SMOL BAG THEATRE"	18-Feb-08 12:49 PM	

+="CN62017"	"Consultancy Services for the Review of 03-07 South Asia Regional Framework"	="AusAid"	18-Feb-08	="Management advisory services"	30-Jul-07	31-Oct-07	57427.74	=""	="CARTER, MICHAEL"	18-Feb-08 12:49 PM	

+="CN62019"	"Dr Paul Crawford"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-07	31-Aug-07	41006.45	=""	="AID-IT! SOLUTIONS PTY LTD"	18-Feb-08 12:49 PM	

+="CN62032"	"2007-08 Quality Assurance Group - Trade Liberalisation"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-09	51207.44	=""	="DEVELOPMENT NETWORK AFRICA PTY LTD"	18-Feb-08 12:51 PM	

+="CN62033"	"2007-08 Quality Assurance Advisor - Democratisation Component"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-09	56120.84	=""	="KOSTER, JD"	18-Feb-08 12:51 PM	

+="CN62036"	"Alan Morris Contract"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	47300.00	=""	="MORRIS, ALAN GREGORY"	18-Feb-08 12:51 PM	

+="CN62044"	"Supply, freight and installation of office furniture - Lelei"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	73119.90	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	18-Feb-08 12:53 PM	

+="CN62051"	"The Midwifery Service Delivery Mission in NTT"	="AusAid"	18-Feb-08	="Community and social services"	25-Aug-07	30-Apr-08	73098.46	=""	="HOHNEN, JANET"	18-Feb-08 12:53 PM	

+="CN62067"	"Transnational Crime & Security Paper"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	07-Dec-07	70050.00	=""	="WESLEY, MICHAEL"	18-Feb-08 12:56 PM	

+="CN62068"	"Corrections TAG"	="AusAid"	18-Feb-08	="General building construction"	03-Sep-07	03-Sep-08	44000.00	=""	="SMITH, PATRICK JAMES"	18-Feb-08 12:56 PM	

+="CN62070"	"Bangladesh Health Sector Appraisal/technical Advisory Services"	="AusAid"	18-Feb-08	="Management advisory services"	20-Jul-07	31-Dec-07	43450.00	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 12:56 PM	

+="CN62074"	"Democratic Governance Program Strategy Mission: Niall Johnston"	="AusAid"	18-Feb-08	="Business administration services"	27-Aug-07	30-Nov-07	63200.00	=""	="JOHNSTON, NIALL"	18-Feb-08 12:57 PM	

+="CN62080"	"Pacific Cluster Evaluation 2007 - AID-IT! Solutions"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	55863.50	=""	="AID-IT! SOLUTIONS PTY LTD"	18-Feb-08 12:57 PM	

+="CN62085"	"Independent Completion Report for HARAP - Debra Hartley"	="AusAid"	18-Feb-08	="Community and social services"	01-Aug-07	31-Oct-07	44368.79	=""	="HARTLEY, DEBRA JANE"	18-Feb-08 12:58 PM	

+="CN62087"	"Design Mission: Dr John Hamilton"	="AusAid"	18-Feb-08	="Comprehensive health services"	02-Sep-07	30-Apr-08	69707.00	=""	="HAMILTON, JOHN DAVIS"	18-Feb-08 12:58 PM	

+="CN62111"	"Krishna Hort_Deputy Team Leader_HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	26-Sep-07	20-May-08	77211.20	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 01:01 PM	

+="CN62116"	"Provision of An Independent Completion Report for the Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	68200.00	=""	="SUTTON INTERNATIONAL PROFESSIONAL SERVICES PTY LTD"	18-Feb-08 01:02 PM	

+="CN62118"	"Making A Difference: Practical Tools and Approaches for Capacity Building"	="AusAid"	18-Feb-08	="Human resources services"	24-Sep-07	20-Dec-07	74602.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:02 PM	

+="CN62123"	"PNG Democratic Governance Program Design - RDSM Consulting Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	31-Dec-07	56322.20	=""	="RDSM CONSULTING PTY LTD"	18-Feb-08 01:03 PM	

+="CN62132"	"Specialist cabling/electrical and supervision"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	09-Oct-07	31-Dec-07	73040.00	=""	="MILLHOUSE ENTERPRISES PTY LTD"	18-Feb-08 01:04 PM	

+="CN62136"	"Education Sector Consultancy Sri Lanka"	="AusAid"	18-Feb-08	="Educational institutions"	15-Oct-07	31-Jan-08	50238.80	=""	="RAWLINSON, RALPH"	18-Feb-08 01:04 PM	

+="CN62138"	"UNIFEM Bangkok VAW Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Jul-07	30-Jun-08	40000.00	=""	="UNITED NATIONS FUND FOR WOMEN"	18-Feb-08 01:05 PM	

+="CN62145"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	12-Oct-07	74857.20	=""	="INNOVATIVE BUSINESS COMPUTING PTY LTD"	18-Feb-08 01:06 PM	

+="CN62146"	"Intensive Trial Advocacy Workshop"	="AusAid"	18-Feb-08	="Travel facilitation"	18-Oct-07	19-Dec-07	42000.00	=""	="AUSTRALIAN BAR ASSOCIATION"	18-Feb-08 01:06 PM	

+="CN62147"	"JTA International Pty Ltd"	="AusAid"	18-Feb-08	="Comprehensive health services"	12-Nov-07	31-Jan-08	66935.00	=""	="JTA INTERNATIONAL PTY LTD"	18-Feb-08 01:06 PM	

+="CN62150"	"Contract - Pat Duggan - Disaster Management Strategy Development mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Nov-07	28-Feb-08	50600.00	=""	="DUGGAN, PATRICIA MARIE"	18-Feb-08 01:06 PM	

+="CN62154"	"Pacific Infrastructure 4 national budgets (Kiribati, Nauru, Samoa, Vanuatu) desk study"	="AusAid"	18-Feb-08	="Economics"	08-Oct-07	31-Dec-07	43318.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62155"	"Inequities and Adjustment Costs of Regional Economic Integration"	="AusAid"	18-Feb-08	="Political systems and institutions"	09-Oct-07	31-Jan-08	75748.20	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62158"	"Bougainville Strategy Review - Robert Harden"	="AusAid"	18-Feb-08	="Economics"	21-Oct-07	30-Nov-07	41716.40	=""	="FOCUS ECONOMICS PTY LTD"	18-Feb-08 01:08 PM	

+="CN62161"	"Trade Analysis and Reform Project - Mid-Term Review: M&E Specialist"	="AusAid"	18-Feb-08	="Trade policy and services"	29-Oct-07	14-Dec-07	59400.00	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:08 PM	

+="CN62167"	"Review of AIPRD Programs - Catherine Deane"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Nov-07	31-Dec-07	41676.80	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:09 PM	

+="CN62163"	"Provision for Information technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:09 PM	

+="CN62175"	"SADI Planning Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	65467.60	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62181"	"Philippines Australia Human Resource Development Facility (PAHRDF) - Team Leader for Strategic Review (September 2007)"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	31-Oct-07	57200.00	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62183"	"East Timor Vocational Education Program Design"	="AusAid"	18-Feb-08	="Vocational training"	01-Jun-07	01-Sep-07	52570.10	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62184"	"Review team Ms Wahib"	="AusAid"	18-Feb-08	="Educational institutions"	13-Aug-07	30-Oct-07	57822.60	=""	="ACCESS MACQUARIE LTD"	18-Feb-08 01:11 PM	

+="CN62185"	"HRD Plan- Carolyn Marsh"	="AusAid"	18-Feb-08	="Educational institutions"	14-Aug-07	17-Oct-07	60177.70	=""	="MDG PTY LTD"	18-Feb-08 01:11 PM	

+="CN62191"	"Capacity Building for KEMIS"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	40503.10	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62192"	"Training support for KEMIS staff"	="AusAid"	18-Feb-08	="Specialised educational services"	02-Oct-07	30-Nov-07	40503.10	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:13 PM	

+="CN62194"	"Independent Completion Report"	="AusAid"	18-Feb-08	="Management advisory services"	25-Nov-07	31-May-08	74294.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES PTY LTD"	18-Feb-08 01:13 PM	

+="CN62195"	"SADI Supervision Mission"	="AusAid"	18-Feb-08	="Management advisory services"	19-Aug-07	12-Oct-07	40438.20	=""	="LENGANO PTY LTD"	18-Feb-08 01:13 PM	

+="CN62196"	"Mozambique - ICSAS ICR - Consultant (K Detto)"	="AusAid"	18-Feb-08	="Educational institutions"	19-Oct-07	31-Dec-07	43441.20	=""	="LENGANO PTY LTD"	18-Feb-08 01:13 PM	

+="CN62197"	"Scribe Services for Australian Develoment Research Awards 2007 Funding Round"	="AusAid"	18-Feb-08	="Business administration services"	12-Aug-07	31-Dec-07	60500.00	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:13 PM	

+="CN62199"	"Honiara Country Office Organisational Review"	="AusAid"	18-Feb-08	="Management advisory services"	25-Sep-07	31-Dec-07	54445.30	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:14 PM	

+="CN62202"	"David Mitchell - Disaster Risk Management Specialist - QNDMP ICR"	="AusAid"	18-Feb-08	="Environmental management"	17-Oct-07	31-Mar-08	41041.00	=""	="GHD PTY LTD"	18-Feb-08 01:14 PM	

+="CN62210"	"Cross Cultural Awareness Training Feb to Dec 2007"	="AusAid"	18-Feb-08	="Vocational training"	01-Feb-07	15-Dec-07	45965.70	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62211"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:16 PM	

+="CN62221"	"Review of the monitoring and evaluation components of the draft IMR framework and NGOs projects designs under PASHIP"	="AusAid"	18-Feb-08	="Disease prevention and control"	06-Aug-07	31-Mar-08	50454.80	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:17 PM	

+="CN62225"	"Torres Strait Treaty Zone Health Partnership - Review Team Leader"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Oct-07	31-Dec-07	48983.00	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:17 PM	

+="CN62226"	"Engaging Gillian Biscoe-MTR for THSSP"	="AusAid"	18-Feb-08	="Medical practice"	14-Jul-07	31-Aug-07	74433.87	=""	="BISCOE, GILLIAN"	18-Feb-08 01:17 PM	

+="CN62228"	"Provision of An Independent Completion Report for the Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	68159.38	=""	="BISCOE, GILLIAN"	18-Feb-08 01:18 PM	

+="CN62232"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	18-Feb-08	="Business administration services"	19-May-03	18-Jul-08	78731.40	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:18 PM	

+="CN62250"	"Collaboration of Agricultural and Rural Development Viet Nam"	="AusAid"	18-Feb-08	="Business administration services"	30-Mar-04	30-Mar-10	75202.60	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:20 PM	

+="CN62252"	"AusAID Rapid Response Team Health Support Program"	="AusAid"	18-Feb-08	="Medical practice"	01-Sep-04	30-Sep-08	79206.19	=""	="HEALTH SERVICES AUSTRALIA"	18-Feb-08 01:21 PM	

+="CN62255"	"M&E training consultant Mike Crooke"	="AusAid"	18-Feb-08	="Management advisory services"	21-Oct-07	20-Feb-08	49500.00	=""	="TRANSFORMATION SYSTEMS AUSTRALIA PTY LTD"	18-Feb-08 01:21 PM	

+="CN62259"	"Evlaution of Three Environment Projects in China- Second Team Member Ian Teese"	="AusAid"	18-Feb-08	="Community and social services"	21-Jun-07	31-Dec-07	77000.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:22 PM	

+="CN62265"	"AMENCA 2 Design inputs"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jun-07	30-Jan-08	57736.80	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:23 PM	

+="CN62270"	"Service Order - M&E specialist for GPF Review"	="AusAid"	18-Feb-08	="Public administration and finance services"	01-Oct-07	30-Jun-08	55000.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62261"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:23 PM	

+="CN62272"	"Andrew Cornish - Evaluation Specialist - QNDMP ICR"	="AusAid"	18-Feb-08	="Environmental management"	17-Oct-07	29-Feb-08	41456.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:24 PM	

+="CN62291"	"Focus magazine Vol.22. No. 3"	="AusAid"	18-Feb-08	="Printed media"	01-Jul-07	10-Sep-07	40328.20	=""	="PIRION PTY LTD"	18-Feb-08 01:26 PM	

+="CN62301"	"BEAM Review Islamic Education Adviser (Karyn Docking) 07-08"	="AusAid"	18-Feb-08	="Management advisory services"	15-Sep-07	31-Oct-07	56908.50	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62302"	"Design Study for the Australia Indonesia School e-Exchange Program"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	30-Apr-08	71695.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62307"	"Incentive Fund Phase III Design Mission - Keith Lingard"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Apr-08	46381.50	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:29 PM	

+="CN62310"	"Audit Services for PNG Institute Medical Research Support Program Phase 2"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	31-Oct-08	58652.00	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62312"	"2007 PNG PRMP - Facilitation Consultant - Duesburys Nexia"	="AusAid"	18-Feb-08	="Management advisory services"	10-Sep-07	05-Oct-07	59928.00	=""	="JOWEE TRUST & LISMAR TRUST & MILOJO TRUST & SMERGI TRUST & THE TRUSTEE FOR SCOTT FAMILY TRUST T/A DEUSBURYS"	18-Feb-08 01:29 PM	

+="CN62316"	"Services for RAMSI Security Officers"	="AusAid"	18-Feb-08	="Business administration services"	03-May-07	31-Dec-07	59798.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62327"	"Tasking Note - Program Advisory Office Costs"	="AusAid"	18-Feb-08	="Utilities"	22-Aug-05	30-Sep-09	55000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62330"	"Provision of services for the production of FOCUS magazine"	="AusAid"	18-Feb-08	="Printed media"	14-Jun-05	31-Jan-08	55000.00	=""	="GIBSON, PATRICIA MARGARET MARY"	18-Feb-08 01:32 PM	

+="CN62343"	"Mid Term Review for Yogya-Central Java CAP: Mike Freeman"	="AusAid"	18-Feb-08	="Community and social services"	15-Aug-07	05-Oct-07	45425.60	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62345"	"AIPRD Asset Mapping Design Specialist - Team Leader"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	23-Oct-07	31-Dec-07	61400.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62350"	"Services Order Heather Wallace"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	31-Dec-07	53282.10	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:34 PM	

+="CN62353"	"Program Monitoring Group for Timor Teste Police Development Program - John McFarlane"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-05	30-Jun-08	57221.07	=""	="AJ McFARLANE & ASSOC. PTY LTD"	18-Feb-08 01:35 PM	

+="CN62367"	"Making a Difference Courses Oct 07 - Dec 07. Robyn Renneberg."	="AusAid"	18-Feb-08	="Management advisory services"	23-Oct-07	24-Dec-07	45980.00	=""	="ELLIOTT STREET CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62369"	"Service Order No.37052/7 for AusAID Capacity Building Workshop September to December 2007"	="AusAid"	18-Feb-08	="Vocational training"	24-Sep-07	31-Dec-07	75410.00	=""	="MORGAN HUNTER CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62371"	"Services Order - Kaye Schofield - ICR PMCF and Pacific Media Design"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	66308.00	=""	="SCHOFIELD, KAYE"	18-Feb-08 01:37 PM	

+="CN62373"	"Services Order Peter Deacon (Seaview Montville Trust) for ICR ERA"	="AusAid"	18-Feb-08	="Educational facilities"	01-Sep-07	12-Nov-07	61989.13	=""	="THE TRUSTEE FOR TRUST -SEAVIEW MONTVILLE T/A TRUST -SEAVIEW MONTVILLE"	18-Feb-08 01:38 PM	

+="CN62378"	"Making a Difference Courses Oct 07 - Dec 07 - Sue Emmot"	="AusAid"	18-Feb-08	="Management advisory services"	22-Oct-07	24-Dec-07	48510.00	=""	="EMMOTT, SUE"	18-Feb-08 01:38 PM	

+="CN62382"	"Making a Difference Aug-Sept 2007 Michael Prince"	="AusAid"	18-Feb-08	="Management advisory services"	24-Aug-07	17-Sep-07	40865.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:39 PM	

+="CN62383"	"Making A Diffrence Courses Oct 07 - Dec 07 - Michael Prince"	="AusAid"	18-Feb-08	="Management advisory services"	21-Oct-07	24-Dec-07	74250.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:39 PM	

+="CN62397"	"Jens Lauring-Knudsen's contract"	="AusAid"	18-Feb-08	="Crop production and management and protection"	01-Oct-05	30-Sep-08	45008.45	=""	="LAURING-KNUDSEN, JENS"	18-Feb-08 01:41 PM	

+="CN62410"	"Provision of Legal Services"	="AusAid"	18-Feb-08	="Legal services"	04-Jul-06	30-Jun-08	40295.07	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Feb-08 01:43 PM	

+="CN62411"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	21-Aug-06	30-Sep-07	77880.00	=""	="CONSOLVE PTY LTD"	18-Feb-08 01:43 PM	

+="CN62433"	"Vocational Training and Employment Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	23-Feb-08	66846.86	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62442"	"Dr. Fred Merchant"	="AusAid"	18-Feb-08	="Medical practice"	27-Sep-07	30-Nov-07	52152.05	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62451"	"Ray Marsden Contract"	="AusAid"	18-Feb-08	="Alternative educational systems"	02-Oct-06	31-Mar-08	73988.59	=""	="NEWMAN, NEVILLE R T/A RAY WHITE MARSDEN"	18-Feb-08 01:49 PM	

+="CN62453"	"Lease for Program Manager's Residence"	="AusAid"	18-Feb-08	="Real estate services"	15-Dec-06	31-Dec-07	67997.42	=""	="ISLAND PROPERTY"	18-Feb-08 01:49 PM	

+="CN62456"	"Aceh Infrastructure Monitoring Team - Team Leader - Andrew Whillas"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	15-Nov-06	13-May-08	47040.00	=""	="WHILLAS, ANDREW"	18-Feb-08 01:49 PM	

+="CN62458"	"Yogyakarta - Jateng Community Assistance Program - Deputy / Liaison Officer"	="AusAid"	18-Feb-08	="Management advisory services"	30-Oct-06	04-Sep-08	57073.76	=""	="EJ HERI WAHYUDI"	18-Feb-08 01:49 PM	

+="CN62459"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-Jan-07	30-Jun-08	79200.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:50 PM	

+="CN62466"	"ESSP Mission - TVET Design Input"	="AusAid"	18-Feb-08	="Vocational training"	15-Jan-07	01-Jun-08	58947.01	=""	="MCNAMARA, LUKE ANTHONY T/A LUKE MCNAMARA AND ASSOCIATES"	18-Feb-08 01:51 PM	

+="CN62468"	"Design Advisor Mark Minford"	="AusAid"	18-Feb-08	="Management advisory services"	20-Feb-07	30-Sep-07	52494.00	=""	="MINFORD, MARK LESLIE MACKAY"	18-Feb-08 01:51 PM	

+="CN62477"	"Bougainville Strategy Review - Anthony Regan"	="AusAid"	18-Feb-08	="Legal services"	21-Oct-07	30-Nov-07	41951.25	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:52 PM	

+="CN62476"	"Provision for Administrative Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	07-Mar-07	07-Sep-07	49170.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:52 PM	

+="CN62483"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	23-Apr-07	14-Oct-07	76315.80	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62485"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-May-07	30-Nov-07	42284.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62492"	"The Forum Group"	="AusAid"	18-Feb-08	="Business administration services"	01-Jun-07	30-Jun-08	44008.02	=""	="THE FORUM GROUP PTY LTD"	18-Feb-08 01:54 PM	

+="CN62495"	"PAHRDF Review - Design Specialist - Ms Catherine Bennett"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	31-Oct-07	42726.40	=""	="BENNETT, CATHERINE"	18-Feb-08 01:54 PM	

+="CN62503"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:57 PM	

+="CN62505"	"vehicle windows"	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	15-Apr-08	66731.53	=""	="Thales Australia"	18-Feb-08 02:43 PM	

+="CN62506-A1"	"Lease: 1201/31 Spring Street, Melbourne"	="Australian Institute of Family Studies"	18-Feb-08	="Lease and rental of property or building"	01-Sep-04	31-Jan-08	74043.00	=""	="Leasing Melbourne"	18-Feb-08 03:04 PM	

+="CN62514"	"Qld Capricorn Coast - Large Scale Mapping for Emergency Management, 75% acceptance payment - Gladstone."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	09-Jan-08	30-Jun-08	67452.00	="2006/3933"	="Photo Mapping Services Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62515"	"Qld Murray Darling Basin - Large Scale Mapping for Emergency Management. Final Delivery acceptance - 75%."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	09-Jan-08	30-Jun-08	43241.25	="2006/3933"	="DSM Geodata"	18-Feb-08 03:54 PM	

+="CN62524"	"G2149 Provision for Supply of Contract Staff 2007/08  Geppert"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	14-Jan-08	20-Mar-08	58052.50	=""	="GMT Canberra Pty Ltd"	18-Feb-08 03:55 PM	

+="CN62531"	"RP00911 transcription of tapes consisting of 702 x 8mm tapes."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	62876.00	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:56 PM	

+="CN62534"	"Provision for Geoplus Training Costs"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	16-Jan-08	31-Jan-08	75000.00	=""	="Joint Strategies Pty Ltd"	18-Feb-08 03:56 PM	

+="CN62536"	"1,000,000 Document Geoscience Australia wide Enterprise Software Perpetual Licence"	="Geoscience Australia"	18-Feb-08	="Software"	17-Jan-08	14-Dec-10	66000.00	=""	="Funnelback Pty Ltd"	18-Feb-08 03:56 PM	

+="CN62539"	"Signed contract - Seismic data loading contract."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	30-Apr-08	49500.00	=""	="Cohesion Geodata Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62541"	"Proposal for Feasability Study"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	31-Jan-08	49999.99	=""	="Oakton AA Services Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62547"	"Hardware and firmware for 20 GNSS receivers"	="Geoscience Australia"	18-Feb-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	70400.00	=""	="CR Kennedy & Company Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62549"	"First Quarter License Fees for the provision of satellite Data, the supply of the Product Generation system and service - 1st January to 31 March 2008."	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	24-Jan-08	30-Jun-08	76819.56	=""	="Antrix Corporation Limited"	18-Feb-08 03:58 PM	

+="CN62552-A3"	"Provision for Facilitation for Training Workshops"	="Department of Immigration and Citizenship"	18-Feb-08	="Employee education"	13-Feb-08	31-Oct-08	55000.00	=""	="M Andrew & G Wilson"	18-Feb-08 03:59 PM	

+="CN62578"	"Procurement of:  CAMERA SET,TELEVISION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	06-Jul-08	52880.00	=""	="SITEP AUSTRALIA Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62582"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	08-Jan-09	42703.66	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62583"	"Procurement of:  ANTENNA"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	12-Jun-08	72678.96	=""	="THALES AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62587"	"Procurement of:  VALVE,REGULATING,SYSTEM PRESSURE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	17-Apr-08	43666.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62594"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	15-Aug-08	76536.09	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62601"	"Procurement of:  HELMET,CRASH"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	17-Apr-08	64975.00	=""	="DEFCON TECHNOLOGIES Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62605"	"Procurement of:  HELMET,CRASH"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	22-Apr-08	73450.00	=""	="DEFCON TECHNOLOGIES Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62608"	"Procurement of:  TERMINAL BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	16-Apr-08	72250.00	=""	="AIR CARE TECHNOLOGY Ltd"	18-Feb-08 05:15 PM	

+="CN62609"	"Procurement of:  ANTENNA"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	04-May-08	53880.00	=""	="SONARTECH ATLAS"	18-Feb-08 05:15 PM	

+="CN62612"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	16-Apr-08	56500.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62614"	"Procurement of:  LEVER ASSEMBLY,TRAVERSE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	29-Sep-08	40906.40	=""	="BEAK RAST ENGINEERING"	18-Feb-08 05:15 PM	

+="CN62621"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  GLASS,PLATE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	16-Jun-08	57367.92	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62631"	"Procurement of:  BLADDER,ACCUMULATOR,HYDRAULIC;  BLADDER,ACCUMULATOR,HYDRAULIC;  GASKET AND"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	12-Jun-08	65944.68	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62638"	"Procurement of:  MANIFOLD ASSEMBLY,HYDRAULIC;  MANIFOLD ASSEMBLY,HYDRAULIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	22-May-08	56104.29	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM 

--- /dev/null
+++ b/admin/partialdata/14Feb2008to18Feb2008val80000to300000.xls
@@ -1,1 +1,348 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN60729"	"supply and maintenance of data multiplex/de multiplex systems"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	18-Oct-07	01-Apr-08	133031.00	="RFT 49/2006"	="Vertical Telecoms Pty Ltd"	14-Feb-08 12:16 AM	

+="CN60730-A1"	"suuply and maintenance of six radio frequency datalink tranceivers"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	30-Jul-07	30-Oct-07	169865.00	="RFQ48/2006"	="Vertical Telecoms Pty Ltd"	14-Feb-08 12:28 AM	

+="CN60738"	"Accounting contractor"	="CrimTrac"	14-Feb-08	="Temporary financial staffing needs"	31-Aug-07	30-Jun-08	224400.00	=""	="Optimum Business Consulting Pty Ltd"	14-Feb-08 10:41 AM	

+="CN60743"	"System Developer"	="CrimTrac"	14-Feb-08	="Temporary information technology software developers"	07-Jan-08	13-Aug-08	101816.00	="RFQ#39"	="Aurec Pty Limited"	14-Feb-08 10:42 AM	

+="CN60744"	"Project Officer"	="CrimTrac"	14-Feb-08	="Temporary clerical or administrative assistance"	07-Jan-08	04-Jul-08	98956.00	="RFQ#36"	="Talent International ACT Pty Ltd"	14-Feb-08 10:42 AM	

+="CN60754"	"Contractor for IT services"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	18-Jun-07	31-Jan-09	240240.00	="RFQZ1"	="Finite IT Recruitment Solutions"	14-Feb-08 10:43 AM	

+="CN60755"	"Contractor Provider Service - System Developer"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	18-Aug-07	15-Sep-07	116688.00	=""	="Encore IT Services Pty Ltd"	14-Feb-08 10:43 AM	

+="CN60757"	"Contractor serivce provider - Technology Support"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	17-Jul-07	03-Jan-08	104676.00	=""	="Aurec Pty Limited"	14-Feb-08 10:44 AM	

+="CN60758"	"Contractor Service Provider - System Developer"	="CrimTrac"	14-Feb-08	="Staff recruiting services"	23-Jul-07	23-Jan-08	116688.00	="03/2006"	="Encore IT Services Pty Ltd"	14-Feb-08 10:44 AM	

+="CN60759"	"Amendment No.1 - Reference CN 27761"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	14-Mar-07	14-Mar-08	106400.00	=""	="Sensory7"	14-Feb-08 10:44 AM	

+="CN60760"	"CONTRACTOR SERVICE PROVIDER - WEB DESIGNER"	="CrimTrac"	14-Feb-08	="Temporary technician staffing needs"	23-Jul-07	31-Dec-07	105248.00	="03/2006"	="GMT People"	14-Feb-08 10:44 AM	

+="CN60762"	"1 Centracom contrlo system"	="Australian Federal Police"	14-Feb-08	="Components for information technology or broadcasting or telecommunications"	23-Mar-07	22-Mar-08	225439.50	=""	="Motorola Australia Pty Limited"	14-Feb-08 10:57 AM	

+="CN60773-A1"	"Services in relation to Voice and data communication"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	10-Sep-07	30-Jun-08	97099.20	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 01:31 PM	

+="CN59100"	"Provision of telecommunication services. Mobile voice & mobile data"	="Department of the Prime Minister and Cabinet"	14-Feb-08	="Mobile communications services"	07-Sep-07	06-Sep-10	108000.00	=""	="OPTUS Pty Ltd"	14-Feb-08 01:57 PM	

+="CN60777-A7"	"Property Lease Darwin NT"	="Australian Federal Police"	14-Feb-08	="Lease and rental of property or building"	16-Jan-06	30-Jun-11	298144.22	=""	="Darwin International Airport Pty Limited"	14-Feb-08 02:01 PM	

+="CN60779-A2"	"Services in relation to specialist cryptographic activities"	="Australian Federal Police"	14-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Sep-08	168854.00	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 02:45 PM	

+="CN60808"	"Preparation and facilitation of workshops and handover requirements"	="Austrade"	14-Feb-08	="Education and Training Services"	09-Jul-07	15-Aug-07	87340.00	=""	="The Nous Group Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60810"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated services"	="Austrade"	14-Feb-08	="Computer Equipment and Accessories"	30-Nov-07	30-Nov-07	137179.24	=""	="Hewlett Packard Australia Pty Ltd"	14-Feb-08 02:51 PM	

+="CN60815-A1"	"Leasing facility for IT Server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Sep-07	04-Sep-10	118275.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:12 PM	

+="CN60819-A3"	" Provision of services in relation to a traineeship for desktop services "	="Australian Federal Police"	14-Feb-08	="Computer services"	01-Jul-07	31-Dec-08	95481.80	=""	="Innovative Business Computing Pty Limited"	14-Feb-08 03:27 PM	

+="CN60839"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	13-Aug-07	30-Jun-08	140250.00	=""	="PROFESSIONALS ONLINE"	14-Feb-08 03:38 PM	

+="CN60842"	"Premier Support Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	07-Aug-07	30-Jun-08	201107.50	=""	="MICROSOFT SERVICES"	14-Feb-08 03:39 PM	

+="CN60853"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Aug-07	30-Jun-08	258940.00	=""	="ECAREER"	14-Feb-08 03:40 PM	

+="CN60858"	"SSL Certificates"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Aug-07	30-Jun-08	88000.00	=""	="VERISIGN"	14-Feb-08 03:41 PM	

+="CN60880"	"Voice"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	15-Aug-07	30-Jun-08	107695.95	=""	="TELSTRA (VIC)"	14-Feb-08 03:44 PM	

+="CN60887"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	15-Aug-07	19-Dec-11	100000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:44 PM	

+="CN60892"	"Counselling service for DEWR"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	30-Jul-07	31-Oct-08	90000.00	=""	="IPS EMPLOYEE ASSISTANCE"	14-Feb-08 03:45 PM	

+="CN60903"	"CSS/PSS quarterly management fees"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	31-Jul-07	30-Sep-07	194948.25	=""	="COMSUPER"	14-Feb-08 03:47 PM	

+="CN60908"	"Freight services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	26-Jul-07	30-Jun-08	166000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	14-Feb-08 03:47 PM	

+="CN60912"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	14-Feb-08	="Office supplies"	26-Jul-07	30-Jun-08	185000.00	=""	="OFFICEMAX AUSTRALIA LTD"	14-Feb-08 03:48 PM	

+="CN60914"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 03:48 PM	

+="CN60915"	"Qualitative Research on AJS new project"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	26-Oct-07	155514.15	=""	="IPSOS AUSTRALIA PTY LTD"	14-Feb-08 03:48 PM	

+="CN60918"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-Jul-07	30-Jun-08	242000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 03:49 PM	

+="CN60919"	"Leasing facility for IT server equipment"	="Federal Court of Australia"	14-Feb-08	="Computer Equipment and Accessories"	05-Mar-07	04-Aug-10	118950.00	=""	="COMMONWEALTH BANK"	14-Feb-08 03:50 PM	

+="CN60931"	"Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	06-Aug-07	30-Jun-08	125620.00	=""	="GARTNER AUSTRALASIA PTY LTD"	14-Feb-08 03:50 PM	

+="CN60932"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	02-Jan-08	30-Jun-08	178000.00	=""	="PALADIN SYSTEMS PTY LTD"	14-Feb-08 03:50 PM	

+="CN60933"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	229000.00	=""	="PHILLIPS FOX LAWYERS"	14-Feb-08 03:50 PM	

+="CN60934"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	06-Aug-07	30-Aug-08	251500.00	=""	="MINTER ELLISON"	14-Feb-08 03:51 PM	

+="CN60942"	"Supply of Floors/Grout/ fixings/ Labor - Library"	="Department of Employment and Workplace Relations"	14-Feb-08	="Accommodation furniture"	31-Jul-07	31-Jul-07	125870.80	=""	="DEXION AUST PTY LTD"	14-Feb-08 03:52 PM	

+="CN60954"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	206055.50	=""	="ISIS Projects Pty Ltd"	14-Feb-08 03:53 PM	

+="CN60970"	"IT Software"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	14-Feb-08	="Computer services"	13-Dec-07	13-Dec-07	150048.77	=""	="Oracle Corporation Ltd"	14-Feb-08 03:54 PM	

+="CN60990"	"Licences & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	13-Dec-07	30-Jun-08	87921.90	="TBA"	="INSIGHT ENTERPRISES AUST P/L"	14-Feb-08 03:56 PM	

+="CN60997"	""File storage, archival destruction""	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	03-Sep-07	30-Jun-08	200000.00	=""	="RECALL INFORMATION MANAGEMENT"	14-Feb-08 03:57 PM	

+="CN61009"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jan-08	30-Jun-08	194169.80	="ITC"	="KELLY SERVICES"	14-Feb-08 03:58 PM	

+="CN61016"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	21-Jan-08	30-Jun-08	123750.00	="ITC"	="CTIME PTY LTD"	14-Feb-08 03:59 PM	

+="CN61017"	"Annual Building Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	22-Jan-08	30-Jun-08	220000.00	="TBA"	="DATA KEY SYSTEMS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61018"	"Proximity cards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	30-Jun-08	85250.00	=""	="CUSTOM DESIGNED SOLUTIONS PTY LTD"	14-Feb-08 03:59 PM	

+="CN61020"	"Milling & Embedding of Prox. Cards"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	04-Feb-08	30-Jun-08	109450.00	=""	="VERISIGN"	14-Feb-08 04:00 PM	

+="CN61021"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	06-Feb-08	30-Jun-08	87890.00	="ITC"	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	14-Feb-08 04:00 PM	

+="CN61026"	"On Line Training"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer Equipment and Accessories"	18-Dec-07	30-Jun-08	144072.50	="TBA"	="SKILLSOFT"	14-Feb-08 04:01 PM	

+="CN61027"	"Software & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	18-Dec-07	30-Jun-08	193600.00	="TBA"	="ACTIVIDENTITY (AUSTRALIA) PTY LTD"	14-Feb-08 04:01 PM	

+="CN61036"	"Prevision of IT Personnel"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	09-Jan-08	30-Jun-08	137500.00	="ITC"	="PYXIS CONSULTING GROUP PTY LTD"	14-Feb-08 04:02 PM	

+="CN61038"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	09-Jan-08	30-Jun-08	143829.18	="TBA"	="SAP AUSTRALIA PTY LTD"	14-Feb-08 04:02 PM	

+="CN61041"	"CONFERENCE VIDEO EQUIPMENT"	="Department of Employment and Workplace Relations"	14-Feb-08	="Communications Devices and Accessories"	10-Jan-08	31-Jan-08	118278.07	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	14-Feb-08 04:02 PM	

+="CN61054"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Nov-07	30-Jun-08	184346.80	=""	="ICON RECRUITMENT PTY LTD"	14-Feb-08 04:04 PM	

+="CN61063"	"Maintenance 07-08"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Aug-07	30-Jun-08	195690.00	=""	="INFRA CORPORATION PTY LTD"	14-Feb-08 04:05 PM	

+="CN61065"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	242000.00	=""	="TELSTRA (VIC)"	14-Feb-08 04:06 PM	

+="CN61066"	""MAY-AUG Rent Reimbursement LVL1, Brindabella Cct""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	17-Aug-07	31-Aug-07	99206.45	=""	="OFFICE OF WORKPLACE SERVICES"	14-Feb-08 04:06 PM	

+="CN61069"	"Telecommunications"	="Department of Employment and Workplace Relations"	14-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Aug-07	30-Jun-08	110000.00	=""	="OPTUS Communications Pty Ltd"	14-Feb-08 04:06 PM	

+="CN61088"	"Software Services & Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	30-Aug-07	30-Jun-08	290085.21	=""	="DATAFLEX PTY LTD"	14-Feb-08 04:09 PM	

+="CN61107"	"Bus transport for DEWR staff"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	26-Jul-07	18-Jul-08	200000.00	=""	="DEANES BUSLINES PTY LTD"	14-Feb-08 04:11 PM	

+="CN61115"	"Postage costs from Mailhouse services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	30-Jun-08	96000.00	=""	="AUSTRALIA POST (ACT 9397355)"	14-Feb-08 04:12 PM	

+="CN61118"	"Fitouts"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	06-Jul-07	31-Jul-07	82589.10	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:12 PM	

+="CN61125"	"Fitouts"	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	04-Jul-07	31-Jul-07	220184.25	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:13 PM	

+="CN61126"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	04-Jul-07	19-Dec-07	80000.00	=""	="LLOYD'S REGISTER QUALITY ASSURANCE"	14-Feb-08 04:13 PM	

+="CN61130"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	120000.00	=""	="AUSSAFE CONSULTING P/L"	14-Feb-08 04:14 PM	

+="CN61131"	"Provision of Auditing Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	19-Dec-07	230000.00	=""	="DAVIS LANGDON"	14-Feb-08 04:14 PM	

+="CN61132"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	02-Jan-09	150000.00	=""	="MACSS"	14-Feb-08 04:14 PM	

+="CN61134"	"Provision of Audit Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	05-Jul-07	22-Dec-08	140000.00	=""	="ALL QA SERVICES PTY LTD"	14-Feb-08 04:14 PM	

+="CN61136"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	14-Feb-08	="Mail and cargo transport"	05-Jul-07	01-Jun-10	160000.00	=""	="SALMAT  LIMITED"	14-Feb-08 04:15 PM	

+="CN61142"	"Provision for staff accommodation Alice Springs"	="Department of Employment and Workplace Relations"	14-Feb-08	="Travel facilitation"	09-Jul-07	14-Jan-08	90000.00	=""	="DESERT PALMS RESORT"	14-Feb-08 04:15 PM	

+="CN61151"	""Fitouts at Level 10 414 LaTrobe St, Melb""	="Department of Employment and Workplace Relations"	14-Feb-08	="Real estate services"	10-Jul-07	30-Jun-08	200986.50	=""	="INTERIORS AUSTRALIA PTY LIMITED"	14-Feb-08 04:16 PM	

+="CN61156"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	06-Jul-07	30-Sep-08	90000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:17 PM	

+="CN61173"	"Comcare (SIFC) asbestos claims"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	03-Jul-07	30-Jun-08	100000.00	=""	="SPARKE HELMORE"	14-Feb-08 04:19 PM	

+="CN61178"	" Provision for Dynamic Business Modelling Services "	="Department of Immigration and Citizenship"	14-Feb-08	="Business function specific software"	29-Oct-07	15-Dec-07	130000.00	=""	="University of Canberra"	14-Feb-08 04:21 PM	

+="CN61198"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	02-Jul-07	30-Sep-08	100000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:22 PM	

+="CN61216"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	14-Jan-08	30-Jun-08	91525.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	14-Feb-08 04:25 PM	

+="CN61226"	"OFSC advertising tenders"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	03-Jul-07	30-Jun-08	90000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:26 PM	

+="CN61244"	"Installation of Security System"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	14-May-10	232000.00	=""	="DATA KEY SYSTEMS (ACT) P/L"	14-Feb-08 04:28 PM	

+="CN61249"	"Best Way Inn"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	23-Jul-07	16-Jun-08	99150.00	=""	="HOTEL MOTEL & ACCOMODATION"	14-Feb-08 04:29 PM	

+="CN61251"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	15-Jan-08	30-Jun-08	95040.00	="ITC"	="EUROLINK CONSULTING AUST P/L"	14-Feb-08 04:29 PM	

+="CN61259"	"contractor services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	19-Jul-07	30-Jun-08	125000.00	=""	="PEGASUS GLOBAL PTY LTD"	14-Feb-08 04:30 PM	

+="CN61263"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	19-Nov-07	30-Jun-08	116600.00	=""	="ISG"	14-Feb-08 04:31 PM	

+="CN61275"	"Conference"	="Department of Employment and Workplace Relations"	14-Feb-08	="Vocational training"	25-Jul-07	31-Aug-07	81150.00	=""	="AMORA HOTEL JAMISON SYDNEY"	14-Feb-08 04:32 PM	

+="CN61283"	"Media Monitoring Service"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	26-Jul-07	30-Jun-08	90000.00	=""	="MEDIA MONITORS AUST P/L"	14-Feb-08 04:33 PM	

+="CN61304"	"Maintenanace"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	12-Jul-07	30-Jun-08	103785.00	=""	="ALLEN SYSTEMS GROUP (ASG)"	14-Feb-08 04:36 PM	

+="CN61311"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	241973.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	14-Feb-08 04:37 PM	

+="CN61312"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	16-Jul-07	30-Jun-08	215600.00	=""	="AXIS CONSULTING PTY LTD"	14-Feb-08 04:37 PM	

+="CN61320"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	193600.00	=""	="ICON RECRUITMENT PTY LTD"	14-Feb-08 04:38 PM	

+="CN61324"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	257400.00	=""	="TITAN CONSULTING SERVICES"	14-Feb-08 04:38 PM	

+="CN61325"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	14-Feb-08	="Advertising"	11-Jul-07	30-Jun-08	133000.00	=""	="HMA BLAZE PTY LIMITED"	14-Feb-08 04:39 PM	

+="CN61326"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	11-Jul-07	30-Jun-08	85800.00	=""	="DIVERSITI"	14-Feb-08 04:39 PM	

+="CN61339"	"SCOPE Software Maintenance - Corporate Licence"	="Department of Employment and Workplace Relations"	14-Feb-08	="Software"	12-Jul-07	30-Jun-08	86103.44	=""	="ALPHAWEST SERVICE PTY LTD"	14-Feb-08 04:40 PM	

+="CN61342-A1"	" Assistance for Australian Government Agencies' Management of their Websites Performance Audit. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	01-Jul-04	30-Jun-08	112200.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:40 PM	

+="CN61348-A1"	" Staff to assist with various financial statement audits. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	03-Dec-07	30-Sep-08	161866.00	=""	="Caskadel Pty Limited"	14-Feb-08 04:40 PM	

+="CN61362-A2"	" Staff to assist with the 2007-08 Financial Statement Audit of the Department of Defence. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	125250.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61364-A1"	" Staff to assist with various Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	115000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61365"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Jun-08	300000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	14-Feb-08 04:41 PM	

+="CN61367-A1"	"Yarralumla Consulting Pty Ltd"	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	06-Feb-08	31-Oct-08	130000.00	=""	="Yarralumla Consulting Pty Ltd"	14-Feb-08 04:41 PM	

+="CN61370"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Management advisory services"	18-Jul-07	30-Jun-08	165000.00	=""	="EJOBS RECRUITMENT SPECIALISTS P/L"	14-Feb-08 04:42 PM	

+="CN61371-A1"	" Assist with the development of a Better Practice Guide on Internal Budgeting - Phase 2. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	07-Jan-08	30-Jun-08	154500.00	=""	="KPMG Peat Marwick - ACT"	14-Feb-08 04:42 PM	

+="CN61374"	"July 2007 Mid-month Reimbursement to United Group"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	18-Jul-07	30-Sep-07	221953.89	=""	="UNITED GROUP SERVICES - PROPERTY AC"	14-Feb-08 04:42 PM	

+="CN61378"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="PHILLIPS FOX LAWYERS"	14-Feb-08 04:42 PM	

+="CN61380"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="MINTER ELLISON"	14-Feb-08 04:43 PM	

+="CN61384"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Aug-08	100000.00	=""	="FREEHILLS"	14-Feb-08 04:43 PM	

+="CN61383-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	15-Jan-08	30-Sep-08	120960.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	14-Feb-08 04:43 PM	

+="CN61390"	"Legal Services"	="Department of Employment and Workplace Relations"	14-Feb-08	="Business administration services"	16-Jul-07	30-Jun-08	200000.00	=""	="BLAKE DAWSON WALDRON"	14-Feb-08 04:43 PM	

+="CN61393-A2"	" Staff to assist with various financial statement audits "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	24-Jan-08	30-Oct-08	197760.00	=""	="Ascent Audit"	14-Feb-08 04:44 PM	

+="CN61395-A1"	" Undertake Performance Audit of Illegal, Unreported and Unregulated Fishing in the Southern Ocean. "	="Australian National Audit Office (ANAO)"	14-Feb-08	="Audit services"	26-Nov-07	31-Dec-08	236841.00	=""	="McGrathNicol Advisory Partnership"	14-Feb-08 04:44 PM	

+="CN61396"	"IT Contractors"	="Department of Employment and Workplace Relations"	14-Feb-08	="Computer services"	28-Nov-07	30-Jun-08	254812.80	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	14-Feb-08 04:44 PM	

+="CN61407"	"DIRECTOR ARTILLERY SPARES"	="Defence Materiel Organisation"	15-Feb-08	="Surveillance and detection equipment"	14-Feb-08	17-Jul-08	242663.30	=""	="Hall & Watts Australia Pty Ltd"	15-Feb-08 07:41 AM	

+="CN61417-A1"	"Printing of: NAT2938-4.2008 - ABN Registration for Individuals"	="Australian Taxation Office"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	30-May-08	101682.90	=""	="Blue Star Print Group T/A National Capital Printing"	15-Feb-08 09:48 AM	

+="CN61419-A1"	"Printing of: NAT2939-4.2008 - ABN Registration for Companies"	="Australian Taxation Office"	15-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Feb-08	30-May-08	105092.90	=""	="Blue Star Print Group T/A National Capital Printing"	15-Feb-08 09:52 AM	

+="CN61420-A1"	"Provision of services in relation to project support services"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	06-Aug-07	30-Jun-08	80458.40	=""	="Diversiti"	15-Feb-08 10:12 AM	

+="CN61423-A2"	"Provision of services in relation to a traineeship with Information Services"	="Australian Federal Police"	15-Feb-08	="Engineering and Research and Technology Based Services"	07-May-07	07-May-09	116608.80	=""	="Innovative Business Computing Pty Limited"	15-Feb-08 10:29 AM	

+="CN61425-A3"	"Provision of services in relation to a traineeship for desktop services"	="Australian Federal Police"	15-Feb-08	="Computer services"	01-Jul-07	31-Dec-08	95482.00	=""	="Innovative Business Computing Pty Limited"	15-Feb-08 10:50 AM	

+="CN61433"	"Jack Leveling Support"	="Defence Materiel Organisation"	15-Feb-08	="Workshop machinery and equipment and supplies"	15-Feb-08	15-Apr-08	85857.20	=""	="Varley Group"	15-Feb-08 12:14 PM	

+="CN61434"	"ESP support for ATC C3 Contracts for 2 staff and associated travel & incidentals associated with there employment."	="Defence Materiel Organisation"	15-Feb-08	="Air transportation support systems and equipment"	01-Feb-08	30-Jun-08	142183.04	=""	="Jacobs Australia"	15-Feb-08 01:18 PM	

+="CN61448"	"Business Advisory Services"	="Department of Finance and Administration"	15-Feb-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	28-Feb-08	120000.00	=""	="ORGANISATION FOR ECONOMIC CO-OP & DEVELO"	15-Feb-08 03:20 PM	

+="CN61451"	"Training & Education Costs"	="Department of Finance and Administration"	15-Feb-08	="Education and Training Services"	21-Oct-07	28-Nov-08	95000.00	=""	="THE FEDERAL EXECUTIVE INSTITUTE"	15-Feb-08 03:21 PM	

+="CN61463"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	27-Jun-08	120000.00	="FIN  05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	15-Feb-08 03:26 PM	

+="CN61486-A1"	"Contractor Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	22-Oct-07	31-Mar-08	140000.00	=""	="Neil Johnston Consulting Pty Ltd"	15-Feb-08 03:28 PM	

+="CN61487"	"Legal Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	31-Mar-08	169742.00	=""	="AUSTRALIAN GOVT SOLICITOR - TRUST ACCT"	15-Feb-08 03:29 PM	

+="CN61515"	"Consultancy Costs"	="Department of Finance and Deregulation"	15-Feb-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	30-Jun-08	200000.00	="FMG finance team to fill in"	="MERCER (AUSTRALIA) PTY LTD"	15-Feb-08 03:32 PM	

+="CN61516"	"LOAD-CELL, FORCE WEIGHT TENSIOMETER"	="Defence Materiel Organisation"	15-Feb-08	="Tensiometers"	12-Feb-08	15-May-08	149595.60	="G8217"	="A NOBLE & SONS"	15-Feb-08 03:37 PM	

+="CN61521"	"Centrelink refurbishment"	="Centrelink"	15-Feb-08	="Office machines and their supplies and accessories"	11-Dec-07	31-Dec-07	193380.99	=""	="Retail Environment Design"	15-Feb-08 03:42 PM	

+="CN61552"	"Community and Social services"	="Centrelink"	15-Feb-08	="Community and social services"	17-Jan-08	30-Jun-08	100000.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	15-Feb-08 03:46 PM	

+="CN61557-A1"	"Recruitment Services"	="Centrelink"	15-Feb-08	="Human resources services"	22-Jan-08	30-Jun-08	100000.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	15-Feb-08 03:47 PM	

+="CN61561"	"Business administration services"	="Centrelink"	15-Feb-08	="Business administration services"	24-Jan-08	30-Jun-08	133976.97	=""	="Australian Public Servce Commission"	15-Feb-08 03:47 PM	

+="CN61573"	"Courier Services WA"	="Centrelink"	15-Feb-08	="Mail and cargo transport"	10-Jan-08	30-Apr-08	111000.01	=""	="Courier Australia"	15-Feb-08 03:49 PM	

+="CN61584"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	08-Jan-08	08-Jan-09	187387.20	=""	="Omaha IT Services Pty Ltd"	15-Feb-08 03:50 PM	

+="CN61588"	"Provision of IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	10-Jan-08	15-Jan-09	235435.20	=""	="OOSW Consulting Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61591"	"Fitout of Biloela QLD"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	30-Jun-08	202774.00	=""	="Quadric Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61592"	"Fitout of Bowen QLD"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	30-Jun-08	236610.00	=""	="Quadric Pty Ltd"	15-Feb-08 03:51 PM	

+="CN61596"	"Fitout for Burnie Office TAS"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Jan-08	29-Feb-08	260374.07	=""	="Stubbs Constructions Pty Ltd"	15-Feb-08 03:52 PM	

+="CN61597"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	19-Nov-07	11-Jan-08	114853.21	=""	="OOSW Consulting Pty Ltd"	15-Feb-08 03:52 PM	

+="CN61599"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	15-Oct-07	21-Jan-08	90413.40	=""	="Sheridan Management Services P/L"	15-Feb-08 03:52 PM	

+="CN61600"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	23-Jan-08	12-Aug-08	150150.00	=""	="Rapid Technology Group Pty Ltd"	15-Feb-08 03:52 PM	

+="CN61606"	"Contractors"	="Centrelink"	15-Feb-08	="Human resources services"	11-Oct-07	30-Jun-08	200637.80	=""	="Kaz Group Pty Ltd"	15-Feb-08 03:53 PM	

+="CN61617"	"Fitout Area Support Office"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	30-Sep-08	88577.51	=""	="James Millar Architects"	15-Feb-08 03:55 PM	

+="CN61620"	"Fitout of new Bamaga QLD"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Jan-08	30-Jun-08	142200.00	=""	="KL Bartlett Pty Ltd"	15-Feb-08 03:55 PM	

+="CN61602"	"Research into patterns of care in gynaecological cancers"	="Cancer Australia"	15-Feb-08	="Medical science and research"	01-Feb-08	30-Jun-08	120111.00	=""	="Monash University"	15-Feb-08 03:55 PM	

+="CN61623"	"Provision of IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	24-Jan-08	28-Jan-09	189789.60	=""	="OOSW Consulting Pty Ltd"	15-Feb-08 03:56 PM	

+="CN61625"	"St Marys NSW fitout"	="Centrelink"	15-Feb-08	="Office supplies"	29-Jan-08	30-Jun-08	290312.00	=""	="Latin Interiors Pty Ltd"	15-Feb-08 03:56 PM	

+="CN61627"	"IT Specialist Services"	="Centrelink"	15-Feb-08	="Computer services"	29-Jan-08	28-Jul-08	100900.80	=""	="Dialog Information Technology"	15-Feb-08 03:56 PM	

+="CN61628"	"Construction fitout"	="Centrelink"	15-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jan-08	30-Jun-08	225652.65	=""	="Schiavello (Vic) Pty  Ltd"	15-Feb-08 03:56 PM	

+="CN61629"	"Telecommunications media services"	="Centrelink"	15-Feb-08	="Telecommunications media services"	30-Jan-08	30-Jan-08	238640.33	=""	="Dimension Data Australia Pty Ltd"	15-Feb-08 03:56 PM	

+="CN61632"	"Office Furniture for New Site"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	16-Jan-08	29-Feb-08	176365.20	=""	="Schiavello (Vic) Pty  Ltd"	15-Feb-08 03:57 PM	

+="CN61635"	"Provision of IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	18-Jan-08	16-Jul-08	92492.40	=""	="Peoplebank Australia Pty Ltd"	15-Feb-08 03:57 PM	

+="CN61636"	"Provision of IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	18-Jan-08	20-Jan-09	196996.80	=""	="OOSW Consulting Pty Ltd"	15-Feb-08 03:57 PM	

+="CN61638-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	21-Jan-08	30-Jun-08	93139.20	="RFTS07/0129"	="Ekonsulting Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61639"	"IT Specialist Services by Specified Personnel"	="Centrelink"	15-Feb-08	="Computer services"	22-Jan-08	30-Jun-08	114853.20	="RFTS07/0129"	="Diversiti Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61643-A1"	"workstations for Toowong refurbishment QLD"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	23-Jan-08	30-Jun-08	268169.00	=""	="Schiavello Systems (QLD) Pty Ltd"	15-Feb-08 03:58 PM	

+="CN61645"	"Supply and install carpet"	="Centrelink"	15-Feb-08	="Furniture and Furnishings"	23-Jan-08	30-Jun-08	141837.30	=""	="Interface Flor"	15-Feb-08 03:59 PM	

+="CN61649"	"Software"	="Attorney-General's Department"	15-Feb-08	="Software maintenance and support"	17-Jan-08	10-Jan-09	297940.57	="07/13009"	="Data#3 Ltd"	15-Feb-08 04:36 PM	

+="CN61652"	"Equipment"	="Attorney-General's Department"	15-Feb-08	="Office Equipment and Accessories and Supplies"	17-Jan-08	30-Mar-08	117999.20	=""	="Hytec Carpentry Services"	15-Feb-08 04:37 PM	

+="CN61654-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	24-Jan-08	31-Mar-08	92400.00	="06/18397"	="Clicks Recruit Pty Ltd"	15-Feb-08 04:37 PM	

+="CN61661"	"Consultancy Fees"	="Attorney-General's Department"	15-Feb-08	="Business and corporate management consultation services"	10-Jan-08	30-Jun-08	80000.00	=""	="Success Works Pty Ltd"	15-Feb-08 04:38 PM	

+="CN61662-A1"	"Survey"	="Attorney-General's Department"	15-Feb-08	="Surveying systems"	10-Jan-08	30-May-08	90420.00	=""	="Insight SRC Pty Ltd"	15-Feb-08 04:38 PM	

+="CN61668-A1"	"Contract employment"	="Attorney-General's Department"	15-Feb-08	="Temporary personnel services"	11-Jan-08	14-Jul-08	130000.00	="06/18414"	="Icon Recruitment Pty Ltd"	15-Feb-08 04:39 PM	

+="CN61677"	"Services"	="Attorney-General's Department"	15-Feb-08	="Conference centres"	30-Jan-08	30-Jun-08	198000.00	=""	="Administrative Appeals Tribunal"	15-Feb-08 04:40 PM	

+="CN61679"	"Contract Services"	="Attorney-General's Department"	15-Feb-08	="Security systems services"	25-Jan-08	30-Jan-08	207999.99	="07/13009"	="TAC Pacific Pty Ltd"	15-Feb-08 04:40 PM	

+="CN61686"	"Internet Charges"	="Attorney-General's Department"	15-Feb-08	="Internet services"	25-Jan-08	30-Jan-08	119276.52	="07/13009"	="Cybertrust Australia Pty Ltd"	15-Feb-08 04:41 PM	

+="CN61690"	"Medical Retrieval"	="Attorney-General's Department"	15-Feb-08	="Medical or rescue helicopters"	08-Jan-08	25-Jan-08	85000.00	=""	="Careflight"	15-Feb-08 04:42 PM	

+="CN61691"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	10-Dec-07	24-Apr-08	104121.33	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 04:42 PM	

+="CN61702"	"Legal Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	20-Dec-07	25-Apr-08	98389.50	="06#199427DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-Feb-08 04:43 PM	

+="CN61705"	"Legal Professional Services"	="Attorney-General's Department"	15-Feb-08	="Legal services"	18-Dec-07	25-Jan-08	85000.00	=""	="Anthony J Meagher"	15-Feb-08 04:44 PM	

+="CN61725"	"Contracting Services"	="Attorney-General's Department"	15-Feb-08	="Temporary production staffing needs"	12-Feb-08	30-Jun-08	86773.38	="06/18147"	="Face 2 Face Recruitment Pty Limited"	15-Feb-08 04:46 PM	

+="CN61731-A1"	"software licence fee for Envinsa software"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	139360.10	="ATM07/798"	="PB MAPINFO AUSTRALIA  PTY"	15-Feb-08 05:05 PM	

+="CN61734"	"Office Sharepoint"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	14-Dec-07	20-Dec-07	170412.00	="ATM 07/821"	="ZALLCOM PTY LTD"	15-Feb-08 05:06 PM	

+="CN61739"	"Exchange 2007 server"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	21-Dec-07	113756.94	="ATM 07/837"	="ZALLCOM PTY LTD"	15-Feb-08 05:06 PM	

+="CN61751-A1"	"Office Modifications - Level 2 38 Sydney Ave"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Building and Construction Machinery and Accessories"	05-Feb-08	25-May-09	82559.40	="2008/00886"	="ISIS INTERIORS"	15-Feb-08 05:08 PM	

+="CN61763-A2"	"Consultancy to develop models for a testing & conformace scheme for Digital TV receivers"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Information Technology Broadcasting and Telecommunications"	05-Oct-07	02-Jan-08	149765.00	="CCR07/2873"	="Gibson Quai"	15-Feb-08 05:08 PM	

+="CN61765-A2"	"NetAlert PAFO Contractural Advice"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Public Utilities and Public Sector Related Services"	25-Sep-07	10-Mar-09	291500.00	="DCON/06/45"	="Blake Dawson Waldron"	15-Feb-08 05:08 PM	

+="CN61774-A2"	"Contractor Services"	="Department of Broadband Communications and the Digital Economy"	15-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	07-Nov-08	113356.30	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	15-Feb-08 05:09 PM	

+="CN61794"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	28-Aug-06	06-Dec-06	82414.57	=""	="LANE WATER TREATMENT"	15-Feb-08 06:57 PM	

+="CN61800"	"Repairs Truck"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	12-Sep-06	15-Dec-06	89760.60	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 06:58 PM	

+="CN61816"	"Repair Tanker"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	01-Nov-06	30-May-07	80817.27	=""	="LANE WATER TREATMENT"	15-Feb-08 07:00 PM	

+="CN61895"	"Vehicle Repairs"	="Department of Defence"	15-Feb-08	="Vehicle maintenance and repair services"	06-Mar-07	18-May-07	80663.19	=""	="R G M MAINTENANCE Pty Ltd"	15-Feb-08 07:10 PM	

+="CN61896"	"Tank Repairs"	="Department of Defence"	15-Feb-08	="Metal and mineral industries"	06-Mar-07	14-Jul-07	86308.32	=""	="LANE WATER TREATMENT"	15-Feb-08 07:10 PM	

+="CN61917"	" Disruptive Pattern Camouflage Hat "	="Defence Materiel Organisation"	17-Feb-08	="Hats"	26-Oct-07	29-Feb-08	106395.82	="2480023"	="SOS Marine"	17-Feb-08 02:41 PM	

+="CN61918"	" PURCHASE OF QTY 10 BLACK HAWK SUPPORT ASSY'S.  CAGE: 78286 "	="Defence Materiel Organisation"	18-Feb-08	="Military rotary wing aircraft"	18-Feb-08	30-Jun-08	276241.79	=""	="SAAL"	18-Feb-08 09:29 AM	

+="CN61924-A4"	"Provision of Software Licence and Support Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Software"	10-Dec-07	17-Sep-10	222673.00	=""	="DATA#3 LIMITED"	18-Feb-08 10:09 AM	

+="CN61926"	"CRS Australia - Suite 1, 2-4 Meton Street, Sutherland, NSW"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	31-Oct-10	249575.98	=""	="GDF Properties Pty Ltd"	18-Feb-08 10:24 AM	

+="CN61927"	"CRS Australia - Level 3, Ipswich City Tower, 2 Bell Street, Ipswich QLD"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Jun-07	31-May-09	216919.36	=""	="The Public Trustee Of Queensland"	18-Feb-08 10:28 AM	

+="CN61928-A1"	"Provision of Quality Improvement Control accreditation services."	="Department of Veterans' Affairs"	18-Feb-08	="Medical practice"	01-Feb-08	01-Feb-11	134775.00	=""	="Quality Management Services"	18-Feb-08 10:30 AM	

+="CN61932"	"CRS Australia - RAA House, 33 Smart Road, Modbury, SA"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	31-Dec-10	259147.20	=""	="Supreme Kitchens (SA) Pty Ltd"	18-Feb-08 10:32 AM	

+="CN61940-A1"	"Provision for Business Analyst"	="Comsuper"	18-Feb-08	="Human resources services"	14-Feb-08	30-Jun-08	100000.00	=""	="Peoplebank Australia"	18-Feb-08 10:54 AM	

+="CN61950-A4"	"Provision of Non-Serial Publications."	="Australian Taxation Office"	18-Feb-08	="Printed publications"	01-Jan-08	30-Jun-10	250000.00	=""	="DA Information Services"	18-Feb-08 11:58 AM	

+="CN61953"	" CRS Australia - Suite 6, 39 Old Cleveland Road, Capalaba, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	30-Oct-09	118402.51	=""	="Jexville Pty Ltd"	18-Feb-08 12:12 PM	

+="CN61964"	"Governance Coordinator in Aceh"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	19-Aug-08	276650.00	=""	="HUNT, DANIEL JAMES"	18-Feb-08 12:42 PM	

+="CN61971"	"Design of a new ASEAN Program: Design Specialist"	="AusAid"	18-Feb-08	="Trade policy and services"	01-Jul-07	31-Dec-07	108273.77	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD (PDM)"	18-Feb-08 12:43 PM	


+="CN61986"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	31-Dec-07	87067.20	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 12:45 PM	

+="CN61987"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	168960.00	=""	="COMPAS PTY.LTD."	18-Feb-08 12:45 PM	

+="CN61988"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	194304.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 12:45 PM	

+="CN61989"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	221760.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 12:45 PM	

+="CN61991"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	179520.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 12:45 PM	

+="CN61993"	"Pacific Urban Program Support Workshop"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	31-Oct-07	81204.20	=""	="PLANNING INSTITUTE AUSTRALIA INC NEW SOUTH WALES DIVISION"	18-Feb-08 12:46 PM	

+="CN61994"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Vocational training"	02-Jul-07	30-Jun-08	109824.00	=""	="CONQUEST ENTERPRISE CONSULTING PTY LTD"	18-Feb-08 12:46 PM	

+="CN61995"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	190080.00	=""	="SURYA ENTERPRISES PTY LTD"	18-Feb-08 12:46 PM	

+="CN61997"	"Peter Bazeley"	="AusAid"	18-Feb-08	="Management advisory services"	21-Jul-07	30-Nov-07	85328.42	=""	="PETER BAZELEY DEVELOPMENT CONSULTING"	18-Feb-08 12:46 PM	

+="CN61998"	"Design Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	09-Jul-07	30-Jun-08	162800.00	=""	="GAISHERIDAN INTERNATIONAL PTY LTD"	18-Feb-08 12:46 PM	

+="CN62002"	"IRG Team Member Counselling, Care and Community Health"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	30-Nov-10	211401.29	=""	="DR ALEX GODWIN COUTINHO"	18-Feb-08 12:47 PM	

+="CN62010"	"Ray Rist - IPDET and Consulting"	="AusAid"	18-Feb-08	="Trade policy and services"	01-Jul-07	30-Jun-08	128012.92	=""	="RIST, RAY"	18-Feb-08 12:48 PM	

+="CN62011"	"Michael Flint - Consulting"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	99092.40	=""	="MICHAEL FLINT"	18-Feb-08 12:48 PM	

+="CN62012"	"Chris Wheeler - design mission"	="AusAid"	18-Feb-08	="Disease prevention and control"	23-Jul-07	31-Dec-07	115195.30	=""	="WHEELER, CHRIS"	18-Feb-08 12:48 PM	

+="CN62020"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	154176.00	=""	="OFFICELINK PLUS PTY LTD"	18-Feb-08 12:49 PM	

+="CN62024"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	20-Aug-07	30-Jun-08	198000.00	=""	="AUREC PTY LTD"	18-Feb-08 12:49 PM	

+="CN62025"	"Hans Binswanger - senior expert consulting"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	30-Jun-08	99110.66	=""	="BINSWANGER, HANS P"	18-Feb-08 12:50 PM	

+="CN62028"	"Financial Coordination"	="AusAid"	18-Feb-08	="Business administration services"	01-Aug-07	30-Jun-08	164787.26	=""	="WALL, ROBERT W"	18-Feb-08 12:50 PM	

+="CN62035"	"Photolibrary Manager"	="AusAid"	18-Feb-08	="Business administration services"	06-Aug-07	06-Aug-09	82500.00	=""	="DAMIT AUSTRALIA PTY LTD"	18-Feb-08 12:51 PM	

+="CN62039"	"Mapping of suspect land under cultivation"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	13-Aug-07	30-Sep-08	180060.69	=""	="MINES ADVISORY GROUP"	18-Feb-08 12:52 PM	

+="CN62049"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Sep-07	100000.00	=""	="MGF WEBB"	18-Feb-08 12:53 PM	

+="CN62050"	"PNG National Land Development Program Concept Design"	="AusAid"	18-Feb-08	="Land and soil preparation and management and protection"	08-Jul-07	31-Mar-08	188567.50	=""	="LAND EQUITY INTERNATIONAL PTY LTD"	18-Feb-08 12:53 PM	

+="CN62054"	"UNEP-Sidoarjo Mud Flow Project"	="AusAid"	18-Feb-08	="Environmental protection"	16-Aug-07	31-Jan-08	94308.00	=""	="UNITED NATIONS ENVIRONMENT PROGRAMME"	18-Feb-08 12:54 PM	

+="CN62056"	"TELECOMMUNICATIONS FOR GROWTH ADVISOR"	="AusAid"	18-Feb-08	="Economics"	22-Aug-07	31-Jan-09	272635.00	=""	="MARKET DYNAMICS PTY LTD"	18-Feb-08 12:54 PM	

+="CN62058"	"AusAID Port Vila - Aid Performance Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	240039.58	=""	="UNIQUEST PTY LTD"	18-Feb-08 12:54 PM	

+="CN62060"	"Support for the Global Integrity Alliance"	="AusAid"	18-Feb-08	="International relations"	20-Jul-07	30-Jun-08	135932.50	=""	="MORRIS, ALAN GREGORY"	18-Feb-08 12:55 PM	

+="CN62064"	"Pacific Education Program Development"	="AusAid"	18-Feb-08	="Alternative educational systems"	01-Aug-07	30-Jun-08	207900.00	=""	="COLLINGWOOD, IAN"	18-Feb-08 12:55 PM	

+="CN62065"	"Provision of Services - Peter Mulligan (BA)"	="AusAid"	18-Feb-08	="Computer services"	04-Sep-07	04-Mar-08	107100.00	=""	="PLATINUM (ACT) PTY LTD"	18-Feb-08 12:55 PM	

+="CN62075"	"Building Sustainable Electoral Admin Phase3 TAF- reconciled funds"	="AusAid"	18-Feb-08	="Political systems and institutions"	17-Jul-06	30-Jul-08	122121.10	=""	="THE ASIA FOUNDATION"	18-Feb-08 12:57 PM	

+="CN62093"	"Violence Against Women Evaluation - Chris Bradley Contract"	="AusAid"	18-Feb-08	="Community and social services"	16-Sep-07	30-Jun-08	138000.00	=""	="BRADLEY, CHRISTINE"	18-Feb-08 12:59 PM	

+="CN62096"	"monitoring & evaluation of SRH, emergency supplies & MISP"	="AusAid"	18-Feb-08	="Comprehensive health services"	30-Oct-07	30-Oct-08	110000.00	=""	="SARAH DAWSON"	18-Feb-08 12:59 PM	

+="CN62099"	"AIPRD Asset Mapping Technical Assistance for Building Materials Testing and Handling"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	06-Sep-07	30-Dec-07	103424.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:00 PM	

+="CN62100"	"Better Education Convention"	="AusAid"	18-Feb-08	="Business administration services"	20-Jul-07	30-Dec-07	104005.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:00 PM	

+="CN62107"	"Recruitment of MOG Program Director - Hansen and Searson Executive Search"	="AusAid"	18-Feb-08	="Human resources services"	13-Sep-07	31-Dec-07	93500.00	=""	="PAPER SHUFFLE PTY LTD"	18-Feb-08 01:01 PM	

+="CN62110"	"country strategy effectiveness review - Team Leader - Michael Flint"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	31-Dec-07	91230.00	=""	="MICHAEL FLINT"	18-Feb-08 01:01 PM	


+="CN62124"	"Investing in People Conference - 19 & 20 November 2007"	="AusAid"	18-Feb-08	="Specialised educational services"	19-Nov-07	30-Nov-07	88865.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:03 PM	

+="CN62126"	"AIPRD Asset Mapping and Management - GIS/Mapping Specialist"	="AusAid"	18-Feb-08	="Environmental management"	22-Oct-07	31-Dec-07	109780.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:03 PM	

+="CN62129"	"KPK - Fighting Bribery in Public Procurement"	="AusAid"	18-Feb-08	="Work related organisations"	03-Oct-07	01-Jan-08	129467.39	=""	="INDONESIA: KOMISI PEMBERANTASAN KORUPSI"	18-Feb-08 01:03 PM	

+="CN62131"	"Amber Davidson"	="AusAid"	18-Feb-08	="Disease prevention and control"	15-Oct-07	29-Feb-08	94632.35	=""	="DAVIDSON, AMBER"	18-Feb-08 01:04 PM	

+="CN62134"	"Gender Training"	="AusAid"	18-Feb-08	="Vocational training"	12-Oct-07	12-Oct-09	118861.87	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:04 PM	

+="CN62137"	"Case Studies in Fragile States"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	15-Oct-07	29-Aug-08	86356.00	=""	="CONSTANTINE, JANINE ANDREA"	18-Feb-08 01:04 PM	

+="CN62143"	"East Timor Performance & Quality Management"	="AusAid"	18-Feb-08	="Management advisory services"	05-Oct-07	30-Jun-08	95799.00	=""	="DAVIDSON, AMBER"	18-Feb-08 01:05 PM	

+="CN62148"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	31-Mar-08	100848.00	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:06 PM	

+="CN62152"	"Jenny Gordon IIF Design"	="AusAid"	18-Feb-08	="Management advisory services"	01-Apr-07	28-Sep-07	111815.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:06 PM	

+="CN62153"	"APEC's engagement with other multilateral organisations"	="AusAid"	18-Feb-08	="Economics"	08-Oct-07	31-Mar-09	170000.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62156"	"AANZFTA Economic Cooperation Chapter Technical Expert"	="AusAid"	18-Feb-08	="Trade policy and services"	15-Nov-07	30-Jun-08	91900.60	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62159"	"Financial Sector Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	28-Feb-08	269280.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:08 PM	

+="CN62160"	"Samoa Internal Revenue Department ISP: Preliminary Phase Work"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	30-Nov-07	117040.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:08 PM	

+="CN62171"	"GIFC: Forests and Climate Program Coordinator Indonesia"	="AusAid"	18-Feb-08	="Forestry"	02-Jul-07	02-Nov-07	149749.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:09 PM	

+="CN62172"	"GIFC: Forests and Climate Program Coordinator Indonesia"	="AusAid"	18-Feb-08	="Forestry"	02-Jul-07	29-Feb-08	213625.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:10 PM	

+="CN62174"	"Australia Indonesia Partnership Regional Development Monitoring and Review Group (MARG): Richard Holloway"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	30-Apr-08	225541.80	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62180"	"Senior Research Adviser for Aceh Communities Assistance Research Project (Craig Thorburn)"	="AusAid"	18-Feb-08	="Management advisory services"	14-Jun-07	30-Nov-07	104374.60	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62186"	"HRD Plan- Carolyn Marsh"	="AusAid"	18-Feb-08	="Educational institutions"	14-Aug-07	31-Jan-08	135414.40	=""	="MDG PTY LTD"	18-Feb-08 01:12 PM	

+="CN62187"	"Solomon Islands Electoral Strengthening Design Mission - Design Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	28-May-07	29-Feb-08	100782.00	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62188"	"Samoa Law and Justice Sector - Law and Justice Sector Plan"	="AusAid"	18-Feb-08	="Management advisory services"	29-Jul-07	30-Jun-08	143587.85	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62213"	"Aid Delivery Training in Various Regional Posts"	="AusAid"	18-Feb-08	="Specialised educational services"	17-Sep-07	31-Dec-07	93849.80	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62214"	"Praxis Aid Delivery Training - September to December 2007"	="AusAid"	18-Feb-08	="Vocational training"	17-Sep-07	31-Dec-07	93849.80	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:16 PM	

+="CN62215"	"Australia Indonesia Partnership Regional Development Monitoring and Review Group (MARG): Julie Klugman"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	30-Apr-08	101704.90	=""	="GHD PTY LTD"	18-Feb-08 01:16 PM	

+="CN62219"	"Mike Finlayson_Team Leader of HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	26-Sep-07	30-Apr-08	88250.80	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:16 PM	

+="CN62233"	"Fiji Education Sector Program"	="AusAid"	18-Feb-08	="Educational facilities"	01-May-03	31-Dec-08	118119.10	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:18 PM	

+="CN62236"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	14-Dec-07	147400.00	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:19 PM	

+="CN62244"	"David Henry OTS Strategy, Plans and Materials"	="AusAid"	18-Feb-08	="Vocational training"	16-Apr-07	31-Dec-07	108632.00	=""	="HENRY, DAVID MCKENZIE"	18-Feb-08 01:20 PM	

+="CN62246"	"Samoa Police Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Dec-03	28-Feb-09	243784.93	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:20 PM	

+="CN62254"	"Review TL Dr P Murphy"	="AusAid"	18-Feb-08	="Educational institutions"	06-Aug-07	31-Oct-07	81864.20	=""	="CONSULTING PLUS PTY. LTD."	18-Feb-08 01:21 PM	

+="CN62256"	"Praxis Consultants Pty Ltd - Democratic Governance Program Design"	="AusAid"	18-Feb-08	="Management advisory services"	07-Oct-06	31-Dec-07	229397.30	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:21 PM	

+="CN62257"	"Review of Asia Regional Strategy 2005-2009"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	04-Jan-08	107404.00	=""	="BYSOUTH, KAYE ANNETTE"	18-Feb-08 01:21 PM	

+="CN62258"	"Services for development of Civil Society Framework Bysouth"	="AusAid"	18-Feb-08	="Political systems and institutions"	08-Nov-07	30-Jun-08	83385.50	=""	="BYSOUTH, KAYE ANNETTE"	18-Feb-08 01:21 PM	

+="CN62267"	"PUBLIC SECTOR LINKAGES PROGRAM (PSLP) MONITORING AND EVALUATION SPECIALIST"	="AusAid"	18-Feb-08	="Management advisory services"	22-May-06	30-Jun-07	111936.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62273"	"The provision of library and information services"	="AusAid"	18-Feb-08	="Educational facilities"	01-Jul-04	30-Jun-08	159540.29	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	18-Feb-08 01:24 PM	

+="CN62277"	"ACFID Training and Seminar 2007-2008"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	01-Jul-07	30-Jun-08	133131.90	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62284"	"Joint SE/HES Baystreet Fees"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	14-Mar-08	220000.00	=""	="BAY STREET MEDIA WORKS"	18-Feb-08 01:25 PM	

+="CN62300"	"Geoff Lacey's Service Order through EDG for the ADS re-design"	="AusAid"	18-Feb-08	="Educational facilities"	02-Sep-07	31-Dec-07	83322.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62303"	"Australian Scholarships Alumni Network"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	31-Oct-07	95700.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62308-A1"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	05-Feb-07	30-Jun-09	264660.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:30 PM	

+="CN62320"	"HSSP Transition Phase - Technical Assistance"	="AusAid"	18-Feb-08	="Comprehensive health services"	06-Aug-07	31-Dec-07	220548.90	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62328"	"RAMSI Community Outreach Officer Recruitment"	="AusAid"	18-Feb-08	="Marketing and distribution"	31-Jul-06	30-Nov-08	203869.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62339"	"PNG Electoral Support Program Phase 2"	="AusAid"	18-Feb-08	="Political systems and institutions"	15-Aug-05	15-Aug-08	200685.10	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:33 PM	

+="CN62341"	"Engagement of consultant"	="AusAid"	18-Feb-08	="Management advisory services"	20-Apr-07	30-Oct-07	86600.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62342"	"Senior Field Researcher for Aceh Community Assistance Research Project"	="AusAid"	18-Feb-08	="Community and social services"	21-May-07	30-Dec-07	84700.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62344"	"ASEAN+3 EID (Phase 2)- Implementation Stage: Design Capacity Building Workshops- Mike Freeman"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	12-Nov-07	87124.40	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62346"	"AANZFTA Economic Cooperation Chapter Design Expert"	="AusAid"	18-Feb-08	="Trade policy and services"	22-Oct-07	30-Jun-08	96140.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62347"	"Coffey International Development"	="AusAid"	18-Feb-08	="Management advisory services"	28-Feb-07	30-Sep-07	96585.13	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62351"	"AIPRD Asset Mapping Assistance - Interim Assistance Coordinator"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Oct-07	31-Jan-08	125876.30	=""	="M.D.I. INTERNATIONAL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62357"	"Philippines Education Sectoral Advisory Group (David Chantrill)"	="AusAid"	18-Feb-08	="Management advisory services"	27-Jan-06	30-Jun-09	110000.00	=""	="CHANTRILL, DAVID"	18-Feb-08 01:35 PM	

+="CN62362"	"ABMEC TAG - E Zambotti"	="AusAid"	18-Feb-08	="Management advisory services"	03-Feb-06	31-Jan-08	85772.50	=""	="ZAMBOTTI, ELIZABETH PAULINE"	18-Feb-08 01:36 PM	

+="CN62363"	"ANTARA Management Support Team"	="AusAid"	18-Feb-08	="Business administration services"	01-Mar-06	28-Feb-11	181900.66	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:36 PM	

+="CN62366"	"Datamart Developemnt and Support Services in  Relation to AusAID Business Systems"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	220000.00	=""	="ALTIS CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62370"	"RAMSI PAAT CB Specialist - Kaye Schofield"	="AusAid"	18-Feb-08	="Management advisory services"	13-Feb-07	12-Feb-08	133146.20	=""	="SCHOFIELD, KAYE"	18-Feb-08 01:37 PM	

+="CN62380"	"Service Order 17 Technical Support to ETG - Val Haugen"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	15-Oct-07	148808.00	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:39 PM	

+="CN62381"	"Service Order 20 Technical Support to ETG - Val Haugen"	="AusAid"	18-Feb-08	="Management advisory services"	15-Oct-07	30-Jun-08	200244.00	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:39 PM	

+="CN62385"	"Peter Morgan"	="AusAid"	18-Feb-08	="Writing and translations"	01-Jul-07	23-May-09	85077.96	=""	="MORGAN, PETER JOHN"	18-Feb-08 01:39 PM	

+="CN62386"	"PNG Deployee Services Tasking Note - Coffey ID"	="AusAid"	18-Feb-08	="Management advisory services"	20-Jan-07	07-May-08	98780.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:40 PM	

+="CN62390"	"Luman Soho Property Management"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Jun-08	231000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62391"	"Building Sustainable Communities: Livelihoods & Community Structure in Post-Tsunami Housing Projects in Sri Lanka, India & Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	01-Jan-07	31-May-10	99000.00	=""	="MONASH UNIVERSITY"	18-Feb-08 01:40 PM	

+="CN62392"	"RAMSI Interim Performance Review Nov/Dec 06- PAAT services"	="AusAid"	18-Feb-08	="Management advisory services"	01-Nov-06	31-Mar-08	99444.00	=""	="CAMRIS INTERNATIONAL"	18-Feb-08 01:40 PM	

+="CN62398"	"Quality Assurance Contractor for the Second Phase of the Land Administration and Management Project (QAC for LAMP II)"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-06	31-Oct-07	105242.50	=""	="Department of Environment and Natural Resources (Philippines)"	18-Feb-08 01:41 PM	

+="CN62400"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	26-Jul-06	30-Jun-08	291620.18	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62403"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	221760.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62404"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	01-Jul-06	30-Jun-08	105600.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62407"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	14-Aug-06	30-Jun-08	202848.53	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62409"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	15-Aug-06	24-Dec-07	211298.12	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:43 PM	

+="CN62415"	"Dr Basil McNamara"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	30-Apr-08	237081.42	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:43 PM	

+="CN62417"	"Dr Jason Sly"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	30-Sep-08	182877.75	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62424"	"PACTAM Maritime College Engineer"	="AusAid"	18-Feb-08	="Educational institutions"	23-Jul-07	13-Nov-09	122420.29	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62427"	"Electrical Engineer - Placement"	="AusAid"	18-Feb-08	="Utilities"	31-Aug-07	31-Oct-09	112330.16	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62428"	"Placement for Legal Advisor (OAG)"	="AusAid"	18-Feb-08	="Legal services"	01-Oct-07	30-Sep-09	244244.70	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62429"	"Chief Accountant"	="AusAid"	18-Feb-08	="Accounting and auditing"	01-Jun-07	20-Jul-08	90155.86	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62432"	"Dr. Jacqui Glennon"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Jul-07	31-Oct-08	113680.03	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62443"	"SNPF Legal Consultant - Bill Martin"	="AusAid"	18-Feb-08	="Credit agencies"	01-Oct-07	30-Nov-08	160000.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62441"	"Property Lease - Division of Fremantle"	="Australian Electoral Commission"	18-Feb-08	="Lease and rental of property or building"	01-Jan-08	31-Dec-12	286000.00	=""	="Mayport Pty Ltd"	18-Feb-08 01:48 PM	

+="CN62447"	"Service Order - PASP Adhoc Services - HK Logistics"	="AusAid"	18-Feb-08	="Educational institutions"	01-Aug-07	31-Oct-07	151367.37	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:48 PM	

+="CN62449"	"CCJAG - Payment to PASP account for Charles Kendall and Partners Ltd for Management of CCJAG"	="AusAid"	18-Feb-08	="Human resources services"	08-Oct-07	31-Dec-09	294962.90	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62450"	"CKP: Selection of HSSP S/term Procurement Specialist - Interim Phase"	="AusAid"	18-Feb-08	="Human resources services"	26-Oct-07	30-May-08	159540.00	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62452"	"Philippines-Australia Local Governance Development Program (LDGP) Phase 1"	="AusAid"	18-Feb-08	="Management advisory services"	16-Oct-06	15-Nov-07	263894.97	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:49 PM	

+="CN62454"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	11-Dec-06	30-Jun-08	143264.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	18-Feb-08 01:49 PM	

+="CN62455"	"Manager Nauru Utilities"	="AusAid"	18-Feb-08	="Utilities"	11-Dec-06	31-Dec-08	144152.50	=""	="BREARLEY, WAYNE"	18-Feb-08 01:49 PM	

+="CN62457"	"Provision of IT Technical Personnel - Windows Technical Support"	="AusAid"	18-Feb-08	="Business administration services"	15-Jan-07	30-Jun-08	279618.57	=""	="CCS INDEX PTY LTD"	18-Feb-08 01:49 PM	

+="CN62460"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-Jan-07	30-Jun-08	193076.40	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:50 PM	

+="CN62462"	"Aceh Infrastructure Monitoring Team - Team Member - Damien Smith"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	08-Jan-07	10-May-08	187748.00	=""	="SMITH, DAMIEN JOEL"	18-Feb-08 01:50 PM	

+="CN62463"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	15-Jan-07	30-Jun-08	200640.00	=""	="COMPAS PTY.LTD."	18-Feb-08 01:50 PM	

+="CN62465"	"CEPA Interim Team Leader - Chloe Olliver"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jan-07	31-Dec-07	217030.00	=""	="OLLIVER, CHLOE JANE"	18-Feb-08 01:50 PM	

+="CN62467-A1"	"Griffin NRM-Environment Consultant"	="AusAid"	18-Feb-08	="Environmental management"	12-Feb-07	30-Dec-07	113300.00	=""	="GRIFFIN NRM PTY LTD"	18-Feb-08 01:51 PM	

+="CN62469"	"Design Advisor Mark Minford"	="AusAid"	18-Feb-08	="Management advisory services"	20-Feb-07	30-Nov-07	265760.00	=""	="MINFORD, MARK LESLIE MACKAY"	18-Feb-08 01:51 PM	

+="CN62471"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	26-Feb-07	30-Jun-08	164104.60	=""	="GREYTHORN PTY LTD"	18-Feb-08 01:51 PM	

+="CN62472"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	01-Mar-07	30-Jun-08	199471.80	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:51 PM	

+="CN62473"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	30-Apr-07	30-Jun-08	237600.00	=""	="AMBIT GROUP PTY LTD"	18-Feb-08 01:51 PM	

+="CN62474"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	13-Mar-07	30-Jun-08	292160.00	=""	="GREYTHORN PTY LTD"	18-Feb-08 01:52 PM	

+="CN62479"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	26-Mar-07	30-Jun-08	210056.00	=""	="CCS INDEX PTY LTD"	18-Feb-08 01:52 PM	

+="CN62481"	"AIPRD Aceh Rehabilitation Program - Timber Adviser"	="AusAid"	18-Feb-08	="Forestry"	09-Apr-07	08-Oct-07	142890.00	=""	="KURU, GEORGE"	18-Feb-08 01:52 PM	

+="CN62482"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	11-Apr-07	30-Sep-08	238150.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62487"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	04-Jun-07	30-Jun-08	290312.00	=""	="AUREC PTY LTD"	18-Feb-08 01:53 PM	

+="CN62490"	"Pacific Statebuilding and Governance Research Project"	="AusAid"	18-Feb-08	="Management advisory services"	31-May-07	30-Jun-08	267525.50	=""	="UNIVERSITY OF QUEENSLAND"	18-Feb-08 01:53 PM	

+="CN62491"	"Cairns Convention Centre"	="AusAid"	18-Feb-08	="Hotels and lodging and meeting facilities"	01-Jun-07	30-Jun-08	94436.22	=""	="CAIRNS CONVENTION CENTRE"	18-Feb-08 01:54 PM	

+="CN62493"	"The Forum Group"	="AusAid"	18-Feb-08	="Business administration services"	01-Jun-07	30-Jun-08	138122.89	=""	="THE FORUM GROUP PTY LTD"	18-Feb-08 01:54 PM	

+="CN62494"	"Assistance to AusAID and the Tonga Public Service Commission to develop the proposed Performance Incentives Arrangement"	="AusAid"	18-Feb-08	="Management advisory services"	14-Jun-07	30-Jul-08	80264.47	=""	="SAPERE CONSULTING"	18-Feb-08 01:54 PM	

+="CN62496"	"Design Mission: Peter Heijkoop"	="AusAid"	18-Feb-08	="Medical practice"	23-Sep-07	30-Apr-08	83047.80	=""	="UNIVERSAL FINANCIAL MANAGEMENT SOLUTIONS"	18-Feb-08 01:54 PM	

+="CN62498"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	31-Oct-07	100000.00	=""	="MGF WEBB"	18-Feb-08 01:54 PM	

+="CN62500"	"Better Education Convention"	="AusAid"	18-Feb-08	="Business administration services"	20-Jul-07	30-Dec-07	114405.50	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:55 PM	

+="CN62520"	"G2193 Linux Specialist Provision of Staff Under Deed of Standing Offer to June 2008"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	11-Jan-08	30-Jun-08	106700.00	=""	="Peoplebank Australia Ltd"	18-Feb-08 03:54 PM	

+="CN62545"	"G2128 Storage Solution for Geoscience Australia 2008"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	23-Jan-08	30-Jun-08	235400.00	=""	="Clonnaugh Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62550"	"WP 2007/263 Qld Capricorn Coast - Large Scale Mapping for Emergency Management."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	24-Jan-08	30-Jun-08	205184.40	="2006/3933"	="DSM Geodata"	18-Feb-08 03:58 PM	

+="CN62551"	"QC Services of remastered data - CMC# G0865"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	25-Jan-08	30-Jun-08	115500.00	=""	="GeoCom Services Australia Pty  Ltd"	18-Feb-08 03:58 PM	

+="CN62571"	"Procurement of:  FILTER,FLUID;  FILTER,FLUID;  FILTER,FLUID"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	09-May-08	141915.02	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62577"	"Procurement of:  HEATER,FLUID,INDUSTRIAL;  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	13-May-08	173781.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62585"	"Procurement of:  TURBOSUPERCHARGER,ENGINE,NON-AIRCRAFT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	20-Apr-08	102358.73	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62589"	"Procurement of:  INTERFACE UNIT,COMMUNICATION EQUIPMENT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	29-Aug-08	97320.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62595"	"Procurement of:  PUMP,RECIPROCATING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	16-Jul-08	103230.00	=""	="HASKEL AUSTRALASIA Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62603"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	09-May-08	93834.76	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:14 PM	

+="CN62623"	"Procurement of:  JACKET,WATER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	20-May-08	102436.12	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62625"	"Procurement of:  CYLINDER SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	13-Mar-08	120249.00	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62630"	"Procurement of:  SWITCH,ANTENNA UNIT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	11-Jan-08	11-May-08	108672.70	=""	="RAYTHEON AUSTRALIA Pty Ltd"	18-Feb-08 05:17 PM 

--- /dev/null
+++ b/admin/partialdata/14May2008to16May2008valto.xls
@@ -1,1 +1,889 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN83733"	"SEALING COMPOUND"	="Defence Materiel Organisation"	14-May-08	="Adhesives and sealants"	14-May-08	27-Jun-08	11355.65	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	14-May-08 07:41 AM	

+="CN83734"	"Supply of cover, fitted, vehicle comouflaged, NSN 2540-66-128-6222, PN HYG4470, QTY 15."	="Defence Materiel Organisation"	14-May-08	="War vehicles"	29-Apr-08	13-May-08	13890.20	=""	="LAND ROVER AUSTRALIA"	14-May-08 08:09 AM	

+="CN83735"	"Security vetting services"	="Office of Parliamentary Counsel"	14-May-08	="Government departments services"	20-Jun-06	30-Jun-08	27000.00	=""	="Attorney-General's Department"	14-May-08 08:40 AM	

+="CN83736-A3"	"Provision of Information Technology Business Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	11-Feb-08	30-Jun-09	287375.00	=""	="Greythorn Pty Ltd"	14-May-08 09:08 AM	

+="CN83740-A1"	"External legal advice"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	01-Dec-07	31-Jan-08	100000.00	=""	="Johnson Winter Slattery"	14-May-08 09:17 AM	

+="CN83741-A1"	"Secondment contract - Extension"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	26-Mar-08	09-May-08	12397.00	=""	="Blake Dawson"	14-May-08 09:21 AM	

+="CN83739-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	03-Mar-08	30-Jun-09	260398.00	=""	="Greythorn Pty Ltd"	14-May-08 09:25 AM	

+="CN83742-A4"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	26-Sep-07	14-Nov-08	214775.00	=""	="Greythorn Pty Ltd"	14-May-08 09:29 AM	

+="CN83743"	"Legal services - counsel"	="Australian Securities and Investments Commission"	14-May-08	="Legal services"	09-May-08	30-Jun-08	10000.00	=""	="Gageler, Stephen"	14-May-08 09:30 AM	

+="CN83744"	"funiture"	="Royal Australian Mint"	14-May-08	="Furniture and Furnishings"	07-Apr-08	07-Apr-08	15832.30	=""	="ADVANCE METAL PRODUCTS PTY LIMITED"	14-May-08 09:30 AM	

+="CN83745-A4"	"Provision of Information Technology Business Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	12-Feb-08	10-Oct-08	128143.00	=""	="Greythorn Pty Ltd"	14-May-08 09:35 AM	

+="CN83746"	"packaging"	="Royal Australian Mint"	14-May-08	="Carded packaging"	07-Apr-08	21-Apr-08	10956.00	=""	="RODENPRINT P/ L"	14-May-08 09:36 AM	

+="CN83748"	"refining recovery charges"	="Royal Australian Mint"	14-May-08	="Refining metal services"	08-Apr-08	08-Apr-08	17844.29	=""	="AGR MATTHEY"	14-May-08 09:47 AM	

+="CN83749"	" Business Continuity Planning Projects "	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Jun-08	27693.00	=""	="WALTERTURNBULL PTY LTD"	14-May-08 10:02 AM	

+="CN83750"	"Delivery of EU Training Course"	="Department of Foreign Affairs and Trade"	14-May-08	="Education and Training Services"	11-Oct-07	30-Jun-08	20459.09	=""	="UMEE LTD"	14-May-08 10:05 AM	

+="CN83751"	"IT equipment leasing"	="Royal Australian Mint"	14-May-08	="Components for information technology or broadcasting or telecommunications"	08-Apr-08	08-Apr-08	18369.19	=""	="EQUIGROUP PTY LTD"	14-May-08 10:09 AM	

+="CN83752"	"Corporate Medical Access Program"	="Department of Foreign Affairs and Trade"	14-May-08	="Medical Equipment and Accessories and Supplies"	01-Jan-07	31-Dec-07	67251.35	=""	="INTERNATIONAL SOS"	14-May-08 10:11 AM	

+="CN83753"	"Contractor Services - APS 6"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	14-Apr-08	30-Jun-08	28900.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83754"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	28-Apr-08	25-Jul-08	26795.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83755"	"Temp staffing - Michael Chertok"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	12-May-08	27-Jun-08	26334.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:17 AM	

+="CN83756"	"Change of Company Code"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Travel facilitation"	07-May-08	07-Jun-08	31421.50	="TRS08/113"	="HOGG ROBINSON AUSTRALIA PTY LTD"	14-May-08 10:18 AM	

+="CN83758"	"Refresher and Recency research project"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Information services"	21-Apr-08	25-Jun-08	49998.99	="TRS08/048"	="Rowland Pty Ltd"	14-May-08 10:18 AM	

+="CN83759"	"Contractor services - Stephen Sedgwick"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	18-Mar-08	27-Jun-08	40505.00	="TRS06/017"	="Collective Resources IT Recruitment"	14-May-08 10:18 AM	

+="CN83761"	"Records and File Management"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Business administration services"	10-Apr-08	09-Apr-11	2732400.00	="TRS07/390"	="Outsource Australia Pty Ltd"	14-May-08 10:18 AM	

+="CN83762"	"Catering for the 8th Transport Colloquium Dinner at National Museum Wednesday 18 June 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	23-Apr-08	30-Jun-08	16449.99	=""	="PHC Operations P/L"	14-May-08 10:19 AM	

+="CN83763"	"Valuation on three historic aircrafts Valuation on Department's assets"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Accounting and auditing"	10-Feb-08	30-Apr-08	32000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	14-May-08 10:19 AM	

+="CN83764"	"Expert Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Security and personal safety"	02-May-08	30-Jun-08	49500.00	="TRS08/111"	="Intelligent Risks Pty Ltd"	14-May-08 10:19 AM	

+="CN83765"	"Use of marine salvage ROV"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Marine transport"	05-May-08	30-May-08	48730.00	="TRS08/075"	="Land & Marine Consultants Pty Ltd"	14-May-08 10:19 AM	

+="CN83757-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-09	207625.00	=""	="Ross Human Directions Limited"	14-May-08 10:20 AM	

+="CN83766"	"Vulnerability assessments"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	17-Jan-08	30-Jun-09	536649.99	=""	="T4-Protective Security"	14-May-08 10:20 AM	

+="CN83768"	"Social Research Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Statistics"	05-May-08	23-Jun-08	119080.01	=""	="COLMAR BRUNTON PTY LTD"	14-May-08 10:20 AM	

+="CN83769"	"Passenger Opinion Research"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Graphic design"	07-May-08	30-Jun-08	99514.80	="TRS06/036"	="COLMAR BRUNTON PTY LTD"	14-May-08 10:21 AM	

+="CN83770"	"Helicopter charter"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Passenger transport"	05-May-08	07-May-08	25000.00	=""	="HELICOPTERS (AUSTRALIA) PTY LTD"	14-May-08 10:21 AM	

+="CN83771"	"Consultancy for special subject matter"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Management advisory services"	12-May-08	30-Jun-08	17600.00	=""	="ANU ENTERPRISE PTY LTD"	14-May-08 10:21 AM	

+="CN83767-A2"	" Provision of Cleaning Services at the Dee Why premises of CRS Australia. "	="CRS Australia"	14-May-08	="General building and office cleaning and maintenance services"	07-May-07	06-May-10	19675.89	=""	="Pharo Cleaning Services Pty Ltd"	14-May-08 10:21 AM	

+="CN83772"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	28-Apr-08	06-Jun-08	23990.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	14-May-08 10:21 AM	

+="CN83773"	"Personal Efficiency Training for EL 2s"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Specialised educational services"	13-May-08	24-Jun-08	14520.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	14-May-08 10:21 AM	

+="CN83777"	"Recruitment Services"	="Department of Infrastructure Transport Regional Development and Local Government"	14-May-08	="Community and social services"	21-Apr-08	30-Jun-08	39600.00	="TRS05/251"	="Allstaff Australia P/L"	14-May-08 10:22 AM	

+="CN83776"	" Divisional Structure Review "	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	04-Apr-08	27500.00	=""	="GROSVENOR MANAGEMENT CONSULTING PTY LTD"	14-May-08 10:23 AM	

+="CN83778"	"Procurement Support Services"	="Australian Federal Police"	14-May-08	="Professional procurement services"	14-May-08	15-Jun-08	27456.00	="22-2005"	="Grosvenor Management Consulting"	14-May-08 10:26 AM	

+="CN83780"	"mechanical training"	="Royal Australian Mint"	14-May-08	="Work ethics or attitude training instructional materials"	09-Apr-08	09-Apr-08	50755.85	=""	="SCHULER PRESSEN GMBH"	14-May-08 10:31 AM	

+="CN83779"	"Provision of Information Technology Project Management Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Oct-07	69878.00	=""	="Paxus Australia Pty Limited"	14-May-08 10:38 AM	

+="CN83782"	"Motor vehicles lease May 2008"	="Department of Parliamentary Services"	14-May-08	="Motor vehicles"	01-May-08	31-May-08	21228.14	=""	="LeasePlan"	14-May-08 10:39 AM	

+="CN83783"	"Provision of  telephone calls"	="Department of Parliamentary Services"	14-May-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	30-Jun-08	39559.73	=""	="Telstra Corporation Ltd"	14-May-08 10:39 AM	

+="CN83784"	"Ad hoc support services (DPS08057)"	="Department of Parliamentary Services"	14-May-08	="Information Technology Broadcasting and Telecommunications"	07-May-08	24-Feb-09	15255.00	=""	="Oakton Services Pty Ltd"	14-May-08 10:40 AM	

+="CN83785"	"Maintenance for security bollards"	="Department of Parliamentary Services"	14-May-08	="Building and Construction and Maintenance Services"	09-May-08	30-Apr-11	181880.00	="DPS07051"	="Oztime Technologies"	14-May-08 10:40 AM	

+="CN83786"	"Supply of broadcasting tapes"	="Department of Parliamentary Services"	14-May-08	="Blank video tapes"	06-May-08	30-May-08	43978.00	=""	="Sony Australia Ltd"	14-May-08 10:40 AM	

+="CN83787"	"Supply of Art Works"	="Department of Parliamentary Services"	14-May-08	="Visual art services"	06-May-08	30-May-08	10240.01	=""	="Helen Maxwell Gallery"	14-May-08 10:41 AM	

+="CN83788"	"Temporary HVAC staff hire"	="Department of Parliamentary Services"	14-May-08	="Temporary technician staffing needs"	06-May-08	30-May-08	27170.00	=""	="Honeywell Limited"	14-May-08 10:41 AM	

+="CN83789"	"Provision of Project Mangement Training Services Contract ( DPS07049  )"	="Department of Parliamentary Services"	14-May-08	="Education and Training Services"	08-May-08	06-Jun-08	16500.00	=""	="Project Minds Pty Limited"	14-May-08 10:41 AM	

+="CN83790"	"Supply of Server Equipment Contract ( DPS5054)"	="Department of Parliamentary Services"	14-May-08	="Computer servers"	09-May-08	06-Jun-08	27736.28	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 10:41 AM	

+="CN83791"	"Provision of IT Licence (Contract DPL03004)"	="Department of Parliamentary Services"	14-May-08	="Library software"	13-May-08	31-Mar-09	77000.00	=""	="Visionbytes Pty Ltd"	14-May-08 10:41 AM	

+="CN83792"	"Provision of Project Management Training Services"	="Department of Parliamentary Services"	14-May-08	="Education and Training Services"	13-May-08	30-Jun-08	10205.80	=""	="Tanner James Management"	14-May-08 10:41 AM	

+="CN83794"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	09-Apr-08	09-Apr-08	11705.10	=""	="DAVIES FERGUSON PTY LTD"	14-May-08 10:48 AM	

+="CN83793-A1"	"Printing of NAT4446 - ATO Letterhead. Qty: 16M"	="Australian Taxation Office"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-May-08	20-Jun-08	253858.00	=""	="Craft Printing"	14-May-08 10:49 AM	

+="CN83795-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	24-Oct-08	207625.00	=""	="Ross Human Directions Limited"	14-May-08 10:51 AM	

+="CN83796-A1"	"Supply of Qty: 4, Fixed Standard Capcitances."	="Defence Materiel Organisation"	14-May-08	="Electronic manufacturing machinery and equipment and accessories"	12-May-08	31-Dec-08	112450.54	=""	="Aero & Military Products"	14-May-08 10:51 AM	

+="CN83797"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	11-Apr-08	25-Jul-08	68992.00	=""	="NEXUS PRINT SOLUTIONS"	14-May-08 10:58 AM	

+="CN83798"	"Bucket Scoop Type Loader 2.6m wdd x 1.4m dx Hardened Steel"	="Defence Materiel Organisation"	14-May-08	="Vehicle bodies and trailers"	14-May-08	21-Jun-08	38610.00	=""	="Jaws Buckets & Attachments P/L"	14-May-08 11:05 AM	

+="CN83799"	"recruitment fees"	="Royal Australian Mint"	14-May-08	="Recruitment services"	14-Apr-08	14-Apr-08	11600.34	=""	="HAYS PERSONNEL SERVICES P/L"	14-May-08 11:10 AM	

+="CN83800-A5"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	20-Mar-09	30-Jun-09	210760.00	=""	="Ross Human Directions Limited"	14-May-08 11:10 AM	

+="CN83801"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	78045.00	=""	="Ross Human Directions Limited"	14-May-08 11:14 AM	

+="CN83802"	"placement fee"	="Royal Australian Mint"	14-May-08	="Recruitment services"	16-Apr-08	16-Apr-08	10469.16	=""	="MANPOWER"	14-May-08 11:19 AM	

+="CN83803-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	14-May-08 11:19 AM	

+="CN83804"	"MDS Proof of Concept"	="Australian Taxation Office"	14-May-08	="Software"	19-May-08	30-Jun-08	99484.00	=""	="Teradata Pty Ltd"	14-May-08 11:22 AM	

+="CN83805"	"computer software licence"	="Royal Australian Mint"	14-May-08	="Software"	16-Apr-08	16-Apr-08	36920.35	=""	="ZALLCOM PTY LIMITED"	14-May-08 11:28 AM	

+="CN83807-A4"	"Provision of Information Technology Software Programming Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology software developers"	01-Mar-08	30-Jun-09	327654.00	=""	="Ross Human Directions Limited"	14-May-08 11:31 AM	

+="CN83808"	" computer software licence "	="Royal Australian Mint"	14-May-08	="Software"	16-Apr-08	16-Apr-08	18082.02	=""	="ZALLCOM PTY LIMITED"	14-May-08 11:34 AM	

+="CN83810-A5"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	06-Feb-09	120540.00	=""	="Ross Human Directions Limited"	14-May-08 11:35 AM	

+="CN83811"	" packaging "	="Royal Australian Mint"	14-May-08	="Packaging materials"	16-Apr-08	17-Apr-08	34760.00	=""	="MEGARA (AUST) P/L"	14-May-08 11:48 AM	

+="CN83813"	"mig wire 1.2mm aluminium"	="Department of Defence"	14-May-08	="Miscellaneous hardware"	14-May-08	14-Jun-08	19723.00	=""	="SOUTHERN CROSS INDUSTRIAL"	14-May-08 12:04 PM	

+="CN83815"	"Fitness for Duty Medical Assessment"	="Centrelink"	14-May-08	="Healthcare Services"	10-Apr-08	30-Jun-08	11000.00	=""	="Unified Healthcare Group"	14-May-08 12:25 PM	

+="CN83816"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	30-Apr-08	30-Jun-08	349999.99	=""	="Hardy Aviation (NT) Pty Ltd"	14-May-08 12:26 PM	

+="CN83817"	"Transport Operations"	="Centrelink"	14-May-08	="Transport operations"	29-Apr-08	30-Jun-08	28999.99	=""	="Murin Travel and Freight Services"	14-May-08 12:26 PM	

+="CN83818"	"Business Administration Services"	="Centrelink"	14-May-08	="Business administration services"	08-May-08	30-Jun-08	10000.00	=""	="Axis Searching and Settlements"	14-May-08 12:26 PM	

+="CN83819-A1"	" Advertising "	="Centrelink"	14-May-08	="Advertising"	09-Nov-07	30-Jun-08	11000.00	=""	="HMA Blaze Pty Ltd"	14-May-08 12:26 PM	

+="CN83820"	"External training"	="Centrelink"	14-May-08	="Vocational training"	07-Nov-07	30-Jun-08	13750.00	=""	="Advanced Personnel Management"	14-May-08 12:26 PM	

+="CN83821"	"Utilities"	="Centrelink"	14-May-08	="Utilities"	06-Nov-07	30-Jun-08	49999.99	=""	="Power and Water Authority"	14-May-08 12:27 PM	

+="CN83823"	"Hotel Lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	11-Apr-08	30-Jun-08	10000.00	=""	="Milikapiti Sports and Social Club"	14-May-08 12:27 PM	

+="CN83824"	"Project Management Services"	="Centrelink"	14-May-08	="Professional engineering services"	18-Apr-08	30-Jun-08	18964.00	=""	="James Millar Architects"	14-May-08 12:27 PM	

+="CN83825"	"Advisory Services"	="Centrelink"	14-May-08	="Management advisory services"	10-Apr-08	30-Jun-08	20924.20	=""	="Ernst and Young"	14-May-08 12:27 PM	

+="CN83826"	"Customer Service Centre  Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Dec-07	19-Dec-08	24915.00	=""	="HBO + EMTB Interiors (Victoria) Pty Ltd"	14-May-08 12:27 PM	

+="CN83827"	"Hotel, lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	24-Sep-07	30-Jun-08	10010.00	=""	="Canberra Highland Society and Burns Club"	14-May-08 12:28 PM	

+="CN83828"	"Office supplies"	="Centrelink"	14-May-08	="Office supplies"	04-Sep-07	30-Jun-08	11909.70	=""	="Corporate Express Australia Limited"	14-May-08 12:28 PM	

+="CN83829"	"Storage of supplies"	="Centrelink"	14-May-08	="Medical Equipment and Accessories and Supplies"	14-Aug-07	30-Jun-08	27500.00	=""	="Gazele Pty Ltd"	14-May-08 12:28 PM	

+="CN83830-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	03-Apr-08	30-Jun-08	115000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	14-May-08 12:28 PM	

+="CN83831"	"Market Research Services"	="Centrelink"	14-May-08	="Statistics"	02-Apr-08	30-Jun-08	99000.00	=""	="Market Solutions Pty Ltd"	14-May-08 12:28 PM	

+="CN83832"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	02-Apr-08	08-Jun-08	16885.00	=""	="Diverse Data Communications (ACT)"	14-May-08 12:29 PM	

+="CN83833"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	31-Mar-09	144127.83	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:29 PM	

+="CN83834"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	30-Sep-08	365215.43	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:29 PM	

+="CN83835"	"Computing"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	01-Apr-08	30-Jun-08	11499.99	=""	="Dimension Data Learning Solutions"	14-May-08 12:29 PM	

+="CN83836"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	29-Apr-08	30-Jun-08	59000.00	=""	="Air Frontier Pty Ltd"	14-May-08 12:29 PM	

+="CN83837"	"Secure Delivery Services"	="Centrelink"	14-May-08	="Transport operations"	07-Mar-08	30-Jun-08	20000.00	=""	="Security Specialists Northern Territory"	14-May-08 12:30 PM	

+="CN83838"	"Front Office Design Services"	="Centrelink"	14-May-08	="Graphic design"	02-May-08	30-Jun-08	10000.00	=""	="Retail Environment Design"	14-May-08 12:30 PM	

+="CN83839"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	18-Apr-08	30-Jun-08	35000.00	=""	="Galiwinku Community Inc"	14-May-08 12:30 PM	

+="CN83840"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	28-Apr-08	30-Jun-08	30000.01	=""	="Chartair Pty Ltd"	14-May-08 12:30 PM	

+="CN83842"	"Courier Services"	="Centrelink"	14-May-08	="Mail and cargo transport"	21-Apr-08	30-Apr-08	70599.08	=""	="Courier Australia"	14-May-08 12:31 PM	

+="CN83843"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	201391.00	=""	="Parap Village Apartments"	14-May-08 12:31 PM	

+="CN83844"	"Hotel, lodging and other meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	13-Mar-08	30-Jun-08	100000.00	=""	="Dept of Local Govt Housing and Sport"	14-May-08 12:31 PM	

+="CN83845"	"Property Fitout, Frankston VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	19-May-08	14630.00	=""	="James Millar Architects"	14-May-08 12:31 PM	

+="CN83846"	"Telecommunication services"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Aug-07	30-Jun-08	10019.42	=""	="Telstra"	14-May-08 12:32 PM	

+="CN83847-A1"	"Advertising"	="Centrelink"	14-May-08	="Printed media"	15-Nov-07	30-Jun-08	13200.00	=""	="HMA Blaze Pty Ltd"	14-May-08 12:32 PM	

+="CN83848"	"Worksite Assessments"	="Centrelink"	14-May-08	="Human resources services"	11-Apr-08	30-Jun-08	16500.00	=""	="MLCOA"	14-May-08 12:32 PM	

+="CN83849"	"Surveillance services"	="Centrelink"	14-May-08	="Security surveillance and detection"	01-May-08	30-Jun-08	15000.00	=""	="Integracom Management Group Pty Ltd"	14-May-08 12:32 PM	

+="CN83850"	"Early intervention services"	="Centrelink"	14-May-08	="Human resources services"	07-May-08	30-Jun-08	11000.00	=""	="CRS Australia"	14-May-08 12:32 PM	

+="CN83851"	"Repairs and maintenance"	="Centrelink"	14-May-08	="Telecommunications media services"	29-Apr-08	30-Jun-08	22000.00	=""	="Optus Billing Services Pty Ltd"	14-May-08 12:32 PM	

+="CN83852"	"Utilities"	="Centrelink"	14-May-08	="Utilities"	31-Oct-07	30-Jun-08	38500.00	=""	="AGL Energy Sales and Marketing Ltd"	14-May-08 12:32 PM	

+="CN83853"	"Optical surveillance services"	="Centrelink"	14-May-08	="Security surveillance and detection"	30-Apr-08	30-Jun-08	60000.00	=""	="M and A Investigations"	14-May-08 12:33 PM	

+="CN83854-A1"	"Architectural Services"	="Centrelink"	14-May-08	="Management advisory services"	30-Jun-08	31-Dec-08	182220.00	=""	="Integrated Space Ltd"	14-May-08 12:33 PM	

+="CN83855-A1"	"Advertising"	="Centrelink"	14-May-08	="Printed media"	14-Apr-08	30-Jun-08	55190.72	=""	="HMA Blaze Pty Ltd"	14-May-08 12:33 PM	

+="CN83856"	"Cabcharges"	="Centrelink"	14-May-08	="Passenger transport"	27-Nov-07	30-Jun-08	32460.00	=""	="Cabcharge Australia Pty Ltd"	14-May-08 12:33 PM	

+="CN83857"	"Early Intervention and Rehab Program"	="Centrelink"	14-May-08	="Human resources services"	08-Feb-08	30-Jun-08	22000.00	=""	="CRS Australia"	14-May-08 12:33 PM	

+="CN83858"	"Early Intervention and Rehab Services"	="Centrelink"	14-May-08	="Human resources services"	10-Jan-08	30-Jun-08	30800.00	=""	="WorkFocus Australia"	14-May-08 12:33 PM	

+="CN83859"	"Early Intervention and Rehab Services"	="Centrelink"	14-May-08	="Human resources services"	07-Feb-08	30-Jun-08	18700.00	=""	="RTW Management"	14-May-08 12:34 PM	

+="CN83860"	"Camera Operator"	="Centrelink"	14-May-08	="Telecommunications media services"	10-Sep-07	30-Jun-08	14190.00	=""	="Rotating Head Productions"	14-May-08 12:34 PM	

+="CN83861"	"Courier Services"	="Centrelink"	14-May-08	="Transport operations"	07-Mar-08	30-Jun-08	70026.84	=""	="Toll Priority"	14-May-08 12:34 PM	

+="CN83862"	"Fitout Management for Port Augusta, SA, Refurbishment"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Sep-07	01-Aug-08	14907.88	=""	="Greenway Architects (SA) Pty Ltd"	14-May-08 12:34 PM	

+="CN83863-A1"	"Intrastate courier services, Tasmania"	="Centrelink"	14-May-08	="Mail and cargo transport"	02-Apr-08	30-Jun-08	35200.00	=""	="Australian Freight Handling"	14-May-08 12:34 PM	

+="CN83864"	"Removal Services"	="Centrelink"	14-May-08	="Material packing and handling"	04-Jan-08	30-Jun-08	11220.00	=""	="Two-Way Taxi Trucks"	14-May-08 12:34 PM	

+="CN83865"	"Fitout Management"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Nov-07	26-Dec-08	23210.00	=""	="HBO + EMTB Interiors (Victoria) Pty Ltd"	14-May-08 12:34 PM	

+="CN83866"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	07-May-08	30-Jun-08	11000.00	=""	="Insite Injury Management Group"	14-May-08 12:35 PM	

+="CN83867"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	07-May-08	30-Jun-08	10000.00	=""	="OTR Consultants"	14-May-08 12:35 PM	

+="CN83868"	"Staff Medicals"	="Centrelink"	14-May-08	="Human resources services"	09-Apr-08	30-Jun-08	11000.00	=""	="HDA Medical Group"	14-May-08 12:35 PM	

+="CN83869"	"Optical Surveillance"	="Centrelink"	14-May-08	="Security surveillance and detection"	06-May-08	30-Jun-08	70000.00	=""	="Maurice J Kerrigan and Assoc Pty Ltd"	14-May-08 12:35 PM	

+="CN83870"	"Staff medical assessments"	="Centrelink"	14-May-08	="Healthcare Services"	04-Mar-08	30-Jun-08	10450.00	=""	="CRS Australia"	14-May-08 12:35 PM	

+="CN83871"	"Schematic design and construction documentation"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Jan-08	28-Jun-08	18286.13	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 12:35 PM	

+="CN83872"	"Fitout management"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-08	11767.25	=""	="Greenway Architects (SA) Pty Ltd"	14-May-08 12:35 PM	

+="CN83873"	"Seminars"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	12-Jul-07	30-Jun-08	16134.99	=""	="Ainslie Function Centre"	14-May-08 12:36 PM	

+="CN83874"	"Health care equipment"	="Centrelink"	14-May-08	="Human resources services"	22-Apr-08	30-Jun-08	11000.00	=""	="MLCOA"	14-May-08 12:36 PM	

+="CN83875"	"Early intervention services"	="Centrelink"	14-May-08	="Human resources services"	21-Apr-08	30-Jun-08	11000.00	=""	="Konekt Australia Pty Ltd"	14-May-08 12:36 PM	

+="CN83876"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	03-Apr-08	27-Apr-08	20872.50	=""	="DESA Australia Pty Ltd"	14-May-08 12:36 PM	

+="CN83877-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	28-Apr-08	30-Jun-08	150000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	14-May-08 12:36 PM	

+="CN83878"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	24-Apr-08	30-Jun-08	10000.00	=""	="CRS Australia"	14-May-08 12:36 PM	

+="CN83879"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	30-Jun-08	125195.40	=""	="Nuance Communications Int. BVBA"	14-May-08 12:37 PM	

+="CN83880"	"Computer Services"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	30-Jun-08	17600.00	=""	="Microsoft Enterprise Services"	14-May-08 12:37 PM	

+="CN83881"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	11-May-08	11220.00	=""	="Commstar Communications"	14-May-08 12:37 PM	

+="CN83882"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	25-May-08	88642.41	=""	="Stowe Australia Pty Ltd"	14-May-08 12:37 PM	

+="CN83883"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	24-Apr-08	25-May-08	51073.00	=""	="Integrated Cabling Solutions Pty Ltd"	14-May-08 12:37 PM	

+="CN83887"	"External training"	="Centrelink"	14-May-08	="Vocational training"	23-Apr-08	30-Jun-08	10126.88	=""	="Australian Public Servce Commission"	14-May-08 12:37 PM	

+="CN83888"	"Healthcare Services"	="Centrelink"	14-May-08	="Healthcare Services"	23-Apr-08	30-Jun-08	11000.00	=""	="Actualise Consulting"	14-May-08 12:39 PM	

+="CN83889"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	22-Apr-08	30-Apr-08	13640.00	=""	="Conflict Resolution Training and Consultancy Pty Ltd"	14-May-08 12:39 PM	

+="CN83890"	"Office fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Apr-08	30-Jun-08	140184.00	=""	="Fyfe Interiors and Refurbishment"	14-May-08 12:39 PM	

+="CN83891"	"Office fitout"	="Centrelink"	14-May-08	="General building construction"	22-Apr-08	30-Jul-08	329719.50	=""	="Isis Projects Pty Ltd"	14-May-08 12:39 PM	

+="CN83892-A1"	"Building works at Maryborough, QLD"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Apr-08	30-Jun-08	281941.00	=""	="Premis Solutions Pty Ltd"	14-May-08 12:39 PM	

+="CN83893"	"Electrical Services"	="Centrelink"	14-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	21-Apr-08	31-Dec-08	22000.00	=""	="Sparks Electrical Services"	14-May-08 12:39 PM	

+="CN83894"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:39 PM	

+="CN83895"	"Removal Services"	="Centrelink"	14-May-08	="Storage"	30-Apr-08	26-May-08	20878.50	=""	="Grace Removals"	14-May-08 12:39 PM	

+="CN83896"	"Courier service"	="Centrelink"	14-May-08	="Mail and cargo transport"	30-Apr-08	30-Jun-08	73500.01	=""	="Courier Australia"	14-May-08 12:40 PM	

+="CN83897"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	18-May-08	12320.00	=""	="Commstar Communications"	14-May-08 12:40 PM	

+="CN83898"	"Design and Documentation Services"	="Centrelink"	14-May-08	="Professional engineering services"	30-Apr-08	30-Jun-08	14250.00	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 12:40 PM	

+="CN83899-A1"	"Customer Service Centre Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	30-Apr-09	340809.70	=""	="Isis Projects Pty Ltd"	14-May-08 12:40 PM	

+="CN83900"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	15-May-08	17998.20	=""	="DESA Australia Pty Ltd"	14-May-08 12:40 PM	

+="CN83901"	"Printer Media"	="Centrelink"	14-May-08	="Printed media"	30-Apr-08	30-Jun-08	12167.90	=""	="Child Support Agency"	14-May-08 12:41 PM	

+="CN83902"	"Security Guard, Victoria Park,WA"	="Centrelink"	14-May-08	="Security and personal safety"	29-Apr-08	30-Jun-08	10771.20	=""	="Wilson Security"	14-May-08 12:41 PM	

+="CN83903"	"Engineering services, Taree, NSW"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Apr-08	30-Apr-08	13021.74	=""	="Interior Dynamics Australia Pty Ltd"	14-May-08 12:41 PM	

+="CN83904"	"Guard Services at Fremantle, WA"	="Centrelink"	14-May-08	="Security and personal safety"	29-Apr-08	30-Jun-08	10771.20	=""	="Wilson Security"	14-May-08 12:41 PM	

+="CN83905"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	29-Apr-08	30-Jun-08	12100.00	=""	="Martin Lack and Associates"	14-May-08 12:41 PM	

+="CN83906"	"Customer Service Centre Refurbishment"	="Centrelink"	14-May-08	="General building construction"	28-Apr-08	21-Apr-09	245809.30	=""	="Isis Projects Pty Ltd"	14-May-08 12:41 PM	

+="CN83907"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	28-Apr-08	28-Apr-08	42920.00	=""	="Novell Pty Ltd"	14-May-08 12:42 PM	

+="CN83908"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	28-Apr-08	01-Jun-08	59900.50	=""	="Diverse Data Communications (ACT)"	14-May-08 12:42 PM	

+="CN83886-A3"	"Provision of Job Skills Training programs"	="CRS Australia"	14-May-08	="Job search skills instructional materials"	13-May-08	21-Oct-09	10092.50	=""	="GFM Training and Development"	14-May-08 12:42 PM	

+="CN83909-A1"	" Accommodation broker service "	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	28-Apr-08	30-Jun-08	64549.00	=""	="Hotel Network Garrs"	14-May-08 12:42 PM	

+="CN83910"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	40000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:42 PM	

+="CN83911"	"Hotel, lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	10-Apr-08	30-Jun-08	35000.01	=""	="Deewin Kurim Aboriginal Corporation"	14-May-08 12:43 PM	

+="CN83912"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	10-Apr-08	30-Jun-08	13000.00	=""	="Excom Education Pty Ltd"	14-May-08 12:43 PM	

+="CN83913"	"Security guard service at Mt Druitt, NSW"	="Centrelink"	14-May-08	="Public safety and control"	10-Apr-08	30-Jun-08	20900.00	=""	="Statewide Management Services"	14-May-08 12:43 PM	

+="CN83914"	"Medical Services"	="Centrelink"	14-May-08	="Healthcare Services"	09-Apr-08	30-Jun-09	16500.00	=""	="Health for Industry"	14-May-08 12:43 PM	

+="CN83915"	"Audit Services"	="Centrelink"	14-May-08	="Accounting and auditing"	09-Apr-08	30-Jun-08	40095.00	=""	="Walter turnbull"	14-May-08 12:43 PM	

+="CN83916-A1"	"Recruitment Services"	="Centrelink"	14-May-08	="Human resources services"	09-Apr-08	30-Jun-08	55789.47	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	14-May-08 12:44 PM	

+="CN83917"	"Hotel, lodging and meetinig facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	09-Apr-08	30-Jun-08	50000.01	=""	="Outback Caravan Park"	14-May-08 12:44 PM	

+="CN83918"	"System Testing Centre Refurbishment"	="Centrelink"	14-May-08	="Building construction and support and maintenance and repair services"	08-Apr-08	24-Apr-08	214133.70	=""	="Isis Projects Pty Ltd"	14-May-08 12:44 PM	

+="CN83919"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	08-Apr-08	27-Apr-08	15950.00	=""	="DESA Australia Pty Ltd"	14-May-08 12:44 PM	

+="CN83920"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	08-Apr-08	04-May-08	11557.70	=""	="DESA Australia Pty Ltd"	14-May-08 12:44 PM	

+="CN83921"	"Hotel, lodging and meeting faciities"	="Centrelink"	14-May-08	="Human resources services"	08-Apr-08	30-Jun-08	10000.00	=""	="Leadership Centre Catholic Missions"	14-May-08 12:45 PM	

+="CN83922"	"Freight between offices"	="Centrelink"	14-May-08	="Mail and cargo transport"	07-Apr-08	30-Jun-08	32210.75	=""	="Australian Air Express"	14-May-08 12:45 PM	

+="CN83923"	"Hotel lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	04-Apr-08	30-Jun-08	19250.00	=""	="Mantra on Little Bourke"	14-May-08 12:45 PM	

+="CN83924"	"Hotel lodging and meeting facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	04-Apr-08	30-Jun-08	19250.00	=""	="Mantra on Little Bourke"	14-May-08 12:45 PM	

+="CN83925"	"Flu Vaccination for Staff"	="Centrelink"	14-May-08	="Healthcare Services"	03-Apr-08	30-Jun-08	27500.00	=""	="Unified Healthcare Group"	14-May-08 12:45 PM	

+="CN83926"	"External training"	="Centrelink"	14-May-08	="Vocational training"	21-Apr-08	30-Jun-08	30000.00	=""	="Plan IT Test Management Solutions"	14-May-08 12:45 PM	

+="CN83927"	"Courier services"	="Centrelink"	14-May-08	="Mail and cargo transport"	21-Apr-08	30-Jun-08	99000.00	=""	="Toll Priority"	14-May-08 12:46 PM	

+="CN83928"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	18-Apr-08	11-May-08	13585.00	=""	="Heyday Group Pty Ltd"	14-May-08 12:46 PM	

+="CN83929"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	17-Apr-08	30-Jun-08	16810.00	=""	="SAI Global"	14-May-08 12:46 PM	

+="CN83930"	"Transport operations"	="Centrelink"	14-May-08	="Transport operations"	17-Apr-08	30-Jun-08	50000.01	=""	="Katherine Aviation Pty Ltd"	14-May-08 12:46 PM	

+="CN83931"	"Management Advisory Services"	="Centrelink"	14-May-08	="Management advisory services"	16-Apr-08	30-Jun-08	15000.00	=""	="Yellow Edge Pty Ltd"	14-May-08 12:47 PM	

+="CN83932"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	16-Apr-08	15-May-08	34000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:47 PM	

+="CN83933"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	16-Apr-08	26-May-08	19000.00	=""	="IBM Australia Pty Ltd"	14-May-08 12:47 PM	

+="CN83934"	"Removalist Services"	="Centrelink"	14-May-08	="Transportation components and systems"	15-Apr-08	30-Jun-08	14905.00	=""	="Toll Transitions"	14-May-08 12:47 PM	

+="CN83935"	"Fitout works"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	30-Jun-08	11000.00	=""	="KL Bartlett Pty Ltd"	14-May-08 12:48 PM	

+="CN83936"	"Mail services"	="Centrelink"	14-May-08	="Mail and cargo transport"	14-Apr-08	30-Jun-08	60499.98	=""	="TNT Australia Pty Limited"	14-May-08 12:48 PM	

+="CN83937"	"IT Cabling"	="Centrelink"	14-May-08	="Computer services"	14-Apr-08	05-May-08	29480.00	=""	="Heyday Group Pty Ltd"	14-May-08 12:48 PM	

+="CN83938"	"Blinds"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Apr-08	30-Apr-08	28281.00	=""	="Michael OHalloran Interiors"	14-May-08 12:48 PM	

+="CN83939"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	11-Apr-08	30-Jun-08	11566.50	=""	="Help Desk Associates Australasia Pty Ltd"	14-May-08 12:48 PM	

+="CN83940"	"Workstations and storage units"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	21-May-08	12783.10	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:48 PM	

+="CN83941"	"Workstations, Palm Beach, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	30-Dec-08	345815.58	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 12:48 PM	

+="CN83942"	"Paper Materials and Products"	="Centrelink"	14-May-08	="Paper Materials and Products"	07-Apr-08	30-Jun-08	14216.40	=""	="Bill and Sandra Piper Printing"	14-May-08 12:48 PM	

+="CN83943"	"Digital Interview recording system"	="Centrelink"	14-May-08	="Office supplies"	07-Apr-08	30-Apr-08	36080.00	=""	="Tape Products Research"	14-May-08 12:49 PM	

+="CN83944"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	07-Apr-08	02-May-08	59034.80	=""	="IBM Australia Pty Ltd"	14-May-08 12:49 PM	

+="CN83946"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	07-Apr-08	30-Jun-08	169120.00	=""	="Novell Pty Ltd"	14-May-08 12:49 PM	

+="CN83947"	"Installation of additional CCTV components"	="Centrelink"	14-May-08	="Security surveillance and detection"	04-Apr-08	30-Jun-08	12309.00	=""	="Chubb Electronic Security Pty Ltd"	14-May-08 12:49 PM	

+="CN83948"	"Installation of CCTV systems"	="Centrelink"	14-May-08	="Security surveillance and detection"	04-Apr-08	30-Jun-08	69907.20	=""	="Chubb Electronic Security Pty Ltd"	14-May-08 12:49 PM	

+="CN83949"	"Signage, Coffs Harbour, NSW"	="Centrelink"	14-May-08	="Signage and accessories"	04-Apr-08	30-Jun-08	17723.08	=""	="Signworld Sunshine Coast"	14-May-08 12:49 PM	

+="CN83950"	"Software Licences"	="Centrelink"	14-May-08	="Software"	04-Apr-08	04-Apr-08	14360.15	=""	="Kaz Group Pty Ltd"	14-May-08 12:50 PM	

+="CN83951"	"Audio/Visual Equipment and Supplies"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	04-Apr-08	30-Jun-08	18150.50	=""	="AV Central"	14-May-08 12:50 PM	

+="CN83945"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	14-May-07	30-Jun-08	164450.00	=""	="Ross Human Directions Limited"	14-May-08 12:50 PM	

+="CN83952"	"Signage"	="Centrelink"	14-May-08	="Signage and accessories"	03-Apr-08	30-May-08	11627.00	=""	="Tint Design Pty Ltd"	14-May-08 12:50 PM	

+="CN83953"	"External Training"	="Centrelink"	14-May-08	="Vocational training"	03-Apr-08	01-May-08	10000.00	=""	="K J Ross and Associates"	14-May-08 12:50 PM	

+="CN83954-A1"	"Computer Software"	="Centrelink"	14-May-08	="Software"	29-Apr-08	29-Aug-08	165000.00	=""	="Actividentity"	14-May-08 12:50 PM	

+="CN83955"	"Manage relocation of Noarlunga office, SA"	="Centrelink"	14-May-08	="Transport operations"	03-Apr-08	06-Apr-08	13660.90	=""	="Toll Transitions"	14-May-08 12:50 PM	

+="CN83956"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	11-Apr-08	30-Apr-09	151351.20	=""	="PAXUS Australia Pty Ltd"	14-May-08 12:50 PM	

+="CN83957"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	11-Apr-08	11-Apr-09	204204.00	=""	="Stratagem"	14-May-08 12:51 PM	

+="CN83958"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	10-Apr-08	30-Jun-08	34726.91	=""	="AV Central"	14-May-08 12:51 PM	

+="CN83959"	" Fitout Design - Devonport, TAS "	="Centrelink"	14-May-08	="Professional engineering services"	10-Apr-08	30-Jun-09	82269.99	=""	="James Millar Architects"	14-May-08 12:51 PM	

+="CN83960"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	10-Apr-08	30-Jun-08	162880.85	=""	="Interface Flor"	14-May-08 12:51 PM	

+="CN83961"	"Furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	708534.20	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:51 PM	

+="CN83962"	"Workstations and Storage Units"	="Centrelink"	14-May-08	="Signage and accessories"	09-Apr-08	16-May-08	11926.20	=""	="Schiavello (WA) Pty Ltd"	14-May-08 12:51 PM	

+="CN83963"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	28797.49	=""	="Interface Flor"	14-May-08 12:51 PM	

+="CN83964"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	09-Apr-08	30-Jun-08	66994.40	=""	="Future Floor Services"	14-May-08 12:52 PM	

+="CN83965"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	08-Apr-08	30-Jun-08	143147.22	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:52 PM	

+="CN83966-A1"	"Management advisory services"	="Centrelink"	14-May-08	="Management advisory services"	18-Feb-08	30-May-08	203500.00	=""	="IT Newcom Pty Ltd"	14-May-08 12:52 PM	

+="CN83967"	"Conference facilities"	="Centrelink"	14-May-08	="Hotels and lodging and meeting facilities"	08-Apr-08	09-Apr-08	11951.51	=""	="Country Comfort Greenway"	14-May-08 12:52 PM	

+="CN83968-A1"	"Audio Visual Equipment and Supplies"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Apr-08	01-Jul-08	116903.85	=""	="Electroboard Solutions Pty Ltd"	14-May-08 12:52 PM	

+="CN83969"	"Office Supplies"	="Centrelink"	14-May-08	="Office supplies"	08-Apr-08	30-Jun-08	36960.00	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:52 PM	

+="CN83970"	"Portable digital interview recording systems"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-Apr-08	19-May-08	60087.50	=""	="Tape Products Research"	14-May-08 12:52 PM	

+="CN83971"	"Tub Chairs, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	03-Apr-08	02-May-08	11055.00	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:53 PM	

+="CN83972"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	30-Jun-08	30462.37	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:53 PM	

+="CN83973-A1"	"Software"	="Centrelink"	14-May-08	="Software"	01-Apr-08	21-May-10	152889.00	=""	="Infront Systems Pty Ltd"	14-May-08 12:53 PM	

+="CN83974"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	11-Jul-08	421080.00	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 12:53 PM	

+="CN83975"	"Supply and lay corporate carpet tiles, Melton, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Apr-08	30-Jun-08	19692.04	=""	="Interface Flor"	14-May-08 12:53 PM	

+="CN83976"	"Office furniture, Werribee, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	08-May-08	30-Jun-08	18789.91	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:53 PM	

+="CN83977"	"External signs"	="Centrelink"	14-May-08	="Signage and accessories"	21-Apr-08	30-May-08	13860.00	=""	="Tint Design Pty Ltd"	14-May-08 12:53 PM	

+="CN83979"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	30-Jun-08	24255.00	="RFTS07/0129"	="Stratagem"	14-May-08 12:54 PM	

+="CN83980"	"Data cabling"	="Centrelink"	14-May-08	="Office supplies"	04-Feb-08	30-Jun-08	10868.00	=""	="Integrated Cabling Solutions Pty Ltd"	14-May-08 12:54 PM	

+="CN83981"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	07-May-08	30-Jun-08	35090.65	=""	="Kaz Group Pty Ltd"	14-May-08 12:54 PM	

+="CN83982"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	09-May-08	10-May-08	110510.40	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	14-May-08 12:54 PM	

+="CN83983"	"Accommodation, Berrimah, NT"	="Centrelink"	14-May-08	="Real estate services"	02-Oct-07	30-Jun-08	10924.74	=""	="Yilli Rreung Housing Aboriginal Group"	14-May-08 12:54 PM	

+="CN83984"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	26-Oct-06	26-Oct-08	97288.42	=""	="Compas Pty Ltd"	14-May-08 12:54 PM	

+="CN83985"	"Architectural services"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Sep-07	28-Jun-08	12829.30	=""	="Power Graham and Dempsey Pty Ltd"	14-May-08 12:55 PM	

+="CN83986"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	27-Oct-06	27-Oct-08	93693.60	=""	="Compas Pty Ltd"	14-May-08 12:55 PM	

+="CN83987"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	10-Apr-08	10-Jun-08	32432.40	=""	="PAXUS Australia Pty Ltd"	14-May-08 12:55 PM	

+="CN83988"	"Signage, Melton, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	26169.00	=""	="Tint Design Pty Ltd"	14-May-08 12:55 PM	

+="CN83989"	"Office fitout, Brisbane, QLD"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Apr-08	30-Jun-08	66396.00	=""	="Quadric Pty Ltd"	14-May-08 12:55 PM	

+="CN83990"	"Membership of Chief Finance Officer Board"	="Centrelink"	14-May-08	="Business administration services"	02-Apr-08	30-Jun-08	36555.91	=""	="Corporate Executive Board"	14-May-08 12:55 PM	

+="CN83991"	"Office furniture, Palm Beach, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	61130.30	=""	="Emtek Furniture"	14-May-08 12:56 PM	

+="CN83992"	"Staff chairs and tables, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	17319.50	=""	="Unifurn Commercial Furniture"	14-May-08 12:56 PM	

+="CN83993"	"Customer chairs for refit, Melton, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	02-Apr-08	30-Jun-08	14327.50	=""	="Solitaire Seating"	14-May-08 12:56 PM	

+="CN83994"	"TV Panels"	="Centrelink"	14-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Apr-08	15-May-08	32334.03	=""	="JB Hi-Fi Pty Ltd"	14-May-08 12:56 PM	

+="CN83995"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	01-Apr-08	01-Apr-08	277649.90	=""	="Novell Pty Ltd"	14-May-08 12:56 PM	

+="CN83996"	"Valuations"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Apr-08	11-Apr-08	11000.00	=""	="Australian Valuation Office"	14-May-08 12:56 PM	

+="CN83997"	"Workstations and Storage Units, Launceston, TAS"	="Centrelink"	14-May-08	="Office and desk accessories"	01-Apr-08	06-Jun-08	653000.15	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:56 PM	

+="CN83998"	"CCTV, Caboolture, QLD"	="Centrelink"	14-May-08	="Security surveillance and detection"	01-Apr-08	30-Jun-08	13402.40	=""	="Securcom Pty Ltd"	14-May-08 12:57 PM	

+="CN83999"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	28-Feb-11	18550.48	=""	="Infront Systems Pty Ltd"	14-May-08 12:57 PM	

+="CN84000"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	01-Apr-08	11-Jul-08	35090.00	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 12:57 PM	

+="CN84001"	"Computer cabling"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	14-Apr-08	30-Jun-08	14300.00	=""	="Department of Finance and Deregulation"	14-May-08 12:57 PM	

+="CN84002"	"Office Furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	02-Jun-08	15618.90	=""	="Bentley House Commercial Interiors"	14-May-08 12:57 PM	

+="CN84003"	"Office Fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	30-Jul-08	587475.11	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:57 PM	

+="CN84004"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	30-Jun-08	135094.30	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 12:58 PM	

+="CN84005"	"Fitout Furniture"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Apr-08	31-Aug-08	204048.59	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:58 PM	

+="CN84006-A3"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	30-Apr-08	01-Nov-10	532445.76	="RFTS07/0129"	="Ekonsulting Pty Ltd"	14-May-08 12:58 PM	

+="CN84007"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	30-Apr-08	30-Apr-08	48796.00	=""	="Hallam Manufacturing Pty Ltd"	14-May-08 12:58 PM	

+="CN84008"	"Visitor seating"	="Centrelink"	14-May-08	="Furniture and Furnishings"	30-Apr-08	16-Jun-08	34490.50	=""	="Flair Office Furniture"	14-May-08 12:58 PM	

+="CN84009"	"Refills for Psychologists test kits"	="Centrelink"	14-May-08	="Paper Materials and Products"	30-Apr-08	30-Jun-08	11052.60	=""	="Harcourt Assessment"	14-May-08 12:58 PM	

+="CN84010"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	29-Apr-08	29-Apr-08	35336.12	=""	="Dimension Data Australia Pty Ltd"	14-May-08 12:59 PM	

+="CN84012"	"Furniture, Mornington, VIC"	="Centrelink"	14-May-08	="Furniture and Furnishings"	29-Apr-08	29-May-08	32982.40	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 12:59 PM	

+="CN84013"	"Signage, Palm Beach, QLD"	="Centrelink"	14-May-08	="Signage and accessories"	29-Apr-08	01-Jun-08	16578.11	=""	="Signworld Sunshine Coast"	14-May-08 12:59 PM	

+="CN84014"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	28-Apr-08	14-May-09	183783.60	=""	="Ambit Group"	14-May-08 12:59 PM	

+="CN84015"	"Furniture, Hervey Bay, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	30-Jun-08	41960.60	=""	="Emtek Furniture"	14-May-08 01:00 PM	

+="CN84016"	"Clerical chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	09-Jun-08	46769.80	=""	="Bentley House Commercial Interiors"	14-May-08 01:00 PM	

+="CN84017"	"Clerical chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	28-Apr-08	09-Jun-08	17787.00	=""	="Gregory Commercial Furniture Pty Ltd"	14-May-08 01:00 PM	

+="CN84018"	"Rehabilitation services"	="Centrelink"	14-May-08	="Healthcare Services"	30-Jan-08	30-Jun-08	19886.02	=""	="Reable Pty Ltd"	14-May-08 01:00 PM	

+="CN84019"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	07-May-08	30-Jun-08	110000.00	=""	="DLA Phillips Fox"	14-May-08 01:00 PM	

+="CN84020"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	08-Apr-08	30-Jun-08	220000.00	=""	="Minter Ellison Lawyers"	14-May-08 01:01 PM	

+="CN84021"	"Legal Services"	="Centrelink"	14-May-08	="Legal services"	08-Apr-08	30-Jun-08	330000.00	=""	="Australian Government Solicitor"	14-May-08 01:01 PM	

+="CN84022"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Human resources services"	12-Oct-07	30-Jun-08	13960.32	=""	="Kaz Group Pty Ltd"	14-May-08 01:02 PM	

+="CN84023"	"Transport Operations"	="Centrelink"	14-May-08	="Transport operations"	24-Apr-08	30-Jun-08	50000.01	=""	="Cabcharge Australia Pty Ltd"	14-May-08 01:02 PM	

+="CN84024"	"Office furniture and storage units"	="Centrelink"	14-May-08	="Furniture and Furnishings"	07-Apr-08	30-Jun-08	35041.60	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 01:02 PM	

+="CN84025"	"Courier Services"	="Centrelink"	14-May-08	="Mail and cargo transport"	18-Apr-08	30-Jun-08	26636.36	=""	="Toll Priority"	14-May-08 01:02 PM	

+="CN84026"	"Optical Surveillance"	="Centrelink"	14-May-08	="Security surveillance and detection"	06-May-08	30-Jun-08	110000.00	=""	="Probe Group Pty Ltd"	14-May-08 01:02 PM	

+="CN84027"	"Office fitout"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-07	30-Jun-07	19312.70	=""	="CGA Bryson Interiors Pty Ltd"	14-May-08 01:02 PM	

+="CN84028"	"Electrical work"	="Centrelink"	14-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	24-Apr-08	24-Apr-08	14630.00	=""	="Nakara Electrics and Building Co Pty"	14-May-08 01:02 PM	

+="CN84029-A1"	" Envelopes "	="Centrelink"	14-May-08	="Standard envelopes"	18-Apr-08	30-Jun-08	104720.00	=""	="Australian Envelopes"	14-May-08 01:02 PM	

+="CN84030"	"Fitout Construction, Launceston, TAS"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Apr-08	06-Jun-08	485452.00	=""	="Vos Construction and Joinery"	14-May-08 01:03 PM	

+="CN84031"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	18-Apr-08	30-Sep-08	166919.45	=""	="Interface Flor"	14-May-08 01:03 PM	

+="CN84032"	"Computer Equipment and Accessories"	="Centrelink"	14-May-08	="Computer Equipment and Accessories"	17-Apr-08	08-Jun-08	5412000.00	="SON25474"	="Sun Microsystems Australia Pty Ltd"	14-May-08 01:03 PM	

+="CN84033"	"Office refit"	="Centrelink"	14-May-08	="Building and Construction Machinery and Accessories"	17-Apr-08	30-Jun-08	12881.00	=""	="Fyfe Interiors and Refurbishment"	14-May-08 01:03 PM	

+="CN84035"	"Clerical Chairs"	="Centrelink"	14-May-08	="Furniture and Furnishings"	16-Apr-08	02-Jun-08	47819.20	=""	="Bentley House Commercial Interiors"	14-May-08 01:03 PM	

+="CN84036"	"Paper Materials and Products"	="Centrelink"	14-May-08	="Paper Materials and Products"	16-Apr-08	30-Jun-08	854700.00	=""	="Australian Envelopes"	14-May-08 01:03 PM	

+="CN84037"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	15-Oct-08	117717.60	="RFTS07/0129"	="Sheridan Management Services Pty Ltd"	14-May-08 01:04 PM	

+="CN84038"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	15-Apr-08	01-May-08	41153.74	=""	="OPTUS NETWORKS PTY LTD"	14-May-08 01:04 PM	

+="CN84039"	"National Support Office Refurbishment"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	18-Apr-08	10862.50	=""	="Aspen Funds Management Ltd"	14-May-08 01:04 PM	

+="CN84040"	"Guarding Services"	="Centrelink"	14-May-08	="Security and personal safety"	15-Apr-08	05-May-08	11001.11	=""	="Secom Australia Pty Ltd"	14-May-08 01:04 PM	

+="CN84041"	"Project management services"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Apr-08	30-Jun-08	44000.00	=""	="IA Group Pty Ltd (Interiors Australia)"	14-May-08 01:04 PM	

+="CN84042"	"Fitout Design - Hobart, TAS"	="Centrelink"	14-May-08	="Professional engineering services"	15-Apr-08	30-Jun-09	93302.55	=""	="GHD Pty Ltd"	14-May-08 01:04 PM	

+="CN84043"	"IT Specialist Services by Specified Personnel"	="Centrelink"	14-May-08	="Computer services"	14-Apr-08	30-Jun-08	48048.00	="RFTS07/0129"	="HiTech Personnel"	14-May-08 01:05 PM	

+="CN84044"	"Accounting and auditing"	="Centrelink"	14-May-08	="Accounting and auditing"	23-Apr-08	30-Jun-08	13200.00	=""	="World Wide Webster Pty Ltd"	14-May-08 01:05 PM	

+="CN84045"	"Access Control cabling"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	23-Apr-08	30-Jun-08	14184.50	=""	="Department of Finance and Deregulation"	14-May-08 01:05 PM	

+="CN84046"	"Office furniture"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	30-Jun-08	17831.00	=""	="Fuse Furniture"	14-May-08 01:05 PM	

+="CN84047"	"Intra-government Communications Network"	="Centrelink"	14-May-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	22-Apr-08	30-Sep-08	51645.00	=""	="Department of Finance and Deregulation"	14-May-08 01:05 PM	

+="CN84048-A1"	"Accounting and auditing"	="Centrelink"	14-May-08	="Accounting and auditing"	22-Apr-08	30-Jun-08	293091.00	=""	="Ernst and Young"	14-May-08 01:05 PM	

+="CN84049"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	31-Dec-08	89051.93	=""	="Interface Flor"	14-May-08 01:05 PM	

+="CN84050"	"Supply and install carpet"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	31-Dec-08	25246.23	=""	="Interface Flor"	14-May-08 01:06 PM	

+="CN84051"	"Furniture and fitout Frankston, VIC"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Apr-08	25-May-08	11401.50	=""	="Schiavello (Vic) Pty  Ltd"	14-May-08 01:06 PM	

+="CN84052"	"Workstations and Storage Units for Hervey Bay, QLD"	="Centrelink"	14-May-08	="Furniture and Furnishings"	22-Apr-08	30-Jun-08	239935.74	=""	="Schiavello Systems (QLD) Pty Ltd"	14-May-08 01:06 PM	

+="CN84053"	"Building work"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Apr-08	31-May-08	11539.00	=""	="Latin Interiors Pty Ltd"	14-May-08 01:06 PM	

+="CN84054"	"Workstations"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Apr-08	30-Jun-08	131011.43	=""	="Schiavello Systems (NSW) Pty Ltd"	14-May-08 01:06 PM	

+="CN84055"	"Furniture removal"	="Centrelink"	14-May-08	="Furniture and Furnishings"	21-Apr-08	30-Jun-08	10947.20	=""	="Wridgways The Removalists"	14-May-08 01:06 PM	

+="CN84056"	"Relocation, delivery, removal and disposal of office items"	="Centrelink"	14-May-08	="Storage"	21-Apr-08	21-Apr-08	11946.00	=""	="1st Fleet Pty Ltd"	14-May-08 01:06 PM	

+="CN84057"	"Signage and Window Treatment"	="Centrelink"	14-May-08	="Signage and accessories"	21-Apr-08	21-Apr-08	17083.00	=""	="Signrite"	14-May-08 01:07 PM	

+="CN84058"	"Computer services"	="Centrelink"	14-May-08	="Computer services"	18-Apr-08	25-Apr-08	116768.83	=""	="Dimension Data Australia Pty Ltd"	14-May-08 01:07 PM	

+="CN84059-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Jul-07	30-Jun-09	278853.00	=""	="Ross Human Directions Limited"	14-May-08 01:09 PM	

+="CN84060-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	30-Jul-07	30-Jun-09	305613.00	=""	="Ross Human Directions Limited"	14-May-08 01:12 PM	

+="CN84061"	"computer hardware"	="Royal Australian Mint"	14-May-08	="Computers"	17-Apr-08	17-Apr-08	10742.60	=""	="DELL AUSTRALIA PTY LIMITED"	14-May-08 01:20 PM	

+="CN84063"	"packaging"	="Royal Australian Mint"	14-May-08	="Packaging materials"	22-Apr-08	05-Aug-08	12870.00	=""	="DELL AUSTRALIA PTY LIMITED"	14-May-08 01:28 PM	

+="CN84064-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	95150.00	=""	="Ross Human Directions Limited"	14-May-08 01:30 PM	

+="CN84066"	"telephone landline charges"	="Royal Australian Mint"	14-May-08	="Fixed phones"	28-Apr-08	28-Apr-08	27500.00	=""	="TELSTRA CORPORATION LTD"	14-May-08 01:37 PM	

+="CN84070"	"Leased rental accommodation Darwin"	="Australian Federal Police"	14-May-08	="Lease and rental of property or building"	01-May-08	30-Apr-09	41307.50	=""	="Colliers International (NT) Pty Ltd"	14-May-08 02:09 PM	

+="CN84074"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	53692.43	=""	="LANDROVER"	14-May-08 02:23 PM	

+="CN84078"	"Juggling Chainsaws Leadership Program"	="Australian Taxation Office"	14-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	37790.00	="06.241-0032"	="Results Consulting"	14-May-08 02:30 PM	

+="CN84081"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	13366.33	=""	="LANDROVER"	14-May-08 02:33 PM	

+="CN84075"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	14-May-08	="Aircraft spars"	14-May-08	31-Oct-08	11937.75	=""	="MILSPEC SERVICES PTY LTD"	14-May-08 02:35 PM	

+="CN84085"	"International Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	09-Aug-07	09-Sep-07	11435.70	=""	="QANTAS AIRWAYS LTD"	14-May-08 03:00 PM	

+="CN84086"	"Property Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	27-Aug-07	40915.15	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 03:00 PM	

+="CN84087"	"Property Management"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	13-Aug-07	31-Aug-07	10763.50	=""	="Property Concept & Management P/L"	14-May-08 03:00 PM	

+="CN84088"	"Annual Membership Fee"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	30-Aug-07	48171.00	=""	="ECA INTERNATIONAL"	14-May-08 03:00 PM	

+="CN84089"	"CPA Congress 2007 participation"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	13-Aug-07	16-Nov-07	25410.00	=""	="CPA Australia"	14-May-08 03:00 PM	

+="CN84090"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	14-Aug-07	20-Aug-07	10442.71	=""	="AUSTRALIA POST (ACC 6102084)"	14-May-08 03:00 PM	

+="CN84091"	"Waste Collection"	="Department of Foreign Affairs and Trade"	14-May-08	="Refuse disposal and treatment"	14-Aug-07	28-Aug-07	10794.43	=""	="SITA Environmental Solutions"	14-May-08 03:00 PM	

+="CN84093"	"FACILITIES MANAGEMENT"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	22-Aug-07	40548.61	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 03:00 PM	

+="CN84094"	"Maintenance & Repairs"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	23-Aug-07	14243.46	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 03:01 PM	

+="CN84095"	"Electrical Installation"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Aug-07	05-Sep-07	11066.00	=""	="Delta Building Automation Pty Ltd"	14-May-08 03:01 PM	

+="CN84096"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	08-Aug-07	28-Feb-08	247105.46	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:01 PM	

+="CN84097"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	08-Aug-07	28-Feb-08	44361.90	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:01 PM	

+="CN84099"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	118270.20	=""	="Carbine Security Installations"	14-May-08 03:01 PM	

+="CN84100"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	119193.90	=""	="Carbine Security Installations"	14-May-08 03:02 PM	

+="CN84101"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	09-Aug-07	06-Sep-07	65353.80	=""	="Carbine Security Installations"	14-May-08 03:02 PM	

+="CN84102"	"Electrical equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	10-Aug-07	30-Nov-07	98194.80	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	14-May-08 03:02 PM	

+="CN84103"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	13-Aug-07	27-Aug-07	23560.00	=""	="Diebold Physical Security Pty Ltd"	14-May-08 03:02 PM	

+="CN84104"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	286000.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:02 PM	

+="CN84105"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	13-Aug-07	31-Aug-07	23388.04	=""	="Diletta ID Systems"	14-May-08 03:02 PM	

+="CN84092"	" Aircraft Spares  QTY 25 NSN 6210-66-123-5229  Filter Indicator Light "	="Defence Materiel Organisation"	14-May-08	="Aircraft"	14-May-08	06-Aug-08	15000.00	=""	="Aerospace and Defence Products"	14-May-08 03:03 PM	

+="CN84106"	"Security Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	13-Aug-07	10-Sep-07	10712.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	14-May-08 03:03 PM	

+="CN84107"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	13-Aug-07	10-Sep-07	15754.75	=""	="DELL COMPUTER PTY LTD"	14-May-08 03:03 PM	

+="CN84108"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	13-Aug-07	27-Aug-07	75820.96	=""	="Commander Integrated Networks Pty L"	14-May-08 03:03 PM	

+="CN84109"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	14300.00	=""	="Integral Consulting Services"	14-May-08 03:03 PM	

+="CN84110"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	13-Aug-07	10-Sep-07	15180.00	=""	="Integral Consulting Services"	14-May-08 03:03 PM	

+="CN84111"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Aug-07	07-Sep-07	32524.80	=""	="KAZ Group Pty Ltd"	14-May-08 03:03 PM	

+="CN84112"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	10-Aug-07	07-Sep-07	261374.41	=""	="Ethan Group Pty Ltd"	14-May-08 03:04 PM	

+="CN84113"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	13-Aug-07	10-Sep-07	111320.00	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 03:04 PM	

+="CN84114"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	08-Aug-07	05-Sep-07	18781.13	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:04 PM	

+="CN84084"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	14-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	10325.46	=""	="LANDROVER"	14-May-08 03:08 PM	

+="CN84115"	"Personal Efficiency Program (PEP) training"	="Australian Taxation Office"	14-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	25-Jun-08	13200.00	="06.241-0038"	="D'Arcy Consulting Group Ply Umited"	14-May-08 03:13 PM	

+="CN84116"	"PROVISION OF MEDIA MONITORING SERVICES"	="Department of Human Services"	14-May-08	="Marketing analysis"	01-Jul-08	30-Oct-10	191000.00	=""	="MEDIA MONITORS AUSTRALIA PTY LTD"	14-May-08 03:15 PM	

+="CN84098-A1"	" Power supply "	="Defence Materiel Organisation"	14-May-08	="Air transportation support systems and equipment"	26-Mar-08	03-Apr-08	10971.45	=""	="BAE Systems"	14-May-08 03:20 PM	

+="CN84119"	" OFFICE FITOUT "	="Department of Human Services"	14-May-08	="Prefabricated commercial and industrial structures"	30-May-08	20-Jun-08	123110.55	=""	="RORK DESIGNS PTY LTD"	14-May-08 03:31 PM	

+="CN84120"	"Aviation Spares, overhaul of Tail Rotor Gearbox"	="Defence Materiel Organisation"	14-May-08	="Military rotary wing aircraft"	18-Feb-08	31-Jul-08	33011.00	=""	="Australian Aerospace"	14-May-08 03:36 PM	

+="CN84121"	"COMPOUND RENTAL"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	20-Aug-07	30-Sep-07	116839.70	=""	="Strategic Partnerships Holdings"	14-May-08 03:38 PM	

+="CN84123"	"Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	20-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:38 PM	

+="CN84124"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	21-Aug-07	21-Aug-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	14-May-08 03:39 PM	

+="CN84125"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	21-Aug-07	21-Aug-07	12549.76	=""	="Knight Frank (SA) Pty Ltd"	14-May-08 03:39 PM	

+="CN84128"	"Software Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	21-Aug-07	21-Aug-07	21672.02	=""	="TARDIS TECHNOLOGY PTY LTD"	14-May-08 03:39 PM	

+="CN84129"	"Artbank Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	21-Aug-07	31-Jul-08	15000.00	=""	="ARTBANK"	14-May-08 03:39 PM	

+="CN84130"	"Lease Payments"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	21-Aug-07	29-Aug-07	204049.98	=""	="HP Financial Services"	14-May-08 03:39 PM	

+="CN84131"	"Secure Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	21-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:39 PM	

+="CN84132"	"Secure Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	21-Aug-07	31-Aug-07	11132.00	=""	="G4S International"	14-May-08 03:40 PM	

+="CN84133"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	15-Aug-07	28-Feb-08	314992.68	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:40 PM	

+="CN84134"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	15-Aug-07	28-Feb-08	16315.70	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 03:40 PM	

+="CN84135"	"Equipment Purchase"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	15-Aug-07	14-Sep-07	16027.47	=""	="Dimension Data Australia Pty Ltd"	14-May-08 03:40 PM	

+="CN84136"	"DFAT storage"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	16-Aug-07	13-Sep-07	62673.60	=""	="1st Fleet Warehousing"	14-May-08 03:40 PM	

+="CN84137"	"Project Manager"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	21-Aug-07	18-Sep-07	222640.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 03:40 PM	

+="CN84138"	"ERN Site Survey"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	21-Aug-07	18-Sep-07	17028.00	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 03:41 PM	

+="CN84139"	"Business Analyst"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	17-Aug-07	14-Sep-07	176088.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 03:41 PM	

+="CN84140"	"FITOUT COST"	="Department of Human Services"	14-May-08	="Housings and cabinets and casings"	06-May-08	12-May-08	47762.00	=""	="SMI FITOUT PTY LTD"	14-May-08 03:43 PM	

+="CN84141"	"PRINTING COSTS"	="Department of Human Services"	14-May-08	="Printed publications"	23-Apr-08	28-Apr-08	15235.28	=""	="CENTRELINK"	14-May-08 04:14 PM	

+="CN84142"	" IT Contractor Services "	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	25-Sep-07	30-Jun-08	85932.00	=""	="GMT CANBERRA PTY LTD"	14-May-08 04:16 PM	

+="CN84143"	"ICON LINK"	="Department of Human Services"	14-May-08	="Computer Equipment and Accessories"	29-Apr-08	30-Jun-08	11550.00	=""	="ICON DEPARTMENT OF FINANCE & ADMINISTRATION"	14-May-08 04:23 PM	

+="CN84144"	" Develoment of Life Cycle Costing Model "	="Department of Foreign Affairs and Trade"	14-May-08	="Business administration services"	13-Nov-07	30-Jun-08	37450.00	=""	="RIDER LEVETT BUCKNALL"	14-May-08 04:30 PM	

+="CN84145"	"Postal Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	22-Aug-07	31-Aug-07	325381.85	=""	="Australia Post (9239640)"	14-May-08 04:34 PM	

+="CN84146"	"Building Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	79290.20	=""	="Interiors Australia"	14-May-08 04:34 PM	

+="CN84147"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	11559.90	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84148"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	10247.39	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84149"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	03-Sep-07	12386.48	=""	="Innovative Business Computing P/L"	14-May-08 04:34 PM	

+="CN84150"	"Training Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	23-Aug-07	28-Aug-07	11453.70	=""	="Wordly Wisdom Writing & Consultancy"	14-May-08 04:34 PM	

+="CN84151"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Aug-07	31-Aug-07	10218.57	=""	="Clicks IT Recruitment"	14-May-08 04:35 PM	

+="CN84152"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	24-Aug-07	11-Sep-07	11132.00	=""	="G4S International"	14-May-08 04:35 PM	

+="CN84153"	"Security Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Aug-07	31-Aug-07	15988.76	=""	="Control Risks Group"	14-May-08 04:35 PM	

+="CN84154"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	24-Aug-07	24-Aug-07	13859.28	=""	="Austex Logistics Pty Ltd"	14-May-08 04:35 PM	

+="CN84155"	"Building Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	24-Aug-07	24-Aug-07	29454.77	=""	="Diebold Physical Security Pty Ltd"	14-May-08 04:35 PM	

+="CN84156"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	27-Aug-07	02-Sep-07	73283.37	=""	="Knight Frank (Vic) Pty Ltd"	14-May-08 04:35 PM	

+="CN84157"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	27-Aug-07	31-Aug-07	13557.50	=""	="SINCLAIR KNIGHT MERZ"	14-May-08 04:35 PM	

+="CN84158"	"Accommodation"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	27-Aug-07	18-Sep-07	52625.00	=""	="Quay Grand Suites Sydney"	14-May-08 04:36 PM	

+="CN84159"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	27-Aug-07	30-Sep-07	64939.74	=""	="Australand Property Trust"	14-May-08 04:36 PM	

+="CN84160"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Aug-07	02-Sep-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	14-May-08 04:36 PM	

+="CN84161"	"Building Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	28-Aug-07	28-Aug-07	79891.95	=""	="Diebold Physical Security Pty Ltd"	14-May-08 04:36 PM	

+="CN84162"	"Nuclear Seismic Monitoring Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Aug-07	30-Jun-08	634453.60	=""	="AUST. GEOLOGICAL SURVEY ORG."	14-May-08 04:36 PM	

+="CN84163"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	22-Aug-07	28-Feb-08	285249.57	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 04:37 PM	

+="CN84164"	"Electrical Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Building and Construction and Maintenance Services"	27-Aug-07	31-Aug-07	30179.54	=""	="Kent Electrical Contractors"	14-May-08 04:37 PM	

+="CN84165"	"ICT Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	23-Aug-07	31-Aug-07	10164.04	=""	="Emerson Network Power Global"	14-May-08 04:37 PM	

+="CN84166"	"IT Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	23-Aug-07	20-Sep-07	39643.56	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 04:37 PM	

+="CN84167"	"Project Management Consulting"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	27-Aug-07	24-Sep-07	38280.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 04:37 PM	

+="CN84168"	"Freight Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Transportation and Storage and Mail Services"	28-Aug-07	31-Aug-07	10524.80	=""	="JR Global Logistics Pty Ltd"	14-May-08 04:37 PM	

+="CN84169-A1"	"Refurbishment of Centrelink Geraldton office, WA"	="Centrelink"	14-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Mar-08	30-Jun-08	949099.80	=""	="Glowpearl Pty Ltd t/a National Interiors"	14-May-08 04:52 PM	

+="CN84170"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	20834.00	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 04:54 PM	

+="CN84171"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	02-Sep-07	12289.31	=""	="Knight Frank (SA) Pty Ltd"	14-May-08 04:55 PM	

+="CN84172"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	29-Aug-07	30-Sep-07	21274.00	=""	="Mallesons Stephen Jaques"	14-May-08 04:55 PM	

+="CN84173"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	29-Aug-07	31-Jul-08	13737.50	=""	="ARTBANK"	14-May-08 04:55 PM	

+="CN84174"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81845.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84175"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81669.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84176"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	81677.00	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84177"	"Guarding Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	30-Aug-07	18-Sep-07	162285.20	=""	="Australian Protective Service"	14-May-08 04:55 PM	

+="CN84178"	"Engineering Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	46500.00	=""	="JJ Mcdonald & Sons Engineering"	14-May-08 04:55 PM	

+="CN84179"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	31-Aug-07	30-Sep-07	10544.65	=""	="Translating & Interpreting Svs"	14-May-08 04:56 PM	

+="CN84180"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	03-Sep-07	21-Sep-07	40548.61	=""	="SPOTLESS P&F Pty Ltd"	14-May-08 04:56 PM	

+="CN84181"	"Hotel Hire - APEC"	="Department of Foreign Affairs and Trade"	14-May-08	="Hotels and lodging and meeting facilities"	03-Sep-07	25-Sep-07	41575.00	=""	="Quay Grand Suites Sydney"	14-May-08 04:56 PM	

+="CN84182"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	04-Sep-07	10-Sep-07	46676.33	=""	="TELSTRA CORPORATION"	14-May-08 04:56 PM	

+="CN84183"	"Training Expenditure"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	28-Sep-07	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	14-May-08 04:56 PM	

+="CN84184"	"Contracting Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	05-Sep-07	13127.40	=""	="ICON RECRUITMENT PTY LTD"	14-May-08 04:56 PM	

+="CN84185"	"Equipment Lease"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	05-Sep-07	12-Sep-07	62678.19	=""	="HP Financial Services"	14-May-08 04:56 PM	

+="CN84186"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	81488.92	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 04:56 PM	

+="CN84187"	"Architectural Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	48625.51	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 04:57 PM	

+="CN84188"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Sep-07	13895.75	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 04:57 PM	

+="CN84189"	"Equipment Lease"	="Department of Foreign Affairs and Trade"	14-May-08	="Tools and General Machinery"	06-Sep-07	31-Dec-07	11950.16	=""	="HP Financial Services"	14-May-08 04:57 PM	

+="CN84190"	"Images of Australia DVD production"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	06-Sep-07	10-Sep-07	12595.00	=""	="Great Southern Communications"	14-May-08 04:57 PM	

+="CN84192"	"UNESCO Conference"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	03-Nov-07	11005.74	=""	="Susan Pascoe"	14-May-08 04:58 PM	

+="CN84193"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	20-Sep-07	11633.24	=""	="AUSTRALIA POST (ACC 6102084)"	14-May-08 04:58 PM	

+="CN84194"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	10-Sep-07	30-Sep-07	16474.70	=""	="Mallesons Stephen Jaques"	14-May-08 04:58 PM	

+="CN84195"	"Subscription to Factiva.com"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	11-Sep-07	11-Sep-07	13125.00	=""	="Dow Jones Reuters Business Interact"	14-May-08 04:58 PM	

+="CN84196"	"Property Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	11-Sep-07	11-Sep-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	14-May-08 04:58 PM	

+="CN84197"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	12-Sep-07	26-Sep-07	18955.20	=""	="Sealeck Pty Ltd"	14-May-08 04:58 PM	

+="CN84198"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	114773.04	=""	="Universal McCann"	14-May-08 04:58 PM	

+="CN84199"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	91551.86	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84200"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	202483.44	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84201"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	12-Sep-07	28-Sep-07	59717.78	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84202"	"Office Equipment ADVISOR"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	13-Sep-07	30-Sep-07	24140.00	=""	="Northfreeze Refrigeration"	14-May-08 04:59 PM	

+="CN84203"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Power Generation and Distribution Machinery and Accessories"	13-Sep-07	30-Sep-07	24140.00	=""	="Northfreeze Refrigeration"	14-May-08 04:59 PM	

+="CN84204"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	103941.27	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84205"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	13348.76	=""	="Universal McCann"	14-May-08 04:59 PM	

+="CN84206"	"Smartraveller Advertising"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	13-Sep-07	28-Sep-07	565092.89	=""	="Universal McCann"	14-May-08 05:00 PM	

+="CN84208"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="General building construction"	13-Sep-07	30-Jun-08	30293.19	=""	="Sealeck Pty Ltd"	14-May-08 05:00 PM	

+="CN84209"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	14-Sep-07	20-Sep-07	305080.90	=""	="Australia Post (9239640)"	14-May-08 05:00 PM	

+="CN84210"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	17-Sep-07	17-Sep-07	17270.00	=""	="Leda-Vannaclip Pty Ltd"	14-May-08 05:00 PM	

+="CN84211"	"Security Works"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	17-Sep-07	17-Sep-07	12199.00	=""	="Diebold Physical Security Pty Ltd"	14-May-08 05:01 PM	

+="CN84207"	"Library Database Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Business administration services"	10-Jan-03	30-Jun-08	181944.45	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	14-May-08 05:01 PM	

+="CN84212"	"APEC Travel"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	17-Sep-07	17-Sep-07	12601.02	=""	="Macquarie Bank Limited"	14-May-08 05:01 PM	

+="CN84213"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	18-Sep-07	18-Sep-07	64939.74	=""	="Australand Property Trust"	14-May-08 05:01 PM	

+="CN84214"	"Construction Works"	="Department of Foreign Affairs and Trade"	14-May-08	="General building construction"	18-Sep-07	28-Sep-07	26460.50	=""	="Solve Projects"	14-May-08 05:01 PM	

+="CN84215"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	18-Sep-07	18-Sep-07	22650.00	=""	="ARTBANK"	14-May-08 05:01 PM	

+="CN84216"	"Freight"	="Department of Foreign Affairs and Trade"	14-May-08	="Mail and cargo transport"	18-Sep-07	18-Oct-07	10138.60	=""	="QANTAS AIRWAYS LTD"	14-May-08 05:01 PM	

+="CN84217"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Human resources services"	19-Sep-07	28-Sep-07	12490.50	=""	="Infinite Consulting Pty Ltd"	14-May-08 05:02 PM	

+="CN84219"	"Software Maintenance"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	20-Sep-07	01-Oct-07	13941.40	=""	="IBM Australia Ltd"	14-May-08 05:02 PM	

+="CN84221"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Information services"	21-Sep-07	08-Oct-07	22206.25	=""	="ARTBANK"	14-May-08 05:02 PM	

+="CN84222"	"Property Management"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	24-Sep-07	18-Oct-07	10077.76	=""	="INTEGRATED SPACE PTY LTD"	14-May-08 05:02 PM	

+="CN84223"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	24-Sep-07	30-Sep-07	12904.55	=""	="Minter Ellison"	14-May-08 05:03 PM	

+="CN84224"	"Recruitment Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Marketing and distribution"	25-Sep-07	30-Sep-07	10848.13	=""	="hma Blaze Pty Limited"	14-May-08 05:03 PM	

+="CN84225"	"Training Expenditure"	="Department of Foreign Affairs and Trade"	14-May-08	="Education and Training Services"	26-Sep-07	30-Sep-07	10000.00	=""	="Australian National University"	14-May-08 05:03 PM	

+="CN84226"	"ARTBANK LEASE"	="Department of Foreign Affairs and Trade"	14-May-08	="Personal and Domestic Services"	26-Sep-07	31-Aug-08	10600.00	=""	="ARTBANK"	14-May-08 05:03 PM	

+="CN84227"	"Hotel Hire - APEC"	="Department of Foreign Affairs and Trade"	14-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Sep-07	15-Oct-07	11830.00	=""	="INTERCONTINENTAL SYDNEY"	14-May-08 05:04 PM	

+="CN84228"	"Office Rental"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Sep-07	02-Oct-07	74527.62	=""	="Knight Frank (Vic) Pty Ltd"	14-May-08 05:04 PM	

+="CN84229"	"Lease Costs"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	28-Sep-07	02-Oct-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	14-May-08 05:04 PM	

+="CN84230"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	28-Sep-07	40332.60	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 05:04 PM	

+="CN84231"	"Recruitment expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	28-Sep-07	19-Oct-07	12169.50	=""	="hma Blaze Pty Limited"	14-May-08 05:04 PM	

+="CN84232"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Human resources services"	28-Sep-07	28-Sep-07	11355.30	=""	="ICON RECRUITMENT PTY LTD"	14-May-08 05:05 PM	

+="CN84233"	"Electric Gates and Motors"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	28-Sep-07	28-Sep-07	75660.18	=""	="Leda-Vannaclip Pty Ltd"	14-May-08 05:05 PM	

+="CN84234"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	369817.26	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84235"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	29-Aug-07	28-Feb-08	29577.59	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84236"	"Chancery Furniture"	="Department of Foreign Affairs and Trade"	14-May-08	="Furniture and Furnishings"	31-Aug-07	31-Aug-07	108171.80	=""	="Arc Office Interiors"	14-May-08 05:05 PM	

+="CN84237"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	04-Sep-07	28-Feb-08	193130.60	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84238"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	04-Sep-07	28-Feb-08	42127.28	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:05 PM	

+="CN84239"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	12-Sep-07	28-Feb-08	301784.10	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84240"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	12-Sep-07	28-Feb-08	22975.75	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84241"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	14-Sep-07	14-Sep-07	32902.97	=""	="Australian Government Solicitor"	14-May-08 05:06 PM	

+="CN84242"	"Legal Fees"	="Department of Foreign Affairs and Trade"	14-May-08	="Legal services"	18-Sep-07	28-Sep-07	17057.00	=""	="Australian Government Solicitor"	14-May-08 05:06 PM	

+="CN84243"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	19-Sep-07	28-Feb-08	139451.93	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84244"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	19-Sep-07	28-Feb-08	74389.00	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:06 PM	

+="CN84245"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	26-Sep-07	28-Feb-08	42517.59	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:07 PM	

+="CN84246"	"Property Expenses"	="Department of Foreign Affairs and Trade"	14-May-08	="Real estate services"	26-Sep-07	28-Feb-08	387090.66	=""	="KFPW PTY LTD (expenditure Account)"	14-May-08 05:07 PM	

+="CN84247"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	29-Aug-07	26-Sep-07	22368.00	=""	="FILEGUARD"	14-May-08 05:07 PM	

+="CN84248"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Office machines and their supplies and accessories"	29-Aug-07	26-Sep-07	59228.00	=""	="FILEGUARD"	14-May-08 05:07 PM	

+="CN84249"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	29-Aug-07	26-Sep-07	16016.00	=""	="GBC AUSTRALIA PTY LTD"	14-May-08 05:07 PM	

+="CN84250"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Electrical equipment and components and supplies"	29-Aug-07	26-Sep-07	10900.00	=""	="Kobra Shredders Australia"	14-May-08 05:07 PM	

+="CN84251"	"Infrastructure equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	31-Aug-07	28-Sep-07	65963.26	=""	="FUJITSU AUSTRALIA LIMITED"	14-May-08 05:07 PM	

+="CN84252"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	30-Aug-07	27-Sep-07	152460.00	=""	="Whizdom Pty Ltd"	14-May-08 05:08 PM	

+="CN84253"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	03-Sep-07	01-Oct-07	10396.56	=""	="Crystal Echo Pty. Ltd."	14-May-08 05:08 PM	

+="CN84254"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	31-Aug-07	28-Sep-07	46530.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	14-May-08 05:08 PM	

+="CN84255"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	03-Sep-07	01-Oct-07	81892.80	=""	="Integral Consulting Services"	14-May-08 05:08 PM	

+="CN84256"	"Equipment Maintanence"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	10-Sep-07	01-Feb-08	16440.00	=""	="Kodak (Australasia) Pty Ltd"	14-May-08 05:08 PM	

+="CN84257"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	10-Sep-07	08-Oct-07	26623.85	=""	="Ethan Group Pty Ltd"	14-May-08 05:08 PM	

+="CN84258"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	11-Sep-07	09-Oct-07	40920.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:08 PM	

+="CN84259"	"Security Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Metal and mineral industries"	11-Sep-07	09-Oct-07	11599.00	=""	="KABA Australia Pty Ltd"	14-May-08 05:08 PM	

+="CN84260"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	08-Oct-07	70511.10	=""	="Bridge IT Engineering Pty Ltd"	14-May-08 05:09 PM	

+="CN84261"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	06-Sep-07	04-Oct-07	16896.00	=""	="KAZ Group Pty Ltd"	14-May-08 05:09 PM	

+="CN84262"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	14-Sep-07	12-Oct-07	12650.00	=""	="Alamein Consulting Pty Ltd"	14-May-08 05:09 PM	

+="CN84263"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	15-Oct-07	47389.76	=""	="LEXMARK INT (AUST) P/L"	14-May-08 05:09 PM	

+="CN84264"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Management and Business Professionals and Administrative Services"	14-Sep-07	12-Oct-07	48614.39	=""	="CLAYTONS AUSTRALIA"	14-May-08 05:09 PM	

+="CN84265"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	12-Sep-07	14-Sep-08	11011.00	=""	="Preemptive Consulting Pty Ltd"	14-May-08 05:09 PM	

+="CN84266"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	15-Oct-07	69740.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:09 PM	

+="CN84267"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	19-Sep-07	17-Oct-07	40810.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:10 PM	

+="CN84268"	"IT Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	19-Sep-07	17-Oct-07	40931.66	=""	="Commander Integrated Networks Pty L"	14-May-08 05:10 PM	

+="CN84269"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	191444.00	=""	="Integral Consulting Services"	14-May-08 05:10 PM	

+="CN84270"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	10-Sep-07	08-Oct-07	19557.12	=""	="Hewlett Packard Australia Pty Ltd"	14-May-08 05:10 PM	

+="CN84271"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	19-Sep-07	17-Oct-07	26356.00	=""	="FLUKE AUSTRALIA PTY LTD"	14-May-08 05:10 PM	

+="CN84272"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	19-Sep-07	17-Oct-07	13607.00	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	14-May-08 05:10 PM	

+="CN84273"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	19953.45	=""	="MILLHOUSE ENTERPRISE PTY LTD"	14-May-08 05:11 PM	

+="CN84274"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	18-Sep-07	16-Oct-07	207350.00	=""	="Integral Consulting Services"	14-May-08 05:11 PM	

+="CN84275"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	20-Sep-07	18-Oct-07	17248.00	=""	="Fitzgerald Technologies"	14-May-08 05:11 PM	

+="CN84276"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	24-Sep-07	22-Oct-07	17061.00	=""	="Ethan Group Pty Ltd"	14-May-08 05:11 PM	

+="CN84277"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	24-Sep-07	22-Oct-07	14190.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:11 PM	

+="CN84278"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	26-Sep-07	30-Sep-07	10177.86	=""	="AFC GROUP PTY LTD"	14-May-08 05:11 PM	

+="CN84279"	"Contractor Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Telecommunications media services"	25-Sep-07	23-Oct-07	19800.00	=""	="KAZ Group Pty Ltd"	14-May-08 05:11 PM	

+="CN84280"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	28-Sep-07	30-Sep-07	12523.50	=""	="Commander Integrated Networks Pty L"	14-May-08 05:12 PM	

+="CN84281"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	27-Sep-07	25-Oct-07	152428.10	=""	="Ethan Group Pty Ltd"	14-May-08 05:12 PM	

+="CN84282"	"Office Equipment"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer services"	17-Sep-07	31-Oct-07	56760.00	=""	="Fuji Xerox Australia Pty Ltd"	14-May-08 05:12 PM	

+="CN84283"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	14-May-08	="Computer Equipment and Accessories"	03-Sep-07	30-Sep-07	20253.20	=""	="STEP Electronics (A Hills Company)"	14-May-08 05:12 PM	

+="CN84284"	"Lease at Karratha, WA"	="Centrelink"	14-May-08	="Real estate services"	16-Apr-08	17-Apr-09	113390.00	=""	="Pilbara Real Estate Pty Ltd"	14-May-08 05:26 PM	

+="CN84285-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	14-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	06-Jun-08	91025.00	=""	="Ross Human Directions Limited"	14-May-08 05:31 PM	

+="CN84286"	"Recruitment"	="Attorney-General's Department"	15-May-08	="Recruitment services"	22-Apr-08	31-Dec-08	36509.00	=""	="nga.net"	15-May-08 06:46 AM	

+="CN84287"	"Advertising Program"	="Attorney-General's Department"	15-May-08	="Newspaper advertising"	14-Apr-08	31-Dec-08	33590.07	=""	="HMA BLAZE"	15-May-08 06:46 AM	

+="CN84288"	"Advertising Selection Process"	="Attorney-General's Department"	15-May-08	="Advertising"	14-Apr-08	31-Dec-08	25331.59	=""	="HMA BLAZE"	15-May-08 06:46 AM	

+="CN84290"	"Cable Installation"	="Attorney-General's Department"	15-May-08	="Network security equipment"	11-Apr-08	31-May-08	10201.40	=""	="Raynella Communication Services P/L"	15-May-08 06:46 AM	

+="CN84291"	"Contractor Services"	="Attorney-General's Department"	15-May-08	="Automotive computer systems"	10-Apr-08	30-Jun-08	75180.00	="07/17601"	="Kaz Group Pty Limited"	15-May-08 06:46 AM	

+="CN84292"	"Stationery"	="Attorney-General's Department"	15-May-08	="Stationery"	15-Apr-08	31-Dec-08	27482.93	=""	="Corporate Express"	15-May-08 06:46 AM	

+="CN84293"	"Marketing"	="Attorney-General's Department"	15-May-08	="Marketing and distribution"	15-Apr-08	31-Dec-08	146576.65	=""	="Hyro Australia Pty Ltd"	15-May-08 06:46 AM	

+="CN84294"	"Brochures, Magnets"	="Attorney-General's Department"	15-May-08	="Stationery"	15-Apr-08	31-Dec-08	27486.80	=""	="Paragon Printers"	15-May-08 06:47 AM	

+="CN84295"	"Furniture Hire"	="Attorney-General's Department"	15-May-08	="Furniture"	15-Apr-08	31-Oct-08	35852.37	=""	="Valiant Hire"	15-May-08 06:47 AM	

+="CN84296"	"Driving Services"	="Attorney-General's Department"	15-May-08	="Vehicle transport services"	15-Apr-08	30-Dec-08	33000.00	=""	="Comcar"	15-May-08 06:47 AM	

+="CN84297"	"Office Alterations"	="Attorney-General's Department"	15-May-08	="Building construction and support and maintenance and repair services"	15-Apr-08	30-Apr-08	18338.10	=""	="Hytec Carpentry Services"	15-May-08 06:47 AM	

+="CN84298"	"Conference Planning"	="Attorney-General's Department"	15-May-08	="Project administration or planning"	15-Apr-08	30-Jun-08	13200.00	=""	="Performgroup Pty Ltd"	15-May-08 06:47 AM	

+="CN84299"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	07-Apr-08	07-Apr-08	13259.40	=""	="TAC Pacific Pty Ltd"	15-May-08 06:47 AM	

+="CN84300"	"Equipment-Microsoft Package"	="Attorney-General's Department"	15-May-08	="Automotive computer systems"	07-Apr-08	07-Apr-08	161700.00	=""	="Microsoft Pty Ltd"	15-May-08 06:47 AM	

+="CN84301"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	07-Apr-08	30-Jun-08	709311.01	=""	="Department of Families, Community"	15-May-08 06:47 AM	

+="CN84302"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Sports event promotion and sponsorship"	07-Apr-08	16-Apr-08	11000.00	=""	="Conexion Event Management Pty Ltd"	15-May-08 06:47 AM	

+="CN84303"	"Contract Vetting Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	07-Apr-08	30-Jun-08	10000.00	="07/16387"	="Jenny Clements Consultancy"	15-May-08 06:47 AM	

+="CN84304"	"Contract Services"	="Attorney-General's Department"	15-May-08	="Personnel recruitment"	07-Apr-08	30-Jun-08	53196.00	="06/18414"	="Icon Recruitment Pty Ltd"	15-May-08 06:48 AM	

+="CN84305"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	07-Apr-08	07-Apr-08	22929.50	=""	="TAC Pacific Pty Ltd"	15-May-08 06:48 AM	

+="CN84306"	"Training Course"	="Attorney-General's Department"	15-May-08	="Labour training or development"	10-Apr-08	10-Apr-08	11472.45	=""	="Liquid Learning Group Pty Ltd"	15-May-08 06:48 AM	

+="CN84307"	"Consultancy Services"	="Attorney-General's Department"	15-May-08	="Information technology consultation services"	09-Apr-08	30-Jun-08	34320.00	=""	="NetIQ Pty Ltd"	15-May-08 06:48 AM	

+="CN84308"	"Provision of Vetting Services"	="Attorney-General's Department"	15-May-08	="National security"	09-Apr-08	30-Jun-08	10000.00	="07/16388"	="Richard Coulthard"	15-May-08 06:48 AM	

+="CN84309"	"Developing Education Toolkit"	="Attorney-General's Department"	15-May-08	="Computer based training software"	09-Apr-08	30-Jun-08	55000.00	=""	="TAFE NSW - Hunter Institute"	15-May-08 06:48 AM	

+="CN84310"	"Furniture"	="Attorney-General's Department"	15-May-08	="Office furniture"	09-Apr-08	30-Apr-08	11995.50	=""	="Corporate Express"	15-May-08 06:48 AM	

+="CN84311"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Wide area network WAN maintenance or support"	08-Apr-08	30-Jun-08	14618.29	=""	="NewSat Networks Pty Ltd"	15-May-08 06:48 AM	

+="CN84312"	"Contract Services"	="Attorney-General's Department"	15-May-08	="Scribers"	16-Apr-08	31-May-08	25600.00	="06/18392"	="Stratsec.Net Pty Ltd"	15-May-08 06:48 AM	

+="CN84313"	"Printers & Equipment"	="Attorney-General's Department"	15-May-08	="Printer and facsimile and photocopier supplies"	24-Apr-08	30-Jun-08	34756.48	=""	="Hewlett Packard Australia Pty Ltd"	15-May-08 06:49 AM	

+="CN84314"	"Venue Hire & Catering for Conference"	="Attorney-General's Department"	15-May-08	="Conference or non modular room packages"	24-Apr-08	31-Dec-08	33320.10	=""	="L'Aqua"	15-May-08 06:49 AM	

+="CN84315"	"Computer Maintenance/Support"	="Attorney-General's Department"	15-May-08	="Computer hardware maintenance or support"	22-Apr-08	30-Jun-08	48067.80	=""	="Dell Computer Limited"	15-May-08 06:49 AM	

+="CN84316"	"Staff recruiting services"	="Attorney-General's Department"	15-May-08	="Staff recruiting services"	22-Apr-08	31-Dec-08	46200.00	=""	="Staffing and Office Solutions"	15-May-08 06:49 AM	

+="CN84317"	"Equipment"	="Attorney-General's Department"	15-May-08	="Computer hardware maintenance or support"	22-Apr-08	31-Dec-08	11026.67	="07/1120"	="Cybertrust Australia Pty Ltd"	15-May-08 06:49 AM	

+="CN84318"	"Computer Maintenance"	="Attorney-General's Department"	15-May-08	="Computer hardware maintenance or support"	22-Apr-08	31-Dec-08	43723.74	="07/1120"	="Cybertrust Australia Pty Ltd"	15-May-08 06:49 AM	

+="CN84319"	"Sterilizer"	="Attorney-General's Department"	15-May-08	="Medical Equipment and Accessories and Supplies"	28-Apr-08	08-May-08	11200.00	=""	="WEST COAST DENTAL"	15-May-08 06:49 AM	

+="CN84320"	"Communication Sets"	="Attorney-General's Department"	15-May-08	="Communications Devices and Accessories"	30-Apr-08	30-Jun-08	42134.40	=""	="Owen International"	15-May-08 06:49 AM	

+="CN84321"	"Flights"	="Attorney-General's Department"	15-May-08	="Chartered aeroplane travel"	30-Apr-08	31-Dec-08	244085.60	=""	="NATIONAL JET SYSTEMS PTY LTD"	15-May-08 06:49 AM	

+="CN84322"	"Office Alterations"	="Attorney-General's Department"	15-May-08	="Building and Construction and Maintenance Services"	29-Apr-08	31-May-08	39109.40	=""	="Hytec Carpentry Services"	15-May-08 06:49 AM	

+="CN84323"	"Probity Adviser"	="Attorney-General's Department"	15-May-08	="Professional procurement services"	29-Apr-08	31-Aug-08	18600.00	=""	="RSM Bird Cameron"	15-May-08 06:50 AM	

+="CN84324"	"Software Support Renewal"	="Attorney-General's Department"	15-May-08	="Software maintenance and support"	29-Apr-08	31-Dec-08	25740.00	=""	="Critchlow Limited"	15-May-08 06:50 AM	

+="CN84325"	"Web consulting"	="Attorney-General's Department"	15-May-08	="World wide web WWW site design services"	28-Apr-08	31-Dec-08	11000.00	=""	="Critchlow Limited"	15-May-08 06:50 AM	

+="CN84326-A1"	"Training Equipment"	="Attorney-General's Department"	15-May-08	="Anti foaming agents"	16-Apr-08	16-Apr-08	43597.94	=""	="Chubb Fire Safety"	15-May-08 06:50 AM	

+="CN84327"	"Course"	="Attorney-General's Department"	15-May-08	="Conference or non modular room packages"	16-Apr-08	31-Dec-08	14116.51	=""	="Marque Hotels International Pty Ltd"	15-May-08 06:50 AM	

+="CN84328"	"Driving Services"	="Attorney-General's Department"	15-May-08	="Vehicle transport services"	16-Apr-08	31-Dec-08	33000.00	=""	="Comcar"	15-May-08 06:50 AM	

+="CN84329"	"Lighting & System Design"	="Attorney-General's Department"	15-May-08	="Systems integration design"	16-Apr-08	30-Apr-08	13540.00	=""	="The Cunningham Family Trust"	15-May-08 06:50 AM	

+="CN84330"	"Airport Buildings"	="Attorney-General's Department"	15-May-08	="Airport buildings"	16-Apr-08	30-Apr-08	16880.00	=""	="The Cunningham Family Trust"	15-May-08 06:50 AM	

+="CN84331"	"Maintenance"	="Attorney-General's Department"	15-May-08	="Maintenance or support fees"	16-Apr-08	31-Dec-08	55374.00	=""	="Cybertrust Australia Pty Ltd"	15-May-08 06:50 AM	

+="CN84332"	"Electricity services"	="Attorney-General's Department"	15-May-08	="Supply of single phase electricity"	16-Apr-08	31-Dec-08	18837.89	=""	="Westtech Holdings Pty Ltd"	15-May-08 06:50 AM	

+="CN84333"	"Westlaw Online Renewal"	="Attorney-General's Department"	15-May-08	="Internet related services"	18-Apr-08	31-Dec-09	61247.00	=""	="Thomson Legal & Regulatory Group"	15-May-08 06:50 AM	

+="CN84334"	"Office Altertions"	="Attorney-General's Department"	15-May-08	="Building construction and support and maintenance and repair services"	18-Apr-08	31-May-08	32579.80	=""	="Hytec Carpentry Services"	15-May-08 06:51 AM	

+="CN84335"	"Building Works"	="Attorney-General's Department"	15-May-08	="Building and Construction and Maintenance Services"	18-Apr-08	30-Apr-08	17220.50	=""	="Hytec Carpentry Services"	15-May-08 06:51 AM	

+="CN84336"	"Medical Services"	="Attorney-General's Department"	15-May-08	="Medical doctors specialist services"	18-Apr-08	18-Jul-08	30000.00	="85120000"	="Vis UK Pty Ltd"	15-May-08 06:51 AM	

+="CN84337"	"Software maintenance"	="Attorney-General's Department"	15-May-08	="Software maintenance and support"	17-Apr-08	01-Mar-09	55816.73	="07/13009"	="Data#3 Ltd"	15-May-08 06:51 AM	

+="CN84338"	"Project administration or planning"	="Attorney-General's Department"	15-May-08	="Project administration or planning"	17-Apr-08	31-Dec-08	35443.38	="07/13009"	="Commander Integrated Networks"	15-May-08 06:51 AM	

+="CN84339"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	29-Feb-08	29-Feb-08	18180.80	="06#195748"	="Australian Government Solicitor"	15-May-08 06:51 AM	

+="CN84340"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	13-Mar-08	23-Apr-18	24802.80	="06#195748DOC"	="Australian Government Solictor"	15-May-08 06:51 AM	

+="CN84341"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	28-Feb-08	23-Apr-08	50867.89	="06#199427DOC"	="Blake Dawson"	15-May-08 06:51 AM	

+="CN84342"	"Legal services"	="Attorney-General's Department"	15-May-08	="Legal services"	13-Dec-07	13-Dec-07	24500.19	="06#195784"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:51 AM	

+="CN84343"	"Provision of Services"	="Attorney-General's Department"	15-May-08	="Permanent professional staff"	27-Mar-08	30-Jun-08	974742.56	=""	="Australian Federal Police"	15-May-08 06:52 AM	

+="CN84344"	"Laptops for NCLD"	="Attorney-General's Department"	15-May-08	="Notebook computers"	18-Sep-07	29-Mar-08	11281.18	=""	="QUEENSLAND POLICE SERVICE"	15-May-08 06:52 AM	

+="CN84345"	"Services provided"	="Attorney-General's Department"	15-May-08	="Legal services"	23-Jan-08	05-May-08	24794.65	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:52 AM	

+="CN84346"	"Services Provided"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	31-Mar-08	30-Apr-08	12442.29	="06#199427DOC"	="Blake Dawson"	15-May-08 06:52 AM	

+="CN84347"	"Services Provided"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	31-Jan-08	31-Jan-08	11298.98	="06#199427DOC"	="Blake Dawson"	15-May-08 06:52 AM	

+="CN84348"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	17-Mar-08	30-Apr-08	26603.12	="07/1566"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:52 AM	

+="CN84349"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	06-Mar-08	29-Apr-08	17775.00	="07/1566"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:52 AM	

+="CN84350"	"service provided"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	30-Nov-07	30-Jun-08	19780.00	=""	="AUSTRALIAN INSTITUTE OF CRIMINOLOGY"	15-May-08 06:52 AM	

+="CN84351"	"service provided"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	28-Mar-08	30-Jun-08	15444.55	=""	="Australian Government Solicitor"	15-May-08 06:52 AM	

+="CN84352"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	09-Apr-08	09-Apr-08	10117.25	=""	="Australian Government Solictor"	15-May-08 06:53 AM	

+="CN84353"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	04-Apr-08	25-Apr-08	81749.80	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:53 AM	

+="CN84354"	"Services provided"	="Attorney-General's Department"	15-May-08	="Legal services"	25-Mar-08	28-Apr-08	106937.87	=""	="Hon Justice Ian Callinan"	15-May-08 06:53 AM	

+="CN84355"	"Banner Stand"	="Attorney-General's Department"	15-May-08	="Sign holders or stands"	31-Mar-08	01-May-08	24777.50	=""	="COPY TRENDS"	15-May-08 06:53 AM	

+="CN84356"	"Video conference and transmission"	="Attorney-General's Department"	15-May-08	="Phone and video conference equipment and hardware and controllers"	07-Mar-08	07-Mar-08	12672.54	=""	="Administrative Appeals Tribunal"	15-May-08 06:53 AM	

+="CN84357"	"Report"	="Attorney-General's Department"	15-May-08	="Business and corporate management consultation services"	18-Mar-08	25-Apr-08	20956.64	=""	="Analytics Group"	15-May-08 06:53 AM	

+="CN84358"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Legal services"	09-Apr-08	25-Apr-08	23830.00	=""	="Robert James Anderson"	15-May-08 06:53 AM	

+="CN84359"	"Services"	="Attorney-General's Department"	15-May-08	="Layout or graphics editing services"	21-Apr-08	21-Apr-08	13938.57	=""	="Debbie Phillips"	15-May-08 06:53 AM	

+="CN84360"	"service provided"	="Attorney-General's Department"	15-May-08	="Lease and rental of property or building"	18-Mar-08	30-Jun-08	2610750.00	=""	="Dept of Education and Training"	15-May-08 06:53 AM	

+="CN84361"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	21-Apr-08	21-Apr-08	131000.00	=""	="Anthony J Meagher"	15-May-08 06:53 AM	

+="CN84362"	"Legal Services"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	21-Apr-08	25-Apr-08	97609.60	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	15-May-08 06:54 AM	

+="CN84363"	"service provided"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	17-Apr-08	17-Apr-08	21640.00	=""	="Chris Pirie"	15-May-08 06:54 AM	

+="CN84364"	"Legal Fees"	="Attorney-General's Department"	15-May-08	="Legal services"	15-Apr-08	29-Apr-08	83966.61	=""	="Alister Henskens"	15-May-08 06:54 AM	

+="CN84365"	"Storage Costs"	="Attorney-General's Department"	15-May-08	="Bulk storage"	22-Jan-08	31-Dec-08	10000.00	=""	="Recall Information Managment"	15-May-08 06:54 AM	

+="CN84366"	"Advertising Program"	="Attorney-General's Department"	15-May-08	="Personnel recruitment"	04-Apr-08	04-Apr-08	27505.87	=""	="HMA BLAZE"	15-May-08 06:54 AM	

+="CN84367"	"Advertising Program"	="Attorney-General's Department"	15-May-08	="Personnel recruitment"	04-Apr-08	04-Apr-08	25276.05	=""	="HMA BLAZE"	15-May-08 06:54 AM	

+="CN84368"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Writing and translations"	04-Apr-08	04-Apr-08	36236.20	=""	="Ozethai Pty Ltd"	15-May-08 06:54 AM	

+="CN84369"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Supply of single phase electricity"	03-Apr-08	03-Apr-08	36778.96	=""	="Knight Frank Australia Pty Ltd"	15-May-08 06:54 AM	

+="CN84370"	"Parenting Expo Items"	="Attorney-General's Department"	15-May-08	="Understanding community service instructional materials"	03-Apr-08	15-Oct-08	34169.99	=""	="Parenting Australia Network Pty Ltd"	15-May-08 06:54 AM	

+="CN84371"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	03-Apr-08	31-May-08	64314.20	=""	="Chubb Security Personnel Pty Ltd"	15-May-08 06:55 AM	

+="CN84372"	"Equipment supplies"	="Attorney-General's Department"	15-May-08	="Engine components and accessories"	04-Apr-08	04-Apr-08	36304.68	=""	="OPEC SYSTEMS"	15-May-08 06:55 AM	

+="CN84373"	"PEP Training Course"	="Attorney-General's Department"	15-May-08	="Vocational training"	04-Apr-08	09-Apr-08	13200.00	=""	="D'Arcy Consulting group pty limited"	15-May-08 06:55 AM	

+="CN84374"	"Maintenance Services"	="Attorney-General's Department"	15-May-08	="Automotive computer systems"	04-Apr-08	21-Apr-09	11770.00	=""	="INFRA CORPORATION PTY LTD"	15-May-08 06:55 AM	

+="CN84375"	"Translation Services"	="Attorney-General's Department"	15-May-08	="Writing and translations"	04-Apr-08	04-Apr-08	16061.50	=""	="Thai Language Services"	15-May-08 06:55 AM	

+="CN84376"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Mobile location based services software"	04-Apr-08	04-Apr-08	17836.61	=""	="AFC Group Pty Ltd"	15-May-08 06:55 AM	

+="CN84377"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Automotive computer systems"	04-Apr-08	04-Apr-08	34918.06	=""	="Dimension Data Australia Pty Ltd"	15-May-08 06:55 AM	

+="CN84378"	"Maintenance DVS"	="Attorney-General's Department"	15-May-08	="Ground support test or maintenance systems"	04-Apr-08	30-Jun-08	52800.00	=""	="Centrelink"	15-May-08 06:55 AM	

+="CN84379"	"Services"	="Attorney-General's Department"	15-May-08	="Permanent technical staffing needs"	06-May-08	18-May-08	43760.00	="06/18396"	="Verossity Pty Limited"	15-May-08 06:55 AM	

+="CN84380"	"Survey"	="Attorney-General's Department"	15-May-08	="Surveying systems"	28-Mar-08	30-May-08	50050.00	=""	="Insight SRC Pty Ltd"	15-May-08 06:55 AM	

+="CN84381"	"Recruitment Services"	="Attorney-General's Department"	15-May-08	="Recruitment services"	11-Dec-07	31-Dec-08	35500.00	=""	="Langtree Information Management"	15-May-08 06:56 AM	

+="CN84382"	"Contract employment"	="Attorney-General's Department"	15-May-08	="Temporary personnel services"	14-May-08	31-Dec-08	41695.50	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	15-May-08 06:56 AM	

+="CN84383"	"Telephone services"	="Attorney-General's Department"	15-May-08	="Local telephone service"	06-May-08	30-Jun-08	77000.00	=""	="Telstra"	15-May-08 06:56 AM	

+="CN84384"	"Staffing"	="Attorney-General's Department"	15-May-08	="Temporary legal staffing needs"	29-Apr-08	31-Dec-08	10660.80	=""	="Staffing and Office Solutions"	15-May-08 06:56 AM	

+="CN84385"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Lease and rental of property or building"	02-May-08	30-Jun-09	403602.36	=""	="Knight Frank Australia Pty Ltd"	15-May-08 06:56 AM	

+="CN84386"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	03-Apr-08	31-May-08	64314.20	=""	="Chubb Security Personnel Pty Ltd"	15-May-08 06:56 AM	

+="CN84387"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Automotive computer systems"	02-Apr-08	26-Mar-09	75237.49	="03/9344"	="Data#3 Ltd"	15-May-08 06:56 AM	

+="CN84388"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Personal communication devices"	02-Apr-08	30-Jun-08	14440.80	=""	="New Millenium Print"	15-May-08 06:56 AM	

+="CN84389"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Military police training"	02-Apr-08	30-Jun-08	42198.20	=""	="Zangold Pty Ltd"	15-May-08 06:56 AM	

+="CN84390"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Personnel relocation"	01-Apr-08	30-Jun-08	22000.00	=""	="PREMIER OFFICE RELOCATIONS (NSW)"	15-May-08 06:57 AM	

+="CN84391"	"Goods and Services"	="Attorney-General's Department"	15-May-08	="Safety or security systems installation"	01-Apr-08	01-Apr-08	161706.05	=""	="Point Trading"	15-May-08 06:57 AM	

+="CN84392"	" Deliver a 4 day    High Level Negotiation and Influencing skilling training program "	="Australian Taxation Office"	15-May-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	14-Aug-08	50000.00	="06.244-3"	="Fedusar Holdings Pty Ltd t/a ENS International"	15-May-08 08:13 AM	

+="CN84393"	" Lubricating Oil, Steam Turbine  9150 66-034-7917  18x 205L Drums  OEP-89 (REGAL MARINE 77) "	="Defence Materiel Organisation"	15-May-08	="Lubricants and oils and greases and anti corrosives"	05-Feb-08	07-Feb-08	10393.91	=""	="CALTEX"	15-May-08 08:33 AM	

+="CN84394"	" Water Resistant Hydraulic Fluid  996x 1 US Gal Royo 782 "	="Defence Materiel Organisation"	15-May-08	="Lubricants and oils and greases and anti corrosives"	22-Feb-08	29-Feb-08	31071.21	=""	="A S Harrison & CO"	15-May-08 08:46 AM	

+="CN84396"	" VEHICLE REPAIRS "	="Department of Defence"	15-May-08	="Motor vehicles"	22-Apr-08	22-May-08	31524.78	=""	="RGM"	15-May-08 08:49 AM	

+="CN84395"	" A25-220 R3 SERVICE "	="Defence Materiel Organisation"	15-May-08	="Military rotary wing aircraft"	18-Dec-07	30-Jun-08	330000.00	=""	="BAE SYSTEMS AUSTRALIA"	15-May-08 08:50 AM	

+="CN84398"	"Ground Maintenance"	="Department of the Prime Minister and Cabinet"	15-May-08	="Grounds maintenance services"	26-Mar-08	26-Apr-08	13248.68	=""	="Trim Lawns & Complete Services"	15-May-08 09:42 AM	

+="CN84399"	" Redevelop Training Workshop "	="Department of Foreign Affairs and Trade"	15-May-08	="Business administration services"	18-Sep-07	18-Mar-08	23111.00	=""	="ROB BRENNAN FACILITATION AND TRAINING SERVICES PTY LIMITED"	15-May-08 10:00 AM	

+="CN84400-A2"	" Records Management Implementation Project "	="Department of Foreign Affairs and Trade"	15-May-08	="Business administration services"	19-Nov-07	31-Dec-08	58608.00	=""	="INFORMATION MANAGEMENT SOLUTIONS PTY LTD"	15-May-08 10:03 AM	

+="CN84402"	" Project Management Services "	="Department of Foreign Affairs and Trade"	15-May-08	="Human resources services"	01-Jul-07	31-Dec-07	43475.52	="SON81566"	="ICON RECRUITMENT PTY LTD"	15-May-08 10:06 AM	

+="CN84403"	"Printing"	="Department of the Prime Minister and Cabinet"	15-May-08	="Printing"	24-Apr-08	30-May-08	39878.00	=""	="A & S Printers"	15-May-08 10:09 AM	

+="CN84404"	" Develop Project Proposal "	="Department of Foreign Affairs and Trade"	15-May-08	="Legal services"	13-Sep-07	30-Jun-08	60830.00	=""	="V.M AHUJA & R.K ANDERSON & A.G BANCROFT & A.V BOURKE & G.N BRUCE & J.S CHERRINGTON & J.A COLE & D.A COLENSO & A.P DESZCZ & P.J DOYLE & A GRAY & S.E HARRISON & R.D HAYES & B.A HOWE & OTHERS"	15-May-08 10:09 AM	

+="CN84405"	"Business Perceptions Survey Data Analysis"	="Australian Taxation Office"	15-May-08	="Market research"	02-May-08	30-Jun-08	50000.00	=""	="Eureka Strategic Research Pty Ltd"	15-May-08 10:15 AM	

+="CN84406"	" Labour Hire - Administrative Support "	="Department of Foreign Affairs and Trade"	15-May-08	="Human resources services"	13-Sep-07	31-Dec-07	24332.00	=""	="PATRIOT ALLIANCE PTY LTD"	15-May-08 10:16 AM	

+="CN84407"	"Legal services"	="National Competition Council"	15-May-08	="Legal services"	09-Jan-08	01-May-08	24475.00	=""	="Australia Government Solocitor"	15-May-08 10:17 AM	

+="CN84409"	" Records Management Services "	="Department of Foreign Affairs and Trade"	15-May-08	="Management and Business Professionals and Administrative Services"	06-Apr-06	30-Jun-06	11000.00	=""	="R.M. GARDINER & ASSOCIATES PTY LTD"	15-May-08 10:19 AM	

+="CN84410"	"Electronic reference material"	="Australian Competition and Consumer Commission"	15-May-08	="Electronic reference material"	01-Apr-08	30-Apr-08	16847.50	=""	="Media Monitors Australia Pty Ltd"	15-May-08 10:20 AM	

+="CN84411"	"telecommunications media services"	="Australian Competition and Consumer Commission"	15-May-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	31588.54	=""	="Telstra"	15-May-08 10:20 AM	

+="CN84412"	"Reproduction Services"	="Australian Competition and Consumer Commission"	15-May-08	="Reproduction services"	01-May-08	01-Sep-08	54846.00	=""	="Printgraphics Pty Ltd"	15-May-08 10:20 AM	

+="CN84413"	"Passenger transport"	="Australian Competition and Consumer Commission"	15-May-08	="Passenger transport"	08-Mar-08	04-Apr-08	28179.31	=""	="Cabcharge Australia Pty Ltd"	15-May-08 10:20 AM	

+="CN84414"	"Advertising"	="Australian Competition and Consumer Commission"	15-May-08	="Advertising"	14-Mar-08	15-Mar-08	11496.21	=""	="hma Blaze Pty Ltd"	15-May-08 10:20 AM	

+="CN84415"	"Storage"	="Australian Competition and Consumer Commission"	15-May-08	="Storage"	18-Jan-08	28-Feb-08	13067.74	=""	="Toll Transitions"	15-May-08 10:20 AM	

+="CN84416"	"Management advisory services"	="Australian Competition and Consumer Commission"	15-May-08	="Management advisory services"	20-Apr-08	20-Apr-08	10395.00	=""	="ClientWise PtyLtd"	15-May-08 10:21 AM	

+="CN84417"	"Storage"	="Australian Competition and Consumer Commission"	15-May-08	="Storage"	23-Nov-07	27-Dec-07	17962.18	=""	="Toll Transitions"	15-May-08 10:21 AM	

+="CN84418"	"Storage"	="Australian Competition and Consumer Commission"	15-May-08	="Storage"	28-Dec-07	17-Jan-08	18841.41	=""	="Toll Transitions"	15-May-08 10:21 AM	

+="CN84408"	"Hospitality "	="Department of the Prime Minister and Cabinet"	15-May-08	="Banquet and catering services"	01-Mar-08	24-Apr-08	10980.00	=""	="HYATT HOTEL CANBERRA"	15-May-08 10:23 AM	

+="CN84420"	" Scoping Study "	="Department of Foreign Affairs and Trade"	15-May-08	="Education and Training Services"	20-Dec-07	28-Mar-08	18700.00	=""	="RYEBUCK MEDIA PTY LTD"	15-May-08 10:24 AM	

+="CN84421"	" Property Suitability Assessment "	="Department of Foreign Affairs and Trade"	15-May-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	25110.00	=""	="ANALYTICAL SERVICE PTY LTD"	15-May-08 10:26 AM	

+="CN84422"	" Property Suitability Assessment "	="Department of Foreign Affairs and Trade"	15-May-08	="Engineering and Research and Technology Based Services"	25-Mar-08	30-Jun-08	15071.59	=""	="SINGET GROUP INTERNATIONAL PTY LTD"	15-May-08 10:29 AM	

+="CN84424"	"Blackberry Training"	="Department of Foreign Affairs and Trade"	15-May-08	="Telecommunications media services"	11-Oct-07	30-Jun-08	11000.00	=""	="INFORMATION ASSURANCE SOLUTIONS (PAYROLL) PTY LTD"	15-May-08 10:32 AM	

+="CN84425"	"Video Spectral Comparator Forensic Document Examination Equipment"	="Department of Foreign Affairs and Trade"	15-May-08	="Computer services"	01-Feb-08	28-Feb-08	132135.00	=""	="XTEK LIMITED"	15-May-08 10:32 AM	

+="CN55090"	"R2 Servicing on A17-012"	="Defence Materiel Organisation"	15-May-08	="Aircraft"	05-Sep-07	16-Jan-08	110654.23	=""	="Helitech Pty Ltd"	15-May-08 10:34 AM	

+="CN49432"	"Repair Kiowa A/c Engine component"	="Defence Materiel Organisation"	15-May-08	="Aircraft"	10-Oct-06	19-Dec-06	57921.45	=""	="Aviation turbine O/H"	15-May-08 10:36 AM	

+="CN84427"	"IT SERVICES"	="Department of Human Services"	15-May-08	="Components for information technology or broadcasting or telecommunications"	30-Apr-08	09-May-08	13802.90	=""	="ASG GROUP LIMITED"	15-May-08 10:38 AM	

+="CN50809"	"Repair of Kiowa Aircraft component"	="Defence Materiel Organisation"	15-May-08	="Aircraft"	11-Dec-07	28-Feb-08	11845.70	=""	="Helitech PTY LTD"	15-May-08 10:38 AM	

+="CN84428"	"Post-production services for short film"	="Department of Foreign Affairs and Trade"	15-May-08	="Business administration services"	08-Aug-07	21-Sep-07	22645.00	=""	="YOUNG, CHRISTOPHER IAN"	15-May-08 10:39 AM	

+="CN84429"	"Training Workshop"	="Department of Foreign Affairs and Trade"	15-May-08	="Education and Training Services"	17-Jan-08	08-Feb-08	20000.00	=""	="COMMONWEALTH SCIENTIFIC AND INDUSTRIAL RESEARCH ORGANISATION"	15-May-08 10:39 AM	

+="CN84430"	"COMCAR"	="Department of the Prime Minister and Cabinet"	15-May-08	="Passenger transport"	01-Feb-08	29-Feb-08	31529.35	=""	="COMCAR"	15-May-08 10:43 AM	

+="CN84431"	"DEPARTMENT'S ITIL AND WORKFLOW MANAGEMENT SOFTWARE MAINTENANCE"	="Department of Human Services"	15-May-08	="Business function specific software"	05-May-08	30-Jun-08	14869.80	=""	="INFRA CORPORATION PTY LTD"	15-May-08 10:47 AM	

+="CN84432"	"FIT OUT COSTS"	="Department of Human Services"	15-May-08	="Building construction and support and maintenance and repair services"	05-May-08	30-Jun-08	16796.00	=""	="RORK DESIGNS PTY LTD"	15-May-08 11:00 AM	

+="CN84433"	"SOFTWARE AND LICENCE MAINTENANCE"	="Department of Human Services"	15-May-08	="Software"	06-May-08	06-May-08	10503.77	=""	="MapInfo Australia Pty Ltd"	15-May-08 11:10 AM	

+="CN84434"	" PURCHASE OF ADDITIONAL SOFTWARE & DATA "	="Department of Human Services"	15-May-08	="Software"	06-May-08	06-May-08	26424.75	=""	="MapInfo Australia Pty Ltd"	15-May-08 11:18 AM	

+="CN84435"	"Architectural Schematic Design Services"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	27-Jul-07	30-Jun-08	18900.00	=""	="MSA & ASSOCIATES PTY LTD"	15-May-08 11:19 AM	

+="CN84436"	"Supply of Signage"	="Department of Foreign Affairs and Trade"	15-May-08	="Building and Construction and Maintenance Services"	01-Aug-07	30-Jun-08	42770.00	=""	="CUNNEEN & COMPANY PTY LTD"	15-May-08 11:19 AM	

+="CN84437"	"ADMINISTRATIVE SERVICES"	="Department of Human Services"	15-May-08	="Office administration or secretarial services"	07-May-08	07-May-08	16500.00	=""	="Careers Unlimited"	15-May-08 11:35 AM	

+="CN84438"	"TENDERER FEEDBACK BRIEF PREPARATION"	="Department of Human Services"	15-May-08	="Legal services"	11-Mar-08	30-Apr-08	67000.02	=""	="BOOZ ALLEN HAMILTON AUSTRALIA LTD"	15-May-08 11:57 AM	

+="CN84439-A1"	"Quantity Surveying Services"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	01-May-07	23-Apr-08	55000.00	=""	="RIDER LEVETT BUCKNALL ACT PTY LTD"	15-May-08 11:57 AM	

+="CN84440"	"Cost Planning Services"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	01-May-07	23-Apr-08	55000.00	=""	="RIDER LEVETT BUCKNALL ACT PTY LTD"	15-May-08 11:58 AM	

+="CN84441-A1"	"Project Management Services"	="Department of Foreign Affairs and Trade"	15-May-08	="Business administration services"	16-Oct-07	16-Jan-08	40040.00	=""	="PROJECT PLANNING ACT PTY LTD"	15-May-08 11:58 AM	

+="CN84442"	"Refurbishment Works"	="Department of Foreign Affairs and Trade"	15-May-08	="Building and Construction and Maintenance Services"	19-Sep-07	31-Dec-10	292730.00	="DFAT07/002462"	="TURNER & TOWNSEND PTY LTD"	15-May-08 12:08 PM	

+="CN84443"	" CONSULTANCY  WORK ORDER #93 "	="Department of Human Services"	15-May-08	="Legal services"	12-May-08	30-Jun-08	55000.00	=""	="BLAKE DAWSON WALDRON"	15-May-08 12:11 PM	

+="CN84444"	"Meeting room hire"	="Department of Foreign Affairs and Trade"	15-May-08	="Hotels and lodging and meeting facilities"	14-Nov-07	16-Nov-07	13000.00	=""	="RYDGES HOTELS LTD"	15-May-08 12:11 PM	

+="CN84445"	"Translation Services"	="Department of Foreign Affairs and Trade"	15-May-08	="Business administration services"	16-Oct-07	14-Nov-07	34624.48	=""	="LANGUAGE PROFESSIONALS INTERNATIONAL (AUSTRALIA) PTY LTD"	15-May-08 12:11 PM	

+="CN84446"	"Provision of Learning System (OPAL) Support"	="Department of Foreign Affairs and Trade"	15-May-08	="Computer services"	23-Aug-07	28-Aug-08	16500.00	=""	="CATALYST INTERACTIVE PTY LTD"	15-May-08 12:11 PM	

+="CN84082"	"Provision for Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	91025.00	=""	="Ross Human Directions Limited"	15-May-08 12:13 PM	

+="CN84448-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	215622.00	=""	="Ross Human Directions Limited"	15-May-08 12:25 PM	

+="CN84449"	" VEHICLE REPAIRS "	="Department of Defence"	15-May-08	="Motor vehicles"	09-Apr-08	09-May-08	23758.19	=""	="MICKS AUTOS"	15-May-08 12:29 PM	

+="CN84450"	"Furniture and Fittings"	="Department of Foreign Affairs and Trade"	15-May-08	="Furniture and Furnishings"	09-Oct-07	29-Feb-08	70557.00	="DFAT07/003486"	="IKEN COMMERCIAL INTERIORS (ACT) PTY LTD"	15-May-08 12:36 PM	

+="CN84451"	"Chancery Furniture"	="Department of Foreign Affairs and Trade"	15-May-08	="Furniture and Furnishings"	20-Nov-07	30-Jun-08	280351.00	="07/004369"	="ARC OFFICE INTERIORS PTY LTD"	15-May-08 12:37 PM	

+="CN84452"	"Chancery Project"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	10-Sep-07	31-Oct-10	1640000.00	="DFAT07/002149"	="WOODS BAGOT PTY LTD"	15-May-08 12:37 PM	

+="CN84453-A1"	"Project Works"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	23-Jan-08	30-Jun-08	107616.00	=""	="PROJECT PLANNING (ACT) PTY LIMITED"	15-May-08 12:37 PM	

+="CN84454-A2"	"Project Works"	="Department of Foreign Affairs and Trade"	15-May-08	="Professional engineering services"	23-Jan-08	31-Mar-09	176256.00	=""	="PROJECT PLANNING (ACT) PTY LIMITED"	15-May-08 12:37 PM	

+="CN84455"	"Supply & installation of new furniture"	="Department of Foreign Affairs and Trade"	15-May-08	="Furniture and Furnishings"	18-Sep-07	30-Jun-08	331808.00	="DFAT07-OPO-07/002800-2"	="SCHIAVELLO INTERNATIONAL OFFICE SYSTEMS PTY LTD"	15-May-08 12:37 PM	

+="CN84457"	"Provision of Information Technology Business Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	16-Jul-07	30-Jun-08	209000.00	=""	="Ross Human Directions Limited"	15-May-08 12:43 PM	

+="CN84458-A1"	"Language Tuition"	="Department of Foreign Affairs and Trade"	15-May-08	="Education and Training Services"	24-Sep-07	07-Mar-08	32770.00	=""	="CIT SOLUTIONS PTY LTD"	15-May-08 12:46 PM	

+="CN84459-A1"	"Language Tuition"	="Department of Foreign Affairs and Trade"	15-May-08	="Education and Training Services"	22-Oct-07	29-Feb-08	25314.20	=""	="CIT SOLUTIONS PTY LTD"	15-May-08 12:46 PM	

+="CN84460-A1"	"Language Tuition"	="Department of Foreign Affairs and Trade"	15-May-08	="Education and Training Services"	05-Nov-07	08-Aug-08	56830.40	=""	="CIT SOLUTIONS PTY LTD"	15-May-08 12:46 PM	

+="CN84461"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	15-May-08 12:49 PM	

+="CN84462-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	15-May-08 12:52 PM	

+="CN84463-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-09	207625.00	=""	="Ross Human Directions Limited"	15-May-08 12:58 PM	

+="CN84464-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	10-Mar-08	85195.00	=""	="Ross Human Directions Limited"	15-May-08 01:01 PM	

+="CN84465-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	15-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	89265.00	=""	="Ross Human Directions Limited"	15-May-08 01:04 PM	

+="CN84447"	"CONSULTANCY SERVICES"	="Department of Human Services"	15-May-08	="Audit services"	03-Apr-08	30-Jun-10	45000.00	=""	="PETER KENNEDY"	15-May-08 01:07 PM	

+="CN84466"	" Administractive Services"	="Department of the Prime Minister and Cabinet"	15-May-08	="Temporary personnel services"	02-May-08	16-May-08	18000.00	=""	="HAYS PERSONNEL SERVICES (AUST)"	15-May-08 01:26 PM	

+="CN84468"	"MODS AND REPAIRS TO A25-102."	="Defence Materiel Organisation"	15-May-08	="Military rotary wing aircraft"	15-May-08	15-Aug-08	99000.00	=""	="BAE SYSTEMS AUSTRALIA"	15-May-08 01:42 PM	

+="CN84469"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	15-May-08	="Community and social services"	01-Jul-07	30-Jun-08	18003.53	=""	="Watarru Community Inc"	15-May-08 01:56 PM	

+="CN84470"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	15-May-08	="Computer services"	30-Apr-08	29-Apr-09	17806.76	=""	="ALPHAWEST SERVICES PTY LTD"	15-May-08 02:13 PM	

+="CN84471"	" REDUNDANT LINKS FOR DHS WAN  CONTRACT VALUE WAS INITIALLY $9900.00 - FUNDS WERE INCREASED TO $10307.00 30.04.2008 "	="Department of Human Services"	15-May-08	="Components for information technology or broadcasting or telecommunications"	30-Nov-07	30-Apr-08	10307.00	=""	="Department of Finance & Deregulation"	15-May-08 02:14 PM	

+="CN84472"	"Chancery Furniture"	="Department of Foreign Affairs and Trade"	15-May-08	="Furniture and Furnishings"	21-Dec-06	31-Oct-07	756689.00	="DFATRFT104020RA"	="ARC OFFICE INTERIORS PTY LTD"	15-May-08 02:29 PM	

+="CN84474"	" HOSE ASSEMBLY NONMETALLIC P/No 1741251-01; MC 9005  QUANTITY 10 "	="Defence Materiel Organisation"	15-May-08	="Military rotary wing aircraft"	15-May-08	17-Oct-08	11397.65	=""	="AVIAQUIP PTY LTD"	15-May-08 02:46 PM	

+="CN84477"	"PAD, BELT INDIVIDUAL"	="Defence Materiel Organisation"	15-May-08	="Harnesses or its accessories"	15-May-08	30-Jun-08	62700.00	="CC1V6E"	="HUNTERS EDGE"	15-May-08 03:11 PM	

+="CN84476"	"Printing of NAT16524-5.2008 - Activity Statement Update Q4 2007. Qty: 2.86M"	="Australian Taxation Office"	15-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	02-Jun-08	70618.90	=""	="Paragon Printers"	15-May-08 03:13 PM	

+="CN84479"	"Printing of NAT2344 Understanding your 2008 HELP information stat. Qty: 1.17M"	="Australian Taxation Office"	15-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	02-Jun-08	46057.00	=""	="Canprint Communications"	15-May-08 03:18 PM	

+="CN84480"	"Labour Hire - Administrative Support"	="Department of Foreign Affairs and Trade"	15-May-08	="Human resources services"	31-Oct-07	31-Oct-08	99792.00	="DFAT 04/140893"	="PROFESSIONAL CAREERS AUSTRALIA PTY LIMITED"	15-May-08 03:19 PM	

+="CN84485"	"POCKET, AMMUNITION MAGAZINE MINIMI"	="Defence Materiel Organisation"	15-May-08	="Arms and ammunition accessories"	15-May-08	12-Sep-08	269115.00	="CC1V5P"	="Ancamaraba Pty Ltd"	15-May-08 03:40 PM	

+="CN84493"	"Load Bank, Electrical"	="Defence Materiel Organisation"	15-May-08	="Electrical equipment and components and supplies"	15-May-08	06-Jun-08	38097.40	=""	="Advanced Power Machinery"	15-May-08 04:02 PM	

+="CN84496"	"Purchase of various items of Rigging Safety equipment"	="Defence Materiel Organisation"	15-May-08	="Surveillance and detection equipment"	15-May-08	19-Jun-08	53718.95	=""	="J Blackwoods & Son Ltd"	15-May-08 04:09 PM	

+="CN84498"	"Printing of NAT15228 Envelope BRE Penrith. Qty: 8M"	="Australian Taxation Office"	15-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	30-Jun-08	128400.00	=""	="Envotec t/a Australian Envelopes"	15-May-08 04:22 PM	

+="CN84499"	"Printing of NAT15229 Envelope BRE Albury. Qty: 8M"	="Australian Taxation Office"	15-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	30-Jun-08	128400.00	=""	="Envotec t/a Australian Envelopes"	15-May-08 04:28 PM	

+="CN84501"	"Motor Vehicle Parts"	="Department of Defence"	15-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-May-08	16-Jun-08	11513.04	=""	="Volvo Commericial Vehicles"	15-May-08 04:38 PM	

+="CN84503"	"NSN 1560-00-943-4886, Harness Assembly"	="Defence Materiel Organisation"	15-May-08	="Aerospace systems and components and equipment"	17-Apr-08	22-May-08	17133.70	=""	="Milspec Services Pty Ltd"	15-May-08 04:49 PM	

+="CN84504"	"NSN 4920-66-138-3293, Air Data Test Systems"	="Defence Materiel Organisation"	15-May-08	="Aerospace systems and components and equipment"	14-May-08	24-Jun-08	195462.30	=""	="Biolab (Aust) Pty Ltd"	15-May-08 05:14 PM	

+="CN84505"	"NSN 1740-66-153-2374, Trailer, Ground Handling"	="Defence Materiel Organisation"	15-May-08	="Aerospace systems and components and equipment"	14-May-08	17-Jun-08	35002.00	=""	="Metcalfe Group Pty Ltd"	15-May-08 05:17 PM	

+="CN84507"	" SUPPLY OF CASES, MEDICAL INSTRUMENT & SUPPLY SET "	="Defence Materiel Organisation"	15-May-08	="Medical Equipment and Accessories and Supplies"	15-May-08	30-Jun-08	39996.00	=""	="DHS PTY LTD"	15-May-08 06:59 PM	

+="CN84508"	" 9150 66-093-5654  Gear Lubricating Oil  250 x20L Drums  OX-47 (Autran TO 410)  "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	10-Mar-08	17-Mar-08	22236.50	=""	="BP Australia Ltd"	16-May-08 08:12 AM	

+="CN84509"	" R3 SERVICE ON A25-207. "	="Defence Materiel Organisation"	16-May-08	="Military rotary wing aircraft"	16-May-08	29-Aug-08	330000.00	=""	="BAE SYSTEMS AUSTRALIA"	16-May-08 08:19 AM	

+="CN84510-A1"	" 9150 66-056-7026  Engine Lubricating Oil   12500 LI  OMD 113 Bulk Pumping into RAN Vessel "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	11-Mar-08	15-Mar-08	44272.20	=""	="CASTROL"	16-May-08 08:26 AM	

+="CN84514"	" 9150 66-035-7879  Petroleum base Hydraulic Fluid  40 x205L Drums OM-33 "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	18-Mar-08	06-Apr-08	39986.79	=""	="Fuchs"	16-May-08 08:37 AM	

+="CN84553-A2"	"Preparation and delivery of a training and mentoring program for building a Lucid Key for key plant pathogens for agriculture in the Philippines, comprising an initial 5-day training program, remote mentoring and exchange visit by consultant."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Oct-07	29-Feb-08	20274.00	=""	="State of Queensland through the Department of Primary Industries and Fisheries"	16-May-08 08:41 AM	

+="CN84554"	" 1. 9150 66-017-3041 Engine Lubricating Oil OMD 115 50X205L Drums  2. 915066-1355-5787 Petroleum Base Hydraulic Fluid  Super Tractor Oil 35x20L drums    "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	26-Mar-08	02-Apr-08	30190.05	=""	="CALTEX"	16-May-08 08:54 AM	

+="CN84555"	" 9150 66-068-0440   Engine Lubricating Oil OMD 113  30x205L Drums    "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	17-Mar-08	25-Mar-08	19801.64	=""	="CASTROL"	16-May-08 09:00 AM	

+="CN84556"	" VEHICLE REPAIRS "	="Department of Defence"	16-May-08	="Motor vehicles"	06-Mar-08	06-Apr-08	22873.18	=""	="ALLCOCK CRASH REPAIRS"	16-May-08 09:19 AM	

+="CN84562"	"Printing of NAT70990 - GST Rulings Update. Qty: 2,047,000"	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	02-Jun-08	37169.00	=""	="Canprint Communications"	16-May-08 09:57 AM	

+="CN84566"	"Printing of NAT4203 GST calculation worksheet for BAS. Qty: 2,290,000."	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	02-Jun-08	36264.80	=""	="Paragon Printers"	16-May-08 10:02 AM	

+="CN84568"	"Printer, Automatic Data Process"	="Defence Materiel Organisation"	16-May-08	="Computer printers"	07-May-08	28-May-08	71400.00	=""	="PEACOCK BROS"	16-May-08 10:06 AM	

+="CN84497"	"Restaurant and catering services"	="Australian Research Council"	16-May-08	="Catering services"	14-Apr-08	18-Apr-08	18389.00	=""	="Sintra Cafe & Bar"	16-May-08 10:06 AM	

+="CN84495"	"Legal Services"	="Australian Research Council"	16-May-08	="Legal services"	23-Apr-08	30-Jun-08	30000.00	=""	="Australian Govenment Solicitor"	16-May-08 10:08 AM	

+="CN84494-A1"	"Rent to 31 May 2015 2nd floor 18 Brindabella Park, Canberra Airport"	="Australian Research Council"	16-May-08	="Real estate services"	15-Feb-08	31-May-15	3451279.87	=""	="Canberra International Airport"	16-May-08 10:10 AM	

+="CN84572-A3"	" 07/2512 - Medical Services "	="Australian Customs and Border Protection Service"	16-May-08	="Emergency and field medical services products"	16-Jul-08	31-Aug-11	6470000.00	=""	="International SOS (Australasia) Pty Ltd"	16-May-08 10:14 AM	

+="CN84492-A2"	"Provision of IT Equipment and services"	="Australian Research Council"	16-May-08	="Computer services"	10-Apr-08	18-Apr-08	24000.00	=""	="Hire Intelligence"	16-May-08 10:14 AM	

+="CN84490-A2"	"Web Developer to assist in the development of a new application and GMS"	="Australian Research Council"	16-May-08	="Computer services"	01-Apr-08	30-Sep-08	32374.00	=""	="Agile Digital Engineering"	16-May-08 10:20 AM	

+="CN84577"	"Printing of NAT4138-05.2008 Checklist for people starting a new business. Qty: 600,000"	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	02-Jun-08	59118.40	=""	="Paragon Printers"	16-May-08 10:20 AM	

+="CN84489-A2"	"Project Manager for the development of the ARC's ARQES and other associated functionality"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	29-Aug-08	96921.00	=""	="Rainier Pty Ltd"	16-May-08 10:23 AM	

+="CN84581"	"PRINTER, AUTOMATIC DATA PROCESS"	="Defence Materiel Organisation"	16-May-08	="Computer printers"	13-Mar-08	12-Apr-08	71412.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	16-May-08 10:23 AM	

+="CN84582-A1"	"Project Management of Capital Works - Port Moresby"	="Australian Federal Police"	16-May-08	="Project management"	14-Apr-08	10-Dec-08	742013.00	=""	="Manteena Pty Ltd"	16-May-08 10:24 AM	

+="CN84488-A1"	"Business Analyst for the development of ARC's Quality and Evaluation System"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	20-Feb-09	233200.00	=""	="Greythorn Pty Ltd"	16-May-08 10:25 AM	

+="CN84585-A1"	" VEHICLE REPAIRS "	="Department of Defence"	16-May-08	="Motor vehicles"	16-May-08	16-Jun-08	18977.20	=""	="MICKS AUTOS"	16-May-08 10:31 AM	

+="CN84593-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	16-May-08	="Project management"	01-Apr-08	11-Jul-08	936529.00	=""	="Manteena Pty Ltd"	16-May-08 10:43 AM	

+="CN84592-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-May-08	="Motor vehicles"	16-May-08	16-Jun-08	25677.30	=""	="MICKS AUTOS"	16-May-08 10:44 AM	

+="CN84587"	" Purchase of various list of Spares for 114MCRU "	="Defence Materiel Organisation"	16-May-08	="Surveillance and detection equipment"	15-May-08	18-Dec-08	155783.29	=""	="BAE SYSTEMS"	16-May-08 10:47 AM	

+="CN84598-A1"	"Bizhub C451 multifunction centre for Broadband Div"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Office Equipment and Accessories and Supplies"	01-May-08	15-May-08	11598.40	="ATM08/997"	="KONICA AUSTRALIA PTY LTD"	16-May-08 10:55 AM	

+="CN84599"	"Represent Australia at OECD workshop"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	30-Apr-08	14850.00	="DCON/07/01"	="Eckermann & Associates"	16-May-08 10:56 AM	

+="CN84600"	"Purchase of WRAP modules for RS & T Branch Mapping Room"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Engineering and Research and Technology Based Services"	29-Apr-08	30-Jun-08	25500.00	="ATM08/986"	="WRAP International AB"	16-May-08 10:56 AM	

+="CN84602"	"Airconditioning Unit - 1st Floor Burns Centre Comms Room"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	22-Apr-08	30-Jun-08	24090.00	="ATM08/994"	="TRANE AUSTRALIA"	16-May-08 10:56 AM	

+="CN84603-A4"	"Legal advice-National Broadband Network project"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	24-Apr-08	30-Jun-09	3392482.89	="DCON/06/45"	="CORRS CHAMBERS WESTGARTH"	16-May-08 10:56 AM	

+="CN84604-A1"	"Engage contract staff"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Office Equipment and Accessories and Supplies"	02-Jul-08	30-Jun-09	55230.06	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	16-May-08 10:56 AM	

+="CN84605"	"LegalNet Licences Round 2"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	04-Apr-08	01-Nov-08	13522.50	="ATM07/486"	="Nsynergy International Pty Ltd"	16-May-08 10:56 AM	

+="CN84606"	"Print media advertisement x 9 EOI E-Security awareness week - GCUADV2002-03"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	22-Apr-08	13478.16	="ATM08/989"	="HMA BLAZE PTY LTD"	16-May-08 10:56 AM	

+="CN84607"	"PCMS Software maintenance"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	25487.00	="ATM08/988"	="IBM GLOBAL SERVICES AUST LTD"	16-May-08 10:57 AM	

+="CN84608"	"SAP Productivity and workshops"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	79970.00	="CCR/07/100"	="SAP AUSTRALIA PTY LTD"	16-May-08 10:57 AM	

+="CN84609"	"New Ses office, Level 2 44 Syd"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Building and Construction and Maintenance Services"	25-Apr-08	31-May-08	32516.00	="DCON/05/225"	="ISIS INTERIORS"	16-May-08 10:57 AM	

+="CN84610-A1"	"Consultancy - ICT services transition Plan"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	51645.00	="DCON/05/53"	="WALTER TURNBULL"	16-May-08 10:57 AM	

+="CN84612"	"Artbank lines until February 2008"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	30-Jun-08	24546.01	="CCR/07/3122"	="Optus Billing Services Pty Ltd"	16-May-08 10:57 AM	

+="CN84615-A1"	"Telstra Appeal to Federal Court"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	22-Oct-07	30-Jun-09	204121.13	="DCON/06/45"	="Clayton Utz"	16-May-08 10:58 AM	

+="CN84618"	"Provide assistance and advice to AQIS, to ensure that staff undertaking activities related to  commodities that may have been fumigated, are provided with a workplace free of risk to their health and safety."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	22-Apr-08	30-Jun-08	39600.00	=""	="Hartman Thomas Pty Ltd"	16-May-08 11:01 AM	

+="CN84619"	"Partnership Contribution to Greening Australia to cover costs associated with the participation in the Veg Partners Group"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	11000.00	=""	="Greening Australia"	16-May-08 11:01 AM	

+="CN84620"	"Laboratory diagnostic analysis of animal samples in Indonesia for agreed diseases."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	08-May-08	30-Jun-08	33000.00	=""	="CSIRO"	16-May-08 11:01 AM	

+="CN84621-A1"	"Placement of 18 x Part-Time Quarantine & Export Inspectors. Commenced 25 Feb 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	25-Feb-08	12-May-08	35640.00	=""	="Hoban Recruitement"	16-May-08 11:01 AM	

+="CN84622-A1"	"Placement of 14 x Quarantine & Export Inspectors. Commencing April 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	01-Apr-08	12-May-08	27720.00	=""	="Hoban Recruitement"	16-May-08 11:01 AM	

+="CN84623"	"Architectural design and documentation for the new AQIS accommodation in Collie Street, Fyshwick ACT."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Dec-08	24750.00	=""	="DNA Architects"	16-May-08 11:01 AM	

+="CN84624"	"Subscription renewal"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	01-May-08	26-Jun-09	42735.00	=""	="Gartner Australasia Pty Ltd"	16-May-08 11:01 AM	

+="CN84625"	"Temporary Contractor"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-Jul-08	31-Dec-08	32000.00	=""	="Careers Unlimited"	16-May-08 11:01 AM	

+="CN84626"	"Investigation of current computer environment (LAN/WAN and computer room) and the creation and delivery of a TRA for the DAFF network."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	12-May-08	27-Jun-08	31700.00	=""	="Stratsec Pty Ltd"	16-May-08 11:01 AM	

+="CN84627"	"Supply of veterinary drugs"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-Jul-08	59400.00	=""	="Parnell Laboratories"	16-May-08 11:02 AM	

+="CN84628"	"Security Clearance Assessments"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	01-May-08	30-Jun-09	20000.00	=""	="Persec Solutions"	16-May-08 11:02 AM	

+="CN84629-A1"	"Consultancy and training for people with disability."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	27-May-08	27-May-09	11000.00	=""	="The Australian Employer's Network on Disability"	16-May-08 11:02 AM	

+="CN84631"	"Recruitment services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	03-Mar-08	30-Apr-08	18150.00	=""	="Hudson Global Resources"	16-May-08 11:02 AM	

+="CN84633-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	07-Mar-08	30-Jun-08	40000.00	=""	="Environment Protection Authority South Australia"	16-May-08 11:02 AM	

+="CN84634-A1"	"Contractor Ana Mogaldeanu"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-May-08	09-Jan-09	60000.00	=""	="Careers Unlimited Pty Ltd"	16-May-08 11:03 AM	

+="CN84635-A1"	"Detector Dog Courier"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	10822.60	=""	="It's a Dogs Life Boarding & Breeding Kennels"	16-May-08 11:03 AM	

+="CN84636"	"Recruitment for Snr Plant Pathologist, advertising: Melbourne Age, Australian, Canberra Times, Aus. Plant Pathology online, New Scientist."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Computer services"	11-Apr-08	12-Apr-08	17714.74	=""	="HMA Blaze Pty Ltd"	16-May-08 11:03 AM	

+="CN84637-A1"	"Provision to the Bureau of project management services relating to the drilling of investigation bores, logging of bore data and lab testing within the River Murray Corridor to validate and identify salt deposits in the Murray Darling Basin."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	2209350.00	=""	="Sunraysia Environmental Pty Ltd"	16-May-08 11:03 AM	

+="CN84638-A1"	"To undertake field surveillance and testing of Bats in Papua New Guinea (PNG) and Indonesdia to test for Nipah Virus in 2008."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	26-Mar-08	25-Sep-08	135000.00	=""	="Andrew Breed"	16-May-08 11:03 AM	

+="CN84639"	"To procure the services of CSIRO to undertake field surveillance for exotic pests of bees in Papua New Guinea and Indonesia"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	09-May-08	31-Aug-08	98500.00	=""	="CSIRO Division of Entomology"	16-May-08 11:03 AM	

+="CN84640"	"Advertising of the 2010 Graduate Development Program to potential applicants during the 2009 promotion and marketing campaign January - April 2009. GradCareers is a graduate specific publication that is distributed to University Careers Services and at Careers Fairs to promote employers in the public and private sectors."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	06-May-08	31-May-09	16940.00	=""	="Hobsons Australia trading as Hobsons Guides - GradCareers"	16-May-08 11:03 AM	

+="CN84641"	"Advertising of the 2010 Graduate Development Program to potential applicants during the 2009 promotion and marketing campaign January - April 2009. GradCareers is a graduate specific publication that is distributed to University Careers Services and at Careers Fairs to promote employers in the public and private sectors."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	08-May-08	31-May-09	12980.00	=""	="Graduate Careers Australia Ltd - Graduate Opportunities"	16-May-08 11:04 AM	

+="CN84643"	"Sabdy Hayman - Information technology services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	09-May-08	30-Jun-08	33000.00	=""	="Pegasus IT Consulting Pty Ltd"	16-May-08 11:04 AM	

+="CN84645"	"07/10 ARC Linkages project"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	22000.00	=""	="University of Wollongong"	16-May-08 11:04 AM	

+="CN84646"	"Switchboard operators for April 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-Apr-08	30-Apr-08	23841.28	=""	="Sirius Corporation Ltd"	16-May-08 11:04 AM	

+="CN84647"	"18 Marcus Clarke St call costs for Apr 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	21072.93	=""	="AAPT Limited"	16-May-08 11:04 AM	

+="CN84648"	"National Landcare Facilitation Project"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	68958.00	=""	="Marian Partners Australia"	16-May-08 11:04 AM	

+="CN84649"	"Conference calls to 08 Apr 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Telecommunications media services"	19-Mar-08	18-Apr-08	15239.70	=""	="AAPT Limited"	16-May-08 11:05 AM	

+="CN84650"	"Training"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	10-Jun-08	10-Jun-08	10688.00	=""	="Multimedia Languages and Marketing"	16-May-08 11:05 AM	

+="CN84651"	"to conduct an independent review of the role and activities of the Subcommittee on Plant Health Diagnostic Standards (SPHDS)"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	06-May-08	15-Jun-08	11000.00	=""	="Kalang Consultancy Services"	16-May-08 11:05 AM	

+="CN84652-A1"	"Data validation and capture"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Sep-07	31-May-08	25300.00	=""	="The Northern Territory of Australia Departmant of Primary Industries, Fisheries and Mines"	16-May-08 11:05 AM	

+="CN84653"	"Purchased "Gold" sponsorship of "Innovation Generation" Conference 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	18-Jul-08	20000.00	=""	="Grain Growers Association Limited"	16-May-08 11:05 AM	

+="CN84654-A1"	"Facilitation services for the National Rural Financial Counselling Conference 2008."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Nov-07	30-Jun-08	23567.50	=""	="Garland Outcomes"	16-May-08 11:05 AM	

+="CN84655"	"AQIS Additional Comms Backbone Provisions"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-May-08	39972.90	=""	="Brisbane Airport Corporation"	16-May-08 11:05 AM	

+="CN84656"	"Blackberry access and charges to 19 Mar 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	19-Mar-08	13876.94	=""	="Telstra Corporation Limited"	16-May-08 11:05 AM	

+="CN84657"	"Accommodation"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Personal and Domestic Services"	01-May-08	28-Feb-09	88000.00	=""	="Liberal Party of Australia ACT Division Incorporated"	16-May-08 11:06 AM	

+="CN84658"	"Diagnostic testing of biological samples"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	29-May-08	27026.08	=""	="CSIRO"	16-May-08 11:06 AM	

+="CN84659"	"Printing and Distribution of Avian Influenza Feed Scoops"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	12-May-08	30-May-08	16621.00	=""	="Fjord Manufacturing"	16-May-08 11:06 AM	

+="CN84661"	"Print and update Lonely Planet Guides"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	15-May-08	15-Jun-08	75350.00	=""	="Lonely Planet"	16-May-08 11:06 AM	

+="CN84662"	"Monthly support for ARC and GMS databases. Hosting services and support for ARC Central website."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-May-08	31-Oct-08	12210.00	=""	="F1 Solutions Pty Ltd"	16-May-08 11:06 AM	

+="CN84663"	"Talent rollover of Big Bugs Talent TV/Print"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	20-Apr-08	20-Jul-08	11601.70	=""	="KWP Advertising Pty Ltd"	16-May-08 11:06 AM	

+="CN84664"	"Provision of Supervisory Management Training for the AQIS Management and Development Program"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	16-May-08	05-May-09	40000.00	=""	="Swinburne University of Technology"	16-May-08 11:06 AM	

+="CN84666"	"Provide to the Bureau a qualitative segmentation study of people's perceptions (as part of the Cegedim Climate Survey) on climate change, climate variability, coping and adaptive capacity of primary industries and regional communities in drought effected areas."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	21000.00	=""	="Cegedim Strategic Data"	16-May-08 11:07 AM	

+="CN84667"	"Staff Domestic Accommodation"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Passenger transport"	10-Mar-08	16-Apr-08	10175.00	=""	="Best Western Karratha Central Apartments"	16-May-08 11:07 AM	

+="CN84668-A1"	"Recruitement HR professional services."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	11-Jan-08	10488.00	=""	="Task Solutions"	16-May-08 11:07 AM	

+="CN84669"	"CHS Plant Pathology: Services and Technical advice 2007/2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	18000.00	=""	="Agriculture Victoria Services Pty Ltd"	16-May-08 11:07 AM	

+="CN84670"	"Entomology Services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	30-Jun-08	30-Jun-11	331923.00	=""	="CSIRO"	16-May-08 11:07 AM	

+="CN84671-A1"	"Placement of 16 x Full-Time Quarantine & Export Inspectors. Commenced 3/03/2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	03-Mar-08	12-May-08	31680.00	=""	="Hoban Recruitement"	16-May-08 11:07 AM	

+="CN84672"	"Legal fees for Mango IRA"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Legal services"	12-May-08	12-May-09	10000.00	=""	="Minter Ellison"	16-May-08 11:07 AM	

+="CN84673"	"Provision of contract staff for Sydney International Terminal: Baggage Handlers & Admin."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-May-08	30-Jun-08	990000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	16-May-08 11:07 AM	

+="CN84674-A1"	"Room hire and catering for National Conference for 180 people for 3 days.11-13/06/08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	14-Jun-08	55000.00	=""	="Adelaide Convention Centre"	16-May-08 11:08 AM	

+="CN84675"	"Legal Fees for Paprika IRA"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Legal services"	12-May-08	12-May-09	10000.00	=""	="Minter Ellison"	16-May-08 11:08 AM	

+="CN84676"	"Printing of publication - Australian Food Statistics 2007"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	22-May-08	30-Jun-08	21927.40	=""	="New Millenium Print"	16-May-08 11:08 AM	

+="CN84692"	"Extra construction works at Ringwood"	="Centrelink"	16-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	16-May-08	18-May-08	22401.50	=""	="Pirotta Services Pty Ltd"	16-May-08 11:49 AM	

+="CN84486-A1"	"IT developer for the development of ARC's Quality and Evaluation System (ARQES)"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	30-Jun-08	65824.00	=""	="Greythorn Pty Ltd"	16-May-08 11:52 AM	

+="CN84698"	"  Facilitation services for Marketing Communication   capability workshops.  "	="Australian Taxation Office"	16-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	26675.00	="06.028-62"	="Noetic Solutions P/L"	16-May-08 12:06 PM	

+="CN84483-A1"	"IT developer for the development of ARC's Quality and Evaluation System (ARQES)"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	25-Feb-09	244005.00	=""	="Peoplebank Australia Pty Ltd"	16-May-08 12:13 PM	

+="CN84481-A1"	"Storage of Records and information management"	="Australian Research Council"	16-May-08	="Document storage services"	17-Mar-08	30-Jun-10	60000.00	=""	="Iron Mountain Aust t/a Pickfords"	16-May-08 12:14 PM	

+="CN84478-A1"	"Assist in Development of Stategic Plan"	="Australian Research Council"	16-May-08	="Strategic planning consultation services"	15-Feb-08	30-Apr-08	15125.00	=""	="Perform Group"	16-May-08 12:16 PM	

+="CN84475-A2"	"Bibliometric Analysis"	="Australian Research Council"	16-May-08	="Computer services"	01-Feb-08	11-Jul-08	11000.00	=""	="Australian National University"	16-May-08 12:19 PM	

+="CN84703"	" DUCT ASSEMBLY, AIR CONITIONING-HEATING, AIRCRAFT  NSN - 1660/14386877 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	01-May-08	13-May-08	23370.80	=""	="Milspec Services Pty Ltd"	16-May-08 12:51 PM	

+="CN84704"	" SUPPORT, STRUCTURAL COMPONENT, AIRCRAFT  NSN - 1560/13575947 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	28-Apr-08	06-Sep-08	20610.00	=""	="Milspec Services Pty Ltd"	16-May-08 12:57 PM	

+="CN84705"	" NUT, AIRCRAFT PROPELLER HUB  NSN - 1610/007095395 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	07-May-08	21-May-08	12516.00	=""	="AEROSPACE COMPOSITES PTY LTD"	16-May-08 01:01 PM	

+="CN84706"	"Supply and installation data cabling"	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	34710.50	="37-2005"	="Absolute Cabling Systems Pty Ltd"	16-May-08 01:05 PM	

+="CN84707"	" HOUSING, LIQUID PUMP  NSN - 1650/007177235 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	08-May-08	29-May-08	11530.00	=""	="FLITE PATH PTY LTD"	16-May-08 01:06 PM	

+="CN84708"	"motor vehicle spare parts"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	66865.92	=""	="LANDROVER"	16-May-08 01:56 PM	

+="CN84709-A4"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	19-Jun-06	30-Jun-09	466400.00	=""	="Paxus Australia Pty Limited"	16-May-08 01:58 PM	

+="CN84710"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	32038.89	=""	="LANDROVER"	16-May-08 02:01 PM	

+="CN84712"	" Physical Security Equipment "	="Department of Foreign Affairs and Trade"	16-May-08	="Building and Construction Machinery and Accessories"	22-Jun-07	30-Jun-08	146009.00	=""	="AVON BARRIER CO LTD"	16-May-08 02:04 PM	

+="CN84711-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Mar-07	22-Aug-08	354200.00	=""	="Greythorn Pty Ltd"	16-May-08 02:04 PM	

+="CN84713"	" Project management and superintendency services "	="Department of Foreign Affairs and Trade"	16-May-08	="Architectural engineering"	01-Jul-07	30-Apr-08	129920.00	=""	="PROJECT PLANNING (ACT) PTY LTD"	16-May-08 02:23 PM	

+="CN84714"	"Motore Vehicle Parts"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	15713.67	=""	="Volvo Commerical Vehicles"	16-May-08 02:45 PM	

+="CN84715"	" Management of Property Services Tender "	="Department of Foreign Affairs and Trade"	16-May-08	="Management advisory services"	12-Feb-07	30-Sep-07	268577.00	="06/110378"	="GROSVENOR MANAGEMENT CONSULTING PTY. LTD."	16-May-08 02:47 PM	

+="CN84716"	"Annual Maintenance of Warehouse Miner Software"	="Australian Taxation Office"	16-May-08	="Software maintenance and support"	01-Apr-08	31-Mar-09	76154.10	=""	="Teradata Australia Pty Ltd"	16-May-08 02:51 PM	

+="CN84717"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	31-Dec-07	138600.00	=""	="Greythorn Pty Ltd"	16-May-08 03:01 PM	

+="CN84720"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	30-Nov-07	30-Nov-07	13526.26	=""	="Qantas Airways"	16-May-08 03:03 PM	

+="CN84723"	" Provision of the automated smartraveller telephone service "	="Department of Foreign Affairs and Trade"	16-May-08	="Business administration services"	01-Dec-06	30-Nov-07	118250.00	="DFAT05/100261"	="CENTRELINK (COMMONWEALTH SERVICES DELIVERY AGENCY)"	16-May-08 03:06 PM	

+="CN84724"	" Airfare "	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	02-Dec-07	02-Dec-07	10143.77	=""	="Qantas Airways"	16-May-08 03:08 PM	

+="CN84725"	"IT Infrastructure tender development"	="Administrative Appeals Tribunal"	16-May-08	="Information technology consultation services"	12-May-08	30-May-08	10010.00	=""	="Qirx Pty Ltd"	16-May-08 03:12 PM	

+="CN84727"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	12764.62	=""	="Qantas Airways"	16-May-08 03:12 PM	

+="CN84726-A2"	"Provisions for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	208780.00	=""	="Greythorn Pty Ltd"	16-May-08 03:13 PM	

+="CN84728-A3"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	453200.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:16 PM	

+="CN84731"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	12828.97	=""	="Qantas Airways"	16-May-08 03:17 PM	

+="CN84730-A2"	" Fitout of part of Level 8 Terrica Place and part of ground floor 340 Adelaide Street Brisbane QLD "	="Centrelink"	16-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Apr-08	30-Jun-08	88643.50	=""	="PREMIS SOLUTIONS PTY LTD"	16-May-08 03:17 PM	

+="CN84732"	"Vehicle driver training course"	="Australian Federal Police"	16-May-08	="Vehicle driving schools services"	03-May-08	04-May-08	16700.00	="05-2005"	="Transport Industries Skills Centre INC"	16-May-08 03:17 PM	

+="CN84733-A1"	" Production of Booklets: Smartraveller Campaign "	="Department of Foreign Affairs and Trade"	16-May-08	="Management and Business Professionals and Administrative Services"	07-May-07	30-Nov-09	1645000.00	=""	="LONELY PLANET PUBLICATIONS PTY. LIMITED"	16-May-08 03:17 PM	

+="CN84738"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	15948.68	=""	="Qantas Airways"	16-May-08 03:20 PM	

+="CN84737"	"Provisions for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	162250.00	=""	="Greythorn Pty Ltd"	16-May-08 03:20 PM	

+="CN84743-A3"	"Provision for Information Technology Services (previously published as GAPS ID 1610331)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	668800.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:22 PM	

+="CN84747"	" Airfare "	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	15948.68	=""	="Qantas Airways"	16-May-08 03:23 PM	

+="CN84748-A4"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	08-Jan-07	30-Jun-09	434500.00	=""	="Greythorn Pty Ltd"	16-May-08 03:25 PM	

+="CN84750-A5"	"Provision for Information Technology Services (previously published under GAPS ID 1608182)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	707652.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:27 PM	

+="CN84752"	"SERVICE LARVI CCBA"	="Department of Defence"	16-May-08	="Safety and rescue vehicles"	09-Apr-08	12-May-08	21538.00	=""	="DRAGER SAFETY"	16-May-08 03:27 PM	

+="CN84751"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	21-Jan-08	21-Jan-08	12877.92	=""	="Qantas Airways"	16-May-08 03:28 PM	

+="CN84749"	" Budget and Administrative Services "	="Department of Foreign Affairs and Trade"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	95000.00	=""	="ICON RECRUITMENT PTY LTD"	16-May-08 03:30 PM	

+="CN84753-A3"	"Provision for Information Technology Specialist Services (previously published as GAPS ID 1610361)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	620400.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:31 PM	

+="CN84754"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	22-Jan-08	22-Jan-08	10712.77	=""	="Qantas Airways"	16-May-08 03:31 PM	

+="CN84755"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	22-Jan-08	22-Jan-08	11255.18	=""	="Qantas Airways"	16-May-08 03:33 PM	

+="CN84756"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	05-Feb-08	05-Feb-08	10209.08	=""	="Qantas Airways"	16-May-08 03:37 PM	

+="CN84757-A2"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	24-Jul-06	30-Jun-09	649000.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:38 PM	

+="CN84760-A4"	" Provisions for Information Technology Specialist Services (previously published as GAPS ID 1607003) "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	09-Apr-09	660000.00	=""	="Greythorn Pty Ltd"	16-May-08 03:46 PM	

+="CN84767"	"Bag Canvas"	="Department of Defence"	16-May-08	="Canvas bags"	12-May-08	16-Jun-08	23100.00	=""	="JOBECK Pty Ltd"	16-May-08 03:53 PM	

+="CN83747"	"Climate control maintenance"	="Australian Securities and Investments Commission"	16-May-08	="Heating and ventilation and air circulation"	04-Dec-07	03-Dec-10	14535.00	=""	="Emerson"	16-May-08 03:54 PM	

+="CN84771-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	358462.50	=""	="Paxus Australia Pty Limited"	16-May-08 04:03 PM	

+="CN84773"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	16-May-08	="Legal services"	01-May-08	30-Jun-08	48000.00	=""	="Sofronoff, Walter"	16-May-08 04:10 PM	

+="CN84774-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	653400.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:11 PM	

+="CN84775-A3"	"Provision for Information Technlogy Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	712800.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:12 PM	

+="CN84776-A3"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	13-Jun-06	30-Jun-09	562029.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:15 PM	

+="CN84777-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	10-Jul-06	30-Jun-09	656260.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:17 PM	

+="CN84778-A5"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	11-Dec-06	30-Jun-09	541200.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:18 PM	

+="CN84779"	"Provision of services relating to administrative support"	="Australian Federal Police"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	64521.60	=""	="Compas Pty Ltd"	16-May-08 04:20 PM	

+="CN84781-A4"	"Provision for Information Technology Specialist Services (previously published as GAPS ID 1607739)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jan-09	647900.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:21 PM	

+="CN84780-A4"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	24-Jun-06	30-Jun-09	477312.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:21 PM	

+="CN84782-A6"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	01-May-09	880374.00	=""	="Greythorn Pty Ltd"	16-May-08 04:24 PM	

+="CN84784"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	11-Sep-06	30-Sep-07	215380.00	=""	="Greythorn Pty Ltd"	16-May-08 04:27 PM	

+="CN84786-A2"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	17-Jul-06	28-Feb-08	405350.00	=""	="Greythorn Pty Ltd"	16-May-08 04:30 PM	

+="CN84787"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	31-Jul-06	30-Jun-08	482900.00	=""	="Greythorn Pty Ltd"	16-May-08 04:33 PM	

+="CN84788-A1"	"Provision of IT security management services"	="Australian Securities and Investments Commission"	16-May-08	="Information technology consultation services"	02-Jan-08	31-Mar-08	49368.00	=""	="Shearwater Solutions P/L"	16-May-08 04:33 PM	

+="CN84789-A2"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	422400.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:36 PM	

+="CN84790"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	04-Apr-07	30-Jun-08	302500.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:37 PM	

+="CN84791-A2"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	13-Jun-06	30-Jun-08	649700.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:40 PM	

+="CN84792"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	12-Mar-07	30-Jun-08	262350.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:43 PM	

+="CN84793"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	417230.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:45 PM	

+="CN84794"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	21-Mar-07	30-Jun-08	162580.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:46 PM	

+="CN84795"	"Review of corporate services functions to identify efficiencies."	="Administrative Appeals Tribunal"	16-May-08	="Business and corporate management consultation services"	22-Apr-08	30-Jun-08	82500.00	=""	="PriceWaterhouseCoopers"	16-May-08 04:48 PM	

+="CN84796-A5"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	04-Sep-06	30-Jun-09	692874.00	=""	="Greythorn Pty Ltd"	16-May-08 04:49 PM	

+="CN84797-A5"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	09-May-07	30-Jun-09	525525.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:51 PM	

+="CN84798-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	20-Feb-08	325600.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:56 PM	

+="CN84800"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	03-Jul-06	30-Jun-08	325000.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:00 PM	

+="CN84801"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	09-Nov-06	30-Jun-08	291500.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:03 PM	

+="CN84802"	"Printing of NAT11032-07.2007."	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	26-Jun-08	29927.70	=""	="Paragon Printers"	16-May-08 05:04 PM	

+="CN84803-A2"	"  Provisions for Web Publishing Services  "	="Department of Immigration and Citizenship"	16-May-08	="World wide web WWW site design services"	21-Aug-07	30-Jun-08	217790.00	=""	="Tactics Consulting Pty. Limited"	16-May-08 05:04 PM	

+="CN84804"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	16-Apr-07	30-Jun-08	264110.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:05 PM	

+="CN84805"	" Cisco chassis & routers and associated equipment  "	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	14-May-08	16-Jun-08	1365011.21	=""	="Dimension Data Australia Pty Ltd"	16-May-08 05:18 PM	

+="CN84806"	" Cythernet Ethernet Equipment and Cypher Manager Software Licences "	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	14-May-08	16-Jun-08	1180768.60	=""	="Senetas Security Pty Ltd"	16-May-08 05:38 PM 

--- a/admin/partialdata/14Nov2007to18Nov2007valto.xls
+++ b/admin/partialdata/14Nov2007to18Nov2007valto.xls
@@ -254,7 +254,7 @@
 ="CN46513"	"Secure LAN facilities for ICON RFT project"	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Insurance and retirement services"	06-Nov-07	31-May-08	26290.12	=""	="MBITS - Managed Business IT Solutions"	15-Nov-07 02:02 PM	
 ="CN46515"	"Business Analyst"	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management advisory services"	01-Nov-07	01-Feb-08	14960.00	=""	="Dialog Information Technology"	15-Nov-07 02:02 PM	
 ="CN46517-A1"	"Provision of recruitment services for the 2009 Traineeship Programme."	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Human resources services"	31-Oct-07	29-Feb-08	18053.00	=""	="Ross Human Directions Limited"	15-Nov-07 02:03 PM	
-="CN46518"	"To facilitate negotiations and implement Resource Sharing agreements in Australia's Tuna and Billfish fisheries. The consultant activities are as follows:1. Review existing options (research & interpretation)2. Consultation with stakeholders to identify views and positions (facilitation)3. Collate data, analyse data and prepare draft revised agreements between parties (research)4. Consultations to present, discuss and refine agreements between parties (facilitation)5. Further develop/refine agreements and implementation capabilities6. Consultation to finalise agreements and implementation capabilities7. Written report to Government on matters arising from the agreement and implementation.The key output of these activities will be revised recommendations for  resource sharing arrangement in the WTBF and the ETBF based on successful stakeholder consultation."	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management advisory services"	25-Oct-07	25-Oct-08	10843.69	=""	="Ewan Colquhoun, RidgePartners"	15-Nov-07 02:03 PM	
+="CN46518"	"To facilitate negotiations and implement Resource Sharing agreements in Australia's Tuna and Billfish fisheries. "	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management advisory services"	25-Oct-07	25-Oct-08	10843.69	=""	="Ewan Colquhoun, RidgePartners"	15-Nov-07 02:03 PM	
 ="CN46519"	"Sample Analysis - Foreign Certificate Audit"	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Apr-08	50000.00	=""	="National Measurement Institute"	15-Nov-07 02:03 PM	
 ="CN46520"	"Sample Analysis - Foreign Certificate Audit"	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Apr-08	20000.00	=""	="Silliker Microtech Pty Ltd"	15-Nov-07 02:03 PM	
 ="CN46521"	"Assessing the feasibility of stereo video and evaluating monitoring options for the southern bluefin tuna farm sector"	="Department of Agriculture Fisheries and Forestry"	15-Nov-07	="Management advisory services"	01-Jul-07	31-Dec-07	22000.00	=""	="Australian Southern Bluefin Tuna Industry Association"	15-Nov-07 02:03 PM	

--- /dev/null
+++ b/admin/partialdata/15Jun2008to17Jun2008valto.xls
@@ -1,1 +1,786 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN90770-A1"	" VEHICLE REPAIRS "	="Department of Defence"	16-Jun-08	="Motor vehicles"	22-May-08	22-Jun-08	22002.64	=""	="FB AUTOS"	16-Jun-08 08:33 AM	

+="CN90771"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jun-08	="Motor vehicles"	04-Jun-08	04-Jul-08	15694.25	=""	="TOWNSVILLE IND. PAINTING & COATING"	16-Jun-08 08:39 AM	

+="CN90772"	"Provision of Application Development Services"	="Family Court of Australia"	16-Jun-08	="Information technology consultation services"	12-Jun-08	11-Jun-09	210000.00	=""	="Infrastructure Specialist Group"	16-Jun-08 08:55 AM	

+="CN90773"	" PROVISION OF DRINKING SYSTEM VALVES  "	="Defence Materiel Organisation"	16-Jun-08	="Personal care products"	02-Jun-08	09-Jun-08	17600.00	=""	="NETTI ATOM PTY LTD"	16-Jun-08 09:05 AM	

+="CN73712"	"REFURBISHMENT"	="Office of the Official Secretary to the Governor-General"	16-Jun-08	="Refurbishing services"	01-Feb-08	01-Mar-08	50820.00	=""	="SYDNEY BUILDING PROJECTS"	16-Jun-08 09:12 AM	

+="CN73710-A1"	"REFURBISHMENTS"	="Office of the Official Secretary to the Governor-General"	16-Jun-08	="Refurbishing services"	01-Feb-08	02-Feb-08	54123.90	=""	="SYDNEY BUILDING PROJECTS"	16-Jun-08 09:14 AM	

+="CN90774"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	32245.34	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	16-Jun-08 09:16 AM	

+="CN90776"	"CPO022144 - Primary Module Replacement"	="Australian Customs and Border Protection Service"	16-Jun-08	="Industrial Manufacturing and Processing Machinery and Accessories"	26-May-08	30-Jun-08	598510.00	=""	="Schiavello (Vic) Pty Ltd"	16-Jun-08 09:18 AM	

+="CN73703"	"UPHOLSTREY WORK"	="Office of the Official Secretary to the Governor-General"	16-Jun-08	="Interior finishing materials"	01-Feb-08	01-Mar-08	15306.50	=""	="IT'S DESIGN FURNITURE"	16-Jun-08 09:18 AM	

+="CN90778"	"CPO022146 - Primary Module Replacement"	="Australian Customs and Border Protection Service"	16-Jun-08	="Industrial Manufacturing and Processing Machinery and Accessories"	26-May-08	30-Jun-08	533610.00	=""	="Schiavello (Vic) Pty Ltd"	16-Jun-08 09:18 AM	

+="CN90779"	"CPO014877 - Primary Module Replacement"	="Australian Customs and Border Protection Service"	16-Jun-08	="Industrial Manufacturing and Processing Machinery and Accessories"	26-May-08	30-Jun-08	440929.50	=""	="Schiavello (Vic) Pty Ltd"	16-Jun-08 09:19 AM	

+="CN90780"	"08/2581 - Construction and Installation Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="General building construction"	02-May-08	25-May-09	14740.00	=""	="Intelligent Surveillance"	16-Jun-08 09:19 AM	

+="CN90781"	"CPO022211 - Supply and Installation of Water Tank"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	12-Jun-08	29700.00	=""	="Joe Patterson Plumbing"	16-Jun-08 09:19 AM	

+="CN90782"	"CPO022131 - Supply of Racking"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	22-May-08	46315.50	=""	="Precision Metals Queanbeyan Pty Ltd"	16-Jun-08 09:19 AM	

+="CN90783"	"CPO014377 - Software Development"	="Australian Customs and Border Protection Service"	16-Jun-08	="Computer services"	19-Feb-07	31-Dec-08	28490.00	=""	="Hermes Precisa Pty Ltd"	16-Jun-08 09:19 AM	

+="CN90784"	"CPO019750 - Supply and Installation of Exhaust Fan"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	19-Feb-07	26-May-08	10985.70	=""	="Cleanrooms WA Pty Ltd"	16-Jun-08 09:19 AM	

+="CN90777"	"Repair of Aircraft parts"	="Defence Materiel Organisation"	16-Jun-08	="Aircraft"	16-Jun-08	06-Jul-08	38294.32	=""	="sikorsky aircraft australia ltd"	16-Jun-08 09:19 AM	

+="CN90785"	"CPO021509 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	15-May-08	11426.80	=""	="Discstation Ltd"	16-Jun-08 09:19 AM	

+="CN90786"	"08/2574 - Joinery Work"	="Australian Customs and Border Protection Service"	16-Jun-08	="General building construction"	01-Apr-08	16-May-09	15642.00	=""	="ISIS Project Pty Ltd"	16-Jun-08 09:19 AM	

+="CN90787-A1"	"08/2710 - Construction Services (CPE004870-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="General building construction"	02-May-08	30-Jun-08	47655.30	=""	="Quadric Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90788"	"08/2813 - Supply of Security System (CPE004872-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	20592.00	=""	="Chubb Electronic Security"	16-Jun-08 09:20 AM	

+="CN90789-A1"	"07/2241 - Supply and Install Workstations"	="Australian Customs and Border Protection Service"	16-Jun-08	="Building and Construction and Maintenance Services"	01-May-08	31-Dec-09	150744.70	=""	="Schiavello Systems Qld Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90790-A2"	"08/2708 - Review Consultancy (CPE004949-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	25-May-08	30-Jun-09	91200.00	=""	="Human Engineering (Australia) Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90791-A1"	"08/2586 - Supply of Racking"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Oct-08	385940.39	=""	="Precision Metals Queanbeyan Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90792"	"CPO022545 - Training Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Education and Training Services"	28-Aug-08	02-Dec-08	74027.80	=""	="Defence Maritime Services Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90793-A1"	"08/2693 - Provision of HR Services (CPE004916-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	27-May-08	18-Sep-08	15000.00	=""	="Yellow Edge Pty Ltd"	16-Jun-08 09:20 AM	

+="CN90794"	"CPO022609 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	18-Apr-08	30-Jun-08	11220.00	=""	="Crimetech Security"	16-Jun-08 09:20 AM	

+="CN90795"	"CPO022617 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	28-May-08	30-Jun-08	28050.95	=""	="Crimetech Security"	16-Jun-08 09:21 AM	

+="CN90796"	"CPE004941-1 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Refuse disposal and treatment"	16-Apr-08	16-Apr-08	13723.71	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	16-Jun-08 09:21 AM	

+="CN90798"	"CPE004941-2 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Refuse disposal and treatment"	17-Apr-08	17-Apr-08	14984.97	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	16-Jun-08 09:21 AM	

+="CN90797"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	20153.93	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:22 AM	

+="CN90812"	"CPO022639 - Security Key Cabinet"	="Australian Customs and Border Protection Service"	16-Jun-08	="Metal and mineral industries"	30-May-08	30-Jun-08	16040.20	=""	="Keywatch Systems Queensland"	16-Jun-08 09:23 AM	

+="CN90813"	"CPE004957-1 - Installation of Security Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	27-Jun-08	13684.00	=""	="Gentec Services Pty Ltd"	16-Jun-08 09:23 AM	

+="CN90814"	"08/2966 - Supply of CCTV Equipment -  CPE004783-1"	="Australian Customs and Border Protection Service"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	22-Apr-08	30-Jun-08	52822.00	=""	="Access Control Engineered Systems Pty Ltd"	16-Jun-08 09:23 AM	

+="CN90815"	"07/2236 - Supply of Racking"	="Australian Customs and Border Protection Service"	16-Jun-08	="Metal and mineral industries"	12-May-08	09-Jun-09	101368.65	=""	="Advance Metal Products (Aust) Pty Ltd"	16-Jun-08 09:23 AM	

+="CN90816"	"CPE004994-1 Training Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Education and Training Services"	02-Jun-08	16-Jun-08	11000.00	=""	="Ciloms Airport Lodge"	16-Jun-08 09:23 AM	

+="CN90817"	"07/2271 - Electrical Items (CPO022708)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Power Generation and Distribution Machinery and Accessories"	01-Jun-08	30-Jun-08	14880.95	=""	="CR & P Jones"	16-Jun-08 09:23 AM	

+="CN90818-A3"	"08/2727 - Cleaning Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Cleaning and janitorial services"	08-May-08	07-May-10	1096258.06	=""	="Broadlex Services Pty Ltd"	16-Jun-08 09:24 AM	

+="CN73700"	" SCOPING & DESIGN OF AIR-CONDITIONING "	="Office of the Official Secretary to the Governor-General"	16-Jun-08	="Air conditioners"	25-Jan-08	25-Feb-08	26950.00	=""	="KUTTNER COLLINS & PARTNERS"	16-Jun-08 09:24 AM	

+="CN90819"	"08/2878 - Construction Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="General building construction"	23-May-08	27-Jun-09	72809.00	=""	="ISIS Project Pty Ltd"	16-Jun-08 09:24 AM	

+="CN90820"	"CPO022742 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	05-Jun-08	21106.25	=""	="Bemac Security"	16-Jun-08 09:24 AM	

+="CN90821"	"CPO022794 - Industrial Machinery"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	05-Jun-08	26500.00	=""	="Easibind WA"	16-Jun-08 09:24 AM	

+="CN90823"	"CPO022799 - Gym Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Metal and mineral industries"	05-Jun-08	30-Jun-08	12760.00	=""	="The Fitness Generation Pty Ltd"	16-Jun-08 09:24 AM	

+="CN90825"	"08/2828 - Supply of Radio Network Equipment (CPO022085-CPO022076)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	06-May-08	30-Jun-08	679598.00	=""	="Motorola Australia Pty Ltd"	16-Jun-08 09:25 AM	

+="CN90822"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	12411.20	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:25 AM	

+="CN90826"	"CPO022538 - Supply Software"	="Australian Customs and Border Protection Service"	16-Jun-08	="Computer services"	28-May-08	05-Jun-08	18150.00	=""	="Hyperdyne Software"	16-Jun-08 09:25 AM	

+="CN90827"	"CPE004996-1 - Supply of Tools"	="Australian Customs and Border Protection Service"	16-Jun-08	="Metal and mineral industries"	01-Jun-08	30-Jun-08	13663.77	=""	="T I Enterprises T/A T I Hardware"	16-Jun-08 09:25 AM	

+="CN90828"	"CPO022792 - Supply of Camera Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Manufacture of electrical goods and precision instruments"	04-Jun-08	26-Jun-08	19332.50	=""	="Inline Systems"	16-Jun-08 09:26 AM	

+="CN90824"	"REPAIR OF AIRCRAFT PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Aircraft"	16-Jun-08	07-Jul-08	38903.05	=""	="sikorsky aircraft australia ltd"	16-Jun-08 09:26 AM	

+="CN90829"	"08/2582 - Security System Services (CPE004989-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	199999.80	=""	="Chubb Electronic Security"	16-Jun-08 09:26 AM	

+="CN90830-A1"	"07/2333 - Supply and Installation of CCTV Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Security cameras"	05-Jun-08	30-Jun-10	878172.59	=""	="Electrotech Australia Pty Ltd"	16-Jun-08 09:26 AM	

+="CN90831"	"CPO022889 - Banking Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	06-Jun-08	11000.00	=""	="Westpac Banking Corporation"	16-Jun-08 09:26 AM	

+="CN90832"	"08/2611 - Supply of ACV Equipment"	="Australian Customs and Border Protection Service"	16-Jun-08	="Transportation services equipment"	01-Feb-08	31-Aug-08	210000.00	=""	="MTU Detroit Diesel Australia Pty Ltd"	16-Jun-08 09:26 AM	

+="CN90833"	"CPE004999-1 - Construction Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Building and Construction and Maintenance Services"	14-Jun-08	27-Jun-08	16573.00	=""	="Kennedy Property Services"	16-Jun-08 09:26 AM	

+="CN90834"	"CPO022721 - Compactus"	="Australian Customs and Border Protection Service"	16-Jun-08	="Metal and mineral industries"	01-Jun-08	30-Jun-08	11979.00	=""	="Dexion North Queensland"	16-Jun-08 09:26 AM	

+="CN90835"	"CPO022571 - Advertising Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	16-May-08	22617.40	=""	="HMA Blaze"	16-Jun-08 09:26 AM	

+="CN90836"	"CPE004981-1 - Fuel"	="Australian Customs and Border Protection Service"	16-Jun-08	="Fuels"	23-May-08	23-May-08	21068.72	=""	="Australian Fuel Distributors"	16-Jun-08 09:27 AM	

+="CN90837"	"CPE004981-2 - Fuel"	="Australian Customs and Border Protection Service"	16-Jun-08	="Fuels"	26-May-08	26-May-08	41997.51	=""	="Australian Fuel Distributors"	16-Jun-08 09:27 AM	

+="CN90841"	"CPO022573 -Advertising Services"	="Australian Customs and Border Protection Service"	16-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	16-May-08	34937.10	=""	="HMA Blaze"	16-Jun-08 09:27 AM	

+="CN90842"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	22938.43	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:29 AM	

+="CN90843-A1"	" REPAIR OF AIRCRAFT PARTS - BLADE,ROTARY WING, NSN - 11589679, QTY 1 "	="Defence Materiel Organisation"	16-Jun-08	="Aircraft"	16-Jun-08	06-Jul-08	66814.83	=""	="sikorsky aircraft australia ltd"	16-Jun-08 09:29 AM	

+="CN90844"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	11393.53	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:33 AM	

+="CN90845"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	11124.71	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:36 AM	

+="CN90849"	"Software"	="Australian Electoral Commission"	16-Jun-08	="Software"	20-May-08	19-May-09	44950.29	=""	="Computerphiles"	16-Jun-08 09:42 AM	

+="CN90848"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	16-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Jun-08	30-Jun-08	19488.74	=""	="MERCEDES-BENZ"	16-Jun-08 09:43 AM	

+="CN90847"	"Application Services for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business administration services"	01-Feb-08	29-Feb-08	23484.30	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	16-Jun-08 09:44 AM	

+="CN90852-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jun-08	="Motor vehicles"	20-Jun-08	20-Jul-08	48675.04	=""	="MICKS AUTOS"	16-Jun-08 09:45 AM	

+="CN90853"	"Integrated Services Offer Project"	="Australian Taxation Office"	16-Jun-08	="Market research"	01-Jun-08	30-Jun-08	120000.00	=""	="WPP Holdings (Australia) Pty Ltd t/a Millward Brown Australia"	16-Jun-08 09:45 AM	

+="CN90854"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	06-Jun-08	27966.36	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	16-Jun-08 09:46 AM	

+="CN90855"	"Software maintenance"	="Australian Electoral Commission"	16-Jun-08	="Software maintenance and support"	02-Oct-08	01-May-09	16817.50	=""	="Citrix Systems Asia Pacific"	16-Jun-08 09:48 AM	

+="CN90846-A1"	"07/2513 - Senior Software Developer - 0717-0862 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	16-Jun-08	="Temporary personnel services"	16-Jun-08	15-Nov-08	100000.00	="05/0717"	="Aurec Pty Ltd"	16-Jun-08 09:49 AM	

+="CN90857"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	11720.80	=""	="VOLVO COMMERCIAL VEHICLES"	16-Jun-08 09:49 AM	

+="CN90860"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	16-Jun-08	="Motor vehicles"	27-May-08	10-Jun-08	13930.95	=""	="HAULMARK TRAILERS"	16-Jun-08 09:54 AM	

+="CN90862"	"Printing of Publication"	="Australian Electoral Commission"	16-Jun-08	="Industrial printing services"	01-Jul-06	03-Aug-09	16722.51	=""	="PMP Print Pty Ltd"	16-Jun-08 09:54 AM	

+="CN90859"	"Corporate Acumen Leadership Program"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	31-Oct-08	34540.00	="2005/014"	="Results Consulting (Australia) Pty Ltd"	16-Jun-08 09:55 AM	

+="CN90866"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business law services"	18-Dec-07	24-Jan-08	26953.02	=""	="CLAYTON UTZ"	16-Jun-08 10:01 AM	

+="CN90870-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jun-08	="Motor vehicles"	27-May-08	27-Jun-08	23619.80	=""	="MICKS AUTOS"	16-Jun-08 10:04 AM	

+="CN90873-A1"	"08/2735 - Management and Procurement Contractor - 1599-1942 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	01-Jun-08	01-Sep-08	100000.00	="06/1599"	="Grosvenor Management Consulting"	16-Jun-08 10:06 AM	

+="CN90869"	"Printing - Employer Advisory Programme"	="Workplace Authority"	16-Jun-08	="Publishing"	05-Jun-08	30-Jun-08	22000.00	=""	="Hermes Precisa Pty Ltd"	16-Jun-08 10:10 AM	

+="CN90874-A1"	"Growing Performance Leadership Program"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	31-Oct-08	48500.00	="2005/014"	="Jenny Oates & Associates Pty Ltd"	16-Jun-08 10:11 AM	

+="CN90865"	"Document Distribution Services"	="Workplace Authority"	16-Jun-08	="Publishing"	05-Jun-08	30-Jun-08	2345500.00	=""	="Hermes Precisa Pty Ltd"	16-Jun-08 10:12 AM	

+="CN90878"	"Complex People Relationships Program"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	31-Jul-08	28160.00	="2005/014"	="Results Consulting (Australia) Pty Ltd"	16-Jun-08 10:18 AM	

+="CN90880-A6"	"08/2797 - Business Process Analyst - 1599-1998 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	29-May-08	31-Jul-09	782000.00	="08/2797"	="Hoffman Dononhue"	16-Jun-08 10:18 AM	

+="CN90882"	"Delivery of Health & Saftey Representitive Training Program"	="Centrelink"	16-Jun-08	="Personal safety and protection"	16-Jun-08	30-Jun-08	12650.00	=""	="Greg Seberry & Associates Pty Ltd"	16-Jun-08 10:20 AM	

+="CN90885-A1"	"08/2596 - Business Analyst - 1071-2119 - Applications Maintenance & Support Panel 05/1071"	="Australian Customs and Border Protection Service"	16-Jun-08	="Software maintenance and support"	11-Apr-08	30-Sep-08	120000.00	="05/1071"	="IBM Australia Ltd"	16-Jun-08 10:24 AM	

+="CN90886"	"Coaching Conversations Leadership program"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	31-Jul-08	24640.00	="2005/014"	="Yellowedge ConsultingPty Ltd"	16-Jun-08 10:27 AM	

+="CN90887"	"Ad-hoc typesetting services as required."	="Australian Taxation Office"	16-Jun-08	="Published Products"	13-Jun-08	15-Jul-08	15000.00	=""	="ZOO COMMUNICATIONS PTY LTD"	16-Jun-08 10:27 AM	

+="CN90888-A2"	"Virtual data room"	="Australian Taxation Office"	16-Jun-08	="Engineering and Research and Technology Based Services"	13-Jun-08	30-Jun-10	265000.00	="QUOTES SOUGHT"	="CLAYTON UTZ"	16-Jun-08 10:27 AM	

+="CN90889"	"Ongoing internet account"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-09	18000.00	=""	="OPTUS BILLING SERVICES"	16-Jun-08 10:27 AM	

+="CN90890"	"25 X POLYCOM SOUNDSTATION W'LESS CONFERENCE PHON 25 X POLYCOM SOUNDSTATION 2W EXTENSION MICS"	="Australian Taxation Office"	16-Jun-08	="Office Equipment and Accessories and Supplies"	12-Jun-08	12-Jun-08	28143.50	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	16-Jun-08 10:27 AM	

+="CN90892"	"IT Contractor"	="Australian Taxation Office"	16-Jun-08	="Engineering and Research and Technology Based Services"	11-Jun-08	10-Jun-09	271022.40	=""	="ICON RECRUITMENT"	16-Jun-08 10:27 AM	

+="CN90893"	"Course: Gartner Outsourcing & IT Services Summit 2"	="Australian Taxation Office"	16-Jun-08	="Education and Training Services"	10-Jun-08	18-Jun-08	14828.00	=""	="GARTNER AUSTRALASIA PTY LTD"	16-Jun-08 10:28 AM	

+="CN90894"	"CONTRACTOR SERVICES"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	11-Jun-08	10817.00	=""	="Hudson Global Resources (Aust) P/L"	16-Jun-08 10:29 AM	

+="CN90895"	"Scribe services Bulk PO"	="Australian Taxation Office"	16-Jun-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	26-Jun-08	20900.00	=""	="VEROSSITY PTY LTD"	16-Jun-08 10:31 AM	

+="CN90896"	"Purchase of Printer Toner Cartridges"	="Australian Taxation Office"	16-Jun-08	="Office Equipment and Accessories and Supplies"	15-May-08	30-Jun-08	15441.33	=""	="ATI GROUP PTY LTD"	16-Jun-08 10:31 AM	

+="CN90897"	"IT Contractor services Increase in value of purchase order required"	="Australian Taxation Office"	16-Jun-08	="Engineering and Research and Technology Based Services"	12-Mar-08	31-Mar-08	41999.00	=""	="FOCUS STRATEGIES & SOLUTIONS"	16-Jun-08 10:32 AM	

+="CN90898"	"Training Costs"	="Defence Materiel Organisation"	16-Jun-08	="Aircraft"	11-Jun-08	11-Jul-08	20206.99	=""	="Department of Defence"	16-Jun-08 10:42 AM	

+="CN90901-A1"	"08/2572 - Legal Services - 0714-1115 - Legal Services Panel 05/0714"	="Australian Customs and Border Protection Service"	16-Jun-08	="Legal services"	04-Feb-08	01-Jul-10	165000.00	="05/0714"	="Australian Government Solicitors"	16-Jun-08 10:45 AM	

+="CN90906"	"Consultantcy - Computer Software & Hardware"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	31-May-08	42810.55	=""	="Thomas Duryea Consulting Pty Ltd"	16-Jun-08 10:55 AM	

+="CN90908"	"Telecommunications Services"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	02-Jun-08	30-Jun-08	23153.13	=""	="Stratos"	16-Jun-08 10:55 AM	

+="CN90905-A1"	"08/2745 - Consultancy Services - 1599-1984 - C&B Services Panel 06/1599 (CPO022225)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	05-May-08	25-Jun-08	100000.00	="06/1599"	="ThinkPlace Pty Ltd"	16-Jun-08 10:55 AM	

+="CN90909"	"Audit Fees"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	31-May-08	24312.98	=""	="Walter Turnbull"	16-Jun-08 10:56 AM	

+="CN90910"	"Telecommunications Services"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	02-Jun-08	30-Jun-08	20477.89	=""	="Nextgen Networks P/L"	16-Jun-08 10:56 AM	

+="CN90911"	"NTRO Phone charges rantal Jun 08 Calls to may 08"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	20-May-08	30-Jun-08	11655.49	=""	="Telstra  (ID No. 740)"	16-Jun-08 10:56 AM	

+="CN90912"	"Supply of Stationery"	="Bureau of Meteorology"	16-Jun-08	="Office supplies"	20-May-08	31-May-08	25396.37	=""	="Corporate Express Australia Limited"	16-Jun-08 10:56 AM	

+="CN90913"	"Removal and Storage"	="Bureau of Meteorology"	16-Jun-08	="Transportation and Storage and Mail Services"	05-Jun-08	30-Jun-08	13706.18	=""	="TOLL TRANSITIONS"	16-Jun-08 10:56 AM	

+="CN90915"	"Removals & Storage"	="Bureau of Meteorology"	16-Jun-08	="Transportation and Storage and Mail Services"	05-Jun-08	30-Jun-08	46421.99	=""	="TOLL TRANSITIONS"	16-Jun-08 10:56 AM	

+="CN90916"	"ARGOS Satellite Services March 2008"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	26-May-08	31-May-08	25058.21	=""	="CLS"	16-Jun-08 10:57 AM	

+="CN90917"	""Risk Wise""	="Bureau of Meteorology"	16-Jun-08	="Printed media"	26-May-08	31-May-08	10386.21	=""	="TUDOR ROSE"	16-Jun-08 10:57 AM	

+="CN90918"	"Qld Region Telephone A/c"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	27-May-08	16-Jun-08	20973.88	=""	="Telstra  (ID No. 740)"	16-Jun-08 10:57 AM	

+="CN90919"	"SUPPLY VESSEL CHARTER"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-May-08	36360.00	=""	="Bianca Deep SEa & Game Fishing"	16-Jun-08 10:57 AM	

+="CN90920"	"Telecommunications Services"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	02-Jun-08	30-Jun-08	12934.93	=""	="Telstra  (ID No. 740)"	16-Jun-08 10:57 AM	

+="CN90921"	"Joinery & Carpentry - 700 Collins Street"	="Bureau of Meteorology"	16-Jun-08	="Building and Construction and Maintenance Services"	28-May-08	31-May-08	14082.20	=""	="Gemwood Interiors"	16-Jun-08 10:58 AM	

+="CN90922"	"Supply of Stationery"	="Bureau of Meteorology"	16-Jun-08	="Office supplies"	28-May-08	31-May-08	19066.35	=""	="Corporate Express Australia Limited"	16-Jun-08 10:58 AM	

+="CN90907"	"Prepaid Property Operating expenses for April 2008."	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Property management services"	01-Apr-08	30-Apr-08	233318.68	=""	="UNITED GROUP SERVICES PTY LTD"	16-Jun-08 10:58 AM	

+="CN90923"	"Car Lease Costs"	="Bureau of Meteorology"	16-Jun-08	="Motor vehicles"	28-May-08	28-May-08	13116.64	=""	="Leaseplan Australia"	16-Jun-08 10:58 AM	

+="CN90924"	"Fencing"	="Bureau of Meteorology"	16-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	31-May-08	12816.00	=""	="J.W & L.E Webster"	16-Jun-08 10:58 AM	

+="CN90925"	"Engineering service drawing"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	16852.00	=""	="DOCUMENTCORP (CAD/CAM)"	16-Jun-08 10:58 AM	

+="CN90926"	"Telecommunications Servies"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	03-Jun-08	30-Jun-08	95018.72	=""	="Telstra  (ID No. 740)"	16-Jun-08 10:58 AM	

+="CN90927"	"Actuary fees"	="Bureau of Meteorology"	16-Jun-08	="Management advisory services"	03-Jun-08	30-Jun-08	13500.00	=""	="CUMPSTON SARJEANT TRUSLOVE PTY LTD"	16-Jun-08 10:58 AM	

+="CN90928"	"main phone bill"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	11-Jun-08	12-Jun-08	18405.16	=""	="Telstra  (ID No. 740)"	16-Jun-08 10:59 AM	

+="CN90929"	"65" SHARP LCD MONITOR"	="Bureau of Meteorology"	16-Jun-08	="Electronic hardware and component parts and accessories"	26-May-08	27-Jun-08	15119.50	=""	="Betacom Pty Ltd"	16-Jun-08 10:59 AM	

+="CN90930"	"NECSX-6 Disk - Replacement of Battery Backup Units"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	27-May-08	29-May-08	59400.00	=""	="Nec Australia Pty Ltd"	16-Jun-08 10:59 AM	

+="CN90931"	"12 v Batteries (65 for ASLOS/ATWS"	="Bureau of Meteorology"	16-Jun-08	="Power Generation and Distribution Machinery and Accessories"	28-May-08	30-May-08	17088.50	=""	="Battery Guru"	16-Jun-08 10:59 AM	

+="CN90932"	"HDX 4002 Video Conference system"	="Bureau of Meteorology"	16-Jun-08	="Components for information technology or broadcasting or telecommunications"	28-May-08	30-May-08	13772.00	=""	="Vantage Systems Pty Ltd"	16-Jun-08 10:59 AM	

+="CN90933"	"WORKBENCHES"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	20619.50	=""	="Bac Systems Pty Ltd"	16-Jun-08 10:59 AM	

+="CN90934"	"Thermometers (Various)"	="Bureau of Meteorology"	16-Jun-08	="Measuring and observing and testing instruments"	28-May-08	30-Jun-08	19608.60	=""	="Wika Australia Pty Ltd"	16-Jun-08 10:59 AM	

+="CN90936"	"12 months Telemax21 maintenance support agreement"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	28-May-08	29-May-08	14740.00	=""	="Trans-Mit Pty Ltd"	16-Jun-08 11:00 AM	

+="CN90937"	"Office Fitout works 700 Collins St, Melbourne"	="Bureau of Meteorology"	16-Jun-08	="Building and Construction and Maintenance Services"	28-May-08	13-Jun-08	86309.30	=""	="UNIFOR AUSTRALIA PTY LTD"	16-Jun-08 11:00 AM	

+="CN90938"	"Office Fitout - Level 9, 700 Collins St. Melbourne"	="Bureau of Meteorology"	16-Jun-08	="Building and Construction and Maintenance Services"	28-May-08	13-Jun-08	162987.00	=""	="Schiavello Project Solutions Pty Lt"	16-Jun-08 11:00 AM	

+="CN90939"	"Provision and maintenance of 200 Mbps Data Link fr"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	28-May-08	30-May-08	268533.64	=""	="ATI Australia Pty Ltd"	16-Jun-08 11:00 AM	

+="CN90940"	"Sun Fire X4450 4 Socket Quad core Servers"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	28-May-08	10-Jun-08	57826.54	=""	="Thomas Duryea Consulting Pty Ltd"	16-Jun-08 11:00 AM	

+="CN90942"	"Operating System Software for sun Fire x 4450 4 Socket quad Core Servers"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	28-May-08	27-Jun-08	32082.55	=""	="Thomas Duryea Consulting Pty Ltd"	16-Jun-08 11:01 AM	

+="CN90943"	"Maintenance Kit for Hogen systems"	="Bureau of Meteorology"	16-Jun-08	="Electrical equipment and components and supplies"	29-May-08	31-Jul-08	10206.62	=""	="Distributed Energy Systems"	16-Jun-08 11:01 AM	

+="CN90944"	"Firewall software maintenance and support"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	29-May-08	10-Jun-08	26037.69	=""	="Loop Technology"	16-Jun-08 11:01 AM	

+="CN90945"	"Voice messaging System"	="Bureau of Meteorology"	16-Jun-08	="Telecommunications media services"	29-May-08	28-May-09	514291.01	=""	="CPS Technology Group Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90946"	"HP8510p Laptops Qty 7"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-May-08	15679.90	=""	="Leading Solutions Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90947"	"24" LCD Monitor qty 20"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	06-Jun-08	14279.98	=""	="City Software Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90948"	"Toshiba Tecra M9 Laptops Qty 15"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	06-Jun-08	42850.50	=""	="Technologies 2000 (Aust) Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90949"	"HP2510p Laptops Qty 10"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	06-Jun-08	22165.00	=""	="City Software Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90950"	"NVidia Graphics Card Qty 80"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	06-Jun-08	11427.68	=""	="City Software Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90951"	"HP DC7800 Desktop Qty 50"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	29-May-08	10-Jun-08	65250.35	=""	="City Software Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90952"	"Annual on site technical support for computer servers"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	29-May-08	10-Jun-08	17201.54	=""	="Sun Microsystems Aust Pty Ltd"	16-Jun-08 11:02 AM	

+="CN90953"	"Hydrogen Gas Storage vessels"	="Bureau of Meteorology"	16-Jun-08	="Storage"	02-Jun-08	31-Aug-08	629685.76	=""	="Lightning Fabrications"	16-Jun-08 11:03 AM	

+="CN90954"	"VRTS Storage Foundation Standard Software Licenses  Qty 12"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	02-Jun-08	12-Jun-08	39527.93	=""	="Leading Solutions Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90955"	"Vessel Charter"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	26-Jun-08	80077.76	=""	="Ocean Products Limited"	16-Jun-08 11:03 AM	

+="CN90956"	"HP xw4600 workstation Qty 6 LCD monitor 30"Qty 8 Viewsonic VX2835 wm 28" Flat Panel Display Qty 6"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	12-Jun-08	31568.02	=""	="City Software Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90957"	"Tecra M9 lLaptops Qty 5 Port Replicators Qty 5 2GB  DDR Memory Qty 10 Carry Case Qty 5"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	12-Jun-08	14094.97	=""	="City Software Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90958"	"Fibre runner & UTP cabling"	="Bureau of Meteorology"	16-Jun-08	="Electrical wire and cable and harness"	03-Jun-08	12-Jun-08	12450.90	=""	="Electrocom Solutions Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90959"	"Weather Camera Systems"	="Bureau of Meteorology"	16-Jun-08	="Manufacture of electrical goods and precision instruments"	05-Jun-08	06-Jun-08	56210.00	=""	="Platypus Technology Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90960"	"Plasma Display"	="Bureau of Meteorology"	16-Jun-08	="Components for information technology or broadcasting or telecommunications"	05-Jun-08	30-Jun-08	19427.00	=""	="Electroboard Solutions Pty Ltd"	16-Jun-08 11:03 AM	

+="CN90961"	"Terminal Panel Assembly"	="Bureau of Meteorology"	16-Jun-08	="Electrical equipment and components and supplies"	05-Jun-08	30-Jul-08	15955.50	=""	="Fluap Enterprises"	16-Jun-08 11:04 AM	

+="CN90962"	"Public user survey report"	="Bureau of Meteorology"	16-Jun-08	="Business administration services"	05-Jun-08	06-Jun-08	12430.00	=""	="Down to Earth Research"	16-Jun-08 11:04 AM	

+="CN90963"	"Diploma of Business Course"	="Bureau of Meteorology"	16-Jun-08	="Education and Training Services"	05-Jun-08	17-Oct-08	23980.00	=""	="Chifley Business School"	16-Jun-08 11:04 AM	

+="CN90964"	"Supply Poweredge Servers VMWare Software & Install ation"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	27-Jun-08	297607.91	=""	="Dell Australia  Pty Ltd"	16-Jun-08 11:04 AM	

+="CN90965"	"Windows Server & Exchange Licences Qty 10"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	06-Jun-08	13-Jun-08	24208.40	=""	="City Software Pty Ltd"	16-Jun-08 11:04 AM	

+="CN90966"	"SunSL48 Tpe Library & Accessories Qty 1"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	13-Jun-08	23389.68	=""	="FRONTLINE SYSTEMS AUSTRALIA"	16-Jun-08 11:04 AM	

+="CN90967-A1"	"Consultancy Services"	="Bureau of Meteorology"	16-Jun-08	="Management advisory services"	06-Jun-08	06-Jun-08	15125.00	=""	="MORISON CONSULTING PTY LTD"	16-Jun-08 11:04 AM	

+="CN90968"	"HP Laserjet M3035xs printer Qty 4 &HP onsite suppo rt"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	10-Jun-08	11-Jun-08	11619.96	=""	="Leading Solutions Pty Ltd"	16-Jun-08 11:04 AM	

+="CN90969"	"Open C Presentation Servers"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	11-Jun-08	13-Jun-08	18109.23	=""	="Data#3 Limited"	16-Jun-08 11:04 AM	

+="CN90970"	"Apple Mac Pro & Accessories"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	11-Jun-08	20-Jun-08	21115.87	=""	="Beyond The BOX"	16-Jun-08 11:05 AM	

+="CN90971"	"MT 410g EPIRBS"	="Bureau of Meteorology"	16-Jun-08	="Measuring and observing and testing instruments"	11-Jun-08	20-Jun-08	10640.30	=""	="Transceiver Services Pty Ltd"	16-Jun-08 11:05 AM	

+="CN90972"	"ARGO Float Battery Packs"	="Bureau of Meteorology"	16-Jun-08	="Power Generation and Distribution Machinery and Accessories"	11-Jun-08	27-Jun-08	24706.00	=""	="Siomar Battery Industries P/L"	16-Jun-08 11:05 AM	

+="CN90973-A1"	"Radiosonde for PTU & GPS Wind Measurement"	="Bureau of Meteorology"	16-Jun-08	="Measuring and observing and testing instruments"	11-Jun-08	26-Jun-08	30775.80	=""	="Vaisala Pty Ltd"	16-Jun-08 11:05 AM	

+="CN90974"	"Test n Print PAC M"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	11-Jun-08	27-Jun-08	36608.00	=""	="Wavecom Instruments"	16-Jun-08 11:05 AM	

+="CN90975"	"Repairs & Maintenance to Building"	="Bureau of Meteorology"	16-Jun-08	="General building construction"	11-Jun-08	30-Jun-08	14810.02	=""	="R.E.Austin Constructions"	16-Jun-08 11:05 AM	

+="CN90976"	"Microsoft Enterprise Agreement"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	12-Jun-08	27-Apr-13	457286.32	=""	="Hewlett Packard Australia Pty Ltd"	16-Jun-08 11:05 AM	

+="CN90977"	"AWRIS Capture and Architecture Development"	="Bureau of Meteorology"	16-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	12-Jun-08	26400.00	=""	="NGIS Australia Pty Ltd"	16-Jun-08 11:05 AM	

+="CN90978"	"Lease of RDBMS - Hydstra System Software"	="Bureau of Meteorology"	16-Jun-08	="Computer services"	12-Jun-08	07-Nov-08	34068.00	=""	="Kisters P/L"	16-Jun-08 11:06 AM	

+="CN90979"	"Public user survey Autum/Winter 2008"	="Bureau of Meteorology"	16-Jun-08	="Business administration services"	13-Jun-08	13-Jun-08	45056.00	=""	="I-View P/L"	16-Jun-08 11:06 AM	

+="CN90980"	"Sun T5240 Servers & StorageTek SL24 Tape AutoLoader"	="Bureau of Meteorology"	16-Jun-08	="Computer Equipment and Accessories"	13-Jun-08	30-Jun-08	135587.78	=""	="FRONTLINE SYSTEMS AUSTRALIA"	16-Jun-08 11:06 AM	

+="CN90986"	"Conversion of M72A6 , Training Sets"	="Defence Materiel Organisation"	16-Jun-08	="Rocket launchers"	12-Jun-08	19-Sep-08	13926.33	=""	="Thales Australia"	16-Jun-08 11:54 AM	

+="CN90990"	"2020 Symposium - 14 April 2008"	="Department of the Prime Minister and Cabinet"	16-Jun-08	="Meeting facilities"	14-Apr-08	14-Apr-08	12505.49	=""	="Wales House Hotel Limited T/a Radisson Plaza Hotel Sydney"	16-Jun-08 12:09 PM	

+="CN90994"	"Supply and Install Security Access Control to Fire Doors"	="Family Court of Australia"	16-Jun-08	="Security and control equipment"	16-Jun-08	30-Jun-08	28241.05	=""	="SNP Security Pty Ltd"	16-Jun-08 12:33 PM	

+="CN90995-A3"	" Lease at Oaklands Park, SA "	="Department of Human Services"	16-Jun-08	="Lease and rental of property or building"	03-Oct-01	02-Oct-14	6668652.03	=""	="Herb Investments Pty Ltd"	16-Jun-08 12:47 PM	

+="CN90996"	"Refurbishment of kitchens - 38 Sydney Ave"	="Department of Broadband Communications and the Digital Economy"	16-Jun-08	="Public Utilities and Public Sector Related Services"	06-May-08	31-Oct-08	319795.30	="DCON/05/225"	="GE Shaw and Associates (ACT) Pty Ltd"	16-Jun-08 12:55 PM	

+="CN90998-A1"	" VEHICLE REPAIRS "	="Department of Defence"	16-Jun-08	="Motor vehicles"	16-Jun-08	16-Jul-08	13095.50	=""	="ALLCOCK CRASH REPAIRS"	16-Jun-08 01:11 PM	

+="CN91000-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jun-08	="Motor vehicles"	16-Jun-08	16-Jul-08	21650.05	=""	="MACK AUSTRALIA"	16-Jun-08 01:15 PM	

+="CN91001-A1"	"08/2665 - Workplace Capability Consultant - 1599-1976 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	14-May-08	10-Jun-08	35970.00	=""	="Workplace Research Associates Pty Ltd"	16-Jun-08 01:22 PM	

+="CN91002-A1"	"07/1871 - Training Services - 1523-1816 - Leading People at the Frontline Panel - 06/1523 (CPO009506)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	16-Apr-07	16-Jul-07	17000.00	=""	="McMillan Staff Development"	16-Jun-08 01:26 PM	

+="CN91003-A2"	" HEADLIGHT RH DRIVE (M113) "	="Defence Materiel Organisation"	16-Jun-08	="Vehicle headlight"	23-May-08	30-May-09	582001.20	=""	="EUROPEAN AUTO IMPORTS PTY LTD"	16-Jun-08 01:28 PM	

+="CN91004-A1"	"07/1872 - Training Services - 1523-1812 - Leading People at the Frontline Panel - 06/1523 (CPO009507)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	30-Apr-07	31-Jul-07	14000.00	=""	="McMillan Staff Development"	16-Jun-08 01:28 PM	

+="CN91005"	"Centrelink Panel IMU Contract Programmer: IMU-ICT115 Work Order DVAIMU2008/004"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	21-Apr-08	17-Apr-09	181016.00	=""	="Paxus Australia Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91006"	"Centrelink Panel IMU Contract Programmer: IMU-ICT116 Work Order DVAIMU2008/006"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	02-May-08	29-Aug-08	78707.00	=""	="Paxus Australia Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91007"	"Centrelink Panel IMU Contract Programmer IMU-ICT117 Work Order DVAIMU2008/007"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	05-May-08	29-Aug-08	77616.00	=""	="Acumen Contracting and Recruitment Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91008"	"Centrelink Panel IMU Contract Programmer: IMU-ICT119 Work Order DVAIMU2008/010"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	26-May-08	29-Aug-08	55440.00	=""	="Paxus Australia Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91009"	"Centrelink Panel IMU Contract Programmer: IMU-ICT118 Work Order DVAIMU2008/008"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	05-May-08	29-Aug-08	65050.00	=""	="Acumen Contracting and Recruitment Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91010"	"Centrelink Panel IMU Contract Programmer: IMU-ICT035 Work Order DVAIMU2008/005"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	21-Apr-08	30-Jun-08	39494.00	=""	="Collective Resources IT Recruitment Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91011-A1"	"In-house delivery of Managing Dispersed Teams workshop"	="Department of Veterans' Affairs"	16-Jun-08	="Human resources services"	22-May-08	23-May-08	12861.00	=""	="Performance Improvement Conferences & Seminars Pty Ltd"	16-Jun-08 01:29 PM	

+="CN91012"	"Oracle Learning Credits.Invoice Number.  0000232722/05/2008 was when claim for payment was made.  Learning credits will be used over the 08/09 period."	="Department of Veterans' Affairs"	16-Jun-08	="Education and Training Services"	22-May-08	22-May-08	16777.00	=""	="Atlas Business Services A/T/F ABS Trust"	16-Jun-08 01:30 PM	

+="CN91013"	"ContentKeeper VLE Appliance12 Month RTB Warranty to 31-05-09.  ContentKeeper Support to 31-5-2011"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	30-May-08	31-May-09	18823.00	=""	="Riley Family Trust & Dirrawan Family Trust & Elimatta Family Trust"	16-Jun-08 01:30 PM	

+="CN91014"	"Cnetrelink Panel IMU Contract Programmer: MU-ICT092 Work Order DVAIMU2008/014"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	02-Jun-08	30-May-09	195802.00	=""	="Peoplebank Australia Pty Ltd"	16-Jun-08 01:30 PM	

+="CN91015"	"Centrelink Panel IMU Contract Programmer IMU-ICT105 Work Order DVAIMU2008/016"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	03-Jun-08	30-Aug-08	49500.00	=""	="Peoplebank Australia Pty Ltd"	16-Jun-08 01:30 PM	

+="CN91016"	"Provision of design and project management services further to the 2004/05 upgrade of Hellfire Pass Memorial museum, Thailand (107132)"	="Department of Veterans' Affairs"	16-Jun-08	="Building construction and support and maintenance and repair services"	10-Apr-08	30-Jun-08	15831.00	=""	="Hewitt Pender Associates Pty Ltd"	16-Jun-08 01:30 PM	

+="CN91017"	"Continuation of Enterprise Agreement- Previous CaIRO Ref No: 108060"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	01-Jun-08	30-Jan-11	404175.00	=""	="Citrix Systems Asia Pacific Pty Ltd"	16-Jun-08 01:30 PM	

+="CN91018"	"Tibco Software for purchase order #IMU275Annual Silver Support 30/04/2007 - 30/04/2008"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	30-Apr-07	30-Apr-08	317225.00	=""	="Fujitsu Australia Ltd"	16-Jun-08 01:30 PM	

+="CN91019"	"Tibco Business Works Maintenance Renewal- 01/05/2008 ato 30/04/2009.  Previous CAIRO ref no: 108059"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	01-May-08	30-Apr-09	69517.00	=""	="Fujitsu Australia Ltd"	16-Jun-08 01:30 PM	

+="CN91020"	"Perpetual Licence for Peoplesoft Human Resources and support from 14/04/2008 to 13/04/2009."	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	14-Apr-08	13-Apr-09	449585.00	=""	="Oracle Corporation Australia Pty Ltd"	16-Jun-08 01:31 PM	

+="CN91021-A1"	"Provision and hosting of a website about Australia's involvement in conflicts in SE Asia relating to the Malayan Emergency, Confrontation with indonesia and the Vietnam War"	="Department of Veterans' Affairs"	16-Jun-08	="Electronic reference material"	30-Jun-07	31-Dec-08	35200.00	=""	="Office of the Board of Studies (NSW)"	16-Jun-08 01:31 PM	

+="CN91022"	"10 x 6857 Additional Managed PKISSL Global (Premium) Cert UnitsUnits to be used 1-Year = 1 cert unit2-Year Certificate = 2 cert units"	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	16-Jun-08	16-Jun-09	14432.00	=""	="VeriSign Australia Pty Ltd"	16-Jun-08 01:31 PM	

+="CN91023-A1"	"Website development & maintenance for the DHOAS website."	="Department of Veterans' Affairs"	16-Jun-08	="Computer services"	29-Apr-08	30-Jun-11	184000.00	=""	="Morpheum Internet Services Pty Ltd"	16-Jun-08 01:31 PM	

+="CN91024"	"Graphic Design for the DHOAS marketing & promotions"	="Department of Veterans' Affairs"	16-Jun-08	="Graphic design"	20-May-08	30-Aug-08	30000.00	=""	="Zoo Communications Pty Ltd"	16-Jun-08 01:31 PM	

+="CN91025-A1"	"Provision of sessional work"	="Department of Veterans' Affairs"	16-Jun-08	="Medical practice"	12-Jun-08	31-Oct-08	12705.00	=""	="Entity Solutions Services Pty Ltd"	16-Jun-08 01:31 PM	

+="CN91026-A1"	"07/1891 - Training Services - 1523-1812 - Leading People at the Frontline Panel - 06/1523 (CPO010290)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	21-May-07	27-Aug-07	14000.00	=""	="Australia-wide Business Training Pty Ltd"	16-Jun-08 01:32 PM	

+="CN91027-A1"	"07/1893 - Training Services - 1523-1819 - Leading People at the Frontline Panel - 06/1523 (CPO010061)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	04-Jun-07	03-Sep-07	17402.00	=""	="Vivien Twyford Consulting"	16-Jun-08 01:39 PM	

+="CN91028-A1"	"07/1902 - Training Services - 1523-1819 - Leading People at the Frontline Panel - 06/1523 (CPO010287)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	20-Aug-07	19-Nov-07	17402.00	=""	="Vivien Twyford Consulting"	16-Jun-08 01:41 PM	

+="CN91029-A1"	"07/1913 - Training Services - 1523-1814 - Leading People at the Frontline Panel - 06/1523 (CPO010626)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Specialised educational services"	08-Oct-07	14-Jan-08	10010.00	=""	="Guinane Change Consulting"	16-Jun-08 01:48 PM	

+="CN91031-A2"	"08/2646 - Information Services - 0859-1289 - ICT Security Services Panel - 05/0859"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	22-Apr-08	30-Jun-08	94220.00	=""	="IBM Australia Ltd"	16-Jun-08 01:54 PM	

+="CN91032-A2"	"08/2799 - Review Consultancy Services - 0717-0893 - C&B Panel 06/1599"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	08-May-08	30-Jun-08	135000.00	=""	="SMS Management and Technology"	16-Jun-08 01:58 PM	

+="CN91033-A3"	"Lease at Lvl 3 Charlestown, NSW"	="Department of Human Services"	16-Jun-08	="Real estate services"	24-Oct-95	23-Oct-15	7759628.62	=""	="Walvera Pty ltd"	16-Jun-08 02:00 PM	

+="CN91034-A2"	"08/2701 - Consultancy Services - 1341-1697 - Survey Services Panel - 06/1341 (CPE004858-1)"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	06-May-08	30-Jun-08	223080.00	="06/1341"	="TNS Social Research"	16-Jun-08 02:01 PM	

+="CN91035"	"Press Advertisements - Public Notices"	="Department of the Prime Minister and Cabinet"	16-Jun-08	="Print advertising"	11-Feb-08	11-Feb-08	17207.31	=""	="HMA Blaze"	16-Jun-08 02:02 PM	

+="CN91036"	" VEHICLE REPAIRS "	="Department of Defence"	16-Jun-08	="Motor vehicles"	13-Sep-07	13-Oct-07	35880.96	=""	="FB AUTOS"	16-Jun-08 02:02 PM	

+="CN91037-A1"	"08/2635 - Operations Manager - 0717-0888 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	16-Jun-08	="Temporary personnel services"	07-Apr-08	31-Dec-08	201751.00	="05/0717"	="Patriot Alliance"	16-Jun-08 02:06 PM	

+="CN91040"	"VEHICLE REPAIRS"	="Department of Defence"	16-Jun-08	="Motor vehicles"	27-May-08	27-Jun-08	14856.59	=""	="NORTH QUEENSLAND TRIMMING"	16-Jun-08 02:09 PM	

+="CN91039"	"Property Expenditure for January and February 2008."	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Property management services"	01-Jan-08	29-Feb-08	10480.88	=""	="UNITED GROUP SERVICES PTY LTD"	16-Jun-08 02:11 PM	

+="CN91041-A1"	"08/2778 - Short Term Personnel Hire - Project Manager - 0717-0875 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	16-Jun-08	="Temporary personnel services"	06-May-08	05-May-09	280000.00	="05/0717"	="Frontier Group Australia Pty Ltd"	16-Jun-08 02:11 PM	

+="CN91043"	"2006-09 Financial Statement Audits of the Cotton R&D Corporation."	="Australian National Audit Office (ANAO)"	16-Jun-08	="Audit services"	20-Jul-07	31-Oct-09	19965.00	=""	="Calvin Skues Pty Ltd"	16-Jun-08 02:19 PM	

+="CN91044"	" HEADSET-MICROPHONE  "	="Defence Materiel Organisation"	16-Jun-08	="Phone headset ear or speaker cushions"	16-Jun-08	31-Jul-08	17600.00	=""	="DEFCON TECHNOLOGIES"	16-Jun-08 02:20 PM	

+="CN91045"	"Staff Leave Liability"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business administration services"	25-Feb-08	25-Feb-08	21832.15	=""	="AUSTRALIAN TAXATION OFFICE"	16-Jun-08 02:29 PM	

+="CN91049"	"Engagement of Jeff Shen to assist with various financial statement audits."	="Australian National Audit Office (ANAO)"	16-Jun-08	="Audit services"	18-Jul-07	17-Aug-07	20000.00	=""	="Michael Page International - Sydney"	16-Jun-08 02:32 PM	

+="CN91048"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business law services"	01-Feb-08	29-Feb-08	21209.21	=""	="BARTIER PERRY"	16-Jun-08 02:34 PM	

+="CN91050"	"Engagement of Daniel Maycock to assist with carious financial statement audits."	="Australian National Audit Office (ANAO)"	16-Jun-08	="Audit services"	25-Jul-07	24-Aug-07	25000.00	=""	="Michael Page International - Sydney"	16-Jun-08 02:40 PM	

+="CN91051-A2"	"08/2702 - Plan Development 1599-1939 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	16-Jun-08	="Business and corporate management consultation services"	09-May-08	30-Jun-08	79810.50	="08/2702"	="Ernst & Young"	16-Jun-08 02:44 PM	

+="CN91052"	"Engagement of Tina Han to assist with various financial statement audits."	="Australian National Audit Office (ANAO)"	16-Jun-08	="Audit services"	25-Jul-07	24-Aug-07	15000.00	=""	="Michael Page International - Sydney"	16-Jun-08 02:45 PM	

+="CN91053"	"Subscription Agreement - 2nd Installment"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business administration services"	16-Apr-08	14-Apr-09	20303.80	=""	="REED CONSTRUCTION DATA"	16-Jun-08 02:49 PM	

+="CN91054"	"Engagement of Sergey Khachumov to assist with variou financial statement audits."	="Australian National Audit Office (ANAO)"	16-Jun-08	="Audit services"	26-Jul-07	24-Aug-07	15000.00	=""	="Hays Accountancy Personnel"	16-Jun-08 02:56 PM	

+="CN91055"	" Training for February 2008 "	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Education and Training Services"	01-Feb-08	29-Feb-08	10642.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	16-Jun-08 03:02 PM	

+="CN91056"	"Risk and Business Continuity Management Services"	="Australian Fair Pay Commission"	16-Jun-08	="Risk or hazard assessment"	01-May-08	31-May-08	13970.00	=""	="PKF"	16-Jun-08 03:02 PM	

+="CN91058-A1"	"Legal Services"	="Australian Fair Pay Commission"	16-Jun-08	="Legal services"	04-Apr-08	13-May-08	10612.25	=""	="AGS"	16-Jun-08 03:06 PM	

+="CN91059"	"HR Services"	="Australian Fair Pay Commission"	16-Jun-08	="Human resources services"	17-Apr-08	17-Apr-08	12681.31	=""	="Hays"	16-Jun-08 03:14 PM	

+="CN91062-A2"	"Lease at Greensborough Plaza, VIC"	="Centrelink"	16-Jun-08	="Lease and rental of property or building"	01-Aug-08	31-Jan-11	304826.09	=""	="Lend Lease Real Estate Investment Pty Ltd"	16-Jun-08 03:20 PM	

+="CN91063"	"Completion of Asset Management Report."	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Corporate finance"	29-Feb-08	29-Feb-08	14255.63	=""	="PKF"	16-Jun-08 03:23 PM	

+="CN91066"	"SEALING COMPOUND"	="Defence Materiel Organisation"	16-Jun-08	="Adhesives and sealants"	16-Jun-08	15-Aug-08	23950.56	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	16-Jun-08 03:33 PM	

+="CN91065-A1"	"Records Management Audit"	="Australian Fair Pay Commission"	16-Jun-08	="Audit services"	28-Apr-08	30-Jun-08	25256.00	=""	="Records Solutions Pty Ltd"	16-Jun-08 03:33 PM	

+="CN91070"	"Flexible Cicuit Card Assembly"	="Defence Materiel Organisation"	16-Jun-08	="Circuit assemblies and radio frequency RF components"	16-Jun-08	13-Oct-08	41745.00	=""	="BAE  SYSTEMS AUSTRALIA LTD"	16-Jun-08 03:59 PM	

+="CN91071"	"Safe Lock"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business administration services"	11-Jan-08	11-Jan-08	10868.00	=""	="HIDE AWAY SAFE SECURITIES"	16-Jun-08 04:08 PM	

+="CN91073"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	16-Jun-08	="Business law services"	21-Dec-07	30-Jan-08	14560.81	=""	="MINTER ELLISON"	16-Jun-08 04:13 PM	

+="CN91076"	"Audit Regulation Team - Technical Workshop"	="Australian Securities and Investments Commission"	16-Jun-08	="Meeting facilities"	18-Feb-08	20-Feb-08	14675.00	=""	="Grace Hotel"	16-Jun-08 04:47 PM	

+="CN91077"	" Review, develop and implement NOPSA's Misconduct Policy in accordance with the Public Service Act 1999.  Review, develop and implement NOPSA's Whixtleblowers Policy in accordance with Section 16 of the Public Service Act "	="National Offshore Petroleum Safety Authority"	16-Jun-08	="Corporate objectives or policy development"	06-Jun-08	31-Jul-09	76010.00	=""	="Ernst & Young"	16-Jun-08 04:48 PM	

+="CN91075"	"Purchase or sensis survey data"	="Department of Broadband Communications and the Digital Economy"	16-Jun-08	="Public Utilities and Public Sector Related Services"	01-May-08	31-Jul-08	74800.00	="ATM08/1066"	="Sensis Pty Ltd"	16-Jun-08 04:52 PM	

+="CN91078"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	16-Jun-08	="Information technology consultation services"	19-Nov-07	20-Mar-08	75440.00	=""	="IMI & H Pty Ltd"	16-Jun-08 04:54 PM	

+="CN91079-A1"	"Interior Design Services for NOPSA's new premises - 100 St Georges Terrace Perth and Project Management Services"	="National Offshore Petroleum Safety Authority"	16-Jun-08	="Interior design or decorating"	07-May-08	30-Jun-09	77450.00	="RFT 15/2008"	="HBO+EMTB"	16-Jun-08 04:58 PM	

+="CN91080"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	16-Jun-08	="Information technology consultation services"	16-Mar-08	30-May-08	60000.00	=""	="Dragon House Consultants Pty Ltd"	16-Jun-08 04:59 PM	

+="CN91081"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	16-Jun-08	="Information technology consultation services"	29-Mar-08	30-Jun-08	25372.00	=""	="Bosphorous Enterprises Pty Ltd"	16-Jun-08 05:05 PM	

+="CN91082"	"SEAL, SECURITY: AD536, SELF ADHESIVE, DEPARTMENT OF DEFENCE AUSTRALIA, ROLL OF 500. QTY 5000."	="Defence Materiel Organisation"	16-Jun-08	="Tamper proof or security seals"	28-May-08	18-Jun-08	22385.00	=""	="PEGASUS PRINTING"	16-Jun-08 05:10 PM	

+="CN91083-A1"	"lease at levels 28 & 29, 477 Pitt Street, Haymarket"	="Centrelink"	16-Jun-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	3222266.00	=""	="ISPT Pty Ltd"	16-Jun-08 05:18 PM	

+="CN91084"	"NSN 5330-01-397-0460, Nonmetallic Strip Seals"	="Defence Materiel Organisation"	16-Jun-08	="Aerospace systems and components and equipment"	04-Jun-08	06-Nov-08	15945.60	=""	="Milspec Services Pty Ltd"	16-Jun-08 06:27 PM	

+="CN91085"	"NSN 3110-01-267-0051, Airfram Roller Bearings"	="Defence Materiel Organisation"	16-Jun-08	="Aerospace systems and components and equipment"	04-Jun-08	19-Jun-08	12337.38	=""	="Milspec Services Pty Ltd"	16-Jun-08 06:29 PM	

+="CN91086"	" POLARIS BIKE PARTS "	="Department of Defence"	17-Jun-08	="Motorcycles"	16-Jun-08	07-Jul-08	19958.40	=""	="POLARIS SALES AUSTRALIA"	17-Jun-08 08:09 AM	

+="CN91087"	"SDSS PURCHASE ORDER VARIOUS LANDROVER PARTS"	="Department of Defence"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jun-08	17-Jul-08	15027.34	=""	="LANDROVER AUSTRALIA"	17-Jun-08 08:23 AM	

+="CN91094"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft spars"	13-Jun-08	23-Jan-09	15321.90	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Jun-08 09:04 AM	

+="CN91096"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft spars"	13-Jun-08	16-Oct-08	25484.25	=""	="PACIFIC AERODYNE PTY LTD"	17-Jun-08 09:08 AM	

+="CN91097"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jun-08	="Printing"	21-May-08	30-Jun-08	154000.00	=""	="Canprint Communications Pty Ltd"	17-Jun-08 09:14 AM	

+="CN91098"	"Supply of electric lamps and associated equipment Contract (JH01043 )"	="Department of Parliamentary Services"	17-Jun-08	="Lamps"	22-May-08	06-Jun-08	16106.64	=""	="Specialised Lamp Supplies"	17-Jun-08 09:14 AM	

+="CN91099"	"Supply of office chairs"	="Department of Parliamentary Services"	17-Jun-08	="Chairs"	23-May-08	30-Jun-08	27596.80	=""	="McNally's Furniture & Upholstery"	17-Jun-08 09:15 AM	

+="CN91100"	"Carpetlaying and floor covering services Contract (DPS04145 )"	="Department of Parliamentary Services"	17-Jun-08	="Carpeting"	26-May-08	06-Jun-08	28210.60	=""	="Chesta's Floors"	17-Jun-08 09:15 AM	

+="CN91101"	"Provision of cabling and associated services Contract ( DPS04198)"	="Department of Parliamentary Services"	17-Jun-08	="Cable laying"	26-May-08	06-Jun-08	22000.00	=""	="Secom Technical Services P/L"	17-Jun-08 09:15 AM	

+="CN91102"	"Supply of barcode scanners"	="Department of Parliamentary Services"	17-Jun-08	="Magnetic stripe readers and encoders"	27-May-08	30-Jun-08	17696.80	=""	="POSmarket.com.au"	17-Jun-08 09:15 AM	

+="CN91103"	"For the purchase of fertilizer for Landscape services"	="Department of Parliamentary Services"	17-Jun-08	="Fertilisers and plant nutrients and herbicides"	28-May-08	30-Jul-08	15840.00	=""	="Davidson's Nurseries Pty Ltd"	17-Jun-08 09:15 AM	

+="CN91104"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Jun-08	="Visual art services"	28-May-08	30-Jun-08	21930.02	=""	="Tandanya National Aboriginal"	17-Jun-08 09:15 AM	

+="CN91105"	"Supply of electric lamps and associated equipment Contract (JH01043 )"	="Department of Parliamentary Services"	17-Jun-08	="Lighting and fixtures and accessories"	29-May-08	28-Jun-08	10845.01	=""	="Specialised Lamp Supplies"	17-Jun-08 09:15 AM	

+="CN91106"	"Security training services Contract (DPS03042 )"	="Department of Parliamentary Services"	17-Jun-08	="Education and Training Services"	29-May-08	26-Jun-08	11330.00	=""	="Xtek Limited"	17-Jun-08 09:16 AM	

+="CN91107"	"Key safes Software updates"	="Department of Parliamentary Services"	17-Jun-08	="Safes"	03-Jun-08	06-Jun-08	22487.00	=""	="CIC Secure Pty Ltd"	17-Jun-08 09:16 AM	

+="CN91108"	"Supply of Software"	="Department of Parliamentary Services"	17-Jun-08	="Business function specific software"	04-Jun-08	30-Jun-08	11088.00	=""	="Lange Consulting & Software"	17-Jun-08 09:16 AM	

+="CN91109"	"Supply of office equipment"	="Department of Parliamentary Services"	17-Jun-08	="Fridge bar"	05-Jun-08	30-Jun-08	17242.73	=""	="Harvey Norman Appliances"	17-Jun-08 09:16 AM	

+="CN91110"	"Provision of Security Analysis services"	="Department of Parliamentary Services"	17-Jun-08	="Environmental security control services"	06-Jun-08	30-Jun-08	10807.50	=""	="JobFit Systems International P/L"	17-Jun-08 09:16 AM	

+="CN91111"	"Provision of legal services"	="Department of Parliamentary Services"	17-Jun-08	="Legal services"	06-Jun-08	30-Jun-08	71500.00	=""	="Minter Ellison"	17-Jun-08 09:16 AM	

+="CN91112"	"AIRFARES APR-08"	="Department of Parliamentary Services"	17-Jun-08	="Passenger air transportation"	28-Apr-08	30-Apr-08	40990.41	=""	="Qantas Amex Business Travel A/C"	17-Jun-08 09:16 AM	

+="CN91114"	"PUBLICATIONS SUBSCRIPTION SUBS JUN-08 TO MAY-09"	="Department of Parliamentary Services"	17-Jun-08	="Printed publications"	10-Apr-08	31-May-09	48652.98	=""	="PROQUEST"	17-Jun-08 09:16 AM	

+="CN91115"	"Building works package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	17-Jun-08	="Building and Construction and Maintenance Services"	07-Sep-07	06-Jun-08	53900.00	=""	="Manteena Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91116"	"Provision of Project Management Services"	="Department of Parliamentary Services"	17-Jun-08	="Project management"	26-May-08	30-Jun-08	121000.00	=""	="Manteena Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91117"	"Maintenance for Dragon Naturally Speaking Software"	="Department of Parliamentary Services"	17-Jun-08	="Software maintenance and support"	14-May-08	30-Jun-08	18270.00	=""	="Voice Perfect Systems"	17-Jun-08 09:17 AM	

+="CN91118"	"Consultancy service to assist with the implementation of an EDRMS (DPS08004)"	="Department of Parliamentary Services"	17-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	31-Mar-10	980200.00	="DPS08004"	="Opticon Australia"	17-Jun-08 09:17 AM	

+="CN91119"	"Implementation and extended warranty for a Digital Audio System (DPS07090)"	="Department of Parliamentary Services"	17-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	01-Aug-14	990000.00	="DPS04175"	="FTR Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91120"	"Provision of Internet Access (DPS08023)"	="Department of Parliamentary Services"	17-Jun-08	="Internet services"	05-Jun-08	26-Nov-11	356400.00	="DPS06088"	="Soul Pattinson Telecomm'cations P/L"	17-Jun-08 09:18 AM	

+="CN91121"	"Supply of protective clothing"	="Department of Parliamentary Services"	17-Jun-08	="Safety apparel"	04-Jul-07	30-Jun-08	10120.00	=""	="Seears Workwear"	17-Jun-08 09:18 AM	

+="CN91122"	"Purchase of Turf Maintenance Products"	="Department of Parliamentary Services"	17-Jun-08	="Grounds maintenance services"	27-Mar-08	06-Jun-08	13600.57	=""	="Nuturf Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91123"	"Water inspection and treatment services Contract ( JH00051M )"	="Department of Parliamentary Services"	17-Jun-08	="Water testing and conservation and ecology"	17-Jul-07	06-Jun-08	10780.00	=""	="Ecolab Water Care Services Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91124"	"Fire Door Maintenance"	="Department of Parliamentary Services"	17-Jun-08	="Electromechanical services"	22-Oct-07	30-Jun-08	11000.00	=""	="Honeywell Limited"	17-Jun-08 09:18 AM	

+="CN91125"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jun-08	="Printing"	20-May-08	30-Jun-08	10298.41	=""	="Canprint Communications Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91126"	"Provision of courier services Contract (DPS07028)"	="Department of Parliamentary Services"	17-Jun-08	="Freight forwarders services"	08-Apr-08	06-Jun-08	13200.00	=""	="Universal Express"	17-Jun-08 09:18 AM	

+="CN91127"	"Purchase of fargo printer ribbon"	="Department of Parliamentary Services"	17-Jun-08	="Printer ribbon"	16-May-08	06-Jun-08	26448.40	=""	="Honeywell Limited"	17-Jun-08 09:18 AM	

+="CN91128"	"Supply of Photocopying machines"	="Department of Parliamentary Services"	17-Jun-08	="Printer and facsimile and photocopier supplies"	19-May-08	30-May-08	71049.00	=""	="Fuji Xerox Australia Pty Ltd"	17-Jun-08 09:19 AM	

+="CN91132"	"Legal services - counsel's fees"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	24-Aug-07	30-Jun-08	20000.00	=""	="Woodward, Edward"	17-Jun-08 09:27 AM	

+="CN91135"	"qty 30 cable assemblies to use with military radios."	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	16-Jun-08	03-Nov-08	30657.00	="RFQ-C7214"	="EYLEX PTTY LTD"	17-Jun-08 09:31 AM	

+="CN91138"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	01-Feb-08	30-Apr-08	41040.00	=""	="P & D Consultancies Pty Ltd"	17-Jun-08 09:32 AM	

+="CN91137"	"SUPPLY OF SUCTION APPARATUS, OROPHARYNGEAL"	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	30-Jun-08	21868.00	=""	="LAERDAL PTY LTD"	17-Jun-08 09:32 AM	

+="CN91139"	"qty 100 cable assemblies, special purpose, electrical for use with military radios."	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	16-Jun-08	13-Oct-08	24750.00	="RFQ-C7208"	="MARKERRY INDUSTRIES PTY LTD"	17-Jun-08 09:37 AM	

+="CN91142-A1"	"Professional services to support sustainability assessment"	="CrimTrac"	17-Jun-08	="Strategic planning consultation services"	01-May-08	31-Jul-08	80000.00	=""	="Hugh Watson Consulting"	17-Jun-08 10:07 AM	

+="CN91143"	"IT infrastructure architect contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	07-May-08	07-Nov-08	194480.00	=""	="Talent International ACT Pty Ltd"	17-Jun-08 10:07 AM	

+="CN91144"	"Programme Management training"	="CrimTrac"	17-Jun-08	="Labour training or development"	12-May-08	11-Jun-08	17160.00	=""	="Tanner James Managment Consultants"	17-Jun-08 10:07 AM	

+="CN91145"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	114400.00	=""	="SMS Consulting Group Limited"	17-Jun-08 10:07 AM	

+="CN91146"	"Contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	41888.00	=""	="Face 2 Face Recruitment Pty Limited"	17-Jun-08 10:07 AM	

+="CN91147"	"Process contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	20-May-08	06-Jun-08	205900.00	=""	="Integral Consulting Services Pty Ltd"	17-Jun-08 10:07 AM	

+="CN91148"	"Enclosure for data centre"	="CrimTrac"	17-Jun-08	="Computer servers"	23-May-08	30-Jun-08	79998.60	=""	="Data#3 Limited"	17-Jun-08 10:07 AM	

+="CN91150"	"Production of promotional DVD"	="CrimTrac"	17-Jun-08	="News and publicity services"	26-May-08	22-Aug-08	204303.00	=""	="Cutting Edge"	17-Jun-08 10:08 AM	

+="CN91151"	"SLA Agreements for Lan  Desktop Systems"	="CrimTrac"	17-Jun-08	="Local area network LAN maintenance or support"	26-May-08	30-Apr-09	246738.30	=""	="Infront Systems Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91152"	"Cost planning for New office fitout"	="CrimTrac"	17-Jun-08	="Site offices"	28-May-08	30-Jun-08	31680.00	=""	="Donald Cant Watts Corke (ACT) Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91153"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	20-Dec-07	30-Jun-08	100290.96	=""	="Paxus Australia Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91154"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	107536.00	=""	="SMS Consulting Group Limited"	17-Jun-08 10:08 AM	

+="CN91155"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	84656.00	=""	="Peoplebank Recruitment Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91156"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	146300.00	=""	="Paxus Australia Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91158"	"Provision of cleaning services to 38 and 44 Sydney Ave and Fyshwick Store"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Building cleaning services"	01-Aug-05	13-Mar-08	618503.60	="DCON/04/153"	="M&M Rolfe Cleaning Services Pty Ltd"	17-Jun-08 10:28 AM	

+="CN91159"	"Data cabling"	="Australian Industrial Registry"	17-Jun-08	="Network cable"	10-Jun-08	08-Jul-08	114480.30	=""	="ELECDATA AUSTRALIA"	17-Jun-08 10:33 AM	

+="CN91160-A3"	"Provision of services in relation to Microsoft SharePoint application"	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	14-May-10	475038.40	="RFT 8-2007"	="Clicks Recruit Pty Ltd"	17-Jun-08 10:34 AM	

+="CN91161"	"Provision of security guarding and patrol services to Departmental premises"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Security guard services"	01-Mar-07	01-Mar-10	3040608.00	="CCR/06/2088"	="Chubb Security Personnel Pty LTd"	17-Jun-08 10:37 AM	

+="CN91162-A1"	"08/2739 - Risk Management Consultant - 1599-1955 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	11-Apr-08	15-Jun-08	18555.61	=""	="RSM Bird Cameron"	17-Jun-08 10:39 AM	

+="CN91164-A1"	"Project management services"	="Australian Federal Police"	17-Jun-08	="Project management"	01-Jul-08	30-Jun-09	265179.20	=""	="Paxus Australia Pty Limited"	17-Jun-08 10:42 AM	

+="CN91163"	"4th Quarter IT Service Charges"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Information technology consultation services"	01-Oct-07	31-Dec-07	345920.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:45 AM	

+="CN91167-A1"	"08/2765 - Design Consultant - 1599-2004 - C&B Services Panel 06/1599 (CPE004922-1)"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	20-May-08	29-Aug-08	314600.00	=""	="2nd Road Pty Ltd"	17-Jun-08 10:45 AM	

+="CN91185-A1"	"08/2732 - Business Adviser - 0299-1012 - IT Business Advisory Panel 04/0299 (CPE004787-1)"	="Australian Customs and Border Protection Service"	17-Jun-08	="Information technology consultation services"	26-Mar-08	30-Jun-08	86257.07	=""	="Apis Group Pty Ltd"	17-Jun-08 10:51 AM	

+="CN91218-A1"	"08/2805 - Review Contractor - 1599-1950 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	06-May-08	30-Jun-08	45000.00	=""	="EDS (Australia) Pty Ltd"	17-Jun-08 10:53 AM	

+="CN91194"	"MOU Charges April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Apr-08	30-Apr-08	56216.60	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:54 AM	

+="CN91228-A4"	"Provision of services in relation to software testing to support applications development"	="Australian Federal Police"	17-Jun-08	="Computer Equipment and Accessories"	01-Jul-08	14-Jan-11	405232.57	="RFT 8-2007"	="Southern Cross Computing Pty Limited"	17-Jun-08 10:55 AM	

+="CN91251"	"Property charges for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Property management services"	01-Mar-08	31-Mar-08	36168.28	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:59 AM	

+="CN91266-A1"	"07/2157 - Consultancy Services - 1599-1948 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	10-Sep-07	31-Dec-07	68805.00	="07/2157"	="Pricewaterhouse Coopers"	17-Jun-08 11:00 AM	

+="CN91292"	"Modification and Repair of Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79200.00	=""	="Hawker De Havilland"	17-Jun-08 11:05 AM	

+="CN91301"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	15-Oct-07	28-Mar-08	70600.00	=""	="Observatory Hill Pty Ltd"	17-Jun-08 11:06 AM	

+="CN91281"	"MOU Charges January 2008 (2nd payment)"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Jan-08	31-Jan-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 11:07 AM	

+="CN91317-A1"	"08/2822 - Project Management Services - 1599-1987 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	11-May-08	29-Aug-08	74000.00	="08/2822"	="Cordelta Pty Ltd"	17-Jun-08 11:08 AM	

+="CN91323"	"Internal audit services"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Audit services"	01-Jul-06	30-Aug-08	412500.00	="DCON/05/53"	="Protiviti Pty Ltd"	17-Jun-08 11:09 AM	

+="CN91331-A3"	"Provision of  Information Technology security architecture services"	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Jun-10	607367.23	=""	="Frontier Group Australia Pty Limited"	17-Jun-08 11:10 AM	

+="CN91367-A1"	"08/2817 - Consultancy Service - 1599-1944 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-May-08	31-Jul-08	19800.00	="08/2817"	="Oakton AA Services Pty Ltd"	17-Jun-08 11:15 AM	

+="CN91365"	"Firewall network security equipment for its Sydney and Norwest Offices."	="Reserve Bank of Australia"	17-Jun-08	="Firewall network security equipment"	01-Aug-08	31-Aug-09	1685888.31	="RBAST.191007"	="Alphawest Data Services Pty Ltd"	17-Jun-08 11:15 AM	

+="CN91392-A1"	"08/2705 - Consultancy Service - 1599-1970 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-May-08	31-Jul-08	25000.00	="08/2705"	="Freebody Cogent Pty Ltd"	17-Jun-08 11:18 AM	

+="CN91358"	"November 2007 SES Fuel Charges and January 2008 SES Lease Charges."	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-Nov-07	31-Jan-08	10126.21	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 11:19 AM	

+="CN91410-A1"	"08/2650 - IT Contractor - 1599-1947 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-Mar-08	30-Jun-08	120000.00	="08/2650"	="Centre for Customs and Excise Studies - University of Canberra"	17-Jun-08 11:21 AM	

+="CN91434-A1"	"08/2607 - Project Manager - 0717-0877 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	137445.00	=""	="Greythorn Pty Ltd"	17-Jun-08 11:24 AM	

+="CN91436-A2"	" Provision of services facilitating and promoting the effective use of AFP geospatial systems and products to AFP personnel "	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	271700.00	=""	="Corporate GIS Consultants Australia Pty. Ltd."	17-Jun-08 11:24 AM	

+="CN91460-A1"	"07/1896 - Extension #1 - Administration Support Specialist - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Jun-08	="Temporary personnel services"	15-May-08	01-Sep-08	47200.00	="07/1896"	="CCS Index Pty Ltd"	17-Jun-08 11:29 AM	

+="CN91497-A1"	"Develop costing methodology"	="Australian Taxation Office"	17-Jun-08	="Public enterprises management or financial services"	10-Jun-08	30-Sep-08	115600.00	=""	="Freebody Cogent Pty Ltd"	17-Jun-08 11:33 AM	

+="CN91419-A1"	"Temporary Backfill of Technical Architecture Role for STAR Program"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	15-Jan-08	15-May-08	79200.00	=""	="SMS Management & Technology Limited (formerly Avoga)"	17-Jun-08 11:34 AM	

+="CN91523"	"ENGEL 40LT - M113"	="Department of Defence"	17-Jun-08	="Armoured fighting vehicles"	16-Jun-08	08-Jul-08	31893.40	=""	="ENGEL DISTRIBUTION PTY LTD"	17-Jun-08 11:37 AM	

+="CN91540-A1"	"6 month contract - ECM Business Analyst"	="Australian Securities and Investments Commission"	17-Jun-08	="Temporary personnel services"	12-Dec-07	06-Jun-08	117425.00	=""	="SMS Management & Technology Limited"	17-Jun-08 11:39 AM	

+="CN91556-A2"	" Provision of services relating to business analysis activities "	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Apr-09	160556.00	=""	="Paxus Australia Pty Limited"	17-Jun-08 11:41 AM	

+="CN91577"	"TASK 1125-4 INTEGRATION OF USQ125 LINK 11 DTS & RCU INTO ANZAC CLASS C2 SIMULATOR"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-09	1255854.49	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 11:43 AM	

+="CN91580"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:43 AM	

+="CN91582"	"This order is raised to replace SDSS order number 4500423658) to cover the repairs, termination and"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	03-Jun-08	28135.62	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	17-Jun-08 11:44 AM	

+="CN91584"	"OVERHAUL THE SEALED HYDRAULIC TRANSMISSION UNIT FOR THE REPLENISHMENT AT SEA (RAS )SYSTEM."	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	03-Jun-08	30-Jun-08	63605.73	=""	="PARKER HANNIFIN AUST PTY LTD"	17-Jun-08 11:44 AM	

+="CN91586"	"Supply and installation of UPS for the MU90"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	03-Jun-08	31-Dec-08	11858.00	=""	="NATURAL POWER SOLUTIONS PTY LTD"	17-Jun-08 11:44 AM	

+="CN91588"	"TASK 4189-4 IMPROVED FINANCIAL REPORTING THROUGH ENHANCEMENT TO PROCESSES"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jul-08	99871.20	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 11:44 AM	

+="CN91590"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:44 AM	

+="CN91592"	"Produce Test Procedure & Drawings for the Manufact ure and Installation of Removable Insulation"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	09-Aug-08	38126.74	=""	="THALES AUSTRALIA"	17-Jun-08 11:44 AM	

+="CN91594-A1"	"TASK 1201-3 TU-ASSC 400 HZ 25 KVA AND 5 KVA STATIC FREQUENCY CONVERTER RELOCATION"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jul-08	97605.98	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91596"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:45 AM	

+="CN91598"	"CP342 HP AIR DISTRIBUTION PANELS"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	01-Nov-08	151929.92	=""	="THALES AUSTRALIA"	17-Jun-08 11:45 AM	

+="CN91600-A1"	"STAGE 4 ENGINEERING SVCS IAW TASK 1089-4 - COMMUNICATIONS SYSTEM - BATTERY CHARGER INSTALLATI"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	24-Feb-11	183368.13	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91602"	"EMERGENT WORK IAW QUOTE 5243"	="Defence Materiel Organisation"	17-Jun-08	="Fire fighting equipment"	03-Jun-08	30-Jun-08	51137.31	=""	="R G M MAINTENANCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91604"	"Architect Solution Services"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	02-Jun-08	30-Jun-08	70000.00	=""	="DELOITTE TOUCHE TOHMATSU"	17-Jun-08 11:45 AM	

+="CN91606"	"GASKET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	02-Jun-08	01-Jan-09	10419.91	=""	="AGUSTAWESTLAND LTD"	17-Jun-08 11:45 AM	

+="CN91608"	"INSTALLATION OF NETWORK COMPUTER OUTLETS IN BUILDING 189"	="Defence Materiel Organisation"	17-Jun-08	="Components for information technology or broadcasting or telecommunications"	03-Jun-08	30-Jun-08	13200.00	=""	="TPE INTERGRATED SERVICES"	17-Jun-08 11:46 AM	

+="CN91610"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	15151414.92	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:46 AM	

+="CN91611"	"Conference Hire and Catering"	="CRS Australia"	17-Jun-08	="Meeting facilities"	28-May-08	30-May-08	13299.09	=""	="MUSTARD CATERING"	17-Jun-08 11:46 AM	

+="CN91613"	"DEHUMIDIFICATION INTERFACE SYSTEMS"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	03-Jun-08	30-Jun-09	175835.00	=""	="MVO AIRCONDITIONING PTY LTD"	17-Jun-08 11:46 AM	

+="CN91614"	"Mods for client  Workplace - Wheelchair"	="CRS Australia"	17-Jun-08	="Wheelchairs"	20-May-08	30-May-08	19000.00	=""	="MOBILITY INNOVATIONS"	17-Jun-08 11:46 AM	

+="CN91616"	"AIMS and BART Migration to Active Directory"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Jun-08	01-Dec-08	93476.90	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	17-Jun-08 11:46 AM	

+="CN91618"	"Teamcentre Maintenance & Support FY07/08 and FY08/09"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Jun-08	30-Jun-09	879592.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	17-Jun-08 11:46 AM	

+="CN91620"	"Create TMS for the Provision of Docking and Slipp- ing activity Report"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	31-Jul-08	16845.61	=""	="THALES AUSTRALIA"	17-Jun-08 11:46 AM	

+="CN91622"	"Panasonic Whiteboards"	="Defence Materiel Organisation"	17-Jun-08	="Office machines and their supplies and accessories"	03-Jun-08	20-Jun-08	16222.80	=""	="CORPORATE EXPRESS AUST LTD"	17-Jun-08 11:46 AM	

+="CN91624"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	72617987.45	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:46 AM	

+="CN91625"	"Training Program"	="Defence Materiel Organisation"	17-Jun-08	="Education and Training Services"	03-Jun-08	30-Jun-08	115280.00	=""	="DEAKINPRIME"	17-Jun-08 11:47 AM	

+="CN91627"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	6056157.00	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:47 AM	

+="CN91629"	"4171AH2-4 ENGINERRING AND ILS SUPPORT - HMAS WARRAMUNGA SRA05"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Aug-08	201504.60	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:47 AM	

+="CN91631"	"Survey & quote 005 HACTS IPT"	="Defence Materiel Organisation"	17-Jun-08	="Aquatic invertebrates"	03-Jun-08	25-Jul-08	109125.81	=""	="RAYTHEON AUST PTY LTD"	17-Jun-08 11:47 AM	

+="CN91633"	"This P.O. has been raised to facilitate the pre-pa Black Hawk A25-105 to SAAL for survey, quote and"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	03-Jun-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 11:47 AM	

+="CN91635"	"RADAR SYSTEM DISPLAYS HMAS SUCCESS"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	03-Jun-08	30-Jun-08	21000.32	=""	="INTELLIGENT TECHNICAL SERVICE"	17-Jun-08 11:47 AM	

+="CN91637"	"TASK 3015-0026 HMAS PARRAMATTA URDEF 85/07 - HANGAR DOOR REPAIR"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-08	26066.09	=""	="PATRICK DEFENCE LOGISTICS"	17-Jun-08 11:47 AM	

+="CN91639"	"Laser Scanning"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	11-Jul-08	26708.55	=""	="EDAG AUSTRALIA PTY LTD"	17-Jun-08 11:48 AM	

+="CN91641"	"ESP to Review the GW Maintenance Policy"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	03-Jun-08	30-Jul-08	82500.00	=""	="NOVA DEFENCE"	17-Jun-08 11:48 AM	

+="CN91644"	"TAP-3 Disposal - Phase 4 Continuation Work of Previous Phases"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	25-Jun-08	17395.58	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:48 AM	

+="CN91646"	"Cable Assy"	="Defence Materiel Organisation"	17-Jun-08	="Vehicle safety and security systems and components"	04-Jun-08	26-Aug-08	15931.80	=""	="DRS TECHNOLOGIES UK LIMITED"	17-Jun-08 11:48 AM	

+="CN91648"	"Dual SW/tail"	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	04-Jun-08	02-Oct-08	17830.38	=""	="LASER PRODUCTS"	17-Jun-08 11:48 AM	

+="CN91650"	"Kidde Aerospace  &  Defence Quotation Ref: KAD"	="Defence Materiel Organisation"	17-Jun-08	="Fire fighting equipment"	10-Jun-08	01-Jul-08	19697.48	=""	="KIDDE AEROSPACE & DEFENCE"	17-Jun-08 11:48 AM	

+="CN91652"	"LABEL"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	04-Jun-08	30-Jun-08	20251.00	=""	="OFFICEMAX AUSTRALIA LTD"	17-Jun-08 11:49 AM	

+="CN91654"	"CLOSE OUT OF RTP RISKS"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Sep-08	316708.56	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:49 AM	

+="CN91656"	"For the procurement of Repairs and upgrades of Bir"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	03-Jun-08	30-Jun-08	86075.00	=""	="TRIMCAST PTY LTD"	17-Jun-08 11:49 AM	

+="CN91660"	"MODIFICATION OF SIZE 8 SHIPPING CONTAINERS FOR 60K"	="Defence Materiel Organisation"	17-Jun-08	="Containers and storage"	03-Jun-08	31-Jul-08	11797.50	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 11:49 AM	

+="CN91662"	"Provision of ESP to Provide Training Devices Engineering Support (LEVEL 2)"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	03-Jun-08	30-Jun-09	171620.00	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:49 AM	

+="CN91664"	"4517.09 CONDUCT SHIP BREAKAGE READINGS ONBOARD HMAS ARUNTA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	27-Jun-08	16885.00	=""	="FUGRO SPATIAL SOLUTIONS"	17-Jun-08 11:49 AM	

+="CN91666"	"Provisioin of 2 largeTopowl Helmets"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	03-Jun-08	30-Jun-09	54488.09	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:49 AM	

+="CN91668"	"Provisioin of 2 largeTopowl Helmets"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	03-Jun-08	30-Jun-09	27838.87	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:50 AM	

+="CN91670"	"EL/L-8222 Active RF ECM Pod"	="Defence Materiel Organisation"	17-Jun-08	="Missile and rocket launchers"	03-Jun-08	28-Jun-12	4274600.00	=""	="ELTA SYSTEMS LTD"	17-Jun-08 11:50 AM	

+="CN91672"	"NEC 20" monitors"	="Defence Materiel Organisation"	17-Jun-08	="Air transportation support systems and equipment"	03-Jun-08	30-Jun-08	78575.64	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 11:50 AM	

+="CN91674"	"Software Required for skill Development within the engineering staff"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	03-Jun-08	30-Jun-08	11453.75	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	17-Jun-08 11:50 AM	

+="CN91676"	"modifications to SMB GEOGRAPHE, SMB FANTOME and SMB CONDEr"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	03-Jun-08	15-Jun-08	25469.40	=""	="AIMTEK PTY LTD"	17-Jun-08 11:50 AM	

+="CN91678"	"Refurbish Fan Coil Units Type 1 Size 24, and Type1 Size 25"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	22-Jul-08	64262.00	=""	="ENVIROAIR PTY LTD"	17-Jun-08 11:50 AM	

+="CN91680"	"Survey & quote 005 HACTS IPT"	="Defence Materiel Organisation"	17-Jun-08	="Aquatic invertebrates"	03-Jun-08	25-Jul-08	119061.06	=""	="RAYTHEON AUST PTY LTD"	17-Jun-08 11:50 AM	

+="CN91682"	"HEAVY GRADE REPAIR, ASLAV VEH ARN 16308"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-May-08	30-May-08	204706.72	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:51 AM	

+="CN91684"	"PROCUREMENT OF REPAIR AND OVERHAUL INCLUDING HEAVY ASLAV VEHICLE ARN 16046"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-May-08	30-May-08	137445.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:51 AM	

+="CN91686"	"EMA CLASS PROJECT MANAGEMENT TEAMS - 01 JUN 08 - 30 JUN 09"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	30-May-08	30-Jul-09	920581.20	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:51 AM	

+="CN91688"	"FOR REPAIRABLE ITEM BDS SUPPLY AND RETURN OF PRIOR"	="Defence Materiel Organisation"	17-Jun-08	="Transportation components and systems"	30-May-08	30-Jun-09	20000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:51 AM	

+="CN91690"	"Develop a Test Righ and Test procedures for Noise Attenuation"	="Defence Materiel Organisation"	17-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	30-Jul-08	38900.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:51 AM	

+="CN91692"	"BACHSHELLS"	="Defence Materiel Organisation"	17-Jun-08	="Electrical components"	30-May-08	20-Jun-08	18175.08	=""	="CAMBRIDGE TECHNOLOGIES"	17-Jun-08 11:51 AM	

+="CN91694"	"Spectrum Analyser"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	30-May-08	29-Aug-08	11926.20	=""	="TRIO SMARTCAL PTY LTD"	17-Jun-08 11:51 AM	

+="CN91696"	"PUMP INTRAVENOUS INFUSION"	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	30-May-08	05-Jun-08	264880.00	=""	="CARDINAL HEALTH AUSTRALIA 316 PTY"	17-Jun-08 11:51 AM	

+="CN91698"	"Costs associated with Phase A servicing to aircraft 875"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	30-May-08	08-Aug-08	484326.16	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 11:52 AM	

+="CN91700"	"Shadow Excursion Spares"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	30-May-08	26-Jun-08	38784.93	=""	="DIVEX ASIA PACIFIC PTY LTD"	17-Jun-08 11:52 AM	

+="CN91702"	"SDSS IT Controls Framework Back-End Testing"	="Defence Materiel Organisation"	17-Jun-08	="Software"	30-May-08	20-Jun-08	103999.82	=""	="KPMG"	17-Jun-08 11:52 AM	

+="CN91704"	"This purchase is raised to Supply the following BP Testing.  Quote reference is QT001554 Rev 2.   Te"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	30-May-08	30-Aug-08	695983.33	=""	="HELITECH DIV OF SIKORSKY"	17-Jun-08 11:52 AM	

+="CN91706"	"Onsite network and VAX equipment support services for the Software Support Centre"	="Defence Materiel Organisation"	17-Jun-08	="Software"	30-May-08	08-Aug-08	48235.00	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 11:52 AM	

+="CN91708"	"SURVEY & QUOTE 30 - ADVANCE FUNDING FOR CCP4 ACTIVITIES - C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	2760078.51	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:52 AM	

+="CN91710"	"SURVEY & QUOTE 31 - ADVANCE FUNDING FOR CCP4 ACTIVITIES - C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	259065.00	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:52 AM	

+="CN91712"	"PROBITY AUDITOR FOR THE ASIPA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	29-May-08	30-Jun-13	3025000.00	=""	="KPMG AUSTRALIA"	17-Jun-08 11:52 AM	

+="CN91714"	"Hard Drives, cables, Switches, Ethernet adapters pluggable modules, Toner and nuts and bolt."	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	29-May-08	11-Jun-08	14205.13	=""	="WC PENFOLD PTY LTD"	17-Jun-08 11:53 AM	

+="CN91716"	"DISCRETE TASK 77 - ADVANCE FUNDING AWR'S W021 AND W037"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	31-Mar-09	203106.96	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:53 AM	

+="CN91718"	"SURVEY & QUOTE 23 - ADVANCE FUNDING FOR CCP4"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	1055596.00	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:53 AM	

+="CN91720"	"Foam ring for dummy torpedo"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	29-May-08	31-Dec-08	11487.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:53 AM	

+="CN91722"	"install posmv, cmax and caris hips and sips on smb casuarina"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	29-May-08	10-Jun-08	187195.80	=""	="AIMTEK PTY LTD"	17-Jun-08 11:53 AM	

+="CN91724"	"This purchase order is raised under authority Millar to upgrade the outdated Vesda System locate"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	29-May-08	20-Jun-08	17075.30	=""	="SPOTLESS SERVICES LTD"	17-Jun-08 11:53 AM	

+="CN91726"	"RING, ASSY HALF"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	29-May-08	01-Aug-09	40040.19	=""	="ROLLS - ROYCE PLC"	17-Jun-08 11:53 AM	

+="CN91728"	"PISTON, EJECTOR INNER"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	30-May-08	05-Aug-08	11709.50	=""	="MARVIN ENGINEERING CO INC"	17-Jun-08 11:54 AM	

+="CN91731"	"DISPOSAL OF BATTERIES"	="Defence Materiel Organisation"	17-Jun-08	="Batteries and generators and kinetic power transmission"	30-May-08	26-Jun-08	25846.58	=""	="THIESS SERVICES"	17-Jun-08 11:54 AM	

+="CN91733"	"Tenix - Support Trials (Tapa)"	="Defence Materiel Organisation"	17-Jun-08	="Containers and storage"	30-May-08	30-Jun-08	208375.20	=""	="TENIX SYSTEMS PTY LTD"	17-Jun-08 11:54 AM	

+="CN91735"	"PVC Insulated Wiring Power Cable Replacement"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	02-Jun-08	31-Jul-08	30626.20	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:54 AM	

+="CN91738"	"  Re-Engagement of Mr Peter Kalmar as the JCSE Architect/Integration specialist <"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	02-Jun-08	02-Mar-09	281952.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	17-Jun-08 11:54 AM	

+="CN91740"	"transport smb's from cairns to sydney"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	02-Jun-08	30-Jun-08	20683.30	=""	="AIMTEK PTY LTD"	17-Jun-08 11:55 AM	

+="CN91742"	"Repair & Overhaul Agreement No. 98001833/3636 Repairs to ASLAV Vehicle 16459"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Jun-08	25-Jun-08	44412.51	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:55 AM	

+="CN91736"	"Extension to the contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	25-Aug-07	22-Feb-08	69300.00	=""	="Sammes & Sammes Pty Ltd"	17-Jun-08 11:55 AM	

+="CN91744"	"Installation Design Package- HMAS Melbourne Damage Control Console Upgrade"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	02-Jun-08	01-Sep-08	124575.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	17-Jun-08 11:55 AM	

+="CN91729"	"VEHICLE REPAIRS"	="Department of Defence"	17-Jun-08	="Motor vehicles"	22-May-08	22-Jun-08	26716.03	=""	="FB AUTOS"	17-Jun-08 11:55 AM	

+="CN91746"	"Installation Design Package - Automatic Identifcat ion System (AIS) HMAS Sydney IMAV24"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	02-Jun-08	01-Sep-08	40342.57	=""	="THALES AUSTRALIA"	17-Jun-08 11:55 AM	

+="CN91748"	"Installation Design Package - Replacement of AN/AU K43 Cooling Water Low FlowAlarm Switch"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	02-Jun-08	15-Jul-08	27756.00	=""	="THALES AUSTRALIA"	17-Jun-08 11:55 AM	

+="CN91750"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	02-Jun-08	30-Jun-08	46970.00	=""	="KEYWATCH SYSTEMS QUEENSLAND"	17-Jun-08 11:55 AM	

+="CN91752"	"Engineering in support of the structural integrity of the F-111"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	02-Jun-08	30-May-09	392700.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	17-Jun-08 11:55 AM	

+="CN91754"	"ORDER RAISED IAW  THALES AUSTRALIA CENTAUR QUOTATI 20% DOWN PAYMENT ON ORDER 80% DELIVERY OF EACH UN"	="Defence Materiel Organisation"	17-Jun-08	="Naval weapons"	02-Jun-08	02-Jun-09	114809.20	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91757"	"Repairs of CPT located at Brisbane, Darwin & Pucka"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	02-Jun-08	30-Jun-08	47410.01	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91759"	"IRSS CTD ORDER PH2A"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	02-Jun-08	11-Nov-08	663273.61	=""	="GKN AEROSPACE ENGINEERING SERVICES"	17-Jun-08 11:56 AM	

+="CN91761"	"Primer 38 Gram M2A1 Pack"	="Defence Materiel Organisation"	17-Jun-08	="Explosive materials"	02-Jun-08	31-Mar-10	101323.38	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91763"	"Project Management Support"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	30-May-08	28-Oct-08	175038.66	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91765"	"ESSM Integration Technical Authority"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	30-May-08	30-May-08	109805.22	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 11:56 AM	

+="CN91767"	"Requirements Engineer"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	30-May-08	30-Dec-08	203620.00	=""	="SYPAQ SYSTEMS PTY LTD"	17-Jun-08 11:56 AM	

+="CN91769"	"FC PAD"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	30-May-08	29-Sep-08	95526.30	=""	="CONVERTEAM SAS"	17-Jun-08 11:56 AM	

+="CN91771"	"CONTRACT CONDITIONS: PRODUCT SUPPORT AND TECHNICAL 28TH JULY 1995. IN ACCORDANCE WITH INCOTERMS YOU"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	31-May-08	15-Jun-08	128960.76	=""	="ROLLS - ROYCE PLC"	17-Jun-08 11:57 AM	

+="CN91773"	"CONNECTING LINK, RIGID"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	31-May-08	25-Nov-08	22686.62	=""	="HELICOPTER SUPPORT INC DBA SERVICES"	17-Jun-08 11:57 AM	

+="CN91775"	"Satellite Equipment"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	02-Jun-08	31-Dec-08	3672460.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:57 AM	

+="CN91777"	"Trust account financial year 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	02-Jun-08	24-Jun-08	3553337.19	=""	="NATO SEASPARROW SURFACE MISSILE SYS"	17-Jun-08 11:57 AM	

+="CN91779"	"Trust account Financial year 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	02-Jun-08	24-Jun-08	3563195.53	=""	="NATO SEASPARROW SURFACE MISSILE SYS"	17-Jun-08 11:57 AM	

+="CN91781"	"BLANKET RAISED FOR THE SUPPLY OF AUTOMOTIVE DIESEL TO VARIOUS RAN and  FOREGIN VESSELS, WITHIN AUS"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	02-Jun-08	30-Jun-08	605000.00	=""	="SHELL CO OF AUSTRALIA LTD"	17-Jun-08 11:57 AM	

+="CN91783"	"Evaluate Thales Contract Master Schedule"	="Defence Materiel Organisation"	17-Jun-08	="Naval weapons"	02-Jun-08	28-Nov-08	38382.40	=""	="TERRA FIRMA PTY LTD"	17-Jun-08 11:57 AM	

+="CN91785"	"This PO raised for the supply of emergency BDS ite to complete RI's in progress."	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	02-Jun-08	30-Jun-09	60000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:58 AM	

+="CN91787"	"Warden Tasks"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	26-Jun-08	35693.78	=""	="DARONMONT TECHOLOGIES PTY LTD"	17-Jun-08 11:58 AM	

+="CN91789"	"BHI EWSP TRAVEL TO TOWNSVILLE 11-13 JUN 08"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	31-Jul-08	13500.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:58 AM	

+="CN91791"	"Scheduling IPPSR Intergration Support"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	06-Jun-08	05-Jun-09	261500.80	=""	="CROWN MANAGEMENT CONSULTANTS PTY"	17-Jun-08 11:58 AM	

+="CN91793"	"RAISE CHANGE OBJECTS A REQ'D"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	01-Oct-08	34625.84	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:58 AM	

+="CN91795"	"Avionics Spares NSN 01-508-8776"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	30-Aug-08	10365.69	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	17-Jun-08 11:58 AM	

+="CN91797"	"AMCO INSTALLATION HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	30-Oct-08	49192.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:58 AM	

+="CN91799"	"20IN NEC LCD MONITORS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	30-Jun-08	42309.96	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 11:58 AM	

+="CN91801"	"Sonix to Support Trials"	="Defence Materiel Organisation"	17-Jun-08	="Measuring and observing and testing instruments"	06-Jun-08	30-Jul-08	27676.00	=""	="SONARTECH ATLAS"	17-Jun-08 11:59 AM	

+="CN91803"	"Software Licence"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	11110.00	=""	="SONARTECH ATLAS"	17-Jun-08 11:59 AM	

+="CN91806"	"REPAIR OF F/A-18 EMBEDDED GPS/INU SET"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	06-Jun-08	31-Oct-08	11576.44	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 11:59 AM	

+="CN91808"	"PSP SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-09	168623.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	17-Jun-08 11:59 AM	

+="CN91810"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	126146.20	=""	="GETRONICS (AUSTRALIA) PTY LTD"	17-Jun-08 11:59 AM	

+="CN91812"	"CUSHION"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	25-Oct-08	97912.71	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	17-Jun-08 12:00 PM	

+="CN91814"	"CIRCUIT CARD ASSEMBLEY"	="Defence Materiel Organisation"	17-Jun-08	="Electrical components"	05-Jun-08	27-Mar-09	557271.00	=""	="THALES AUSTRALIA LIMITED"	17-Jun-08 12:00 PM	

+="CN91804"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	03-Oct-07	28-Mar-08	65000.00	=""	="SVH Computing Pty Ltd"	17-Jun-08 12:00 PM	

+="CN91816"	"SPROCKET WHEEL CARRIERS"	="Defence Materiel Organisation"	17-Jun-08	="Bearings and bushings and wheels and gears"	05-Jun-08	16-Jun-09	390115.00	=""	="OWEN INTERNATIONAL PTY LTD"	17-Jun-08 12:00 PM	

+="CN91818"	"HUGPH3.2 - C338529 - SURVEY & QUOTE 26 - AUD COMPONENT - SRP2"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Jun-10	47334.58	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 12:00 PM	

+="CN91820"	"DEAKINPRIME ENGAGED TO CONDUCT FEASIBILITY ANALYSI INTO MATERIEL LOGISTICS TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	05-Jun-08	30-Jun-08	14762.00	=""	="DEAKINPRIME"	17-Jun-08 12:00 PM	

+="CN91822"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	05-Jun-08	30-Jun-08	38692.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:00 PM	

+="CN91824"	"3057 HMAS ARUNTA DSRA06/IMAV07"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	31-Dec-08	8393388.62	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:00 PM	

+="CN91826"	"REPAIRS TO BATHROOMS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	05-Jun-08	30-Jun-08	10686.72	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:00 PM	

+="CN91828"	"P5343-001 HMAS ARUNTA IMAV06 - ON SITE LOG SPT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Jun-08	24721.80	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:01 PM	

+="CN91830"	"TASK 3056 HMAS WARRAMUNGA SRA05 - PROC STRATEGY - LOE AND TCE AGREEMENT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Dec-08	7040000.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:01 PM	

+="CN91832"	"NDT PHASED ARRAY TRANSDUCERS PURCHASED FROM OLYMPUS - C338529 - HUGPH3.2 - SRP2"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Jun-10	19166.40	=""	="OLYMPUS AUST PTY LTD"	17-Jun-08 12:01 PM	

+="CN91834"	"Hydraulic Capacitator Asssembly"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	06-Jun-08	30-Mar-09	46395.17	=""	="HONEYWELL INTERNATIONAL INC!DBA HON"	17-Jun-08 12:01 PM	

+="CN91836"	"BUCKLE RESTRAINT SYSTEM"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	05-Sep-08	54587.56	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	17-Jun-08 12:01 PM	

+="CN91838"	"Executive Coaching"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Jun-08	30-Dec-08	17380.00	=""	="MELBOURNE BUSINESS SCHOOL"	17-Jun-08 12:01 PM	

+="CN91840"	"Annual Membership NATA Fy 2008-2009"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Jun-08	30-Jun-09	23604.99	=""	="NATIONAL ASSOCIATION OF TESTING"	17-Jun-08 12:01 PM	

+="CN91842"	"Inspect/ Operationally Test HMAS Sydney Oily Water Seperator, and Oil Content Meter, Recert meter."	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	31-Jul-08	18854.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	17-Jun-08 12:02 PM	

+="CN91844-A1"	" TASK 4169-4 HMAS PERTH SRA01/IMAV02 "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	23-Jun-11	2216705.47	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:02 PM	

+="CN91846"	"Services for rectification of build anom's in Black Hawk A25-106"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	30-Sep-08	110000.00	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	17-Jun-08 12:02 PM	

+="CN91848"	"Prepare Installation Specification- Uniflex Remote Operating Valves"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	06-Oct-08	120520.47	=""	="THALES AUSTRALIA"	17-Jun-08 12:02 PM	

+="CN91850"	"Infracam and Thermacam"	="Defence Materiel Organisation"	17-Jun-08	="Photographic or filming or video equipment"	06-Jun-08	30-Jun-08	124553.00	=""	="FLIR SYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 12:02 PM	

+="CN91854"	"FMS Case for the purchase of Kiowa Spares"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	29-May-08	30-Jun-11	2129000.00	=""	="FMS ACCOUNT"	17-Jun-08 12:02 PM	

+="CN91857"	"Modern 155mm Artillery Ammunition Varios"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	02-Jun-08	31-Dec-08	8175613.35	=""	="FMS ACCOUNT"	17-Jun-08 12:02 PM	

+="CN91858"	"Membership and Admin Fees"	="Defence Materiel Organisation"	17-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	13-Jun-08	31-Dec-08	49529.10	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91860"	"FMS Case for 23X software support for Hornet Upgrade Project"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	13-Jun-08	15-Dec-11	39447.62	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91862"	"FMS CAse"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	12-Jun-08	15-Sep-11	101852.88	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91864"	"Software downloads and licenses"	="Defence Materiel Organisation"	17-Jun-08	="Software"	06-Jun-08	20-Jun-08	16822.28	=""	="HARRIS TECHNOLOGY PTY LTD"	17-Jun-08 12:03 PM	

+="CN91866"	"Backend Hardware"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	06-Jun-08	30-Jun-08	31847.93	=""	="CERULEAN SOLUTIONS LTD"	17-Jun-08 12:03 PM	

+="CN91868"	"RANRAU Travel"	="Defence Materiel Organisation"	17-Jun-08	="Missiles"	06-Jun-08	30-Oct-08	19603.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:04 PM	

+="CN91870"	"INCORPORATION OF MOD A04-MOD07-0000-36 TO CARIBOU PROPELLER STANDS"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	06-Jun-08	30-Jun-08	36095.86	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	17-Jun-08 12:04 PM	

+="CN91872"	"TASK 4169AF1-4 HMAS PERTH SRA01/IMAV02"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-09	4748008.27	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:04 PM	

+="CN91874"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	13478.91	=""	="SUN MICROSYSTEMS"	17-Jun-08 12:04 PM	

+="CN91876"	"ESP contract Project Support for CPT ASLAV"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	06-Jun-08	30-Jan-09	153785.45	=""	="SEAL SOLUTIONS PTY LTD"	17-Jun-08 12:04 PM	

+="CN91878"	"HMAS KANIMBLA TURNTABLE REMOVAL"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	08-Aug-08	57842.40	=""	="BURNESS CORLETT AUSTRALIA PTY LTD"	17-Jun-08 12:04 PM	

+="CN91880"	"4577.01 ADHOC ENGINEERING SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Sep-08	80982.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:05 PM	

+="CN91882"	"Tools for Multi Role Helicopter Program Office"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	30-Jun-08	13111.26	=""	="SNAP ON TOOLS (AUST) PTY LTD"	17-Jun-08 12:05 PM	

+="CN91884"	"RAAF Tindal UPS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	20-Jun-08	110880.00	=""	="BENASH MAINTENANCE SERVICES"	17-Jun-08 12:05 PM	

+="CN91887"	"Isla Street Fyshwick Fit out"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	06-Jun-08	30-Jun-08	21908.70	=""	="COMPLETE OFFICE SUPPLIES PTY LTD"	17-Jun-08 12:05 PM	

+="CN91889"	"Purchase of Equipment for the JCSE Program Office #JC030601 dated 03 June 2008."	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	06-Jun-08	30-Jun-08	74382.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:06 PM	

+="CN91886"	"PABX Software and Hardware Upgrade"	="Australian Securities and Investments Commission"	17-Jun-08	="Components for information technology or broadcasting or telecommunications"	07-Jan-08	30-Jun-08	278243.57	=""	="3D"	17-Jun-08 12:06 PM	

+="CN91891"	"Raised in accordance with the 1 year extension of 98001833/3636 with General Dynamics for the ASLAV"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	30-Dec-08	204713.70	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:06 PM	

+="CN91855"	"MOU Charges - February 2008 (2nd payment)"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Feb-08	29-Feb-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 12:06 PM	

+="CN91893"	"Structural Repairs to a/c A23-062 during MIS910"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft fuselage and components"	04-Jun-08	30-Jun-09	55000.00	=""	="HAWKER PACIFIC PTY LTD"	17-Jun-08 12:06 PM	

+="CN91895"	"MBITR Spare Parts for June 07"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	15970.90	=""	="THALES AUSTRALIA"	17-Jun-08 12:06 PM	

+="CN91897"	"MBITR Repair Spare Parts (TWS07.033)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	26877.07	=""	="THALES AUSTRALIA"	17-Jun-08 12:06 PM	

+="CN91899"	"DOCUMENT SCANNING AND CONVERSION"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	04-Jun-08	30-Dec-08	43372.97	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	17-Jun-08 12:06 PM	

+="CN91901"	"Service and Support"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	04-Jun-08	26-Jun-09	15361.50	=""	="MANUKA ENT PTY LTD"	17-Jun-08 12:07 PM	

+="CN91903"	"ARH SIMULATOR CHECKS FRANCE"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	04-Jun-08	20-Jun-08	21427.97	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:07 PM	

+="CN91906"	"JEFM/CIOG Project Liaison"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	04-Jun-08	31-Oct-08	124911.00	=""	="JACOBS AUSTRALIA"	17-Jun-08 12:07 PM	

+="CN91908"	"nut 8-32 parachute assy"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	05-Nov-08	20453.09	=""	="MARTIN BAKER AIRCRAFT CO LTD"	17-Jun-08 12:07 PM	

+="CN91910"	"HANDLE FIRING ASSEMBLY, GARTER ASSEMBLY, LEG"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	11-Feb-09	41057.43	=""	="MARTIN BAKER AIRCRAFT CO LTD"	17-Jun-08 12:07 PM	

+="CN91912"	"Tube Assy HUG"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	05-Jun-08	16-Dec-08	19693.25	=""	="LCF SYSTEMS INC"	17-Jun-08 12:07 PM	

+="CN91914"	"Pin Straight"	="Defence Materiel Organisation"	17-Jun-08	="Arms and ammunition accessories"	05-Jun-08	12-Jun-08	21183.55	=""	="R/M EQUIPMENT"	17-Jun-08 12:07 PM	

+="CN91916"	"MBITR Modules fort April 2007"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	49256.06	=""	="THALES AUSTRALIA"	17-Jun-08 12:08 PM	

+="CN91917"	"CONDUCT PCRA on MPDE, SSDG & BJ Gear. HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Jun-08	26011.47	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:08 PM	

+="CN91919"	"WTR Probe Analysis Tool Replacement"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Jun-08	30-Jun-08	58618.41	=""	="JDA SYSTEMS"	17-Jun-08 12:08 PM	

+="CN91921"	"DARWIN RADOME MAINTENANCE"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	04-Jun-08	09-Jul-08	122565.03	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 12:08 PM	

+="CN91923"	"SUPPLY  OF MARINE DIESEL"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	04-Jun-08	30-Jun-08	42900.00	=""	="BREAKWATER MARINA"	17-Jun-08 12:08 PM	

+="CN91925"	"KPI payments to BAE Systems under the ACMC"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	46726.90	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 12:08 PM	

+="CN91927"	"Fund 10 Year Major Inspection for a Truck Aircraft Side Loading/Unloading (TASLU)."	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Sep-08	67320.00	=""	="STATIC ENGINEERING PTY LTD"	17-Jun-08 12:08 PM	

+="CN91929"	"TOWER'S PERRIN- ALSPO ENGAGEMENT SURVEY 2008"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	04-Jun-08	30-Jun-08	42250.00	=""	="TOWERS PERRIN - ISR"	17-Jun-08 12:08 PM	

+="CN91931"	"Simunition 5.56mm Paint Marking"	="Defence Materiel Organisation"	17-Jun-08	="Ammunition"	04-Jun-08	30-Jun-08	329868.00	=""	="BLP TRAINING & SERVICES"	17-Jun-08 12:09 PM	

+="CN91933"	"Rework of airconditioner kits and retrofit of pre- airconditioner kits in the Mack R-series vehicles"	="Defence Materiel Organisation"	17-Jun-08	="Environmental control systems"	04-Jun-08	30-Jun-09	1987004.98	=""	="CRISP-AIR PTY LTD"	17-Jun-08 12:09 PM	

+="CN91935"	"MBITR Spare Parts for may 2007 (TWS07.030)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	20289.83	=""	="THALES AUSTRALIA"	17-Jun-08 12:09 PM	

+="CN91937"	"MBITR Modules for May 2007 (TWS07.031)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	49256.06	=""	="THALES AUSTRALIA"	17-Jun-08 12:09 PM	

+="CN91939"	"Services for the TA Calibration Facility"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	31-Dec-08	1433797.33	=""	="THALES UNDERWATER SYSTEMS P/L"	17-Jun-08 12:09 PM	

+="CN91941"	"CABLE ASSY"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	29-Dec-08	24909.30	=""	="LCF SYSTEMS INC"	17-Jun-08 12:09 PM	

+="CN91943"	"WTR Crane and forklift hire activity"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Jun-08	30-Jun-08	19370.90	=""	="WELMEC"	17-Jun-08 12:09 PM	

+="CN91947"	"CONSULTANCY SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-09	19250.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:10 PM	

+="CN91950"	"Spare parts for Water Purification System"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	01-Jul-08	75769.58	=""	="PALL AUSTRALIA"	17-Jun-08 12:10 PM	

+="CN91953"	"SMB TOM THUMB installation of POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	473816.20	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91955"	"additional three C-Max side scan sonars and winch"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	344852.20	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91957"	"provide training on new systems"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	54476.40	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91959"	"inspect, test,repair and classify tEODor"	="Defence Materiel Organisation"	17-Jun-08	="Electrical equipment and components and supplies"	05-Jun-08	04-Jul-08	33037.24	=""	="XTEK LTD"	17-Jun-08 12:10 PM	

+="CN91951"	"Purchase 155 copies of CCH 2008 Australian Superannuation Legislation for ASIC staff nationally"	="Australian Securities and Investments Commission"	17-Jun-08	="Printed publications"	04-Jan-08	10-Mar-08	17786.25	=""	="CCH Australia Ltd"	17-Jun-08 12:10 PM	

+="CN91961"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVIATION FUEL TO THE DEPARTMENT OF DEFENCE"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	05-Jun-08	30-Jun-08	14960.00	=""	="WEST-TEN SERVICES"	17-Jun-08 12:11 PM	

+="CN91963"	"SMB JOHN GOWLLAND installation of  POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	430050.50	=""	="AIMTEK PTY LTD"	17-Jun-08 12:11 PM	

+="CN91966"	"Shortlife Chemicals for use by 21 Const on AACAP t with short shelf life when in tropical environmen"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	15-Aug-08	13983.13	=""	="PALL AUSTRALIA"	17-Jun-08 12:11 PM	

+="CN91968"	"pc9 aircraft spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Dec-08	15290.39	=""	="PILATUS AIRCRAFT LTD"	17-Jun-08 12:11 PM	

+="CN91970"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	05-Jun-08	30-Jun-08	16274.45	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:11 PM	

+="CN91972"	"HOSE ASSY AIR BREATH"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	10-Feb-09	33829.81	=""	="R. E. DARLING CO. INC."	17-Jun-08 12:12 PM	

+="CN91974"	"BEARING SLEEVE"	="Defence Materiel Organisation"	17-Jun-08	="Bearings and bushings and wheels and gears"	05-Jun-08	27-Feb-09	361209.25	=""	="IKAD ENGINEERING"	17-Jun-08 12:12 PM	

+="CN91976"	"Software"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	21994.50	=""	="JENKINS ENGINEERING DEFENCE"	17-Jun-08 12:12 PM	

+="CN91978"	"HP EVA CLUSTER EXTENSION"	="Defence Materiel Organisation"	17-Jun-08	="Software"	05-Jun-08	20-Aug-08	43857.66	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:12 PM	

+="CN91980"	"Chemicals to support Water Purification Unit"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	10-Jun-08	13658.24	=""	="PALL AUSTRALIA"	17-Jun-08 12:12 PM	

+="CN91982"	"Refurbishment of Enhanced Combat Body Armour"	="Defence Materiel Organisation"	17-Jun-08	="Safety apparel"	05-Jun-08	30-Jul-08	366688.86	=""	="HELLWEG INTERNATIONAL"	17-Jun-08 12:13 PM	

+="CN91984"	"Provision of courses for tEODor"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Jun-08	04-Jul-08	19735.38	=""	="XTEK LTD"	17-Jun-08 12:13 PM	

+="CN91986"	"Test and Evaluation Support Services"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	05-Jun-08	30-Jun-08	596601.60	=""	="SME GATEWAY LIMITED"	17-Jun-08 12:13 PM	

+="CN91988"	"SMB MEDA installation of POS-MV, CMAX and CARIS HIPS and SIPS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	526840.60	=""	="AIMTEK PTY LTD"	17-Jun-08 12:13 PM	

+="CN91990"	"IT SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	31506.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	17-Jun-08 12:13 PM	

+="CN91992"	"Customs import charges for change tools."	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	05-Jun-08	30-Jun-08	11224.24	=""	="SDV AUSTRALIA"	17-Jun-08 12:13 PM	

+="CN91994"	"SMB DUYFKEN installation of POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	790713.00	=""	="AIMTEK PTY LTD"	17-Jun-08 12:14 PM	

+="CN91996"	"JLG 45 FOOT ELECTRIC BOOM LIFT"	="Defence Materiel Organisation"	17-Jun-08	="Hydraulic machinery and equipment"	29-May-08	15-Jul-08	16962.00	=""	="JLG INDUSTRIES"	17-Jun-08 12:14 PM	

+="CN91998"	"PELICAN CASE ASSY"	="Defence Materiel Organisation"	17-Jun-08	="Luggage and handbags and packs and cases"	19-Dec-07	19-Dec-07	10004.80	=""	="PELICAN PRODUCTS INC."	17-Jun-08 12:14 PM	

+="CN91643"	"Appear as expert in application to AAT for review of a CALDB decision"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	31-Oct-07	20-Dec-07	39558.00	=""	="Lombe, David"	17-Jun-08 12:14 PM	

+="CN92000"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92002"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92004"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92006"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16941.57	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:15 PM	

+="CN92008"	"This Purchase Order is raised in accordance with t conditions of the HUGPH2.2 Prime Contract C338399"	="Defence Materiel Organisation"	17-Jun-08	="Postmortem and mortuary equipment and supplies"	13-Jun-08	30-Jun-10	26760.89	=""	="BOEING COMPANY THE"	17-Jun-08 12:15 PM	

+="CN92010"	"SURVEY SHIPS 8 METRE BROW HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	16-Jan-08	08-Feb-08	17199.13	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:15 PM	

+="CN92012"	"Contracted S-70B-2 Phase 2 Servicing"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	16-Jun-08	31-Aug-08	76346.63	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	17-Jun-08 12:15 PM	

+="CN92014"	"PROCUREMENT OF DIGITAL SATELITE TV CAPABILITY HMAS SYDNEY"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	30-May-08	30-Aug-08	34476.20	=""	="ELECTROTECH AUSTRALIA PTY LTD"	17-Jun-08 12:15 PM	

+="CN92016"	"BANDICOOT FAMP 01/08 11TH FEBRUARY 2008 TO THE 28T The terms and conditions of this order are in acc"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-08	11276.49	=""	="BIRDON MARINE PTY LTD"	17-Jun-08 12:15 PM	

+="CN92018"	"HMAS KANIMBLA MAJOR DOCKING PM"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	27-Jun-08	514006.70	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:15 PM	

+="CN92020-A1"	" TASK 1108-3 REPLACEMENT FIRE DETECTION SYSTEM "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	20-Feb-08	16-Mar-11	131871.19	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:16 PM	

+="CN92023"	"NACC Aquisition Workforce Support"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	30-May-08	27-Jun-08	144936.00	=""	="PS MANAGEMENT CONSULTANTS"	17-Jun-08 12:16 PM	

+="CN91965"	"Application Services for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Information technology consultation services"	01-Mar-08	31-Mar-08	21833.68	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 12:16 PM	

+="CN92025"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	10-Jun-08	30-Jun-08	346196.35	=""	="WORLD FUEL SERVICES LTD DEPT 2458"	17-Jun-08 12:16 PM	

+="CN92027"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Jun-08	113685.59	=""	="THALES AUSTRALIA"	17-Jun-08 12:16 PM	

+="CN92022"	"Repair Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79200.00	=""	="Hawker De Havilland"	17-Jun-08 12:16 PM	

+="CN92029"	"DLSS Business Support"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	12-Nov-07	13-Jun-09	1598900.01	=""	="KPMG"	17-Jun-08 12:17 PM	

+="CN92031"	"BULK ORDER: SUPPLY OF PAINT TO THE RAN"	="Defence Materiel Organisation"	17-Jun-08	="Paints and primers and finishes"	11-Nov-07	30-Jun-08	330000.00	=""	="INTERNATIONAL PAINTS"	17-Jun-08 12:17 PM	

+="CN92033"	"ANZAC SIMULATOR TECHNICAL AND TRAINING SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	11-Nov-07	30-Jun-10	68817.34	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 12:17 PM	

+="CN92035"	"R5 service for N22-020 (820) and associated BDS Consumables in Support of the complete R5 Service."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	05-Jun-08	30-Jun-08	39928.29	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:17 PM	

+="CN92037"	"P3 Orion Ageing Aircraft Audit to Achieve Conformance with CAR MPSPO/2006/01-11"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	12-Nov-07	30-Jun-08	46697.08	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:17 PM	

+="CN92039"	"PROFESSIONAL FEES"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	13-Jun-08	30-Jun-08	10000.00	=""	="BLAKE DAWSON WALDRON"	17-Jun-08 12:17 PM	

+="CN92041"	"IAW Standing Offer C388551"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	26-May-08	30-Mar-09	133497.03	=""	="PARTECH SYSTEMS PTY LTD"	17-Jun-08 12:17 PM	

+="CN92043"	"Professional Services to support BLOCK 1 solicitat  JP2060-2B"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jun-08	12-May-09	201520.00	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	17-Jun-08 12:17 PM	

+="CN92045"	"HUGPH3.1 IM&MC CCP#1 USD Payment"	="Defence Materiel Organisation"	17-Jun-08	="Postmortem and mortuary equipment and supplies"	12-Jun-08	30-Nov-08	187984.25	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:18 PM	

+="CN92047"	"SUPPLY OF MARINE DIESEL  FUELS"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	06-Jun-08	30-Jun-08	72600.00	=""	="BAILEY'S MARINE FUELS AUSTRALIA"	17-Jun-08 12:18 PM	

+="CN92049"	"VENUE HIRE & CATERING FOR DMO LEADERSHIP PROGRAMS"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	11-Jun-08	30-Jun-08	15911.50	=""	="CLIFTONS"	17-Jun-08 12:18 PM	

+="CN92051"	"4548.00 REPAIR OF IR CAMERAS 14-552-0739"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	09-Jun-08	146431.76	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 12:18 PM	

+="CN92056"	"HUON FAMP 01/08 CONDUCTED JUN/JUL 08"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	06-Jun-08	31-Jul-08	57791.04	=""	="THALES AUSTRALIA"	17-Jun-08 12:19 PM	

+="CN92059"	"nut, hexagon, et al"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	23-Apr-08	15-Oct-08	24659.15	=""	="NORCATEC LLC"	17-Jun-08 12:19 PM	

+="CN92053"	"Purchase 1000 copies of CCH 2008 Australian Corporations Legislation for ASIC staff nationally"	="Australian Securities and Investments Commission"	17-Jun-08	="Printed publications"	07-Dec-07	10-Feb-08	53640.00	=""	="CCH Australia Ltd"	17-Jun-08 12:19 PM	

+="CN92061"	"Use of Exisitng ASP Contract  - Caley Davit Service"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	13-Jun-08	11-Jul-08	13401.46	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:19 PM	

+="CN92063"	"Annual Suport for Sun Micro System Servers"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	30-Apr-08	31-Aug-08	10499.28	=""	="SUN MICROSYSTEMS"	17-Jun-08 12:19 PM	

+="CN92066-A1"	"Independent legal services for review of Contracts"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	10-Jun-08	30-Jun-08	79447.50	=""	="CLAYTON UTZ"	17-Jun-08 12:19 PM	

+="CN92068"	"R5 Service for AS350BA Helicopter Tail No. N22-001 (801) and Supporting BDS/ Consumables."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	14-Jun-08	01-Sep-08	174680.00	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:19 PM	

+="CN92070"	"HMAS Betano 2008 EMA (ID)"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	16-Jun-08	30-Aug-08	132512.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:20 PM	

+="CN92072"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	08-May-08	30-May-08	556817.55	=""	="BP AUSTRALIA LTD"	17-Jun-08 12:20 PM	

+="CN92074"	"Use of Exisitng ASP Contract  - Service Yo Yo Davit"	="Defence Materiel Organisation"	17-Jun-08	="Hydraulic systems and components"	12-May-08	30-Jun-08	19152.72	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:20 PM	

+="CN92076"	"Aircraft Spares"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	12-Jun-08	15-Jul-08	531467.55	=""	="FLIGHT DATA SYSTEMS PTY LTD"	17-Jun-08 12:20 PM	

+="CN92078-A1"	" 4548 REPAIR OF INFRA RED CAMERAS ADDITIONAL "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	16-Apr-08	17-Nov-10	16579.24	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 12:20 PM	

+="CN92080"	"Services as defined in Mulwala Agreement Capabilit Revision 1 dated 15 February 2008 and Thales Aust"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	11-Jun-08	30-Jun-08	200000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:20 PM	

+="CN92082"	"TOB-VET DUCT CLEANING ENVIROAIR"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	13-Jun-08	270622.64	=""	="ENVIROAIR PTY LTD"	17-Jun-08 12:20 PM	

+="CN92084"	"HMAS PERTH SRA01/IMAV02 EMA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Mar-08	31-Jan-09	6600000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:20 PM	

+="CN92086"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA MARINE 001.01"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	11-Jun-08	30-Jun-08	1834046.95	=""	="BP AUSTRALIA LTD"	17-Jun-08 12:21 PM	

+="CN92088"	"AASSPO requires services from RRAS for IPT during HMAS TOBRUK Docking to assist the Project Super"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	17-Jun-08	15555.90	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:21 PM	

+="CN92090"	"CENTAUR  REQUIREMENT"	="Defence Materiel Organisation"	17-Jun-08	="Electrical equipment and components and supplies"	18-Mar-08	14-Aug-08	82487.14	=""	="THALES AUSTRALIA"	17-Jun-08 12:21 PM	

+="CN92092"	"PSP Support"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	16-Jun-08	30-Jun-08	40000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:21 PM	

+="CN92094"	"ISO9000 Accreditation Support"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	03-Jun-08	30-Jun-08	30670.99	=""	="NOETIC CORPORATION"	17-Jun-08 12:21 PM	

+="CN92096"	"Terms and Conditions as per attachments. Please contact Kate Noble on (03)92826009 or alter"	="Defence Materiel Organisation"	17-Jun-08	="Fibres and textiles and fabric industries"	03-Apr-08	25-Jun-08	11107.80	=""	="SPEAR OF FAME PTY LTD"	17-Jun-08 12:21 PM	

+="CN92098"	"URS 8360 - Changes to Segment 4, Fund Replacing Internal Order"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Apr-08	30-Jun-08	98869.10	=""	="MINCOM LTD"	17-Jun-08 12:21 PM	

+="CN92101"	"Upgrade Security Readers"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	26388.92	=""	="PERTH BUILDING COMPANY PTY LTD"	17-Jun-08 12:21 PM	

+="CN92103"	"CAPO 07/08 and 09/08"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	21-May-08	16-Mar-09	50122.72	=""	="RAPID ASCENT CONSULTING"	17-Jun-08 12:22 PM	

+="CN92105"	"Land 58.3 LOTE Procure S&T Mods Kits and Parts"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	30-May-08	30-Jun-09	302470.37	=""	="RAYTHEON AUSTRALIA"	17-Jun-08 12:22 PM	

+="CN92107"	"GST APPLICABLE ON INV 10334"	="Defence Materiel Organisation"	17-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	13054.56	=""	="BAE SYSTEMS(AUSTRALIA)"	17-Jun-08 12:22 PM	

+="CN92109"	"DIESEL, UNLEADED PETROL AND LUBRICANT"	="Defence Materiel Organisation"	17-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	18-Apr-08	04-Jun-08	16945.62	=""	="INTEROIL PRODUCTS LTD"	17-Jun-08 12:22 PM	

+="CN92111"	"GST to Inv 70293, FRP MS 6-5"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	30-Apr-08	05-May-08	40036.55	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	17-Jun-08 12:23 PM	

+="CN92058"	"Property charges for May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Property management services"	01-May-08	31-May-08	235899.64	=""	="UNITED GROUP SERVICES PTY LTD"	17-Jun-08 12:23 PM	

+="CN92113"	"GST PAYMENT"	="Defence Materiel Organisation"	17-Jun-08	="Spaceships"	06-Jun-08	30-Jun-08	42043.55	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:23 PM	

+="CN92114"	"Breathing air analysis"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Jun-08	30-Jun-08	18700.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:23 PM	

+="CN92117"	"Safety Case & Support Services"	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	19-May-08	30-Jun-08	145684.00	=""	="TENIX SYSTEMS PTY LTD"	17-Jun-08 12:23 PM	

+="CN92100"	"VEHICLE REPAIRS"	="Department of Defence"	17-Jun-08	="Motor vehicles"	16-Jan-08	16-Feb-08	30213.76	=""	="FB AUTOS"	17-Jun-08 12:23 PM	

+="CN92119"	"Interagency travel for trainng"	="Defence Materiel Organisation"	17-Jun-08	="Cereals"	12-Nov-07	30-Jun-09	15000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:23 PM	

+="CN92120"	"CARIBOU REPAIRABLE ITEMS"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	12-Nov-07	31-Dec-08	101867.59	=""	="SAFE AIR LTD"	17-Jun-08 12:23 PM	

+="CN92116-A1"	"Repair Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79290.00	=""	="Hawker De Havilland"	17-Jun-08 12:24 PM	

+="CN92121"	"TS0082-3 INSTALLATION OF LINK 16 AND VMF"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-08	113483.48	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:24 PM	

+="CN92122"	"Procurement of Army Utility workboats. Army Marine"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	12-Jun-08	24417.36	=""	="BIRDON MARINE PTY LTD"	17-Jun-08 12:24 PM	

+="CN92118"	"Counsel Fees"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	07-Oct-07	30-Jun-08	50000.00	=""	="Vaughan, John"	17-Jun-08 12:24 PM	

+="CN92123"	"GSR through life support contract"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	10-Jun-08	30-Jun-09	24140.60	=""	="THALES COMMUNICATIONS LIMITED"	17-Jun-08 12:24 PM	

+="CN92124"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	75415.77	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:24 PM	

+="CN92125"	"DSA PREPAYMENT Interagency Payment"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-08	25000000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:24 PM	

+="CN92126"	"oseas travel interagency agreement MRH 07682/2007. Travel to France for Steven Arney."	="Defence Materiel Organisation"	17-Jun-08	="Travel facilitation"	30-Apr-08	30-May-08	13889.20	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:24 PM	

+="CN92127"	"escalation adjustment - sml milestone 4"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	14-May-08	28-May-08	261352.30	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	17-Jun-08 12:24 PM	

+="CN92128"	"GST only component"	="Defence Materiel Organisation"	17-Jun-08	="Fabricated sheet assemblies"	23-Apr-08	15-Nov-16	258913.03	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:25 PM	

+="CN92129"	"GST only component"	="Defence Materiel Organisation"	17-Jun-08	="Fabricated sheet assemblies"	21-May-08	15-Nov-16	19913.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:25 PM	

+="CN92130"	"REF PAYMENTS - EXTERNAL REPAIRS"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	23-Jan-08	30-Dec-08	30048.25	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:25 PM	

+="CN92131"	"GST ON FOREIGN CURRENCY PAYMENT"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	13-May-08	30-Jun-13	62266.50	=""	="MATHER ROACH CONSULTING PTY LTD"	17-Jun-08 12:25 PM	

+="CN92132"	"DSTO HMI Team Work for FFG UP SOC"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-May-08	30-May-08	22500.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:25 PM	

+="CN92133"	"DSA between DMO and JLC"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	1496000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:25 PM	

+="CN92134"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	75254.68	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:25 PM	

+="CN92135"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	122209.98	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:25 PM	

+="CN92136"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	35153.91	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:26 PM	

+="CN92138"	"Hire of Shipping Containers"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	29-May-06	30-Sep-08	11605.55	=""	="PRICE & SPEED CONTAINERS PTY LTD"	17-Jun-08 12:26 PM	

+="CN92139"	"TFWSSF Engineering Services in Support of AIR5400 Requirements"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	12-Nov-07	30-Sep-08	782325.01	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:26 PM	

+="CN92141"	"ENGINEERING SERVICES FOR CLASSING"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	30-Jun-11	25722.62	=""	="DET NORSKE VERITAS"	17-Jun-08 12:26 PM	

+="CN92142"	"Land 58 Ph3 AN/TPQ - 36 WLR LOTE Prime Contract (AUD)"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	21-May-08	30-Dec-08	226974.99	=""	="RAYTHEON AUSTRALIA"	17-Jun-08 12:26 PM	

+="CN92144"	"Freight"	="Defence Materiel Organisation"	17-Jun-08	="Mail and cargo transport"	12-Nov-07	30-Jun-09	16500.00	=""	="TNT EXPRESS"	17-Jun-08 12:27 PM	

+="CN92146"	"Provide HMAS SIRIUS Main Engine Spares"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	12-Jun-08	30-Sep-08	13028.40	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:27 PM	

+="CN92147"	"LAP Delivery Management Services - JP2077 PH2B.1"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	05-Jun-08	30-Jun-08	33000.00	=""	="EVENTRA PTY LTD"	17-Jun-08 12:27 PM	

+="CN92148"	"CONSULTANT"	="Defence Materiel Organisation"	17-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	10-Jun-08	30-Jun-08	70000.00	=""	="CODARRA ADVANCED SYSTEMS"	17-Jun-08 12:28 PM	

+="CN92149"	"TLSA for 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	1571758.12	=""	="ASC PTY LTD"	17-Jun-08 12:28 PM	

+="CN92150"	"Box Ammunition Wood F22 with Cylinders"	="Defence Materiel Organisation"	17-Jun-08	="Packaging materials"	21-May-08	30-Jun-08	49747.89	=""	="PENTARCH PTY LTD"	17-Jun-08 12:28 PM	

+="CN92151-A1"	" TS1045-3 GROUP TCE DEVELOPMENT - TENIX "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	16-Mar-11	957656.10	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:28 PM	

+="CN92152"	"Approved Additional Hours (Overtime) worked ... WTSS Facilities during Fin Yr 2007/08"	="Defence Materiel Organisation"	17-Jun-08	="Electronic hardware and component parts and accessories"	12-Nov-07	31-Dec-08	77000.00	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	17-Jun-08 12:28 PM	

+="CN92153"	"AMENDMENT 1, NESMITH, 4/9/07 Calibration"	="Defence Materiel Organisation"	17-Jun-08	="Heavy construction machinery and equipment"	31-Jul-07	30-Jun-08	10706.19	=""	="PRECISION CALIBRATION SERVICES"	17-Jun-08 12:28 PM	

+="CN92154"	"Joint Operations Portal Workpackage 1"	="Defence Materiel Organisation"	17-Jun-08	="Software"	12-Nov-07	30-Jun-08	50904.70	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 12:29 PM	

+="CN92155"	"Delivery of Logistics Systems Training July 06 - June 08"	="Defence Materiel Organisation"	17-Jun-08	="Education and Training Services"	05-Jun-08	30-Jun-08	1650000.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	17-Jun-08 12:29 PM	

+="CN92156"	"INFLUENCING+NEGOTIATION SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Printed media"	05-May-08	30-Jun-08	46750.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	17-Jun-08 12:29 PM	

+="CN92158"	"OLMU MILESTONE PAYMENTS AGAINST CAPOV309981"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	18-Dec-07	18-Dec-07	21666.80	=""	="QANTAS DEFENCE SERVICES PTY LTD"	17-Jun-08 12:29 PM	

+="CN92143"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	25-Jan-08	25-Feb-08	70526.43	=""	="CLAYTON UTZ"	17-Jun-08 12:29 PM	

+="CN92159"	"M2A1 BOX RENTAL AGREEMENT"	="Defence Materiel Organisation"	17-Jun-08	="Packaging materials"	05-Jun-08	30-Jun-08	352962.06	=""	="PENTARCH PTY LTD"	17-Jun-08 12:29 PM	

+="CN92160-A1"	" Long term lease vehicle hire "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	11-Oct-10	165401.91	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92157"	"Filing fees for court attendance notices"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	11-Mar-08	11-Mar-08	11690.00	=""	="Sutherland Local Court"	17-Jun-08 12:30 PM	

+="CN92161"	"Design, Manufacture of Specialist Modifications to Base Vehicles"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Jun-08	26-Dec-08	868171.65	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:30 PM	

+="CN92162"	"TNT EXPRESS - FREIGHT"	="Defence Materiel Organisation"	17-Jun-08	="Product and material transport vehicles"	12-Nov-07	30-Jun-09	16500.00	=""	="TNT AUSTRALIA PTY LTD"	17-Jun-08 12:30 PM	

+="CN92163"	"ISS - CONSUMABLES"	="Defence Materiel Organisation"	17-Jun-08	="Missile and rocket launchers"	14-Jan-08	31-Dec-08	69039.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92164"	"ISS - NON REPAIRABLE ITEMS"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	12-Jun-08	30-Dec-08	63781.12	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92166"	"DEEPER MAINTENANCE OF AIRCRAFT"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	12-Nov-07	16-Jun-08	440410.49	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 12:30 PM	

+="CN92167"	"Rantewss Equipment Modifications for the FFG Class Phase 2"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	15-Apr-08	28-Aug-08	14792.80	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	17-Jun-08 12:31 PM	

+="CN92168"	"Freight Requirement for ASABAKA"	="Defence Materiel Organisation"	17-Jun-08	="Packing supplies"	07-May-08	28-Jun-08	22000.00	=""	="TNT AUSTRALIA"	17-Jun-08 12:31 PM	

+="CN92169"	"PROGRAM DELIVERY"	="Defence Materiel Organisation"	17-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Dec-09	108500.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	17-Jun-08 12:31 PM	

+="CN92170"	"PROFESSIONAL FEES & DISBURSMENT TO SIR LAURENCE ST"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	28-May-08	30-Jun-08	66000.00	=""	="SIR LAURENCE STREET"	17-Jun-08 12:31 PM	

+="CN92171"	"PROFESSIONAL FEES & DISBURSMENT TO AGS"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	28-May-08	30-Jun-08	159500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	17-Jun-08 12:31 PM	

+="CN92172"	"Inatll, Set To Work, Training & Support  for MAC2 on HMAS Sydney"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	28-May-08	09-Aug-08	59414.50	=""	="THALES AUSTRALIA"	17-Jun-08 12:31 PM	

+="CN92173"	"The work under this Purchase Order will be done in Contract CADAS05/08."	="Defence Materiel Organisation"	17-Jun-08	="War vehicles"	28-May-08	30-Jun-09	52174.10	=""	="LLOYD W HONEYCOMBE"	17-Jun-08 12:31 PM	

+="CN92174"	"This order is raised in accordance with telephone (Mobil) 28 May 2008"	="Defence Materiel Organisation"	17-Jun-08	="Lubricants and oils and greases and anti corrosives"	28-May-08	04-Jun-08	14647.29	=""	="MOBIL OIL AUSTRALIA PTY LTD"	17-Jun-08 12:31 PM	

+="CN92175"	"BROCADE SWITCHES"	="Defence Materiel Organisation"	17-Jun-08	="Electronic hardware and component parts and accessories"	28-May-08	20-Jun-08	18288.60	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	17-Jun-08 12:31 PM	

+="CN92176"	"PROCUREMENT QTY 12 COACHES CONL V9-203888"	="Defence Materiel Organisation"	17-Jun-08	="Passenger motor vehicles"	28-May-08	29-May-09	5899740.00	=""	="VOLVO TRUCK AND BUS SYDNEY"	17-Jun-08 12:32 PM	

+="CN92177"	"Aircraft Coatings"	="Defence Materiel Organisation"	17-Jun-08	="Military science and research"	28-May-08	16-Nov-08	112200.00	=""	="UNIVERSITY OF SYDNEY"	17-Jun-08 12:32 PM	

+="CN92178"	"Professional Legal Fees"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	28-May-08	30-Jun-08	14998.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:32 PM	

+="CN92179"	"SURVEY AND QUOTE 26 - 8 BLANKING KITS TO BE FITTED TO HORNET AT POSITION 0"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	28-May-08	30-Sep-08	10842.90	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 12:32 PM	

+="CN92180"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	28-May-08	30-Jun-08	22082.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:32 PM	

+="CN92181"	"COMPUTER EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	28-May-08	28-May-08	10838.94	=""	="MAC 1 PTY LTD"	17-Jun-08 12:32 PM	

+="CN92182"	"ARMY SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	27-May-08	26-Feb-09	75377.41	=""	="SAAB BOFORS DYNAMICS AB"	17-Jun-08 12:32 PM	

+="CN92183"	"Aircrew Oxygen Cylinder"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft emergency systems"	28-May-08	27-Jul-08	20435.21	=""	="AVOX SYSTEMS INC"	17-Jun-08 12:33 PM	

+="CN92184"	"Services Contract"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	28-May-08	30-Nov-09	1650000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:33 PM	

+="CN92185"	"VIGILARE TADRS INTERFACE"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	28-May-08	30-Jun-08	130680.52	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	17-Jun-08 12:33 PM	

+="CN92186"	"Renewal of INMARSAT Account"	="Defence Materiel Organisation"	17-Jun-08	="National Defence and Public Order and Security and Safety Services"	28-May-08	30-Jun-08	780000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:33 PM	

+="CN92187"	"Aircraft Arrestor Spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft landing and braking systems"	28-May-08	21-Nov-08	56290.75	=""	="DEFENCE LIAISON SERVICES PTY LTD"	17-Jun-08 12:33 PM	

+="CN92188"	"ESSM Technical Recovery Ph1 only"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	28-May-08	31-Jul-08	40961.07	=""	="QINETIQ NOVARE PTY LTD"	17-Jun-08 12:33 PM	

+="CN92189"	"INTERFACE"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	28-May-08	30-Jun-08	15508.49	=""	="LOCKHEED MARTIN CORPORATION"	17-Jun-08 12:33 PM	

+="CN92190"	"DARWIN RADAR UPS POWER CONDITION MONITORING"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	28-May-08	30-Jun-08	19853.24	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92191"	"ASRAAM Technical Recovery Ph1"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	28-May-08	31-Jul-08	43310.31	=""	="QINETIQ NOVARE PTY LTD"	17-Jun-08 12:34 PM	

+="CN92192"	"Value for Money Assessment"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	28-May-08	09-Jun-09	196446.25	=""	="DELOITTE TOUCHE TOHMATSU"	17-Jun-08 12:34 PM	

+="CN92194"	"Furniture & workstations"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	21668.90	=""	="SCHIAVELLO ACT PTY LTD"	17-Jun-08 12:34 PM	

+="CN92195"	"Brocade 5000 switches config id 6312579 Various SUN Microsystems transceivers"	="Defence Materiel Organisation"	17-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-May-08	27-Jun-08	81302.15	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92196"	"Nulka Maintenance"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	29-May-08	31-Jul-08	12928.81	=""	="THALES AUSTRALIA"	17-Jun-08 12:34 PM	

+="CN92197"	"VEHICLE RENTALS FOR KANIMBLA EMA DOCKING"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	22-Sep-08	10597.68	=""	="HERTZ AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92198"	"REPLACE BETWEEN DECK RAMP DUST SEAL"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	20-Jun-08	10607.23	=""	="FORGACS SHIP REPAIR"	17-Jun-08 12:35 PM	

+="CN92199"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	70614.85	=""	="GETRONICS (AUSTRALIA) PTY LTD"	17-Jun-08 12:35 PM	

+="CN92200"	"Freight for Cart 12.7mm NM140 from Richmond to Myambat. Part of PO 4500591433"	="Defence Materiel Organisation"	17-Jun-08	="Ammunition"	29-May-08	30-Jun-08	10352.99	=""	="DEOH DIRECTORATE EXPLOSIVE ORDNANCE"	17-Jun-08 12:35 PM	

+="CN92201"	"Accom for KANIMBLA EMA IPT in Newcastle"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	22-Sep-08	87675.10	=""	="JOE BORRELLI REAL ESTATE ESTATE"	17-Jun-08 12:35 PM	

+="CN92202"	"RENT OF FLOORSPACE AT AIRSHOW"	="Defence Materiel Organisation"	17-Jun-08	="Lease and rental of property or building"	29-May-08	28-Feb-10	222891.84	=""	="SINGAPORE AIRSHOW & EVENTS PTE LTD"	17-Jun-08 12:35 PM	

+="CN92203"	"REPAIR OF CIT"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	10-Oct-08	10796.69	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:35 PM	

+="CN92204"	"NoiseCom Noise Source"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	29-May-08	08-Jun-08	10432.10	=""	="RADAR SYSTEMS TECHNOLOGY INC."	17-Jun-08 12:35 PM	

+="CN92205"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	29-Oct-08	11608.37	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:36 PM	

+="CN92206"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16006"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	118929.28	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:36 PM	

+="CN92207"	"Special Forces Station Mod kits for JP 2008 Ph2B"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-09	91397.52	=""	="AMCE PTY LTD"	17-Jun-08 12:36 PM	

+="CN92193"	" Dell Computers and Portable Printer Kit "	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Computers"	14-Mar-08	13-Apr-08	27830.00	=""	="DELL COMPUTER PTY LTD"	17-Jun-08 12:36 PM	

+="CN92208"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16002"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	209345.39	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:36 PM	

+="CN92209"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	28-May-08	30-Jun-09	220000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:36 PM	

+="CN92210"	"pc9 aircraft spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	28-May-08	30-Oct-08	13681.09	=""	="PILATUS AIRCRAFT LTD"	17-Jun-08 12:36 PM	

+="CN92211"	"Desks and Partitions for BLD 631"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	17694.00	=""	="NOM OFFICE SOLUTIONS"	17-Jun-08 12:36 PM	

+="CN92212"	"Cable Assy"	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	29-May-08	19-Dec-08	21183.55	=""	="ORDNANCE TECHNOLOGY SERVICE INC."	17-Jun-08 12:37 PM	

+="CN92213"	"Flight Stip Paper"	="Defence Materiel Organisation"	17-Jun-08	="Paper Materials and Products"	29-May-08	16-Jun-08	37443.78	=""	="MAGNETIC TICKET & LABEL CORP"	17-Jun-08 12:37 PM	

+="CN92214"	"BODY"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	10-Dec-08	13705.44	=""	="MAROTTA CONTROLS INC"	17-Jun-08 12:37 PM	

+="CN92215"	"Army clothing supplies"	="Defence Materiel Organisation"	17-Jun-08	="Clothing"	29-May-08	24-Sep-08	50727.16	=""	="EAGLE INDUSTRIES UNLIMITED INC"	17-Jun-08 12:37 PM	

+="CN92216"	"PART PAYMENT OF KIOWA ENGINE PARTS"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	388232.38	=""	="AVIATION TURBINE OVERHAUL"	17-Jun-08 12:37 PM	

+="CN92217"	"10,000 LABOUR  HOURS FOR MIA1 SUPPORT TO 1ST ARMOURED REGIMENT. TRAVEL AND ACCOMMODATION"	="Defence Materiel Organisation"	17-Jun-08	="Travel facilitation"	29-May-08	01-Jul-08	1005599.89	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:37 PM	

+="CN92218"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16301"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	336206.01	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:37 PM	

+="CN92219"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	29-May-08	30-Jun-08	59370.89	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:37 PM	

+="CN92220"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16104"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	144427.03	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:38 PM	

+="CN92221"	"Payment of the GST on overseas component of LRFs qty 130 and Spares Set qty 1 (Contract 5370058)."	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	27-May-08	30-May-08	112773.02	=""	="HALL & WATTS AUSTRALIA PTY LTD"	17-Jun-08 12:38 PM	

+="CN92222"	"The terms and conditions of this Purchase Order ar Contract C388580."	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	27-May-08	30-Oct-11	80732254.83	=""	="ELTA SYSTEMS LTD"	17-Jun-08 12:38 PM	

+="CN92223"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Oct-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92224"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Oct-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92225"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Nov-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92226"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Nov-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92227"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92228"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92229"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92230"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Jan-09	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92231"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Jan-09	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92232"	"Supply of Demand Performance Report (DPR) Familiar ASD/HSD."	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	27-May-08	30-Jun-08	66227.15	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	17-Jun-08 12:39 PM	

+="CN92233"	"VENUR HIRE & CATERING FOR EXEC COMPASS & COMPASS TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	27-May-08	30-Jun-09	85699.98	=""	="CLIFTONS"	17-Jun-08 12:39 PM	

+="CN92234"	"LAP Delivery Management Services"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-09	393000.00	=""	="BUSINESS SYSTEMS CONSULTANCY PTY"	17-Jun-08 12:39 PM	

+="CN92235"	"Training"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	19544.80	=""	="DEFENCE MARITIME SERVICES PTY"	17-Jun-08 12:39 PM	

+="CN92236"	"FFG Upgrade parts and accessories"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	22-May-08	19-Aug-08	24756.02	=""	="W R DAVIS ENGINEERING LTD"	17-Jun-08 12:39 PM	

+="CN92237"	"Provision of Services as Team Leader (Sea)"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	22-May-08	30-Jun-09	323867.19	=""	="KELLOGG BROWN & ROOT PTY LTD"	17-Jun-08 12:40 PM	

+="CN92238"	"CONDMAT MILIS INTEGRATION OPTIONS ANALYSIS"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	26-May-08	30-Jun-08	40700.00	=""	="SMS CONSULTING GROUP LIMITED"	17-Jun-08 12:40 PM	

+="CN92239"	"Professional Services"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	27-May-08	30-Jun-09	220000.00	=""	="DSTO"	17-Jun-08 12:40 PM	

+="CN92240"	"Development of CVS Server"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	20-Jun-08	29700.00	=""	="SAVI TECHNOLOGY AUSTRALIA PTY LTD"	17-Jun-08 12:40 PM	

+="CN92241"	"TAP-3 Disposal - Phase 3"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	06-Jun-08	58690.95	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:40 PM	

+="CN92242"	"SOFTWARE LICENCE FEE & TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	27-May-08	25-Jun-08	16461.50	=""	="EVALUA PTY LTD"	17-Jun-08 12:40 PM	

+="CN92243"	"Software Develop and lab Testing"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	27-May-08	15-Jun-08	11132.00	=""	="C4I PTY LTD"	17-Jun-08 12:40 PM	

+="CN92244"	"POSITION 0 TEARDOWN - SURVEY & QUOTE 23 HUGPH3.2 - CAPO C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	27-May-08	31-May-08	300322.66	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 12:40 PM	

+="CN92245"	"Repair of MDI S/No 1073"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	27-May-08	24-Sep-08	21290.00	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:41 PM	

+="CN92246"	"S/N BA011 (S&Q 039)"	="Defence Materiel Organisation"	17-Jun-08	="Launchers"	27-May-08	30-Jun-08	48032.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:41 PM	

+="CN92247"	"TRAVEL TO CONDUCT PWS COURSE FOR SFTG IN DARWIN -"	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	06-Jun-08	06-Jun-08	10852.87	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:41 PM	

+="CN92248"	"Use of Exisitng ASP Contract  - Praxis Alarm and Monitoring system"	="Defence Materiel Organisation"	17-Jun-08	="Engine coolant system"	27-May-08	30-Jun-08	156178.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92249"	"Network IPV4/V6 Traffic Generator & Analysis Suite"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	170511.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	17-Jun-08 12:41 PM	

+="CN92250"	"Aircraft Towing Super Heavy Towmotors"	="Defence Materiel Organisation"	17-Jun-08	="Machinery and transport equipment manufacture"	27-May-08	30-Sep-09	7038730.98	=""	="TUG TECHNOLOGIES CORPORATION"	17-Jun-08 12:41 PM	

+="CN92251"	"Use of Exisitng ASP Contract  - Slew Arm Davit"	="Defence Materiel Organisation"	17-Jun-08	="Launch vehicles and rockets"	27-May-08	30-Jun-08	16064.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92252"	"Use of Exisitng ASP Contract  - ASP Mobilisation Cost for EMA 04"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	27-May-08	30-Jun-08	195392.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92253"	"Vendor Quote: ES-TXA-MPS-1093 TD Number: 192"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	27-May-08	20-Dec-08	392992.60	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:42 PM	

+="CN92254"	"Notebooks, Carry Pouches and Optical Mice"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	12-Jun-08	14220.80	=""	="COMPUTERCORP - MELBOURNE"	17-Jun-08 12:42 PM	

+="CN92255"	"Office Furniture"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	27-May-08	12-Jun-08	12050.74	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	17-Jun-08 12:42 PM	

+="CN92256"	"Annual shutdown maintenance of SETF"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue water craft"	27-May-08	30-Jun-08	92275.81	=""	="CAL DIVE INTERNATIONAL"	17-Jun-08 12:42 PM	

+="CN92257"	"SERS Maintenance"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue water craft"	27-May-08	30-Jun-08	36054.37	=""	="CAL DIVE INTERNATIONAL"	17-Jun-08 12:42 PM	

+="CN92258"	"Army Spares"	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	27-May-08	01-Jul-08	14410.87	=""	="AIMPOINT SWEDEN AB"	17-Jun-08 12:42 PM	

+="CN92259"	"Dimension software licence renewal"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	28-Jun-09	17140.20	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:42 PM	

+="CN92260"	"MIMS Maintenance Introduction e-Assessment of E-Learning Courses."	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	23-Jun-08	40390.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	17-Jun-08 12:42 PM	

+="CN92261"	"Purchase of equipment"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	27-May-08	30-Jun-08	46170.30	=""	="METROMATICS PTY LTD"	17-Jun-08 12:42 PM	

+="CN92262"	"Provision of Laptop Software Upgrade"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	30-Jun-08	12222.66	=""	="KAZ GROUP PTY LTD"	17-Jun-08 12:43 PM	

+="CN92263"	"MULTI PURPOSE WATER CHARGE"	="Defence Materiel Organisation"	17-Jun-08	="Arms and ammunition accessories"	27-May-08	25-Aug-08	79286.66	=""	="RAPID ENTRY PTY LTD"	17-Jun-08 12:43 PM	

+="CN92264"	"SOFTWARE MAINTENANCE"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	02-Jun-08	22000.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	17-Jun-08 12:43 PM	

+="CN92265"	"DEVELOP THE ANZAC CLASS SAFETY MANAGEMENT SYSTEM STAGE 1"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	27-May-08	30-Jun-09	346310.80	=""	="AMOG CONSULTING"	17-Jun-08 12:43 PM	

+="CN92266"	"Defence Network Support Agency (DNSA)- Chief Infor (CIOG) to facilitate the installation of trnsmiss"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-15	262691.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:43 PM	

+="CN92267"	"DESKTOP SCANNERS"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	21324.70	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	17-Jun-08 12:43 PM	

+="CN92268"	"DEVELOP RFT FOR TOPLITE"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	27-May-08	18-Jul-08	55510.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	17-Jun-08 12:43 PM	

+="CN92269"	"Chief Engineering Support"	="Defence Materiel Organisation"	17-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-May-08	30-Jun-09	482625.00	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	17-Jun-08 12:44 PM	

+="CN92270"	"ESRI Software"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	04-Jun-08	232672.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	17-Jun-08 12:44 PM	

+="CN92271"	"Satellite Equipment"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	27-May-08	30-Jun-08	55000.00	=""	="APPLIED SATELLITE TECHNOLOGY"	17-Jun-08 12:44 PM	

+="CN92272"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Jul-07	07-Mar-08	27627.05	=""	="PHILLIPS FOX LAWYERS"	17-Jun-08 12:55 PM	

+="CN92273-A1"	" ASCTEC National System Administrator   Mainframe workflow system "	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	01-Mar-08	30-Jun-08	27800.00	=""	="Rutledge, Greg"	17-Jun-08 12:57 PM	

+="CN92275"	"10 ACER Veriton 5900 DEEWR Model Computers & 10 AL 1923R 19' LCD Monitors."	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Computers"	26-Feb-08	27-Mar-08	19690.00	=""	="DATAFLEX PTY LTD"	17-Jun-08 01:06 PM	

+="CN92276"	"PARTS VARIOUS - ASLAV"	="Department of Defence"	17-Jun-08	="Armoured fighting vehicles"	16-Jun-08	05-Aug-08	29177.50	=""	="TRIMCAST PTY LTD"	17-Jun-08 01:08 PM	

+="CN92277-A4"	"Provision of business analysis activities for applications/systems"	="Australian Federal Police"	17-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	74332.50	=""	="Paxus Australia Pty Limited"	17-Jun-08 01:14 PM	

+="CN92285"	"PURCHASE OF STARS DOWNLOAD AND ANALYSIS KITS FOR TO REPLACE U/S PAU'S WITHIN THE ADF.  IAW CONTRACT V310103 NSN 66-156-8783 SOLE IN COUNTRY SUPPLIER FLIGHT DATA SYSTEMS"	="Department of Defence"	17-Jun-08	="Military rotary wing aircraft"	17-Jun-08	27-Jun-08	137885.00	=""	="FLIGHT DATA SYSTEMS"	17-Jun-08 02:32 PM	

+="CN92286"	"Qty 29 Jack Hydraulic Hand Special"	="Defence Materiel Organisation"	17-Jun-08	="Automotive hydraulic systems"	17-Jun-08	20-Jun-08	13420.33	=""	="Volvo Commercial Vehicles"	17-Jun-08 02:43 PM	

+="CN92288-A1"	" VENTILATOR PNEUMATIC "	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	21-May-08	04-Jul-08	269547.04	=""	="Draeger Medical Australia Pty Ltd"	17-Jun-08 02:49 PM	

+="CN92289"	"Pool Vehicle Lease Charges May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-May-08	31-May-08	16240.60	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 02:57 PM	

+="CN92290"	"Pool Vehicle Lease Charges for April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-Apr-08	30-Apr-08	14965.31	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 03:04 PM	

+="CN92291"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Feb-08	29-Feb-08	17351.07	=""	="MINTER ELLISON"	17-Jun-08 03:10 PM	

+="CN92296"	"Journal Licences"	="Australian Federal Police"	17-Jun-08	="Marketing and distribution"	01-Apr-08	31-Mar-09	11174.00	=""	="Emerald Group Publishing Limited"	17-Jun-08 03:39 PM	

+="CN92293"	"Advertising"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Advertising"	08-Feb-08	09-Feb-08	16237.19	=""	="HMA BLAZE PTY LTD"	17-Jun-08 03:54 PM	

+="CN92298"	"Fixed Assets Valuation - Plant and Equipment as at 30 April 2008"	="Australian Securities and Investments Commission"	17-Jun-08	="Financial and Insurance Services"	14-May-08	16-May-08	16500.00	=""	="Australian Valuation Office"	17-Jun-08 03:56 PM	

+="CN92299"	"Promotional Pens"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Promotional merchandise"	15-Feb-08	29-Mar-08	14850.00	=""	="IMPACT PROMOTIONAL PRODUCTS"	17-Jun-08 04:02 PM	

+="CN92301"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Feb-08	29-Feb-08	12144.95	=""	="TRINDADE FARR & PILL"	17-Jun-08 04:06 PM	

+="CN92302"	"APCM 06.030-1320 Printing of Tax Pack 2000 & 2001 back up quantity."	="Australian Taxation Office"	17-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jun-08	30-Jun-08	24877.60	=""	="Pirion Printing"	17-Jun-08 04:07 PM	

+="CN92303"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Stationery"	01-Mar-08	31-Mar-08	11516.03	=""	="OFFICEMAX AUSTRALIA LTD"	17-Jun-08 04:12 PM	

+="CN92305"	" IT-352 Variation 2 $75,000.00 Seminar Registration System  IT-352 Variation 3 $15,000.00 Seminar Regostration System  Original Gazette reference 1579714  Additional Gazette reference CN17781 "	="Australian Taxation Office"	17-Jun-08	="Computer services"	17-Jun-08	30-Apr-09	90000.00	=""	="ICONTACT Australia Pty Ltd"	17-Jun-08 04:13 PM	

+="CN92306"	"Repair of A25 Yaw boost servo IAW S/O 9702-026-105."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	17-Jun-08	30-Jul-08	15634.62	=""	="Sikorsky Aircraft Austalia Limited"	17-Jun-08 04:15 PM	

+="CN92300"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	21-Feb-08	06-Mar-08	16500.00	=""	="Screendreams Entertainment"	17-Jun-08 04:16 PM	

+="CN92308"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	20-Feb-08	22-Feb-08	12532.00	=""	="Sheraton Hotel"	17-Jun-08 04:33 PM	

+="CN92309"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	05-Mar-08	07-Mar-08	12830.00	=""	="Dooralong Valley Resort"	17-Jun-08 04:40 PM 

--- a/admin/partialdata/15Sep2007to16Sep2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- a/admin/partialdata/16Dec2007to20Dec2007valto.xls
+++ b/admin/partialdata/16Dec2007to20Dec2007valto.xls
@@ -1,709 +1,709 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN51348"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	41578.83	=""	="Volvo Commerical Vehicles"	17-Dec-07 08:41 AM	
-="CN51347"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	16963.00	=""	="Volvo Commerical Vehicles"	17-Dec-07 08:45 AM	
-="CN51349-A1"	"Med Consumables For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Medical Equipment and Accessories and Supplies"	06-Dec-07	21-Jan-08	21958.31	=""	="Baxter Healthcare Pty Ltd"	17-Dec-07 08:48 AM	
-="CN51350"	" Panel Assembly's. "	="Defence Materiel Organisation"	17-Dec-07	="Motor or generator components"	14-Dec-07	17-Jun-08	19580.88	="RFQ G7645"	="Advanced Power (NSW) Pty Ltd"	17-Dec-07 08:50 AM	
-="CN51351"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Medical Equipment and Accessories and Supplies"	05-Dec-07	17-Jan-08	13513.50	=""	="Orthotic & Prosthetic Centre P/L"	17-Dec-07 08:52 AM	
-="CN51352"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	22204.53	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 08:54 AM	
-="CN51354"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	16982.57	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 09:00 AM	
-="CN51353"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	14-Jan-08	14183.58	=""	="Volvo Commerical Vehicles"	17-Dec-07 09:07 AM	
-="CN51355"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	20296.12	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 09:08 AM	
-="CN51356"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Drugs and Pharmaceutical Products"	30-Jul-07	14-Aug-07	87266.19	=""	="Symbion Pharmacy Services"	17-Dec-07 09:39 AM	
-="CN51357"	"SES Pool Vehicle Charges August-November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business administration services"	01-Aug-07	30-Nov-07	21084.74	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	17-Dec-07 09:44 AM	
-="CN51358"	"Temporary Personnel"	="Australian Electoral Commission"	17-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	38966.40	="AEC06/019"	="Peoplebank Recruitment"	17-Dec-07 09:51 AM	
-="CN51359"	"Application Services & Travel for October 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business administration services"	01-Oct-07	31-Oct-07	11232.06	=""	="DEPARTMENT OF EMPLOYMENT AND WORKPLACE RELATIONS"	17-Dec-07 09:55 AM	
-="CN51360"	"Temporary Personnel"	="Australian Electoral Commission"	17-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	40048.80	="AEC06/019"	="Peoplebank Recruitment"	17-Dec-07 10:00 AM	
-="CN51361"	"iBase 5 SSE User Software Licences"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Software"	01-Nov-07	31-Oct-08	172579.00	=""	="VISUAL ANALYSIS PTY LTD"	17-Dec-07 10:13 AM	
-="CN51362"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	17-Sep-07	22-Oct-07	75701.89	=""	="LAVAN LEGAL"	17-Dec-07 10:26 AM	
-="CN51363"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	26-Jul-07	23-Aug-07	44094.41	=""	="LAVAN LEGAL"	17-Dec-07 10:41 AM	
-="CN51366"	"vehicle repairs"	="Department of Defence"	17-Dec-07	="Motor vehicles"	01-Oct-07	01-Jan-08	11028.60	=""	="TWINE MACHINERY"	17-Dec-07 11:00 AM	
-="CN51367"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	01-Oct-07	01-Nov-07	13005.80	=""	="TWINE MACHINERY"	17-Dec-07 11:05 AM	
-="CN51368"	"IT Hardware - Polycom Desktop units"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	14-Dec-07	31-Jan-08	35428.80	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	17-Dec-07 11:07 AM	
-="CN51369"	"Provision of Fact of Death File Data"	="Australian Taxation Office"	17-Dec-07	="Politics and Civic Affairs Services"	13-Dec-07	31-Mar-08	10000.00	=""	="DEPT OF JUSTICE TASMANIA"	17-Dec-07 11:07 AM	
-="CN51370"	"IT Hardware"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	13-Dec-07	30-Jun-08	20000.00	=""	="Telstra"	17-Dec-07 11:07 AM	
-="CN51371"	"Software Assett mangement essentials 6 attendees"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	10-Dec-07	10-Dec-07	13176.00	=""	="ProActive Services Pty Ltd"	17-Dec-07 11:08 AM	
-="CN51372"	"Procurement Annual Conference"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Dec-07	14473.30	=""	="THE BRASSEY OF CANBERRA"	17-Dec-07 11:08 AM	
-="CN51373"	"training for IT staff"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	05-Dec-07	16-Feb-08	76395.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	17-Dec-07 11:08 AM	
-="CN51374"	"Laptops, printer, NAS, Back-up device and UPS"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	05-Dec-07	21-Dec-07	49163.03	=""	="Dell Computer"	17-Dec-07 11:08 AM	
-="CN51375"	"FINANCIAL ADVICE"	="Australian Taxation Office"	17-Dec-07	="Financial and Insurance Services"	05-Dec-07	05-Dec-07	10000.00	=""	="Freebody Cogent Pty Ltd"	17-Dec-07 11:09 AM	
-="CN51376"	"22 X CHAIRS"	="Australian Taxation Office"	17-Dec-07	="Furniture and Furnishings"	03-Dec-07	03-Dec-07	12535.60	=""	="STURDY COMPONENTS PTY LTD"	17-Dec-07 11:09 AM	
-="CN51377"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	11-Sep-07	21-Dec-07	20240.00	=""	="VOLVO COMMERCIAL VEHICLES"	17-Dec-07 11:11 AM	
-="CN51365"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	24-Aug-07	17-Sep-07	26458.55	=""	="LAVAN LEGAL"	17-Dec-07 11:11 AM	
-="CN51378"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	17-Sep-07	21-Dec-07	24826.96	=""	="PREMIER TRUCKS NQ PTY LTD"	17-Dec-07 11:17 AM	
-="CN51379"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	24-Sep-07	26-Oct-07	32114.42	=""	="BLAKE DAWSON WALDRON"	17-Dec-07 11:23 AM	
-="CN51380"	"CLIENT/STAKEHOLDER REVIEW OF THE PRISMS SYSTEM"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	15-Oct-07	31-Dec-07	80000.00	="PRN16331"	="Corporate Diagnostics pty ltd"	17-Dec-07 11:25 AM	
-="CN51381"	"APEC Education Network Presentation cross-border provision of education services"	="Department of Education, Science and Training"	17-Dec-07	="Engineering and Research and Technology Based Services"	08-Nov-07	10-Jan-08	52250.00	="PRN16264"	="INTERNATIONAL ECONOMICS UNTIS TRUST"	17-Dec-07 11:25 AM	
-="CN51382"	"Development of a VET Capability Statement"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	12-Nov-07	01-May-08	140000.00	="PRN16517"	="TAFE DIRECTORS AUSTRALIA"	17-Dec-07 11:26 AM	
-="CN51383"	"Leading Australia's Future in Asia Programme 2007"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	07-Aug-07	30-Jun-08	53674.79	="PRN17828"	="AUSTRALIAN PUBLIC SERVICE COMM"	17-Dec-07 11:26 AM	
-="CN51384"	"16 Mort Street - Purchase of Portable Dance Floor"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	13-Nov-07	30-Nov-07	10010.00	="PRN17658"	="Ezi-Flor"	17-Dec-07 11:27 AM	
-="CN51385"	"Higher Education Removalist fees"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	24-Sep-07	30-Nov-07	24992.00	="PRN17621"	="Movers and Shakers Business Relocations"	17-Dec-07 11:27 AM	
-="CN51386"	"Fitout plans and floor plans for level 2, 72 Northbourne"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	28-Aug-07	30-Jun-08	29260.00	="PRN16823"	="PECKVONHARTEL"	17-Dec-07 11:27 AM	
-="CN51387"	"Minor fit out level 12, 188 Collins St Hobart"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	02-Oct-07	30-Nov-07	20582.00	="PRN17550"	="Cunic Constructions Pty Ltd"	17-Dec-07 11:27 AM	
-="CN51388"	"Design, document tender and project manage"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	10-Oct-07	27-Jun-08	10450.00	="PRN17903"	="GECHAWELL PTY LTD"	17-Dec-07 11:27 AM	
-="CN51389"	"SAP Australia - InfoPak Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	22-Nov-07	30-Jun-08	17167.54	="PRN17893"	="SAP Australia Pty Ltd"	17-Dec-07 11:28 AM	
-="CN51390"	"Design ,document, tender and project manage fit out"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	26-Nov-07	30-Jun-08	40700.00	="PRN17915"	="GANLEY POPE JOHNSON"	17-Dec-07 11:28 AM	
-="CN51391"	"E-RECRUITMENT 2008"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	01-Jun-07	07-Dec-07	10000.00	="PRN17902"	="NGA.NET PTY LTD"	17-Dec-07 11:28 AM	
-="CN51392"	"A and BAC EXTERNAL MEMBER"	="Department of Education, Science and Training"	17-Dec-07	="Accounting and auditing"	20-Nov-07	21-Dec-09	49500.00	="PRN12008"	="MORISON CONSULTING"	17-Dec-07 11:28 AM	
-="CN51393"	"5x desks, underdesk drawers, PSU's- Schiavello"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	23-Oct-07	04-Dec-07	10876.80	="PRN17855"	="Schiavello Commercial Interiors"	17-Dec-07 11:28 AM	
-="CN51394"	"Benchmark Data Set - Australian Bureau of Statistics"	="Department of Education, Science and Training"	17-Dec-07	="Printed media"	07-Nov-07	30-Jun-08	16500.00	="PRN17633"	="AUSTRALIAN BUREAU OF STATISTICS"	17-Dec-07 11:29 AM	
-="CN51396"	"Adobe Products"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	30-Jun-08	78950.00	="PRN17743"	="DATA3 LIMITED"	17-Dec-07 11:36 AM	
-="CN51397"	"Cleaning and Repairing Office Chairs - ISG"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	13-Nov-07	20-Dec-07	11682.00	="PRN17721"	="KReliance Pty Ltd"	17-Dec-07 11:36 AM	
-="CN51398"	"Consultant to develop Project plan for establishmet"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	30-Aug-07	11-Oct-07	14040.00	="PRN17894"	="PAUL FITZGERALD"	17-Dec-07 11:37 AM	
-="CN51399"	"ITIL Awareness Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	19-Nov-07	31-Mar-08	15000.00	="PRN17813"	="Proactive Services Pty Ltd"	17-Dec-07 11:37 AM	
-="CN51400"	"Imation Tape Cartridges"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	28270.00	="PRN17742"	="PRODATA COMPUTER PRODUCTS"	17-Dec-07 11:37 AM	
-="CN51401"	"Appsense Management Software"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	14064.93	="PRN17895"	="Dimension Data Australia Pty Ltd"	17-Dec-07 11:37 AM	
-="CN51402"	"Reporting Services Training - Superior Software for windows"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	26-Nov-07	30-Jun-08	11008.80	="PRN17808"	="SUPERIOR SOFTWARE FOR WINDOWS PTY L"	17-Dec-07 11:37 AM	
-="CN51403"	"Fax Interface Hardware"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	49747.50	="PRN17931"	="Axient P/L"	17-Dec-07 11:37 AM	
-="CN51395"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	28-Sep-07	30-Oct-07	26571.84	=""	="MINTER ELLISON"	17-Dec-07 11:40 AM	
-="CN51404"	"Investigation into Industry Expectations of VET As"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	26-Nov-07	30-Apr-08	114840.00	="PRN16628"	="PRECISION CONSULTANCY"	17-Dec-07 11:49 AM	
-="CN51406"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Institute of Hair and Aesthetics"	17-Dec-07 11:54 AM	
-="CN51407"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="The Daniels Associates"	17-Dec-07 11:54 AM	
-="CN51408"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Pro-System Training Services Pty"	17-Dec-07 11:54 AM	
-="CN51409"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14080.00	="PRN12579"	="Bathun Pty Ltd"	17-Dec-07 11:54 AM	
-="CN51410"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Griffith Skills Training Centre"	17-Dec-07 11:55 AM	
-="CN51411"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="TAFE NSW - ACCESS DIVISION"	17-Dec-07 11:55 AM	
-="CN51412"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	20790.00	="PRN12579"	="SYDNEY TAXI TRAINING CENTRE PTY LTD"	17-Dec-07 11:55 AM	
-="CN51413"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13750.00	="PRN12579"	="AVOCARE LIMITED"	17-Dec-07 11:55 AM	
-="CN51414"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SOURCE4 PTY LIMITED"	17-Dec-07 11:55 AM	
-="CN51415"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="COLLEGE OF AUSTRALIAN TRAINING PTY"	17-Dec-07 11:55 AM	
-="CN51416"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="KUNEXION PTY LTD"	17-Dec-07 11:55 AM	
-="CN51417"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="EXECUTIVE INSTITUTE OF MANAGEMENT"	17-Dec-07 11:55 AM	
-="CN51418"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="MW TRAINING CONSULTANTS"	17-Dec-07 11:55 AM	
-="CN51419"	"Temp Staff Member in EA Role"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	15000.00	="PRN17037"	="JULIA ROSS RECRUITMENT LTD"	17-Dec-07 11:57 AM	
-="CN51420"	"Influencing and Negotiations Skills workshop"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	08-Nov-07	30-May-08	10511.40	="PRN17739"	="POLLAK LEARNING ALLIANCE PTY LTD"	17-Dec-07 11:58 AM	
-="CN51421"	"strategies to address the international recognition"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	08-Nov-07	30-Jun-08	181390.00	="PRN16569"	="ESCALIER CONSULTING PTY LTD"	17-Dec-07 11:59 AM	
-="CN51405"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	16-Aug-07	27-Sep-07	18257.25	=""	="MINTER ELLISON"	17-Dec-07 11:59 AM	
-="CN51422"	"Financial Statement Guidelines for Australian High Higher Education Providers 2007 Reporting Period"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	31-Oct-07	31-Dec-07	29150.00	="PRN17465"	="PRICEWATERHOUSECOOPERS"	17-Dec-07 11:59 AM	
-="CN51423"	"Enrolment Projections"	="Australian Electoral Commission"	17-Dec-07	="Production statistics collection or analysis services"	26-Nov-07	30-Apr-08	49730.00	=""	="Australian Bureau of Statistics"	17-Dec-07 12:03 PM	
-="CN51425"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	02-Aug-07	14-Nov-07	22096.00	=""	="G J MCNAUGHT PTY LTD"	17-Dec-07 12:22 PM	
-="CN51426-A1"	"Revise, edit and prepare consilidation guidelines and procedures including the Consilidation Reference Manual (CRM)"	="Australian Taxation Office"	17-Dec-07	="Manual writing services"	14-Dec-07	30-Jun-09	44000.00	=""	="Evans-Smith & Dando Pty Ltd"	17-Dec-07 12:22 PM	
-="CN51427"	"M113UPGRADE VEHICLE PARTS - FITTERS TRACK"	="Department of Defence"	17-Dec-07	="Armoured fighting vehicles"	13-Dec-07	07-Mar-08	62526.44	=""	="HIAB AUSTRALIA PTY LTD"	17-Dec-07 12:30 PM	
-="CN51429"	"vehicle repairs"	="Department of Defence"	17-Dec-07	="Motor vehicles"	08-Nov-07	21-Dec-07	47848.03	=""	="F.B. AUTO REPAIRS"	17-Dec-07 12:33 PM	
-="CN51430"	"Security Services at Lae War Cemetery"	="Department of Veterans' Affairs"	17-Dec-07	="Public order and safety"	14-Sep-07	13-Sep-10	61800.00	=""	="Huon Hire Services ( Madang ) Limited"	17-Dec-07 01:34 PM	
-="CN51431"	"For the development and design of Position Documentation & Selection Criteria"	="Department of Veterans' Affairs"	17-Dec-07	="Human resources services"	01-Oct-07	01-Oct-08	31360.00	=""	="Wendy Allan Consulting"	17-Dec-07 01:34 PM	
-="CN51432"	"ASLAV PARTS - PNEUMATIC TIRE WHEEL & AUTOMOTIVE WHEEL, RING, SIDE"	="Department of Defence"	17-Dec-07	="Armoured fighting vehicles"	13-Dec-07	09-Aug-08	51143.20	=""	="MARATHON TYRES AUST PTY LTD"	17-Dec-07 01:38 PM	
-="CN51433"	"PEP Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	23-Nov-07	31-Jan-08	13200.00	="PRN17881"	="D'ARCY CONSULTING GROUP PTY LTD"	17-Dec-07 01:39 PM	
-="CN51434"	"2007 Census of Non-Government Schools"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	29-Sep-07	24-Dec-07	15200.00	="PRN16564"	="WVR and BJ STEVENSON CONSULTANTS PTY"	17-Dec-07 01:40 PM	
-="CN51435"	"Development of performance framework for Education"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	22-Nov-07	30-Apr-08	67650.00	="PRN16920"	="ATELIER LEARNING SOLUTIONS PTY LTD"	17-Dec-07 01:41 PM	
-="CN51436"	"Administering Industry/Business Satisfaction Surve"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	01-Oct-07	31-Dec-07	28814.50	="PRN16859"	="ACNielsen (Holdings) Pty Ltd"	17-Dec-07 01:41 PM	
-="CN51437"	"Niche Marketing Pilot for Mining VET in Latin America"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	25-Oct-07	30-Jun-08	209000.00	="PRN16490"	="BOX HILL INSTITUTE OF TAFE"	17-Dec-07 01:41 PM	
-="CN51438"	"a/c spares: 4320-01-195-2484, Housing, qty 3."	="Defence Materiel Organisation"	17-Dec-07	="Military rotary wing aircraft"	30-Nov-07	14-Dec-08	14423.08	=""	="sikorsky aust"	17-Dec-07 01:43 PM	
-="CN51439"	"Review of the Prime Minister's Prizes for Science 2007/2007"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	12-Nov-07	30-Jun-08	30000.00	="PRN17429"	="SCIENCE IN PUBLIC"	17-Dec-07 01:43 PM	
-="CN51440"	"Construction work at Finke Community"	="Department of Education, Science and Training"	17-Dec-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	12-Dec-07	22755.00	="PRN17970"	="PETER ROPER"	17-Dec-07 01:43 PM	
-="CN51441"	"Annual Indigenous Higher Education Advisory Council"	="Department of Education, Science and Training"	17-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	31-Dec-07	26373.14	="PRN16957"	="NANTIONAL WINE CENTRE OF AUSTRALIA"	17-Dec-07 01:44 PM	
-="CN51442"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	01-Jan-09	251680.00	=""	="Tarakan Consulting Pty Ltd"	17-Dec-07 01:44 PM	
-="CN51443"	"Evaluation of the Enterprise Learning for the 21st"	="Department of Education, Science and Training"	17-Dec-07	="Engineering and Research and Technology Based Services"	22-Nov-07	29-Jun-08	262300.00	="PRN14888"	="ATELIER LEARNING SOLUTIONS PTY LTD"	17-Dec-07 01:45 PM	
-="CN51444"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	06-Jan-09	299112.00	=""	="Paxus Australia Pty Ltd"	17-Dec-07 01:45 PM	
-="CN51445"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	10-Dec-07	11-Jun-08	116688.00	=""	="Greythorn Pty Ltd"	17-Dec-07 01:45 PM	
-="CN51446"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	05-Dec-07	12-Dec-08	321552.00	=""	="REDBACK CONSULTING PTY LTD"	17-Dec-07 01:45 PM	
-="CN51447"	"Technical Account Manager Services under contract"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Nov-08	457600.00	=""	="Oracle Corporation Australia"	17-Dec-07 01:45 PM	
-="CN51448"	"Ebsco - 2008 renewal to bulk subscription of journal"	="Department of Education, Science and Training"	17-Dec-07	="Printed media"	28-Nov-07	30-Jun-08	49774.04	="PRN17961"	="EBSCO AUSTRALIA"	17-Dec-07 01:45 PM	
-="CN51449"	"PRINTING"	="Australian Taxation Office"	17-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-Nov-07	07-Dec-07	132036.96	=""	="PMP PRINT LIMITED"	17-Dec-07 01:46 PM	
-="CN51450"	"LEGALS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	06-Dec-07	12000.00	=""	="FOLEY'S LIST PTY LTD"	17-Dec-07 01:46 PM	
-="CN51451"	"VALUATIONS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	05-Dec-07	45131.85	=""	="AUSTRALIAN VALUATION OFFICE"	17-Dec-07 01:46 PM	
-="CN51452"	"LEGALS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	05-Dec-07	17625.49	=""	="FERRIER HODGSON"	17-Dec-07 01:46 PM	
-="CN51453"	"LAFIA PARTICIPANT 2007"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	22-Nov-07	22-Nov-07	23100.00	=""	="Australian Public Service"	17-Dec-07 01:47 PM	
-="CN51454"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	07-Dec-07	27400.49	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	
-="CN51455"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	12-Dec-07	21262.33	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	
-="CN51456"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	12-Dec-07	16787.28	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	
-="CN51458"	"Legal costs in Federal Court of Australia"	="Australian Taxation Office"	17-Dec-07	="Financial and Insurance Services"	06-Jul-07	30-Jun-08	12000.00	=""	="FEDERAL COURT OF AUSTRALIA"	17-Dec-07 02:02 PM	
-="CN51459"	"Sign language interpreter for staff member"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	18-Jul-07	30-Jun-08	14000.00	=""	="ANDREW GRAY"	17-Dec-07 02:02 PM	
-="CN51460"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	30-Dec-08	208208.01	=""	="COMPAS PTY LTD"	17-Dec-07 02:03 PM	
-="CN51461"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	11-Dec-07	12-Feb-08	102850.00	=""	="InfoRail Pty Ltd"	17-Dec-07 02:03 PM	
-="CN51462"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	29-Oct-07	31-Oct-08	200178.00	=""	="Paxus Australia Pty Ltd"	17-Dec-07 02:03 PM	
-="CN51463"	"Services to configure Transaction Vision"	="Australian Taxation Office"	17-Dec-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	02-Dec-08	330000.00	=""	="HEWLETT PACKARD PTY LTD"	17-Dec-07 02:03 PM	
-="CN51465-A2"	"W051 - Review and develop Information Architecture (IA) for ATO website."	="Australian Taxation Office"	17-Dec-07	="Technical writing"	11-Nov-07	31-Mar-09	385936.00	="56.04"	="Evans-Smith & Dando Pty Ltd"	17-Dec-07 02:12 PM	
-="CN51464"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	28-Nov-07	18-Dec-07	12216.41	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:14 PM	
-="CN51466"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	11-Dec-07	31-Dec-07	47665.00	=""	="SIKORSKY AIRCRAFT AUSTRLIA LTD"	17-Dec-07 02:20 PM	
-="CN51468"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	11-Dec-07	31-Dec-07	12841.04	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:26 PM	
-="CN51469"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	12-Dec-07	01-Jan-08	12305.50	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:52 PM	
-="CN51470"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	05-Dec-07	07-Feb-08	41344.19	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:58 PM	
-="CN51471-A2"	"Lease at Newport Victoria"	="Department of Human Services"	17-Dec-07	="Real estate services"	01-Jul-07	31-Dec-12	1374518.30	=""	="Sheila Webb Super Fund"	17-Dec-07 03:08 PM	
-="CN51474"	"motor vehicle spare parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	12-Jan-08	41719.92	=""	="Landrover"	17-Dec-07 03:20 PM	
-="CN51475"	"MOTOR VEHIICLE SPARE PARTS"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	12-Jan-08	27175.30	=""	="ROVER AUSTRALIA"	17-Dec-07 03:33 PM	
-="CN51476"	"VEHCILE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	24-Sep-07	24-Oct-07	11335.50	=""	="GILBERT GROUP"	17-Dec-07 03:40 PM	
-="CN51477"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	04-Oct-07	29-Nov-07	10932.90	=""	="ALLCOCK"	17-Dec-07 03:46 PM	
-="CN50323"	"Rational Software Renewal"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Software"	01-Jan-08	31-Dec-08	25774.47	=""	="IBM Australia Limited"	17-Dec-07 03:57 PM	
-="CN50310"	"Renewal of Existing Cognos Licence Suite"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Software"	28-Dec-07	27-Dec-08	11825.84	=""	="Cognos Pty Ltd"	17-Dec-07 04:01 PM	
-="CN51480"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	09-Aug-07	10-Oct-07	14855.40	=""	="GILBERTS"	17-Dec-07 04:02 PM	
-="CN50295"	"Contractor - Allocations Administration Section"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	03-Dec-07	01-Feb-08	14000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	17-Dec-07 04:06 PM	
-="CN50293-A2"	"Contractors - Finance Section"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	03-Dec-07	14-Mar-08	37500.00	="05/ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	17-Dec-07 04:06 PM	
-="CN50289"	"Review of Finance Procedures"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Financial and Insurance Services"	29-Nov-07	28-Feb-08	14020.00	="07ACMA039"	="Alese Pty Ltd"	17-Dec-07 04:06 PM	
-="CN48094"	"Household Television Environment Research"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Market research"	30-Nov-07	31-Mar-08	117480.00	="07ACMA009"	="Woolcott Research Pty Ltd"	17-Dec-07 04:06 PM	
-="CN48119"	"Engineering Fitout of ACMA's Field Survey Measurement Vehicle"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Transportation engineering"	22-Nov-07	22-Jan-08	76340.00	="07ACMA033"	="Rohde & Schwarz (Aust) P/L"	17-Dec-07 04:06 PM	
-="CN47970"	"Contract Staff"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	21-Nov-07	18-Jan-08	12980.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	17-Dec-07 04:06 PM	
-="CN50297"	"Usability Testing of ACMA Website"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="World wide web WWW site design services"	15-Dec-07	21-Dec-07	17498.25	=""	="Access Testing Pty Ltd"	17-Dec-07 04:06 PM	
-="CN51481"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	26-Nov-07	26-Dec-07	11401.80	=""	="R.G.M"	17-Dec-07 04:07 PM	
-="CN47820"	"Hire of Six Multifunction Devices - ACMA Central Offices"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Multifunction machines"	15-Nov-07	15-Feb-08	28512.00	=""	="Ricoh Business Centre"	17-Dec-07 04:07 PM	
-="CN47178"	"Engagement of Consultant for Microsoft Outlook Training"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	08-Nov-07	23-Nov-07	21499.50	=""	="Priority Management Sydney Pty Ltd"	17-Dec-07 04:10 PM	
-="CN47182"	"Print 500 Copies of Media and Communications in Australian Families 2007"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Printing"	15-Nov-07	15-Dec-07	19170.80	=""	="National Capital Printing"	17-Dec-07 04:10 PM	
-="CN51482"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	06-Nov-07	26-Nov-07	12901.02	=""	="ALLCOCK"	17-Dec-07 04:11 PM	
-="CN47171-A1"	" Conduct Staff Attitude Survey "	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Human resources services"	09-Mar-07	08-Apr-07	48720.00	="06ACMA063"	="Orima Research Pty Ltd"	17-Dec-07 04:11 PM	
-="CN51483"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	05-Oct-07	30-Nov-07	23080.05	=""	="R.G.M"	17-Dec-07 04:15 PM	
-="CN51484"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	14-Aug-07	24-Aug-07	14388.44	=""	="ISA DIESEL & EARTHMOVING REPAIRS"	17-Dec-07 04:18 PM	
-="CN51485"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	21-Sep-07	04-Oct-07	18748.03	=""	="R.G.M"	17-Dec-07 04:23 PM	
-="CN51486"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	21-Sep-07	05-Nov-07	11464.90	=""	="HONEYCOMBES"	17-Dec-07 04:26 PM	
-="CN51487"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	10-Sep-07	28-Nov-07	14499.10	=""	="NORTHERN HARD SURFACES"	17-Dec-07 04:28 PM	
-="CN51488"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	03-Sep-07	20-Sep-07	14573.56	=""	="R.G.M"	17-Dec-07 04:31 PM	
-="CN51490"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	30-Aug-07	09-Nov-07	28097.98	=""	="MICKS AUTO (MC IMPORTS)"	17-Dec-07 04:35 PM	
-="CN51491"	"Election Advertising"	="Australian Electoral Commission"	17-Dec-07	="Advertising"	28-Nov-07	28-Dec-07	56505.90	=""	="HMA Blaze Pty Ltd"	17-Dec-07 04:35 PM	
-="CN51493"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	16-Aug-07	06-Sep-07	24079.69	=""	="R.G.M"	17-Dec-07 04:43 PM	
-="CN51494"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	14-Aug-07	27-Sep-07	36606.55	=""	="R.G.M"	17-Dec-07 04:48 PM	
-="CN51495"	" Cold Weather and Extreme Cold Weather Clothing Items "	="Defence Materiel Organisation"	17-Dec-07	="Insulated clothing for cold environments"	17-Dec-07	20-Dec-07	379621.00	="CC2007/16"	="Mainpeak Pty Ltd"	17-Dec-07 04:50 PM	
-="CN51496"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	06-Aug-07	27-Sep-07	38395.50	=""	="MICKS AUTOS (MC IMPORTS)"	17-Dec-07 04:51 PM	
-="CN51498"	"Cold Weather and Extreme Cold Weather Clothing Items"	="Defence Materiel Organisation"	17-Dec-07	="Insulated clothing for cold environments"	17-Dec-07	20-Dec-07	13838.00	="CC2007/17"	="Wilderness Wear"	17-Dec-07 04:56 PM	
-="CN51499"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1620 iAW Standing Offer PN7785."	="Defence Materiel Organisation"	17-Dec-07	="Aerospace systems and components and equipment"	17-Dec-07	31-Jan-08	54611.22	=""	="Goodrich Control Systems PTY LTD"	17-Dec-07 04:59 PM	
-="CN51500"	"management of the commonwealths portal project"	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	23-Nov-07	30-Jun-08	153120.00	=""	="Diacher Pty Ltd"	18-Dec-07 08:43 AM	
-="CN51501"	"Venue & Catering for CDAC"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	03-Oct-07	12-Dec-07	17083.00	=""	="The Trustee for Gillespie Trust"	18-Dec-07 09:01 AM	
-="CN51502"	"Delivery of Training"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	26-Nov-07	30-Jun-08	11321.70	="APS COMMISSION 2005/014"	="Saville and Holdsworth Australia"	18-Dec-07 09:01 AM	
-="CN51503"	"Research services"	="Australian Public Service Commission"	18-Dec-07	="Management advisory services"	07-Nov-07	29-Nov-07	54621.60	=""	="Orima Research Pty Ltd"	18-Dec-07 09:01 AM	
-="CN51505"	"Fraud control plan and associated training"	="Australian Public Service Commission"	18-Dec-07	="Business administration services"	19-Nov-07	31-Dec-07	48000.01	=""	="Ernst & Young"	18-Dec-07 09:02 AM	
-="CN51507"	"Annual Report printing"	="Australian Public Service Commission"	18-Dec-07	="Marketing and distribution"	21-Nov-07	21-Nov-07	16491.84	=""	="NCP t/a Blue Star Print Group"	18-Dec-07 09:02 AM	
-="CN51508"	"Indigenous Capability Fund 2007-08"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	22-Nov-07	30-Jun-08	42075.00	=""	="Medicare Australia"	18-Dec-07 09:02 AM	
-="CN51509"	"PSM Assessment"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	26-Nov-07	26-Nov-07	14919.30	=""	="Griffith University"	18-Dec-07 09:02 AM	
-="CN51510"	"Makegood Settlement"	="Australian Public Service Commission"	18-Dec-07	="Real estate services"	27-Nov-07	30-Nov-07	13200.00	=""	="CB Richard Ellis (A) Pty Ltd"	18-Dec-07 09:02 AM	
-="CN51506"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	09-Aug-07	25-Oct-07	32786.18	=""	="R.G.M"	18-Dec-07 09:02 AM	
-="CN51511"	"Printing of State of the Service Report and At a Glance Brochure"	="Australian Public Service Commission"	18-Dec-07	="Printing and publishing equipment"	28-Nov-07	10-Dec-07	36614.85	=""	="NCP t/a Blue Star Print Group"	18-Dec-07 09:02 AM	
-="CN51512"	"Temporary services - database administration"	="Australian Public Service Commission"	18-Dec-07	="Business administration services"	30-Nov-07	30-Nov-07	18155.89	=""	="Southern Cross Computing Pty Ltd"	18-Dec-07 09:02 AM	
-="CN51504"	"Subscription to Lead Manager & e-Premium"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	15-Dec-07	14-Dec-08	19732.90	=""	="BCI AUSTRALIA"	18-Dec-07 09:03 AM	
-="CN51513"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	11-Oct-07	25-Oct-07	14520.00	=""	="SCRATCH IT FIX IT"	18-Dec-07 09:05 AM	
-="CN51514"	" 9150 66 089 6558 Engine Lubricating Oil OMD 115 in 20L x 30 drums  9150 66 017 3041 Engine Lubricating Oil OMD 115 in 205L x 24 drums "	="Defence Materiel Organisation"	18-Dec-07	="Lubricants and oils and greases and anti corrosives"	17-Dec-07	07-Jan-08	17013.48	=""	="CALTEX"	18-Dec-07 09:07 AM	
-="CN51515"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	28-Sep-07	16467.00	=""	="MCLEODS"	18-Dec-07 09:08 AM	
-="CN51517"	"Ohmmeter BT51"	="Defence Materiel Organisation"	18-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	04-Feb-08	19783.50	=""	="MEGGER PTY LTD"	18-Dec-07 09:16 AM	
-="CN51520"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	16-Aug-07	04-Oct-07	15362.33	=""	="RGM MAINTENANCE"	18-Dec-07 09:22 AM	
-="CN51521"	"Locum Dr Murray Trubshaw services 19/11 - 28/1/08"	="Department of Transport and Regional Services"	18-Dec-07	="Medical practice"	17-Dec-07	28-Jan-08	44000.00	="TRS07/400"	="TRUBSHAW MEDICAL P/L"	18-Dec-07 09:23 AM	
-="CN51522"	"*TRS06/129 TRANSFER PIPELINE AGREEMENT 4338795/1 FOR INDIAN OCEAN TERRITORIES POWER AUTHORITY"	="Department of Transport and Regional Services"	18-Dec-07	="Transportation services equipment"	17-Dec-07	30-Jun-10	165000.00	="TRS06/129"	="INDIAN OCEAN OIL CO"	18-Dec-07 09:23 AM	
-="CN51523"	"Locum medical service for IOTHS CI & COCOS 19/11/2007 to 24/03/2008"	="Department of Transport and Regional Services"	18-Dec-07	="Medical practice"	14-Dec-07	24-Mar-08	73000.00	="TRS07/397"	="DR TREVOR PARR"	18-Dec-07 09:24 AM	
-="CN51524"	"Afreedman - contract services Sep/Oct 07"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	01-Sep-07	31-Oct-07	12100.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:24 AM	
-="CN51525"	"Insurance coverage for the Area Consultative Committee Network for Not For Profit Insurance"	="Department of Transport and Regional Services"	18-Dec-07	="Insurance and retirement services"	12-Dec-07	31-Mar-08	35000.00	="TRS07/395"	="MARSH PTY LTD"	18-Dec-07 09:24 AM	
-="CN51526"	"Licence fees - DSM & Variance Monitor Maintenance fees - DSM & Variance Monitor"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	21-Oct-07	20-Oct-08	72187.50	="TRS07/391"	="THE TRUSTEE FOR ANTZ SOFTWARE TRUST"	18-Dec-07 09:24 AM	
-="CN51527"	"Lease DSM & Variance Monitor"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	25-Jul-07	20-Oct-07	16500.00	="TRS07/392"	="THE TRUSTEE FOR ANTZ SOFTWARE TRUST"	18-Dec-07 09:24 AM	
-="CN51528"	"Recruitment services"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	17-Dec-07	27-Jun-08	72842.55	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:24 AM	
-="CN51529"	"SAP System Architect and Basis Services"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	01-Nov-07	30-Jun-08	46200.00	="TRS06/038"	="INNOGENCE"	18-Dec-07 09:24 AM	
-="CN51531"	"Review of state-type services in the IOT"	="Department of Transport and Regional Services"	18-Dec-07	="Public administration and finance services"	10-Apr-07	28-Feb-08	363000.00	="MOU07/4081"	="Commonwealth Grants Commission"	18-Dec-07 09:24 AM	
-="CN51532"	"Recruitment Services"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	03-Dec-07	29-Feb-08	20000.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:25 AM	
-="CN51533"	"Test Manager"	="Department of Transport and Regional Services"	18-Dec-07	="Management advisory services"	02-Jan-07	30-Jun-08	110000.00	="T2004/0699"	="SMS Management & Technology"	18-Dec-07 09:25 AM	
-="CN51530"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	28-Jul-07	31-Jul-07	10582.00	=""	="TOWNSVILLE INDUSTRIAL COASTING"	18-Dec-07 09:25 AM	
-="CN51534"	"Contract Staff - Yve Dougall EL1"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	79071.30	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	
-="CN51535"	"Contract Staff - Susan Yeomans APS 6"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	68618.56	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	
-="CN51536"	"APS 5 Contractor - Lauren Brown"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	59610.21	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	
-="CN51538"	"Purchase of 40kva UPS, Bypass Switch and cables."	="Defence Materiel Organisation"	18-Dec-07	="Auxiliary power unit systems APUs"	05-Oct-07	21-Dec-07	27940.00	=""	="Eaton Power Quality Pty Ltd"	18-Dec-07 09:35 AM	
-="CN51539"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	08-Aug-07	08-Oct-07	24770.20	=""	="RGM MAINTENANCE"	18-Dec-07 09:37 AM	
-="CN51537"	"Pool Vehicle Charges for November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Nov-07	30-Nov-07	19582.13	=""	="LEASEPLAN AUSTRALIA LTD"	18-Dec-07 09:38 AM	
-="CN51540"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Dec-07	16-Jan-08	11761.81	=""	="ROVER AUTRALIA"	18-Dec-07 09:41 AM	
-="CN51541"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	14-Aug-07	12-Oct-07	46378.20	=""	="MC IMPORTS PTY LTD"	18-Dec-07 09:41 AM	
-="CN51543"	"systems support officer - sydney reg."	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	17-Dec-07	14-May-08	50688.00	=""	="Talent Int."	18-Dec-07 09:43 AM	
-="CN51544"	" METER HYDROGEN ION TEST - QTY 25  NSN 66-116-2979 "	="Defence Materiel Organisation"	18-Dec-07	="Temperature humidity testers"	17-Dec-07	21-Jan-08	18150.00	=""	="BIOLAB (AUST) PTY LTD"	18-Dec-07 09:45 AM	
-="CN51545"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Dec-07	16-Jan-08	10972.50	=""	="LANDROVER"	18-Dec-07 09:46 AM	
-="CN51548"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	17-Sep-07	25-Oct-07	36083.72	=""	="MC IMPORTS PTY LTD"	18-Dec-07 09:47 AM	
-="CN51549"	"For the Provision of 360 Degree Feedback and Reports"	="Child Support Agency"	18-Dec-07	="Business administration services"	09-Nov-06	31-Jan-08	76000.00	=""	="SHL Australia Pty Ltd"	18-Dec-07 09:50 AM	
-="CN51550"	"vehicle repairs"	="Department of Defence"	18-Dec-07	="Motor vehicles"	13-Sep-07	11-Dec-07	29155.97	=""	="RGM MAINTENANCE"	18-Dec-07 10:03 AM	
-="CN51551"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	25-Oct-07	36523.72	=""	="MC IMPORTS T/A MICKS AUTOMOTIVE & MC PANEL BEATING"	18-Dec-07 10:06 AM	
-="CN51553"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	21-Dec-07	19169.15	=""	="RGM MAINTENANCE"	18-Dec-07 10:13 AM	
-="CN51554"	"SNC Staff Engagement Survey"	="Australian Taxation Office"	18-Dec-07	="Market research"	11-Dec-07	11-Jan-08	12000.00	=""	="Orima Research Pty Ltd"	18-Dec-07 10:14 AM	
-="CN51557"	"Joint Funding MOU"	="Department of the Environment and Water Resources"	18-Dec-07	="Community and social services"	11-Oct-06	30-Jun-09	123750.00	=""	="Environment Protection Authority"	18-Dec-07 10:20 AM	
-="CN51542"	"Pool Vehicle Charges for December 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Dec-07	31-Dec-07	16715.77	=""	="LEASEPLAN AUSTRALIA LTD"	18-Dec-07 10:23 AM	
-="CN51558"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	12-Sep-07	16-Nov-07	18476.70	=""	="MC IMPORTS PTY LTD"	18-Dec-07 10:23 AM	
-="CN51561"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	05-Jul-07	03-Oct-07	57728.00	=""	="MC IMPORTS"	18-Dec-07 10:27 AM	
-="CN51565-A1"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	23-Aug-07	21-Dec-07	83793.90	=""	="RGM MAINTENANCE"	18-Dec-07 10:30 AM	
-="CN51563"	"Motor Vehicle Parts."	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Dec-07	02-Jan-08	10665.20	=""	="Acme Fluid Handling"	18-Dec-07 10:31 AM	
-="CN51560"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	28-Aug-07	24-Sep-07	17948.54	=""	="CLAYTON UTZ"	18-Dec-07 10:31 AM	
-="CN51567"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	18-Dec-07	="Aircraft"	18-Dec-07	07-Jan-08	20999.29	=""	="SIKORSKY AIRCRAFT AUST LTD"	18-Dec-07 10:34 AM	
-="CN51569"	"VEHICLE REPAIRS`"	="Department of Defence"	18-Dec-07	="Motor vehicles"	27-Sep-07	21-Dec-07	19159.25	=""	="RGM MAINTENANCE"	18-Dec-07 10:36 AM	
-="CN51572"	"Motor Vehicle Parts."	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	05-Jan-08	27607.36	=""	="MILSPEC Manufacturing"	18-Dec-07 10:39 AM	
-="CN51457"	"Repair of Aircrafts Parts"	="Defence Materiel Organisation"	18-Dec-07	="Aircraft"	17-Dec-07	06-Jan-08	11068.44	=""	="SIKORSKY AIRCRAFT AUST LTD"	18-Dec-07 10:39 AM	
-="CN51573"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	25-Oct-07	39119.72	=""	="MC IMPORTS"	18-Dec-07 10:41 AM	
-="CN51574"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	29-Aug-07	27-Sep-07	20717.62	=""	="TOWNSVILLE IND. PAINT & COATING PTY LTD"	18-Dec-07 10:45 AM	
-="CN51575-A7"	" Accommodation Brokering Services  "	="Australian Taxation Office"	18-Dec-07	="Hotels and motels and inns"	04-Apr-05	03-Apr-11	24055693.00	=""	="The Trustee for the Hotel Network Unit Trust t/a The Hotel Network (GARRS)"	18-Dec-07 10:46 AM	
-="CN51571"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	25-Sep-07	25-Oct-07	16261.48	=""	="CLAYTON UTZ"	18-Dec-07 10:48 AM	
-="CN51576"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	22-Aug-07	08-Oct-07	47542.90	=""	="VOLVO COMMERCIAL VEHICLES"	18-Dec-07 10:48 AM	
-="CN51577"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	09-Nov-07	03-Dec-07	27823.68	=""	="MC IMPORTS"	18-Dec-07 10:50 AM	
-="CN51579"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	09-Nov-07	21-Nov-07	46267.45	=""	="VOLVO COMMERCIAL VEHICLES"	18-Dec-07 10:54 AM	
-="CN51578"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	22-Aug-07	28-Sep-07	10634.77	=""	="CLAYTON UTZ"	18-Dec-07 10:55 AM	
-="CN51581"	"AIRCRAFT SPARES:QTY 50::NSN 5365-01-092-7491::SHIM,COUPLING."	="Defence Materiel Organisation"	18-Dec-07	="Military rotary wing aircraft"	18-Dec-07	18-Oct-08	15543.55	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	18-Dec-07 11:09 AM	
-="CN51580"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	03-Sep-07	28-Sep-07	17411.03	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Dec-07 11:10 AM	
-="CN51583"	"SEA MARKER FLUORESCEIN"	="Defence Materiel Organisation"	18-Dec-07	="Life vests or preservers"	19-Jun-07	07-Sep-07	12650.00	=""	="PAINS WESSEX"	18-Dec-07 11:15 AM	
-="CN51584"	"Preparation of ABCC 2006/07 Annual Report - Phase 3 - Print Management."	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	21-Nov-07	21-Nov-07	14184.50	=""	="SALT CREATIVE PTY LTD"	18-Dec-07 11:18 AM	
-="CN51585"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Oct-07	31-Oct-07	16287.09	=""	="OFFICEMAX AUSTRALIA LTD"	18-Dec-07 11:27 AM	
-="CN51587"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	18-Dec-07	08-Jan-08	12986.69	=""	="MERCEDES-BENZ PTY LTD"	18-Dec-07 11:32 AM	
-="CN51586"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	01-Nov-07	06-Nov-07	12566.00	=""	="MICHAEL GREEN PTY LTD"	18-Dec-07 11:34 AM	
-="CN51588"	"Technical Support Officer"	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	02-Jan-08	31-Dec-08	187748.00	=""	="Fronteir Group Australia Pty Ltd"	18-Dec-07 11:34 AM	
-="CN51589"	" NSN 1610/00-628-6437  PURCHASE OF LOCK, FEATHER  INCL GST "	="Defence Materiel Organisation"	18-Dec-07	="Military transport aircraft"	13-Dec-07	28-Dec-07	10737.65	=""	="Milspec Services Pty Ltd"	18-Dec-07 11:35 AM	
-="CN51590"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	10-Sep-07	28-Nov-07	14576.10	=""	="NORTHERN HARD SURFACES"	18-Dec-07 11:36 AM	
-="CN51591"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	23-Oct-07	26-Oct-07	11600.00	=""	="MICHAEL GREEN PTY LTD"	18-Dec-07 11:44 AM	
-="CN51595"	"Battery Storage with square posts."	="Defence Materiel Organisation"	18-Dec-07	="Batteries and generators and kinetic power transmission"	18-Dec-07	26-Mar-08	21327.90	="RFQ G6193"	="Advanced Power (NSW) Pty Ltd"	18-Dec-07 11:44 AM	
-="CN51594"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	09-Aug-07	16412.84	=""	="R.G.M"	18-Dec-07 11:44 AM	
-="CN51599"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	04-Aug-07	09-Aug-07	16856.14	=""	="R.G.M"	18-Dec-07 11:50 AM	
-="CN51598"	"Pressure Calibrator + Moisture Trap"	="Defence Materiel Organisation"	18-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	18-Dec-08	16831.10	=""	="Biolab Australia Pty Ltd"	18-Dec-07 11:50 AM	
-="CN51600"	"Management Consultancy Services"	="Australian Electoral Commission"	18-Dec-07	="Business and corporate management consultation services"	11-Nov-07	06-Dec-07	17916.30	=""	="Tanner James"	18-Dec-07 11:51 AM	
-="CN51604"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	31-Oct-07	19453.17	=""	="MCLEODS"	18-Dec-07 11:56 AM	
-="CN51610"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	27-Jul-07	31-Oct-07	12911.25	=""	="TOWNSVILLE INDUSTRIAL COATING"	18-Dec-07 12:08 PM	
-="CN51612"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	25-May-07	27-Jul-07	10607.39	=""	="D.M.E DIESEL MOTORS ENG"	18-Dec-07 12:14 PM	
-="CN51613-A2"	"Provision of Staff Grievance and Code of Conduct investigate services for CRS Australia"	="CRS Australia"	18-Dec-07	="Management advisory services"	02-Nov-07	11-Mar-11	90333.33	=""	="Quality Management Services"	18-Dec-07 12:21 PM	
-="CN51614"	"Ratchet Turnbuckles 12 Ton & 6.5T for securing heavy loads"	="Department of Defence"	18-Dec-07	="Shackles"	13-Dec-07	04-Feb-08	24832.50	=""	="Noble & Son Ltd"	18-Dec-07 12:29 PM	
-="CN51606"	"Provision of D shackles to secure loads to Trailers,Train etc"	="Department of Defence"	18-Dec-07	="Shackles"	13-Dec-07	08-Jan-08	12364.99	=""	="BULLIVANTS PTY LTD"	18-Dec-07 12:37 PM	
-="CN51615"	"HELMETS MOTORCYCLE REQUIRED FOR COURSES"	="Department of Defence"	18-Dec-07	="Motorcycle helmets"	23-Oct-07	30-Oct-07	16500.00	=""	="PRECISION HONDA"	18-Dec-07 12:44 PM	
-="CN51616"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	25-May-07	30-Jul-07	11079.00	=""	="D.M.E DIESEL MOTORS ENG"	18-Dec-07 12:50 PM	
-="CN51617"	"Transmitter, Liquid Quantity NSN: 6680-00-767-1635 Qty 250"	="Defence Materiel Organisation"	18-Dec-07	="Armoured fighting vehicles"	18-Dec-07	08-Feb-10	11000.00	=""	="A&D International Pty Ltd"	18-Dec-07 01:02 PM	
-="CN51618"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	27-Apr-07	10-Oct-07	16316.42	=""	="FLEET FUEL & ENGINEERING"	18-Dec-07 01:06 PM	
-="CN51619"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	28-May-07	12-Oct-07	15664.54	=""	="HITACHI"	18-Dec-07 01:10 PM	
-="CN51620-A3"	"Provision of Web Developement Services"	="CRS Australia"	18-Dec-07	="Computer programmers"	02-Jan-08	30-Jun-09	255622.14	=""	="Exclaim IT Pty Ltd"	18-Dec-07 01:11 PM	
-="CN51621"	"AIRCRAFT SPARES::QTY-1000 Ft::NSN 6145-66-131-1819::WIRE, ELECTRICAL."	="Defence Materiel Organisation"	18-Dec-07	="Military rotary wing aircraft"	18-Dec-07	30-Dec-07	10230.00	=""	="MILSPEC SERVICES"	18-Dec-07 01:16 PM	
-="CN51623"	" IT Security Services  "	="Department of the Prime Minister and Cabinet"	18-Dec-07	="Computer or network or internet security"	01-Jul-07	30-Jun-08	60000.00	=""	="Oakton AA Services Pty Lmited"	18-Dec-07 01:43 PM	
-="CN51625"	"vehicle repairs"	="Department of Defence"	18-Dec-07	="Motor vehicles"	12-Dec-07	21-Dec-07	16670.81	=""	="HITACHI"	18-Dec-07 02:24 PM	
-="CN51627"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	04-Oct-07	21-Dec-07	15719.93	=""	="RGM MAINTENANCE"	18-Dec-07 02:46 PM	
-="CN51628"	"Med Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	21-Dec-07	42032.46	=""	="Johnson & Johnson Medical"	18-Dec-07 02:51 PM	
-="CN51629"	"Upgrade the Handrails at Questacon Parkes Facility"	="Questacon"	18-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Nov-07	31-Mar-08	102890.00	=""	="ACT Stainless Steel and Catering Equipment"	18-Dec-07 02:57 PM	
-="CN51631"	"Med Consumables For ADF "	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	11-Jan-08	14617.13	=""	="Vasyli Australia Pty Ltd"	18-Dec-07 02:57 PM	
-="CN51633"	" Provide design and tender documentation for lighting and media systems at Questacon  "	="Questacon"	18-Dec-07	="Technical diagrams or drawings"	02-Nov-07	30-Jun-08	34848.00	=""	="Mitech Design"	18-Dec-07 03:03 PM	
-="CN51632"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	21-Jan-08	18617.50	=""	="LMA pacmed Pty Ltd"	18-Dec-07 03:03 PM	
-="CN51634"	"Medical Consumables For ADF "	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	11-Jan-08	18040.00	=""	="Midmed Pty Ltd"	18-Dec-07 03:07 PM	
-="CN51636"	"Audio Design Services for Questacon Parkes Facility"	="Questacon"	18-Dec-07	="Audio and visual equipment"	02-Nov-07	30-Jun-08	20064.00	=""	="Auditoria"	18-Dec-07 03:13 PM	
-="CN51637-A1"	"Airfares"	="Defence Materiel Organisation"	18-Dec-07	="Passenger transport"	07-Sep-07	07-Sep-07	13018.85	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	
-="CN51638-A1"	"Airfares"	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	02-Oct-07	02-Oct-07	12602.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	
-="CN51639"	"MRH90 PMR Bris, AWB with AAvnTC, DACI, 16 BDE"	="Defence Materiel Organisation"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	11-Nov-07	11-Nov-07	12711.88	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	
-="CN51640"	"Attending and evaluating Project JP2044 Critical Design Review."	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	16-Nov-07	19-Nov-07	11016.19	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	
-="CN51641"	"Attending and evaluating Project JP2044 Critical Design Review."	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	16-Nov-07	19-Nov-07	11016.19	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	
-="CN51642"	"REGO # 048/08REDSIM (DIS) SOFTWARE FOR PHASE 5"	="Defence Materiel Organisation"	18-Dec-07	="Surveillance and detection equipment"	28-Nov-07	28-Nov-07	11473.59	=""	="ADVANCED SIMULATION TECHN"	18-Dec-07 03:20 PM	
-="CN51635"	"Merdical Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	25-Dec-07	15213.60	=""	="B. Braun Australia Pty Ltd"	18-Dec-07 03:22 PM	
-="CN51646"	"Design Facilitation for Super Simplification Project"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	140000.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	18-Dec-07 03:59 PM	
-="CN51647-A3"	"Design Facilitation - Integrated Design Solution & new policy design"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Nov-08	203200.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	18-Dec-07 04:07 PM	
-="CN51648"	"Information design - Income Tax Expansion Program"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	12-Jan-08	30000.00	="05.164"	="Capgemini Australia Pty Ltd"	18-Dec-07 04:14 PM	
-="CN51649"	"Printing of NAT12053 & NAT12054  - 3,000 each"	="Australian Taxation Office"	18-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Dec-07	22-Jan-08	14395.70	="06.030"	="Paragon Printers"	18-Dec-07 04:21 PM	
-="CN51650"	"Tracking/Audio Device"	="Australian Crime Commission"	18-Dec-07	="Surveillance and detection equipment"	05-Dec-07	24-Dec-07	77649.00	=""	="Geonautics International"	18-Dec-07 04:24 PM	
-="CN51651"	"photocopier charges"	="Australian Crime Commission"	18-Dec-07	="Photocopiers"	01-Aug-07	30-Jun-08	18100.00	=""	="Fuji Xerox Australia Pty Ltd"	18-Dec-07 04:29 PM	
-="CN51652"	" Airfares "	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Aug-07	07-Aug-07	10031.94	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	
-="CN51653"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Aug-07	07-Aug-07	10031.94	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	
-="CN51654"	"EX PLANNING"	="Department of Defence"	18-Dec-07	="Passenger transport"	14-Aug-07	14-Aug-07	10508.50	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	
-="CN51655"	"CDSS ANZST 2007 - Accommodation Melbourne"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	10-Sep-07	10-Sep-07	15000.00	=""	="STAMFORD PLAZA MELBOURNE"	18-Dec-07 04:36 PM	
-="CN51656"	"CDSS ANZST 2007 - Accommodation Melbourne"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	10-Sep-07	10-Sep-07	12053.87	=""	="STAMFORD PLAZA MELBOURNE"	18-Dec-07 04:36 PM	
-="CN51658"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	18-Sep-07	18-Sep-07	10582.38	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	
-="CN51659"	"CDSS ANZST 2007 - Accommodation New Zealand"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	24-Sep-07	24-Sep-07	21655.72	=""	="HOTEL INTER-CONTINENTAL WGTN,WE"	18-Dec-07 04:37 PM	
-="CN51660"	"Overseas air fare - incorrectly charged"	="Department of Defence"	18-Dec-07	="Travel facilitation"	09-Oct-07	09-Oct-07	17554.61	=""	="DEBIT PREVIOUS REF:00443710"	18-Dec-07 04:37 PM	
-="CN51657"	"Operating costs lease plan vehicles"	="Australian Crime Commission"	18-Dec-07	="Motor vehicles"	01-Dec-07	31-Dec-07	12641.07	=""	="Leaseplan"	18-Dec-07 04:37 PM	
-="CN51661"	"Air fares Canberra-St Petersburg-Vienna-Canberra"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10598.84	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	
-="CN51662"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	28153.29	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	
-="CN51663"	"Airfares"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	16-Oct-07	16-Oct-07	10610.26	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	
-="CN51664"	"Ian Sare 19 Oct - 1 Nov 2007 USA - AIRFARES"	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	16576.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	
-="CN51665"	"Airfares"	="Department of Defence"	18-Dec-07	="Travel facilitation"	19-Oct-07	19-Oct-07	10012.63	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51666"	"Simon Clarkson, DCA Trip to OP PALADIN, Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	12592.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51667"	"Attend TTCP KTA 8.1 and 8.2 mmetings + site visits to Farnbourgh UK and Dayton US for collaboration meetings and updates."	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	10987.68	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51668"	"PRN: LCT 07/08-074 - MAJGEN Mark KellyVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51669"	"PRN: LCT 07/08-076 - WO1 Stephen WardVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51670"	"International airfares"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	02-Nov-07	11259.09	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51671"	"PRN: LCT 07/08-075 - LTCOL Michael MahyVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51672"	"20-07/08 MEAO"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	06-Nov-07	06-Nov-07	13423.09	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51673"	"CAF MEAO Visit"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	14-Nov-07	10516.40	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51674"	"Qantas Travel to Hawaii for Trilat Agreement Meeting"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Nov-07	07-Nov-07	10419.18	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	
-="CN51675"	"Meetings in US/UK"	="Department of Defence"	18-Dec-07	="Passenger transport"	13-Nov-07	13-Nov-07	12858.00	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	
-="CN51676"	"EX VITAL LAUNCH 08 (11-16 NOV 07) - FISHER - GROUP ACCOMMODATION"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	16-Nov-07	10375.00	=""	="METRO INN TOWER MILL"	18-Dec-07 04:39 PM	
-="CN51677"	"Simon Clarkson, AIJAC Trip Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	13-Nov-07	13-Nov-07	11808.12	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	
-="CN51678"	"Attend CT Training Conferences/Meetings - ACMS-1320891"	="Department of Defence"	18-Dec-07	="Travel facilitation"	14-Nov-07	14-Nov-07	12779.49	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	
-="CN51679"	"Attend CT Training Conferences/Meetings - ACMS-1320891"	="Department of Defence"	18-Dec-07	="Travel facilitation"	20-Nov-07	20-Nov-07	12858.20	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	
-="CN51680"	"airfares Cbr-Russia rtn"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	21-Nov-07	21-Nov-07	10826.80	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	
-="CN51681"	"ARH Tiger Trial - Task E2845"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	29-Nov-07	29-Nov-07	12057.14	=""	="EUREST NO 1"	18-Dec-07 04:39 PM	
-="CN51682"	"FPC PR07"	="Department of Defence"	18-Dec-07	="International relations"	11-Sep-07	11-Sep-07	13646.54	=""	="HILTON HOTELS"	18-Dec-07 04:39 PM	
-="CN51683"	"Accommodation - Op Deluge"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	13-Sep-07	14-Sep-07	13681.80	=""	="WALDORF APARTMNT HOTE"	18-Dec-07 04:39 PM	
-="CN51684"	"Training Pool Kit"	="Department of Defence"	18-Dec-07	="Refuse disposal and treatment"	21-Sep-07	21-Sep-07	18695.82	=""	="ABOVE GROUND POOL SALE"	18-Dec-07 04:40 PM	
-="CN51685"	"CONVERSION TRG - CAPT WHEELER"	="Department of Defence"	18-Dec-07	="Aircraft"	25-Sep-07	01-Nov-07	11597.38	=""	="AIR GOLD COAST PL"	18-Dec-07 04:40 PM	
-="CN51686"	"Provide professional development training for DPIM and DCORRD staff 12-14 Nov 07"	="Department of Defence"	18-Dec-07	="Education and Training Services"	11-Oct-07	14-Nov-07	11022.00	=""	="ARKGROUPAUSTRALIA"	18-Dec-07 04:40 PM	
-="CN51687"	"Purchase of Audio Visual equipment for welfare amenities"	="Department of Defence"	18-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Oct-07	10-Oct-07	12918.43	=""	="VIRGIN"	18-Dec-07 04:40 PM	
-="CN51688"	"Outdoor Furniture"	="Department of Defence"	18-Dec-07	="Furniture and Furnishings"	10-Oct-07	10-Oct-07	12083.44	=""	="EXPEDITION TRADING & SERV"	18-Dec-07 04:40 PM	
-="CN51689"	"Funeral"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	10359.10	=""	="TOBIN BROTHERS 347"	18-Dec-07 04:40 PM	
-="CN51690"	"PRODUCTION PRINT LWP-G 0-1-7 x 4,300 COPIES.  AS PER PRESS HERE QUOTE:  6,292 DATED 04/07/07.  TRACKING NUMBER:  DPS07/087 - DPC 3209"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	25-Oct-07	21941.70	=""	="Press Here Pty Ltd"	18-Dec-07 04:40 PM	
-="CN51691"	"Paint Course - Barrier Reef TAFE"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	26-Oct-07	16500.00	=""	="BARRIER REEF INSTITU"	18-Dec-07 04:40 PM	
-="CN51692"	"GATEWAY CHARGES"	="Department of Defence"	18-Dec-07	="Telecommunications media services"	24-Oct-07	24-Oct-07	10870.64	=""	="SECURENET LTD"	18-Dec-07 04:40 PM	
-="CN51693"	"AVTUR FUEL FOR AP-3C"	="Department of Defence"	18-Dec-07	="Fuels"	19-Oct-07	19-Oct-07	45988.48	=""	="MINAMI AIRPORT SERVICE"	18-Dec-07 04:41 PM	
-="CN51694"	"New Delhi - The Park Hotel - Accommodation"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	28-Oct-07	28-Oct-07	13005.92	=""	="PARK HOTEL"	18-Dec-07 04:41 PM	
-="CN51695"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	28-Oct-07	30-Oct-07	86246.39	=""	="MADANG RESORT HOTEL"	18-Dec-07 04:41 PM	
-="CN51696"	"CERT IV IN TRAINING AND ASSESSMENT COURSE - CONDUCTED AT TOWNSVILLE 29 Oct - 2 Nov 07."	="Department of Defence"	18-Dec-07	="Education and Training Services"	30-Oct-07	30-Oct-07	14550.00	=""	="PROSKILLS"	18-Dec-07 04:41 PM	
-="CN51697"	"Accommodation Bangkok"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	29-Oct-07	29-Oct-07	18738.68	=""	="DUSIT THANI HOTEL"	18-Dec-07 04:41 PM	
-="CN51698"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	23-Oct-07	30-Oct-07	39826.90	=""	="MADANG RESORT HOTEL"	18-Dec-07 04:41 PM	
-="CN51699"	"Conference"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	02-Nov-07	02-Nov-07	10103.00	=""	="BELLINZONA GRANGE"	18-Dec-07 04:41 PM	
-="CN51700"	"26/11/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Healthcare Services"	02-Nov-07	02-Nov-07	15802.17	=""	="BRISBANE NTH PODIATRY P/L"	18-Dec-07 04:41 PM	
-="CN51701"	"Visit to Australia by LTGEN Robert Bertholee VCDF Netherlands19 - 26 August 2007 Guest of LTGEN Gillespie"	="Department of Defence"	18-Dec-07	="Transport operations"	31-Oct-07	31-Oct-07	11864.07	=""	="SECURITY TRANSPORT S"	18-Dec-07 04:41 PM	
-="CN51702"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	31-Oct-07	31-Oct-07	11757.02	=""	="HOLIDAY INN PORT MORESBY"	18-Dec-07 04:41 PM	
-="CN51703"	"22/11/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	01-Nov-07	01-Nov-07	10144.00	=""	="QLD FERTILITY GROUP PT"	18-Dec-07 04:42 PM	
-="CN51704"	"PAYMENT FOR THE MONTH OF SEPTEMBER BY CPL DAVE WEEKLEY"	="Department of Defence"	18-Dec-07	="Aircraft equipment"	02-Nov-07	02-Nov-07	12161.68	=""	="J BLACKWOOD & SON LTD"	18-Dec-07 04:42 PM	
-="CN51705"	"Goods"	="Department of Defence"	18-Dec-07	="Food and Beverage Products"	05-Nov-07	05-Nov-07	40865.53	=""	="RICHARD FADER PTY LTD"	18-Dec-07 04:42 PM	
-="CN51706"	"Goods"	="Department of Defence"	18-Dec-07	="Food and Beverage Products"	05-Nov-07	05-Nov-07	33343.09	=""	="RICHARD FADER PTY LTD"	18-Dec-07 04:42 PM	
-="CN51707"	"PAYMENT OF ACCOMMODATION FOR CTF158 STAFF AT THE RADISSON"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	06-Nov-07	06-Nov-07	25854.25	=""	="THE DIPLOMAT RADISSON"	18-Dec-07 04:42 PM	
-="CN51708"	"Medical / Dental Services"	="Department of Defence"	18-Dec-07	="Comprehensive health services"	09-Nov-07	09-Nov-07	12344.12	=""	="OPSM 8921"	18-Dec-07 04:42 PM	
-="CN51709"	"JLG Conference October 2007"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	09-Nov-07	09-Nov-07	19193.80	=""	="Aitken Hill Conference"	18-Dec-07 04:42 PM	
-="CN51710"	"Accommodation ARES CM LOPS component"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	08-Nov-07	09-Nov-07	39820.00	=""	="PINNACLE APARTMENTS"	18-Dec-07 04:42 PM	
-="CN51711"	"Provision of Group Accommodation and Facilities Hire (3 Aircraft + 50mbrs). 723 SQN Mountain Flying Exercise."	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	12-Nov-07	12-Nov-07	11179.45	=""	="NSW DEPT SPRT&REC FIN"	18-Dec-07 04:42 PM	
-="CN51712"	"Accommodation - LIMA 07"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	12-Nov-07	12-Nov-07	13168.30	=""	="MSL TRAVEL-EDC/PENANG"	18-Dec-07 04:43 PM	
-="CN51713"	"03/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	14-Nov-07	14-Nov-07	13845.19	=""	="OPSM 8921"	18-Dec-07 04:43 PM	
-="CN51714"	"Pre payment for hire of Hemisphere premises for GPSL Residential conference held 19-23 Nov 2007"	="Department of Defence"	18-Dec-07	="Business and corporate management consultation services"	13-Nov-07	13-Nov-07	17000.00	=""	="HOLMESGLEN INSTITUTE"	18-Dec-07 04:43 PM	
-="CN51715"	"CONVERSION TRG - CAPT WHEELER"	="Department of Defence"	18-Dec-07	="Aircraft"	15-Nov-07	22-Nov-07	14323.32	=""	="AIR GOLD COAST PL"	18-Dec-07 04:43 PM	
-="CN51716"	"airfare cost for 133 ACU - CIA."	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	14-Nov-07	19-Nov-07	13193.26	=""	="HARVEY WORLD TRAVEL"	18-Dec-07 04:43 PM	
-="CN51717"	"Accomodation - CHINA ICT - Sept/Oct 07"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	15-Nov-07	15-Nov-07	15152.55	=""	="KUNTAI ROYAL HOTEL BEIJIN"	18-Dec-07 04:43 PM	
-="CN51720"	"ETD-SC Sydney Transition Seminar 20-22 Nov 07"	="Department of Defence"	18-Dec-07	="Educational facilities"	19-Nov-07	19-Nov-07	11770.00	=""	="POWERHOUSE PNP"	18-Dec-07 04:43 PM	
-="CN51718"	"Contract Labour Hire"	="Department of the Prime Minister and Cabinet"	18-Dec-07	="Application programming services"	01-Sep-07	31-Jan-08	79200.00	=""	="PAXUS Australia Pty Ltd"	18-Dec-07 04:44 PM	
-="CN51721"	"National Conference 18-19 Nov Melb - Conference package including acc, meals and facility hire for 32"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	19-Nov-07	13824.50	=""	="AIRPORT MOTEL RECEPTI"	18-Dec-07 04:44 PM	
-="CN51722"	"I/ITSEC 2007 - Booth Hire"	="Department of Defence"	18-Dec-07	="Office Equipment and Accessories and Supplies"	20-Nov-07	20-Nov-07	22899.08	=""	="BREDE ALLIED CONVENTION"	18-Dec-07 04:44 PM	
-="CN51723"	"Monthly bill for Office max"	="Department of Defence"	18-Dec-07	="Office supplies"	21-Nov-07	21-Nov-07	12149.14	=""	="NATIONAL OFFICE PRODUC"	18-Dec-07 04:44 PM	
-="CN51724"	"Purchase"	="Department of Defence"	18-Dec-07	="Office machines and their supplies and accessories"	23-Nov-07	23-Nov-07	11220.00	=""	="GBC FORDIGRAPH PTY LTD"	18-Dec-07 04:44 PM	
-="CN51725"	"Accommodation for LSE during Muscat PVST"	="Department of Defence"	18-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	22-Nov-07	22-Nov-07	14344.87	=""	="SHANGRI-LA"	18-Dec-07 04:44 PM	
-="CN51726"	"Accommodation - Langkawi international maritime airshow 2007"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	26-Nov-07	26-Nov-07	12343.79	=""	="MSL TRAVEL-EDC/PENANG"	18-Dec-07 04:44 PM	
-="CN51727"	"Invoice:13972  Helicopter Flying time to su[pport environ monitoring BFTA on: 29Oct, 30Oct, 31Oct, 01Nov & 02Nov07"	="Department of Defence"	18-Dec-07	="Air transportation support systems and equipment"	28-Nov-07	28-Nov-07	17096.20	=""	="JAYROW HELICOPTERS"	18-Dec-07 04:44 PM	
-="CN51728"	"06/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	23000.00	=""	="DAVID THOMSON"	18-Dec-07 04:44 PM	
-="CN51729"	"06/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	16872.90	=""	="BRISBANE NTH PODIATRY P/L"	18-Dec-07 04:44 PM	
-="CN51730"	"MSA Bandicoot accommodation"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	28-Nov-07	29-Nov-07	10000.00	=""	="JERVIS BAY DOLPHIN SHO"	18-Dec-07 04:44 PM	
-="CN51731"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	10145.00	=""	="DR TUAN VAN PHAM"	18-Dec-07 04:45 PM	
-="CN51732"	"Professional scribing APS4 positions 19 Nov 07"	="Department of Defence"	18-Dec-07	="Writing and translations"	30-Nov-07	30-Nov-07	11789.78	=""	="EFFECTIVE PEOPLE"	18-Dec-07 04:45 PM	
-="CN51733"	"05/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	11541.24	=""	="ST ANDREWS HOSPITAL"	18-Dec-07 04:45 PM	
-="CN51734"	"NCC 199 - NAVY SYMPOSIUM PRESENTATION ITEMS"	="Department of Defence"	18-Dec-07	="Marketing and distribution"	30-Nov-07	10-Dec-07	13061.01	=""	="SALT SHOP"	18-Dec-07 04:45 PM	
-="CN51735"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	12190.95	=""	="ST JOHN OF GOD HOSPIT"	18-Dec-07 04:45 PM	
-="CN51736"	"Visit to Australia by GEN SIr Timothy Granville-ChapmanVice Chief of the Defence Staff United Kingdom 29 Oct to 7 Nov 07"	="Department of Defence"	18-Dec-07	="Travel facilitation"	29-Nov-07	29-Nov-07	12327.44	=""	="SECURITY TRANSPORT S"	18-Dec-07 04:45 PM	
-="CN51737"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	20440.10	=""	="ST JOHN OF GOD SU"	18-Dec-07 04:45 PM	
-="CN51738"	"TR102/07-08 OP PNG ASSIST"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	05-Dec-07	05-Dec-07	16860.42	=""	="TUFI DIVE RESORT"	18-Dec-07 04:45 PM	
-="CN51740"	"TR102/07-08 OP PNG ASSIST"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	10-Dec-07	10-Dec-07	33214.68	=""	="TUFI DIVE RESORT"	18-Dec-07 04:46 PM	
-="CN51741"	"ALAN PATCHING FOR HNA DELIVERY RETREAT 19-21 NOV 07"	="Department of Defence"	18-Dec-07	="Vocational training"	13-Nov-07	21-Nov-07	15530.67	=""	="Saxton Management Grp"	18-Dec-07 04:46 PM	
-="CN51742"	"14/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	12-Dec-07	12-Dec-07	14589.00	=""	="ST ANDREWS HOSPITAL"	18-Dec-07 04:46 PM	
-="CN51743"	"Provision of internal audit services"	="Australian Crime Commission"	18-Dec-07	="Audit services"	01-Jul-07	30-Jun-08	80000.00	=""	="Deloitte Touche Tohmatsu"	18-Dec-07 04:50 PM	
-="CN51744"	" AIRCRAFT SPARES  NSN 5340-01-417-1082  CLAMP, LOOP  QTY 50 "	="Defence Materiel Organisation"	18-Dec-07	="Military transport helicopters"	18-Dec-07	10-Jun-08	12980.00	=""	="ASIA PACIFIC AEROSPACE"	18-Dec-07 04:50 PM	
-="CN51745"	" Legal services "	="Australian Crime Commission"	18-Dec-07	="Legal services"	10-Dec-07	24-Dec-07	11000.00	=""	="Blake Dawson Waldron"	18-Dec-07 04:54 PM	
-="CN51746"	"URN, MULTIPOT PLASTIC 22L"	="Defence Materiel Organisation"	18-Dec-07	="Liquid containers"	17-Dec-07	15-Mar-08	84960.00	="J7785"	="COMCATER INTERNATIONAL PTY LTD"	18-Dec-07 04:55 PM	
-="CN51747"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1545 against standing offer PN7785"	="Defence Materiel Organisation"	18-Dec-07	="Aerospace systems and components and equipment"	18-Dec-07	31-Jan-08	16099.94	=""	="Goodrich Control Systems PTY LTD"	18-Dec-07 05:05 PM	
-="CN51748"	" PROCUREMENT OF AIRCRAFT SPARES "	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	01-Apr-09	135685.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:51 AM	
-="CN51749"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	08-Jan-08	13006.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:56 AM	
-="CN51750"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	02-Mar-09	69264.23	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:59 AM	
-="CN51751"	"Indicator, Pressure Digital"	="Defence Materiel Organisation"	19-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	19-Jan-09	26358.20	=""	="Fluke Australia"	19-Dec-07 08:02 AM	
-="CN51752"	"Applications Development"	="Family Court of Australia"	19-Dec-07	="Temporary technician staffing needs"	30-Jan-08	27-Jun-08	105600.00	=""	="Finite IT Recruitment Solutions"	19-Dec-07 09:18 AM	
-="CN51753"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	19-Dec-07	="Motor vehicles"	13-Dec-07	03-Jan-08	11279.31	=""	="PREMIER AUTOMOTIVE GROUP"	19-Dec-07 09:43 AM	
-="CN51754"	" Publications "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Publication printing"	17-Dec-07	16-Dec-10	392080.00	=""	="CORETEX PTY LTD"	19-Dec-07 09:53 AM	
-="CN51756"	"FOR THE PURCHASE OF QTY 1 DMC787 REPAIR SET CONNECTOR REQUIRED FOR CHINOOK HELICOPTER EXTENDED DEPLOYMENT TO AFGHANISTAN."	="Defence Materiel Organisation"	19-Dec-07	="Military rotary wing aircraft"	19-Dec-07	26-Mar-08	15345.00	=""	="CRIMP TECH AUSTRALIA PTY LTD"	19-Dec-07 09:58 AM	
-="CN51757"	" Adoption study "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Adoption services"	11-Dec-07	31-Jul-08	15076.00	=""	="CSIRO Plant Industry"	19-Dec-07 10:00 AM	
-="CN51759"	" SUPPLY OF ANESTHESIA APPARATUS, GAS "	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	30-Dec-07	10709.50	=""	="ADD-TECH MEDICAL PTY LTD"	19-Dec-07 10:46 AM	
-="CN51760-A1"	"Provision of Office Fitout"	="CRS Australia"	19-Dec-07	="Renovation of buildings or landmarks or monuments"	30-Oct-07	21-Dec-07	72307.19	=""	="Partek Industries Pty Ltd"	19-Dec-07 10:48 AM	
-="CN51763"	"Yearly contract for period 22/11/07 to"	="National Archives of Australia"	19-Dec-07	="Computer hardware maintenance or support"	06-Dec-07	21-Nov-08	14852.42	=""	="Computers Now Pty Ltd"	19-Dec-07 10:49 AM	
-="CN51764"	"Creation, distribution and analysis"	="National Archives of Australia"	19-Dec-07	="Business and corporate management consultation services"	06-Dec-07	30-Jun-08	31350.00	=""	="TNS Social Research"	19-Dec-07 10:49 AM	
-="CN51765"	"Employee Assistance Program"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	06-Dec-07	30-Sep-08	15400.00	=""	="IPS Worldwide"	19-Dec-07 10:49 AM	
-="CN51766"	"Repairs to Chiller"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	06-Dec-07	31-Mar-08	17544.07	=""	="Multiplex Facilities Management"	19-Dec-07 10:49 AM	
-="CN51767"	"Supply of Training Modules"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	10-Dec-07	14-Dec-07	10515.70	=""	="Upton Martin Consulting"	19-Dec-07 10:49 AM	
-="CN51761"	" AIRCRAFT SPARES  NSN: 1560-01-368-5239  FITTING STRUCTURAL COMPONENT  QTY: 7 "	="Defence Materiel Organisation"	19-Dec-07	="Military transport helicopters"	19-Dec-07	13-Mar-08	42720.51	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	19-Dec-07 10:50 AM	
-="CN51768"	"Supply of Isothermal Humidifiers"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	30129.00	=""	="Multiplex Facilities Management"	19-Dec-07 10:50 AM	
-="CN51769"	"Supply of training modules"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	18-Dec-07	24-Dec-07	10464.81	=""	="Upton Martin Consulting"	19-Dec-07 10:50 AM	
-="CN51770"	"Emergency repair and replace Mains Isolator"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	30-Jun-08	13546.50	=""	="HADEN ENGINEERING PTY LTD"	19-Dec-07 10:50 AM	
-="CN51771"	"Supply of Tape Library and Software"	="National Archives of Australia"	19-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	03-Dec-07	30043.02	=""	="CORPORATE EXPRESS"	19-Dec-07 10:50 AM	
-="CN51772"	"Supply of Computer Storage Unit and Switch"	="National Archives of Australia"	19-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	17-Dec-07	29224.38	=""	="Apple Centre Mac1"	19-Dec-07 10:50 AM	
-="CN51773"	"Contractor for Management position"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	27-Nov-07	31-Dec-07	27500.00	=""	="PROFESSIONAL CAREERS AUST (ACT)"	19-Dec-07 10:50 AM	
-="CN51774"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	26000.00	=""	="Drake Australia Pty  Ltd"	19-Dec-07 10:50 AM	
-="CN51775"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	49500.00	=""	="Vedior Asia Pacific Pty Ltd"	19-Dec-07 10:50 AM	
-="CN51776"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	31-Dec-07	39500.00	=""	="SMALLS RECRUITING"	19-Dec-07 10:50 AM	
-="CN51777"	"Placement fee"	="National Archives of Australia"	19-Dec-07	="Personnel recruitment"	30-Nov-07	17-Dec-07	11128.70	=""	="PROFESSIONAL CAREERS AUST (ACT)"	19-Dec-07 10:50 AM	
-="CN51780"	" Impact assessment "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78350.00	=""	="Centre for International Economics"	19-Dec-07 10:54 AM	
-="CN51782"	"Adoption study"	="Australian Centre for International Agricultural Research"	19-Dec-07	="Adoption services"	18-Dec-07	11-Apr-08	13140.00	=""	="Christoe Consulting"	19-Dec-07 11:03 AM	
-="CN51779"	" Impact assessment "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78350.00	=""	="Centre for International Economics"	19-Dec-07 11:07 AM	
-="CN51783-A2"	" Software Licenses and support "	="Australian Taxation Office"	19-Dec-07	="Software"	01-Jan-08	30-Jun-10	453312.75	=""	="IBM Australia Ltd"	19-Dec-07 11:14 AM	
-="CN51784"	"Asset,"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jul-07	20-Jul-07	14817.50	=""	="ROJONE PTY LTD"	19-Dec-07 11:19 AM	
-="CN51785"	"IT Equip"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jun-07	20-Jun-07	18691.20	=""	="SYMTEC COMPUTER"	19-Dec-07 11:19 AM	
-="CN51786"	"Training"	="Defence Materiel Organisation"	19-Dec-07	="Education and Training Services"	20-Aug-07	20-Aug-07	10825.00	=""	="FORSYTHES COMP"	19-Dec-07 11:19 AM	
-="CN51787"	"Conference"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	14-Jun-07	10720.00	=""	="EVENTCORP PTY LTD"	19-Dec-07 11:19 AM	
-="CN51788"	"Asset"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	13-Jul-07	13-Jul-07	10864.80	=""	="ROJONE PTY LTD"	19-Dec-07 11:19 AM	
-="CN51789"	"DIESEL FUEL CARD"	="Defence Materiel Organisation"	19-Dec-07	="Lubricants and oils and greases and anti corrosives"	30-Aug-07	30-Aug-07	20000.00	=""	="ESS GEBIE 0001 ACCOMO"	19-Dec-07 11:20 AM	
-="CN51790"	"Final payment for hire of venue, catering etc for Melb Reg Briefing"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Sep-07	14-Sep-07	16844.47	=""	="MEL CONV/EXHIB TST"	19-Dec-07 11:20 AM	
-="CN51791"	"RF AMPLIFIER x QTY 4 ea"	="Defence Materiel Organisation"	19-Dec-07	="Electronic hardware and component parts and accessories"	25-Sep-07	25-Sep-07	20103.60	=""	="J A SEVERN PTY LTD"	19-Dec-07 11:20 AM	
-="CN51792"	"Goods"	="Defence Materiel Organisation"	19-Dec-07	="Industrial Manufacturing and Processing Machinery and Accessories"	10-Oct-07	10-Oct-07	13293.50	=""	="GET PACKED PTY LTD"	19-Dec-07 11:20 AM	
-="CN51808"	"Development of Monitoring and Reporting Strategy"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	19-May-05	31-Jan-09	131363.35	=""	="EnergyConsult Pty Ltd"	19-Dec-07 11:50 AM	
-="CN51811"	"Risk Assessment Services for all Community Water Grants Projects"	="Department of the Environment and Water Resources"	19-Dec-07	="Public administration and finance services"	01-May-06	24-Aug-07	622147.00	=""	="GHD Pty Ltd"	19-Dec-07 11:53 AM	
-="CN51812"	"Replacement of E2 spar buoy in Port Hedland, WA"	="Australian Maritime Safety Authority"	19-Dec-07	="Marine navigational or communication services"	26-Oct-07	30-Jun-08	851265.00	="836/37445"	="Australian Maritime Systems Limited"	19-Dec-07 11:53 AM	
-="CN51813"	"Temporary Staff"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	11-May-06	22-Sep-06	64411.10	=""	="Atech Group Pty Ltd"	19-Dec-07 11:55 AM	
-="CN51814"	"Australian Coal Forecast and Resources Estimation"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	26-May-06	11-Aug-06	50050.00	=""	="Barlow Jonker Pty Ltd"	19-Dec-07 11:59 AM	
-="CN51817"	"Secretariat Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jun-06	10-Jun-06	131261.48	=""	="Wyld Group Pty Ltd"	19-Dec-07 12:01 PM	
-="CN51819"	"Development of Peak Loas Forecast Model"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jun-06	27-Jun-06	57780.18	=""	="Energy Efficient Strategies"	19-Dec-07 12:03 PM	
-="CN51821"	"Artwork and Typesetting for Publications"	="Department of the Environment and Water Resources"	19-Dec-07	="Printed publications"	09-Jun-06	30-Jan-07	48080.78	=""	="Trustee for Roar Momentun Unit Trust"	19-Dec-07 12:06 PM	
-="CN51823"	"Lease Vehicles for ACT and WA Indigenous Land"	="Department of the Environment and Water Resources"	19-Dec-07	="Motor vehicles"	10-Jul-06	22-Jun-07	90906.45	=""	="ComCar Australia"	19-Dec-07 12:25 PM	
-="CN51824"	"Cleaning Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Cleaning and janitorial services"	21-Aug-06	30-Jun-07	60467.82	=""	="Sterling Property Services Pty Ltd"	19-Dec-07 12:28 PM	
-="CN51826"	"National Pollutant Inventory"	="Department of the Environment and Water Resources"	19-Dec-07	="Community and social services"	15-Feb-07	28-Feb-07	312124.67	=""	="Department of Environment and Conservation"	19-Dec-07 12:31 PM	
-="CN51825-A1"	"Typesetting of Family Matters #77"	="Australian Institute of Family Studies"	19-Dec-07	="Layout or graphics editing services"	04-Dec-07	04-Dec-07	15721.54	=""	="Double Jay Graphic Design"	19-Dec-07 12:31 PM	
-="CN51827"	"Rent-Darwin Hanger"	="Department of the Environment and Water Resources"	19-Dec-07	="Lease and rental of property or building"	13-Mar-07	29-Jun-07	81002.46	=""	="United Group Services"	19-Dec-07 12:34 PM	
-="CN51828"	"South West Regional Profile CD ROM"	="Department of the Environment and Water Resources"	19-Dec-07	="Sales and marketing software"	15-Mar-07	31-Aug-07	57808.58	=""	="ImaginOcean Productions"	19-Dec-07 12:44 PM	
-="CN51829"	"Conference package: LSAC Conference"	="Australian Institute of Family Studies"	19-Dec-07	="Conference centres"	03-Dec-07	04-Dec-07	26344.34	=""	="Oaks on Collins"	19-Dec-07 12:46 PM	
-="CN51830"	"Plan Concept Testing"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	11-May-07	30-Aug-07	113850.00	=""	="Taylor Nelson Sofres Australia Pty"	19-Dec-07 12:46 PM	
-="CN51831"	"Provision of Professional Services to Governance Unit"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-May-07	28-Sep-07	55770.00	=""	="The Hedging Company Pty Ltd"	19-Dec-07 12:50 PM	
-="CN51832"	"Conference Facility Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Entertainment services"	06-Jun-07	06-Jun-07	102600.85	=""	="Hoteliers International Pty Ltd"	19-Dec-07 12:52 PM	
-="CN51833"	"Collaborative Agreement Coast Vulnerability Assessment"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	08-Jun-07	15-Jun-07	639728.00	=""	="Geoscience Australia"	19-Dec-07 12:54 PM	
-="CN51834"	"Legal Advice"	="Department of the Environment and Water Resources"	19-Dec-07	="Legal services"	15-Jun-07	19-Jun-07	34850.00	=""	="Baker and McKenzie"	19-Dec-07 12:56 PM	
-="CN51835"	"Greenhouse Gas life Cycle Assessment"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	19-Jun-07	26-Jun-07	19800.00	=""	="RMIT University - Centre for Design"	19-Dec-07 12:58 PM	
-="CN51836"	"  P  rovision of advice and assistance to Promising Practice Profiles Round 2 Submissions  "	="Australian Institute of Family Studies"	19-Dec-07	="Consumer based research or clinics or focus groups"	15-Nov-07	31-Dec-07	10048.50	=""	="Praxis Alternatives Pty Ltd"	19-Dec-07 01:00 PM	
-="CN51838-A1"	"  To provide data cleaning and analysis for the Assessment and Action (A&AR) Outcomes Data Analysis Project  "	="Australian Institute of Family Studies"	19-Dec-07	="Data processing or preparation services"	10-Dec-07	03-Mar-08	12891.93	=""	="Sam Egger"	19-Dec-07 01:11 PM	
-="CN51839"	"Repair of aircraft parts"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft"	12-Dec-07	27-Dec-07	19846.30	=""	="Sikorsky Aircraft Australia Limited"	19-Dec-07 01:15 PM	
-="CN51840"	"GRAPHIC DESIGN AND PUBLICATION"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	15-Jun-07	15-Jun-07	10040.33	=""	="ZOO COMMUNICATIONS"	19-Dec-07 01:30 PM	
-="CN51841"	"UPS"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	22-Jun-07	22-Jun-07	10868.00	=""	="NATURAL PWR SLTNS VIC"	19-Dec-07 01:30 PM	
-="CN51842"	"Bosslift Solomon Island"	="Department of Defence"	19-Dec-07	="Transport operations"	20-Jun-07	20-Jun-07	16686.88	=""	="WORLD AVIATION SYSTEM"	19-Dec-07 01:30 PM	
-="CN51843"	"Air Travel"	="Department of Defence"	19-Dec-07	="Travel facilitation"	07-Feb-07	07-Feb-07	14166.19	=""	="CORPORATE AIR"	19-Dec-07 01:30 PM	
-="CN51844"	"TAR for Engineering Faculty"	="Department of Defence"	19-Dec-07	="Education and Training Services"	29-Jun-07	29-Jun-07	11619.09	=""	="REPROTECH PTY LTD"	19-Dec-07 01:30 PM	
-="CN51845"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Jun-07	27-Jun-07	11931.88	=""	="MORLEYS FUNERALS"	19-Dec-07 01:30 PM	
-="CN51846"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jun-07	20-Jun-07	10958.52	=""	="FRANK J SIEBERT"	19-Dec-07 01:31 PM	
-="CN51847"	"ICT"	="Department of Defence"	19-Dec-07	="Electrical wire and cable and harness"	22-Jun-07	22-Jun-07	10433.50	=""	="DATA FLEX"	19-Dec-07 01:31 PM	
-="CN51848"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	29-Jun-07	29-Jun-07	13693.80	=""	="SWISS GRAND HOTEL"	19-Dec-07 01:31 PM	
-="CN51849"	"sponsorship"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Jun-07	22-Jun-07	16049.00	=""	="LOCAL GOVT ASSOC"	19-Dec-07 01:31 PM	
-="CN51850"	"press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	28-Jun-07	28-Jun-07	18818.22	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	
-="CN51851"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	28-Jun-07	28-Jun-07	25240.96	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	
-="CN51852"	"ELECTROBOARD"	="Department of Defence"	19-Dec-07	="Office machines and their supplies and accessories"	28-Jun-07	28-Jun-07	16025.33	=""	="ELECTROBOARD SOLUTIO"	19-Dec-07 01:31 PM	
-="CN51853"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	29-Jun-07	29-Jun-07	16073.03	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	
-="CN51854"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	29-Jun-07	29-Jun-07	12854.27	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	
-="CN51855"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Jul-07	07-Jul-07	11440.00	=""	="QUEST BRIDGEWATER"	19-Dec-07 01:31 PM	
-="CN51856"	"Consumables"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	07-Feb-07	07-Feb-07	18153.01	=""	="PAC PLUS WHOLESALERS P/L"	19-Dec-07 01:31 PM	
-="CN51857"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Feb-07	07-Feb-07	23179.66	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:32 PM	
-="CN51858"	"office furniture"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	29-Jun-07	29-Jun-07	23427.80	=""	="RECON FURNITURE SALES"	19-Dec-07 01:32 PM	
-="CN51859"	"TONER"	="Department of Defence"	19-Dec-07	="Computer services"	07-May-07	07-May-07	12549.71	=""	="CORPORATE EXPRESS"	19-Dec-07 01:32 PM	
-="CN51860"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-May-07	07-May-07	12832.32	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:32 PM	
-="CN51861"	"Maintenance of Generators"	="Department of Defence"	19-Dec-07	="Power Generation and Distribution Machinery and Accessories"	05-Sep-07	05-Sep-07	17667.67	=""	="QUALITY LIGHT & HEAVY"	19-Dec-07 01:32 PM	
-="CN51862"	"DPC use."	="Department of Defence"	19-Dec-07	="Computer services"	28-Jun-07	28-Jun-07	10732.35	=""	="GIDEON INFORMATICS"	19-Dec-07 01:32 PM	
-="CN51863"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Nov-07	22520.76	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:32 PM	
-="CN51864"	"Vehicle hire"	="Department of Defence"	19-Dec-07	="Motor vehicles"	19-Aug-06	19-Aug-06	53227.95	=""	="AL SAAD AND HANKIR TRD"	19-Dec-07 01:32 PM	
-="CN51865"	"Mobile phone usage"	="Department of Defence"	19-Dec-07	="Telecommunications media services"	18-Sep-06	18-Sep-06	10924.69	=""	="DEHDARI GEN TRD CONT EST"	19-Dec-07 01:32 PM	
-="CN51866"	"Printer ; Misc goods"	="Department of Defence"	19-Dec-07	="Printing and publishing equipment"	24-Jun-07	24-Jun-07	15000.06	=""	="GULF LINK INTERNATIONAL"	19-Dec-07 01:32 PM	
-="CN51867"	"room hire"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	18-Jul-07	18-Jul-07	23945.14	=""	="STRAND PALACE"	19-Dec-07 01:33 PM	
-="CN51868"	"Services"	="Department of Defence"	19-Dec-07	="Computer services"	18-Jul-07	18-Jul-07	15125.00	=""	="PLAN IT TST MAN/SLTNS"	19-Dec-07 01:33 PM	
-="CN51869"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jul-07	20-Jul-07	20556.24	=""	="SYMBION IMAGING"	19-Dec-07 01:33 PM	
-="CN51870"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	24-Jul-07	24-Jul-07	21269.10	=""	="GREENSLOPES PRIV H"	19-Dec-07 01:33 PM	
-="CN51871"	"generator maintenance"	="Department of Defence"	19-Dec-07	="Power Generation and Distribution Machinery and Accessories"	23-Jul-07	23-Jul-07	13307.13	=""	="QUALITY LIGHT & HEAVY"	19-Dec-07 01:33 PM	
-="CN51872"	"Fit out of 4 X Vehicle"	="Department of Defence"	19-Dec-07	="Tools and General Machinery"	05-Oct-07	05-Oct-07	12056.70	=""	="DARWIN OFF ROAD ACCESS"	19-Dec-07 01:33 PM	
-="CN51873"	"4 X 4 accessories"	="Department of Defence"	19-Dec-07	="Motor vehicles"	13-Jun-07	13-Jun-07	13585.50	=""	="DARWIN OFF ROAD ACCESS"	19-Dec-07 01:33 PM	
-="CN51874"	"PROC REG 2340/06-07"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Jun-07	28-Jun-07	15760.00	=""	="AUSTRASIAN JET DAR"	19-Dec-07 01:33 PM	
-="CN51875"	"Goodwill Products Items"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	28-Jun-06	28-Jun-06	18984.96	=""	="GOODWILL PRODUCTS P/L"	19-Dec-07 01:33 PM	
-="CN51876"	"Toner Cartridges"	="Department of Defence"	19-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Jul-07	18-Jul-07	47867.05	=""	="CORPORATE EXPRESS"	19-Dec-07 01:33 PM	
-="CN51877"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	25-Jul-07	25-Jul-07	74682.00	=""	="ANGAS REGENT"	19-Dec-07 01:33 PM	
-="CN51878"	"Advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	23-Apr-07	23-Apr-07	26004.56	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	
-="CN51879"	"AIRFARES"	="Department of Defence"	19-Dec-07	="Travel facilitation"	26-Jul-07	26-Jul-07	15776.00	=""	="NORTHERN GATEWAY PTY"	19-Dec-07 01:34 PM	
-="CN51880"	"Press ad"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	08-Feb-07	08-Feb-07	10909.95	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	
-="CN51881"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	17-Jul-07	17-Jul-07	26275.61	=""	="COMBINED BACHELOR HSG"	19-Dec-07 01:34 PM	
-="CN51882"	"Meals"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Jul-07	17-Jul-07	10679.27	=""	="NATIONAL AUST BANK"	19-Dec-07 01:34 PM	
-="CN51883"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jan-07	08-Jan-07	21391.15	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:34 PM	
-="CN51884"	"Press Ads"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	08-Feb-07	08-Feb-07	18006.76	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	
-="CN51885"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	06-Aug-07	14-Aug-07	16875.00	=""	="MACLEAY HOTEL"	19-Dec-07 01:34 PM	
-="CN51886"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	06-Aug-07	14-Aug-07	13965.00	=""	="HOLDYINNPOTTSPOINT"	19-Dec-07 01:34 PM	
-="CN51887"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Aug-07	14-Aug-07	20640.80	=""	="QUEST BRIDGEWATER"	19-Dec-07 01:34 PM	
-="CN51888"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	23-Jul-07	14-Aug-07	12630.00	=""	="MACLEAY HOTEL"	19-Dec-07 01:35 PM	
-="CN51889"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	31-Jul-07	31-Jul-07	12014.25	=""	="ST ANDREWS HOSPITAL"	19-Dec-07 01:35 PM	
-="CN51890"	"LECTURNS & PRESENTATION STATIONS"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	24-Jul-07	24-Jul-07	13956.20	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:35 PM	
-="CN51891"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	17-Jul-07	07-Dec-07	21142.00	=""	="VIBE SAVOY HOTEL"	19-Dec-07 01:35 PM	
-="CN51892"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	08-Jun-07	15-Aug-07	60588.00	=""	="ANGAS REGENT"	19-Dec-07 01:35 PM	
-="CN51893"	"1 Jetranger charter ; 2 helicopter charter"	="Department of Defence"	19-Dec-07	="Passenger transport"	19-Jul-07	19-Jul-07	13443.32	=""	="ALBATROSS HELICOPTERS"	19-Dec-07 01:35 PM	
-="CN51894"	"Goods"	="Department of Defence"	19-Dec-07	="Food and Beverage Products"	26-Jul-07	26-Jul-07	29440.83	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:35 PM	
-="CN51895"	"Residential Conference"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	08-Oct-07	17000.00	=""	="HOLMESGLEN INSTITUTE"	19-Dec-07 01:35 PM	
-="CN51896"	"Actor support"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	14-Aug-07	15453.15	=""	="ACADEMY OF SCREEN PFR"	19-Dec-07 01:35 PM	
-="CN51897"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Jul-07	21-Aug-07	45279.34	=""	="COMBINED BACHELOR HSG"	19-Dec-07 01:35 PM	
-="CN51898"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	31-Jul-07	31-Jul-07	10680.34	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:36 PM	
-="CN51899"	"IND PTNER CONTRIBUTION MOSQUITO BORN DISEASES"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Feb-07	07-Feb-07	11000.00	=""	="CHARLES DARWIN UNI"	19-Dec-07 01:36 PM	
-="CN51900"	"FURNITURE"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	24-Jul-07	24-Jul-07	15303.00	=""	="JAPE FURNISHINGS SUPER"	19-Dec-07 01:36 PM	
-="CN51901"	"HELI CHARTER"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	30-Jul-07	30-Jul-07	11411.40	=""	="JAYROW DARWIN"	19-Dec-07 01:36 PM	
-="CN51902"	"Fee"	="Department of Defence"	19-Dec-07	="Education and Training Services"	08-Oct-07	08-Oct-07	10032.00	=""	="AUS INST CO DRCTRS"	19-Dec-07 01:36 PM	
-="CN51903"	"FURNITURE"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	14-Aug-07	14-Aug-07	15042.00	=""	="JAPE FURNISHINGS SUPER"	19-Dec-07 01:36 PM	
-="CN51904"	"Stationery"	="Department of Defence"	19-Dec-07	="Office supplies"	08-Jul-07	08-Jul-07	13111.82	=""	="CORPORATE EXPRESS"	19-Dec-07 01:36 PM	
-="CN51905"	"Rations"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	13-Aug-07	13-Aug-07	17377.95	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:36 PM	
-="CN51906"	"Contract Management Course"	="Department of Defence"	19-Dec-07	="Education and Training Services"	13-Aug-07	13-Aug-07	13601.50	=""	="ENGINEERING EDUC AUST"	19-Dec-07 01:36 PM	
-="CN51907"	"Training"	="Department of Defence"	19-Dec-07	="Education and Training Services"	08-Sep-07	08-Sep-07	12320.00	=""	="AXIOM COLLEGE"	19-Dec-07 01:36 PM	
-="CN51908"	"Scanners"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	30-Jul-07	30-Jul-07	17432.69	=""	="DATA FLEX"	19-Dec-07 01:36 PM	
-="CN51909"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	14-Aug-07	10000.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	
-="CN51910"	"Goods"	="Department of Defence"	19-Dec-07	="Food and Beverage Products"	22-Aug-07	22-Aug-07	14037.79	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:37 PM	
-="CN51911"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	16-Aug-07	31-Aug-07	13213.50	=""	="HOLIDAY INN DARWIN"	19-Dec-07 01:37 PM	
-="CN51912"	"Accommodation"	="Department of Defence"	19-Dec-07	="Passenger transport"	21-Aug-07	21-Aug-07	17502.00	=""	="HOLIDAY INN TOWNSVILLE"	19-Dec-07 01:37 PM	
-="CN51913"	"Confrence"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	16-Jul-07	16-Jul-07	14169.00	=""	="Aitken Hill Conference"	19-Dec-07 01:37 PM	
-="CN51914"	"Rates"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	17-Aug-07	11928.56	=""	="TORRES SHIRE COUNCIL"	19-Dec-07 01:37 PM	
-="CN51915"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	17-Aug-07	43072.90	=""	="ST ANDREWS HOSPITAL"	19-Dec-07 01:37 PM	
-="CN51916"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	11100.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	
-="CN51917"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	11100.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	
-="CN51918"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	10182.82	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:37 PM	
-="CN51919"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	11237.00	=""	="CITY FERTILITY CENTRE"	19-Dec-07 01:37 PM	
-="CN51920"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jan-07	08-Jan-07	10028.34	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:38 PM	
-="CN51921"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	28431.14	=""	="THE WESLEY PHARMACY"	19-Dec-07 01:38 PM	
-="CN51922"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Mar-07	08-Mar-07	10919.95	=""	="SYMBION IMAGING"	19-Dec-07 01:38 PM	
-="CN51923"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-May-07	08-May-07	10000.00	=""	="CITY FERTILITY CENTRE"	19-Dec-07 01:38 PM	
-="CN51924"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	24-Aug-07	24-Aug-07	10336.03	=""	="PHOENICIA INTERCONTINENTA"	19-Dec-07 01:38 PM	
-="CN51925"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	29-Aug-07	29-Aug-07	10157.26	=""	="SYMBION IMAGING"	19-Dec-07 01:38 PM	
-="CN51926"	"DELL COMPUTRES"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	23-Aug-07	23-Aug-07	13726.26	=""	="AMERICAN COMPUTER HOME WL"	19-Dec-07 01:38 PM	
-="CN51927"	"TOLL PRiority freight"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	27-Aug-07	27-Aug-07	10291.48	=""	="TOLL TRANSPORT PL"	19-Dec-07 01:38 PM	
-="CN51928"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	12519.34	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:38 PM	
-="CN51929"	"Registration fee"	="Department of Defence"	19-Dec-07	="Education and Training Services"	09-Jun-07	23-Nov-07	13600.00	=""	="INFO SALONS AUST"	19-Dec-07 01:38 PM	
-="CN51930"	"ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Apr-07	09-Dec-07	10000.00	=""	="Hotel 208"	19-Dec-07 01:39 PM	
-="CN51931"	"ICT Security Seals with red logo and barcode"	="Department of Defence"	19-Dec-07	="Electrical wire and cable and harness"	24-Aug-07	24-Aug-07	10692.00	=""	="HARCOR SECRTY SEALS"	19-Dec-07 01:39 PM	
-="CN51932"	"BILLBOARDS"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	09-Apr-07	09-Apr-07	22000.00	=""	="NETWORK OUTDOOR P/L"	19-Dec-07 01:39 PM	
-="CN51933"	"Rhino"	="Department of Defence"	19-Dec-07	="Motor vehicles"	21-Aug-07	21-Aug-07	32333.65	=""	="YAMAHA-AL YOUSUF LLC"	19-Dec-07 01:39 PM	
-="CN51934"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	27-Aug-07	12694.99	=""	="WHITE LADY FUNERALS 795"	19-Dec-07 01:39 PM	
-="CN51935"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	24-Aug-07	24-Aug-07	13525.40	=""	="LE PINE FUNERAL 751"	19-Dec-07 01:39 PM	
-="CN51936"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	09-May-07	09-May-07	10505.88	=""	="MORLEYS FUNERALS"	19-Dec-07 01:39 PM	
-="CN51937"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	20-Jun-07	20-Jun-07	13800.00	=""	="THE GRACE HOTEL"	19-Dec-07 01:39 PM	
-="CN51938"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	27-Aug-07	27-Aug-07	23441.26	=""	="HOTEL INTER-CONTINENTAL WGTN,WE"	19-Dec-07 01:39 PM	
-="CN51939"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	09-Jan-07	09-Jan-07	11553.00	=""	="THE GRACE HOTEL"	19-Dec-07 01:39 PM	
-="CN51940"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jun-07	07-Jun-07	16639.07	=""	="AL DIAR SIJI HOTEL"	19-Dec-07 01:40 PM	
-="CN51941"	"Medical"	="Department of Defence"	19-Dec-07	="Comprehensive health services"	18-Aug-07	18-Aug-07	10585.00	=""	="PERTH ORAL & MAXILLOFA"	19-Dec-07 01:40 PM	
-="CN51942"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	29-Jun-07	29-Jun-07	16734.30	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:40 PM	
-="CN51943"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jul-07	07-Jul-07	13581.12	=""	="AL DIAR SIJI HOTEL"	19-Dec-07 01:40 PM	
-="CN51944"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	07-Oct-07	07-Oct-07	30219.74	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:40 PM	
-="CN51945"	"STATIONERY"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Aug-07	21-Aug-07	13681.71	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:40 PM	
-="CN51946"	"accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	21-Sep-07	03-Apr-08	10931.38	=""	="HOLIDAY INN ADELAIDE"	19-Dec-07 01:40 PM	
-="CN51947"	"Cardiac Defibrillators"	="Department of Defence"	19-Dec-07	="Comprehensive health services"	20-Sep-07	20-Sep-07	10350.00	=""	="ST JOHN AMBULANCE"	19-Dec-07 01:40 PM	
-="CN51948"	"Freight"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	13-Aug-07	13-Aug-07	28340.79	=""	="DHL INTERNATIONAL W.L.L."	19-Dec-07 01:40 PM	
-="CN51949"	"Advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	31-Aug-07	31-Aug-07	19019.35	=""	="HMA BLAZE"	19-Dec-07 01:40 PM	
-="CN51950"	"Wide Bay Int air show"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	31-Aug-07	31-Aug-07	10000.00	=""	="QIAS"	19-Dec-07 01:40 PM	
-="CN51951"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	09-Oct-07	09-Oct-07	15679.95	=""	="ST ANDREWS WAR MEM HO"	19-Dec-07 01:41 PM	
-="CN51952"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	23-Sep-07	23-Sep-07	21645.61	=""	="THE DIPLOMAT RADISSON"	19-Dec-07 01:41 PM	
-="CN51953"	"GATEWAY CHARGES"	="Department of Defence"	19-Dec-07	="Telecommunications media services"	24-Sep-07	24-Sep-07	11648.34	=""	="SECURENET LTD"	19-Dec-07 01:41 PM	
-="CN51954"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	28-Sep-07	28-Sep-07	11472.15	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:41 PM	
-="CN51955"	"Freight"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-Sep-07	25-Sep-07	53244.03	=""	="DHL INTERNATIONAL W.L.L."	19-Dec-07 01:41 PM	
-="CN51956"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	10-Mar-07	10-Mar-07	12728.00	=""	="DR BENJAMIN ERZETIC"	19-Dec-07 01:41 PM	
-="CN51957"	"Gen stores"	="Department of Defence"	19-Dec-07	="Other sports"	31-Jul-07	10-Dec-07	10624.29	=""	="SPORTS CORNER EST"	19-Dec-07 01:41 PM	
-="CN51958"	"Gen stores"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	10-Dec-07	21778.31	=""	="REGIONAL PROJECTS GROUP _"	19-Dec-07 01:41 PM	
-="CN51959"	"Gen stores"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	24-Sep-07	10-Dec-07	10325.72	=""	="REGIONAL PROJECTS GROUP _"	19-Dec-07 01:41 PM	
-="CN51960"	"conference Deposit"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	10360.00	=""	="BNE CONVENTION CENTRE"	19-Dec-07 01:41 PM	
-="CN51961"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	16-Sep-07	16-Sep-07	10748.95	=""	="HYATT REGENCY CLUB 2"	19-Dec-07 01:41 PM	
-="CN51962"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	19-Sep-07	19-Sep-07	13912.55	=""	="LE PINE FNRL SRV 744"	19-Dec-07 01:41 PM	
-="CN51963"	"Kitchen supplies"	="Department of Defence"	19-Dec-07	="Travel and Food and Lodging and Entertainment Services"	24-Sep-07	24-Sep-07	12644.27	=""	="BAGMAN DIST SERVICES"	19-Dec-07 01:42 PM	
-="CN51964"	"Annual Alarm Monitoring"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-Sep-07	25-Sep-07	31789.75	=""	="QUEENSLAND FIRE AND RE"	19-Dec-07 01:42 PM	
-="CN51965"	"electrical goods"	="Department of Defence"	19-Dec-07	="Domestic appliances"	19-Sep-07	19-Sep-07	14421.00	=""	="THE GOOD GUYS AUBURN"	19-Dec-07 01:42 PM	
-="CN51966"	"BBQ"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	18-Sep-07	18-Sep-07	10676.60	=""	="HEATLIE ENGINING"	19-Dec-07 01:42 PM	
-="CN51967"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	26-Sep-07	26-Sep-07	12484.17	=""	="HMA BLAZE"	19-Dec-07 01:42 PM	
-="CN51968"	"Surface Travel"	="Department of Defence"	19-Dec-07	="Travel facilitation"	17-Oct-07	17-Oct-07	12197.49	=""	="COACH DIRECT LTD"	19-Dec-07 01:42 PM	
-="CN51969"	"Accomodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	18-Jul-07	18-Jul-07	26250.00	=""	="FREESPIRIT RESORT"	19-Dec-07 01:42 PM	
-="CN51970"	"funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	10-Feb-07	10-Feb-07	13006.01	=""	="WALTER CARTER PTY LTD"	19-Dec-07 01:42 PM	
-="CN51971"	"Helicpoter Hire"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	09-Dec-07	09-Dec-07	24829.32	=""	="HELI NIUGINI"	19-Dec-07 01:42 PM	
-="CN51972"	"Helicpoter Hire"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	09-Dec-07	09-Dec-07	25918.42	=""	="HELI NIUGINI"	19-Dec-07 01:42 PM	
-="CN51973"	"Advertising for tendering"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	10-Sep-07	10-Sep-07	22362.90	=""	="HMA BLAZE"	19-Dec-07 01:43 PM	
-="CN51974"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	08-Nov-07	08-Nov-07	17670.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	
-="CN51975"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	13-Sep-07	13-Sep-07	12730.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	
-="CN51976"	"PORT COSTS"	="Department of Defence"	19-Dec-07	="Marine transport"	27-Sep-07	27-Sep-07	10720.43	=""	="MACKAY PRT AUTHRTY"	19-Dec-07 01:43 PM	
-="CN51977"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	11020.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	
-="CN51978"	"CPA Congress"	="Department of Defence"	19-Dec-07	="Education and Training Services"	21-Sep-07	04-Oct-07	22264.00	=""	="CPA AUSTRALIA LTD"	19-Dec-07 01:43 PM	
-="CN51979"	"VARIOUS STATIONERY"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Oct-07	18-Oct-07	12459.10	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:43 PM	
-="CN51980"	"NORTON = 24" SCREENS"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	06-Dec-07	06-Dec-07	20850.72	=""	="DATA FLEX"	19-Dec-07 01:43 PM	
-="CN51981"	"Freight"	="Department of Defence"	19-Dec-07	="Mail and cargo transport"	30-Oct-07	30-Oct-07	10977.06	=""	="STAR TRACK EXPRESS"	19-Dec-07 01:43 PM	
-="CN51982"	"Information Technology analysis and advice"	="Centrelink"	19-Dec-07	="Public administration and finance services"	10-Oct-07	30-Jun-08	51318.00	=""	="Grosvenor Management Consulting Pty Ltd"	19-Dec-07 01:50 PM	
-="CN51988"	"Palletts Various raised against standing offcer CONL082"	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	31-Mar-08	222775.85	=""	="MTM Celsiunator"	19-Dec-07 02:50 PM	
-="CN51996"	"SIGN, WARNING, MOTOR VEHICLE, TRIANGULAR, SIDES 13 IN. LG, RED & WHITE, W/DURABLE CASE. QTY 500.  MANUFACTURED IN ACCORDANCE WITH AUSTRALIAN STANDARD AS3790-1992 - TYPE A. "	="Defence Materiel Organisation"	19-Dec-07	="Safety signs"	26-Oct-07	08-Dec-07	14272.50	="RFQ G3616"	="J BLACKWOOD & SON LTD"	19-Dec-07 03:01 PM	
-="CN51999"	"A24N AIRCRAFT WASH"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft"	19-Dec-07	29-Dec-07	12513.60	=""	="CHEMETALL (AUSTRALASIA) PTY LTD"	19-Dec-07 03:04 PM	
-="CN52005"	" BAG TOOL CANVAS W/WOODEN BOTTOM "	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	31-Mar-08	57310.00	=""	="West Vic Canvas"	19-Dec-07 03:12 PM	
-="CN52011"	"TOOL KIT GENERIC ELECTRONICS TRADES"	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	16-Feb-08	16890.50	=""	="Brentool Industrial Supplies Pty Ltd"	19-Dec-07 03:20 PM	
-="CN52024"	"Printing of NAT3132 - Gift Pack.  Qty: 15,000"	="Australian Taxation Office"	19-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Dec-07	31-Jan-08	32271.80	="06.030"	="Paragon Printers"	19-Dec-07 03:32 PM	
-="CN52027"	"Technical Consulting Services"	="Australian Electoral Commission"	19-Dec-07	="Information technology consultation services"	08-Jun-07	27-Sep-07	74091.00	=""	="Space Time Research Pty Ltd"	19-Dec-07 04:42 PM	
-="CN52028-A1"	" Re-fit management service for Ballarat Customer Service Centre "	="Centrelink"	19-Dec-07	="Professional engineering services"	14-Nov-07	25-Jan-08	260989.30	=""	="Pirotta Services Pty Ltd"	19-Dec-07 04:44 PM	
-="CN52029-A1"	"SUPPLY OF STRETCHER, SCOOP"	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	19-Dec-07	30-Jan-08	20244.60	=""	="DHS PTY LTD"	19-Dec-07 04:44 PM	
-="CN52030"	"SUPPLY OF ANALYZERS BLOOD GLUCOSE CLINICAL CHEMISTRY & ACCESSORIES"	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	30-Jan-08	31890.10	=""	="ABBOTT DIAGNOSTICS DIVISION"	19-Dec-07 04:48 PM	
-="CN52031"	"Enrolment Survey Services"	="Australian Electoral Commission"	19-Dec-07	="Population sample surveys services"	23-Sep-05	04-Oct-07	162793.40	=""	="Newspoll"	19-Dec-07 04:49 PM	
-="CN52036"	" AIRCRAFT SPARES  NSN 1615-01-085-5318  ROD ASSY DAMPER FEP  QTY 15 "	="Defence Materiel Organisation"	19-Dec-07	="Military transport helicopters"	24-May-06	14-May-07	66194.21	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 05:39 PM	
-="CN52037"	"Tool Kit Electricians used by RAE Electrical Mechanics to Test Electrical Equipment and Wiring"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	06-Feb-08	55521.84	=""	="Brentool Industrial Supplies Pty Ltd"	20-Dec-07 07:58 AM	
-="CN52038"	"Roll Tools & Accessories Cloth Coated Nylon 2 Pockets 14 Loops, Water Repellant, Mildew Resistant, w/Buckle"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	27-Jan-08	27280.00	=""	="Canvas Contracting"	20-Dec-07 08:04 AM	
-="CN52039"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	19-Nov-08	24531.14	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:18 AM	
-="CN52040"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	28-Jan-08	32256.14	=""	="Symbion Pharmacy Services"	20-Dec-07 08:22 AM	
-="CN52041"	" Purchase of Aircraft Components "	="Defence Materiel Organisation"	20-Dec-07	="Aircraft"	19-Dec-07	15-Feb-08	40259.56	=""	="Kaman Aerospace International Corporation"	20-Dec-07 08:22 AM	
-="CN52042"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	18-Jan-09	11897.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:25 AM	
-="CN52043"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	29-Jan-08	25551.39	=""	="Symbion Pharmacy Services"	20-Dec-07 08:26 AM	
-="CN52044"	" Med Consumables For ADF "	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	25-Dec-07	26000.35	=""	="Clifford Hallam Healthcare"	20-Dec-07 08:43 AM	
-="CN52045"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	20-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Dec-07	18-Jan-08	12302.51	=""	="LAND ROVER AUSTRALIA"	20-Dec-07 08:44 AM	
-="CN52047"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	24-Dec-07	18055.60	=""	="Ansell International Pty Ltd"	20-Dec-07 09:24 AM	
-="CN52049"	"Financial advice for contract"	="Australian Taxation Office"	20-Dec-07	="Financial assistance"	01-Nov-07	21-Dec-07	17578.00	=""	="Freebody Cogent Pty Ltd"	20-Dec-07 10:06 AM	
-="CN52050"	"SOCKS, VARIOUS."	="Defence Materiel Organisation"	20-Dec-07	="Socks"	05-Dec-07	30-Jun-08	267047.00	="J7964"	="TOPS SOCKS"	20-Dec-07 10:33 AM	
-="CN52051"	"Provision of an ecredited competency based program for sutomer service"	="Comsuper"	20-Dec-07	="Computer based training software"	03-Sep-07	30-Jun-08	34170.00	=""	="CIT Solutions Pty Ltd"	20-Dec-07 10:44 AM	
-="CN52061"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	21-Nov-07	05-Dec-07	13673.00	=""	="Union Offset Printers"	20-Dec-07 10:53 AM	
-="CN52065"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	25-May-07	15-Jun-07	17996.00	=""	="Union offset Printers"	20-Dec-07 10:56 AM	
-="CN52067"	" Stationery Contract - final option  Original Contract commenced 21/09/2003 "	="Australian Electoral Commission"	20-Dec-07	="Stationery"	01-Nov-07	29-Feb-08	88000.00	=""	="Corporate Express Australia Ltd"	20-Dec-07 10:57 AM	
-="CN52079"	"Provision for CPI January 2008 Pension Increase"	="Comsuper"	20-Dec-07	="Printing accessories"	14-Dec-07	21-Dec-07	25617.88	=""	="Hermes Precisa P/L"	20-Dec-07 11:09 AM	
-="CN52081"	"ASLAV PARTS - WINDOW, OPTICAL INSTRUMENT"	="Department of Defence"	20-Dec-07	="Armoured fighting vehicles"	19-Dec-07	29-Jul-08	52514.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Dec-07 11:11 AM	
-="CN52090-A1"	"Postal Voting Mailhouse and Print Services"	="Australian Electoral Commission"	20-Dec-07	="Transportation and Storage and Mail Services"	26-Oct-06	30-Jun-11	1291062.28	="S06/07/29"	="Sema Group Pty Ltd"	20-Dec-07 11:24 AM	
-="CN52100"	"Mailing House Services"	="Australian Electoral Commission"	20-Dec-07	="Mailing services"	27-Nov-07	27-Dec-07	69449.60	=""	="B & C Mailing Pty Ltd"	20-Dec-07 11:43 AM	
-="CN52101"	"Printing of Election Booklets"	="Australian Electoral Commission"	20-Dec-07	="Industrial printing services"	08-Nov-07	08-Dec-07	11540.10	=""	="GT Graphics"	20-Dec-07 12:01 PM	
-="CN52103"	" Impact assessment "	="Australian Centre for International Agricultural Research"	20-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78840.00	=""	="Centre for International Economics"	20-Dec-07 12:07 PM	
-="CN52104"	"The provision of services for a professionally conducted presentation workshop for NBA staff development."	="National Blood Authority"	20-Dec-07	="Education and Training Services"	12-Jan-07	12-Jan-07	15445.00	=""	="Maura Fay Workshops"	20-Dec-07 12:13 PM	
-="CN52105"	"Provision of air travel"	="National Blood Authority"	20-Dec-07	="Commercial aeroplane travel"	03-Oct-07	13-Oct-07	37212.32	=""	="Flight Centre"	20-Dec-07 12:18 PM	
-="CN52106"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	01-Nov-07	14-Dec-07	16500.00	=""	="St Pauls Cathedral Parish"	20-Dec-07 12:21 PM	
-="CN52107"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11000.00	=""	="W Herrmann Real Estate Pty Ltd"	20-Dec-07 12:32 PM	
-="CN52108"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	31-Oct-07	14-Dec-07	21862.50	=""	="Kinight Frank Tasmania"	20-Dec-07 12:38 PM	
-="CN52110"	" Advertising monitoring - new ads "	="Australian Taxation Office"	20-Dec-07	="Information services"	04-Feb-08	03-Feb-09	26400.00	=""	="Xtreme Information Services Australia"	20-Dec-07 12:47 PM	
-="CN52111-A2"	"The procurement of Contract services for the development of the Evaluation Framework and Methodology for the Assessment of National Blood Supply Change Proposals."	="National Blood Authority"	20-Dec-07	="Business administration services"	10-Dec-07	30-Jun-09	108845.00	=""	="University of Technology Sydney - Centre for Health Economic Research and Evaluation (CHERE)"	20-Dec-07 12:48 PM	
-="CN52114-A1"	"FOOD CONTAINER, INSULATED"	="Defence Materiel Organisation"	20-Dec-07	="Containers and storage"	19-Dec-07	18-Mar-08	111650.00	="J7855"	="TRIMCAST PTY LTD"	20-Dec-07 01:56 PM	
-="CN52118"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	24060.96	="AEC06/019"	="Peoplebank Australia Ltd"	20-Dec-07 02:21 PM	
-="CN52123"	"Translation of Election Guide"	="Australian Electoral Commission"	20-Dec-07	="Written translation services"	01-Dec-06	30-Nov-09	18212.04	="S06/07/033"	="VITS Language Link"	20-Dec-07 02:28 PM	
-="CN52125"	"Annual meeting at PACOM"	="Department of Defence"	20-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10066.60	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	
-="CN52126"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	20-Dec-07	="Passenger transport"	29-Nov-07	29-Nov-07	12406.22	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	
-="CN52127"	"HMA Blaze Press ads Job vacancies CM07100026,CM07100027,CM07100028,CM07100029"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11596.99	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52128"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100148,CM07100147,CM07100146,CM07100145"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11828.91	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52129"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100150,CM07100149,CM07101146,CM07100363"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	13353.14	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52130"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100143,CM07110004,CM07110369,CM07110370"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	14964.62	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52131"	"HMA Blaze Press ads Recruitment Job vacancies CM07110022,CM07110014,CM07110013,CM07110012"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	29-Nov-07	29-Nov-07	12129.87	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52132"	"Panel transaction fee for Strategic Workforce PlanCIOG HR Services"	="Department of Defence"	20-Dec-07	="Human resources services"	04-Dec-07	04-Dec-07	11501.60	=""	="AUST PUBLIC SVC COMM"	20-Dec-07 02:48 PM	
-="CN52133"	"DSTO Project Furniture"	="Department of Defence"	20-Dec-07	="Office Equipment and Accessories and Supplies"	10-Dec-07	10-Dec-07	26825.00	=""	="CJ OFFICE CHOICE"	20-Dec-07 02:48 PM	
-="CN52134"	"Chairs for SAW"	="Department of Defence"	20-Dec-07	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	11197.40	=""	="STEM TUBULAR INDSTRS   T"	20-Dec-07 02:48 PM	
-="CN52135"	"DMO Advertisement in Career FAQs publication - Transport and Logistics.  (I have paid this via credit card as invoice was well overdue and vendor mgt have still not created vendor after 3 weeks)."	="Defence Materiel Organisation"	20-Dec-07	="Advertising"	07-Nov-07	14-Dec-07	13200.00	=""	="CAREER FAQS"	20-Dec-07 02:49 PM	
-="CN52136"	"MOU between the ABCC and the APSC concerning the program: Diversity Training."	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Dec-07	="Business administration services"	16-Oct-07	20-Nov-07	11201.00	=""	="THE AUSTRALIAN PUBLIC SERVICE COMMISSION"	20-Dec-07 02:55 PM	
-="CN52137"	"Enagement of TFS Migration Specialist"	="Australian Taxation Office"	20-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	29-Feb-08	88800.00	=""	="Microsoft"	20-Dec-07 03:06 PM	
-="CN52138"	"Software maintenance"	="Department of the House of Representatives"	20-Dec-07	="Software maintenance and support"	18-Dec-07	17-Dec-08	13493.70	=""	="Different Solutions"	20-Dec-07 03:07 PM	
-="CN52139"	"Sage Green Coveralls, Shirts and Trousers for RAAF and other Flying Military Personnel raised against Standing Offer 0306-264-26"	="Defence Materiel Organisation"	20-Dec-07	="Clothing"	17-Dec-07	30-May-08	960118.61	="2480010"	="Australian Defence Apparel"	20-Dec-07 03:09 PM	
-="CN52140"	"Flash Media Software"	="Department of the House of Representatives"	20-Dec-07	="Software"	18-Dec-07	17-Dec-08	69187.71	=""	="Different Solutions"	20-Dec-07 03:11 PM	
-="CN52141"	" computers "	="Department of the House of Representatives"	20-Dec-07	="Computers"	11-Dec-07	29-Feb-08	23595.00	=""	="Commander NSW Pty Ltd"	20-Dec-07 03:17 PM	
-="CN52142"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	06-Dec-07	06-Jan-08	14300.00	=""	="Searson Buck Pty Ltd"	20-Dec-07 03:20 PM	
-="CN52143"	"Flash/media Web"	="Department of the House of Representatives"	20-Dec-07	="Web page creation and editing software"	11-Dec-07	10-Dec-08	66308.00	=""	="Different Solutions"	20-Dec-07 03:22 PM	
-="CN52144"	"Laser jet printers"	="Department of the House of Representatives"	20-Dec-07	="Laser printers"	03-Dec-07	31-Dec-07	277374.95	=""	="Hewlett Packard Aust. Pty Ltd"	20-Dec-07 03:29 PM	
-="CN52145"	"Temporary staff for Study in Australia team"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	40000.00	="PRN18000"	="HAYS PERSONNEL SERVICES"	20-Dec-07 03:39 PM	
-="CN52147"	"Contract for professional development for Country"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	20-Nov-07	30-Jun-08	23595.00	="PRN17796"	="VISION AUSTRALIA"	20-Dec-07 03:43 PM	
-="CN52146-A1"	"For the provision for Infrastructure Architect Consultant - variation"	="Comsuper"	20-Dec-07	="Human resources services"	26-Jun-07	30-Jun-08	100000.00	=""	="Red 29 Pty Limited"	20-Dec-07 03:43 PM	
-="CN52148"	"17 Mort Street - Reconfiguration of Level's 1 and 4"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	11-Dec-07	09-Jan-08	24937.68	="PRN17992"	="CONSTRUCTION CONTROL INTERIORS P/L"	20-Dec-07 03:44 PM	
-="CN52149"	"Design document tender and contract manage DEST"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	05-Sep-07	28-Dec-07	10725.00	="PRN16842"	="GECHAWELL PTY LTD"	20-Dec-07 03:44 PM	
-="CN52150"	"Round Tables x35, Stanza chairs x33"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	03-Oct-07	31-Dec-07	19438.10	="PRN17999"	="Schiavello Commercial Interiors"	20-Dec-07 03:44 PM	
-="CN52151"	"Repairs to Staff House Kangaroo Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	02-Jul-07	28-Mar-08	13500.00	="PRN17382"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52152"	"Exec Furniture 71 and 72 Northbourne projects"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	15393.40	="PRN18205"	="CITE OFFICE DESIGN PTY LIMITED"	20-Dec-07 03:44 PM	
-="CN52153"	"Repairs to Staff House 11 Hollings Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	23-Jul-07	31-Mar-08	72400.00	="PRN17132"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52154"	"DEST National Office Accommodation Project"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Apr-10	1092927.00	="PRN12256"	="XACT PROJECT CONSULTANTS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52155"	"School Enrolment Projections to 2020"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	05-Feb-07	11-Jan-08	35057.00	="PRN12446"	="NATSEM"	20-Dec-07 03:46 PM	
-="CN52156"	"Commvault Data Management Software"	="Department of Education, Science and Training"	20-Dec-07	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	47500.00	="PRN18198"	="COMMVAULT SYSTEMS (AUSTRALIA) P/L"	20-Dec-07 03:47 PM	
-="CN52157"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Access Group Training Ltd"	20-Dec-07 03:48 PM	
-="CN52158"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="Applied Training Solutions Pty Ltd"	20-Dec-07 03:48 PM	
-="CN52159"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="ARTISTRY OF MAKE-UP ACADEMY"	20-Dec-07 03:48 PM	
-="CN52160"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="NEW HORIZONS LEARNING CNTR (PERTH)"	20-Dec-07 03:48 PM	
-="CN52161"	"Organisation Review Implementation of NSW/ACT"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	18-Jun-07	20-Jun-08	34386.41	="PRN17996"	="MERCER HUMAN RESOURCE CONSULTING"	20-Dec-07 03:48 PM	
-="CN52162"	"PAD, SCOURING"	="Defence Materiel Organisation"	20-Dec-07	="Scouring pads"	18-Dec-07	21-Dec-07	13068.00	=""	="RICHARDSON WAYNE SALES"	20-Dec-07 03:49 PM	
-="CN52163"	"Kindy/Pre-school Workshop 2007"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	15000.00	="PRN17412"	="HOLIDAY INN BRISBANE"	20-Dec-07 03:49 PM	
-="CN52164"	"International business skills for VET senior managers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	10-Dec-07	30-May-08	59100.00	="PRN17417"	="INTERNATIONAL EDUCATION"	20-Dec-07 03:49 PM	
-="CN52165"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	14-Dec-07	30-Jun-08	49181.29	="PRN18008"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	20-Dec-07 03:50 PM	
-="CN52166"	"Provision of contract cataloguing services"	="Department of Education, Science and Training"	20-Dec-07	="Library"	02-Oct-07	02-Feb-08	13330.00	="PRN17275"	="LYNN FARKAS INFORMATION SERVICES"	20-Dec-07 03:51 PM	
-="CN52167"	"CPO017973 - Satellite phone charges"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	11-Dec-07	11-Dec-07	15084.53	=""	="Electrotech Australia"	20-Dec-07 04:02 PM	
-="CN52168"	"CPO018019 - Recruitment services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	07-Dec-07	07-Dec-07	18693.16	=""	="Recruitment Management Company"	20-Dec-07 04:03 PM	
-="CN52169"	"07/2470 - Executive assistant services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	10-Dec-07	10-Jun-08	60000.00	=""	="Professional Careers Australia"	20-Dec-07 04:03 PM	
-="CN52170"	"06/1493 - Supply and install cabinet x-ray system"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	27-Nov-06	24-Jan-08	63149.41	=""	="American Science and Engineering Ltd"	20-Dec-07 04:03 PM	
-="CN52171"	"CPO018036 - LCD Touch Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	24084.03	=""	="Electroboard Solutions Pty Ltd"	20-Dec-07 04:03 PM	
-="CN52172"	"CPO017981 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	18392.00	=""	="Access Control Engineered Systems Pty Ltd"	20-Dec-07 04:03 PM	
-="CN52173"	"CPO018042 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	14833.50	=""	="Crimetech Security"	20-Dec-07 04:03 PM	
-="CN52174"	"CPO018047 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	10375.20	=""	="Bemac Security"	20-Dec-07 04:03 PM	
-="CN52175"	"CPO018048 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Oct-07	31-Dec-07	11753.03	=""	="Dataline Visual Link"	20-Dec-07 04:03 PM	
-="CN52176"	"07/2343 - Smartgate Modelling -  CPE004329-1"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-09	114500.00	=""	="Airbiz Aviation Strategies Pty Ltd"	20-Dec-07 04:04 PM	
-="CN52177"	"CPO017470 - Communications Upgrade"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	08-Nov-07	08-Dec-07	55814.00	=""	="SatComms Australia"	20-Dec-07 04:04 PM	
-="CN52178"	"07/2482 - Software Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	8490315.00	=""	="SAP"	20-Dec-07 04:04 PM	
-="CN52179"	"07/2477 - Supply/Maintenance of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	3286470.00	=""	="Microster Pty Ltd"	20-Dec-07 04:04 PM	
-="CN52180-A3"	"07/2476 - Supply/Implementation of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	22-Oct-07	30-Jun-11	1883880.00	=""	="SAP"	20-Dec-07 04:04 PM	
-="CN52181"	"CPO018167 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	18098.70	=""	="Trade Import Services"	20-Dec-07 04:04 PM	
-="CN52182"	"CPO018166 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	16291.80	=""	="Trade Import Services"	20-Dec-07 04:04 PM	
-="CN52183"	"07/2349 - Fit-Out/ Construction Services (CPO018142)"	="Australian Customs and Border Protection Service"	20-Dec-07	="General building construction"	01-Dec-07	31-Jan-08	22517.00	=""	="Quadric Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52184"	"CPO018187 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	10642.50	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52185"	"CPO018183 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	10868.00	=""	="Intelligent Surveillance"	20-Dec-07 04:05 PM	
-="CN52186"	"CPO018186 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	16072.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52187"	"CPO018185 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	11023.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52188"	"CPO018179 - Office Refurbishment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	33880.00	=""	="Jupps Floorcoverings"	20-Dec-07 04:05 PM	
-="CN52189"	"CPO015585 - Recruitment Services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	09-Sep-07	15-Nov-07	12980.00	=""	="Hobsons Australia Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52190-A1"	"CPE0013769-1 Supply of Recording Equipment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Components for information technology or broadcasting or telecommunications"	31-Jul-07	04-Dec-07	178692.80	=""	="Tape Products Research Holdings Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52191"	"CPO018304 - Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	20-Dec-07	07-Mar-08	75900.00	=""	="Trade Import Services"	20-Dec-07 04:06 PM	
-="CN52192"	"Conference Catering"	="Australian Electoral Commission"	20-Dec-07	="Catering services"	04-Dec-07	04-Jan-08	13132.50	=""	="Brew Bar"	20-Dec-07 04:12 PM	
-="CN52193"	"Election Advertising"	="Australian Electoral Commission"	20-Dec-07	="Advertising"	07-Dec-07	07-Jan-08	363472.38	=""	="HMA Blaze Pty Ltd"	20-Dec-07 04:21 PM	
-="CN52194"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	20-Dec-07	="Military fixed wing aircraft"	20-Dec-07	20-Mar-08	19573.38	=""	="AIRFLITE PTY LTD"	20-Dec-07 04:23 PM	
-="CN52195-A1"	"07/2309 - Project Coordinator - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	21-Nov-07	30-Jun-09	369000.00	="07/2309"	="CCS Index Pty Ltd"	20-Dec-07 04:26 PM	
-="CN52196"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	05-Nov-07	14-Dec-07	12300.00	=""	="Owain Glyn Dwr Unit Trust"	20-Dec-07 04:26 PM	
-="CN52198-A1"	"07/2365 - Test Analyst - 0717-0895 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	17-Dec-07	30-Jun-09	279000.00	="05/0717"	="Online 89 P/L t/a Profesionals Online"	20-Dec-07 04:35 PM	
-="CN52199"	"Promotional Items"	="Australian Electoral Commission"	20-Dec-07	="Promotional material or annual reports"	24-Jul-07	24-Dec-07	39014.34	=""	="Add Value Concepts"	20-Dec-07 04:36 PM	
-="CN52201"	"07/2387 - Risk Specialist - 1599-1936 - C&B Services Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Business and corporate management consultation services"	21-Nov-07	27-Nov-07	10560.00	="06/1599"	="Booz Allen Hamilton"	20-Dec-07 04:38 PM	
-="CN52202"	"Courier Services"	="Australian Electoral Commission"	20-Dec-07	="Freight loading or unloading"	12-Nov-07	12-Dec-07	14510.63	=""	="TNT Express (Mascot)"	20-Dec-07 04:50 PM	
-="CN52203-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	25652.94	=""	="Gadens Lawyers Melbourne"	20-Dec-07 04:53 PM	
-="CN52204"	" AIRCRAFT SPARES  NSN'S :  3120-66-156-4671 X 10, 3120-66-156-4672 X 10,             3120-66-156-4674 X 6, 3120-66-156-4676 X 4,                     3120-66-156-4677 X 10, 3120-66-156-4679 X 10,                   3120-66-156-4681 X 6, 3120-66-156-4682 X 4 AND                3120-66-156-4683 X 4.  BUSHING, SLEEVES "	="Defence Materiel Organisation"	20-Dec-07	="Military transport helicopters"	20-Dec-07	22-May-08	13266.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 04:55 PM	
-="CN52207-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	74213.28	="07.080"	="Tresscox Lawyers"	20-Dec-07 05:17 PM	
-="CN52208-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	34663.48	=""	="Maddocks"	20-Dec-07 05:20 PM	
-="CN52211"	"TRAILER, CARGO LT/MDM, CARGO, 4 TONNE, MC3, TWIN AXLE, SINGLE WHEELED, PIG TRAILER, ACCESSORY KIT SCES 12280"	="Defence Materiel Organisation"	20-Dec-07	="Container trailers"	20-Dec-07	11-Apr-08	48473.48	=""	="HAULMARK TRAILERS AUSTRALIA"	20-Dec-07 06:03 PM	
-="CN52212"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB,FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 95 MM W BY 104 MM H. QTY 6,000.  MANUFACTURED IN ACCORDANCE WITH DEF(AUST)1000C ON STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	30-Jan-08	12540.00	=""	="EE CARTONS"	20-Dec-07 06:10 PM	
-="CN52213"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 190 MM W BY104 MM H.  QTY 5,000. RAISED AS PER THE CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	28-Jan-08	17050.00	=""	="EE CARTONS"	20-Dec-07 06:18 PM	
-="CN52214"	"BOX, SETUP, SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440MM LG BY 190 MM W BY 104 MM H.  RAISED AS PER THE TERMS AND CONDITIONS OF THE STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	50160.00	=""	="EE CARTONS"	20-Dec-07 06:27 PM	
-="CN52215"	"BOX, SHIPPING, FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 350 MM W BY 393 MM DEEP, INT DIM.  QTY 30,000. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	64350.00	=""	="EE CARTONS"	20-Dec-07 06:33 PM	
-="CN52216"	"BOX, SHIPPING, FIBREBOARD, CORRUGATED, 1064MM LG BY 1064MM W BY 698MM H, INT DIMN,8.5 CU DECIMETRES.  QTY  2,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	16-Jan-08	27500.00	=""	="EE CARTONS"	20-Dec-07 06:40 PM	
-="CN52217"	" ITEM 1 - 8115-66-107-1281 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 122 MM DEEP. QTY 4,000.  ITEM 2 - 8115-66-107-1282 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 245 MM DEEP. QTY 15,000.  ITEM 3 - 8115-66-107-1283 - BOX, FOLDING SINGLE  WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 122 MM DEEP. QTY 2,000.  ITEM 4 - 8115-66-107-1284 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 245 MM DEEP.  QTY 5,000.  ITEM 5 - 8115-66-107-1285 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 265 MM W AND 122 MM DEEP.  QTY 10,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	16456.00	=""	="EE CARTONS"	20-Dec-07 06:52 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN51348"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	41578.83	=""	="Volvo Commerical Vehicles"	17-Dec-07 08:41 AM	

+="CN51347"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	16963.00	=""	="Volvo Commerical Vehicles"	17-Dec-07 08:45 AM	

+="CN51349-A1"	"Med Consumables For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Medical Equipment and Accessories and Supplies"	06-Dec-07	21-Jan-08	21958.31	=""	="Baxter Healthcare Pty Ltd"	17-Dec-07 08:48 AM	

+="CN51350"	" Panel Assembly's. "	="Defence Materiel Organisation"	17-Dec-07	="Motor or generator components"	14-Dec-07	17-Jun-08	19580.88	="RFQ G7645"	="Advanced Power (NSW) Pty Ltd"	17-Dec-07 08:50 AM	

+="CN51351"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Medical Equipment and Accessories and Supplies"	05-Dec-07	17-Jan-08	13513.50	=""	="Orthotic & Prosthetic Centre P/L"	17-Dec-07 08:52 AM	

+="CN51352"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	22204.53	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 08:54 AM	

+="CN51354"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	16982.57	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 09:00 AM	

+="CN51353"	"Motor Vehicle Spare Parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	14-Jan-08	14183.58	=""	="Volvo Commerical Vehicles"	17-Dec-07 09:07 AM	

+="CN51355"	"Motor Vehicle Parts."	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	13-Jan-08	20296.12	=""	="Mercedes Benz Aust/Pacific"	17-Dec-07 09:08 AM	

+="CN51356"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	17-Dec-07	="Drugs and Pharmaceutical Products"	30-Jul-07	14-Aug-07	87266.19	=""	="Symbion Pharmacy Services"	17-Dec-07 09:39 AM	

+="CN51357"	"SES Pool Vehicle Charges August-November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business administration services"	01-Aug-07	30-Nov-07	21084.74	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	17-Dec-07 09:44 AM	

+="CN51358"	"Temporary Personnel"	="Australian Electoral Commission"	17-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	38966.40	="AEC06/019"	="Peoplebank Recruitment"	17-Dec-07 09:51 AM	

+="CN51359"	"Application Services & Travel for October 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business administration services"	01-Oct-07	31-Oct-07	11232.06	=""	="DEPARTMENT OF EMPLOYMENT AND WORKPLACE RELATIONS"	17-Dec-07 09:55 AM	

+="CN51360"	"Temporary Personnel"	="Australian Electoral Commission"	17-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	40048.80	="AEC06/019"	="Peoplebank Recruitment"	17-Dec-07 10:00 AM	

+="CN51361"	"iBase 5 SSE User Software Licences"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Software"	01-Nov-07	31-Oct-08	172579.00	=""	="VISUAL ANALYSIS PTY LTD"	17-Dec-07 10:13 AM	

+="CN51362"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	17-Sep-07	22-Oct-07	75701.89	=""	="LAVAN LEGAL"	17-Dec-07 10:26 AM	

+="CN51363"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	26-Jul-07	23-Aug-07	44094.41	=""	="LAVAN LEGAL"	17-Dec-07 10:41 AM	

+="CN51366"	"vehicle repairs"	="Department of Defence"	17-Dec-07	="Motor vehicles"	01-Oct-07	01-Jan-08	11028.60	=""	="TWINE MACHINERY"	17-Dec-07 11:00 AM	

+="CN51367"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	01-Oct-07	01-Nov-07	13005.80	=""	="TWINE MACHINERY"	17-Dec-07 11:05 AM	

+="CN51368"	"IT Hardware - Polycom Desktop units"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	14-Dec-07	31-Jan-08	35428.80	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	17-Dec-07 11:07 AM	

+="CN51369"	"Provision of Fact of Death File Data"	="Australian Taxation Office"	17-Dec-07	="Politics and Civic Affairs Services"	13-Dec-07	31-Mar-08	10000.00	=""	="DEPT OF JUSTICE TASMANIA"	17-Dec-07 11:07 AM	

+="CN51370"	"IT Hardware"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	13-Dec-07	30-Jun-08	20000.00	=""	="Telstra"	17-Dec-07 11:07 AM	

+="CN51371"	"Software Assett mangement essentials 6 attendees"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	10-Dec-07	10-Dec-07	13176.00	=""	="ProActive Services Pty Ltd"	17-Dec-07 11:08 AM	

+="CN51372"	"Procurement Annual Conference"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	31-Dec-07	14473.30	=""	="THE BRASSEY OF CANBERRA"	17-Dec-07 11:08 AM	

+="CN51373"	"training for IT staff"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	05-Dec-07	16-Feb-08	76395.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	17-Dec-07 11:08 AM	

+="CN51374"	"Laptops, printer, NAS, Back-up device and UPS"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	05-Dec-07	21-Dec-07	49163.03	=""	="Dell Computer"	17-Dec-07 11:08 AM	

+="CN51375"	"FINANCIAL ADVICE"	="Australian Taxation Office"	17-Dec-07	="Financial and Insurance Services"	05-Dec-07	05-Dec-07	10000.00	=""	="Freebody Cogent Pty Ltd"	17-Dec-07 11:09 AM	

+="CN51376"	"22 X CHAIRS"	="Australian Taxation Office"	17-Dec-07	="Furniture and Furnishings"	03-Dec-07	03-Dec-07	12535.60	=""	="STURDY COMPONENTS PTY LTD"	17-Dec-07 11:09 AM	

+="CN51377"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	11-Sep-07	21-Dec-07	20240.00	=""	="VOLVO COMMERCIAL VEHICLES"	17-Dec-07 11:11 AM	

+="CN51365"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	24-Aug-07	17-Sep-07	26458.55	=""	="LAVAN LEGAL"	17-Dec-07 11:11 AM	

+="CN51378"	"VEHICLE REPAIRS"	="Department of Defence"	17-Dec-07	="Motor vehicles"	17-Sep-07	21-Dec-07	24826.96	=""	="PREMIER TRUCKS NQ PTY LTD"	17-Dec-07 11:17 AM	

+="CN51379"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	24-Sep-07	26-Oct-07	32114.42	=""	="BLAKE DAWSON WALDRON"	17-Dec-07 11:23 AM	

+="CN51380"	"CLIENT/STAKEHOLDER REVIEW OF THE PRISMS SYSTEM"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	15-Oct-07	31-Dec-07	80000.00	="PRN16331"	="Corporate Diagnostics pty ltd"	17-Dec-07 11:25 AM	

+="CN51381"	"APEC Education Network Presentation cross-border provision of education services"	="Department of Education, Science and Training"	17-Dec-07	="Engineering and Research and Technology Based Services"	08-Nov-07	10-Jan-08	52250.00	="PRN16264"	="INTERNATIONAL ECONOMICS UNTIS TRUST"	17-Dec-07 11:25 AM	

+="CN51382"	"Development of a VET Capability Statement"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	12-Nov-07	01-May-08	140000.00	="PRN16517"	="TAFE DIRECTORS AUSTRALIA"	17-Dec-07 11:26 AM	

+="CN51383"	"Leading Australia's Future in Asia Programme 2007"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	07-Aug-07	30-Jun-08	53674.79	="PRN17828"	="AUSTRALIAN PUBLIC SERVICE COMM"	17-Dec-07 11:26 AM	

+="CN51384"	"16 Mort Street - Purchase of Portable Dance Floor"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	13-Nov-07	30-Nov-07	10010.00	="PRN17658"	="Ezi-Flor"	17-Dec-07 11:27 AM	

+="CN51385"	"Higher Education Removalist fees"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	24-Sep-07	30-Nov-07	24992.00	="PRN17621"	="Movers and Shakers Business Relocations"	17-Dec-07 11:27 AM	

+="CN51386"	"Fitout plans and floor plans for level 2, 72 Northbourne"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	28-Aug-07	30-Jun-08	29260.00	="PRN16823"	="PECKVONHARTEL"	17-Dec-07 11:27 AM	

+="CN51387"	"Minor fit out level 12, 188 Collins St Hobart"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	02-Oct-07	30-Nov-07	20582.00	="PRN17550"	="Cunic Constructions Pty Ltd"	17-Dec-07 11:27 AM	

+="CN51388"	"Design, document tender and project manage"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	10-Oct-07	27-Jun-08	10450.00	="PRN17903"	="GECHAWELL PTY LTD"	17-Dec-07 11:27 AM	

+="CN51389"	"SAP Australia - InfoPak Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	22-Nov-07	30-Jun-08	17167.54	="PRN17893"	="SAP Australia Pty Ltd"	17-Dec-07 11:28 AM	

+="CN51390"	"Design ,document, tender and project manage fit out"	="Department of Education, Science and Training"	17-Dec-07	="General building construction"	26-Nov-07	30-Jun-08	40700.00	="PRN17915"	="GANLEY POPE JOHNSON"	17-Dec-07 11:28 AM	

+="CN51391"	"E-RECRUITMENT 2008"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	01-Jun-07	07-Dec-07	10000.00	="PRN17902"	="NGA.NET PTY LTD"	17-Dec-07 11:28 AM	

+="CN51392"	"A and BAC EXTERNAL MEMBER"	="Department of Education, Science and Training"	17-Dec-07	="Accounting and auditing"	20-Nov-07	21-Dec-09	49500.00	="PRN12008"	="MORISON CONSULTING"	17-Dec-07 11:28 AM	

+="CN51393"	"5x desks, underdesk drawers, PSU's- Schiavello"	="Department of Education, Science and Training"	17-Dec-07	="Building and Construction and Maintenance Services"	23-Oct-07	04-Dec-07	10876.80	="PRN17855"	="Schiavello Commercial Interiors"	17-Dec-07 11:28 AM	

+="CN51394"	"Benchmark Data Set - Australian Bureau of Statistics"	="Department of Education, Science and Training"	17-Dec-07	="Printed media"	07-Nov-07	30-Jun-08	16500.00	="PRN17633"	="AUSTRALIAN BUREAU OF STATISTICS"	17-Dec-07 11:29 AM	

+="CN51396"	"Adobe Products"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	21-Nov-07	30-Jun-08	78950.00	="PRN17743"	="DATA3 LIMITED"	17-Dec-07 11:36 AM	

+="CN51397"	"Cleaning and Repairing Office Chairs - ISG"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	13-Nov-07	20-Dec-07	11682.00	="PRN17721"	="KReliance Pty Ltd"	17-Dec-07 11:36 AM	

+="CN51398"	"Consultant to develop Project plan for establishmet"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	30-Aug-07	11-Oct-07	14040.00	="PRN17894"	="PAUL FITZGERALD"	17-Dec-07 11:37 AM	

+="CN51399"	"ITIL Awareness Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	19-Nov-07	31-Mar-08	15000.00	="PRN17813"	="Proactive Services Pty Ltd"	17-Dec-07 11:37 AM	

+="CN51400"	"Imation Tape Cartridges"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	28270.00	="PRN17742"	="PRODATA COMPUTER PRODUCTS"	17-Dec-07 11:37 AM	

+="CN51401"	"Appsense Management Software"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	14064.93	="PRN17895"	="Dimension Data Australia Pty Ltd"	17-Dec-07 11:37 AM	

+="CN51402"	"Reporting Services Training - Superior Software for windows"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	26-Nov-07	30-Jun-08	11008.80	="PRN17808"	="SUPERIOR SOFTWARE FOR WINDOWS PTY L"	17-Dec-07 11:37 AM	

+="CN51403"	"Fax Interface Hardware"	="Department of Education, Science and Training"	17-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	30-Jun-08	49747.50	="PRN17931"	="Axient P/L"	17-Dec-07 11:37 AM	

+="CN51395"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	28-Sep-07	30-Oct-07	26571.84	=""	="MINTER ELLISON"	17-Dec-07 11:40 AM	

+="CN51404"	"Investigation into Industry Expectations of VET As"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	26-Nov-07	30-Apr-08	114840.00	="PRN16628"	="PRECISION CONSULTANCY"	17-Dec-07 11:49 AM	

+="CN51406"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Institute of Hair and Aesthetics"	17-Dec-07 11:54 AM	

+="CN51407"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="The Daniels Associates"	17-Dec-07 11:54 AM	

+="CN51408"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Pro-System Training Services Pty"	17-Dec-07 11:54 AM	

+="CN51409"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14080.00	="PRN12579"	="Bathun Pty Ltd"	17-Dec-07 11:54 AM	

+="CN51410"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Griffith Skills Training Centre"	17-Dec-07 11:55 AM	

+="CN51411"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="TAFE NSW - ACCESS DIVISION"	17-Dec-07 11:55 AM	

+="CN51412"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	20790.00	="PRN12579"	="SYDNEY TAXI TRAINING CENTRE PTY LTD"	17-Dec-07 11:55 AM	

+="CN51413"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13750.00	="PRN12579"	="AVOCARE LIMITED"	17-Dec-07 11:55 AM	

+="CN51414"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SOURCE4 PTY LIMITED"	17-Dec-07 11:55 AM	

+="CN51415"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="COLLEGE OF AUSTRALIAN TRAINING PTY"	17-Dec-07 11:55 AM	

+="CN51416"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="KUNEXION PTY LTD"	17-Dec-07 11:55 AM	

+="CN51417"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="EXECUTIVE INSTITUTE OF MANAGEMENT"	17-Dec-07 11:55 AM	

+="CN51418"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10890.00	="PRN12579"	="MW TRAINING CONSULTANTS"	17-Dec-07 11:55 AM	

+="CN51419"	"Temp Staff Member in EA Role"	="Department of Education, Science and Training"	17-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	15000.00	="PRN17037"	="JULIA ROSS RECRUITMENT LTD"	17-Dec-07 11:57 AM	

+="CN51420"	"Influencing and Negotiations Skills workshop"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	08-Nov-07	30-May-08	10511.40	="PRN17739"	="POLLAK LEARNING ALLIANCE PTY LTD"	17-Dec-07 11:58 AM	

+="CN51421"	"strategies to address the international recognition"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	08-Nov-07	30-Jun-08	181390.00	="PRN16569"	="ESCALIER CONSULTING PTY LTD"	17-Dec-07 11:59 AM	

+="CN51405"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	16-Aug-07	27-Sep-07	18257.25	=""	="MINTER ELLISON"	17-Dec-07 11:59 AM	

+="CN51422"	"Financial Statement Guidelines for Australian High Higher Education Providers 2007 Reporting Period"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	31-Oct-07	31-Dec-07	29150.00	="PRN17465"	="PRICEWATERHOUSECOOPERS"	17-Dec-07 11:59 AM	

+="CN51423"	"Enrolment Projections"	="Australian Electoral Commission"	17-Dec-07	="Production statistics collection or analysis services"	26-Nov-07	30-Apr-08	49730.00	=""	="Australian Bureau of Statistics"	17-Dec-07 12:03 PM	

+="CN51425"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Dec-07	="Business law services"	02-Aug-07	14-Nov-07	22096.00	=""	="G J MCNAUGHT PTY LTD"	17-Dec-07 12:22 PM	

+="CN51426-A1"	"Revise, edit and prepare consilidation guidelines and procedures including the Consilidation Reference Manual (CRM)"	="Australian Taxation Office"	17-Dec-07	="Manual writing services"	14-Dec-07	30-Jun-09	44000.00	=""	="Evans-Smith & Dando Pty Ltd"	17-Dec-07 12:22 PM	

+="CN51427"	"M113UPGRADE VEHICLE PARTS - FITTERS TRACK"	="Department of Defence"	17-Dec-07	="Armoured fighting vehicles"	13-Dec-07	07-Mar-08	62526.44	=""	="HIAB AUSTRALIA PTY LTD"	17-Dec-07 12:30 PM	

+="CN51429"	"vehicle repairs"	="Department of Defence"	17-Dec-07	="Motor vehicles"	08-Nov-07	21-Dec-07	47848.03	=""	="F.B. AUTO REPAIRS"	17-Dec-07 12:33 PM	

+="CN51430"	"Security Services at Lae War Cemetery"	="Department of Veterans' Affairs"	17-Dec-07	="Public order and safety"	14-Sep-07	13-Sep-10	61800.00	=""	="Huon Hire Services ( Madang ) Limited"	17-Dec-07 01:34 PM	

+="CN51431"	"For the development and design of Position Documentation & Selection Criteria"	="Department of Veterans' Affairs"	17-Dec-07	="Human resources services"	01-Oct-07	01-Oct-08	31360.00	=""	="Wendy Allan Consulting"	17-Dec-07 01:34 PM	

+="CN51432"	"ASLAV PARTS - PNEUMATIC TIRE WHEEL & AUTOMOTIVE WHEEL, RING, SIDE"	="Department of Defence"	17-Dec-07	="Armoured fighting vehicles"	13-Dec-07	09-Aug-08	51143.20	=""	="MARATHON TYRES AUST PTY LTD"	17-Dec-07 01:38 PM	

+="CN51433"	"PEP Training"	="Department of Education, Science and Training"	17-Dec-07	="Education and Training Services"	23-Nov-07	31-Jan-08	13200.00	="PRN17881"	="D'ARCY CONSULTING GROUP PTY LTD"	17-Dec-07 01:39 PM	

+="CN51434"	"2007 Census of Non-Government Schools"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	29-Sep-07	24-Dec-07	15200.00	="PRN16564"	="WVR and BJ STEVENSON CONSULTANTS PTY"	17-Dec-07 01:40 PM	

+="CN51435"	"Development of performance framework for Education"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	22-Nov-07	30-Apr-08	67650.00	="PRN16920"	="ATELIER LEARNING SOLUTIONS PTY LTD"	17-Dec-07 01:41 PM	

+="CN51436"	"Administering Industry/Business Satisfaction Surve"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	01-Oct-07	31-Dec-07	28814.50	="PRN16859"	="ACNielsen (Holdings) Pty Ltd"	17-Dec-07 01:41 PM	

+="CN51437"	"Niche Marketing Pilot for Mining VET in Latin America"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	25-Oct-07	30-Jun-08	209000.00	="PRN16490"	="BOX HILL INSTITUTE OF TAFE"	17-Dec-07 01:41 PM	

+="CN51438"	"a/c spares: 4320-01-195-2484, Housing, qty 3."	="Defence Materiel Organisation"	17-Dec-07	="Military rotary wing aircraft"	30-Nov-07	14-Dec-08	14423.08	=""	="sikorsky aust"	17-Dec-07 01:43 PM	

+="CN51439"	"Review of the Prime Minister's Prizes for Science 2007/2007"	="Department of Education, Science and Training"	17-Dec-07	="Marketing and distribution"	12-Nov-07	30-Jun-08	30000.00	="PRN17429"	="SCIENCE IN PUBLIC"	17-Dec-07 01:43 PM	

+="CN51440"	"Construction work at Finke Community"	="Department of Education, Science and Training"	17-Dec-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	12-Dec-07	22755.00	="PRN17970"	="PETER ROPER"	17-Dec-07 01:43 PM	

+="CN51441"	"Annual Indigenous Higher Education Advisory Council"	="Department of Education, Science and Training"	17-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	31-Dec-07	26373.14	="PRN16957"	="NANTIONAL WINE CENTRE OF AUSTRALIA"	17-Dec-07 01:44 PM	

+="CN51442"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	01-Jan-09	251680.00	=""	="Tarakan Consulting Pty Ltd"	17-Dec-07 01:44 PM	

+="CN51443"	"Evaluation of the Enterprise Learning for the 21st"	="Department of Education, Science and Training"	17-Dec-07	="Engineering and Research and Technology Based Services"	22-Nov-07	29-Jun-08	262300.00	="PRN14888"	="ATELIER LEARNING SOLUTIONS PTY LTD"	17-Dec-07 01:45 PM	

+="CN51444"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	06-Jan-09	299112.00	=""	="Paxus Australia Pty Ltd"	17-Dec-07 01:45 PM	

+="CN51445"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	10-Dec-07	11-Jun-08	116688.00	=""	="Greythorn Pty Ltd"	17-Dec-07 01:45 PM	

+="CN51446"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	05-Dec-07	12-Dec-08	321552.00	=""	="REDBACK CONSULTING PTY LTD"	17-Dec-07 01:45 PM	

+="CN51447"	"Technical Account Manager Services under contract"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	30-Nov-08	457600.00	=""	="Oracle Corporation Australia"	17-Dec-07 01:45 PM	

+="CN51448"	"Ebsco - 2008 renewal to bulk subscription of journal"	="Department of Education, Science and Training"	17-Dec-07	="Printed media"	28-Nov-07	30-Jun-08	49774.04	="PRN17961"	="EBSCO AUSTRALIA"	17-Dec-07 01:45 PM	

+="CN51449"	"PRINTING"	="Australian Taxation Office"	17-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-Nov-07	07-Dec-07	132036.96	=""	="PMP PRINT LIMITED"	17-Dec-07 01:46 PM	

+="CN51450"	"LEGALS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	06-Dec-07	12000.00	=""	="FOLEY'S LIST PTY LTD"	17-Dec-07 01:46 PM	

+="CN51451"	"VALUATIONS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	05-Dec-07	45131.85	=""	="AUSTRALIAN VALUATION OFFICE"	17-Dec-07 01:46 PM	

+="CN51452"	"LEGALS"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	05-Dec-07	17625.49	=""	="FERRIER HODGSON"	17-Dec-07 01:46 PM	

+="CN51453"	"LAFIA PARTICIPANT 2007"	="Australian Taxation Office"	17-Dec-07	="Education and Training Services"	22-Nov-07	22-Nov-07	23100.00	=""	="Australian Public Service"	17-Dec-07 01:47 PM	

+="CN51454"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	07-Dec-07	27400.49	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	

+="CN51455"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	12-Dec-07	21262.33	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	

+="CN51456"	"LABOUR"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	04-Dec-07	12-Dec-07	16787.28	=""	="Hudson Global Resources (Aust) P/L"	17-Dec-07 01:47 PM	

+="CN51458"	"Legal costs in Federal Court of Australia"	="Australian Taxation Office"	17-Dec-07	="Financial and Insurance Services"	06-Jul-07	30-Jun-08	12000.00	=""	="FEDERAL COURT OF AUSTRALIA"	17-Dec-07 02:02 PM	

+="CN51459"	"Sign language interpreter for staff member"	="Australian Taxation Office"	17-Dec-07	="Management and Business Professionals and Administrative Services"	18-Jul-07	30-Jun-08	14000.00	=""	="ANDREW GRAY"	17-Dec-07 02:02 PM	

+="CN51460"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	12-Dec-07	30-Dec-08	208208.01	=""	="COMPAS PTY LTD"	17-Dec-07 02:03 PM	

+="CN51461"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	11-Dec-07	12-Feb-08	102850.00	=""	="InfoRail Pty Ltd"	17-Dec-07 02:03 PM	

+="CN51462"	"IT Contractor"	="Australian Taxation Office"	17-Dec-07	="Engineering and Research and Technology Based Services"	29-Oct-07	31-Oct-08	200178.00	=""	="Paxus Australia Pty Ltd"	17-Dec-07 02:03 PM	

+="CN51463"	"Services to configure Transaction Vision"	="Australian Taxation Office"	17-Dec-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	02-Dec-08	330000.00	=""	="HEWLETT PACKARD PTY LTD"	17-Dec-07 02:03 PM	

+="CN51465-A2"	"W051 - Review and develop Information Architecture (IA) for ATO website."	="Australian Taxation Office"	17-Dec-07	="Technical writing"	11-Nov-07	31-Mar-09	385936.00	="56.04"	="Evans-Smith & Dando Pty Ltd"	17-Dec-07 02:12 PM	

+="CN51464"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	28-Nov-07	18-Dec-07	12216.41	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:14 PM	

+="CN51466"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	11-Dec-07	31-Dec-07	47665.00	=""	="SIKORSKY AIRCRAFT AUSTRLIA LTD"	17-Dec-07 02:20 PM	

+="CN51468"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	11-Dec-07	31-Dec-07	12841.04	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:26 PM	

+="CN51469"	" Repair of Aircraft Parts "	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	12-Dec-07	01-Jan-08	12305.50	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:52 PM	

+="CN51470"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	17-Dec-07	="Aircraft"	05-Dec-07	07-Feb-08	41344.19	=""	="SIKORSKY AIRCRAFT AUST LTD"	17-Dec-07 02:58 PM	

+="CN51471-A2"	"Lease at Newport Victoria"	="Department of Human Services"	17-Dec-07	="Real estate services"	01-Jul-07	31-Dec-12	1374518.30	=""	="Sheila Webb Super Fund"	17-Dec-07 03:08 PM	

+="CN51474"	"motor vehicle spare parts"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	12-Jan-08	41719.92	=""	="Landrover"	17-Dec-07 03:20 PM	

+="CN51475"	"MOTOR VEHIICLE SPARE PARTS"	="Department of Defence"	17-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Dec-07	12-Jan-08	27175.30	=""	="ROVER AUSTRALIA"	17-Dec-07 03:33 PM	

+="CN51476"	"VEHCILE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	24-Sep-07	24-Oct-07	11335.50	=""	="GILBERT GROUP"	17-Dec-07 03:40 PM	

+="CN51477"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	04-Oct-07	29-Nov-07	10932.90	=""	="ALLCOCK"	17-Dec-07 03:46 PM	

+="CN50323"	"Rational Software Renewal"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Software"	01-Jan-08	31-Dec-08	25774.47	=""	="IBM Australia Limited"	17-Dec-07 03:57 PM	

+="CN50310"	"Renewal of Existing Cognos Licence Suite"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Software"	28-Dec-07	27-Dec-08	11825.84	=""	="Cognos Pty Ltd"	17-Dec-07 04:01 PM	

+="CN51480"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	09-Aug-07	10-Oct-07	14855.40	=""	="GILBERTS"	17-Dec-07 04:02 PM	

+="CN50295"	"Contractor - Allocations Administration Section"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	03-Dec-07	01-Feb-08	14000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	17-Dec-07 04:06 PM	

+="CN50293-A2"	"Contractors - Finance Section"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	03-Dec-07	14-Mar-08	37500.00	="05/ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	17-Dec-07 04:06 PM	

+="CN50289"	"Review of Finance Procedures"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Financial and Insurance Services"	29-Nov-07	28-Feb-08	14020.00	="07ACMA039"	="Alese Pty Ltd"	17-Dec-07 04:06 PM	

+="CN48094"	"Household Television Environment Research"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Market research"	30-Nov-07	31-Mar-08	117480.00	="07ACMA009"	="Woolcott Research Pty Ltd"	17-Dec-07 04:06 PM	

+="CN48119"	"Engineering Fitout of ACMA's Field Survey Measurement Vehicle"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Transportation engineering"	22-Nov-07	22-Jan-08	76340.00	="07ACMA033"	="Rohde & Schwarz (Aust) P/L"	17-Dec-07 04:06 PM	

+="CN47970"	"Contract Staff"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	21-Nov-07	18-Jan-08	12980.00	="05ACMA013"	="Hudson Global Resources (Aust) Pty Ltd"	17-Dec-07 04:06 PM	

+="CN50297"	"Usability Testing of ACMA Website"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="World wide web WWW site design services"	15-Dec-07	21-Dec-07	17498.25	=""	="Access Testing Pty Ltd"	17-Dec-07 04:06 PM	

+="CN51481"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	26-Nov-07	26-Dec-07	11401.80	=""	="R.G.M"	17-Dec-07 04:07 PM	

+="CN47820"	"Hire of Six Multifunction Devices - ACMA Central Offices"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Multifunction machines"	15-Nov-07	15-Feb-08	28512.00	=""	="Ricoh Business Centre"	17-Dec-07 04:07 PM	

+="CN47178"	"Engagement of Consultant for Microsoft Outlook Training"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Temporary personnel services"	08-Nov-07	23-Nov-07	21499.50	=""	="Priority Management Sydney Pty Ltd"	17-Dec-07 04:10 PM	

+="CN47182"	"Print 500 Copies of Media and Communications in Australian Families 2007"	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Printing"	15-Nov-07	15-Dec-07	19170.80	=""	="National Capital Printing"	17-Dec-07 04:10 PM	

+="CN51482"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	06-Nov-07	26-Nov-07	12901.02	=""	="ALLCOCK"	17-Dec-07 04:11 PM	

+="CN47171-A1"	" Conduct Staff Attitude Survey "	="Australian Communications and Media Authority (ACMA)"	17-Dec-07	="Human resources services"	09-Mar-07	08-Apr-07	48720.00	="06ACMA063"	="Orima Research Pty Ltd"	17-Dec-07 04:11 PM	

+="CN51483"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	05-Oct-07	30-Nov-07	23080.05	=""	="R.G.M"	17-Dec-07 04:15 PM	

+="CN51484"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	14-Aug-07	24-Aug-07	14388.44	=""	="ISA DIESEL & EARTHMOVING REPAIRS"	17-Dec-07 04:18 PM	

+="CN51485"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	21-Sep-07	04-Oct-07	18748.03	=""	="R.G.M"	17-Dec-07 04:23 PM	

+="CN51486"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	21-Sep-07	05-Nov-07	11464.90	=""	="HONEYCOMBES"	17-Dec-07 04:26 PM	

+="CN51487"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	10-Sep-07	28-Nov-07	14499.10	=""	="NORTHERN HARD SURFACES"	17-Dec-07 04:28 PM	

+="CN51488"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	03-Sep-07	20-Sep-07	14573.56	=""	="R.G.M"	17-Dec-07 04:31 PM	

+="CN51490"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	30-Aug-07	09-Nov-07	28097.98	=""	="MICKS AUTO (MC IMPORTS)"	17-Dec-07 04:35 PM	

+="CN51491"	"Election Advertising"	="Australian Electoral Commission"	17-Dec-07	="Advertising"	28-Nov-07	28-Dec-07	56505.90	=""	="HMA Blaze Pty Ltd"	17-Dec-07 04:35 PM	

+="CN51493"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	16-Aug-07	06-Sep-07	24079.69	=""	="R.G.M"	17-Dec-07 04:43 PM	

+="CN51494"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	14-Aug-07	27-Sep-07	36606.55	=""	="R.G.M"	17-Dec-07 04:48 PM	

+="CN51495"	" Cold Weather and Extreme Cold Weather Clothing Items "	="Defence Materiel Organisation"	17-Dec-07	="Insulated clothing for cold environments"	17-Dec-07	20-Dec-07	379621.00	="CC2007/16"	="Mainpeak Pty Ltd"	17-Dec-07 04:50 PM	

+="CN51496"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	17-Dec-07	="Motor vehicles"	06-Aug-07	27-Sep-07	38395.50	=""	="MICKS AUTOS (MC IMPORTS)"	17-Dec-07 04:51 PM	

+="CN51498"	"Cold Weather and Extreme Cold Weather Clothing Items"	="Defence Materiel Organisation"	17-Dec-07	="Insulated clothing for cold environments"	17-Dec-07	20-Dec-07	13838.00	="CC2007/17"	="Wilderness Wear"	17-Dec-07 04:56 PM	

+="CN51499"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1620 iAW Standing Offer PN7785."	="Defence Materiel Organisation"	17-Dec-07	="Aerospace systems and components and equipment"	17-Dec-07	31-Jan-08	54611.22	=""	="Goodrich Control Systems PTY LTD"	17-Dec-07 04:59 PM	

+="CN51500"	"management of the commonwealths portal project"	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	23-Nov-07	30-Jun-08	153120.00	=""	="Diacher Pty Ltd"	18-Dec-07 08:43 AM	

+="CN51501"	"Venue & Catering for CDAC"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	03-Oct-07	12-Dec-07	17083.00	=""	="The Trustee for Gillespie Trust"	18-Dec-07 09:01 AM	

+="CN51502"	"Delivery of Training"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	26-Nov-07	30-Jun-08	11321.70	="APS COMMISSION 2005/014"	="Saville and Holdsworth Australia"	18-Dec-07 09:01 AM	

+="CN51503"	"Research services"	="Australian Public Service Commission"	18-Dec-07	="Management advisory services"	07-Nov-07	29-Nov-07	54621.60	=""	="Orima Research Pty Ltd"	18-Dec-07 09:01 AM	

+="CN51505"	"Fraud control plan and associated training"	="Australian Public Service Commission"	18-Dec-07	="Business administration services"	19-Nov-07	31-Dec-07	48000.01	=""	="Ernst & Young"	18-Dec-07 09:02 AM	

+="CN51507"	"Annual Report printing"	="Australian Public Service Commission"	18-Dec-07	="Marketing and distribution"	21-Nov-07	21-Nov-07	16491.84	=""	="NCP t/a Blue Star Print Group"	18-Dec-07 09:02 AM	

+="CN51508"	"Indigenous Capability Fund 2007-08"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	22-Nov-07	30-Jun-08	42075.00	=""	="Medicare Australia"	18-Dec-07 09:02 AM	

+="CN51509"	"PSM Assessment"	="Australian Public Service Commission"	18-Dec-07	="Education and Training Services"	26-Nov-07	26-Nov-07	14919.30	=""	="Griffith University"	18-Dec-07 09:02 AM	

+="CN51510"	"Makegood Settlement"	="Australian Public Service Commission"	18-Dec-07	="Real estate services"	27-Nov-07	30-Nov-07	13200.00	=""	="CB Richard Ellis (A) Pty Ltd"	18-Dec-07 09:02 AM	

+="CN51506"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	09-Aug-07	25-Oct-07	32786.18	=""	="R.G.M"	18-Dec-07 09:02 AM	

+="CN51511"	"Printing of State of the Service Report and At a Glance Brochure"	="Australian Public Service Commission"	18-Dec-07	="Printing and publishing equipment"	28-Nov-07	10-Dec-07	36614.85	=""	="NCP t/a Blue Star Print Group"	18-Dec-07 09:02 AM	

+="CN51512"	"Temporary services - database administration"	="Australian Public Service Commission"	18-Dec-07	="Business administration services"	30-Nov-07	30-Nov-07	18155.89	=""	="Southern Cross Computing Pty Ltd"	18-Dec-07 09:02 AM	

+="CN51504"	"Subscription to Lead Manager & e-Premium"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	15-Dec-07	14-Dec-08	19732.90	=""	="BCI AUSTRALIA"	18-Dec-07 09:03 AM	

+="CN51513"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	11-Oct-07	25-Oct-07	14520.00	=""	="SCRATCH IT FIX IT"	18-Dec-07 09:05 AM	

+="CN51514"	" 9150 66 089 6558 Engine Lubricating Oil OMD 115 in 20L x 30 drums  9150 66 017 3041 Engine Lubricating Oil OMD 115 in 205L x 24 drums "	="Defence Materiel Organisation"	18-Dec-07	="Lubricants and oils and greases and anti corrosives"	17-Dec-07	07-Jan-08	17013.48	=""	="CALTEX"	18-Dec-07 09:07 AM	

+="CN51515"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	28-Sep-07	16467.00	=""	="MCLEODS"	18-Dec-07 09:08 AM	

+="CN51517"	"Ohmmeter BT51"	="Defence Materiel Organisation"	18-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	04-Feb-08	19783.50	=""	="MEGGER PTY LTD"	18-Dec-07 09:16 AM	

+="CN51520"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	16-Aug-07	04-Oct-07	15362.33	=""	="RGM MAINTENANCE"	18-Dec-07 09:22 AM	

+="CN51521"	"Locum Dr Murray Trubshaw services 19/11 - 28/1/08"	="Department of Transport and Regional Services"	18-Dec-07	="Medical practice"	17-Dec-07	28-Jan-08	44000.00	="TRS07/400"	="TRUBSHAW MEDICAL P/L"	18-Dec-07 09:23 AM	

+="CN51522"	"*TRS06/129 TRANSFER PIPELINE AGREEMENT 4338795/1 FOR INDIAN OCEAN TERRITORIES POWER AUTHORITY"	="Department of Transport and Regional Services"	18-Dec-07	="Transportation services equipment"	17-Dec-07	30-Jun-10	165000.00	="TRS06/129"	="INDIAN OCEAN OIL CO"	18-Dec-07 09:23 AM	

+="CN51523"	"Locum medical service for IOTHS CI & COCOS 19/11/2007 to 24/03/2008"	="Department of Transport and Regional Services"	18-Dec-07	="Medical practice"	14-Dec-07	24-Mar-08	73000.00	="TRS07/397"	="DR TREVOR PARR"	18-Dec-07 09:24 AM	

+="CN51524"	"Afreedman - contract services Sep/Oct 07"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	01-Sep-07	31-Oct-07	12100.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:24 AM	

+="CN51525"	"Insurance coverage for the Area Consultative Committee Network for Not For Profit Insurance"	="Department of Transport and Regional Services"	18-Dec-07	="Insurance and retirement services"	12-Dec-07	31-Mar-08	35000.00	="TRS07/395"	="MARSH PTY LTD"	18-Dec-07 09:24 AM	

+="CN51526"	"Licence fees - DSM & Variance Monitor Maintenance fees - DSM & Variance Monitor"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	21-Oct-07	20-Oct-08	72187.50	="TRS07/391"	="THE TRUSTEE FOR ANTZ SOFTWARE TRUST"	18-Dec-07 09:24 AM	

+="CN51527"	"Lease DSM & Variance Monitor"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	25-Jul-07	20-Oct-07	16500.00	="TRS07/392"	="THE TRUSTEE FOR ANTZ SOFTWARE TRUST"	18-Dec-07 09:24 AM	

+="CN51528"	"Recruitment services"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	17-Dec-07	27-Jun-08	72842.55	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:24 AM	

+="CN51529"	"SAP System Architect and Basis Services"	="Department of Transport and Regional Services"	18-Dec-07	="Software"	01-Nov-07	30-Jun-08	46200.00	="TRS06/038"	="INNOGENCE"	18-Dec-07 09:24 AM	

+="CN51531"	"Review of state-type services in the IOT"	="Department of Transport and Regional Services"	18-Dec-07	="Public administration and finance services"	10-Apr-07	28-Feb-08	363000.00	="MOU07/4081"	="Commonwealth Grants Commission"	18-Dec-07 09:24 AM	

+="CN51532"	"Recruitment Services"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	03-Dec-07	29-Feb-08	20000.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	18-Dec-07 09:25 AM	

+="CN51533"	"Test Manager"	="Department of Transport and Regional Services"	18-Dec-07	="Management advisory services"	02-Jan-07	30-Jun-08	110000.00	="T2004/0699"	="SMS Management & Technology"	18-Dec-07 09:25 AM	

+="CN51530"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	28-Jul-07	31-Jul-07	10582.00	=""	="TOWNSVILLE INDUSTRIAL COASTING"	18-Dec-07 09:25 AM	

+="CN51534"	"Contract Staff - Yve Dougall EL1"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	79071.30	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	

+="CN51535"	"Contract Staff - Susan Yeomans APS 6"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	68618.56	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	

+="CN51536"	"APS 5 Contractor - Lauren Brown"	="Department of Transport and Regional Services"	18-Dec-07	="Community and social services"	20-Nov-07	30-Jun-08	59610.21	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	18-Dec-07 09:25 AM	

+="CN51538"	"Purchase of 40kva UPS, Bypass Switch and cables."	="Defence Materiel Organisation"	18-Dec-07	="Auxiliary power unit systems APUs"	05-Oct-07	21-Dec-07	27940.00	=""	="Eaton Power Quality Pty Ltd"	18-Dec-07 09:35 AM	

+="CN51539"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	08-Aug-07	08-Oct-07	24770.20	=""	="RGM MAINTENANCE"	18-Dec-07 09:37 AM	

+="CN51537"	"Pool Vehicle Charges for November 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Nov-07	30-Nov-07	19582.13	=""	="LEASEPLAN AUSTRALIA LTD"	18-Dec-07 09:38 AM	

+="CN51540"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Dec-07	16-Jan-08	11761.81	=""	="ROVER AUTRALIA"	18-Dec-07 09:41 AM	

+="CN51541"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	14-Aug-07	12-Oct-07	46378.20	=""	="MC IMPORTS PTY LTD"	18-Dec-07 09:41 AM	

+="CN51543"	"systems support officer - sydney reg."	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	17-Dec-07	14-May-08	50688.00	=""	="Talent Int."	18-Dec-07 09:43 AM	

+="CN51544"	" METER HYDROGEN ION TEST - QTY 25  NSN 66-116-2979 "	="Defence Materiel Organisation"	18-Dec-07	="Temperature humidity testers"	17-Dec-07	21-Jan-08	18150.00	=""	="BIOLAB (AUST) PTY LTD"	18-Dec-07 09:45 AM	

+="CN51545"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Dec-07	16-Jan-08	10972.50	=""	="LANDROVER"	18-Dec-07 09:46 AM	

+="CN51548"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	17-Sep-07	25-Oct-07	36083.72	=""	="MC IMPORTS PTY LTD"	18-Dec-07 09:47 AM	

+="CN51549"	"For the Provision of 360 Degree Feedback and Reports"	="Child Support Agency"	18-Dec-07	="Business administration services"	09-Nov-06	31-Jan-08	76000.00	=""	="SHL Australia Pty Ltd"	18-Dec-07 09:50 AM	

+="CN51550"	"vehicle repairs"	="Department of Defence"	18-Dec-07	="Motor vehicles"	13-Sep-07	11-Dec-07	29155.97	=""	="RGM MAINTENANCE"	18-Dec-07 10:03 AM	

+="CN51551"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	25-Oct-07	36523.72	=""	="MC IMPORTS T/A MICKS AUTOMOTIVE & MC PANEL BEATING"	18-Dec-07 10:06 AM	

+="CN51553"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	21-Dec-07	19169.15	=""	="RGM MAINTENANCE"	18-Dec-07 10:13 AM	

+="CN51554"	"SNC Staff Engagement Survey"	="Australian Taxation Office"	18-Dec-07	="Market research"	11-Dec-07	11-Jan-08	12000.00	=""	="Orima Research Pty Ltd"	18-Dec-07 10:14 AM	

+="CN51557"	"Joint Funding MOU"	="Department of the Environment and Water Resources"	18-Dec-07	="Community and social services"	11-Oct-06	30-Jun-09	123750.00	=""	="Environment Protection Authority"	18-Dec-07 10:20 AM	

+="CN51542"	"Pool Vehicle Charges for December 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Dec-07	31-Dec-07	16715.77	=""	="LEASEPLAN AUSTRALIA LTD"	18-Dec-07 10:23 AM	

+="CN51558"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	12-Sep-07	16-Nov-07	18476.70	=""	="MC IMPORTS PTY LTD"	18-Dec-07 10:23 AM	

+="CN51561"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	05-Jul-07	03-Oct-07	57728.00	=""	="MC IMPORTS"	18-Dec-07 10:27 AM	

+="CN51565-A1"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	23-Aug-07	21-Dec-07	83793.90	=""	="RGM MAINTENANCE"	18-Dec-07 10:30 AM	

+="CN51563"	"Motor Vehicle Parts."	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Dec-07	02-Jan-08	10665.20	=""	="Acme Fluid Handling"	18-Dec-07 10:31 AM	

+="CN51560"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	28-Aug-07	24-Sep-07	17948.54	=""	="CLAYTON UTZ"	18-Dec-07 10:31 AM	

+="CN51567"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	18-Dec-07	="Aircraft"	18-Dec-07	07-Jan-08	20999.29	=""	="SIKORSKY AIRCRAFT AUST LTD"	18-Dec-07 10:34 AM	

+="CN51569"	"VEHICLE REPAIRS`"	="Department of Defence"	18-Dec-07	="Motor vehicles"	27-Sep-07	21-Dec-07	19159.25	=""	="RGM MAINTENANCE"	18-Dec-07 10:36 AM	

+="CN51572"	"Motor Vehicle Parts."	="Department of Defence"	18-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	05-Dec-07	05-Jan-08	27607.36	=""	="MILSPEC Manufacturing"	18-Dec-07 10:39 AM	

+="CN51457"	"Repair of Aircrafts Parts"	="Defence Materiel Organisation"	18-Dec-07	="Aircraft"	17-Dec-07	06-Jan-08	11068.44	=""	="SIKORSKY AIRCRAFT AUST LTD"	18-Dec-07 10:39 AM	

+="CN51573"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	21-Sep-07	25-Oct-07	39119.72	=""	="MC IMPORTS"	18-Dec-07 10:41 AM	

+="CN51574"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	29-Aug-07	27-Sep-07	20717.62	=""	="TOWNSVILLE IND. PAINT & COATING PTY LTD"	18-Dec-07 10:45 AM	

+="CN51575-A7"	" Accommodation Brokering Services  "	="Australian Taxation Office"	18-Dec-07	="Hotels and motels and inns"	04-Apr-05	03-Apr-11	24055693.00	=""	="The Trustee for the Hotel Network Unit Trust t/a The Hotel Network (GARRS)"	18-Dec-07 10:46 AM	

+="CN51571"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	25-Sep-07	25-Oct-07	16261.48	=""	="CLAYTON UTZ"	18-Dec-07 10:48 AM	

+="CN51576"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	22-Aug-07	08-Oct-07	47542.90	=""	="VOLVO COMMERCIAL VEHICLES"	18-Dec-07 10:48 AM	

+="CN51577"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	09-Nov-07	03-Dec-07	27823.68	=""	="MC IMPORTS"	18-Dec-07 10:50 AM	

+="CN51579"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	09-Nov-07	21-Nov-07	46267.45	=""	="VOLVO COMMERCIAL VEHICLES"	18-Dec-07 10:54 AM	

+="CN51578"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	22-Aug-07	28-Sep-07	10634.77	=""	="CLAYTON UTZ"	18-Dec-07 10:55 AM	

+="CN51581"	"AIRCRAFT SPARES:QTY 50::NSN 5365-01-092-7491::SHIM,COUPLING."	="Defence Materiel Organisation"	18-Dec-07	="Military rotary wing aircraft"	18-Dec-07	18-Oct-08	15543.55	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	18-Dec-07 11:09 AM	

+="CN51580"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	03-Sep-07	28-Sep-07	17411.03	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Dec-07 11:10 AM	

+="CN51583"	"SEA MARKER FLUORESCEIN"	="Defence Materiel Organisation"	18-Dec-07	="Life vests or preservers"	19-Jun-07	07-Sep-07	12650.00	=""	="PAINS WESSEX"	18-Dec-07 11:15 AM	

+="CN51584"	"Preparation of ABCC 2006/07 Annual Report - Phase 3 - Print Management."	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	21-Nov-07	21-Nov-07	14184.50	=""	="SALT CREATIVE PTY LTD"	18-Dec-07 11:18 AM	

+="CN51585"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business administration services"	01-Oct-07	31-Oct-07	16287.09	=""	="OFFICEMAX AUSTRALIA LTD"	18-Dec-07 11:27 AM	

+="CN51587"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	18-Dec-07	08-Jan-08	12986.69	=""	="MERCEDES-BENZ PTY LTD"	18-Dec-07 11:32 AM	

+="CN51586"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	01-Nov-07	06-Nov-07	12566.00	=""	="MICHAEL GREEN PTY LTD"	18-Dec-07 11:34 AM	

+="CN51588"	"Technical Support Officer"	="Family Court of Australia"	18-Dec-07	="Temporary technician staffing needs"	02-Jan-08	31-Dec-08	187748.00	=""	="Fronteir Group Australia Pty Ltd"	18-Dec-07 11:34 AM	

+="CN51589"	" NSN 1610/00-628-6437  PURCHASE OF LOCK, FEATHER  INCL GST "	="Defence Materiel Organisation"	18-Dec-07	="Military transport aircraft"	13-Dec-07	28-Dec-07	10737.65	=""	="Milspec Services Pty Ltd"	18-Dec-07 11:35 AM	

+="CN51590"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	10-Sep-07	28-Nov-07	14576.10	=""	="NORTHERN HARD SURFACES"	18-Dec-07 11:36 AM	

+="CN51591"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Dec-07	="Business law services"	23-Oct-07	26-Oct-07	11600.00	=""	="MICHAEL GREEN PTY LTD"	18-Dec-07 11:44 AM	

+="CN51595"	"Battery Storage with square posts."	="Defence Materiel Organisation"	18-Dec-07	="Batteries and generators and kinetic power transmission"	18-Dec-07	26-Mar-08	21327.90	="RFQ G6193"	="Advanced Power (NSW) Pty Ltd"	18-Dec-07 11:44 AM	

+="CN51594"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	09-Aug-07	16412.84	=""	="R.G.M"	18-Dec-07 11:44 AM	

+="CN51599"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	04-Aug-07	09-Aug-07	16856.14	=""	="R.G.M"	18-Dec-07 11:50 AM	

+="CN51598"	"Pressure Calibrator + Moisture Trap"	="Defence Materiel Organisation"	18-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	18-Dec-08	16831.10	=""	="Biolab Australia Pty Ltd"	18-Dec-07 11:50 AM	

+="CN51600"	"Management Consultancy Services"	="Australian Electoral Commission"	18-Dec-07	="Business and corporate management consultation services"	11-Nov-07	06-Dec-07	17916.30	=""	="Tanner James"	18-Dec-07 11:51 AM	

+="CN51604"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	08-Aug-07	31-Oct-07	19453.17	=""	="MCLEODS"	18-Dec-07 11:56 AM	

+="CN51610"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	27-Jul-07	31-Oct-07	12911.25	=""	="TOWNSVILLE INDUSTRIAL COATING"	18-Dec-07 12:08 PM	

+="CN51612"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	25-May-07	27-Jul-07	10607.39	=""	="D.M.E DIESEL MOTORS ENG"	18-Dec-07 12:14 PM	

+="CN51613-A2"	"Provision of Staff Grievance and Code of Conduct investigate services for CRS Australia"	="CRS Australia"	18-Dec-07	="Management advisory services"	02-Nov-07	11-Mar-11	90333.33	=""	="Quality Management Services"	18-Dec-07 12:21 PM	

+="CN51614"	"Ratchet Turnbuckles 12 Ton & 6.5T for securing heavy loads"	="Department of Defence"	18-Dec-07	="Shackles"	13-Dec-07	04-Feb-08	24832.50	=""	="Noble & Son Ltd"	18-Dec-07 12:29 PM	

+="CN51606"	"Provision of D shackles to secure loads to Trailers,Train etc"	="Department of Defence"	18-Dec-07	="Shackles"	13-Dec-07	08-Jan-08	12364.99	=""	="BULLIVANTS PTY LTD"	18-Dec-07 12:37 PM	

+="CN51615"	"HELMETS MOTORCYCLE REQUIRED FOR COURSES"	="Department of Defence"	18-Dec-07	="Motorcycle helmets"	23-Oct-07	30-Oct-07	16500.00	=""	="PRECISION HONDA"	18-Dec-07 12:44 PM	

+="CN51616"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	25-May-07	30-Jul-07	11079.00	=""	="D.M.E DIESEL MOTORS ENG"	18-Dec-07 12:50 PM	

+="CN51617"	"Transmitter, Liquid Quantity NSN: 6680-00-767-1635 Qty 250"	="Defence Materiel Organisation"	18-Dec-07	="Armoured fighting vehicles"	18-Dec-07	08-Feb-10	11000.00	=""	="A&D International Pty Ltd"	18-Dec-07 01:02 PM	

+="CN51618"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	27-Apr-07	10-Oct-07	16316.42	=""	="FLEET FUEL & ENGINEERING"	18-Dec-07 01:06 PM	

+="CN51619"	"VEHICLE REPAIRS"	="Defence Materiel Organisation"	18-Dec-07	="Motor vehicles"	28-May-07	12-Oct-07	15664.54	=""	="HITACHI"	18-Dec-07 01:10 PM	

+="CN51620-A3"	"Provision of Web Developement Services"	="CRS Australia"	18-Dec-07	="Computer programmers"	02-Jan-08	30-Jun-09	255622.14	=""	="Exclaim IT Pty Ltd"	18-Dec-07 01:11 PM	

+="CN51621"	"AIRCRAFT SPARES::QTY-1000 Ft::NSN 6145-66-131-1819::WIRE, ELECTRICAL."	="Defence Materiel Organisation"	18-Dec-07	="Military rotary wing aircraft"	18-Dec-07	30-Dec-07	10230.00	=""	="MILSPEC SERVICES"	18-Dec-07 01:16 PM	

+="CN51623"	" IT Security Services  "	="Department of the Prime Minister and Cabinet"	18-Dec-07	="Computer or network or internet security"	01-Jul-07	30-Jun-08	60000.00	=""	="Oakton AA Services Pty Lmited"	18-Dec-07 01:43 PM	

+="CN51625"	"vehicle repairs"	="Department of Defence"	18-Dec-07	="Motor vehicles"	12-Dec-07	21-Dec-07	16670.81	=""	="HITACHI"	18-Dec-07 02:24 PM	

+="CN51627"	"VEHICLE REPAIRS"	="Department of Defence"	18-Dec-07	="Motor vehicles"	04-Oct-07	21-Dec-07	15719.93	=""	="RGM MAINTENANCE"	18-Dec-07 02:46 PM	

+="CN51628"	"Med Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	21-Dec-07	42032.46	=""	="Johnson & Johnson Medical"	18-Dec-07 02:51 PM	

+="CN51629"	"Upgrade the Handrails at Questacon Parkes Facility"	="Questacon"	18-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Nov-07	31-Mar-08	102890.00	=""	="ACT Stainless Steel and Catering Equipment"	18-Dec-07 02:57 PM	

+="CN51631"	"Med Consumables For ADF "	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	11-Jan-08	14617.13	=""	="Vasyli Australia Pty Ltd"	18-Dec-07 02:57 PM	

+="CN51633"	" Provide design and tender documentation for lighting and media systems at Questacon  "	="Questacon"	18-Dec-07	="Technical diagrams or drawings"	02-Nov-07	30-Jun-08	34848.00	=""	="Mitech Design"	18-Dec-07 03:03 PM	

+="CN51632"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	21-Jan-08	18617.50	=""	="LMA pacmed Pty Ltd"	18-Dec-07 03:03 PM	

+="CN51634"	"Medical Consumables For ADF "	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	11-Jan-08	18040.00	=""	="Midmed Pty Ltd"	18-Dec-07 03:07 PM	

+="CN51636"	"Audio Design Services for Questacon Parkes Facility"	="Questacon"	18-Dec-07	="Audio and visual equipment"	02-Nov-07	30-Jun-08	20064.00	=""	="Auditoria"	18-Dec-07 03:13 PM	

+="CN51637-A1"	"Airfares"	="Defence Materiel Organisation"	18-Dec-07	="Passenger transport"	07-Sep-07	07-Sep-07	13018.85	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	

+="CN51638-A1"	"Airfares"	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	02-Oct-07	02-Oct-07	12602.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	

+="CN51639"	"MRH90 PMR Bris, AWB with AAvnTC, DACI, 16 BDE"	="Defence Materiel Organisation"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	11-Nov-07	11-Nov-07	12711.88	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	

+="CN51640"	"Attending and evaluating Project JP2044 Critical Design Review."	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	16-Nov-07	19-Nov-07	11016.19	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	

+="CN51641"	"Attending and evaluating Project JP2044 Critical Design Review."	="Defence Materiel Organisation"	18-Dec-07	="Travel facilitation"	16-Nov-07	19-Nov-07	11016.19	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 03:20 PM	

+="CN51642"	"REGO # 048/08REDSIM (DIS) SOFTWARE FOR PHASE 5"	="Defence Materiel Organisation"	18-Dec-07	="Surveillance and detection equipment"	28-Nov-07	28-Nov-07	11473.59	=""	="ADVANCED SIMULATION TECHN"	18-Dec-07 03:20 PM	

+="CN51635"	"Merdical Consumables For ADF"	="Defence Materiel Organisation"	18-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	25-Dec-07	15213.60	=""	="B. Braun Australia Pty Ltd"	18-Dec-07 03:22 PM	

+="CN51646"	"Design Facilitation for Super Simplification Project"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	140000.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	18-Dec-07 03:59 PM	

+="CN51647-A3"	"Design Facilitation - Integrated Design Solution & new policy design"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Nov-08	203200.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	18-Dec-07 04:07 PM	

+="CN51648"	"Information design - Income Tax Expansion Program"	="Australian Taxation Office"	18-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	12-Jan-08	30000.00	="05.164"	="Capgemini Australia Pty Ltd"	18-Dec-07 04:14 PM	

+="CN51649"	"Printing of NAT12053 & NAT12054  - 3,000 each"	="Australian Taxation Office"	18-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Dec-07	22-Jan-08	14395.70	="06.030"	="Paragon Printers"	18-Dec-07 04:21 PM	

+="CN51650"	"Tracking/Audio Device"	="Australian Crime Commission"	18-Dec-07	="Surveillance and detection equipment"	05-Dec-07	24-Dec-07	77649.00	=""	="Geonautics International"	18-Dec-07 04:24 PM	

+="CN51651"	"photocopier charges"	="Australian Crime Commission"	18-Dec-07	="Photocopiers"	01-Aug-07	30-Jun-08	18100.00	=""	="Fuji Xerox Australia Pty Ltd"	18-Dec-07 04:29 PM	

+="CN51652"	" Airfares "	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Aug-07	07-Aug-07	10031.94	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	

+="CN51653"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Aug-07	07-Aug-07	10031.94	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	

+="CN51654"	"EX PLANNING"	="Department of Defence"	18-Dec-07	="Passenger transport"	14-Aug-07	14-Aug-07	10508.50	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:36 PM	

+="CN51655"	"CDSS ANZST 2007 - Accommodation Melbourne"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	10-Sep-07	10-Sep-07	15000.00	=""	="STAMFORD PLAZA MELBOURNE"	18-Dec-07 04:36 PM	

+="CN51656"	"CDSS ANZST 2007 - Accommodation Melbourne"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	10-Sep-07	10-Sep-07	12053.87	=""	="STAMFORD PLAZA MELBOURNE"	18-Dec-07 04:36 PM	

+="CN51658"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	18-Sep-07	18-Sep-07	10582.38	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	

+="CN51659"	"CDSS ANZST 2007 - Accommodation New Zealand"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	24-Sep-07	24-Sep-07	21655.72	=""	="HOTEL INTER-CONTINENTAL WGTN,WE"	18-Dec-07 04:37 PM	

+="CN51660"	"Overseas air fare - incorrectly charged"	="Department of Defence"	18-Dec-07	="Travel facilitation"	09-Oct-07	09-Oct-07	17554.61	=""	="DEBIT PREVIOUS REF:00443710"	18-Dec-07 04:37 PM	

+="CN51657"	"Operating costs lease plan vehicles"	="Australian Crime Commission"	18-Dec-07	="Motor vehicles"	01-Dec-07	31-Dec-07	12641.07	=""	="Leaseplan"	18-Dec-07 04:37 PM	

+="CN51661"	"Air fares Canberra-St Petersburg-Vienna-Canberra"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10598.84	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	

+="CN51662"	"Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	28153.29	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	

+="CN51663"	"Airfares"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	16-Oct-07	16-Oct-07	10610.26	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	

+="CN51664"	"Ian Sare 19 Oct - 1 Nov 2007 USA - AIRFARES"	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	16576.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:37 PM	

+="CN51665"	"Airfares"	="Department of Defence"	18-Dec-07	="Travel facilitation"	19-Oct-07	19-Oct-07	10012.63	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51666"	"Simon Clarkson, DCA Trip to OP PALADIN, Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	12592.21	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51667"	"Attend TTCP KTA 8.1 and 8.2 mmetings + site visits to Farnbourgh UK and Dayton US for collaboration meetings and updates."	="Department of Defence"	18-Dec-07	="Passenger transport"	19-Oct-07	19-Oct-07	10987.68	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51668"	"PRN: LCT 07/08-074 - MAJGEN Mark KellyVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51669"	"PRN: LCT 07/08-076 - WO1 Stephen WardVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51670"	"International airfares"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	02-Nov-07	11259.09	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51671"	"PRN: LCT 07/08-075 - LTCOL Michael MahyVisit to MEAO29 October to 08 November 2007ACMS-1489411"	="Department of Defence"	18-Dec-07	="Transport operations"	02-Nov-07	02-Nov-07	10062.70	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51672"	"20-07/08 MEAO"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	06-Nov-07	06-Nov-07	13423.09	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51673"	"CAF MEAO Visit"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	14-Nov-07	10516.40	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51674"	"Qantas Travel to Hawaii for Trilat Agreement Meeting"	="Department of Defence"	18-Dec-07	="Passenger transport"	07-Nov-07	07-Nov-07	10419.18	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:38 PM	

+="CN51675"	"Meetings in US/UK"	="Department of Defence"	18-Dec-07	="Passenger transport"	13-Nov-07	13-Nov-07	12858.00	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	

+="CN51676"	"EX VITAL LAUNCH 08 (11-16 NOV 07) - FISHER - GROUP ACCOMMODATION"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	16-Nov-07	10375.00	=""	="METRO INN TOWER MILL"	18-Dec-07 04:39 PM	

+="CN51677"	"Simon Clarkson, AIJAC Trip Airfares"	="Department of Defence"	18-Dec-07	="Passenger transport"	13-Nov-07	13-Nov-07	11808.12	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	

+="CN51678"	"Attend CT Training Conferences/Meetings - ACMS-1320891"	="Department of Defence"	18-Dec-07	="Travel facilitation"	14-Nov-07	14-Nov-07	12779.49	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	

+="CN51679"	"Attend CT Training Conferences/Meetings - ACMS-1320891"	="Department of Defence"	18-Dec-07	="Travel facilitation"	20-Nov-07	20-Nov-07	12858.20	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	

+="CN51680"	"airfares Cbr-Russia rtn"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	21-Nov-07	21-Nov-07	10826.80	=""	="QANTAS AIRWAYS LIMITED"	18-Dec-07 04:39 PM	

+="CN51681"	"ARH Tiger Trial - Task E2845"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	29-Nov-07	29-Nov-07	12057.14	=""	="EUREST NO 1"	18-Dec-07 04:39 PM	

+="CN51682"	"FPC PR07"	="Department of Defence"	18-Dec-07	="International relations"	11-Sep-07	11-Sep-07	13646.54	=""	="HILTON HOTELS"	18-Dec-07 04:39 PM	

+="CN51683"	"Accommodation - Op Deluge"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	13-Sep-07	14-Sep-07	13681.80	=""	="WALDORF APARTMNT HOTE"	18-Dec-07 04:39 PM	

+="CN51684"	"Training Pool Kit"	="Department of Defence"	18-Dec-07	="Refuse disposal and treatment"	21-Sep-07	21-Sep-07	18695.82	=""	="ABOVE GROUND POOL SALE"	18-Dec-07 04:40 PM	

+="CN51685"	"CONVERSION TRG - CAPT WHEELER"	="Department of Defence"	18-Dec-07	="Aircraft"	25-Sep-07	01-Nov-07	11597.38	=""	="AIR GOLD COAST PL"	18-Dec-07 04:40 PM	

+="CN51686"	"Provide professional development training for DPIM and DCORRD staff 12-14 Nov 07"	="Department of Defence"	18-Dec-07	="Education and Training Services"	11-Oct-07	14-Nov-07	11022.00	=""	="ARKGROUPAUSTRALIA"	18-Dec-07 04:40 PM	

+="CN51687"	"Purchase of Audio Visual equipment for welfare amenities"	="Department of Defence"	18-Dec-07	="Information Technology Broadcasting and Telecommunications"	10-Oct-07	10-Oct-07	12918.43	=""	="VIRGIN"	18-Dec-07 04:40 PM	

+="CN51688"	"Outdoor Furniture"	="Department of Defence"	18-Dec-07	="Furniture and Furnishings"	10-Oct-07	10-Oct-07	12083.44	=""	="EXPEDITION TRADING & SERV"	18-Dec-07 04:40 PM	

+="CN51689"	"Funeral"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	10359.10	=""	="TOBIN BROTHERS 347"	18-Dec-07 04:40 PM	

+="CN51690"	"PRODUCTION PRINT LWP-G 0-1-7 x 4,300 COPIES.  AS PER PRESS HERE QUOTE:  6,292 DATED 04/07/07.  TRACKING NUMBER:  DPS07/087 - DPC 3209"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	25-Oct-07	21941.70	=""	="Press Here Pty Ltd"	18-Dec-07 04:40 PM	

+="CN51691"	"Paint Course - Barrier Reef TAFE"	="Department of Defence"	18-Dec-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	26-Oct-07	16500.00	=""	="BARRIER REEF INSTITU"	18-Dec-07 04:40 PM	

+="CN51692"	"GATEWAY CHARGES"	="Department of Defence"	18-Dec-07	="Telecommunications media services"	24-Oct-07	24-Oct-07	10870.64	=""	="SECURENET LTD"	18-Dec-07 04:40 PM	

+="CN51693"	"AVTUR FUEL FOR AP-3C"	="Department of Defence"	18-Dec-07	="Fuels"	19-Oct-07	19-Oct-07	45988.48	=""	="MINAMI AIRPORT SERVICE"	18-Dec-07 04:41 PM	

+="CN51694"	"New Delhi - The Park Hotel - Accommodation"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	28-Oct-07	28-Oct-07	13005.92	=""	="PARK HOTEL"	18-Dec-07 04:41 PM	

+="CN51695"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	28-Oct-07	30-Oct-07	86246.39	=""	="MADANG RESORT HOTEL"	18-Dec-07 04:41 PM	

+="CN51696"	"CERT IV IN TRAINING AND ASSESSMENT COURSE - CONDUCTED AT TOWNSVILLE 29 Oct - 2 Nov 07."	="Department of Defence"	18-Dec-07	="Education and Training Services"	30-Oct-07	30-Oct-07	14550.00	=""	="PROSKILLS"	18-Dec-07 04:41 PM	

+="CN51697"	"Accommodation Bangkok"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	29-Oct-07	29-Oct-07	18738.68	=""	="DUSIT THANI HOTEL"	18-Dec-07 04:41 PM	

+="CN51698"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	23-Oct-07	30-Oct-07	39826.90	=""	="MADANG RESORT HOTEL"	18-Dec-07 04:41 PM	

+="CN51699"	"Conference"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	02-Nov-07	02-Nov-07	10103.00	=""	="BELLINZONA GRANGE"	18-Dec-07 04:41 PM	

+="CN51700"	"26/11/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Healthcare Services"	02-Nov-07	02-Nov-07	15802.17	=""	="BRISBANE NTH PODIATRY P/L"	18-Dec-07 04:41 PM	

+="CN51701"	"Visit to Australia by LTGEN Robert Bertholee VCDF Netherlands19 - 26 August 2007 Guest of LTGEN Gillespie"	="Department of Defence"	18-Dec-07	="Transport operations"	31-Oct-07	31-Oct-07	11864.07	=""	="SECURITY TRANSPORT S"	18-Dec-07 04:41 PM	

+="CN51702"	"ACCOM FOR HL 2007 PNG"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	31-Oct-07	31-Oct-07	11757.02	=""	="HOLIDAY INN PORT MORESBY"	18-Dec-07 04:41 PM	

+="CN51703"	"22/11/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	01-Nov-07	01-Nov-07	10144.00	=""	="QLD FERTILITY GROUP PT"	18-Dec-07 04:42 PM	

+="CN51704"	"PAYMENT FOR THE MONTH OF SEPTEMBER BY CPL DAVE WEEKLEY"	="Department of Defence"	18-Dec-07	="Aircraft equipment"	02-Nov-07	02-Nov-07	12161.68	=""	="J BLACKWOOD & SON LTD"	18-Dec-07 04:42 PM	

+="CN51705"	"Goods"	="Department of Defence"	18-Dec-07	="Food and Beverage Products"	05-Nov-07	05-Nov-07	40865.53	=""	="RICHARD FADER PTY LTD"	18-Dec-07 04:42 PM	

+="CN51706"	"Goods"	="Department of Defence"	18-Dec-07	="Food and Beverage Products"	05-Nov-07	05-Nov-07	33343.09	=""	="RICHARD FADER PTY LTD"	18-Dec-07 04:42 PM	

+="CN51707"	"PAYMENT OF ACCOMMODATION FOR CTF158 STAFF AT THE RADISSON"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	06-Nov-07	06-Nov-07	25854.25	=""	="THE DIPLOMAT RADISSON"	18-Dec-07 04:42 PM	

+="CN51708"	"Medical / Dental Services"	="Department of Defence"	18-Dec-07	="Comprehensive health services"	09-Nov-07	09-Nov-07	12344.12	=""	="OPSM 8921"	18-Dec-07 04:42 PM	

+="CN51709"	"JLG Conference October 2007"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	09-Nov-07	09-Nov-07	19193.80	=""	="Aitken Hill Conference"	18-Dec-07 04:42 PM	

+="CN51710"	"Accommodation ARES CM LOPS component"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	08-Nov-07	09-Nov-07	39820.00	=""	="PINNACLE APARTMENTS"	18-Dec-07 04:42 PM	

+="CN51711"	"Provision of Group Accommodation and Facilities Hire (3 Aircraft + 50mbrs). 723 SQN Mountain Flying Exercise."	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	12-Nov-07	12-Nov-07	11179.45	=""	="NSW DEPT SPRT&REC FIN"	18-Dec-07 04:42 PM	

+="CN51712"	"Accommodation - LIMA 07"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	12-Nov-07	12-Nov-07	13168.30	=""	="MSL TRAVEL-EDC/PENANG"	18-Dec-07 04:43 PM	

+="CN51713"	"03/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	14-Nov-07	14-Nov-07	13845.19	=""	="OPSM 8921"	18-Dec-07 04:43 PM	

+="CN51714"	"Pre payment for hire of Hemisphere premises for GPSL Residential conference held 19-23 Nov 2007"	="Department of Defence"	18-Dec-07	="Business and corporate management consultation services"	13-Nov-07	13-Nov-07	17000.00	=""	="HOLMESGLEN INSTITUTE"	18-Dec-07 04:43 PM	

+="CN51715"	"CONVERSION TRG - CAPT WHEELER"	="Department of Defence"	18-Dec-07	="Aircraft"	15-Nov-07	22-Nov-07	14323.32	=""	="AIR GOLD COAST PL"	18-Dec-07 04:43 PM	

+="CN51716"	"airfare cost for 133 ACU - CIA."	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	14-Nov-07	19-Nov-07	13193.26	=""	="HARVEY WORLD TRAVEL"	18-Dec-07 04:43 PM	

+="CN51717"	"Accomodation - CHINA ICT - Sept/Oct 07"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	15-Nov-07	15-Nov-07	15152.55	=""	="KUNTAI ROYAL HOTEL BEIJIN"	18-Dec-07 04:43 PM	

+="CN51720"	"ETD-SC Sydney Transition Seminar 20-22 Nov 07"	="Department of Defence"	18-Dec-07	="Educational facilities"	19-Nov-07	19-Nov-07	11770.00	=""	="POWERHOUSE PNP"	18-Dec-07 04:43 PM	

+="CN51718"	"Contract Labour Hire"	="Department of the Prime Minister and Cabinet"	18-Dec-07	="Application programming services"	01-Sep-07	31-Jan-08	79200.00	=""	="PAXUS Australia Pty Ltd"	18-Dec-07 04:44 PM	

+="CN51721"	"National Conference 18-19 Nov Melb - Conference package including acc, meals and facility hire for 32"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	19-Nov-07	13824.50	=""	="AIRPORT MOTEL RECEPTI"	18-Dec-07 04:44 PM	

+="CN51722"	"I/ITSEC 2007 - Booth Hire"	="Department of Defence"	18-Dec-07	="Office Equipment and Accessories and Supplies"	20-Nov-07	20-Nov-07	22899.08	=""	="BREDE ALLIED CONVENTION"	18-Dec-07 04:44 PM	

+="CN51723"	"Monthly bill for Office max"	="Department of Defence"	18-Dec-07	="Office supplies"	21-Nov-07	21-Nov-07	12149.14	=""	="NATIONAL OFFICE PRODUC"	18-Dec-07 04:44 PM	

+="CN51724"	"Purchase"	="Department of Defence"	18-Dec-07	="Office machines and their supplies and accessories"	23-Nov-07	23-Nov-07	11220.00	=""	="GBC FORDIGRAPH PTY LTD"	18-Dec-07 04:44 PM	

+="CN51725"	"Accommodation for LSE during Muscat PVST"	="Department of Defence"	18-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	22-Nov-07	22-Nov-07	14344.87	=""	="SHANGRI-LA"	18-Dec-07 04:44 PM	

+="CN51726"	"Accommodation - Langkawi international maritime airshow 2007"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	26-Nov-07	26-Nov-07	12343.79	=""	="MSL TRAVEL-EDC/PENANG"	18-Dec-07 04:44 PM	

+="CN51727"	"Invoice:13972  Helicopter Flying time to su[pport environ monitoring BFTA on: 29Oct, 30Oct, 31Oct, 01Nov & 02Nov07"	="Department of Defence"	18-Dec-07	="Air transportation support systems and equipment"	28-Nov-07	28-Nov-07	17096.20	=""	="JAYROW HELICOPTERS"	18-Dec-07 04:44 PM	

+="CN51728"	"06/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	23000.00	=""	="DAVID THOMSON"	18-Dec-07 04:44 PM	

+="CN51729"	"06/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	16872.90	=""	="BRISBANE NTH PODIATRY P/L"	18-Dec-07 04:44 PM	

+="CN51730"	"MSA Bandicoot accommodation"	="Department of Defence"	18-Dec-07	="Hotels and lodging and meeting facilities"	28-Nov-07	29-Nov-07	10000.00	=""	="JERVIS BAY DOLPHIN SHO"	18-Dec-07 04:44 PM	

+="CN51731"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	10145.00	=""	="DR TUAN VAN PHAM"	18-Dec-07 04:45 PM	

+="CN51732"	"Professional scribing APS4 positions 19 Nov 07"	="Department of Defence"	18-Dec-07	="Writing and translations"	30-Nov-07	30-Nov-07	11789.78	=""	="EFFECTIVE PEOPLE"	18-Dec-07 04:45 PM	

+="CN51733"	"05/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	29-Nov-07	29-Nov-07	11541.24	=""	="ST ANDREWS HOSPITAL"	18-Dec-07 04:45 PM	

+="CN51734"	"NCC 199 - NAVY SYMPOSIUM PRESENTATION ITEMS"	="Department of Defence"	18-Dec-07	="Marketing and distribution"	30-Nov-07	10-Dec-07	13061.01	=""	="SALT SHOP"	18-Dec-07 04:45 PM	

+="CN51735"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	12190.95	=""	="ST JOHN OF GOD HOSPIT"	18-Dec-07 04:45 PM	

+="CN51736"	"Visit to Australia by GEN SIr Timothy Granville-ChapmanVice Chief of the Defence Staff United Kingdom 29 Oct to 7 Nov 07"	="Department of Defence"	18-Dec-07	="Travel facilitation"	29-Nov-07	29-Nov-07	12327.44	=""	="SECURITY TRANSPORT S"	18-Dec-07 04:45 PM	

+="CN51737"	"Health Costs"	="Department of Defence"	18-Dec-07	="Patient care and treatment products and supplies"	29-Nov-07	29-Dec-07	20440.10	=""	="ST JOHN OF GOD SU"	18-Dec-07 04:45 PM	

+="CN51738"	"TR102/07-08 OP PNG ASSIST"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	05-Dec-07	05-Dec-07	16860.42	=""	="TUFI DIVE RESORT"	18-Dec-07 04:45 PM	

+="CN51740"	"TR102/07-08 OP PNG ASSIST"	="Department of Defence"	18-Dec-07	="Travel and Food and Lodging and Entertainment Services"	10-Dec-07	10-Dec-07	33214.68	=""	="TUFI DIVE RESORT"	18-Dec-07 04:46 PM	

+="CN51741"	"ALAN PATCHING FOR HNA DELIVERY RETREAT 19-21 NOV 07"	="Department of Defence"	18-Dec-07	="Vocational training"	13-Nov-07	21-Nov-07	15530.67	=""	="Saxton Management Grp"	18-Dec-07 04:46 PM	

+="CN51742"	"14/12/07 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	18-Dec-07	="Medical practice"	12-Dec-07	12-Dec-07	14589.00	=""	="ST ANDREWS HOSPITAL"	18-Dec-07 04:46 PM	

+="CN51743"	"Provision of internal audit services"	="Australian Crime Commission"	18-Dec-07	="Audit services"	01-Jul-07	30-Jun-08	80000.00	=""	="Deloitte Touche Tohmatsu"	18-Dec-07 04:50 PM	

+="CN51744"	" AIRCRAFT SPARES  NSN 5340-01-417-1082  CLAMP, LOOP  QTY 50 "	="Defence Materiel Organisation"	18-Dec-07	="Military transport helicopters"	18-Dec-07	10-Jun-08	12980.00	=""	="ASIA PACIFIC AEROSPACE"	18-Dec-07 04:50 PM	

+="CN51745"	" Legal services "	="Australian Crime Commission"	18-Dec-07	="Legal services"	10-Dec-07	24-Dec-07	11000.00	=""	="Blake Dawson Waldron"	18-Dec-07 04:54 PM	

+="CN51746"	"URN, MULTIPOT PLASTIC 22L"	="Defence Materiel Organisation"	18-Dec-07	="Liquid containers"	17-Dec-07	15-Mar-08	84960.00	="J7785"	="COMCATER INTERNATIONAL PTY LTD"	18-Dec-07 04:55 PM	

+="CN51747"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1545 against standing offer PN7785"	="Defence Materiel Organisation"	18-Dec-07	="Aerospace systems and components and equipment"	18-Dec-07	31-Jan-08	16099.94	=""	="Goodrich Control Systems PTY LTD"	18-Dec-07 05:05 PM	

+="CN51748"	" PROCUREMENT OF AIRCRAFT SPARES "	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	01-Apr-09	135685.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:51 AM	

+="CN51749"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	08-Jan-08	13006.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:56 AM	

+="CN51750"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft spars"	18-Dec-07	02-Mar-09	69264.23	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 07:59 AM	

+="CN51751"	"Indicator, Pressure Digital"	="Defence Materiel Organisation"	19-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	18-Dec-07	19-Jan-09	26358.20	=""	="Fluke Australia"	19-Dec-07 08:02 AM	

+="CN51752"	"Applications Development"	="Family Court of Australia"	19-Dec-07	="Temporary technician staffing needs"	30-Jan-08	27-Jun-08	105600.00	=""	="Finite IT Recruitment Solutions"	19-Dec-07 09:18 AM	

+="CN51753"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	19-Dec-07	="Motor vehicles"	13-Dec-07	03-Jan-08	11279.31	=""	="PREMIER AUTOMOTIVE GROUP"	19-Dec-07 09:43 AM	

+="CN51754"	" Publications "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Publication printing"	17-Dec-07	16-Dec-10	392080.00	=""	="CORETEX PTY LTD"	19-Dec-07 09:53 AM	

+="CN51756"	"FOR THE PURCHASE OF QTY 1 DMC787 REPAIR SET CONNECTOR REQUIRED FOR CHINOOK HELICOPTER EXTENDED DEPLOYMENT TO AFGHANISTAN."	="Defence Materiel Organisation"	19-Dec-07	="Military rotary wing aircraft"	19-Dec-07	26-Mar-08	15345.00	=""	="CRIMP TECH AUSTRALIA PTY LTD"	19-Dec-07 09:58 AM	

+="CN51757"	" Adoption study "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Adoption services"	11-Dec-07	31-Jul-08	15076.00	=""	="CSIRO Plant Industry"	19-Dec-07 10:00 AM	

+="CN51759"	" SUPPLY OF ANESTHESIA APPARATUS, GAS "	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	15-Dec-07	30-Dec-07	10709.50	=""	="ADD-TECH MEDICAL PTY LTD"	19-Dec-07 10:46 AM	

+="CN51760-A1"	"Provision of Office Fitout"	="CRS Australia"	19-Dec-07	="Renovation of buildings or landmarks or monuments"	30-Oct-07	21-Dec-07	72307.19	=""	="Partek Industries Pty Ltd"	19-Dec-07 10:48 AM	

+="CN51763"	"Yearly contract for period 22/11/07 to"	="National Archives of Australia"	19-Dec-07	="Computer hardware maintenance or support"	06-Dec-07	21-Nov-08	14852.42	=""	="Computers Now Pty Ltd"	19-Dec-07 10:49 AM	

+="CN51764"	"Creation, distribution and analysis"	="National Archives of Australia"	19-Dec-07	="Business and corporate management consultation services"	06-Dec-07	30-Jun-08	31350.00	=""	="TNS Social Research"	19-Dec-07 10:49 AM	

+="CN51765"	"Employee Assistance Program"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	06-Dec-07	30-Sep-08	15400.00	=""	="IPS Worldwide"	19-Dec-07 10:49 AM	

+="CN51766"	"Repairs to Chiller"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	06-Dec-07	31-Mar-08	17544.07	=""	="Multiplex Facilities Management"	19-Dec-07 10:49 AM	

+="CN51767"	"Supply of Training Modules"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	10-Dec-07	14-Dec-07	10515.70	=""	="Upton Martin Consulting"	19-Dec-07 10:49 AM	

+="CN51761"	" AIRCRAFT SPARES  NSN: 1560-01-368-5239  FITTING STRUCTURAL COMPONENT  QTY: 7 "	="Defence Materiel Organisation"	19-Dec-07	="Military transport helicopters"	19-Dec-07	13-Mar-08	42720.51	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	19-Dec-07 10:50 AM	

+="CN51768"	"Supply of Isothermal Humidifiers"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	17-Dec-07	30-Jun-08	30129.00	=""	="Multiplex Facilities Management"	19-Dec-07 10:50 AM	

+="CN51769"	"Supply of training modules"	="National Archives of Australia"	19-Dec-07	="Education and Training Services"	18-Dec-07	24-Dec-07	10464.81	=""	="Upton Martin Consulting"	19-Dec-07 10:50 AM	

+="CN51770"	"Emergency repair and replace Mains Isolator"	="National Archives of Australia"	19-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	30-Jun-08	13546.50	=""	="HADEN ENGINEERING PTY LTD"	19-Dec-07 10:50 AM	

+="CN51771"	"Supply of Tape Library and Software"	="National Archives of Australia"	19-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	03-Dec-07	30043.02	=""	="CORPORATE EXPRESS"	19-Dec-07 10:50 AM	

+="CN51772"	"Supply of Computer Storage Unit and Switch"	="National Archives of Australia"	19-Dec-07	="Computer Equipment and Accessories"	27-Nov-07	17-Dec-07	29224.38	=""	="Apple Centre Mac1"	19-Dec-07 10:50 AM	

+="CN51773"	"Contractor for Management position"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	27-Nov-07	31-Dec-07	27500.00	=""	="PROFESSIONAL CAREERS AUST (ACT)"	19-Dec-07 10:50 AM	

+="CN51774"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	26000.00	=""	="Drake Australia Pty  Ltd"	19-Dec-07 10:50 AM	

+="CN51775"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	30-Jun-08	49500.00	=""	="Vedior Asia Pacific Pty Ltd"	19-Dec-07 10:50 AM	

+="CN51776"	"Provision of Temporary Labour"	="National Archives of Australia"	19-Dec-07	="Temporary personnel services"	29-Nov-07	31-Dec-07	39500.00	=""	="SMALLS RECRUITING"	19-Dec-07 10:50 AM	

+="CN51777"	"Placement fee"	="National Archives of Australia"	19-Dec-07	="Personnel recruitment"	30-Nov-07	17-Dec-07	11128.70	=""	="PROFESSIONAL CAREERS AUST (ACT)"	19-Dec-07 10:50 AM	

+="CN51780"	" Impact assessment "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78350.00	=""	="Centre for International Economics"	19-Dec-07 10:54 AM	

+="CN51782"	"Adoption study"	="Australian Centre for International Agricultural Research"	19-Dec-07	="Adoption services"	18-Dec-07	11-Apr-08	13140.00	=""	="Christoe Consulting"	19-Dec-07 11:03 AM	

+="CN51779"	" Impact assessment "	="Australian Centre for International Agricultural Research"	19-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78350.00	=""	="Centre for International Economics"	19-Dec-07 11:07 AM	

+="CN51783-A2"	" Software Licenses and support "	="Australian Taxation Office"	19-Dec-07	="Software"	01-Jan-08	30-Jun-10	453312.75	=""	="IBM Australia Ltd"	19-Dec-07 11:14 AM	

+="CN51784"	"Asset,"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jul-07	20-Jul-07	14817.50	=""	="ROJONE PTY LTD"	19-Dec-07 11:19 AM	

+="CN51785"	"IT Equip"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jun-07	20-Jun-07	18691.20	=""	="SYMTEC COMPUTER"	19-Dec-07 11:19 AM	

+="CN51786"	"Training"	="Defence Materiel Organisation"	19-Dec-07	="Education and Training Services"	20-Aug-07	20-Aug-07	10825.00	=""	="FORSYTHES COMP"	19-Dec-07 11:19 AM	

+="CN51787"	"Conference"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	14-Jun-07	10720.00	=""	="EVENTCORP PTY LTD"	19-Dec-07 11:19 AM	

+="CN51788"	"Asset"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	13-Jul-07	13-Jul-07	10864.80	=""	="ROJONE PTY LTD"	19-Dec-07 11:19 AM	

+="CN51789"	"DIESEL FUEL CARD"	="Defence Materiel Organisation"	19-Dec-07	="Lubricants and oils and greases and anti corrosives"	30-Aug-07	30-Aug-07	20000.00	=""	="ESS GEBIE 0001 ACCOMO"	19-Dec-07 11:20 AM	

+="CN51790"	"Final payment for hire of venue, catering etc for Melb Reg Briefing"	="Defence Materiel Organisation"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Sep-07	14-Sep-07	16844.47	=""	="MEL CONV/EXHIB TST"	19-Dec-07 11:20 AM	

+="CN51791"	"RF AMPLIFIER x QTY 4 ea"	="Defence Materiel Organisation"	19-Dec-07	="Electronic hardware and component parts and accessories"	25-Sep-07	25-Sep-07	20103.60	=""	="J A SEVERN PTY LTD"	19-Dec-07 11:20 AM	

+="CN51792"	"Goods"	="Defence Materiel Organisation"	19-Dec-07	="Industrial Manufacturing and Processing Machinery and Accessories"	10-Oct-07	10-Oct-07	13293.50	=""	="GET PACKED PTY LTD"	19-Dec-07 11:20 AM	

+="CN51808"	"Development of Monitoring and Reporting Strategy"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	19-May-05	31-Jan-09	131363.35	=""	="EnergyConsult Pty Ltd"	19-Dec-07 11:50 AM	

+="CN51811"	"Risk Assessment Services for all Community Water Grants Projects"	="Department of the Environment and Water Resources"	19-Dec-07	="Public administration and finance services"	01-May-06	24-Aug-07	622147.00	=""	="GHD Pty Ltd"	19-Dec-07 11:53 AM	

+="CN51812"	"Replacement of E2 spar buoy in Port Hedland, WA"	="Australian Maritime Safety Authority"	19-Dec-07	="Marine navigational or communication services"	26-Oct-07	30-Jun-08	851265.00	="836/37445"	="Australian Maritime Systems Limited"	19-Dec-07 11:53 AM	

+="CN51813"	"Temporary Staff"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	11-May-06	22-Sep-06	64411.10	=""	="Atech Group Pty Ltd"	19-Dec-07 11:55 AM	

+="CN51814"	"Australian Coal Forecast and Resources Estimation"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	26-May-06	11-Aug-06	50050.00	=""	="Barlow Jonker Pty Ltd"	19-Dec-07 11:59 AM	

+="CN51817"	"Secretariat Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jun-06	10-Jun-06	131261.48	=""	="Wyld Group Pty Ltd"	19-Dec-07 12:01 PM	

+="CN51819"	"Development of Peak Loas Forecast Model"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jun-06	27-Jun-06	57780.18	=""	="Energy Efficient Strategies"	19-Dec-07 12:03 PM	

+="CN51821"	"Artwork and Typesetting for Publications"	="Department of the Environment and Water Resources"	19-Dec-07	="Printed publications"	09-Jun-06	30-Jan-07	48080.78	=""	="Trustee for Roar Momentun Unit Trust"	19-Dec-07 12:06 PM	

+="CN51823"	"Lease Vehicles for ACT and WA Indigenous Land"	="Department of the Environment and Water Resources"	19-Dec-07	="Motor vehicles"	10-Jul-06	22-Jun-07	90906.45	=""	="ComCar Australia"	19-Dec-07 12:25 PM	

+="CN51824"	"Cleaning Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Cleaning and janitorial services"	21-Aug-06	30-Jun-07	60467.82	=""	="Sterling Property Services Pty Ltd"	19-Dec-07 12:28 PM	

+="CN51826"	"National Pollutant Inventory"	="Department of the Environment and Water Resources"	19-Dec-07	="Community and social services"	15-Feb-07	28-Feb-07	312124.67	=""	="Department of Environment and Conservation"	19-Dec-07 12:31 PM	

+="CN51825-A1"	"Typesetting of Family Matters #77"	="Australian Institute of Family Studies"	19-Dec-07	="Layout or graphics editing services"	04-Dec-07	04-Dec-07	15721.54	=""	="Double Jay Graphic Design"	19-Dec-07 12:31 PM	

+="CN51827"	"Rent-Darwin Hanger"	="Department of the Environment and Water Resources"	19-Dec-07	="Lease and rental of property or building"	13-Mar-07	29-Jun-07	81002.46	=""	="United Group Services"	19-Dec-07 12:34 PM	

+="CN51828"	"South West Regional Profile CD ROM"	="Department of the Environment and Water Resources"	19-Dec-07	="Sales and marketing software"	15-Mar-07	31-Aug-07	57808.58	=""	="ImaginOcean Productions"	19-Dec-07 12:44 PM	

+="CN51829"	"Conference package: LSAC Conference"	="Australian Institute of Family Studies"	19-Dec-07	="Conference centres"	03-Dec-07	04-Dec-07	26344.34	=""	="Oaks on Collins"	19-Dec-07 12:46 PM	

+="CN51830"	"Plan Concept Testing"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	11-May-07	30-Aug-07	113850.00	=""	="Taylor Nelson Sofres Australia Pty"	19-Dec-07 12:46 PM	

+="CN51831"	"Provision of Professional Services to Governance Unit"	="Department of the Environment and Water Resources"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-May-07	28-Sep-07	55770.00	=""	="The Hedging Company Pty Ltd"	19-Dec-07 12:50 PM	

+="CN51832"	"Conference Facility Services"	="Department of the Environment and Water Resources"	19-Dec-07	="Entertainment services"	06-Jun-07	06-Jun-07	102600.85	=""	="Hoteliers International Pty Ltd"	19-Dec-07 12:52 PM	

+="CN51833"	"Collaborative Agreement Coast Vulnerability Assessment"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	08-Jun-07	15-Jun-07	639728.00	=""	="Geoscience Australia"	19-Dec-07 12:54 PM	

+="CN51834"	"Legal Advice"	="Department of the Environment and Water Resources"	19-Dec-07	="Legal services"	15-Jun-07	19-Jun-07	34850.00	=""	="Baker and McKenzie"	19-Dec-07 12:56 PM	

+="CN51835"	"Greenhouse Gas life Cycle Assessment"	="Department of the Environment and Water Resources"	19-Dec-07	="Environmental Services"	19-Jun-07	26-Jun-07	19800.00	=""	="RMIT University - Centre for Design"	19-Dec-07 12:58 PM	

+="CN51836"	"  P  rovision of advice and assistance to Promising Practice Profiles Round 2 Submissions  "	="Australian Institute of Family Studies"	19-Dec-07	="Consumer based research or clinics or focus groups"	15-Nov-07	31-Dec-07	10048.50	=""	="Praxis Alternatives Pty Ltd"	19-Dec-07 01:00 PM	

+="CN51838-A1"	"  To provide data cleaning and analysis for the Assessment and Action (A&AR) Outcomes Data Analysis Project  "	="Australian Institute of Family Studies"	19-Dec-07	="Data processing or preparation services"	10-Dec-07	03-Mar-08	12891.93	=""	="Sam Egger"	19-Dec-07 01:11 PM	

+="CN51839"	"Repair of aircraft parts"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft"	12-Dec-07	27-Dec-07	19846.30	=""	="Sikorsky Aircraft Australia Limited"	19-Dec-07 01:15 PM	

+="CN51840"	"GRAPHIC DESIGN AND PUBLICATION"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	15-Jun-07	15-Jun-07	10040.33	=""	="ZOO COMMUNICATIONS"	19-Dec-07 01:30 PM	

+="CN51841"	"UPS"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	22-Jun-07	22-Jun-07	10868.00	=""	="NATURAL PWR SLTNS VIC"	19-Dec-07 01:30 PM	

+="CN51842"	"Bosslift Solomon Island"	="Department of Defence"	19-Dec-07	="Transport operations"	20-Jun-07	20-Jun-07	16686.88	=""	="WORLD AVIATION SYSTEM"	19-Dec-07 01:30 PM	

+="CN51843"	"Air Travel"	="Department of Defence"	19-Dec-07	="Travel facilitation"	07-Feb-07	07-Feb-07	14166.19	=""	="CORPORATE AIR"	19-Dec-07 01:30 PM	

+="CN51844"	"TAR for Engineering Faculty"	="Department of Defence"	19-Dec-07	="Education and Training Services"	29-Jun-07	29-Jun-07	11619.09	=""	="REPROTECH PTY LTD"	19-Dec-07 01:30 PM	

+="CN51845"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Jun-07	27-Jun-07	11931.88	=""	="MORLEYS FUNERALS"	19-Dec-07 01:30 PM	

+="CN51846"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jun-07	20-Jun-07	10958.52	=""	="FRANK J SIEBERT"	19-Dec-07 01:31 PM	

+="CN51847"	"ICT"	="Department of Defence"	19-Dec-07	="Electrical wire and cable and harness"	22-Jun-07	22-Jun-07	10433.50	=""	="DATA FLEX"	19-Dec-07 01:31 PM	

+="CN51848"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	29-Jun-07	29-Jun-07	13693.80	=""	="SWISS GRAND HOTEL"	19-Dec-07 01:31 PM	

+="CN51849"	"sponsorship"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Jun-07	22-Jun-07	16049.00	=""	="LOCAL GOVT ASSOC"	19-Dec-07 01:31 PM	

+="CN51850"	"press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	28-Jun-07	28-Jun-07	18818.22	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	

+="CN51851"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	28-Jun-07	28-Jun-07	25240.96	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	

+="CN51852"	"ELECTROBOARD"	="Department of Defence"	19-Dec-07	="Office machines and their supplies and accessories"	28-Jun-07	28-Jun-07	16025.33	=""	="ELECTROBOARD SOLUTIO"	19-Dec-07 01:31 PM	

+="CN51853"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	29-Jun-07	29-Jun-07	16073.03	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	

+="CN51854"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	29-Jun-07	29-Jun-07	12854.27	=""	="HMA BLAZE"	19-Dec-07 01:31 PM	

+="CN51855"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Jul-07	07-Jul-07	11440.00	=""	="QUEST BRIDGEWATER"	19-Dec-07 01:31 PM	

+="CN51856"	"Consumables"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	07-Feb-07	07-Feb-07	18153.01	=""	="PAC PLUS WHOLESALERS P/L"	19-Dec-07 01:31 PM	

+="CN51857"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Feb-07	07-Feb-07	23179.66	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:32 PM	

+="CN51858"	"office furniture"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	29-Jun-07	29-Jun-07	23427.80	=""	="RECON FURNITURE SALES"	19-Dec-07 01:32 PM	

+="CN51859"	"TONER"	="Department of Defence"	19-Dec-07	="Computer services"	07-May-07	07-May-07	12549.71	=""	="CORPORATE EXPRESS"	19-Dec-07 01:32 PM	

+="CN51860"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-May-07	07-May-07	12832.32	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:32 PM	

+="CN51861"	"Maintenance of Generators"	="Department of Defence"	19-Dec-07	="Power Generation and Distribution Machinery and Accessories"	05-Sep-07	05-Sep-07	17667.67	=""	="QUALITY LIGHT & HEAVY"	19-Dec-07 01:32 PM	

+="CN51862"	"DPC use."	="Department of Defence"	19-Dec-07	="Computer services"	28-Jun-07	28-Jun-07	10732.35	=""	="GIDEON INFORMATICS"	19-Dec-07 01:32 PM	

+="CN51863"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Nov-07	22520.76	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:32 PM	

+="CN51864"	"Vehicle hire"	="Department of Defence"	19-Dec-07	="Motor vehicles"	19-Aug-06	19-Aug-06	53227.95	=""	="AL SAAD AND HANKIR TRD"	19-Dec-07 01:32 PM	

+="CN51865"	"Mobile phone usage"	="Department of Defence"	19-Dec-07	="Telecommunications media services"	18-Sep-06	18-Sep-06	10924.69	=""	="DEHDARI GEN TRD CONT EST"	19-Dec-07 01:32 PM	

+="CN51866"	"Printer ; Misc goods"	="Department of Defence"	19-Dec-07	="Printing and publishing equipment"	24-Jun-07	24-Jun-07	15000.06	=""	="GULF LINK INTERNATIONAL"	19-Dec-07 01:32 PM	

+="CN51867"	"room hire"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	18-Jul-07	18-Jul-07	23945.14	=""	="STRAND PALACE"	19-Dec-07 01:33 PM	

+="CN51868"	"Services"	="Department of Defence"	19-Dec-07	="Computer services"	18-Jul-07	18-Jul-07	15125.00	=""	="PLAN IT TST MAN/SLTNS"	19-Dec-07 01:33 PM	

+="CN51869"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	20-Jul-07	20-Jul-07	20556.24	=""	="SYMBION IMAGING"	19-Dec-07 01:33 PM	

+="CN51870"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	24-Jul-07	24-Jul-07	21269.10	=""	="GREENSLOPES PRIV H"	19-Dec-07 01:33 PM	

+="CN51871"	"generator maintenance"	="Department of Defence"	19-Dec-07	="Power Generation and Distribution Machinery and Accessories"	23-Jul-07	23-Jul-07	13307.13	=""	="QUALITY LIGHT & HEAVY"	19-Dec-07 01:33 PM	

+="CN51872"	"Fit out of 4 X Vehicle"	="Department of Defence"	19-Dec-07	="Tools and General Machinery"	05-Oct-07	05-Oct-07	12056.70	=""	="DARWIN OFF ROAD ACCESS"	19-Dec-07 01:33 PM	

+="CN51873"	"4 X 4 accessories"	="Department of Defence"	19-Dec-07	="Motor vehicles"	13-Jun-07	13-Jun-07	13585.50	=""	="DARWIN OFF ROAD ACCESS"	19-Dec-07 01:33 PM	

+="CN51874"	"PROC REG 2340/06-07"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Jun-07	28-Jun-07	15760.00	=""	="AUSTRASIAN JET DAR"	19-Dec-07 01:33 PM	

+="CN51875"	"Goodwill Products Items"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	28-Jun-06	28-Jun-06	18984.96	=""	="GOODWILL PRODUCTS P/L"	19-Dec-07 01:33 PM	

+="CN51876"	"Toner Cartridges"	="Department of Defence"	19-Dec-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Jul-07	18-Jul-07	47867.05	=""	="CORPORATE EXPRESS"	19-Dec-07 01:33 PM	

+="CN51877"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	25-Jul-07	25-Jul-07	74682.00	=""	="ANGAS REGENT"	19-Dec-07 01:33 PM	

+="CN51878"	"Advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	23-Apr-07	23-Apr-07	26004.56	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	

+="CN51879"	"AIRFARES"	="Department of Defence"	19-Dec-07	="Travel facilitation"	26-Jul-07	26-Jul-07	15776.00	=""	="NORTHERN GATEWAY PTY"	19-Dec-07 01:34 PM	

+="CN51880"	"Press ad"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	08-Feb-07	08-Feb-07	10909.95	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	

+="CN51881"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	17-Jul-07	17-Jul-07	26275.61	=""	="COMBINED BACHELOR HSG"	19-Dec-07 01:34 PM	

+="CN51882"	"Meals"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Jul-07	17-Jul-07	10679.27	=""	="NATIONAL AUST BANK"	19-Dec-07 01:34 PM	

+="CN51883"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jan-07	08-Jan-07	21391.15	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:34 PM	

+="CN51884"	"Press Ads"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	08-Feb-07	08-Feb-07	18006.76	=""	="HMA BLAZE"	19-Dec-07 01:34 PM	

+="CN51885"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	06-Aug-07	14-Aug-07	16875.00	=""	="MACLEAY HOTEL"	19-Dec-07 01:34 PM	

+="CN51886"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	06-Aug-07	14-Aug-07	13965.00	=""	="HOLDYINNPOTTSPOINT"	19-Dec-07 01:34 PM	

+="CN51887"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Aug-07	14-Aug-07	20640.80	=""	="QUEST BRIDGEWATER"	19-Dec-07 01:34 PM	

+="CN51888"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	23-Jul-07	14-Aug-07	12630.00	=""	="MACLEAY HOTEL"	19-Dec-07 01:35 PM	

+="CN51889"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	31-Jul-07	31-Jul-07	12014.25	=""	="ST ANDREWS HOSPITAL"	19-Dec-07 01:35 PM	

+="CN51890"	"LECTURNS & PRESENTATION STATIONS"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	24-Jul-07	24-Jul-07	13956.20	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:35 PM	

+="CN51891"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	17-Jul-07	07-Dec-07	21142.00	=""	="VIBE SAVOY HOTEL"	19-Dec-07 01:35 PM	

+="CN51892"	"HOSTELS. ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	08-Jun-07	15-Aug-07	60588.00	=""	="ANGAS REGENT"	19-Dec-07 01:35 PM	

+="CN51893"	"1 Jetranger charter ; 2 helicopter charter"	="Department of Defence"	19-Dec-07	="Passenger transport"	19-Jul-07	19-Jul-07	13443.32	=""	="ALBATROSS HELICOPTERS"	19-Dec-07 01:35 PM	

+="CN51894"	"Goods"	="Department of Defence"	19-Dec-07	="Food and Beverage Products"	26-Jul-07	26-Jul-07	29440.83	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:35 PM	

+="CN51895"	"Residential Conference"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	08-Oct-07	17000.00	=""	="HOLMESGLEN INSTITUTE"	19-Dec-07 01:35 PM	

+="CN51896"	"Actor support"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	14-Aug-07	15453.15	=""	="ACADEMY OF SCREEN PFR"	19-Dec-07 01:35 PM	

+="CN51897"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Jul-07	21-Aug-07	45279.34	=""	="COMBINED BACHELOR HSG"	19-Dec-07 01:35 PM	

+="CN51898"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	31-Jul-07	31-Jul-07	10680.34	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:36 PM	

+="CN51899"	"IND PTNER CONTRIBUTION MOSQUITO BORN DISEASES"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Feb-07	07-Feb-07	11000.00	=""	="CHARLES DARWIN UNI"	19-Dec-07 01:36 PM	

+="CN51900"	"FURNITURE"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	24-Jul-07	24-Jul-07	15303.00	=""	="JAPE FURNISHINGS SUPER"	19-Dec-07 01:36 PM	

+="CN51901"	"HELI CHARTER"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	30-Jul-07	30-Jul-07	11411.40	=""	="JAYROW DARWIN"	19-Dec-07 01:36 PM	

+="CN51902"	"Fee"	="Department of Defence"	19-Dec-07	="Education and Training Services"	08-Oct-07	08-Oct-07	10032.00	=""	="AUS INST CO DRCTRS"	19-Dec-07 01:36 PM	

+="CN51903"	"FURNITURE"	="Department of Defence"	19-Dec-07	="Furniture and Furnishings"	14-Aug-07	14-Aug-07	15042.00	=""	="JAPE FURNISHINGS SUPER"	19-Dec-07 01:36 PM	

+="CN51904"	"Stationery"	="Department of Defence"	19-Dec-07	="Office supplies"	08-Jul-07	08-Jul-07	13111.82	=""	="CORPORATE EXPRESS"	19-Dec-07 01:36 PM	

+="CN51905"	"Rations"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	13-Aug-07	13-Aug-07	17377.95	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:36 PM	

+="CN51906"	"Contract Management Course"	="Department of Defence"	19-Dec-07	="Education and Training Services"	13-Aug-07	13-Aug-07	13601.50	=""	="ENGINEERING EDUC AUST"	19-Dec-07 01:36 PM	

+="CN51907"	"Training"	="Department of Defence"	19-Dec-07	="Education and Training Services"	08-Sep-07	08-Sep-07	12320.00	=""	="AXIOM COLLEGE"	19-Dec-07 01:36 PM	

+="CN51908"	"Scanners"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	30-Jul-07	30-Jul-07	17432.69	=""	="DATA FLEX"	19-Dec-07 01:36 PM	

+="CN51909"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	14-Aug-07	10000.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	

+="CN51910"	"Goods"	="Department of Defence"	19-Dec-07	="Food and Beverage Products"	22-Aug-07	22-Aug-07	14037.79	=""	="RICHARD FADER PTY LTD"	19-Dec-07 01:37 PM	

+="CN51911"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	16-Aug-07	31-Aug-07	13213.50	=""	="HOLIDAY INN DARWIN"	19-Dec-07 01:37 PM	

+="CN51912"	"Accommodation"	="Department of Defence"	19-Dec-07	="Passenger transport"	21-Aug-07	21-Aug-07	17502.00	=""	="HOLIDAY INN TOWNSVILLE"	19-Dec-07 01:37 PM	

+="CN51913"	"Confrence"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	16-Jul-07	16-Jul-07	14169.00	=""	="Aitken Hill Conference"	19-Dec-07 01:37 PM	

+="CN51914"	"Rates"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	17-Aug-07	11928.56	=""	="TORRES SHIRE COUNCIL"	19-Dec-07 01:37 PM	

+="CN51915"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	17-Aug-07	43072.90	=""	="ST ANDREWS HOSPITAL"	19-Dec-07 01:37 PM	

+="CN51916"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	11100.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	

+="CN51917"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	11100.00	=""	="WARWICK HAWTHORNE DTL P/L"	19-Dec-07 01:37 PM	

+="CN51918"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	10182.82	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:37 PM	

+="CN51919"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	11237.00	=""	="CITY FERTILITY CENTRE"	19-Dec-07 01:37 PM	

+="CN51920"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Jan-07	08-Jan-07	10028.34	=""	="BRISBANE PRIVATE HOSP"	19-Dec-07 01:38 PM	

+="CN51921"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	28431.14	=""	="THE WESLEY PHARMACY"	19-Dec-07 01:38 PM	

+="CN51922"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-Mar-07	08-Mar-07	10919.95	=""	="SYMBION IMAGING"	19-Dec-07 01:38 PM	

+="CN51923"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	08-May-07	08-May-07	10000.00	=""	="CITY FERTILITY CENTRE"	19-Dec-07 01:38 PM	

+="CN51924"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	24-Aug-07	24-Aug-07	10336.03	=""	="PHOENICIA INTERCONTINENTA"	19-Dec-07 01:38 PM	

+="CN51925"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	29-Aug-07	29-Aug-07	10157.26	=""	="SYMBION IMAGING"	19-Dec-07 01:38 PM	

+="CN51926"	"DELL COMPUTRES"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	23-Aug-07	23-Aug-07	13726.26	=""	="AMERICAN COMPUTER HOME WL"	19-Dec-07 01:38 PM	

+="CN51927"	"TOLL PRiority freight"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	27-Aug-07	27-Aug-07	10291.48	=""	="TOLL TRANSPORT PL"	19-Dec-07 01:38 PM	

+="CN51928"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-07	12519.34	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:38 PM	

+="CN51929"	"Registration fee"	="Department of Defence"	19-Dec-07	="Education and Training Services"	09-Jun-07	23-Nov-07	13600.00	=""	="INFO SALONS AUST"	19-Dec-07 01:38 PM	

+="CN51930"	"ACCOMMODATION"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	07-Apr-07	09-Dec-07	10000.00	=""	="Hotel 208"	19-Dec-07 01:39 PM	

+="CN51931"	"ICT Security Seals with red logo and barcode"	="Department of Defence"	19-Dec-07	="Electrical wire and cable and harness"	24-Aug-07	24-Aug-07	10692.00	=""	="HARCOR SECRTY SEALS"	19-Dec-07 01:39 PM	

+="CN51932"	"BILLBOARDS"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	09-Apr-07	09-Apr-07	22000.00	=""	="NETWORK OUTDOOR P/L"	19-Dec-07 01:39 PM	

+="CN51933"	"Rhino"	="Department of Defence"	19-Dec-07	="Motor vehicles"	21-Aug-07	21-Aug-07	32333.65	=""	="YAMAHA-AL YOUSUF LLC"	19-Dec-07 01:39 PM	

+="CN51934"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	27-Aug-07	12694.99	=""	="WHITE LADY FUNERALS 795"	19-Dec-07 01:39 PM	

+="CN51935"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	24-Aug-07	24-Aug-07	13525.40	=""	="LE PINE FUNERAL 751"	19-Dec-07 01:39 PM	

+="CN51936"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	09-May-07	09-May-07	10505.88	=""	="MORLEYS FUNERALS"	19-Dec-07 01:39 PM	

+="CN51937"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	20-Jun-07	20-Jun-07	13800.00	=""	="THE GRACE HOTEL"	19-Dec-07 01:39 PM	

+="CN51938"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	27-Aug-07	27-Aug-07	23441.26	=""	="HOTEL INTER-CONTINENTAL WGTN,WE"	19-Dec-07 01:39 PM	

+="CN51939"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	09-Jan-07	09-Jan-07	11553.00	=""	="THE GRACE HOTEL"	19-Dec-07 01:39 PM	

+="CN51940"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jun-07	07-Jun-07	16639.07	=""	="AL DIAR SIJI HOTEL"	19-Dec-07 01:40 PM	

+="CN51941"	"Medical"	="Department of Defence"	19-Dec-07	="Comprehensive health services"	18-Aug-07	18-Aug-07	10585.00	=""	="PERTH ORAL & MAXILLOFA"	19-Dec-07 01:40 PM	

+="CN51942"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	29-Jun-07	29-Jun-07	16734.30	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:40 PM	

+="CN51943"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jul-07	07-Jul-07	13581.12	=""	="AL DIAR SIJI HOTEL"	19-Dec-07 01:40 PM	

+="CN51944"	"Transport"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	07-Oct-07	07-Oct-07	30219.74	=""	="SECURITY TRANSPORT S"	19-Dec-07 01:40 PM	

+="CN51945"	"STATIONERY"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Aug-07	21-Aug-07	13681.71	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:40 PM	

+="CN51946"	"accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	21-Sep-07	03-Apr-08	10931.38	=""	="HOLIDAY INN ADELAIDE"	19-Dec-07 01:40 PM	

+="CN51947"	"Cardiac Defibrillators"	="Department of Defence"	19-Dec-07	="Comprehensive health services"	20-Sep-07	20-Sep-07	10350.00	=""	="ST JOHN AMBULANCE"	19-Dec-07 01:40 PM	

+="CN51948"	"Freight"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	13-Aug-07	13-Aug-07	28340.79	=""	="DHL INTERNATIONAL W.L.L."	19-Dec-07 01:40 PM	

+="CN51949"	"Advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	31-Aug-07	31-Aug-07	19019.35	=""	="HMA BLAZE"	19-Dec-07 01:40 PM	

+="CN51950"	"Wide Bay Int air show"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	31-Aug-07	31-Aug-07	10000.00	=""	="QIAS"	19-Dec-07 01:40 PM	

+="CN51951"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	09-Oct-07	09-Oct-07	15679.95	=""	="ST ANDREWS WAR MEM HO"	19-Dec-07 01:41 PM	

+="CN51952"	"Accommodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	23-Sep-07	23-Sep-07	21645.61	=""	="THE DIPLOMAT RADISSON"	19-Dec-07 01:41 PM	

+="CN51953"	"GATEWAY CHARGES"	="Department of Defence"	19-Dec-07	="Telecommunications media services"	24-Sep-07	24-Sep-07	11648.34	=""	="SECURENET LTD"	19-Dec-07 01:41 PM	

+="CN51954"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	28-Sep-07	28-Sep-07	11472.15	=""	="BRISBANE NTH PODIATRY P/L"	19-Dec-07 01:41 PM	

+="CN51955"	"Freight"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-Sep-07	25-Sep-07	53244.03	=""	="DHL INTERNATIONAL W.L.L."	19-Dec-07 01:41 PM	

+="CN51956"	"Medical"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	10-Mar-07	10-Mar-07	12728.00	=""	="DR BENJAMIN ERZETIC"	19-Dec-07 01:41 PM	

+="CN51957"	"Gen stores"	="Department of Defence"	19-Dec-07	="Other sports"	31-Jul-07	10-Dec-07	10624.29	=""	="SPORTS CORNER EST"	19-Dec-07 01:41 PM	

+="CN51958"	"Gen stores"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	10-Dec-07	21778.31	=""	="REGIONAL PROJECTS GROUP _"	19-Dec-07 01:41 PM	

+="CN51959"	"Gen stores"	="Department of Defence"	19-Dec-07	="Rubber and elastomers"	24-Sep-07	10-Dec-07	10325.72	=""	="REGIONAL PROJECTS GROUP _"	19-Dec-07 01:41 PM	

+="CN51960"	"conference Deposit"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	22-Aug-07	10360.00	=""	="BNE CONVENTION CENTRE"	19-Dec-07 01:41 PM	

+="CN51961"	"Accommodation"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	16-Sep-07	16-Sep-07	10748.95	=""	="HYATT REGENCY CLUB 2"	19-Dec-07 01:41 PM	

+="CN51962"	"Funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	19-Sep-07	19-Sep-07	13912.55	=""	="LE PINE FNRL SRV 744"	19-Dec-07 01:41 PM	

+="CN51963"	"Kitchen supplies"	="Department of Defence"	19-Dec-07	="Travel and Food and Lodging and Entertainment Services"	24-Sep-07	24-Sep-07	12644.27	=""	="BAGMAN DIST SERVICES"	19-Dec-07 01:42 PM	

+="CN51964"	"Annual Alarm Monitoring"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	25-Sep-07	25-Sep-07	31789.75	=""	="QUEENSLAND FIRE AND RE"	19-Dec-07 01:42 PM	

+="CN51965"	"electrical goods"	="Department of Defence"	19-Dec-07	="Domestic appliances"	19-Sep-07	19-Sep-07	14421.00	=""	="THE GOOD GUYS AUBURN"	19-Dec-07 01:42 PM	

+="CN51966"	"BBQ"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	18-Sep-07	18-Sep-07	10676.60	=""	="HEATLIE ENGINING"	19-Dec-07 01:42 PM	

+="CN51967"	"Press advertising"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	26-Sep-07	26-Sep-07	12484.17	=""	="HMA BLAZE"	19-Dec-07 01:42 PM	

+="CN51968"	"Surface Travel"	="Department of Defence"	19-Dec-07	="Travel facilitation"	17-Oct-07	17-Oct-07	12197.49	=""	="COACH DIRECT LTD"	19-Dec-07 01:42 PM	

+="CN51969"	"Accomodation"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	18-Jul-07	18-Jul-07	26250.00	=""	="FREESPIRIT RESORT"	19-Dec-07 01:42 PM	

+="CN51970"	"funeral"	="Department of Defence"	19-Dec-07	="Management and Business Professionals and Administrative Services"	10-Feb-07	10-Feb-07	13006.01	=""	="WALTER CARTER PTY LTD"	19-Dec-07 01:42 PM	

+="CN51971"	"Helicpoter Hire"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	09-Dec-07	09-Dec-07	24829.32	=""	="HELI NIUGINI"	19-Dec-07 01:42 PM	

+="CN51972"	"Helicpoter Hire"	="Department of Defence"	19-Dec-07	="Transportation and Storage and Mail Services"	09-Dec-07	09-Dec-07	25918.42	=""	="HELI NIUGINI"	19-Dec-07 01:42 PM	

+="CN51973"	"Advertising for tendering"	="Department of Defence"	19-Dec-07	="Marketing and distribution"	10-Sep-07	10-Sep-07	22362.90	=""	="HMA BLAZE"	19-Dec-07 01:43 PM	

+="CN51974"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	08-Nov-07	08-Nov-07	17670.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	

+="CN51975"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	13-Sep-07	13-Sep-07	12730.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	

+="CN51976"	"PORT COSTS"	="Department of Defence"	19-Dec-07	="Marine transport"	27-Sep-07	27-Sep-07	10720.43	=""	="MACKAY PRT AUTHRTY"	19-Dec-07 01:43 PM	

+="CN51977"	"Accom"	="Department of Defence"	19-Dec-07	="Hotels and lodging and meeting facilities"	10-Dec-07	10-Dec-07	11020.00	=""	="DECKQUE PTY LTD"	19-Dec-07 01:43 PM	

+="CN51978"	"CPA Congress"	="Department of Defence"	19-Dec-07	="Education and Training Services"	21-Sep-07	04-Oct-07	22264.00	=""	="CPA AUSTRALIA LTD"	19-Dec-07 01:43 PM	

+="CN51979"	"VARIOUS STATIONERY"	="Department of Defence"	19-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Oct-07	18-Oct-07	12459.10	=""	="NATIONAL OFFICE PRODUC"	19-Dec-07 01:43 PM	

+="CN51980"	"NORTON = 24" SCREENS"	="Department of Defence"	19-Dec-07	="Computer Equipment and Accessories"	06-Dec-07	06-Dec-07	20850.72	=""	="DATA FLEX"	19-Dec-07 01:43 PM	

+="CN51981"	"Freight"	="Department of Defence"	19-Dec-07	="Mail and cargo transport"	30-Oct-07	30-Oct-07	10977.06	=""	="STAR TRACK EXPRESS"	19-Dec-07 01:43 PM	

+="CN51982"	"Information Technology analysis and advice"	="Centrelink"	19-Dec-07	="Public administration and finance services"	10-Oct-07	30-Jun-08	51318.00	=""	="Grosvenor Management Consulting Pty Ltd"	19-Dec-07 01:50 PM	

+="CN51988"	"Palletts Various raised against standing offcer CONL082"	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	31-Mar-08	222775.85	=""	="MTM Celsiunator"	19-Dec-07 02:50 PM	

+="CN51996"	"SIGN, WARNING, MOTOR VEHICLE, TRIANGULAR, SIDES 13 IN. LG, RED & WHITE, W/DURABLE CASE. QTY 500.  MANUFACTURED IN ACCORDANCE WITH AUSTRALIAN STANDARD AS3790-1992 - TYPE A. "	="Defence Materiel Organisation"	19-Dec-07	="Safety signs"	26-Oct-07	08-Dec-07	14272.50	="RFQ G3616"	="J BLACKWOOD & SON LTD"	19-Dec-07 03:01 PM	

+="CN51999"	"A24N AIRCRAFT WASH"	="Defence Materiel Organisation"	19-Dec-07	="Aircraft"	19-Dec-07	29-Dec-07	12513.60	=""	="CHEMETALL (AUSTRALASIA) PTY LTD"	19-Dec-07 03:04 PM	

+="CN52005"	" BAG TOOL CANVAS W/WOODEN BOTTOM "	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	31-Mar-08	57310.00	=""	="West Vic Canvas"	19-Dec-07 03:12 PM	

+="CN52011"	"TOOL KIT GENERIC ELECTRONICS TRADES"	="Defence Materiel Organisation"	19-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	16-Feb-08	16890.50	=""	="Brentool Industrial Supplies Pty Ltd"	19-Dec-07 03:20 PM	

+="CN52024"	"Printing of NAT3132 - Gift Pack.  Qty: 15,000"	="Australian Taxation Office"	19-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Dec-07	31-Jan-08	32271.80	="06.030"	="Paragon Printers"	19-Dec-07 03:32 PM	

+="CN52027"	"Technical Consulting Services"	="Australian Electoral Commission"	19-Dec-07	="Information technology consultation services"	08-Jun-07	27-Sep-07	74091.00	=""	="Space Time Research Pty Ltd"	19-Dec-07 04:42 PM	

+="CN52028-A1"	" Re-fit management service for Ballarat Customer Service Centre "	="Centrelink"	19-Dec-07	="Professional engineering services"	14-Nov-07	25-Jan-08	260989.30	=""	="Pirotta Services Pty Ltd"	19-Dec-07 04:44 PM	

+="CN52029-A1"	"SUPPLY OF STRETCHER, SCOOP"	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	19-Dec-07	30-Jan-08	20244.60	=""	="DHS PTY LTD"	19-Dec-07 04:44 PM	

+="CN52030"	"SUPPLY OF ANALYZERS BLOOD GLUCOSE CLINICAL CHEMISTRY & ACCESSORIES"	="Defence Materiel Organisation"	19-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	30-Jan-08	31890.10	=""	="ABBOTT DIAGNOSTICS DIVISION"	19-Dec-07 04:48 PM	

+="CN52031"	"Enrolment Survey Services"	="Australian Electoral Commission"	19-Dec-07	="Population sample surveys services"	23-Sep-05	04-Oct-07	162793.40	=""	="Newspoll"	19-Dec-07 04:49 PM	

+="CN52036"	" AIRCRAFT SPARES  NSN 1615-01-085-5318  ROD ASSY DAMPER FEP  QTY 15 "	="Defence Materiel Organisation"	19-Dec-07	="Military transport helicopters"	24-May-06	14-May-07	66194.21	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Dec-07 05:39 PM	

+="CN52037"	"Tool Kit Electricians used by RAE Electrical Mechanics to Test Electrical Equipment and Wiring"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	06-Feb-08	55521.84	=""	="Brentool Industrial Supplies Pty Ltd"	20-Dec-07 07:58 AM	

+="CN52038"	"Roll Tools & Accessories Cloth Coated Nylon 2 Pockets 14 Loops, Water Repellant, Mildew Resistant, w/Buckle"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	27-Jan-08	27280.00	=""	="Canvas Contracting"	20-Dec-07 08:04 AM	

+="CN52039"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	19-Nov-08	24531.14	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:18 AM	

+="CN52040"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	28-Jan-08	32256.14	=""	="Symbion Pharmacy Services"	20-Dec-07 08:22 AM	

+="CN52041"	" Purchase of Aircraft Components "	="Defence Materiel Organisation"	20-Dec-07	="Aircraft"	19-Dec-07	15-Feb-08	40259.56	=""	="Kaman Aerospace International Corporation"	20-Dec-07 08:22 AM	

+="CN52042"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	18-Jan-09	11897.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:25 AM	

+="CN52043"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	29-Jan-08	25551.39	=""	="Symbion Pharmacy Services"	20-Dec-07 08:26 AM	

+="CN52044"	" Med Consumables For ADF "	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	25-Dec-07	26000.35	=""	="Clifford Hallam Healthcare"	20-Dec-07 08:43 AM	

+="CN52045"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	20-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Dec-07	18-Jan-08	12302.51	=""	="LAND ROVER AUSTRALIA"	20-Dec-07 08:44 AM	

+="CN52047"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	24-Dec-07	18055.60	=""	="Ansell International Pty Ltd"	20-Dec-07 09:24 AM	

+="CN52049"	"Financial advice for contract"	="Australian Taxation Office"	20-Dec-07	="Financial assistance"	01-Nov-07	21-Dec-07	17578.00	=""	="Freebody Cogent Pty Ltd"	20-Dec-07 10:06 AM	

+="CN52050"	"SOCKS, VARIOUS."	="Defence Materiel Organisation"	20-Dec-07	="Socks"	05-Dec-07	30-Jun-08	267047.00	="J7964"	="TOPS SOCKS"	20-Dec-07 10:33 AM	

+="CN52051"	"Provision of an ecredited competency based program for sutomer service"	="Comsuper"	20-Dec-07	="Computer based training software"	03-Sep-07	30-Jun-08	34170.00	=""	="CIT Solutions Pty Ltd"	20-Dec-07 10:44 AM	

+="CN52061"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	21-Nov-07	05-Dec-07	13673.00	=""	="Union Offset Printers"	20-Dec-07 10:53 AM	

+="CN52065"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	25-May-07	15-Jun-07	17996.00	=""	="Union offset Printers"	20-Dec-07 10:56 AM	

+="CN52067"	" Stationery Contract - final option  Original Contract commenced 21/09/2003 "	="Australian Electoral Commission"	20-Dec-07	="Stationery"	01-Nov-07	29-Feb-08	88000.00	=""	="Corporate Express Australia Ltd"	20-Dec-07 10:57 AM	

+="CN52079"	"Provision for CPI January 2008 Pension Increase"	="Comsuper"	20-Dec-07	="Printing accessories"	14-Dec-07	21-Dec-07	25617.88	=""	="Hermes Precisa P/L"	20-Dec-07 11:09 AM	

+="CN52081"	"ASLAV PARTS - WINDOW, OPTICAL INSTRUMENT"	="Department of Defence"	20-Dec-07	="Armoured fighting vehicles"	19-Dec-07	29-Jul-08	52514.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Dec-07 11:11 AM	

+="CN52090-A1"	"Postal Voting Mailhouse and Print Services"	="Australian Electoral Commission"	20-Dec-07	="Transportation and Storage and Mail Services"	26-Oct-06	30-Jun-11	1291062.28	="S06/07/29"	="Sema Group Pty Ltd"	20-Dec-07 11:24 AM	

+="CN52100"	"Mailing House Services"	="Australian Electoral Commission"	20-Dec-07	="Mailing services"	27-Nov-07	27-Dec-07	69449.60	=""	="B & C Mailing Pty Ltd"	20-Dec-07 11:43 AM	

+="CN52101"	"Printing of Election Booklets"	="Australian Electoral Commission"	20-Dec-07	="Industrial printing services"	08-Nov-07	08-Dec-07	11540.10	=""	="GT Graphics"	20-Dec-07 12:01 PM	

+="CN52103"	" Impact assessment "	="Australian Centre for International Agricultural Research"	20-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78840.00	=""	="Centre for International Economics"	20-Dec-07 12:07 PM	

+="CN52104"	"The provision of services for a professionally conducted presentation workshop for NBA staff development."	="National Blood Authority"	20-Dec-07	="Education and Training Services"	12-Jan-07	12-Jan-07	15445.00	=""	="Maura Fay Workshops"	20-Dec-07 12:13 PM	

+="CN52105"	"Provision of air travel"	="National Blood Authority"	20-Dec-07	="Commercial aeroplane travel"	03-Oct-07	13-Oct-07	37212.32	=""	="Flight Centre"	20-Dec-07 12:18 PM	

+="CN52106"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	01-Nov-07	14-Dec-07	16500.00	=""	="St Pauls Cathedral Parish"	20-Dec-07 12:21 PM	

+="CN52107"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11000.00	=""	="W Herrmann Real Estate Pty Ltd"	20-Dec-07 12:32 PM	

+="CN52108"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	31-Oct-07	14-Dec-07	21862.50	=""	="Kinight Frank Tasmania"	20-Dec-07 12:38 PM	

+="CN52110"	" Advertising monitoring - new ads "	="Australian Taxation Office"	20-Dec-07	="Information services"	04-Feb-08	03-Feb-09	26400.00	=""	="Xtreme Information Services Australia"	20-Dec-07 12:47 PM	

+="CN52111-A2"	"The procurement of Contract services for the development of the Evaluation Framework and Methodology for the Assessment of National Blood Supply Change Proposals."	="National Blood Authority"	20-Dec-07	="Business administration services"	10-Dec-07	30-Jun-09	108845.00	=""	="University of Technology Sydney - Centre for Health Economic Research and Evaluation (CHERE)"	20-Dec-07 12:48 PM	

+="CN52114-A1"	"FOOD CONTAINER, INSULATED"	="Defence Materiel Organisation"	20-Dec-07	="Containers and storage"	19-Dec-07	18-Mar-08	111650.00	="J7855"	="TRIMCAST PTY LTD"	20-Dec-07 01:56 PM	

+="CN52118"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	24060.96	="AEC06/019"	="Peoplebank Australia Ltd"	20-Dec-07 02:21 PM	

+="CN52123"	"Translation of Election Guide"	="Australian Electoral Commission"	20-Dec-07	="Written translation services"	01-Dec-06	30-Nov-09	18212.04	="S06/07/033"	="VITS Language Link"	20-Dec-07 02:28 PM	

+="CN52125"	"Annual meeting at PACOM"	="Department of Defence"	20-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10066.60	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	

+="CN52126"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	20-Dec-07	="Passenger transport"	29-Nov-07	29-Nov-07	12406.22	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	

+="CN52127"	"HMA Blaze Press ads Job vacancies CM07100026,CM07100027,CM07100028,CM07100029"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11596.99	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52128"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100148,CM07100147,CM07100146,CM07100145"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11828.91	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52129"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100150,CM07100149,CM07101146,CM07100363"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	13353.14	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52130"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100143,CM07110004,CM07110369,CM07110370"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	14964.62	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52131"	"HMA Blaze Press ads Recruitment Job vacancies CM07110022,CM07110014,CM07110013,CM07110012"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	29-Nov-07	29-Nov-07	12129.87	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52132"	"Panel transaction fee for Strategic Workforce PlanCIOG HR Services"	="Department of Defence"	20-Dec-07	="Human resources services"	04-Dec-07	04-Dec-07	11501.60	=""	="AUST PUBLIC SVC COMM"	20-Dec-07 02:48 PM	

+="CN52133"	"DSTO Project Furniture"	="Department of Defence"	20-Dec-07	="Office Equipment and Accessories and Supplies"	10-Dec-07	10-Dec-07	26825.00	=""	="CJ OFFICE CHOICE"	20-Dec-07 02:48 PM	

+="CN52134"	"Chairs for SAW"	="Department of Defence"	20-Dec-07	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	11197.40	=""	="STEM TUBULAR INDSTRS   T"	20-Dec-07 02:48 PM	

+="CN52135"	"DMO Advertisement in Career FAQs publication - Transport and Logistics.  (I have paid this via credit card as invoice was well overdue and vendor mgt have still not created vendor after 3 weeks)."	="Defence Materiel Organisation"	20-Dec-07	="Advertising"	07-Nov-07	14-Dec-07	13200.00	=""	="CAREER FAQS"	20-Dec-07 02:49 PM	

+="CN52136"	"MOU between the ABCC and the APSC concerning the program: Diversity Training."	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Dec-07	="Business administration services"	16-Oct-07	20-Nov-07	11201.00	=""	="THE AUSTRALIAN PUBLIC SERVICE COMMISSION"	20-Dec-07 02:55 PM	

+="CN52137"	"Enagement of TFS Migration Specialist"	="Australian Taxation Office"	20-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	29-Feb-08	88800.00	=""	="Microsoft"	20-Dec-07 03:06 PM	

+="CN52138"	"Software maintenance"	="Department of the House of Representatives"	20-Dec-07	="Software maintenance and support"	18-Dec-07	17-Dec-08	13493.70	=""	="Different Solutions"	20-Dec-07 03:07 PM	

+="CN52139"	"Sage Green Coveralls, Shirts and Trousers for RAAF and other Flying Military Personnel raised against Standing Offer 0306-264-26"	="Defence Materiel Organisation"	20-Dec-07	="Clothing"	17-Dec-07	30-May-08	960118.61	="2480010"	="Australian Defence Apparel"	20-Dec-07 03:09 PM	

+="CN52140"	"Flash Media Software"	="Department of the House of Representatives"	20-Dec-07	="Software"	18-Dec-07	17-Dec-08	69187.71	=""	="Different Solutions"	20-Dec-07 03:11 PM	

+="CN52141"	" computers "	="Department of the House of Representatives"	20-Dec-07	="Computers"	11-Dec-07	29-Feb-08	23595.00	=""	="Commander NSW Pty Ltd"	20-Dec-07 03:17 PM	

+="CN52142"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	06-Dec-07	06-Jan-08	14300.00	=""	="Searson Buck Pty Ltd"	20-Dec-07 03:20 PM	

+="CN52143"	"Flash/media Web"	="Department of the House of Representatives"	20-Dec-07	="Web page creation and editing software"	11-Dec-07	10-Dec-08	66308.00	=""	="Different Solutions"	20-Dec-07 03:22 PM	

+="CN52144"	"Laser jet printers"	="Department of the House of Representatives"	20-Dec-07	="Laser printers"	03-Dec-07	31-Dec-07	277374.95	=""	="Hewlett Packard Aust. Pty Ltd"	20-Dec-07 03:29 PM	

+="CN52145"	"Temporary staff for Study in Australia team"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	40000.00	="PRN18000"	="HAYS PERSONNEL SERVICES"	20-Dec-07 03:39 PM	

+="CN52147"	"Contract for professional development for Country"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	20-Nov-07	30-Jun-08	23595.00	="PRN17796"	="VISION AUSTRALIA"	20-Dec-07 03:43 PM	

+="CN52146-A1"	"For the provision for Infrastructure Architect Consultant - variation"	="Comsuper"	20-Dec-07	="Human resources services"	26-Jun-07	30-Jun-08	100000.00	=""	="Red 29 Pty Limited"	20-Dec-07 03:43 PM	

+="CN52148"	"17 Mort Street - Reconfiguration of Level's 1 and 4"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	11-Dec-07	09-Jan-08	24937.68	="PRN17992"	="CONSTRUCTION CONTROL INTERIORS P/L"	20-Dec-07 03:44 PM	

+="CN52149"	"Design document tender and contract manage DEST"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	05-Sep-07	28-Dec-07	10725.00	="PRN16842"	="GECHAWELL PTY LTD"	20-Dec-07 03:44 PM	

+="CN52150"	"Round Tables x35, Stanza chairs x33"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	03-Oct-07	31-Dec-07	19438.10	="PRN17999"	="Schiavello Commercial Interiors"	20-Dec-07 03:44 PM	

+="CN52151"	"Repairs to Staff House Kangaroo Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	02-Jul-07	28-Mar-08	13500.00	="PRN17382"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52152"	"Exec Furniture 71 and 72 Northbourne projects"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	15393.40	="PRN18205"	="CITE OFFICE DESIGN PTY LIMITED"	20-Dec-07 03:44 PM	

+="CN52153"	"Repairs to Staff House 11 Hollings Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	23-Jul-07	31-Mar-08	72400.00	="PRN17132"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52154"	"DEST National Office Accommodation Project"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Apr-10	1092927.00	="PRN12256"	="XACT PROJECT CONSULTANTS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52155"	"School Enrolment Projections to 2020"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	05-Feb-07	11-Jan-08	35057.00	="PRN12446"	="NATSEM"	20-Dec-07 03:46 PM	

+="CN52156"	"Commvault Data Management Software"	="Department of Education, Science and Training"	20-Dec-07	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	47500.00	="PRN18198"	="COMMVAULT SYSTEMS (AUSTRALIA) P/L"	20-Dec-07 03:47 PM	

+="CN52157"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Access Group Training Ltd"	20-Dec-07 03:48 PM	

+="CN52158"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="Applied Training Solutions Pty Ltd"	20-Dec-07 03:48 PM	

+="CN52159"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="ARTISTRY OF MAKE-UP ACADEMY"	20-Dec-07 03:48 PM	

+="CN52160"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="NEW HORIZONS LEARNING CNTR (PERTH)"	20-Dec-07 03:48 PM	

+="CN52161"	"Organisation Review Implementation of NSW/ACT"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	18-Jun-07	20-Jun-08	34386.41	="PRN17996"	="MERCER HUMAN RESOURCE CONSULTING"	20-Dec-07 03:48 PM	

+="CN52162"	"PAD, SCOURING"	="Defence Materiel Organisation"	20-Dec-07	="Scouring pads"	18-Dec-07	21-Dec-07	13068.00	=""	="RICHARDSON WAYNE SALES"	20-Dec-07 03:49 PM	

+="CN52163"	"Kindy/Pre-school Workshop 2007"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	15000.00	="PRN17412"	="HOLIDAY INN BRISBANE"	20-Dec-07 03:49 PM	

+="CN52164"	"International business skills for VET senior managers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	10-Dec-07	30-May-08	59100.00	="PRN17417"	="INTERNATIONAL EDUCATION"	20-Dec-07 03:49 PM	

+="CN52165"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	14-Dec-07	30-Jun-08	49181.29	="PRN18008"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	20-Dec-07 03:50 PM	

+="CN52166"	"Provision of contract cataloguing services"	="Department of Education, Science and Training"	20-Dec-07	="Library"	02-Oct-07	02-Feb-08	13330.00	="PRN17275"	="LYNN FARKAS INFORMATION SERVICES"	20-Dec-07 03:51 PM	

+="CN52167"	"CPO017973 - Satellite phone charges"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	11-Dec-07	11-Dec-07	15084.53	=""	="Electrotech Australia"	20-Dec-07 04:02 PM	

+="CN52168"	"CPO018019 - Recruitment services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	07-Dec-07	07-Dec-07	18693.16	=""	="Recruitment Management Company"	20-Dec-07 04:03 PM	

+="CN52169"	"07/2470 - Executive assistant services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	10-Dec-07	10-Jun-08	60000.00	=""	="Professional Careers Australia"	20-Dec-07 04:03 PM	

+="CN52170"	"06/1493 - Supply and install cabinet x-ray system"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	27-Nov-06	24-Jan-08	63149.41	=""	="American Science and Engineering Ltd"	20-Dec-07 04:03 PM	

+="CN52171"	"CPO018036 - LCD Touch Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	24084.03	=""	="Electroboard Solutions Pty Ltd"	20-Dec-07 04:03 PM	

+="CN52172"	"CPO017981 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	18392.00	=""	="Access Control Engineered Systems Pty Ltd"	20-Dec-07 04:03 PM	

+="CN52173"	"CPO018042 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	14833.50	=""	="Crimetech Security"	20-Dec-07 04:03 PM	

+="CN52174"	"CPO018047 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	10375.20	=""	="Bemac Security"	20-Dec-07 04:03 PM	

+="CN52175"	"CPO018048 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Oct-07	31-Dec-07	11753.03	=""	="Dataline Visual Link"	20-Dec-07 04:03 PM	

+="CN52176"	"07/2343 - Smartgate Modelling -  CPE004329-1"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-09	114500.00	=""	="Airbiz Aviation Strategies Pty Ltd"	20-Dec-07 04:04 PM	

+="CN52177"	"CPO017470 - Communications Upgrade"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	08-Nov-07	08-Dec-07	55814.00	=""	="SatComms Australia"	20-Dec-07 04:04 PM	

+="CN52178"	"07/2482 - Software Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	8490315.00	=""	="SAP"	20-Dec-07 04:04 PM	

+="CN52179"	"07/2477 - Supply/Maintenance of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	3286470.00	=""	="Microster Pty Ltd"	20-Dec-07 04:04 PM	

+="CN52180-A3"	"07/2476 - Supply/Implementation of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	22-Oct-07	30-Jun-11	1883880.00	=""	="SAP"	20-Dec-07 04:04 PM	

+="CN52181"	"CPO018167 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	18098.70	=""	="Trade Import Services"	20-Dec-07 04:04 PM	

+="CN52182"	"CPO018166 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	16291.80	=""	="Trade Import Services"	20-Dec-07 04:04 PM	

+="CN52183"	"07/2349 - Fit-Out/ Construction Services (CPO018142)"	="Australian Customs and Border Protection Service"	20-Dec-07	="General building construction"	01-Dec-07	31-Jan-08	22517.00	=""	="Quadric Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52184"	"CPO018187 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	10642.50	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52185"	"CPO018183 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	10868.00	=""	="Intelligent Surveillance"	20-Dec-07 04:05 PM	

+="CN52186"	"CPO018186 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	16072.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52187"	"CPO018185 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	11023.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52188"	"CPO018179 - Office Refurbishment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	33880.00	=""	="Jupps Floorcoverings"	20-Dec-07 04:05 PM	

+="CN52189"	"CPO015585 - Recruitment Services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	09-Sep-07	15-Nov-07	12980.00	=""	="Hobsons Australia Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52190-A1"	"CPE0013769-1 Supply of Recording Equipment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Components for information technology or broadcasting or telecommunications"	31-Jul-07	04-Dec-07	178692.80	=""	="Tape Products Research Holdings Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52191"	"CPO018304 - Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	20-Dec-07	07-Mar-08	75900.00	=""	="Trade Import Services"	20-Dec-07 04:06 PM	

+="CN52192"	"Conference Catering"	="Australian Electoral Commission"	20-Dec-07	="Catering services"	04-Dec-07	04-Jan-08	13132.50	=""	="Brew Bar"	20-Dec-07 04:12 PM	

+="CN52193"	"Election Advertising"	="Australian Electoral Commission"	20-Dec-07	="Advertising"	07-Dec-07	07-Jan-08	363472.38	=""	="HMA Blaze Pty Ltd"	20-Dec-07 04:21 PM	

+="CN52194"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	20-Dec-07	="Military fixed wing aircraft"	20-Dec-07	20-Mar-08	19573.38	=""	="AIRFLITE PTY LTD"	20-Dec-07 04:23 PM	

+="CN52195-A1"	"07/2309 - Project Coordinator - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	21-Nov-07	30-Jun-09	369000.00	="07/2309"	="CCS Index Pty Ltd"	20-Dec-07 04:26 PM	

+="CN52196"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	05-Nov-07	14-Dec-07	12300.00	=""	="Owain Glyn Dwr Unit Trust"	20-Dec-07 04:26 PM	

+="CN52198-A1"	"07/2365 - Test Analyst - 0717-0895 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	17-Dec-07	30-Jun-09	279000.00	="05/0717"	="Online 89 P/L t/a Profesionals Online"	20-Dec-07 04:35 PM	

+="CN52199"	"Promotional Items"	="Australian Electoral Commission"	20-Dec-07	="Promotional material or annual reports"	24-Jul-07	24-Dec-07	39014.34	=""	="Add Value Concepts"	20-Dec-07 04:36 PM	

+="CN52201"	"07/2387 - Risk Specialist - 1599-1936 - C&B Services Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Business and corporate management consultation services"	21-Nov-07	27-Nov-07	10560.00	="06/1599"	="Booz Allen Hamilton"	20-Dec-07 04:38 PM	

+="CN52202"	"Courier Services"	="Australian Electoral Commission"	20-Dec-07	="Freight loading or unloading"	12-Nov-07	12-Dec-07	14510.63	=""	="TNT Express (Mascot)"	20-Dec-07 04:50 PM	

+="CN52203-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	25652.94	=""	="Gadens Lawyers Melbourne"	20-Dec-07 04:53 PM	

+="CN52204"	" AIRCRAFT SPARES  NSN'S :  3120-66-156-4671 X 10, 3120-66-156-4672 X 10,             3120-66-156-4674 X 6, 3120-66-156-4676 X 4,                     3120-66-156-4677 X 10, 3120-66-156-4679 X 10,                   3120-66-156-4681 X 6, 3120-66-156-4682 X 4 AND                3120-66-156-4683 X 4.  BUSHING, SLEEVES "	="Defence Materiel Organisation"	20-Dec-07	="Military transport helicopters"	20-Dec-07	22-May-08	13266.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 04:55 PM	

+="CN52207-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	74213.28	="07.080"	="Tresscox Lawyers"	20-Dec-07 05:17 PM	

+="CN52208-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	34663.48	=""	="Maddocks"	20-Dec-07 05:20 PM	

+="CN52211"	"TRAILER, CARGO LT/MDM, CARGO, 4 TONNE, MC3, TWIN AXLE, SINGLE WHEELED, PIG TRAILER, ACCESSORY KIT SCES 12280"	="Defence Materiel Organisation"	20-Dec-07	="Container trailers"	20-Dec-07	11-Apr-08	48473.48	=""	="HAULMARK TRAILERS AUSTRALIA"	20-Dec-07 06:03 PM	

+="CN52212"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB,FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 95 MM W BY 104 MM H. QTY 6,000.  MANUFACTURED IN ACCORDANCE WITH DEF(AUST)1000C ON STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	30-Jan-08	12540.00	=""	="EE CARTONS"	20-Dec-07 06:10 PM	

+="CN52213"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 190 MM W BY104 MM H.  QTY 5,000. RAISED AS PER THE CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	28-Jan-08	17050.00	=""	="EE CARTONS"	20-Dec-07 06:18 PM	

+="CN52214"	"BOX, SETUP, SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440MM LG BY 190 MM W BY 104 MM H.  RAISED AS PER THE TERMS AND CONDITIONS OF THE STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	50160.00	=""	="EE CARTONS"	20-Dec-07 06:27 PM	

+="CN52215"	"BOX, SHIPPING, FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 350 MM W BY 393 MM DEEP, INT DIM.  QTY 30,000. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	64350.00	=""	="EE CARTONS"	20-Dec-07 06:33 PM	

+="CN52216"	"BOX, SHIPPING, FIBREBOARD, CORRUGATED, 1064MM LG BY 1064MM W BY 698MM H, INT DIMN,8.5 CU DECIMETRES.  QTY  2,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	16-Jan-08	27500.00	=""	="EE CARTONS"	20-Dec-07 06:40 PM	

+="CN52217"	" ITEM 1 - 8115-66-107-1281 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 122 MM DEEP. QTY 4,000.  ITEM 2 - 8115-66-107-1282 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 245 MM DEEP. QTY 15,000.  ITEM 3 - 8115-66-107-1283 - BOX, FOLDING SINGLE  WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 122 MM DEEP. QTY 2,000.  ITEM 4 - 8115-66-107-1284 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 245 MM DEEP.  QTY 5,000.  ITEM 5 - 8115-66-107-1285 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 265 MM W AND 122 MM DEEP.  QTY 10,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	16456.00	=""	="EE CARTONS"	20-Dec-07 06:52 PM	

 ="CN52218"	" ITEM 1 - 8115-66-099-7232 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS   TO AS 2838 HJXAA/B&C 350 MM LG BY 259 MM W BY 393 MM DEEP, INT DIM.  QTY  2,000.  ITEM 2 - 8115-66-099-7233 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL,CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 259 MM W BY 251 MM DEEP, INT DIM.  QTY 5,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110.     "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	10351.00	=""	="EE CARTONS"	20-Dec-07 07:00 PM 

--- /dev/null
+++ b/admin/partialdata/16May2008to18May2008valto.xls
@@ -1,1 +1,178 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN84508"	" 9150 66-093-5654  Gear Lubricating Oil  250 x20L Drums  OX-47 (Autran TO 410)  "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	10-Mar-08	17-Mar-08	22236.50	=""	="BP Australia Ltd"	16-May-08 08:12 AM	

+="CN84509"	" R3 SERVICE ON A25-207. "	="Defence Materiel Organisation"	16-May-08	="Military rotary wing aircraft"	16-May-08	29-Aug-08	330000.00	=""	="BAE SYSTEMS AUSTRALIA"	16-May-08 08:19 AM	

+="CN84510-A1"	" 9150 66-056-7026  Engine Lubricating Oil   12500 LI  OMD 113 Bulk Pumping into RAN Vessel "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	11-Mar-08	15-Mar-08	44272.20	=""	="CASTROL"	16-May-08 08:26 AM	

+="CN84514"	" 9150 66-035-7879  Petroleum base Hydraulic Fluid  40 x205L Drums OM-33 "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	18-Mar-08	06-Apr-08	39986.79	=""	="Fuchs"	16-May-08 08:37 AM	

+="CN84553-A2"	"Preparation and delivery of a training and mentoring program for building a Lucid Key for key plant pathogens for agriculture in the Philippines, comprising an initial 5-day training program, remote mentoring and exchange visit by consultant."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Oct-07	29-Feb-08	20274.00	=""	="State of Queensland through the Department of Primary Industries and Fisheries"	16-May-08 08:41 AM	

+="CN84554"	" 1. 9150 66-017-3041 Engine Lubricating Oil OMD 115 50X205L Drums  2. 915066-1355-5787 Petroleum Base Hydraulic Fluid  Super Tractor Oil 35x20L drums    "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	26-Mar-08	02-Apr-08	30190.05	=""	="CALTEX"	16-May-08 08:54 AM	

+="CN84555"	" 9150 66-068-0440   Engine Lubricating Oil OMD 113  30x205L Drums    "	="Defence Materiel Organisation"	16-May-08	="Lubricants and oils and greases and anti corrosives"	17-Mar-08	25-Mar-08	19801.64	=""	="CASTROL"	16-May-08 09:00 AM	

+="CN84556"	" VEHICLE REPAIRS "	="Department of Defence"	16-May-08	="Motor vehicles"	06-Mar-08	06-Apr-08	22873.18	=""	="ALLCOCK CRASH REPAIRS"	16-May-08 09:19 AM	

+="CN84562"	"Printing of NAT70990 - GST Rulings Update. Qty: 2,047,000"	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	02-Jun-08	37169.00	=""	="Canprint Communications"	16-May-08 09:57 AM	

+="CN84566"	"Printing of NAT4203 GST calculation worksheet for BAS. Qty: 2,290,000."	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	02-Jun-08	36264.80	=""	="Paragon Printers"	16-May-08 10:02 AM	

+="CN84568"	"Printer, Automatic Data Process"	="Defence Materiel Organisation"	16-May-08	="Computer printers"	07-May-08	28-May-08	71400.00	=""	="PEACOCK BROS"	16-May-08 10:06 AM	

+="CN84497"	"Restaurant and catering services"	="Australian Research Council"	16-May-08	="Catering services"	14-Apr-08	18-Apr-08	18389.00	=""	="Sintra Cafe & Bar"	16-May-08 10:06 AM	

+="CN84495"	"Legal Services"	="Australian Research Council"	16-May-08	="Legal services"	23-Apr-08	30-Jun-08	30000.00	=""	="Australian Govenment Solicitor"	16-May-08 10:08 AM	

+="CN84494-A1"	"Rent to 31 May 2015 2nd floor 18 Brindabella Park, Canberra Airport"	="Australian Research Council"	16-May-08	="Real estate services"	15-Feb-08	31-May-15	3451279.87	=""	="Canberra International Airport"	16-May-08 10:10 AM	

+="CN84572-A3"	" 07/2512 - Medical Services "	="Australian Customs and Border Protection Service"	16-May-08	="Emergency and field medical services products"	16-Jul-08	31-Aug-11	6470000.00	=""	="International SOS (Australasia) Pty Ltd"	16-May-08 10:14 AM	

+="CN84492-A2"	"Provision of IT Equipment and services"	="Australian Research Council"	16-May-08	="Computer services"	10-Apr-08	18-Apr-08	24000.00	=""	="Hire Intelligence"	16-May-08 10:14 AM	

+="CN84490-A2"	"Web Developer to assist in the development of a new application and GMS"	="Australian Research Council"	16-May-08	="Computer services"	01-Apr-08	30-Sep-08	32374.00	=""	="Agile Digital Engineering"	16-May-08 10:20 AM	

+="CN84577"	"Printing of NAT4138-05.2008 Checklist for people starting a new business. Qty: 600,000"	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	02-Jun-08	59118.40	=""	="Paragon Printers"	16-May-08 10:20 AM	

+="CN84489-A2"	"Project Manager for the development of the ARC's ARQES and other associated functionality"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	29-Aug-08	96921.00	=""	="Rainier Pty Ltd"	16-May-08 10:23 AM	

+="CN84581"	"PRINTER, AUTOMATIC DATA PROCESS"	="Defence Materiel Organisation"	16-May-08	="Computer printers"	13-Mar-08	12-Apr-08	71412.00	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	16-May-08 10:23 AM	

+="CN84582-A1"	"Project Management of Capital Works - Port Moresby"	="Australian Federal Police"	16-May-08	="Project management"	14-Apr-08	10-Dec-08	742013.00	=""	="Manteena Pty Ltd"	16-May-08 10:24 AM	

+="CN84488-A1"	"Business Analyst for the development of ARC's Quality and Evaluation System"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	20-Feb-09	233200.00	=""	="Greythorn Pty Ltd"	16-May-08 10:25 AM	

+="CN84585-A1"	" VEHICLE REPAIRS "	="Department of Defence"	16-May-08	="Motor vehicles"	16-May-08	16-Jun-08	18977.20	=""	="MICKS AUTOS"	16-May-08 10:31 AM	

+="CN84593-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	16-May-08	="Project management"	01-Apr-08	11-Jul-08	936529.00	=""	="Manteena Pty Ltd"	16-May-08 10:43 AM	

+="CN84592-A1"	"VEHICLE REPAIRS"	="Department of Defence"	16-May-08	="Motor vehicles"	16-May-08	16-Jun-08	25677.30	=""	="MICKS AUTOS"	16-May-08 10:44 AM	

+="CN84587"	" Purchase of various list of Spares for 114MCRU "	="Defence Materiel Organisation"	16-May-08	="Surveillance and detection equipment"	15-May-08	18-Dec-08	155783.29	=""	="BAE SYSTEMS"	16-May-08 10:47 AM	

+="CN84598-A1"	"Bizhub C451 multifunction centre for Broadband Div"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Office Equipment and Accessories and Supplies"	01-May-08	15-May-08	11598.40	="ATM08/997"	="KONICA AUSTRALIA PTY LTD"	16-May-08 10:55 AM	

+="CN84599"	"Represent Australia at OECD workshop"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	30-Apr-08	14850.00	="DCON/07/01"	="Eckermann & Associates"	16-May-08 10:56 AM	

+="CN84600"	"Purchase of WRAP modules for RS & T Branch Mapping Room"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Engineering and Research and Technology Based Services"	29-Apr-08	30-Jun-08	25500.00	="ATM08/986"	="WRAP International AB"	16-May-08 10:56 AM	

+="CN84602"	"Airconditioning Unit - 1st Floor Burns Centre Comms Room"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	22-Apr-08	30-Jun-08	24090.00	="ATM08/994"	="TRANE AUSTRALIA"	16-May-08 10:56 AM	

+="CN84603-A4"	"Legal advice-National Broadband Network project"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	24-Apr-08	30-Jun-09	3392482.89	="DCON/06/45"	="CORRS CHAMBERS WESTGARTH"	16-May-08 10:56 AM	

+="CN84604-A1"	"Engage contract staff"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Office Equipment and Accessories and Supplies"	02-Jul-08	30-Jun-09	55230.06	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	16-May-08 10:56 AM	

+="CN84605"	"LegalNet Licences Round 2"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	04-Apr-08	01-Nov-08	13522.50	="ATM07/486"	="Nsynergy International Pty Ltd"	16-May-08 10:56 AM	

+="CN84606"	"Print media advertisement x 9 EOI E-Security awareness week - GCUADV2002-03"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	22-Apr-08	13478.16	="ATM08/989"	="HMA BLAZE PTY LTD"	16-May-08 10:56 AM	

+="CN84607"	"PCMS Software maintenance"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	25487.00	="ATM08/988"	="IBM GLOBAL SERVICES AUST LTD"	16-May-08 10:57 AM	

+="CN84608"	"SAP Productivity and workshops"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	79970.00	="CCR/07/100"	="SAP AUSTRALIA PTY LTD"	16-May-08 10:57 AM	

+="CN84609"	"New Ses office, Level 2 44 Syd"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Building and Construction and Maintenance Services"	25-Apr-08	31-May-08	32516.00	="DCON/05/225"	="ISIS INTERIORS"	16-May-08 10:57 AM	

+="CN84610-A1"	"Consultancy - ICT services transition Plan"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	51645.00	="DCON/05/53"	="WALTER TURNBULL"	16-May-08 10:57 AM	

+="CN84612"	"Artbank lines until February 2008"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	30-Jun-08	24546.01	="CCR/07/3122"	="Optus Billing Services Pty Ltd"	16-May-08 10:57 AM	

+="CN84615-A1"	"Telstra Appeal to Federal Court"	="Department of Broadband Communications and the Digital Economy"	16-May-08	="Public Utilities and Public Sector Related Services"	22-Oct-07	30-Jun-09	204121.13	="DCON/06/45"	="Clayton Utz"	16-May-08 10:58 AM	

+="CN84618"	"Provide assistance and advice to AQIS, to ensure that staff undertaking activities related to  commodities that may have been fumigated, are provided with a workplace free of risk to their health and safety."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	22-Apr-08	30-Jun-08	39600.00	=""	="Hartman Thomas Pty Ltd"	16-May-08 11:01 AM	

+="CN84619"	"Partnership Contribution to Greening Australia to cover costs associated with the participation in the Veg Partners Group"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	11000.00	=""	="Greening Australia"	16-May-08 11:01 AM	

+="CN84620"	"Laboratory diagnostic analysis of animal samples in Indonesia for agreed diseases."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	08-May-08	30-Jun-08	33000.00	=""	="CSIRO"	16-May-08 11:01 AM	

+="CN84621-A1"	"Placement of 18 x Part-Time Quarantine & Export Inspectors. Commenced 25 Feb 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	25-Feb-08	12-May-08	35640.00	=""	="Hoban Recruitement"	16-May-08 11:01 AM	

+="CN84622-A1"	"Placement of 14 x Quarantine & Export Inspectors. Commencing April 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	01-Apr-08	12-May-08	27720.00	=""	="Hoban Recruitement"	16-May-08 11:01 AM	

+="CN84623"	"Architectural design and documentation for the new AQIS accommodation in Collie Street, Fyshwick ACT."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	31-Dec-08	24750.00	=""	="DNA Architects"	16-May-08 11:01 AM	

+="CN84624"	"Subscription renewal"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	01-May-08	26-Jun-09	42735.00	=""	="Gartner Australasia Pty Ltd"	16-May-08 11:01 AM	

+="CN84625"	"Temporary Contractor"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-Jul-08	31-Dec-08	32000.00	=""	="Careers Unlimited"	16-May-08 11:01 AM	

+="CN84626"	"Investigation of current computer environment (LAN/WAN and computer room) and the creation and delivery of a TRA for the DAFF network."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	12-May-08	27-Jun-08	31700.00	=""	="Stratsec Pty Ltd"	16-May-08 11:01 AM	

+="CN84627"	"Supply of veterinary drugs"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	07-Jul-08	59400.00	=""	="Parnell Laboratories"	16-May-08 11:02 AM	

+="CN84628"	"Security Clearance Assessments"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	01-May-08	30-Jun-09	20000.00	=""	="Persec Solutions"	16-May-08 11:02 AM	

+="CN84629-A1"	"Consultancy and training for people with disability."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	27-May-08	27-May-09	11000.00	=""	="The Australian Employer's Network on Disability"	16-May-08 11:02 AM	

+="CN84631"	"Recruitment services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	03-Mar-08	30-Apr-08	18150.00	=""	="Hudson Global Resources"	16-May-08 11:02 AM	

+="CN84633-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	07-Mar-08	30-Jun-08	40000.00	=""	="Environment Protection Authority South Australia"	16-May-08 11:02 AM	

+="CN84634-A1"	"Contractor Ana Mogaldeanu"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-May-08	09-Jan-09	60000.00	=""	="Careers Unlimited Pty Ltd"	16-May-08 11:03 AM	

+="CN84635-A1"	"Detector Dog Courier"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	10822.60	=""	="It's a Dogs Life Boarding & Breeding Kennels"	16-May-08 11:03 AM	

+="CN84636"	"Recruitment for Snr Plant Pathologist, advertising: Melbourne Age, Australian, Canberra Times, Aus. Plant Pathology online, New Scientist."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Computer services"	11-Apr-08	12-Apr-08	17714.74	=""	="HMA Blaze Pty Ltd"	16-May-08 11:03 AM	

+="CN84637-A1"	"Provision to the Bureau of project management services relating to the drilling of investigation bores, logging of bore data and lab testing within the River Murray Corridor to validate and identify salt deposits in the Murray Darling Basin."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	2209350.00	=""	="Sunraysia Environmental Pty Ltd"	16-May-08 11:03 AM	

+="CN84638-A1"	"To undertake field surveillance and testing of Bats in Papua New Guinea (PNG) and Indonesdia to test for Nipah Virus in 2008."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	26-Mar-08	25-Sep-08	135000.00	=""	="Andrew Breed"	16-May-08 11:03 AM	

+="CN84639"	"To procure the services of CSIRO to undertake field surveillance for exotic pests of bees in Papua New Guinea and Indonesia"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	09-May-08	31-Aug-08	98500.00	=""	="CSIRO Division of Entomology"	16-May-08 11:03 AM	

+="CN84640"	"Advertising of the 2010 Graduate Development Program to potential applicants during the 2009 promotion and marketing campaign January - April 2009. GradCareers is a graduate specific publication that is distributed to University Careers Services and at Careers Fairs to promote employers in the public and private sectors."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	06-May-08	31-May-09	16940.00	=""	="Hobsons Australia trading as Hobsons Guides - GradCareers"	16-May-08 11:03 AM	

+="CN84641"	"Advertising of the 2010 Graduate Development Program to potential applicants during the 2009 promotion and marketing campaign January - April 2009. GradCareers is a graduate specific publication that is distributed to University Careers Services and at Careers Fairs to promote employers in the public and private sectors."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	08-May-08	31-May-09	12980.00	=""	="Graduate Careers Australia Ltd - Graduate Opportunities"	16-May-08 11:04 AM	

+="CN84643"	"Sabdy Hayman - Information technology services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	09-May-08	30-Jun-08	33000.00	=""	="Pegasus IT Consulting Pty Ltd"	16-May-08 11:04 AM	

+="CN84645"	"07/10 ARC Linkages project"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	22000.00	=""	="University of Wollongong"	16-May-08 11:04 AM	

+="CN84646"	"Switchboard operators for April 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-Apr-08	30-Apr-08	23841.28	=""	="Sirius Corporation Ltd"	16-May-08 11:04 AM	

+="CN84647"	"18 Marcus Clarke St call costs for Apr 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	21072.93	=""	="AAPT Limited"	16-May-08 11:04 AM	

+="CN84648"	"National Landcare Facilitation Project"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	68958.00	=""	="Marian Partners Australia"	16-May-08 11:04 AM	

+="CN84649"	"Conference calls to 08 Apr 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Telecommunications media services"	19-Mar-08	18-Apr-08	15239.70	=""	="AAPT Limited"	16-May-08 11:05 AM	

+="CN84650"	"Training"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	10-Jun-08	10-Jun-08	10688.00	=""	="Multimedia Languages and Marketing"	16-May-08 11:05 AM	

+="CN84651"	"to conduct an independent review of the role and activities of the Subcommittee on Plant Health Diagnostic Standards (SPHDS)"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	06-May-08	15-Jun-08	11000.00	=""	="Kalang Consultancy Services"	16-May-08 11:05 AM	

+="CN84652-A1"	"Data validation and capture"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Sep-07	31-May-08	25300.00	=""	="The Northern Territory of Australia Departmant of Primary Industries, Fisheries and Mines"	16-May-08 11:05 AM	

+="CN84653"	"Purchased "Gold" sponsorship of "Innovation Generation" Conference 2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	18-Jul-08	20000.00	=""	="Grain Growers Association Limited"	16-May-08 11:05 AM	

+="CN84654-A1"	"Facilitation services for the National Rural Financial Counselling Conference 2008."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Nov-07	30-Jun-08	23567.50	=""	="Garland Outcomes"	16-May-08 11:05 AM	

+="CN84655"	"AQIS Additional Comms Backbone Provisions"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-May-08	39972.90	=""	="Brisbane Airport Corporation"	16-May-08 11:05 AM	

+="CN84656"	"Blackberry access and charges to 19 Mar 08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	19-Mar-08	13876.94	=""	="Telstra Corporation Limited"	16-May-08 11:05 AM	

+="CN84657"	"Accommodation"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Personal and Domestic Services"	01-May-08	28-Feb-09	88000.00	=""	="Liberal Party of Australia ACT Division Incorporated"	16-May-08 11:06 AM	

+="CN84658"	"Diagnostic testing of biological samples"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	29-May-08	27026.08	=""	="CSIRO"	16-May-08 11:06 AM	

+="CN84659"	"Printing and Distribution of Avian Influenza Feed Scoops"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	12-May-08	30-May-08	16621.00	=""	="Fjord Manufacturing"	16-May-08 11:06 AM	

+="CN84661"	"Print and update Lonely Planet Guides"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	15-May-08	15-Jun-08	75350.00	=""	="Lonely Planet"	16-May-08 11:06 AM	

+="CN84662"	"Monthly support for ARC and GMS databases. Hosting services and support for ARC Central website."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-May-08	31-Oct-08	12210.00	=""	="F1 Solutions Pty Ltd"	16-May-08 11:06 AM	

+="CN84663"	"Talent rollover of Big Bugs Talent TV/Print"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Marketing and distribution"	20-Apr-08	20-Jul-08	11601.70	=""	="KWP Advertising Pty Ltd"	16-May-08 11:06 AM	

+="CN84664"	"Provision of Supervisory Management Training for the AQIS Management and Development Program"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	16-May-08	05-May-09	40000.00	=""	="Swinburne University of Technology"	16-May-08 11:06 AM	

+="CN84666"	"Provide to the Bureau a qualitative segmentation study of people's perceptions (as part of the Cegedim Climate Survey) on climate change, climate variability, coping and adaptive capacity of primary industries and regional communities in drought effected areas."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	01-Apr-08	30-Jun-08	21000.00	=""	="Cegedim Strategic Data"	16-May-08 11:07 AM	

+="CN84667"	"Staff Domestic Accommodation"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Passenger transport"	10-Mar-08	16-Apr-08	10175.00	=""	="Best Western Karratha Central Apartments"	16-May-08 11:07 AM	

+="CN84668-A1"	"Recruitement HR professional services."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	11-Jan-08	10488.00	=""	="Task Solutions"	16-May-08 11:07 AM	

+="CN84669"	"CHS Plant Pathology: Services and Technical advice 2007/2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	18000.00	=""	="Agriculture Victoria Services Pty Ltd"	16-May-08 11:07 AM	

+="CN84670"	"Entomology Services"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management advisory services"	30-Jun-08	30-Jun-11	331923.00	=""	="CSIRO"	16-May-08 11:07 AM	

+="CN84671-A1"	"Placement of 16 x Full-Time Quarantine & Export Inspectors. Commenced 3/03/2008"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Education and Training Services"	03-Mar-08	12-May-08	31680.00	=""	="Hoban Recruitement"	16-May-08 11:07 AM	

+="CN84672"	"Legal fees for Mango IRA"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Legal services"	12-May-08	12-May-09	10000.00	=""	="Minter Ellison"	16-May-08 11:07 AM	

+="CN84673"	"Provision of contract staff for Sydney International Terminal: Baggage Handlers & Admin."	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Human resources services"	01-May-08	30-Jun-08	990000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	16-May-08 11:07 AM	

+="CN84674-A1"	"Room hire and catering for National Conference for 180 people for 3 days.11-13/06/08"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	14-Jun-08	55000.00	=""	="Adelaide Convention Centre"	16-May-08 11:08 AM	

+="CN84675"	"Legal Fees for Paprika IRA"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Legal services"	12-May-08	12-May-09	10000.00	=""	="Minter Ellison"	16-May-08 11:08 AM	

+="CN84676"	"Printing of publication - Australian Food Statistics 2007"	="Department of Agriculture Fisheries and Forestry"	16-May-08	="Printed media"	22-May-08	30-Jun-08	21927.40	=""	="New Millenium Print"	16-May-08 11:08 AM	

+="CN84692"	"Extra construction works at Ringwood"	="Centrelink"	16-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	16-May-08	18-May-08	22401.50	=""	="Pirotta Services Pty Ltd"	16-May-08 11:49 AM	

+="CN84486-A1"	"IT developer for the development of ARC's Quality and Evaluation System (ARQES)"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	30-Jun-08	65824.00	=""	="Greythorn Pty Ltd"	16-May-08 11:52 AM	

+="CN84698"	"  Facilitation services for Marketing Communication   capability workshops.  "	="Australian Taxation Office"	16-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	26675.00	="06.028-62"	="Noetic Solutions P/L"	16-May-08 12:06 PM	

+="CN84483-A1"	"IT developer for the development of ARC's Quality and Evaluation System (ARQES)"	="Australian Research Council"	16-May-08	="Computer services"	25-Feb-08	25-Feb-09	244005.00	=""	="Peoplebank Australia Pty Ltd"	16-May-08 12:13 PM	

+="CN84481-A1"	"Storage of Records and information management"	="Australian Research Council"	16-May-08	="Document storage services"	17-Mar-08	30-Jun-10	60000.00	=""	="Iron Mountain Aust t/a Pickfords"	16-May-08 12:14 PM	

+="CN84478-A1"	"Assist in Development of Stategic Plan"	="Australian Research Council"	16-May-08	="Strategic planning consultation services"	15-Feb-08	30-Apr-08	15125.00	=""	="Perform Group"	16-May-08 12:16 PM	

+="CN84475-A2"	"Bibliometric Analysis"	="Australian Research Council"	16-May-08	="Computer services"	01-Feb-08	11-Jul-08	11000.00	=""	="Australian National University"	16-May-08 12:19 PM	

+="CN84703"	" DUCT ASSEMBLY, AIR CONITIONING-HEATING, AIRCRAFT  NSN - 1660/14386877 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	01-May-08	13-May-08	23370.80	=""	="Milspec Services Pty Ltd"	16-May-08 12:51 PM	

+="CN84704"	" SUPPORT, STRUCTURAL COMPONENT, AIRCRAFT  NSN - 1560/13575947 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	28-Apr-08	06-Sep-08	20610.00	=""	="Milspec Services Pty Ltd"	16-May-08 12:57 PM	

+="CN84705"	" NUT, AIRCRAFT PROPELLER HUB  NSN - 1610/007095395 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	07-May-08	21-May-08	12516.00	=""	="AEROSPACE COMPOSITES PTY LTD"	16-May-08 01:01 PM	

+="CN84706"	"Supply and installation data cabling"	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	34710.50	="37-2005"	="Absolute Cabling Systems Pty Ltd"	16-May-08 01:05 PM	

+="CN84707"	" HOUSING, LIQUID PUMP  NSN - 1650/007177235 "	="Defence Materiel Organisation"	16-May-08	="Military transport aircraft"	08-May-08	29-May-08	11530.00	=""	="FLITE PATH PTY LTD"	16-May-08 01:06 PM	

+="CN84708"	"motor vehicle spare parts"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	66865.92	=""	="LANDROVER"	16-May-08 01:56 PM	

+="CN84709-A4"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	19-Jun-06	30-Jun-09	466400.00	=""	="Paxus Australia Pty Limited"	16-May-08 01:58 PM	

+="CN84710"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	32038.89	=""	="LANDROVER"	16-May-08 02:01 PM	

+="CN84712"	" Physical Security Equipment "	="Department of Foreign Affairs and Trade"	16-May-08	="Building and Construction Machinery and Accessories"	22-Jun-07	30-Jun-08	146009.00	=""	="AVON BARRIER CO LTD"	16-May-08 02:04 PM	

+="CN84711-A2"	"Provisions for Specialist Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Mar-07	22-Aug-08	354200.00	=""	="Greythorn Pty Ltd"	16-May-08 02:04 PM	

+="CN84713"	" Project management and superintendency services "	="Department of Foreign Affairs and Trade"	16-May-08	="Architectural engineering"	01-Jul-07	30-Apr-08	129920.00	=""	="PROJECT PLANNING (ACT) PTY LTD"	16-May-08 02:23 PM	

+="CN84714"	"Motore Vehicle Parts"	="Department of Defence"	16-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	16-Jun-08	15713.67	=""	="Volvo Commerical Vehicles"	16-May-08 02:45 PM	

+="CN84715"	" Management of Property Services Tender "	="Department of Foreign Affairs and Trade"	16-May-08	="Management advisory services"	12-Feb-07	30-Sep-07	268577.00	="06/110378"	="GROSVENOR MANAGEMENT CONSULTING PTY. LTD."	16-May-08 02:47 PM	

+="CN84716"	"Annual Maintenance of Warehouse Miner Software"	="Australian Taxation Office"	16-May-08	="Software maintenance and support"	01-Apr-08	31-Mar-09	76154.10	=""	="Teradata Australia Pty Ltd"	16-May-08 02:51 PM	

+="CN84717"	"Provisions for Specialist Information Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	31-Dec-07	138600.00	=""	="Greythorn Pty Ltd"	16-May-08 03:01 PM	

+="CN84720"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	30-Nov-07	30-Nov-07	13526.26	=""	="Qantas Airways"	16-May-08 03:03 PM	

+="CN84723"	" Provision of the automated smartraveller telephone service "	="Department of Foreign Affairs and Trade"	16-May-08	="Business administration services"	01-Dec-06	30-Nov-07	118250.00	="DFAT05/100261"	="CENTRELINK (COMMONWEALTH SERVICES DELIVERY AGENCY)"	16-May-08 03:06 PM	

+="CN84724"	" Airfare "	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	02-Dec-07	02-Dec-07	10143.77	=""	="Qantas Airways"	16-May-08 03:08 PM	

+="CN84725"	"IT Infrastructure tender development"	="Administrative Appeals Tribunal"	16-May-08	="Information technology consultation services"	12-May-08	30-May-08	10010.00	=""	="Qirx Pty Ltd"	16-May-08 03:12 PM	

+="CN84727"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	12764.62	=""	="Qantas Airways"	16-May-08 03:12 PM	

+="CN84726-A2"	"Provisions for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	208780.00	=""	="Greythorn Pty Ltd"	16-May-08 03:13 PM	

+="CN84728-A3"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	453200.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:16 PM	

+="CN84731"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	12828.97	=""	="Qantas Airways"	16-May-08 03:17 PM	

+="CN84730-A2"	" Fitout of part of Level 8 Terrica Place and part of ground floor 340 Adelaide Street Brisbane QLD "	="Centrelink"	16-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Apr-08	30-Jun-08	88643.50	=""	="PREMIS SOLUTIONS PTY LTD"	16-May-08 03:17 PM	

+="CN84732"	"Vehicle driver training course"	="Australian Federal Police"	16-May-08	="Vehicle driving schools services"	03-May-08	04-May-08	16700.00	="05-2005"	="Transport Industries Skills Centre INC"	16-May-08 03:17 PM	

+="CN84733-A1"	" Production of Booklets: Smartraveller Campaign "	="Department of Foreign Affairs and Trade"	16-May-08	="Management and Business Professionals and Administrative Services"	07-May-07	30-Nov-09	1645000.00	=""	="LONELY PLANET PUBLICATIONS PTY. LIMITED"	16-May-08 03:17 PM	

+="CN84738"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	15948.68	=""	="Qantas Airways"	16-May-08 03:20 PM	

+="CN84737"	"Provisions for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	162250.00	=""	="Greythorn Pty Ltd"	16-May-08 03:20 PM	

+="CN84743-A3"	"Provision for Information Technology Services (previously published as GAPS ID 1610331)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	668800.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:22 PM	

+="CN84747"	" Airfare "	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	08-Jan-08	08-Jan-08	15948.68	=""	="Qantas Airways"	16-May-08 03:23 PM	

+="CN84748-A4"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	08-Jan-07	30-Jun-09	434500.00	=""	="Greythorn Pty Ltd"	16-May-08 03:25 PM	

+="CN84750-A5"	"Provision for Information Technology Services (previously published under GAPS ID 1608182)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	707652.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:27 PM	

+="CN84752"	"SERVICE LARVI CCBA"	="Department of Defence"	16-May-08	="Safety and rescue vehicles"	09-Apr-08	12-May-08	21538.00	=""	="DRAGER SAFETY"	16-May-08 03:27 PM	

+="CN84751"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	21-Jan-08	21-Jan-08	12877.92	=""	="Qantas Airways"	16-May-08 03:28 PM	

+="CN84749"	" Budget and Administrative Services "	="Department of Foreign Affairs and Trade"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	95000.00	=""	="ICON RECRUITMENT PTY LTD"	16-May-08 03:30 PM	

+="CN84753-A3"	"Provision for Information Technology Specialist Services (previously published as GAPS ID 1610361)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	620400.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:31 PM	

+="CN84754"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	22-Jan-08	22-Jan-08	10712.77	=""	="Qantas Airways"	16-May-08 03:31 PM	

+="CN84755"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	22-Jan-08	22-Jan-08	11255.18	=""	="Qantas Airways"	16-May-08 03:33 PM	

+="CN84756"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	16-May-08	="Passenger air transportation"	05-Feb-08	05-Feb-08	10209.08	=""	="Qantas Airways"	16-May-08 03:37 PM	

+="CN84757-A2"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	24-Jul-06	30-Jun-09	649000.00	=""	="Paxus Australia Pty Limited"	16-May-08 03:38 PM	

+="CN84760-A4"	" Provisions for Information Technology Specialist Services (previously published as GAPS ID 1607003) "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	09-Apr-09	660000.00	=""	="Greythorn Pty Ltd"	16-May-08 03:46 PM	

+="CN84767"	"Bag Canvas"	="Department of Defence"	16-May-08	="Canvas bags"	12-May-08	16-Jun-08	23100.00	=""	="JOBECK Pty Ltd"	16-May-08 03:53 PM	

+="CN83747"	"Climate control maintenance"	="Australian Securities and Investments Commission"	16-May-08	="Heating and ventilation and air circulation"	04-Dec-07	03-Dec-10	14535.00	=""	="Emerson"	16-May-08 03:54 PM	

+="CN84771-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	358462.50	=""	="Paxus Australia Pty Limited"	16-May-08 04:03 PM	

+="CN84773"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	16-May-08	="Legal services"	01-May-08	30-Jun-08	48000.00	=""	="Sofronoff, Walter"	16-May-08 04:10 PM	

+="CN84774-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-09	653400.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:11 PM	

+="CN84775-A3"	"Provision for Information Technlogy Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jun-09	712800.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:12 PM	

+="CN84776-A3"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	13-Jun-06	30-Jun-09	562029.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:15 PM	

+="CN84777-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	10-Jul-06	30-Jun-09	656260.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:17 PM	

+="CN84778-A5"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	11-Dec-06	30-Jun-09	541200.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:18 PM	

+="CN84779"	"Provision of services relating to administrative support"	="Australian Federal Police"	16-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	64521.60	=""	="Compas Pty Ltd"	16-May-08 04:20 PM	

+="CN84781-A4"	"Provision for Information Technology Specialist Services (previously published as GAPS ID 1607739)"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	30-Jan-09	647900.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:21 PM	

+="CN84780-A4"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	24-Jun-06	30-Jun-09	477312.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:21 PM	

+="CN84782-A6"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	01-Jul-06	01-May-09	880374.00	=""	="Greythorn Pty Ltd"	16-May-08 04:24 PM	

+="CN84784"	"Provision for Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	11-Sep-06	30-Sep-07	215380.00	=""	="Greythorn Pty Ltd"	16-May-08 04:27 PM	

+="CN84786-A2"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	17-Jul-06	28-Feb-08	405350.00	=""	="Greythorn Pty Ltd"	16-May-08 04:30 PM	

+="CN84787"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	31-Jul-06	30-Jun-08	482900.00	=""	="Greythorn Pty Ltd"	16-May-08 04:33 PM	

+="CN84788-A1"	"Provision of IT security management services"	="Australian Securities and Investments Commission"	16-May-08	="Information technology consultation services"	02-Jan-08	31-Mar-08	49368.00	=""	="Shearwater Solutions P/L"	16-May-08 04:33 PM	

+="CN84789-A2"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	422400.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:36 PM	

+="CN84790"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	04-Apr-07	30-Jun-08	302500.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:37 PM	

+="CN84791-A2"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	13-Jun-06	30-Jun-08	649700.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:40 PM	

+="CN84792"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	12-Mar-07	30-Jun-08	262350.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:43 PM	

+="CN84793"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-07	30-Jun-08	417230.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:45 PM	

+="CN84794"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	21-Mar-07	30-Jun-08	162580.00	=""	="Finite IT Recruitment Solutions"	16-May-08 04:46 PM	

+="CN84795"	"Review of corporate services functions to identify efficiencies."	="Administrative Appeals Tribunal"	16-May-08	="Business and corporate management consultation services"	22-Apr-08	30-Jun-08	82500.00	=""	="PriceWaterhouseCoopers"	16-May-08 04:48 PM	

+="CN84796-A5"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	04-Sep-06	30-Jun-09	692874.00	=""	="Greythorn Pty Ltd"	16-May-08 04:49 PM	

+="CN84797-A5"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	09-May-07	30-Jun-09	525525.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:51 PM	

+="CN84798-A3"	" Provisions for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	16-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	20-Feb-08	325600.00	=""	="Paxus Australia Pty Limited"	16-May-08 04:56 PM	

+="CN84800"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	03-Jul-06	30-Jun-08	325000.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:00 PM	

+="CN84801"	"Provision of Information Technology Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	09-Nov-06	30-Jun-08	291500.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:03 PM	

+="CN84802"	"Printing of NAT11032-07.2007."	="Australian Taxation Office"	16-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	26-Jun-08	29927.70	=""	="Paragon Printers"	16-May-08 05:04 PM	

+="CN84803-A2"	"  Provisions for Web Publishing Services  "	="Department of Immigration and Citizenship"	16-May-08	="World wide web WWW site design services"	21-Aug-07	30-Jun-08	217790.00	=""	="Tactics Consulting Pty. Limited"	16-May-08 05:04 PM	

+="CN84804"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	16-May-08	="Information technology consultation services"	16-Apr-07	30-Jun-08	264110.00	=""	="Finite IT Recruitment Solutions"	16-May-08 05:05 PM	

+="CN84805"	" Cisco chassis & routers and associated equipment  "	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	14-May-08	16-Jun-08	1365011.21	=""	="Dimension Data Australia Pty Ltd"	16-May-08 05:18 PM	

+="CN84806"	" Cythernet Ethernet Equipment and Cypher Manager Software Licences "	="Australian Federal Police"	16-May-08	="Computer Equipment and Accessories"	14-May-08	16-Jun-08	1180768.60	=""	="Senetas Security Pty Ltd"	16-May-08 05:38 PM 

--- /dev/null
+++ b/admin/partialdata/17Jan2008to21Jan2008valto.xls
@@ -1,1 +1,533 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN55056"	"A23 AIRCRAFT - REPAIRS TO ACTUATOR, ELECTRO-MECHANICAL, LINEAR"	="Defence Materiel Organisation"	17-Jan-08	="Military fixed wing aircraft"	16-Jan-08	25-Feb-08	19296.20	=""	="AIRFLITE PTY LTD"	17-Jan-08 08:43 AM	

+="CN55057"	" VEHICLE REPAIRS "	="Department of Defence"	17-Jan-08	="Motor vehicles"	21-Sep-07	21-Oct-07	24443.10	=""	="ALLCOCK CRASH REPAIRS"	17-Jan-08 09:00 AM	

+="CN55058"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	17-Jan-08	="Drugs and Pharmaceutical Products"	18-Sep-07	24-Sep-07	11716.32	=""	="Symbion Pharmacy Services"	17-Jan-08 09:48 AM	

+="CN55059"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	17-Jan-08	="Medical Equipment and Accessories and Supplies"	31-May-07	30-Sep-07	61680.96	=""	="Smith & Nephew (Australia) Pty Ltd"	17-Jan-08 09:53 AM	

+="CN55060"	"Courier Services"	="Australian Electoral Commission"	17-Jan-08	="Postal and small parcel and courier services"	10-Nov-07	24-Nov-07	48432.11	=""	="TNT Express (Mascot)"	17-Jan-08 09:57 AM	

+="CN55061"	"Recruitment Services"	="Australian Taxation Office"	17-Jan-08	="Recruitment services"	30-Oct-07	13-Nov-07	79500.00	="06.042"	="DFP Recruitment Services Pty Ltd"	17-Jan-08 10:00 AM	

+="CN55062"	"Printing of ballot papers"	="Australian Electoral Commission"	17-Jan-08	="Industrial printing services"	19-Nov-07	19-Dec-07	46906.10	=""	="Colemans Printing Pty Ltd"	17-Jan-08 10:05 AM	

+="CN55063"	"FLUGELHORN WITH MOUTHPIECE, LYRE AND CASE, QUANTITY 9."	="Defence Materiel Organisation"	17-Jan-08	="Musical Instruments and parts and accessories"	16-Jan-08	16-Mar-08	21266.78	="2580077"	="ENGADINE MUSIC EDUCATION CENTRE"	17-Jan-08 10:08 AM	

+="CN55064"	" SAXOPHONE WITH LEATHER NECK STRAP, MOUTHPIECE, CASE, LYRE AND STAND, QUANTITY 2. "	="Defence Materiel Organisation"	17-Jan-08	="Musical Instruments and parts and accessories"	16-Jan-08	26-May-08	15406.60	="2580076"	="KURT JACOB AND CO. PTY LTD"	17-Jan-08 10:33 AM	

+="CN55066"	"Professional fees"	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	21-Oct-07	18-Dec-07	38500.00	=""	="McKinsey Pacific Rim Inc"	17-Jan-08 10:52 AM	

+="CN55018"	"Professional fees for Intervention in Federal Court."	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	10-Jul-07	01-Nov-07	14009.50	=""	="Ms Kate Eastman, Barrister"	17-Jan-08 10:55 AM	

+="CN55068"	"Purchase of 40 chairs"	="Australian Human Rights Commission"	17-Jan-08	="Chairs"	02-Nov-07	12-Dec-07	28600.00	=""	="Stem Industries Pty Ltd"	17-Jan-08 11:06 AM	

+="CN55070"	"Professional services"	="Australian Human Rights Commission"	17-Jan-08	="Legal services"	21-Sep-07	25-Oct-07	31122.52	=""	="Clayton Utz"	17-Jan-08 11:12 AM	

+="CN55071"	"vehicle parts."	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Sep-07	04-Jan-08	17667.93	=""	="Land Rover Australia"	17-Jan-08 11:14 AM	

+="CN55072"	"Lease renewal at Nowra, NSW"	="Department of Human Services"	17-Jan-08	="Real estate services"	20-Dec-08	19-Dec-11	1462544.00	=""	="Matela P/L"	17-Jan-08 11:14 AM	

+="CN55073"	" VEHICLE REPAIRS "	="Department of Defence"	17-Jan-08	="Motor vehicles"	07-Dec-07	06-Jan-08	11762.75	=""	="MACK AUSTRALIA"	17-Jan-08 12:12 PM	

+="CN55074"	" vehicle repair "	="Department of Defence"	17-Jan-08	="Motor vehicles"	07-Dec-06	21-Jan-08	17205.90	=""	="VOLVO COMMERCIAL VEHCILES"	17-Jan-08 12:26 PM	

+="CN55076-A1"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	71391.33	=""	="SAAL"	17-Jan-08 01:41 PM	

+="CN55077-A1"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	68040.82	=""	="SAAL"	17-Jan-08 01:44 PM	

+="CN55078"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	64862.85	=""	="SAAL"	17-Jan-08 01:47 PM	

+="CN55079"	" REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	30-Jun-08	69713.02	=""	="SAAL"	17-Jan-08 01:51 PM	

+="CN45149"	"REPAIR AND OVERHAUL OF BLACK HAWK INTERMEDIATE GEARBOX"	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	07-Nov-07	31-Dec-07	42109.72	=""	="SAAL"	17-Jan-08 02:01 PM	

+="CN55082"	"Supply of Diesel & Petrol fuels"	="Department of Parliamentary Services"	17-Jan-08	="Diesel fuel"	18-Dec-07	31-Dec-07	16500.00	=""	="Caltex Australia Petroleum Pty Ltd"	17-Jan-08 02:22 PM	

+="CN55083"	"Provision of machinery condition monitoring services (Contract JH99065C)"	="Department of Parliamentary Services"	17-Jan-08	="Electromechanical services"	19-Dec-07	30-Dec-07	10890.00	=""	="Hatch Associates Pty ltd"	17-Jan-08 02:22 PM	

+="CN55085"	"Supply of elevating work platform"	="Department of Parliamentary Services"	17-Jan-08	="Self elevating workover platforms"	19-Dec-07	31-Jan-08	11825.00	=""	="Snorkel Elevating Work Platforms"	17-Jan-08 02:22 PM	

+="CN55087"	"Supply and Maintenance of Printers (Standing Offer DPS07004)"	="Department of Parliamentary Services"	17-Jan-08	="Computer printers"	19-Dec-07	31-Jan-08	130853.47	=""	="Hewlett Packard Australia Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55089"	"Supply of diesel fuel"	="Department of Parliamentary Services"	17-Jan-08	="Diesel fuel"	20-Dec-07	31-Dec-07	28380.00	=""	="Caltex Australia Petroleum Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55091"	"Security training Services for Parliamentary Security Contract (DPS03042 )"	="Department of Parliamentary Services"	17-Jan-08	="Education and Training Services"	21-Dec-07	31-Dec-07	11330.00	=""	="Xtek Limited"	17-Jan-08 02:23 PM	

+="CN55093"	"Provision of maintenance painting services"	="Department of Parliamentary Services"	17-Jan-08	="Painting services"	21-Dec-07	30-Jun-08	22000.00	=""	="AGC Industries Pty Ltd"	17-Jan-08 02:23 PM	

+="CN55094"	"Provision of Security Advice"	="Department of Parliamentary Services"	17-Jan-08	="National security"	08-Jan-08	30-Jan-08	15649.21	=""	="T4 Protective Security"	17-Jan-08 02:23 PM	

+="CN55096"	"Provision of support services for PeopleSoft HRMS"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	30-Jun-08	21450.00	=""	="Oracle Corporation Australia P/L"	17-Jan-08 02:24 PM	

+="CN55098"	"Supply of ZIP boiling water appliances"	="Department of Parliamentary Services"	17-Jan-08	="Commercial water heaters"	15-Jan-08	31-Jan-08	28400.41	=""	="Zip Heaters (Aust) Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55099"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	154684.51	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55101"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	38748.82	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55103"	"Provision of ICT services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	98909.80	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:24 PM	

+="CN55105"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	17-Jan-08	="Carpeting"	15-Jan-08	31-Jan-08	18715.40	=""	="Chesta's Floors"	17-Jan-08 02:25 PM	

+="CN55106"	"Provision of  telephone calls"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	38315.18	=""	="Telstra Corporation Ltd"	17-Jan-08 02:25 PM	

+="CN55107"	"Provision of Purchase of Turf Maintenance Products"	="Department of Parliamentary Services"	17-Jan-08	="Grounds maintenance services"	29-Nov-07	30-Jun-08	19800.00	=""	="Nuturf Pty Ltd"	17-Jan-08 02:25 PM	

+="CN55108"	"Provision of ICT Services"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	29-Feb-08	18700.00	=""	="SVS Technologies Pty Ltd"	17-Jan-08 02:25 PM	

+="CN55109"	"Provision of Water & Sewerage services"	="Department of Parliamentary Services"	17-Jan-08	="Supply of water"	14-Dec-07	30-Jun-08	181795.90	=""	="ACTEW AGL Water"	17-Jan-08 02:25 PM	

+="CN55110"	"Provision of bulk photocoping"	="Department of Parliamentary Services"	17-Jan-08	="Photocopying"	16-Jul-07	03-Mar-08	11000.00	=""	="Konica Minolta Business Solutions"	17-Jan-08 02:25 PM	

+="CN55111"	"Provision of tempory nurse for nurse center Contract (DPS07088)"	="Department of Parliamentary Services"	17-Jan-08	="Nursery services"	24-Jul-07	03-Mar-08	11000.00	=""	="National Health Care Services"	17-Jan-08 02:25 PM	

+="CN55112"	"Provision of Character Checks"	="Department of Parliamentary Services"	17-Jan-08	="Security and protection software"	15-Aug-07	03-Mar-08	14300.00	=""	="Aust Federal Police"	17-Jan-08 02:26 PM	

+="CN55113"	"Provision of Security Checks"	="Department of Parliamentary Services"	17-Jan-08	="Security and protection software"	15-Aug-07	03-Mar-08	14300.00	=""	="Attorney-General's Department"	17-Jan-08 02:26 PM	

+="CN55115"	"Building works Package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	17-Jan-08	="Building construction management"	08-Jan-08	03-Mar-08	16500.00	=""	="Manteena Pty Ltd"	17-Jan-08 02:26 PM	

+="CN55116"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jan-08	="Printing"	18-Dec-07	30-Jun-08	60390.00	=""	="Canprint Communications Pty Ltd"	17-Jan-08 02:26 PM	

+="CN55117"	"PABX-Supply and Implementation Facilites Mangement Team ( DPS04082)"	="Department of Parliamentary Services"	17-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	03-Mar-08	147287.82	=""	="Telstra Corporation Ltd"	17-Jan-08 02:26 PM	

+="CN55118"	"Supply of electrical cable"	="Department of Parliamentary Services"	17-Jan-08	="Electrical cable and accessories"	17-Dec-07	29-Feb-08	15650.80	=""	="Next Entertainment Technology P/L"	17-Jan-08 02:26 PM	

+="CN55119"	"Provision of legal services Contract (JH03027)"	="Department of Parliamentary Services"	17-Jan-08	="Legal services"	18-Dec-07	03-Mar-08	33000.00	=""	="Blake Dawson"	17-Jan-08 02:27 PM	

+="CN55114"	"R2 Servicing on A17-012"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	05-Sep-07	16-Jan-08	110654.23	=""	="Helitech Pty Ltd"	17-Jan-08 02:27 PM	

+="CN55120"	"Supply of  Transmitting equipment"	="Department of Parliamentary Services"	17-Jan-08	="Computer Equipment and Accessories"	18-Dec-07	03-Mar-08	12443.20	=""	="Pacific Broadband Networks"	17-Jan-08 02:27 PM	

+="CN55121"	"R2 servicing on A17-031"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	15-Oct-07	14-Jan-08	117822.78	=""	="Helitech Pty Ltd"	17-Jan-08 02:31 PM	

+="CN55123"	" R2 servicing A17-011 "	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	18-Oct-07	07-Dec-07	151192.24	=""	="Helitech Pty Ltd"	17-Jan-08 02:36 PM	

+="CN55122"	"qty 540 Soldier Personal Radios,"	="Defence Materiel Organisation"	17-Jan-08	="Two way radios"	17-Jan-08	24-Apr-08	1117000.00	=""	="Ericsson Australia Pty Ltd"	17-Jan-08 02:41 PM	

+="CN55124"	" Publlications "	="Australian Centre for International Agricultural Research"	17-Jan-08	="Publication printing"	12-Nov-07	17-Dec-07	10392.80	=""	="Piroon Pty Ltd"	17-Jan-08 02:58 PM	

+="CN55125"	"Turbine Overhaul"	="Defence Materiel Organisation"	17-Jan-08	="Aircraft"	09-Mar-07	15-Jan-08	23874.54	=""	="aviation Turbine O/h"	17-Jan-08 02:58 PM	

+="CN55126"	"Distribution services"	="Australian Centre for International Agricultural Research"	17-Jan-08	="Distribution"	29-Nov-07	17-Dec-07	16849.39	=""	="National Mailing and Marketing"	17-Jan-08 03:13 PM	

+="CN55127"	" Distribution services "	="Australian Centre for International Agricultural Research"	17-Jan-08	="Distribution"	27-Nov-07	17-Dec-07	17268.74	=""	="National Mailing and Marketing"	17-Jan-08 03:18 PM	

+="CN55129"	"Rent"	="Australian Centre for International Agricultural Research"	17-Jan-08	="Lease and rental of property or building"	13-Nov-07	17-Dec-07	45487.50	=""	="GDA Diversified Property Trust"	17-Jan-08 03:24 PM	

+="CN55133"	"Motor Vehicle Parts"	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jan-08	17-Feb-08	24187.60	=""	="Volvo Commerical Vehicles"	17-Jan-08 03:58 PM	

+="CN55134"	"Motor Vehicle Parts"	="Department of Defence"	17-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jan-08	17-Feb-10	15277.15	=""	="Merceded Benz"	17-Jan-08 04:06 PM	

+="CN55135-A1"	" Staff to assist with various IT audits plus Out Of Pocket Expenses. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	01-Dec-07	30-Apr-08	56886.20	=""	="Protiviti Pty Ltd"	17-Jan-08 04:26 PM	

+="CN55136-A1"	" Purchase of IT Network equipment. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Fixed network equipment and components"	01-Jul-07	31-Dec-07	277854.50	=""	="Unisys Australia Pty Ltd"	17-Jan-08 04:27 PM	

+="CN55137-A1"	" Computer room fitout and planning "	="Australian National Audit Office (ANAO)"	17-Jan-08	="General building and office cleaning and maintenance services"	01-Nov-07	30-Jun-08	24970.00	=""	="SMI Fitout Pty Limited"	17-Jan-08 04:27 PM	

+="CN55138-A1"	" Placement fee "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Personnel recruitment"	01-Oct-07	21-Nov-07	21325.92	=""	="Cordelta Pty Ltd"	17-Jan-08 04:27 PM	

+="CN55139"	"PricewaterhouseCoopers"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	03-Mar-05	31-Oct-08	313152.00	=""	="Pricewaterhouse Coopers"	17-Jan-08 04:27 PM	

+="CN55140-A1"	"Provide advice on Issues Paper for Preparation of Tax Expenditure Statement."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	03-Oct-07	30-Nov-07	21585.89	=""	="Collaborative Business"	17-Jan-08 04:27 PM	

+="CN55141-A1"	" Prepare and present 2 day training course Critical Thinking "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Human resource development"	04-Dec-07	05-Dec-07	14500.00	=""	="Robert M Spillane"	17-Jan-08 04:27 PM	

+="CN55142-A9"	" Centrelink Financial Statements Audit 07-08 to 10-11. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	05-Nov-07	30-Sep-12	2923311.50	="ANAOAM2007/240"	="Ernst and Young"	17-Jan-08 04:27 PM	

+="CN55143-A1"	"Assistance with the development of a BPG on Internal Budgeting - Phase 1"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	07-Nov-07	07-Dec-07	22226.00	=""	="KPMG Peat Marwick - ACT"	17-Jan-08 04:27 PM	

+="CN55144-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	08-Nov-07	30-Apr-08	169730.00	=""	="Oakton Services Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55145-A1"	"Assist in Review and Update of AASG PAAM"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	08-Oct-07	31-Dec-07	30000.00	=""	="Thompson Consulting and Accoutning Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55146-A1"	"Undertake Performance Audit of Management of E-Business in DEST"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	09-Nov-07	30-Jun-08	92782.00	=""	="KNJ Professional Services Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55147-A1"	"PASG Audit Advisory Panel Member for Initiation of Business System Projects"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	14-Nov-07	30-Jun-08	15200.00	=""	="Christopher Conybeare and Associates"	17-Jan-08 04:28 PM	

+="CN55148-A1"	"Provision of audit services for the Initiation of Business System Projects Audit (Second Contract)."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	15-Oct-07	14-Dec-07	34650.00	=""	="Pitt Group Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55149-A1"	"Engagement of staff to review the IT environment of Active After-School Communities."	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	19-Nov-07	24-Dec-07	17160.00	=""	="Axiom Associates Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55150-A1"	"2007-08 Design of Corporate Publications"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Printed publications"	19-Nov-07	30-Jun-08	17000.00	=""	="Comcom Pty Ltd T/A Zoo"	17-Jan-08 04:28 PM	

+="CN55151-A1"	"Placement Fee"	="Australian National Audit Office (ANAO)"	17-Jan-08	="Personnel recruitment"	28-Sep-07	28-Sep-07	14114.69	=""	="Firstwater Pty Ltd"	17-Jan-08 04:28 PM	

+="CN55152-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	17-Jan-08	="Audit services"	30-Nov-07	30-Apr-08	100320.00	=""	="KPMG Peat Marwick - ACT"	17-Jan-08 04:29 PM	

+="CN55156"	"FIBREGLASS MAT, TEFLON"	="Defence Materiel Organisation"	17-Jan-08	="Fibres"	17-Jan-08	21-Feb-08	21454.57	=""	="INTERTURBINE ADVANCED COMPOSITES"	17-Jan-08 04:55 PM	

+="CN55157"	" FITTING ASSEMBLY QUANTITY 10 - P/No 206-011-140-001; MC 97499. "	="Defence Materiel Organisation"	17-Jan-08	="Military rotary wing aircraft"	17-Jan-08	14-Feb-08	14761.04	=""	="HELITECH A DIVISION OF SIKORSKY"	17-Jan-08 05:28 PM	

+="CN55158"	" Araphat Cap "	="Defence Materiel Organisation"	17-Jan-08	="Clothing accessories"	17-Jan-08	31-Mar-08	108900.00	="J8110"	="Frillneck U.T.E."	17-Jan-08 05:44 PM	

+="CN55163-A2"	" Provision of services relating to Linux systems adminstration "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	413820.00	=""	="Patriot Alliance Pty Ltd"	17-Jan-08 08:56 PM	

+="CN55164"	"Development of application integration soloutions and prototypes"	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Apr-04	30-Jun-08	818144.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:02 PM	

+="CN55165"	" Business analysis activities for Information Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	04-Sep-06	30-Jun-08	387112.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:17 PM	

+="CN55167"	" Business analysis activities for Information Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	04-May-05	30-Jun-08	325736.00	=""	="Paxus Australia Pty Ltd"	17-Jan-08 09:33 PM	

+="CN55169"	" Information Services high level systems administration servies "	="Australian Federal Police"	17-Jan-08	="Computer services"	18-Dec-06	30-Jun-08	292160.00	=""	="Greythorn Pty Ltd"	17-Jan-08 10:07 PM	

+="CN55170-A4"	" Provision of services relating to data communications technical officer activities "	="Australian Federal Police"	17-Jan-08	="Computer services"	01-Jul-07	30-Jun-09	353456.40	=""	="Greythorn Pty Ltd"	17-Jan-08 10:13 PM	

+="CN55171-A1"	" Specialised IT Security Services "	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Apr-08	192522.00	=""	="Greythorn Pty Ltd"	17-Jan-08 10:22 PM	

+="CN55172-A1"	"Applications development support services for specialised AFP applications"	="Australian Federal Police"	17-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Sep-08	229345.60	=""	="Greythorn Pty Ltd"	17-Jan-08 10:31 PM	

+="CN55173"	"Motor Vehicle Parts"	="Department of Defence"	18-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Jan-08	16-Feb-08	74721.37	=""	="Mercedes Benz Aust"	18-Jan-08 08:15 AM	

+="CN55174"	"Motor Vehicle Parts"	="Department of Defence"	18-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Jan-08	16-Feb-08	67519.98	=""	="Landrover Australia"	18-Jan-08 08:24 AM	

+="CN55175"	"Motor Vehicle Parts"	="Department of Defence"	18-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jan-08	10-Feb-08	85950.26	=""	="Landrover Australia"	18-Jan-08 08:27 AM	

+="CN55196"	"IT - Systems Support Officer"	="Family Court of Australia"	18-Jan-08	="Temporary technician staffing needs"	14-Jan-08	11-Jul-08	49632.00	=""	="Clicks IT Recruitment"	18-Jan-08 09:35 AM	

+="CN55197"	" IT APPLICATIONS DEVELOPEMENT - CONTRACTING OUT "	="Family Court of Australia"	18-Jan-08	="Temporary technician staffing needs"	04-Feb-08	01-Aug-08	105600.00	=""	="CLICKS IT RECRUITMENT"	18-Jan-08 09:45 AM	

+="CN55203-A1"	"Advertising"	="Centrelink"	18-Jan-08	="Advertising"	14-Dec-07	30-Jun-08	10000.01	=""	="HMA Blaze Pty Ltd"	18-Jan-08 10:20 AM	

+="CN55204"	"Advertising"	="Centrelink"	18-Jan-08	="Advertising"	20-Dec-07	30-Jun-08	33000.00	=""	="HMA Blaze Pty Ltd"	18-Jan-08 10:21 AM	

+="CN55205"	"Early Intervention and Rehabilitation Programs"	="Centrelink"	18-Jan-08	="Human resources services"	03-Jan-08	30-Jun-08	16500.00	=""	="JRJ Rehabilitation Pty Ltd"	18-Jan-08 10:21 AM	

+="CN55206"	"Advertising"	="Centrelink"	18-Jan-08	="Printed media"	17-Dec-07	30-Jun-08	343500.25	=""	="HMA Blaze Pty Ltd"	18-Jan-08 10:21 AM	

+="CN55207-A1"	"Building Maintenance"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	06-Jul-07	31-Dec-08	36502.40	=""	="Kone Elevators Pty Ltd"	18-Jan-08 10:21 AM	

+="CN55208"	"Recruitment Services"	="Centrelink"	18-Jan-08	="Human resources services"	14-Dec-07	30-Jun-08	35000.00	=""	="Chandler Macleod Group"	18-Jan-08 10:21 AM	

+="CN55209"	"Office design services"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Nov-07	28-Jun-08	15132.26	=""	="IA Group Pty Ltd (Interiors Australia)"	18-Jan-08 10:21 AM	

+="CN55210"	"Staff Medicals"	="Centrelink"	18-Jan-08	="Human resources services"	10-Sep-07	30-Jun-08	13200.00	=""	="HDA Medical Group"	18-Jan-08 10:21 AM	

+="CN55211"	"Counselling Services"	="Centrelink"	18-Jan-08	="Healthcare Services"	31-Dec-07	30-Jun-08	16052.50	=""	="Workcare Australia"	18-Jan-08 10:21 AM	

+="CN55212"	"Data comms"	="Centrelink"	18-Jan-08	="Communications Devices and Accessories"	03-Jan-08	30-Jun-08	1100000.00	=""	="Telstra"	18-Jan-08 10:21 AM	

+="CN55213"	"Medical services"	="Centrelink"	18-Jan-08	="Healthcare Services"	10-Jan-08	30-Jun-08	11000.00	=""	="Health for Industry"	18-Jan-08 10:21 AM	

+="CN55214"	"Pilot Coffee Shop for Centrelink Concept Office Tuggeranong"	="Centrelink"	18-Jan-08	="Office supplies"	02-Jan-08	28-Mar-08	11286.00	=""	="Kaldi Coffee"	18-Jan-08 10:21 AM	

+="CN55215"	"Advertising"	="Centrelink"	18-Jan-08	="Advertising"	14-Aug-07	30-Jun-08	22000.00	=""	="HMA Blaze Pty Ltd"	18-Jan-08 10:22 AM	

+="CN55216"	"Fitout Management Services"	="Centrelink"	18-Jan-08	="Management advisory services"	13-Dec-07	27-Jun-08	33550.00	=""	="IA Group Pty Ltd (Interiors Australia)"	18-Jan-08 10:22 AM	

+="CN55217"	"Accommodation"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	28-Nov-07	30-Jun-08	24479.99	=""	="White Gum Motel"	18-Jan-08 10:22 AM	

+="CN55218"	"Recruitment Services"	="Centrelink"	18-Jan-08	="Human resources services"	10-Dec-07	30-Jun-08	80000.03	=""	="IPA Personnel Pty Ltd"	18-Jan-08 10:22 AM	

+="CN55219"	"Accommodation"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	27-Sep-07	31-Mar-08	10500.00	=""	="Vernon Craig Bates"	18-Jan-08 10:22 AM	

+="CN55220"	"Office fitout management"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Oct-07	25-Mar-08	12303.06	=""	="IA Group Pty Ltd (Interiors Australia)"	18-Jan-08 10:22 AM	

+="CN55221"	"Office fitout, Penrith, NSW"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Dec-07	28-Feb-08	14473.80	=""	="Ibex Interiors Pty Ltd"	18-Jan-08 10:22 AM	

+="CN55222"	"Accommodation"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Mar-08	20960.00	=""	="Swagmans Rest Apartments"	18-Jan-08 10:22 AM	

+="CN55224"	"Fitout managment services"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Nov-07	30-Jun-08	11825.00	=""	="Interior Dynamics Australia Pty Ltd"	18-Jan-08 10:22 AM	

+="CN55225"	"Accommodation"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	27-Nov-07	30-May-08	11000.01	=""	="Jessica Court Serviced Apartments"	18-Jan-08 10:23 AM	

+="CN55223"	" Parachute System"	="Defence Materiel Organisation"	18-Jan-08	="Parachute equipment"	18-Dec-07	08-Apr-08	112059.70	="2180035"	="Parachutes Australia"	18-Jan-08 10:23 AM	

+="CN55226"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Jun-07	27-Jun-08	12870.00	=""	="HBO + EMTB Interiors (Victoria) Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55227"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	103303.20	=""	="Diversiti Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55228"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	112912.80	=""	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55229"	"Market Research"	="Centrelink"	18-Jan-08	="Management advisory services"	20-Dec-07	09-Jun-08	140000.02	=""	="NWC Research"	18-Jan-08 10:23 AM	

+="CN55230"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	100900.80	=""	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55231"	"Office equipment"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	20-Dec-07	20-Feb-08	11479.60	=""	="Schiavello Systems (QLD) Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55232"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	21-Dec-07	31-Mar-08	60660.60	=""	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55233"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	21-Dec-07	01-Apr-08	14809.30	=""	="Workspace Commercial Furniture Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55234"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	21-Dec-07	30-Jun-08	91291.20	=""	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55235"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	21-Dec-07	30-Jun-08	103950.00	=""	="Devsgroup Pty Ltd"	18-Jan-08 10:23 AM	

+="CN55236"	"IT Specialist Services for Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	24-Dec-07	30-Jun-08	99699.60	=""	="OOSW Consulting Pty Ltd"	18-Jan-08 10:24 AM	

+="CN55237"	"Building Consultancy Services"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Dec-07	28-Feb-08	13420.00	=""	="GHD Pty Ltd"	18-Jan-08 10:24 AM	

+="CN55238"	"External Training"	="Centrelink"	18-Jan-08	="Vocational training"	27-Dec-07	30-Jun-08	16170.00	=""	="Conflict Resolution Training"	18-Jan-08 10:24 AM	

+="CN55239"	"Recruitment"	="Centrelink"	18-Jan-08	="Security surveillance and detection"	28-Dec-07	31-Dec-07	10735.00	=""	="Australian Public Servce Commission"	18-Jan-08 10:24 AM	

+="CN55240"	"Supply and install carpet"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	31-Dec-07	30-Jun-08	105578.00	=""	="Interface Flor"	18-Jan-08 10:24 AM	

+="CN55241"	"Fitout management"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Nov-06	30-Jun-08	12970.64	=""	="GHD Pty Ltd"	18-Jan-08 10:24 AM	

+="CN55242-A1"	"Fitout management"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-Dec-07	30-Sep-08	19250.00	=""	="GHD Pty Ltd"	18-Jan-08 10:24 AM	

+="CN55243"	"Medical assessments"	="Centrelink"	18-Jan-08	="Healthcare Services"	29-Jun-07	30-Jun-08	11000.00	=""	="CRS Australia"	18-Jan-08 10:24 AM	

+="CN55244"	"Office refurbishment"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Oct-07	30-Jun-08	11202.47	=""	="Trinity Quality Interiors Pty Ltd"	18-Jan-08 10:24 AM	

+="CN55245"	"Rehabilitation services"	="Centrelink"	18-Jan-08	="Healthcare Services"	27-Jun-07	30-Jun-08	15000.00	=""	="CRS Australia"	18-Jan-08 10:24 AM	

+="CN55246"	"Advertising"	="Centrelink"	18-Jan-08	="Advertising"	27-Jun-07	30-Jun-08	25000.01	="GCUADV2002/03"	="HMA Blaze Pty Ltd"	18-Jan-08 10:25 AM	

+="CN55247"	"Legal Services"	="Centrelink"	18-Jan-08	="Legal services"	14-Dec-07	30-Jun-08	11000.00	=""	="Sparke Helmore Solicitors"	18-Jan-08 10:25 AM	

+="CN55248"	"Rehabilitation services"	="Centrelink"	18-Jan-08	="Healthcare Services"	13-Dec-07	30-Jun-08	24999.99	=""	="Work Conditioning"	18-Jan-08 10:25 AM	

+="CN55249"	"Accommodation and conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	13-Dec-07	30-Jun-08	40000.01	=""	="Macmahon Contractors Pty Ltd"	18-Jan-08 10:25 AM	

+="CN55250"	"Accommodation and conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	30-Jun-08	30000.00	=""	="All Seasons Oasis Alice Springs"	18-Jan-08 10:25 AM	

+="CN55251"	"Accommodation and conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	30-Jun-08	10000.00	=""	="Dept of Local Govt Housing andSport"	18-Jan-08 10:25 AM	

+="CN55252"	"External Training"	="Centrelink"	18-Jan-08	="Vocational training"	12-Dec-07	30-Jun-08	27225.00	=""	="Tactics Consulting Pty Ltd"	18-Jan-08 10:25 AM	

+="CN55253"	"Transport Services"	="Centrelink"	18-Jan-08	="Transport operations"	13-Dec-07	30-Jun-08	20000.00	=""	="Groote Eylandt Car Rentals"	18-Jan-08 10:25 AM	

+="CN55254"	"Rehabilitation services"	="Centrelink"	18-Jan-08	="Healthcare Services"	13-Dec-07	30-Jun-08	20000.00	=""	="Actualise Consulting"	18-Jan-08 10:25 AM	

+="CN55255"	"Employee Assistance Program, QLD"	="Centrelink"	18-Jan-08	="Community and social services"	13-Dec-07	30-Jun-08	84000.00	=""	="OSA Group"	18-Jan-08 10:25 AM	

+="CN55256"	"Transport Services"	="Centrelink"	18-Jan-08	="Transport operations"	14-Dec-07	30-Jun-08	20000.00	=""	="Gove 4x4 Rentals"	18-Jan-08 10:26 AM	

+="CN55257"	"Office Fitout Management Services, Coffs Harbour, NSW"	="Centrelink"	18-Jan-08	="Management advisory services"	14-Dec-07	27-Jun-08	19778.15	=""	="Interior Dynamics Australia Pty Ltd"	18-Jan-08 10:26 AM	

+="CN55258"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	17-Feb-08	35046.00	=""	="Integrated Cabling Solutions Pty Lt"	18-Jan-08 10:26 AM	

+="CN55259"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Dec-07	21-Dec-07	246578.20	=""	="Formula Interiors NSW"	18-Jan-08 10:26 AM	

+="CN55260"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	27-Jan-08	13904.00	=""	="Integrated Cabling Solutions Pty Lt"	18-Jan-08 10:26 AM	

+="CN55261"	"Accommodation and conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	19-Dec-07	30-Jun-08	30000.00	=""	="All Seasons Oasis Alice Springs"	18-Jan-08 10:26 AM	

+="CN55262"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	03-Feb-08	15070.00	=""	="Integrated Cabling Solutions Pty Lt"	18-Jan-08 10:26 AM	

+="CN55263"	"Hotel, lodging and other meeting facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	19-Dec-07	30-Jun-08	43470.00	=""	="Parap Village Apartments"	18-Jan-08 10:26 AM	

+="CN55264"	"External facilitator"	="Centrelink"	18-Jan-08	="Specialised educational services"	20-Dec-07	31-Jan-08	11000.00	=""	="Headspace (Aust) Pty Ltd"	18-Jan-08 10:26 AM	

+="CN55265"	"Medical services"	="Centrelink"	18-Jan-08	="Healthcare Services"	20-Dec-07	30-Jun-08	16500.00	=""	="Medilaw Pty Ltd"	18-Jan-08 10:26 AM	

+="CN55266"	"Medical services"	="Centrelink"	18-Jan-08	="Healthcare Services"	20-Dec-07	30-Jun-08	16500.00	=""	="Medilaw Pty Ltd"	18-Jan-08 10:26 AM	

+="CN55267"	"External Training"	="Centrelink"	18-Jan-08	="Vocational training"	20-Dec-07	30-Jun-08	44000.00	=""	="Interface21 Pty Ltd"	18-Jan-08 10:27 AM	

+="CN55268-A1"	"Recruitment Services"	="Centrelink"	18-Jan-08	="Human resources services"	20-Dec-07	30-Jun-08	46918.08	=""	="Chandler Macleod Group"	18-Jan-08 10:27 AM	

+="CN55269"	"Business administration services"	="Centrelink"	18-Jan-08	="Business administration services"	21-Dec-07	30-Jun-08	33000.00	=""	="Butler Group"	18-Jan-08 10:27 AM	

+="CN55270"	"Fitout Management Services"	="Centrelink"	18-Jan-08	="Management advisory services"	27-Dec-07	31-Dec-08	35480.01	=""	="Interior Dynamics Australia Pty Ltd"	18-Jan-08 10:27 AM	

+="CN55271"	"Rehabilitation services"	="Centrelink"	18-Jan-08	="Healthcare Services"	28-Dec-07	30-Jun-08	14999.60	=""	="Rehab Management Aust Pty Ltd"	18-Jan-08 10:27 AM	

+="CN55272"	"Business administration services"	="Centrelink"	18-Jan-08	="Business administration services"	12-Dec-07	30-Jun-08	16335.00	=""	="Hobsons Guides"	18-Jan-08 10:27 AM	

+="CN55273"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	07-Jan-08	20-Mar-08	10340.00	=""	="Integrated Cabling Solutions Pty Lt"	18-Jan-08 10:27 AM	

+="CN55274"	"Employee Assistance Program, NSW"	="Centrelink"	18-Jan-08	="Human resources services"	27-Nov-07	30-Jun-08	80500.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	18-Jan-08 10:27 AM	

+="CN55275"	"External training"	="Centrelink"	18-Jan-08	="Vocational training"	03-Dec-07	04-Dec-07	17000.01	=""	="Vantage Point Consulting Pty Ltd"	18-Jan-08 10:27 AM	

+="CN55276"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Dec-07	10-Dec-08	29250.10	=""	="Greenway Architects (SA) Pty Ltd"	18-Jan-08 10:28 AM	

+="CN55277"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	03-Dec-07	16-Dec-07	21230.00	=""	="Celtron Pty Ltd"	18-Jan-08 10:28 AM	

+="CN55278"	"Business administration services"	="Centrelink"	18-Jan-08	="Business administration services"	03-Dec-07	01-Jan-08	10000.00	=""	="Dept of Employment and Workplace"	18-Jan-08 10:28 AM	

+="CN55279"	"Fitout Management Services"	="Centrelink"	18-Jan-08	="Management advisory services"	03-Dec-07	30-Jun-08	23134.99	=""	="IA Group Pty Ltd (Interiors Australia)"	18-Jan-08 10:28 AM	

+="CN55280"	"Telecommunications media services"	="Centrelink"	18-Jan-08	="Telecommunications media services"	04-Dec-07	30-Jun-08	511754.76	=""	="Dimension Data Australia Pty Ltd"	18-Jan-08 10:28 AM	

+="CN55281"	"IT Cabling"	="Centrelink"	18-Jan-08	="Computer services"	05-Dec-07	03-Feb-08	14450.70	=""	="Desa Australia (QLD) Pty Ltd"	18-Jan-08 10:28 AM	

+="CN55282"	"Accommodation and conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	05-Dec-07	30-Jun-08	50000.01	=""	="St Andrews Serviced Apartments"	18-Jan-08 10:28 AM	

+="CN55283"	"Employee Assistance Program"	="Centrelink"	18-Jan-08	="Community and social services"	05-Dec-07	30-Jun-08	132000.00	=""	="OSA Group"	18-Jan-08 10:28 AM	

+="CN55284"	"External training"	="Centrelink"	18-Jan-08	="Vocational training"	05-Dec-07	30-Jun-08	25484.00	=""	="South Western Sydney Inst of TAFE"	18-Jan-08 10:28 AM	

+="CN55285"	"Fitout Management services"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Dec-07	30-Jun-08	18724.35	=""	="GHD Pty Ltd"	18-Jan-08 10:28 AM	

+="CN55286"	"Medical services"	="Centrelink"	18-Jan-08	="Healthcare Services"	05-Dec-07	30-Jun-08	16500.00	=""	="MLCOA"	18-Jan-08 10:28 AM	

+="CN55287"	"Medical services"	="Centrelink"	18-Jan-08	="Healthcare Services"	05-Dec-07	30-Jun-08	16500.00	=""	="MLCOA"	18-Jan-08 10:29 AM	

+="CN55288"	"External Training"	="Centrelink"	18-Jan-08	="Vocational training"	10-Dec-07	30-Jun-08	17650.06	=""	="Arthur Group Pty Ltd"	18-Jan-08 10:29 AM	

+="CN55289"	"Corporate Uniform, Indigenous Response Teams, NT"	="Centrelink"	18-Jan-08	="Apparel and Luggage and Personal Care Products"	10-Dec-07	30-Jun-08	18400.00	=""	="Cricket and Football Shop"	18-Jan-08 10:29 AM	

+="CN55290"	"Engineering services specification"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	30-Jun-08	66000.00	=""	="B Armstrong and Co Pty Ltd"	18-Jan-08 10:29 AM	

+="CN55291"	"Catering"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	10-Dec-07	30-Jun-08	31680.00	=""	="Ginger Catering"	18-Jan-08 10:29 AM	

+="CN55292"	"Property Office Fitout, Frankston, VIC"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Dec-07	01-Apr-08	40139.00	=""	="James Millar Architects"	18-Jan-08 10:29 AM	

+="CN55293"	"Flu vaccinations"	="Centrelink"	18-Jan-08	="Healthcare Services"	11-Dec-07	30-Jun-08	16500.00	=""	="Health for Industry"	18-Jan-08 10:29 AM	

+="CN55294"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	150150.00	="RFTS07/0129"	="GMT Canberra Pty Ltd"	18-Jan-08 10:29 AM	

+="CN55295"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	03-Dec-07	02-Dec-08	201801.60	=""	="Yoda Software Pty Ltd"	18-Jan-08 10:29 AM	

+="CN55296"	"Supply and install carpet"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	03-Dec-07	30-Jun-08	188970.94	=""	="Interface Flor"	18-Jan-08 10:29 AM	

+="CN55297"	"Supply and install carpet"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	03-Dec-07	30-Jun-08	133129.70	=""	="Interface Flor"	18-Jan-08 10:30 AM	

+="CN55298"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	03-Dec-07	31-Mar-08	12587.11	=""	="Schiavello (SA) Pty Ltd"	18-Jan-08 10:30 AM	

+="CN55299"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Distribution and Conditioning Systems and Equipment and Components"	03-Dec-07	14-Dec-07	12430.00	=""	="Westside Services (SA) Pty Ltd"	18-Jan-08 10:30 AM	

+="CN55300"	"Floor coverings"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	03-Dec-07	31-Jan-08	68377.89	=""	="Interface Flor"	18-Jan-08 10:30 AM	

+="CN55301"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	04-Dec-07	28-Mar-08	36096.50	=""	="Solitaire Seating"	18-Jan-08 10:30 AM	

+="CN55303"	"Office furniture, Bendigo, VIC"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	04-Dec-07	30-Jun-08	30189.50	=""	="Solitaire Seating"	18-Jan-08 10:30 AM	

+="CN55304"	"External Training"	="Centrelink"	18-Jan-08	="Human resources services"	05-Dec-07	06-Dec-07	23371.96	=""	="Conflict Resolution Training"	18-Jan-08 10:30 AM	

+="CN55305"	"Supply/Install Sunscreen Blinds"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Dec-07	28-Dec-07	20974.00	=""	="Jays Blinds P/L"	18-Jan-08 10:30 AM	

+="CN55306"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	05-Dec-07	30-Jun-08	196350.00	="RFTS07/0129"	="Acumen Contracting and Recruitment Pty Ltd"	18-Jan-08 10:31 AM	

+="CN55307-A1"	"Envelopes"	="Centrelink"	18-Jan-08	="Paper Materials and Products"	06-Dec-07	31-Dec-07	868560.00	=""	="Australian Envelopes"	18-Jan-08 10:31 AM	

+="CN55308"	"Office furniture, Bendigo, VIC"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	523752.37	=""	="Schiavello (Vic) Pty  Ltd"	18-Jan-08 10:31 AM	

+="CN55309"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	399366.55	=""	="Schiavello (Vic) Pty  Ltd"	18-Jan-08 10:31 AM	

+="CN55310"	"Office furniture, Bendigo, VIC"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	06-Dec-07	30-Jun-08	36712.50	=""	="Stem Industries Pty Ltd"	18-Jan-08 10:31 AM	

+="CN55311"	"Marketing Makeover"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Dec-07	31-Dec-07	33110.00	=""	="Crewman Interiors"	18-Jan-08 10:31 AM	

+="CN55312"	"Market research"	="Centrelink"	18-Jan-08	="Marketing and distribution"	07-Dec-07	31-Jan-08	77660.00	=""	="DBM Consultants Pty Ltd"	18-Jan-08 10:31 AM	

+="CN55313"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	10-Dec-07	30-Jun-08	47168.00	=""	="Schiavello (Vic) Pty  Ltd"	18-Jan-08 10:31 AM	

+="CN55314"	"Computer services"	="Centrelink"	18-Jan-08	="Computer services"	10-Dec-07	30-Jun-08	339454.63	=""	="CSC Australia Pty Ltd"	18-Jan-08 10:31 AM	

+="CN55315"	"Business administration services"	="Centrelink"	18-Jan-08	="Business administration services"	10-Dec-07	30-Jun-08	23232.35	=""	="Corporate Executive Board"	18-Jan-08 10:31 AM	

+="CN55316"	"Office fitout, Parramatta, NSW"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	10-Dec-07	14-Dec-07	132006.60	=""	="Fyfe Interiors and Refurbishment"	18-Jan-08 10:31 AM	

+="CN55317"	"Venue hire"	="Centrelink"	18-Jan-08	="Business administration services"	05-Nov-07	06-Dec-07	20057.06	=""	="Think Business Events"	18-Jan-08 10:32 AM	

+="CN55318"	"IT Specialist services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	29-Apr-04	03-Nov-05	13028.40	=""	="Opticon Australia Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55319-A2"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	30-Mar-08	68468.40	=""	="Verossity Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55320"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	20-Dec-07	111711.60	=""	="Patriot Alliance Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55321"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	09-Jul-07	31-Dec-07	114074.40	=""	="Verossity Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55322"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	03-Oct-07	30-Jun-08	84404.92	=""	="Verossity Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55323"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	99699.60	=""	="PAXUS Australia Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55324"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	30-Jun-08	111711.60	=""	="PAXUS Australia Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55325"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-08	30-Dec-08	120120.00	=""	="Verossity Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55326"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	21-Apr-06	23-Jul-06	105705.60	=""	="Verossity Pty Ltd"	18-Jan-08 10:32 AM	

+="CN55327"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	31-Dec-08	118918.80	=""	="Verossity Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55328"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	31-Dec-07	141741.60	=""	="Verossity Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55329"	"Modular Carpet"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	12-Jul-07	30-Jun-08	10159.60	=""	="Interface Flor"	18-Jan-08 10:33 AM	

+="CN55330"	"Market Research"	="Centrelink"	18-Jan-08	="Marketing and distribution"	10-Sep-07	31-Dec-07	13475.00	=""	="Eureka Strategic Research"	18-Jan-08 10:33 AM	

+="CN55331"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	17-Dec-07	31-Dec-07	180180.00	="RFTS07/0129"	="CSC Australia Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55332"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	02-Oct-07	31-Dec-07	168168.00	=""	="First Point Global Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55333"	"Recruitment Services"	="Centrelink"	18-Jan-08	="Human resources services"	02-Oct-07	05-Oct-07	24198.66	=""	="Chandler Macleod Group"	18-Jan-08 10:33 AM	

+="CN55334"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	10-Dec-07	12-Jul-08	119790.00	=""	="ComPro Solutions Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55335"	"Signage"	="Centrelink"	18-Jan-08	="Signage and accessories"	02-Oct-07	02-Jan-08	10457.15	=""	="Albert Smith Signs Pty Ltd"	18-Jan-08 10:33 AM	

+="CN55336"	"Office fitout, Atherton, QLD"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Oct-07	30-Jun-08	334092.00	=""	="Quadric Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55337"	"Office Fitout, Cairns, QLD"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Oct-07	30-Jun-08	247500.00	=""	="Quadric Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55338"	"Conference facilities"	="Centrelink"	18-Jan-08	="Hotels and lodging and meeting facilities"	01-Nov-07	28-Nov-07	11770.50	=""	="Ramada Pelican Waters"	18-Jan-08 10:34 AM	

+="CN55339"	"Class "B" Safe"	="Centrelink"	18-Jan-08	="Security and personal safety"	07-Dec-07	15-Dec-07	31757.60	=""	="CMI Safe Co"	18-Jan-08 10:34 AM	

+="CN55340"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	11-Dec-07	10-May-08	110510.40	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55341"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	114114.00	="RFTS07/0129"	="Tarakan Consulting Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55342"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	18-Dec-07	01-Feb-08	20190.50	=""	="Schiavello Systems (NSW) Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55343"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	65917.50	=""	="Stratagem"	18-Jan-08 10:34 AM	

+="CN55344"	"Office Fitout, Charters Towers, QLD"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Dec-07	30-Jun-08	287643.40	=""	="Alternate Constructions Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55345"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	19-Dec-07	01-Feb-08	11541.38	=""	="Schiavello (Vic) Pty  Ltd"	18-Jan-08 10:34 AM	

+="CN55346"	"Software Licences"	="Centrelink"	18-Jan-08	="Software"	19-Dec-07	19-Dec-07	106218.34	=""	="Kaz Group Pty Ltd"	18-Jan-08 10:34 AM	

+="CN55347"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Dec-07	30-Apr-08	47337.46	=""	="Interface Flor"	18-Jan-08 10:35 AM	

+="CN55348"	"IT Specialist by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	31-Dec-08	372372.00	=""	="Southern Cross Computing Pty Ltd"	18-Jan-08 10:35 AM	

+="CN55349"	"Office Refurbishment"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	19-Dec-07	30-Apr-08	31453.88	=""	="Solitaire Seating"	18-Jan-08 10:35 AM	

+="CN55350"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	30-Jun-08	138138.00	=""	="Frontier IT Recruitment Consult P/L"	18-Jan-08 10:35 AM	

+="CN55351"	"IT Specialist Servies by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	30-Jun-08	138138.00	="RFTS07/0129"	="Ambit Group"	18-Jan-08 10:35 AM	

+="CN55352-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	21-Feb-08	44721.60	="RFTS07/0129"	="Icon Recruitment Pty Ltd"	18-Jan-08 10:35 AM	

+="CN55353"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	19-Dec-07	30-Jun-08	138138.00	="RFTS07/0129"	="Securelink Pty Ltd"	18-Jan-08 10:35 AM	

+="CN55354"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	31-Dec-08	384384.00	=""	="Southern Cross Computing Pty Ltd"	18-Jan-08 10:35 AM	

+="CN55355"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	120120.00	=""	="Candle IT and T Recruitment"	18-Jan-08 10:35 AM	

+="CN55356-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	111711.60	=""	="Ekonsulting Pty Ltd"	18-Jan-08 10:35 AM	

+="CN55357"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	127327.20	=""	="OOSW Consulting Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55358"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	28-Jan-09	180180.00	=""	="OOSW Consulting Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55359"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	84361.20	=""	="Encore It Services Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55360"	"Computer Equipment and Accessories"	="Centrelink"	18-Jan-08	="Computer Equipment and Accessories"	20-Dec-07	20-Dec-07	42249.88	=""	="Dimension Data Australia Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55361"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	109309.20	=""	="OOSW Consulting Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55362"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	20-Dec-07	30-Jun-08	103303.20	=""	="OOSW Consulting Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55363"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	120120.00	="RFTS07/0129"	="Aurec Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55364"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	11-Dec-07	30-Jun-08	84684.60	=""	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:36 AM	

+="CN55365"	"Parents Babies and Childrens Expo - Adelaide, SA and Sydney, NSW"	="Centrelink"	18-Jan-08	="Advertising"	12-Dec-07	03-Jun-08	11981.20	=""	="The Parents Babies and Childrens"	18-Jan-08 10:36 AM	

+="CN55366"	"Venue Hire"	="Centrelink"	18-Jan-08	="Vocational training"	13-Dec-07	01-Jan-08	11061.60	=""	="Rydges Eagle Hawk Resort"	18-Jan-08 10:36 AM	

+="CN55367"	"Office furniture"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	13-Dec-07	05-Mar-08	11550.00	=""	="Schiavello Systems (NSW) Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55368"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	13-Dec-07	11-Jun-08	90090.00	=""	="Compas Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55369"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	13-Dec-07	17-Mar-08	57957.90	=""	="Omaha IT Services Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55370"	"IT Specialist  Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	14-Dec-07	16-Jun-08	112312.20	="RFTS07/0129"	="Omaha IT Services Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55371"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	14-Dec-07	16-Dec-08	187387.20	=""	="Encore It Services Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55372"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	99099.00	=""	="Omaha IT Services Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55373"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	102102.00	=""	="Omaha IT Services Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55374"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	15-Dec-07	30-Jun-08	103903.80	=""	="Nova IT"	18-Jan-08 10:37 AM	

+="CN55375"	"Computer services"	="Centrelink"	18-Jan-08	="Computer services"	17-Dec-07	30-Jun-08	153932.75	=""	="Kaz Group Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55376"	"Computer Equipment and Accessories"	="Centrelink"	18-Jan-08	="Computer Equipment and Accessories"	17-Dec-07	30-Jun-08	14473.80	=""	="Holocentric Pty Ltd"	18-Jan-08 10:37 AM	

+="CN55377"	"2008 Leadership Programme"	="Centrelink"	18-Jan-08	="Vocational training"	17-Dec-07	31-Oct-08	15400.00	=""	="The Benevolent Society"	18-Jan-08 10:37 AM	

+="CN55378"	"Office furniture, Caboolture, QLD"	="Centrelink"	18-Jan-08	="Furniture and Furnishings"	17-Dec-07	25-Apr-08	423024.80	=""	="Schiavello Systems (QLD) Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55379"	"Installation of CCTV"	="Centrelink"	18-Jan-08	="Security surveillance and detection"	17-Dec-07	31-Dec-07	28316.91	=""	="Austwide Security Services"	18-Jan-08 10:38 AM	

+="CN55380"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	17-Dec-07	31-Dec-08	372372.00	=""	="Southern Cross Computing Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55381"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	17-Dec-07	31-Dec-08	252252.00	="RFTS07/0129"	="OOSW Consulting Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55382"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	28-Jun-08	124924.80	="RFTS07/0129"	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55383"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	117717.60	="RFTS07/0129"	="Peoplebank Australia Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55384"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	99699.60	="RFTS07/0129"	="Aurec Pty Ltd"	18-Jan-08 10:38 AM	

+="CN55385"	"IT Specialist Services by Specified Personnel"	="Centrelink"	18-Jan-08	="Computer services"	18-Dec-07	30-Jun-08	99099.00	="RFTS07/0129"	="Collective Resources IT Recruitment"	18-Jan-08 10:38 AM	

+="CN55386"	" DETECTOR, METALLIC PARTICLE ; P/No B 4704; MC 97484; QUANTITY 10 "	="Defence Materiel Organisation"	18-Jan-08	="Military rotary wing aircraft"	18-Jan-08	30-Apr-08	12030.70	=""	="MILSPEC SERVICES"	18-Jan-08 10:49 AM	

+="CN55201"	"David Roder - Data Strategy 2nd"	="Cancer Australia"	18-Jan-08	="Strategic planning consultation services"	14-Sep-07	30-Jun-09	158546.66	=""	="The Cancer Council of South Australia"	18-Jan-08 10:55 AM	

+="CN55195"	"Review of procurement activities"	="Cancer Australia"	18-Jan-08	="Professional procurement services"	21-May-07	20-May-10	14712.00	=""	="Ken Erwood & Associates"	18-Jan-08 10:58 AM	

+="CN55387"	" medical Consumables For ADF "	="Defence Materiel Organisation"	18-Jan-08	="Medical Equipment and Accessories and Supplies"	10-Jan-08	24-Jan-08	14613.28	=""	="Johnson & Johnson medical"	18-Jan-08 11:13 AM	

+="CN55187"	"Resourcing"	="Cancer Australia"	18-Jan-08	="Accounting and auditing"	28-May-07	31-Jul-07	62370.00	=""	="Ernst & Young"	18-Jan-08 11:22 AM	

+="CN55183"	"IT asset provision"	="Cancer Australia"	18-Jan-08	="Office machines and their supplies and accessories"	01-Jul-07	30-Jun-10	310737.65	=""	="Capital Easy Finance"	18-Jan-08 11:28 AM	

+="CN55388"	" Rope "	="Defence Materiel Organisation"	18-Jan-08	="Parachute equipment"	18-Dec-07	15-Mar-08	18658.31	=""	="Paddy Pallin Adventure Training"	18-Jan-08 11:28 AM	

+="CN55393"	" BEARING BALL ANNULAR P/No 206-010-443-001; MC 97499; QUANTITY 3. "	="Defence Materiel Organisation"	18-Jan-08	="Military rotary wing aircraft"	15-Nov-07	24-Jan-08	14309.32	=""	="HELITECH A DIVISION OF SIKORSKY"	18-Jan-08 12:00 PM	

+="CN55394"	"Hire of travelling exhibition"	="National Archives of Australia"	18-Jan-08	="Education and Training Services"	11-Jan-08	21-Jan-08	16500.00	=""	="South Australian Museum"	18-Jan-08 12:08 PM	

+="CN55179"	"Website design and build"	="Cancer Australia"	18-Jan-08	="World wide web WWW site design services"	30-Apr-07	18-Jun-08	23100.00	=""	="SMS Consulting Group Ltd"	18-Jan-08 12:15 PM	

+="CN55395"	"Contract Procurement Templates"	="National Archives of Australia"	18-Jan-08	="Legal services"	11-Jan-08	30-Jun-08	24200.00	=""	="Australian Government Solicitor"	18-Jan-08 12:16 PM	

+="CN55396"	"ELECTROCARDIOGRAPH DIAGNOSTIC PORTABLE & ACCESSORIES"	="Defence Materiel Organisation"	18-Jan-08	="Electrocardiography EKG monitor accessory kits"	18-Jan-08	28-Feb-08	68384.52	=""	="WELCH ALLYN AUSTRALIA P/L"	18-Jan-08 12:18 PM	

+="CN55178"	"ICT Strategic Review & Roadmap"	="Cancer Australia"	18-Jan-08	="Information technology consultation services"	15-Mar-07	07-Jun-07	120000.00	=""	="SMS Consulting Group Ltd"	18-Jan-08 12:22 PM	

+="CN55177"	"ICT Strategic Review & Roadmap"	="Cancer Australia"	18-Jan-08	="Information technology consultation services"	15-Mar-07	31-Aug-07	200110.00	=""	="SMS Consulting Group Ltd"	18-Jan-08 12:23 PM	

+="CN55399"	"Assistance in the Japan Admin Network Review Project"	="Austrade"	18-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	15151.00	=""	="Tomoko Yoshida"	18-Jan-08 12:52 PM	

+="CN55400"	"Development of commercial & residential guidelines"	="Austrade"	18-Jan-08	="General building construction"	22-Jun-07	06-Jul-08	32463.20	=""	="Coffey Corporate Pty Ltd"	18-Jan-08 12:52 PM	

+="CN55401"	"Purchase of armchairs and boardroom table"	="Austrade"	18-Jan-08	="Furniture and Furnishings"	28-Aug-07	28-Aug-08	10081.50	=""	="Cam Shelving Contractors Pty Ltd"	18-Jan-08 12:52 PM	

+="CN55403"	"Residential lease for Lima"	="Austrade"	18-Jan-08	="Real estate services"	01-Jul-07	30-Jun-09	129905.00	=""	="Jorge Grieve Crousillat"	18-Jan-08 12:52 PM	

+="CN55404"	"Residential lease for Los Angeles"	="Austrade"	18-Jan-08	="Real estate services"	01-Sep-07	31-Aug-08	186738.00	=""	="Irene Tsu"	18-Jan-08 12:52 PM	

+="CN55406"	"Residential lease for New York"	="Austrade"	18-Jan-08	="Real estate services"	01-Jul-07	30-Jun-08	140977.00	=""	="Solow Management Corp"	18-Jan-08 12:52 PM	

+="CN55407"	"Office lease for Vladivostok"	="Austrade"	18-Jan-08	="Real estate services"	01-Aug-07	31-Jul-09	131594.00	=""	="ZAO Rybolovestskiy Kolkhoz Vostok-1"	18-Jan-08 12:52 PM	

+="CN55408"	"Residential lease for Istanbul"	="Austrade"	18-Jan-08	="Real estate services"	05-Jul-07	04-Jul-10	243572.00	=""	="Mr Mehmet Ali Erbil"	18-Jan-08 12:52 PM	

+="CN55410"	"Residential lease for Guangzhou"	="Austrade"	18-Jan-08	="Real estate services"	14-Sep-07	13-Sep-09	219239.00	=""	="New World Group China"	18-Jan-08 12:53 PM	

+="CN55411"	"Residential lease for Hong Kong"	="Austrade"	18-Jan-08	="Real estate services"	01-Sep-07	31-Aug-09	385004.00	=""	="Dipende Limited"	18-Jan-08 12:53 PM	

+="CN55413"	"Residential lease for Tokyo"	="Austrade"	18-Jan-08	="Real estate services"	15-Aug-07	14-Aug-09	355535.00	=""	="K.K. Mitsui Real Estate Residence Lease"	18-Jan-08 12:53 PM	

+="CN55415"	"Residential lease for Russian Federation"	="Austrade"	18-Jan-08	="Real estate services"	12-Nov-07	11-Nov-09	292286.87	=""	="Mrs Tatjana Hengster"	18-Jan-08 12:53 PM	

+="CN55416"	"Residential lease for  Ho Chi Minh City"	="Austrade"	18-Jan-08	="Real estate services"	21-Nov-07	20-Nov-10	243572.40	=""	="Cong Ty Lien Doanh Cao Oc Indochine"	18-Jan-08 12:53 PM	

+="CN55419"	"Rope"	="Defence Materiel Organisation"	18-Jan-08	="Rope bags and rope packs"	20-Dec-07	01-May-08	72710.00	="J8078"	="Mainpeak Pty Ltd"	18-Jan-08 01:15 PM	

+="CN55420"	"Variation to the contract for the Provision for Architect Services"	="Comsuper"	18-Jan-08	="Architectural services"	01-Dec-06	31-Dec-07	30932.00	=""	="May + Russell Architects Pty Ltd"	18-Jan-08 01:39 PM	

+="CN55422-A3"	"Provision of SAP programming services"	="Australian Federal Police"	18-Jan-08	="Computer services"	13-Aug-07	30-Nov-08	316400.00	=""	="Southern Cross Computing Pty Limited"	18-Jan-08 02:10 PM	

+="CN55427"	"Various Hand Held Laser Range Finder Spares"	="Defence Materiel Organisation"	18-Jan-08	="Surveillance and detection equipment"	13-Dec-07	28-Mar-08	108515.00	=""	="Hall & Watts Australia Pty Ltd"	18-Jan-08 02:24 PM	

+="CN55428"	"labour cost repair"	="Department of Defence"	18-Jan-08	="Oil or gas workboat"	18-Jan-08	26-Apr-08	10312.00	=""	="noakes rigging pty ltd"	18-Jan-08 02:27 PM	

+="CN55424"	"provision of office fitout - Joondalup"	="CRS Australia"	18-Jan-08	="Renovation of buildings or landmarks or monuments"	07-Jan-08	15-Feb-08	124443.00	=""	="Interior Building Solutions"	18-Jan-08 02:34 PM	

+="CN55429"	"Temporary Personnel"	="Australian Electoral Commission"	18-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	103870.80	="AEC06/019"	="Peoplebank Recruitment"	18-Jan-08 02:37 PM	

+="CN55430"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Drugs and Pharmaceutical Products"	02-Jan-08	14-Feb-08	12435.76	=""	="Symbion Pharmacy Services"	18-Jan-08 02:38 PM	

+="CN55431-A1"	"Provision for Technical Business Analyst"	="Comsuper"	18-Jan-08	="Human resources services"	09-Jan-08	30-Jun-08	104000.00	=""	="Verossity Pty Ltd"	18-Jan-08 02:40 PM	

+="CN55432"	"Pharmaceuticals For ADF "	="Defence Materiel Organisation"	18-Jan-08	="Drugs and Pharmaceutical Products"	10-Jan-08	24-Feb-08	25390.50	=""	="Symbion Pharmacy Services"	18-Jan-08 02:41 PM	

+="CN55434"	"Variation to the contract for Workstation and associated Joinery for the Fitout of unit 3 Cameron Offices, Belconnen"	="Comsuper"	18-Jan-08	="Carpentry"	15-May-07	28-May-07	460000.00	=""	="Schiavello Pty Ltd"	18-Jan-08 02:45 PM	

+="CN55435"	" Pharmaceuticals for ADF "	="Defence Materiel Organisation"	18-Jan-08	="Drugs and Pharmaceutical Products"	02-Jan-08	02-Feb-08	19737.78	=""	="Smith & Nephew (Australia) Pty Ltd"	18-Jan-08 02:45 PM	

+="CN55433"	"Night Aiming Device Spares"	="Defence Materiel Organisation"	18-Jan-08	="Surveillance and detection equipment"	06-Dec-07	29-Feb-08	22990.00	=""	="BAE Systems Australia Ltd"	18-Jan-08 02:46 PM	

+="CN55436"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Drugs and Pharmaceutical Products"	09-Jan-08	01-Feb-08	56726.49	=""	="Symbion Pharmacy Services"	18-Jan-08 02:49 PM	

+="CN55437"	"Hire of premises"	="Australian Electoral Commission"	18-Jan-08	="Lease and rental of property or building"	29-Oct-07	21-Dec-07	12100.00	=""	="Quadra Pacific (Aust) Corporation"	18-Jan-08 02:54 PM	

+="CN55176"	"Provision of Statement of Strategic Intent"	="Cancer Australia"	18-Jan-08	="Healthcare Services"	07-Nov-06	20-Dec-06	13860.00	=""	="Palm Consulting Group"	18-Jan-08 02:55 PM	

+="CN55439"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Drugs and Pharmaceutical Products"	10-Jan-08	21-Jan-08	15329.05	=""	="Clifford Hallam Healthcare"	18-Jan-08 03:13 PM	

+="CN55442"	"Voice and WAN Data Procurement"	="Australian Electoral Commission"	18-Jan-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	19-Jun-07	30-Jun-08	118000.00	="S07/08/120"	="Blake Dawson Waldron"	18-Jan-08 03:16 PM	

+="CN55443"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Medical Equipment and Accessories and Supplies"	09-Jan-08	05-Mar-08	14481.50	=""	="Smiths Medical Australasia Pty Ltd"	18-Jan-08 03:18 PM	

+="CN55444"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Medical Equipment and Accessories and Supplies"	10-Jan-08	24-Jan-08	16478.00	=""	="Protector Alsafe"	18-Jan-08 03:22 PM	

+="CN55452"	"Night Vision Goggle Spares"	="Defence Materiel Organisation"	18-Jan-08	="Surveillance and detection equipment"	04-Dec-07	30-Apr-08	271741.25	=""	="Point Trading"	18-Jan-08 03:28 PM	

+="CN55454"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Medical Equipment and Accessories and Supplies"	10-Jan-08	21-Jan-08	15664.00	=""	="Orthotic & Prosthetic Centre"	18-Jan-08 03:31 PM	

+="CN52240"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	18-Jan-08	="Medical Equipment and Accessories and Supplies"	18-Dec-07	29-Jan-08	12277.98	=""	="Clifford Hallam Healthcare"	18-Jan-08 03:32 PM	

+="CN55456"	"Hire of election premises"	="Australian Electoral Commission"	18-Jan-08	="Lease and rental of property or building"	05-Oct-07	24-Dec-07	11439.99	=""	="Central Queensland University"	18-Jan-08 03:48 PM	

+="CN55460"	"Project management expenses associated with Wallsend CSC project"	="Centrelink"	18-Jan-08	="Building construction management"	24-Dec-07	30-Jun-08	18000.00	=""	="Interior Dynamics"	18-Jan-08 04:38 PM	

+="CN55459-A2"	" Provision of services relating to switchboard operations "	="Australian Federal Police"	18-Jan-08	="Engineering and Research and Technology Based Services"	22-Nov-05	31-Jan-10	1761393.67	="RFT 19/2005"	="The Trustee for Regent Personnel Pty Ltd (trading as:Regent Personnel Pty Ltd)"	18-Jan-08 04:52 PM	

+="CN55462"	" Usability analysis services for all stages of software development "	="Australian Federal Police"	18-Jan-08	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Dec-08	235998.00	=""	="Greythorn Pty Ltd"	18-Jan-08 05:23 PM	

+="CN55464"	"Provision of librarian services"	="Australian Federal Police"	19-Jan-08	="Library or documentation services"	01-Jul-07	30-Jun-08	115667.00	=""	="Informed Sources Pty. Ltd."	19-Jan-08 01:09 PM	

+="CN55465-A1"	" Information Technology project management services "	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	20-Nov-06	29-Feb-08	322894.00	=""	="Grethorn Pty Ltd"	19-Jan-08 01:20 PM	

+="CN55466-A1"	"Business analysis services for Infomation Services applications/systems"	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	09-Jan-06	20-Mar-08	389144.25	=""	="Icon Recruitment Pty Ltd"	19-Jan-08 02:02 PM	

+="CN55467-A1"	"Business analysis services for Information Services (GAPs ID 1648221)"	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	30-Jan-07	30-Jun-08	304172.00	=""	="Icon Recruitment Pty Ltd"	19-Jan-08 02:19 PM	

+="CN55469-A3"	" Services relating to information communication technology performance management reporting "	="Australian Federal Police"	19-Jan-08	="Computer services"	01-Jul-07	30-Jun-09	429044.00	=""	="Icon Recruitment Pty Ltd"	19-Jan-08 02:39 PM	

+="CN55470-A1"	" High level support to specialised telephone systems (GAPs ID 1687330) "	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	29-Jan-07	30-Jun-08	279576.00	=""	="Icon Recruitment Pty Ltd"	19-Jan-08 02:45 PM	

+="CN55472"	"Web development services"	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-04	31-Jul-07	495818.00	=""	="Icon Recruitment Pty Ltd"	19-Jan-08 03:02 PM	

+="CN55477-A1"	"Provision of administrative support to AFP information communication technology projects"	="Australian Federal Police"	19-Jan-08	="Engineering and Research and Technology Based Services"	12-Feb-07	30-Jun-08	281732.00	=""	="Diversiti Pty Ltd"	19-Jan-08 06:29 PM	

+="CN55479-A4"	"Maintenance and development of open systems applications integration solutions"	="Australian Federal Police"	19-Jan-08	="Computer services"	01-Jun-07	22-Feb-08	97880.48	=""	="Diversiti Pty Ltd"	19-Jan-08 06:41 PM	

+="CN55483-A2"	" Services relating to testing of new and existing sofware applications "	="Australian Federal Police"	20-Jan-08	="Engineering and Research and Technology Based Services"	29-Oct-07	23-Apr-08	64525.23	=""	="Compas Pty. Ltd."	20-Jan-08 07:11 PM	

+="CN55485-A2"	" Services relating to new information systems, enhancements, performance improvements, and fault diagnosis/rectification  "	="Australian Federal Police"	20-Jan-08	="Computer services"	07-Nov-07	06-Jun-08	114749.25	=""	="Cordelta Pty. Ltd."	20-Jan-08 07:38 PM	

+="CN55486-A2"	" Business analysis activities for IT applications/systems "	="Australian Federal Police"	20-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	31-Mar-08	158474.25	=""	="Tarakan Consulting Pty Ltd"	20-Jan-08 07:55 PM	

+="CN55488-A4"	"Lease level 4,188 Collins st,  Hobart, Tasmania"	="Department of Human Services"	21-Jan-08	="Real estate services"	01-Mar-08	30-Jun-14	2569221.00	=""	="Balsa Rejus Property Trust"	21-Jan-08 09:42 AM	

+="CN55491"	"Australian Cultural Orientation Materials"	="Department of Immigration and Citizenship"	21-Jan-08	="Printed media"	21-Dec-07	31-Jul-08	49511.00	=""	="AMAMOO, DAMIAN EDUAM (trading as Inception Strategies)"	21-Jan-08 10:16 AM	

+="CN55492"	"Assesment for Compliance and Detention Officers"	="Department of Immigration and Citizenship"	21-Jan-08	="Specialised educational services"	01-Nov-07	31-Mar-08	28875.00	=""	="Australian Forensic Services Pty Ltd"	21-Jan-08 10:39 AM	

+="CN55494"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	20-Oct-07	30-Jun-08	48000.00	=""	="Australian Multicultural Foundation Limited"	21-Jan-08 10:49 AM	

+="CN55496"	"IMU Contract Programmer: IMU-ICT101 Official Order: 2007/053"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	21-Jan-08	20-Jan-11	687500.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:51 AM	

+="CN55497"	"IMU Contract Programmer: IMU-ICT102 Official Order: 2007/054"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	21-Jan-08	20-Jan-11	687500.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:51 AM	

+="CN55498"	"Supply and delivery of stone to site"	="Department of Veterans' Affairs"	21-Jan-08	="Earth and stone"	07-Dec-07	07-Dec-08	516423.00	=""	="Rocomat Pierre Naturelle"	21-Jan-08 10:51 AM	

+="CN55499"	"Supply and Install Bronze Elements"	="Department of Veterans' Affairs"	21-Jan-08	="Alloys"	06-Dec-07	30-May-09	438000.00	=""	="DCG Design Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55500"	"IMU Contract Programmer: IMU-ICT043 Official Order IMU2007/073"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	150586.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55495"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	30-Oct-07	30-Jun-08	29000.00	=""	="Muslim Womens National NetworkAustralia Inc"	21-Jan-08 10:52 AM	

+="CN55501"	"IMU Contract Programmer: IMU-ICT020 Official Order IMU2007/071"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Dec-07	30-Nov-08	215600.00	=""	="OASIS Solutions P\L"	21-Jan-08 10:52 AM	

+="CN55502"	"IMU Contract Programmer: IMU-ICT029 Official Order IMU2007/075"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	220290.00	=""	="R&D Professional IT Services Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55503"	"IMU Contract Programmer: IMU-ICT065 Official Order IMU2007/064"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Dec-07	30-Nov-08	160688.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	21-Jan-08 10:52 AM	

+="CN55504"	"IMU Contract Programmer: IMU-ICT110 Official Order IMU2007/082"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	15-Dec-07	04-Apr-08	66000.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55505"	"IMU Contract Programmer: IMU-ICT105 Official Order IMU2007/072"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	10-Dec-07	02-Jun-08	95040.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	21-Jan-08 10:52 AM	

+="CN55506"	"IMU Contract Programmer: IMU-ICT099 Official Order IMU2007/077"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	02-Jan-08	30-Jun-08	123464.00	=""	="Southern Cross Computing Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55507"	"IMU Contract Programmer: IMU-ICT033 Official Order IMU2007/080"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	187686.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55508"	"IMU Contract Programmer: IMU-ICT026 Official Order IMU2007/081"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	194234.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:53 AM	

+="CN55510"	"The provision of ambulance & patient transport services."	="Department of Veterans' Affairs"	21-Jan-08	="Passenger transport"	01-Jul-04	30-Jun-09	209000.00	=""	="A to Z Medical Services Pty Ltd"	21-Jan-08 10:53 AM	

+="CN55511"	"Aircraft charter"	="Australian Electoral Commission"	21-Jan-08	="Chartered aeroplane travel"	19-Nov-07	19-Jan-08	91007.06	="S07/08/096"	="Chartair Pty Ltd"	21-Jan-08 10:59 AM	

+="CN55512"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	28-Sep-07	30-Jun-08	42295.00	=""	="Multicultural Youth South Australia Incorporated"	21-Jan-08 10:59 AM	

+="CN55514"	"Legal Services"	="Australian Electoral Commission"	21-Jan-08	="Legal services"	01-Aug-07	29-Feb-08	204490.00	="S07/08/121"	="Australian Government Solicitor"	21-Jan-08 11:03 AM	

+="CN55515-A3"	"Strategy Development Research"	="Department of Immigration and Citizenship"	21-Jan-08	="Business administration services"	10-Dec-07	21-Dec-07	18150.00	=""	="SMS Consulting Group Ltd"	21-Jan-08 11:04 AM	

+="CN55517-A5"	"Assisted Passage, Medical and Related Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Humanitarian aid and relief"	03-Dec-07	03-Dec-10	33705000.00	=""	="International Organization for Migration"	21-Jan-08 11:10 AM	

+="CN55520"	"Ballot paper production"	="Australian Electoral Commission"	21-Jan-08	="Industrial printing services"	03-Aug-06	03-Aug-09	1452440.00	=""	="McMillan Print Group"	21-Jan-08 11:18 AM	

+="CN55519"	"Security and Building Alterations to Port Hedland Facility"	="Department of Immigration and Citizenship"	21-Jan-08	="Building construction and support and maintenance and repair services"	23-Nov-07	25-Nov-08	289586.00	=""	="Carr Civil Contracting Pty Ltd"	21-Jan-08 11:19 AM	

+="CN55521-A1"	"Temporary Staffing"	="Australian Electoral Commission"	21-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	87200.87	="AEC06/019"	="Ross Human Directions"	21-Jan-08 11:23 AM	

+="CN55522-A2"	"Lease at Noosaville, Queensland"	="Department of Human Services"	21-Jan-08	="Lease and rental of property or building"	12-Oct-06	11-Oct-13	2294821.46	=""	="Mirose Pty Ltd"	21-Jan-08 11:24 AM	

+="CN55525"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	19-Nov-07	15-Jun-08	38000.00	=""	="South Western Metro Basketball Inc."	21-Jan-08 11:26 AM	

+="CN55526"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	20-Nov-07	15-Jun-08	48000.00	=""	="Greater Shepparton City Council"	21-Jan-08 11:34 AM	

+="CN55527"	"Fitout of Premises"	="Department of Immigration and Citizenship"	21-Jan-08	="Commercial and industrial furniture"	01-Dec-06	11-Sep-07	5198113.80	=""	="ISIS Projects Pty Limited"	21-Jan-08 11:36 AM	

+="CN55529"	"Transportation Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Passenger transport"	02-Oct-07	31-Dec-07	36600.00	=""	="Dallarooma Pty. Ltd. (tradings as CBD Chauffeured Transport)"	21-Jan-08 11:40 AM	

+="CN55530"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	19-Nov-07	30-Jun-08	48000.00	=""	="Beyond Empathy Limited"	21-Jan-08 11:45 AM	

+="CN55532"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	17-Oct-07	30-Jun-08	48000.00	=""	="Spectrum Migrant Resource Centre Inc"	21-Jan-08 11:49 AM	

+="CN55533"	"Fitout works for Premises"	="Department of Immigration and Citizenship"	21-Jan-08	="Building construction and support and maintenance and repair services"	05-Sep-07	30-Nov-07	54923.00	=""	="All-Build Commercial Interiors Pty Ltd"	21-Jan-08 11:54 AM	

+="CN55535"	"Overseas ballot paper printing and dispatch"	="Australian Electoral Commission"	21-Jan-08	="International vessel transport services"	10-May-07	30-Sep-08	249605.57	="S06/07/057"	="McMillan Print Group"	21-Jan-08 11:56 AM	

+="CN55536"	"Security costs"	="Department of Human Services"	21-Jan-08	="Security and control equipment"	01-Jan-08	31-Dec-09	65406.00	=""	="Chubb Security Holdings"	21-Jan-08 12:00 PM	

+="CN55538-A1"	"purchase of spare parts for uav"	="Defence Materiel Organisation"	21-Jan-08	="Target or reconnaissance drones"	10-Dec-07	30-May-08	18268.73	=""	="elbit systems ltd"	21-Jan-08 12:03 PM	

+="CN55539"	" Property lease "	="Australian Electoral Commission"	21-Jan-08	="Lease and rental of property or building"	15-Dec-07	14-Dec-11	192000.00	=""	="GPT Management Pty Ltd"	21-Jan-08 12:03 PM	

+="CN55541-A5"	"Employee Assistance Program Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Human resources services"	01-Jul-07	30-Jun-11	795300.00	=""	="Davidson Trahaire Corpsych Pty Limited"	21-Jan-08 12:06 PM	

+="CN55548"	"Property lease"	="Australian Electoral Commission"	21-Jan-08	="Lease and rental of property or building"	08-Dec-07	07-Dec-12	263250.00	=""	="Port Canal Shopping Centre"	21-Jan-08 12:15 PM	

+="CN55554"	"JACK, HYDRAULIC, HAND 20 TON"	="Defence Materiel Organisation"	21-Jan-08	="Jacks"	16-Jan-08	01-Jul-08	154684.20	=""	="SPECIALISED FORCE PTY LTD"	21-Jan-08 01:07 PM	

+="CN55555"	" VEHICLE REPAIRS "	="Department of Defence"	21-Jan-08	="Motor vehicles"	17-Sep-07	17-Oct-07	33053.00	=""	="PREMIER TRUCKS NQ"	21-Jan-08 01:12 PM	

+="CN55553"	" BOW VEHICULAR REQUIRED FOR MERCEDES BENZ UNIMOG  CONTRACT No CONL56 "	="Department of Defence"	21-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Jan-08	06-Feb-08	33604.43	=""	="MERCEDES BENZ"	21-Jan-08 01:15 PM	

+="CN55556"	"VEHICLE REPAIR"	="Department of Defence"	21-Jan-08	="Motor vehicles"	11-Jul-07	11-Aug-07	39727.99	=""	="RGM"	21-Jan-08 01:16 PM	

+="CN54703"	"Recruitment Services."	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	05-Sep-07	05-Sep-07	12567.00	=""	="Dolman Pty Limited"	21-Jan-08 01:40 PM	

+="CN54697"	"Counsel Fees."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	24-Oct-07	20-Dec-07	40000.00	=""	="Mr Cam H Truong"	21-Jan-08 01:43 PM	

+="CN54696"	"ASIC Summer School 2008 Conference Venue."	="Australian Securities and Investments Commission"	21-Jan-08	="Events management"	07-Nov-07	29-Feb-08	270000.00	=""	="Sofitel Melbourne"	21-Jan-08 01:45 PM	

+="CN55559"	" ITEM 1, BOX SHIPPING PLASTIC OLIVE DRAB, 550MM x 550MM x 450MM, C/W PADLOCKABLE CATCHES AND HANDLES, QTY 1200.  ITEM 2, BOX SHIPPING PLASTIC, 1100MM x 550MM x 675MM, C/W PADLOCKABLE CATCHES AND HANDLES, QTY 300 "	="Defence Materiel Organisation"	21-Jan-08	="Moulded boxes"	16-Jan-08	30-Apr-08	212619.00	=""	="TRIMCAST PTY LTD"	21-Jan-08 01:48 PM	

+="CN54692"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	02-Nov-07	15-Nov-07	10000.00	=""	="Ms Katrina Stern"	21-Jan-08 01:48 PM	

+="CN54688"	"Contract for the supply of legal services for the conduct of litigation."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	05-Nov-07	30-Nov-07	90000.00	=""	="Australian Government Solicitor"	21-Jan-08 01:50 PM	

+="CN54685"	"Contract for the provision of Information Technology services. "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	15-Dec-07	31-Mar-08	41272.00	=""	="Pilgrim Programmers Pty Ltd"	21-Jan-08 01:52 PM	

+="CN54681"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Nov-07	30-Nov-08	20000.00	=""	="Mr Gregory McNally SC"	21-Jan-08 01:55 PM	

+="CN54673"	"Counsel Legal Services."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	18-Dec-07	30-Jun-08	50000.00	=""	="Mr John Halley"	21-Jan-08 01:56 PM	

+="CN55561"	"IP Telephony"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	30-Jun-08	18568.00	=""	="PRECISION METALS QUEANBEYAN PTY LTD"	21-Jan-08 01:58 PM	

+="CN55562"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	03-Feb-09	252648.00	=""	="Paxus Australia Pty Ltd"	21-Jan-08 01:58 PM	

+="CN55564"	"IP Telephony"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Jun-08	59774.00	=""	="NEC AUSTRALIA PTY LTD"	21-Jan-08 01:58 PM	

+="CN54668"	"Provision of reporting software support."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	26-Feb-08	25-Feb-09	41784.31	=""	="Cognos Pty Ltd"	21-Jan-08 01:58 PM	

+="CN55565"	"Scribe Services"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	10402.65	=""	="VEROSSITY PTY LTD"	21-Jan-08 01:58 PM	

+="CN55566"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	16-Jan-08	17-Jul-08	220000.00	=""	="SPECTRUMTECH PTY LTD"	21-Jan-08 01:58 PM	

+="CN55567"	"3 X OFFICE SHREDDERS MODEL 260HS A CLASS"	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	15-Jan-08	15-Jan-08	11385.00	=""	="KOBRA SHREDDERS AUSTRALIA"	21-Jan-08 01:59 PM	

+="CN55568"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	15-Jan-08	20-Jan-09	286000.00	=""	="Omaha IT Services PTY LTD"	21-Jan-08 01:59 PM	

+="CN55563"	"Additional Performance Testing Software"	="Australian Taxation Office"	21-Jan-08	="Software"	21-Jan-08	20-Jan-09	396353.86	=""	="Hewlett Packard Aust. P/L"	21-Jan-08 01:59 PM	

+="CN55569"	"Provision of law enforcement systems support and border & entry systems-Data Exchange Staff."	="Australian Taxation Office"	21-Jan-08	="Politics and Civic Affairs Services"	13-Dec-07	31-Mar-08	33000.00	=""	="DEPARTMENT OF IMMIGRATION AND"	21-Jan-08 01:59 PM	

+="CN55570"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	20-Jul-08	116600.00	=""	="Electronic Warfare Associates -"	21-Jan-08 01:59 PM	

+="CN55571"	"Ongoing ADSL line account"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-Jan-08	10381.80	=""	="Telstra"	21-Jan-08 01:59 PM	

+="CN55572"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	17-Apr-08	79061.12	=""	="DIVERSITI PTY LTD"	21-Jan-08 01:59 PM	

+="CN55573"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	14-Jan-08	13-Jul-08	120060.00	="100-2007"	="RFJD Pty Ltd"	21-Jan-08 01:59 PM	

+="CN55574"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	16-Jan-08	29-Jan-08	280800.00	="035-2007"	="Omaha IT Services PTY LTD"	21-Jan-08 01:59 PM	

+="CN55575"	"Provisioning of power circuits"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Jun-08	60500.00	=""	="Advanced Building Technologies Grp"	21-Jan-08 01:59 PM	

+="CN54659"	"Counsel - Legal Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	04-Dec-07	30-Jun-08	50000.00	=""	="Mr John Halley"	21-Jan-08 02:00 PM	

+="CN55576"	"AUDIT FEES"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	17-Jan-08	65826.00	=""	="AUSTRALIAN NATIONAL AUDIT OFFICE"	21-Jan-08 02:01 PM	

+="CN55577"	"ADVERTISING"	="Australian Taxation Office"	21-Jan-08	="Paper Materials and Products"	10-Jan-08	16-Jan-08	16225.00	=""	="HOBSONS AUSTRALIA PTY LTD"	21-Jan-08 02:01 PM	

+="CN55578"	"WORKSHOP"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	16-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Jan-08 02:01 PM	

+="CN55579"	"RECRUITMENT"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	15-Jan-08	66300.00	=""	="DFP Recruitment Services Pty Ltd"	21-Jan-08 02:01 PM	

+="CN55580"	"RECRUITMENT"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	15-Jan-08	23484.52	=""	="DFP Recruitment Services Pty Ltd"	21-Jan-08 02:02 PM	

+="CN54658"	"Recruitment Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	13-Aug-07	14-Dec-07	11627.65	=""	="DFP Recruitment Services"	21-Jan-08 02:02 PM	

+="CN55581"	"INTERNET"	="Australian Taxation Office"	21-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	15-Jan-08	49460.73	=""	="TELSTRA"	21-Jan-08 02:02 PM	

+="CN55582"	"ONLINE SEARCHES"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	21-Jan-08	10218.16	=""	="ESPREON PROPERTY SERVICES"	21-Jan-08 02:02 PM	

+="CN54657"	"Consultancy services"	="Australian Securities and Investments Commission"	21-Jan-08	="Branding of product naming services"	14-Nov-07	14-May-08	173727.80	=""	="Brand Management Pty Ltd"	21-Jan-08 02:04 PM	

+="CN55583"	"Freight of election materials"	="Australian Electoral Commission"	21-Jan-08	="Freight loading or unloading"	26-Aug-04	26-Aug-10	157100.00	="03/04/027"	="Courier Australia"	21-Jan-08 02:05 PM	

+="CN54654"	"Counsel fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	24-Oct-07	16-Nov-07	25200.00	=""	="Mr Richard A Harris"	21-Jan-08 02:06 PM	

+="CN54611"	"Provision of services of Technical analyst "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	17-Sep-07	31-Jan-08	68799.50	=""	="Oakton"	21-Jan-08 02:10 PM	

+="CN55584-A1"	"Community Education"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	14-Sep-07	13-Sep-08	66000.00	=""	="Metropolitan Migrant Resource Centre"	21-Jan-08 02:13 PM	

+="CN54610"	"Consulting for standard messaging Infrastructure Project."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	01-Aug-07	27-Aug-07	23100.00	=""	="IBM Australia"	21-Jan-08 02:13 PM	

+="CN55585"	"Canberra Trip August-Scherr"	="Department of Defence"	21-Jan-08	="Passenger transport"	02-Aug-07	03-Aug-08	13885.80	="no"	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55586"	"AIR FARES"	="Department of Defence"	21-Jan-08	="Passenger transport"	01-Jan-00	01-Jan-00	10369.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55587"	"Airfares to Moscow/London RTN"	="Department of Defence"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	24-Aug-07	24-Aug-07	11127.68	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55588"	"Airfares for travel to US/ROK March 07 - note that this transaction appearred to get lost until Sept 07."	="Department of Defence"	21-Jan-08	="Travel facilitation"	05-Sep-07	05-Sep-07	13215.86	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN54608"	"Provision of services of Business analyst "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	24-Sep-07	31-Jan-08	87505.00	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:15 PM	

+="CN55589"	"AIR FARES"	="Department of Defence"	21-Jan-08	="Passenger transport"	01-Jan-00	01-Jan-00	10068.40	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55590"	"OP Catalyst visit - 27 November - 14 December 2007"	="Department of Defence"	21-Jan-08	="Passenger transport"	29-Nov-07	29-Nov-07	12432.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55591"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	21-Jan-08	="Passenger transport"	29-Nov-07	29-Nov-07	12384.90	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55592"	"OS FARE HARNETT FIL REF: TRN033797 PRN:OP08-020141ACMS-1600790COURSE"	="Department of Defence"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	13-Dec-07	13-Dec-07	10718.80	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55593"	"JOPS"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	18-Dec-07	18-Dec-07	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	21-Jan-08 02:15 PM	

+="CN55594"	"Boss Lift to Malaysia"	="Department of Defence"	21-Jan-08	="Travel facilitation"	01-Dec-06	01-Dec-06	11164.38	=""	="MUTIARA JOHOR BAHRU-M"	21-Jan-08 02:15 PM	

+="CN55595"	"Tricon Racking SystemSOLSADM 111."	="Department of Defence"	21-Jan-08	="Fabricated structural assemblies"	05-Nov-07	05-Nov-07	26785.00	=""	="CORAL SEA CONTAINERS"	21-Jan-08 02:16 PM	

+="CN55596"	"Incorrectly billed to DPC instead of bank transfer payment on 13/12/07. Credit against DPC to follow ."	="Department of Defence"	21-Jan-08	="Fibres and textiles and fabric industries"	26-Nov-07	26-Nov-07	10598.50	=""	="3M AUSTRALIA PTY LTD"	21-Jan-08 02:16 PM	

+="CN55598"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	07-Dec-07	23-Dec-07	18316.05	=""	="HOLLYWOOD PRIV HOSP"	21-Jan-08 02:16 PM	

+="CN55599"	"2007 CA Conference Admin.  Chief of Army Conference Venue Hire and Catering - National Convention Centre, Canberra 1-2 November 2007."	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	06-Dec-07	06-Dec-07	35215.50	=""	="NATIONAL CONVENTION"	21-Jan-08 02:16 PM	

+="CN55600"	"322/08 talu accident damage-cabin - spv"	="Department of Defence"	21-Jan-08	="Air transportation support systems and equipment"	04-Dec-07	04-Dec-07	10952.26	=""	="STATIC ENGINEERING"	21-Jan-08 02:16 PM	

+="CN55597"	"Supply and installation of technology materials for the redevelopment of Circa Rotating Theatre"	="National Museum of Australia"	21-Jan-08	="Components for information technology or broadcasting or telecommunications"	13-Dec-07	28-Feb-08	933242.00	="NMAT0708/02"	="Wizard Projects Pty Limited"	21-Jan-08 02:16 PM	

+="CN55601"	"RAN Civil Accreditation Programs*Small ship Navigation*Scoping study for CTSs & CTLsPART PAYMENT"	="Department of Defence"	21-Jan-08	="Education and Training Services"	06-Dec-07	06-Dec-07	21199.00	=""	="CIT SOLUTIONS PTY LT"	21-Jan-08 02:16 PM	

+="CN55602"	"OTS 07.160"	="Department of Defence"	21-Jan-08	="Education and Training Services"	10-Dec-07	10-Dec-07	11531.14	=""	="POWERBOAT TRAINING"	21-Jan-08 02:16 PM	

+="CN55603"	"Vehicle Hire Mobile Phone charges other purchases"	="Department of Defence"	21-Jan-08	="Business administration services"	12-Dec-07	12-Dec-07	15083.68	=""	="BMMI"	21-Jan-08 02:17 PM	

+="CN55604"	"Car Hire, Stationary, Mobile Phones, Stores"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	12-Dec-07	27294.26	=""	="BMMI"	21-Jan-08 02:17 PM	

+="CN55605"	"RAN Civil Accreditation Program - MEDASST & DENTASST"	="Department of Defence"	21-Jan-08	="Education and Training Services"	12-Dec-07	12-Dec-07	15510.25	=""	="CIT SOLUTIONS PTY LT"	21-Jan-08 02:17 PM	

+="CN55606"	"CTF158 STAFF"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	13-Dec-07	13-Dec-07	52973.72	=""	="THE DIPLOMAT RADISSON"	21-Jan-08 02:17 PM	

+="CN55607"	"DSTO197543"	="Department of Defence"	21-Jan-08	="Computer services"	05-Jan-08	04-Jan-09	14024.34	=""	="SILICON GRAPHICS P/L"	21-Jan-08 02:17 PM	

+="CN55608"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	19-Dec-07	19-Jan-08	13126.25	=""	="ALLAN WANG PTY LTD"	21-Jan-08 02:17 PM	

+="CN55609"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Orthopaedic and prosthetic and sports medicine products"	20-Dec-07	31-Jan-08	11201.54	=""	="BRISBANE NTH PODIATRY P/L"	21-Jan-08 02:17 PM	

+="CN55610"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	27-Dec-07	26-Jan-08	10642.72	=""	="ST JOHN OF GOD SU"	21-Jan-08 02:17 PM	

+="CN55611"	"Print Production Aust Code for the Transport of Dangerous Goods by Road and Rail Vol 1 & 2 Ed 7 x 450 Copies each"	="Department of Defence"	21-Jan-08	="Published Products"	20-Dec-07	20-Dec-07	14367.39	="GEN 319"	="PUBLICATION PERS"	21-Jan-08 02:17 PM	

+="CN55612"	"LSE-ME ISO ARUNTA PVST Dubai 28Dec-06Jan - Accommodation / Laundry / Business Centre"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	06-Jan-08	06-Jan-08	13908.81	=""	="LE MERIDIEN DUBAI-ROYAL C"	21-Jan-08 02:17 PM	

+="CN55613"	"MSA Bandicoot Accommodation for refit Port Macquarie"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	08-Jan-08	08-Jan-08	11880.00	=""	="RYDGESPORTMACQ"	21-Jan-08 02:18 PM	

+="CN55614"	"CTF158 Staff Respite - Accommodation / Laundry / Internet / A/P Transfers"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	07-Jan-08	07-Jan-08	17042.87	=""	="THE DIPLOMAT RADISSON"	21-Jan-08 02:18 PM	

+="CN55615"	"Purchase of Media Wall CO-80005 IO 15800"	="Department of Defence"	21-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	13-Jan-08	33250.05	=""	="RGB SPECTRUM"	21-Jan-08 02:18 PM	

+="CN55616"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Medical practice"	09-Jan-08	09-Feb-08	11882.99	=""	="ST ANDREWS HOSPITAL"	21-Jan-08 02:18 PM	

+="CN55617"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Medical practice"	10-Jan-08	10-Feb-08	17558.00	=""	="ST ANDREWS HOSPITAL"	21-Jan-08 02:18 PM	

+="CN54605"	"Consulting for E-Business migration Phase 2."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	28-Aug-07	28-Sep-07	163762.50	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:18 PM	

+="CN55618"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	11-Jan-08	10-Feb-08	15354.05	=""	="ST JOHN OF GOD HOSPIT"	21-Jan-08 02:18 PM	

+="CN54598"	"Consulting for E-business migration."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	06-Jul-07	06-Sep-07	34512.50	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:20 PM	

+="CN55621"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	14-Jan-08	30-Jun-08	145000.00	=""	="M&T Resources (SMS Group)"	21-Jan-08 02:23 PM	

+="CN54510"	"Provision of consultancy services."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	20-Aug-07	24-Aug-07	10307.00	=""	="Software AG australia PTY Ltd."	21-Jan-08 02:23 PM	

+="CN55622"	"AIRFARE"	="Defence Materiel Organisation"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	16-Nov-07	16-Nov-07	10810.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:23 PM	

+="CN55623"	"Legal Services & Advice re - 9750 ACC Server Room Project"	="Australian Crime Commission"	21-Jan-08	="Legal services"	02-Jan-08	30-Jan-08	40000.00	=""	="Blake Dawson Waldron"	21-Jan-08 02:25 PM	

+="CN55624"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	62629.99	=""	="SAAL"	21-Jan-08 02:27 PM	

+="CN54498"	"Professional services pertaining to importation of diagrams from Magic Draw to Systems Architect."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	10-Sep-07	15-Oct-07	17600.00	=""	="Telelogic Australia Pty Ltd"	21-Jan-08 02:28 PM	

+="CN54496"	"Accredited Training"	="Australian Securities and Investments Commission"	21-Jan-08	="Procurement or supply chain training"	05-Nov-07	30-Jun-08	22400.00	=""	="Bayley and Associates P/L"	21-Jan-08 02:29 PM	

+="CN54482-A1"	"Backfill of Information Architect position. "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	26-Nov-07	29-Feb-08	47520.00	=""	="Doll Martin Associates Pty Ltd"	21-Jan-08 02:31 PM	

+="CN54479"	"Provision of IT Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	04-Feb-08	23-May-08	78080.00	=""	="UPI Contracting Pty Ltd"	21-Jan-08 02:32 PM	

+="CN55625"	"Cameras and camera equipment"	="Australian Crime Commission"	21-Jan-08	="Cameras"	07-Dec-07	07-Dec-07	37647.50	=""	="Nikon on Broadway"	21-Jan-08 02:33 PM	

+="CN54473"	"Secondment contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	26-Sep-07	25-Mar-08	65780.00	=""	="Blake Dawson Waldren"	21-Jan-08 02:34 PM	

+="CN54469-A1"	" Develop Software interface from RBA to ASIC Finance "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	01-Dec-07	31-Dec-07	42652.50	=""	="QSP Asia Pacific Pty Ltd"	21-Jan-08 02:37 PM	

+="CN54464"	"Recruitment services"	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	03-Jan-08	02-Apr-08	19800.00	=""	="Slade Group"	21-Jan-08 02:39 PM	

+="CN54313"	"Transactional Banking."	="Australian Securities and Investments Commission"	21-Jan-08	="Banking and investment"	07-Aug-07	07-Aug-12	6000000.00	=""	="Reserve Bank of Australia"	21-Jan-08 02:44 PM	

+="CN55628"	" Personnel Recruitment "	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	20-Dec-07	30-Jun-08	53570.00	=""	="Hays Personnel Services"	21-Jan-08 02:44 PM	

+="CN54310"	"Fleet Motor Vehicle Lease"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	17-Oct-07	16-Oct-10	22707.00	=""	="LeasePlan Australia Limited"	21-Jan-08 02:46 PM	

+="CN55629"	"Annual Subscription Renewal for Library"	="Office of Parliamentary Counsel"	21-Jan-08	="Library or documentation services"	01-Dec-07	30-Nov-08	36940.92	=""	="LexisNexis"	21-Jan-08 02:46 PM	

+="CN55632"	"Legal Advice"	="Australian Crime Commission"	21-Jan-08	="Legal services"	30-Oct-07	10-Jan-08	10295.00	=""	="Australian Government Solicitor"	21-Jan-08 02:48 PM	

+="CN53820"	"Fleet motor vehicle leasing"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	04-Oct-07	03-Oct-10	25619.00	=""	="LeasePlan Australia Limited"	21-Jan-08 02:49 PM	

+="CN53818"	"Fleet Motor Vehicle Lease"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	26-Oct-07	25-Oct-10	24544.00	=""	="Leaseplan Australia Limited"	21-Jan-08 02:51 PM	

+="CN55635"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Aircraft"	21-Jan-08	30-Jun-08	62768.51	=""	="SAAL"	21-Jan-08 02:52 PM	

+="CN55636"	" Personnel Recruitment "	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	17-Jan-08	30-Jun-08	96264.23	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 02:53 PM	

+="CN55637"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	66231.53	=""	="SAAL"	21-Jan-08 02:57 PM	

+="CN55638-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	26-Dec-07	30-Jun-08	290400.00	=""	="Jakeman Business Solutions"	21-Jan-08 02:57 PM	

+="CN53813"	" Romoval (office furniture) services. "	="Australian Securities and Investments Commission"	21-Jan-08	="Relocation services"	07-Sep-07	07-Dec-07	79066.90	=""	="Movers and Shakers"	21-Jan-08 02:57 PM	

+="CN53806"	"Supply of News papers."	="Australian Securities and Investments Commission"	21-Jan-08	="Newspapers"	01-Jul-07	01-Jul-08	20000.00	=""	="Glasshouse Newsagency"	21-Jan-08 02:59 PM	

+="CN55641"	"Repair and OH of Black Hawk Tail Rotor Servo."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	28749.60	=""	="SAAL"	21-Jan-08 03:01 PM	

+="CN53798"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Nov-07	30-Jun-09	20000.00	=""	="Anthony McINNERNEY"	21-Jan-08 03:01 PM	

+="CN53797"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	05-Nov-07	30-Jun-09	120000.00	=""	="Mathew C.L. Dicker"	21-Jan-08 03:03 PM	

+="CN53794"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	12-Nov-07	31-Dec-07	10000.00	=""	="Mr John Griffiths SC"	21-Jan-08 03:04 PM	

+="CN55642"	"Repair and OH of Black Hawk Yaw Servo."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	12781.99	=""	="SAAL"	21-Jan-08 03:05 PM	

+="CN55644"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	14-Jan-08	30-Jun-08	96096.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:05 PM	

+="CN53791"	" Counsel Fees "	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Dec-07	30-Jun-09	45000.00	=""	="Mr Clifford L. Pannam QC"	21-Jan-08 03:05 PM	

+="CN52257"	" Provision of IT consulting services "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	03-Dec-07	06-Jun-08	117425.00	=""	="Avoga Pty Ltd"	21-Jan-08 03:07 PM	

+="CN55645"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	02-Jan-08	30-Jun-08	128960.00	=""	="Verossity Pty Ltd"	21-Jan-08 03:08 PM	

+="CN52247"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	21-Jan-08	="Temporary personnel services"	20-Nov-07	28-Feb-08	23100.00	=""	="Julia Ross Human Directions Ltd"	21-Jan-08 03:09 PM	

+="CN52236-A1"	"Development of FIDO promotional pens"	="Australian Securities and Investments Commission"	21-Jan-08	="Stationery"	21-Nov-07	19-Dec-07	29700.00	=""	="Jem Promotional Products"	21-Jan-08 03:11 PM	

+="CN55647-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	02-Jan-08	30-Jun-08	140164.96	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:12 PM	

+="CN52232"	"Renewal if IBIS World Industry Research reports"	="Australian Securities and Investments Commission"	21-Jan-08	="Market research"	12-Nov-07	11-Nov-08	13189.00	=""	="IBIS World Business Information"	21-Jan-08 03:16 PM	

+="CN52226"	"SE3510 Support Contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Software"	01-Nov-07	30-Nov-07	43853.80	=""	="Global360"	21-Jan-08 03:22 PM	

+="CN52205"	"SE3510 support contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Software"	01-Dec-07	30-Nov-08	20768.00	=""	="Global 360"	21-Jan-08 03:24 PM	

+="CN55652-A2"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jul-07	26-Sep-08	222560.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 03:25 PM	

+="CN52098"	"Showbags November 2007 print job."	="Australian Securities and Investments Commission"	21-Jan-08	="Industrial printing services"	12-Oct-07	31-Jan-08	27775.00	=""	="Claytons Australia Pty Ltd"	21-Jan-08 03:26 PM	

+="CN55653"	"16 electronic whiteboards for new tenancy at 414 Latrobe St, Melbourne"	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	10-Jan-08	30-Jan-09	50426.00	=""	="Electroboard Solutions Pty Ltd"	21-Jan-08 03:27 PM	

+="CN52064"	"Calendar of works - painting 1 Martin place"	="Australian Securities and Investments Commission"	21-Jan-08	="Interior painting services"	15-Nov-07	07-Dec-07	26372.50	=""	="Cascade Property Maintenance"	21-Jan-08 03:28 PM	

+="CN55654-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jan-08	30-Jun-08	249146.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 03:28 PM	

+="CN55657-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jan-08	01-Aug-08	250800.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:33 PM	

+="CN55659"	"15 photocopiers with fax-enabling for new tenancy at 414 Latrobe St, Melbourne."	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	10-Jan-08	09-Jan-10	125449.50	=""	="Toshiba Australia"	21-Jan-08 03:41 PM	

+="CN55663-A2"	"Computer Software"	="Australian Crime Commission"	21-Jan-08	="Software"	14-Nov-07	06-Dec-07	158400.00	=""	="BCT Group Pty Ltd"	21-Jan-08 03:46 PM	

+="CN55660"	"Service Management Tool Selection"	="Federal Court of Australia"	21-Jan-08	="Technical support or help desk services"	14-Jan-08	30-Apr-08	39270.00	=""	="LUCID IT PTY LTD"	21-Jan-08 03:50 PM	

+="CN55664"	" Motherboard "	="Australian Crime Commission"	21-Jan-08	="Computer Equipment and Accessories"	04-Dec-07	04-Dec-07	20336.00	=""	="The Microcare CD Group Pty Ltd"	21-Jan-08 03:51 PM	

+="CN55666"	" Taxi fares "	="Australian Crime Commission"	21-Jan-08	="Taxicab services"	09-Oct-07	09-Oct-07	21528.48	=""	="Cabcharge Australia"	21-Jan-08 03:55 PM	

+="CN55667"	"Rental of artworks"	="Office of Parliamentary Counsel"	21-Jan-08	="Paintings"	01-Dec-07	30-Nov-08	14905.00	=""	="Artbank"	21-Jan-08 03:59 PM	

+="CN55670"	"Oracle Software Update License and Support"	="Federal Court of Australia"	21-Jan-08	="Proprietary or licensed systems maintenance or support"	30-Nov-07	29-Nov-08	113253.00	=""	="ORACLE CORPORATION"	21-Jan-08 04:04 PM	

+="CN55671"	"Consulting Services"	="Australian Crime Commission"	21-Jan-08	="Business intelligence consulting services"	05-Nov-07	04-Nov-08	45000.00	=""	="Aub Chapman Consulting Services Pty ltd"	21-Jan-08 04:05 PM	

+="CN55674"	"Large Scale Recruitment Services - Wave 2"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	11-Mar-07	31-Oct-07	51885.09	=""	="Australian Public Service Commission"	21-Jan-08 04:08 PM	

+="CN55676"	"Photocopier leases"	="Australian Crime Commission"	21-Jan-08	="Photocopiers"	01-Jul-07	30-Jun-08	13586.40	=""	="Fuji Xerox Australia Pty Ltd"	21-Jan-08 04:09 PM	

+="CN55679"	"Lease vehicles"	="Australian Crime Commission"	21-Jan-08	="Motor vehicles"	07-Dec-07	07-Dec-07	66490.25	=""	="Leaseplan"	21-Jan-08 04:13 PM	

+="CN55677"	"    Online subscription for legislation & guides    "	="Office of Parliamentary Counsel"	21-Jan-08	="Online database information retrieval systems"	01-Dec-07	30-Nov-08	14215.55	=""	="CCH Australia"	21-Jan-08 04:15 PM	

+="CN55681"	"Communications equipment upgrade"	="Australian Crime Commission"	21-Jan-08	="Communications Devices and Accessories"	16-Oct-07	18-Dec-07	88924.00	=""	="Tapes Products Research Pty Ltd"	21-Jan-08 04:18 PM	

+="CN55682"	"Comcar Transport"	="Australian Crime Commission"	21-Jan-08	="Taxicab services"	01-Jul-07	30-Jun-08	17000.00	=""	="Comcar"	21-Jan-08 04:21 PM	

+="CN55683"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	03-Jan-08	04-Apr-08	80883.89	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 04:24 PM	

+="CN55684-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	05-Dec-07	26-Sep-08	112200.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 04:27 PM	

+="CN55686"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	10-Dec-07	30-Jun-08	140000.00	=""	="Matera Consulting Pty Ltd"	21-Jan-08 04:30 PM	

+="CN55673"	"SES leased vehicle"	="Australian Securities and Investments Commission"	21-Jan-08	="Motor vehicles"	11-Jan-08	10-Jan-10	18746.38	=""	="LeasePlan Australia Limited"	21-Jan-08 04:40 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val0to12000.xls
@@ -1,1 +1,190 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91105"	"Supply of electric lamps and associated equipment Contract (JH01043 )"	="Department of Parliamentary Services"	17-Jun-08	="Lighting and fixtures and accessories"	29-May-08	28-Jun-08	10845.01	=""	="Specialised Lamp Supplies"	17-Jun-08 09:15 AM	

+="CN91106"	"Security training services Contract (DPS03042 )"	="Department of Parliamentary Services"	17-Jun-08	="Education and Training Services"	29-May-08	26-Jun-08	11330.00	=""	="Xtek Limited"	17-Jun-08 09:16 AM	

+="CN91108"	"Supply of Software"	="Department of Parliamentary Services"	17-Jun-08	="Business function specific software"	04-Jun-08	30-Jun-08	11088.00	=""	="Lange Consulting & Software"	17-Jun-08 09:16 AM	

+="CN91110"	"Provision of Security Analysis services"	="Department of Parliamentary Services"	17-Jun-08	="Environmental security control services"	06-Jun-08	30-Jun-08	10807.50	=""	="JobFit Systems International P/L"	17-Jun-08 09:16 AM	

+="CN91121"	"Supply of protective clothing"	="Department of Parliamentary Services"	17-Jun-08	="Safety apparel"	04-Jul-07	30-Jun-08	10120.00	=""	="Seears Workwear"	17-Jun-08 09:18 AM	

+="CN91123"	"Water inspection and treatment services Contract ( JH00051M )"	="Department of Parliamentary Services"	17-Jun-08	="Water testing and conservation and ecology"	17-Jul-07	06-Jun-08	10780.00	=""	="Ecolab Water Care Services Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91124"	"Fire Door Maintenance"	="Department of Parliamentary Services"	17-Jun-08	="Electromechanical services"	22-Oct-07	30-Jun-08	11000.00	=""	="Honeywell Limited"	17-Jun-08 09:18 AM	

+="CN91125"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jun-08	="Printing"	20-May-08	30-Jun-08	10298.41	=""	="Canprint Communications Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91358"	"November 2007 SES Fuel Charges and January 2008 SES Lease Charges."	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-Nov-07	31-Jan-08	10126.21	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 11:19 AM	

+="CN91586"	"Supply and installation of UPS for the MU90"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	03-Jun-08	31-Dec-08	11858.00	=""	="NATURAL POWER SOLUTIONS PTY LTD"	17-Jun-08 11:44 AM	

+="CN91606"	"GASKET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	02-Jun-08	01-Jan-09	10419.91	=""	="AGUSTAWESTLAND LTD"	17-Jun-08 11:45 AM	

+="CN91660"	"MODIFICATION OF SIZE 8 SHIPPING CONTAINERS FOR 60K"	="Defence Materiel Organisation"	17-Jun-08	="Containers and storage"	03-Jun-08	31-Jul-08	11797.50	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 11:49 AM	

+="CN91674"	"Software Required for skill Development within the engineering staff"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	03-Jun-08	30-Jun-08	11453.75	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	17-Jun-08 11:50 AM	

+="CN91694"	"Spectrum Analyser"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	30-May-08	29-Aug-08	11926.20	=""	="TRIO SMARTCAL PTY LTD"	17-Jun-08 11:51 AM	

+="CN91720"	"Foam ring for dummy torpedo"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	29-May-08	31-Dec-08	11487.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:53 AM	

+="CN91728"	"PISTON, EJECTOR INNER"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	30-May-08	05-Aug-08	11709.50	=""	="MARVIN ENGINEERING CO INC"	17-Jun-08 11:54 AM	

+="CN91795"	"Avionics Spares NSN 01-508-8776"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	30-Aug-08	10365.69	=""	="GLOBAL DEFENCE SOLUTIONS PTY LTD"	17-Jun-08 11:58 AM	

+="CN91803"	"Software Licence"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	11110.00	=""	="SONARTECH ATLAS"	17-Jun-08 11:59 AM	

+="CN91806"	"REPAIR OF F/A-18 EMBEDDED GPS/INU SET"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	06-Jun-08	31-Oct-08	11576.44	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 11:59 AM	

+="CN91826"	"REPAIRS TO BATHROOMS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	05-Jun-08	30-Jun-08	10686.72	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:00 PM	

+="CN91992"	"Customs import charges for change tools."	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	05-Jun-08	30-Jun-08	11224.24	=""	="SDV AUSTRALIA"	17-Jun-08 12:13 PM	

+="CN91998"	"PELICAN CASE ASSY"	="Defence Materiel Organisation"	17-Jun-08	="Luggage and handbags and packs and cases"	19-Dec-07	19-Dec-07	10004.80	=""	="PELICAN PRODUCTS INC."	17-Jun-08 12:14 PM	

+="CN92016"	"BANDICOOT FAMP 01/08 11TH FEBRUARY 2008 TO THE 28T The terms and conditions of this order are in acc"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-08	11276.49	=""	="BIRDON MARINE PTY LTD"	17-Jun-08 12:15 PM	

+="CN92039"	"PROFESSIONAL FEES"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	13-Jun-08	30-Jun-08	10000.00	=""	="BLAKE DAWSON WALDRON"	17-Jun-08 12:17 PM	

+="CN92063"	"Annual Suport for Sun Micro System Servers"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	30-Apr-08	31-Aug-08	10499.28	=""	="SUN MICROSYSTEMS"	17-Jun-08 12:19 PM	

+="CN92096"	"Terms and Conditions as per attachments. Please contact Kate Noble on (03)92826009 or alter"	="Defence Materiel Organisation"	17-Jun-08	="Fibres and textiles and fabric industries"	03-Apr-08	25-Jun-08	11107.80	=""	="SPEAR OF FAME PTY LTD"	17-Jun-08 12:21 PM	

+="CN92138"	"Hire of Shipping Containers"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	29-May-06	30-Sep-08	11605.55	=""	="PRICE & SPEED CONTAINERS PTY LTD"	17-Jun-08 12:26 PM	

+="CN92153"	"AMENDMENT 1, NESMITH, 4/9/07 Calibration"	="Defence Materiel Organisation"	17-Jun-08	="Heavy construction machinery and equipment"	31-Jul-07	30-Jun-08	10706.19	=""	="PRECISION CALIBRATION SERVICES"	17-Jun-08 12:28 PM	

+="CN92157"	"Filing fees for court attendance notices"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	11-Mar-08	11-Mar-08	11690.00	=""	="Sutherland Local Court"	17-Jun-08 12:30 PM	

+="CN92179"	"SURVEY AND QUOTE 26 - 8 BLANKING KITS TO BE FITTED TO HORNET AT POSITION 0"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	28-May-08	30-Sep-08	10842.90	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 12:32 PM	

+="CN92181"	"COMPUTER EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	28-May-08	28-May-08	10838.94	=""	="MAC 1 PTY LTD"	17-Jun-08 12:32 PM	

+="CN92197"	"VEHICLE RENTALS FOR KANIMBLA EMA DOCKING"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	22-Sep-08	10597.68	=""	="HERTZ AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92198"	"REPLACE BETWEEN DECK RAMP DUST SEAL"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	20-Jun-08	10607.23	=""	="FORGACS SHIP REPAIR"	17-Jun-08 12:35 PM	

+="CN92200"	"Freight for Cart 12.7mm NM140 from Richmond to Myambat. Part of PO 4500591433"	="Defence Materiel Organisation"	17-Jun-08	="Ammunition"	29-May-08	30-Jun-08	10352.99	=""	="DEOH DIRECTORATE EXPLOSIVE ORDNANCE"	17-Jun-08 12:35 PM	

+="CN92203"	"REPAIR OF CIT"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	10-Oct-08	10796.69	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:35 PM	

+="CN92204"	"NoiseCom Noise Source"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	29-May-08	08-Jun-08	10432.10	=""	="RADAR SYSTEMS TECHNOLOGY INC."	17-Jun-08 12:35 PM	

+="CN92205"	"REPAIR OF HUD CAMERA"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	29-Oct-08	11608.37	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:36 PM	

+="CN92243"	"Software Develop and lab Testing"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	27-May-08	15-Jun-08	11132.00	=""	="C4I PTY LTD"	17-Jun-08 12:40 PM	

+="CN92247"	"TRAVEL TO CONDUCT PWS COURSE FOR SFTG IN DARWIN -"	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	06-Jun-08	06-Jun-08	10852.87	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:41 PM	

+="CN92296"	"Journal Licences"	="Australian Federal Police"	17-Jun-08	="Marketing and distribution"	01-Apr-08	31-Mar-09	11174.00	=""	="Emerald Group Publishing Limited"	17-Jun-08 03:39 PM	

+="CN92303"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Stationery"	01-Mar-08	31-Mar-08	11516.03	=""	="OFFICEMAX AUSTRALIA LTD"	17-Jun-08 04:12 PM	

+="CN92313"	"BELT TENSION GUAGE-ASLAV"	="Department of Defence"	18-Jun-08	="Armoured fighting vehicles"	17-Jun-08	22-Nov-08	11826.61	=""	="GENERAL DYNAMICS LAND SYSTEMS"	18-Jun-08 08:23 AM	

+="CN92319"	"REpair of Aircraft parts"	="Defence Materiel Organisation"	18-Jun-08	="Aircraft"	18-Jun-08	08-Jul-08	11507.84	=""	="sikorsky aircraft australia ltd"	18-Jun-08 09:55 AM	

+="CN92321"	"Remaining Expenditure 7230"	="Department of Infrastructure Transport Regional Development and Local Government"	18-Jun-08	="Legal services"	08-May-08	31-Aug-08	11000.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	18-Jun-08 10:02 AM	

+="CN92329"	"SE3510 Support Contract"	="Australian Securities and Investments Commission"	18-Jun-08	="Computer hardware maintenance or support"	01-Dec-07	30-Nov-08	11858.00	=""	="MCR Computer Resources"	18-Jun-08 10:34 AM	

+="CN92353"	"CONFERENCE FACILITIES"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	02-Jun-08	03-Jun-08	10472.00	=""	="HOTEL HERITAGE"	18-Jun-08 11:36 AM	

+="CN92358"	"CONSULTANCY SERVICES FOR THE REVIEW OF CABLING MAN"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	03-Jun-08	30-Jun-08	11965.80	=""	="WEBB AUSTRALIA GROUP"	18-Jun-08 11:37 AM	

+="CN92364"	"SAMSUNG 46" LCD TV x QTY 4"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	03-Jun-08	13-Jun-08	11152.02	=""	="EXELTEK SOLUTIONS PTY LTD"	18-Jun-08 11:38 AM	

+="CN92368"	"Telephone handsets for Defence building 104 Gladst 144 Handsets deliver to 104 Gladstone Street Fysh"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	10033.94	=""	="AUSTRALIAN BUSINESS TELEPHONE"	18-Jun-08 11:39 AM	

+="CN92390"	"PROFESSIONAL CONSULTANTS - DODC UPGRADE"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	02-Jun-08	30-Jun-08	10472.00	=""	="SENTENTIA"	18-Jun-08 11:42 AM	

+="CN92393"	"BOAT SPARE PARTS"	="Department of Defence"	18-Jun-08	="Military watercraft"	02-Jun-08	30-Jun-08	10012.96	=""	="RMT MARINE"	18-Jun-08 11:42 AM	

+="CN92431"	"AACAP - ION 16460 FORKLIFT HIRE MERLO"	="Department of Defence"	18-Jun-08	="Product and material transport vehicles"	03-Jun-08	30-Jun-08	11000.00	=""	="UNITED EQUIPMENT WINNELLIE"	18-Jun-08 11:48 AM	

+="CN92452"	"VEHICLE LEASE CHARGES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	30-May-08	01-Jul-08	10164.00	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 11:51 AM	

+="CN92473"	"Training Courses"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	30-May-08	30-Jun-08	11803.00	=""	="YELLOW EDGE PTY LTD"	18-Jun-08 11:53 AM	

+="CN92497"	"TRANSPORTATION OF ROTOR BLADES"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	30-May-08	31-May-08	11000.00	=""	="FREIGHTWEST"	18-Jun-08 11:57 AM	

+="CN92515"	"ACOUSTIC TESTING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	02-Jun-08	30-Jun-08	10230.00	=""	="JAMES HEDDLE PTY LTD"	18-Jun-08 11:59 AM	

+="CN92570"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	11000.00	=""	="IOH LIVERPOOL CAMPBELLTOWN"	18-Jun-08 12:08 PM	

+="CN92618"	"MEDICAL SURVICE'S PROVIDED BY NURSING OFFICERS"	="Department of Defence"	18-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	31-Dec-08	10000.00	=""	="HESTA SUPERANNUATION"	18-Jun-08 12:14 PM	

+="CN92619"	"SOFTWARE REQUIRED FOR FIRE WALL SECURITY"	="Department of Defence"	18-Jun-08	="Software"	06-Jun-08	30-Jun-08	10164.00	=""	="NETWORK HARDWARE AUSTRALIA"	18-Jun-08 12:14 PM	

+="CN92627"	"TIMBER"	="Department of Defence"	18-Jun-08	="Soft timber"	16-Jun-08	16-Jul-08	11396.88	=""	="GRANTS MITRE 10 HOME & TRADE"	18-Jun-08 12:17 PM	

+="CN92646"	"Damage to rental vehicle"	="Department of Defence"	18-Jun-08	="Motor vehicles"	05-Jun-08	30-Jun-08	11277.12	=""	="HERTZ AUSTRALIA PTY LTD"	18-Jun-08 12:18 PM	

+="CN92653"	"HP Desktop"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	23-Jun-08	11880.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 12:19 PM	

+="CN92669"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Jan-09	11000.00	=""	="AW WORKWISE"	18-Jun-08 12:21 PM	

+="CN92683"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	10613.02	=""	="ST MICHAEL'S CATHOLIC PRIMARY"	18-Jun-08 12:23 PM	

+="CN92692"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	10875.81	=""	="SACRED HEART PRIMARY SCHOOL"	18-Jun-08 12:24 PM	

+="CN92693"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	11083.60	=""	="ST MARY'S PRIMARY SCHOOL"	18-Jun-08 12:25 PM	

+="CN92701"	"Simulink, Signal, video & Image processing"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	30-Jun-08	11874.50	=""	="THE MATHWORKS AUSTRALIA PTY LTD"	18-Jun-08 12:26 PM	

+="CN92710"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	10529.20	=""	="PARRAMATTA DIOCESE CATHOLIC"	18-Jun-08 12:27 PM	

+="CN92724"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	11528.00	=""	="LEANYER PRIMARY SCHOOL"	18-Jun-08 12:29 PM	

+="CN92728"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Nov-09	10725.00	=""	="PROGRAM IT PTY LTD"	18-Jun-08 12:30 PM	

+="CN92749"	"SPSS Basic license"	="Department of Defence"	18-Jun-08	="Software"	05-Jun-08	27-Jun-08	10804.20	=""	="SPSS AUSTRALASIA PTY LTD"	18-Jun-08 12:33 PM	

+="CN92755"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	11528.00	=""	="KATHERINE SOUTH PRIMARY SCHOOL"	18-Jun-08 12:33 PM	

+="CN92790"	"MILK PRODUCTS FOR RATIONS"	="Department of Defence"	18-Jun-08	="Milk and butter products"	18-Jan-08	30-Jun-08	11100.00	=""	="USS-UBS INTERNATIONAL"	18-Jun-08 12:38 PM	

+="CN92800"	"Scoping study to determine the applicability of granting an Advanced Diploma In Public Safety (DM)"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Jun-08	30-Jun-08	12000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	18-Jun-08 12:39 PM	

+="CN92801"	"ELECTRICAL WINCH AND CABLES"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	13-Jun-08	13-Jun-08	10172.66	=""	="VELDEMAN AUSTRALIA PTY LTD"	18-Jun-08 12:40 PM	

+="CN92813"	"lease of motor vehicle costs"	="Department of Defence"	18-Jun-08	="Motor vehicles"	02-Aug-07	01-Jul-09	10190.00	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 12:41 PM	

+="CN92816"	"FIRE MANAGEMENT SOUTH QUEENSLAND - GBTA, WBTA CFTA AND PURGA RIFLE RANGE"	="Department of Defence"	18-Jun-08	="Environmental management"	12-Nov-07	30-Jun-08	11134.20	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:42 PM	

+="CN92822"	"supply of fresh bread brisbane"	="Department of Defence"	18-Jun-08	="Bread and biscuits and cookies"	11-Sep-07	30-Jun-08	10300.00	=""	="QUALITY BAKERS AUSTRALIA PTY LTD"	18-Jun-08 12:42 PM	

+="CN92831"	"Fresh rations for ASSAM."	="Department of Defence"	18-Jun-08	="Jams and jellies and nut and sweet spreads and fruit conserves"	02-May-08	08-May-08	11142.22	=""	="SUPERIOR FOOD SERVICE"	18-Jun-08 12:44 PM	

+="CN92832"	"Hiring of 10 x PC Workstations for EX Pitch Black 6 week period - Mid May - Jun 08"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	10484.10	=""	="TERRITORY TECHNOLOGY SOLUTIONS"	18-Jun-08 12:44 PM	

+="CN92839"	"SYSTEMS ADMINISTRATOR"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	11000.00	=""	="ICON RECRUITMENT"	18-Jun-08 12:45 PM	

+="CN92847"	"OFFICE FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	05-Jun-08	05-Jun-08	11305.98	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	18-Jun-08 12:46 PM	

+="CN92859"	"681912 (NT1588) RAAF Darwin Water Tower Relocation"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	06-Jun-08	30-Jun-08	10057.47	=""	="MCMAHON SERVICES AUST NT PTY LTD"	18-Jun-08 12:47 PM	

+="CN92863"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	11550.00	=""	="HEALTH SERVICES INTERNATIONAL P/L"	18-Jun-08 12:48 PM	

+="CN92871"	"VISION AND EDITED VNR FOR NAVY WEBEPIODES LAUNCH.P EDIT OF 50TH ANNIVERSARY AT HMAS CRESWELL."	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	11500.00	=""	="CROSS BORDER MEDIA LINK"	18-Jun-08 12:49 PM	

+="CN92880"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	06-Jun-08	01-Jul-08	11400.00	=""	="COMCARE"	18-Jun-08 12:50 PM	

+="CN92884"	"LEASE OF FORKLIFT"	="Department of Defence"	18-Jun-08	="Material handling machinery and equipment"	04-Jun-08	21-Jun-08	10348.07	=""	="FUTURE SERVICES GENERAL TRADING CO."	18-Jun-08 12:51 PM	

+="CN92886"	"MEDICAL TREATMENT"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	14-May-08	03-Jun-08	11418.59	=""	="SINGAPORE GENERAL HOSPITAL"	18-Jun-08 12:51 PM	

+="CN92890"	"DENGUE RESEARCH PROJECT EXPENDITURE MAR 2008"	="Department of Defence"	18-Jun-08	="Medical science research and experimentation"	02-Jun-08	02-Jun-08	10030.60	=""	="QUT STUDENT FEES OFFICE"	18-Jun-08 12:51 PM	

+="CN92905"	"MINOR EXPENSES - FLLA A"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	02-Jun-08	06-Jun-08	10580.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:53 PM	

+="CN92906"	"training"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	28-May-08	30-Jun-08	11000.00	=""	="THE UNIVERSITY OF MELBOURNE"	18-Jun-08 12:53 PM	

+="CN92911"	"FREIGHT SERVICE - SOH & OP ASTUTE"	="Department of Defence"	18-Jun-08	="Mail and cargo transport"	12-Apr-08	30-Jun-08	10505.58	=""	="TNT AUSTRALIA"	18-Jun-08 12:54 PM	

+="CN92915"	"LEASE OF FORKLIFT"	="Department of Defence"	18-Jun-08	="Material handling machinery and equipment"	29-May-08	01-Jun-08	10298.48	=""	="FUTURE SERVICES GENERAL TRADING CO."	18-Jun-08 12:55 PM	

+="CN92916"	"LEASE OF VEHICLES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	29-May-08	01-Jun-08	10818.60	=""	="FUTURE SERVICES GENERAL TRADING CO."	18-Jun-08 12:55 PM	

+="CN92922"	"ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Accommodation furniture"	15-May-08	30-Jun-08	10200.00	=""	="GARDEN CITY MOTEL"	18-Jun-08 12:56 PM	

+="CN92929"	"REEFER HIRE MAY 08 SECDET"	="Department of Defence"	18-Jun-08	="Containers and storage"	28-May-08	31-May-08	11632.97	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:57 PM	

+="CN92932"	"LIFE FITNESS TREADMILL FOR FE AT ABUL"	="Department of Defence"	18-Jun-08	="Fitness equipment"	24-Apr-08	30-May-08	10073.71	=""	="K5 SUPPLIERS AND SERVICES"	18-Jun-08 12:57 PM	

+="CN92948"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	08-Apr-08	30-Jun-08	11616.00	=""	="CLAYTON UTZ"	18-Jun-08 12:59 PM	

+="CN92951"	"LPG Supply"	="Department of Defence"	18-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	16-Jun-08	30-Jun-08	11000.00	=""	="ELGAS LTD"	18-Jun-08 12:59 PM	

+="CN92960"	"SUPPLY OF AIRCRAFT GASES"	="Department of Defence"	18-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	12-Jun-08	30-Jun-08	11000.00	=""	="BOC LIMITED"	18-Jun-08 01:01 PM	

+="CN92975"	"ENGINEERING SERVICES"	="Department of Defence"	18-Jun-08	="Professional engineering services"	18-May-08	30-Jun-08	10988.48	=""	="PROLOGUE EMS, PROLOGUE TELEMETRY"	18-Jun-08 01:03 PM	

+="CN92984"	"NEW DELHI CHANCERY."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	11361.33	=""	="DEPT OF FOREIGN AFFAIRS & TRADE"	18-Jun-08 01:04 PM	

+="CN93013"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	11000.00	=""	="HILTON STONE"	18-Jun-08 01:08 PM	

+="CN93014"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="EF ANDERSON"	18-Jun-08 01:08 PM	

+="CN93017"	"Installation of weather station at BFTA Range Cntl"	="Department of Defence"	18-Jun-08	="Environmental Services"	28-May-08	30-Jun-08	11000.00	=""	="NORTHERN BUSINESS COMMUNICATIONS"	18-Jun-08 01:08 PM	

+="CN93047"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="DR LISA BURNS"	18-Jun-08 01:12 PM	

+="CN93068"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="GERARD E. CARROLL"	18-Jun-08 01:15 PM	

+="CN93069"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	11000.00	=""	="DYSARAN CONSULTING"	18-Jun-08 01:15 PM	

+="CN93071"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	11000.00	=""	="J THARION"	18-Jun-08 01:15 PM	

+="CN93075"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="HANDS-ON PHYSIOTHERAPY"	18-Jun-08 01:16 PM	

+="CN93076"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="JULIE A HEMMINGWAY"	18-Jun-08 01:16 PM	

+="CN93079"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="TREVOR K LAW"	18-Jun-08 01:17 PM	

+="CN93083"	"ANTENNA ELEVATED VHF KIT"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	29-May-08	16-Jul-08	11228.80	=""	="EYLEX PTY LTD"	18-Jun-08 01:17 PM	

+="CN93085"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	20-Jun-08	12000.00	=""	="THE INSTITUTE OF INTERNAL AUDITORS"	18-Jun-08 01:17 PM	

+="CN93087"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	11000.00	=""	="PREVENTIVE MEDICINE AND"	18-Jun-08 01:18 PM	

+="CN93093"	"FACOPS"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	29-May-08	30-Jun-08	11200.20	=""	="WOODPEND HARDWARE"	18-Jun-08 01:19 PM	

+="CN93096"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	10000.00	=""	="JOHN W FULLER"	18-Jun-08 01:19 PM	

+="CN93104"	"Aircraft Technical Support"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	27-May-08	30-Jun-08	11980.10	=""	="COMPUTER MANUFACTURING & INTERGRATI"	18-Jun-08 01:20 PM	

+="CN93114"	"Gym Equipment - Treadmill"	="Department of Defence"	18-Jun-08	="Fitness equipment"	27-May-08	30-Jun-08	10560.00	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	18-Jun-08 01:21 PM	

+="CN93166"	"CHP PAYMENTS"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	28-May-08	30-Jun-09	10000.00	=""	="FLOREY MEDICAL CENTRE"	18-Jun-08 01:28 PM	

+="CN93168"	"WORKSHOP EQUIPEMENT, CONTSTRUCTION PLATOON Army Logistic Training Centre, Bandiana"	="Department of Defence"	18-Jun-08	="Tools and General Machinery"	28-May-08	30-Jun-08	10006.59	=""	="KEN GOFF TOOL SUPPLIES"	18-Jun-08 01:28 PM	

+="CN93183"	"DIGITAL VIDEO RECORDER"	="Department of Defence"	18-Jun-08	="Photographic or filming or video equipment"	28-May-08	20-Jun-08	11675.40	=""	="SIGHT & SOUND INSTALLATIONS"	18-Jun-08 01:30 PM	

+="CN93206"	" TUBE ASSEMBLY, METAL. PART/No 206-010-355-009; MC 97499. QUANTITY 10. STAGGERED DELIVERY "	="Defence Materiel Organisation"	18-Jun-08	="Military rotary wing aircraft"	18-Jun-08	15-Dec-08	11627.44	=""	="HAWKER PACIFIC PTY LTD"	18-Jun-08 01:54 PM	

+="CN93215"	"Project review"	="Australian Centre for International Agricultural Research"	18-Jun-08	="Agricultural research services"	26-Jun-08	08-Jul-08	10120.00	=""	="Dr Bob Clements"	18-Jun-08 03:24 PM	

+="CN93217"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Business law services"	01-Apr-08	21-Apr-08	10392.25	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 03:30 PM	

+="CN93236"	"R & D activity"	="Australian Centre for International Agricultural Research"	18-Jun-08	="Agricultural research services"	22-Apr-08	23-May-08	11000.00	=""	="Beef Cattle Research Station"	18-Jun-08 03:58 PM	

+="CN93240"	" 08.110 Review of Workplace Diversity Function "	="Australian Taxation Office"	18-Jun-08	="Human resources services"	14-Jun-08	18-Jul-08	11968.00	=""	="Diversity Council Australia"	18-Jun-08 04:16 PM	

+="CN93242"	"Purchase of Artworks"	="Department of the Environment Water Heritage and the Arts"	18-Jun-08	="Socio cultural services"	18-Jun-08	18-Jun-08	10000.00	="0708-1906"	="Niagara Galleries"	18-Jun-08 04:37 PM	

+="CN93254"	"Healthcare Services"	="Centrelink"	19-Jun-08	="Healthcare Services"	12-Jun-08	30-Jun-08	11000.00	=""	="Insite Injury Management Group"	19-Jun-08 07:53 AM	

+="CN93255"	"Staff Medical Assessments"	="Centrelink"	19-Jun-08	="Human resources services"	17-Jul-07	30-Jun-08	11255.00	=""	="Gillian Groom"	19-Jun-08 07:53 AM	

+="CN93263"	"Venue Hire"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	22-Feb-08	30-Jun-08	11286.00	=""	="Fremantle Sailing Club"	19-Jun-08 07:54 AM	

+="CN93268"	"Project management of Casino, NSW, refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Jan-08	29-Jun-08	10380.62	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 07:54 AM	

+="CN93289"	"Web publisher contractors"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-Jun-08	11000.00	="DCON/04/162"	="THE GREEN AND GREEN GROUP PTY LTD"	19-Jun-08 09:10 AM	

+="CN93301-A1"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Jun-08	09-Jul-08	11100.78	=""	="Symbion"	19-Jun-08 10:06 AM	

+="CN93323"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	24-Jan-08	31-Mar-08	10092.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Jun-08 02:06 PM	

+="CN93326"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Mar-08	04-Apr-08	10553.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Jun-08 02:11 PM	

+="CN93348"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	15-May-08	30-Jun-08	10000.00	=""	="Borroloola Hostel/Guesthouse"	19-Jun-08 02:14 PM	

+="CN93357"	"Hotel Lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	09-May-08	30-Jun-08	10000.00	=""	="Demed Association Inc"	19-Jun-08 02:15 PM	

+="CN93363"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	16-May-08	30-Jun-08	10139.51	=""	="Crowne  Plaza Darwin"	19-Jun-08 02:16 PM	

+="CN93386"	"Data Centre Electrical services"	="Centrelink"	19-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	23-May-08	30-Jun-08	11000.00	=""	="O'Donnell Griffin (ACT)"	19-Jun-08 02:19 PM	

+="CN93390"	"Water charges 2007/2008"	="Centrelink"	19-Jun-08	="Utilities"	10-Jul-07	30-Jun-08	10169.15	=""	="Water Corporation"	19-Jun-08 02:19 PM	

+="CN93397"	"Fitout management of Palm Beach, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-May-08	19-Dec-08	11330.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93399-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	14-May-08	30-Jun-08	11550.00	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:21 PM	

+="CN93402"	"Rehabilitation services"	="Centrelink"	19-Jun-08	="Healthcare Services"	29-Nov-07	30-Jun-08	12000.00	=""	="Recovery Partners"	19-Jun-08 02:21 PM	

+="CN93404"	"Customer Service Centre  Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Dec-07	03-Dec-08	10621.00	=""	="Schiavello SA Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93438"	"Healthcare services"	="Centrelink"	19-Jun-08	="Healthcare Services"	20-May-08	30-Jun-08	12000.00	=""	="Ford Health"	19-Jun-08 02:26 PM	

+="CN93441"	"Uninterruptable Power Supply Maintenance"	="Centrelink"	19-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	20-May-08	30-Jun-08	11000.00	=""	="Chloride Power Protection"	19-Jun-08 02:27 PM	

+="CN93452"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	22-May-08	30-Jun-08	10000.00	=""	="Renner Springs Desert Inn"	19-Jun-08 02:28 PM	

+="CN93461"	"Removal services"	="Centrelink"	19-Jun-08	="Transportation services equipment"	08-May-08	30-Jun-08	10285.00	=""	="Allied  Pickfords Business Relocations"	19-Jun-08 02:30 PM	

+="CN93475"	"Removals for Hervey Bay, QLD, refurbishment"	="Centrelink"	19-Jun-08	="Material packing and handling"	13-May-08	09-Jun-08	10719.50	=""	="Wridgways The Removalists"	19-Jun-08 02:32 PM	

+="CN93490"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	27-May-08	17-Aug-08	11440.00	=""	="Compas Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93492"	"Data Entry Services"	="Centrelink"	19-Jun-08	="Computer services"	05-Jun-08	31-Dec-08	11000.00	=""	="Searson Buck Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93499"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	17-Mar-08	12-Jul-08	11104.32	=""	="ComPro Solutions Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93514"	"Install alarm system"	="Centrelink"	19-Jun-08	="Office supplies"	18-Mar-08	30-Jun-08	10953.53	=""	="Novocastrian Alarms Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93521"	"Residential Social Worker Conference Area Pacific Central"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	26-May-08	29-May-08	11719.00	=""	="Hotel Watermark"	19-Jun-08 02:38 PM	

+="CN93529"	"Cafe equipment repairs"	="Centrelink"	19-Jun-08	="Domestic Appliances and Supplies and Consumer Electronic Products"	20-Feb-08	30-Jun-08	11550.00	=""	="Norfolk Foodservices"	19-Jun-08 02:39 PM	

+="CN93531"	"Locksmith Services"	="Centrelink"	19-Jun-08	="Security and personal safety"	06-Jul-07	27-Sep-07	11000.00	=""	="Australian Security Industries Pty"	19-Jun-08 02:39 PM	

+="CN93536"	"Architectural services"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Nov-06	30-Jun-08	11536.54	=""	="GHD Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93544"	"Conference""	="Centrelink"	19-Jun-08	="Management advisory services"	15-May-08	30-May-08	10620.00	=""	="Red Carpet Ltd"	19-Jun-08 02:41 PM	

+="CN93552"	"Furniture for office fitout, Roma QLD"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	11987.80	=""	="Emtek Furniture"	19-Jun-08 02:42 PM	

+="CN93555"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	11825.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:43 PM	

+="CN93559"	"Melbourne Retirement and Life Style Expo, stand hire"	="Centrelink"	19-Jun-08	="Marketing and distribution"	19-May-08	15-Sep-08	10054.00	=""	="Exhibition and Marketing Services Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93577"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	29-Feb-08	27-Mar-08	11916.63	=""	="MINTER ELLISON"	19-Jun-08 02:52 PM	

+="CN93614"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	31-Jul-08	10527.52	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:39 PM	

+="CN91387"	"Scanning project."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Document scanning service"	09-Jun-08	30-Jun-08	10747.00	=""	="Microsystems Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93617"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	10956.06	=""	="LANDROVER"	19-Jun-08 03:41 PM	

+="CN93633"	"Procurement of:  ACTUATOR,ELECTRO-MECHANICAL,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	01-Aug-08	10599.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93639"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	17-Aug-08	10212.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:43 PM	

+="CN93640"	"Procurement of:  INDICATOR,HUMIDITY,PLUG"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	09-Feb-09	10831.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93638"	" AIRCRAFT SPARES  NSN 3120-01-096-1323 , BEASRING SLEEVE , FLIGHT ESSENTIAL PART A25A , QTY 70 "	="Defence Materiel Organisation"	19-Jun-08	="Military transport helicopters"	19-Jun-08	19-Feb-09	11123.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Jun-08 03:44 PM	

+="CN93659"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	19-Jun-08	10908.00	=""	="GILBARCO AUSTRALIA Ltd"	19-Jun-08 03:46 PM	

+="CN93685"	"Procurement of:  LP INFLATOR ASSY WI;  MASK,DIVER'S;  GLOVES,DIVERS';  SUIT, DIVER'S PROTECTIVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	19-Jun-08	10219.84	=""	="CAPE BYRON IMPORTS & WHOLESALE *"	19-Jun-08 03:50 PM	

+="CN93691"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Aug-08	10529.40	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93710"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	10486.00	=""	="RECORD MARINE Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93712"	"Procurement of:  DUMMY LOAD,ELECTRICAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	06-Jan-09	11380.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:55 PM	

+="CN93713"	"Procurement of:  ANTENNA SIMULATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	13-Sep-08	11880.69	=""	="THALES AUSTRALIA"	19-Jun-08 03:55 PM	

+="CN93730"	"Procurement of:  SEAL,PLAIN ENCASED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	25-Jul-08	10650.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93747"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	10274.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93761"	"Procurement of:  RING SET,PISTON;  VALVE,CONCENTRIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	25-Jun-08	11084.45	=""	="COMPAIR (AUSTRALASIA) Ltd"	19-Jun-08 04:03 PM	

+="CN93769"	"Procurement of:  COVER,FOLDING COT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jul-08	10250.00	=""	="NANS TARPS"	19-Jun-08 04:04 PM	

+="CN93779"	"Procurement of:  SEAL ASSEMBLY,SHAFT,SPRING LOADED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	19-Jun-08	11980.00	=""	="SOUTHERN PUMPING SPECIALISTS"	19-Jun-08 04:06 PM	

+="CN93788"	"Procurement of:  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	29-Aug-08	10795.85	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93801"	"Procurement of:  MODIFICATION KIT, MASK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	11900.00	=""	="MSA (AUST) Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93810"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	13-Oct-08	11854.64	=""	="THALES AUSTRALIA"	19-Jun-08 04:11 PM	

+="CN93813"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Aug-08	11149.88	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93841"	"SHIPPING PLASTIC BOXES"	="Department of Defence"	19-Jun-08	="Tool chests or boxes or cabinets"	21-May-08	19-Jun-08	11055.00	=""	="TRIMCAST"	19-Jun-08 04:47 PM	

+="CN93797"	"  DRILL BONE PNEUMATIC , COUPLING ATTACHMENT  "	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	21-Aug-07	31-Oct-07	10226.70	="3-sept-07"	="Laerdal Pty Ltd"	19-Jun-08 04:47 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val12000to16000.xls
@@ -1,1 +1,229 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91087"	"SDSS PURCHASE ORDER VARIOUS LANDROVER PARTS"	="Department of Defence"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Jun-08	17-Jul-08	15027.34	=""	="LANDROVER AUSTRALIA"	17-Jun-08 08:23 AM	

+="CN91094"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft spars"	13-Jun-08	23-Jan-09	15321.90	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	17-Jun-08 09:04 AM	

+="CN91103"	"For the purchase of fertilizer for Landscape services"	="Department of Parliamentary Services"	17-Jun-08	="Fertilisers and plant nutrients and herbicides"	28-May-08	30-Jul-08	15840.00	=""	="Davidson's Nurseries Pty Ltd"	17-Jun-08 09:15 AM	

+="CN91122"	"Purchase of Turf Maintenance Products"	="Department of Parliamentary Services"	17-Jun-08	="Grounds maintenance services"	27-Mar-08	06-Jun-08	13600.57	=""	="Nuturf Pty Ltd"	17-Jun-08 09:18 AM	

+="CN91126"	"Provision of courier services Contract (DPS07028)"	="Department of Parliamentary Services"	17-Jun-08	="Freight forwarders services"	08-Apr-08	06-Jun-08	13200.00	=""	="Universal Express"	17-Jun-08 09:18 AM	

+="CN91608"	"INSTALLATION OF NETWORK COMPUTER OUTLETS IN BUILDING 189"	="Defence Materiel Organisation"	17-Jun-08	="Components for information technology or broadcasting or telecommunications"	03-Jun-08	30-Jun-08	13200.00	=""	="TPE INTERGRATED SERVICES"	17-Jun-08 11:46 AM	

+="CN91611"	"Conference Hire and Catering"	="CRS Australia"	17-Jun-08	="Meeting facilities"	28-May-08	30-May-08	13299.09	=""	="MUSTARD CATERING"	17-Jun-08 11:46 AM	

+="CN91646"	"Cable Assy"	="Defence Materiel Organisation"	17-Jun-08	="Vehicle safety and security systems and components"	04-Jun-08	26-Aug-08	15931.80	=""	="DRS TECHNOLOGIES UK LIMITED"	17-Jun-08 11:48 AM	

+="CN91714"	"Hard Drives, cables, Switches, Ethernet adapters pluggable modules, Toner and nuts and bolt."	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	29-May-08	11-Jun-08	14205.13	=""	="WC PENFOLD PTY LTD"	17-Jun-08 11:53 AM	

+="CN91789"	"BHI EWSP TRAVEL TO TOWNSVILLE 11-13 JUN 08"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	31-Jul-08	13500.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:58 AM	

+="CN91820"	"DEAKINPRIME ENGAGED TO CONDUCT FEASIBILITY ANALYSI INTO MATERIEL LOGISTICS TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	05-Jun-08	30-Jun-08	14762.00	=""	="DEAKINPRIME"	17-Jun-08 12:00 PM	

+="CN91874"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	13478.91	=""	="SUN MICROSYSTEMS"	17-Jun-08 12:04 PM	

+="CN91882"	"Tools for Multi Role Helicopter Program Office"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	30-Jun-08	13111.26	=""	="SNAP ON TOOLS (AUST) PTY LTD"	17-Jun-08 12:05 PM	

+="CN91895"	"MBITR Spare Parts for June 07"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	15970.90	=""	="THALES AUSTRALIA"	17-Jun-08 12:06 PM	

+="CN91901"	"Service and Support"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	04-Jun-08	26-Jun-09	15361.50	=""	="MANUKA ENT PTY LTD"	17-Jun-08 12:07 PM	

+="CN91961"	"BLANKET ORDER RAISED FOR THE SUPPLY OF AVIATION FUEL TO THE DEPARTMENT OF DEFENCE"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	05-Jun-08	30-Jun-08	14960.00	=""	="WEST-TEN SERVICES"	17-Jun-08 12:11 PM	

+="CN91966"	"Shortlife Chemicals for use by 21 Const on AACAP t with short shelf life when in tropical environmen"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	15-Aug-08	13983.13	=""	="PALL AUSTRALIA"	17-Jun-08 12:11 PM	

+="CN91968"	"pc9 aircraft spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Dec-08	15290.39	=""	="PILATUS AIRCRAFT LTD"	17-Jun-08 12:11 PM	

+="CN91980"	"Chemicals to support Water Purification Unit"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	10-Jun-08	13658.24	=""	="PALL AUSTRALIA"	17-Jun-08 12:12 PM	

+="CN92049"	"VENUE HIRE & CATERING FOR DMO LEADERSHIP PROGRAMS"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	11-Jun-08	30-Jun-08	15911.50	=""	="CLIFTONS"	17-Jun-08 12:18 PM	

+="CN92061"	"Use of Exisitng ASP Contract  - Caley Davit Service"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	13-Jun-08	11-Jul-08	13401.46	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:19 PM	

+="CN92088"	"AASSPO requires services from RRAS for IPT during HMAS TOBRUK Docking to assist the Project Super"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	17-Jun-08	15555.90	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:21 PM	

+="CN92107"	"GST APPLICABLE ON INV 10334"	="Defence Materiel Organisation"	17-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	13054.56	=""	="BAE SYSTEMS(AUSTRALIA)"	17-Jun-08 12:22 PM	

+="CN92119"	"Interagency travel for trainng"	="Defence Materiel Organisation"	17-Jun-08	="Cereals"	12-Nov-07	30-Jun-09	15000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:23 PM	

+="CN92126"	"oseas travel interagency agreement MRH 07682/2007. Travel to France for Steven Arney."	="Defence Materiel Organisation"	17-Jun-08	="Travel facilitation"	30-Apr-08	30-May-08	13889.20	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:24 PM	

+="CN92146"	"Provide HMAS SIRIUS Main Engine Spares"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	12-Jun-08	30-Sep-08	13028.40	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:27 PM	

+="CN92167"	"Rantewss Equipment Modifications for the FFG Class Phase 2"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	15-Apr-08	28-Aug-08	14792.80	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	17-Jun-08 12:31 PM	

+="CN92174"	"This order is raised in accordance with telephone (Mobil) 28 May 2008"	="Defence Materiel Organisation"	17-Jun-08	="Lubricants and oils and greases and anti corrosives"	28-May-08	04-Jun-08	14647.29	=""	="MOBIL OIL AUSTRALIA PTY LTD"	17-Jun-08 12:31 PM	

+="CN92178"	"Professional Legal Fees"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	28-May-08	30-Jun-08	14998.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:32 PM	

+="CN92189"	"INTERFACE"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	28-May-08	30-Jun-08	15508.49	=""	="LOCKHEED MARTIN CORPORATION"	17-Jun-08 12:33 PM	

+="CN92196"	"Nulka Maintenance"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	29-May-08	31-Jul-08	12928.81	=""	="THALES AUSTRALIA"	17-Jun-08 12:34 PM	

+="CN92210"	"pc9 aircraft spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	28-May-08	30-Oct-08	13681.09	=""	="PILATUS AIRCRAFT LTD"	17-Jun-08 12:36 PM	

+="CN92214"	"BODY"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	29-May-08	10-Dec-08	13705.44	=""	="MAROTTA CONTROLS INC"	17-Jun-08 12:37 PM	

+="CN92254"	"Notebooks, Carry Pouches and Optical Mice"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	12-Jun-08	14220.80	=""	="COMPUTERCORP - MELBOURNE"	17-Jun-08 12:42 PM	

+="CN92255"	"Office Furniture"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	27-May-08	12-Jun-08	12050.74	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	17-Jun-08 12:42 PM	

+="CN92258"	"Army Spares"	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	27-May-08	01-Jul-08	14410.87	=""	="AIMPOINT SWEDEN AB"	17-Jun-08 12:42 PM	

+="CN92262"	"Provision of Laptop Software Upgrade"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	30-Jun-08	12222.66	=""	="KAZ GROUP PTY LTD"	17-Jun-08 12:43 PM	

+="CN92286"	"Qty 29 Jack Hydraulic Hand Special"	="Defence Materiel Organisation"	17-Jun-08	="Automotive hydraulic systems"	17-Jun-08	20-Jun-08	13420.33	=""	="Volvo Commercial Vehicles"	17-Jun-08 02:43 PM	

+="CN92290"	"Pool Vehicle Lease Charges for April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-Apr-08	30-Apr-08	14965.31	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 03:04 PM	

+="CN92299"	"Promotional Pens"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Promotional merchandise"	15-Feb-08	29-Mar-08	14850.00	=""	="IMPACT PROMOTIONAL PRODUCTS"	17-Jun-08 04:02 PM	

+="CN92301"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Feb-08	29-Feb-08	12144.95	=""	="TRINDADE FARR & PILL"	17-Jun-08 04:06 PM	

+="CN92306"	"Repair of A25 Yaw boost servo IAW S/O 9702-026-105."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	17-Jun-08	30-Jul-08	15634.62	=""	="Sikorsky Aircraft Austalia Limited"	17-Jun-08 04:15 PM	

+="CN92308"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	20-Feb-08	22-Feb-08	12532.00	=""	="Sheraton Hotel"	17-Jun-08 04:33 PM	

+="CN92309"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	05-Mar-08	07-Mar-08	12830.00	=""	="Dooralong Valley Resort"	17-Jun-08 04:40 PM	

+="CN92312"	" VEHICLE REPAIRS "	="Department of Defence"	18-Jun-08	="Motor vehicles"	17-Jun-08	17-Jul-08	15657.95	=""	="FB AUTOS"	18-Jun-08 08:05 AM	

+="CN92315"	"National Westlaw Legal electronic research service"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal Research Services"	16-Jun-08	15-Jun-09	13857.00	=""	="Thompson Reuters"	18-Jun-08 09:37 AM	

+="CN92324-A1"	"Provisions for safety and awareness workshops"	="Department of Immigration and Citizenship"	18-Jun-08	="Personal safety instructional materials"	01-Jul-07	30-Jun-09	14850.00	=""	="Yu Shih Tao Kung Fu Society"	18-Jun-08 10:19 AM	

+="CN92338"	"Property charges for May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Property management services"	01-May-08	31-May-08	13450.41	=""	="UNITED GROUP SERVICES PTY LTD"	18-Jun-08 11:08 AM	

+="CN92341"	"Purchase of Qty 4 NSN 6730-66-156-4204 Projector Mutimedia"	="Defence Materiel Organisation"	18-Jun-08	="Surveillance and detection equipment"	13-Jun-08	24-Jun-08	13156.00	=""	="Electroboard Solutions Pty Ltd"	18-Jun-08 11:18 AM	

+="CN92354"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	13589.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 11:36 AM	

+="CN92361"	"CWALN Toxic Transport Container."	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	03-Jun-08	11-Jun-08	12417.11	=""	="NATIONAL INSTITUTE OF FORENSIC"	18-Jun-08 11:38 AM	

+="CN92367"	"PRINTING OF MAPS GAC 30/2008"	="Department of Defence"	18-Jun-08	="Paper products"	03-Jun-08	02-Jul-08	12562.00	=""	="CENTRE STATE PRINTING"	18-Jun-08 11:39 AM	

+="CN92373"	"GOODS"	="Department of Defence"	18-Jun-08	="Truck tractors"	02-Jun-08	30-Jun-08	12938.75	=""	="CONNECTORTECH AUSTRALIA PTY LTD"	18-Jun-08 11:39 AM	

+="CN92382"	"Attainment Proficiencies in Cert IV for Training <"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	02-Jun-08	30-Jun-08	16000.00	=""	="CIDARA PTY LTD"	18-Jun-08 11:41 AM	

+="CN92415"	"SOUND EQUIPMENT"	="Department of Defence"	18-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	03-Jun-08	30-Jun-08	15789.00	=""	="THE BOSE STORE (BY DME HIFI)"	18-Jun-08 11:45 AM	

+="CN92440"	"CM2-300 Winch and winch control cable"	="Department of Defence"	18-Jun-08	="Tools and General Machinery"	03-Jun-08	30-Jun-08	15950.00	=""	="SONARTECH ATLAS PTY LTD"	18-Jun-08 11:49 AM	

+="CN92445"	"Annual computer software maintenance"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	06-Jun-08	15540.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	18-Jun-08 11:50 AM	

+="CN92446"	"Annual computer software maintenance"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	13-Jun-08	14190.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	18-Jun-08 11:50 AM	

+="CN92455"	"DFR exposure  to 1200 undergraduate and post-gradu (age 18-34)"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-May-08	30-Jun-08	13200.00	=""	="WESTERN AUSTRALIAN MEDICAL STUDENTS"	18-Jun-08 11:51 AM	

+="CN92463"	"Furniture"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	30-May-08	18-Jun-08	12904.10	=""	="KEEN OFFICE FURNITURE"	18-Jun-08 11:52 AM	

+="CN92476"	"LEASE OF PUBLICATIONS"	="Department of Defence"	18-Jun-08	="Paper Materials and Products"	30-May-08	30-Jun-08	13220.33	=""	="BAKER AND TAYLOR"	18-Jun-08 11:54 AM	

+="CN92477"	"CD CONTAINS PERSONNEL INFORMATION FROM PEOPLE STRATEGIES AND POLICY GROUP"	="Department of Defence"	18-Jun-08	="Human resources services"	30-May-08	30-Dec-08	15513.30	=""	="CD MANUFACTURERS PTY LTD"	18-Jun-08 11:54 AM	

+="CN92492"	"Furniture"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	30-May-08	30-Jun-08	12566.40	=""	="KEEN OFFICE FURNITURE"	18-Jun-08 11:56 AM	

+="CN92495"	"WELDING TOOLS  &  STOCK REQUIRED BY NAVAL ADVA GARDEN ISLAND NSW"	="Department of Defence"	18-Jun-08	="Workshop machinery and equipment and supplies"	30-May-08	23-Jun-08	14357.42	=""	="J BLACKWOOD & SON LTD"	18-Jun-08 11:56 AM	

+="CN92508"	"Consultancy support - OP OUTREACH"	="Department of Defence"	18-Jun-08	="Project management"	02-Jun-08	02-Jun-08	13870.59	=""	="PDL TOLL"	18-Jun-08 11:58 AM	

+="CN92528"	"NEW FURNITURE AND EQUIPMENT REMOVAL"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	02-Jun-08	10-Sep-08	12650.00	=""	="OLYMPIA GROUP"	18-Jun-08 12:01 PM	

+="CN92530"	"Transportation of equipment"	="Department of Defence"	18-Jun-08	="Transportation and Storage and Mail Services"	02-Jun-08	02-Jun-08	13587.20	=""	="PDL TOLL"	18-Jun-08 12:01 PM	

+="CN92537"	"Television Equipment"	="Department of Defence"	18-Jun-08	="Audio and visual presentation and composing equipment"	30-May-08	30-Jun-08	12503.01	=""	="MILLENNIUM AUDIO VISUAL"	18-Jun-08 12:03 PM	

+="CN92550"	"OP OUTREACH LOGISTICS CONSULTANCY"	="Department of Defence"	18-Jun-08	="Project management"	02-Jun-08	30-Jun-08	13200.00	=""	="PDL TOLL"	18-Jun-08 12:05 PM	

+="CN92555"	"noise assess @HMAS Darwin and report 9-13 June 08"	="Department of Defence"	18-Jun-08	="Personal safety and protection"	02-Jun-08	30-Jun-08	14731.90	=""	="CAREY MURPHY & ASSOCIATES"	18-Jun-08 12:06 PM	

+="CN92561"	"Clarity bayCat x46inch LCD + Freight"	="Department of Defence"	18-Jun-08	="Hardware"	05-Jun-08	30-Jun-08	12337.60	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	18-Jun-08 12:06 PM	

+="CN92562"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	12-Jun-08	15000.00	=""	="INFORMED SOURCES PTY LTD"	18-Jun-08 12:07 PM	

+="CN92565"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	12100.00	=""	="IOH INJURY & OCCUPATIONAL HEALTH"	18-Jun-08 12:07 PM	

+="CN92582"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	13200.00	=""	="NT PSYCHOLOGY SERVICES"	18-Jun-08 12:09 PM	

+="CN92586"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	13200.00	=""	="FITZWATERS CONSULTANTS PTY LTD"	18-Jun-08 12:10 PM	

+="CN92591"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	13200.00	=""	="CARFI PSYCHOLOGY AND"	18-Jun-08 12:11 PM	

+="CN92598"	"OT&E COURSES"	="Department of Defence"	18-Jun-08	="Education and Training Services"	05-Jun-08	05-Jul-08	15967.50	=""	="NATIONAL TEST PILOT SCHOOL INC"	18-Jun-08 12:12 PM	

+="CN92601"	"5 Dell Precision M6300n series (2.5 GHz) laptops for LWDC Simulation Wing Sim Lan"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	14575.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 12:12 PM	

+="CN92605"	"2 NEW CAMPAIGNS WHICH ARE INTENDED TO RAISE AWAREN OF ROLES WITHIN THE AIR FORCE. AIR FORCE GRADUATE"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-Jun-08	30-Jun-08	13970.00	=""	="GEORGE PATTERSON Y & R"	18-Jun-08 12:13 PM	

+="CN92611"	"UPDATE SECURITY FENCE AT ENOGGERA"	="Department of Defence"	18-Jun-08	="Security and control equipment"	05-Jun-08	30-Jun-08	15983.55	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:13 PM	

+="CN92612"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Dec-08	13200.00	=""	="MP SAFETY MANAGEMENT PTY LTD"	18-Jun-08 12:14 PM	

+="CN92621"	"TANDBERG DESKTOP MICROPHONE"	="Department of Defence"	18-Jun-08	="Photographic or filming or video equipment"	06-Jun-08	30-Jun-08	14499.58	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	18-Jun-08 12:15 PM	

+="CN92625"	"TRAINING COURSE"	="Department of Defence"	18-Jun-08	="Classroom and instructional and institutional furniture and fixtures"	06-Jun-08	30-Sep-08	14080.00	=""	="SOUTHPAC AEROSPACE"	18-Jun-08 12:15 PM	

+="CN92654"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	13200.00	=""	="ATKIN ERGONOMICS"	18-Jun-08 12:19 PM	

+="CN92677"	"BENQ PROJECTOR MP622C PANASONIC WHITBOARDS UB5310"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	13-Jun-08	12005.40	=""	="ITMS GROUP"	18-Jun-08 12:22 PM	

+="CN92678"	"TSS contract"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	04-Jun-08	04-Jun-08	14456.86	=""	="UNIVERSITY OF CALGARY"	18-Jun-08 12:23 PM	

+="CN92682"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	14110.80	=""	="SAINT BRIGID'S CATHOLIC PRIMARY"	18-Jun-08 12:23 PM	

+="CN92695"	"CDF CUCHAREST TRIP, USE OF SAT PHONE, WORK REASONS"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	30-Jun-08	14223.74	=""	="MARLEC PTY LTD"	18-Jun-08 12:25 PM	

+="CN92717"	"LASER CLADDING OF 7075 AI USING VARIETIES OF POWDE RS TO INCREASE MECHANICAL PROPERTIES OF LC SPECIM"	="Department of Defence"	18-Jun-08	="Military science and research"	04-Jun-08	30-Jun-08	13200.00	=""	="SWINBURNE UNIVERSITY OF"	18-Jun-08 12:28 PM	

+="CN92730"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Nov-09	13651.00	=""	="PROGRAM IT PTY LTD"	18-Jun-08 12:30 PM	

+="CN92734"	"AEO DOCUMENTATATION - PREPARATION"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	04-Jun-08	20-Jun-08	12078.00	=""	="REQUAL BUSINESS SERVICES PTY LTD"	18-Jun-08 12:31 PM	

+="CN92737"	"HOTEL ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	04-Jun-08	07-Jun-08	14986.99	=""	="HOLIDAY INN MELBOURNE AIRPORT"	18-Jun-08 12:31 PM	

+="CN92742"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Jun-08	13709.99	=""	="PSI CONSULTING PTY LTD"	18-Jun-08 12:32 PM	

+="CN92750"	"MINSTERIAL GRANT"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	05-Jun-08	15014.00	=""	="MURDOCH UNIVERSITY"	18-Jun-08 12:33 PM	

+="CN92787"	"TSS CONTRACT"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	21-Apr-08	30-Apr-08	14689.77	=""	="BLUE SWIMMER CONSULTING"	18-Jun-08 12:38 PM	

+="CN92799"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	31-Mar-08	31-Mar-08	12500.00	=""	="SPARKE HELMORE LAWYERS"	18-Jun-08 12:39 PM	

+="CN92800"	"Scoping study to determine the applicability of granting an Advanced Diploma In Public Safety (DM)"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	04-Jun-08	30-Jun-08	12000.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	18-Jun-08 12:39 PM	

+="CN92802"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	14500.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	18-Jun-08 12:40 PM	

+="CN92806"	"VEGETATION MNGT - WEEDS & REHABILITATION CANUNGRA"	="Department of Defence"	18-Jun-08	="Environmental Services"	12-Nov-07	30-Jun-08	12316.60	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:40 PM	

+="CN92821"	"NEWSPAPERS AND MAGAZINES SHIPS WELFARE AMENITIES"	="Department of Defence"	18-Jun-08	="Published Products"	05-Jun-08	30-Jun-08	14318.45	=""	="SOUND NEWS"	18-Jun-08 12:42 PM	

+="CN92826"	"ASSET ROAD MAINTENANCE CF3 P2 SWBTA CONSULTANCY"	="Department of Defence"	18-Jun-08	="Roads and landscape"	12-Nov-07	30-Jun-08	12100.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:43 PM	

+="CN92846"	"The aim of this project is the provision of servic operation, maintenance and minor incremntal devel"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	19-May-08	30-Jun-08	13101.00	=""	="CLIFF GREEN DESIGN"	18-Jun-08 12:46 PM	

+="CN92854"	"BELCONNON TRANSMISSION STATION DISPOSAL"	="Department of Defence"	18-Jun-08	="Legal services"	09-May-08	30-Jun-08	13634.50	=""	="CLAYTON UTZ"	18-Jun-08 12:47 PM	

+="CN92856"	"Computer Equipment"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-May-08	20-May-08	12223.90	=""	="DATACOM SYSTEMS (QLD) PTY LTD"	18-Jun-08 12:47 PM	

+="CN92873"	"SUPPLY & INSTALL DRN OUTLETS AT ROBERTSON BARRACKS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	04-Apr-08	30-Jun-08	14881.21	=""	="NBC COMMUNICATIONS"	18-Jun-08 12:49 PM	

+="CN92875"	"LIA SMOKE DETECTION AND EMERGENCY LIGHTING VIC BKS"	="Department of Defence"	18-Jun-08	="Fire protection"	10-Jun-08	30-Jun-08	15400.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:49 PM	

+="CN92879"	"RAAF WILLIAMTOWN-AIRCRAFT CLEAN WATER RINSE FACILI"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	06-May-08	30-Jun-08	13388.10	=""	="SERCO SODEXHO DEFENCE SERVICES"	18-Jun-08 12:50 PM	

+="CN92887"	"CABCHARGE ACCOUNT 481027"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	07-Apr-08	03-Jun-08	15375.06	=""	="CAB CHARGE AUST PTY LTD"	18-Jun-08 12:51 PM	

+="CN92888"	"HIRE FOR DEFENCE MEMBERS COURSE AND RLLT TRAVEL HERTZ HIRE CAR"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	03-Jun-08	30-Aug-09	14601.07	=""	="HERTZ AUSTRALIA PTY LTD"	18-Jun-08 12:51 PM	

+="CN92895"	"MINOR EXPENSES FOR ELECTRICAL WORKSHOP - KAF"	="Department of Defence"	18-Jun-08	="Electrical components"	26-May-08	01-Jun-08	13900.56	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:52 PM	

+="CN92907"	"freight"	="Department of Defence"	18-Jun-08	="Mail and cargo transport"	24-May-08	30-Jun-08	12438.09	=""	="TNT FAILSAFE"	18-Jun-08 12:53 PM	

+="CN92909"	"carpentary stores"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	04-Jun-08	04-Jun-08	12850.00	=""	="HARRISONS TIMBER'N"	18-Jun-08 12:54 PM	

+="CN92912"	"HERTZ APR 2008 STATEMENT"	="Department of Defence"	18-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Dec-07	30-Dec-08	12028.93	=""	="HERTZ AUSTRALIA PTY LTD"	18-Jun-08 12:54 PM	

+="CN92918"	"Payment of invoice for Harman Temp Accommodation"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	28-Apr-08	30-Jun-08	15776.17	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:55 PM	

+="CN92927"	"VEHICLE LEASE BAGHDAD MAY08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	28-May-08	31-May-08	12277.38	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92933"	"VEHICLE LEASE ACTROS TRUCKS FOR FLLA-K"	="Department of Defence"	18-Jun-08	="Product and material transport vehicles"	24-May-08	30-May-08	13662.46	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:57 PM	

+="CN92943"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Sep-08	13431.00	=""	="GP & SP HAMPSON"	18-Jun-08 12:58 PM	

+="CN92996"	"GROCERIES / FISH FOR EXERCISE ACCOUNT TSV 05/07"	="Department of Defence"	18-Jun-08	="Confectionary products"	29-May-08	30-Jun-08	13029.19	=""	="BID VEST BURLEIGH MARR"	18-Jun-08 01:06 PM	

+="CN93010"	"FURNITURE FOR BLDG 95, WILLIAMTOWN"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	29-May-08	26-Jun-08	15144.47	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	18-Jun-08 01:07 PM	

+="CN93011"	"Chairs"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	29-May-08	30-Jun-08	13068.00	=""	="OFFICEMAX AUSTRALIA LTD"	18-Jun-08 01:08 PM	

+="CN93018"	"2 servers racks to be delivered to different areas"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	14942.40	=""	="SERVER RACKS AUSTRALIA"	18-Jun-08 01:08 PM	

+="CN93027"	"DELL LAPTOPS 5 FOR AIR 9000 PROJECT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	15939.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 01:10 PM	

+="CN93030"	"This order replaces 4500639677 dated 28 March 2008 Marine @ Fremantle as the vendor."	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	16-Jun-08	12067.00	=""	="TAYLOR MARINE"	18-Jun-08 01:10 PM	

+="CN93037"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	28-May-08	12650.00	=""	="CHANGEDRIVERS PTY LTD"	18-Jun-08 01:11 PM	

+="CN93050"	"Freight of busmaster from WBTA to Enoggera"	="Department of Defence"	18-Jun-08	="Motor vehicles"	29-May-08	29-May-08	15400.00	=""	="FREIGHTWEST"	18-Jun-08 01:13 PM	

+="CN93054"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	15000.00	=""	="MARIE STOPES INTERNATIONAL CLINIC"	18-Jun-08 01:13 PM	

+="CN93067"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	15000.00	=""	="RIVERINA CARDIOLOGY"	18-Jun-08 01:15 PM	

+="CN93078"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	15400.00	=""	="DR MARK D HURWITZ"	18-Jun-08 01:16 PM	

+="CN93085"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	20-Jun-08	12000.00	=""	="THE INSTITUTE OF INTERNAL AUDITORS"	18-Jun-08 01:17 PM	

+="CN93090"	"CAREER TRANSITION TRAINING COURSE 8084109 CPOATV JS EDWARDS"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	15-Oct-08	13093.35	=""	="FLIGHTSAFETY INTERNATIONAL"	18-Jun-08 01:18 PM	

+="CN93111"	"HP Compaq Laptop"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	14729.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 01:21 PM	

+="CN93122"	"Supply & Install Power and Data Outlets ST Lucia"	="Department of Defence"	18-Jun-08	="Electrical wire and cable and harness"	27-May-08	30-May-08	12782.00	=""	="QLD DATA N ELECTRICAL SERVICES"	18-Jun-08 01:22 PM	

+="CN93134"	"985-AFG009-P3Q - Hire of 200 KVA Generator"	="Department of Defence"	18-Jun-08	="Batteries and generators and kinetic power transmission"	21-May-08	30-Jun-08	12774.00	=""	="C&C BUILDING MATERIALS"	18-Jun-08 01:24 PM	

+="CN93139"	"MANUFACTURE OF RETURNED FROM ACTIVE SERVICE BADGES TO SERVING, EX/SERVING ADF PERSONNEL"	="Department of Defence"	18-Jun-08	="Collectibles and awards"	27-May-08	30-Sep-08	15026.00	=""	="CASHS AUSTRALIA PTY LTD"	18-Jun-08 01:24 PM	

+="CN93144"	"NWCC - IMAGING - ACTIVITY SUMMARY FOR MONTH OF MAY"	="Department of Defence"	18-Jun-08	="Printed media"	27-May-08	30-Jun-08	12919.26	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	18-Jun-08 01:25 PM	

+="CN93149"	"contract under standing offer"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	27-Jun-08	12144.00	=""	="EBOR COMPUTING"	18-Jun-08 01:26 PM	

+="CN93150"	"VEHICLE LEASE"	="Department of Defence"	18-Jun-08	="Motor vehicles"	28-May-08	01-Jun-08	13200.59	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 01:26 PM	

+="CN93152"	"Software Purchasing Red Hat Providioning Module"	="Department of Defence"	18-Jun-08	="Software"	28-May-08	30-Jun-08	13971.03	=""	="RED HAT ASIA-PACIFIC PTY LTD"	18-Jun-08 01:26 PM	

+="CN93157"	"Multi Computer Switch"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	11-Jun-08	13276.59	=""	="TENIX DATAGATE PTY LTD"	18-Jun-08 01:27 PM	

+="CN93179"	"PA SYSTEM UPGRADE"	="Department of Defence"	18-Jun-08	="Audio and visual presentation and composing equipment"	28-May-08	20-Jun-08	14357.20	=""	="SIGHT & SOUND INSTALLATIONS"	18-Jun-08 01:30 PM	

+="CN93188"	"WILEY SELECT TOKENS"	="Department of Defence"	18-Jun-08	="Software"	28-May-08	15-Jun-08	15967.50	=""	="WILEY SUBSCRIPTION SERVICES"	18-Jun-08 01:31 PM	

+="CN93196"	"DAIRY"	="Department of Defence"	18-Jun-08	="Dairy products and eggs"	28-May-08	30-Jul-08	12760.20	=""	="MLK DISTRIBUTORS"	18-Jun-08 01:32 PM	

+="CN93211"	"qty 100 ouput connector modules for use with military radios."	="Defence Materiel Organisation"	18-Jun-08	="Connector assemblies"	18-Jun-08	01-Oct-08	14894.00	="RFQ-C7215"	="BAE Systems Australia Ltd"	18-Jun-08 02:21 PM	

+="CN93214"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Business law services"	02-Apr-08	08-May-08	14298.19	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 02:45 PM	

+="CN93218"	"washing fluid, gas turbine compressor"	="Defence Materiel Organisation"	18-Jun-08	="Cultures and fluids"	16-May-08	30-Jun-08	14732.96	=""	="ECO 2000 PTY LTD"	18-Jun-08 03:02 PM	

+="CN93220"	" ROBES, DRESSING "	="Department of Defence"	18-Jun-08	="Hospital robes"	18-Jun-08	28-Jun-08	13300.00	=""	="HOSPITALITY TEXTILES"	18-Jun-08 03:05 PM	

+="CN93226"	"Provision of Survey Design Services"	="Department of Immigration and Citizenship"	18-Jun-08	="Consumer based research or clinics or focus groups"	27-Feb-08	30-Jun-08	13386.00	=""	="The University of Queensland"	18-Jun-08 03:18 PM	

+="CN93244"	"Purchase of Artwork"	="Department of the Environment Water Heritage and the Arts"	18-Jun-08	="Socio cultural services"	18-Jun-08	18-Jun-08	12500.00	="0708-1907"	="Greenaway Art Gallery"	18-Jun-08 04:43 PM	

+="CN93251"	" SUPPLY OF ULTRASONIC APPARATUS, PHYSICAL THERAPY "	="Defence Materiel Organisation"	18-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Apr-08	30-Jun-08	12045.00	=""	="CHATTANOOGA WHITELEY MEDICAL SUPPLIES"	18-Jun-08 06:37 PM	

+="CN93253"	"Expansion of storage racking capacity"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Jun-08	30-Jun-08	15958.80	=""	="Jackman Builders Pty Ltd"	19-Jun-08 07:52 AM	

+="CN93260"	"Self Service Internet Services, Victoria"	="Centrelink"	19-Jun-08	="Telecommunications media services"	11-Sep-07	30-Jun-08	13200.00	=""	="Telstra"	19-Jun-08 07:53 AM	

+="CN93280"	"Assistance with the tender for Application Development Panel"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	15864.30	="DCON/05/53"	="WALTER TURNBULL"	19-Jun-08 09:09 AM	

+="CN93283"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	14460.72	="ATM08/1051"	="PCA People Pty Ltd"	19-Jun-08 09:09 AM	

+="CN93292-A1"	"LegalNet Licences x 5 (Round 3)"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	01-Nov-07	31-Oct-08	13612.50	="ATM08/890"	="Nsynergy International Pty Ltd"	19-Jun-08 09:11 AM	

+="CN93308"	"Search & Rescue Buoy"	="Defence Materiel Organisation"	19-Jun-08	="Emergency medical services search and rescue kits"	16-Jun-08	16-Jul-08	15840.00	=""	="Kinetic Technology International"	19-Jun-08 11:57 AM	

+="CN93311"	"QTY10 Control assembly P/N 950018-2; MC 99449"	="Defence Materiel Organisation"	19-Jun-08	="Military rotary wing aircraft"	17-Jun-08	04-Nov-08	12574.76	=""	="Airnsea safety pl"	19-Jun-08 01:11 PM	

+="CN93315"	"motor vehicle parts"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	14824.14	=""	="Mercedes Benz Aust"	19-Jun-08 01:20 PM	

+="CN93324"	"BOOK RECORD: OC187 SERVICE POLICE INVESTIGATORS NOTE BOOK, BOOK OF 100 PAGES. QTY 800 BOOKS."	="Defence Materiel Organisation"	19-Jun-08	="Log books or pads"	18-Jun-08	08-Aug-08	12654.40	=""	="ADAMSON PRINTING CO PTY LTD"	19-Jun-08 02:12 PM	

+="CN93365"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	01-Jun-08	15180.00	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93379"	"Engineering services for Terrica Pl, Brisbane, QLD"	="Centrelink"	19-Jun-08	="Professional engineering services"	30-May-08	30-Jun-08	15214.50	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 02:18 PM	

+="CN93381"	"Fitout Manager Services - Tasmania"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Sep-07	30-Jun-08	16000.00	=""	="GHD Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93382"	"Project management services"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-08	15962.29	=""	="GHD Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93387"	"Fraud Investigations"	="Centrelink"	19-Jun-08	="Security surveillance and detection"	12-Jul-07	30-Jun-08	13200.00	=""	="CITEC"	19-Jun-08 02:19 PM	

+="CN93400"	"Office Supplies"	="Centrelink"	19-Jun-08	="Office supplies"	02-Jan-08	30-Jun-08	15400.00	=""	="Rolls Filing Systems"	19-Jun-08 02:21 PM	

+="CN93402"	"Rehabilitation services"	="Centrelink"	19-Jun-08	="Healthcare Services"	29-Nov-07	30-Jun-08	12000.00	=""	="Recovery Partners"	19-Jun-08 02:21 PM	

+="CN93408"	"Office fitout services for Kippa Ring, QLD"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	12500.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93410"	"Fitout services"	="Centrelink"	19-Jun-08	="Professional engineering services"	28-May-08	30-Jun-09	12600.01	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93413"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	27-May-08	30-Jun-08	14000.01	=""	="Art of Service"	19-Jun-08 02:23 PM	

+="CN93414"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	27-May-08	30-Jun-08	14000.01	=""	="Art of Service"	19-Jun-08 02:23 PM	

+="CN93438"	"Healthcare services"	="Centrelink"	19-Jun-08	="Healthcare Services"	20-May-08	30-Jun-08	12000.00	=""	="Ford Health"	19-Jun-08 02:26 PM	

+="CN93467"	"Furniture for Hawkesbury, NSW"	="Centrelink"	19-Jun-08	="Office and desk accessories"	07-May-08	30-Jun-08	12419.00	=""	="Stem Industries Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93469"	"Maintainance of Interpreter Management System"	="Centrelink"	19-Jun-08	="Software"	07-May-08	30-Jun-08	15252.70	=""	="ARI Systems"	19-Jun-08 02:31 PM	

+="CN93471"	"Automatic gate opener and IT room air conditioner"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	30-May-08	15298.80	=""	="BSH Electrical Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93479"	"Relocation of Inter-government Communications Network service"	="Centrelink"	19-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-May-08	30-Sep-08	13750.00	=""	="Department of Finance and Deregulation"	19-Jun-08 02:32 PM	

+="CN93485"	"Steel shelving and filing cabinets"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	09-May-08	18-Jun-08	15420.24	=""	="Brownbuilt Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93486"	"Refurbishment of the Office and Storage area"	="Centrelink"	19-Jun-08	="Storage"	09-May-08	30-Jun-08	13500.30	=""	="ISIS Projects Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93493"	"Furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	04-Feb-08	30-Jun-08	12445.40	="RFTS07/0113"	="Schiavello Systems (NSW) Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93494-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	26-May-08	30-Jun-08	14887.73	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:34 PM	

+="CN93517"	"Supply and install additional reception counter for Centrelink Watergardens"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	29-May-08	01-Aug-08	12172.60	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:37 PM	

+="CN93522"	"Occupational Health and Safety approved chairs"	="Centrelink"	19-Jun-08	="Office and desk accessories"	26-May-08	30-Jun-08	13836.63	=""	="Sturdy Components Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93523"	"External Training"	="Centrelink"	19-Jun-08	="Vocational training"	23-May-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:38 PM	

+="CN93526"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	15235.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93540"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	16-May-08	30-Jun-08	12915.00	=""	="Bedarra Research Labs Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93551"	"CD Portable interview recorder"	="Centrelink"	19-Jun-08	="Components for information technology or broadcasting or telecommunications"	14-May-08	30-Jun-08	14300.00	=""	="TPR Systems"	19-Jun-08 02:42 PM	

+="CN93553"	"Office furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	21-May-08	30-Jun-08	12673.10	=""	="Cafe Culture Australia Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93554"	"Building security access control"	="Centrelink"	19-Jun-08	="National Defence and Public Order and Security and Safety Services"	21-May-08	30-Jun-08	12023.00	=""	="TAC Pacific Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93557-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	20-May-08	30-Jun-08	14300.00	=""	="Drake Australia Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93558"	"Computer Cabling"	="Centrelink"	19-Jun-08	="Computer services"	20-May-08	20-May-08	14630.00	=""	="Anixter Australia Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93563"	"Residential conference for team meeting"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	24-Jul-08	15702.78	=""	="Crowne Plaza Pelican Waters"	19-Jun-08 02:44 PM	

+="CN93564"	"Vocational training"	="Centrelink"	19-Jun-08	="Vocational training"	16-May-08	16-May-08	15100.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:44 PM	

+="CN93567"	"Austrade Indigenous Graphics.  Stage 5:  Templates and Usage Rules"	="Austrade"	19-Jun-08	="Marketing and distribution"	31-Mar-08	30-Apr-08	12870.00	=""	="Keystone Corporate Positioning Pty Ltd"	19-Jun-08 02:48 PM	

+="CN93568"	"Provide administrative assistance for BCA Beijing project as directed"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	14000.00	=""	="Manpower Services (Australia) Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93576"	"Vietnamese Business Networking Breakfast 2008"	="Austrade"	19-Jun-08	="Hotels and lodging and meeting facilities"	14-Mar-08	14-Mar-08	14818.38	=""	="Shangri-La Hotel (Sydney)"	19-Jun-08 02:50 PM	

+="CN93586"	"GALLAY MEDICAL and SCIENTIFIC"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Washers"	20-May-08	20-May-08	12597.20	="DIRECT"	="Gallay Scientific"	19-Jun-08 02:53 PM	

+="CN93588"	"KONICA MINOLTA BUSINESS SOLUTIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Photocopiers"	21-May-08	21-May-09	15737.70	="OPEN"	="Konica Minolta Business Solutions Aust"	19-Jun-08 02:53 PM	

+="CN93589"	"Data and Records Mgt Internal Audit Review"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Accounting and auditing"	22-Apr-08	22-Apr-08	14056.93	=""	="Protiviti Pty Ltd"	19-Jun-08 02:53 PM	

+="CN93592"	"Computer Equipment"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computers"	23-Jul-07	30-Jun-08	12210.00	=""	="DELL COMPUTER P/L"	19-Jun-08 02:53 PM	

+="CN93595"	"Review of ANSTO Submission"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Strategic planning consultation services"	29-Apr-08	29-Apr-08	13673.15	="na"	="UNSW Global Pty.Ltd."	19-Jun-08 02:54 PM	

+="CN93622"	"Procurement of:  FLAG,NATIONAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	04-Aug-08	14140.00	=""	="CHRISTIE'S Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93645"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	16-Jul-08	15880.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93655"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	26-Jan-09	12540.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93657"	"Procurement of:  CHAIN,STUD LINK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	06-Aug-08	15472.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93661"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	19-Jun-08	15444.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93666"	"Procurement of:  CABLE,RADIO FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	06-Feb-09	14236.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93671"	"Procurement of:  SEAL,PLAIN;  RING,WIPER;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	11-Jul-08	12485.00	=""	="PACIFIC AERODYNE Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93680"	"Procurement of:  ;  SCREW,MACHINE;  PARTS KIT,SEAL REPLACEMENT,MECHANICAL;  WRENCH LOCKING,PITCH"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	03-Sep-08	15133.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93701"	"Procurement of:  BEACON,SONAR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	06-Jul-08	15452.40	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93711"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	15300.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:55 PM	

+="CN93720"	"Procurement of:  INDICATING BANJO BOLT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jun-08	14196.00	=""	="A AND D INTERNATIONAL Pty Ltd"	19-Jun-08 03:56 PM	

+="CN93733"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	13953.00	=""	="SONARTECH ATLAS"	19-Jun-08 03:58 PM	

+="CN93746"	"Procurement of:  FILTER,AIR,DIVING APPARATUS"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	22-Aug-08	13040.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:01 PM	

+="CN93749"	"Procurement of:  OIL PUMP ASSEMBLY,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	12-Sep-08	15282.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93751"	"Procurement of:  JUNCTION BOX;  PANEL,POWER DISTRIBUTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	05-Sep-08	15900.70	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:01 PM	

+="CN93754"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	27-Sep-08	12359.40	=""	="THALES AUSTRALIA"	19-Jun-08 04:02 PM	

+="CN90992"	"Additional costs associated with Radcomms 08 conference at Sofitel, Melbourne"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Conference centres"	30-Apr-08	02-May-08	14521.70	=""	="Sofitel Melbourne"	19-Jun-08 04:03 PM	

+="CN93759"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	12191.10	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93762"	"Procurement of:  HOSE,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	13069.80	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93767"	"Procurement of:  MODULE ENTREE,SORTI"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	05-Aug-08	14318.00	=""	="A AND D INTERNATIONAL Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93768"	"Procurement of:  CHAIR,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jul-08	15804.50	=""	="OFFICE ORGANIZATION Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93789"	"Procurement of:  MATTRESS,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	01-Jul-08	14260.00	=""	="SLUMBERCARE BEDDING"	19-Jun-08 04:07 PM	

+="CN90518"	"Translation of consumer information on ACMA website on Rights & Services."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Transcription or translation systems or kits"	30-May-08	01-Jul-08	15924.43	=""	="eTranslate"	19-Jun-08 04:08 PM	

+="CN93809"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Aug-08	13267.76	=""	="THALES AUSTRALIA"	19-Jun-08 04:11 PM	

+="CN93814"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Aug-08	12316.64	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93827-A1"	"Insolvency Administration (Variation)"	="Australian Securities and Investments Commission"	19-Jun-08	="Accounting services"	01-Dec-07	31-Mar-08	12500.00	=""	="Grant Thornton Services"	19-Jun-08 04:34 PM	

+="CN93842"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Mar-08	20-Apr-08	12139.93	=""	="FREEHILLS"	19-Jun-08 05:05 PM	

+="CN93845"	" Pool Vehicle Lease Charges for June 08 "	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Vehicle leasing"	01-Jun-08	30-Jun-08	15800.11	=""	="LEASEPLAN AUSTRALIA LTD"	19-Jun-08 05:10 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val150000to300000.xls
@@ -1,1 +1,150 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91097"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	17-Jun-08	="Printing"	21-May-08	30-Jun-08	154000.00	=""	="Canprint Communications Pty Ltd"	17-Jun-08 09:14 AM	

+="CN91143"	"IT infrastructure architect contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	07-May-08	07-Nov-08	194480.00	=""	="Talent International ACT Pty Ltd"	17-Jun-08 10:07 AM	

+="CN91147"	"Process contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	20-May-08	06-Jun-08	205900.00	=""	="Integral Consulting Services Pty Ltd"	17-Jun-08 10:07 AM	

+="CN91150"	"Production of promotional DVD"	="CrimTrac"	17-Jun-08	="News and publicity services"	26-May-08	22-Aug-08	204303.00	=""	="Cutting Edge"	17-Jun-08 10:08 AM	

+="CN91151"	"SLA Agreements for Lan  Desktop Systems"	="CrimTrac"	17-Jun-08	="Local area network LAN maintenance or support"	26-May-08	30-Apr-09	246738.30	=""	="Infront Systems Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91164-A1"	"Project management services"	="Australian Federal Police"	17-Jun-08	="Project management"	01-Jul-08	30-Jun-09	265179.20	=""	="Paxus Australia Pty Limited"	17-Jun-08 10:42 AM	

+="CN91436-A2"	" Provision of services facilitating and promoting the effective use of AFP geospatial systems and products to AFP personnel "	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	271700.00	=""	="Corporate GIS Consultants Australia Pty. Ltd."	17-Jun-08 11:24 AM	

+="CN91556-A2"	" Provision of services relating to business analysis activities "	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Apr-09	160556.00	=""	="Paxus Australia Pty Limited"	17-Jun-08 11:41 AM	

+="CN91598"	"CP342 HP AIR DISTRIBUTION PANELS"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	01-Nov-08	151929.92	=""	="THALES AUSTRALIA"	17-Jun-08 11:45 AM	

+="CN91600-A1"	"STAGE 4 ENGINEERING SVCS IAW TASK 1089-4 - COMMUNICATIONS SYSTEM - BATTERY CHARGER INSTALLATI"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	24-Feb-11	183368.13	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91613"	"DEHUMIDIFICATION INTERFACE SYSTEMS"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	03-Jun-08	30-Jun-09	175835.00	=""	="MVO AIRCONDITIONING PTY LTD"	17-Jun-08 11:46 AM	

+="CN91629"	"4171AH2-4 ENGINERRING AND ILS SUPPORT - HMAS WARRAMUNGA SRA05"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Aug-08	201504.60	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:47 AM	

+="CN91662"	"Provision of ESP to Provide Training Devices Engineering Support (LEVEL 2)"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	03-Jun-08	30-Jun-09	171620.00	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:49 AM	

+="CN91682"	"HEAVY GRADE REPAIR, ASLAV VEH ARN 16308"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-May-08	30-May-08	204706.72	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:51 AM	

+="CN91696"	"PUMP INTRAVENOUS INFUSION"	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	30-May-08	05-Jun-08	264880.00	=""	="CARDINAL HEALTH AUSTRALIA 316 PTY"	17-Jun-08 11:51 AM	

+="CN91710"	"SURVEY & QUOTE 31 - ADVANCE FUNDING FOR CCP4 ACTIVITIES - C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	259065.00	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:52 AM	

+="CN91716"	"DISCRETE TASK 77 - ADVANCE FUNDING AWR'S W021 AND W037"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	31-Mar-09	203106.96	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:53 AM	

+="CN91722"	"install posmv, cmax and caris hips and sips on smb casuarina"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	29-May-08	10-Jun-08	187195.80	=""	="AIMTEK PTY LTD"	17-Jun-08 11:53 AM	

+="CN91733"	"Tenix - Support Trials (Tapa)"	="Defence Materiel Organisation"	17-Jun-08	="Containers and storage"	30-May-08	30-Jun-08	208375.20	=""	="TENIX SYSTEMS PTY LTD"	17-Jun-08 11:54 AM	

+="CN91738"	"  Re-Engagement of Mr Peter Kalmar as the JCSE Architect/Integration specialist <"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	02-Jun-08	02-Mar-09	281952.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	17-Jun-08 11:54 AM	

+="CN91763"	"Project Management Support"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	30-May-08	28-Oct-08	175038.66	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91767"	"Requirements Engineer"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	30-May-08	30-Dec-08	203620.00	=""	="SYPAQ SYSTEMS PTY LTD"	17-Jun-08 11:56 AM	

+="CN91791"	"Scheduling IPPSR Intergration Support"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	06-Jun-08	05-Jun-09	261500.80	=""	="CROWN MANAGEMENT CONSULTANTS PTY"	17-Jun-08 11:58 AM	

+="CN91808"	"PSP SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-09	168623.00	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	17-Jun-08 11:59 AM	

+="CN91876"	"ESP contract Project Support for CPT ASLAV"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	06-Jun-08	30-Jan-09	153785.45	=""	="SEAL SOLUTIONS PTY LTD"	17-Jun-08 12:04 PM	

+="CN91886"	"PABX Software and Hardware Upgrade"	="Australian Securities and Investments Commission"	17-Jun-08	="Components for information technology or broadcasting or telecommunications"	07-Jan-08	30-Jun-08	278243.57	=""	="3D"	17-Jun-08 12:06 PM	

+="CN91891"	"Raised in accordance with the 1 year extension of 98001833/3636 with General Dynamics for the ASLAV"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	30-Dec-08	204713.70	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:06 PM	

+="CN92043"	"Professional Services to support BLOCK 1 solicitat  JP2060-2B"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	11-Jun-08	12-May-09	201520.00	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	17-Jun-08 12:17 PM	

+="CN92045"	"HUGPH3.1 IM&MC CCP#1 USD Payment"	="Defence Materiel Organisation"	17-Jun-08	="Postmortem and mortuary equipment and supplies"	12-Jun-08	30-Nov-08	187984.25	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:18 PM	

+="CN92068"	"R5 Service for AS350BA Helicopter Tail No. N22-001 (801) and Supporting BDS/ Consumables."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	14-Jun-08	01-Sep-08	174680.00	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:19 PM	

+="CN92080"	"Services as defined in Mulwala Agreement Capabilit Revision 1 dated 15 February 2008 and Thales Aust"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	11-Jun-08	30-Jun-08	200000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:20 PM	

+="CN92082"	"TOB-VET DUCT CLEANING ENVIROAIR"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	13-Jun-08	270622.64	=""	="ENVIROAIR PTY LTD"	17-Jun-08 12:20 PM	

+="CN92058"	"Property charges for May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Property management services"	01-May-08	31-May-08	235899.64	=""	="UNITED GROUP SERVICES PTY LTD"	17-Jun-08 12:23 PM	

+="CN92127"	"escalation adjustment - sml milestone 4"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	14-May-08	28-May-08	261352.30	=""	="L3 COMMUNICATIONS NAUTRONIX LTD"	17-Jun-08 12:24 PM	

+="CN92128"	"GST only component"	="Defence Materiel Organisation"	17-Jun-08	="Fabricated sheet assemblies"	23-Apr-08	15-Nov-16	258913.03	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:25 PM	

+="CN92142"	"Land 58 Ph3 AN/TPQ - 36 WLR LOTE Prime Contract (AUD)"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	21-May-08	30-Dec-08	226974.99	=""	="RAYTHEON AUSTRALIA"	17-Jun-08 12:26 PM	

+="CN92160-A1"	" Long term lease vehicle hire "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	11-Oct-10	165401.91	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92171"	"PROFESSIONAL FEES & DISBURSMENT TO AGS"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	28-May-08	30-Jun-08	159500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	17-Jun-08 12:31 PM	

+="CN92192"	"Value for Money Assessment"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	28-May-08	09-Jun-09	196446.25	=""	="DELOITTE TOUCHE TOHMATSU"	17-Jun-08 12:34 PM	

+="CN92202"	"RENT OF FLOORSPACE AT AIRSHOW"	="Defence Materiel Organisation"	17-Jun-08	="Lease and rental of property or building"	29-May-08	28-Feb-10	222891.84	=""	="SINGAPORE AIRSHOW & EVENTS PTE LTD"	17-Jun-08 12:35 PM	

+="CN92208"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16002"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	209345.39	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:36 PM	

+="CN92209"	"EXTERNAL SERVICE PROVIDER SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	28-May-08	30-Jun-09	220000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:36 PM	

+="CN92239"	"Professional Services"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	27-May-08	30-Jun-09	220000.00	=""	="DSTO"	17-Jun-08 12:40 PM	

+="CN92248"	"Use of Exisitng ASP Contract  - Praxis Alarm and Monitoring system"	="Defence Materiel Organisation"	17-Jun-08	="Engine coolant system"	27-May-08	30-Jun-08	156178.00	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92249"	"Network IPV4/V6 Traffic Generator & Analysis Suite"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	170511.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	17-Jun-08 12:41 PM	

+="CN92252"	"Use of Exisitng ASP Contract  - ASP Mobilisation Cost for EMA 04"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	27-May-08	30-Jun-08	195392.47	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92266"	"Defence Network Support Agency (DNSA)- Chief Infor (CIOG) to facilitate the installation of trnsmiss"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-15	262691.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:43 PM	

+="CN92270"	"ESRI Software"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	04-Jun-08	232672.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	17-Jun-08 12:44 PM	

+="CN92288-A1"	" VENTILATOR PNEUMATIC "	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	21-May-08	04-Jul-08	269547.04	=""	="Draeger Medical Australia Pty Ltd"	17-Jun-08 02:49 PM	

+="CN92327"	"UM OLM PROJECT DSTO - TECH SERV"	="Defence Materiel Organisation"	18-Jun-08	="Military transport aircraft"	16-Jun-08	30-Jun-09	247000.00	=""	="DEPARTMENT OF DEFENCE - DMO INTERAGENCY"	18-Jun-08 10:29 AM	

+="CN92331"	"Property charges for June 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Property management services"	01-Jun-08	30-Jun-08	233641.30	=""	="UNITED GROUP SERVICES PTY LTD"	18-Jun-08 10:51 AM	

+="CN92352"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	02-Jun-08	160567.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	18-Jun-08 11:36 AM	

+="CN92357"	"HQJOC PROJECT-DELL COMPUTER PTY LTD."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	03-Jun-08	30-Jun-08	262812.00	=""	="DELL COMPUTER PTY LTD"	18-Jun-08 11:37 AM	

+="CN92362"	"Capillary Genetic Analyser"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	27-Jun-08	258467.00	=""	="APPLIED BIOSYSTEMS"	18-Jun-08 11:38 AM	

+="CN92369"	"Cabling at HMAS Cerberus to enable connectivity of SATS task DIER 0708-P043"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	188023.00	=""	="STOWE AUSTRALIA PTY LTD"	18-Jun-08 11:39 AM	

+="CN92380"	"DMO BATTERY CHARGING FACILITY 7 CSSB CONSTRUCTION"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-08	265872.35	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 11:40 AM	

+="CN92399"	"LAND REMEDIATION MANAGEMENT"	="Department of Defence"	18-Jun-08	="Roads and landscape"	03-Jun-08	30-Jun-09	271909.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 11:43 AM	

+="CN92402"	"Supply of Bulk LPG to RAAF Base Townsville"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	165000.00	=""	="ORIGIN ENERGY PTY LTD"	18-Jun-08 11:43 AM	

+="CN92404"	"WEED MANAGEMENT"	="Department of Defence"	18-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	03-Jun-08	30-Jun-09	159599.01	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 11:44 AM	

+="CN92425"	"FACOPS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	163232.30	=""	="BTEC COMMUNICATIONS PTY LTD"	18-Jun-08 11:47 AM	

+="CN92436"	"Lynnette Ward is providing services  Ref COG/184/0"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	01-Jun-09	248600.00	=""	="PEOPLEBANK AUSTRALIA LTD"	18-Jun-08 11:48 AM	

+="CN92438"	"CONTACT PAUL MEULENBROEK 08 8935 4622"	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	03-Jun-08	30-Jun-08	180950.00	=""	="GUSHER PTY LTD"	18-Jun-08 11:48 AM	

+="CN92447"	"Peter Morgan is providing services to CIOG ISD NID"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	04-May-09	176000.00	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	18-Jun-08 11:50 AM	

+="CN92450"	"FACOPS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	235959.90	=""	="CHUBB SECURITY AUST PTY LTD"	18-Jun-08 11:50 AM	

+="CN92451"	"Research Agreement  Uni NSW"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	30-May-08	22-May-09	181500.00	=""	="UNI OF NSW - THE CASHIER"	18-Jun-08 11:50 AM	

+="CN92466"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	31-May-09	249549.66	=""	="LOGISTIC SOLUTIONS AUSTRALASIA"	18-Jun-08 11:52 AM	

+="CN92511"	"Duar Socket, dual core AMD x 3655-1TB HDD"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	30-Jun-08	199650.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 11:59 AM	

+="CN92517"	"Site Integration Services for Bandiana Army Base"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	16-Feb-09	223148.07	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 11:59 AM	

+="CN92520"	"DMO BATTERY CHARGING FACILITY 6 RAR CONSTRUCTION"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-08	288469.65	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:00 PM	

+="CN92534"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	185592.00	=""	="ISM GROUP"	18-Jun-08 12:02 PM	

+="CN92544"	"PROP STUDIES - ENVIRONMENTAL - STOCKTON."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-09	199145.10	=""	="SMEC AUSTRALIA"	18-Jun-08 12:04 PM	

+="CN92547"	"Site Integration Services for Holsworthy Army base"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	16-Feb-09	244652.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:05 PM	

+="CN92556"	"Site Integration Services for Puckapunyal"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	16-Feb-09	220782.38	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:06 PM	

+="CN92575"	"MS SQL Server, Diceder Server, Installation of Sto"	="Department of Defence"	18-Jun-08	="Hardware"	05-Jun-08	30-Jun-08	159607.80	=""	="IBM AUSTRALIA LTD"	18-Jun-08 12:09 PM	

+="CN92637"	"Training"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	20-Jun-08	283580.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	18-Jun-08 12:17 PM	

+="CN92655"	"UPS and Generator Set"	="Department of Defence"	18-Jun-08	="Power generation"	05-Jun-08	25-Jun-08	171554.90	=""	="POWERFIRM"	18-Jun-08 12:19 PM	

+="CN92657"	"Audio Visual equipment"	="Department of Defence"	18-Jun-08	="Audio and visual presentation and composing equipment"	06-Jun-08	30-Jun-08	169787.02	=""	="MILLENNIUM AUDIO VISUAL"	18-Jun-08 12:20 PM	

+="CN92714"	"RAAF WLM ZONE PLAN."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	04-Jun-08	30-Jun-09	183626.30	=""	="MAUNSELL AUSTRALIA PTY LTD"	18-Jun-08 12:28 PM	

+="CN92762"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	12-Sep-08	273317.69	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	18-Jun-08 12:34 PM	

+="CN92784"	"ONGOIN COSTS FOR CONSUMABLES, MAINTENANCE AND RENTAL FOR THE FINANCIAL YEAR 2007/2008"	="Department of Defence"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	31-Jul-08	31-Jul-08	151800.00	=""	="RICOH AUSTRALIA PTY LTD"	18-Jun-08 12:37 PM	

+="CN92794"	"Team Lead"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	04-Jun-08	03-Jul-08	216536.32	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	18-Jun-08 12:39 PM	

+="CN92796"	"Contractor"	="Department of Defence"	18-Jun-08	="Personnel recruitment"	04-Jun-08	30-Jun-08	188100.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	18-Jun-08 12:39 PM	

+="CN92812"	"Team Leader"	="Department of Defence"	18-Jun-08	="Professional engineering services"	12-Nov-07	10-Feb-09	179368.36	=""	="MILITARYTECH PTY LTD"	18-Jun-08 12:41 PM	

+="CN92844"	"FACOPS"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	08-Apr-08	30-Jun-09	159758.50	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:45 PM	

+="CN92845"	"Racks & Accessories"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	20-May-08	30-Jun-08	235820.80	=""	="SERVER RACKS AUSTRALIA"	18-Jun-08 12:45 PM	

+="CN92851"	"NQ2194 TFTA FIRE MANAGEMENT 2008 (07/08)"	="Department of Defence"	18-Jun-08	="Environmental management"	10-Jun-08	30-Jun-08	263482.98	=""	="SPOTLESS"	18-Jun-08 12:46 PM	

+="CN92865"	"Maintenance of Range Roads within WPA"	="Department of Defence"	18-Jun-08	="Roads and landscape"	11-Jun-08	30-Jun-08	255824.40	=""	="BAE SYSTEMS AUSTRALIA LTD"	18-Jun-08 12:48 PM	

+="CN92868"	"ABM-TDM SYSTEMS ENGINEER"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	11-Jun-08	31-Dec-08	208447.80	=""	="C-E SOLUTIONS"	18-Jun-08 12:48 PM	

+="CN92876"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	228810.00	=""	="COGENT BUSINESS SOLUTIONS PTY LTD"	18-Jun-08 12:49 PM	

+="CN92898"	"EDUCATION"	="Department of Defence"	18-Jun-08	="Education and Training Services"	12-Jun-08	30-Jun-08	159177.15	=""	="DEAKIN UNI"	18-Jun-08 12:52 PM	

+="CN92939"	"CMC ALLOCATIONS & COMMITMENT -GB&FM ROUTINE MAINTENANCE WORKS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	12-Jun-08	30-Jun-08	199999.98	=""	="ASSET SERVICES"	18-Jun-08 12:58 PM	

+="CN92954"	"COMTRACK Build 2 Project"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-07	30-Dec-07	240625.00	=""	="ACUMEN ALLIANCE"	18-Jun-08 01:00 PM	

+="CN92981"	"SASR CT - Special Training Facilities Maint Western Region"	="Department of Defence"	18-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	12-Jun-08	30-Jun-08	220000.00	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	18-Jun-08 01:03 PM	

+="CN93034"	"WEBREP TRANSITION INTO SERVICE PROJECT - DGINT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	157521.24	=""	="NETWORK APPLIANCE AUSTRALIA PTY LTD"	18-Jun-08 01:11 PM	

+="CN93035"	"Replace Airconditioning Bld 104 H.E.H."	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	28-May-08	30-Jun-08	176407.00	=""	="HADEN ENGINEERING PTY LTD"	18-Jun-08 01:11 PM	

+="CN93044"	"SN02756 -Upgrade of Access Control Systems - Gladstone St Fyshwick"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	174000.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 01:12 PM	

+="CN93057"	"DEVELOP SCENARIOS TO VALIDATE CONTRACT M'MENT PROCESS AND PROCEDURES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	30-Jun-08	190905.00	=""	="DELOITTE"	18-Jun-08 01:14 PM	

+="CN93059"	"WEBREP TRANSITION INTO SERVICE PROJECT REF0607-P05"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	29-May-08	30-Sep-08	230373.00	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	18-Jun-08 01:14 PM	

+="CN93097"	"Defence POC: C.Vagi  02 6127 7300"	="Department of Defence"	18-Jun-08	="Office supplies"	27-May-08	31-Dec-08	176166.10	=""	="UNI OF NSW"	18-Jun-08 01:19 PM	

+="CN93129"	"Feasibility Study into design, engineering and ope rational aspects of Torpedo self defence system"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	26-May-08	30-Jul-08	184272.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Jun-08 01:23 PM	

+="CN93141"	"PURCHASE OF 1000 NOKIA 3110 HANDSETS & ACCESSORY PACKS AT $172.18 ex GST per handset"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	27-May-08	30-Jun-08	189398.00	=""	="CRAZY JOHNS"	18-Jun-08 01:25 PM	

+="CN93159"	"4330 Bld 52 Upgrade Security Human In Loop Simulat"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	28-May-08	31-Aug-08	242000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	18-Jun-08 01:27 PM	

+="CN93231"	"Renewal of software for business intelligence requirement"	="Department of Human Services"	18-Jun-08	="Software"	11-Jun-08	01-Jul-09	226568.10	=""	="MapInfo Australia Pty lTd"	18-Jun-08 03:40 PM	

+="CN93232"	"Fitout construction for levels 8, 10 and 11 Terrica Place, 140 Creek Street,  Brisbane, Queensland."	="Centrelink"	18-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jul-08	30-Sep-08	242858.00	=""	="Signature Projects Pty Ltd"	18-Jun-08 03:41 PM	

+="CN93239"	"Project Development"	="Australian Centre for International Agricultural Research"	18-Jun-08	="Agricultural research services"	01-May-08	31-Mar-10	163900.00	=""	="James Cook University"	18-Jun-08 04:13 PM	

+="CN93243"	"06.325-17 Lage Scale Recruitment - APS4-6 Compliance Recruitment Program 2008/09"	="Australian Taxation Office"	18-Jun-08	="Recruitment services"	15-May-08	30-Sep-08	204000.00	=""	="Australian Public Service Commission"	18-Jun-08 04:38 PM	

+="CN93267"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	10-Jun-08	11-Jun-08	180180.00	=""	="Compas Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93269"	"Oracle License and service contract renewal"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	22-Feb-08	21-Feb-09	193861.88	="ATM08/1043"	="Oracle Corporation"	19-Jun-08 09:07 AM	

+="CN93290"	"Contribution towards APT's Workshop on trade in Telecoms, ASTAP-14 & WTSA-2008 prep meeting"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	20-Jun-08	205800.81	="ATM08/1071"	="ASIA PACIFIC TELECOMMUNITY"	19-Jun-08 09:10 AM	

+="CN93296-A1"	"Public Relations officer for 2008 National E-Security Awareness Week"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	212569.97	="DCON/08/29"	="The Quay Connection"	19-Jun-08 09:11 AM	

+="CN93320"	"camelbacks"	="Defence Materiel Organisation"	19-Jun-08	="Drink coolers"	13-Jun-08	30-Oct-08	258060.00	=""	="Hydration Systems Australia"	19-Jun-08 01:39 PM	

+="CN93352"	"Office Fitout of Hervey Bay, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-May-08	30-Jun-08	261877.00	=""	="Signature Projects Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93364-A3"	"Enhancement and maintainance of Interpreter Management System."	="Centrelink"	19-Jun-08	="Software"	01-Mar-08	30-Jun-11	248064.00	=""	="FlowConnect Pty Limited"	19-Jun-08 02:16 PM	

+="CN93373-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:17 PM	

+="CN93374-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93376-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:18 PM	

+="CN93385"	"Internet services"	="Centrelink"	19-Jun-08	="Information services"	05-Sep-07	30-Jun-08	165000.00	=""	="Telstra"	19-Jun-08 02:19 PM	

+="CN93392"	"Audit and review"	="Centrelink"	19-Jun-08	="Accounting and auditing"	02-May-08	30-Jun-08	151800.00	=""	="PricewaterhouseCoopers"	19-Jun-08 02:20 PM	

+="CN93417"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	23-May-08	30-Jun-08	250571.20	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93442-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	181500.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93446-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	214500.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:28 PM	

+="CN93451-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	22-May-08	30-Jun-08	165000.00	="RFT07/0021"	="Kelly Services (Australia) Ltd"	19-Jun-08 02:28 PM	

+="CN93454"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-May-08	30-Jun-08	244050.40	=""	="Pirotta Services Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93457-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	214500.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93468"	"Fitout Construction"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	02-Jun-08	287706.10	=""	="Cordwell Lane Building Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93483"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	165000.00	=""	="Novell Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93484"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	165000.00	=""	="Novell Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93487"	"Construction fitout, Werribee, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	09-May-08	29-Aug-08	176171.82	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:33 PM	

+="CN93497"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Human resources services"	17-Mar-07	30-Jun-08	158149.13	=""	="CSC Australia Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93510"	"Office Fitout at Curtin University, Bentley, WA"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-08	17-May-08	169708.00	=""	="Topline Partitions and Interiors Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93511"	"Office Fitout, Frankston, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-08	29-May-08	208087.00	=""	="Bronts Commercial Interiors Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93537"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	30-May-08	28-May-09	286910.23	=""	="Schiavello SA Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93545"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	17-May-08	223423.20	=""	="Ekonsulting Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93556"	"Workstations and screens"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	20-May-08	17-Jun-08	164332.30	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:43 PM	

+="CN93561"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	19-May-08	23-Jun-08	238150.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93602"	"Partnership to develop  a Language other than English  learning resource on human rights/discrimination for young students attending Community Language Schools."	="Australian Human Rights Commission"	19-Jun-08	="Resources for learning to speak English"	25-Feb-08	31-Mar-09	167200.00	=""	="Australian Federation of Ethnic Schools"	19-Jun-08 03:15 PM	

+="CN93652"	"Procurement of:  PUMP,ROTARY;  GEAR,SPUR;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	04-Jul-08	186563.64	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN93699"	"Procurement of:  MODUL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	16-Sep-09	188814.86	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93714"	"Procurement of:  CART,AVIATION GAS SUPPORT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	10-Aug-08	249890.00	=""	="MONZ Ltd"	19-Jun-08 03:55 PM	

+="CN93715"	"Procurement of:  DAMPENER,VIBRATION,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	17-Dec-08	150211.44	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:55 PM	

+="CN93718"	"Procurement of:  DETECTOR,LIGHT INTENSITY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	31-Aug-08	220697.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:56 PM	

+="CN93721"	"Procurement of:  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	31-Jul-08	210951.10	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:56 PM	

+="CN93723"	"Procurement of:  ACCUMULATOR,PNEUMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	20-Nov-08	232803.12	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93729"	"Procurement of:  BATHYTHERMOGRAPH;  PROBE, BATHYTHERMOGRAPH"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Nov-08	298471.44	=""	="THALES UNDERWATER SYSTEMS Pty Ltd"	19-Jun-08 03:58 PM	

+="CN91090"	"ACMA Server Co-Location Services"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Internet or intranet server application development services"	24-Mar-08	23-Mar-11	150000.00	="07/ACMA047"	="Frontline Hyperlink Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93774"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,LIFT-CHECK;  VALVE,STOP-CHECK; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	25-Feb-09	182992.84	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93776"	"Procurement of:  BLOCK SET,ENGINE DR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	06-Sep-08	182997.96	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 04:05 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val16000to20000.xls
@@ -1,1 +1,225 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91086"	" POLARIS BIKE PARTS "	="Department of Defence"	17-Jun-08	="Motorcycles"	16-Jun-08	07-Jul-08	19958.40	=""	="POLARIS SALES AUSTRALIA"	17-Jun-08 08:09 AM	

+="CN91098"	"Supply of electric lamps and associated equipment Contract (JH01043 )"	="Department of Parliamentary Services"	17-Jun-08	="Lamps"	22-May-08	06-Jun-08	16106.64	=""	="Specialised Lamp Supplies"	17-Jun-08 09:14 AM	

+="CN91102"	"Supply of barcode scanners"	="Department of Parliamentary Services"	17-Jun-08	="Magnetic stripe readers and encoders"	27-May-08	30-Jun-08	17696.80	=""	="POSmarket.com.au"	17-Jun-08 09:15 AM	

+="CN91109"	"Supply of office equipment"	="Department of Parliamentary Services"	17-Jun-08	="Fridge bar"	05-Jun-08	30-Jun-08	17242.73	=""	="Harvey Norman Appliances"	17-Jun-08 09:16 AM	

+="CN91117"	"Maintenance for Dragon Naturally Speaking Software"	="Department of Parliamentary Services"	17-Jun-08	="Software maintenance and support"	14-May-08	30-Jun-08	18270.00	=""	="Voice Perfect Systems"	17-Jun-08 09:17 AM	

+="CN91132"	"Legal services - counsel's fees"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	24-Aug-07	30-Jun-08	20000.00	=""	="Woodward, Edward"	17-Jun-08 09:27 AM	

+="CN91144"	"Programme Management training"	="CrimTrac"	17-Jun-08	="Labour training or development"	12-May-08	11-Jun-08	17160.00	=""	="Tanner James Managment Consultants"	17-Jun-08 10:07 AM	

+="CN91162-A1"	"08/2739 - Risk Management Consultant - 1599-1955 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	11-Apr-08	15-Jun-08	18555.61	=""	="RSM Bird Cameron"	17-Jun-08 10:39 AM	

+="CN91367-A1"	"08/2817 - Consultancy Service - 1599-1944 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-May-08	31-Jul-08	19800.00	="08/2817"	="Oakton AA Services Pty Ltd"	17-Jun-08 11:15 AM	

+="CN91614"	"Mods for client  Workplace - Wheelchair"	="CRS Australia"	17-Jun-08	="Wheelchairs"	20-May-08	30-May-08	19000.00	=""	="MOBILITY INNOVATIONS"	17-Jun-08 11:46 AM	

+="CN91620"	"Create TMS for the Provision of Docking and Slipp- ing activity Report"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	31-Jul-08	16845.61	=""	="THALES AUSTRALIA"	17-Jun-08 11:46 AM	

+="CN91622"	"Panasonic Whiteboards"	="Defence Materiel Organisation"	17-Jun-08	="Office machines and their supplies and accessories"	03-Jun-08	20-Jun-08	16222.80	=""	="CORPORATE EXPRESS AUST LTD"	17-Jun-08 11:46 AM	

+="CN91644"	"TAP-3 Disposal - Phase 4 Continuation Work of Previous Phases"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	25-Jun-08	17395.58	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:48 AM	

+="CN91648"	"Dual SW/tail"	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	04-Jun-08	02-Oct-08	17830.38	=""	="LASER PRODUCTS"	17-Jun-08 11:48 AM	

+="CN91650"	"Kidde Aerospace  &  Defence Quotation Ref: KAD"	="Defence Materiel Organisation"	17-Jun-08	="Fire fighting equipment"	10-Jun-08	01-Jul-08	19697.48	=""	="KIDDE AEROSPACE & DEFENCE"	17-Jun-08 11:48 AM	

+="CN91664"	"4517.09 CONDUCT SHIP BREAKAGE READINGS ONBOARD HMAS ARUNTA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	27-Jun-08	16885.00	=""	="FUGRO SPATIAL SOLUTIONS"	17-Jun-08 11:49 AM	

+="CN91688"	"FOR REPAIRABLE ITEM BDS SUPPLY AND RETURN OF PRIOR"	="Defence Materiel Organisation"	17-Jun-08	="Transportation components and systems"	30-May-08	30-Jun-09	20000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:51 AM	

+="CN91692"	"BACHSHELLS"	="Defence Materiel Organisation"	17-Jun-08	="Electrical components"	30-May-08	20-Jun-08	18175.08	=""	="CAMBRIDGE TECHNOLOGIES"	17-Jun-08 11:51 AM	

+="CN91724"	"This purchase order is raised under authority Millar to upgrade the outdated Vesda System locate"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	29-May-08	20-Jun-08	17075.30	=""	="SPOTLESS SERVICES LTD"	17-Jun-08 11:53 AM	

+="CN91832"	"NDT PHASED ARRAY TRANSDUCERS PURCHASED FROM OLYMPUS - C338529 - HUGPH3.2 - SRP2"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Jun-10	19166.40	=""	="OLYMPUS AUST PTY LTD"	17-Jun-08 12:01 PM	

+="CN91838"	"Executive Coaching"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	06-Jun-08	30-Dec-08	17380.00	=""	="MELBOURNE BUSINESS SCHOOL"	17-Jun-08 12:01 PM	

+="CN91842"	"Inspect/ Operationally Test HMAS Sydney Oily Water Seperator, and Oil Content Meter, Recert meter."	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	31-Jul-08	18854.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	17-Jun-08 12:02 PM	

+="CN91864"	"Software downloads and licenses"	="Defence Materiel Organisation"	17-Jun-08	="Software"	06-Jun-08	20-Jun-08	16822.28	=""	="HARRIS TECHNOLOGY PTY LTD"	17-Jun-08 12:03 PM	

+="CN91868"	"RANRAU Travel"	="Defence Materiel Organisation"	17-Jun-08	="Missiles"	06-Jun-08	30-Oct-08	19603.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:04 PM	

+="CN91912"	"Tube Assy HUG"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	05-Jun-08	16-Dec-08	19693.25	=""	="LCF SYSTEMS INC"	17-Jun-08 12:07 PM	

+="CN91943"	"WTR Crane and forklift hire activity"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Jun-08	30-Jun-08	19370.90	=""	="WELMEC"	17-Jun-08 12:09 PM	

+="CN91947"	"CONSULTANCY SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-09	19250.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:10 PM	

+="CN91951"	"Purchase 155 copies of CCH 2008 Australian Superannuation Legislation for ASIC staff nationally"	="Australian Securities and Investments Commission"	17-Jun-08	="Printed publications"	04-Jan-08	10-Mar-08	17786.25	=""	="CCH Australia Ltd"	17-Jun-08 12:10 PM	

+="CN91970"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	05-Jun-08	30-Jun-08	16274.45	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:11 PM	

+="CN91984"	"Provision of courses for tEODor"	="Defence Materiel Organisation"	17-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Jun-08	04-Jul-08	19735.38	=""	="XTEK LTD"	17-Jun-08 12:13 PM	

+="CN91996"	"JLG 45 FOOT ELECTRIC BOOM LIFT"	="Defence Materiel Organisation"	17-Jun-08	="Hydraulic machinery and equipment"	29-May-08	15-Jul-08	16962.00	=""	="JLG INDUSTRIES"	17-Jun-08 12:14 PM	

+="CN92000"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92002"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92004"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16870.92	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:14 PM	

+="CN92006"	"Waveguide Switch"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	19-Dec-07	15-Sep-08	16941.57	=""	="THALES UK LTD, THALES AEROSPACE"	17-Jun-08 12:15 PM	

+="CN92010"	"SURVEY SHIPS 8 METRE BROW HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	16-Jan-08	08-Feb-08	17199.13	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:15 PM	

+="CN92074"	"Use of Exisitng ASP Contract  - Service Yo Yo Davit"	="Defence Materiel Organisation"	17-Jun-08	="Hydraulic systems and components"	12-May-08	30-Jun-08	19152.72	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:20 PM	

+="CN92078-A1"	" 4548 REPAIR OF INFRA RED CAMERAS ADDITIONAL "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	16-Apr-08	17-Nov-10	16579.24	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 12:20 PM	

+="CN92109"	"DIESEL, UNLEADED PETROL AND LUBRICANT"	="Defence Materiel Organisation"	17-Jun-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	18-Apr-08	04-Jun-08	16945.62	=""	="INTEROIL PRODUCTS LTD"	17-Jun-08 12:22 PM	

+="CN92114"	"Breathing air analysis"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Jun-08	30-Jun-08	18700.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:23 PM	

+="CN92129"	"GST only component"	="Defence Materiel Organisation"	17-Jun-08	="Fabricated sheet assemblies"	21-May-08	15-Nov-16	19913.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:25 PM	

+="CN92144"	"Freight"	="Defence Materiel Organisation"	17-Jun-08	="Mail and cargo transport"	12-Nov-07	30-Jun-09	16500.00	=""	="TNT EXPRESS"	17-Jun-08 12:27 PM	

+="CN92162"	"TNT EXPRESS - FREIGHT"	="Defence Materiel Organisation"	17-Jun-08	="Product and material transport vehicles"	12-Nov-07	30-Jun-09	16500.00	=""	="TNT AUSTRALIA PTY LTD"	17-Jun-08 12:30 PM	

+="CN92175"	"BROCADE SWITCHES"	="Defence Materiel Organisation"	17-Jun-08	="Electronic hardware and component parts and accessories"	28-May-08	20-Jun-08	18288.60	=""	="CORPORATE EXPRESS AUSTRALIA PTY LTD"	17-Jun-08 12:31 PM	

+="CN92190"	"DARWIN RADAR UPS POWER CONDITION MONITORING"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	28-May-08	30-Jun-08	19853.24	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92211"	"Desks and Partitions for BLD 631"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	17694.00	=""	="NOM OFFICE SOLUTIONS"	17-Jun-08 12:36 PM	

+="CN92235"	"Training"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	21-May-08	30-Jun-08	19544.80	=""	="DEFENCE MARITIME SERVICES PTY"	17-Jun-08 12:39 PM	

+="CN92242"	"SOFTWARE LICENCE FEE & TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	27-May-08	25-Jun-08	16461.50	=""	="EVALUA PTY LTD"	17-Jun-08 12:40 PM	

+="CN92251"	"Use of Exisitng ASP Contract  - Slew Arm Davit"	="Defence Materiel Organisation"	17-Jun-08	="Launch vehicles and rockets"	27-May-08	30-Jun-08	16064.90	=""	="ASP SHIP MANAGEMENT PTY LTD"	17-Jun-08 12:41 PM	

+="CN92259"	"Dimension software licence renewal"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	28-Jun-09	17140.20	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:42 PM	

+="CN92275"	"10 ACER Veriton 5900 DEEWR Model Computers & 10 AL 1923R 19' LCD Monitors."	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Computers"	26-Feb-08	27-Mar-08	19690.00	=""	="DATAFLEX PTY LTD"	17-Jun-08 01:06 PM	

+="CN92289"	"Pool Vehicle Lease Charges May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Vehicle leasing"	01-May-08	31-May-08	16240.60	=""	="LEASEPLAN AUSTRALIA LTD"	17-Jun-08 02:57 PM	

+="CN92291"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Feb-08	29-Feb-08	17351.07	=""	="MINTER ELLISON"	17-Jun-08 03:10 PM	

+="CN92293"	"Advertising"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Advertising"	08-Feb-08	09-Feb-08	16237.19	=""	="HMA BLAZE PTY LTD"	17-Jun-08 03:54 PM	

+="CN92298"	"Fixed Assets Valuation - Plant and Equipment as at 30 April 2008"	="Australian Securities and Investments Commission"	17-Jun-08	="Financial and Insurance Services"	14-May-08	16-May-08	16500.00	=""	="Australian Valuation Office"	17-Jun-08 03:56 PM	

+="CN92300"	"People Management Offsite Training Course"	="Australian Securities and Investments Commission"	17-Jun-08	="Vocational training"	21-Feb-08	06-Mar-08	16500.00	=""	="Screendreams Entertainment"	17-Jun-08 04:16 PM	

+="CN92348"	"Imation LTO-4 tapes & LTO-4 barcode labels"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	02-Jun-08	30-Jun-08	18810.00	=""	="STUTCH DATA SERVICES PTY LTD"	18-Jun-08 11:36 AM	

+="CN92359"	"HP COLOR LASERJET PRINTERS  & 3 YEARS WARRANTY"	="Department of Defence"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Jun-08	17-Jun-08	17596.92	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 11:37 AM	

+="CN92374"	"Software Support"	="Department of Defence"	18-Jun-08	="Software"	02-Jun-08	30-Jun-08	17503.12	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	18-Jun-08 11:40 AM	

+="CN92379"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	18701.76	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 11:40 AM	

+="CN92382"	"Attainment Proficiencies in Cert IV for Training <"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	02-Jun-08	30-Jun-08	16000.00	=""	="CIDARA PTY LTD"	18-Jun-08 11:41 AM	

+="CN92398"	"681911 (NT1045) Robertson Barracks DTC Redesign of original driver training designs"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	18477.59	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Jun-08 11:43 AM	

+="CN92403"	"Please Note: All invoices relating to this Purchas directed only to the address cited Purchase Order"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	03-Jun-08	03-Jun-08	16323.00	=""	="IIT TRAINING PTY LTD"	18-Jun-08 11:44 AM	

+="CN92421"	"HOTEL ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	03-Jun-08	15-Jun-08	18856.00	=""	="THE SEBEL RESORT & SPA HAWKESBURY"	18-Jun-08 11:46 AM	

+="CN92430"	"CONCRETE"	="Department of Defence"	18-Jun-08	="Concrete and cement and plaster"	03-Jun-08	03-Jun-08	17804.60	=""	="BORAL CONCRETE"	18-Jun-08 11:47 AM	

+="CN92453"	"RELOCATE AND EXPAND KEYSAFES FOR LAVARACK BKS, JEZZINE BKS , ROSS ISLAND BKS AND RAAF TVL"	="Department of Defence"	18-Jun-08	="Vehicle safety and security systems and components"	30-May-08	30-Jun-08	17497.66	=""	="RUSWIN LOCKSMITHS & SECURITY"	18-Jun-08 11:51 AM	

+="CN92456"	"LCD MONITORS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	14-Jun-08	18073.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 11:51 AM	

+="CN92457"	"VEHICLE LEASE CHARGES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	30-May-08	01-Jun-08	18239.33	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 11:51 AM	

+="CN92460"	"FAIRBAIRN - MAJURA LEASES - BLOCK 102/146 (AREA H)"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-08	16775.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 11:52 AM	

+="CN92464"	"COMPANY TO UNINSTALL AND INSTALL DRN AND POWER CAB SERVICES AREA FOR 32 WORKSTATIONS IN BLD 163 AS P"	="Department of Defence"	18-Jun-08	="Software"	30-May-08	20-Jun-08	16880.17	=""	="ADVANCED COMMUNICATIONS"	18-Jun-08 11:52 AM	

+="CN92470"	"PURCHASE OF PRINTERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	16-Jun-08	16896.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	18-Jun-08 11:53 AM	

+="CN92474"	"Desktop Computers"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	16-Jun-08	19616.30	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	18-Jun-08 11:54 AM	

+="CN92479"	"ENERGY CONSERVATION MEASURES - AIR CONDITIONING RAAF AMBERELY"	="Department of Defence"	18-Jun-08	="Environmental control systems"	30-May-08	30-Jun-08	16009.18	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 11:54 AM	

+="CN92499"	"RV0668 RGN OH&S RECTIFICATION WORKS KMA CLOTHING STORE"	="Department of Defence"	18-Jun-08	="Project management"	30-May-08	30-Jun-08	18700.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	18-Jun-08 11:57 AM	

+="CN92500"	"MONTHLY VEHICLE LEASE"	="Department of Defence"	18-Jun-08	="Motor vehicles"	30-May-08	30-May-08	17903.09	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 11:57 AM	

+="CN92507"	"PSP SERVICES"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Sep-08	18017.56	=""	="INQUIRION PTY LTD"	18-Jun-08 11:58 AM	

+="CN92518"	"CCVP E-Learning Suite"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	02-Jun-08	30-Jun-08	16500.00	=""	="ECERTIT.COM PTY LTD"	18-Jun-08 11:59 AM	

+="CN92522"	"ITEMS REQUIRED FOR BRF INSTAL"	="Department of Defence"	18-Jun-08	="Tools and General Machinery"	02-Jun-08	09-Jun-08	18627.57	=""	="REXEL AUSTRALIA"	18-Jun-08 12:00 PM	

+="CN92535"	"Upgrade of Storage Capacity."	="Department of Defence"	18-Jun-08	="Software"	30-May-08	30-Jun-08	18810.00	=""	="STUTCH DATA SERVICES PTY LTD"	18-Jun-08 12:02 PM	

+="CN92540"	"TECHNICAL RISK MANAGEMENT BOOKLET"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	19470.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	18-Jun-08 12:03 PM	

+="CN92558"	"Delegation Training for TCEs including Travel"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	30-May-08	30-Jun-08	19043.20	=""	="MAJOR TRAINING SERVICES"	18-Jun-08 12:06 PM	

+="CN92578"	"ROAD CHTR MOVT OF 10FSB EQUIP AACAP"	="Department of Defence"	18-Jun-08	="Product and material transport vehicles"	05-Jun-08	30-Jun-08	17606.00	=""	="NORTHLINE PTY LTD"	18-Jun-08 12:09 PM	

+="CN92573"	"TIMBER"	="Department of Defence"	18-Jun-08	="Soft timber"	12-Jun-08	14-Jul-08	16834.40	=""	="P J C DISTRIBUTORS"	18-Jun-08 12:11 PM	

+="CN92596"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	16500.00	=""	="WORKSTREAMS"	18-Jun-08 12:11 PM	

+="CN92620"	"EDUCATION SERVICES"	="Department of Defence"	18-Jun-08	="Education and Training Services"	06-Jun-08	06-Jun-08	18661.17	=""	="ST JOSEPH'S CATHOLIC PRIMARY"	18-Jun-08 12:14 PM	

+="CN92642"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Jan-09	16500.00	=""	="BENDIGO ACCESS EMPLOYMENT"	18-Jun-08 12:17 PM	

+="CN92645"	"SNORKEL S1930 ELECTRIC SCISSOR LIFT"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	05-Jun-08	23-Jun-08	17380.00	=""	="SNORKEL ELEVATING WORK PLATFORMS"	18-Jun-08 12:18 PM	

+="CN92660"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	27-Jun-08	19400.56	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:20 PM	

+="CN92659"	" APCM 06.030-1327 Printing of NAT72216-06.2008 A4 Factsheets  APCM 06.030-1326 Printing of NAT72215-06.2008 A4 Factsheets "	="Australian Taxation Office"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-Jun-08	30-Jun-08	17314.00	=""	="Canprint Communications"	18-Jun-08 12:21 PM	

+="CN92681"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	17127.06	=""	="DRIVER PRIMARY SCHOOL"	18-Jun-08 12:23 PM	

+="CN92689"	"TRANSITION AIDE"	="Department of Defence"	18-Jun-08	="Education and Training Services"	04-Jun-08	04-Jun-08	17127.06	=""	="STUART PARK PRIMARY SCHOOL"	18-Jun-08 12:24 PM	

+="CN92691"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	17127.06	=""	="LUDMILLA PRIMARY SCHOOL"	18-Jun-08 12:24 PM	

+="CN92699"	"ANNUAL CAMP REIMBURSEMENT SCHOOL BASED CADETS"	="Department of Defence"	18-Jun-08	="Fishing and hunting equipment"	04-Jun-08	04-Jun-08	19580.00	=""	="WAVERLEY COLLEGE"	18-Jun-08 12:25 PM	

+="CN92700"	"DELL notebooks"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	20-Jun-08	16292.10	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 12:26 PM	

+="CN92704"	"REFUSE TIP FEES FOR TOWNSVILLE SOUTH"	="Department of Defence"	18-Jun-08	="Refuse disposal and treatment"	03-Jun-08	30-Jun-09	18700.00	=""	="TOWNSVILLE CITY COUNCIL"	18-Jun-08 12:26 PM	

+="CN92705"	"Data Communications Security Seals"	="Department of Defence"	18-Jun-08	="Locks and security hardware and accessories"	03-Jun-08	10-Jun-08	18249.00	=""	="HARCOR SECURITY SEALS PTY LTD"	18-Jun-08 12:26 PM	

+="CN92729"	"FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	05-Jun-08	30-Jun-08	16489.00	=""	="NICE INTERIORS"	18-Jun-08 12:30 PM	

+="CN92735"	"Repainting Aircraft / Decals"	="Department of Defence"	18-Jun-08	="Paints and primers and finishes"	04-Jun-08	18-Jun-08	17300.00	=""	="MILITARY SUPPORT SERVICES PTY LTD"	18-Jun-08 12:31 PM	

+="CN92738"	"20 X ZIP HYDROBOIL UNITS"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	05-Jun-08	30-Jun-08	16617.26	=""	="ZIP HEATERS (AUST) PTY LTD"	18-Jun-08 12:31 PM	

+="CN92740"	"20 X ZIP CHILL MASTER FILTERED UNITS"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	05-Jun-08	30-Jun-08	19483.20	=""	="ZIP HEATERS (AUST) PTY LTD"	18-Jun-08 12:31 PM	

+="CN92759"	"SUPPLY AND FIT OF SOFTWARE TO BENDING AND FLARING"	="Department of Defence"	18-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	29-Jun-08	16500.00	=""	="DELAHENTY MACHINERY PTY LTD"	18-Jun-08 12:34 PM	

+="CN92763"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	17127.06	=""	="LARRAKEYAH PRIMARY SCHOOL"	18-Jun-08 12:35 PM	

+="CN92766"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	16683.76	=""	="ST CHRISTOPHER'S PRIMARY SCHOOL"	18-Jun-08 12:35 PM	

+="CN92768"	"Flight Safety International King Air 350 Sim Trg"	="Department of Defence"	18-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	19001.33	=""	="FLIGHTSAFETY INTERNATIONAL INC."	18-Jun-08 12:35 PM	

+="CN92774"	"Administrative Services"	="Department of Defence"	18-Jun-08	="Management support services"	04-Jun-08	30-Jun-08	19979.30	=""	="PROVIDENCE CONSULTING GROUP PL"	18-Jun-08 12:36 PM	

+="CN92778"	"R&D CONTRACT"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	12-Jun-08	15-Jun-08	16500.00	=""	="CONSUNET PTY LTD"	18-Jun-08 12:36 PM	

+="CN92805"	"LEASE OF MOTOR VEHICLE"	="Department of Defence"	18-Jun-08	="Motor vehicles"	12-Nov-07	30-Jun-09	17810.00	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 12:40 PM	

+="CN92836"	"OFFICE LIGHTING UPGRADE - ENOGGERA"	="Department of Defence"	18-Jun-08	="Lighting and fixtures and accessories"	08-May-08	30-Jun-08	17025.80	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:44 PM	

+="CN92843"	"TEMPORARY EMPLOYEE 3MAR-30MAY08"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	18599.90	=""	="CAREERS MULTILIST LIMITED"	18-Jun-08 12:45 PM	

+="CN92855"	"FIELD RATIONS - ION 17864 FRESH RATIONS"	="Department of Defence"	18-Jun-08	="Food and Beverage Products"	06-May-08	19-Jun-08	16052.25	=""	="THE FRESH NETWORK - DARWIN"	18-Jun-08 12:47 PM	

+="CN92857"	"HQJOC PROJECT- THALES - CISCO EQUIPTMENT FOR DIONE"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-08	19532.23	=""	="THALES AUSTRALIA"	18-Jun-08 12:47 PM	

+="CN92861"	"CONTACT MATT FAULKNER 08 8935 2705"	="Department of Defence"	18-Jun-08	="Environmental control systems"	03-Jun-08	30-Jun-08	17930.00	=""	="ASSET SERVICES"	18-Jun-08 12:48 PM	

+="CN92877"	"groceries"	="Department of Defence"	18-Jun-08	="Prepared side dishes"	31-May-08	31-May-08	19592.98	=""	="GAROZZOS AGENCIES PTY LTD"	18-Jun-08 12:50 PM	

+="CN92878"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	16481.62	=""	="ACUMEN ALLIANCE"	18-Jun-08 12:50 PM	

+="CN92881"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	17-Mar-08	30-Jun-09	17727.00	=""	="MINTER ELLISON"	18-Jun-08 12:50 PM	

+="CN92885"	"HMAS Diamantina port visit Newcastle 24-28Apr08"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	04-Jun-08	17160.01	=""	="PDL TOLL"	18-Jun-08 12:51 PM	

+="CN92889"	"direct invoice payment"	="Department of Defence"	18-Jun-08	="Paints and primers and finishes"	03-Jun-08	03-Jun-08	16500.00	=""	="E & A PAINTING SERVICES PTY LIMITED"	18-Jun-08 12:51 PM	

+="CN92892"	"ADMIN SERVICES IRAQ MAY08"	="Department of Defence"	18-Jun-08	="Industrial Cleaning Services"	28-May-08	01-Jun-08	16738.08	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:52 PM	

+="CN92894"	"MINOR EXPENSES FOR ELECTRICAL WORKSHOP - KAF"	="Department of Defence"	18-Jun-08	="Electrical components"	26-May-08	01-Jun-08	17629.37	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:52 PM	

+="CN92904"	"Helicopter hire for SWBTA"	="Department of Defence"	18-Jun-08	="Environmental Services"	29-May-08	29-May-08	19128.45	=""	="REID HELIWORK"	18-Jun-08 12:53 PM	

+="CN92919"	"Payment of invoice for Harman Temp Accommodation"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	25-Apr-08	30-Jun-08	19098.18	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:55 PM	

+="CN92924"	"PURCHASE OF EXERCISE MACHINE"	="Department of Defence"	18-Jun-08	="Fitness equipment"	28-Apr-08	01-Jun-08	17378.23	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92928"	"LEASE OF VEHICLES HQJTF633"	="Department of Defence"	18-Jun-08	="Motor vehicles"	28-May-08	31-May-08	17951.59	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92930"	"Surge Training - July 2007 - op ANODE"	="Department of Defence"	18-Jun-08	="Medical training and education supplies"	27-Mar-08	27-Mar-08	16547.00	=""	="CAREFLIGHT QUEENSLAND"	18-Jun-08 12:57 PM	

+="CN92936"	"CHP"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	13-Jun-08	30-Jul-08	20000.00	=""	="MALCZEWSKI FAMILY TRUST"	18-Jun-08 12:57 PM	

+="CN92946"	"PAYMENT VEHICLE FOR FILING & MAINTENANCE OF PATENT APPLICATIONS"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jun-08	30-Jun-08	17600.00	=""	="MADDERNS"	18-Jun-08 12:59 PM	

+="CN92953"	"Supply of fresh rations"	="Department of Defence"	18-Jun-08	="Food and Beverage Products"	27-Jun-08	30-Jun-08	17560.49	=""	="TRANSFIELD SERVICES (AUSTRALIA)"	18-Jun-08 01:00 PM	

+="CN92961"	"CABLING"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-Jun-08	30-Jun-08	16500.00	=""	="RIVERCORP PTY LTD"	18-Jun-08 01:01 PM	

+="CN92964"	"HQJOCP - HONEYWELL LTD"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	19327.00	=""	="HONEYWELL LTD"	18-Jun-08 01:01 PM	

+="CN92990"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	06-Oct-08	16589.57	=""	="REGENT PERSONNEL PTY LTD"	18-Jun-08 01:05 PM	

+="CN92997"	"ASI Engineering Services"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	29-May-08	30-Jun-09	17594.65	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	18-Jun-08 01:06 PM	

+="CN93005"	"FEES-NORTH PENRITH-MUD SERVICES REVIEW."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	19800.00	=""	="NATIONAL PROJECT CONSULTANTS"	18-Jun-08 01:07 PM	

+="CN93006"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="MARK L SLOCKEE"	18-Jun-08 01:07 PM	

+="CN93025"	"Professional Services to LIF FSFT Proj Eng"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	28-May-08	30-Jun-09	16443.13	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	18-Jun-08 01:09 PM	

+="CN93026"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	20000.00	=""	="JAMES D WILSON PTY LTD"	18-Jun-08 01:09 PM	

+="CN93040"	"Network Collection Devices"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	17589.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	18-Jun-08 01:11 PM	

+="CN93049"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="CALVARY HEALTH CARE ACT LTD"	18-Jun-08 01:13 PM	

+="CN93053"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	20-Jun-08	19943.00	=""	="TRAINING SYSTEMS SERVICES PTY LTD"	18-Jun-08 01:13 PM	

+="CN93055"	"Services"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	19-Jun-08	16736.11	=""	="BOEING AUSTRALIA LTD"	18-Jun-08 01:13 PM	

+="CN93058"	"Security Access"	="Department of Defence"	18-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	29-May-08	16-Jun-08	16500.00	=""	="CHUBB ELECTRONIC SECURITY"	18-Jun-08 01:14 PM	

+="CN93061"	"SN02756 -PM Fees for Upgrade of Access Control Systems - Gladstone St Fyshwick"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-08	17400.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 01:14 PM	

+="CN93064"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="JAMES MASSON"	18-Jun-08 01:15 PM	

+="CN93065"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="DR JOHN MACKAY"	18-Jun-08 01:15 PM	

+="CN93066"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="DAVID LITTLEJOHN"	18-Jun-08 01:15 PM	

+="CN93073"	"Pitch Black - Shipping container"	="Department of Defence"	18-Jun-08	="Containers and storage"	29-May-08	10-Jun-08	18700.00	=""	="TRANSPORTABLE SOLUTIONS PTY LTD"	18-Jun-08 01:16 PM	

+="CN93074"	"Training"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	06-Jun-08	17850.09	=""	="LABRYNTH CONSULTANCY"	18-Jun-08 01:16 PM	

+="CN93082"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="ROGER TUCK"	18-Jun-08 01:17 PM	

+="CN93088"	"SOFTWARE"	="Department of Defence"	18-Jun-08	="Software"	29-May-08	29-May-08	18144.50	=""	="CAYLX SOFTWARE PACIFIC PTY LTD"	18-Jun-08 01:18 PM	

+="CN93032"	" SES Lease Charges for February & March 08. SES Fuel Charges for December 07 and January 08.    "	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Vehicle leasing"	01-Dec-07	31-Mar-08	17492.73	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	18-Jun-08 01:19 PM	

+="CN93101"	"O/HAUL AIRCRAFT JACKS QTY 3"	="Department of Defence"	18-Jun-08	="Manufacturing support services"	27-May-08	27-Jun-08	16629.80	=""	="FORDHAM ENGINEERING"	18-Jun-08 01:20 PM	

+="CN93106"	"EQUIPMENT FOR SINGLETON GYM"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	27-May-08	26-Jun-08	19116.24	=""	="TRUE FITNESS SOLUTIONS"	18-Jun-08 01:20 PM	

+="CN93121"	"Development of Fleet planning applicatiom"	="Department of Defence"	18-Jun-08	="Software"	27-May-08	30-Jun-08	19988.93	=""	="CLEARZ PTY LTD"	18-Jun-08 01:22 PM	

+="CN93130"	"FURNITURE FOR ARMIDALE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	26-May-08	26-Jun-08	17638.02	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	18-Jun-08 01:23 PM	

+="CN93171"	"Gym Equipment"	="Department of Defence"	18-Jun-08	="Fitness equipment"	28-May-08	13-Jun-08	18480.00	=""	="THE FITNESS GENERATION PTY LTD"	18-Jun-08 01:29 PM	

+="CN93194"	"Cisco ASA 5540 + SSM-4GE"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	19378.96	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	18-Jun-08 01:32 PM	

+="CN93184"	"Training"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Education and Training Services"	01-May-08	31-May-08	18173.83	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 01:44 PM	

+="CN93238"	"FOQA Ground Station"	="Defence Materiel Organisation"	18-Jun-08	="Aircraft"	18-Jun-08	02-Jul-08	17600.00	=""	="Flight Data Systems Pty Ltd"	18-Jun-08 04:11 PM	

+="CN93256"	"Architectural Services"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	16500.00	=""	="Integrated Space Ltd"	19-Jun-08 07:53 AM	

+="CN93259"	"Legal Services"	="Centrelink"	19-Jun-08	="Legal services"	13-Sep-07	30-Jun-08	18200.00	=""	="Minter Ellison Lawyers"	19-Jun-08 07:53 AM	

+="CN93274-A1"	"NetVault Maintenance"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-Apr-03	13-Apr-10	17658.97	="DCON/03/63"	="KAZ Group"	19-Jun-08 09:08 AM	

+="CN93278"	"50 training units"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	16500.00	="DCON/07/65"	="Squiz Pty Ltd"	19-Jun-08 09:08 AM	

+="CN93287"	"Consultancy Serv WT-Network SLA 07/08"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	19746.50	="DCON/05/53"	="WALTER TURNBULL"	19-Jun-08 09:10 AM	

+="CN93304"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	11-Jul-08	16974.10	=""	="SYMBION PHARMACY SERVICES"	19-Jun-08 10:47 AM	

+="CN93305"	"Pocket Distress Sig"	="Defence Materiel Organisation"	19-Jun-08	="Signalling components"	16-Jun-08	25-Aug-08	18403.00	=""	="Light Aircraft"	19-Jun-08 11:02 AM	

+="CN93319"	" VARIOUS GRADER 672D PARTS "	="Defence Materiel Organisation"	19-Jun-08	="Vehicle bodies and trailers"	18-Jun-08	21-Jun-08	18699.91	=""	="HITACHI CONSTRUCTION MACHINERY"	19-Jun-08 01:35 PM	

+="CN93350"	"Office Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-May-08	30-Jun-08	16905.90	=""	="Isis Projects Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93381"	"Fitout Manager Services - Tasmania"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Sep-07	30-Jun-08	16000.00	=""	="GHD Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93383"	"Pilot construction project for Centrelink Concept Office Tuggeranong, ACT"	="Centrelink"	19-Jun-08	="Office supplies"	01-Jun-07	30-Jul-08	17155.74	=""	="Kaldi Coffee"	19-Jun-08 02:19 PM	

+="CN93388"	"Information Services"	="Centrelink"	19-Jun-08	="Information services"	07-May-08	30-Jun-08	19940.00	=""	="Land Services Group"	19-Jun-08 02:19 PM	

+="CN93389"	"Staff Medicals"	="Centrelink"	19-Jun-08	="Human resources services"	27-Sep-07	30-Jun-08	17600.00	=""	="Health for Industry"	19-Jun-08 02:19 PM	

+="CN93403"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	20-Dec-07	30-Jun-08	16500.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93464-A1"	"Awareness and Attitudes to Family Court Study"	="Family Court of Australia"	19-Jun-08	="Market research telephone surveys"	20-Jun-08	22-Jun-08	17231.50	=""	="Newspoll Market research"	19-Jun-08 02:31 PM	

+="CN93470"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	07-May-08	30-May-11	18550.48	=""	="Infront Systems Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93488"	"Removalist services"	="Centrelink"	19-Jun-08	="Material packing and handling"	05-May-08	09-May-08	17136.90	=""	="Movers and Shakers Business Relocations"	19-Jun-08 02:33 PM	

+="CN93489"	"Office furniture for Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	15-May-08	30-Jun-08	16316.59	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:34 PM	

+="CN93538"	"Furniture for new Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	30-May-08	29-Aug-08	17066.50	=""	="Solitaire Seating"	19-Jun-08 02:40 PM	

+="CN93571"	"Digital reproduction of Commonwealth books, journals, magazines and artworks."	="Austrade"	19-Jun-08	="Legal services"	26-Mar-08	26-Mar-08	19184.68	=""	="Copyright Agency Limited"	19-Jun-08 02:49 PM	

+="CN93573"	"AAP Residential Conference 2008"	="Austrade"	19-Jun-08	="Hotels and lodging and meeting facilities"	03-Mar-08	20-Mar-08	16436.90	=""	="Crowne Plaza Canberra"	19-Jun-08 02:49 PM	

+="CN93578"	"Lease for premises at 85 Chalgrove Avenue, Rockingham"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Apr-08	30-Dec-11	19181.25	=""	="Tallbrook P/L"	19-Jun-08 02:51 PM	

+="CN93584"	"CERULEAN SOLUTIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Switches and controls and relays and accessories"	16-Apr-08	16-Apr-09	18849.53	="OPEN"	="CERULEAN"	19-Jun-08 02:53 PM	

+="CN93587"	"HARRIS TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Personal computers"	20-May-08	20-May-09	16072.40	="OPEN"	="Harris Technology"	19-Jun-08 02:53 PM	

+="CN93590"	"GAMMADATA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Multi gas monitors"	22-May-08	22-May-09	17791.51	="DIRECT"	="GAMMADATA"	19-Jun-08 02:53 PM	

+="CN93596"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Stationery"	01-Apr-08	30-Apr-08	19721.09	=""	="OFFICEMAX AUSTRALIA LTD"	19-Jun-08 02:56 PM	

+="CN93597"	"Fact Sheet External Printing"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Corporate finance"	21-May-08	21-May-08	18999.00	=""	="CANBERRA PUBLISHING CO PTY LTD"	19-Jun-08 03:06 PM	

+="CN93605"	"Scribe for LO1 & LO2 interviews in Sydney Office"	="Office of the Director of Public Prosecutions"	19-Jun-08	="Human resources services"	12-Jun-08	31-Jul-08	18732.78	=""	="DMW Group"	19-Jun-08 03:23 PM	

+="CN93619"	"Procurement of:  SWITCH,THERMOSTATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	13-Mar-09	18316.10	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93620"	"Procurement of:  PLYWOOD,CONSTRUCTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	23-Sep-08	18500.00	=""	="HARPER TIMBER Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93624"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	25-Aug-08	17820.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93625"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	05-Aug-08	16440.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93647"	"Procurement of:  METER,FLOW RATE INDICATING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	17-Jul-08	17012.00	=""	="JORD INTERNATIONAL Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93648"	"Procurement of:  AMPLIFIER,INTERMEDIATE FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	27-Aug-08	16466.40	=""	="MILSPEC SERVICES Pty Ltd"	19-Jun-08 03:45 PM	

+="CN93642"	"Divorce Kit"	="Family Court of Australia"	19-Jun-08	="Printing and publishing equipment"	16-Jun-08	30-Jun-08	16346.00	=""	="Canprint Communications Pty Ltd"	19-Jun-08 03:45 PM	

+="CN93656"	"Procurement of:  RETAINER,SEAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	20-Aug-08	17772.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93660"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	19-Jun-08	16500.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93662"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	28-Jul-08	16416.00	=""	="SONARTECH ATLAS"	19-Jun-08 03:47 PM	

+="CN93664"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	20-Aug-08	17681.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:47 PM	

+="CN93682"	"Procurement of:  CONTROLLER,HOIST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	05-Sep-08	17090.00	=""	="PARKER HANNIFIN AUST Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93690"	"Procurement of:  FILTER ASSEMBLY,ELECTRICAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	19-Jul-08	16090.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93694"	"Procurement of:  RELAY,ELECTROMAGNETIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	17-Feb-09	16193.90	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93695"	"Procurement of:  CONTROL,DATA TRANSMISSION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	09-Aug-08	16836.60	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93709"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	17550.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:54 PM	

+="CN93704"	"Lease for Premises at Student Administration Building, James Cook University, Townsville, QLD 4811"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	02-Jan-07	01-Jan-10	18204.84	=""	="James Cook University"	19-Jun-08 03:54 PM	

+="CN93728"	"Procurement of:  HOIST,CHAIN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	20-Jun-08	19869.50	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93731"	"Procurement of:  PANEL,INDICATING,LIGHT TRANSMITTING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	31-Aug-08	19503.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:58 PM	

+="CN93739"	"Procurement of:  COMPRESSOR,REFRIGERATION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	01-Aug-08	17500.00	=""	="HEATCRAFT AUSTRALIA Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93740"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	03-Oct-08	16222.01	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93748"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	24-Sep-08	16167.03	=""	="THALES AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93750"	"Procurement of:  INDICATOR,ANGLE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Nov-08	17200.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	19-Jun-08 04:01 PM	

+="CN93725"	"pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	04-Jul-08	19965.00	=""	="Symbion"	19-Jun-08 04:01 PM	

+="CN93756"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	12-Jan-09	17421.00	=""	="NOSKE-KAESER NZ Ltd"	19-Jun-08 04:02 PM	

+="CN93766"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	19568.95	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93772"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	19-Sep-08	16502.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:05 PM	

+="CN93781"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	28-Aug-08	17614.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	19-Jun-08 04:06 PM	

+="CN93786"	"Procurement of:  PARTS KIT,SEPARATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	16066.65	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93790"	"Procurement of:  SPROCKET WHEEL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	15-Dec-08	16693.91	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93792"	"Procurement of:  CLAMP,LOOP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	26-Sep-08	17994.50	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN93796"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	09-Oct-08	17944.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	19-Jun-08 04:08 PM	

+="CN93802"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	19-Jun-08	16043.00	=""	="CEA TECHNOLOGIES Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93811"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Jun-08	20000.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93820"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	31-Jan-08	27-Mar-08	17444.21	=""	="BLAKE DAWSON WALDRON"	19-Jun-08 04:16 PM	

+="CN93823"	"Adobe License Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="License management software"	02-Apr-08	09-Apr-08	16596.18	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	19-Jun-08 04:23 PM	

+="CN93848"	" DOZER 850J (VARIOUS PARTS) "	="Defence Materiel Organisation"	19-Jun-08	="Vehicle bodies and trailers"	18-Jun-08	23-Jun-08	19880.05	=""	="HITACHI CONSTRUCTION MACHINERY"	19-Jun-08 06:27 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val20000to30000.xls
@@ -1,1 +1,307 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91096"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft spars"	13-Jun-08	16-Oct-08	25484.25	=""	="PACIFIC AERODYNE PTY LTD"	17-Jun-08 09:08 AM	

+="CN91099"	"Supply of office chairs"	="Department of Parliamentary Services"	17-Jun-08	="Chairs"	23-May-08	30-Jun-08	27596.80	=""	="McNally's Furniture & Upholstery"	17-Jun-08 09:15 AM	

+="CN91100"	"Carpetlaying and floor covering services Contract (DPS04145 )"	="Department of Parliamentary Services"	17-Jun-08	="Carpeting"	26-May-08	06-Jun-08	28210.60	=""	="Chesta's Floors"	17-Jun-08 09:15 AM	

+="CN91101"	"Provision of cabling and associated services Contract ( DPS04198)"	="Department of Parliamentary Services"	17-Jun-08	="Cable laying"	26-May-08	06-Jun-08	22000.00	=""	="Secom Technical Services P/L"	17-Jun-08 09:15 AM	

+="CN91104"	"Supply of Art Works"	="Department of Parliamentary Services"	17-Jun-08	="Visual art services"	28-May-08	30-Jun-08	21930.02	=""	="Tandanya National Aboriginal"	17-Jun-08 09:15 AM	

+="CN91107"	"Key safes Software updates"	="Department of Parliamentary Services"	17-Jun-08	="Safes"	03-Jun-08	06-Jun-08	22487.00	=""	="CIC Secure Pty Ltd"	17-Jun-08 09:16 AM	

+="CN91127"	"Purchase of fargo printer ribbon"	="Department of Parliamentary Services"	17-Jun-08	="Printer ribbon"	16-May-08	06-Jun-08	26448.40	=""	="Honeywell Limited"	17-Jun-08 09:18 AM	

+="CN91132"	"Legal services - counsel's fees"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	24-Aug-07	30-Jun-08	20000.00	=""	="Woodward, Edward"	17-Jun-08 09:27 AM	

+="CN91137"	"SUPPLY OF SUCTION APPARATUS, OROPHARYNGEAL"	="Defence Materiel Organisation"	17-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	30-Jun-08	21868.00	=""	="LAERDAL PTY LTD"	17-Jun-08 09:32 AM	

+="CN91139"	"qty 100 cable assemblies, special purpose, electrical for use with military radios."	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	16-Jun-08	13-Oct-08	24750.00	="RFQ-C7208"	="MARKERRY INDUSTRIES PTY LTD"	17-Jun-08 09:37 AM	

+="CN91281"	"MOU Charges January 2008 (2nd payment)"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Jan-08	31-Jan-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 11:07 AM	

+="CN91392-A1"	"08/2705 - Consultancy Service - 1599-1970 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-May-08	31-Jul-08	25000.00	="08/2705"	="Freebody Cogent Pty Ltd"	17-Jun-08 11:18 AM	

+="CN91582"	"This order is raised to replace SDSS order number 4500423658) to cover the repairs, termination and"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	03-Jun-08	28135.62	=""	="KAMAN AEROSPACE INTERNATIONAL CORP"	17-Jun-08 11:44 AM	

+="CN91633"	"This P.O. has been raised to facilitate the pre-pa Black Hawk A25-105 to SAAL for survey, quote and"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	03-Jun-08	30-Jun-08	22000.00	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 11:47 AM	

+="CN91635"	"RADAR SYSTEM DISPLAYS HMAS SUCCESS"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	03-Jun-08	30-Jun-08	21000.32	=""	="INTELLIGENT TECHNICAL SERVICE"	17-Jun-08 11:47 AM	

+="CN91637"	"TASK 3015-0026 HMAS PARRAMATTA URDEF 85/07 - HANGAR DOOR REPAIR"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-08	26066.09	=""	="PATRICK DEFENCE LOGISTICS"	17-Jun-08 11:47 AM	

+="CN91639"	"Laser Scanning"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Jun-08	11-Jul-08	26708.55	=""	="EDAG AUSTRALIA PTY LTD"	17-Jun-08 11:48 AM	

+="CN91652"	"LABEL"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	04-Jun-08	30-Jun-08	20251.00	=""	="OFFICEMAX AUSTRALIA LTD"	17-Jun-08 11:49 AM	

+="CN91668"	"Provisioin of 2 largeTopowl Helmets"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	03-Jun-08	30-Jun-09	27838.87	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:50 AM	

+="CN91676"	"modifications to SMB GEOGRAPHE, SMB FANTOME and SMB CONDEr"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	03-Jun-08	15-Jun-08	25469.40	=""	="AIMTEK PTY LTD"	17-Jun-08 11:50 AM	

+="CN91688"	"FOR REPAIRABLE ITEM BDS SUPPLY AND RETURN OF PRIOR"	="Defence Materiel Organisation"	17-Jun-08	="Transportation components and systems"	30-May-08	30-Jun-09	20000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:51 AM	

+="CN91731"	"DISPOSAL OF BATTERIES"	="Defence Materiel Organisation"	17-Jun-08	="Batteries and generators and kinetic power transmission"	30-May-08	26-Jun-08	25846.58	=""	="THIESS SERVICES"	17-Jun-08 11:54 AM	

+="CN91740"	"transport smb's from cairns to sydney"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	02-Jun-08	30-Jun-08	20683.30	=""	="AIMTEK PTY LTD"	17-Jun-08 11:55 AM	

+="CN91729"	"VEHICLE REPAIRS"	="Department of Defence"	17-Jun-08	="Motor vehicles"	22-May-08	22-Jun-08	26716.03	=""	="FB AUTOS"	17-Jun-08 11:55 AM	

+="CN91748"	"Installation Design Package - Replacement of AN/AU K43 Cooling Water Low FlowAlarm Switch"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	02-Jun-08	15-Jul-08	27756.00	=""	="THALES AUSTRALIA"	17-Jun-08 11:55 AM	

+="CN91773"	"CONNECTING LINK, RIGID"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	31-May-08	25-Nov-08	22686.62	=""	="HELICOPTER SUPPORT INC DBA SERVICES"	17-Jun-08 11:57 AM	

+="CN91801"	"Sonix to Support Trials"	="Defence Materiel Organisation"	17-Jun-08	="Measuring and observing and testing instruments"	06-Jun-08	30-Jul-08	27676.00	=""	="SONARTECH ATLAS"	17-Jun-08 11:59 AM	

+="CN91828"	"P5343-001 HMAS ARUNTA IMAV06 - ON SITE LOG SPT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Jun-08	24721.80	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:01 PM	

+="CN91840"	"Annual Membership NATA Fy 2008-2009"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Jun-08	30-Jun-09	23604.99	=""	="NATIONAL ASSOCIATION OF TESTING"	17-Jun-08 12:01 PM	

+="CN91887"	"Isla Street Fyshwick Fit out"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	06-Jun-08	30-Jun-08	21908.70	=""	="COMPLETE OFFICE SUPPLIES PTY LTD"	17-Jun-08 12:05 PM	

+="CN91855"	"MOU Charges - February 2008 (2nd payment)"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Feb-08	29-Feb-08	28108.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 12:06 PM	

+="CN91897"	"MBITR Repair Spare Parts (TWS07.033)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	26877.07	=""	="THALES AUSTRALIA"	17-Jun-08 12:06 PM	

+="CN91903"	"ARH SIMULATOR CHECKS FRANCE"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	04-Jun-08	20-Jun-08	21427.97	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:07 PM	

+="CN91908"	"nut 8-32 parachute assy"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	05-Nov-08	20453.09	=""	="MARTIN BAKER AIRCRAFT CO LTD"	17-Jun-08 12:07 PM	

+="CN91914"	"Pin Straight"	="Defence Materiel Organisation"	17-Jun-08	="Arms and ammunition accessories"	05-Jun-08	12-Jun-08	21183.55	=""	="R/M EQUIPMENT"	17-Jun-08 12:07 PM	

+="CN91917"	"CONDUCT PCRA on MPDE, SSDG & BJ Gear. HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Jun-08	26011.47	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:08 PM	

+="CN91935"	"MBITR Spare Parts for may 2007 (TWS07.030)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	20289.83	=""	="THALES AUSTRALIA"	17-Jun-08 12:09 PM	

+="CN91941"	"CABLE ASSY"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	29-Dec-08	24909.30	=""	="LCF SYSTEMS INC"	17-Jun-08 12:09 PM	

+="CN91976"	"Software"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	21994.50	=""	="JENKINS ENGINEERING DEFENCE"	17-Jun-08 12:12 PM	

+="CN92008"	"This Purchase Order is raised in accordance with t conditions of the HUGPH2.2 Prime Contract C338399"	="Defence Materiel Organisation"	17-Jun-08	="Postmortem and mortuary equipment and supplies"	13-Jun-08	30-Jun-10	26760.89	=""	="BOEING COMPANY THE"	17-Jun-08 12:15 PM	

+="CN91965"	"Application Services for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Information technology consultation services"	01-Mar-08	31-Mar-08	21833.68	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 12:16 PM	

+="CN92059"	"nut, hexagon, et al"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	23-Apr-08	15-Oct-08	24659.15	=""	="NORCATEC LLC"	17-Jun-08 12:19 PM	

+="CN92101"	"Upgrade Security Readers"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	09-May-08	30-Jun-08	26388.92	=""	="PERTH BUILDING COMPANY PTY LTD"	17-Jun-08 12:21 PM	

+="CN92122"	"Procurement of Army Utility workboats. Army Marine"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	12-Nov-07	12-Jun-08	24417.36	=""	="BIRDON MARINE PTY LTD"	17-Jun-08 12:24 PM	

+="CN92123"	"GSR through life support contract"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	10-Jun-08	30-Jun-09	24140.60	=""	="THALES COMMUNICATIONS LIMITED"	17-Jun-08 12:24 PM	

+="CN92132"	"DSTO HMI Team Work for FFG UP SOC"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-May-08	30-May-08	22500.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:25 PM	

+="CN92141"	"ENGINEERING SERVICES FOR CLASSING"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	30-Jun-11	25722.62	=""	="DET NORSKE VERITAS"	17-Jun-08 12:26 PM	

+="CN92158"	"OLMU MILESTONE PAYMENTS AGAINST CAPOV309981"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	18-Dec-07	18-Dec-07	21666.80	=""	="QANTAS DEFENCE SERVICES PTY LTD"	17-Jun-08 12:29 PM	

+="CN92168"	"Freight Requirement for ASABAKA"	="Defence Materiel Organisation"	17-Jun-08	="Packing supplies"	07-May-08	28-Jun-08	22000.00	=""	="TNT AUSTRALIA"	17-Jun-08 12:31 PM	

+="CN92180"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	28-May-08	30-Jun-08	22082.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:32 PM	

+="CN92183"	"Aircrew Oxygen Cylinder"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft emergency systems"	28-May-08	27-Jul-08	20435.21	=""	="AVOX SYSTEMS INC"	17-Jun-08 12:33 PM	

+="CN92194"	"Furniture & workstations"	="Defence Materiel Organisation"	17-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	21668.90	=""	="SCHIAVELLO ACT PTY LTD"	17-Jun-08 12:34 PM	

+="CN92193"	" Dell Computers and Portable Printer Kit "	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Computers"	14-Mar-08	13-Apr-08	27830.00	=""	="DELL COMPUTER PTY LTD"	17-Jun-08 12:36 PM	

+="CN92212"	"Cable Assy"	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	29-May-08	19-Dec-08	21183.55	=""	="ORDNANCE TECHNOLOGY SERVICE INC."	17-Jun-08 12:37 PM	

+="CN92236"	"FFG Upgrade parts and accessories"	="Defence Materiel Organisation"	17-Jun-08	="Location and navigation systems and components"	22-May-08	19-Aug-08	24756.02	=""	="W R DAVIS ENGINEERING LTD"	17-Jun-08 12:39 PM	

+="CN92240"	"Development of CVS Server"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	20-Jun-08	29700.00	=""	="SAVI TECHNOLOGY AUSTRALIA PTY LTD"	17-Jun-08 12:40 PM	

+="CN92245"	"Repair of MDI S/No 1073"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	27-May-08	24-Sep-08	21290.00	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:41 PM	

+="CN92264"	"SOFTWARE MAINTENANCE"	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	02-Jun-08	22000.00	=""	="ABSOLUTE DATA GROUP PTY LTD"	17-Jun-08 12:43 PM	

+="CN92267"	"DESKTOP SCANNERS"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	27-May-08	30-Jun-08	21324.70	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	17-Jun-08 12:43 PM	

+="CN92272"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	01-Jul-07	07-Mar-08	27627.05	=""	="PHILLIPS FOX LAWYERS"	17-Jun-08 12:55 PM	

+="CN92273-A1"	" ASCTEC National System Administrator   Mainframe workflow system "	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	01-Mar-08	30-Jun-08	27800.00	=""	="Rutledge, Greg"	17-Jun-08 12:57 PM	

+="CN92276"	"PARTS VARIOUS - ASLAV"	="Department of Defence"	17-Jun-08	="Armoured fighting vehicles"	16-Jun-08	05-Aug-08	29177.50	=""	="TRIMCAST PTY LTD"	17-Jun-08 01:08 PM	

+="CN92302"	"APCM 06.030-1320 Printing of Tax Pack 2000 & 2001 back up quantity."	="Australian Taxation Office"	17-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jun-08	30-Jun-08	24877.60	=""	="Pirion Printing"	17-Jun-08 04:07 PM	

+="CN92317-A1"	"Expert Witness"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	01-Feb-08	30-Jun-09	25000.00	=""	="Berry, James Hunter"	18-Jun-08 09:54 AM	

+="CN92320"	"Remaining Expenditure 6868"	="Department of Infrastructure Transport Regional Development and Local Government"	18-Jun-08	="Legal services"	12-Jun-08	30-Sep-08	25700.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	18-Jun-08 10:01 AM	

+="CN92330"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	06-Jun-08	30-Jun-09	30000.00	=""	="Stack, David"	18-Jun-08 10:38 AM	

+="CN92332"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	01-Dec-07	31-Dec-08	30000.00	=""	="Howard, Matthew"	18-Jun-08 10:43 AM	

+="CN92345"	"NTC Tidal Reports Apr - Jun 08"	="Department of Defence"	18-Jun-08	="Business administration services"	02-Jun-08	30-Jun-08	27500.00	=""	="BUREAU OF METEOROLOGY"	18-Jun-08 11:35 AM	

+="CN92349"	"PROFESSIONAL FEES"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	20975.00	=""	="SPARKE HELMORE LAWYERS"	18-Jun-08 11:36 AM	

+="CN92350"	"HP Compaq dc7800 SFF PC"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	02-Jun-08	30-Jun-08	20658.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 11:36 AM	

+="CN92356"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	03-Jun-08	25564.00	=""	="COMPUCRAFT SOFTWARE SOLUTIONS"	18-Jun-08 11:37 AM	

+="CN92370"	"FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	02-Jun-08	20-Jul-08	21813.00	=""	="DIRECT ERGONOMICS PTY LTD"	18-Jun-08 11:39 AM	

+="CN92381"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	20700.46	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 11:41 AM	

+="CN92408"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	03-Jun-08	30-Jun-08	28675.00	=""	="DEACONS"	18-Jun-08 11:44 AM	

+="CN92411"	"CONTACT MATT FAULKNER 08 8935 2705"	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	03-Jun-08	30-Jul-08	24961.20	=""	="GEM CONSTRUCTION & ENGINEERING PTY"	18-Jun-08 11:45 AM	

+="CN92413"	"RATES AND WATER METER FOR 426 INGHAM RD, GARBUTT PROPERTY NO.60380"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	20700.00	=""	="TOWNSVILLE CITY COUNCIL"	18-Jun-08 11:45 AM	

+="CN92417"	"Water charges for seaport property & visiting vessels, security for vessels"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	21800.00	=""	="CAIRNS PORTS"	18-Jun-08 11:46 AM	

+="CN92418"	"GOODS"	="Department of Defence"	18-Jun-08	="Truck tractors"	03-Jun-08	30-Jun-08	22329.37	=""	="BAE SYSTEMS AUSTRALIA PTY LTD"	18-Jun-08 11:46 AM	

+="CN92420"	"PRINTING OF MAPS GAC 31/2008"	="Department of Defence"	18-Jun-08	="Paper products"	03-Jun-08	11-Jul-08	29390.90	=""	="PETTARAS PRESS PTY LTD"	18-Jun-08 11:46 AM	

+="CN92423"	"SERVERS"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	03-Jun-08	13-Jun-08	22249.98	=""	="IPS INTELLIGENT SYSTEMS PTY LTD"	18-Jun-08 11:47 AM	

+="CN92428"	"Red Hat Management Module"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	30-Jun-08	24018.43	=""	="RED HAT ASIA-PACIFIC PTY LTD"	18-Jun-08 11:47 AM	

+="CN92432"	"Freight Charges"	="Department of Defence"	18-Jun-08	="Transportation services equipment"	03-Jun-08	30-Jun-09	30000.00	=""	="STAR TRACK EXPRESS"	18-Jun-08 11:48 AM	

+="CN92434"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	03-Jun-08	30-Jun-08	25252.59	=""	="ASSET SERVICES"	18-Jun-08 11:48 AM	

+="CN92441"	"SGI Software & Hardware Maintenance"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	30-Jun-08	22835.38	=""	="SGI AUSTRALIA PTY LTD"	18-Jun-08 11:49 AM	

+="CN92449"	"Red Hat Management Module"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	30-Jun-08	24018.43	=""	="RED HAT ASIA-PACIFIC PTY LTD"	18-Jun-08 11:50 AM	

+="CN92459"	"Printers"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	14-Jun-08	25740.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	18-Jun-08 11:51 AM	

+="CN92462"	"PROVISION OF TONER"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	30-May-08	30-Jun-09	22000.00	=""	="FUJI XEROX AUSTRALIA PTY LTD"	18-Jun-08 11:52 AM	

+="CN92465"	"Barco System Maintence"	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	30-May-08	11-Jun-08	20240.00	=""	="BARCO SYSTEMS PTY LTD"	18-Jun-08 11:52 AM	

+="CN92481"	"GLASS: PRECISION ANNEALED PYREX"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	30-May-08	26-Sep-08	22594.01	=""	="DISCOVERY TELESCOPES INC"	18-Jun-08 11:54 AM	

+="CN92485"	"Crocery & Cutlery"	="Department of Defence"	18-Jun-08	="Domestic kitchenware"	29-May-08	30-Jun-08	24794.18	=""	="ARAFURA CATERING EQUIPMENT PTY LTD"	18-Jun-08 11:55 AM	

+="CN92493"	"PURCHASE OF PCI CARD"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	13-Jun-08	24200.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	18-Jun-08 11:56 AM	

+="CN92503"	"FIRE TRAINING"	="Department of Defence"	18-Jun-08	="Fire protection"	30-May-08	30-Jun-08	27555.00	=""	="INTERNATIONAL CODE SERVICES AUST"	18-Jun-08 11:57 AM	

+="CN92509"	"ADDITIONAL RAIN WATER TANKS ENOGGERA"	="Department of Defence"	18-Jun-08	="Water resources development and oversight"	02-Jun-08	30-Jun-08	27566.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 11:58 AM	

+="CN92512"	"ITEMS REQUIRED FOR BRF INSTAL"	="Department of Defence"	18-Jun-08	="Tools and General Machinery"	02-Jun-08	09-Jun-08	26577.98	=""	="ROJONE PTY LTD"	18-Jun-08 11:59 AM	

+="CN92519"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	21650.00	=""	="MINTER ELLISON"	18-Jun-08 12:00 PM	

+="CN92521"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	23370.16	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 12:00 PM	

+="CN92504"	"Timber"	="Department of Defence"	18-Jun-08	="Soft timber"	16-Jun-08	16-Jul-08	26515.28	=""	="P J C DISTRIBUTORS"	18-Jun-08 12:00 PM	

+="CN92527"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-08	28720.00	=""	="CLAYTON UTZ"	18-Jun-08 12:01 PM	

+="CN92531"	"PABX SYSTEM"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	20382.56	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 12:02 PM	

+="CN92539"	"SIP - PPP COURSE"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-09	23100.00	=""	="INFORMA AUSTRALIA PTY LTD"	18-Jun-08 12:03 PM	

+="CN92542"	"items for installation of new SenSage equipment"	="Department of Defence"	18-Jun-08	="Hardware"	30-May-08	30-Jun-08	20138.62	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	18-Jun-08 12:03 PM	

+="CN92551"	"PRINTING"	="Department of Defence"	18-Jun-08	="Printed media"	02-Jun-08	06-Jun-08	23018.00	=""	="TRENDSETTING PTY LTD"	18-Jun-08 12:05 PM	

+="CN92552"	"IL-DD Date Diode Hardware"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	30-Jun-08	22836.86	=""	="TENIX DATAGATE PTY LTD"	18-Jun-08 12:05 PM	

+="CN92567"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	20900.00	=""	="WORK HEALTH SAFETY MATTERS PTY LTD"	18-Jun-08 12:07 PM	

+="CN92577"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	27500.00	=""	="WORKING LIFE"	18-Jun-08 12:09 PM	

+="CN92580"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="PERSONNEL PLACEMENT CONSULTANCIES"	18-Jun-08 12:09 PM	

+="CN92584"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="LIFEWORKS HEALTH SERVICES"	18-Jun-08 12:10 PM	

+="CN92588"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="DYSARAN CONSULTING"	18-Jun-08 12:10 PM	

+="CN92595"	"PROFESIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="INSITE INJURY MANAGEMENT GROUP"	18-Jun-08 12:11 PM	

+="CN92604"	"NEW FENCE LINE BLDG S007, ENOGGERA"	="Department of Defence"	18-Jun-08	="Security and control equipment"	05-Jun-08	30-Jun-08	27482.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:12 PM	

+="CN92607"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="THE REHAB FACTOR"	18-Jun-08 12:13 PM	

+="CN92609"	"clerical support to DSTO Library"	="Department of Defence"	18-Jun-08	="Business administration services"	05-Jun-08	30-Jun-09	27432.90	=""	="ZENITH MANAGEMENT SERVICES"	18-Jun-08 12:13 PM	

+="CN92629"	"ANAPURNA CONSUMABLES AND MAINTENANCE"	="Department of Defence"	18-Jun-08	="Paper Materials and Products"	06-Jun-08	15-Jun-08	22279.14	=""	="AGFA-GEVAERT LTD"	18-Jun-08 12:16 PM	

+="CN92643"	"Software"	="Department of Defence"	18-Jun-08	="Software"	05-Jun-08	30-Jun-08	25800.50	=""	="ANALYSIS & TECHNOLOGY AUST PTY LTD"	18-Jun-08 12:17 PM	

+="CN92649"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	22000.00	=""	="MOUNT INJURY MANAGEMENT SERVICE"	18-Jun-08 12:18 PM	

+="CN92685"	"PRINTING"	="Department of Defence"	18-Jun-08	="Printed media"	04-Jun-08	26-Jun-08	20999.00	=""	="CANBERRA MAILING & ENVELOPES"	18-Jun-08 12:24 PM	

+="CN92694"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	31-Jul-08	25000.00	=""	="AUSTRALIAN PUBLIC SERVICE COMM"	18-Jun-08 12:25 PM	

+="CN92696"	"Leased Vehicle"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	04-Jun-08	30-Jun-09	21903.65	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 12:25 PM	

+="CN92703"	"DSN ICT WORKS"	="Department of Defence"	18-Jun-08	="Electrical wire and cable and harness"	03-Jun-08	30-Jun-08	21653.50	=""	="LJF COMMUNICATIONS"	18-Jun-08 12:26 PM	

+="CN92711"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	24086.70	=""	="ST JOHN THE EVANGELIST CATHOLIC"	18-Jun-08 12:27 PM	

+="CN92712"	"ACMS-1490821 1 Pysch Unit"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	27-Jun-08	26136.00	=""	="CAYLX SOFTWARE PACIFIC PTY LTD"	18-Jun-08 12:27 PM	

+="CN92716"	"DEFENCE SCHOOL TRAISITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	22781.11	=""	="BAKEWELL PRIMARY SCHOOL"	18-Jun-08 12:28 PM	

+="CN92731"	"Istallation and set up of electroboard in REGT bre"	="Department of Defence"	18-Jun-08	="Electronic hardware and component parts and accessories"	05-Jun-08	12-Jun-08	21217.02	=""	="ELECTROBOARD"	18-Jun-08 12:30 PM	

+="CN92732"	"Cooler Upgrade"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	05-Jun-08	18-Jun-08	20599.70	=""	="VICTORIAN HYDRAULICS PTY LTD"	18-Jun-08 12:30 PM	

+="CN92739"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	27500.00	=""	="WORKLINK OCCUPATION HEALTH AND"	18-Jun-08 12:31 PM	

+="CN92745"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Jun-08	26400.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	18-Jun-08 12:32 PM	

+="CN92751"	"INTERNAL BUILDING SURVEY OF NTH STRATHFIELD ACCOMMODATION COMPLEX"	="Department of Defence"	18-Jun-08	="General building construction"	04-Jun-08	04-Jun-08	24563.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 12:33 PM	

+="CN92752"	"Computing Equipment + Subscriptions Phone: 02 6266 9043"	="Department of Defence"	18-Jun-08	="Office supplies"	04-Jun-08	15-Jun-08	21536.05	=""	="FULCRUM MANAGEMENT PTY LTD"	18-Jun-08 12:33 PM	

+="CN92753"	"DEFENFE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	22781.11	=""	="CASUARINA STREET PRIMARY SCHOOL"	18-Jun-08 12:33 PM	

+="CN92756"	"Analyser Accessories Package"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	04-Jun-08	13-Jun-08	21835.00	=""	="PERKIN ELMER PTY LTD"	18-Jun-08 12:34 PM	

+="CN92764"	"Waverunner  with trigger and decode option"	="Department of Defence"	18-Jun-08	="Electronic Components and Supplies"	04-Jun-08	20-Jun-08	24750.00	=""	="VICOM AUSTRALIA PTY LTD"	18-Jun-08 12:35 PM	

+="CN92767"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	23-Jun-08	23500.00	=""	="NOETIC SOLUTIONS PTY LTD"	18-Jun-08 12:35 PM	

+="CN92775"	"Site Integration Services"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	28859.90	=""	="BOEING AUSTRALIA LIMITED"	18-Jun-08 12:36 PM	

+="CN92782"	"REPRODUCING MICROFICHE TO ELECTRONIC FORMAT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	07-Dec-07	30-Mar-08	25712.50	=""	="DOCUMENT IMAGING SERVICES"	18-Jun-08 12:37 PM	

+="CN92789"	"CONSULTANCY"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	21945.00	=""	="KINETIC DEFENCE SERVICES PTY LTD"	18-Jun-08 12:38 PM	

+="CN92792"	"TSS Contract: Administration Support to SCIG DSAD DSTO"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Jun-08	30-Jun-08	21000.00	=""	="CHRISTIE BETRO MANAGMENT"	18-Jun-08 12:38 PM	

+="CN92797"	"Research scientist"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	17-Dec-07	30-Jun-08	30000.00	=""	="FORTBURN PTY LTD"	18-Jun-08 12:39 PM	

+="CN92803"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	12-Jun-08	31-Mar-09	21483.00	=""	="HOME WILKINSON LOWRY"	18-Jun-08 12:40 PM	

+="CN92807"	"Bulk order for supply of industrial gas for 3 mths"	="Department of Defence"	18-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	19-May-07	31-Dec-07	27500.00	=""	="BOC GASES AUSTRALIA LTD"	18-Jun-08 12:40 PM	

+="CN92808"	"VENUE HIRE AND CATERING"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	06-Jun-08	30-Jun-08	22000.00	=""	="CLIFTONS OPERATIONS PTY LTD"	18-Jun-08 12:41 PM	

+="CN92809"	"VEGETATION MANGAEMENT SWBTA"	="Department of Defence"	18-Jun-08	="Environmental Services"	12-Nov-07	30-Jun-08	25930.98	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:41 PM	

+="CN92810"	"Contractor for admin support to the BCO"	="Department of Defence"	18-Jun-08	="Personnel recruitment"	12-Nov-07	30-Sep-08	24131.25	=""	="DESKTOP ZOO PERSONNEL"	18-Jun-08 12:41 PM	

+="CN92818"	"RFT - Provision of a Maintenance Support Electrician for DSTO"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	12-Nov-07	30-Jun-09	23034.00	=""	="CHURCH HILL ELECTRICS PTY LTD"	18-Jun-08 12:42 PM	

+="CN92820"	"CONSULTANCY"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	25960.00	=""	="CODARRA ADVANCED SYSTEMS"	18-Jun-08 12:42 PM	

+="CN92824"	"Supply of Grocery to RAAF Base Tindal Ration Store"	="Department of Defence"	18-Jun-08	="Prepared and preserved foods"	12-Jun-08	30-Jun-08	30000.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	18-Jun-08 12:43 PM	

+="CN92835"	"TOSHIBA ESTUDIO 17F FAX MACHINES"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	06-Jun-08	30-Jun-09	25432.00	=""	="TOSHIBA AUST PTY LTD"	18-Jun-08 12:44 PM	

+="CN92852"	"LCD MONITORS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	28985.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 12:46 PM	

+="CN92858"	"Supply of fresh rations to Woodside Barracks"	="Department of Defence"	18-Jun-08	="Prepared and preserved foods"	16-Jun-08	30-Jun-08	25500.00	=""	="KLOSE'S SUPERMARKETS PTY LTD"	18-Jun-08 12:47 PM	

+="CN92860"	"SA2230 - Regional Asbestos Audit"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	02-Jun-08	30-Jun-08	30000.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:47 PM	

+="CN92867"	"Software migration and upgrade"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	10-Jun-08	30-Jun-08	25025.00	=""	="PIVOTAL BUSINESS TECHNOLOGY PTY LTD"	18-Jun-08 12:48 PM	

+="CN92869"	"ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	29-Jan-08	30-Jun-08	26884.65	=""	="SHANGRI-LA HOTEL SYDNEY"	18-Jun-08 12:49 PM	

+="CN92870"	"NQ2015 - Construction of a new Workshop / Vehicle Store  &  Cylone Shelter at CB"	="Department of Defence"	18-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Jun-08	30-Jun-08	23725.63	=""	="SPOTLESS"	18-Jun-08 12:49 PM	

+="CN92891"	"URN-IRR-Q80494   ACMS-1446861 SUPPLY AND DELIVERY OF CABINETS, CUPBOARDS MQS"	="Department of Defence"	18-Jun-08	="Housings and cabinets and casings"	09-May-08	02-Jun-08	21868.00	=""	="DEXION LIVERPOOL"	18-Jun-08 12:51 PM	

+="CN92896"	"VEHICLE LEASE RWG MAY08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	26-May-08	01-Jun-08	24207.45	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:52 PM	

+="CN92901"	"Licenses and support"	="Department of Defence"	18-Jun-08	="Software"	05-Jun-08	30-Jun-08	29567.23	=""	="SYBASE AUSTRALIA PTY LTD"	18-Jun-08 12:53 PM	

+="CN92903"	"REMOVAL OF OLD TARGET CONTAINERS-EX WALLABY"	="Department of Defence"	18-Jun-08	="Containers and storage"	19-May-08	19-Dec-08	24733.39	=""	="PRIMARY INDUSTRIES (QLD) PTY L"	18-Jun-08 12:53 PM	

+="CN92908"	"DISASSEMBLE OF TEMPEST SHELTER & ELECTRICAL DISCONNECTION"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	30-May-08	30-May-08	21510.50	=""	="FARADAY PTY LTD"	18-Jun-08 12:54 PM	

+="CN92910"	"PURCHASE OF KITCHEN EQUIPMENT FOR SECDET"	="Department of Defence"	18-Jun-08	="Institutional food services equipment"	27-May-08	30-May-08	25316.35	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:54 PM	

+="CN92920"	"Maintenance for the period 01/07/2008 - 30/06/2009"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	09-Apr-08	30-Jun-09	22523.60	=""	="ALPHAWEST PTY LTD"	18-Jun-08 12:55 PM	

+="CN92921"	"CAB FARES"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	05-May-08	05-May-08	27805.11	=""	="CAB CHARGE AUST PTY LTD"	18-Jun-08 12:55 PM	

+="CN92926"	"VEHICLE LEASE BAGHDAD MAY08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	28-May-08	31-May-08	20525.07	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92931"	"SOLDIER COMBAT SYSTEMS"	="Department of Defence"	18-Jun-08	="Military rotary wing aircraft"	06-May-08	31-May-08	22000.00	=""	="THE UNIVERISTY OF NEW SOUTH"	18-Jun-08 12:57 PM	

+="CN92936"	"CHP"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	13-Jun-08	30-Jul-08	20000.00	=""	="MALCZEWSKI FAMILY TRUST"	18-Jun-08 12:57 PM	

+="CN92937"	"Training"	="Department of Defence"	18-Jun-08	="Office supplies"	18-Dec-07	30-Jun-08	22000.01	=""	="EFFECTIVE PEOPLE PTY LTD"	18-Jun-08 12:58 PM	

+="CN92950"	"FOOD SERVICES"	="Department of Defence"	18-Jun-08	="Bread and bakery products"	08-May-08	30-Jun-08	27869.49	=""	="PDL TOLL"	18-Jun-08 12:59 PM	

+="CN92952"	"Lease vehicle for CDRE Roger Boyce"	="Department of Defence"	18-Jun-08	="Motor vehicles"	05-Jun-08	30-Jun-08	20111.96	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 01:00 PM	

+="CN92962"	"Ongoing Development and Maintenance of COGNOS Reporting Tools for OHSC Branch - Sing Tang"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	27500.01	=""	="FACE 2 FACE RECRUITMENT"	18-Jun-08 01:01 PM	

+="CN92972"	"Consultancy work required for capability dev'nt"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	11-Dec-06	25-Jun-07	24200.00	=""	="EFFECTIVE PEOPLE PTY LTD"	18-Jun-08 01:02 PM	

+="CN92977"	"Project Controller to support JP2007 2B1 and 2B2"	="Department of Defence"	18-Jun-08	="Business administration services"	06-Jun-08	14-May-09	25311.61	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	18-Jun-08 01:03 PM	

+="CN92965"	"Application Services for April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Information technology consultation services"	01-Apr-08	30-Apr-08	21795.40	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	18-Jun-08 01:04 PM	

+="CN92994"	"3 COMPUTER WORKSTATIONS FOR THE AIR9000 PROJECT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-May-08	21516.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 01:05 PM	

+="CN93002"	"Support Land Operatons Division"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	29-May-08	20-Jun-08	20537.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	18-Jun-08 01:06 PM	

+="CN93006"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="MARK L SLOCKEE"	18-Jun-08 01:07 PM	

+="CN93007"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	21000.00	=""	="DR ROBERT STILL"	18-Jun-08 01:07 PM	

+="CN93008"	"POSTAL SERVICES AT PERSONNEL ADMINISTRATION CENTRE RAYMOND TERRACE"	="Department of Defence"	18-Jun-08	="Mailing services"	29-May-08	30-Jun-08	21800.00	=""	="AUSTRALIA POST"	18-Jun-08 01:07 PM	

+="CN93019"	"Equiptment required for use by ADFCSirt"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	25234.06	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 01:09 PM	

+="CN93020"	"ASSISTANCE TO DEFENCE IN THE SUPPORT OF THE WEBREP"	="Department of Defence"	18-Jun-08	="Management support services"	28-May-08	30-Jun-08	22000.00	=""	="KAZ GROUP LTD"	18-Jun-08 01:09 PM	

+="CN93021"	"SMARTFIRE V4.0 SOFTWARE & MARITIME EXODUS V4.0 SOF TWARE"	="Department of Defence"	18-Jun-08	="Software"	28-May-08	11-Jun-08	20029.03	=""	="GREENWICH UNIVERSITY ENTERPRISES"	18-Jun-08 01:09 PM	

+="CN93022"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	22000.00	=""	="ENGINEERING & SCIENTIFIC SYSTEMS"	18-Jun-08 01:09 PM	

+="CN93023"	"Leased Vehicle"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	28-May-08	30-Jun-10	28258.16	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 01:09 PM	

+="CN93026"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	20000.00	=""	="JAMES D WILSON PTY LTD"	18-Jun-08 01:09 PM	

+="CN93028"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - HARRISTOWN SECURITY AND MAINTENANCE WORKS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	28-May-08	30-Jun-08	26818.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 01:10 PM	

+="CN93039"	"REF: 1499/07-08"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	28-May-08	30-Jun-08	22000.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 01:11 PM	

+="CN93048"	"DAMAGED CABLE IN BUILDING 799 RAAF DARWIN"	="Department of Defence"	18-Jun-08	="Electrical wire and cable and harness"	29-May-08	30-Jun-08	21769.00	=""	="NORTHERN TERRITORY COMMUNICATIONS"	18-Jun-08 01:13 PM	

+="CN93049"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="CALVARY HEALTH CARE ACT LTD"	18-Jun-08 01:13 PM	

+="CN93052"	"Services"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	19-Jun-08	24495.99	=""	="BOEING AUSTRALIA LTD"	18-Jun-08 01:13 PM	

+="CN93064"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="JAMES MASSON"	18-Jun-08 01:15 PM	

+="CN93065"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="DR JOHN MACKAY"	18-Jun-08 01:15 PM	

+="CN93066"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="DAVID LITTLEJOHN"	18-Jun-08 01:15 PM	

+="CN93070"	"PARTS"	="Department of Defence"	18-Jun-08	="Hardware"	29-May-08	07-Jul-08	29284.31	=""	="DIVEX ASIA PACIFIC PTY LTD"	18-Jun-08 01:15 PM	

+="CN93082"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	20000.00	=""	="ROGER TUCK"	18-Jun-08 01:17 PM	

+="CN93084"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	22000.00	=""	="DR STEWART MAY"	18-Jun-08 01:17 PM	

+="CN93086"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	22000.00	=""	="ANDREW C MILLER"	18-Jun-08 01:18 PM	

+="CN93091"	"SOTWARE RENEWAL"	="Department of Defence"	18-Jun-08	="Software"	29-May-08	29-May-08	23226.13	=""	="MICROWAY PTY LTD"	18-Jun-08 01:18 PM	

+="CN93092"	"PRINTING OF MAPS GAC 29/2008"	="Department of Defence"	18-Jun-08	="Paper Materials and Products"	29-May-08	25-Jun-08	26207.01	=""	="PERKICH & ASSOCIATES"	18-Jun-08 01:18 PM	

+="CN93094"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	30000.00	=""	="AHMAD FARSHID"	18-Jun-08 01:19 PM	

+="CN93109"	"Electrical Infrastructure Works Robertson Barracks - NT"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	27-May-08	30-Jun-08	21477.50	=""	="NBC COMMUNICATIONS"	18-Jun-08 01:21 PM	

+="CN93115"	"Cisco Equipment"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	10-Jun-08	27148.83	=""	="ASI SOLUTIONS PTY LTD"	18-Jun-08 01:21 PM	

+="CN93118"	"FFS 30/06/08"	="Department of Defence"	18-Jun-08	="Medical facility products"	27-May-08	30-Jun-09	30000.00	=""	="D B DICKSON PTY LTD"	18-Jun-08 01:22 PM	

+="CN93123"	"20 KEY LOCATION KIT."	="Department of Defence"	18-Jun-08	="Housings and cabinets and casings"	27-May-08	09-Jun-08	23490.50	=""	="AUSTRALIAN SECURITY TECHNOLOGY"	18-Jun-08 01:22 PM	

+="CN93125"	"Training"	="Department of Defence"	18-Jun-08	="Vocational training"	27-May-08	27-Jun-08	23100.00	=""	="CRIMSON INNOVATIONS"	18-Jun-08 01:23 PM	

+="CN93126"	"Multi Computer Switch"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	11-Jun-08	20710.24	=""	="TENIX DATAGATE PTY LTD"	18-Jun-08 01:23 PM	

+="CN93127"	"Defence Houseing annual contribution"	="Department of Defence"	18-Jun-08	="Housings and cabinets and casings"	27-May-08	30-Jun-08	25000.00	=""	="DEFENCE HOUSING AUTHORITY"	18-Jun-08 01:23 PM	

+="CN93132"	"SA2401 WPA Barngaria Monitoring Survey 27-30 May"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	23-May-08	27-May-08	22995.51	=""	="TEITZEL & PARTNERS"	18-Jun-08 01:24 PM	

+="CN93135"	"NQ1756 - ATV Shelter 1&2 RAR"	="Department of Defence"	18-Jun-08	="Project management"	20-May-08	30-Jun-08	27896.00	=""	="SPOTLESS"	18-Jun-08 01:24 PM	

+="CN93136"	"Electrical Infrastructure Works Robertson Barracks - NT"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	27-May-08	30-Jun-08	25300.00	=""	="NBC COMMUNICATIONS"	18-Jun-08 01:24 PM	

+="CN93140"	"SOFTWARE LICENCE"	="Department of Defence"	18-Jun-08	="Software"	27-May-08	21-Jun-08	20055.75	=""	="LANSA PTY LTD"	18-Jun-08 01:25 PM	

+="CN93145"	"FURNITURE"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	27-May-08	12-Jun-08	20904.40	=""	="LIFE FITNESS AUSTRALIA PTY LTD"	18-Jun-08 01:25 PM	

+="CN93158"	"PURCHASE OF MONITORS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	11-Jun-08	24211.00	=""	="DELL COMPUTER PTY LTD"	18-Jun-08 01:27 PM	

+="CN93167"	"SQ REGIONAL RESERVE ESSENTIAL REPAIRS - HARRISTOWN PAINTING AND MINOR WORKS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	28-May-08	30-Jun-08	27187.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 01:28 PM	

+="CN93169"	"Misc Electronic equipment"	="Department of Defence"	18-Jun-08	="Electrical components"	28-May-08	25-Jun-08	23127.50	=""	="STANFORD TECHNOLOGIES PTY LTD"	18-Jun-08 01:28 PM	

+="CN93173"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	27170.00	=""	="CAREY MURPHY & ASSOCIATES"	18-Jun-08 01:29 PM	

+="CN93175"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	30000.00	=""	="DR BRONWYN DEVINE PTY LTD"	18-Jun-08 01:29 PM	

+="CN93178"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	29438.00	=""	="ENTERPRISE MARINE"	18-Jun-08 01:30 PM	

+="CN93185"	"FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	22374.00	=""	="INTERWORX PTY LTD"	18-Jun-08 01:30 PM	

+="CN93191"	"Cisco Equipment"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	10-Jun-08	29543.68	=""	="CERULEAN SOLUTIONS LTD"	18-Jun-08 01:32 PM	

+="CN93195"	"SA2362 - RAAF EDINBURGH GROUNDWATER NETWORK IMPLEMENTATION"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-May-08	30-Jun-08	26341.70	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 01:32 PM	

+="CN93197"	"FRUIT & VEG"	="Department of Defence"	18-Jun-08	="Fruits and vegetables and nuts and seeds"	28-May-08	30-Jul-08	24172.46	=""	="TOWNSVILLE WHOLESALE FRUIT &"	18-Jun-08 01:33 PM	

+="CN93200"	"MEAT"	="Department of Defence"	18-Jun-08	="Meat and poultry products"	28-May-08	30-Jul-08	21111.58	=""	="WULGURU MEAT MARKET PTY LTD"	18-Jun-08 01:33 PM	

+="CN93201"	"SA2726 REGIONAL ENERGY MANAGEMENT PLAN"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-May-08	30-Jun-08	26292.42	=""	="SINCLAIR KNIGHT MERZ PTY LIMITED"	18-Jun-08 01:33 PM	

+="CN93261"	"Office Fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Mar-08	30-Jun-08	29499.80	=""	="National Interiors"	19-Jun-08 07:53 AM	

+="CN93265"	"Office furniture for Caboolture, QLD, relocation"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	10-Jun-08	30-Jun-08	29884.80	=""	="Emtek Furniture"	19-Jun-08 07:54 AM	

+="CN93270"	"48 x HDD for servers"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Office Equipment and Accessories and Supplies"	06-Jun-08	30-Jun-08	29418.58	="ATM08/1053"	="Service Management Advantage Pty Lt"	19-Jun-08 09:07 AM	

+="CN93273"	"Video conferencing equipment for Media Rooms 1 and 2 - 38 Sydney Avenue"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	25839.00	="ATM08/1070"	="CANBERRA PROFESSIONAL EQUIPMENT"	19-Jun-08 09:08 AM	

+="CN93279-A1"	"eHealth Forum in Melbourne"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	17-Jul-08	18-Jul-08	23479.60	="ATM08/1065"	="Rydges on Swanston"	19-Jun-08 09:09 AM	

+="CN93284-A1"	"PCMS Maintenance Support Renewal"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jun-08	31-May-09	27500.00	="CCR/07/2446"	="RANDOM COMPUTING SERVICES PTY LTD"	19-Jun-08 09:10 AM	

+="CN93295"	"5 sets FME Professional Edition"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	30-Jun-08	20542.50	="ATM08/1042"	="MAPINFO AUSTRALIA PTY LTD"	19-Jun-08 09:11 AM	

+="CN93358"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	01-Jun-08	26994.00	=""	="Heyday Group Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93369-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	28050.00	=""	="Drake Australia Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93371-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	25726.80	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:17 PM	

+="CN93366"	"Lease for premises at Corner Plenty and McKimmies Rd Bundoora Victoria"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-06	30-Nov-08	20553.67	=""	="Royal Melbourne Institute of Technology"	19-Jun-08 02:17 PM	

+="CN93396"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Building and Construction Machinery and Accessories"	19-May-08	03-Mar-09	20480.90	=""	="Mossop Group Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93398"	"Professional Legal Fes"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Feb-08	13-Feb-08	26400.00	=""	="CLAYTON UTZ"	19-Jun-08 02:23 PM	

+="CN93422"	"Interpreter services"	="Centrelink"	19-Jun-08	="Writing and translations"	29-May-08	30-Jun-08	24378.30	=""	="Australian High Commission"	19-Jun-08 02:24 PM	

+="CN93423-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	21500.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93426-A1"	"Recruitment Servcies"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	25499.99	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93432"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	15-Jun-08	20493.00	=""	="Diverse Data Communications (ACT)"	19-Jun-08 02:25 PM	

+="CN93436"	"External Training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93437"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93448"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	09-Jun-08	28325.00	=""	="Heyday Group Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93450"	"Office fitout project management for Glen Innes, NSW"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Nov-08	20961.69	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93456-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	28878.30	=""	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93480"	"Relocation of Inter-government Communication Network service"	="Centrelink"	19-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-May-08	30-Sep-08	25410.00	=""	="Department of Finance and Deregulation"	19-Jun-08 02:32 PM	

+="CN93482"	"Office Supplies"	="Centrelink"	19-Jun-08	="Office supplies"	12-May-08	30-Jun-08	20768.00	=""	="PaperlinX Office"	19-Jun-08 02:33 PM	

+="CN93495"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	20-May-08	27-May-08	23100.00	=""	="Write Once Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93496"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	17-Oct-07	28-May-08	24931.52	=""	="IPA Personnel Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93439"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	28-Mar-08	14-Apr-08	27889.99	=""	="CLAYTON UTZ"	19-Jun-08 02:35 PM	

+="CN93500"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	01-Jun-07	31-May-08	21120.00	=""	="Write Once Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93501"	"Hotel and other lodging services"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	30-May-07	29-Jun-08	21220.00	=""	="David Leahey"	19-Jun-08 02:35 PM	

+="CN93512"	"Fitout Furniture"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-May-08	31-Aug-08	28888.22	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:37 PM	

+="CN93516"	"Signage for fitout, Hervey Bay, QLD"	="Centrelink"	19-Jun-08	="Signage and accessories"	30-May-08	30-Jun-08	22743.57	=""	="Signworld Sunshine Coast"	19-Jun-08 02:37 PM	

+="CN93524"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	28589.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93525"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	20790.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93530"	"Advertising"	="Centrelink"	19-Jun-08	="Advertising"	04-Oct-07	30-Jun-08	22550.00	=""	="HMA Blaze Pty Ltd"	19-Jun-08 02:39 PM	

+="CN93533"	"Courier Services"	="Centrelink"	19-Jun-08	="Mail and cargo transport"	20-May-08	30-Jun-08	22000.00	=""	="Toll Priority"	19-Jun-08 02:39 PM	

+="CN93539"	"Storage update at Records Managment Unit"	="Centrelink"	19-Jun-08	="Containers and storage"	21-May-08	30-Jun-08	26991.67	=""	="APC Storage Solutions"	19-Jun-08 02:40 PM	

+="CN93547"	"Subscriptions"	="Centrelink"	19-Jun-08	="Business administration services"	15-May-08	20-Jun-08	27859.70	=""	="Butler Group"	19-Jun-08 02:42 PM	

+="CN93543"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	31-Mar-08	28-Apr-08	23749.11	=""	="MINTER ELLISON"	19-Jun-08 02:45 PM	

+="CN93566"	"Registry Officer - temporary staff member pending position advertisement."	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	08-Jul-08	20966.40	=""	="Manpower Services (Australia) Pty Ltd"	19-Jun-08 02:48 PM	

+="CN93579"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	29537.00	=""	="Honeywell"	19-Jun-08 02:52 PM	

+="CN93580"	"Commercial Office Lease"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	29791.67	=""	="L J Hooker"	19-Jun-08 02:52 PM	

+="CN93594"	"CORPORATE EXPRESS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer servers"	24-Aug-07	24-Aug-07	20558.67	="NA"	="Corporate Express"	19-Jun-08 02:54 PM	

+="CN93601"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	05-Jun-08	05-Jul-08	26074.40	=""	="Symbion"	19-Jun-08 03:15 PM	

+="CN93610"	"Procurement of:  WATCH,WRIST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	19-Jun-08	25911.60	=""	="CITIZEN WATCHES (AUST) Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93612"	"Procurement of:  INDICATOR,DISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	19-Jun-08	21000.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93613"	"Procurement of:  LIGHT,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	19-Jun-08	29750.00	=""	="VERSALUX LIGHTING SYSTEMS"	19-Jun-08 03:39 PM	

+="CN93616"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	22-Aug-08	26852.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93618"	"Procurement of:  PLATE KIT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	10-Jul-08	29502.20	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93636"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	29-Aug-08	22500.00	=""	="PUMPSEAL SALES Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93641"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	24-Oct-08	29940.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93644"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	13-Aug-08	20340.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 03:44 PM	

+="CN91341"	"Report review of functions and operations of the Space Regulation and Coordination Section"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Temporary personnel services"	10-Jun-08	30-Jun-08	27225.00	="06/ACMA107"	="SMS Management and Technology Limited"	19-Jun-08 03:45 PM	

+="CN93663"	"Procurement of:  CONVERTER,POTENTIAL,STATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	17-Sep-08	27240.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93643"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	26750.57	=""	="LAND ROVER AUSTRALIA"	19-Jun-08 03:48 PM	

+="CN93677"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	22-May-09	21164.88	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93681"	"Procurement of:  BEARING,SLEEVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	23-Sep-08	27229.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93683"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	20-Jun-08	27845.40	=""	="LAMINAR FLOW Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93684"	"Procurement of:  RESISTOR,VARIABLE,NONWIRE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jun-08	25749.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93689"	"Procurement of:  HOOK,PELICAN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	22-Nov-08	26843.40	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93692"	"Procurement of:  METER,ELECTRICAL FREQUENCY;  WATTMETER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	22545.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93696"	"Procurement of:  DRAINAGE,AUTOMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	18-Aug-08	22533.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93703"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	19-May-09	21003.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93705"	"Procurement of:  VALVE,FLOAT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	30-Sep-08	28332.60	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93724"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Dec-08	27828.60	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93732"	"Procurement of:  ANCHOR,MARINE,FLUKED;  ANCHOR,MARINE,FLUKED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	19-Oct-08	21533.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93735"	"Procurement of:  PLATE,CATHODE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	15-Aug-08	20600.00	=""	="TSF ENGINEERING Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93737"	"Procurement of:  CLOCK,WALL;  DISPLAY,OPTOELECTRONIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	22-Jul-08	26960.00	=""	="INGRAMS CLOCKS Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93753"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	10-Oct-08	29000.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:02 PM	

+="CN93760"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	21870.10	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93764"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	22293.80	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93765"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	25708.85	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93777"	"Procurement of:  HEAT GUN, THERMOPLASTIC WELDING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	01-Jul-08	27000.00	=""	="PLASTRAL Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93778"	"Procurement of:  FACE ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	29-Jul-08	26774.40	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93780"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	22-Dec-08	29784.58	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93782"	"Procurement of:  DETECTOR KIT,CHEMICAL AGENT;  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	20400.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93785"	"Procurement of:  SHEET,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	28-Aug-08	22000.00	=""	="JBM AGENCIES Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93799"	"Procurement of:  ELEMENT,REVERSE OSM;  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	11-Aug-08	25975.82	=""	="ASC Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93803"	"Procurement of:  INDICATOR TUBE,GAS;  TUBE SET,GAS-VAPOUR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	19-Jun-08	20220.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93807"	"Procurement of:  GUIDE,TORSIONAL VIBRATION DAMPER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	28-Aug-08	23617.44	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Jun-08 04:10 PM	

+="CN93811"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Jun-08	20000.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93812"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	24-Aug-08	23040.00	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93818"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,STOP-RELEASE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	27-Sep-08	22581.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 04:12 PM	

+="CN93844"	"DESERT FOX BOOTS"	="Department of Defence"	19-Jun-08	="Safety footwear"	26-Mar-08	19-Jun-08	27225.00	=""	="SASSPORT"	19-Jun-08 05:01 PM	

+="CN93847"	"Printing NAT71874 Concesions for small business entities"	="Australian Taxation Office"	19-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Jun-08	03-Jul-08	28388.89	=""	="Blue Star Print Group"	19-Jun-08 05:58 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val300000to999999999.xls
@@ -1,1 +1,182 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91118"	"Consultancy service to assist with the implementation of an EDRMS (DPS08004)"	="Department of Parliamentary Services"	17-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	31-Mar-10	980200.00	="DPS08004"	="Opticon Australia"	17-Jun-08 09:17 AM	

+="CN91119"	"Implementation and extended warranty for a Digital Audio System (DPS07090)"	="Department of Parliamentary Services"	17-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	01-Aug-14	990000.00	="DPS04175"	="FTR Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91120"	"Provision of Internet Access (DPS08023)"	="Department of Parliamentary Services"	17-Jun-08	="Internet services"	05-Jun-08	26-Nov-11	356400.00	="DPS06088"	="Soul Pattinson Telecomm'cations P/L"	17-Jun-08 09:18 AM	

+="CN91158"	"Provision of cleaning services to 38 and 44 Sydney Ave and Fyshwick Store"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Building cleaning services"	01-Aug-05	13-Mar-08	618503.60	="DCON/04/153"	="M&M Rolfe Cleaning Services Pty Ltd"	17-Jun-08 10:28 AM	

+="CN91160-A3"	"Provision of services in relation to Microsoft SharePoint application"	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	14-May-10	475038.40	="RFT 8-2007"	="Clicks Recruit Pty Ltd"	17-Jun-08 10:34 AM	

+="CN91161"	"Provision of security guarding and patrol services to Departmental premises"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Security guard services"	01-Mar-07	01-Mar-10	3040608.00	="CCR/06/2088"	="Chubb Security Personnel Pty LTd"	17-Jun-08 10:37 AM	

+="CN91163"	"4th Quarter IT Service Charges"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Information technology consultation services"	01-Oct-07	31-Dec-07	345920.30	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:45 AM	

+="CN91167-A1"	"08/2765 - Design Consultant - 1599-2004 - C&B Services Panel 06/1599 (CPE004922-1)"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	20-May-08	29-Aug-08	314600.00	=""	="2nd Road Pty Ltd"	17-Jun-08 10:45 AM	

+="CN91228-A4"	"Provision of services in relation to software testing to support applications development"	="Australian Federal Police"	17-Jun-08	="Computer Equipment and Accessories"	01-Jul-08	14-Jan-11	405232.57	="RFT 8-2007"	="Southern Cross Computing Pty Limited"	17-Jun-08 10:55 AM	

+="CN91323"	"Internal audit services"	="Department of Broadband Communications and the Digital Economy"	17-Jun-08	="Audit services"	01-Jul-06	30-Aug-08	412500.00	="DCON/05/53"	="Protiviti Pty Ltd"	17-Jun-08 11:09 AM	

+="CN91331-A3"	"Provision of  Information Technology security architecture services"	="Australian Federal Police"	17-Jun-08	="Computer services"	01-Jul-08	30-Jun-10	607367.23	=""	="Frontier Group Australia Pty Limited"	17-Jun-08 11:10 AM	

+="CN91365"	"Firewall network security equipment for its Sydney and Norwest Offices."	="Reserve Bank of Australia"	17-Jun-08	="Firewall network security equipment"	01-Aug-08	31-Aug-09	1685888.31	="RBAST.191007"	="Alphawest Data Services Pty Ltd"	17-Jun-08 11:15 AM	

+="CN91577"	"TASK 1125-4 INTEGRATION OF USQ125 LINK 11 DTS & RCU INTO ANZAC CLASS C2 SIMULATOR"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jun-09	1255854.49	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 11:43 AM	

+="CN91610"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	15151414.92	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:46 AM	

+="CN91618"	"Teamcentre Maintenance & Support FY07/08 and FY08/09"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Jun-08	30-Jun-09	879592.00	=""	="PRODUCT LIFECYCLE MANAGEMENT"	17-Jun-08 11:46 AM	

+="CN91624"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	72617987.45	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:46 AM	

+="CN91627"	"CCP4 TO C338529 - L3 COMMS CANADA STRUCTURAL REFURBISHMENT PROGRAM2 FOR F/A-18 HORNET"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	03-Jun-08	30-Jun-10	6056157.00	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:47 AM	

+="CN91654"	"CLOSE OUT OF RTP RISKS"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Sep-08	316708.56	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:49 AM	

+="CN91670"	"EL/L-8222 Active RF ECM Pod"	="Defence Materiel Organisation"	17-Jun-08	="Missile and rocket launchers"	03-Jun-08	28-Jun-12	4274600.00	=""	="ELTA SYSTEMS LTD"	17-Jun-08 11:50 AM	

+="CN91686"	"EMA CLASS PROJECT MANAGEMENT TEAMS - 01 JUN 08 - 30 JUN 09"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	30-May-08	30-Jul-09	920581.20	=""	="JACOBS AUSTRALIA"	17-Jun-08 11:51 AM	

+="CN91698"	"Costs associated with Phase A servicing to aircraft 875"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	30-May-08	08-Aug-08	484326.16	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 11:52 AM	

+="CN91704"	"This purchase is raised to Supply the following BP Testing.  Quote reference is QT001554 Rev 2.   Te"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	30-May-08	30-Aug-08	695983.33	=""	="HELITECH DIV OF SIKORSKY"	17-Jun-08 11:52 AM	

+="CN91708"	"SURVEY & QUOTE 30 - ADVANCE FUNDING FOR CCP4 ACTIVITIES - C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	2760078.51	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 11:52 AM	

+="CN91712"	"PROBITY AUDITOR FOR THE ASIPA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	29-May-08	30-Jun-13	3025000.00	=""	="KPMG AUSTRALIA"	17-Jun-08 11:52 AM	

+="CN91718"	"SURVEY & QUOTE 23 - ADVANCE FUNDING FOR CCP4"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	1055596.00	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 11:53 AM	

+="CN91752"	"Engineering in support of the structural integrity of the F-111"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	02-Jun-08	30-May-09	392700.00	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	17-Jun-08 11:55 AM	

+="CN91759"	"IRSS CTD ORDER PH2A"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	02-Jun-08	11-Nov-08	663273.61	=""	="GKN AEROSPACE ENGINEERING SERVICES"	17-Jun-08 11:56 AM	

+="CN91775"	"Satellite Equipment"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	02-Jun-08	31-Dec-08	3672460.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:57 AM	

+="CN91777"	"Trust account financial year 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	02-Jun-08	24-Jun-08	3553337.19	=""	="NATO SEASPARROW SURFACE MISSILE SYS"	17-Jun-08 11:57 AM	

+="CN91779"	"Trust account Financial year 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	02-Jun-08	24-Jun-08	3563195.53	=""	="NATO SEASPARROW SURFACE MISSILE SYS"	17-Jun-08 11:57 AM	

+="CN91781"	"BLANKET RAISED FOR THE SUPPLY OF AUTOMOTIVE DIESEL TO VARIOUS RAN and  FOREGIN VESSELS, WITHIN AUS"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	02-Jun-08	30-Jun-08	605000.00	=""	="SHELL CO OF AUSTRALIA LTD"	17-Jun-08 11:57 AM	

+="CN91814"	"CIRCUIT CARD ASSEMBLEY"	="Defence Materiel Organisation"	17-Jun-08	="Electrical components"	05-Jun-08	27-Mar-09	557271.00	=""	="THALES AUSTRALIA LIMITED"	17-Jun-08 12:00 PM	

+="CN91816"	"SPROCKET WHEEL CARRIERS"	="Defence Materiel Organisation"	17-Jun-08	="Bearings and bushings and wheels and gears"	05-Jun-08	16-Jun-09	390115.00	=""	="OWEN INTERNATIONAL PTY LTD"	17-Jun-08 12:00 PM	

+="CN91824"	"3057 HMAS ARUNTA DSRA06/IMAV07"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	31-Dec-08	8393388.62	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:00 PM	

+="CN91830"	"TASK 3056 HMAS WARRAMUNGA SRA05 - PROC STRATEGY - LOE AND TCE AGREEMENT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Dec-08	7040000.00	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:01 PM	

+="CN91844-A1"	" TASK 4169-4 HMAS PERTH SRA01/IMAV02 "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	23-Jun-11	2216705.47	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:02 PM	

+="CN91854"	"FMS Case for the purchase of Kiowa Spares"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	29-May-08	30-Jun-11	2129000.00	=""	="FMS ACCOUNT"	17-Jun-08 12:02 PM	

+="CN91857"	"Modern 155mm Artillery Ammunition Varios"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	02-Jun-08	31-Dec-08	8175613.35	=""	="FMS ACCOUNT"	17-Jun-08 12:02 PM	

+="CN91872"	"TASK 4169AF1-4 HMAS PERTH SRA01/IMAV02"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-09	4748008.27	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:04 PM	

+="CN91931"	"Simunition 5.56mm Paint Marking"	="Defence Materiel Organisation"	17-Jun-08	="Ammunition"	04-Jun-08	30-Jun-08	329868.00	=""	="BLP TRAINING & SERVICES"	17-Jun-08 12:09 PM	

+="CN91933"	"Rework of airconditioner kits and retrofit of pre- airconditioner kits in the Mack R-series vehicles"	="Defence Materiel Organisation"	17-Jun-08	="Environmental control systems"	04-Jun-08	30-Jun-09	1987004.98	=""	="CRISP-AIR PTY LTD"	17-Jun-08 12:09 PM	

+="CN91939"	"Services for the TA Calibration Facility"	="Defence Materiel Organisation"	17-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	31-Dec-08	1433797.33	=""	="THALES UNDERWATER SYSTEMS P/L"	17-Jun-08 12:09 PM	

+="CN91953"	"SMB TOM THUMB installation of POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	473816.20	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91955"	"additional three C-Max side scan sonars and winch"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	344852.20	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91963"	"SMB JOHN GOWLLAND installation of  POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	430050.50	=""	="AIMTEK PTY LTD"	17-Jun-08 12:11 PM	

+="CN91974"	"BEARING SLEEVE"	="Defence Materiel Organisation"	17-Jun-08	="Bearings and bushings and wheels and gears"	05-Jun-08	27-Feb-09	361209.25	=""	="IKAD ENGINEERING"	17-Jun-08 12:12 PM	

+="CN91982"	"Refurbishment of Enhanced Combat Body Armour"	="Defence Materiel Organisation"	17-Jun-08	="Safety apparel"	05-Jun-08	30-Jul-08	366688.86	=""	="HELLWEG INTERNATIONAL"	17-Jun-08 12:13 PM	

+="CN91986"	"Test and Evaluation Support Services"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	05-Jun-08	30-Jun-08	596601.60	=""	="SME GATEWAY LIMITED"	17-Jun-08 12:13 PM	

+="CN91988"	"SMB MEDA installation of POS-MV, CMAX and CARIS HIPS and SIPS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	526840.60	=""	="AIMTEK PTY LTD"	17-Jun-08 12:13 PM	

+="CN91994"	"SMB DUYFKEN installation of POS-MV, CMAX and CARIS"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	790713.00	=""	="AIMTEK PTY LTD"	17-Jun-08 12:14 PM	

+="CN92018"	"HMAS KANIMBLA MAJOR DOCKING PM"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	27-Jun-08	514006.70	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 12:15 PM	

+="CN92025"	"SUPPLY OF AVIATION FUEL"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	10-Jun-08	30-Jun-08	346196.35	=""	="WORLD FUEL SERVICES LTD DEPT 2458"	17-Jun-08 12:16 PM	

+="CN92029"	"DLSS Business Support"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	12-Nov-07	13-Jun-09	1598900.01	=""	="KPMG"	17-Jun-08 12:17 PM	

+="CN92031"	"BULK ORDER: SUPPLY OF PAINT TO THE RAN"	="Defence Materiel Organisation"	17-Jun-08	="Paints and primers and finishes"	11-Nov-07	30-Jun-08	330000.00	=""	="INTERNATIONAL PAINTS"	17-Jun-08 12:17 PM	

+="CN92072"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONT MARINE 001.01."	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	08-May-08	30-May-08	556817.55	=""	="BP AUSTRALIA LTD"	17-Jun-08 12:20 PM	

+="CN92076"	"Aircraft Spares"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	12-Jun-08	15-Jul-08	531467.55	=""	="FLIGHT DATA SYSTEMS PTY LTD"	17-Jun-08 12:20 PM	

+="CN92084"	"HMAS PERTH SRA01/IMAV02 EMA"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Mar-08	31-Jan-09	6600000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:20 PM	

+="CN92086"	"ORDER RAISED IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF STANDING OFFER JFLA MARINE 001.01"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	11-Jun-08	30-Jun-08	1834046.95	=""	="BP AUSTRALIA LTD"	17-Jun-08 12:21 PM	

+="CN92105"	"Land 58.3 LOTE Procure S&T Mods Kits and Parts"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	30-May-08	30-Jun-09	302470.37	=""	="RAYTHEON AUSTRALIA"	17-Jun-08 12:22 PM	

+="CN92125"	"DSA PREPAYMENT Interagency Payment"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-08	25000000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:24 PM	

+="CN92133"	"DSA between DMO and JLC"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	1496000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:25 PM	

+="CN92139"	"TFWSSF Engineering Services in Support of AIR5400 Requirements"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	12-Nov-07	30-Sep-08	782325.01	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:26 PM	

+="CN92149"	"TLSA for 07/08"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-May-08	30-Jun-08	1571758.12	=""	="ASC PTY LTD"	17-Jun-08 12:28 PM	

+="CN92151-A1"	" TS1045-3 GROUP TCE DEVELOPMENT - TENIX "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	12-Nov-07	16-Mar-11	957656.10	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:28 PM	

+="CN92155"	"Delivery of Logistics Systems Training July 06 - June 08"	="Defence Materiel Organisation"	17-Jun-08	="Education and Training Services"	05-Jun-08	30-Jun-08	1650000.00	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	17-Jun-08 12:29 PM	

+="CN92159"	"M2A1 BOX RENTAL AGREEMENT"	="Defence Materiel Organisation"	17-Jun-08	="Packaging materials"	05-Jun-08	30-Jun-08	352962.06	=""	="PENTARCH PTY LTD"	17-Jun-08 12:29 PM	

+="CN92161"	"Design, Manufacture of Specialist Modifications to Base Vehicles"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Jun-08	26-Dec-08	868171.65	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:30 PM	

+="CN92166"	"DEEPER MAINTENANCE OF AIRCRAFT"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	12-Nov-07	16-Jun-08	440410.49	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 12:30 PM	

+="CN92176"	"PROCUREMENT QTY 12 COACHES CONL V9-203888"	="Defence Materiel Organisation"	17-Jun-08	="Passenger motor vehicles"	28-May-08	29-May-09	5899740.00	=""	="VOLVO TRUCK AND BUS SYDNEY"	17-Jun-08 12:32 PM	

+="CN92184"	"Services Contract"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	28-May-08	30-Nov-09	1650000.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:33 PM	

+="CN92186"	"Renewal of INMARSAT Account"	="Defence Materiel Organisation"	17-Jun-08	="National Defence and Public Order and Security and Safety Services"	28-May-08	30-Jun-08	780000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:33 PM	

+="CN92216"	"PART PAYMENT OF KIOWA ENGINE PARTS"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-08	388232.38	=""	="AVIATION TURBINE OVERHAUL"	17-Jun-08 12:37 PM	

+="CN92217"	"10,000 LABOUR  HOURS FOR MIA1 SUPPORT TO 1ST ARMOURED REGIMENT. TRAVEL AND ACCOMMODATION"	="Defence Materiel Organisation"	17-Jun-08	="Travel facilitation"	29-May-08	01-Jul-08	1005599.89	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:37 PM	

+="CN92218"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16301"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	336206.01	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:37 PM	

+="CN92222"	"The terms and conditions of this Purchase Order ar Contract C388580."	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	27-May-08	30-Oct-11	80732254.83	=""	="ELTA SYSTEMS LTD"	17-Jun-08 12:38 PM	

+="CN92234"	"LAP Delivery Management Services"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	16-May-08	30-Jun-09	393000.00	=""	="BUSINESS SYSTEMS CONSULTANCY PTY"	17-Jun-08 12:39 PM	

+="CN92237"	"Provision of Services as Team Leader (Sea)"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	22-May-08	30-Jun-09	323867.19	=""	="KELLOGG BROWN & ROOT PTY LTD"	17-Jun-08 12:40 PM	

+="CN92244"	"POSITION 0 TEARDOWN - SURVEY & QUOTE 23 HUGPH3.2 - CAPO C338529"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	27-May-08	31-May-08	300322.66	=""	="L-3 COMMUNICATIONS MAS (CANADA) INC"	17-Jun-08 12:40 PM	

+="CN92250"	"Aircraft Towing Super Heavy Towmotors"	="Defence Materiel Organisation"	17-Jun-08	="Machinery and transport equipment manufacture"	27-May-08	30-Sep-09	7038730.98	=""	="TUG TECHNOLOGIES CORPORATION"	17-Jun-08 12:41 PM	

+="CN92253"	"Vendor Quote: ES-TXA-MPS-1093 TD Number: 192"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	27-May-08	20-Dec-08	392992.60	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:42 PM	

+="CN92265"	"DEVELOP THE ANZAC CLASS SAFETY MANAGEMENT SYSTEM STAGE 1"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	27-May-08	30-Jun-09	346310.80	=""	="AMOG CONSULTING"	17-Jun-08 12:43 PM	

+="CN92269"	"Chief Engineering Support"	="Defence Materiel Organisation"	17-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	27-May-08	30-Jun-09	482625.00	=""	="ROB DOBSON & ASSOCIATES PTY LTD"	17-Jun-08 12:44 PM	

+="CN92311"	"Monthly Black Hawk Deep Maintenance payment to BAE Archerfield for ongoing R3 servicing."	="Defence Materiel Organisation"	18-Jun-08	="Military rotary wing aircraft"	16-Jun-08	31-Dec-08	660046.00	=""	="BAE Systems Aust Military Air Support"	18-Jun-08 07:45 AM	

+="CN92322"	"Provisions for Software Maintenance Services"	="Department of Immigration and Citizenship"	18-Jun-08	="Software maintenance and support"	29-Sep-04	29-Jun-09	950556.00	=""	="Borland Australia Pty Ltd"	18-Jun-08 10:08 AM	

+="CN92323-A1"	"Variation to contract: Security Systems Long Term Maintenance and EBI Rollout Installation and reconfiguration of new security systems in Perth office in 2008"	="Australian Securities and Investments Commission"	18-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-Jul-07	30-Jun-12	474533.00	=""	="Intec 1 Pty Limited"	18-Jun-08 10:16 AM	

+="CN92334-A6"	"Provision of software implementation, license and support for a Computer Aided Dispatch (CAD) system"	="Australian Federal Police"	18-Jun-08	="Software"	01-Jan-06	31-Dec-10	4180056.44	=""	="Intergraph Corporation Pty Ltd"	18-Jun-08 10:45 AM	

+="CN92351"	"HQJOC PROJECT-ELECTROBOARD SOLUTIONS(AUDIO VISUAL SCREENS)."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-08	2422061.39	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	18-Jun-08 11:36 AM	

+="CN92363"	"CONTACT TONY BUTLER 08 8935 4622."	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	03-Jun-08	30-Jun-08	558465.00	=""	="DOWNER EDI WORKS PTY LTD"	18-Jun-08 11:38 AM	

+="CN92384"	"SERVICE POINT-AUDIO VISUAL EQUIPTMENT-TELECONFEREN"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-09	539345.39	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	18-Jun-08 11:41 AM	

+="CN92394"	"Service Contract P-04-05301-000--28 Term of Service 24-June-08 to 23-June-09"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	23-Jun-09	2381989.83	=""	="ORACLE CORPORATION AUSTRALIA"	18-Jun-08 11:42 AM	

+="CN92406"	"File Reference Number:2006/1135914/1 Contractor Provide CDd for JP8001"	="Department of Defence"	18-Jun-08	="Project management"	03-Jun-08	31-Jan-09	334759.48	=""	="CODARRA ADVANCED SYSTEMS"	18-Jun-08 11:44 AM	

+="CN92407"	"Line1 is for Geoff Wynn's Services Ref CIOG/180/08"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	04-May-09	422400.00	=""	="PAXUS AUSTRALIA PTY LTD"	18-Jun-08 11:44 AM	

+="CN92416"	"RATES AND WATER METERS FOR 50-354 UNIVERSITY RD, MURRAY.  PROPERTY 238750"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	1338800.00	=""	="TOWNSVILLE CITY COUNCIL"	18-Jun-08 11:46 AM	

+="CN92424"	"SUPPLY OF LPG"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	352000.00	=""	="ORIGIN ENERGY PTY LTD"	18-Jun-08 11:47 AM	

+="CN92427"	"FACOPS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	1045000.00	=""	="MCMAHON SERVICES AUSTRALIA PTY LTD"	18-Jun-08 11:47 AM	

+="CN92429"	"FACOPS"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	935218.90	=""	="A.G. O'CONNOR PTY LTD"	18-Jun-08 11:47 AM	

+="CN92478"	"REPAINTING & REPLACE FLOOR COVERINGS"	="Department of Defence"	18-Jun-08	="Project management"	30-May-08	30-Jun-09	1000000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	18-Jun-08 11:54 AM	

+="CN92496"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-09	339404.01	=""	="IMPART CORPORATION PTY LTD"	18-Jun-08 11:56 AM	

+="CN92498"	"OVERALL MANAGEMENT AND COORDINATION OF THE ADF LON TEAMWORK AWARDS. THIS SUPPORT INCLUDES EXPERTISE"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-May-08	30-Jun-08	660000.00	=""	="GEORGE PATTERSON Y & R"	18-Jun-08 11:57 AM	

+="CN92505"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	1698399.78	=""	="INSITEC"	18-Jun-08 11:58 AM	

+="CN92523"	"DMO BATTERY CHARGING FACILITY 1 FD BTY CONSTRUCTION"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-08	2396082.40	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:00 PM	

+="CN92536"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Jun-08	6809000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 12:02 PM	

+="CN92549"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	29-May-10	561634.70	=""	="CLARIUS GROUP LIMITED"	18-Jun-08 12:05 PM	

+="CN92569"	"DEVELOPMENT COSTS"	="Department of Defence"	18-Jun-08	="Marine craft systems and subassemblies"	05-Jun-08	30-Jun-09	905723.00	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 12:08 PM	

+="CN92571"	"HQJOC PROJECT-HP-HP SERVERS/THICK CLIENT TERMINALS"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-09	901710.89	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 12:08 PM	

+="CN92587"	"WTSS OAKEY. WTSS OAKEY HEAD CONTRACT."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-09	1721325.10	=""	="LAING O'ROURKE AUSTRALIA"	18-Jun-08 12:10 PM	

+="CN92589"	"MO SERVICES"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	05-Jun-08	27-Apr-11	801185.28	=""	="PETER NEWBERY"	18-Jun-08 12:10 PM	

+="CN92599"	"10 AND 25 YEAR CRANE AND HOIST MAINTENANCE"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	05-Jun-08	30-Jun-08	465118.01	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	18-Jun-08 12:12 PM	

+="CN92603"	"145 Dell Precision M6300n series (2.4 GHz) laptops for LWDC Simulation Wing Sim Lan"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	334950.00	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 12:12 PM	

+="CN92626"	"US Army FMS Training Case"	="Department of Defence"	18-Jun-08	="Education and Training Services"	30-May-08	30-Jun-11	4258000.00	=""	="FMS ACCOUNT"	18-Jun-08 12:15 PM	

+="CN92640"	"Quicklook Manager"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	06-Jun-08	30-Jun-10	475918.01	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 12:17 PM	

+="CN92668"	"REPLACE UNDERGROUND WATER RETICULATION STAGE 2"	="Department of Defence"	18-Jun-08	="Water and wastewater treatment supply and disposal"	06-Jun-08	30-Jun-08	794450.80	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:21 PM	

+="CN92675"	"RAAF BASE WAGGA - FENCING CONSTRUCTION AIRFIELD"	="Department of Defence"	18-Jun-08	="Project management"	04-Jun-08	30-Jun-09	350000.00	=""	="SPOTLESS DEFENCE SERVICES PTY LT"	18-Jun-08 12:22 PM	

+="CN92686"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	310000.00	=""	="TERENCE R COLE"	18-Jun-08 12:24 PM	

+="CN92708"	"RATES AND WATER METERS FOR 441 INGHAM RD, GARBUTT PROPERTY NO.60810"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	471300.00	=""	="TOWNSVILLE CITY COUNCIL"	18-Jun-08 12:27 PM	

+="CN92719"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Sep-08	2165000.20	=""	="KPMG"	18-Jun-08 12:28 PM	

+="CN92761"	"Office Machines"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	30-Jun-13	592941.00	=""	="CANON AUSTRALIA PTY LTD"	18-Jun-08 12:34 PM	

+="CN92785"	"PROVISION OF SERVICES-POINT COOK AIRFIELD AND RAAF BASE EAST SALE PAVEMENT MAINTENANCE PROJECT"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	11-Jun-08	30-Jun-08	505587.50	=""	="PMP BITUMEN"	18-Jun-08 12:37 PM	

+="CN92827"	"HMAS Cairns - REDEVELOPMENT"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-10	1811822.74	=""	="THIESS PTY LTD"	18-Jun-08 12:43 PM	

+="CN92833"	"This is a blanket purchase order to cover the logi services purchased through Unity Resources for th"	="Department of Defence"	18-Jun-08	="Hardware"	11-Jun-08	30-Jun-08	380276.60	=""	="UNITY RESOURCES GROUP PTY LTD"	18-Jun-08 12:44 PM	

+="CN92849"	"COST FOR ADDITIOAL STUDIO OVERAGES FOR THE PERIOD DECEMBER 2007, AS PER LETTER ATTACHED TO PURCHASE"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-May-08	30-Jun-08	400328.50	=""	="GEORGE PATTERSON Y & R"	18-Jun-08 12:46 PM	

+="CN92862"	"ASSET ROAD MAINTENANCE SWBTA"	="Department of Defence"	18-Jun-08	="Roads and landscape"	12-Jun-08	30-Jun-08	682550.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:48 PM	

+="CN92866"	"ELECTRICITY SUPPLY"	="Department of Defence"	18-Jun-08	="Utilities"	12-Jun-08	30-Jun-08	2750000.00	=""	="INTEGRAL ENERGY"	18-Jun-08 12:48 PM	

+="CN92874"	"CONTINUITY OF GOVERNMENT"	="Department of Defence"	18-Jun-08	="Printed media"	19-May-08	30-Jun-08	454671.14	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 12:49 PM	

+="CN92900-A1"	"communication channels"	="Department of Defence"	18-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	16-Jun-08	30-Jun-08	1360535.66	=""	="STRATOS"	18-Jun-08 12:52 PM	

+="CN92944"	"FP&E REACTIVE MAINTENANCE REIMBURSEABLES"	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	27-May-08	30-Jun-08	410457.98	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	18-Jun-08 12:59 PM	

+="CN92955"	"External recla to 4 bldgs and removal of cladding and reroofing 1 bldg at HMAS Cairns"	="Department of Defence"	18-Jun-08	="General building construction"	12-Nov-07	23-Dec-08	559989.10	=""	="SPOTLESS"	18-Jun-08 01:00 PM	

+="CN92956"	"Reservation fee for 25khz UHF channel with Paradigm SkyNet 5"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	11-Jun-08	30-Apr-11	5920503.22	=""	="PARADIGM SECURE COMMUNICATIONS LTD"	18-Jun-08 01:00 PM	

+="CN92969"	"REPAIR WORKS ON ROADS AND FIRE TRAILS"	="Department of Defence"	18-Jun-08	="Roads and landscape"	09-May-08	30-Jun-08	322251.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 01:02 PM	

+="CN92974"	"HARDENED AND NETWORKED ARMY - ADELAIDE FACILITIES"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	06-Jun-08	30-Jun-08	771414.60	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 01:02 PM	

+="CN92980"	"Provision of Software Engineering Support for the Shapes Vector System - Amend 2"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	20-May-09	879689.00	="2004/1040967"	="CSC AUSTRALIA PTY LTD"	18-Jun-08 01:03 PM	

+="CN92999"	"PURCHASE OF MOBILE HARDWARE HANDSETS  &  LIFES ACCESS."	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	29-May-08	23-Jun-08	314999.99	=""	="TELSTRA"	18-Jun-08 01:06 PM	

+="CN93001"	"PURCHASE OF 1000 WIRELESS DATA CARDS @ $319.00 GST QUOTE DATED 28 MAY 08 (ROSCOE WHEELER)"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	29-May-08	23-Jun-08	350900.00	=""	="TELSTRA"	18-Jun-08 01:06 PM	

+="CN93003"	"HMAS PENGUIN PROGRAM OF WORKS ARUP PB - PM/CA"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	29-May-08	30-Jun-10	413860.00	=""	="ARUP"	18-Jun-08 01:06 PM	

+="CN93009"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	01-Jul-08	1790800.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	18-Jun-08 01:07 PM	

+="CN93029"	"2000 UNITS NOKIA HANDSETS  &  ACCESSORY PACKS QUOTE DATED 22 MAY 08 (JOHN KELES)"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	29-May-08	15-Jun-08	378796.00	=""	="CRAZY JOHNS"	18-Jun-08 01:10 PM	

+="CN93041"	"Notebook Computers"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	10-Jun-08	463963.50	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 01:11 PM	

+="CN93045"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	30-Dec-18	1247492.40	=""	="F1 SOLUTIONS"	18-Jun-08 01:12 PM	

+="CN93046"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	20-Jul-08	1165960.40	=""	="BOSTON CONSULTING GROUP"	18-Jun-08 01:12 PM	

+="CN93072"	"TASK MANAGEMENT SERVICES AND CHANGEPOINT LICENCES"	="Department of Defence"	18-Jun-08	="Electronic hardware and component parts and accessories"	29-May-08	30-Jun-08	783340.80	=""	="COMPUWARE ASIA-PACIFIC"	18-Jun-08 01:16 PM	

+="CN93099"	"Lease of 8 x RAAF Coaches FY08/09"	="Department of Defence"	18-Jun-08	="Passenger motor vehicles"	27-May-08	30-Jun-09	300000.80	=""	="LEASEPLAN AUSTRALIA LTD"	18-Jun-08 01:19 PM	

+="CN93107"	"Transmission Services"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	27-May-08	31-Oct-10	364234.20	=""	="VERIZON AUSTRALIA PTY LTD"	18-Jun-08 01:20 PM	

+="CN93117"	"Imagery Package"	="Department of Defence"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-May-08	30-Jun-08	480582.52	=""	="MAPINFO AUSTRALIA PTY LTD"	18-Jun-08 01:22 PM	

+="CN93142"	"HMAS ALBATROSS REDEVELOPMENT STAGE 3 PM/CA SERVICES FOR HMAS ALBATROSS REDEVELOPMENT ST"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-10	603732.80	=""	="URS AUSTRALIA PTY LTD"	18-Jun-08 01:25 PM	

+="CN93165"	"PITCH BLACK 08 RELATED COSTS"	="Department of Defence"	18-Jun-08	="Crowd control equipment"	28-May-08	30-Jun-08	495600.00	=""	="MILSKIL PTY LTD"	18-Jun-08 01:28 PM	

+="CN93172"	"FEES-INGLEBURN-PLANNING MANAGEMENT."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	28-May-08	30-Jun-09	322256.00	=""	="GHD PTY LTD"	18-Jun-08 01:29 PM	

+="CN93225"	"Banking Services including Credit Cards"	="CRS Australia"	18-Jun-08	="Banking institutions"	25-Jan-05	25-Jan-11	490000.00	="CRS03/04"	="Westpac Banking Corporation"	18-Jun-08 03:24 PM	

+="CN93276-A2"	"BIA Round 1 Training - Skills Development"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	01-Nov-08	440644.01	="ATM08/01035"	="Techlink Pty Ltd"	19-Jun-08 09:08 AM	

+="CN93297-A1"	"E-Security Education Package"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-11	847217.26	="DCON/08/13"	="Roar Film Pty Ltd"	19-Jun-08 09:11 AM	

+="CN93309-A1"	" Cloth Coated "	="Defence Materiel Organisation"	19-Jun-08	="Fabrics and leather materials"	13-Jun-08	30-Jul-08	1005048.00	=""	="Wax Converters Textiles Pty Ltd"	19-Jun-08 11:59 AM	

+="CN93322"	"field pack components"	="Defence Materiel Organisation"	19-Jun-08	="Backpacks"	13-Jun-08	30-Oct-08	436016.42	=""	="Adventure One Pty Ltd"	19-Jun-08 02:00 PM	

+="CN93325"	" Various components required for field pack "	="Defence Materiel Organisation"	19-Jun-08	="Harnesses or its accessories"	13-Jun-08	30-Oct-08	845929.70	=""	="Hunters Edge"	19-Jun-08 02:10 PM	

+="CN93344-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	302500.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:13 PM	

+="CN93346-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93372-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="Ross Human Directions Limited"	19-Jun-08 02:17 PM	

+="CN93375-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93406"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-May-08	15-Aug-08	344924.00	=""	="Formula Interiors NSW"	19-Jun-08 02:22 PM	

+="CN93418"	"Perth Call Centre upgrade"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	22-May-08	02-Jun-08	310779.70	=""	="Schiavello (WA) Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93435"	"cloth coated"	="Defence Materiel Organisation"	19-Jun-08	="Fabrics and leather materials"	22-Apr-08	31-May-08	307296.00	=""	="Wax Converters Textiles Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93449"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	30-Apr-09	1637908.45	=""	="Sun Microsystems Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93458-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	396000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93502"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-May-08	30-Jun-08	697400.00	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:35 PM	

+="CN93504-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	02-May-08	05-Sep-10	521875.20	=""	="Peoplebank Australia Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93505"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	02-May-08	03-May-10	334048.00	=""	="Collective Resources IT Recruitment"	19-Jun-08 02:36 PM	

+="CN93548-A3"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	14-May-08	13-May-11	3995749.12	="RFTS07/0129"	="Ross Human Directions Limited"	19-Jun-08 02:42 PM	

+="CN93574"	"ICT Hardware and Assoc Services - Support Services, Schedule 3 Clause 4 Agreements"	="Austrade"	19-Jun-08	="Computer services"	01-Nov-06	31-Jan-08	607929.00	=""	="Hewlett Packard Australia Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93581"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Spectrometers"	03-Oct-07	30-Oct-08	337258.00	="NA"	="Nu Scientific P/L"	19-Jun-08 02:52 PM	

+="CN93598"	"supply of radio equipment"	="Australian Federal Police"	19-Jun-08	="Communications Devices and Accessories"	13-Apr-07	13-Jun-07	2597710.00	=""	="Motorola Australia Pty Limited"	19-Jun-08 03:04 PM	

+="CN93600"	"Lease for premises at 109 Kent Street, Deakin ACT 2600"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-07	29-Feb-12	12827895.00	=""	="Telstra Corporation Limited"	19-Jun-08 03:07 PM	

+="CN93603"	"Lease for premises 24 Fairbairn Ave, Canberra Airport, ACT"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-07	28-Feb-17	4030387.00	=""	="Canberra International Airport Pty Ltd"	19-Jun-08 03:24 PM	

+="CN93615"	"Lease for premises at 28-32 King Raymond Terrace and Bourke Street Raymond Terrace"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	02-May-08	30-Apr-23	18026250.00	=""	="Buildev Properties Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93621"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	20-Jun-08	589140.00	=""	="EBBCO Ltd"	19-Jun-08 03:41 PM	

+="CN93631"	"Procurement of:  CHAIN ASSEMBLY,SINGLE LEG;  CHAIN ASSEMBLY,SINGLE LEG"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	22-Oct-08	328743.50	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93670"	"Procurement of:  ACCUMULATOR,PNEUMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	17-Dec-08	482488.08	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93698"	"Procurement of:  OSCILLATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jul-09	663203.20	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93734"	"Lease for Premises at 340 Ross River Rd, Aitkenvale, Townsville, North QLD 4814"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-May-08	30-Apr-13	708180.00	=""	="Rapisarda Nominees Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93784"	"Procurement of:  GOVERNOR,DIESEL ENGINE;  TRANSMITTER,LIQUID QUANTITY;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	06-Dec-08	321438.98	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:06 PM	

+="CN93793"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	02-Mar-09	511808.11	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN93824"	"Lease for Premises at 113-123 Parramatta Rd and 44-50 Powell Street"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	15-May-07	15-May-09	32153264.00	=""	="A>R>M Holdings Pty Ltd & Renlarn Pty Ltd"	19-Jun-08 04:25 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val30000to40000.xls
@@ -1,1 +1,192 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91135"	"qty 30 cable assemblies to use with military radios."	="Defence Materiel Organisation"	17-Jun-08	="Electrical wire and cable and harness"	16-Jun-08	03-Nov-08	30657.00	="RFQ-C7214"	="EYLEX PTTY LTD"	17-Jun-08 09:31 AM	

+="CN91152"	"Cost planning for New office fitout"	="CrimTrac"	17-Jun-08	="Site offices"	28-May-08	30-Jun-08	31680.00	=""	="Donald Cant Watts Corke (ACT) Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91251"	"Property charges for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Property management services"	01-Mar-08	31-Mar-08	36168.28	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:59 AM	

+="CN91523"	"ENGEL 40LT - M113"	="Department of Defence"	17-Jun-08	="Armoured fighting vehicles"	16-Jun-08	08-Jul-08	31893.40	=""	="ENGEL DISTRIBUTION PTY LTD"	17-Jun-08 11:37 AM	

+="CN91592"	"Produce Test Procedure & Drawings for the Manufact ure and Installation of Removable Insulation"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	09-Aug-08	38126.74	=""	="THALES AUSTRALIA"	17-Jun-08 11:44 AM	

+="CN91690"	"Develop a Test Righ and Test procedures for Noise Attenuation"	="Defence Materiel Organisation"	17-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	30-Jul-08	38900.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 11:51 AM	

+="CN91700"	"Shadow Excursion Spares"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	30-May-08	26-Jun-08	38784.93	=""	="DIVEX ASIA PACIFIC PTY LTD"	17-Jun-08 11:52 AM	

+="CN91735"	"PVC Insulated Wiring Power Cable Replacement"	="Defence Materiel Organisation"	17-Jun-08	="Professional engineering services"	02-Jun-08	31-Jul-08	30626.20	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:54 AM	

+="CN91783"	"Evaluate Thales Contract Master Schedule"	="Defence Materiel Organisation"	17-Jun-08	="Naval weapons"	02-Jun-08	28-Nov-08	38382.40	=""	="TERRA FIRMA PTY LTD"	17-Jun-08 11:57 AM	

+="CN91787"	"Warden Tasks"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	26-Jun-08	35693.78	=""	="DARONMONT TECHOLOGIES PTY LTD"	17-Jun-08 11:58 AM	

+="CN91793"	"RAISE CHANGE OBJECTS A REQ'D"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	01-Oct-08	34625.84	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:58 AM	

+="CN91822"	"Professional Legal Fees & Disbursements"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	05-Jun-08	30-Jun-08	38692.50	=""	="PHILLIPS FOX SYDNEY"	17-Jun-08 12:00 PM	

+="CN91860"	"FMS Case for 23X software support for Hornet Upgrade Project"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	13-Jun-08	15-Dec-11	39447.62	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91866"	"Backend Hardware"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	06-Jun-08	30-Jun-08	31847.93	=""	="CERULEAN SOLUTIONS LTD"	17-Jun-08 12:03 PM	

+="CN91870"	"INCORPORATION OF MOD A04-MOD07-0000-36 TO CARIBOU PROPELLER STANDS"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	06-Jun-08	30-Jun-08	36095.86	=""	="TASMAN AVIATION ENTERPRISES QLD P/L"	17-Jun-08 12:04 PM	

+="CN91959"	"inspect, test,repair and classify tEODor"	="Defence Materiel Organisation"	17-Jun-08	="Electrical equipment and components and supplies"	05-Jun-08	04-Jul-08	33037.24	=""	="XTEK LTD"	17-Jun-08 12:10 PM	

+="CN91972"	"HOSE ASSY AIR BREATH"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	10-Feb-09	33829.81	=""	="R. E. DARLING CO. INC."	17-Jun-08 12:12 PM	

+="CN91990"	"IT SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	31506.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	17-Jun-08 12:13 PM	

+="CN91643"	"Appear as expert in application to AAT for review of a CALDB decision"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	31-Oct-07	20-Dec-07	39558.00	=""	="Lombe, David"	17-Jun-08 12:14 PM	

+="CN92014"	"PROCUREMENT OF DIGITAL SATELITE TV CAPABILITY HMAS SYDNEY"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	30-May-08	30-Aug-08	34476.20	=""	="ELECTROTECH AUSTRALIA PTY LTD"	17-Jun-08 12:15 PM	

+="CN92035"	"R5 service for N22-020 (820) and associated BDS Consumables in Support of the complete R5 Service."	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	05-Jun-08	30-Jun-08	39928.29	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:17 PM	

+="CN92092"	"PSP Support"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	16-Jun-08	30-Jun-08	40000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:21 PM	

+="CN92094"	"ISO9000 Accreditation Support"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	03-Jun-08	30-Jun-08	30670.99	=""	="NOETIC CORPORATION"	17-Jun-08 12:21 PM	

+="CN92100"	"VEHICLE REPAIRS"	="Department of Defence"	17-Jun-08	="Motor vehicles"	16-Jan-08	16-Feb-08	30213.76	=""	="FB AUTOS"	17-Jun-08 12:23 PM	

+="CN92130"	"REF PAYMENTS - EXTERNAL REPAIRS"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	23-Jan-08	30-Dec-08	30048.25	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:25 PM	

+="CN92136"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	35153.91	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:26 PM	

+="CN92147"	"LAP Delivery Management Services - JP2077 PH2B.1"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	05-Jun-08	30-Jun-08	33000.00	=""	="EVENTRA PTY LTD"	17-Jun-08 12:27 PM	

+="CN92213"	"Flight Stip Paper"	="Defence Materiel Organisation"	17-Jun-08	="Paper Materials and Products"	29-May-08	16-Jun-08	37443.78	=""	="MAGNETIC TICKET & LABEL CORP"	17-Jun-08 12:37 PM	

+="CN92223"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Oct-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92224"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Oct-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92225"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Nov-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92226"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	24-Nov-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92227"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92228"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:38 PM	

+="CN92229"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Dec-08	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92230"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Jan-09	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92231"	"Modify & Repair a F/A-18 F404 Main Fuel Control."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	23-Jan-09	35426.49	=""	="GOODRICH CONTROL SYSTEMS PTY LTD"	17-Jun-08 12:39 PM	

+="CN92257"	"SERS Maintenance"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue water craft"	27-May-08	30-Jun-08	36054.37	=""	="CAL DIVE INTERNATIONAL"	17-Jun-08 12:42 PM	

+="CN92330"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	06-Jun-08	30-Jun-09	30000.00	=""	="Stack, David"	18-Jun-08 10:38 AM	

+="CN92332"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	01-Dec-07	31-Dec-08	30000.00	=""	="Howard, Matthew"	18-Jun-08 10:43 AM	

+="CN92346"	"Aviation Spares. Overhaul of FCU S/N A173B at Turbomeca"	="Defence Materiel Organisation"	18-Jun-08	="Military rotary wing aircraft"	28-Apr-08	28-Nov-08	39725.40	=""	="Turbomeca A/Asia Pty Ltd"	18-Jun-08 11:38 AM	

+="CN92372"	"supply of groceries brisbane"	="Department of Defence"	18-Jun-08	="Processed and prepared meats"	02-Jun-08	30-Jun-08	33000.00	=""	="QUEENSLAND FROZEN FOOD SERVICE"	18-Jun-08 11:39 AM	

+="CN92375"	"DSTO Ecological Footprint Project"	="Department of Defence"	18-Jun-08	="Environmental Services"	02-Jun-08	30-Jun-08	37830.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	18-Jun-08 11:40 AM	

+="CN92376"	"Servers"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	02-Jun-08	30-Jun-08	30427.80	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 11:40 AM	

+="CN92378"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	36210.00	=""	="CLAYTON UTZ"	18-Jun-08 11:40 AM	

+="CN92383"	"RICOH MULTIFUNCTION CENTRE"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	02-Jun-08	18-Jun-08	34335.40	=""	="RICOH AUSTRALIA"	18-Jun-08 11:41 AM	

+="CN92392"	"STA Refurbish Assault Grenade Range"	="Department of Defence"	18-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-Jun-08	31-Dec-08	38126.00	=""	="RESOLVE FM"	18-Jun-08 11:42 AM	

+="CN92396"	"PABX System for St Kilda Antenna Farm SA CIOG63/08"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	03-Jun-08	30-Jun-08	38601.22	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 11:43 AM	

+="CN92397"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	30-Jun-08	38557.19	=""	="INSITEC"	18-Jun-08 11:43 AM	

+="CN92405"	"Install 2 a Armouries RAAF Point Cook"	="Department of Defence"	18-Jun-08	="Storage"	03-Jun-08	30-Jun-09	35200.00	=""	="API SECURITY PTY LTD"	18-Jun-08 11:44 AM	

+="CN92409"	"Computer Software"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	24-Jun-08	37848.80	=""	="SUN MICROSYSTEMS"	18-Jun-08 11:44 AM	

+="CN92422"	"Supply engineering report"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	30-Jun-08	30470.00	=""	="BOEING AUSTRALIA LIMITED"	18-Jun-08 11:46 AM	

+="CN92432"	"Freight Charges"	="Department of Defence"	18-Jun-08	="Transportation services equipment"	03-Jun-08	30-Jun-09	30000.00	=""	="STAR TRACK EXPRESS"	18-Jun-08 11:48 AM	

+="CN92443"	"Training Course"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	03-Jun-08	30-Jun-08	38027.00	=""	="RESULTS CONSULTING (AUSTRALIA)"	18-Jun-08 11:49 AM	

+="CN92444"	"Annual computer software maintenance"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	17-Jun-08	30800.00	=""	="JOHN MITCHELL COMPUTING PTY LTD"	18-Jun-08 11:49 AM	

+="CN92469"	"4201 Excavation Kangaroo Management"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	31-Aug-08	38500.00	=""	="DEFENCE MAINTENANCE MANAGEMENT P/L"	18-Jun-08 11:53 AM	

+="CN92486"	"Camera equipment and accessories"	="Department of Defence"	18-Jun-08	="Photographic or filming or video equipment"	29-May-08	05-Jun-08	36539.92	=""	="TED'S CAMERA STORE"	18-Jun-08 11:55 AM	

+="CN92487"	"Extension of the Co gen systems"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	29-May-08	30-Jun-08	35365.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 11:55 AM	

+="CN92502"	"OFFICE FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	30-May-08	16-Jun-08	37098.60	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	18-Jun-08 11:57 AM	

+="CN92514"	"Supply and install Hobart Potscrubber Model UXTLH benches.  ADFA Cadets Mess BLD 4 Project SN02737."	="Department of Defence"	18-Jun-08	="Domestic kitchenware"	02-Jun-08	30-Jun-08	36272.50	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 11:59 AM	

+="CN92541"	"PROP STUDIES - STOCKTON RIFLE RANGE - INFRASTRUCTU"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-09	31680.00	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 12:03 PM	

+="CN92546"	"UPGRADE TO ESN AND RUMS GALLIPOLI BARRACKS"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	02-Jun-08	30-Jun-08	34858.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:04 PM	

+="CN92548"	"IBM SV Decider Server & Warrenty & Installation"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	30-Jun-08	38269.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 12:05 PM	

+="CN92560"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	39507.16	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:06 PM	

+="CN92576"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	38478.77	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:09 PM	

+="CN92585"	"Research Agreement"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	05-Jun-08	17-Jun-08	33000.00	=""	="RMIT UNIVERSITY"	18-Jun-08 12:10 PM	

+="CN92594"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	33000.00	=""	="SITESAFE (NT)"	18-Jun-08 12:11 PM	

+="CN92597"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	38500.00	=""	="VOCATIONAL SOLUTIONS"	18-Jun-08 12:11 PM	

+="CN92606"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	33000.00	=""	="NORTH QUEENSLAND THERAPY SERVICES"	18-Jun-08 12:13 PM	

+="CN92610"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	33000.00	=""	="NT OCCUPATIONAL HEALTH CONSULTANTS"	18-Jun-08 12:13 PM	

+="CN92614"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT TO REPAIR"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	06-Jun-08	20-Jun-08	31460.00	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	18-Jun-08 12:14 PM	

+="CN92615"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT TO REPAIR"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	06-Jun-08	20-Jun-08	39380.00	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	18-Jun-08 12:14 PM	

+="CN92623"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	01-Jul-08	38500.00	=""	="O T SERVICES"	18-Jun-08 12:15 PM	

+="CN92633"	"SN02789- Australian Defence College - Additional Office Space"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	06-Jun-08	30-Jun-08	30602.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:16 PM	

+="CN92638"	"The Cerulean Quote"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	16-Jun-08	31083.88	=""	="CERULEAN SOLUTIONS LTD"	18-Jun-08 12:17 PM	

+="CN92644"	"Provision of Consultancy Services"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	05-Jun-08	30-Jun-08	33000.00	=""	="KAMIRA STACEY CONSULTING PTY LTD"	18-Jun-08 12:18 PM	

+="CN92652"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	38177.66	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:19 PM	

+="CN92656"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	26-Jun-08	36227.72	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:20 PM	

+="CN92671"	"CISCO LIAISON OFFICERS BRIEFCASE SYSTEM"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	30-Jun-08	35200.00	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 12:22 PM	

+="CN92680"	"HOLSWORTHY:SPECIAL FORCES TRAINING FACILITY. HY PO 2 TO PAY FINAL VARIATIONS TO COMPLETE PROJEC"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	04-Jun-08	30-Jun-08	32991.45	=""	="HANSEN YUNCKEN (SA) PTY LTD"	18-Jun-08 12:23 PM	

+="CN92706"	"10,000 TRI-SERVICE OFFICER CD ROMS. THESE CDROMS ARE A PRIORITY AS THEY ARE USED TO PR"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	03-Jun-08	30-Jun-08	33110.00	=""	="VISUAL JAZZ PTY LTD"	18-Jun-08 12:26 PM	

+="CN92713"	"IBM SV decider Server + Warrenty + Installation"	="Department of Defence"	18-Jun-08	="Hardware"	04-Jun-08	30-Jun-08	38269.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 12:27 PM	

+="CN92673-A1"	"Property charges for April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Property management services"	01-Apr-08	30-Apr-08	36470.90	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	18-Jun-08 12:28 PM	

+="CN92715"	"DEFECNE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	38394.40	=""	="ST PHILIPS CHRISTIAN COLLEGE PORT S"	18-Jun-08 12:28 PM	

+="CN92725"	"Research Agreement"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	05-Jun-08	30-Sep-10	39600.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADFA"	18-Jun-08 12:29 PM	

+="CN92727"	"ACMS TRAINING SUPPORT FOR ADHQ"	="Department of Defence"	18-Jun-08	="Education and Training Services"	05-Jun-08	30-Jun-08	35132.00	=""	="ADVANCED TRAINING & CAPABILITY"	18-Jun-08 12:30 PM	

+="CN92754"	"Senior Solution Architest services"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	33000.00	=""	="INTEGRAL CONSULTING SERVICES"	18-Jun-08 12:33 PM	

+="CN92758"	"UPDATE OF RANDWICK BKS HMP."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	04-Jun-08	30-Jun-08	30360.00	=""	="GODDEN MACKAY LOGAN PTY LTD"	18-Jun-08 12:34 PM	

+="CN92760"	"BENQ PROJECTOR MP622C BENQ PROJECTOR MP723"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	30-Jun-08	34908.50	=""	="ITMS GROUP"	18-Jun-08 12:34 PM	

+="CN92770"	"DEFENCE SCHOOL TRANSITION AIDE PROGRAM PAYMENT OF WAGES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	04-Jun-08	33814.11	=""	="DURACK SCHOOL"	18-Jun-08 12:35 PM	

+="CN92773"	"PROVISION OF TECHNICAL WRITING SERVICES"	="Department of Defence"	18-Jun-08	="Information services"	04-Jun-08	30-Jun-08	30800.00	=""	="PROVIDENCE CONSULTING GROUP PL"	18-Jun-08 12:36 PM	

+="CN92777"	"TS PIONEER RELOCATION TO KOMIATUM BARRACKS MACKAY"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	03-Jun-08	30-Jun-08	33871.75	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:36 PM	

+="CN92783"	"REIMBURSEMENT OF EXPENSES"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	15-May-08	30-Jun-08	35715.93	=""	="MANPOWER SERVICES (AUST) PTY LTD"	18-Jun-08 12:37 PM	

+="CN92793"	"Dev. & Evaluate Networked UAV EW Systems"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	06-Jun-08	31-Oct-08	39600.00	=""	="CONSUNET PTY LTD"	18-Jun-08 12:39 PM	

+="CN92791"	"Battery Nonrechargeable 1.5V Cylindrical AA Size"	="Defence Materiel Organisation"	18-Jun-08	="Battery chargers"	04-Jun-08	25-Jun-08	35228.16	=""	="ENERGIZER AUSTRALIA PTY LTD"	18-Jun-08 12:39 PM	

+="CN92797"	"Research scientist"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	17-Dec-07	30-Jun-08	30000.00	=""	="FORTBURN PTY LTD"	18-Jun-08 12:39 PM	

+="CN92819"	"Supply of Services under Employer Agreement"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	12-Nov-07	30-Jun-08	31460.00	=""	="ENGINEERING EMPLOYERS ASSOCIATION"	18-Jun-08 12:42 PM	

+="CN92823"	"Supply of perisiables"	="Department of Defence"	18-Jun-08	="Prepared and preserved foods"	12-Jun-08	28-Jun-08	35000.00	=""	="UNITED FOOD SERVICE"	18-Jun-08 12:43 PM	

+="CN92824"	"Supply of Grocery to RAAF Base Tindal Ration Store"	="Department of Defence"	18-Jun-08	="Prepared and preserved foods"	12-Jun-08	30-Jun-08	30000.00	=""	="ASIAN IMPORTERS EXPORTERS CO"	18-Jun-08 12:43 PM	

+="CN92860"	"SA2230 - Regional Asbestos Audit"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	02-Jun-08	30-Jun-08	30000.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:47 PM	

+="CN92872"	"PROFESSIONAL FEES"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-08	36014.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 12:49 PM	

+="CN92882"	"DISPOSAL OF GUNGAHLIN ACT - REMEDIATION WORKS."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	37712.35	=""	="EARTH TECH ENGINEERING PTY LTD"	18-Jun-08 12:50 PM	

+="CN92899"	"ENGAGEMENT OF ON-SITE REPRESENTATIVE AT ICT-CNNSW FOR PERIOD OF 13 OCT 2005-29 AUG 2008"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	13-Jun-08	29-Aug-08	35071.19	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	18-Jun-08 12:52 PM	

+="CN92923"	"VEHICLE LEASE UA KAFMAY08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	26-May-08	01-Jun-08	36991.16	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92925"	"VEHICLE LEASE UA KAF APR08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	28-Apr-08	01-Jun-08	36991.16	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:56 PM	

+="CN92935"	"PURCHASE OF 10 SHIPPING CONTAINERS AND CRANE HIRE"	="Department of Defence"	18-Jun-08	="Containers and storage"	27-May-08	30-May-08	33408.17	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:57 PM	

+="CN92940"	"Provide the Services of a Senior Physician in Occupational and Environmental Health."	="Department of Defence"	18-Jun-08	="Healthcare Services"	26-Feb-08	30-Jun-08	35851.20	=""	="IAN R GARDNER PTY LTD"	18-Jun-08 12:58 PM	

+="CN92959"	"HARDWARE MAINTENANCE OF IBM EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	35888.36	=""	="IBM AUSTRALIA LTD"	18-Jun-08 01:01 PM	

+="CN92968"	"Amendment to contract for Professional Services refer DCR no 0018439"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	31-May-08	31-May-08	33000.00	=""	="SWORDFISH COMPUTING PTY LTD (ATF)"	18-Jun-08 01:02 PM	

+="CN92971"	"SA1915 - ENVIRONMENTAL MANAGEMENT SYSTEM"	="Department of Defence"	18-Jun-08	="Environmental Services"	12-Mar-08	30-Jun-08	39872.58	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 01:02 PM	

+="CN92976"	"ADVANCED TECHNICAL SERVICES"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	17-Jul-06	30-Jun-07	38500.00	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	18-Jun-08 01:03 PM	

+="CN92978"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	17-Jan-08	19-Jun-08	33000.00	=""	="APA MANAGEMENT SYSTEMS PTY LTD"	18-Jun-08 01:03 PM	

+="CN92982"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Legal services"	22-Feb-08	31-Dec-08	35477.80	=""	="SAGE LEGAL SERVICES PTY LTD"	18-Jun-08 01:04 PM	

+="CN93000"	"SANDWICH 1000-6.0 ACTIVE VIBRATION ISOLATION PLATF ORM"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	29-May-08	16-Jun-08	34015.88	=""	="HALCYONICS GMBH"	18-Jun-08 01:06 PM	

+="CN93043"	"PROVIDER OF MARKET RESEARCH ON PERCEPTIONS OF CADETS"	="Department of Defence"	18-Jun-08	="Market research"	29-May-08	30-Jun-08	30640.01	=""	="OPEN MIND RESEARCH GROUP"	18-Jun-08 01:12 PM	

+="CN93051"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	40000.00	=""	="CANBERRA NEUROPSYCHOLOGICAL"	18-Jun-08 01:13 PM	

+="CN93089"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	40000.00	=""	="STEPHEN ROBSON MEDICAL PTY LTD"	18-Jun-08 01:18 PM	

+="CN93094"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	30000.00	=""	="AHMAD FARSHID"	18-Jun-08 01:19 PM	

+="CN93118"	"FFS 30/06/08"	="Department of Defence"	18-Jun-08	="Medical facility products"	27-May-08	30-Jun-09	30000.00	=""	="D B DICKSON PTY LTD"	18-Jun-08 01:22 PM	

+="CN93120"	"Printers for WPRs 232/07 and 233/07"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	06-Jun-08	36757.14	=""	="RED RIVER INC"	18-Jun-08 01:22 PM	

+="CN93138"	"HP SERVER"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	13-Jun-08	31354.50	=""	="DATA 3 LIMITED"	18-Jun-08 01:24 PM	

+="CN93143"	"Aircraft Technical Support"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	27-May-08	30-Jun-09	31811.32	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	18-Jun-08 01:25 PM	

+="CN93147"	"DSTO EDINBURGH : COMBAT MISSION SYSTEMS RESEARCH CENTRE"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	27-May-08	30-Jun-09	38630.90	=""	="HAMES SHARLEY"	18-Jun-08 01:26 PM	

+="CN93153"	"HOLSWORTHY: SPECIAL FORCES TRAINING FACILITY. SEA BOX INTERNATIONAL- SUPPLY OF 20FT DIVE TANK."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	28-May-08	30-Jun-08	31531.50	=""	="SEA BOX INTERNATIONAL PTY LTD"	18-Jun-08 01:26 PM	

+="CN93155"	"18M FREE STANDING TOWER, ITEMS REQUIRED FOR BRF INSTAL"	="Department of Defence"	18-Jun-08	="Well drilling and operation equipment"	28-May-08	16-Jun-08	34017.50	=""	="FLIGHT BROS PTY LTD"	18-Jun-08 01:27 PM	

+="CN93160"	"Cisco ASA 5540 Appliance"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	38757.91	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	18-Jun-08 01:27 PM	

+="CN93164"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	31500.00	=""	="DR SAFI ALBEKAA"	18-Jun-08 01:28 PM	

+="CN93175"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	30000.00	=""	="DR BRONWYN DEVINE PTY LTD"	18-Jun-08 01:29 PM	

+="CN93176"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	32128.95	=""	="ACCESS BOATING & LEISURE PTY LTD"	18-Jun-08 01:29 PM	

+="CN93177"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	31462.01	=""	="ADELAIDE OUTBOARD SERVICE"	18-Jun-08 01:29 PM	

+="CN93180"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	30877.60	=""	="ENTERPRISE MARINE"	18-Jun-08 01:30 PM	

+="CN93181"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	30866.67	=""	="GOLDEN SEAL MARINE"	18-Jun-08 01:30 PM	

+="CN93189"	"POWER SUPPLY ET AL"	="Department of Defence"	18-Jun-08	="Electrical components"	28-May-08	30-Sep-08	38636.03	=""	="HARRIS CORPORATION DBA HARRIS RF CO"	18-Jun-08 01:31 PM	

+="CN93190"	"SON 49376"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	30-Jun-08	32720.60	=""	="SYDAC PTY LTD"	18-Jun-08 01:32 PM	

+="CN93192"	"GROCERIES FOR MONTH OF JUNE TUL 01/07"	="Department of Defence"	18-Jun-08	="Sauces and spreads and condiments"	28-May-08	30-Jun-08	37637.60	=""	="WALTERS IGA TULLY"	18-Jun-08 01:32 PM	

+="CN93198"	"GROCERIES"	="Department of Defence"	18-Jun-08	="Prepared and preserved foods"	28-May-08	30-Jul-08	37841.56	=""	="BID VEST BURLEIGH MARR"	18-Jun-08 01:33 PM	

+="CN93203"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	31896.91	=""	="ACTIVE MARINE"	18-Jun-08 01:33 PM	

+="CN93204"	"BOAT AND ACCESSORIES"	="Department of Defence"	18-Jun-08	="Safety and rescue water craft"	28-May-08	30-Jun-08	33756.91	=""	="TOP END TACKLE WORLD"	18-Jun-08 01:34 PM	

+="CN93216"	"Development of internal best practice guidelines"	="Australian Taxation Office"	18-Jun-08	="Market research"	06-May-08	30-Jun-08	39800.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	18-Jun-08 02:57 PM	

+="CN93221"	"Printing publications"	="Australian Centre for International Agricultural Research"	18-Jun-08	="Publication printing"	12-Jun-08	31-Jan-09	30800.00	=""	="All Language Typesettings & Printers"	18-Jun-08 03:06 PM	

+="CN93224"	" Conference workshop "	="Australian Centre for International Agricultural Research"	18-Jun-08	="Workshops"	22-Aug-08	31-Aug-08	37800.00	=""	="Chinese Ministry of Agriculture"	18-Jun-08 03:16 PM	

+="CN93227"	"Aviation Spares, Induction Test and repair of Engine S/N 722 at Turbomeca"	="Defence Materiel Organisation"	18-Jun-08	="Military rotary wing aircraft"	23-May-08	29-Aug-08	31418.20	=""	="Turbomeca A/Asia Pty Ltd"	18-Jun-08 03:30 PM	

+="CN93241"	" Training course "	="Australian Centre for International Agricultural Research"	18-Jun-08	="Non scientific vocational training services"	01-Jun-08	03-Oct-08	32307.00	=""	="University of Western Sydney"	18-Jun-08 04:24 PM	

+="CN93271"	"MapInfo Software for Mapping Room RS & T Branch - 1 Yr  plus freight"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-Jun-08	30-Jun-09	31092.05	="ATM08/1054"	="MAPINFO AUSTRALIA PTY LTD"	19-Jun-08 09:07 AM	

+="CN93293-A1"	"Contractor for Netowrks Competion Branch"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	03-Jun-08	03-Sep-08	35000.00	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	19-Jun-08 09:11 AM	

+="CN93299"	"Facilitator to assist formation of a peak Telecommunications Consumer Representivie body"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	13-Jun-08	40000.00	="DCON/08/42"	="Philippa Smith"	19-Jun-08 09:12 AM	

+="CN93316"	"misc fasteners"	="Defence Materiel Organisation"	19-Jun-08	="Retaining clips"	13-Jun-08	25-Jul-08	33831.60	=""	="ITW Fastex General Products"	19-Jun-08 01:21 PM	

+="CN93354"	"Counselling services"	="Centrelink"	19-Jun-08	="Office supplies"	13-May-08	30-Jun-08	35000.00	=""	="Workcare Australia"	19-Jun-08 02:14 PM	

+="CN93368-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	30996.90	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:16 PM	

+="CN93349"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	26-Feb-08	28-Mar-08	38902.86	=""	="CLAYTON UTZ"	19-Jun-08 02:17 PM	

+="CN93378"	"Long term rental accommodation, NT"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	03-Apr-08	30-May-08	32400.02	=""	="Jessica Court Serviced Apartments"	19-Jun-08 02:18 PM	

+="CN93384"	"Advertising"	="Centrelink"	19-Jun-08	="Advertising"	02-May-08	30-Jun-08	33000.00	=""	="HMA Blaze Pty Ltd"	19-Jun-08 02:19 PM	

+="CN93405-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	16-May-08	30-Jun-08	39600.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93409"	"Office fitout services at for Kawana Waters, QLD"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-09	31552.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93412"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	27-May-08	15-Jun-08	38500.00	=""	="Commstar Communications"	19-Jun-08 02:22 PM	

+="CN93415"	"Advisory Services"	="Centrelink"	19-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	35000.00	=""	="Capgemini Australia Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93424-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	31999.99	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93428-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	36000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:25 PM	

+="CN93436"	"External Training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93437"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93440"	"Management advisory services"	="Centrelink"	19-Jun-08	="Management advisory services"	20-May-08	30-Jun-08	35000.00	=""	="Cogent Business Solutions Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93453"	"Staff medical assessments"	="Centrelink"	19-Jun-08	="Healthcare Services"	21-May-08	30-Jun-08	38500.00	="RFTS06/0500"	="Health for Industry"	19-Jun-08 02:29 PM	

+="CN93472"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-May-08	31273.06	=""	="Anixter Australia Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93503-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	02-May-08	30-Jun-08	32670.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93507"	"Membership"	="Centrelink"	19-Jun-08	="Business administration services"	02-May-08	30-Jun-08	36588.94	=""	="Corporate Executive Board"	19-Jun-08 02:36 PM	

+="CN93509"	"Clerical chairs for Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	01-May-08	29-Aug-08	38736.50	=""	="Unifurn Commercial Furniture"	19-Jun-08 02:36 PM	

+="CN93513"	"Computer Software"	="Centrelink"	19-Jun-08	="Software"	15-Apr-08	06-Jun-08	33440.00	=""	="Worldsmart Technology Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93518"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	37520.70	=""	="Interface Flor"	19-Jun-08 02:38 PM	

+="CN93519"	"Memberships"	="Centrelink"	19-Jun-08	="Business administration services"	28-May-08	30-Jun-08	34243.50	=""	="Corporate Executive Board"	19-Jun-08 02:38 PM	

+="CN93569"	"Design and delivery of training to State and Network Managers in Coaching and Client relationships"	="Austrade"	19-Jun-08	="Education and Training Services"	19-May-08	12-Jun-08	32340.00	=""	="In Corporate Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93585"	"MAPINFO"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Map creation software"	18-Apr-08	18-Apr-09	30099.30	="OPEN"	="PITNEY BOWES"	19-Jun-08 02:53 PM	

+="CN93591"	"NATIONAL INSTRUMENTS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Dosimetry equipment"	22-May-08	22-May-09	39984.45	="DIRECT"	="National Instruments"	19-Jun-08 02:53 PM	

+="CN93623"	"Procurement of:  STOPPER ASSEMBLY,CHAIN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	19-Jun-08	33748.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93669"	"Procurement of:  CHAIN,TRANSITION LINK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	07-Jan-09	38183.05	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93672"	"Procurement of:  BEARING,SLEEVE;  BEARING,SLEEVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	11-Nov-08	31896.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93674"	"Procurement of:  CALIBRATOR,FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	04-Sep-08	30285.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:49 PM	

+="CN93676"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	30-Aug-08	30311.40	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:49 PM	

+="CN93687"	"motor vehicle spare parts"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	36199.37	=""	="LAND ROVER AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93738"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	23-Oct-08	35903.48	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93744"	"Procurement of:  CONTROL,DISTRIBUTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	10-Jul-08	31008.00	=""	="INGRAMS CLOCKS Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93763"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	19-Aug-08	35100.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 04:03 PM	

+="CN93773"	"Procurement of:  HEATER,WATER,ELECTRIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	25-Dec-08	35401.18	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:05 PM	

+="CN93791"	"Procurement of:  LOUDSPEAKER-AMPLIFIER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	15-Jan-09	38452.71	=""	="THALES AUSTRALIA"	19-Jun-08 04:08 PM	

+="CN93798"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	04-Dec-08	31259.10	=""	="ASC Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93800"	"Procurement of:  MASK,AIR LINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	37293.12	=""	="MSA (AUST) Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93808"	"Procurement of:  WASHER,FLAT;  CLAMP,LOOP;  SETSCREW;  NUT,PLAIN,HEXAGON;  WASHER,FLAT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	10-Nov-08	36980.00	=""	="ASC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93816"	"Procurement of:  O-RING;  GASKET;  SETSCREW;  SUPPORT,LOWER;  SUPPORT,UPPER;  NUT,PLAIN,HEXAGON"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	13-Oct-08	39067.90	=""	="ASC Pty Ltd"	19-Jun-08 04:11 PM	

+="CN90517"	"Contractor policy/project coordinator"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Temporary personnel services"	02-Jun-08	05-Sep-08	31416.00	="05/ACMA013"	="Hudson Global Resources(Aust) Pty Ltd"	19-Jun-08 04:13 PM	

+="CN93825"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	19-Jun-08	="Military fixed wing aircraft"	17-Jun-08	16-Aug-08	35596.00	=""	="MILSPEC"	19-Jun-08 04:28 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val40000to60000.xls
@@ -1,1 +1,223 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91112"	"AIRFARES APR-08"	="Department of Parliamentary Services"	17-Jun-08	="Passenger air transportation"	28-Apr-08	30-Apr-08	40990.41	=""	="Qantas Amex Business Travel A/C"	17-Jun-08 09:16 AM	

+="CN91114"	"PUBLICATIONS SUBSCRIPTION SUBS JUN-08 TO MAY-09"	="Department of Parliamentary Services"	17-Jun-08	="Printed publications"	10-Apr-08	31-May-09	48652.98	=""	="PROQUEST"	17-Jun-08 09:16 AM	

+="CN91115"	"Building works package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	17-Jun-08	="Building and Construction and Maintenance Services"	07-Sep-07	06-Jun-08	53900.00	=""	="Manteena Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91138"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	01-Feb-08	30-Apr-08	41040.00	=""	="P & D Consultancies Pty Ltd"	17-Jun-08 09:32 AM	

+="CN91146"	"Contractor"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	41888.00	=""	="Face 2 Face Recruitment Pty Limited"	17-Jun-08 10:07 AM	

+="CN91218-A1"	"08/2805 - Review Contractor - 1599-1950 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	06-May-08	30-Jun-08	45000.00	=""	="EDS (Australia) Pty Ltd"	17-Jun-08 10:53 AM	

+="CN91194"	"MOU Charges April 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Corporate finance"	01-Apr-08	30-Apr-08	56216.60	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	17-Jun-08 10:54 AM	

+="CN91460-A1"	"07/1896 - Extension #1 - Administration Support Specialist - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Jun-08	="Temporary personnel services"	15-May-08	01-Sep-08	47200.00	="07/1896"	="CCS Index Pty Ltd"	17-Jun-08 11:29 AM	

+="CN91580"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:43 AM	

+="CN91590"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:44 AM	

+="CN91596"	"Repair & Modify F/A-18 Hornet AMAD..."	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	03-Jun-08	22-Aug-08	52040.21	=""	="TRIUMPH GEAR SYSTEMS INC"	17-Jun-08 11:45 AM	

+="CN91602"	"EMERGENT WORK IAW QUOTE 5243"	="Defence Materiel Organisation"	17-Jun-08	="Fire fighting equipment"	03-Jun-08	30-Jun-08	51137.31	=""	="R G M MAINTENANCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91666"	"Provisioin of 2 largeTopowl Helmets"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	03-Jun-08	30-Jun-09	54488.09	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 11:49 AM	

+="CN91706"	"Onsite network and VAX equipment support services for the Software Support Centre"	="Defence Materiel Organisation"	17-Jun-08	="Software"	30-May-08	08-Aug-08	48235.00	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 11:52 AM	

+="CN91726"	"RING, ASSY HALF"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	29-May-08	01-Aug-09	40040.19	=""	="ROLLS - ROYCE PLC"	17-Jun-08 11:53 AM	

+="CN91742"	"Repair & Overhaul Agreement No. 98001833/3636 Repairs to ASLAV Vehicle 16459"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Jun-08	25-Jun-08	44412.51	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:55 AM	

+="CN91746"	"Installation Design Package - Automatic Identifcat ion System (AIS) HMAS Sydney IMAV24"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	02-Jun-08	01-Sep-08	40342.57	=""	="THALES AUSTRALIA"	17-Jun-08 11:55 AM	

+="CN91750"	"AIRCRAFT MAINTENANCE SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Powered fixed wing aircraft"	02-Jun-08	30-Jun-08	46970.00	=""	="KEYWATCH SYSTEMS QUEENSLAND"	17-Jun-08 11:55 AM	

+="CN91757"	"Repairs of CPT located at Brisbane, Darwin & Pucka"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	02-Jun-08	30-Jun-08	47410.01	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91785"	"This PO raised for the supply of emergency BDS ite to complete RI's in progress."	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	02-Jun-08	30-Jun-09	60000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:58 AM	

+="CN91797"	"AMCO INSTALLATION HMAS KANIMBLA"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	30-Oct-08	49192.00	=""	="ROLLS-ROYCE AUSTRALIA SERVICES PTY"	17-Jun-08 11:58 AM	

+="CN91799"	"20IN NEC LCD MONITORS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	30-Jun-08	42309.96	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 11:58 AM	

+="CN91818"	"HUGPH3.2 - C338529 - SURVEY & QUOTE 26 - AUD COMPONENT - SRP2"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	05-Jun-08	30-Jun-10	47334.58	=""	="L-3 COMMUNICATIONS MAS (CANADA)-AUD"	17-Jun-08 12:00 PM	

+="CN91834"	"Hydraulic Capacitator Asssembly"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	06-Jun-08	30-Mar-09	46395.17	=""	="HONEYWELL INTERNATIONAL INC!DBA HON"	17-Jun-08 12:01 PM	

+="CN91836"	"BUCKLE RESTRAINT SYSTEM"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	05-Sep-08	54587.56	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	17-Jun-08 12:01 PM	

+="CN91858"	"Membership and Admin Fees"	="Defence Materiel Organisation"	17-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	13-Jun-08	31-Dec-08	49529.10	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91878"	"HMAS KANIMBLA TURNTABLE REMOVAL"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	06-Jun-08	08-Aug-08	57842.40	=""	="BURNESS CORLETT AUSTRALIA PTY LTD"	17-Jun-08 12:04 PM	

+="CN91893"	"Structural Repairs to a/c A23-062 during MIS910"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft fuselage and components"	04-Jun-08	30-Jun-09	55000.00	=""	="HAWKER PACIFIC PTY LTD"	17-Jun-08 12:06 PM	

+="CN91899"	"DOCUMENT SCANNING AND CONVERSION"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	04-Jun-08	30-Dec-08	43372.97	=""	="LOGISTICS SOLUTIONS AUSTRALASIA"	17-Jun-08 12:06 PM	

+="CN91910"	"HANDLE FIRING ASSEMBLY, GARTER ASSEMBLY, LEG"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	11-Feb-09	41057.43	=""	="MARTIN BAKER AIRCRAFT CO LTD"	17-Jun-08 12:07 PM	

+="CN91916"	"MBITR Modules fort April 2007"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	49256.06	=""	="THALES AUSTRALIA"	17-Jun-08 12:08 PM	

+="CN91919"	"WTR Probe Analysis Tool Replacement"	="Defence Materiel Organisation"	17-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	04-Jun-08	30-Jun-08	58618.41	=""	="JDA SYSTEMS"	17-Jun-08 12:08 PM	

+="CN91923"	"SUPPLY  OF MARINE DIESEL"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	04-Jun-08	30-Jun-08	42900.00	=""	="BREAKWATER MARINA"	17-Jun-08 12:08 PM	

+="CN91925"	"KPI payments to BAE Systems under the ACMC"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	04-Jun-08	30-Jun-08	46726.90	=""	="BAE SYSTEMS AUSTRALIA LIMITED"	17-Jun-08 12:08 PM	

+="CN91929"	"TOWER'S PERRIN- ALSPO ENGAGEMENT SURVEY 2008"	="Defence Materiel Organisation"	17-Jun-08	="Management support services"	04-Jun-08	30-Jun-08	42250.00	=""	="TOWERS PERRIN - ISR"	17-Jun-08 12:08 PM	

+="CN91937"	"MBITR Modules for May 2007 (TWS07.031)"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	04-Jun-08	08-Dec-08	49256.06	=""	="THALES AUSTRALIA"	17-Jun-08 12:09 PM	

+="CN91957"	"provide training on new systems"	="Defence Materiel Organisation"	17-Jun-08	="Marine transport"	05-Jun-08	30-Jun-08	54476.40	=""	="AIMTEK PTY LTD"	17-Jun-08 12:10 PM	

+="CN91978"	"HP EVA CLUSTER EXTENSION"	="Defence Materiel Organisation"	17-Jun-08	="Software"	05-Jun-08	20-Aug-08	43857.66	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:12 PM	

+="CN92037"	"P3 Orion Ageing Aircraft Audit to Achieve Conformance with CAR MPSPO/2006/01-11"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	12-Nov-07	30-Jun-08	46697.08	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:17 PM	

+="CN92056"	"HUON FAMP 01/08 CONDUCTED JUN/JUL 08"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	06-Jun-08	31-Jul-08	57791.04	=""	="THALES AUSTRALIA"	17-Jun-08 12:19 PM	

+="CN92053"	"Purchase 1000 copies of CCH 2008 Australian Corporations Legislation for ASIC staff nationally"	="Australian Securities and Investments Commission"	17-Jun-08	="Printed publications"	07-Dec-07	10-Feb-08	53640.00	=""	="CCH Australia Ltd"	17-Jun-08 12:19 PM	

+="CN92092"	"PSP Support"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	16-Jun-08	30-Jun-08	40000.00	=""	="DEPARTMENT OF DEFENCE"	17-Jun-08 12:21 PM	

+="CN92103"	"CAPO 07/08 and 09/08"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	21-May-08	16-Mar-09	50122.72	=""	="RAPID ASCENT CONSULTING"	17-Jun-08 12:22 PM	

+="CN92111"	"GST to Inv 70293, FRP MS 6-5"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	30-Apr-08	05-May-08	40036.55	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	17-Jun-08 12:23 PM	

+="CN92113"	"GST PAYMENT"	="Defence Materiel Organisation"	17-Jun-08	="Spaceships"	06-Jun-08	30-Jun-08	42043.55	=""	="BOEING AUSTRALIA LIMITED"	17-Jun-08 12:23 PM	

+="CN92118"	"Counsel Fees"	="Australian Securities and Investments Commission"	17-Jun-08	="Legal services"	07-Oct-07	30-Jun-08	50000.00	=""	="Vaughan, John"	17-Jun-08 12:24 PM	

+="CN92150"	"Box Ammunition Wood F22 with Cylinders"	="Defence Materiel Organisation"	17-Jun-08	="Packaging materials"	21-May-08	30-Jun-08	49747.89	=""	="PENTARCH PTY LTD"	17-Jun-08 12:28 PM	

+="CN92154"	"Joint Operations Portal Workpackage 1"	="Defence Materiel Organisation"	17-Jun-08	="Software"	12-Nov-07	30-Jun-08	50904.70	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 12:29 PM	

+="CN92156"	"INFLUENCING+NEGOTIATION SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Printed media"	05-May-08	30-Jun-08	46750.00	=""	="EFFECTIVE NEGOTIATION SERVICES"	17-Jun-08 12:29 PM	

+="CN92172"	"Inatll, Set To Work, Training & Support  for MAC2 on HMAS Sydney"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	28-May-08	09-Aug-08	59414.50	=""	="THALES AUSTRALIA"	17-Jun-08 12:31 PM	

+="CN92173"	"The work under this Purchase Order will be done in Contract CADAS05/08."	="Defence Materiel Organisation"	17-Jun-08	="War vehicles"	28-May-08	30-Jun-09	52174.10	=""	="LLOYD W HONEYCOMBE"	17-Jun-08 12:31 PM	

+="CN92187"	"Aircraft Arrestor Spares"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft landing and braking systems"	28-May-08	21-Nov-08	56290.75	=""	="DEFENCE LIAISON SERVICES PTY LTD"	17-Jun-08 12:33 PM	

+="CN92188"	"ESSM Technical Recovery Ph1 only"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	28-May-08	31-Jul-08	40961.07	=""	="QINETIQ NOVARE PTY LTD"	17-Jun-08 12:33 PM	

+="CN92191"	"ASRAAM Technical Recovery Ph1"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	28-May-08	31-Jul-08	43310.31	=""	="QINETIQ NOVARE PTY LTD"	17-Jun-08 12:34 PM	

+="CN92215"	"Army clothing supplies"	="Defence Materiel Organisation"	17-Jun-08	="Clothing"	29-May-08	24-Sep-08	50727.16	=""	="EAGLE INDUSTRIES UNLIMITED INC"	17-Jun-08 12:37 PM	

+="CN92219"	"THIS ORDER IS PLACED IAW C439170"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	29-May-08	30-Jun-08	59370.89	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:37 PM	

+="CN92238"	"CONDMAT MILIS INTEGRATION OPTIONS ANALYSIS"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	26-May-08	30-Jun-08	40700.00	=""	="SMS CONSULTING GROUP LIMITED"	17-Jun-08 12:40 PM	

+="CN92241"	"TAP-3 Disposal - Phase 3"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	27-May-08	06-Jun-08	58690.95	=""	="AUSTRALIAN AEROSPACE LTD"	17-Jun-08 12:40 PM	

+="CN92246"	"S/N BA011 (S&Q 039)"	="Defence Materiel Organisation"	17-Jun-08	="Launchers"	27-May-08	30-Jun-08	48032.60	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:41 PM	

+="CN92260"	"MIMS Maintenance Introduction e-Assessment of E-Learning Courses."	="Defence Materiel Organisation"	17-Jun-08	="Software"	27-May-08	23-Jun-08	40390.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	17-Jun-08 12:42 PM	

+="CN92261"	"Purchase of equipment"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	27-May-08	30-Jun-08	46170.30	=""	="METROMATICS PTY LTD"	17-Jun-08 12:42 PM	

+="CN92268"	"DEVELOP RFT FOR TOPLITE"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	27-May-08	18-Jul-08	55510.00	=""	="BMT DEFENCE SERVICES (AUSTRALIA)"	17-Jun-08 12:43 PM	

+="CN92271"	"Satellite Equipment"	="Defence Materiel Organisation"	17-Jun-08	="Satellites"	27-May-08	30-Jun-08	55000.00	=""	="APPLIED SATELLITE TECHNOLOGY"	17-Jun-08 12:44 PM	

+="CN92325-A1"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	21-Apr-08	21-Oct-08	60000.00	=""	="Mallesons Stephen Jacques"	18-Jun-08 10:21 AM	

+="CN92342"	"Fitout Program for March 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Property management services"	01-Mar-08	31-Mar-08	50992.12	=""	="UNITED GROUP SERVICES PTY LTD"	18-Jun-08 11:25 AM	

+="CN92347"	"software Licence"	="Department of Defence"	18-Jun-08	="Software"	02-Jun-08	30-Jun-08	48642.00	=""	="ROHDE AND SCHWARZ (AUST) PTY LTD"	18-Jun-08 11:35 AM	

+="CN92355"	"AGGREGATION TAPS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	30-Jun-08	43956.00	=""	="MATRIUM TECHNOLOGIES PTY LTD"	18-Jun-08 11:37 AM	

+="CN92360"	"DEFENCE ENVIRONMENT AND HERITAGE PANEL RE-TENDER."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	03-Jun-08	30-Jun-09	49999.99	=""	="PSI CONSULTING PTY LTD"	18-Jun-08 11:37 AM	

+="CN92366"	"MAPOWER LABOUR HIR"	="Department of Defence"	18-Jun-08	="Vehicle servicing equipment"	03-Jun-08	27-Jun-08	55000.00	=""	="MANPOWER SERVICES (AUST) PTY LTD"	18-Jun-08 11:38 AM	

+="CN92385"	"FURNITURE RESTORATION"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	02-Jun-08	02-Jun-08	41800.00	=""	="HEINIGER JOINERY"	18-Jun-08 11:41 AM	

+="CN92386"	"security cabinets"	="Department of Defence"	18-Jun-08	="Containers and storage"	02-Jun-08	07-Jul-08	45000.00	=""	="CIC SECURE PTY LTD"	18-Jun-08 11:41 AM	

+="CN92388"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	02-Jun-08	30-Jun-09	44555.00	=""	="SPARKE HELMORE LAWYERS"	18-Jun-08 11:42 AM	

+="CN92391"	"Professional Services"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	02-Jun-08	31-Jul-08	48424.98	=""	="CSC AUSTRALIA PTY LTD"	18-Jun-08 11:42 AM	

+="CN92395"	"Professional Services"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	02-Jun-08	31-Jul-08	55249.93	=""	="ACUMEN ALLIANCE"	18-Jun-08 11:42 AM	

+="CN92412"	"SERVICES"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	30-Jun-08	42163.00	=""	="AVAYA AUSTRALIA PTY LTD"	18-Jun-08 11:45 AM	

+="CN92426"	"Red Hat Management Module"	="Department of Defence"	18-Jun-08	="Software"	03-Jun-08	30-Jun-08	55024.86	=""	="RED HAT ASIA-PACIFIC PTY LTD"	18-Jun-08 11:47 AM	

+="CN92433"	"Professional Services (Project Management) to Spport JP2077 2B and UAL Program Activities"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	03-Jun-08	30-Jun-08	52800.00	=""	="SYPAQ SYSTEMS PTY LTD"	18-Jun-08 11:48 AM	

+="CN92439"	"ASI Engineering Services"	="Department of Defence"	18-Jun-08	="Aircraft equipment"	03-Jun-08	30-Jun-09	50978.93	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	18-Jun-08 11:49 AM	

+="CN92442"	"Research Agreement"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	03-Jun-08	30-Jun-08	46200.00	=""	="UNI OF SA"	18-Jun-08 11:49 AM	

+="CN92448"	"public notices"	="Department of Defence"	18-Jun-08	="Printed media"	03-Jun-08	30-Jun-08	48496.80	=""	="HMA BLAZE PTY LTD"	18-Jun-08 11:50 AM	

+="CN92461"	"RTI Pro Support Plan Software/Maintenance Suppprt"	="Department of Defence"	18-Jun-08	="Software"	30-May-08	30-Jun-08	44730.29	=""	="RAYTHEON VIRTUAL TECHNOLOGY"	18-Jun-08 11:52 AM	

+="CN92467"	"FACOPS"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	30-May-08	30-Jun-08	43065.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 11:53 AM	

+="CN92471"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-May-08	55000.00	=""	="ATTORNEY GENERALS DEPARTMENT"	18-Jun-08 11:53 AM	

+="CN92472"	"PURCHASE PC's"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	16-Jun-08	47513.40	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	18-Jun-08 11:53 AM	

+="CN92475"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-May-08	60000.00	=""	="ACT DEPT OF EDUCATION & TRAINING"	18-Jun-08 11:54 AM	

+="CN92488"	"JNR TRANSITION IMPLEMENTATION MANAGER"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	31-Aug-08	53108.00	=""	="PAXUS AUSTRALIA PTY LTD"	18-Jun-08 11:55 AM	

+="CN92491"	"PURCHASE OF PCI CARD"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	13-Jun-08	58806.00	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	18-Jun-08 11:56 AM	

+="CN92494"	"PAR MODEL 2273-SYS POTENTIOSTAT SYSTEM"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	30-May-08	27-Jun-08	50820.00	=""	="PRODIGITAL PTY LTD"	18-Jun-08 11:56 AM	

+="CN92525"	"On-going maintenance and support of the pabx's"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	02-Jun-08	30-Jun-08	54192.88	=""	="FUJITSU AUSTRALIA LTD"	18-Jun-08 12:00 PM	

+="CN92532"	"REMEDIATION WORKS TO WATER COOLING TOWERS AMBERELY"	="Department of Defence"	18-Jun-08	="Distribution and Conditioning Systems and Equipment and Components"	02-Jun-08	30-Jun-08	44176.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:02 PM	

+="CN92545"	"FACOPS"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	30-May-08	30-Jun-08	41030.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:04 PM	

+="CN92526"	"MOU Charges May 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Corporate finance"	01-May-08	31-May-08	56216.60	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	18-Jun-08 12:04 PM	

+="CN92553"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	02-Jun-08	30-Jun-08	48994.00	=""	="ASSET SERVICES"	18-Jun-08 12:05 PM	

+="CN92557"	"Training  and implementation"	="Department of Defence"	18-Jun-08	="Laboratory supplies and fixtures"	30-May-08	01-Jul-08	44248.51	=""	="UAV NAVIGATION S.L."	18-Jun-08 12:06 PM	

+="CN92563"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	56509.25	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:07 PM	

+="CN92566"	"GOODS"	="Department of Defence"	18-Jun-08	="Truck tractors"	05-Jun-08	30-Jun-08	53130.00	=""	="LAND ROVER AUSTRALIA PTY LTD"	18-Jun-08 12:07 PM	

+="CN92583"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	56591.09	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:10 PM	

+="CN92590"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	58300.00	=""	="REHAB MANAGEMENT"	18-Jun-08 12:11 PM	

+="CN92602"	"ALARM SYSTEM AND ACCESS CONTROL HARRISTOWN"	="Department of Defence"	18-Jun-08	="Security and control equipment"	05-Jun-08	30-Jun-08	56870.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:12 PM	

+="CN92613"	"Requisition to cover provision of Sharepoint"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	06-Jun-08	30-Jun-08	40040.00	=""	="LOGITECH PTY LTD"	18-Jun-08 12:14 PM	

+="CN92617"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	15-Jun-08	59479.06	=""	="MAC 1 PTY LTD"	18-Jun-08 12:14 PM	

+="CN92630"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	06-Jun-08	30-Jun-09	40057.50	=""	="PHILLIPS FOX SYDNEY"	18-Jun-08 12:16 PM	

+="CN92632"	"Valves for Fuel Farm located at RAAF Base Townsvil"	="Department of Defence"	18-Jun-08	="Transportation components and systems"	06-Jun-08	30-Jun-08	48336.20	=""	="SPOTLESS"	18-Jun-08 12:16 PM	

+="CN92635"	"TEAM LEAD SYSTEMS ASSURANCE (SA)"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	06-Jun-08	08-Aug-08	58280.00	=""	="AMW PROFESSIONAL SERVICES"	18-Jun-08 12:16 PM	

+="CN92636"	"FACOPS"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	06-Jun-08	30-Jun-08	40260.00	=""	="GUNNEBO AUSTRALIA PTY LTD"	18-Jun-08 12:17 PM	

+="CN92641"	"IT EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	43801.06	=""	="TENIX DATAGATE PTY LTD"	18-Jun-08 12:17 PM	

+="CN92651"	"YANMAR POWER SYSTEM FOR TRAINING OF NAVAL MARINE T"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	05-Jun-08	23-Jun-08	45049.42	=""	="MARITIME MECHANICS PTY LTD"	18-Jun-08 12:19 PM	

+="CN92663"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	46701.43	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:20 PM	

+="CN92665"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	40082.46	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:21 PM	

+="CN92702"	"Research Agreement"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	03-Jun-08	20-Jun-08	55000.00	=""	="ADELAIDE RESEARCH & INNOVATION PTY"	18-Jun-08 12:26 PM	

+="CN92721"	"ANNUAL CAMP REIMBURSEMENT SCHOOL BASED CADETS"	="Department of Defence"	18-Jun-08	="Camping and outdoor equipment and accessories"	04-Jun-08	04-Jun-08	44660.00	=""	="KNOX GRAMMAR SCHOOL"	18-Jun-08 12:29 PM	

+="CN92723"	"ONGOING SUPPORT TO TMS CONTRACT.  SOLE OEM SUPPLIE"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	20-Jun-08	56100.00	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 12:29 PM	

+="CN92736"	"Senior Technical Consultant - ABAP"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	04-Jun-08	31-Jul-08	42240.00	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	18-Jun-08 12:31 PM	

+="CN92744"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	20-Jun-08	46420.00	=""	="HUMPHREYS COMMUNICATION GROUP"	18-Jun-08 12:32 PM	

+="CN92748"	"Computing Equipment"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	18-Jun-08	43979.05	=""	="CERULEAN SOLUTIONS LTD"	18-Jun-08 12:33 PM	

+="CN92757"	"Computing Licensing"	="Department of Defence"	18-Jun-08	="Office supplies"	04-Jun-08	15-Jun-08	41515.50	=""	="FORTIFY SOFTWARE"	18-Jun-08 12:34 PM	

+="CN92771"	"PROVISION OF TECHNICAL WRITING SERVICES"	="Department of Defence"	18-Jun-08	="Information services"	04-Jun-08	30-Jun-08	52000.30	=""	="DIMENSION DATA LEARNING SOLUTIONS"	18-Jun-08 12:36 PM	

+="CN92776"	"BENQ PROJECTOR MP622C BENQ PROJECTOR MP723"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	13-Jun-08	53308.20	=""	="ITMS GROUP"	18-Jun-08 12:36 PM	

+="CN92798"	"38 SQN COLLOCATION. DOCUMENT AND CONSTRUCT FOR DELIVERY OF FACILITIES."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	11-Jun-08	30-Jun-08	42134.40	=""	="WATPAC AUSTRALIA PTY LTD"	18-Jun-08 12:39 PM	

+="CN92804"	"EVENT VEHICLE PROGRAME"	="Department of Defence"	18-Jun-08	="Office supplies"	06-Jun-08	30-Jun-08	45581.80	=""	="LAM AGENCY PTY LTD"	18-Jun-08 12:40 PM	

+="CN92817"	"COOMA - REPLACE A/C IN TER ROOM"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	12-Nov-07	30-Jun-08	40909.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:42 PM	

+="CN92825"	"NT1766 PROJECT VIGILARE -  AIR5333 AIRCONDITIONING WORKS"	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	04-Jun-08	30-Jun-08	56082.20	=""	="AIRDUCTER"	18-Jun-08 12:43 PM	

+="CN92834"	"TOSHIBA ESTUDIO 160F FAX MACHINES"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	11-Jun-08	30-Aug-08	41800.00	=""	="KONICA MINOLTA BUSINESS SOLUTIONS"	18-Jun-08 12:44 PM	

+="CN92840"	"NQ2224 - RAAF BASE TOWNSVILLE DS-NQ - REPAIR FLOOD"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	16-Jun-08	30-Jun-08	41547.00	=""	="SPOTLESS"	18-Jun-08 12:45 PM	

+="CN92841-A1"	"Industry Profile Research"	="Australian Fair Pay Commission"	18-Jun-08	="Market research"	16-Jun-08	05-Sep-08	59622.00	=""	="ACIL Tasman Pty Ltd"	18-Jun-08 12:45 PM	

+="CN92853"	"Thin client terminals"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	12-May-08	26-May-08	40282.00	=""	="COMPUTERCORP PTY LTD"	18-Jun-08 12:46 PM	

+="CN92883"	"Contract CIOG628/07 - PMKeyS LRLI 01/08."	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	54507.76	=""	="UXC LIMITED"	18-Jun-08 12:50 PM	

+="CN92893"	"VEHICLE LEASE AFG MAY08"	="Department of Defence"	18-Jun-08	="Motor vehicles"	26-May-08	01-Jun-08	52222.81	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:52 PM	

+="CN92902"	"PROFESSIONAL SERVICE PROVIDER"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	30-May-08	27-Jun-08	49574.80	=""	="ROSS HUMAN DIRECTIONS"	18-Jun-08 12:53 PM	

+="CN92934"	"LEASE OF VEHICLES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	18-May-08	30-May-08	44258.62	=""	="SEVEN SEAS SHIPSCHANDLERS LLC"	18-Jun-08 12:57 PM	

+="CN92947"	"SA1786 IMMEDIATE/URGENT WORKS MARS"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	16-Jun-08	30-Jun-08	50000.01	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:59 PM	

+="CN92949"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Education and Training Services"	12-Jun-08	30-Jun-08	55000.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	18-Jun-08 12:59 PM	

+="CN92957"	"Erect Cover over New Sports Court"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	12-Nov-07	30-Jun-08	50023.60	=""	="SPOTLESS"	18-Jun-08 01:00 PM	

+="CN92966"	"PATHOLOGY SERVICES TO HCC MEMBERS CERBERUS"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	18-Jan-08	30-Jun-08	55000.00	=""	="DOREVITCH PATHOLOGY"	18-Jun-08 01:01 PM	

+="CN92970"	"GSS Contract Hospitality and Catering"	="Department of Defence"	18-Jun-08	="Saddlery and harness goods"	12-Jun-08	30-Jun-08	44000.00	=""	="SEARSON BUCK PTY LTD"	18-Jun-08 01:02 PM	

+="CN92987"	"Feral Animal Control WA Metro"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Jun-08	42620.09	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	18-Jun-08 01:04 PM	

+="CN92991"	"CHANGE MANAGEMENT ACTIVITY"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	30-Jun-08	55000.00	=""	="KPMG AUSTRALIA"	18-Jun-08 01:05 PM	

+="CN93004"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	30-Jun-08	59400.00	=""	="LAERDAL PTY LTD"	18-Jun-08 01:07 PM	

+="CN93016"	"TECHNICAL WRITER SERVICES"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	31-Jul-08	49840.00	=""	="MINTER ELLISON"	18-Jun-08 01:08 PM	

+="CN93042"	"Computing racks C Class racks"	="Department of Defence"	18-Jun-08	="Office supplies"	28-May-08	07-Jun-08	40360.87	=""	="SJC SERVICES PTY LIMITED"	18-Jun-08 01:12 PM	

+="CN93051"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	40000.00	=""	="CANBERRA NEUROPSYCHOLOGICAL"	18-Jun-08 01:13 PM	

+="CN93056"	"FURNITURE"	="Department of Defence"	18-Jun-08	="Furniture and Furnishings"	29-May-08	30-Jun-08	41044.30	=""	="INTERWORX PTY LTD"	18-Jun-08 01:14 PM	

+="CN93063"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	60000.00	=""	="DOUGLASS HANLY MOIR PATHOLOGY"	18-Jun-08 01:14 PM	

+="CN93089"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	40000.00	=""	="STEPHEN ROBSON MEDICAL PTY LTD"	18-Jun-08 01:18 PM	

+="CN93095"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	55000.00	=""	="DR SIM HOM TAM"	18-Jun-08 01:19 PM	

+="CN93098"	"Manufacture and Installation of Bat Bunting RAAF Base Amberley"	="Department of Defence"	18-Jun-08	="Environmental control systems"	27-May-08	30-Jun-08	48908.20	=""	="NATHAN CONSTRUCTION SERVICES"	18-Jun-08 01:19 PM	

+="CN93102"	"Upgrade for CX3-20 Edinburgh"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	20-Jun-08	50506.10	=""	="LOGITECH PTY LTD"	18-Jun-08 01:20 PM	

+="CN93103"	"FACOPS"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	03-Jun-08	42685.12	=""	="CONNECTING CONSTRUCTIONS PTY LTD"	18-Jun-08 01:20 PM	

+="CN93105"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	27-May-08	30-May-08	50600.00	=""	="UNIVERSITY OF NSW ADFA UNSW@ADF"	18-Jun-08 01:20 PM	

+="CN93116"	"PSP TO ASSIST DES PROCESSING INVOICES AND FILING"	="Department of Defence"	18-Jun-08	="Personnel recruitment"	27-May-08	27-May-08	40454.70	=""	="PEOPLEBANK"	18-Jun-08 01:22 PM	

+="CN93119"	"MARSHALLING SYSTEM."	="Department of Defence"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-May-08	16-Jun-08	51700.00	=""	="BOHEMIA INTERACTIVE AUSTRALIA"	18-Jun-08 01:22 PM	

+="CN93124"	"PROFESSIONAL FEES AND DISBURSEMENTS"	="Department of Defence"	18-Jun-08	="Legal services"	27-May-08	30-Jun-09	59520.00	=""	="MINTER ELLISON"	18-Jun-08 01:23 PM	

+="CN93128"	"DESIGN AND DEVELOP PMKEYS COURSE"	="Department of Defence"	18-Jun-08	="Software"	27-May-08	27-May-08	59400.00	=""	="MULTIMEDIA CONCEPTS PTY LTD"	18-Jun-08 01:23 PM	

+="CN93131"	"WMS Development Scoping study"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	12-Jun-08	30-Jun-08	58300.00	=""	="AAMHATCH  PTY LTD"	18-Jun-08 01:24 PM	

+="CN93148"	"NAC appliances"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	06-Jun-08	53495.80	=""	="ALPHAWEST SERVICES PTY LTD"	18-Jun-08 01:26 PM	

+="CN93151"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	28-May-08	30-Jun-09	45000.00	=""	="DR S ROBERT ARMELLIN"	18-Jun-08 01:26 PM	

+="CN93154"	"PURCHASE OF PRINTERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	11-Jun-08	55044.00	=""	="LEXMARK INTERNATIONAL (AUST) PTY LT"	18-Jun-08 01:26 PM	

+="CN93174"	"Duar Socket, dual core AMD x 3655-1TB"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	54450.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 01:29 PM	

+="CN93199"	"PABX SYSTEM EXPANSION FOR ROBERTSON BARRACKS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	16-Jun-08	59919.20	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 01:33 PM	

+="CN93234"	"Provision of pricing model advice"	="Department of Human Services"	18-Jun-08	="Business and corporate management consultation services"	06-Jun-08	17-Jun-08	42075.00	=""	="Transaction Resources Pty Ltd"	18-Jun-08 03:45 PM	

+="CN93245"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	18-Jun-08	="Business law services"	01-Apr-08	30-Apr-08	42050.35	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Jun-08 04:58 PM	

+="CN93252"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	05-Jun-08	30-Jun-08	41800.00	=""	="Chandler Macleod Group"	19-Jun-08 07:52 AM	

+="CN93272-A1"	"Archived File Retrieval (MoG) Arts & Sports Files"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	27-Apr-08	30-Jun-08	57569.51	="ATM08/1055"	="RECALL INFORMATION MANAGEMENT Pty L"	19-Jun-08 09:08 AM	

+="CN93275-A1"	"Assistance with March interim hard-close 07-08"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	47492.48	="DCON/05/53"	="ERNST & YOUNG"	19-Jun-08 09:08 AM	

+="CN93281"	"220 VM radius & web tokens"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	13-Jun-08	19-Jun-08	50270.66	="ATM08/1067"	="VASCO Data Security Australia"	19-Jun-08 09:09 AM	

+="CN93282-A1"	"SPSS Advertising 2008 - GCUADV 2002/03"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	30-Jun-09	40450.18	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	19-Jun-08 09:09 AM	

+="CN93294-A1"	"Transition to PCMS & MobileX OEM Licensing"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	07-Jul-08	30-Jun-09	40947.03	="ATM08/988"	="RANDOM COMPUTING SERVICES PTY LTD"	19-Jun-08 09:11 AM	

+="CN93299"	"Facilitator to assist formation of a peak Telecommunications Consumer Representivie body"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	13-Jun-08	40000.00	="DCON/08/42"	="Philippa Smith"	19-Jun-08 09:12 AM	

+="CN93307"	"Varicella Virus Vaccine"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	05-Jun-08	04-Aug-08	54660.00	=""	="GLAXOSMITHKLINE AUSTRALIA P/L"	19-Jun-08 11:32 AM	

+="CN93356"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	27-Jun-08	41654.80	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93359"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	20-Jun-08	43798.70	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93360"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	01-Jun-08	59932.40	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93367-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	47616.80	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93370-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	40752.80	=""	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93377"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	05-May-08	30-Jun-08	49500.00	=""	="PricewaterhouseCoopers"	19-Jun-08 02:18 PM	

+="CN93380"	"Expansion of storage racking capacity"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Dec-07	30-Jun-08	41105.08	=""	="Jackman Builders Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93407"	"Fitout management services"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-09	52200.00	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 02:22 PM	

+="CN93421"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	29-May-08	13-Jun-08	41514.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93427-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	55700.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:25 PM	

+="CN93445-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	46200.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93462"	"Membership"	="Centrelink"	19-Jun-08	="Business administration services"	08-May-08	30-Jun-08	45658.00	=""	="CUTTER CONSORTIUM, LLC"	19-Jun-08 02:30 PM	

+="CN93463"	"Software Licences"	="Centrelink"	19-Jun-08	="Software"	08-May-08	08-May-08	42210.79	=""	="Kaz Group Pty Ltd"	19-Jun-08 02:30 PM	

+="CN93473"	"Construction fitout for Centrelink office, Taylor's Lakes, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-May-08	30-Jun-08	54297.87	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:31 PM	

+="CN93474"	"Furniture for office fitout"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	05-May-08	30-Jun-08	45460.80	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:32 PM	

+="CN93498"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	58333.92	=""	="Kaz Group Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93508"	"Chairs for Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	01-May-08	29-Aug-08	51921.10	=""	="Solitaire Seating"	19-Jun-08 02:36 PM	

+="CN93520"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	46556.40	=""	="Rohde and Schwarz (Aust) Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93532"	"Courier Services"	="Centrelink"	19-Jun-08	="Transport operations"	27-May-08	30-Jun-08	50000.01	=""	="Toll Priority"	19-Jun-08 02:39 PM	

+="CN93535"	" Certificate IV in Government (Civil Investigation) "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	30-Jun-08	11-Jul-08	60000.00	="06.205-8"	="KPS and Associates Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93541"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	31-Jul-08	45157.73	=""	="Infront Systems Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93562"	"Class B 3 draw safes"	="Centrelink"	19-Jun-08	="Office and desk accessories"	19-May-08	30-Jun-08	42680.00	=""	="Planex Sales Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93565"	"Furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	16-May-08	30-Jun-08	42395.10	=""	="Schiavello Systems (NSW) Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93570"	"Manage test environment operations"	="Austrade"	19-Jun-08	="Computer services"	30-Dec-07	28-Mar-08	59400.00	=""	="Icon Recruitment Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93572"	"Provide eLearning design and development for range of materials to support Journey to Export business programs"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-May-08	45314.50	=""	="TACTICS Consulting Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93575"	"Design and development of online courses covering OH&S and Procurement"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	52140.00	=""	="Evolve Studios Pty Ltd"	19-Jun-08 02:50 PM	

+="CN93583"	"BETA GAMMA 8 ELEMENT TLD DOSIMETER CARDS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Dosimetry equipment"	15-May-08	15-May-08	48685.05	="NA"	="REXON TLD SYSTEMS INC."	19-Jun-08 02:52 PM	

+="CN93608"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	03-Aug-08	41089.40	=""	="Symbion"	19-Jun-08 03:35 PM	

+="CN93611"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	20-Jul-08	46856.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	19-Jun-08 03:39 PM	

+="CN93626"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	01-Sep-08	40480.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93628"	"Procurement of:  HEADSET-MICROPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	01-Aug-08	50932.00	=""	="JEA TECHNOLOGIES Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93635"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	07-Sep-08	43078.36	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93637"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	08-Sep-08	43187.30	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93646"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	01-Aug-08	59047.15	=""	="MARINE PLANT SYSTEMS Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93651"	"Procurement of:  PUMP,ROTARY;  GEAR,SPUR;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	30-Oct-08	44774.10	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN93658"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	16-Sep-08	45936.90	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:46 PM	

+="CN91166"	"Revision of Cyberquoll Technical & Content Features"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Computer or network or internet security"	11-Jun-08	05-Nov-08	55474.07	="07/ACMA052"	="Curriculum Corporation"	19-Jun-08 03:47 PM	

+="CN93673"	"Procurement of:  SERIES LINK UNIT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	13-May-09	57364.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93678"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	46500.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93686"	"Procurement of:  TARGET,RADAR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	15-May-08	30-Jun-08	48611.20	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:51 PM	

+="CN91093-A1"	"Review of CFM System"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Data base management system software"	04-Jun-08	30-Sep-08	53100.00	="07/ACMA088"	="Metacorp Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93693"	"Procurement of:  VALVE,DIAPHRAGM,STOP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	04-Sep-08	49358.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93700"	"Procurement of:  TERMINATION KIT,CABLE ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	15-Feb-09	55485.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93706"	"Procurement of:  LIFTING ARRANGEMENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	08-Oct-08	40114.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93708"	"Procurement of:  PLATE,RETAINING,BEARING;  SHIM;  SHIM;  CAMSHAFT,ENGINE;  CAMSHAFT,ENGINE;  SCREW,CAP; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Nov-08	45377.63	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93716"	"Procurement of:  TESTER,CABLE TENSIOMETER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	06-Feb-09	49440.60	=""	="BEAK RAST ENGINEERING"	19-Jun-08 03:55 PM	

+="CN93717"	"Procurement of:  SHACKLE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Nov-08	58187.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:56 PM	

+="CN93736"	"Procurement of:  PANEL,CONTROL,ELECTRICAL-ELECTRONIC;  CIRCUIT CARD ASSEMBLY;  AMPLIFIER-POWER SUPPLY GROUP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Nov-08	45190.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93755"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	31-Oct-08	50330.94	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:02 PM	

+="CN93787"	"Procurement of:  TANK,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	01-Aug-08	43359.65	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93815"	"Procurement of:  SHIELD ASSEMBLY,BEARING;  SHIELD ASSEMBLY,BEARING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	27-Jul-08	46925.28	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Jun-08 04:11 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val60000to80000.xls
@@ -1,1 +1,156 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91111"	"Provision of legal services"	="Department of Parliamentary Services"	17-Jun-08	="Legal services"	06-Jun-08	30-Jun-08	71500.00	=""	="Minter Ellison"	17-Jun-08 09:16 AM	

+="CN91128"	"Supply of Photocopying machines"	="Department of Parliamentary Services"	17-Jun-08	="Printer and facsimile and photocopier supplies"	19-May-08	30-May-08	71049.00	=""	="Fuji Xerox Australia Pty Ltd"	17-Jun-08 09:19 AM	

+="CN91142-A1"	"Professional services to support sustainability assessment"	="CrimTrac"	17-Jun-08	="Strategic planning consultation services"	01-May-08	31-Jul-08	80000.00	=""	="Hugh Watson Consulting"	17-Jun-08 10:07 AM	

+="CN91148"	"Enclosure for data centre"	="CrimTrac"	17-Jun-08	="Computer servers"	23-May-08	30-Jun-08	79998.60	=""	="Data#3 Limited"	17-Jun-08 10:07 AM	

+="CN91266-A1"	"07/2157 - Consultancy Services - 1599-1948 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	10-Sep-07	31-Dec-07	68805.00	="07/2157"	="Pricewaterhouse Coopers"	17-Jun-08 11:00 AM	

+="CN91292"	"Modification and Repair of Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79200.00	=""	="Hawker De Havilland"	17-Jun-08 11:05 AM	

+="CN91301"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	15-Oct-07	28-Mar-08	70600.00	=""	="Observatory Hill Pty Ltd"	17-Jun-08 11:06 AM	

+="CN91317-A1"	"08/2822 - Project Management Services - 1599-1987 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	11-May-08	29-Aug-08	74000.00	="08/2822"	="Cordelta Pty Ltd"	17-Jun-08 11:08 AM	

+="CN91419-A1"	"Temporary Backfill of Technical Architecture Role for STAR Program"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	15-Jan-08	15-May-08	79200.00	=""	="SMS Management & Technology Limited (formerly Avoga)"	17-Jun-08 11:34 AM	

+="CN91584"	"OVERHAUL THE SEALED HYDRAULIC TRANSMISSION UNIT FOR THE REPLENISHMENT AT SEA (RAS )SYSTEM."	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	03-Jun-08	30-Jun-08	63605.73	=""	="PARKER HANNIFIN AUST PTY LTD"	17-Jun-08 11:44 AM	

+="CN91604"	"Architect Solution Services"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	02-Jun-08	30-Jun-08	70000.00	=""	="DELOITTE TOUCHE TOHMATSU"	17-Jun-08 11:45 AM	

+="CN91672"	"NEC 20" monitors"	="Defence Materiel Organisation"	17-Jun-08	="Air transportation support systems and equipment"	03-Jun-08	30-Jun-08	78575.64	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 11:50 AM	

+="CN91678"	"Refurbish Fan Coil Units Type 1 Size 24, and Type1 Size 25"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	22-Jul-08	64262.00	=""	="ENVIROAIR PTY LTD"	17-Jun-08 11:50 AM	

+="CN91736"	"Extension to the contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	25-Aug-07	22-Feb-08	69300.00	=""	="Sammes & Sammes Pty Ltd"	17-Jun-08 11:55 AM	

+="CN91785"	"This PO raised for the supply of emergency BDS ite to complete RI's in progress."	="Defence Materiel Organisation"	17-Jun-08	="Aircraft equipment"	02-Jun-08	30-Jun-09	60000.00	=""	="SAFE AIR LTD"	17-Jun-08 11:58 AM	

+="CN91804"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	17-Jun-08	="Information technology consultation services"	03-Oct-07	28-Mar-08	65000.00	=""	="SVH Computing Pty Ltd"	17-Jun-08 12:00 PM	

+="CN91889"	"Purchase of Equipment for the JCSE Program Office #JC030601 dated 03 June 2008."	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	06-Jun-08	30-Jun-08	74382.00	=""	="HEWLETT PACKARD AUSTRALIA LTD"	17-Jun-08 12:06 PM	

+="CN91927"	"Fund 10 Year Major Inspection for a Truck Aircraft Side Loading/Unloading (TASLU)."	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	04-Jun-08	30-Sep-08	67320.00	=""	="STATIC ENGINEERING PTY LTD"	17-Jun-08 12:08 PM	

+="CN91950"	"Spare parts for Water Purification System"	="Defence Materiel Organisation"	17-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	05-Jun-08	01-Jul-08	75769.58	=""	="PALL AUSTRALIA"	17-Jun-08 12:10 PM	

+="CN92012"	"Contracted S-70B-2 Phase 2 Servicing"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	16-Jun-08	31-Aug-08	76346.63	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	17-Jun-08 12:15 PM	

+="CN92022"	"Repair Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79200.00	=""	="Hawker De Havilland"	17-Jun-08 12:16 PM	

+="CN92033"	"ANZAC SIMULATOR TECHNICAL AND TRAINING SUPPORT"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	11-Nov-07	30-Jun-10	68817.34	=""	="CSC AUSTRALIA PTY LTD"	17-Jun-08 12:17 PM	

+="CN92047"	"SUPPLY OF MARINE DIESEL  FUELS"	="Defence Materiel Organisation"	17-Jun-08	="Fuels"	06-Jun-08	30-Jun-08	72600.00	=""	="BAILEY'S MARINE FUELS AUSTRALIA"	17-Jun-08 12:18 PM	

+="CN92066-A1"	"Independent legal services for review of Contracts"	="Defence Materiel Organisation"	17-Jun-08	="Legal services"	10-Jun-08	30-Jun-08	79447.50	=""	="CLAYTON UTZ"	17-Jun-08 12:19 PM	

+="CN92116-A1"	"Repair Windshield"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	09-Apr-08	09-Sep-08	79290.00	=""	="Hawker De Havilland"	17-Jun-08 12:24 PM	

+="CN92124"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	75415.77	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:24 PM	

+="CN92131"	"GST ON FOREIGN CURRENCY PAYMENT"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	13-May-08	30-Jun-13	62266.50	=""	="MATHER ROACH CONSULTING PTY LTD"	17-Jun-08 12:25 PM	

+="CN92134"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	75254.68	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:25 PM	

+="CN92148"	"CONSULTANT"	="Defence Materiel Organisation"	17-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	10-Jun-08	30-Jun-08	70000.00	=""	="CODARRA ADVANCED SYSTEMS"	17-Jun-08 12:28 PM	

+="CN92152"	"Approved Additional Hours (Overtime) worked ... WTSS Facilities during Fin Yr 2007/08"	="Defence Materiel Organisation"	17-Jun-08	="Electronic hardware and component parts and accessories"	12-Nov-07	31-Dec-08	77000.00	=""	="FIREARMS TRAINING SYSTEMS AUSTRALIA"	17-Jun-08 12:28 PM	

+="CN92143"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	17-Jun-08	="Business law services"	25-Jan-08	25-Feb-08	70526.43	=""	="CLAYTON UTZ"	17-Jun-08 12:29 PM	

+="CN92163"	"ISS - CONSUMABLES"	="Defence Materiel Organisation"	17-Jun-08	="Missile and rocket launchers"	14-Jan-08	31-Dec-08	69039.20	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92164"	"ISS - NON REPAIRABLE ITEMS"	="Defence Materiel Organisation"	17-Jun-08	="Electronic Components and Supplies"	12-Jun-08	30-Dec-08	63781.12	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:30 PM	

+="CN92170"	"PROFESSIONAL FEES & DISBURSMENT TO SIR LAURENCE ST"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	28-May-08	30-Jun-08	66000.00	=""	="SIR LAURENCE STREET"	17-Jun-08 12:31 PM	

+="CN92182"	"ARMY SPARES"	="Defence Materiel Organisation"	17-Jun-08	="Light weapons and ammunition"	27-May-08	26-Feb-09	75377.41	=""	="SAAB BOFORS DYNAMICS AB"	17-Jun-08 12:32 PM	

+="CN92199"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	70614.85	=""	="GETRONICS (AUSTRALIA) PTY LTD"	17-Jun-08 12:35 PM	

+="CN92232"	"Supply of Demand Performance Report (DPR) Familiar ASD/HSD."	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	27-May-08	30-Jun-08	66227.15	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	17-Jun-08 12:39 PM	

+="CN92263"	"MULTI PURPOSE WATER CHARGE"	="Defence Materiel Organisation"	17-Jun-08	="Arms and ammunition accessories"	27-May-08	25-Aug-08	79286.66	=""	="RAPID ENTRY PTY LTD"	17-Jun-08 12:43 PM	

+="CN92277-A4"	"Provision of business analysis activities for applications/systems"	="Australian Federal Police"	17-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	74332.50	=""	="Paxus Australia Pty Limited"	17-Jun-08 01:14 PM	

+="CN92314-A1"	"Aboriginal culture training program"	="Australian Federal Police"	18-Jun-08	="Education and Training Services"	01-May-08	01-May-10	75000.00	="APS Commission 2005/014"	="Culture Resource Centre Pty Ltd"	18-Jun-08 08:50 AM	

+="CN92318"	"Battery, Nonrechargeable 1.5V Cylinddrical AA Size"	="Defence Materiel Organisation"	18-Jun-08	="Alkaline batteries"	22-Apr-08	26-Jun-08	70405.63	=""	="ENERGIZER AUSTRALIA PTY LTD"	18-Jun-08 09:52 AM	

+="CN92325-A1"	"Legal Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Legal services"	21-Apr-08	21-Oct-08	60000.00	=""	="Mallesons Stephen Jacques"	18-Jun-08 10:21 AM	

+="CN92337"	" Provisions for Learning and Development Courses  "	="Department of Immigration and Citizenship"	18-Jun-08	="Temporary research and development services"	01-May-08	30-Jun-08	66000.00	="7202"	="Nous Group Pty Ltd"	18-Jun-08 11:02 AM	

+="CN92340"	"Provisions for Specialist Public Relations Services"	="Department of Immigration and Citizenship"	18-Jun-08	="Public relations programs or services"	01-Jun-08	31-May-09	79420.00	=""	="Wieck Australia Pty Ltd"	18-Jun-08 11:15 AM	

+="CN92365"	"Services as per RFT 0708-253"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	03-Jun-08	30-Jun-08	80000.00	=""	="DIBA GROUP PTY LTD"	18-Jun-08 11:38 AM	

+="CN92377"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	77000.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	18-Jun-08 11:40 AM	

+="CN92401"	"Dual Socket, dual core AMD x3655-1TB"	="Department of Defence"	18-Jun-08	="Hardware"	03-Jun-08	30-Jun-08	78650.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 11:43 AM	

+="CN92414"	"RATES AND WATER METERS FOR SAMPHIRE DVE, RAILWAY E PROPERTY NO.354135"	="Department of Defence"	18-Jun-08	="Utilities"	03-Jun-08	30-Jun-09	60100.00	=""	="TOWNSVILLE CITY COUNCIL"	18-Jun-08 11:45 AM	

+="CN92419"	"SECURITY UPGRADE"	="Department of Defence"	18-Jun-08	="Electrical equipment and components and supplies"	03-Jun-08	30-Jun-08	77000.00	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 11:46 AM	

+="CN92435"	"LightCycler 480 instrument, 96 well block cycler u nit, PC Monoitor & Printer, Training, Warrant"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	03-Jun-08	27-Jun-08	66918.50	=""	="ROCHE DIAGNOSTIC AUSTRALIA P/L"	18-Jun-08 11:48 AM	

+="CN92454"	"FACOPS"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	30-May-08	30-Jun-08	70620.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 11:51 AM	

+="CN92468"	"Sharepoint Developer"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	30-May-08	30-Jun-08	74250.00	=""	="UNIQUE WORLD PTY LTD"	18-Jun-08 11:53 AM	

+="CN92475"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-May-08	60000.00	=""	="ACT DEPT OF EDUCATION & TRAINING"	18-Jun-08 11:54 AM	

+="CN92490"	"PROVISION OF TONER"	="Department of Defence"	18-Jun-08	="Office Equipment and Accessories and Supplies"	30-May-08	30-Jun-09	66000.00	=""	="KYOCERA MITA AUSTRALIA PTY LTD"	18-Jun-08 11:56 AM	

+="CN92513"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	68918.85	=""	="MAINSTAR INTERNATIONAL LTD"	18-Jun-08 11:59 AM	

+="CN92516"	"MEMBERSHIP FEES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	77194.29	=""	="ENGINEERS AUSTRALIA"	18-Jun-08 11:59 AM	

+="CN92529"	"Proventia GX4004C"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	30-Jun-08	79175.25	=""	="IBM AUSTRALIA LTD"	18-Jun-08 12:01 PM	

+="CN92568"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	72707.67	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:07 PM	

+="CN92572"	"BOOKSHLEVES - NEW FACILITY"	="Department of Defence"	18-Jun-08	="Office and desk accessories"	05-Jun-08	30-Jun-08	79823.96	=""	="COLIN JOSS & CO PTY LTD"	18-Jun-08 12:08 PM	

+="CN92579"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	19-Jun-08	68532.83	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:09 PM	

+="CN92608"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	71500.00	=""	="EASEC PTY LTD"	18-Jun-08 12:13 PM	

+="CN92616"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Jan-09	71500.00	=""	="ORS GROUP"	18-Jun-08 12:14 PM	

+="CN92622"	"Videoconferencing Equipment"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	06-Jun-08	30-Jun-08	67926.21	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	18-Jun-08 12:15 PM	

+="CN92661"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	66805.08	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:20 PM	

+="CN92664"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	73449.03	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:21 PM	

+="CN92666"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	66789.67	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:21 PM	

+="CN92672"	"ADVERTISING FOR PROVISION OF EXECUTIVE RECRUITMENT SERVICES"	="Department of Defence"	18-Jun-08	="Advertising"	06-Jun-08	30-Jun-08	62278.33	=""	="HMA BLAZE PTY LIMITED"	18-Jun-08 12:22 PM	

+="CN92674"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-09	69550.80	=""	="PAXUS AUSTRALIA PTY LTD"	18-Jun-08 12:22 PM	

+="CN92688"	"PROJECTORS WHITEBOARDS"	="Department of Defence"	18-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	28-Jun-08	75548.26	=""	="CANBERRA PROFESSIONAL EQUIPMENT"	18-Jun-08 12:24 PM	

+="CN92697"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT.  OEM SUP"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	20-Jun-08	71502.20	=""	="ADC COMMUNICATIONS (AUSTRALIA)"	18-Jun-08 12:25 PM	

+="CN92698"	"ONGOING SUPPORT TO NATIONAL TMS CONTRACT."	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	20-Jun-08	77138.60	=""	="PACLINK COMMUNICATIONS PTY LTD"	18-Jun-08 12:25 PM	

+="CN92707"	"SUNFIRE X4500 SERVER AMD OPTERON"	="Department of Defence"	18-Jun-08	="Hardware"	03-Jun-08	30-Jun-08	70877.15	=""	="SUN MICROSYSTEMS"	18-Jun-08 12:26 PM	

+="CN92709"	"Dual Socket, dual core AMD x3655-1TB"	="Department of Defence"	18-Jun-08	="Hardware"	03-Jun-08	30-Jun-08	78650.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 12:27 PM	

+="CN92720"	"Professional of Engineering Services"	="Department of Defence"	18-Jun-08	="Professional engineering services"	04-Jun-08	30-Jun-09	66005.73	=""	="FORTBURN PTY LTD"	18-Jun-08 12:29 PM	

+="CN92722"	"ONGOING SUPPORT TO TMS CONTRACT."	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	04-Jun-08	20-Jun-08	72600.00	=""	="NATURAL POWER SOLUTIONS PTY LTD"	18-Jun-08 12:29 PM	

+="CN92733"	"LDS NICOLET EQUIPMENT"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	05-Jun-08	25-Jun-08	62513.00	=""	="DAVIDSON MEASUREMENT"	18-Jun-08 12:30 PM	

+="CN92741"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	05-Jun-08	71233.60	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	18-Jun-08 12:32 PM	

+="CN92743"	"PRINTING"	="Department of Defence"	18-Jun-08	="Printed media"	05-Jun-08	08-Aug-08	75020.00	=""	="CANBERRA MAILING & ENVELOPES"	18-Jun-08 12:32 PM	

+="CN92746"	"REVIEW JOURNALS MADE TO DEVELOP GROUP BUDGETS"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Jun-08	77787.00	=""	="ERNST & YOUNG"	18-Jun-08 12:32 PM	

+="CN92747"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	15-Jun-08	72600.00	=""	="JAKEMAN BUSINESS SOLUTIONS PTY LTD"	18-Jun-08 12:32 PM	

+="CN92772"	"REPAIR"	="Department of Defence"	18-Jun-08	="Leatherworking repairing machinery and equipment"	04-Jun-08	30-Aug-08	64110.48	=""	="ROCKWELL COLLINS AUSTRALIA"	18-Jun-08 12:36 PM	

+="CN92786"	"CONTRACTUAL SUPPORT RMI CONTRACT C388554"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	12-Nov-07	30-Jun-08	64537.90	=""	="SYPAQ SYSTEMS PTY LTD"	18-Jun-08 12:37 PM	

+="CN92814"	"Installation of Torpedo Cabling Facility Stirling"	="Department of Defence"	18-Jun-08	="Building and Construction Machinery and Accessories"	12-Nov-07	30-Jun-08	77721.60	=""	="SPOTLESS P&F 14 DAY TRUST  A/C"	18-Jun-08 12:41 PM	

+="CN92828"	"MEDIA EDUCATION TRAINING"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-Jun-08	30-Jun-08	60699.44	=""	="UNIVERSAL MCCANN"	18-Jun-08 12:43 PM	

+="CN92829"	"CONCEPT TESTING+EXPLORATORY RESEARCH"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Nov-07	30-Jun-08	71500.00	=""	="BLUE MOON RESEARCH AND PLANNING"	18-Jun-08 12:43 PM	

+="CN92830"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	65995.95	=""	="HAYS SPECIALIST RECRUITMENT"	18-Jun-08 12:43 PM	

+="CN92837"	"ASBESTOS REMEDIATION WORKS - BULIMBA BLDG B017"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	06-Jun-08	30-Jun-08	66827.67	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 12:44 PM	

+="CN92864"	"REPLACES PO 4500594060 WHICH WAS RAISED WITH INCOR MAINTENANCE OF CSIG-ID SWS"	="Department of Defence"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	14-May-08	30-Jun-08	73840.95	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 12:48 PM	

+="CN92913"	"LEASE OF VEHICLES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	29-May-08	01-Jun-08	64807.58	=""	="FUTURE SERVICES GENERAL TRADING CO."	18-Jun-08 12:54 PM	

+="CN92914"	"LEASE OF VEHICLES"	="Department of Defence"	18-Jun-08	="Motor vehicles"	29-May-08	01-Jun-08	64807.58	=""	="FUTURE SERVICES GENERAL TRADING CO."	18-Jun-08 12:54 PM	

+="CN92917"	"air ambulance Jose Amaral from Dilli to Darwin"	="Department of Defence"	18-Jun-08	="Safety and rescue vehicles"	17-Mar-08	30-May-08	78582.85	=""	="PDL TOLL"	18-Jun-08 12:55 PM	

+="CN92958"	"REPAIR & OVERHAUL OF DEF.TARGET EQUIPMENT"	="Department of Defence"	18-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	16-Jun-08	30-Jun-08	77000.00	=""	="MOBILE RADIO NQ PTY LTD"	18-Jun-08 01:00 PM	

+="CN92992"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	06-Jun-08	71999.99	=""	="YOUNG ENDEAVOUR YOUTH SCHEME"	18-Jun-08 01:05 PM	

+="CN92993"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	29-May-08	29-May-08	78737.27	=""	="FINANCIAL MANAGEMENT SHARED SERVICE"	18-Jun-08 01:05 PM	

+="CN92995"	"CONTRACTOR SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	30-Jun-08	79200.00	=""	="GR & D DONOGHUE"	18-Jun-08 01:05 PM	

+="CN92998"	"AUTOMATIC IDENTIFICATION TECHNOLOGY ARCHITECTURAL ANALYSIS"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	26-Jun-08	64000.00	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 01:06 PM	

+="CN93012"	"SUBSCRIPTION TO DEFENSE NEWS"	="Department of Defence"	18-Jun-08	="Published Products"	29-May-08	01-Jul-08	79837.50	=""	="PERISCOPE"	18-Jun-08 01:08 PM	

+="CN93031"	"Research and Development"	="Department of Defence"	18-Jun-08	="Developmental and professional teaching aids and materials and accessories and supplies"	29-May-08	30-Jun-08	66000.00	=""	="COOPERATIVE RESEARCH CENTRE FOR"	18-Jun-08 01:10 PM	

+="CN93036"	"AIR FORCE QUALIFIED TRADES HAVE BEEN IDENTIFIED AS BY THE SERVICE BUT CONTINUE TO FALL SHORT OF TARG"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	28-May-08	30-Jun-08	77000.00	=""	="OPEN MIND RESEARCH GROUP"	18-Jun-08 01:11 PM	

+="CN93038"	"6x 12 month subscriptions for training"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-09	79200.00	=""	="EMC GLOBAL HOLDINGS"	18-Jun-08 01:11 PM	

+="CN93062"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	65000.00	=""	="PHILLIP MAYNE"	18-Jun-08 01:14 PM	

+="CN93063"	"FFS 30/06/09"	="Department of Defence"	18-Jun-08	="Medical facility products"	29-May-08	30-Jun-09	60000.00	=""	="DOUGLASS HANLY MOIR PATHOLOGY"	18-Jun-08 01:14 PM	

+="CN93110"	"team building workshops"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	27-May-08	30-May-08	61578.06	=""	="CORPORATE CROSSROADS"	18-Jun-08 01:21 PM	

+="CN93133"	"Team Leader / Senior Systems Engineer"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	22-May-08	30-Jun-08	66434.00	=""	="AFFINITY IT RECRUITMENT"	18-Jun-08 01:24 PM	

+="CN93146"	"Accreditation & Registration Fee"	="Department of Defence"	18-Jun-08	="Education and Training Services"	27-May-08	01-Jun-08	75000.00	=""	="ACT DEPT OF EDUCATION YOUTH &"	18-Jun-08 01:25 PM	

+="CN93162"	"CONTRACTOR TO PROVIDE PROFESSIONAL DEVELOPMENT TRAINING  TO DESK OFFICERS"	="Department of Defence"	18-Jun-08	="Project management"	28-May-08	30-Jun-08	68500.00	=""	="JACOBS AUSTRALIA"	18-Jun-08 01:28 PM	

+="CN93202"	"IBM Server Dual Socket"	="Department of Defence"	18-Jun-08	="Hardware"	28-May-08	30-Jun-08	78650.00	=""	="IBM AUSTRALIA LTD"	18-Jun-08 01:33 PM	

+="CN93229"	"Training  workshop"	="Australian Centre for International Agricultural Research"	18-Jun-08	="Workshops"	16-Jun-08	21-Jun-08	73922.00	=""	="University of Queensland"	18-Jun-08 03:37 PM	

+="CN93250"	"Database Development Services"	="Department of the Environment Water Heritage and the Arts"	18-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-07	30-Jun-08	60250.00	="0708-794"	="Prescott IT"	18-Jun-08 05:21 PM	

+="CN93264"	"Data Entry Services"	="Centrelink"	19-Jun-08	="Computer services"	10-Jun-08	31-Dec-08	77000.00	=""	="Searson Buck Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93277"	"400 x 8GB USB key"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-08	74580.00	="ATM08/1061"	="Service Management Advantage Pty Lt"	19-Jun-08 09:08 AM	

+="CN93302-A2"	" Sources of Business Information.  Month by month extension.  Connected with GaPS # 1292355 & 1568305 (GAPS ID: 1649727)    "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	15-Jun-08	31-Aug-08	63464.50	=""	="IBISWORLD PTY LTD"	19-Jun-08 10:14 AM	

+="CN93310"	"Tool Kits Generic Fitters & Turners.  Order raised against Standing Offer No. CONL069"	="Defence Materiel Organisation"	19-Jun-08	="Tool kits"	17-Jun-08	01-Jul-08	63549.09	=""	="Brentool Industrial Supplies Pty Ltd"	19-Jun-08 12:04 PM	

+="CN93321-A1"	" Certificate III in Financial Services Course Material "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	30-Jun-08	64480.00	="08.094"	="Box Hill Institute of TAFE"	19-Jun-08 01:53 PM	

+="CN93361"	"Supply of Foxtel Business Channels"	="Centrelink"	19-Jun-08	="Telecommunications media services"	07-May-08	28-Feb-11	60886.08	=""	="Foxtel"	19-Jun-08 02:15 PM	

+="CN93362"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	07-May-08	15-Jun-08	71492.30	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93391"	"Office Refurbishment"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	02-May-08	20-Jun-08	68284.78	=""	="Isis Projects Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93394"	"Accounting and auditing"	="Centrelink"	19-Jun-08	="Accounting and auditing"	01-May-08	30-Jun-08	73237.51	=""	="KPMG"	19-Jun-08 02:20 PM	

+="CN93419"	"Fitout Works"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	20-Jun-08	63800.00	=""	="Faccenda Shopfitters"	19-Jun-08 02:24 PM	

+="CN93425-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	64999.99	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93429-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93430-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93431-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	65750.01	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93443-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	79200.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93459-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	71500.00	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:29 PM	

+="CN93477"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	12-May-08	30-Sep-08	71179.46	=""	="Interface Flor"	19-Jun-08 02:32 PM	

+="CN93515"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	14-May-08	31-Jul-08	66330.00	=""	="Chandler Macleod Consultants Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93527"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	22-May-08	73804.50	=""	="Alpha Computer (Aust) Pty Ltd"	19-Jun-08 02:39 PM	

+="CN93528"	"Computer Software"	="Department of Human Services"	19-Jun-08	="Software"	22-May-08	30-Mar-13	79200.00	=""	="Actividentity"	19-Jun-08 02:39 PM	

+="CN93535"	" Certificate IV in Government (Civil Investigation) "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	30-Jun-08	11-Jul-08	60000.00	="06.205-8"	="KPS and Associates Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93546"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	11-Jul-08	70179.96	=""	="Hewlett Packard Australia Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93549"	"Workstations and Storage for Office fitout, Roma, QLD"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	78476.27	=""	="Schiavello Systems (QLD) Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93550"	"Workstations and storage for fitout of new office"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	72458.65	=""	="Schiavello Systems (QLD) Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93582"	"Supply of Emerson Racks"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer Equipment and Accessories"	09-May-08	09-May-08	62429.40	=""	="Emerson"	19-Jun-08 02:52 PM	

+="CN93593"	"Computer Equipment"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer servers"	23-Jul-07	30-Jun-08	70290.00	=""	="DELL COMPUTER P/L"	19-Jun-08 02:54 PM	

+="CN93630"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	05-Oct-08	66197.60	=""	="THALES AUSTRALIA"	19-Jun-08 03:42 PM	

+="CN93634"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	07-Sep-08	72021.02	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93650"	"Procurement of:  PRUEFAUSSTATTUNG, A"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	14-Oct-08	60698.12	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN93675"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	18-Nov-08	65651.07	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93679"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	15-May-08	13-Aug-08	62000.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93688"	"Procurement of:  MAT,CARGO"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	15-Jan-09	61300.00	=""	="ASCOT SPLICING & SUPPLIES"	19-Jun-08 03:51 PM	

+="CN93707"	"Additional Priority Support Program Days"	="Australian Taxation Office"	19-Jun-08	="Software maintenance and support"	19-Jun-08	30-Jun-08	68548.00	=""	="IBM Australia Ltd"	19-Jun-08 03:55 PM	

+="CN91092"	"Consultancy of the administrative Incentive Pricing of radio frequency Spectrum"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Information technology consultation services"	03-Jun-08	02-Sep-08	79100.00	="07/ACMA072"	="Plum Consulting Ltd"	19-Jun-08 03:56 PM	

+="CN93722"	"Procurement of:  TANK,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	07-Jul-08	65696.00	=""	="COMPAIR (AUSTRALASIA) Ltd"	19-Jun-08 03:57 PM	

+="CN93726"	"Procurement of:  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Nov-08	75492.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93727"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-May-09	77764.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:57 PM	

+="CN90515"	"Provision of internet safety activities."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Computer or network or internet security"	23-Jun-08	22-Jun-09	78000.00	="07/ACMA083"	="E-ngage Development Ltd"	19-Jun-08 04:00 PM	

+="CN93745"	"Procurement of:  CONVERTER-MONITOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	09-Mar-09	68661.90	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93770"	"Procurement of:  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	27-Jul-08	76000.00	=""	="GTSA ENGINEERING"	19-Jun-08 04:04 PM	

+="CN93806"	"Procurement of:  PARTS KIT,FOUR WHEEL DRIVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Nov-08	70219.98	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Jun-08 04:10 PM	

+="CN93817"	"Procurement of:  LOUDSPEAKER-AMPLIFIER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	27-Feb-09	77371.20	=""	="THALES AUSTRALIA"	19-Jun-08 04:12 PM	

+="CN93804"	"Provision of Research Services"	="Department of Immigration and Citizenship"	19-Jun-08	="Textbook or research publishing"	30-Mar-08	30-Jun-08	70000.00	=""	="Australian National University"	19-Jun-08 04:21 PM	

+="CN93849"	"Fitout of Level 2, Centrelink Perth Call Centre, Osborne Park WA"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jun-08	30-Jun-08	71830.00	=""	="National Interiors"	19-Jun-08 07:09 PM 

--- /dev/null
+++ b/admin/partialdata/17Jun2008to19Jun2008val80000to150000.xls
@@ -1,1 +1,212 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN91116"	"Provision of Project Management Services"	="Department of Parliamentary Services"	17-Jun-08	="Project management"	26-May-08	30-Jun-08	121000.00	=""	="Manteena Pty Ltd"	17-Jun-08 09:17 AM	

+="CN91142-A1"	"Professional services to support sustainability assessment"	="CrimTrac"	17-Jun-08	="Strategic planning consultation services"	01-May-08	31-Jul-08	80000.00	=""	="Hugh Watson Consulting"	17-Jun-08 10:07 AM	

+="CN91145"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	114400.00	=""	="SMS Consulting Group Limited"	17-Jun-08 10:07 AM	

+="CN91153"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	20-Dec-07	30-Jun-08	100290.96	=""	="Paxus Australia Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91154"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	107536.00	=""	="SMS Consulting Group Limited"	17-Jun-08 10:08 AM	

+="CN91155"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	84656.00	=""	="Peoplebank Recruitment Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91156"	"Contractor services"	="CrimTrac"	17-Jun-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	146300.00	=""	="Paxus Australia Pty Ltd"	17-Jun-08 10:08 AM	

+="CN91159"	"Data cabling"	="Australian Industrial Registry"	17-Jun-08	="Network cable"	10-Jun-08	08-Jul-08	114480.30	=""	="ELECDATA AUSTRALIA"	17-Jun-08 10:33 AM	

+="CN91185-A1"	"08/2732 - Business Adviser - 0299-1012 - IT Business Advisory Panel 04/0299 (CPE004787-1)"	="Australian Customs and Border Protection Service"	17-Jun-08	="Information technology consultation services"	26-Mar-08	30-Jun-08	86257.07	=""	="Apis Group Pty Ltd"	17-Jun-08 10:51 AM	

+="CN91410-A1"	"08/2650 - IT Contractor - 1599-1947 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Jun-08	="Business and corporate management consultation services"	01-Mar-08	30-Jun-08	120000.00	="08/2650"	="Centre for Customs and Excise Studies - University of Canberra"	17-Jun-08 11:21 AM	

+="CN91434-A1"	"08/2607 - Project Manager - 0717-0877 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Jun-08	="Temporary personnel services"	12-May-08	30-Jun-08	137445.00	=""	="Greythorn Pty Ltd"	17-Jun-08 11:24 AM	

+="CN91497-A1"	"Develop costing methodology"	="Australian Taxation Office"	17-Jun-08	="Public enterprises management or financial services"	10-Jun-08	30-Sep-08	115600.00	=""	="Freebody Cogent Pty Ltd"	17-Jun-08 11:33 AM	

+="CN91540-A1"	"6 month contract - ECM Business Analyst"	="Australian Securities and Investments Commission"	17-Jun-08	="Temporary personnel services"	12-Dec-07	06-Jun-08	117425.00	=""	="SMS Management & Technology Limited"	17-Jun-08 11:39 AM	

+="CN91588"	"TASK 4189-4 IMPROVED FINANCIAL REPORTING THROUGH ENHANCEMENT TO PROCESSES"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jul-08	99871.20	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 11:44 AM	

+="CN91594-A1"	"TASK 1201-3 TU-ASSC 400 HZ 25 KVA AND 5 KVA STATIC FREQUENCY CONVERTER RELOCATION"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	03-Jun-08	30-Jul-08	97605.98	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 11:45 AM	

+="CN91616"	"AIMS and BART Migration to Active Directory"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Jun-08	01-Dec-08	93476.90	=""	="GAINS RESOURCES ASIA-PACIFIC PTY"	17-Jun-08 11:46 AM	

+="CN91625"	"Training Program"	="Defence Materiel Organisation"	17-Jun-08	="Education and Training Services"	03-Jun-08	30-Jun-08	115280.00	=""	="DEAKINPRIME"	17-Jun-08 11:47 AM	

+="CN91631"	"Survey & quote 005 HACTS IPT"	="Defence Materiel Organisation"	17-Jun-08	="Aquatic invertebrates"	03-Jun-08	25-Jul-08	109125.81	=""	="RAYTHEON AUST PTY LTD"	17-Jun-08 11:47 AM	

+="CN91641"	"ESP to Review the GW Maintenance Policy"	="Defence Materiel Organisation"	17-Jun-08	="Guided missiles"	03-Jun-08	30-Jul-08	82500.00	=""	="NOVA DEFENCE"	17-Jun-08 11:48 AM	

+="CN91656"	"For the procurement of Repairs and upgrades of Bir"	="Defence Materiel Organisation"	17-Jun-08	="Office Equipment and Accessories and Supplies"	03-Jun-08	30-Jun-08	86075.00	=""	="TRIMCAST PTY LTD"	17-Jun-08 11:49 AM	

+="CN91680"	"Survey & quote 005 HACTS IPT"	="Defence Materiel Organisation"	17-Jun-08	="Aquatic invertebrates"	03-Jun-08	25-Jul-08	119061.06	=""	="RAYTHEON AUST PTY LTD"	17-Jun-08 11:50 AM	

+="CN91684"	"PROCUREMENT OF REPAIR AND OVERHAUL INCLUDING HEAVY ASLAV VEHICLE ARN 16046"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-May-08	30-May-08	137445.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 11:51 AM	

+="CN91702"	"SDSS IT Controls Framework Back-End Testing"	="Defence Materiel Organisation"	17-Jun-08	="Software"	30-May-08	20-Jun-08	103999.82	=""	="KPMG"	17-Jun-08 11:52 AM	

+="CN91744"	"Installation Design Package- HMAS Melbourne Damage Control Console Upgrade"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	02-Jun-08	01-Sep-08	124575.00	=""	="SINCLAIR KNIGHT MERZ DEFENCE P/L"	17-Jun-08 11:55 AM	

+="CN91754"	"ORDER RAISED IAW  THALES AUSTRALIA CENTAUR QUOTATI 20% DOWN PAYMENT ON ORDER 80% DELIVERY OF EACH UN"	="Defence Materiel Organisation"	17-Jun-08	="Naval weapons"	02-Jun-08	02-Jun-09	114809.20	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91761"	"Primer 38 Gram M2A1 Pack"	="Defence Materiel Organisation"	17-Jun-08	="Explosive materials"	02-Jun-08	31-Mar-10	101323.38	=""	="THALES AUSTRALIA"	17-Jun-08 11:56 AM	

+="CN91765"	"ESSM Integration Technical Authority"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	30-May-08	30-May-08	109805.22	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 11:56 AM	

+="CN91769"	"FC PAD"	="Defence Materiel Organisation"	17-Jun-08	="Marine craft systems and subassemblies"	30-May-08	29-Sep-08	95526.30	=""	="CONVERTEAM SAS"	17-Jun-08 11:56 AM	

+="CN91771"	"CONTRACT CONDITIONS: PRODUCT SUPPORT AND TECHNICAL 28TH JULY 1995. IN ACCORDANCE WITH INCOTERMS YOU"	="Defence Materiel Organisation"	17-Jun-08	="Aerospace systems and components and equipment"	31-May-08	15-Jun-08	128960.76	=""	="ROLLS - ROYCE PLC"	17-Jun-08 11:57 AM	

+="CN91810"	"IT EQUIPMENT"	="Defence Materiel Organisation"	17-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	30-Jun-08	126146.20	=""	="GETRONICS (AUSTRALIA) PTY LTD"	17-Jun-08 11:59 AM	

+="CN91812"	"CUSHION"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	06-Jun-08	25-Oct-08	97912.71	=""	="BAE SYSTEMS AEROSPACE & DEFENSE"	17-Jun-08 12:00 PM	

+="CN91846"	"Services for rectification of build anom's in Black Hawk A25-106"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	06-Jun-08	30-Sep-08	110000.00	=""	="BAE SYSTEMS AUST LTD - CONTRACTORS"	17-Jun-08 12:02 PM	

+="CN91848"	"Prepare Installation Specification- Uniflex Remote Operating Valves"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	06-Oct-08	120520.47	=""	="THALES AUSTRALIA"	17-Jun-08 12:02 PM	

+="CN91850"	"Infracam and Thermacam"	="Defence Materiel Organisation"	17-Jun-08	="Photographic or filming or video equipment"	06-Jun-08	30-Jun-08	124553.00	=""	="FLIR SYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 12:02 PM	

+="CN91862"	"FMS CAse"	="Defence Materiel Organisation"	17-Jun-08	="Military rotary wing aircraft"	12-Jun-08	15-Sep-11	101852.88	=""	="FMS ACCOUNT"	17-Jun-08 12:03 PM	

+="CN91880"	"4577.01 ADHOC ENGINEERING SERVICES"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Sep-08	80982.00	=""	="THALES AUSTRALIA"	17-Jun-08 12:05 PM	

+="CN91884"	"RAAF Tindal UPS"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	06-Jun-08	20-Jun-08	110880.00	=""	="BENASH MAINTENANCE SERVICES"	17-Jun-08 12:05 PM	

+="CN91906"	"JEFM/CIOG Project Liaison"	="Defence Materiel Organisation"	17-Jun-08	="Computer services"	04-Jun-08	31-Oct-08	124911.00	=""	="JACOBS AUSTRALIA"	17-Jun-08 12:07 PM	

+="CN91921"	"DARWIN RADOME MAINTENANCE"	="Defence Materiel Organisation"	17-Jun-08	="Surveillance and detection equipment"	04-Jun-08	09-Jul-08	122565.03	=""	="RAYTHEON AUSTRALIA PTY LTD"	17-Jun-08 12:08 PM	

+="CN92020-A1"	" TASK 1108-3 REPLACEMENT FIRE DETECTION SYSTEM "	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	20-Feb-08	16-Mar-11	131871.19	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:16 PM	

+="CN92023"	"NACC Aquisition Workforce Support"	="Defence Materiel Organisation"	17-Jun-08	="Business and corporate management consultation services"	30-May-08	27-Jun-08	144936.00	=""	="PS MANAGEMENT CONSULTANTS"	17-Jun-08 12:16 PM	

+="CN92027"	"HMAS Success Refit 2007"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	05-Jun-08	30-Jun-08	113685.59	=""	="THALES AUSTRALIA"	17-Jun-08 12:16 PM	

+="CN92041"	"IAW Standing Offer C388551"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	26-May-08	30-Mar-09	133497.03	=""	="PARTECH SYSTEMS PTY LTD"	17-Jun-08 12:17 PM	

+="CN92051"	"4548.00 REPAIR OF IR CAMERAS 14-552-0739"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	09-Jun-08	146431.76	=""	="SAAB SYSTEMS PTY LTD"	17-Jun-08 12:18 PM	

+="CN92070"	"HMAS Betano 2008 EMA (ID)"	="Defence Materiel Organisation"	17-Jun-08	="Manufacturing support services"	16-Jun-08	30-Aug-08	132512.71	=""	="BAE SYSTEMS AUSTRALIA LTD"	17-Jun-08 12:20 PM	

+="CN92090"	"CENTAUR  REQUIREMENT"	="Defence Materiel Organisation"	17-Jun-08	="Electrical equipment and components and supplies"	18-Mar-08	14-Aug-08	82487.14	=""	="THALES AUSTRALIA"	17-Jun-08 12:21 PM	

+="CN92098"	"URS 8360 - Changes to Segment 4, Fund Replacing Internal Order"	="Defence Materiel Organisation"	17-Jun-08	="Software"	03-Apr-08	30-Jun-08	98869.10	=""	="MINCOM LTD"	17-Jun-08 12:21 PM	

+="CN92117"	"Safety Case & Support Services"	="Defence Materiel Organisation"	17-Jun-08	="Hardware"	19-May-08	30-Jun-08	145684.00	=""	="TENIX SYSTEMS PTY LTD"	17-Jun-08 12:23 PM	

+="CN92120"	"CARIBOU REPAIRABLE ITEMS"	="Defence Materiel Organisation"	17-Jun-08	="Military fixed wing aircraft"	12-Nov-07	31-Dec-08	101867.59	=""	="SAFE AIR LTD"	17-Jun-08 12:23 PM	

+="CN92121"	"TS0082-3 INSTALLATION OF LINK 16 AND VMF"	="Defence Materiel Organisation"	17-Jun-08	="Military watercraft"	06-Jun-08	30-Jun-08	113483.48	=""	="TENIX DEFENCE PTY LTD"	17-Jun-08 12:24 PM	

+="CN92135"	"Forex GST"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue vehicles"	15-May-08	30-Jun-09	122209.98	=""	="ROSENBAUER INTERNATIONAL AG - EURO"	17-Jun-08 12:25 PM	

+="CN92169"	"PROGRAM DELIVERY"	="Defence Materiel Organisation"	17-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Dec-09	108500.00	=""	="GKN AEROSPACE ENGINEERING SERVICES"	17-Jun-08 12:31 PM	

+="CN92177"	"Aircraft Coatings"	="Defence Materiel Organisation"	17-Jun-08	="Military science and research"	28-May-08	16-Nov-08	112200.00	=""	="UNIVERSITY OF SYDNEY"	17-Jun-08 12:32 PM	

+="CN92185"	"VIGILARE TADRS INTERFACE"	="Defence Materiel Organisation"	17-Jun-08	="Communications Devices and Accessories"	28-May-08	30-Jun-08	130680.52	=""	="LOCKHEED MARTIN AUSTRALIA PTY LTD"	17-Jun-08 12:33 PM	

+="CN92195"	"Brocade 5000 switches config id 6312579 Various SUN Microsystems transceivers"	="Defence Materiel Organisation"	17-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	28-May-08	27-Jun-08	81302.15	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	17-Jun-08 12:34 PM	

+="CN92201"	"Accom for KANIMBLA EMA IPT in Newcastle"	="Defence Materiel Organisation"	17-Jun-08	="Service Industry Machinery and Equipment and Supplies"	29-May-08	22-Sep-08	87675.10	=""	="JOE BORRELLI REAL ESTATE ESTATE"	17-Jun-08 12:35 PM	

+="CN92206"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16006"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	118929.28	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:36 PM	

+="CN92207"	"Special Forces Station Mod kits for JP 2008 Ph2B"	="Defence Materiel Organisation"	17-Jun-08	="Aircraft"	29-May-08	30-Jun-09	91397.52	=""	="AMCE PTY LTD"	17-Jun-08 12:36 PM	

+="CN92220"	"Repair & Overhaul Agreement No. 98001833/3636 Heavy Grade Repairs to ASLAV Vehicle 16104"	="Defence Materiel Organisation"	17-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-May-08	29-Jun-09	144427.03	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Jun-08 12:38 PM	

+="CN92221"	"Payment of the GST on overseas component of LRFs qty 130 and Spares Set qty 1 (Contract 5370058)."	="Defence Materiel Organisation"	17-Jun-08	="Gun systems"	27-May-08	30-May-08	112773.02	=""	="HALL & WATTS AUSTRALIA PTY LTD"	17-Jun-08 12:38 PM	

+="CN92233"	"VENUR HIRE & CATERING FOR EXEC COMPASS & COMPASS TRAINING"	="Defence Materiel Organisation"	17-Jun-08	="Medical training and education supplies"	27-May-08	30-Jun-09	85699.98	=""	="CLIFTONS"	17-Jun-08 12:39 PM	

+="CN92256"	"Annual shutdown maintenance of SETF"	="Defence Materiel Organisation"	17-Jun-08	="Safety and rescue water craft"	27-May-08	30-Jun-08	92275.81	=""	="CAL DIVE INTERNATIONAL"	17-Jun-08 12:42 PM	

+="CN92285"	"PURCHASE OF STARS DOWNLOAD AND ANALYSIS KITS FOR TO REPLACE U/S PAU'S WITHIN THE ADF.  IAW CONTRACT V310103 NSN 66-156-8783 SOLE IN COUNTRY SUPPLIER FLIGHT DATA SYSTEMS"	="Department of Defence"	17-Jun-08	="Military rotary wing aircraft"	17-Jun-08	27-Jun-08	137885.00	=""	="FLIGHT DATA SYSTEMS"	17-Jun-08 02:32 PM	

+="CN92305"	" IT-352 Variation 2 $75,000.00 Seminar Registration System  IT-352 Variation 3 $15,000.00 Seminar Regostration System  Original Gazette reference 1579714  Additional Gazette reference CN17781 "	="Australian Taxation Office"	17-Jun-08	="Computer services"	17-Jun-08	30-Apr-09	90000.00	=""	="ICONTACT Australia Pty Ltd"	17-Jun-08 04:13 PM	

+="CN92316"	"Order against standing offer 4170/2/274"	="Defence Materiel Organisation"	18-Jun-08	="Clothing accessories"	12-Dec-07	21-Jul-08	114760.80	=""	="WALKABOUT LEISUREWEAR PTY LTD"	18-Jun-08 09:48 AM	

+="CN92326"	"AV & VC Maintenance"	="Australian Securities and Investments Commission"	18-Jun-08	="Components for information technology or broadcasting or telecommunications"	18-Oct-07	17-Oct-08	98975.80	=""	="Electroboard"	18-Jun-08 10:28 AM	

+="CN92335"	"Consultancy Services (extension)"	="Australian Securities and Investments Commission"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-May-08	03-Nov-08	112000.00	=""	="Greg Pound Pty Ltd"	18-Jun-08 10:51 AM	

+="CN92336-A1"	"Procurement of Bloomberg Data Services"	="Australian Securities and Investments Commission"	18-Jun-08	="Data services"	12-May-08	11-May-10	86534.00	=""	="Bloomberg Finance LP"	18-Jun-08 11:00 AM	

+="CN92343"	"Research Agreement: Examination of Inhibited Epoxy  Primer Coating Degradation."	="Department of Defence"	18-Jun-08	="Military science and research"	02-Jun-08	02-Jun-08	99000.00	=""	="QUEENSLAND UNIVERSITY OF"	18-Jun-08 11:35 AM	

+="CN92344"	"HQJOCP-ACER COMPUTER AUSTRALIA PTY LTD."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	02-Jun-08	30-Jun-08	131036.40	=""	="ACER COMPUTER AUSTRALIA PTY LTD"	18-Jun-08 11:35 AM	

+="CN92365"	"Services as per RFT 0708-253"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	03-Jun-08	30-Jun-08	80000.00	=""	="DIBA GROUP PTY LTD"	18-Jun-08 11:38 AM	

+="CN92371"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-09	93500.00	=""	="ROBSON HUNTLEY & ASSOCIATES PTY LTD"	18-Jun-08 11:39 AM	

+="CN92387"	"ARCGIS SOFTWARE"	="Department of Defence"	18-Jun-08	="Software"	02-Jun-08	30-Jun-08	97339.73	=""	="ESRI AUSTRALIA (DEFENCE DIVISION)"	18-Jun-08 11:41 AM	

+="CN92389"	"Grenade Range"	="Department of Defence"	18-Jun-08	="Bombs and grenades"	02-Jun-08	30-Jun-08	114378.00	=""	="RESOLVE FM"	18-Jun-08 11:42 AM	

+="CN92410"	"FERAL ANIMAL MANAGEMENT"	="Department of Defence"	18-Jun-08	="Animal containment and habitats"	03-Jun-08	30-Jun-09	118373.40	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 11:45 AM	

+="CN92458"	"FACOPS"	="Department of Defence"	18-Jun-08	="Temporary personnel services"	30-May-08	30-Jun-08	82885.00	=""	="COMBINED FIRE SYSTEMS PTY LTD"	18-Jun-08 11:51 AM	

+="CN92480"	"MULTICULTURAL TARGET MARKET RESEARCH. INCLUDES PRO RESEARCH, GROUP DISCUSSIONS AND REPORTS. T.R 30.0"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-May-08	30-Jun-08	115500.00	=""	="GEORGE PATTERSON Y & R"	18-Jun-08 11:54 AM	

+="CN92482"	"Maintenance"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-11	134513.87	=""	="L-3 COMMUNICATIONS ESSCO INC. DIV E"	18-Jun-08 11:55 AM	

+="CN92483"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	86081.42	=""	="INSITEC"	18-Jun-08 11:55 AM	

+="CN92484"	"Software"	="Department of Defence"	18-Jun-08	="Software"	29-May-08	01-Jul-08	119008.10	=""	="AGILENT TECHNOLOGIES AUSTRALIA P/L"	18-Jun-08 11:55 AM	

+="CN92489"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	20-Sep-09	127908.00	=""	="RISK MANAGEMENT TECHNOLOGIES"	18-Jun-08 11:56 AM	

+="CN92501"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-Aug-08	87531.40	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Jun-08 11:57 AM	

+="CN92510"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	02-Jun-08	13-Jun-08	149626.96	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	18-Jun-08 11:58 AM	

+="CN92524"	"COMPUTER IT HARDWARE AND COMPONENTS"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	13-Jun-08	88048.40	=""	="DELL AUSTRALIA PTY LTD"	18-Jun-08 12:00 PM	

+="CN92533"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	30-May-08	98670.00	=""	="ISM GROUP"	18-Jun-08 12:02 PM	

+="CN92538"	"Upgrade of Storage Capacity."	="Department of Defence"	18-Jun-08	="Software"	30-May-08	30-Jun-08	87628.02	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	18-Jun-08 12:03 PM	

+="CN92543"	"PSMC PROJECT MANAGEMENT SERVICES."	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	30-May-08	30-Jun-09	128700.00	=""	="PS MANAGEMENT CONSULTANTS"	18-Jun-08 12:04 PM	

+="CN92554"	"POC: P.Everson / S.Reeks Quotation: T-AU-148468-A"	="Department of Defence"	18-Jun-08	="Hardware"	02-Jun-08	20-Jun-08	104291.28	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	18-Jun-08 12:05 PM	

+="CN92559"	"AIR CHTR OP ASTUTE TLAG7 REDEPLOY"	="Department of Defence"	18-Jun-08	="Aircraft"	05-Jun-08	16-Jun-08	106000.00	=""	="ADAGOLD AVIATION PTY LTD"	18-Jun-08 12:06 PM	

+="CN92564"	"Computer Hardware"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	20-Jun-08	99999.69	=""	="ALPHAWEST SERVICES PTY LTD"	18-Jun-08 12:07 PM	

+="CN92574"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	83600.00	=""	="ADVANCED PERSONNEL MANAGEMENT"	18-Jun-08 12:08 PM	

+="CN92581"	"OP ASTUTE FACE TOUR JUN 08"	="Department of Defence"	18-Jun-08	="Aircraft"	05-Jun-08	25-Jun-08	149680.00	=""	="ADAGOLD AVIATION PTY LTD"	18-Jun-08 12:09 PM	

+="CN92592"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	88000.00	=""	="WORK OPTIONS"	18-Jun-08 12:11 PM	

+="CN92593"	"UPGRADE HV/LV CAPACITY - SUB K, GALLIPOLI BKS"	="Department of Defence"	18-Jun-08	="Electronic Components and Supplies"	05-Jun-08	30-Jun-08	81427.50	=""	="SPOTLESS SERVICES AUSTRALIA LTD"	18-Jun-08 12:11 PM	

+="CN92600"	"CONTACT PAUL MEULENBROEK 08 8935 4622."	="Department of Defence"	18-Jun-08	="Construction and maintenance support equipment"	05-Jun-08	30-Jun-08	103700.00	=""	="ASSET SERVICES"	18-Jun-08 12:12 PM	

+="CN92624"	"TANDBERG TACTICAL MXP V.35"	="Department of Defence"	18-Jun-08	="Photographic or filming or video equipment"	06-Jun-08	30-Jun-08	143012.10	=""	="SERVICEPOINT AUSTRALIA PTY LTD"	18-Jun-08 12:15 PM	

+="CN92628"	"IT SYSTEM ADMINISTRATOR"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	06-Jun-08	30-Jun-09	109985.10	="SON 45190"	="DAINTREE SYSTEMS PTY LTD"	18-Jun-08 12:15 PM	

+="CN92634"	"FACOPS"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	06-Jun-08	30-Sep-08	134517.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:16 PM	

+="CN92648"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	82500.00	=""	="ACTIVE REHAB CONSULTANTS"	18-Jun-08 12:18 PM	

+="CN92650"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	31-Jan-09	82500.00	=""	="ACTIVE OCCUPATIONAL HEALTH SERVICES"	18-Jun-08 12:18 PM	

+="CN92658"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Jan-09	82500.00	=""	="THE REHABILITATION COMPANY PTY LTD"	18-Jun-08 12:20 PM	

+="CN92662"	"PURCHASE SCANNERS"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	19-Jun-08	86776.88	=""	="CORPORATE EXPRESS AUSTRALIA"	18-Jun-08 12:20 PM	

+="CN92667"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	06-Jun-08	05-Aug-08	109453.74	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:21 PM	

+="CN92670"	"Surge Manning for 1 BDE - 4 Vehicle Mechanics Period 12 May to 27 Jun 08"	="Department of Defence"	18-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Jun-08	30-Jun-08	137853.56	=""	="MANPOWER SERVICES (AUST) PTY LTD"	18-Jun-08 12:21 PM	

+="CN92676"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-09	87120.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	18-Jun-08 12:22 PM	

+="CN92679"	"TRAINING"	="Department of Defence"	18-Jun-08	="Education and Training Services"	04-Jun-08	30-Jun-09	97599.92	=""	="BLENDED LEARNING INTERNATIONAL"	18-Jun-08 12:23 PM	

+="CN92684"	"PROVISION OF PROFESSIONAL SERVICE PROVIDERS FOR FY08/09"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	85800.00	=""	="EXCEED SYSTEMS INTEGRATION PTY LTD"	18-Jun-08 12:23 PM	

+="CN92687"	"PSP CONTRACT"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-09	125010.24	=""	="HAYS RESPONSE MANAGEMENT"	18-Jun-08 12:24 PM	

+="CN92690"	"PROVISION OF PROFESSIONAL SERVICE PROVIDERS FOR FY 08/09"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	87120.00	=""	="ROSS"	18-Jun-08 12:24 PM	

+="CN92726"	"For Site Integration Services for DISIP Stage 3"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	29-Aug-08	105711.25	=""	="COMMUNICATIONS DESIGN & MANAGEMENT"	18-Jun-08 12:30 PM	

+="CN92765"	"Site Integration Services for DISIP Stage 3"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	17-Oct-08	87393.74	=""	="BOEING AUSTRALIA LIMITED"	18-Jun-08 12:35 PM	

+="CN92769"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	25-Jun-08	88000.00	=""	="KPMG"	18-Jun-08 12:35 PM	

+="CN92779"	"Miscellaneous minor new work , ACT/SNSW"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	16-Jun-08	30-Jun-08	83820.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:37 PM	

+="CN92780"	"PROP STUDIES-BNTS-ENVIRONMENTAL CONSULTANT"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	13-Jun-08	30-Jun-08	142950.88	=""	="SMEC AUSTRALIA"	18-Jun-08 12:37 PM	

+="CN92781"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-Jun-08	92850.96	=""	="DEFENCE MATERIEL ORGANISATION -"	18-Jun-08 12:37 PM	

+="CN92788"	"Task Manager"	="Department of Defence"	18-Jun-08	="Business and corporate management consultation services"	16-Jun-08	30-Jun-08	118979.45	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	18-Jun-08 12:38 PM	

+="CN92795"	"ADVERTISING"	="Department of Defence"	18-Jun-08	="Photographic and recording media"	06-Jun-08	30-Jun-08	94384.95	=""	="GEORGE PATTERSON Y & R"	18-Jun-08 12:39 PM	

+="CN92811"	"CONSULTANCY SERVICES"	="Department of Defence"	18-Jun-08	="General building construction"	12-Nov-07	26-Sep-08	110082.77	=""	="HUON CONSULTING"	18-Jun-08 12:41 PM	

+="CN92815"	"SA2226 WOOM ASBESTOS REMEDIATION"	="Department of Defence"	18-Jun-08	="Scrap and waste materials"	27-May-08	30-Jun-08	80772.80	=""	="BAE SYSTEMS AUSTRALIA LTD"	18-Jun-08 12:41 PM	

+="CN92838"	"REPLACE & REPAIR RAAF BASE FENCING"	="Department of Defence"	18-Jun-08	="Security and personal safety"	16-Jun-08	30-Jun-08	89320.00	=""	="GELDEN ENTERPRISES PTY LTD"	18-Jun-08 12:44 PM	

+="CN92842"	"S5091. DS-SC Asbestos removal program 07/08. Phase Asbestoscontaining material from various minor un"	="Department of Defence"	18-Jun-08	="Building and Construction and Maintenance Services"	11-Jun-08	30-Jun-08	122509.15	=""	="DEFENCE MAINTENANCE MANAGEMENT"	18-Jun-08 12:45 PM	

+="CN92848"	"PABX System for Bendigi DIGO Victoria CIOG118/08"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	16-May-08	23-Jun-08	107406.86	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 12:46 PM	

+="CN92850"	"Cisco Equipment"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	15-May-08	26-May-08	100857.52	=""	="ASI SOLUTIONS PTY LTD"	18-Jun-08 12:46 PM	

+="CN92897"	"CONTRACT-TECH WRITER"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	19-Dec-07	30-Jan-09	91554.38	=""	="WDSCOTT ASIA PTY LTD"	18-Jun-08 12:52 PM	

+="CN92938"	"HOLSWORTHY : 171 SQUADRON RELOCATION"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	28-May-08	30-Jun-09	123679.32	=""	="HANSEN YUNCKEN PTY LTD"	18-Jun-08 12:58 PM	

+="CN92941"	"MEDIA SERVICES"	="Department of Defence"	18-Jun-08	="Printed media"	29-Jun-07	20-Jun-08	110000.00	=""	="SERCO MEDIA SERVICES"	18-Jun-08 12:58 PM	

+="CN92942"	"TRANSITION MANAGER SERVICES AT ACG"	="Department of Defence"	18-Jun-08	="Industrial Production and Manufacturing Services"	04-Jun-08	30-Jun-08	82500.00	=""	="NOVA AEROSPACE"	18-Jun-08 12:58 PM	

+="CN92945"	"SA1787 ROUTINE GENERAL ESTATE WORKS DSTO EDINBURGH FY 07/08"	="Department of Defence"	18-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	06-Jun-08	30-Jun-08	110000.00	=""	="SPOTLESS P & F PTY LTD"	18-Jun-08 12:59 PM	

+="CN92963"	"FACILITIES FOR TROOP LIFT HELICOPTER (AIR 9000 PH 2)"	="Department of Defence"	18-Jun-08	="Building construction and support and maintenance and repair services"	10-Jun-08	30-Jun-09	86989.10	=""	="WATPAC AUSTRALIA PTY LTD"	18-Jun-08 01:01 PM	

+="CN92967"	"Capability Analyst"	="Department of Defence"	18-Jun-08	="Electronic reference material"	12-Nov-07	31-Oct-08	116598.93	=""	="QINETIQ CONSULTING PTY LTD"	18-Jun-08 01:02 PM	

+="CN92973"	"Training IT Cadets"	="Department of Defence"	18-Jun-08	="Education and Training Services"	28-May-08	30-Jun-08	89580.31	=""	="GLOBAL ONLINE LEARNING"	18-Jun-08 01:02 PM	

+="CN92979"	"NOAM Net force Architect"	="Department of Defence"	18-Jun-08	="Professional engineering services"	16-Jun-08	31-Oct-08	110880.00	=""	="LOCKHEED MARTIN AUSTRALIA IS&S"	18-Jun-08 01:03 PM	

+="CN92983"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	112000.00	=""	="PEAK SECURITY"	18-Jun-08 01:04 PM	

+="CN92985"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	110000.00	=""	="SIRRAS CONSULTANTS"	18-Jun-08 01:04 PM	

+="CN92986"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	112000.00	=""	="STAFF CHECK PTY LTD"	18-Jun-08 01:04 PM	

+="CN92988"	"HEALTH SERVICE POW SPINAL UNIT"	="Department of Defence"	18-Jun-08	="Patient care and treatment products and supplies"	12-Jun-08	12-Jun-08	110000.00	=""	="DRAKE TRAINING"	18-Jun-08 01:04 PM	

+="CN92989"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	30-Jun-08	101000.00	=""	="BARRINGTON PERSONNEL SECURITY"	18-Jun-08 01:05 PM	

+="CN93015"	"PABX ACCESSORIES"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jun-08	86739.18	=""	="NEC AUSTRALIA PTY LTD"	18-Jun-08 01:08 PM	

+="CN93024"	"ENERGY CONSERVATION MEASURES - UPGRADE BMS HEAD"	="Department of Defence"	18-Jun-08	="Power Generation and Distribution Machinery and Accessories"	28-May-08	30-Jun-08	93280.00	=""	="SPOTLESS SVCS AUST SQLD TRUST"	18-Jun-08 01:09 PM	

+="CN93033"	"dsto equipment"	="Department of Defence"	18-Jun-08	="Laboratory and scientific equipment"	28-May-08	01-Sep-08	91167.81	=""	="UAV NAVIGATION S.L."	18-Jun-08 01:10 PM	

+="CN93060"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	29-May-08	29-May-08	106885.13	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	18-Jun-08 01:14 PM	

+="CN93077"	"WEBREP TRANSITION INTO SERVICE PROJECT RED 0607-P0"	="Department of Defence"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	30-Jun-08	99372.90	=""	="HEWLETT-PACKARD AUSTRALIA PTY LTD"	18-Jun-08 01:16 PM	

+="CN93080"	"MARKET RESEARCH"	="Department of Defence"	18-Jun-08	="Market research"	29-May-08	30-Jun-08	97460.00	=""	="OPEN MIND RESEARCH GROUP"	18-Jun-08 01:17 PM	

+="CN93081"	"Printing NAT2031 Payment slip form"	="Australian Taxation Office"	18-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	30-Jun-08	83743.00	=""	="Ducor Group"	18-Jun-08 01:18 PM	

+="CN93100"	"COMPUTER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	145509.66	=""	="HEWLETT PACKARD AUSTRALIA LTD"	18-Jun-08 01:19 PM	

+="CN93112"	"contract under standing offer"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	27-May-08	22-May-09	138114.81	=""	="KAZ GROUP PTY LTD"	18-Jun-08 01:21 PM	

+="CN93113"	"Taxi Transport"	="Department of Defence"	18-Jun-08	="Transportation components and systems"	27-May-08	30-Jun-08	83160.00	=""	="INTERNET CHAUFFEUR TRANSPORT PTY"	18-Jun-08 01:21 PM	

+="CN93137"	"SERVER EQUIPMENT"	="Department of Defence"	18-Jun-08	="Communications Devices and Accessories"	27-May-08	30-Jun-08	127593.40	=""	="IBM AUSTRALIA PTY LTD"	18-Jun-08 01:24 PM	

+="CN93156"	"Desktop Computers"	="Department of Defence"	18-Jun-08	="Computer Equipment and Accessories"	28-May-08	11-Jun-08	85730.70	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	18-Jun-08 01:27 PM	

+="CN93161"	"ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	28-May-08	28-May-08	105000.01	=""	="SAVILLE PARK SUITES"	18-Jun-08 01:27 PM	

+="CN93163"	"Research Agreement  Uni SA"	="Department of Defence"	18-Jun-08	="Engineering and Research and Technology Based Services"	28-May-08	16-Jun-08	108983.70	=""	="UNI OF SA - FINANCIAL SERVICES"	18-Jun-08 01:28 PM	

+="CN93170"	"PROFESSIONAL SERVICES"	="Department of Defence"	18-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	97900.00	=""	="COFFEY ENVIRONMENTS PTY LTD"	18-Jun-08 01:29 PM	

+="CN93182"	"ACCOMMODATION"	="Department of Defence"	18-Jun-08	="Hotels and lodging and meeting facilities"	28-May-08	08-Jul-08	105600.00	=""	="KINGSTON TERRACE APARTMENTS"	18-Jun-08 01:30 PM	

+="CN93193"	"AP-3C Structural Integrity Support  (Task 07/049)"	="Department of Defence"	18-Jun-08	="Software"	28-May-08	30-Jun-09	126162.56	=""	="QINETIQ AEROSTRUCTURES TECHNOLOGIES"	18-Jun-08 01:32 PM	

+="CN93212-A1"	"Provision of Risk Management and Auditing Services"	="Department of Immigration and Citizenship"	18-Jun-08	="Risk or hazard assessment"	09-May-08	31-Aug-08	80465.00	=""	="Protiviti Pty Limited"	18-Jun-08 02:36 PM	

+="CN90042"	"Centrelink costs associated with IT system changes to support the NT Emergency Response"	="Department of Human Services"	18-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Sep-07	20-May-08	141344.50	=""	="Centrelink"	18-Jun-08 03:30 PM	

+="CN93257-A1"	"Press and radio advertisements"	="Centrelink"	19-Jun-08	="Advertising"	16-May-08	30-Jun-08	105524.90	=""	="HMA Blaze Pty Ltd"	19-Jun-08 07:53 AM	

+="CN93258"	"Legal Services"	="Centrelink"	19-Jun-08	="Legal services"	12-Jun-08	30-Jun-08	110000.00	=""	="Minter Ellison Lawyers"	19-Jun-08 07:53 AM	

+="CN93262"	"Office furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	11-Jun-08	30-Jun-08	83916.80	=""	="Schiavello (Vic) Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93266"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	13-Jun-08	16-Jun-08	112312.20	="RFTS07/0129"	="Omaha IT Services Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93300"	" Frames for field packs. "	="Defence Materiel Organisation"	19-Jun-08	="Harness goods"	13-Jun-08	30-Oct-08	123438.70	=""	="Page Furnishers Pty Ltd"	19-Jun-08 09:23 AM	

+="CN93317"	"Provision of Service Support of CSA Entderprise Project Management System"	="Child Support Agency"	19-Jun-08	="Project management software"	01-Jul-08	30-Jun-09	86900.00	=""	="Enterprise Project Management Services Pty Ltd"	19-Jun-08 01:22 PM	

+="CN93393"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	01-May-08	30-Jun-08	122100.00	=""	="Nuance Communications International BVBA"	19-Jun-08 02:20 PM	

+="CN93401"	"Hotel, lodging and other meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	23-May-08	30-Jun-08	140000.00	=""	="Departmentt of Local Government Housing and Sport"	19-Jun-08 02:21 PM	

+="CN93411-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	28-May-08	30-Jun-08	115000.00	="RFT07/0021"	="Ross Human Directions Limited"	19-Jun-08 02:22 PM	

+="CN93416"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-May-08	30-Jun-08	100727.00	=""	="Formula Interiors NSW"	19-Jun-08 02:23 PM	

+="CN93420"	"Office Fitout Construction for Roma, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	30-Jun-08	104709.00	=""	="Signature Projects Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93429-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93430-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93433-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	92400.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:25 PM	

+="CN93444-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	118800.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93447"	"IT Computer Cabling"	="Centrelink"	19-Jun-08	="Computer services"	19-May-08	13-Jun-08	123854.50	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93455-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	03-Jun-08	85999.99	="RFT07/0021"	="Kelly Services (Australia) Ltd"	19-Jun-08 02:29 PM	

+="CN93460-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	110000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:30 PM	

+="CN93465"	"Security and personal safety"	="Centrelink"	19-Jun-08	="Security and personal safety"	08-May-08	30-Jun-08	110000.00	=""	="Leonhard Kurz Australia Pty Ltd"	19-Jun-08 02:30 PM	

+="CN93466"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	30-Jun-09	139429.46	=""	="Interface Flor"	19-Jun-08 02:30 PM	

+="CN93476"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	13-Nov-08	116516.40	="RFTS07/0129"	="Peoplebank Australia Pty Ltd"	19-Jun-08 02:32 PM	

+="CN93478"	"Air conditioning units"	="Centrelink"	19-Jun-08	="Electronic Components and Supplies"	12-May-08	31-Dec-08	94600.00	=""	="Emerson Network Power"	19-Jun-08 02:32 PM	

+="CN93481"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	23-Nov-08	117717.60	="RFTS07/0129"	="Southern Cross Computing Pty Ltd"	19-Jun-08 02:32 PM	

+="CN93491"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	139553.37	=""	="Interface Flor"	19-Jun-08 02:34 PM	

+="CN93506"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-09	87945.00	=""	="Emmett Construct Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93560"	"Office Fitout"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	19-May-08	30-Jun-08	126192.00	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:43 PM	

+="CN93599"	"Computer Applications Testing."	="Family Court of Australia"	19-Jun-08	="Information technology consultation services"	26-Jun-08	31-Dec-08	85800.00	=""	="Clicks Recruitment Pty Ltd"	19-Jun-08 03:04 PM	

+="CN93606-A1"	"SAS Analyst Services"	="Family Court of Australia"	19-Jun-08	="Information technology consultation services"	12-May-08	11-Nov-08	82368.00	=""	="Finite IT Recruitment Solutions"	19-Jun-08 03:30 PM	

+="CN91578"	"Tenancy Alterations Levels 15 & 16 Darling Park."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Oct-07	30-Jun-08	139246.25	="07/ACMA014"	="Intact Projects Pty Ltd"	19-Jun-08 03:34 PM	

+="CN93627"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	10-Oct-08	93938.90	=""	="THALES AUSTRALIA"	19-Jun-08 03:41 PM	

+="CN93629"	"Procurement of:  CONTROL,POWER SUPPLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	19-Jun-08	95384.68	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93653"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	02-Jul-08	123900.00	=""	="MOOG AUSTRALIA Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93649"	"Supply of communications equipment"	="Australian Federal Police"	19-Jun-08	="Communications Devices and Accessories"	23-Mar-07	30-Jun-08	130618.40	=""	="Motorola Australia Pty Limited"	19-Jun-08 03:46 PM	

+="CN93654"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	06-Aug-08	100000.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:46 PM	

+="CN93665"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	12-May-09	82287.20	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93667"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	13-Apr-09	95287.00	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93668"	"Procurement of:  PUMP,OIL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	16-Feb-09	142005.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93697"	"Procurement of:  PURIFIER,CENTRIFUGAL,0IL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	03-Jul-09	120000.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93702"	"Procurement of:  VALVE,GLOBE;  COLLAR,SHAFT;  BACK UP RING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	24-Sep-08	83727.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 03:53 PM	

+="CN91090"	"ACMA Server Co-Location Services"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Internet or intranet server application development services"	24-Mar-08	23-Mar-11	150000.00	="07/ACMA047"	="Frontline Hyperlink Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93741"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-May-09	124455.76	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93742"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	09-Oct-08	85772.43	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93743"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	17-Feb-09	82950.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93752"	"Procurement of:  PUMP,FUEL,METERING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	10-Nov-08	87206.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93758"	"Procurement of:  GRINDING MACHINE,MACHINE TOOL ATTACHMENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	23-Sep-08	96480.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 04:02 PM	

+="CN93771"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	05-Sep-08	86160.60	=""	="THALES AUSTRALIA"	19-Jun-08 04:04 PM	

+="CN93775"	"Procurement of:  CONTROL,ANTENNA COUPLER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	27-Oct-08	105720.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93783"	"RAINCOATS"	="Defence Materiel Organisation"	19-Jun-08	="Clothing accessories"	10-Jun-08	22-Oct-08	91509.00	=""	="AGMER DRYWEAR AUSTRALIA"	19-Jun-08 04:07 PM	

+="CN93795"	"Procurement of:  REPAIR KIT,VALVE;  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	23-Mar-09	145846.71	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN93805"	"Procurement of:  CABLE ASSEMBLY,RADIO FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	19-Jul-08	123453.15	=""	="ASC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93821"	"Lease for Premises at 10 Hawkins Place, Emerald, QLD 4720"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	22-Oct-07	21-Sep-10	117315.00	=""	="Army Reserve Depot"	19-Jun-08 04:18 PM	

+="CN93826"	"PURCHASE OF HEADWEAR AGAINST STANDING OFFER 46278"	="Defence Materiel Organisation"	19-Jun-08	="Hats"	13-Jun-08	17-Oct-08	91522.20	=""	="MOUNTCASTLE PTY LTD"	19-Jun-08 04:27 PM	

+="CN93829"	"Lease for Premises at Site 754, Camden Airport, Aerodrome Rd Camden NSW 2570"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Jul-08	30-Jun-13	127491.60	=""	="Camden Airport Limited"	19-Jun-08 04:38 PM 

--- /dev/null
+++ b/admin/partialdata/17Mar2008to21Mar2008valto.xls
@@ -1,1 +1,764 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN65714"	"work stations"	="Royal Australian Mint"	17-Mar-08	="Work benches"	28-Feb-08	28-Feb-08	24101.00	=""	="BAC AUSTRALIAN SYSTEMS P/L"	17-Mar-08 08:42 AM	

+="CN65715"	"Various Parts - ASLAV"	="Department of Defence"	17-Mar-08	="Armoured fighting vehicles"	13-Mar-08	19-Jun-08	35944.26	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Mar-08 08:45 AM	

+="CN65716"	"Various Parts - ASLAV"	="Department of Defence"	17-Mar-08	="Armoured fighting vehicles"	08-Mar-08	01-Jun-08	42507.75	=""	="GENERAL DYNAMICS LAND SYSTEMS"	17-Mar-08 08:48 AM	

+="CN65717"	"packaging"	="Royal Australian Mint"	17-Mar-08	="Packaging materials"	28-Feb-08	12-Jun-08	18425.00	=""	="DAVIES FERGUSON PTY LTD"	17-Mar-08 08:53 AM	

+="CN65718"	"packaging"	="Royal Australian Mint"	17-Mar-08	="Packaging materials"	28-Feb-08	12-Jun-08	36300.00	=""	="DAVIES FERGUSON PTY LTD"	17-Mar-08 08:58 AM	

+="CN65720"	"Temporary staffing - Michael Chertok"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	17-Mar-08	09-May-08	24000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:13 AM	

+="CN65721"	"Contractor Services - Paul Harvey"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	17-Mar-08	30-Apr-08	28777.06	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:13 AM	

+="CN65722"	"Protiviti SAP Assure maintenance fee"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Software"	31-Jan-08	31-Jan-10	22000.00	="TRS08/035"	="PROTIVITI PTY LTD"	17-Mar-08 09:13 AM	

+="CN65723"	"Surface Transport Security Review"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Security and personal safety"	07-Feb-08	18-Apr-08	83050.00	=""	="GHD Pty Ltd"	17-Mar-08 09:13 AM	

+="CN65724"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	17-Mar-08	18-Apr-08	25000.00	="TRS06/017"	="Peoplebank Australia Ltd"	17-Mar-08 09:13 AM	

+="CN65725"	"Legal Services Expenditure 6995"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	11-Aug-06	30-Jun-09	18263.30	="TRS06/175"	="Clayton Utz Canberra"	17-Mar-08 09:13 AM	

+="CN65726"	"VMWare Server"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Computer Equipment and Accessories"	24-Jan-08	24-Feb-08	16327.09	="TRS08/057"	="CORPORATE EXPRESS"	17-Mar-08 09:14 AM	

+="CN65727"	"Branded promotional items"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Office supplies"	29-Nov-07	30-Jun-08	17554.89	="TRS07/208"	="Inkspott Promotions"	17-Mar-08 09:14 AM	

+="CN65728"	"Writing and editing services"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Graphic design"	12-Mar-08	31-May-08	16000.00	="TRS06/036"	="Cinden Lester Communications"	17-Mar-08 09:14 AM	

+="CN65729"	"Personal Efficiency Program"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	31-Jan-08	30-Apr-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	17-Mar-08 09:14 AM	

+="CN65730"	"Contractor Services -Christopher Roberts"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Community and social services"	04-Feb-08	30-Jun-08	75148.46	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	17-Mar-08 09:14 AM	

+="CN65731"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	01-Dec-07	29-Feb-08	36094.08	="TRS06/017"	="Hyro Solutions Pty Ltd"	17-Mar-08 09:14 AM	

+="CN65732"	"LEGAL SERVICES EXPENDITURE 7013 Legal Services Expenditure 7013"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	11-Aug-06	30-Jun-09	16003.46	="TRS06/175"	="MINTER ELLISON LAWYERS"	17-Mar-08 09:14 AM	

+="CN65733"	"Training Management Plan"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Management advisory services"	10-Dec-07	21-Dec-07	25000.00	=""	="APIS CONSULTING"	17-Mar-08 09:15 AM	

+="CN65734"	"Australian Transport Council Meeting"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Restaurants and catering"	03-Jan-08	29-Feb-08	10893.00	=""	="HYATT HOTEL CANBERRA"	17-Mar-08 09:15 AM	

+="CN65735"	"Legal Services Expenditure 6826"	="Department of Infrastructure Transport Regional Development and Local Government"	17-Mar-08	="Legal services"	04-Mar-08	30-Jun-09	100255.93	="TRS06/175"	="MINTER ELLISON LAWYERS"	17-Mar-08 09:15 AM	

+="CN65746-A2"	"07/2481 - Program Assurance Services - 1599-1944 - Consultancy and Business Services Panel (06/1599)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	04-Feb-08	19-May-09	51600.00	="06/1599"	="Oakton AA Services Pty Ltd"	17-Mar-08 10:36 AM	

+="CN65747-A1"	"07/2516 - Program Review - Consultancy and Business Services Panel 06/1599"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	05-Feb-08	27-Apr-08	47561.00	=""	="Grosvenor Management Consulting"	17-Mar-08 10:39 AM	

+="CN65748"	"08/2544 - IT Contractor - 1599-1950 - Consultantcy and Business Services Panel - 06/1599 (CPE004543-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	21-Feb-08	01-Jul-08	135000.00	=""	="EDS (Australia) Pty Ltd"	17-Mar-08 10:43 AM	

+="CN65749"	"08/2588 - Project Manager - 0717-0890 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	17-Mar-08	="Temporary personnel services"	03-Mar-08	03-Aug-08	79000.00	=""	="Paxus Australia Pty Ltd"	17-Mar-08 10:52 AM	

+="CN65751-A4"	"07/2455 - IT Contractor - 1599-1984 - C&B Services Panel - 06/1599 (CPE004477-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	20-Feb-08	30-Jun-10	251125.00	=""	="ThinkPlace Pty Ltd"	17-Mar-08 10:56 AM	

+="CN65755"	"08/2590 - Survey Services - 1599-1976 - C&B Services Panel 06/1599 - (CPO020022)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	28-Feb-08	07-Apr-08	15000.00	=""	="Worplace Research Associates Pty Ltd"	17-Mar-08 11:05 AM	

+="CN65754"	" SUPPLY OF REPAIR VEHICLE PARTS "	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	12493.05	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 11:06 AM	

+="CN65757"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	14-Mar-08	14-Apr-08	13078.73	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 11:14 AM	

+="CN65758"	"08/2564 - Project Manager - 1599-1981 - C&B Services Panel - 06/1599 (CPE004580-1)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Business and corporate management consultation services"	03-Mar-08	13-Jun-08	77990.00	=""	="Point Project Management Pty Ltd"	17-Mar-08 11:19 AM	

+="CN65760-A1"	" EDRMS Project Implementation "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	01-Dec-07	30-Jun-08	39584.00	=""	="Trinogy Systems Pty Ltd"	17-Mar-08 11:21 AM	

+="CN65761-A1"	" 2007-08 Dairy Adjustment Authority Financial Statement Audit "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	01-Jan-99	31-Oct-08	19250.00	=""	="Ernst and Young - VIC"	17-Mar-08 11:22 AM	

+="CN65762-A1"	" 2007-08 Design of Corporate Publications "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Printing"	03-Dec-07	23-Jan-08	14431.89	=""	="Comcom Pty Ltd T/A Zoo"	17-Mar-08 11:22 AM	

+="CN65763-A1"	"RMS Business Case Consultancy"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	04-Jan-08	04-Mar-08	14520.00	=""	="Consolve Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65764-A2"	" Financial Statement Audits of teh Federal Court of Australia, the High Court of Australia and the Australian Public Service Commission. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	11-Mar-08	30-Oct-12	538628.00	=""	="WalterTurnbull Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65765-A6"	" Financial Statement Audit of Australian Fisheries Management Authority, Grains R&D, Land and Water R&D, Australian Research Council and Geoscience Australia. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	11-Mar-08	31-Oct-12	1054477.30	=""	="WalterTurnbull Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65766"	"Hays Personnel Services (Aust) Pty Ltd"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Personnel recruitment"	13-Nov-07	11-Feb-08	18062.65	=""	="Hays Personnel Services (Aust) Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65767-A1"	" In-house training 14-15 February 2008 "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Adult education"	13-Nov-07	15-Feb-08	11000.00	=""	="Australian Capital Training Group P/L"	17-Mar-08 11:22 AM	

+="CN65759"	"07/2416 - Procurement Services - 0717-0890 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	17-Mar-08	="Temporary personnel services"	19-Feb-08	07-Dec-08	125000.00	=""	="Paxus Australia Pty Ltd"	17-Mar-08 11:22 AM	

+="CN65768-A1"	"Australian Government Accounting and Accountability training 18 - 19 February 2008"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Adult education"	13-Nov-07	19-Feb-08	11000.00	=""	="Australian Capital Training Group P/L"	17-Mar-08 11:22 AM	

+="CN65769-A1"	"Member of PASG Advisory Panel for Active After-School Communities Performance Audit"	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	13-Nov-07	31-Jul-08	21820.00	=""	="James Ferguson"	17-Mar-08 11:23 AM	

+="CN65770-A1"	" ANAO Marketing and Advertising Review 2008 "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	14-Mar-99	30-Apr-02	21120.00	=""	="Comcom Pty Ltd T/A Zoo"	17-Mar-08 11:23 AM	

+="CN65771-A3"	" Consultancy services - Project to Refurbish 19 National Circuit Barton "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Business and corporate management consultation services"	24-Jan-08	30-Sep-09	175000.00	=""	="Coffey Projects (Australia) Pty Limited"	17-Mar-08 11:23 AM	

+="CN65772-A7"	" Financial Statement audits of Indigenous Business Australia and the Australian Institute of Aboriginal and Torres Strait Islander Studies.  Extended by two Option Years to 31 October 2011. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	26-Feb-08	31-Oct-11	1243485.50	="ANAOAM2007/876"	="Ascent Audit Pty Ltd"	17-Mar-08 11:23 AM	

+="CN65774-A2"	" Financial Statement audits of National Archives of Australia, National Library of Australia, National Museum of Australia and the Australian War Memorial. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	26-Feb-08	31-Oct-12	1113192.00	="ANAOAM2007/876"	="Ascent Audit Pty Ltd"	17-Mar-08 11:23 AM	

+="CN65775-A1"	" Relocate and upgrade audio equipment - Ground Floor Training Room "	="Australian National Audit Office (ANAO)"	17-Mar-08	="General building and office cleaning and maintenance services"	28-Feb-08	31-Mar-08	11150.56	=""	="Canberra Professional Equipment"	17-Mar-08 11:23 AM	

+="CN65776-A2"	" Financial Statement Audit of the National Gallery of Australia and Foundation. "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	28-Feb-08	31-Oct-12	282650.00	="ANAOAM2007/876"	="RSM Bird Cameron"	17-Mar-08 11:24 AM	

+="CN65777-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	29-Feb-08	15-Aug-08	46200.00	=""	="Pricewaterhouse Coopers"	17-Mar-08 11:24 AM	

+="CN65778"	"Legal services"	="National Competition Council"	17-Mar-08	="Legal services"	08-Jan-06	31-Jan-08	18957.95	=""	="Clayton Utz"	17-Mar-08 11:48 AM	

+="CN65780"	"legal services"	="National Competition Council"	17-Mar-08	="Legal services"	08-Jan-08	31-Jan-08	25093.83	=""	="Clayton Utz"	17-Mar-08 12:04 PM	

+="CN65782"	"Legal Services"	="National Competition Council"	17-Mar-08	="Legal services"	02-Jan-08	31-Jan-08	11977.44	=""	="Australian Goverment Solocitor"	17-Mar-08 12:08 PM	

+="CN65783-A1"	"To develop the 2008 Education Resource, 'Australian Women in War',"	="Department of Veterans' Affairs"	17-Mar-08	="Specialised educational services"	03-Dec-07	04-Apr-08	177947.00	=""	="Ryebuck Media Pty Ltd"	17-Mar-08 12:08 PM	

+="CN65784"	"Licence and Maintenance 13/02/2008 to 12/02/2009."	="Department of Veterans' Affairs"	17-Mar-08	="Computer services"	13-Feb-08	12-Feb-09	61025.00	=""	="Compuware Asia-Pacific Pty Ltd"	17-Mar-08 12:08 PM	

+="CN65785"	"IBM Maintenance and RenewalSee Register for more detail and breakdown"	="Department of Veterans' Affairs"	17-Mar-08	="Computer services"	01-Mar-08	28-Feb-09	90252.00	=""	="IBM Australia Ltd"	17-Mar-08 12:08 PM	

+="CN65786"	"Restoration of the Cross of Sacrifice at the Wagga Wagga War Cemetery"	="Department of Veterans' Affairs"	17-Mar-08	="Building construction and support and maintenance and repair services"	11-Mar-08	30-Jun-08	13805.00	=""	="Jasper Swan Stonemasonery Pty Ltd"	17-Mar-08 12:09 PM	

+="CN65787"	"Broadcastin of the Anzac Day Dawn Service and Australian Service, Lone Pine, on 25 April each year at Gallipoli, Turkey for years 2008 - 2010."	="Department of Veterans' Affairs"	17-Mar-08	="Components for information technology or broadcasting or telecommunications"	01-Feb-08	25-Apr-10	540000.00	=""	="Australian Broadcasting Corporation"	17-Mar-08 12:09 PM	

+="CN65788"	"CONTRACT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	28-Feb-08	28-Feb-08	55176.00	=""	="PAXUS AUSTRALIA PTY LTD"	17-Mar-08 12:10 PM	

+="CN65790"	"TEMPORARY ADMIN ASSISTANT"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	21-Feb-08	21-Feb-08	36595.83	="SON50684"	="COX PURTELL"	17-Mar-08 12:11 PM	

+="CN65791"	"MS PROJECT SERVER EPM"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Information technology consultation services"	15-Feb-08	15-Feb-08	62540.50	=""	="STRATEGIC DATA MANAGEMENT"	17-Mar-08 12:11 PM	

+="CN65792"	"SECRETARIAL SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	30-Jan-08	29-Jan-09	52000.00	=""	="LISA PERRI"	17-Mar-08 12:11 PM	

+="CN65793"	"ALTERATION AND ALLOCATION OF WORKSTATIONS"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Building and Construction and Maintenance Services"	21-Feb-08	21-Feb-08	11253.00	=""	="CARRINGTON TRADING PTY LTD"	17-Mar-08 12:11 PM	

+="CN65794"	"ANNUAL AUDIT CONSULTANCY FEES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Audit services"	21-Feb-08	21-Feb-08	44000.00	=""	="ELIZABETH ALEXANDER"	17-Mar-08 12:11 PM	

+="CN65795"	"TEMPORARY STAFF"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Temporary personnel services"	21-Feb-08	21-Feb-08	18919.03	=""	="MANPOWER SERVICES (AUSTRALIA) PTY LTD"	17-Mar-08 12:11 PM	

+="CN65796"	"STAFF CLIMATE SURVEY"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Business and corporate management consultation services"	21-Feb-08	21-Feb-08	66000.00	=""	="HEWITT ASSOCIATES PTY LTD"	17-Mar-08 12:11 PM	

+="CN65797"	"ITSM LICENCE MAINTENANCE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Software maintenance and support"	29-Feb-08	29-Feb-08	67564.79	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC PTY LTD"	17-Mar-08 12:11 PM	

+="CN65798"	"RECORDS MANAGMENT CONSULTING"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Business intelligence consulting services"	29-Feb-08	29-Feb-08	27315.20	=""	="RECORDKEEPING INNOVATION PTY LTD"	17-Mar-08 12:12 PM	

+="CN65799"	"RECRUTIMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Recruitment services"	29-Feb-08	29-Feb-08	44000.00	=""	="PORTERALLEN HENDREN PTY LTD"	17-Mar-08 12:12 PM	

+="CN65800"	"SOFTWARE LICENSING"	="Australian Prudential Regulation Authority (APRA)"	17-Mar-08	="Software or hardware engineering"	29-Feb-08	29-Feb-08	20130.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	17-Mar-08 12:12 PM	

+="CN65803"	" Legal Services "	="Australian Human Rights Commission"	17-Mar-08	="Legal services"	02-Apr-07	17-Jan-08	15300.00	=""	="A J Dever Pty Ltd"	17-Mar-08 12:28 PM	

+="CN65806"	"NSN 1650-00-808-0179, Control Shaft Assemblies"	="Defence Materiel Organisation"	17-Mar-08	="Aerospace systems and components and equipment"	17-Mar-08	12-Jan-09	277825.61	=""	="Milspec Services Pty Ltd"	17-Mar-08 01:26 PM	

+="CN65810"	"Counter, Electronic Digital readout"	="Defence Materiel Organisation"	17-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	17-Mar-08	07-May-08	85552.28	=""	="AGILENT TECHNOLOGIES"	17-Mar-08 02:01 PM	

+="CN65812"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	11334.58	=""	="LAND ROVER AUSTRALIA"	17-Mar-08 02:14 PM	

+="CN65814"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Mar-08	13852.79	=""	="MERCEDES-BENZ"	17-Mar-08 02:22 PM	

+="CN65815"	"NSN 1730-66-093-3146, Aircraft Chock Fittings"	="Defence Materiel Organisation"	17-Mar-08	="Aerospace systems and components and equipment"	13-Mar-08	21-Jul-08	15049.32	=""	="Milspec Services Pty Ltd"	17-Mar-08 02:29 PM	

+="CN65816-A1"	"Temporary Personnel"	="Australian Electoral Commission"	17-Mar-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	20160.00	="AEC06/019"	="Clicks IT Recruitment"	17-Mar-08 02:34 PM	

+="CN65818"	"Legal Services"	="Australian Electoral Commission"	17-Mar-08	="Legal services"	05-Jan-07	05-Jan-10	40000.00	="AEC06/032"	="Australian Government Solicitor"	17-Mar-08 02:40 PM	

+="CN65817"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	17-Mar-08	="Motor vehicles"	17-Mar-08	17-Apr-08	10702.66	=""	="MERCEDES-BENZ"	17-Mar-08 02:45 PM	

+="CN65819-A1"	"Provision of demountable toilet block at Bribane airport"	="Australian Federal Police"	17-Mar-08	="Portable toilettes"	01-Feb-08	30-Jun-08	75268.60	=""	="Manteena Pty Ltd"	17-Mar-08 02:46 PM	

+="CN65820"	"Courier Services"	="Australian Electoral Commission"	17-Mar-08	="Postal and small parcel and courier services"	21-Dec-07	21-Dec-10	106700.00	="S07/08/071"	="Toll Priority"	17-Mar-08 02:48 PM	

+="CN65821"	"Conduct the Pathology Payments Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	06-Jul-07	22-Feb-08	188540.00	=""	="Ascent Governance Pty Ltd"	17-Mar-08 02:51 PM	

+="CN65822"	"Print Advertising"	="Australian Electoral Commission"	17-Mar-08	="Newspaper advertising"	01-Oct-02	30-Jun-08	19448.66	=""	="HMA Blaze"	17-Mar-08 02:57 PM	

+="CN65825"	"Undertake DEWR's Administration of Job Network Service Fees audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	04-Jul-07	03-Jul-08	264000.00	=""	="KNJ Professional Services Pty Ltd"	17-Mar-08 03:06 PM	

+="CN65826-A1"	"Security upgrade of international mission"	="Australian Federal Police"	17-Mar-08	="Security surveillance and detection"	19-Feb-08	08-Jul-08	542522.20	=""	="Manteena Pty Ltd"	17-Mar-08 03:07 PM	

+="CN65829"	"HOSE ASSEMBLY, NONMETALLIC RUBBER LINED, REINFORCED, 30 M LG, C/W BIC MALE AND FEMALE ALUMINIUM ALLOY COUPLINGS, 64 MM ID"	="Defence Materiel Organisation"	17-Mar-08	="Water hoses"	06-Feb-08	27-Feb-08	15523.20	=""	="CHUBB FIRE SAFETY LTD"	17-Mar-08 03:23 PM	

+="CN65831"	"Assist with the Management Of Credit Card Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	09-Jul-07	16-May-08	123200.00	=""	="Pat Farrelly and Associates Pty Ltd"	17-Mar-08 03:38 PM	

+="CN65832"	"Advisory and management services for the preperation and release of RFT's for tender for supply of Audio and visual equiptment; Accomadation services; and venue servicesfor the AFP."	="Australian Federal Police"	17-Mar-08	="Audio and visual equipment"	03-Mar-08	01-Jul-08	55000.00	="22-2005"	="Qinetiq"	17-Mar-08 03:41 PM	

+="CN65833-A1"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	17-Mar-08	="Community and social services"	01-Jul-06	30-Jun-07	39682.15	=""	="Ngaliwurru-Wuli Association (Timber Creek)"	17-Mar-08 03:45 PM	

+="CN65835-A4"	"Software licence, installation and support agreement for Fleet Management"	="Australian Federal Police"	17-Mar-08	="Fleet management services"	29-Jun-05	28-Feb-12	145311.29	=""	="Open Windows Australia Pty Ltd"	17-Mar-08 03:54 PM	

+="CN65840"	"Early intervention costs"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	11000.00	=""	="Konekt Australia Pty Ltd"	17-Mar-08 04:04 PM	

+="CN65841"	"Translating services"	="Centrelink"	17-Mar-08	="Writing and translations"	11-Jul-07	30-Jun-08	11000.00	=""	="On-Call Interpreters and Translators"	17-Mar-08 04:04 PM	

+="CN65842"	"Courier service"	="Centrelink"	17-Mar-08	="Transport operations"	25-Feb-08	30-Jun-08	123200.00	=""	="Toll Priority"	17-Mar-08 04:04 PM	

+="CN65843"	"Courier services"	="Centrelink"	17-Mar-08	="Office supplies"	06-Sep-07	30-Jun-08	16498.90	=""	="Toll Fast"	17-Mar-08 04:04 PM	

+="CN65844"	"Advertising"	="Centrelink"	17-Mar-08	="Advertising"	13-Mar-08	30-Jun-08	16500.00	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:04 PM	

+="CN65845"	"Sustenance and venue hire"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Jun-08	17039.00	=""	="Windmill Motel"	17-Mar-08 04:05 PM	

+="CN65846"	"Mechanical Services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Sep-07	21-Apr-08	16753.00	=""	="IA Group Pty Ltd (Interiors Austral"	17-Mar-08 04:05 PM	

+="CN65847"	"Accommodation costs for the NT emergency response teams"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	12-Feb-08	30-Jun-08	10982.40	=""	="White Gum Motel"	17-Mar-08 04:05 PM	

+="CN65848"	"Freight"	="Centrelink"	17-Mar-08	="Transportation services equipment"	29-Feb-08	30-Jun-08	220000.00	=""	="Cope Transport"	17-Mar-08 04:05 PM	

+="CN65849"	"Accommodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	14-Feb-08	30-Jun-08	26000.01	=""	="Tapatjatjaka Community Govt Council"	17-Mar-08 04:05 PM	

+="CN65850"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	22-Feb-08	30-Jun-08	36500.00	=""	="St John Ambulance Australia(NT) Inc"	17-Mar-08 04:05 PM	

+="CN65851"	"Accommodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	18-Jan-08	30-May-08	19175.01	=""	="Jessica Court Serviced Apartments"	17-Mar-08 04:05 PM	

+="CN65852"	"Transport Operations"	="Centrelink"	17-Mar-08	="Transport operations"	13-Mar-08	30-Jun-08	20000.01	=""	="Murin Travel & Freight Services"	17-Mar-08 04:05 PM	

+="CN65853"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	35000.00	=""	="Dept of Human Services"	17-Mar-08 04:06 PM	

+="CN65854-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	21-Feb-08	17-Mar-08	10230.00	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:06 PM	

+="CN65855-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Mar-08	30-Jun-08	18700.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65856"	"Project Management Services for refurbishment, Melton, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Feb-08	30-Jun-08	29700.00	=""	="James Millar Architects"	17-Mar-08 04:06 PM	

+="CN65857"	"Staff flu vaccinations"	="Centrelink"	17-Mar-08	="Healthcare Services"	01-Feb-08	30-Jun-08	16500.00	=""	="Health for Industry"	17-Mar-08 04:06 PM	

+="CN65858"	"Energy Management Advisory Services"	="Centrelink"	17-Mar-08	="Environmental Services"	01-Feb-08	30-Jun-08	19800.00	=""	="Norman Disney & Young"	17-Mar-08 04:06 PM	

+="CN65860"	"Screens, posts and electrical cords for fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	04-Feb-08	15-Apr-08	165695.20	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:06 PM	

+="CN65861"	"Fitout management services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-09	82000.00	=""	="Interior Dynamics Australia Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65862"	"Searches"	="Centrelink"	17-Mar-08	="Public administration and finance services"	10-Jul-07	30-Aug-08	13820.00	=""	="Landgate"	17-Mar-08 04:06 PM	

+="CN65863"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	29-Feb-08	07-Mar-08	179236.71	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:06 PM	

+="CN65864"	"Supply and install carpet"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	29-Feb-08	30-Jun-08	115025.35	=""	="Interface Flor"	17-Mar-08 04:07 PM	

+="CN65865"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	29-Feb-08	01-Mar-09	216216.00	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65866"	"3 Digital recording sytems"	="Centrelink"	17-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	29-Feb-08	14-Mar-08	39549.40	=""	="Tape Products Research"	17-Mar-08 04:07 PM	

+="CN65867"	"Video Conferencing"	="Centrelink"	17-Mar-08	="Telecommunications media services"	05-Jul-05	30-Jun-06	33000.00	=""	="Telstra"	17-Mar-08 04:07 PM	

+="CN65868"	"Transport Services"	="Centrelink"	17-Mar-08	="Transport operations"	28-Feb-08	30-Jun-08	18084.61	=""	="Cabcharge Australia Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65869"	"Transport operations"	="Centrelink"	17-Mar-08	="Transport operations"	28-Feb-08	30-Jun-08	25067.11	=""	="Cabcharge Australia Pty Ltd"	17-Mar-08 04:07 PM	

+="CN65871"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	13-Feb-08	30-Jun-08	10890.00	=""	="Chandler Macleod Group"	17-Mar-08 04:07 PM	

+="CN65873"	"Legal Services"	="Centrelink"	17-Mar-08	="Legal services"	27-Feb-08	30-Jun-08	550000.00	=""	="Sparke Helmore Solicitors"	17-Mar-08 04:08 PM	

+="CN65874"	"Information Services"	="Centrelink"	17-Mar-08	="Computer services"	12-Mar-08	30-Jun-08	121000.00	=""	="Australian Business Research"	17-Mar-08 04:08 PM	

+="CN65875"	"Vendue hire and sustenance"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	05-Mar-08	30-Jun-08	19045.40	=""	="Best Western Windmill Motel"	17-Mar-08 04:08 PM	

+="CN65872"	" Website Development Services "	="Department of the Prime Minister and Cabinet"	17-Mar-08	="World wide web WWW site design services"	25-Oct-07	30-Jun-08	42000.00	=""	="OPC Pty Ltd"	17-Mar-08 04:08 PM	

+="CN65876"	"Editing, Camera Operator"	="Centrelink"	17-Mar-08	="Telecommunications media services"	10-Sep-07	30-Jun-08	11000.00	=""	="Arttractions"	17-Mar-08 04:08 PM	

+="CN65877"	"Courier services"	="Centrelink"	17-Mar-08	="Mail and cargo transport"	03-Mar-08	30-Jun-08	65161.80	=""	="Toll Priority"	17-Mar-08 04:08 PM	

+="CN65878"	"Customer Searches"	="Centrelink"	17-Mar-08	="Legal services"	07-Mar-08	27-Jun-08	26000.00	=""	="Dept Attorney General"	17-Mar-08 04:08 PM	

+="CN65879"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	15258.10	=""	="Resolutions"	17-Mar-08 04:08 PM	

+="CN65880"	"Advertising"	="Centrelink"	17-Mar-08	="Printed media"	13-Feb-08	30-Jun-08	34771.37	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:08 PM	

+="CN65881"	"Architectural Services"	="Centrelink"	17-Mar-08	="Management advisory services"	31-Jan-08	30-Jun-08	38380.00	=""	="Integrated Space Ltd"	17-Mar-08 04:09 PM	

+="CN65882"	"Search fees for fraud investigations"	="Centrelink"	17-Mar-08	="Information services"	28-Sep-07	30-Jun-08	72727.27	=""	="Executive Security & Investigations"	17-Mar-08 04:09 PM	

+="CN65883"	"Early intervention costs"	="Centrelink"	17-Mar-08	="Human resources services"	20-Feb-08	30-Jun-08	22000.00	=""	="CRS Australia"	17-Mar-08 04:09 PM	

+="CN65884"	"Government Rates and Land Tax"	="Centrelink"	17-Mar-08	="Utilities"	20-Feb-08	30-Jun-08	53584.00	=""	="Tuggeranong Office Park Pty Limited"	17-Mar-08 04:09 PM	

+="CN65885"	"Hotel, Lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	30-Jun-08	16348.55	=""	="Spotless Services Australia Ltd"	17-Mar-08 04:09 PM	

+="CN65886"	"Hotel, Lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	19-Feb-08	30-Jun-08	20944.00	=""	="Thamarrurr Regional Council"	17-Mar-08 04:09 PM	

+="CN65887"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	13200.00	=""	="D'Arcy Consulting Group Pty Ltd"	17-Mar-08 04:09 PM	

+="CN65888"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	20-Feb-08	30-Jun-08	34000.01	=""	="IBM Australia Pty Ltd"	17-Mar-08 04:09 PM	

+="CN65889"	"Demountable fitout alterations"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Jun-08	30000.00	=""	="Schiavello (ACT) Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65890"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	25000.00	=""	="Interface21 Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65891"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	12420.00	=""	="Computer Corporation of  America"	17-Mar-08 04:10 PM	

+="CN65892-A1"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	20-Feb-08	30-Jun-08	12420.00	=""	="Computer Corporation of America"	17-Mar-08 04:10 PM	

+="CN65893"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	09-Mar-08	28435.00	=""	="Integrated Cabling Solutions Pty Lt"	17-Mar-08 04:10 PM	

+="CN65894-A1"	"Advertising"	="Centrelink"	17-Mar-08	="Advertising"	21-Feb-08	30-Jun-08	19999.10	=""	="HMA Blaze Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65895"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	21-Feb-08	30-Jun-08	30000.30	=""	="CIT Solutions Pty Ltd"	17-Mar-08 04:10 PM	

+="CN65839"	" Electron Tube "	="Defence Materiel Organisation"	17-Mar-08	="Air transportation support systems and equipment"	09-Aug-07	05-Feb-08	111334.00	=""	="Communications & Power Industries"	17-Mar-08 04:10 PM	

+="CN65896"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	23-Mar-08	26378.00	=""	="Stowe Australia Pty Ltd"	17-Mar-08 04:11 PM	

+="CN65898"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	22-Feb-08	30-Jun-08	15000.00	=""	="Ntaria Council Inc"	17-Mar-08 04:11 PM	

+="CN65899"	"Office Supplies"	="Centrelink"	17-Mar-08	="Office supplies"	22-Feb-08	30-Jun-08	15000.00	=""	="Barbeques Galore"	17-Mar-08 04:11 PM	

+="CN65900"	"Transportation services equipment"	="Centrelink"	17-Mar-08	="Transportation services equipment"	22-Feb-08	30-Jun-08	15000.00	=""	="Top Gear Car & 4WD Centre"	17-Mar-08 04:11 PM	

+="CN65901"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	22-Feb-08	30-Jun-08	50000.01	=""	="SMART - NT"	17-Mar-08 04:11 PM	

+="CN65897"	"Supply Ten XTL5000 Mobile Radios"	="Australian Federal Police"	17-Mar-08	="Two way radios"	25-Feb-08	25-Jun-08	35074.60	=""	="Motorola Australia Pty Limited"	17-Mar-08 04:11 PM	

+="CN65902"	"Transport operations"	="Centrelink"	17-Mar-08	="Transport operations"	22-Feb-08	30-Jun-08	50000.01	=""	="Tiwi Travel & Freight"	17-Mar-08 04:11 PM	

+="CN65903-A1"	"Security Guard Services"	="Centrelink"	17-Mar-08	="Security and personal safety"	25-Feb-08	30-Jun-08	17036.80	=""	="Fly Security Services"	17-Mar-08 04:12 PM	

+="CN65905"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	26-Feb-08	30-Jun-08	13100.01	=""	="Country Comfort Greenway"	17-Mar-08 04:12 PM	

+="CN65906"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	26-Feb-08	30-Jun-08	44550.00	=""	="Ginger Catering"	17-Mar-08 04:12 PM	

+="CN65907"	"Fitout management services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Feb-08	30-Jun-08	11000.00	=""	="James Millar Architects"	17-Mar-08 04:12 PM	

+="CN65908"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	16000.00	=""	="IBM Australia Pty Ltd"	17-Mar-08 04:12 PM	

+="CN65909"	"Office refurbishment"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Feb-08	30-Jun-08	72311.80	=""	="Formula Interiors NSW"	17-Mar-08 04:12 PM	

+="CN65910"	"Office fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	20-Apr-08	303360.20	=""	="Schiavello (WA) Pty Ltd"	17-Mar-08 04:12 PM	

+="CN65911"	"Hotel, lodging and other meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Galiwinku Community Inc"	17-Mar-08 04:13 PM	

+="CN65912"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Lajamanu Community Government"	17-Mar-08 04:13 PM	

+="CN65913"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	35200.00	=""	="Alice Springs Airport Shuttle P/L"	17-Mar-08 04:13 PM	

+="CN65914"	"Hotel, lodging and meeting facilities."	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	07-Feb-08	30-Jun-08	32000.00	=""	="Pavilion on Northbourne"	17-Mar-08 04:13 PM	

+="CN65916"	"Customer Service Centre Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Feb-08	04-Feb-09	213671.70	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:13 PM	

+="CN65917"	"Customer Service Centre Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Feb-08	26-Dec-08	165313.50	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:13 PM	

+="CN65918"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	08-Feb-08	30-Jun-08	20000.00	=""	="Amoonguna Community Council"	17-Mar-08 04:13 PM	

+="CN65919"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	11-Feb-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:13 PM	

+="CN65920"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	13-Feb-08	09-Mar-08	13583.90	=""	="Desa Australia (QLD) Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65921"	"Flu Vaccinations"	="Centrelink"	17-Mar-08	="Human resources services"	13-Feb-08	30-Jun-08	11032.78	=""	="Peak Health Management"	17-Mar-08 04:14 PM	

+="CN65922"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	03-Mar-08	17182.00	=""	="Stowe Australia Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65923"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	15-Feb-08	30-Jun-08	27272.73	=""	="S & L Wicik"	17-Mar-08 04:14 PM	

+="CN65924"	"IT Cabling"	="Centrelink"	17-Mar-08	="Computer services"	15-Feb-08	16-Mar-08	56779.80	=""	="DESA Australia Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65925"	"Furniture for Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Feb-08	18-Feb-08	56714.90	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:14 PM	

+="CN65926-A1"	"External Training"	="Centrelink"	17-Mar-08	="Specialised educational services"	18-Feb-08	30-Jun-08	75780.00	=""	="Australian Forensic Services Pty Ltd"	17-Mar-08 04:14 PM	

+="CN65927"	"Employee Assistance Program Critical Incidents"	="Centrelink"	17-Mar-08	="Human resources services"	18-Feb-08	30-Jun-08	12000.00	=""	="OSA Group"	17-Mar-08 04:14 PM	

+="CN65928"	"Fitout management of Palm Beach, QLD refurbishment"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Feb-08	19-Dec-08	17120.00	=""	="Interior Dynamics Australia Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65929"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	14320.00	=""	="Excom Education Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65930-A2"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	28-Feb-08	30-Jun-11	683298.00	=""	="Techpoint Consulting Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65931"	"Business administration services"	="Centrelink"	17-Mar-08	="Business administration services"	01-Feb-08	30-Jun-08	24803.77	=""	="Corporate Executive Board"	17-Mar-08 04:15 PM	

+="CN65932-A1"	"Presentation Aids"	="Centrelink"	17-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Feb-08	30-Apr-08	11480.98	=""	="Electroboard Solutions Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65933-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	01-Feb-08	30-Apr-08	22299.35	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:15 PM	

+="CN65934"	"Office Chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	21-Mar-08	25086.60	=""	="Arteil (WA) Pty Ltd"	17-Mar-08 04:15 PM	

+="CN65935"	"Customer Chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	02-Apr-08	17407.50	=""	="Solitaire Seating"	17-Mar-08 04:16 PM	

+="CN65936"	"Engineering services for Caloundra, QLD refurbishment"	="Centrelink"	17-Mar-08	="Professional engineering services"	04-Feb-08	30-Jun-08	12241.00	=""	="Smith Madden Group"	17-Mar-08 04:16 PM	

+="CN65937"	"Furniture for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	04-Feb-08	30-Jun-08	42498.50	=""	="Emtek Furniture"	17-Mar-08 04:16 PM	

+="CN65938"	"Business administration services"	="Centrelink"	17-Mar-08	="Business administration services"	04-Feb-08	30-Jun-08	27500.00	=""	="University of Technology Housing Se"	17-Mar-08 04:16 PM	

+="CN65939"	"Software Licences"	="Centrelink"	17-Mar-08	="Software"	05-Feb-08	05-Feb-08	45346.06	=""	="Kaz Group Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65940"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	05-Feb-08	30-Apr-08	92400.00	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65941"	"Workstations and Storage Units for Coffs Harbour, NSW fitout"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	30-Jun-08	442365.00	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:16 PM	

+="CN65942"	"carpet tiles for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Mineral and Textile and Inedible Plant and Animal Materials"	05-Feb-08	30-Jun-08	23275.34	=""	="Interface Flor"	17-Mar-08 04:17 PM	

+="CN65943"	"Chairs and table For Coffs Harbour, NSW Refit"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	05-Feb-08	30-Jun-08	60141.40	=""	="Emtek Furniture"	17-Mar-08 04:17 PM	

+="CN65944"	"Office refurbishment, Newcastle, NSW"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-Feb-08	06-Feb-08	32369.84	=""	="David J Smith Building Pty Ltd"	17-Mar-08 04:17 PM	

+="CN65945"	"Office Furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	06-Feb-08	04-Mar-08	30877.00	=""	="Bentley House Commercial Interiors"	17-Mar-08 04:17 PM	

+="CN65946"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	06-Feb-08	30-Jun-08	10000.00	=""	="Hinds Workforce Research Pty Ltd"	17-Mar-08 04:17 PM	

+="CN65947"	"Furniture"	="Centrelink"	17-Mar-08	="Office supplies"	07-Feb-08	28-Feb-08	11065.12	=""	="Ricmar Australia Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65948-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	07-Feb-08	28-Feb-10	803140.80	="RTFS07/0129"	="Peoplebank Australia Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65949"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	08-Feb-08	02-May-08	74976.00	="RTFS07/0129"	="Sensory7 Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65950"	"Visitors chairs for Geraldton, WA"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	08-Feb-08	18-Apr-08	14245.00	=""	="Solitaire Seating"	17-Mar-08 04:18 PM	

+="CN65951"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	11-Feb-08	30-Jun-08	76879.00	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65952-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	01-Feb-08	01-Feb-09	171771.60	=""	="Ekonsulting Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65953"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	11-Mar-08	30-Jun-08	68468.40	=""	="Verossity Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65954"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	12-Feb-08	12-Aug-08	91891.80	=""	="Compas Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65955"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	14-Feb-09	209008.80	=""	="Compas Pty Ltd"	17-Mar-08 04:18 PM	

+="CN65956"	"Fitout management - Launceston, TAS"	="Centrelink"	17-Mar-08	="Professional engineering services"	07-May-07	30-Jun-08	10728.01	=""	="James Millar Architects"	17-Mar-08 04:18 PM	

+="CN65957"	"General freight services"	="Centrelink"	17-Mar-08	="Transport operations"	18-Jul-07	30-Jun-08	15400.00	=""	="TNT Australia Pty Limited"	17-Mar-08 04:19 PM	

+="CN65958"	"Workstations and storage units"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	07-Mar-08	30-Jun-08	11431.20	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65959"	"Property fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	21890.00	=""	="Designphase Australia"	17-Mar-08 04:19 PM	

+="CN65960"	"Signage"	="Centrelink"	17-Mar-08	="Signage and accessories"	02-Oct-07	29-Feb-08	10485.33	=""	="Signshop"	17-Mar-08 04:19 PM	

+="CN65961"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	21-Nov-07	31-Jan-08	17911.47	=""	="IPA Personnel Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65962"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	22-Feb-08	30-Jun-08	743509.12	=""	="CSC Australia Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65963"	"Market Research"	="Centrelink"	17-Mar-08	="Management advisory services"	21-Feb-08	09-Jun-08	94999.98	=""	="NWC Research"	17-Mar-08 04:19 PM	

+="CN65964"	"IT specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	21-Dec-07	30-Jun-08	96096.00	=""	="Interpro Australia Pty Ltd"	17-Mar-08 04:19 PM	

+="CN65965-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Jan-08	30-Jun-08	27931.04	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:19 PM	

+="CN65966-A1"	"Recruitment Services"	="Centrelink"	17-Mar-08	="Human resources services"	11-Jan-08	30-Jun-08	27931.04	="RFT07/0021"	="Chandler Macleod Group"	17-Mar-08 04:20 PM	

+="CN65967"	"Office Fitout, St Mary's, NSW"	="Centrelink"	17-Mar-08	="Office supplies"	12-Feb-08	30-Jun-08	19800.00	=""	="Latin Interiors Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65968"	"Telecommunications media services"	="Centrelink"	17-Mar-08	="Telecommunications media services"	01-Feb-08	30-Jun-08	12429.83	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65969"	"Hire P2 boothing kits for employment Expo"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	29-Feb-08	11695.20	=""	="Underwood Party Hire"	17-Mar-08 04:20 PM	

+="CN65970"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	30-Jun-08	19538.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65971"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	01-Feb-08	02-Feb-09	230630.40	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65972"	"Office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	01-Feb-08	30-Jun-08	287524.05	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65973"	"Audio visual equipment"	="Centrelink"	17-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Feb-08	30-Jun-08	44881.00	=""	="Electroboard Solutions Pty Ltd"	17-Mar-08 04:20 PM	

+="CN65974"	"External and internal signs for Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Jun-08	25894.00	=""	="Tint Design Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65975"	"Furniture"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	30-Apr-08	246170.10	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65976"	"Office Fitout"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Feb-08	10-Mar-08	178632.74	=""	="Cordwell Lane Building Pty Ltd"	17-Mar-08 04:21 PM	

+="CN65977"	"External training"	="Centrelink"	17-Mar-08	="Vocational training"	21-Feb-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:21 PM	

+="CN65978"	"Supply and install carpet"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	49763.95	=""	="Interface Flor"	17-Mar-08 04:21 PM	

+="CN65979"	"Furniture for Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	18103.80	=""	="Emtek Furniture"	17-Mar-08 04:21 PM	

+="CN65980"	"Office fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	37340.60	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:21 PM	

+="CN65981"	"Office fitout, Ringwood, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	15-Apr-08	378471.76	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:21 PM	

+="CN65982"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	21-Feb-08	17-Aug-08	114400.00	=""	="Compas Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65983"	"Signage for the Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Signage and accessories"	22-Feb-08	30-Jun-08	12396.92	=""	="Signworld Sunshine Coast"	17-Mar-08 04:22 PM	

+="CN65984"	"Landscaping court yard at Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Feb-08	30-Jun-08	28395.40	=""	="Ian Kelly Landscape Contractor"	17-Mar-08 04:22 PM	

+="CN65985"	"Office Refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	25-Feb-08	21-Mar-08	17894.93	=""	="Schiavello SA Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65986"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	25-Feb-08	01-Apr-08	34650.00	="RFTS07/0129"	="Omaha IT Services Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65987"	"External painting at Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-Feb-08	30-Jun-08	14916.00	=""	="L & A Petruccelli"	17-Mar-08 04:22 PM	

+="CN65988"	"office furniture"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	26-Feb-08	30-Jun-08	142980.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:22 PM	

+="CN65989"	"Supply and Installation of tiles and vinyl"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	26-Feb-08	07-Mar-08	10311.06	=""	="B & R Tiles & Floor Coverings"	17-Mar-08 04:23 PM	

+="CN65990"	"Hotel, lodging and meeting facilities"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	27-Feb-08	30-Jun-08	20000.00	=""	="Quality Hotel Old Adelaide"	17-Mar-08 04:23 PM	

+="CN65991"	"Painting services"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Feb-08	14-Mar-08	15019.40	=""	="Fyfe Interiors & Refurbishment"	17-Mar-08 04:23 PM	

+="CN65992"	"Furniture for new Centrelink office Werribee, VIC"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	27-Feb-08	30-Jun-08	432941.01	=""	="Schiavello (Vic) Pty  Ltd"	17-Mar-08 04:23 PM	

+="CN65993"	"Pallet racking"	="Centrelink"	17-Mar-08	="Containers and storage"	27-Feb-08	30-Jun-08	14450.00	=""	="Design Systems Office Interiors"	17-Mar-08 04:23 PM	

+="CN65994"	"Workstations"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	27-Feb-08	30-Jun-08	21024.87	=""	="Schiavello (ACT) Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65995-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	20-Feb-08	31-Dec-10	618895.20	=""	="Peoplebank Australia Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65996"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	11-Feb-08	10-Aug-08	114114.00	=""	="OOSW Consulting Pty Ltd"	17-Mar-08 04:23 PM	

+="CN65997"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	13-Feb-08	11-Feb-09	204204.00	=""	="Acumen Contracting & Recruitment P/"	17-Mar-08 04:23 PM	

+="CN65998"	"Computer Equipment and Accessories"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	13-Feb-08	13-Feb-08	23597.61	=""	="Commander Integrated Networks P/L"	17-Mar-08 04:23 PM	

+="CN65999"	"Conference Venue Hire"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	13-Feb-08	28-Feb-08	11069.49	=""	="Rydges Port Macquarie"	17-Mar-08 04:24 PM	

+="CN66000"	"Accomodation"	="Centrelink"	17-Mar-08	="Hotels and lodging and meeting facilities"	13-Feb-08	27-Feb-08	16365.38	=""	="Observatory Port Macquarie"	17-Mar-08 04:24 PM	

+="CN66001"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	16-Feb-09	252252.00	=""	="Ambit Group"	17-Mar-08 04:24 PM	

+="CN66002"	"IT Specialist Services by Specified Personnel"	="Centrelink"	17-Mar-08	="Computer services"	14-Feb-08	09-May-08	41580.00	="RFTS07/0129"	="Stratagem"	17-Mar-08 04:24 PM	

+="CN66003"	"Screens, tables and office chairs"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	14-Feb-08	31-Mar-08	19769.20	=""	="Schiavello Systems (NSW) Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66004-A1"	"Construction fitout for Bendigo, VIC"	="Centrelink"	17-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-Feb-08	30-Jun-08	439290.50	=""	="Pirotta Services Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66005"	"Workstations/Storage and Reception Units/Signage"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	15-Feb-08	18-Apr-08	120896.60	=""	="Schiavello (WA) Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66006"	"Removal Works for Coffs Harbour, NSW refit"	="Centrelink"	17-Mar-08	="Containers and storage"	15-Feb-08	22-Mar-08	13090.00	=""	="Classic Office Relocations Qld P/L"	17-Mar-08 04:24 PM	

+="CN66007"	"External signs"	="Centrelink"	17-Mar-08	="Signage and accessories"	18-Feb-08	31-Mar-08	24860.00	=""	="Tint Design Pty Ltd"	17-Mar-08 04:24 PM	

+="CN66008-A1"	"Envelopes"	="Centrelink"	17-Mar-08	="Paper Materials and Products"	18-Feb-08	29-Feb-08	41469.12	=""	="Australian Envelopes"	17-Mar-08 04:25 PM	

+="CN66009"	"External Training"	="Centrelink"	17-Mar-08	="Vocational training"	18-Feb-08	30-Jun-08	11825.00	=""	="Australian Public Servce Commission"	17-Mar-08 04:25 PM	

+="CN66010"	"Supply and install security optical fibre"	="Centrelink"	17-Mar-08	="Security and personal safety"	18-Feb-08	30-Jun-08	10615.00	=""	="Secom Technical Services Pty Ltd"	17-Mar-08 04:25 PM	

+="CN66011"	"Signage for Toowong, QLD refurbishment"	="Centrelink"	17-Mar-08	="Signage and accessories"	19-Feb-08	30-Jun-08	15073.63	=""	="Signworld Sunshine Coast"	17-Mar-08 04:25 PM	

+="CN66012"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	19-Feb-08	30-Sep-09	29185.20	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:25 PM	

+="CN66013"	"Computer services"	="Centrelink"	17-Mar-08	="Computer services"	19-Feb-08	30-Jun-08	191827.90	=""	="Nuance Communications Int. BVBA"	17-Mar-08 04:26 PM	

+="CN66014"	"Workstations for Casino, NSW refurbishment"	="Centrelink"	17-Mar-08	="Furniture and Furnishings"	20-Feb-08	30-Jun-08	119429.20	=""	="Schiavello Systems (QLD) Pty Ltd"	17-Mar-08 04:26 PM	

+="CN66015"	"Relocate furniture"	="Centrelink"	17-Mar-08	="Office supplies"	20-Feb-08	09-Mar-08	10736.00	=""	="Allied Pickfords"	17-Mar-08 04:26 PM	

+="CN66016"	"Computer Equipment Network"	="Centrelink"	17-Mar-08	="Computer Equipment and Accessories"	20-Feb-08	20-Feb-08	67601.68	=""	="Dimension Data Australia Pty Ltd"	17-Mar-08 04:26 PM	

+="CN66018"	"EXTINGUISHER, FIRE WATER, AIR PRESSURE TYPE, 10 L, C/W WALL BRACKET"	="Defence Materiel Organisation"	17-Mar-08	="Fire extinguishers"	13-Mar-08	15-May-08	65092.50	=""	="CHUBB FIRE SAFETY LTD"	17-Mar-08 04:39 PM	

+="CN64833"	"Facilitation Services"	="Australian Taxation Office"	17-Mar-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	28-Feb-08	19112.00	=""	="Peiat Consulting Pty Ltd"	17-Mar-08 04:48 PM	

+="CN66019"	"Dialog Newsroom subscription for 2007-08."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Information services"	01-Jul-07	30-Jun-08	28200.00	=""	="The Dialog Corporation Asia Pacific Ltd"	17-Mar-08 05:49 PM	

+="CN66020"	"Provide audit assistance for the National Heritage Trust and the National Action Plan for Salinity and Water Control Performance Audit."	="Australian National Audit Office (ANAO)"	17-Mar-08	="Audit services"	31-May-07	30-Nov-07	20000.00	=""	="The Hedging Company Pty Ltd"	17-Mar-08 06:05 PM	

+="CN66022"	"oscilloscope 6625-01-339-2391 CALIBRATED CONDITION QTY 7"	="Defence Materiel Organisation"	18-Mar-08	="Electrical equipment and components and supplies"	18-Mar-08	07-May-08	30459.66	=""	="MILSPEC SERVICES"	18-Mar-08 07:12 AM	

+="CN66023"	"Purchase of NSN's 5965-99-878-8240 & 5965-99-957-8754"	="Defence Materiel Organisation"	18-Mar-08	="Telecommunications cable"	17-Oct-07	11-Mar-08	29924.00	=""	="Eylex Pty Ltd"	18-Mar-08 07:41 AM	

+="CN66024"	"Photocopier Purchase"	="Australian Federal Police"	18-Mar-08	="Photocopiers"	07-Mar-08	31-Mar-08	13639.00	="15-2006"	="Ricoh Australia"	18-Mar-08 08:09 AM	

+="CN66025"	"Internal Audit of fraud and anti corruption processes and controls"	="Australian Federal Police"	18-Mar-08	="Accounting and auditing"	12-Mar-08	30-Jun-08	33462.00	="01-2005"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	18-Mar-08 08:25 AM	

+="CN66026"	"Internal Audit of the AFP roster based payroll payments management"	="Australian Federal Police"	18-Mar-08	="Accounting and auditing"	12-Mar-08	30-Jun-08	18755.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	18-Mar-08 08:50 AM	

+="CN66027"	"Internal Audit of Human Source Management"	="Australian Federal Police"	18-Mar-08	="Accounting and auditing"	11-Mar-08	30-Jun-08	19605.00	="Jan-05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	18-Mar-08 08:59 AM	

+="CN66030"	" Purchase of Laptops "	="CRS Australia"	18-Mar-08	="Computers"	18-Feb-08	07-Apr-08	83953.00	=""	="Hewlett Packard Australia Pty Ltd"	18-Mar-08 09:43 AM	

+="CN66035"	" CRIMPING TOOL "	="Defence Materiel Organisation"	18-Mar-08	="Cutting and crimping and punching tools"	17-Mar-08	30-Apr-08	13281.67	=""	="SPECIALISED FORCE"	18-Mar-08 10:18 AM	

+="CN66034"	"Design of concept plans for the capital works program to be undertaken at Australian Airports"	="Australian Federal Police"	18-Mar-08	="Computer aided design CAD software"	01-Jul-06	30-Jun-07	368950.41	=""	="Manteena Pty Ltd"	18-Mar-08 10:18 AM	

+="CN66037"	"Provision of a functional design brief for capital works at Australian aiports"	="Australian Federal Police"	18-Mar-08	="Computer aided design CAD software"	01-Jul-06	30-Dec-07	413715.50	=""	="Manteena Pty Ltd"	18-Mar-08 10:32 AM	

+="CN66038"	"Provision for printing & mailing services in relation to the SPPap membership card and welcome letter"	="Comsuper"	18-Mar-08	="Standard newsprint"	18-Nov-07	11-Nov-08	75000.00	=""	="Cardserv"	18-Mar-08 10:38 AM	

+="CN20167"	"Lease of Coffee Machine and Supply of Coffee Beans. (GAPS ID: 1658785)"	="National Health and Medical Research Council"	18-Mar-08	="Management and Business Professionals and Administrative Services"	16-Mar-07	30-Jun-09	13000.00	=""	="COSMOREX COFFEE PTY LTD"	18-Mar-08 10:58 AM	

+="CN19164"	"Technical Writer to Develop Guidelines (GAPS ID: 1668414)"	="National Health and Medical Research Council"	18-Mar-08	="Management and Business Professionals and Administrative Services"	20-Apr-07	30-Jun-08	40850.00	=""	="AMPERSAND EDITORIAL & DESIGN"	18-Mar-08 11:01 AM	

+="CN66039-A1"	"Training - Integrated Quality Framework implementation."	="Australian Taxation Office"	18-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-09	86516.50	=""	="SAI Global Ltd"	18-Mar-08 11:03 AM	

+="CN66040"	"04/0341 - Extension #4 - Legal Services"	="Australian Customs and Border Protection Service"	18-Mar-08	="Legal services"	01-Jan-08	31-Dec-08	55000.00	=""	="Blake Dawson"	18-Mar-08 11:03 AM	

+="CN66042"	"04/0471 - Extension #1 - Cleaning Services"	="Australian Customs and Border Protection Service"	18-Mar-08	="Building cleaning services"	25-Oct-07	24-Oct-09	49454.41	=""	="Golf Cleaning Services Pty Ltd"	18-Mar-08 11:09 AM	

+="CN66043-A1"	"03/0212 - Supply of Staionery Products/Services"	="Australian Customs and Border Protection Service"	18-Mar-08	="Stationery"	01-Dec-07	30-Jun-08	280000.00	=""	="Moore Business Systems Australia Ltd Pty"	18-Mar-08 11:12 AM	

+="CN66044"	"05/0982 - Extension #2 - Helicopter Services"	="Australian Customs and Border Protection Service"	18-Mar-08	="Helicopter services"	01-Jul-07	30-Jun-08	222000.00	=""	="Whitsunday Helicopter Group Pty Ltd"	18-Mar-08 11:17 AM	

+="CN66045"	"Annual Report Design and Artwork Services"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	17-Oct-07	24-Oct-07	17270.00	="0708-472"	="Design Direction"	18-Mar-08 11:24 AM	

+="CN66046"	"Applications Configuration Management Database"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Software"	17-Oct-07	30-Nov-07	45785.30	="0708-381"	="Get Smart Consultancy Pty Ltd"	18-Mar-08 11:28 AM	

+="CN66048"	"Freight Services"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Transportation and Storage and Mail Services"	17-Oct-07	30-Nov-07	31829.60	="0708-435"	="Australian Air Express"	18-Mar-08 11:32 AM	

+="CN66052"	"Training in Certificate IV Government Program"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Education and Training Services"	18-Oct-07	21-Mar-08	36500.00	="0708-298"	="Wisdom Learning Pty Ltd"	18-Mar-08 11:39 AM	

+="CN66054-A5"	" Tax Technical Consultancy Services "	="Australian Taxation Office"	18-Mar-08	="Management advisory services"	11-Feb-08	30-Jun-12	500000.00	=""	="Wright Economics Inc"	18-Mar-08 11:41 AM	

+="CN66056"	"Advertising Services"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Advertising"	18-Oct-07	29-Oct-07	12674.05	="0708-491"	="HMA BLaze Pty Ltd"	18-Mar-08 11:45 AM	

+="CN66058-A1"	"Slipstream System Implementation and Support"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Business administration services"	18-Oct-07	30-Jun-08	114404.58	="0708-442"	="Dialog Information Technology"	18-Mar-08 11:49 AM	

+="CN66061"	"Consistent Assessment of Case Studies for the Fourth Edition of Your Home Technical Manual"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Management and Business Professionals and Administrative Services"	18-Oct-07	31-Oct-07	14410.00	="0708-226"	="Energy Partners"	18-Mar-08 11:53 AM	

+="CN66062"	"Advertising Recruitment Services"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Advertising"	18-Oct-07	30-Oct-07	59218.56	="0708-467"	="HMA Blaze Pty Ltd"	18-Mar-08 11:57 AM	

+="CN66064"	"Development of a MERI Capacity Building Training Kit"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Business administration services"	18-Oct-07	20-Jun-08	70400.00	="0708-393"	="Clear Horizon Consulting Pty Ltd"	18-Mar-08 12:01 PM	

+="CN66065"	"Development of a User's Guide for Performance Story Reporting"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Business administration services"	18-Oct-07	20-Jun-08	78100.00	="0708-394"	="Clear Horizon Consulting Pty Ltd"	18-Mar-08 12:05 PM	

+="CN66066"	"Development of a performance story report"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Business administration services"	18-Oct-07	20-Jun-08	70400.00	="0708-519"	="Tuna Blue Ta Bessen Consulting Services"	18-Mar-08 12:08 PM	

+="CN66069"	" MACK MAJOR ALT SERVICE INC CRANE/LISTED REPAIRS/WHEEL STUD MOD  "	="Department of Defence"	18-Mar-08	="Truck tractors"	12-Mar-08	28-Mar-08	14551.20	=""	="MACK AUSTRALIA"	18-Mar-08 12:47 PM	

+="CN66073"	"Supply of Diagnostic Reagents"	="National Blood Authority"	18-Mar-08	="Healthcare Services"	01-Jan-08	31-Jan-08	320208.79	=""	="CSL Ltd"	18-Mar-08 01:03 PM	

+="CN66076"	" VEHICLE REPAIRS "	="Department of Defence"	18-Mar-08	="Motor vehicles"	18-Mar-08	18-Apr-08	11440.00	=""	="MACK AUSTRALIA"	18-Mar-08 01:09 PM	

+="CN66077"	"Supply of Diagnostic Reagents"	="National Blood Authority"	18-Mar-08	="Healthcare Services"	01-Jan-08	31-Jan-08	144889.80	=""	="DiaMed Australia Pty Ltd"	18-Mar-08 01:09 PM	

+="CN66078"	"Supply of Diagnostic Reagents"	="National Blood Authority"	18-Mar-08	="Healthcare Services"	01-Jan-08	31-Jan-08	53036.50	=""	="Ortho-Clinical Diagnostics"	18-Mar-08 01:13 PM	

+="CN66079"	"Superannuation Actuarial and Associated Costs"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Human resources services"	18-Oct-07	07-Nov-07	16000.00	="0708-456"	="Department of Finance and Administration"	18-Mar-08 01:14 PM	

+="CN66080"	"The procurement is for the supply of Defined Blood Prodcuts"	="National Blood Authority"	18-Mar-08	="Healthcare Services"	01-Sep-07	30-Sep-07	110903.10	=""	="CSL Ltd"	18-Mar-08 01:18 PM	

+="CN66081"	"Cost recovery review-Water efficiency labelling and standards scheme"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Water resources development and oversight"	18-Oct-07	30-Nov-07	31220.75	="0708-043"	="KPMG"	18-Mar-08 01:22 PM	

+="CN66082"	"Good Health Great Future Program "	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Education and Training Services"	18-Oct-07	30-Nov-07	33968.00	="0708-458"	="Health Futures Pty Ltd"	18-Mar-08 01:26 PM	

+="CN66083"	" Supply and deliver 600EA of Tyre Pneumatic Vehicular 12.00R20 Omnitrack .                      "	="Defence Materiel Organisation"	18-Mar-08	="Heavy truck tyres"	13-Mar-08	31-Mar-08	391644.00	=""	="South Pacific Tyres"	18-Mar-08 01:30 PM	

+="CN66084-A3"	"Provision for Oracle Software update License and Support"	="Comsuper"	18-Mar-08	="Software"	01-Mar-08	30-Jun-12	3500000.00	=""	="Oracle"	18-Mar-08 01:46 PM	

+="CN66086"	"Standard Workstations"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Accommodation furniture"	18-Oct-07	08-Nov-07	15675.00	="0708-455"	="Workspace Commercial Furniture"	18-Mar-08 01:47 PM	

+="CN66087"	"MQ72AAU WebSphere Business Intergation 7 Attendees"	="Australian Taxation Office"	18-Mar-08	="Education and Training Services"	12-Mar-08	30-Apr-08	15840.00	=""	="IBM AUSTRALIA LIMITED"	18-Mar-08 01:50 PM	

+="CN66089"	"IT Contractor"	="Australian Taxation Office"	18-Mar-08	="Engineering and Research and Technology Based Services"	13-Mar-08	16-Sep-08	152737.20	=""	="TALENT INTERNATIONAL"	18-Mar-08 01:52 PM	

+="CN66088"	"Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Computer services"	19-Oct-07	30-Nov-07	18373.10	="0708-352"	="Toldark Pty Ltd"	18-Mar-08 01:52 PM	

+="CN66091"	"FACILITATION"	="Australian Taxation Office"	18-Mar-08	="Financial and Insurance Services"	27-Feb-08	11-Mar-08	23018.91	=""	="2ND ROAD"	18-Mar-08 01:55 PM	

+="CN66092"	"SECURITY"	="Australian Taxation Office"	18-Mar-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	10-Mar-08	13-Mar-08	13024.28	=""	="SNP SECURITY"	18-Mar-08 01:55 PM	

+="CN66093"	"RECRUITMENT"	="Australian Taxation Office"	18-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	14-Mar-08	32004.13	=""	="Hudson Global Resources (Aust) P/L"	18-Mar-08 01:57 PM	

+="CN66094"	"CAR HIRE"	="Australian Taxation Office"	18-Mar-08	="Transportation and Storage and Mail Services"	27-Feb-08	14-Mar-08	73859.80	=""	="LEASEPLAN AUSTRALIA LIMITED"	18-Mar-08 01:57 PM	

+="CN66095"	"IT Contractor"	="Australian Taxation Office"	18-Mar-08	="Engineering and Research and Technology Based Services"	05-Feb-08	06-Aug-08	106480.00	=""	="INFOSYS SOLUTIONS PTY LTD"	18-Mar-08 01:59 PM	

+="CN66096"	"CHAIRS"	="Australian Taxation Office"	18-Mar-08	="Furniture and Furnishings"	07-Mar-08	30-Apr-08	27898.84	=""	="STURDY COMPONENTS PTY LTD"	18-Mar-08 01:59 PM	

+="CN66097"	"IT Contractor"	="Australian Taxation Office"	18-Mar-08	="Engineering and Research and Technology Based Services"	14-Mar-08	01-Apr-08	200956.80	=""	="Professionals Online Pty Ltd"	18-Mar-08 02:02 PM	

+="CN66098"	"Specialist Omegamon Services"	="Australian Taxation Office"	18-Mar-08	="Engineering and Research and Technology Based Services"	12-Mar-08	30-Jun-08	189780.00	=""	="CPT GLOBAL LTD"	18-Mar-08 02:02 PM	

+="CN66085"	"Printed for Production, Storage and Distribution Services"	="Family Court of Australia"	18-Mar-08	="Distribution"	23-Mar-08	22-Mar-09	22000.00	=""	="Can Print"	18-Mar-08 02:17 PM	

+="CN66101"	"Administration of Ministerial Presentation Reimbursement of travel costs/board fees"	="Department of the Environment Water Heritage and the Arts"	18-Mar-08	="Management and Business Professionals and Administrative Services"	19-Oct-07	31-Oct-07	32751.24	="0708-354"	="Murujuga Aboriginal Corporation"	18-Mar-08 02:19 PM	

+="CN66102"	"Design of proposed building works at Australian Airpots"	="Australian Federal Police"	18-Mar-08	="Airport buildings"	01-Jul-06	30-Jun-07	566424.01	=""	="Manteena Pty Ltd"	18-Mar-08 02:23 PM	

+="CN66105"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	18-Mar-08	="Medical health associations"	12-Mar-08	12-Apr-08	26642.00	=""	="LR INSTRUMENTS P/L"	18-Mar-08 02:48 PM	

+="CN66106"	" Equipment  "	="Attorney-General's Department"	18-Mar-08	="Terminal services"	07-Feb-08	30-Jun-08	28833.75	=""	="Kaz Group Pty Limited"	18-Mar-08 02:48 PM	

+="CN66107"	"Adhesive film"	="Defence Materiel Organisation"	18-Mar-08	="Adhesives and sealants"	12-Dec-07	17-Mar-08	18459.32	=""	="Interturbine Advanced Composities"	18-Mar-08 02:48 PM	

+="CN66108"	" Equipment  "	="Attorney-General's Department"	18-Mar-08	="Terminal services"	07-Feb-08	30-Jun-08	24983.75	=""	="Kaz Group Pty Limited"	18-Mar-08 02:54 PM	

+="CN66112"	"Legal Services"	="Attorney-General's Department"	18-Mar-08	="Legal services"	08-Jan-08	28-Feb-08	10669.05	="06#195748DOC"	="Australian Government Solicitor"	18-Mar-08 03:18 PM	

+="CN66113"	"AFFF FIRE FIGHTING FOAM LIQUID. 200 X 200 LITRE DRUMS"	="Defence Materiel Organisation"	18-Mar-08	="Foaming agents"	18-Mar-08	31-Mar-08	288200.00	=""	="ANSUL DISTRIBUTION WAREHOUSE"	18-Mar-08 03:19 PM	

+="CN66114"	"Various Parts - ASLAV"	="Department of Defence"	18-Mar-08	="Armoured fighting vehicles"	17-Mar-08	23-Jul-08	31998.43	=""	="GENERAL DYNAMICS LAND SYSTEMS"	18-Mar-08 03:21 PM	

+="CN66115"	"Professional Development Packages for Cancer Professionals Phase Two"	="Cancer Australia"	18-Mar-08	="Healthcare Services"	19-Feb-07	01-Jun-08	2128500.00	=""	="The University of Sydney"	18-Mar-08 03:22 PM	

+="CN66116-A1"	"Computer IT equipment for fitout PO 31248"	="Australian Federal Police"	18-Mar-08	="Computer Equipment and Accessories"	13-Dec-07	31-Mar-08	57267.88	=""	="Avaya Australia Pty Ltd"	18-Mar-08 03:28 PM	

+="CN66117"	"Aluminium Ball Valves x 15"	="Defence Materiel Organisation"	18-Mar-08	="Ball valves"	12-Mar-08	31-May-08	13792.35	="FV8010"	="ASSOCIATED AIRCRAFT MANUFACTURING"	18-Mar-08 03:32 PM	

+="CN66119-A1"	"Provision of Library Print Materials"	="Australian Communications and Media Authority (ACMA)"	18-Mar-08	="Printing"	27-Feb-08	26-Apr-08	48850.99	="07/ACMA042"	="Sauce Design Pty Ltd"	18-Mar-08 03:38 PM	

+="CN66120"	"Netty's World Children's Club Print Materials"	="Australian Communications and Media Authority (ACMA)"	18-Mar-08	="Printing"	27-Feb-08	31-Mar-08	23595.00	=""	="Clemenger Tasmania Pty Ltd"	18-Mar-08 03:45 PM	

+="CN66122-A1"	"Computer IT equipment for fitout PO 31273"	="Australian Federal Police"	18-Mar-08	="Computer Equipment and Accessories"	13-Dec-07	31-Mar-08	48243.16	=""	="Avaya Australia Pty Ltd"	18-Mar-08 03:58 PM	

+="CN66125"	"CanNet National Support and Evaluation Service"	="Cancer Australia"	18-Mar-08	="Healthcare Services"	29-Jun-07	01-Jun-08	278100.00	=""	="Siggins Miller"	18-Mar-08 04:01 PM	

+="CN66127"	"Contract variation - CanNET National Support and Evaluation Service"	="Cancer Australia"	18-Mar-08	="Healthcare Services"	29-Jun-07	01-Jun-09	354900.00	=""	="Siggins Miller"	18-Mar-08 04:07 PM	

+="CN66128-A1"	"Computer IT equipment for fitout PO 31714"	="Australian Federal Police"	18-Mar-08	="Computer Equipment and Accessories"	08-Jan-08	31-Mar-08	118747.21	=""	="Avaya Australia Pty Ltd"	18-Mar-08 04:08 PM	

+="CN66121"	"Education Consultancy to Inform and Guide Development of Internet Safety 'Schools Kit'"	="Australian Communications and Media Authority (ACMA)"	18-Mar-08	="Education and Training Services"	13-Mar-08	12-Jun-08	44129.80	=""	="Delphian eLearning Pty Ltd"	18-Mar-08 04:09 PM	

+="CN66129"	"Reference Group Meetings for Adolescnet and Youth cancers, prostrate cancer and gynaecological."	="Cancer Australia"	18-Mar-08	="Comprehensive health services"	28-Jan-07	13-Jun-07	10500.00	=""	="Carla Cranny & Associates"	18-Mar-08 04:12 PM	

+="CN66130-A1"	"Temporary Employee for M&EP Section"	="Australian Communications and Media Authority (ACMA)"	18-Mar-08	="Temporary personnel services"	14-Mar-08	27-Jun-08	36000.00	="07/ACMA062"	="The Publicity Agency"	18-Mar-08 04:15 PM	

+="CN66132-A1"	"Provision for Acountant"	="Comsuper"	18-Mar-08	="Human resources services"	11-Mar-08	30-Jun-08	91585.00	=""	="Maximus Solutions"	18-Mar-08 04:16 PM	

+="CN66131"	"Delphi Process for Development of clincial guidelines recommendations."	="Cancer Australia"	18-Mar-08	="Healthcare Services"	28-Feb-08	30-Jun-08	63855.00	=""	="Consan Pty Ltd"	18-Mar-08 04:16 PM	

+="CN66134-A3"	"Provision for Guarding Services"	="Comsuper"	18-Mar-08	="Security guard services"	28-Feb-08	27-Feb-12	985111.21	=""	="Sydney Night Patrol & Inquiry Co Pty Ltd"	18-Mar-08 04:21 PM	

+="CN66135"	"Development and Implementation of CA"	="Cancer Australia"	18-Mar-08	="Healthcare Services"	26-Feb-08	30-Jun-09	296540.00	=""	="Wollongong University"	18-Mar-08 04:23 PM	

+="CN66136"	"Provision for variation to contract for Business Analyst"	="Comsuper"	18-Mar-08	="Human resources services"	01-Feb-07	31-Mar-08	139400.00	=""	="Compas Pty Ltd"	18-Mar-08 04:24 PM	

+="CN66137"	" Brush clothes "	="Department of Defence"	18-Mar-08	="Brushes"	17-Mar-08	18-Apr-08	19600.00	=""	="P.F.Brady Pty Ltd"	18-Mar-08 04:27 PM	

+="CN66139"	"Recruitment Services"	="Australian Taxation Office"	18-Mar-08	="Recruitment services"	31-Jan-08	01-Apr-08	22606.44	="06.042"	="DFP Recruitment Services Pty Ltd"	18-Mar-08 04:53 PM	

+="CN66140"	"Various Parts - ASLAV"	="Department of Defence"	19-Mar-08	="Armoured fighting vehicles"	18-Mar-08	23-Jul-08	37639.49	=""	="GENERAL DYNAMICS LAND SYSTEMS"	19-Mar-08 07:42 AM	

+="CN66141-A1"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	19-Mar-08	="Aircraft"	18-Mar-08	19-May-08	57264.87	=""	="Sikorsky Aircraft Australia LTD"	19-Mar-08 07:58 AM	

+="CN66142"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	19-Mar-08	="Aircraft"	18-Mar-08	19-May-08	11575.96	=""	="Sikorsky Aircraft Australia LTD"	19-Mar-08 08:03 AM	

+="CN66143-A1"	"Provision of services in relation to business analysis activities for AFP"	="Australian Federal Police"	19-Mar-08	="Computer services"	30-Jan-06	12-Mar-08	319457.76	=""	="Cordelta Pty. Ltd."	19-Mar-08 08:30 AM	

+="CN66144"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Mar-08	18-Apr-08	10221.21	=""	="Rover Australia"	19-Mar-08 09:09 AM	

+="CN66145-A2"	" Project Management of Capital Works - Canberra ACT "	="Australian Federal Police"	19-Mar-08	="Project management"	10-Apr-08	29-Jun-08	59018.00	=""	="Manteena Pty Ltd"	19-Mar-08 09:25 AM	

+="CN66147"	"NSO Health Check"	="Family Court of Australia"	19-Mar-08	="Business intelligence consulting services"	06-Feb-08	05-Apr-08	110000.00	=""	="PricewarehouseCoopers"	19-Mar-08 09:36 AM	

+="CN66151-A1"	" Project management of capital works Headquarters Canberra "	="Australian Federal Police"	19-Mar-08	="Project management"	07-Feb-08	30-Oct-08	263908.70	=""	="Manteena Pty Ltd"	19-Mar-08 09:44 AM	

+="CN66154"	" MEDICAL CONSUMABLE "	="Defence Materiel Organisation"	19-Mar-08	="Medical Equipment and Accessories and Supplies"	04-Mar-08	04-Apr-08	26094.25	="N/A"	="BAXTER HEALTHCARE PTY LTD"	19-Mar-08 10:00 AM	

+="CN66156"	" Trainging Services of a PhD Student  "	="Department of the Environment Water Heritage and the Arts"	19-Mar-08	="Education and Training Services"	22-Oct-07	30-May-08	33000.00	="0708-093"	="Queensland University of Technology"	19-Mar-08 10:07 AM	

+="CN66158"	"APCM 56.04 - VP076 National Office Official Launch filming and DVD production."	="Australian Taxation Office"	19-Mar-08	="Video production services"	12-Mar-08	22-Apr-08	12917.30	=""	="Bearcage Pty Ltd T/A Bearcage Productions"	19-Mar-08 10:16 AM	

+="CN66162"	"Cabling equiptment for fitout PO 31246"	="Australian Federal Police"	19-Mar-08	="Project management"	13-Dec-07	31-Mar-08	75126.73	=""	="Absolute Cabling Systems Pty Ltd"	19-Mar-08 10:24 AM	

+="CN66161"	"Development of a GP Learning Module"	="Cancer Australia"	19-Mar-08	="Healthcare Services"	05-Mar-08	30-Jun-08	42900.00	=""	="The Royal Australian College of General Practitioners"	19-Mar-08 10:25 AM	

+="CN66163-A1"	"Antenna"	="Defence Materiel Organisation"	19-Mar-08	="Electrical wire and cable and harness"	18-Mar-08	13-May-08	13090.00	=""	="A & D INTERNATIONAL PTY LTD"	19-Mar-08 10:28 AM	

+="CN66164"	"Cabling equiptment for fitout PO 31243"	="Australian Federal Police"	19-Mar-08	="Project management"	13-Dec-07	13-Mar-08	77398.81	=""	="Absolute Cabling Systems Pty Ltd"	19-Mar-08 10:29 AM	

+="CN66167"	"Cabling equiptment for fitout PO 31274"	="Australian Federal Police"	19-Mar-08	="Project management"	13-Dec-07	13-Mar-08	59609.12	=""	="Absolute Cabling Systems Pty Ltd"	19-Mar-08 10:35 AM	

+="CN66166-A1"	"Aviation Spares, Overhaul of Rotor Shaft Unit S/N M1315"	="Defence Materiel Organisation"	19-Mar-08	="Military rotary wing aircraft"	04-Jul-07	29-Aug-08	51209.95	=""	="Australian Aerospace"	19-Mar-08 10:36 AM	

+="CN66168"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	19-Mar-08	="Medical health associations"	12-Mar-08	12-Apr-08	14332.25	=""	="CLIFFORD HALLAM HEALTHCARE"	19-Mar-08 10:38 AM	

+="CN66169"	" Financial consulting "	="Cancer Australia"	19-Mar-08	="Business and corporate management consultation services"	26-Jul-07	25-Jul-08	147087.00	=""	="Resolution Consulting"	19-Mar-08 10:39 AM	

+="CN66171"	"FLUID, PURGING"	="Defence Materiel Organisation"	19-Mar-08	="Cultures and fluids"	17-Dec-07	15-Feb-08	14876.40	=""	="AEROSPACE COMPOSITES"	19-Mar-08 10:53 AM	

+="CN66172"	"Chair Services for Cancer Australia Audit Committee - Glenys Roper"	="Cancer Australia"	19-Mar-08	="Business and corporate management consultation services"	27-Aug-07	26-Aug-10	66000.00	=""	="Roex Management"	19-Mar-08 10:54 AM	

+="CN66173"	"VARIOUS DENTAL CONSUMABLE ITEMS"	="Defence Materiel Organisation"	19-Mar-08	="Dental associations"	05-Mar-08	21-Apr-08	30580.24	=""	="HENRY SCHEIN HALAS"	19-Mar-08 10:58 AM	

+="CN66174-A1"	"Provision of Cleaning Services to the Melbourne West Region of CRS Australia."	="CRS Australia"	19-Mar-08	="General building and office cleaning and maintenance services"	01-Apr-08	31-Aug-09	43502.13	=""	="Rural and Urban Property Developements trading as Ambassador Property Services"	19-Mar-08 11:02 AM	

+="CN66175"	"Services for Cancer Australia Audit Committee - Di Fielding"	="Cancer Australia"	19-Mar-08	="Business and corporate management consultation services"	23-Aug-07	22-Aug-10	19800.00	=""	="Robinson Huntley & Associates"	19-Mar-08 11:03 AM	

+="CN66177"	" SUPPLY OF REPAIR PARTS "	="Defence Materiel Organisation"	19-Mar-08	="Heavy construction machinery and equipment"	18-Mar-08	18-Apr-08	15168.01	=""	="THALES AUSTRALIA"	19-Mar-08 11:09 AM	

+="CN66178"	"VARIOUS MEDICAL CONSUMABLE ITEMS"	="Defence Materiel Organisation"	19-Mar-08	="Medical health associations"	07-Mar-08	23-Apr-08	30301.15	=""	="JOHNSON & JOHNSON MEDICAL"	19-Mar-08 11:11 AM	

+="CN66180"	"BioMark PCR System  NA"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	01-Feb-08	01-Feb-09	150000.00	=""	="FLUIDIGM CORPORATION"	19-Mar-08 11:14 AM	

+="CN66181"	"DandB Credit Request"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Statistics"	01-Feb-08	29-Feb-08	36028.00	=""	="DUN and BRADSTREET (AUSTRALIA) PTY LTD"	19-Mar-08 11:14 AM	

+="CN66182-A1"	"Provision of Hardware to Host the Dept Oracle Databa"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer Equipment and Accessories"	01-Mar-08	30-Jun-08	703747.84	=""	="FRONTLINE SYSTEMS AUSTRALIA"	19-Mar-08 11:14 AM	

+="CN66183"	"Professional services- NTM Project HBA Consulting DH11.3.08"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	03-Feb-08	11-Apr-08	31680.00	=""	="HBA CONSULTING"	19-Mar-08 11:14 AM	

+="CN66184"	"Helium 48 Gas Supagas Feb08 20147-2-2008,ks"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory supplies and fixtures"	05-Mar-08	04-Apr-08	28908.00	=""	="SUPAGAS"	19-Mar-08 11:14 AM	

+="CN66185"	"2nd Review of the Australian Stem Cell Centre FINREG10/2008-"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	06-Jan-09	324410.00	=""	="GROWING YOUR KNOWLEDGE PTY LTD"	19-Mar-08 11:14 AM	

+="CN66186"	"Develop Business Case for ABN Project  C07/13545"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	29-Feb-08	199190.28	=""	="ERNST and YOUNG (CANBERRA)"	19-Mar-08 11:14 AM	

+="CN66187"	"BAX Q7 Automated PCR  Applied Biosystems"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	07-Jan-08	29-Feb-08	57750.00	=""	="APPLIED BIOSYSTEMS PTY LTD"	19-Mar-08 11:15 AM	

+="CN66188"	"Early General News: Commercial Ready"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Advertising"	07-Mar-08	29-Mar-08	10173.24	=""	="HMA BLAZE PTY LTD"	19-Mar-08 11:15 AM	

+="CN66189"	"Statistical consult - concluding stages experimental nat bio"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	50000.00	=""	="PATTINSON CONSULTING"	19-Mar-08 11:15 AM	

+="CN66190"	"Forensic It Assistance Fraud Investigation - #2320 C07/13666"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	28-Mar-08	20000.00	=""	="ERNST and YOUNG (CANBERRA)"	19-Mar-08 11:15 AM	

+="CN66191"	"4 x VMware Servers"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Electronic Components and Supplies"	07-Mar-08	31-Mar-08	43989.76	="ATM08/945"	="DATAFLEX PTY LTD"	19-Mar-08 11:15 AM	

+="CN66192"	"Provision of Maintenance Services for the Data Centre Air Co"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Building and Construction and Maintenance Services"	10-Dec-07	29-Feb-08	10890.00	=""	="EMERSON NETWORK POWER GLOBAL SERVICES"	19-Mar-08 11:15 AM	

+="CN66193"	"4 x High-end VMware servers"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Electronic Components and Supplies"	06-Mar-08	31-Mar-08	54102.72	="ATM08/946"	="DATAFLEX PTY LTD"	19-Mar-08 11:15 AM	

+="CN66194"	"Dell Latitude D430 (XP) Laptop TP4857 C05/06800"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer Equipment and Accessories"	10-Jan-08	31-Jan-08	20804.67	=""	="DELL AUSTRALIA"	19-Mar-08 11:15 AM	

+="CN66195"	"Advertising - Weekend Australian  - The Daily Advertiser,  Illawarra Mercury"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Published Products"	06-Mar-08	06-Mar-08	15309.52	="ATM07/818"	="HMA BLAZE PTY LTD"	19-Mar-08 11:15 AM	

+="CN66196"	"cONTRACTOR - FOR THE PERIOD 31/3/08 TO 30/6/08 c"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer services"	10-Mar-08	30-Jun-08	72000.00	=""	="FACE2FACE RECRUITMENT PTY LTD"	19-Mar-08 11:15 AM	

+="CN66197"	"dc DIVIDER TOROID SHIELDS WITH OPTION bht BEIJING CHINA , eU"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	11-Mar-08	22-Apr-08	13877.40	=""	="BHT MECHANICAL ELECTRICAL INST CO LTD"	19-Mar-08 11:16 AM	

+="CN66198"	"IBM x61 T7250 Thinkpad"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Office Equipment and Accessories and Supplies"	06-Mar-08	06-Mar-08	13793.62	="ATM07/569"	="DATAFLEX PTY LTD"	19-Mar-08 11:16 AM	

+="CN66200"	"Financial consultancy services for Contact Centre Procurement Project"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-May-08	30000.00	="DCON/05/53"	="WALTER TURNBULL"	19-Mar-08 11:16 AM	

+="CN66199"	"lABELLED sURROGATE  n/a"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Chemicals including Bio Chemicals and Gas Materials"	11-Mar-08	30-Jun-08	12240.00	=""	="WELLINGTON LABORATORIES INC"	19-Mar-08 11:16 AM	

+="CN66201"	"HP Hardware Maintenance Onsite Support C07/07028"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer services"	11-Mar-08	30-Jun-08	13734.26	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	19-Mar-08 11:16 AM	

+="CN66202"	"SAP Technical Services panel tender"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Public Utilities and Public Sector Related Services"	03-Mar-08	30-Jun-08	31350.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Mar-08 11:16 AM	

+="CN66203"	"dISPOSABLE cOLUMNS  n/a"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Measuring and observing and testing instruments"	11-Mar-08	30-Jun-08	31630.00	=""	="FLUID MANAGEMENT SYSTEMS INC"	19-Mar-08 11:16 AM	

+="CN66204"	"Specialist advise on Spectrum Regulation"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Jun-08	50000.01	="DCON/08/06"	="Luther Geoff"	19-Mar-08 11:16 AM	

+="CN66205"	"eRecruitment Design Workshop Award Interpreter Module C07/07"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Human resources services"	11-Mar-08	31-Mar-08	14850.00	=""	="AURION CORPORATION P/L"	19-Mar-08 11:16 AM	

+="CN66206"	"Capacitance manometer  LO12/03/08"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	12-Mar-08	12-Apr-08	12170.95	=""	="JOHN MORRIS SCIENTIFIC P/L"	19-Mar-08 11:16 AM	

+="CN66207"	"Procurement - e-recruitment"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Public Utilities and Public Sector Related Services"	26-Feb-08	30-Jun-08	16500.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Mar-08 11:16 AM	

+="CN66208"	"2nd Review of the Australian Stem Cell Centre Inno Div PO Fo"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	19-Sep-08	24750.00	=""	="MACDONALD, GRAHAM"	19-Mar-08 11:16 AM	

+="CN66209"	"Positions vacant advertising"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Public Utilities and Public Sector Related Services"	26-Feb-08	07-Mar-08	15079.68	="ATM08/933"	="HMA BLAZE PTY LTD"	19-Mar-08 11:16 AM	

+="CN66210"	"Debt Recovery"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	12-Mar-08	30-Jun-08	11877.73	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:16 AM	

+="CN66212"	"Debt Recovery"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	12-Mar-08	30-Jun-08	14830.70	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:17 AM	

+="CN66211"	"Removalists for arts staff"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Transportation and Storage and Mail Services"	16-Jan-08	11-Mar-08	43477.50	="ATM07/444"	="BALFRAN REMOVALS"	19-Mar-08 11:17 AM	

+="CN66213-A1"	"Deveolpment of best practice local government plan guidelines for broadband deployment in greenfield"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Information Technology Broadcasting and Telecommunications"	28-Feb-08	30-May-08	36575.00	="DCON/07/1"	="Eckermann & Associates"	19-Mar-08 11:17 AM	

+="CN66214"	"IIF Round 3"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	12-Mar-08	30-Jun-08	36797.20	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:17 AM	

+="CN66215"	"Design for Refurb of Kitchen 38 Syd"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Mar-08	30-Jun-08	19580.00	="DCON/05/225"	="INTERIORS AUSTRALIA"	19-Mar-08 11:17 AM	

+="CN66216"	"Universal counter and delay generator  ."	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Feb-08	12-Mar-08	15067.46	=""	="SCIENTIFIC DEVICES AUSTRALIA PTY LTD"	19-Mar-08 11:17 AM	

+="CN66217"	"(Reading Room) Information Artitecture Re-Development"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	07-Mar-08	17930.00	="DCON/07/226"	="Reading Room"	19-Mar-08 11:17 AM	

+="CN66218"	"Consultation fees"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	22-Feb-08	22000.00	=""	="WATERFIELD CONSULTING"	19-Mar-08 11:17 AM	

+="CN66219"	"Printing Portfolio Additional Estimates Statements"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Feb-08	25-Feb-08	11463.10	="DCON/07/4"	="NATIONAL CAPITAL PRINTING"	19-Mar-08 11:17 AM	

+="CN66220"	"Consultation fees"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Education and Training Services"	13-Feb-08	22-Feb-08	119062.87	=""	="THE NOUS GROUP P/L"	19-Mar-08 11:17 AM	

+="CN66221"	"AGS Sydney"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	13-Mar-08	30-Jun-08	13737.71	=""	="AUST GOVT SOLICITOR (VIC)"	19-Mar-08 11:17 AM	

+="CN66223"	"AGS Sydney"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	13-Mar-08	30-Jun-08	29553.55	=""	="AUST GOVT SOLICITOR (VIC)"	19-Mar-08 11:17 AM	

+="CN66224"	"Client Survey Finance & Budgets,Corp & Business"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Mar-08	35082.00	="ATM07/459"	="Wallis Research Group Pty Ltd"	19-Mar-08 11:17 AM	

+="CN66225"	"Vacuum System  na"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	14-Mar-08	30-Jun-08	26400.00	=""	="ALLTECH ASSOCIATES AUST P/L"	19-Mar-08 11:17 AM	

+="CN66226-A1"	"Strengthening SPAM legislation, enforcement & coop regimes in Niue,Samoa & Vanuatu"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	23-May-08	129772.79	="CCR/07/3042"	="Galexia"	19-Mar-08 11:18 AM	

+="CN66227"	"nITROGEN gENERATOR  NA"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	14-Mar-08	30-Jun-08	64240.00	=""	="ALLTECH ASSOCIATES AUST P/L"	19-Mar-08 11:18 AM	

+="CN66228"	"Advice-procurement of a call and contact centre contractor/panel"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Public Utilities and Public Sector Related Services"	06-Mar-08	30-Jun-08	11000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Mar-08 11:18 AM	

+="CN66229"	"AIR GENERATOR  NA"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	14-Mar-08	30-Jun-08	69036.00	=""	="ALLTECH ASSOCIATES AUST P/L"	19-Mar-08 11:18 AM	

+="CN66230-A1"	"VP 148- On call support for Min Office"	="Department of Broadband Communications and the Digital Economy"	19-Mar-08	="Management and Business Professionals and Administrative Services"	13-Sep-03	13-Apr-10	68500.00	="DCON/03/63"	="KAZ Group Pty Ltd"	19-Mar-08 11:18 AM	

+="CN66231"	"Preparation of NMI 2008 - 2011 Strategic Plan ks"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	31-Mar-08	27500.00	=""	="DGR CONSULTING PTY LTD"	19-Mar-08 11:18 AM	

+="CN66233"	"Provide editing services"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	31-May-08	15000.00	=""	="FINE EDITS AND COMMUNICATION"	19-Mar-08 11:18 AM	

+="CN66236"	"Internal Audit - Fraud Unit Walter Turnbull 07/04013"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	29900.00	=""	="WALTER and TURNBULL"	19-Mar-08 11:18 AM	

+="CN66237"	"Serial ports,output,antenna and amplifier GlobalPos Qt# 1110 R"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	17-Jan-08	15-Feb-08	24888.60	=""	="GLOBALPOS PTY LTD"	19-Mar-08 11:18 AM	

+="CN66238"	"HMA Blaze - Branding '08 Pre-bill for Commercial Ready"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Advertising"	17-Mar-08	30-Apr-08	154126.19	=""	="HMA BLAZE PTY LTD"	19-Mar-08 11:18 AM	

+="CN66240"	"Early General News"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Advertising"	17-Mar-08	31-Mar-08	48637.51	=""	="HMA BLAZE PTY LTD"	19-Mar-08 11:18 AM	

+="CN66241"	"Early General News RandD 175% Tax"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Advertising"	17-Mar-08	31-Mar-08	56041.48	=""	="HMA BLAZE PTY LTD"	19-Mar-08 11:19 AM	

+="CN66242"	"Provision of Construction Advice 341 George Street NSW Prope"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Professional engineering services"	18-Feb-08	29-Feb-08	23916.40	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	19-Mar-08 11:19 AM	

+="CN66243"	"Provision of Construction Advice 341 George Street NSW Prope"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Professional engineering services"	18-Feb-08	29-Feb-08	48915.87	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	19-Mar-08 11:19 AM	

+="CN66244"	"Customer Satisfaction Surveys"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-11	373617.00	=""	="ORIMA RESEARCH PTY LTD"	19-Mar-08 11:19 AM	

+="CN66245"	"Core and Floor Switches for the New Brisbane State offices C"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer Equipment and Accessories"	18-Jan-08	29-Feb-08	38957.89	=""	="GETRONICS (AUSTRALIA) PTY LTD"	19-Mar-08 11:19 AM	

+="CN66246"	"Core and Floor Switches for the New AusIndustry Office in Sy"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer Equipment and Accessories"	18-Jan-08	29-Feb-08	54693.55	=""	="GETRONICS (AUSTRALIA) PTY LTD"	19-Mar-08 11:19 AM	

+="CN66247"	"ICT Graduate Training for 2008 FINREG10/2008-112 C06/11380"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Education and Training Services"	18-Mar-08	31-Dec-08	27050.00	=""	="INTERACTION CONSULTING GROUP"	19-Mar-08 11:20 AM	

+="CN66248"	"Legal Fee Fitout Work Port Melb  N/A"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	19-Feb-08	30-Jun-08	12683.00	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:20 AM	

+="CN66249"	"CONSULTANCY  SERVICES FOR A REVIEW OF THE AUTOMOTIVE COMPETI"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	17500.00	=""	="WALTER and TURNBULL"	19-Mar-08 11:20 AM	

+="CN66250"	"Paroscientific pressure transducer Biolab LO20/2/08"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	20-Feb-08	15-Mar-08	11398.20	=""	="BIOLAB (AUST) PTY LTD"	19-Mar-08 11:20 AM	

+="CN66251"	"Div Office Writing for the APS course"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	29-Feb-08	15360.00	=""	="RUSHWORTH CONSULTANCY PTY LTD"	19-Mar-08 11:20 AM	

+="CN66252"	"Dionex ASE  na"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	20-Feb-08	30-Apr-08	90607.00	=""	="DIONEX PTY LTD"	19-Mar-08 11:20 AM	

+="CN66253"	"IIF Round 3"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	20-Feb-08	30-Jun-08	64777.90	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:20 AM	

+="CN66254"	"Boom Lift Working Platform Force Corp NMI 15/02/08, ks"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	21-Feb-08	03-Mar-08	56870.00	=""	="FORCE CORP PTY LTD"	19-Mar-08 11:20 AM	

+="CN66255"	"JLLasalle Facilities Management Fees for Feb 2008 2100069843"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	14-Mar-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	19-Mar-08 11:21 AM	

+="CN66256"	"A Mechanical Dry Scroll pump  QT# QID005310, KS"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	21-Feb-08	21-Mar-08	11815.00	=""	="KURT J LESKER COMPANY"	19-Mar-08 11:21 AM	

+="CN66257"	"Pacific 2008 Maritime Exposition"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Business administration services"	21-Feb-08	29-Feb-08	20000.00	=""	="DEPARTMENT OF DEFENCE"	19-Mar-08 11:21 AM	

+="CN66258"	"New Floor Switches for the New Invest Australia Office in Sy"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Computer Equipment and Accessories"	21-Jan-08	29-Feb-08	46875.67	=""	="GETRONICS (AUSTRALIA) PTY LTD"	19-Mar-08 11:21 AM	

+="CN66259"	"Additional Managed PKI for SSL Global (Premium) Certificate"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Software"	22-Feb-08	31-Mar-08	12540.00	=""	="VERISIGN AUSTRALIA PTY LTD"	19-Mar-08 11:21 AM	

+="CN66260"	"Clarke-Hess 5500-2 configured for Master Operation in a Mast"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Laboratory and scientific equipment"	26-Feb-08	15-May-08	24530.00	=""	="CLARKE HESS COMMUNICATION RESEARCH CORP"	19-Mar-08 11:21 AM	

+="CN66261"	"VCP1"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Legal services"	26-Feb-08	30-Jun-08	18255.60	=""	="MALLESONS STEPHEN JAQUES"	19-Mar-08 11:21 AM	

+="CN66263"	"Austender 2 process, design workshops and bank reconciliation"	="Department of Innovation Industry Science and Research"	19-Mar-08	="Accounting and auditing"	27-Feb-08	30-Apr-08	42807.60	=""	="TECHNOLOGY ONE PTY LTD"	19-Mar-08 11:21 AM	

+="CN66264"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	19-Mar-08	="Aircraft"	18-Mar-08	19-May-08	25547.35	=""	="Sikorsky Aircraft Australia LTD"	19-Mar-08 11:23 AM	

+="CN66265-A1"	"Methodology for verification and mapping of business outcomes"	="Centrelink"	19-Mar-08	="Public administration and finance services"	16-Jan-08	27-Jun-08	38500.00	=""	="National ICT Australia Limited"	19-Mar-08 11:24 AM	

+="CN66274-A1"	"Temporary Personnel"	="Australian Electoral Commission"	19-Mar-08	="Temporary personnel services"	01-Sep-06	30-Jun-09	79833.60	="AEC06/019"	="GMT Canberra Pty Ltd"	19-Mar-08 11:31 AM	

+="CN66275"	"Temporary Personnel"	="Australian Electoral Commission"	19-Mar-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	56320.00	="AEC06/019"	="Peoplebank Australia Ltd"	19-Mar-08 11:37 AM	

+="CN66278-A2"	"Printing of Certified Lists"	="Australian Electoral Commission"	19-Mar-08	="Industrial printing services"	02-Aug-07	02-Mar-11	118777.88	="AEC06/062"	="Computershare - Permail"	19-Mar-08 11:46 AM	

+="CN66281-A1"	"Cabling equiptment for fitout PO 31253"	="Australian Federal Police"	19-Mar-08	="Project management"	12-Dec-07	31-Mar-08	32075.34	=""	="Absolute Cabling Systems Pty Ltd"	19-Mar-08 11:49 AM	

+="CN66284-A1"	" Supply and installation of data cabling and computer hardware "	="Australian Federal Police"	19-Mar-08	="Computer Equipment and Accessories"	08-Jan-08	31-Mar-08	83328.31	="RFT 37-2005"	="Absolute Cabling Systems Pty Ltd"	19-Mar-08 12:41 PM	

+="CN66286"	"Project management for the Design, Contract administration and construction of the Luganville police station"	="Australian Federal Police"	19-Mar-08	="Project management"	28-Feb-08	31-Jul-08	57380.00	=""	="Kramer"	19-Mar-08 01:02 PM	

+="CN66289"	"repairs to mog w/c arn-39083"	="Department of Defence"	19-Mar-08	="Motor vehicles"	19-Mar-08	25-Apr-08	42136.82	=""	="FB AUTO"	19-Mar-08 01:39 PM	

+="CN66290"	" Corporate medical services. This is connected with GAPS 1483626.  The initial contract started 10/3/2005 and ended 9/3/07 has been gazetted (GAPs 1483626) with the value $2.4M. When it takes option terms, the gazette has not amended since 10/3/07. The total value for this contract is $9,168,523. "	="Australian Taxation Office"	19-Mar-08	="Healthcare Services"	10-Mar-07	30-Jun-08	6768523.00	=""	="Health Services Australia"	19-Mar-08 01:49 PM	

+="CN66291"	"Motor vehicle parts."	="Department of Defence"	19-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Mar-08	19-Apr-08	10970.64	=""	="Mercedes Benz Aust. Pacific"	19-Mar-08 02:03 PM	

+="CN66292-A1"	"Provision of Cultural Awareness Training Services"	="Australian Federal Police"	19-Mar-08	="Work ethics or attitude training instructional materials"	11-Feb-08	12-Feb-08	18000.00	="65-2006"	="Monash University"	19-Mar-08 02:04 PM	

+="CN66293"	"Motor Vehicle Parts."	="Department of Defence"	19-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Mar-08	18-Apr-08	15117.85	=""	="Mercedes Benz Aust. Pacific"	19-Mar-08 02:07 PM	

+="CN66295"	"VARIOUS PHARMACEUTICAL ITEMS"	="Defence Materiel Organisation"	19-Mar-08	="Medical health associations"	05-Mar-08	11-Apr-08	16041.21	=""	="SYMBION PHARMACY SERVICES"	19-Mar-08 02:16 PM	

+="CN66297"	"motor vehicle parts"	="Department of Defence"	19-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Mar-08	19-Apr-10	10042.48	=""	="Volvo Commericial Vehicles"	19-Mar-08 02:37 PM	

+="CN66298"	"Community Representative for Technical Quality Review"	="Australian Taxation Office"	19-Mar-08	="Business and corporate management consultation services"	10-Mar-08	21-Mar-08	13260.00	=""	="Maurice Cashmere"	19-Mar-08 02:43 PM	

+="CN66299"	"Motor Vehicle Parts"	="Department of Defence"	19-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Mar-08	19-Apr-08	17687.67	=""	="Volvo Commerical Vehicles"	19-Mar-08 02:45 PM	

+="CN66304-A2"	"Conducting a review and providing a report on the AFP's national security opperations"	="Australian Federal Police"	19-Mar-08	="Data base reporting software"	22-Dec-07	26-Feb-08	33188.00	=""	="Ken Moroney"	19-Mar-08 03:22 PM	

+="CN66305"	"Development of operating model"	="CrimTrac"	19-Mar-08	="Strategic planning consultation services"	20-Feb-08	31-Mar-08	17149.00	=""	="Deloitte Touche Tohmatsu"	19-Mar-08 03:22 PM	

+="CN66306"	"Dynamic Purchasing Software"	="CrimTrac"	19-Mar-08	="Software"	26-Feb-08	30-Apr-08	60030.30	=""	="Dynamic Edge"	19-Mar-08 03:22 PM	

+="CN66308"	"Contractor Provider Service - System Developer"	="CrimTrac"	19-Mar-08	="Temporary technician staffing needs"	21-Aug-07	04-Mar-08	107536.00	="03/2006"	="Encore IT Services Pty Ltd"	19-Mar-08 03:23 PM	

+="CN66309"	"Install various servers"	="CrimTrac"	19-Mar-08	="Computer servers"	26-Feb-08	31-Mar-08	11654.50	=""	="Infront Systems Pty Ltd"	19-Mar-08 03:23 PM	

+="CN66310"	"Support and maintence BES server edition"	="CrimTrac"	19-Mar-08	="Computer servers"	01-Feb-08	01-Feb-08	33169.18	=""	="Borland Australia P/L"	19-Mar-08 03:23 PM	

+="CN66311"	"Software update license and support"	="CrimTrac"	19-Mar-08	="Software maintenance and support"	06-Feb-08	01-Mar-09	80783.67	=""	="Oracle Corporation Australia"	19-Mar-08 03:23 PM	

+="CN66312"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	19-Mar-08	="Aircraft"	17-Mar-08	19-May-08	25831.19	=""	="Sikorsky Aircraft Australia LTD"	19-Mar-08 03:32 PM	

+="CN66315-A2"	"Conduct a review and provide a report on the AFP's National Security operations"	="Australian Federal Police"	19-Mar-08	="Promotional material or annual reports"	22-Nov-07	26-Feb-08	52976.00	=""	="Sir Laurence Street"	19-Mar-08 03:51 PM	

+="CN66316"	"Repair of aircraft Parts"	="Defence Materiel Organisation"	19-Mar-08	="Aircraft"	17-Mar-08	19-May-08	59309.32	=""	="Sikorsky Aircraft Australia LTD"	19-Mar-08 04:01 PM	

+="CN66318"	"XCOM Software Licenses"	="Australian Taxation Office"	19-Mar-08	="Software"	25-Mar-08	24-Mar-11	13275.90	=""	="CA (Pacific) Pty Ltd"	19-Mar-08 04:15 PM	

+="CN66319"	"Speechwriting Services"	="Australian Taxation Office"	19-Mar-08	="Education and Training Services"	17-Mar-08	30-Jun-08	30000.00	=""	="Fred Brenchley Pty Ltd"	19-Mar-08 04:19 PM	

+="CN66320"	"Procurement of:  MANIFOLD,HYDRAULIC SYSTEM ACCESSORIES"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	29-Mar-08	13203.34	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66321"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	11-Feb-08	19-Mar-08	12002.74	=""	="WESTRAC EQUIPMENT Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66322"	"Procurement of:  MOUNT,RESILIENT,WEAPON SYSTEM"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	13-Feb-08	19-Mar-08	21339.00	=""	="MILSPEC SERVICES Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66323"	"Procurement of:  SORBENT,OIL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	04-Apr-08	54460.00	=""	="GLOBAL SPILL CONTROL Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66324"	"Procurement of:  RACK,STORAGE,SMALL ARMS"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	13-Feb-08	13-Apr-08	10600.00	=""	="MLEE Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66325"	"Procurement of:  LIGHT,CHEMILUMINESCENT;  LIGHT,CHEMILUMINESCENT;  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	01-Feb-08	19-Mar-08	70200.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66326"	"Procurement of:  O-RING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	01-Feb-08	19-Mar-08	30232.50	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Mar-08 05:49 PM	

+="CN66327"	"Procurement of:  PULLER KIT,UNIVERSAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	01-Feb-08	01-Jun-08	23530.80	=""	="J BLACKWOOD & SON Ltd"	19-Mar-08 05:49 PM	

+="CN66328"	"Procurement of:  MOTOR-TRANSMISSION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	04-Apr-08	84750.00	=""	="AIR CARE TECHNOLOGY Ltd"	19-Mar-08 05:50 PM	

+="CN66329"	"Procurement of:  GEARCASE-MOTOR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	10-Jan-09	66733.48	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66330"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	04-Jun-08	21480.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66331"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	22-Sep-08	142000.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66332"	"Procurement of:  CAMERA,TELEVISION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	22-Aug-08	104760.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66333"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	05-May-08	28906.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:50 PM	

+="CN66334"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	04-Jun-08	16450.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66335"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	14-Jul-08	18840.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66336"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	22-Sep-08	50830.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	19-Mar-08 05:50 PM	

+="CN66337"	"Procurement of:  CONDENSER,REFRIGERATION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	01-Jun-08	24590.00	=""	="COOKON CATERING EQUIPMENT"	19-Mar-08 05:51 PM	

+="CN66338"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	04-Jun-08	47736.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 05:51 PM	

+="CN66339"	"Procurement of:  GEARCASE-MOTOR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	11-Dec-08	66733.48	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66340"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	10-Jan-09	75259.88	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66341"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	19-Mar-08	13341.00	=""	="WESTERN ELECTRIC AUST Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66342"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  PRINTED CIRCUIT BOARD"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	04-Jun-08	13670.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66343"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	05-May-08	69281.48	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:51 PM	

+="CN66344"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	04-Jun-08	20480.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66345"	"Procurement of:  PUMP,HYDRAULIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	17-Jul-08	15776.94	=""	="PARKER HANNIFIN AUST Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66346"	"Procurement of:  PUMP,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	05-Nov-08	197550.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	19-Mar-08 05:51 PM	

+="CN66347"	"Procurement of:  FILTER,RADIO FREQUENCY INTERFERENCE;  RELAY,SOLID STATE;  VALVE,BALL;  VALVE,CHECK;  COMPOUND CASTING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	06-Nov-08	17981.73	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:52 PM	

+="CN66348"	"Procurement of:  GOVERNOR,DIESEL ENGINE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	06-May-08	309060.37	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:52 PM	

+="CN66349"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	28-Mar-08	55408.60	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Mar-08 05:52 PM	

+="CN66350"	"Procurement of:  FLOODLIGHT,ELECTRIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	11-Apr-08	44700.00	=""	="VERSALUX LIGHTING SYSTEMS"	19-Mar-08 05:52 PM	

+="CN66351"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	08-May-08	13396.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 05:52 PM	

+="CN66352"	"Procurement of:  COOLER UNIT,AIR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	06-Feb-08	09-Apr-08	19800.00	=""	="COLES REFRIGERATION AND AIR"	19-Mar-08 05:52 PM	

+="CN66353"	"Procurement of:  BRACKET FRONT;  BRACKET REAR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	08-Feb-08	02-May-08	21060.00	=""	="CROSSFIRE Pty Ltd"	19-Mar-08 05:52 PM	

+="CN66354"	"Procurement of:  KRILL LAMP,WHITE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	31-Mar-08	14375.00	=""	="FLEXI-GLOW LIGHTING"	19-Mar-08 05:52 PM	

+="CN66355"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,GATE;  PLUG,MACHINE THREAD"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	07-May-08	12659.64	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:52 PM	

+="CN66356"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	03-Nov-08	16943.60	=""	="THALES AUSTRALIA"	19-Mar-08 05:52 PM	

+="CN66357"	"Procurement of:  REGULATOR ASSEMBLY,VOLTAGE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	25-Aug-08	43008.00	=""	="SONARTECH ATLAS"	19-Mar-08 05:53 PM	

+="CN66358"	"Procurement of:  FAN,CIRCULATING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	30-Mar-08	10348.62	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:53 PM	

+="CN66359"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	19-Mar-08	28065.30	=""	="AUSTRALIAN TECHNOLOGY"	19-Mar-08 05:53 PM	

+="CN66360"	"Procurement of:  WASHER AIR REGULATO;  SEAT,MECHANICAL SEAL;  PARTS KIT,REGULATOR BREATHING GAS;  SEAT,HELICAL COMPRESSION SPRING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	08-Feb-08	08-Apr-08	19395.60	=""	="PREECE T D AND CO Pty Ltd"	19-Mar-08 05:53 PM	

+="CN66361"	"Procurement of:  LIGHT,WARNING;  GUIDE,CABLE;  PIN,STRAIGHT,HEADLESS;  CONNECTOR,PLUG,ELECTRICAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	08-Feb-08	17-Feb-09	54328.48	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Mar-08 05:53 PM	

+="CN66362"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	11-Feb-08	05-May-08	11300.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Mar-08 05:53 PM	

+="CN66363"	"Procurement of:  PUMP UNIT,ROTARY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	15-Feb-08	12-Oct-08	192412.00	=""	="MACE ENGINEERING Ltd"	19-Mar-08 05:53 PM	

+="CN66364"	"Procurement of:  KEY,LOCK RING;  LIFTING EYE;  VALVE,SAFETY RELIEF;  LIFTING TOOL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	12-Feb-08	19-Mar-08	16790.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Mar-08 05:53 PM	

+="CN66365"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	13-Feb-08	13-May-08	17310.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 05:53 PM	

+="CN66366"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	13-Feb-08	19-Mar-08	14520.00	=""	="M&D MARINE PARTS SERVICE Pty *"	19-Mar-08 05:54 PM	

+="CN66367"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	13-Feb-08	23-Apr-08	10800.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66368"	"Procurement of:  ROPE,FIBROUS"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	14-Feb-08	24-May-08	13980.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66369"	"Procurement of:  HOOK,RELEASE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	14-Feb-08	07-Apr-08	59356.90	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66370"	"Procurement of:  SEAL ASSEMBLY,SHAFT,SPRING LOADED"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	15-Feb-08	05-May-08	39000.00	=""	="SULZER PUMPS (ANZ) Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66371"	"Procurement of:  TRACKBALL,DATA ENTRY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	15-Feb-08	28-Mar-08	21456.00	=""	="M&D MARINE PARTS SERVICE Pty *"	19-Mar-08 05:54 PM	

+="CN66372"	"Procurement of:  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	18-Feb-08	21-Mar-08	20200.00	=""	="BOSS POLYMER TECHNOLOGIES"	19-Mar-08 05:54 PM	

+="CN66373"	"Procurement of:  CAM,CONTROL;  WASHER,FLAT;  WASHER,FLAT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	18-Feb-08	09-Apr-08	11327.80	=""	="MAN DIESEL AUSTRALIA Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66374"	"Procurement of:  RING,DOOR,FLUSH;  CAP,PROTECTIVE,DUST AND;  PLUG,EXPANSION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	11-May-08	100364.16	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66375"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	18-Feb-08	19-Mar-08	60720.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	19-Mar-08 05:54 PM	

+="CN66376"	"Procurement of:  FILTEREINSATZSATZ,"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	21-May-08	160080.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:55 PM	

+="CN66377"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	20-Apr-08	11550.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Mar-08 05:55 PM	

+="CN66378"	"Procurement of:  VALVE,DIAPHRAGM,STOP"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	25-May-08	43452.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:55 PM	

+="CN66379"	"Procurement of:  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	19-Feb-08	04-May-08	66500.00	=""	="GTSA ENGINEERING"	19-Mar-08 05:55 PM	

+="CN66380"	"Procurement of:  BEARING,SLEEVE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	20-May-08	22849.12	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:55 PM	

+="CN66381"	"Procurement of:  DETECTOR,HYDROGEN SULFIDE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	19-Feb-08	19-Mar-08	11730.00	=""	="AIR-MET SCIENTIFIC Pty Ltd"	19-Mar-08 05:55 PM	

+="CN66382"	"Procurement of:  AMMETER;  AMMETER;  AMMETER;  AMMETER;  AMMETER"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	19-Feb-08	14-May-08	15467.54	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:55 PM	

+="CN66383"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	19-Feb-08	29-Jun-08	32023.64	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Mar-08 05:55 PM	

+="CN66384"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	18-Sep-08	94782.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 05:55 PM	

+="CN66385"	"Procurement of:  VALVE,VACUUM BREAKING;  VALVE,VACUUM BREAKING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	26-May-08	28437.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66386"	"Procurement of:  PUMP,HYDRAULIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	25-Jun-09	174980.82	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Mar-08 05:56 PM	

+="CN66387"	"Procurement of:  HEATING ELEMENT,ELECTRICAL,IMMERSION;  STONE AND;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	22-May-08	54073.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66388"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	18-Jul-08	30846.36	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66389"	"Procurement of:  PANEL,CONTROL,ELECT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	08-Nov-08	120063.64	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66390"	"Procurement of:  FILTER ELEMENT,AIR CONDITIONING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	11-Apr-08	23460.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 05:56 PM	

+="CN66391"	"Procurement of:  ELECTRONIC MODULE,STANDARDIZED"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	17-Oct-08	15426.36	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:56 PM	

+="CN66392"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	22-Jan-09	31426.72	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:56 PM	

+="CN66393"	"Procurement of:  COUPLING HALF,QUICK DISCONNECT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	14-Jun-08	16437.47	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66394"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	14-Jun-08	24753.30	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:56 PM	

+="CN66395"	"Procurement of:  GLASS,PLATE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	09-Jun-08	16531.17	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:57 PM	

+="CN66396"	"Procurement of:  TUBE,METALLIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	27-May-08	84653.56	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:57 PM	

+="CN66397"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	27-Aug-08	54144.00	=""	="EATON FLUID POWER"	19-Mar-08 05:57 PM	

+="CN66398"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	15-Apr-08	31200.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Mar-08 05:57 PM	

+="CN66399"	"Procurement of:  O-RING;  O-RING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	09-Jun-08	11639.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:57 PM	

+="CN66400"	"Procurement of:  HOOK,RELEASE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	07-May-08	59356.90	=""	="RFD AUST Pty Ltd"	19-Mar-08 05:57 PM	

+="CN66401"	"Procurement of:  SWIM FINS;  SWIM FINS;  SWIM FINS;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	25-May-08	43191.50	=""	="CAPE BYRON IMPORTS & WHOLESALE *"	19-Mar-08 05:57 PM	

+="CN66402"	"Procurement of:  RADIATOR,ENGINE COOLANT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	11-Aug-09	430756.05	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:57 PM	

+="CN66403"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	05-Jun-08	24741.60	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:57 PM	

+="CN66404"	"Procurement of:  RELAIS, VERZOEGERUN"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	22-Feb-08	26-Apr-08	15885.00	=""	="LAWRENCE AND HANSON"	19-Mar-08 05:58 PM	

+="CN66405"	"Procurement of:  DUMMY LOAD,ELECTRICAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	22-Feb-08	02-Dec-08	39499.36	=""	="SAAB SYSTEMS Pty Ltd"	19-Mar-08 05:58 PM	

+="CN66406"	"Procurement of:  PUMP,HAULDOWN"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	22-Feb-08	24-Apr-09	122803.30	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Mar-08 05:58 PM	

+="CN66407"	"Procurement of:  PLUG ASSEMBLY,BOROS"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	11-Apr-08	35910.40	=""	="AERO & MILITARY PRODUCTS"	19-Mar-08 05:58 PM	

+="CN66408"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	22-Feb-08	19-Mar-08	23201.50	=""	="WESTERN ADVANCE Pty Ltd"	19-Mar-08 05:58 PM	

+="CN66409"	"Procurement of:  BEARING,SLEEVE;  COUPLING HALF,QUICK DISCONNECT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	19-Jun-08	20622.40	=""	="THYSSENKRUPP MARINE SYSTEMS"	19-Mar-08 05:58 PM	

+="CN66410"	"Procurement of:  FLANSCH, KRAFTSTOFF"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	07-Jun-08	31780.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:58 PM	

+="CN66411"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	30-May-08	21046.96	=""	="CEA TECHNOLOGIES Pty Ltd"	19-Mar-08 05:58 PM	

+="CN66412"	"Procurement of:  BAG,DIVING EQUIPMENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	15-Jun-08	22575.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Mar-08 05:58 PM	

+="CN66413"	"Procurement of:  CASE,DIVING APPARATUS;  TRANSMITTER,SONAR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	16-May-08	25857.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66414"	"Procurement of:  FLANGE,PIPE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	06-Jun-08	18070.14	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:59 PM	

+="CN66415"	"Procurement of:  DRYING TUMBLER,HOUSEHOLD LAUNDRY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	27-Apr-08	27845.50	=""	="MIELE AUSTRALIA Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66416"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	08-Apr-08	46575.30	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66417"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	17-Apr-08	14837.84	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66418"	"Procurement of:  ELBOW,FLANGE TO TUBE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	20-May-08	37700.90	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:59 PM	

+="CN66419"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	17-Apr-08	20116.56	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66420"	"Procurement of:  THRUST PLATE ASSY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	20-May-08	73094.85	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 05:59 PM	

+="CN66421"	"Procurement of:  FAN,TUBEAXIAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	17-Apr-08	37168.10	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66422"	"Procurement of:  ELECTRONIC COMPONENTS ASSEMBLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	17-Apr-08	54660.54	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 05:59 PM	

+="CN66423"	"Procurement of:  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	11-Dec-08	34841.80	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Mar-08 06:00 PM	

+="CN66424"	"Procurement of:  DISK,VALVE;  DISK,VALVE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	09-Apr-08	12692.00	=""	="PACIFIC AERODYNE Pty Ltd"	19-Mar-08 06:00 PM	

+="CN66425"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	19-Mar-08	22150.90	=""	="LAMINAR FLOW Pty Ltd"	19-Mar-08 06:00 PM	

+="CN66426"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	30-May-08	32425.20	=""	="THALES AUSTRALIA"	19-Mar-08 06:00 PM	

+="CN66427"	"Procurement of:  LENS,LIGHT;  REFLECTOR,LIGHT;  CONNECTOR,RECEPTACLE,ELECTRICAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	24-May-08	19040.00	=""	="VERSALUX LIGHTING SYSTEMS"	19-Mar-08 06:00 PM	

+="CN66428"	"Procurement of:  COOLER,FLUID,INDUSTRIAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	23-May-08	153400.00	=""	="APV AUSTRALIA Pty Ltd"	19-Mar-08 06:00 PM	

+="CN66429"	"Procurement of:  TURBOSUPERCHARGER,ENGINE,NON-AIRCRAFT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	26-Feb-09	72360.81	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 06:00 PM	

+="CN66430"	"Procurement of:  MATRIX,COMMUNICATION"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	13-Aug-08	247165.81	=""	="THALES AUSTRALIA"	19-Mar-08 06:00 PM	

+="CN66431"	"Procurement of:  COUPLING HALF,QUICK DISCONNECT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	17-Jun-08	12829.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 06:00 PM	

+="CN66432"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	22-Apr-08	10800.00	=""	="EBBCO Ltd"	19-Mar-08 06:01 PM	

+="CN66433"	"Procurement of:  GUIDE,HOSE REEL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	28-Feb-08	17-Jul-08	25446.00	=""	="BEAK RAST ENGINEERING"	19-Mar-08 06:01 PM	

+="CN66434"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	30-Mar-08	39000.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Mar-08 06:01 PM	

+="CN66435"	"Procurement of:  BOLT,MACHINE;  STUD,PLAIN;  SETSCREW"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	25-May-08	15618.00	=""	="BAKER & PROVAN Pty Ltd"	19-Mar-08 06:01 PM	

+="CN66436"	"Procurement of:  LENS,LIGHT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	24-May-08	75790.00	=""	="VERSALUX LIGHTING SYSTEMS"	19-Mar-08 06:01 PM	

+="CN66437"	"Procurement of:  FILTER ELEMENT,AIR CONDITIONING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	02-May-08	58900.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 06:01 PM	

+="CN66438"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE;  PUMP,CENTRIFUGAL;  TURBOSUPERCHARGER,ENGINE,NON-AIRCRAFT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	03-Mar-09	329187.77	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Mar-08 06:01 PM	

+="CN66439"	"Procurement of:  AUDIO RELAY ENCLOSU"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	29-Feb-08	28-May-08	25550.40	=""	="THALES AUSTRALIA"	19-Mar-08 06:01 PM	

+="CN66440"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	31-Oct-08	233521.20	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Mar-08 06:01 PM	

+="CN66441"	"Procurement of:  GASKET"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	07-Feb-08	01-May-08	10627.50	=""	="PACIFIC MARINE BATTERIES Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66442"	"Procurement of:  COMPUTER,DIGITAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	01-Feb-08	19-Mar-08	35908.00	=""	="TENIX DEFENCE Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66443"	"Procurement of:  TUBE SET,GAS-VAPOUR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	04-Feb-08	19-Mar-08	18457.50	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66444"	"Procurement of:  BEARING UNIT,PLAIN"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	26-Mar-08	42956.80	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Mar-08 06:02 PM	

+="CN66445"	"Procurement of:  BUSHING,SLEEVE;  SHAFT,SHOULDERED;  BUSHING,SLEEVE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	05-Feb-08	05-May-08	16502.65	=""	="ASC Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66446"	"Procurement of:  CYLINDER,ACTUATING,LINEAR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	08-Feb-08	08-May-08	14820.00	=""	="BEAK RAST ENGINEERING"	19-Mar-08 06:02 PM	

+="CN66447"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	11-Feb-08	04-Apr-08	110678.75	=""	="EBBCO Ltd"	19-Mar-08 06:02 PM	

+="CN66448"	"Procurement of:  FAN,CENTRIFUGAL;  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	12-Feb-08	08-Sep-08	74862.00	=""	="NOSKE-KAESER NZ Ltd"	19-Mar-08 06:02 PM	

+="CN66449"	"Procurement of:  SHAFT,TRANSMISSION,PUMP"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	14-Feb-08	24-Apr-08	42183.95	=""	="ASC Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66450"	"Procurement of:  VALVE,REGULATING,TEMPERATURE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	18-Feb-08	17-Jun-08	14033.43	=""	="ASC Pty Ltd"	19-Mar-08 06:02 PM	

+="CN66451"	"Procurement of:  NET,RAILING"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	18-Feb-08	19-Mar-08	10937.88	=""	="AUSTRALIAN NETMAKERS"	19-Mar-08 06:03 PM	

+="CN66452"	"Procurement of:  UEBERWACHUNGSGERAET, WASSERQUALITAET"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	19-Feb-08	30-Mar-08	19910.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	19-Mar-08 06:03 PM	

+="CN66453"	"Procurement of:  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	20-Feb-08	20-May-08	10396.00	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Mar-08 06:03 PM	

+="CN66454"	"Procurement of:  CYLINDER ASSEMBLY,ACTUATING,LINEAR"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	20-Jul-08	34991.35	=""	="BAKER & PROVAN Pty Ltd"	19-Mar-08 06:03 PM	

+="CN66455"	"Procurement of:  MOTOR,DIRECT CURRENT"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	21-May-08	17600.00	=""	="SCHNEIDER ELECTRIC Pty Ltd"	19-Mar-08 06:03 PM	

+="CN66456"	"Procurement of:  ATTENUATOR,VARIABLE"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	21-Feb-08	22-Apr-08	12995.70	=""	="A AND D INTERNATIONAL Pty Ltd"	19-Mar-08 06:03 PM	

+="CN66457"	"Procurement of:  CONTACTOR,MAGNETIC"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	25-Feb-08	14-Jul-08	47520.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	19-Mar-08 06:03 PM	

+="CN66458"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	22-Feb-08	09-May-08	27936.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Mar-08 06:03 PM	

+="CN66459"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	26-Feb-08	25-Apr-08	41240.00	=""	="SLUMBERCARE BEDDING"	19-Mar-08 06:03 PM	

+="CN66460"	"Procurement of:  LIGHT-SWITCH;  SPACER"	="Defence Materiel Organisation"	19-Mar-08	="Marine transport"	27-Feb-08	28-Mar-08	36827.11	=""	="ASC Pty Ltd"	19-Mar-08 06:03 PM	

+="CN66461"	"For the purchase of Qty 10 Cockpit Voice & Data Recoder Control Units for Black Hawk aircraft Crash Data Recorder modification."	="Defence Materiel Organisation"	19-Mar-08	="Military rotary wing aircraft"	19-Mar-08	14-May-10	52910.00	=""	="FLIGHT DATA SYSTEMS"	19-Mar-08 06:14 PM	

+="CN66462"	" For the purchase of Qty 25 Cockpit Voice & Data Recorders for the Black Hawk aircraft Crash Data Recoder modification program "	="Defence Materiel Organisation"	19-Mar-08	="Military rotary wing aircraft"	19-Mar-08	14-May-08	134750.00	=""	="FLIGHT DATA SYSTEMS"	19-Mar-08 06:23 PM	

+="CN66463"	" Qty: 3 x 'Valve, Solenoid', NSN: 4810-14-535-2126, in support of  AS350BA Squirrel Helicopter Fleet, AI: A22N. Additional RI spares. "	="Defence Materiel Organisation"	19-Mar-08	="Military rotary wing aircraft"	19-Mar-08	09-Apr-08	25620.24	=""	="Turbomeca A/Asia, Pty., Ltd."	19-Mar-08 07:35 PM	

+="CN66464"	" BODY ARMOUR OUTFIT, EXPLOSIVE ORDANCE DISPOSAL   VARIOUS SIZES  "	="Defence Materiel Organisation"	20-Mar-08	="Protective coveralls"	19-Mar-08	08-May-08	2218084.88	=""	="ZANGOLD PTY LTD T/AS EXPLOSIVE PROTECTIVE EQUIPMENT"	20-Mar-08 07:49 AM	

+="CN66465"	"Eyewash Unit Portable Gravity Fed Plastic"	="Defence Materiel Organisation"	20-Mar-08	="Wound care products"	19-Mar-08	09-Apr-08	10780.00	=""	="Chubb Fire Safety Ltd"	20-Mar-08 08:06 AM	

+="CN66466"	"Various Parts - ASLAV"	="Department of Defence"	20-Mar-08	="Armoured fighting vehicles"	18-Mar-08	22-Aug-08	67442.10	=""	="ELVISH AND ASSOCIATES"	20-Mar-08 08:26 AM	

+="CN66467"	" Cover, Gun - ASLAV "	="Department of Defence"	20-Mar-08	="Armoured fighting vehicles"	19-Mar-08	27-Jul-08	10826.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Mar-08 08:30 AM	

+="CN66468"	"Switch Pressure - ASLAV"	="Department of Defence"	20-Mar-08	="Armoured fighting vehicles"	19-Mar-08	22-Nov-08	11225.28	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Mar-08 08:36 AM	

+="CN66469"	"Bar Armour Parts - ASLAV"	="Department of Defence"	20-Mar-08	="Armoured fighting vehicles"	18-Mar-08	23-Jul-08	63765.09	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Mar-08 08:40 AM	

+="CN66470-A1"	"Information Technology Annual Access Fee"	="Department of the Environment Water Heritage and the Arts"	20-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Oct-07	30-Jun-08	49610.00	="0708-437"	="Department of Foreign Affairs and Trade, Collector of Public Monies"	20-Mar-08 09:07 AM	

+="CN66471"	"FMIS Provider"	="Cancer Australia"	20-Mar-08	="Business and corporate management consultation services"	01-Jul-07	30-Jun-10	122861.00	=""	="Longley Stapleton"	20-Mar-08 09:10 AM	

+="CN66472"	"Surfacer Woodworking"	="Defence Materiel Organisation"	20-Mar-08	="Machinery for working wood and stone and ceramic and the like"	20-Mar-08	07-Aug-08	21175.00	=""	="Gabbett Machinery"	20-Mar-08 09:21 AM	

+="CN66473"	"Validation of Rapid Assessment Methodology"	="Department of the Environment Water Heritage and the Arts"	20-Mar-08	="Management and Business Professionals and Administrative Services"	22-Oct-07	31-Mar-08	33000.00	="0708-310"	="Regeneration Solutions Pty Ltd"	20-Mar-08 09:28 AM	

+="CN66476"	" REPAIRS TO L.E.T. BUDGIE "	="Department of Defence"	20-Mar-08	="Motor vehicles"	02-Oct-07	04-Apr-08	30851.30	=""	="TWINE MACHINERY"	20-Mar-08 10:37 AM	

+="CN66478"	" ANTENNA BLADE, VHF "	="Defence Materiel Organisation"	20-Mar-08	="Radio antennas"	18-Mar-08	03-Jul-08	55200.00	=""	="EYLEX PTY LTD"	20-Mar-08 11:17 AM	

+="CN66480-A1"	"Subscriber and Subscription Management System"	="Department of Resources Energy and Tourism"	20-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Oct-07	24800.00	=""	="SOLUTIONS FOR PROJECTS PTY LTD"	20-Mar-08 11:35 AM	

+="CN66481-A1"	" Secondment of legal officer "	="Department of Resources Energy and Tourism"	20-Mar-08	="Temporary legal staffing needs"	16-Jul-07	31-Jan-08	10710.29	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Mar-08 11:35 AM	

+="CN66482-A1"	"Audio Visual equipment for Energy Efficiency Opportunities review of Energy Mass Balance case"	="Department of Resources Energy and Tourism"	20-Mar-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	31-Jul-07	17110.00	=""	="SUSTAINABLE SOLUTIONS"	20-Mar-08 11:35 AM	

+="CN66483-A1"	" Organisation of APEC Energy Trade and Investment Round table conference "	="Department of Resources Energy and Tourism"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	30-Jun-08	15000.00	=""	="THE MEETINGS MANAGER"	20-Mar-08 11:35 AM	

+="CN66484-A1"	" Review of National Gas Rules "	="Department of Resources Energy and Tourism"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	31-Aug-07	10000.00	=""	="ALLEN CONSULTING GROUP PTY LTD"	20-Mar-08 11:35 AM	

+="CN66485-A1"	" Study and final report for the APEC Energy Trade and investment "	="Department of Resources Energy and Tourism"	20-Mar-08	="Trade policy and services"	20-Jul-07	27-Jun-08	140000.00	=""	="PRICE WATERHOUSE COOPERS (NSW)"	20-Mar-08 11:35 AM	

+="CN66486-A1"	"Minimum Energy Performance Standards and Regulatory Impact Statements for energy testing of computers and external power supplies"	="Department of Resources Energy and Tourism"	20-Mar-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jul-07	28-Jul-07	15933.50	=""	="PUNCHLINE ENERGY"	20-Mar-08 11:35 AM	

+="CN66487-A1"	" Identification of opportunities for major overseas regulations. "	="Department of Resources Energy and Tourism"	20-Mar-08	="Management advisory services"	20-Jul-07	30-Jun-08	195087.00	=""	="ACIL TASMAN"	20-Mar-08 11:36 AM	

+="CN66488-A1"	" Facilitator for the National Mine Safety Framework Workshop "	="Department of Resources Energy and Tourism"	20-Mar-08	="Business administration services"	23-Jul-07	29-Aug-07	11055.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	20-Mar-08 11:36 AM	

+="CN66489-A1"	" Development of training for the Engineering Sustainable Energy Solutions Program for professional engineers "	="Department of Resources Energy and Tourism"	20-Mar-08	="Education and Training Services"	23-Jul-07	31-Dec-07	14162.50	=""	="SUSTAINABILIITY VICTORIA"	20-Mar-08 11:36 AM	

+="CN66490-A1"	"Supply and Installation of a single phase IT rated circuit"	="Department of Resources Energy and Tourism"	20-Mar-08	="Computer Equipment and Accessories"	23-Jul-07	31-Jul-07	40000.00	=""	="MAESTRO COMMUNICATION"	20-Mar-08 11:36 AM	

+="CN66491-A1"	" IT Service and equipment data rental fee "	="Department of Resources Energy and Tourism"	20-Mar-08	="Management and Business Professionals and Administrative Services"	24-Jul-07	30-Jun-08	20880.00	=""	="CONFERENCE SOLUTIONS"	20-Mar-08 11:36 AM	

+="CN66492-A1"	" Legal consultants for retail policy "	="Department of Resources Energy and Tourism"	20-Mar-08	="Legal services"	24-Jul-07	30-Jun-08	210000.00	=""	="ALLENS ARTHUR ROBINSON"	20-Mar-08 11:36 AM	

+="CN66493-A1"	" Recruitment of industry experts for the trial verification with Hydro Aluminium "	="Department of Resources Energy and Tourism"	20-Mar-08	="Engineering and Research and Technology Based Services"	24-Jul-07	31-Jul-07	21328.00	=""	="ENERVATIVE SOLUTIONS PTY LTD"	20-Mar-08 11:36 AM	

+="CN66495-A1"	" Venue hire and conference services for the Asia Pacific Partnership Joint Taskforce "	="Department of Resources Energy and Tourism"	20-Mar-08	="Hotels and lodging and meeting facilities"	25-Jul-07	30-Jun-09	56150.00	=""	="CROWN LIMITED"	20-Mar-08 11:36 AM	

+="CN66496"	"Wrist Watches"	="Department of Defence"	20-Mar-08	="Wrist watches"	14-Mar-08	28-Apr-08	17009.85	=""	="SHRIRO AUSTRALIA PTY LTD"	20-Mar-08 12:03 PM	

+="CN66498"	" AIRCRAFT SPARES  NSN 5306-66-099-0866 , BOLT MACHINE , FEP , QTY 60. "	="Defence Materiel Organisation"	20-Mar-08	="Military transport helicopters"	20-Mar-08	10-Apr-08	27432.90	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Mar-08 12:08 PM	

+="CN66499"	"Siebel Essentials Training Course"	="Australian Taxation Office"	20-Mar-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	11-Apr-08	50930.00	=""	="Oracle Corporation Australia Pty Ltd"	20-Mar-08 12:21 PM	

+="CN66500"	"IT System Development Services"	="Department of Finance and Deregulation"	20-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	31-Mar-08	31000.00	=""	="NSW DEPARTMENT OF COMMERCE"	20-Mar-08 01:20 PM	

+="CN66501"	"Contractor Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Sep-08	142500.00	="n/a"	="CPT GLOBAL LIMITED"	20-Mar-08 01:20 PM	

+="CN66502"	"Recruitment Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	30-Jun-08	10785.85	="FIN05CRP004"	="HAYS PERSONNEL SERVICES"	20-Mar-08 01:20 PM	

+="CN66503"	"Capital Expenditure - Plant & Equipment"	="Department of Finance and Deregulation"	20-Mar-08	="Office Equipment and Accessories and Supplies"	18-Feb-08	30-Apr-08	18810.00	="N/A"	="SIGNATURE SECURITY SYSTEMS"	20-Mar-08 01:21 PM	

+="CN66504"	"Recruitment Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	28-Mar-08	38500.00	=""	="PAPER SHUFFLE PTY LTD"	20-Mar-08 01:21 PM	

+="CN66505"	"Contractor Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	05-Jun-08	25000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	20-Mar-08 01:21 PM	

+="CN66506"	"Training & Education Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	14-Feb-08	11000.00	=""	="CENTRE FOR PUBLIC MANAGEMENT PTY LTD"	20-Mar-08 01:21 PM	

+="CN66507"	"Legal Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Building and Construction and Maintenance Services"	01-Sep-07	30-Sep-07	22000.00	=""	="FEDERAL COURT OF AUSTRALIA"	20-Mar-08 01:21 PM	

+="CN66508"	"Training & Education Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	99425.00	="n/a"	="PEOPLE & STRATEGY (ACT) PTY"	20-Mar-08 01:21 PM	

+="CN66509"	"Market Research Advisory Services"	="Department of Finance and Deregulation"	20-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	27-Feb-08	29-Feb-08	14356.65	="N/A"	="CORPORATE DIAGNOSTICS PTY LTD"	20-Mar-08 01:21 PM	

+="CN66510"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	31-Mar-08	10825.57	=""	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	20-Mar-08 01:21 PM	

+="CN66511"	"Contractor Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	05-Sep-08	42000.00	="."	="EFFECTIVE PEOPLE PTY LIMITED"	20-Mar-08 01:22 PM	

+="CN66512"	"Consultancy Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Sep-08	56000.00	="."	="MANPOWER SERVICES (AUST) P/L"	20-Mar-08 01:22 PM	

+="CN66513"	"Cleaning Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Industrial Cleaning Services"	15-Mar-08	30-Jun-08	13023.25	="N/A"	="MORGANS GROUP PTY LTD"	20-Mar-08 01:22 PM	

+="CN66514"	"Training & Education Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	27-Jun-08	47300.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	20-Mar-08 01:22 PM	

+="CN66515"	"Divestment Expenses"	="Department of Finance and Deregulation"	20-Mar-08	="Building and Construction and Maintenance Services"	06-Mar-08	06-Jun-08	22000.00	=""	="THE SYNOD OF THE DIOCESE OF NT"	20-Mar-08 01:22 PM	

+="CN66516"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	20-Mar-08	="Building and Construction and Maintenance Services"	01-May-08	30-Sep-08	16426.80	=""	="RECLAIM INDUSTRIES LTD"	20-Mar-08 01:22 PM	

+="CN66517"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	01-Sep-08	40000.00	="N/A"	="HYATT HOTEL CANBERRA"	20-Mar-08 01:22 PM	

+="CN66518"	"Contractor Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Jun-08	106260.00	="xxx"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	20-Mar-08 01:22 PM	

+="CN66519"	"HR Services"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	22-Feb-08	23-May-08	24072.62	="FIN/CAPSHR"	="EFFECTIVE PEOPLE PTY LIMITED"	20-Mar-08 01:22 PM	

+="CN66520"	"Architectural Services"	="Department of Finance and Deregulation"	20-Mar-08	="Engineering and Research and Technology Based Services"	04-Mar-08	30-Jun-08	256224.10	="Pre Austender"	="SUTERS ARCHITECTS"	20-Mar-08 01:23 PM	

+="CN66521"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	20-Mar-08	="Engineering and Research and Technology Based Services"	20-Mar-08	13-Oct-08	677900.00	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	20-Mar-08 01:23 PM	

+="CN66522"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	20-Mar-08	="Engineering and Research and Technology Based Services"	20-Mar-08	30-Jun-08	83930.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	20-Mar-08 01:23 PM	

+="CN66523"	"Travel - Insurance Services"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Jun-08	234244.00	="Fin05/AMG002"	="INTERNATIONAL SOS (AUST) PTY LTD"	20-Mar-08 01:23 PM	

+="CN66524"	"HR Services"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	31-Mar-08	17000.00	="RMS06/03382"	="DAVIDSON TRAHAIRE PTY LTD"	20-Mar-08 01:23 PM	

+="CN66525"	"Consultancy Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	16-Jun-08	15620.00	="."	="DILMA CONSULTING PTY LTD"	20-Mar-08 01:23 PM	

+="CN66526"	"Consultancy Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-Feb-08	19-Mar-08	58152.00	="RFP - KPMG"	="KPMG - ACCOUNTS RECEIVABLE"	20-Mar-08 01:23 PM	

+="CN66527"	"Insurance and Risk Management Advisory Services"	="Department of Finance and Deregulation"	20-Mar-08	="Financial and Insurance Services"	14-Mar-08	30-Jun-08	31700.00	="Not applicable"	="DG THOMPSON PTY LTD"	20-Mar-08 01:24 PM	

+="CN66528"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	17-Mar-08	18500.00	="n/a"	="WALLAGA PTY LTD"	20-Mar-08 01:24 PM	

+="CN66529"	"Consultancy Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	17-Mar-08	13750.00	="n/a"	="CAPSE PTY LTD"	20-Mar-08 01:24 PM	

+="CN66530"	"Business Advisory Services"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	79000.00	="FIN08AGI002"	="OAKTON AA SERVICES PTY LTD"	20-Mar-08 01:24 PM	

+="CN66531"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	04-Apr-08	13500.00	="n/a"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	20-Mar-08 01:24 PM	

+="CN66532"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	04-Apr-08	12500.00	="n/a"	="VALUESOURCING"	20-Mar-08 01:24 PM	

+="CN66533"	"Legal Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	12500.00	="N/A"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Mar-08 01:24 PM	

+="CN66534"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	04-Apr-08	13250.00	="n/a"	="RISK & PROJECT MANAGEMENT PTY LTD"	20-Mar-08 01:25 PM	

+="CN66535"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	04-Apr-08	13250.00	="n/a"	="CONSOLVE PTY LTD"	20-Mar-08 01:25 PM	

+="CN66536"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	04-Apr-08	13250.00	="n/a"	="SPHERE CONSULTING PTY LTD"	20-Mar-08 01:25 PM	

+="CN66537"	"Consultancy Costs"	="Department of Finance and Deregulation"	20-Mar-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	76000.00	="00000000000"	="OAKTON AA SERVICES PTY LTD"	20-Mar-08 01:25 PM	

+="CN66539"	"Pool Vehicle Lease Charges for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Mar-08	="Business administration services"	01-Feb-08	29-Feb-08	16043.81	=""	="LEASEPLAN AUSTRALIA LTD"	20-Mar-08 02:08 PM	

+="CN66540"	"Apllication Services for December 2007"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Mar-08	="Business administration services"	01-Dec-07	31-Dec-07	17995.84	=""	="DEPARTMENT OF EMPLOYMENT & WORKPLACE RELATIONS"	20-Mar-08 02:30 PM	

+="CN66541"	" BOX, SHIPPING FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 259 MM W BY 393 MM DEEP, INT DIM. QTY 5970. RAISED AS PER THE CONDITIONS OF STANDING OFFER 2550110.   "	="Defence Materiel Organisation"	20-Mar-08	="Packaging boxes"	21-Jan-08	25-Feb-08	10178.85	=""	="EE CARTONS"	20-Mar-08 02:40 PM	

+="CN66542"	"Pre-payments for February 2008"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Mar-08	="Business administration services"	01-Feb-08	29-Feb-08	233221.31	=""	="UNITED GROUP SERVICES PTY LTD"	20-Mar-08 02:43 PM	

+="CN66543"	"Courier Services"	="Australian Electoral Commission"	20-Mar-08	="Postal and small parcel and courier services"	01-Sep-02	30-Aug-08	81000.00	=""	="Metrostate Security Courier Pty Ltd"	20-Mar-08 02:47 PM	

+="CN66544"	"Property expenditure - Maintenance & Electricity"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Mar-08	="Business administration services"	01-Aug-07	27-Nov-07	11689.50	=""	="UNITED GROUP SERVICES PTY LTD"	20-Mar-08 02:52 PM	

+="CN66545"	"Temporary Personnel"	="Australian Electoral Commission"	20-Mar-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	15467.76	="AEC06/019"	="Peoplebank Recruitment"	20-Mar-08 03:00 PM	

+="CN66546-A1"	"Provision of Physiotherapy Services to clients of CRS Australia's Barwon South West Region"	="CRS Australia"	20-Mar-08	="Comprehensive health services"	01-May-06	30-Jun-09	33441.19	=""	="Corio Bay Sports Treatment Clinic"	20-Mar-08 03:04 PM	

+="CN66547"	"Linda Walker - maternity leave relief position replacing Danielle Hosie."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	13-Mar-08	30-Sep-08	40345.70	=""	="Frontier Group"	20-Mar-08 03:48 PM	

+="CN66548-A1"	"Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	03-Mar-08	30-Jun-08	60000.00	=""	="Queensland Department of Natural Resources and Water"	20-Mar-08 03:48 PM	

+="CN66549"	"Installation of AAPT Direct Connection ISDN PRA at various sites across Australia"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Telecommunications media services"	28-Feb-08	31-Mar-08	20020.00	=""	="Telstra Business Systems"	20-Mar-08 03:48 PM	

+="CN66550-A1"	"Technical consultant for the 2008 AAWS international animal welfare conference."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	01-Nov-07	30-Nov-08	78210.00	=""	="Dr Stev Atkinson"	20-Mar-08 03:48 PM	

+="CN66551"	"Business Analyst for the Bids and Contracts Database."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	07-Mar-08	30-Jun-08	33000.00	=""	="GMT Canberra Pty Ltd"	20-Mar-08 03:49 PM	

+="CN66553"	"Update of chapters to Exotice Disease of Animals publication"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	25-Oct-07	25-Jun-08	25410.00	=""	="Asia Pacific Veterinary Information Services Pty Ltd"	20-Mar-08 03:49 PM	

+="CN66554"	"Accommodation for DAFF Overseas Agricultural Officers for their Annual Recall in 2008."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Passenger transport"	25-Jun-08	09-Jul-08	15000.00	=""	="Quest Serviced Apartments"	20-Mar-08 03:49 PM	

+="CN66555"	"R Holloway 25/2-30/6/08 (Assets contractor during staff leave)"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	25-Feb-08	30-Jun-08	30000.00	=""	="Careers Unlimited"	20-Mar-08 03:49 PM	

+="CN66556"	"Training and accounting services"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	17-Mar-08	30-Jun-08	52800.00	=""	="Jillian Sellars"	20-Mar-08 03:49 PM	

+="CN66557"	"Provision of advice on international fisheries issues"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	26-Nov-07	30-Nov-08	70000.00	=""	="University of Wollongong Australian National Centre of Ocean Resources and Security"	20-Mar-08 03:49 PM	

+="CN66558"	"Project and test manager services"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Computer services"	03-Mar-08	30-Jun-08	65000.00	=""	="Dialog Pty Ltd"	20-Mar-08 03:50 PM	

+="CN66560"	"Contract services"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	01-Feb-08	30-Jun-08	50000.00	=""	="Careers Unlimited"	20-Mar-08 03:50 PM	

+="CN66561"	"DAFF White Pages listings"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	13-Mar-09	15129.40	=""	="Telstra Corporation Limited"	20-Mar-08 03:50 PM	

+="CN66562-A1"	"Production of a revised Fraud Control Plan"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	13-Mar-08	30-May-08	128359.00	=""	="Ernst and Young Australia"	20-Mar-08 03:50 PM	

+="CN66563"	"DAFF - Support Agreement"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	01-Feb-08	31-Jan-09	55000.00	=""	="Excelerated Consulting"	20-Mar-08 03:50 PM	

+="CN66564"	"Temp staff services - Accounts Receivable"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	03-Mar-08	03-Jul-08	22902.00	=""	="Careers Unlimited"	20-Mar-08 03:50 PM	

+="CN66565"	"Professional Fees and disbursements"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Legal services"	03-Jan-08	31-Jan-08	10859.20	=""	="Australian Government Solicitor"	20-Mar-08 03:50 PM	

+="CN66566"	"Update of chapters to Exotic Disease of Animals publication"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	25-Jan-08	25-Aug-08	10890.00	=""	="Dr Patricia M Ellis"	20-Mar-08 03:51 PM	

+="CN66567"	"Professional services rendered by Glenn Thornton on Phase 1 of the Cargo Business Continuity project."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	05-Feb-08	30-Jun-08	13200.00	=""	="Ascent"	20-Mar-08 03:51 PM	

+="CN66568"	"Training Services for the Presentation Skills Workshop regarding the AQIS Management and Development Program"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Education and Training Services"	11-Mar-08	09-Mar-09	25000.00	=""	="Talkforce Consultants and Trainers"	20-Mar-08 03:51 PM	

+="CN66570"	"Charter Aircraft for Drought Assessment"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Passenger transport"	16-Mar-08	19-Mar-08	25820.00	=""	="Corporate Air"	20-Mar-08 03:51 PM	

+="CN66571"	"Provide Scientific advice and act as a member of the import risk analysis team in relation to Philippines bananas."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	25-Oct-07	30-Jun-08	28000.00	=""	="Bob Paton Consulting"	20-Mar-08 03:51 PM	

+="CN66572-A3"	"Engagement of IT personnel to work in the AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	17-Mar-08	16-Mar-10	246400.00	=""	="M&T Resources"	20-Mar-08 03:51 PM	

+="CN66574"	"Fitout works associated with the new AQIS Fisherman Islands Office accommodation project."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	30-Jun-08	70447.30	=""	="Port of Brisbane"	20-Mar-08 03:52 PM	

+="CN66575-A1"	"Review National Vegetation Assessment 2008 report"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Printed media"	17-Mar-08	30-Jun-08	38500.00	=""	="Sarre Et Al Pty Ltd"	20-Mar-08 03:52 PM	

+="CN66576"	"Switchboard operators for Feb 08"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	01-Feb-08	29-Feb-08	23841.28	=""	="Sirius Corporation Ltd"	20-Mar-08 03:52 PM	

+="CN66577"	"Strain Identification of Caulerpa taxifolia in Australian waters - Consultancy between DAFF and CSIRO"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	14-Jun-07	31-May-08	102236.20	=""	="CSIRO Marine and Atmospheric Research"	20-Mar-08 03:52 PM	

+="CN66578"	"Financial Statements assistance"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	01-Mar-08	31-Aug-08	215000.00	=""	="Ascent Governance"	20-Mar-08 03:52 PM	

+="CN66579"	"Training on project management and team workshop."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Education and Training Services"	05-Mar-08	31-May-08	10000.00	=""	="JennGen Consulting Pty Ltd"	20-Mar-08 03:52 PM	

+="CN66580-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	07-Mar-08	30-Jun-08	60000.00	=""	="Tasmanian Department of Primary Industries and Water"	20-Mar-08 03:52 PM	

+="CN66581-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	07-Mar-08	30-Jun-08	20000.00	=""	="SA Department of Water, Land and Biodiversity Conservation"	20-Mar-08 03:52 PM	

+="CN66582"	"Determining the level of success of vertebrate translocations undertaken in Australia and characterising the underpinning strategies used for the successful translocations"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	15-Feb-08	15-Feb-09	33000.00	=""	="Wildlife Research and Management"	20-Mar-08 03:53 PM	

+="CN66583-A1"	"Translation of 3 fact sheets into 10 languages"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	17-Mar-08	17-May-08	26136.00	=""	="Multicultural Marketing & Management"	20-Mar-08 03:53 PM	

+="CN66584"	"Graduate Computer Training"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Education and Training Services"	21-Feb-08	31-Mar-08	27453.80	=""	="Wizard Computer Training"	20-Mar-08 03:53 PM	

+="CN66585"	"Analyse Landsat and MODIS datasets"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	14-Mar-08	30-Jun-08	11000.00	=""	="Queensland Department of Natural Resources"	20-Mar-08 03:53 PM	

+="CN66586"	"Mac Pro: (Custom Configuration)2x 23" Apple Cinema DisplayAppleCare Protection Plan"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Office machines and their supplies and accessories"	17-Mar-08	30-Jun-08	11275.70	=""	="AppleCentre Mac1"	20-Mar-08 03:53 PM	

+="CN66587"	"Contractor Rebecca Caelli, APS5 duties"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Insurance and retirement services"	17-Mar-08	16-Jun-08	20000.00	=""	="Canberra Consulting Recources"	20-Mar-08 03:53 PM	

+="CN66588"	"RPI, FA, FF OHS Workplace Assessments"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Comprehensive health services"	01-Apr-08	30-Apr-08	19844.00	=""	="CRS Australia"	20-Mar-08 03:54 PM	

+="CN66589"	"Recruitment Services"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Education and Training Services"	01-Dec-07	29-Feb-08	19564.31	=""	="Cordelta"	20-Mar-08 03:54 PM	

+="CN66590"	"Ministerial and Executive Workflow System upgrade to MINCOR4 including TRIM interface."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Computer services"	01-Mar-08	31-Aug-08	77000.00	=""	="Oakton Services Pty Ltd"	20-Mar-08 03:54 PM	

+="CN66591"	"Temp staff services - Accounts Receivable"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Human resources services"	03-Mar-08	03-Jul-08	25707.00	=""	="Careers Unlimited"	20-Mar-08 03:54 PM	

+="CN66593"	"Sampling and Testing needs and capabilities for genetically modified events in seed and grain in a national framework."	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Management advisory services"	07-Mar-08	30-Jun-08	50000.00	=""	="National Measurement Institute"	20-Mar-08 03:54 PM	

+="CN66595"	"Provision of Data & Maps"	="Department of Agriculture Fisheries and Forestry"	20-Mar-08	="Computer services"	01-Jul-07	30-Jun-08	10000.00	=""	="Qld Department of Primary Industries & Fisheries"	20-Mar-08 03:55 PM	

+="CN66596"	"Printing of Cybersmart Brochures"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Printing"	19-Mar-08	30-Apr-08	12030.70	=""	="National Capital Printing"	20-Mar-08 04:00 PM	

+="CN63738"	"Provision of an online safety program for schools and associated issues"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Education and Training Services"	01-Dec-07	31-Mar-08	40000.00	="06ACMA157"	="IT Vision"	20-Mar-08 04:06 PM	

+="CN63763"	"Temporary employee for Library Services - Sydney office"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	25-Feb-08	30-Jun-08	31109.40	=""	="Zenith Management Services"	20-Mar-08 04:11 PM	

+="CN63765"	"Printing of ACMA Communications report 2006/07"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Printing"	18-Feb-08	31-Mar-08	50000.00	=""	="House Mouse Design Pty Ltd"	20-Mar-08 04:13 PM	

+="CN63766"	"ACMA contribution to fraud taskforce advertising education campaign"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Advertising"	01-Feb-08	31-Mar-08	10035.00	=""	="ACCC"	20-Mar-08 04:14 PM	

+="CN66597"	"Mounting Pin - ASLAV"	="Department of Defence"	20-Mar-08	="Armoured fighting vehicles"	20-Mar-08	29-May-08	14583.25	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Mar-08 04:18 PM	

+="CN63733"	"Employee Assistance Program (EAP) for ACMA"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Employee assistance programs"	19-Feb-08	18-Feb-11	59400.00	="06ACMA041"	="Davidson Trahaire Corpsych Pty Ltd"	20-Mar-08 04:22 PM	

+="CN59483"	"Stakeholder survey lower microwave fixed point to point bands"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Market research"	08-Feb-08	30-May-08	49550.00	="07ACMA023"	="Spectrum Engineering Australia Pty Ltd"	20-Mar-08 04:32 PM	

+="CN59486"	"Provision of Annual Access Fees Service for the Do Not Call Register"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Market research"	31-Jan-08	11-Feb-11	94085.00	="07/ACMA046"	="Access Economics Pty Ltd"	20-Mar-08 04:35 PM	

+="CN59954"	"Tumbleweed maintainence, support, security and subscription for 1 year"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Software"	19-Feb-08	18-Feb-09	11251.12	=""	="Ipex ITG Pty Ltd"	20-Mar-08 04:42 PM	

+="CN59952"	"Upgrade of ACMA CHIRPLUS broadcast Planning System"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Software"	17-Feb-08	29-Feb-08	58003.00	=""	="Rohde and Schwartz (Aust) Pty Ltd"	20-Mar-08 04:42 PM	

+="CN63719"	"Provision of Policy Advisory Services"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	14-Dec-07	30-Jun-08	70000.00	="07/ACMA027"	="Activate Strategic Partnerships Pty Ltd"	20-Mar-08 04:54 PM	

+="CN63721"	"Provision of temporary employee services"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	07-Feb-08	07-May-08	30000.00	="07ACMA051"	="The Publicity Agency"	20-Mar-08 04:54 PM	

+="CN60129"	"Engagement of temporary staff - Content Branch"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	13-Feb-08	13-Apr-08	15660.00	="05ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	20-Mar-08 05:10 PM	

+="CN59288-A1"	"Temporary personnel"	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	04-Feb-08	20-Mar-08	45300.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	20-Mar-08 05:13 PM	

+="CN59266-A1"	" Temporary Personnel "	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	01-Feb-08	30-Apr-08	26884.00	="06/ACMA107"	="Leo Microsystems Pty Ltd"	20-Mar-08 05:35 PM	

+="CN59950"	" Temporary Personnel "	="Australian Communications and Media Authority (ACMA)"	20-Mar-08	="Temporary personnel services"	11-Feb-08	09-May-08	22044.88	="06ACMA107"	="Hayes Personnel Services (Australia) Pty Ltd"	20-Mar-08 05:35 PM 

--- /dev/null
+++ b/admin/partialdata/18Apr2008to22Apr2008valto.xls
@@ -1,1 +1,650 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN71505"	"motor vehicle spare parts"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	21133.87	=""	="LANDROVER"	18-Apr-08 09:33 AM	

+="CN71506"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	18-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	12-Apr-08	12-May-08	22462.90	=""	="LANDROVER"	18-Apr-08 09:38 AM	

+="CN71514"	" Legal services - counsel "	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	14-Apr-08	30-Jun-08	55000.00	=""	="Ms Kerri Judd"	18-Apr-08 10:13 AM	

+="CN71516"	"Extension of Legal services"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	22-Feb-08	30-Jun-08	10000.00	=""	="John V. Gooley"	18-Apr-08 10:30 AM	

+="CN71515-A5"	"Forensic accounting services"	="Australian Securities and Investments Commission"	18-Apr-08	="Accounting services"	20-Mar-08	31-Dec-08	424270.00	=""	="Axiom Forensics"	18-Apr-08 10:42 AM	

+="CN71521"	"Motor Vehicle Leases"	="Workplace Authority"	18-Apr-08	="Fleet management services"	21-Sep-07	30-Jun-08	143000.00	=""	="Leaseplan Australia Ltd"	18-Apr-08 10:57 AM	

+="CN71523"	" DESICCANT CONTAINER "	="Defence Materiel Organisation"	18-Apr-08	="Desiccants"	16-Apr-08	02-Jul-08	18150.00	=""	="A & D INTERNATIONAL PTY LTD"	18-Apr-08 10:59 AM	

+="CN71524"	"Employer Advisor Programme"	="Workplace Authority"	18-Apr-08	="Work related organisations"	21-Sep-07	30-Jun-08	75883.50	=""	="National Retail Association Ltd"	18-Apr-08 11:04 AM	

+="CN71545-A1"	"Provision of Fitout works to the Brisbane unit of CRS Australia"	="CRS Australia"	18-Apr-08	="Building and Construction and Maintenance Services"	19-Apr-08	20-Apr-08	29942.00	=""	="Latin Interiors Pty Ltd"	18-Apr-08 12:02 PM	

+="CN71546"	"FAIRLEAD ASSEMBLY - ASLAV"	="Department of Defence"	18-Apr-08	="Armoured fighting vehicles"	17-Apr-08	10-Jan-09	15889.76	=""	="GENERAL DYNAMICS LAND SYSTEMS"	18-Apr-08 12:05 PM	

+="CN71548"	"Operating Lease for IT Equipment (MAR08)"	="Department of Foreign Affairs and Trade"	18-Apr-08	="Computer Equipment and Accessories"	18-Apr-08	17-Apr-11	757108.56	=""	="IBM GLOBAL FINANCING AUSTRALIA LIMITED"	18-Apr-08 12:46 PM	

+="CN71555"	"Personal Insect Repellant"	="Defence Materiel Organisation"	18-Apr-08	="Disinsectisation services"	18-Apr-08	07-Sep-08	38500.00	=""	="Colbar Q.S.R Pty Ltd"	18-Apr-08 01:27 PM	

+="CN71556"	"Legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	237000.00	=""	="Dr Hanak"	18-Apr-08 01:32 PM	

+="CN71557"	"Suspenders Individual Equipment Belt"	="Defence Materiel Organisation"	18-Apr-08	="Belts or suspenders"	18-Apr-08	11-Jul-08	55176.00	="CC1UNF"	="Gee Yan Industry Pty Ltd"	18-Apr-08 01:36 PM	

+="CN71559"	" VEHICLE REPAIRS "	="Department of Defence"	18-Apr-08	="Motor vehicles"	16-Apr-08	16-May-08	63461.89	=""	="RGM"	18-Apr-08 01:44 PM	

+="CN71560-A1"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	18-Apr-08	18-May-08	17926.15	=""	="MICKS AUTOS"	18-Apr-08 01:47 PM	

+="CN71561"	"VEHICLE REPAIRS"	="Department of Defence"	18-Apr-08	="Motor vehicles"	17-Apr-08	17-May-08	11039.60	=""	="MICKS AUTOS"	18-Apr-08 01:50 PM	

+="CN71562"	"contract for the provision of Information Technology Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Computer servers"	10-Mar-08	20-Jun-08	48279.00	=""	="Aurec"	18-Apr-08 01:54 PM	

+="CN71563"	"Assistance with publication of Portfolio Budget Statement"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Apr-08	13-May-08	44000.00	=""	="AA Services Pty Limited"	18-Apr-08 01:57 PM	

+="CN71564"	"Assessment of requirements,functional analysis and solution design for ARC database"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Apr-08	31-May-08	19008.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71565"	"Helicopter Charter For Locust Survey"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	05-Apr-08	11-Apr-08	27500.00	=""	="Heli-Aust Pty Ltd"	18-Apr-08 01:57 PM	

+="CN71566"	"Blackberry access and usage to 19 Feb 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	19-Jan-08	19-Feb-08	14313.09	=""	="Telstra Corporation Ltd"	18-Apr-08 01:57 PM	

+="CN71567"	"Marcus Clarke call costs 15/2/08 - 14/3/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	15-Feb-08	14-Mar-08	22665.50	=""	="AAPT Ltd"	18-Apr-08 01:57 PM	

+="CN71569-A1"	"Member of Dairy Quota Review Panel 2008, tasked to review the appropriateness, effectiveness and efficiency of current US & EU dairy quota administrative arrangements and identify areas where improvements to the quota management arrangements could be made."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	19-Mar-08	31-Jul-08	39265.29	=""	="David Harris"	18-Apr-08 01:58 PM	

+="CN71570"	"Press Advertising - 2009 Graduate Development Program in national and regional newspapers."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Marketing and distribution"	31-Mar-08	30-Jun-08	60000.00	=""	="HMA Blaze"	18-Apr-08 01:58 PM	

+="CN71571"	"Dairy Development March 2008"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	01-Mar-08	31-Mar-08	29700.00	=""	="Aladn System Solutions Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71572"	"Insurance policy for AQIS Meat Inspectors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	01-Jan-09	31750.00	=""	="Marsh Pty Ltd"	18-Apr-08 01:58 PM	

+="CN71573"	"Onsite tech 28/1/08 - 22/2/08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	28-Jan-08	22-Feb-08	10560.00	=""	="Telstra Business Systems"	18-Apr-08 01:58 PM	

+="CN71575"	"SUPPLY OF VETERINARY PHARMACEUTICALS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	22-Apr-08	29850.15	=""	="PROVET QUEENSLAND"	18-Apr-08 01:58 PM	

+="CN71577"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	40306.75	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71574"	"Cables Assemblies"	="Defence Materiel Organisation"	18-Apr-08	="Electrical wire and cable and harness"	18-Apr-08	29-Aug-08	108600.80	=""	="OWEN INTERNATIONAL"	18-Apr-08 01:59 PM	

+="CN71578"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	11737.00	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71579"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	24821.50	=""	="Department of Finance and Administration"	18-Apr-08 01:59 PM	

+="CN71580-A1"	"Privision of assistance in implementation of the animal welfare strategy communications strategy."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	31-Mar-08	30-Jun-08	25646.72	=""	="Lorraine Follett"	18-Apr-08 01:59 PM	

+="CN71576"	"Recruitment Services"	="Australian Securities and Investments Commission"	18-Apr-08	="Recruitment services"	22-Oct-07	19-May-08	53300.00	=""	="Law Solutions"	18-Apr-08 01:59 PM	

+="CN71581-A2"	"Closed - AQIS Contract Staff"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	09-Apr-08	31-Oct-08	900000.00	=""	="Workforce International"	18-Apr-08 01:59 PM	

+="CN71582"	"For professional services rendered during the period 18 February 2008 to 02 March 2008 AQIS contractor Phillip Livingstone."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	18-Feb-08	02-Mar-08	11550.00	=""	="M&T Resources"	18-Apr-08 02:00 PM	

+="CN71583"	"Contractor Michael Young"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	25-Feb-08	16-Mar-08	10048.50	=""	="Transformed Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71584"	"Temp staff services - Accounts Receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimited"	18-Apr-08 02:00 PM	

+="CN71585"	"Contract to supply DAFF with a framework and set of indicators to describe and quantify the social and economic impacts of forestry on a national, regional and local level."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	27-Jun-08	65000.00	=""	="Australian National University Fenner School of Environment and Society"	18-Apr-08 02:00 PM	

+="CN71586-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	07-Apr-08	30-Jun-08	60000.00	=""	="Northern Territory Department of Natural Resources, Environment and the Arts"	18-Apr-08 02:00 PM	

+="CN71587-A1"	"Testing services to the Australian Water Data Infrastructure Project, specifically testing of AWDI compliant web feature service implementations."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	79980.00	=""	="LISAsoft Pty Ltd"	18-Apr-08 02:00 PM	

+="CN71588"	"to ensure a simple english seamless report that is consistent in tone and style, a writer/ editor is required. There is no departmental member with the expertise to do this task over the period required"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-May-08	31-Oct-08	61750.00	=""	="WordsWorth Writing"	18-Apr-08 02:00 PM	

+="CN71589"	"Production of Cargo Merchandise - Cap"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	11550.00	=""	="Product Supply Solutions"	18-Apr-08 02:00 PM	

+="CN71590-A1"	"Copyediting Australia's State of the Forests 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Feb-08	30-Jun-08	22000.00	=""	="Biotext"	18-Apr-08 02:00 PM	

+="CN71591"	"Annual renewal of COGNOS software licences and support"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Computer services"	25-May-08	24-May-09	58572.69	=""	="COGNOS PTY LTD"	18-Apr-08 02:01 PM	

+="CN71592-A1"	" Provision of contractor services for continued work on the developement and maintenance of the National Agricultural Monitoring System database.  "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	14-Apr-08	30-Jun-08	100000.00	=""	="SMS Management & Technology"	18-Apr-08 02:01 PM	

+="CN71593"	"Analytical testing for the National Residue Survey - Program 8THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2948"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	38479.41	=""	="HPC Holdings Pty Ltd trading as Symbio Alliance"	18-Apr-08 02:01 PM	

+="CN71594-A4"	"Program Manager for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-May-08	30-Jun-10	621082.00	=""	="ICON RECRUITMENT PTY LTD"	18-Apr-08 02:01 PM	

+="CN71595"	"Professional services rendered by Glenn Thornton on Phase 3 of the Cargo Business Continuity Project."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Feb-08	30-Jun-08	14018.00	=""	="Ascent"	18-Apr-08 02:01 PM	

+="CN71596"	"CDAC Training Course"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	03-Jul-08	11825.00	=""	="Australian Public Service Commission"	18-Apr-08 02:01 PM	

+="CN71598"	"The supply of Certificate III in Government Folders to all AQIS regions."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Apr-08	12204.00	=""	="Addcolour digital Pty Ltd"	18-Apr-08 02:01 PM	

+="CN71599"	"Good Health - Great Future program 2008."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	17-Apr-08	30-Jun-08	55000.00	=""	="Health Futures"	18-Apr-08 02:01 PM	

+="CN71600"	"Enhancements to ARC and GMS databases"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	13-Mar-08	31-May-08	73260.00	=""	="F1 Solutions Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71601"	"Consultancy agreement for requirements gathering, design and development of a website for the Australian Animal Welfare Strategy (AAWS).THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 4162"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	16-Apr-07	30-Jun-08	67070.92	=""	="Parisfirst Partners Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71602-A2"	"Rental of Property in Karratha- 13 Armstrong Drive, Karratha WA 6714 - Rent increase"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Personal and Domestic Services"	01-Apr-08	31-Mar-10	177285.00	=""	="Pilbara Real Estate Pty Ltd"	18-Apr-08 02:02 PM	

+="CN71603"	"Switchboard operators for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	31-Mar-08	23499.42	=""	="Sirius Corporation Ltd"	18-Apr-08 02:02 PM	

+="CN71604-A1"	"Participation in the ?Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool? Project through: Provision of information on regional and State water quality guideline targets; Provision of example data in AWDI format, on which to base draft versions of the water quality tool (to design and set up system); Advice on the appropriateness and usefulness of the methods and visualisations that underpin the water quality tool; Provision of data in AWDI format, and support to run the case studies live (if this jurisdiction is chosen as a study area); and Attendance at project meetings and workshops."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	25-Mar-08	30-Jun-08	60000.00	=""	="Western Australia Department of Water"	18-Apr-08 02:02 PM	

+="CN71605-A1"	" Soil erosion project: a) provide an agreed approach which integrates with most recent developments in remote sensing and other techniques to monitor soil erosion loss be wind and b) identify the extent to which ground cover monitoring could provide a useful surrogate for the monitoring of soil erosion loss by wind and water, including the suitability of ground cover for use as a resource condition target at regional and national levels. "	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	01-Mar-08	30-Jun-08	30000.00	=""	="Department of Environment and Climate Change NSW"	18-Apr-08 02:02 PM	

+="CN71558"	"Building maintenance/handyman"	="Australian Securities and Investments Commission"	18-Apr-08	="Building and Construction and Maintenance Services"	26-Nov-07	28-Nov-08	22000.00	=""	="360 Facility Management"	18-Apr-08 02:03 PM	

+="CN71607"	"2 x 90 Evinrude Outboards - fit & remove old motors"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-Jun-08	16000.00	=""	="Wynnum Marine Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71608"	"Provision of ergonomic assessments for Management Services Division staff"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Comprehensive health services"	19-Mar-08	26-Jun-08	15000.00	=""	="Konekt Australia Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71609"	"Analytical testing for the National Residue Survey - Program 15THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2943"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	16995.00	=""	="National Measurement Institute"	18-Apr-08 02:03 PM	

+="CN71610-A1"	"Provide technical advice for the fisheries bycatch project"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	25000.00	=""	="Nicole Mazur t/a ENVision Environmental Consulting"	18-Apr-08 02:03 PM	

+="CN71611"	"Provision of Sorghum production data analysis for Queensland from 1990 to 2006 from Season Crop Outlook reports for the National Agricultural & Monitoring System"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	02-Jul-07	30-Jun-08	10000.00	=""	="Qld Department of Primary Industries & Fisheries"	18-Apr-08 02:03 PM	

+="CN71612"	"Bee export certification inspections @ $130.00 per hour"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	01-Mar-08	13-Mar-08	11147.50	=""	="NSW Department of Primary Industries"	18-Apr-08 02:03 PM	

+="CN71613-A1"	"Inventory plot measurement and sample plots, private native forests, Upper North East NSW Regional Forest."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	39600.00	=""	="Norfor Pty Ltd T/as Northern NSW Forestry Services"	18-Apr-08 02:03 PM	

+="CN71614"	"Works commissioned by Eugene Nolan"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Apr-08	30-Apr-08	11278.60	=""	="Orbit Communications Pty Ltd"	18-Apr-08 02:03 PM	

+="CN71615"	"Temp Staff services - Accounts receivables"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	03-Apr-08	30-Jun-08	21000.00	=""	="Careers Unlimted"	18-Apr-08 02:04 PM	

+="CN71616"	"Provision of training in the identification (diagnostics) of phytophagous mites (Acari)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	06-Apr-08	08-Jun-08	14220.90	=""	="Landcare Research New Zealand"	18-Apr-08 02:04 PM	

+="CN71617"	"Production of Cargo Pormotionl Product - Thermal Mug"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	14-Apr-08	30-Jun-08	28325.00	=""	="IM Promotions"	18-Apr-08 02:04 PM	

+="CN71618"	"Supply of veterinary drugs"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	20-May-08	21285.00	=""	="Parnell Laboratories"	18-Apr-08 02:04 PM	

+="CN71619"	"Staff training"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Education and Training Services"	28-Apr-08	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING PTY LTD"	18-Apr-08 02:04 PM	

+="CN71620"	"Printing of Sustainable Production Booklet (NLP National Component)"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Printed media"	01-Mar-08	31-Mar-08	12970.10	=""	="Paragon Printers Australia"	18-Apr-08 02:04 PM	

+="CN71621"	"Purchase of 1 x Leica MZ16 Stereomicroscope"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Tools and General Machinery"	16-Apr-08	30-May-08	13481.60	=""	="Leica Microsystems Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71622"	"1)Workshop and resolution on vocabulary management in registries and service metadata binding to vocabulary services2)Initial service profiles for AWDI, with tool capable of generating acceptable documentation(3)Publication (interim) of service profiles in registry infrastructure4)Report on the review of the formal documentation of the query model, with examples5)Brief overview of the alignment between AWDI and the emerging WOML profile"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	04-Apr-08	30-Jun-08	77000.00	=""	="CSIRO Land and Water"	18-Apr-08 02:04 PM	

+="CN71623"	"Training and assessment of offshore fumigators for the Australian Fumigation Accreditation Scheme in India, Thailand, Vietnam, Philippines, China, Malaysia and Indonesia.THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6448THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 6450"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	20-Apr-08	04-May-08	55000.00	=""	="Peter Meadows Consulting Pty Ltd"	18-Apr-08 02:04 PM	

+="CN71624"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	18262.75	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71625"	"ICON usage and charges"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Jan-08	31-Dec-08	12988.25	=""	="Department of Finance and Administration"	18-Apr-08 02:05 PM	

+="CN71626"	"Advertising Expenses"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	25000.00	=""	="HMA Blaze"	18-Apr-08 02:05 PM	

+="CN71627"	"Logistical arrangements for Workshop on Diagnostics of Phytophagous Mites (Kuala Lumpur, Malaysia 5-10 May 2008)."	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management advisory services"	05-Apr-08	24-May-08	49775.25	=""	="ASEANET, The South East Asian LOOP of BioNET International"	18-Apr-08 02:05 PM	

+="CN71628"	"Analytical Testing for the National Residue Survey - Program 1THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2921"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Insurance and retirement services"	01-Jul-06	30-Jun-08	33275.00	=""	="Department of Primary Industries Victoria - Werribee Centre"	18-Apr-08 02:05 PM	

+="CN71629"	"ABBOT POINT SHIP INSPECTIONS"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Human resources services"	15-Apr-08	30-Jun-08	32000.00	=""	="Department of Primary Industries and Fisheries QLD"	18-Apr-08 02:05 PM	

+="CN71630-A1"	"Regional Managers conference"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Apr-08	30-May-08	10920.00	=""	="Bellinzona Grange Country Retreat"	18-Apr-08 02:05 PM	

+="CN71631"	"Call costs for Mar 08"	="Department of Agriculture Fisheries and Forestry"	18-Apr-08	="Telecommunications media services"	01-Mar-08	31-Mar-08	31229.62	=""	="AAPT Ltd"	18-Apr-08 02:05 PM	

+="CN71632"	"Counsel fees"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	338100.00	=""	="Mr Cam H. Truong"	18-Apr-08 02:07 PM	

+="CN71532"	"Labour hire"	="Australian Securities and Investments Commission"	18-Apr-08	="Foreign languages resources"	01-Apr-08	30-Jun-08	56500.00	=""	="McQuillan & Associates Pty Ltd"	18-Apr-08 02:17 PM	

+="CN71634"	" Study - Foreign Illegal Fishing in Australian and Indonesian Waters "	="Department of Foreign Affairs and Trade"	18-Apr-08	="Business administration services"	20-Dec-07	27-Jun-08	150000.00	=""	="MRAG"	18-Apr-08 02:34 PM	

+="CN71635"	"legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	20-Mar-08	30-Jun-09	284000.00	=""	="Mr Philip Crutchfield"	18-Apr-08 02:36 PM	

+="CN71636"	" PROVISION OF FLAME PROOF STORAGE CABINETS "	="Defence Materiel Organisation"	18-Apr-08	="Storage"	18-Apr-08	02-Jun-08	32604.00	=""	="F G P COMPANY PTY LTD"	18-Apr-08 02:44 PM	

+="CN71637"	"legal services - counsel"	="Australian Securities and Investments Commission"	18-Apr-08	="Legal services"	17-Dec-07	30-Jun-09	70000.00	=""	="Mr Philip Crutchfield"	18-Apr-08 02:49 PM	

+="CN71638"	"Finance Conference"	="Australian Securities and Investments Commission"	18-Apr-08	="Hotels and lodging and meeting facilities"	21-Nov-07	23-Nov-07	31905.00	=""	="Stamford Plaza Melbourne"	18-Apr-08 03:28 PM	

+="CN71639"	"Conduct AAT 2008 User Survey, report & presentation of results incl estimated outlays"	="Administrative Appeals Tribunal"	18-Apr-08	="Market research"	07-Apr-08	31-Aug-08	45000.00	=""	="Profmark Consulting Pty Ltd"	18-Apr-08 03:30 PM	

+="CN71640"	" Printing of: NAT15209 - Save time do your business online.  Qty: 1,040,000 "	="Australian Taxation Office"	18-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Apr-08	30-Apr-08	26268.00	=""	="Canprint Communications"	18-Apr-08 03:34 PM	

+="CN71641"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	17-Mar-08	17-Mar-08	35443.38	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:42 PM	

+="CN71642"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Bulk transporters"	18-Mar-08	18-Mar-08	24000.00	=""	="TQUIP"	18-Apr-08 03:42 PM	

+="CN71643"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Communication equipment installation"	18-Mar-08	01-Jan-09	29680.06	=""	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71644"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Wireless internet gateway"	18-Mar-08	30-Jun-08	167738.98	="05/4934"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71645"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management"	18-Mar-08	18-Mar-08	14390.07	="07/13009"	="Commander Integrated Networks"	18-Apr-08 03:43 PM	

+="CN71646"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Passenger transport"	17-Mar-08	30-Mar-08	23933.00	=""	="Temka Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71647"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Local and long distance telephone communications"	17-Mar-08	30-Jun-08	22000.00	="07/13009"	="Servitel Communications Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71648"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	17-Mar-08	30-Jun-09	1098469.62	=""	="Knight Frank Australia Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71649"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	17-Mar-08	30-Jun-08	54340.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71650"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary research and development services"	17-Mar-08	30-Jun-08	49104.00	="WOT08/007"	="Arup Pty Ltd"	18-Apr-08 03:43 PM	

+="CN71651"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	14795.00	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71652"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military education"	18-Mar-08	30-Mar-08	19461.20	=""	="NIOA Trading"	18-Apr-08 03:44 PM	

+="CN71653"	"Services"	="Attorney-General's Department"	18-Apr-08	="Electronic computers or data processing equipment manufacture services"	19-Mar-08	30-Jun-08	67392.58	="05/4934"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71654"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Telecommunications cable"	19-Mar-08	03-Apr-08	102000.00	=""	="Telstra"	18-Apr-08 03:44 PM	

+="CN71655"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Outside plant telecommunications cable"	19-Mar-08	30-Jun-08	52000.00	=""	="The Trustee for DECCA Building"	18-Apr-08 03:44 PM	

+="CN71656"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	18-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:44 PM	

+="CN71657"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	05-Mar-09	15397.70	=""	="Dell Australia PTY Limited"	18-Apr-08 03:44 PM	

+="CN71658"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	18-Mar-08	21832.80	=""	="Digital Networks Australia"	18-Apr-08 03:44 PM	

+="CN71659"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	18-Mar-08	05-Mar-09	87007.27	="03/9344"	="Data#3 Ltd"	18-Apr-08 03:45 PM	

+="CN71660"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	18-Mar-08	18-Mar-08	27500.00	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71661"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Pharmaceutical filters or ultra filters"	13-Mar-08	31-Mar-08	13806.65	=""	="Scott Health and Safety"	18-Apr-08 03:45 PM	

+="CN71662"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Enhanced telecommunications services"	13-Mar-08	30-Jun-08	111783.60	=""	="Optus Billing Services Pty Ltd"	18-Apr-08 03:45 PM	

+="CN71663"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	13-Mar-08	13-Mar-08	16500.00	=""	="Indigenous Law Students and Lawyers"	18-Apr-08 03:45 PM	

+="CN71664"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Jun-08	62656.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:45 PM	

+="CN71665"	"Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	13-Mar-08	30-Jun-08	12355.20	="06#199427DOC"	="Australian Government Solicitor"	18-Apr-08 03:45 PM	

+="CN71666"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Public enterprises management or financial services"	12-Mar-08	12-Mar-08	81400.00	=""	="Paul Gerard Healey"	18-Apr-08 03:45 PM	

+="CN71667"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	12-Mar-08	12-Mar-08	13846.23	=""	="Staging Connections"	18-Apr-08 03:45 PM	

+="CN71668"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Building construction and support and maintenance and repair services"	12-Mar-08	31-Oct-10	11198.00	="07#50688DOC"	="Leda-Vannaclip Pty Limited"	18-Apr-08 03:46 PM	

+="CN71669"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office machinery or equipment manufacture services"	12-Mar-08	31-Jan-11	37177.17	="05/18399"	="ADT"	18-Apr-08 03:46 PM	

+="CN71670-A1"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Community and social services"	13-Mar-08	30-Jun-10	95844.89	="05/7573"	="IPS WORLDWIDE"	18-Apr-08 03:46 PM	

+="CN71671"	"Services"	="Attorney-General's Department"	18-Apr-08	="Diplomats security services"	14-Mar-08	14-Mar-08	10120.00	="07/12836"	="Intec 1 Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71672"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	16-May-08	19511.25	="06/18147"	="Face 2 Face Recruitment Pty Limited"	18-Apr-08 03:46 PM	

+="CN71673"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	43296.00	="06/18412"	="Verossity Pty Limited"	18-Apr-08 03:46 PM	

+="CN71674"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	57984.00	="06/18411"	="Oakton AA Services Pty Ltd"	18-Apr-08 03:46 PM	

+="CN71675"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary medical staffing needs"	14-Mar-08	28-Apr-08	21000.00	=""	="DR ANDREW ZDENKOWSKI"	18-Apr-08 03:46 PM	

+="CN71676"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Research programs"	13-Mar-08	30-Apr-08	44000.00	=""	="Department of Health & Ageing"	18-Apr-08 03:47 PM	

+="CN71677"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Completion tools and equipment"	14-Mar-08	30-Jun-08	79876.32	=""	="Hurlome Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71678"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	110000.00	="08/306"	="Aurec Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71679"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	14-Mar-08	14-Mar-08	31680.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71680"	"Services"	="Attorney-General's Department"	18-Apr-08	="Personnel recruitment"	14-Mar-08	30-Jun-08	79200.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71681"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	26-Mar-08	26-Mar-08	20146.00	=""	="Australian Communications and"	18-Apr-08 03:47 PM	

+="CN71682"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	27-Mar-08	30-Jun-08	539000.00	=""	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71683"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Personal computer television PC TV tuners"	27-Mar-08	19-Oct-08	11000.00	=""	="Department of Finance and"	18-Apr-08 03:47 PM	

+="CN71684"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	27-Mar-08	27-Mar-08	119276.52	="07/13009"	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:47 PM	

+="CN71685"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Consumer electronics"	27-Mar-08	30-Mar-08	15480.52	=""	="Electroboard Solutions Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71686"	"Software Maintenance"	="Attorney-General's Department"	18-Apr-08	="Software maintenance and support"	25-Mar-08	30-Jun-08	32143.65	=""	="Quest Software Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71687"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	25-Mar-08	31-Aug-08	76000.00	=""	="Staffing and Office Solutions"	18-Apr-08 03:48 PM	

+="CN71688"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Telecommunication devices TDD or teletypewriters TTY  for the physically challenged"	26-Mar-08	24-Jul-08	38347.82	="07/13009"	="3D Networks Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71689"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	26-Mar-08	30-Jun-08	11402.36	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71690"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Power supply transformers"	26-Mar-08	26-Mar-08	22606.70	=""	="Electricity Networks Corporation"	18-Apr-08 03:48 PM	

+="CN71691"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Building and Construction and Maintenance Services"	28-Mar-08	28-Mar-08	225000.00	=""	="Water Corporation"	18-Apr-08 03:48 PM	

+="CN71692"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Industrial machinery components and accessories"	31-Mar-08	30-Apr-08	11440.00	=""	="Xtek Pty Ltd"	18-Apr-08 03:48 PM	

+="CN71693"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Electronic and communication measuring and testing instruments"	31-Mar-08	30-Jun-08	133236.40	=""	="Owen International"	18-Apr-08 03:49 PM	

+="CN71694"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Storage tanks"	31-Mar-08	30-Jun-08	435000.00	=""	="Water Corporation"	18-Apr-08 03:49 PM	

+="CN71695"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Oil pumps"	31-Mar-08	31-Mar-08	17257.86	=""	="MAN DIESEL AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71696"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Facsimile units for office machines"	28-Mar-08	30-Apr-08	71995.00	=""	="RICOH AUSTRALIA PTY LTD"	18-Apr-08 03:49 PM	

+="CN71697"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	28-Mar-08	28-Mar-08	66048.29	=""	="Cybertrust Australia Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71698"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Forest or wilderness firefighting services"	28-Mar-08	31-Mar-08	157300.00	=""	="BUSHFIRE CRC LIMITED"	18-Apr-08 03:49 PM	

+="CN71699"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Wireless internet gateway"	28-Mar-08	31-Mar-08	10054.92	=""	="Amcom Pty Ltd"	18-Apr-08 03:49 PM	

+="CN71700"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Aircraft fuel tanks and systems"	28-Mar-08	28-Mar-08	55000.00	=""	="Water Corporation"	18-Apr-08 03:49 PM	

+="CN71701"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Satellites"	19-Mar-08	19-Mar-08	118809.74	=""	="Optus Billing Services Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71702"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Rescue service station"	20-Mar-08	30-Jun-08	14090.77	=""	="Fuelquip (Australia) Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71703"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sports event promotion and sponsorship"	20-Mar-08	20-Mar-08	13750.00	=""	="High Profile Exhibitions Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71704"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military police training"	20-Mar-08	30-Mar-08	236966.40	=""	="Tiger International - Precision"	18-Apr-08 03:50 PM	

+="CN71705"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	25-Mar-08	30-Jun-08	40000.00	=""	="AMA PTY LTD (Aust Medical Assoc.)"	18-Apr-08 03:50 PM	

+="CN71706"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Project management software"	19-Mar-08	31-Oct-08	218471.90	=""	="Tower Software"	18-Apr-08 03:50 PM	

+="CN71707"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29568.00	="08/166978"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:50 PM	

+="CN71708"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Military police training"	19-Mar-08	19-Mar-08	16058.68	=""	="Chemring Australia Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71709"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Private investigation services"	19-Mar-08	19-Mar-08	10000.00	=""	="Quality Management Solutions"	18-Apr-08 03:51 PM	

+="CN71710"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	19-Mar-08	30-Jun-08	29700.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71711"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Expert system software"	25-Mar-08	25-Mar-08	15480.00	="06/18396"	="Swell Design Group Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71712"	"Communications"	="Attorney-General's Department"	18-Apr-08	="Communications Devices and Accessories"	25-Mar-08	30-Jun-08	44000.00	=""	="Balfran Removals"	18-Apr-08 03:51 PM	

+="CN71713"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	14418.80	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71714"	"Security"	="Attorney-General's Department"	18-Apr-08	="Security or access control systems"	25-Mar-08	28-Aug-10	18068.60	="08#5659DOC"	="TAC Pacific Pty Ltd"	18-Apr-08 03:51 PM	

+="CN71715"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	25-Mar-08	16500.00	="06/18392"	="Verossity Pty Limited"	18-Apr-08 03:52 PM	

+="CN71716"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Safety or risk analysis"	25-Mar-08	25-Mar-08	37699.99	="07/17170"	="KPMG"	18-Apr-08 03:52 PM	

+="CN71717"	"Services"	="Attorney-General's Department"	18-Apr-08	="Staff recruiting services"	25-Mar-08	07-May-08	19800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71718"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Proprietary or licensed systems maintenance or support"	25-Mar-08	25-Mar-08	60000.00	=""	="Australian Radiation Protection &"	18-Apr-08 03:52 PM	

+="CN71719"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="National security"	25-Mar-08	01-Feb-09	15334.36	=""	="Chubb Security Aust Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71720"	"Network Module"	="Attorney-General's Department"	18-Apr-08	="Network gateway"	25-Mar-08	30-Jun-08	19392.73	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:52 PM	

+="CN71721"	"Furniture"	="Attorney-General's Department"	18-Apr-08	="Furniture"	28-Feb-08	26-Mar-08	18440.95	=""	="Australian Federal Police"	18-Apr-08 03:52 PM	

+="CN71722"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	26232.75	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:52 PM	

+="CN71723"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Feb-08	13-Feb-18	18487.71	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:53 PM	

+="CN71724"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	12383.40	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71725"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	18-Feb-18	17660.50	="06#195748DOC"	="Australian Government Solictor"	18-Apr-08 03:53 PM	

+="CN71726"	"Printing Services"	="Attorney-General's Department"	18-Apr-08	="Photocopiers"	29-Feb-08	19-Mar-08	12804.41	=""	="Fuji Xerox Australia PTY LTD"	18-Apr-08 03:53 PM	

+="CN71728"	"Legal professional services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	18-Feb-08	19-Mar-08	17775.45	="195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:53 PM	

+="CN71729"	"Career Development"	="Attorney-General's Department"	18-Apr-08	="Career development services"	21-Feb-08	31-Jul-08	11825.00	=""	="Australian Public Service"	18-Apr-08 03:53 PM	

+="CN71730"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Feb-08	30-Jun-08	18058.70	=""	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71731"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	28-Feb-08	31-Dec-08	11490.60	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:54 PM	

+="CN71732"	"Professional Services"	="Attorney-General's Department"	18-Apr-08	="Accounting and auditing"	28-Feb-08	30-Jul-08	20526.00	="07/16757"	="Deloitte Touche Tohmatsu"	18-Apr-08 03:54 PM	

+="CN71733"	"Professional fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	20-Feb-08	31-Jul-08	10285.00	="07/24134"	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:54 PM	

+="CN71734"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	13-Mar-08	30-Jun-08	64414.40	="06/10059"	="Synergy Innovations"	18-Apr-08 03:54 PM	

+="CN71735"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	14-Mar-08	30-Jun-08	93016.00	=""	="Bridge IT Engineering Pty Ltd"	18-Apr-08 03:55 PM	

+="CN71736"	"Software Upgrade"	="Attorney-General's Department"	18-Apr-08	="Software maintenance and support"	30-Jun-07	30-Jun-07	99000.00	=""	="Kaz Group Pty Limited"	18-Apr-08 03:55 PM	

+="CN71737"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	08-Feb-08	18-Feb-18	25292.59	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:55 PM	

+="CN71738"	"EQUIPMENT"	="Attorney-General's Department"	18-Apr-08	="Notebook computers"	12-Mar-08	29-Mar-08	12821.61	="07/566"	="SOUTH AUSTRALIA POLICE DEPT"	18-Apr-08 03:55 PM	

+="CN71739"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	14544.20	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71740"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	31-Dec-08	29411.80	="06#199427DOC"	="Australian Government Solictor"	18-Apr-08 03:55 PM	

+="CN71741"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	13-Mar-08	31-Dec-08	13341.90	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:55 PM	

+="CN71742"	"Equine Flu inquiry"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	06-Mar-08	25-Apr-08	76998.90	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:56 PM	

+="CN71743"	"Patient emergency Medivac"	="Attorney-General's Department"	18-Apr-08	="Emergency medical services long distance response LDR trauma packs"	07-Feb-08	28-Mar-08	58500.00	=""	="AVWEST PTY LTD"	18-Apr-08 03:56 PM	

+="CN71744"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	12-Mar-08	25-Apr-08	31528.00	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71745"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	14-Mar-08	24-Apr-08	13239.33	=""	="Robert James Anderson"	18-Apr-08 03:56 PM	

+="CN71746"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Mar-08	25-Apr-08	29700.00	=""	="James Gilkerson"	18-Apr-08 03:56 PM	

+="CN71747"	"Termite Control Services"	="Attorney-General's Department"	18-Apr-08	="Termite control services"	21-Dec-07	21-Dec-07	14150.00	="10190000"	="COCOS MANPOWER PTY LTD"	18-Apr-08 03:56 PM	

+="CN71748"	"Professional services"	="Attorney-General's Department"	18-Apr-08	="Communications vocational training services"	22-Feb-08	27-Feb-08	19250.00	=""	="LIFELINE CANBERRA INC"	18-Apr-08 03:56 PM	

+="CN71749"	"Professional Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	27-Feb-08	25-Apr-08	82500.00	=""	="Anthony J Meagher"	18-Apr-08 03:56 PM	

+="CN71750"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	18-Mar-08	11696.15	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71751"	"Telephone service"	="Attorney-General's Department"	18-Apr-08	="Local telephone service"	16-Feb-08	20-Mar-08	23062.81	=""	="Telstra"	18-Apr-08 03:57 PM	

+="CN71752"	"Consultant"	="Attorney-General's Department"	18-Apr-08	="Data base reporting software"	31-Jan-08	31-Jan-08	45225.65	=""	="Dr Theodor Krauthammer"	18-Apr-08 03:57 PM	

+="CN71753"	"Financial Review"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	22-Feb-08	30-Jun-08	12231.80	=""	="HMA BLAZE"	18-Apr-08 03:57 PM	

+="CN71754"	"Legal Research Services"	="Attorney-General's Department"	18-Apr-08	="Legal Research Services"	27-Feb-08	12-Mar-08	76819.03	=""	="Professor James Crawford"	18-Apr-08 03:57 PM	

+="CN71755"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	25-Feb-08	31-Dec-08	13700.40	=""	="NSW DEPT OF COMMUNITY SERVICES"	18-Apr-08 03:57 PM	

+="CN71756"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	16-Jan-08	31-Dec-18	13470.82	="06#195748DOC"	="Australian Government Solicitor"	18-Apr-08 03:57 PM	

+="CN71757"	"Legal Professional Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	19-Mar-08	25-Apr-08	79302.30	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Apr-08 03:58 PM	

+="CN71758"	"Consultancy Costs"	="Attorney-General's Department"	18-Apr-08	="Strategic planning consultation services"	06-Dec-07	29-Feb-08	16843.75	=""	="EXCELERATED CONSULTING PTY LTD"	18-Apr-08 03:58 PM	

+="CN71759"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	11-Feb-08	29-Feb-08	10298.47	=""	="Cantlie Recruitment"	18-Apr-08 03:58 PM	

+="CN71760"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	29-Jan-08	20-Feb-09	18901.85	="07/23004"	="Australian Government Solicitor"	18-Apr-08 03:58 PM	

+="CN71761"	"Professional Fees"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	14-Feb-08	20-Feb-08	29183.89	="07/23004"	="Victorian Government Solicitor's"	18-Apr-08 03:58 PM	

+="CN71762"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Electrical equipment and components and supplies"	06-Mar-08	07-Mar-08	21225.00	=""	="COCOS AUTOS/DIGGER SHED"	18-Apr-08 03:58 PM	

+="CN71764"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Business function specific software"	14-Mar-08	15-Feb-09	37119.19	="07/13009"	="Dimension Data Australia Pty Ltd"	18-Apr-08 03:58 PM	

+="CN71765"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Communications Devices and Accessories"	07-Mar-08	07-Mar-08	105000.01	=""	="Telstra"	18-Apr-08 03:59 PM	

+="CN71766"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Network channel or data service units"	07-Mar-08	30-May-08	128181.82	=""	="Telstra"	18-Apr-08 03:59 PM	

+="CN71767"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Surveillance and detection equipment"	07-Mar-08	07-Mar-08	20548.00	=""	="ACTIVE ENVIRONMENTAL SOLUTIONS"	18-Apr-08 03:59 PM	

+="CN71768"	"Services"	="Attorney-General's Department"	18-Apr-08	="National security"	04-Mar-08	28-Mar-08	12375.00	=""	="Electronic Technology Consulting"	18-Apr-08 03:59 PM	

+="CN71769"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Automotive computer systems"	05-Mar-08	30-Jun-08	18350.00	=""	="Powercorp Operations Pty Ltd"	18-Apr-08 03:59 PM	

+="CN71770"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Metal heating services"	05-Mar-08	30-Jun-08	14620.00	=""	="Abbotts Industrial Cooling"	18-Apr-08 04:00 PM	

+="CN71771"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="In service training and manpower development"	06-Mar-08	06-Mar-08	15688.40	=""	="ROYAL ON THE PARK"	18-Apr-08 04:00 PM	

+="CN71772"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	06-Mar-08	07-Mar-08	11760.21	=""	="Hotel Realm"	18-Apr-08 04:00 PM	

+="CN71773"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Ground support training systems"	11-Mar-08	11-Mar-08	106537.20	=""	="NIOA Trading"	18-Apr-08 04:00 PM	

+="CN71774"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	30-Jun-08	25600.00	="06/18392"	="Stratsec.Net Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71775"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Temporary legal staffing needs"	11-Mar-08	30-Jun-08	13764.30	=""	="Gillian Beaumont"	18-Apr-08 04:00 PM	

+="CN71776"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Sterilisation biological kits"	11-Mar-08	30-Mar-08	11500.01	=""	="St John Ambulance Australia Tasmani"	18-Apr-08 04:00 PM	

+="CN71777"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	11-Mar-08	47520.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:00 PM	

+="CN71778"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Hotels and lodging and meeting facilities"	07-Mar-08	30-Jun-08	130757.12	=""	="National Convention Centre"	18-Apr-08 04:01 PM	

+="CN71779"	"Services"	="Attorney-General's Department"	18-Apr-08	="Public enterprises management or financial services"	07-Mar-08	07-Mar-08	13200.00	="07/8967"	="Analytics Group"	18-Apr-08 04:01 PM	

+="CN71781"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Print advertising"	11-Mar-08	11-Mar-08	49995.22	=""	="HMA BLAZE"	18-Apr-08 04:01 PM	

+="CN71782"	"Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	11-Mar-08	18-May-08	43296.00	="06/18396"	="Verossity Pty Limited"	18-Apr-08 04:01 PM	

+="CN71783"	"Services"	="Attorney-General's Department"	18-Apr-08	="Ground support test or maintenance systems"	11-Mar-08	30-Jun-08	935000.00	=""	="Kaz Group Pty Limited"	18-Apr-08 04:01 PM	

+="CN71784"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	07-Apr-08	30-Jun-08	24200.00	=""	="WIZARD PERSONNEL & OFFICE"	18-Apr-08 04:01 PM	

+="CN71780"	" Fitout services for Level 25 / 324 Queen Street Brisbane. "	="Centrelink"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	25-Feb-08	30-Jun-08	66396.00	=""	="Quadric Pty Ltd"	18-Apr-08 04:01 PM	

+="CN71785"	"Vetting Services"	="Attorney-General's Department"	18-Apr-08	="Administrative fees or tax collection services"	20-Mar-08	30-Jun-08	10000.00	=""	="Sara Maree Minehan"	18-Apr-08 04:02 PM	

+="CN71786"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	17-Mar-08	08-Aug-08	181632.00	="07/18787"	="Finite Recruitment Pty ltd"	18-Apr-08 04:02 PM	

+="CN71787"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	23-Apr-08	41695.50	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:02 PM	

+="CN71788"	"Temporary Recruitment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	30-Jun-08	49280.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71789"	"Contract Services"	="Attorney-General's Department"	18-Apr-08	="Permanent technical staffing needs"	13-Mar-08	30-Apr-08	17127.00	="06/18397"	="Clicks Recruit Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71790"	"Rent, Car parking, cleaning & outgoings"	="Attorney-General's Department"	18-Apr-08	="Lease and rental of property or building"	08-Apr-08	30-Jun-09	214303.42	=""	="HAMIB Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71791"	"Vehicle lease"	="Attorney-General's Department"	18-Apr-08	="Motor vehicles"	16-Apr-08	30-Jun-08	43000.00	="AGD05/4581"	="LEASE PLAN AUSTRALIA LTD"	18-Apr-08 04:02 PM	

+="CN71792"	"Funding Model"	="Attorney-General's Department"	18-Apr-08	="Basic operations models"	18-Mar-08	30-Jun-08	19000.00	=""	="Malcolm Pascoe"	18-Apr-08 04:02 PM	

+="CN71793"	"Staffing"	="Attorney-General's Department"	18-Apr-08	="Temporary production staffing needs"	13-Mar-08	30-Jun-08	132352.00	=""	="10 Acres Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71794"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	02-Apr-08	44000.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:02 PM	

+="CN71795"	"Contract employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	14-Mar-08	23-Mar-08	36432.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71796"	"Services provided"	="Attorney-General's Department"	18-Apr-08	="Mass transfer equipment"	03-Mar-08	30-Jun-08	24497.00	="07#622510"	="Dell Australia PTY Limited"	18-Apr-08 04:03 PM	

+="CN71797"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Risk or hazard assessment"	04-Mar-08	04-Mar-08	17904.70	="06/12401"	="KPMG"	18-Apr-08 04:03 PM	

+="CN71798"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Education and Training Services"	04-Mar-08	04-Mar-08	19130.32	=""	="The Trustee for Wesfire Unit Trust"	18-Apr-08 04:03 PM	

+="CN71799"	"Phone Charges"	="Attorney-General's Department"	18-Apr-08	="Data services"	02-Apr-08	02-Apr-08	150000.00	=""	="Telstra"	18-Apr-08 04:03 PM	

+="CN71800"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	27-Mar-08	15-May-08	30800.00	="06/18414"	="Icon Recruitment Pty Ltd"	18-Apr-08 04:03 PM	

+="CN71801"	"Contract Employment"	="Attorney-General's Department"	18-Apr-08	="Temporary personnel services"	17-Mar-08	11-Apr-08	38720.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	18-Apr-08 04:03 PM	

+="CN71802"	"Legal Services"	="Attorney-General's Department"	18-Apr-08	="Legal services"	31-Mar-08	30-Nov-08	2750000.00	="07/13009"	="e.law Australia Pty Ltd"	18-Apr-08 04:03 PM	

+="CN71803"	"Goods and Services"	="Attorney-General's Department"	18-Apr-08	="Office furniture"	19-Dec-07	30-Mar-08	18849.60	=""	="Cite Office Design"	18-Apr-08 04:03 PM	

+="CN71806"	"One-off Referral fee - placement of officer"	="Office of the Director of Public Prosecutions"	18-Apr-08	="Human resources services"	18-Apr-08	18-Apr-08	10902.50	=""	="Hays Legal"	18-Apr-08 04:16 PM	

+="CN71808"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176. "	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	18-Apr-08	10-Jun-08	37813.16	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:20 PM	

+="CN71810"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE FREIGHT, ICA, 6.058M LG BY 2.438M W BY 2.591M H, 20 TONNE CAPACITY. QTY 10. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2560176."	="Defence Materiel Organisation"	18-Apr-08	="Containers and storage"	17-Apr-08	30-May-08	28394.21	=""	="SCF CONTAINERS INTERNATIONAL"	18-Apr-08 04:27 PM	

+="CN71811"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	30-Jun-08	30000.00	="Panel"	="VERIZON"	18-Apr-08 05:19 PM	

+="CN71812"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	31-Jan-10	351236.14	="ISEC007905"	="CONNELL WAGNER PTY LTD"	18-Apr-08 05:19 PM	

+="CN71813"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	07-Apr-08	31-Jan-10	175354.82	="ISEC007905"	="CONNELL WAGNER PTY LTD"	18-Apr-08 05:19 PM	

+="CN71814"	"Security Costs"	="Department of Finance and Deregulation"	18-Apr-08	="National Defence and Public Order and Security and Safety Services"	01-Jul-07	30-Jun-08	10598.00	=""	="CIC SECURE"	18-Apr-08 05:19 PM	

+="CN71815-A1"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Advertising"	08-Apr-08	30-Jun-08	1095750.00	="CN1192"	="MCCANN WORLDGROUP PTY LTD"	18-Apr-08 05:19 PM	

+="CN71816"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	22-Mar-08	20-Mar-09	180000.00	="FIN 05CRP004-41"	="ICON RECRUITMENT PTY LTD"	18-Apr-08 05:20 PM	

+="CN71817"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Mar-08	11-Apr-08	13200.00	="PR4790"	="DELL COMPUTER PTY LIMITED"	18-Apr-08 05:20 PM	

+="CN71818"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	01-Feb-08	30-Dec-08	27850.00	="N/A"	="PEOPLE & STRATEGY (ACT) PTY"	18-Apr-08 05:20 PM	

+="CN71819"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	12-Jun-08	74811.00	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	18-Apr-08 05:20 PM	

+="CN71820"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	25-Mar-08	30-Jun-08	18270.00	=""	="FRANKS PAINTING SERVICE"	18-Apr-08 05:20 PM	

+="CN71821"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	25-Apr-08	30000.00	="N/A"	="HAYS PERSONNEL SERVICES"	18-Apr-08 05:20 PM	

+="CN71822"	"HR Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	27-Jun-08	53430.00	="rft"	="HUDSON"	18-Apr-08 05:20 PM	

+="CN71823"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	31-Aug-08	171600.00	="rft"	="CORDELTA PTY LTD"	18-Apr-08 05:20 PM	

+="CN71824"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	30-Jun-08	231000.00	="FIN06AGI1014-15"	="UNIFY SOLUTIONS PTY LTD"	18-Apr-08 05:20 PM	

+="CN71825"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	25-Mar-08	25-Apr-08	34698.93	="06/06590"	="ZALLCOM PTY LTD"	18-Apr-08 05:21 PM	

+="CN71826"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	10500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71827"	"Energy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Power Generation and Distribution Machinery and Accessories"	28-Mar-08	30-Jun-08	17500.00	=""	="ACTEWAGL"	18-Apr-08 05:21 PM	

+="CN71828"	"Communication Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Mar-08	30-Jun-08	82500.00	=""	="ECOWISE SERVICES (AUSTRALIA) P/L"	18-Apr-08 05:21 PM	

+="CN71829"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	02-Apr-08	30-Apr-08	14421.19	="N/A"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:21 PM	

+="CN71830"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	26-Sep-08	100584.00	="n/a"	="GREYTHORN PTY LTD"	18-Apr-08 05:21 PM	

+="CN71831"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Apr-08	30-Jun-08	30000.00	="n/a"	="EXHIBIT SYSTEMS"	18-Apr-08 05:21 PM	

+="CN71832"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	04-Feb-08	30-Jun-08	14080.00	=""	="THE NOUS GROUP"	18-Apr-08 05:21 PM	

+="CN71833"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	22-Apr-08	33440.00	="N/A"	="PREDICATE PARTNERS PTY LTD"	18-Apr-08 05:21 PM	

+="CN71834"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Travel and Food and Lodging and Entertainment Services"	08-Apr-08	31-May-08	11485.21	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	18-Apr-08 05:22 PM	

+="CN71835"	"Minor Capital Acquisitions"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	12582.90	=""	="ROYAL AUSTRALIAN MINT"	18-Apr-08 05:22 PM	

+="CN71836"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Information Technology Broadcasting and Telecommunications"	11-Apr-08	30-Jun-08	21780.00	="N/A"	="TELELOGIC AUSTRLAIA PTY LTD"	18-Apr-08 05:22 PM	

+="CN71837"	"Contractor Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	08-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	18-Apr-08 05:22 PM	

+="CN71838"	"Training & Education Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Education and Training Services"	01-Jan-08	31-Dec-10	575000.00	="FIN06/CRP014"	="UNIVERSITY OF CANBERRA"	18-Apr-08 05:22 PM	

+="CN71839"	"Architectural Services"	="Department of Finance and Deregulation"	18-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	30-Jun-08	164300.40	="Pre Austender"	="SUTERS ARCHITECTS"	18-Apr-08 05:22 PM	

+="CN71840"	"Architectural Services"	="Department of Finance and Deregulation"	18-Apr-08	="Engineering and Research and Technology Based Services"	07-Apr-08	31-Dec-08	69741.65	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	18-Apr-08 05:22 PM	

+="CN71841"	"Travel - Insurance Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-09	487089.33	="Fin05/AMG002"	="INTERNATIONAL SOS (AUST) PTY LTD"	18-Apr-08 05:22 PM	

+="CN71842"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	18-Apr-08	="Building and Construction and Maintenance Services"	10-Apr-08	30-Jun-08	30516.15	="N/A"	="BAULDERSTONE HORNIBROOK PTY LTD"	18-Apr-08 05:23 PM	

+="CN71843"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	01-Feb-08	30-Jun-08	210000.00	="1596180"	="GEORGE PATTERSON Y & R PTY LTD"	18-Apr-08 05:23 PM	

+="CN71844"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	31-Mar-08	13500.00	="n/a"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71845"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	16-May-08	20000.00	="."	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	18-Apr-08 05:23 PM	

+="CN71846"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-May-08	32135.00	="0"	="DLA PHILLIPS FOX LAWYERS"	18-Apr-08 05:23 PM	

+="CN71847"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	21500.00	="N/A"	="PROTIVITI PTY LTD"	18-Apr-08 05:23 PM	

+="CN71848"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	04-Apr-08	30-Apr-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71849"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	16750.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:23 PM	

+="CN71850"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Apr-08	19250.00	="N/A"	="WALLAGA PTY LTD"	18-Apr-08 05:24 PM	

+="CN71851"	"Legal Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	38500.00	="N/A"	="BLAKE DAWSON - ACT"	18-Apr-08 05:24 PM	

+="CN71852"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	28-Nov-08	45000.00	="."	="BRUCE DONALD LAWYER AND CONSULTANT"	18-Apr-08 05:24 PM	

+="CN71853"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Nov-08	40000.00	="."	="OAKTON AA SERVICES PTY LTD"	18-Apr-08 05:24 PM	

+="CN71854"	"Accountancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Jun-08	30000.00	=""	="KPMG AUSTRALIA"	18-Apr-08 05:24 PM	

+="CN71855"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13500.00	="N/A"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	18-Apr-08 05:24 PM	

+="CN71856"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	31-May-08	13750.00	="N/A"	="DOYLE CONSULTANTS PTY LTD"	18-Apr-08 05:24 PM	

+="CN71857"	"Business Advisory Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	16-May-08	79684.00	="000000000000000"	="FUJITSU AUSTRALIA LIMITED"	18-Apr-08 05:24 PM	

+="CN71858"	"Consultancy Costs"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Dec-08	30000.00	="N/A"	="KROPP, JIM"	18-Apr-08 05:24 PM	

+="CN71859"	"IT System Development Services"	="Department of Finance and Deregulation"	18-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	76000.00	="000000000000000"	="FUNNELBACK PTY LTD"	18-Apr-08 05:25 PM	

+="CN71860"	"Supply of workstations and loose furniture"	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	689461.82	="RFT 2007-10"	="Schiavello (VIC) Pty Ltd"	19-Apr-08 02:28 PM	

+="CN71861"	" Supply of loose furniture "	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	53413.80	="RFT 2007-10"	="Designcraft"	19-Apr-08 02:31 PM	

+="CN71862"	"Supply of loose furniture"	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	81512.20	="RFT 2007-10"	="Cite Office Design Pty Ltd"	19-Apr-08 02:34 PM	

+="CN71863"	"Supply of loose furniture"	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	83844.20	="RFT 2007-10"	="Iken Commercial Interiors (ACT) Pty Ltd"	19-Apr-08 02:43 PM	

+="CN71864"	"Supply of loose furniture"	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	63602.00	="RFT 2007-10"	="Office Furniture Systems Pty Ltd"	19-Apr-08 02:47 PM	

+="CN71865"	"Supply of loose furniture"	="Australian Competition and Consumer Commission"	19-Apr-08	="Commercial and industrial furniture"	07-Jan-08	31-Mar-08	45750.56	="RFT 2007-10"	="Gregory Commercial Furniture Pty Ltd"	19-Apr-08 02:51 PM	

+="CN71866"	"VEHICLE REPAIRS"	="Department of Defence"	21-Apr-08	="Motor vehicles"	21-Apr-08	21-May-08	27143.33	=""	="MICKS AUTOS"	21-Apr-08 08:00 AM	

+="CN71867"	" Lease - Office Building "	="Workplace Authority"	21-Apr-08	="Lease and rental of property or building"	30-Aug-07	30-Jun-08	1568947.76	=""	="DEWR"	21-Apr-08 08:47 AM	

+="CN71868"	"R2 Service on kiowa A17-045"	="Defence Materiel Organisation"	21-Apr-08	="Aircraft"	21-Apr-08	30-Jun-08	278638.60	=""	="Helitech Pty Ltd"	21-Apr-08 09:08 AM	

+="CN71869"	"Procurement of Desktops & Monitors"	="Workplace Authority"	21-Apr-08	="Computer Equipment and Accessories"	31-Aug-07	27-Jun-08	21472.00	=""	="Dataflex"	21-Apr-08 09:12 AM	

+="CN71871"	"THE WRITING AND EDITING OF THE DEPARTMENT OF HUMAN SERVICES 2007-08 ANNUAL REPORT"	="Department of Human Services"	21-Apr-08	="Published Products"	16-Apr-08	31-Oct-08	44636.00	=""	="WORDSWORTH WRITING"	21-Apr-08 09:21 AM	

+="CN71872"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	07-Apr-08	11-May-08	16140.75	=""	="HENRY SCHEIN HALAS"	21-Apr-08 09:27 AM	

+="CN71870"	"Procurement of Desktops & Monitors"	="Workplace Authority"	21-Apr-08	="Computer Equipment and Accessories"	01-Sep-07	27-Jun-08	25630.00	=""	="Dataflex"	21-Apr-08 09:32 AM	

+="CN71873"	" BUILDING WORKS  TOTAL FUNDS INCREASED TO $897,930.80 - CN 40519 REFERS "	="Department of Human Services"	21-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	08-Apr-08	14-Apr-08	97930.80	=""	="SMI FITOUT PTY LTD"	21-Apr-08 09:36 AM	

+="CN71874"	" MEDICAL CONSUMABLE ITEM "	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	07-Apr-08	10-Jul-08	11440.00	=""	="GABB CHARLES & COMPANY P/L (QLD)"	21-Apr-08 09:39 AM	

+="CN71876"	"Maintenance & Observation Spectrophotometer"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	11-Apr-08	30-Apr-08	16500.00	=""	="University of Tasmania"	21-Apr-08 09:39 AM	

+="CN71877"	"Freight"	="Bureau of Meteorology"	21-Apr-08	="Transportation and Storage and Mail Services"	08-Apr-08	30-Apr-08	15060.33	=""	="TNT EXPRESS"	21-Apr-08 09:39 AM	

+="CN71878"	"Telecommunications Services"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	08-Apr-08	30-Apr-08	21599.96	=""	="Telstra  (ID No. 740)"	21-Apr-08 09:39 AM	

+="CN71879"	"Telecommunications Services"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	04-Apr-08	30-Apr-08	44508.20	=""	="Telstra  (ID No. 740)"	21-Apr-08 09:39 AM	

+="CN71880"	"Telecommunications Services"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	07-Apr-08	30-Apr-08	16117.15	=""	="Belong Pty Ltd (Formerly LEGION)"	21-Apr-08 09:39 AM	

+="CN71881"	"Seismometers"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	07-Apr-08	30-Apr-08	23346.45	=""	="Sercel Inc"	21-Apr-08 09:39 AM	

+="CN71882"	"Airfares"	="Bureau of Meteorology"	21-Apr-08	="Passenger transport"	08-Apr-08	30-Apr-08	12561.40	=""	="Australian Opco Pty Ltd"	21-Apr-08 09:40 AM	

+="CN71883"	"Annual Maint  & Licence Supp 01.10.07 to 30.09.08"	="Bureau of Meteorology"	21-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-Sep-08	31134.10	=""	="DOCUMENTCORP (CAD/CAM)"	21-Apr-08 09:40 AM	

+="CN71884"	"Telephone A/c"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	15-Apr-08	17-Apr-08	20033.10	=""	="Telstra  (ID No. 740)"	21-Apr-08 09:40 AM	

+="CN71885"	"Implement and operate GFE - 8th installment"	="Bureau of Meteorology"	21-Apr-08	="Computer services"	17-Apr-08	30-Apr-08	75495.70	=""	="US DEPT OF COMMERCE"	21-Apr-08 09:40 AM	

+="CN71886"	"Present Weather Sensor Qty 1"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	07-Apr-08	09-May-08	24189.00	=""	="Aqualab Scientific Pty Ltd"	21-Apr-08 09:40 AM	

+="CN71887"	"HDX 8004 Video Conferencing System"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	07-Apr-08	11-Apr-08	20466.60	=""	="COMMANDER INTEGRATED NETWORKS"	21-Apr-08 09:40 AM	

+="CN71888"	"HP Laserjet Qty 3"	="Bureau of Meteorology"	21-Apr-08	="Computer Equipment and Accessories"	07-Apr-08	22-Apr-08	16434.00	=""	="City Software Pty Ltd"	21-Apr-08 09:40 AM	

+="CN71889"	"Ship hire for Tsunami Buoy Deployment & Retreival"	="Bureau of Meteorology"	21-Apr-08	="Mail and cargo transport"	07-Apr-08	08-Apr-08	308000.00	=""	="Csiro Marine Research"	21-Apr-08 09:41 AM	

+="CN71890"	"Communication equipment (various)"	="Bureau of Meteorology"	21-Apr-08	="Telecommunications media services"	07-Apr-08	16-Apr-08	32662.24	=""	="COMMANDER INTEGRATED NETWORKS"	21-Apr-08 09:41 AM	

+="CN71891"	"Automatic Portable Air Sampler"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	08-Apr-08	30-Jun-08	11025.99	=""	="High Precision Devices Inc"	21-Apr-08 09:41 AM	

+="CN71892"	"Laser Precipitation Monitors Qry 3"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	08-Apr-08	30-May-08	18465.71	=""	="Marine Navaid Systems (Australia) P"	21-Apr-08 09:41 AM	

+="CN71893"	"10 DATA LOGGERS"	="Bureau of Meteorology"	21-Apr-08	="Measuring and observing and testing instruments"	10-Apr-08	16-May-08	14912.15	=""	="Campbell Scientific Australia"	21-Apr-08 09:41 AM	

+="CN71894"	"POWER TO AWS NEWMAN AIRPORT TOGETHER WITH 2 CONCRETE FOOTINGS"	="Bureau of Meteorology"	21-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-May-08	18920.00	=""	="Cape Range Electrical"	21-Apr-08 09:41 AM	

+="CN71895"	"REMOVE OBSOLETE CONCRETE & EXTEND FENCE AT NEWMAN AIRPORT"	="Bureau of Meteorology"	21-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	30-May-08	10142.00	=""	="Cape Range Electrical"	21-Apr-08 09:41 AM	

+="CN71875"	"Online Information Resource Renewal Fees"	="Australian Electoral Commission"	21-Apr-08	="Information services"	01-Nov-07	30-Apr-09	13077.30	=""	="Lexis Nexis Butterworths"	21-Apr-08 09:41 AM	

+="CN71896-A1"	"GFE Training Development Consultancy"	="Bureau of Meteorology"	21-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-Aug-08	21000.00	=""	="Sarah Prior"	21-Apr-08 09:42 AM	

+="CN71897"	"Various Hogen S- Series Spares"	="Bureau of Meteorology"	21-Apr-08	="Industrial Manufacturing and Processing Machinery and Accessories"	15-Apr-08	30-May-08	199792.53	=""	="Distributed Energy Systems"	21-Apr-08 09:42 AM	

+="CN71898"	"Procurement of desktops & monitors"	="Workplace Authority"	21-Apr-08	="Computer Equipment and Accessories"	01-Sep-07	27-Jun-08	25630.00	=""	="Dataflex"	21-Apr-08 09:52 AM	

+="CN71900"	"IT SERVICES"	="Department of Human Services"	21-Apr-08	="Computer Equipment and Accessories"	08-Apr-08	15-Apr-08	169620.00	=""	="ASG GROUP"	21-Apr-08 09:54 AM	

+="CN71902"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	21-Apr-08	="Motor vehicles"	21-Apr-08	24-Apr-08	11113.08	=""	="LAND ROVER AUSTRALIA"	21-Apr-08 09:56 AM	

+="CN71903"	" IT SOFTWARE "	="Department of Human Services"	21-Apr-08	="Software"	08-Apr-08	24-Apr-08	17161.54	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	21-Apr-08 10:06 AM	

+="CN71906"	"Fitout - Level 32, 35 Collins Street Melbourne"	="Workplace Authority"	21-Apr-08	="Property management services"	03-Sep-07	31-Dec-07	71184.30	=""	="Interiors Australia Pty Limited"	21-Apr-08 10:08 AM	

+="CN71907"	"Venue Hire Catering and Hiring of equipment"	="National Health and Medical Research Council"	21-Apr-08	="Travel and Food and Lodging and Entertainment Services"	07-Apr-08	18-Apr-08	36000.00	=""	="CROWNE PLAZA CANBERRA"	21-Apr-08 10:09 AM	

+="CN71908"	"Accomodation gor GRP Assigners meeting"	="National Health and Medical Research Council"	21-Apr-08	="Travel and Food and Lodging and Entertainment Services"	07-Apr-08	16-Apr-08	20000.00	="RFQ"	="NOVOTEL CANBERRA"	21-Apr-08 10:09 AM	

+="CN71388"	"Fitout - Collins Street, Melbourne"	="Workplace Authority"	21-Apr-08	="Property management services"	18-Sep-07	30-Oct-07	136158.00	=""	="Interiors Australia Pty Ltd"	21-Apr-08 10:10 AM	

+="CN71909"	"IT HARDWARE"	="Department of Human Services"	21-Apr-08	="Computer Equipment and Accessories"	08-Apr-08	24-Apr-08	82758.40	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	21-Apr-08 10:12 AM	

+="CN71910"	"Fitout - 255 Elizabeth Street, Sydney"	="Workplace Authority"	21-Apr-08	="Property management services"	03-Sep-07	31-Dec-07	427392.90	=""	="Interiors Australia Pty Ltd"	21-Apr-08 10:13 AM	

+="CN71911"	"Supply & Install Blockout Blinds - Level 32, 35 Collins Street Melbourne"	="Workplace Authority"	21-Apr-08	="Property management services"	03-Sep-07	31-Dec-07	10607.30	=""	="Interiors Australia Pty Ltd"	21-Apr-08 10:16 AM	

+="CN71915"	"Provision of Services in Relation to Anzac area - Gallipoli Peninsula, Turkey"	="Department of Veterans' Affairs"	21-Apr-08	="Business administration services"	14-Apr-08	30-Jun-09	60000.00	=""	="Perfect Latitude Pty Limited"	21-Apr-08 10:21 AM	

+="CN71916"	"for the provision of project management training and related services under a panel arrangment"	="Department of Veterans' Affairs"	21-Apr-08	="Specialised educational services"	07-Mar-08	02-Jul-08	89484.00	="TIPS/2007"	="Tanner James Management Consultants Pty Ltd"	21-Apr-08 10:21 AM	

+="CN71917"	"for the provision of project management training and related services under a panel arrangement"	="Department of Veterans' Affairs"	21-Apr-08	="Specialised educational services"	07-Mar-08	30-Jun-08	33600.00	="TIPS/2007"	="Australian College of Project Management Pty Ltd"	21-Apr-08 10:21 AM	

+="CN71918"	"for the provision of project management training and related services under a panel arrangement"	="Department of Veterans' Affairs"	21-Apr-08	="Specialised educational services"	07-Mar-08	17-Jun-08	20000.00	="TIPS/2007"	="NSW Technical & Further Education Commission"	21-Apr-08 10:21 AM	

+="CN71919"	"for the provision of project management training and related services under a panel arrangement"	="Department of Veterans' Affairs"	21-Apr-08	="Specialised educational services"	07-Mar-08	25-Jun-08	30714.00	="TIPS/2007"	="Australian Institute of Management NSW & ACT Training Centre Limited"	21-Apr-08 10:21 AM	

+="CN71920"	"Provision of design and project management services further to the 2004/05 upgrade of Hellfire Pass Memorial museum, Thailand (107132)"	="Department of Veterans' Affairs"	21-Apr-08	="Building construction and support and maintenance and repair services"	10-Apr-08	30-Jun-08	124771.00	=""	="Hewitt Pender Associates Pty Ltd"	21-Apr-08 10:21 AM	

+="CN71914"	" vehicles spare parts "	="Defence Materiel Organisation"	21-Apr-08	="Motor vehicles"	18-Apr-08	30-Apr-08	15312.00	=""	="CTI BATTERIES"	21-Apr-08 10:22 AM	

+="CN71912"	"Fitout - Levels 4 & 5, La Trobe Street Melbourne"	="Workplace Authority"	21-Apr-08	="Property management services"	18-Mar-08	19-Mar-08	3685842.27	=""	="Interiors Australia Pty Ltd"	21-Apr-08 10:23 AM	

+="CN71921"	"Legal Services"	="Workplace Authority"	21-Apr-08	="Legal services"	03-Sep-07	30-Sep-08	24101.33	=""	="Australian Government Solicitor (NSW)"	21-Apr-08 10:36 AM	

+="CN71904"	"Printing - Employer Advisory Programme"	="Workplace Authority"	21-Apr-08	="Publishing"	01-Sep-07	30-Jun-08	24413.40	=""	="Hermes Precisa Pty Ltd"	21-Apr-08 10:37 AM	

+="CN71925"	"Research into consumer views on Australian government community aged care programs"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	17-Apr-08	49326.00	=""	="The Open Mind Research Group Pty Lt"	21-Apr-08 10:46 AM	

+="CN71926"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	80400.00	="042/0506"	="CLAYTON UTZ"	21-Apr-08 10:46 AM	

+="CN71927"	"Printing and publication for Hearing Services Program"	="Department of Health and Ageing"	21-Apr-08	="Transportation and Storage and Mail Services"	01-Dec-07	01-May-08	20000.00	="218/0405"	="LEIGH MARDON AUSTRALASIA PTY LTD"	21-Apr-08 10:47 AM	

+="CN71928"	"Printing and publication for Hearing Services Program"	="Department of Health and Ageing"	21-Apr-08	="Transportation and Storage and Mail Services"	01-Dec-07	01-May-08	16000.00	="218/0405"	="LEIGH MARDON AUSTRALASIA PTY LTD"	21-Apr-08 10:47 AM	

+="CN71929"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	100000.00	=""	="Deacons"	21-Apr-08 10:47 AM	

+="CN71931"	"Procurement and funding training programs"	="Department of Health and Ageing"	21-Apr-08	="Education and Training Services"	01-Jan-08	30-Jun-08	76081.50	=""	="MAJOR TRAINING SERVICES PTY. LTD"	21-Apr-08 10:47 AM	

+="CN71932"	"Audio visual equipment for the sexual health and blood borne virus promotion workshop"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	02-Mar-08	17-Apr-08	13844.49	=""	="Blue Shadow Group Pty Ltd"	21-Apr-08 10:47 AM	

+="CN71933"	"Update of the Pharmacy Accessibility/Remoteness Index of Australia"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	42625.00	=""	="THE ADELAIDE RESEARCH & INNOVATION"	21-Apr-08 10:47 AM	

+="CN71934"	"Facilitation and documentation of planning workshop"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	18-Apr-08	10126.44	=""	="PALM CONSULTING GROUP PTY LTD"	21-Apr-08 10:48 AM	

+="CN71935-A1"	"Evaluation of the Diabetes Pilot Program - Diabetes Medication Assistance Service"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jun-10	444570.00	="002/0708"	="HEALTH OUTCOMES INTERNATIONAL PTY L"	21-Apr-08 10:48 AM	

+="CN71936"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Apr-08 10:48 AM	

+="CN71937"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	50000.00	="042/0506"	="CLAYTON UTZ"	21-Apr-08 10:48 AM	

+="CN71938"	"Community Aged Care - Viability supplement in Rural and remote areas"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Dec-06	18-Apr-08	367400.00	=""	="MEDICARE AUSTRALIA"	21-Apr-08 10:48 AM	

+="CN71939"	"Provision of Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-06	30-Jun-08	150000.00	="042/0506"	="DLA PHILLIPS FOX"	21-Apr-08 10:48 AM	

+="CN71930"	" VARIOUS MEDICAL CONSUMABLE ITEMS "	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	14-Apr-08	15-May-08	13866.60	=""	="ABBOTT DIAGNOSTICS DIVISION"	21-Apr-08 10:48 AM	

+="CN71940"	"Probity advice"	="Department of Health and Ageing"	21-Apr-08	="Financial and Insurance Services"	01-Nov-07	31-Dec-08	140000.00	="086/0607"	="GROSVENOR MANAGEMENT CONSUL"	21-Apr-08 10:48 AM	

+="CN71941"	"Professional services - Quality Assurance"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	106466.00	="163/0708"	="NATIONAL AGEING RESEARCH INST INC"	21-Apr-08 10:49 AM	

+="CN71942"	"Provision of Records Management Officer services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	16008.30	=""	="Wizard Personnel & Office Services"	21-Apr-08 10:49 AM	

+="CN71943"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	22110.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Apr-08 10:49 AM	

+="CN71944"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	60000.00	="042/0506"	="MINTER ELLISON"	21-Apr-08 10:49 AM	

+="CN71945"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="CLAYTON UTZ"	21-Apr-08 10:49 AM	

+="CN71946"	"Provision of  Legal Services"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Apr-08 10:49 AM	

+="CN71947"	"Scientific journal subscriptions"	="Department of Health and Ageing"	21-Apr-08	="Education and Training Services"	01-Jul-07	01-Jul-08	136789.94	=""	="SWETS INFORMATION SERVICES PTY LTD"	21-Apr-08 10:49 AM	

+="CN71948"	"State of our hospitals report 2008"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	30-Jun-08	30000.00	=""	="KANDREAM DIGITAL STUDIOS PTY LTD"	21-Apr-08 10:49 AM	

+="CN71949"	"Advice on Royal Flying Doctor Service funding agreement"	="Department of Health and Ageing"	21-Apr-08	="Financial and Insurance Services"	01-Apr-08	30-Jun-08	77600.00	="086/0607"	="RESOLUTION CONSULTING SERVICES PTY"	21-Apr-08 10:50 AM	

+="CN71950-A1"	"Scoping study on assistive technology for frail older people living in the community"	="Department of Health and Ageing"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	73086.00	="134/0405"	="URBIS PTY LTD"	21-Apr-08 10:50 AM	

+="CN71951"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	11-Apr-08	15-May-08	10171.70	=""	="INTERPATH SERVICES P/L"	21-Apr-08 11:09 AM	

+="CN71952"	"Hardware & equipment for ICT Sourcing Program"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	16-Apr-08	30-Jun-08	133344.68	=""	="SYNERGISTIC NETWORK SOLUTIONS"	21-Apr-08 11:17 AM	

+="CN71954-A1"	"Subscription for IT Leaders Advisor"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	16-Apr-08	28-Feb-10	84920.00	="06.382"	="GARTNER AUSTRALASIA PTY LTD"	21-Apr-08 11:17 AM	

+="CN71955-A1"	" Provision of IT contractor services. "	="Australian Taxation Office"	21-Apr-08	="Computer programmers"	17-Apr-08	01-Nov-10	340124.40	="RFT 005-2008"	="Ross Julia Ross"	21-Apr-08 11:18 AM	

+="CN71956"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	18-Apr-08	27-Apr-09	172260.00	=""	="COMPAS PTY LTD"	21-Apr-08 11:18 AM	

+="CN71957"	"IT Contractor"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	18-Apr-08	04-Nov-08	132704.00	="RFT 006-2008"	="COSMIC TECH SOLUTIONS PTY LTD"	21-Apr-08 11:18 AM	

+="CN71953"	" VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	15-Apr-08	13-May-08	28648.99	=""	="BAXTER HEALTHCARE P/L"	21-Apr-08 11:18 AM	

+="CN71958"	"HDI Support Centre Analyst 35 Attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	15-Apr-08	15-May-08	24161.50	=""	="HELP DESK ASSOCIATION AUSTRALASIA"	21-Apr-08 11:18 AM	

+="CN71959"	"Identity Manager IDM345 5 Attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	14-Apr-08	14-Apr-08	23628.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	21-Apr-08 11:18 AM	

+="CN71960"	"Tailored MS Windows 2003 Server training 8 attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	14-Apr-08	28-Apr-08	23092.00	=""	="EXCOM EDUCATION"	21-Apr-08 11:18 AM	

+="CN71961"	"VENUE HIRE/CATERING"	="Australian Taxation Office"	21-Apr-08	="Travel and Food and Lodging and Entertainment Services"	01-Apr-08	17-Apr-08	39184.00	=""	="RYDGES MELBOURNE"	21-Apr-08 11:18 AM	

+="CN71962"	"Supply and installation of RJ45 CAT6 Data outlets"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	15-Apr-08	30-Jun-08	12634.34	=""	="MRB COMMUNICATIONS PTY LTD"	21-Apr-08 11:18 AM	

+="CN71963"	"VENUE HIRE/CATERING"	="Australian Taxation Office"	21-Apr-08	="Travel and Food and Lodging and Entertainment Services"	01-Apr-08	17-Apr-08	39903.45	=""	="RYDGES MELBOURNE"	21-Apr-08 11:18 AM	

+="CN71964"	"DB2 Database Admin W/S 6 attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	15-Apr-08	30-May-08	26400.00	=""	="IBM AUSTRALIA LIMITED"	21-Apr-08 11:18 AM	

+="CN71965"	"STUDENT HECS FEES"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	25-Mar-08	16-Apr-08	11876.00	=""	="UNIVERSITY OF CANBERRA"	21-Apr-08 11:19 AM	

+="CN71966"	"Stress less workshop 68 attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	15-Apr-08	20-May-08	14950.00	=""	="HELP DESK ASSOCIATION AUSTRALASIA"	21-Apr-08 11:19 AM	

+="CN71967"	"LEGAL COSTS"	="Australian Taxation Office"	21-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	15-Apr-08	18975.00	=""	="LORRAINE B PRICE"	21-Apr-08 11:19 AM	

+="CN71968"	"DISPOSAL OF SEIZED GOODS"	="Australian Taxation Office"	21-Apr-08	="Transportation and Storage and Mail Services"	09-Apr-08	14-Apr-08	10733.25	=""	="Accord Transport"	21-Apr-08 11:19 AM	

+="CN71969"	"RECRUITMENT"	="Australian Taxation Office"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	16-Apr-08	34788.87	=""	="Hudson Global Resources (Aust) P/L"	21-Apr-08 11:20 AM	

+="CN71970"	"ONLINE SERVICES"	="Australian Taxation Office"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	09-Apr-08	16-Apr-08	10304.10	=""	="ESPREON PROPERTY SERVICES"	21-Apr-08 11:20 AM	

+="CN71971"	"INTERNET"	="Australian Taxation Office"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	16-Apr-08	38525.87	=""	="TELSTRA"	21-Apr-08 11:20 AM	

+="CN71972"	"RECRUITMENT"	="Australian Taxation Office"	21-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	15-Apr-08	11577.60	=""	="ICON RECRUITMENT"	21-Apr-08 11:20 AM	

+="CN71973"	"RECRUITMENT"	="Australian Taxation Office"	21-Apr-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	15-Apr-08	22929.95	=""	="Hudson Global Resources (Aust) P/L"	21-Apr-08 11:20 AM	

+="CN71974"	"Venue hire 26-31 March 1-4 April 2008"	="Australian Taxation Office"	21-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	04-May-08	18240.00	=""	="NOVOTEL CANBERRA"	21-Apr-08 11:22 AM	

+="CN71975"	"Legal services"	="National Competition Council"	21-Apr-08	="Legal services"	03-Mar-08	13-Mar-08	10170.82	=""	="Clayton Utz"	21-Apr-08 11:23 AM	

+="CN71976"	"IT Contractor Extension RFT 010-2007"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	15-Apr-08	14-Apr-09	196560.00	=""	="ICOGNITION PTY LTD"	21-Apr-08 11:24 AM	

+="CN71977"	"Provisioning of power circuits"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	15-Apr-08	30-Jun-08	63800.00	=""	="ARA Property Services Australia"	21-Apr-08 11:24 AM	

+="CN71978"	"IT Contractor"	="Australian Taxation Office"	21-Apr-08	="Engineering and Research and Technology Based Services"	16-Apr-08	17-Jul-08	79061.12	=""	="DIVERSITI PTY LTD"	21-Apr-08 11:24 AM	

+="CN71979"	"introduction to Microfocus 7 Attendees"	="Australian Taxation Office"	21-Apr-08	="Education and Training Services"	11-Apr-08	24-Apr-08	26100.00	=""	="MICRO FOCUS PTY LTD"	21-Apr-08 11:24 AM	

+="CN71901"	"Printing & Publication Services - Employer Advisory Programme"	="Workplace Authority"	21-Apr-08	="Publishing"	01-Sep-07	30-Sep-08	13156.00	=""	="Hermes Precisa Pty Ltd"	21-Apr-08 11:25 AM	

+="CN71491"	"Publishing - Fairness Test"	="Workplace Authority"	21-Apr-08	="Publishing"	19-Sep-07	31-Dec-07	11651.39	=""	="Hermes Precisa Pty Ltd"	21-Apr-08 11:26 AM	

+="CN71490"	"Professional Services - Fairness Test"	="Workplace Authority"	21-Apr-08	="Work related organisations"	19-Sep-07	30-Jun-08	87479.56	=""	="Walter and Turnbull Pty Ltd"	21-Apr-08 11:35 AM	

+="CN71980"	"Election Advertising"	="Australian Electoral Commission"	21-Apr-08	="Advertising"	01-Oct-02	30-Jun-08	46573.12	=""	="HMA Blaze"	21-Apr-08 11:39 AM	

+="CN71405"	"Update online tutorial - Agreement Making"	="Workplace Authority"	21-Apr-08	="Work related organisations"	18-Sep-07	31-Oct-07	28994.63	=""	="Cubic Consulting"	21-Apr-08 11:39 AM	

+="CN71981"	"Property Lease - Division of Petrie"	="Australian Electoral Commission"	21-Apr-08	="Lease and rental of property or building"	15-May-08	14-May-09	46000.00	=""	="Westfield Management Limited"	21-Apr-08 11:44 AM	

+="CN71367"	"Ethernet Services upgrade"	="Workplace Authority"	21-Apr-08	="Temporary information technology networking specialists"	17-Sep-07	30-Sep-08	71327.30	=""	="Nextgen Networks Pty Ltd"	21-Apr-08 11:45 AM	

+="CN71982"	" MEDICAL CONSUMABLE ASSOCIATED ITEM "	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	14-Apr-08	15-May-08	19320.84	=""	="UNOMEDICAL"	21-Apr-08 11:46 AM	

+="CN71305"	"IT Services - Focus Groups"	="Workplace Authority"	21-Apr-08	="Information technology consultation services"	27-Aug-07	30-Jun-08	15265.80	=""	="Colmar Brunton Social Research"	21-Apr-08 11:46 AM	

+="CN71176"	"Professional Services"	="Workplace Authority"	21-Apr-08	="Government auditing services"	12-Mar-08	30-Jun-08	90437.25	=""	="Deloitte Touche Tohmatsu- Sydney"	21-Apr-08 12:09 PM	

+="CN71986"	"SEALING COMPOUND"	="Defence Materiel Organisation"	21-Apr-08	="Adhesives and sealants"	21-Apr-08	12-Jun-08	10622.04	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	21-Apr-08 12:09 PM	

+="CN71988-A4"	"Provision of technical advice on information sharing processes and procedures"	="Australian Taxation Office"	21-Apr-08	="Business and corporate management consultation services"	27-Apr-08	31-Dec-08	277099.00	=""	="Dale Boucher"	21-Apr-08 12:09 PM	

+="CN71991"	"Purchase Defence NSN 5985-01-291-8048 Waveguide Horn Antenna"	="Defence Materiel Organisation"	21-Apr-08	="Surveillance and detection equipment"	20-Feb-08	30-Apr-08	21560.00	=""	="Faraday Pty Ltd"	21-Apr-08 01:13 PM	

+="CN71990"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-May-08	12409.10	=""	="LAND ROVER AUSTRALIA"	21-Apr-08 01:13 PM	

+="CN71992"	"MOROR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-May-08	19404.00	=""	="LANDROVER"	21-Apr-08 01:17 PM	

+="CN71993"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Apr-08	18-May-08	23727.75	=""	="LAND ROVER AUSTRALIA"	21-Apr-08 01:21 PM	

+="CN71994"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Apr-08	18-May-08	19404.00	=""	="LANDROVER"	21-Apr-08 01:25 PM	

+="CN71995"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Apr-08	18-May-08	31042.55	=""	="LANDROVER"	21-Apr-08 01:29 PM	

+="CN71996"	"Purchase of Defence NSN 5995-01-517-5117 Cable Assembly Radio Frequency"	="Defence Materiel Organisation"	21-Apr-08	="Surveillance and detection equipment"	20-Feb-08	30-Apr-08	58407.13	=""	="TMG Test Equipment"	21-Apr-08 01:29 PM	

+="CN71997"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Apr-08	18-May-08	10223.84	=""	="LANDROVER"	21-Apr-08 01:33 PM	

+="CN71998"	"Purchase of Defence NSN 5935-01-295-0656 Maintenance Kit Electrical Connector"	="Defence Materiel Organisation"	21-Apr-08	="Surveillance and detection equipment"	13-Mar-08	22-May-08	35970.00	=""	="Crimp Tech Australia Pty Ltd"	21-Apr-08 01:41 PM	

+="CN71163-A1"	"Translation and printing for CA, GA and AWAs"	="Workplace Authority"	21-Apr-08	="Work related organisations"	23-Aug-07	30-Jun-08	117722.79	=""	="HMA Blaze Pty Ltd"	21-Apr-08 01:43 PM	

+="CN71999"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	09-Apr-08	11-May-08	11262.79	=""	="SYMBION PHARMACY SERVICES"	21-Apr-08 01:47 PM	

+="CN72000"	"VARIOUS MEDICAL CONSUMABLE ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	09-Apr-08	11-May-08	28135.16	=""	="SYMBION PHARMACY SERVICES"	21-Apr-08 01:56 PM	

+="CN72002"	" VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	08-Apr-08	11-May-08	23307.90	=""	="SIGMA PHARMACEUTICALS P/L"	21-Apr-08 02:14 PM	

+="CN71162"	"Cleaning"	="Workplace Authority"	21-Apr-08	="General building and office cleaning and maintenance services"	23-Aug-07	30-Jun-08	17065.62	=""	="Glad Commercial Cleaning"	21-Apr-08 02:26 PM	

+="CN71161"	"Employer Advisory Programme - Printing"	="Workplace Authority"	21-Apr-08	="Work related organisations"	28-Aug-07	30-Jun-08	41500.00	=""	="Fox Badger Ferrett Pty Ltd"	21-Apr-08 02:28 PM	

+="CN72005"	" Printing - Online Agreement Awareness Campaign "	="Workplace Authority"	21-Apr-08	="Publishing"	04-Sep-07	30-Sep-08	11023.65	=""	="HMA Blaze Pty Ltd"	21-Apr-08 02:43 PM	

+="CN72003"	"NSN 1560-01-034-9529, Aircraft Camera Window Assemblies"	="Defence Materiel Organisation"	21-Apr-08	="Aerospace systems and components and equipment"	25-Mar-08	29-Apr-08	11394.55	=""	="Milspec Services Pty Ltd"	21-Apr-08 02:52 PM	

+="CN72008"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	08-Apr-08	11-May-08	35089.19	=""	="SYMBION PHARMACY SERVICES"	21-Apr-08 02:53 PM	

+="CN72009-A2"	"Audit Services"	="Australian Federal Police"	21-Apr-08	="Audit services"	10-Dec-07	30-Apr-08	180948.00	="RFT 01-2005"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	21-Apr-08 02:53 PM	

+="CN72007"	"Sign Fittings - Workplace Authority Buildings"	="Workplace Authority"	21-Apr-08	="Signage and accessories"	05-Sep-07	30-Jun-08	27626.50	=""	="Signcraft Pty Ltd"	21-Apr-08 02:55 PM	

+="CN72010"	"NSN 2915-00-821-4850, Valve Parts Kits"	="Defence Materiel Organisation"	21-Apr-08	="Aerospace systems and components and equipment"	28-Mar-08	26-Jan-09	42968.75	=""	="Milspec Services Pty Ltd"	21-Apr-08 03:00 PM	

+="CN72011"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	06-Sep-07	30-Jun-08	29707.64	=""	="Julia Ross Personnel"	21-Apr-08 03:03 PM	

+="CN72012"	"NSN 3110-00-902-3733, Needle Roller Bearings"	="Defence Materiel Organisation"	21-Apr-08	="Aerospace systems and components and equipment"	27-Mar-08	14-Aug-08	10495.32	=""	="Milspec Services Pty Ltd"	21-Apr-08 03:07 PM	

+="CN72014"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	46045.75	=""	="Hays Personnel Services (Australia)"	21-Apr-08 03:10 PM	

+="CN72015"	"NSN 5331-00-910-6629, O-Rings - Replaces PO 6S49EM and PO 6S49S6"	="Defence Materiel Organisation"	21-Apr-08	="Aerospace systems and components and equipment"	19-Mar-08	30-Apr-08	22888.80	=""	="Milspec Services Pty Ltd"	21-Apr-08 03:15 PM	

+="CN72016"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	08-Apr-08	11-May-08	10775.17	=""	="SYMBION PHARMACY SERVICES"	21-Apr-08 03:25 PM	

+="CN72018"	"Secure Destruction Services"	="Workplace Authority"	21-Apr-08	="Recycling services"	18-Dec-07	30-Jun-08	15795.30	=""	="Recall Information Management"	21-Apr-08 03:27 PM	

+="CN72021"	"PAYROLL SERVICES"	="Department of Human Services"	21-Apr-08	="Financial and Insurance Services"	18-Mar-08	30-Jun-08	42438.00	=""	="CENTRELINK"	21-Apr-08 03:33 PM	

+="CN72022"	"PHARMACEUTICAL ASSOCIATED ITEM"	="Defence Materiel Organisation"	21-Apr-08	="Medical health associations"	07-Apr-08	11-May-08	45738.00	=""	="MEDICAL DEVELOPMENTS INTERNATIONAL LTD"	21-Apr-08 03:33 PM	

+="CN72023"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	54987.05	=""	="Hudson Global Resources (Aust) Pty Ltd"	21-Apr-08 03:39 PM	

+="CN72017-A1"	"Publications - CA, GA and AWAs"	="Workplace Authority"	21-Apr-08	="Publishing"	23-Jul-07	30-Jun-08	23784.97	=""	="HMA Blaze Pty Ltd"	21-Apr-08 03:40 PM	

+="CN67366-A1"	"Provision of an eRecruitment system."	="Australian Communications and Media Authority (ACMA)"	21-Apr-08	="Computer services"	20-Mar-08	19-Mar-10	83000.00	="07/ACMA049"	="NGA.Net Pty Ltd"	21-Apr-08 03:42 PM	

+="CN72024-A1"	"Recruitment Services"	="Australian Taxation Office"	21-Apr-08	="Recruitment services"	28-Mar-08	01-Aug-08	50305.00	="06.042"	="Hudson Global Resources (Aust) Pty Limited"	21-Apr-08 03:48 PM	

+="CN67483"	"Provision of Psychological Support Services for ACMA staff."	="Australian Communications and Media Authority (ACMA)"	21-Apr-08	="Employee assistance programs"	28-Mar-08	27-Mar-11	30000.00	="06/ACMA041"	="Access Programs Australia Ltd"	21-Apr-08 03:53 PM	

+="CN72027"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	23-Jul-07	30-Jun-08	74700.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	21-Apr-08 03:53 PM	

+="CN72013"	" Employee Advisor Programme "	="Workplace Authority"	21-Apr-08	="Work related organisations"	06-Sep-07	30-Jun-08	44000.00	=""	="ACT & Region Chamber of Commerce & Industry"	21-Apr-08 03:56 PM	

+="CN72029"	"Provision of Cultural Awareness Training Services"	="Australian Federal Police"	21-Apr-08	="Computer based training software"	08-Jan-08	28-Mar-08	36850.00	="65-2006"	="Australian Volunteers International"	21-Apr-08 03:57 PM	

+="CN72030"	"Aviation spares for AS350BA Squirrel Helicopter Fleet, A22N.  'Tool Kit, Internal Combustion Engine, NSN: 5180-14-387-2640."	="Defence Materiel Organisation"	21-Apr-08	="Military rotary wing aircraft"	21-Apr-08	06-Jan-09	48636.72	=""	="Boeing Australia, Ltd."	21-Apr-08 04:02 PM	

+="CN72031"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	117721.70	=""	="Hudson Global Resources (Aust) Pty Ltd"	21-Apr-08 04:03 PM	

+="CN72034"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	04-Mar-08	30-Apr-08	130325.60	=""	="Select Appointments"	21-Apr-08 04:08 PM	

+="CN72028"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	23-Jul-07	30-Jun-08	33337.88	=""	="Hudson Global Resources (Aust) Pty Ltd"	21-Apr-08 04:10 PM	

+="CN72035"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	24-Jul-07	30-Jun-08	40256.48	=""	="Select Appointments"	21-Apr-08 04:11 PM	

+="CN72033-A1"	"Printing CA, GA and AWA's"	="Workplace Authority"	21-Apr-08	="Publishing"	24-Jul-07	30-Jun-08	159443.50	=""	="HMA Blaze Pty Ltd"	21-Apr-08 04:12 PM	

+="CN72036"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	24-Jul-07	30-Jun-08	20576.44	=""	="Hays Personnel Services (Australia)"	21-Apr-08 04:13 PM	

+="CN72037"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	24-Jul-07	30-Jun-08	10006.44	=""	="Hays Personnel Services (Australia)"	21-Apr-08 04:16 PM	

+="CN72038"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	24-Jul-07	24-Jul-07	16606.86	=""	="Hays Personnel Services (Australia)"	21-Apr-08 04:21 PM	

+="CN72039"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	25-Jul-07	30-Jun-08	11586.96	=""	="Hays Personnel Services (Australia)"	21-Apr-08 04:24 PM	

+="CN72040"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	25-Jul-07	30-Jun-08	33449.62	=""	="Julia Ross Personnel"	21-Apr-08 04:26 PM	

+="CN72032"	"Printing Publications"	="Workplace Authority"	21-Apr-08	="Publishing"	18-Dec-07	30-Jun-08	149000.00	=""	="IT Direct Australia Pty Ltd"	21-Apr-08 04:27 PM	

+="CN72041"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	25-Jul-07	30-Jun-08	41694.14	=""	="Julia Ross Personnel"	21-Apr-08 04:29 PM	

+="CN72006"	" Independent Audit Committee Chairperson "	="Workplace Authority"	21-Apr-08	="Audit services"	12-Mar-08	31-Jul-08	26000.00	=""	="Securas Pty Ltd"	21-Apr-08 04:29 PM	

+="CN71160"	" Property Rental "	="Workplace Authority"	21-Apr-08	="Lease and rental of property or building"	22-Aug-07	30-Jun-08	386196.73	=""	="United Group Services - Property AC"	21-Apr-08 04:30 PM	

+="CN72042"	"Supply of workstations and loose furniture for ACCC Adelaide"	="Australian Competition and Consumer Commission"	21-Apr-08	="Commercial and industrial furniture"	08-Apr-08	27-Jun-08	185001.30	="RFT 2007-10"	="Schiavello (VIC) Pty Ltd"	21-Apr-08 04:31 PM	

+="CN71009"	"License componentry for Infra System"	="Workplace Authority"	21-Apr-08	="Software"	29-Aug-07	27-Jun-08	1890673.13	=""	="DEEWR"	21-Apr-08 04:33 PM	

+="CN72045"	"Supply of loose furniture for ACCC Adelaide"	="Australian Competition and Consumer Commission"	21-Apr-08	="Commercial and industrial furniture"	08-Apr-08	27-Jun-08	23469.60	="RFT 2007-10"	="Cite Office Design Pty Ltd"	21-Apr-08 04:35 PM	

+="CN72047"	"Supply of loose furniture for ACCC Adelaide"	="Australian Competition and Consumer Commission"	21-Apr-08	="Commercial and industrial furniture"	08-Apr-08	27-Jun-08	13986.50	="RFT 2007-10"	="Iken Commercial Interiors (ACT) Pty Ltd"	21-Apr-08 04:39 PM	

+="CN72046"	"Postage & Freight"	="Workplace Authority"	21-Apr-08	="Postal and small parcel and courier services"	30-Jun-08	30-Jun-08	53182.20	=""	="TNT Domestic & International"	21-Apr-08 04:40 PM	

+="CN70920"	"Transport Services"	="Workplace Authority"	21-Apr-08	="Transportation services equipment"	12-Mar-08	30-Jun-08	159058.00	=""	="North Sydney Bus Charters"	21-Apr-08 04:51 PM	

+="CN70918"	"Professional Services - Fairness Test"	="Workplace Authority"	21-Apr-08	="Work related organisations"	29-Aug-07	30-Jun-08	38280.00	=""	="BSR Solutions"	21-Apr-08 04:54 PM	

+="CN70823"	"1st Quarter Services Charges"	="Workplace Authority"	21-Apr-08	="Management and Business Professionals and Administrative Services"	28-Aug-07	30-Jun-08	2558866.20	=""	="DEEWR"	21-Apr-08 04:55 PM	

+="CN72048"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	30130.46	=""	="Julia Ross Personnel"	21-Apr-08 04:58 PM	

+="CN72049"	"Recruitment Services"	="Workplace Authority"	21-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	46608.33	=""	="Hays Personnel Services (Australia)"	21-Apr-08 05:00 PM	

+="CN72050-A5"	"Provision of specialist technical advice for National Broadband Network"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Public Utilities and Public Sector Related Services"	20-Mar-08	17-Apr-09	1476522.82	="DCON/07/232"	="GIBSON QUAI - AAS PTY LTD"	21-Apr-08 05:07 PM	

+="CN72051-A6"	"Provision of specialist investment, financial and commercial advice relating to the NBN"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Public Utilities and Public Sector Related Services"	17-Mar-08	17-May-09	3130888.65	="DCON/07/234"	="KPMG"	21-Apr-08 05:07 PM	

+="CN72052"	"Software and Data Subscription"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	03-Apr-08	03-Apr-08	11330.00	="ATM08/941"	="PB MAPINFO AUSTRALIA  PTY"	21-Apr-08 05:07 PM	

+="CN72053"	"SRP002-08 Intranet Monitoring & Statistical Analysis"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	03-Apr-08	30-Sep-08	16500.00	="DCON/07/65"	="Squiz Pty Ltd"	21-Apr-08 05:07 PM	

+="CN72054-A1"	"SRP002-08 Intranet Development"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Cleaning Equipment and Supplies"	17-Apr-08	16-Mar-10	812602.00	="ATM/07/253"	="Squiz Pty Ltd"	21-Apr-08 05:07 PM	

+="CN72055"	"New EL 2 Office - level 1 Burns"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Building and Construction and Maintenance Services"	05-Mar-08	10-Apr-08	15862.00	="DCON/05/225"	="GE SHAW  & ASSOCIATES (ACT) PTY LTD"	21-Apr-08 05:08 PM	

+="CN72056"	"Consultancy on a comparative assessment of Tels retail price controls in selected countries"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Public Utilities and Public Sector Related Services"	04-Apr-08	10-Jun-08	56650.00	="DCON/07/1"	="GILBERT & TOBIN"	21-Apr-08 05:08 PM	

+="CN72057"	"Contractor Services - CD"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	62865.00	="DCON/08/17"	="Pacific & Australia Consulting Engi"	21-Apr-08 05:08 PM	

+="CN72058-A1"	"PCMS Enhancement"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Jul-08	02-Jul-09	256020.00	="ATM/07/39"	="RANDOM COMPUTING SERVICES PTY LTD"	21-Apr-08 05:08 PM	

+="CN72059-A1"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	04-Aug-08	34254.72	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	21-Apr-08 05:08 PM	

+="CN72060-A1"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	28-Aug-08	78139.38	="DCON/08/16"	="MetaCorp Pty Ltd"	21-Apr-08 05:08 PM	

+="CN72061"	"Expert advice on international mobile roaming charges"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	28-Mar-08	30-Jun-08	75850.00	="DCON/07/1"	="KPMG"	21-Apr-08 05:08 PM	

+="CN72063"	"Recruitment process appt of 3 ACMA part-time Authority Members"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	30-Jun-08	69500.00	="DCON/08/14"	="Amazing Results Pty Ltd"	21-Apr-08 05:09 PM	

+="CN72064"	"VP183 - SharePoint Functional Directory"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	30-Oct-07	30-Apr-08	20000.01	="DCON/05/135"	="KAZ Group Pty Ltd"	21-Apr-08 05:09 PM	

+="CN72067"	"Assess of National Broadcaster Equipment Distribut and transmission costs for Digital Radio Services"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	17-Jan-08	30-Jun-08	20020.00	="ATM07/260"	="CONVERGENT CONSULTING"	21-Apr-08 05:09 PM	

+="CN72068"	"VP 141 Review of Virtualisation Tech"	="Department of Broadband Communications and the Digital Economy"	21-Apr-08	="Information Technology Broadcasting and Telecommunications"	24-Jul-07	30-Jun-08	10691.83	="CCR/07/3134"	="KAZ Group Pty Ltd"	21-Apr-08 05:09 PM	

+="CN72069"	"Software licences Ringtail Legal"	="Australian Competition and Consumer Commission"	21-Apr-08	="Software"	01-Dec-07	31-Dec-07	165000.00	=""	="CCH Workflow Solutions"	21-Apr-08 05:30 PM	

+="CN72070"	"Software support and maintenance Ringtail Legal"	="Australian Competition and Consumer Commission"	21-Apr-08	="Computer services"	01-Jan-07	30-Sep-08	180125.00	=""	="FTI Repository Services LLC"	21-Apr-08 05:40 PM	

+="CN72071"	"Aviation spares for AS350BA Squirrel Helicopter Fleet, A22N. Qty: 4 x 'Cylinder, Compressed Gas', NSN: 8120-14-534-1402."	="Defence Materiel Organisation"	21-Apr-08	="Military rotary wing aircraft"	21-Apr-08	20-Jun-08	48604.29	=""	="Australian Aerospace, Ltd."	21-Apr-08 06:54 PM	

+="CN72072"	"Purchase of Qty 5 NSN 7035-66-129-7649 Megaplex HS-Q/N Card"	="Defence Materiel Organisation"	22-Apr-08	="Surveillance and detection equipment"	10-Mar-08	22-Apr-08	10690.90	=""	="Paclink Communications Pty Ltd"	22-Apr-08 08:11 AM	

+="CN72074"	"Provision of Cultural Awareness Training Services"	="Australian Federal Police"	22-Apr-08	="Work ethics or attitude training instructional materials"	01-May-08	02-May-08	19635.00	="65-2006"	="Monash University"	22-Apr-08 08:36 AM	

+="CN72075"	"Provision of Islamic Cultural Awareness Training"	="Australian Federal Police"	22-Apr-08	="Work ethics or attitude training instructional materials"	29-Apr-08	30-Apr-08	13981.00	="65-2006"	="Asian Law Group Pty Ltd"	22-Apr-08 08:43 AM	

+="CN72076"	"REP L/R GMV ARN-51929 EDWING W/O-36849/1"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	16516.50	=""	="GRAE,E A. MCLEOD"	22-Apr-08 08:48 AM	

+="CN72077"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	14308.16	=""	="Hays Personnel Services (Australia)"	22-Apr-08 08:54 AM	

+="CN72078"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	20272.15	=""	="Julia Ross Personnel"	22-Apr-08 08:57 AM	

+="CN72079"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	18797.01	=""	="Hayes Personnel Services (Australia)"	22-Apr-08 09:01 AM	

+="CN72080"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	17670.76	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:03 AM	

+="CN72081"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	50792.36	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:09 AM	

+="CN72082"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	09-Apr-08	11-May-08	26525.54	=""	="SYMBION PHARMACY SERVICES"	22-Apr-08 09:12 AM	

+="CN72084"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	45846.22	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:21 AM	

+="CN72085"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	11052.97	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:23 AM	

+="CN72086"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	12168.46	=""	="HR Matters"	22-Apr-08 09:25 AM	

+="CN72087"	"MEDICAL CONSUMABLE ASSOCIATED ITEM"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	08-Apr-08	11-May-08	12540.00	=""	="MED-CON P/L"	22-Apr-08 09:27 AM	

+="CN72088"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	10-Aug-07	30-Jun-08	37573.36	=""	="Julia Ross Personnel"	22-Apr-08 09:28 AM	

+="CN72090"	" Recruitment Services "	="Workplace Authority"	22-Apr-08	="Recruitment services"	10-Aug-07	30-Jun-08	40906.27	=""	="Julia Ross Personnel"	22-Apr-08 09:30 AM	

+="CN72091"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	46149.14	=""	="Julia Ross Personnel"	22-Apr-08 09:32 AM	

+="CN72092"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	81081.82	=""	="Dixon Appointments"	22-Apr-08 09:34 AM	

+="CN72093"	" SEALING COMPOUND "	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	13-Mar-08	22-May-08	14054.42	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	22-Apr-08 09:43 AM	

+="CN72094"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	77845.99	=""	="Hudson Global Resource (Aust) Pty"	22-Apr-08 09:45 AM	

+="CN72096"	"Postage & Freight "	="Workplace Authority"	22-Apr-08	="Postal and small parcel and courier services"	11-Jul-07	30-Jun-08	15635.95	=""	="Australia Post (SA)"	22-Apr-08 09:46 AM	

+="CN72098"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	49505.88	=""	="Greythorn"	22-Apr-08 09:48 AM	

+="CN72097"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	49157.59	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:49 AM	

+="CN72100"	"Photocopier Charges - all states"	="Workplace Authority"	22-Apr-08	="Photocopiers"	30-Jun-08	30-Jun-08	42005.93	=""	="Ricoh Australia Pty Ltd"	22-Apr-08 09:52 AM	

+="CN72101"	" Secure Destruction Services "	="Workplace Authority"	22-Apr-08	="Recycling services"	13-Jul-07	30-Jun-08	14328.56	=""	="Enviro Care Recycling Services Pty Ltd"	22-Apr-08 09:54 AM	

+="CN72102"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	16-Jul-07	30-Jun-08	59409.16	=""	="Hudson Global Resources (Aust) Pty Ltd"	22-Apr-08 09:56 AM	

+="CN72104"	"Translation Costs"	="Workplace Authority"	22-Apr-08	="Writing and translations"	16-Jul-07	30-Jun-08	55000.00	=""	="DIMIA - TIS National Centre"	22-Apr-08 09:59 AM	

+="CN72105"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	49642.03	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:59 AM	

+="CN72106"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	46136.09	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:02 AM	

+="CN72107"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	15440.81	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:05 AM	

+="CN72108"	"Advertising Services"	="Workplace Authority"	22-Apr-08	="Advertising"	17-Jul-07	30-Jun-08	18000.00	=""	="AAP Information Services Pty Ltd"	22-Apr-08 10:06 AM	

+="CN72110"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	26815.85	=""	="Hudson Global Resource (Aust) Pty"	22-Apr-08 10:07 AM	

+="CN72112"	" Course - Understanding Legislation "	="Workplace Authority"	22-Apr-08	="Career education or planning or decision making skills instructional materials"	17-Jul-07	30-Jun-08	10000.00	=""	="Australian Government Solicitor (ACT)"	22-Apr-08 10:13 AM	

+="CN72115"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	41907.00	=""	="Australian Public Service Commission"	22-Apr-08 10:14 AM	

+="CN72111"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	25-Jul-07	30-Jun-08	49209.40	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:14 AM	

+="CN72113"	"Communication Expenses"	="Workplace Authority"	22-Apr-08	="Components for information technology or broadcasting or telecommunications"	11-Mar-08	30-Jun-08	73365.50	=""	="Telstra (VIC)"	22-Apr-08 10:16 AM	

+="CN72116"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	71496.00	=""	="Australian Public Service Commission"	22-Apr-08 10:18 AM	

+="CN72117"	"Employee Security Checks"	="Workplace Authority"	22-Apr-08	="Securing and protecting supplies"	19-Jul-07	30-Jun-08	14693.52	=""	="Australian Federal Police"	22-Apr-08 10:21 AM	

+="CN72118"	"Catering"	="Workplace Authority"	22-Apr-08	="Catering services"	18-Dec-07	30-Jun-08	12248.00	=""	="Cafe 255"	22-Apr-08 10:21 AM	

+="CN72122"	"Assess ASIC eligibility criteria"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Business administration services"	10-Apr-08	30-Jun-08	75000.00	=""	="BIOMETRIC CONSULTING GROUP"	22-Apr-08 10:50 AM	

+="CN72123"	"Supply and installation of X-ray and explosive trace equipment for phase 3 air cargo X-ray trials"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Security surveillance and detection"	07-Apr-08	30-Jun-08	157300.00	=""	="L-3 COMMUNICATIONS AUSTRALIA"	22-Apr-08 10:50 AM	

+="CN72124"	"Audio visual equipment and installation"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Audio and visual presentation and composing equipment"	18-Apr-08	18-Jun-08	16924.62	=""	="Electroboard Solutions Pty Ltd"	22-Apr-08 10:50 AM	

+="CN72125"	"Legal Services Expenditure 6772"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Legal services"	11-Aug-06	30-Jun-09	13140.27	="TRS06/175"	="MINTER ELLISON LAWYERS"	22-Apr-08 10:51 AM	

+="CN72126"	"Scribing/panel services"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Human resources services"	18-Nov-07	30-Jun-08	15029.00	="SOT2006/001"	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	22-Apr-08 10:51 AM	

+="CN72127"	"Legal Services Expenditure 6860"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Legal services"	11-Aug-06	30-Jun-09	15489.10	="TRS06/175"	="Clayton Utz Canberra"	22-Apr-08 10:51 AM	

+="CN72128"	"Graduates 2008 uplift to ACT"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Human resources services"	01-Apr-08	01-May-08	27500.00	=""	="TOLL TRANSITIONS"	22-Apr-08 10:51 AM	

+="CN72129"	"Renewal of subscription - Factiva"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Electronic reference material"	01-Mar-08	01-Mar-09	49165.80	=""	="Factiva (aUSTRALIA) Pty Ltd"	22-Apr-08 10:51 AM	

+="CN72130"	"Venue and Catering for 8th Transport Colloquium 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Management advisory services"	18-Apr-08	30-Jun-08	44150.00	="TRS08/084"	="HYATT HOTEL CANBERRA"	22-Apr-08 10:51 AM	

+="CN72131"	"3-month contract staff - John Tucker"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Community and social services"	21-Apr-08	30-Jun-08	29975.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	22-Apr-08 10:51 AM	

+="CN72132"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	10836.21	=""	="LANDROVER"	22-Apr-08 10:56 AM	

+="CN72121"	" COVERALLS, CHEMICAL PROTECTIVE TRELLCHEM SUPER TYPE, TOTALLY ENCAPSULATED, VARIOUS SIZES "	="Defence Materiel Organisation"	22-Apr-08	="Protective coveralls"	17-Apr-08	17-May-08	634690.32	=""	="SAFETY EQUIPMENT AUST PTY LTD"	22-Apr-08 11:00 AM	

+="CN72044"	"CPSU v Commonwealth"	="Workplace Authority"	22-Apr-08	="Personal assistance service unions"	19-Feb-08	25-Feb-08	10000.00	=""	="Community & Public Sector Union"	22-Apr-08 11:00 AM	

+="CN72043-A1"	"Re-Imbursement"	="Workplace Authority"	22-Apr-08	="Recruitment services"	29-Jan-08	30-Jun-08	32391.86	=""	="Comcare"	22-Apr-08 11:06 AM	

+="CN72133"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	21220.54	=""	="LANDROVER"	22-Apr-08 11:09 AM	

+="CN72136"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	11396.00	=""	="LANDROVER"	22-Apr-08 11:48 AM	

+="CN72137"	"Provision of Symantic VRTS Storage Foundation Licences"	="Australian Federal Police"	22-Apr-08	="License management software"	30-Aug-07	30-Jul-08	15217.84	="6/2003"	="Dimension Data Australia Pty Limited"	22-Apr-08 12:07 PM	

+="CN72139"	"Conference venue hire and accommodation"	="Australian Taxation Office"	22-Apr-08	="Hotels and lodging and meeting facilities"	15-May-08	16-May-08	40400.00	=""	="Novotel St Kilda"	22-Apr-08 12:17 PM	

+="CN72140"	"Provision of SAN Storage Modules"	="Australian Federal Police"	22-Apr-08	="Exchange datacom modules"	30-Aug-07	30-Jul-08	18913.05	=""	="Dimension Data Australia Pty Limited"	22-Apr-08 12:21 PM	

+="CN72141"	"supply and deliver 310 ea pneumatic tyres vehicular"	="Defence Materiel Organisation"	22-Apr-08	="Heavy truck tyres"	22-Apr-08	12-May-08	126720.00	=""	="Transport tyre sales pty Ltd"	22-Apr-08 12:29 PM	

+="CN72138"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	26678.87	=""	="LANDROVER"	22-Apr-08 12:42 PM	

+="CN72142"	"S'LINER ARN-51258 WALY WK ORDER-35915"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	50272.99	=""	="RGM MAINTENANCE"	22-Apr-08 12:49 PM	

+="CN72143"	"W/O-35915 REP S'LINER ARN-51258"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	25137.94	=""	="RGM MAINTENANCE"	22-Apr-08 12:54 PM	

+="CN72144"	"S'LINER ARN-51258 W/O-36986 WALLY ENGINE REBUILD"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	14014.32	=""	="RGM MAINTENANCE"	22-Apr-08 12:59 PM	

+="CN72145"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	11203.30	=""	="LANDROVER"	22-Apr-08 01:08 PM	

+="CN72146"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	21971.62	=""	="LANDROVER"	22-Apr-08 01:23 PM	

+="CN72147"	"Review of AFP Functional Management Model"	="Australian Federal Police"	22-Apr-08	="Events management"	14-Jan-08	14-May-08	65000.00	=""	="C & M Associates Limited"	22-Apr-08 01:35 PM	

+="CN72148"	"Workshops, coaching sessions, assessment and development action planning sessions for Coaching Skills for Managers - Facilitator Training Round 2."	="Centrelink"	22-Apr-08	="Specialised educational services"	28-Apr-08	31-Dec-09	152000.00	="2005/014"	="Institute of Executive Coaching"	22-Apr-08 01:36 PM	

+="CN72149"	"motor vehicle spare parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	18257.25	=""	="LAND ROVER AUSTRALIA"	22-Apr-08 01:47 PM	

+="CN71989"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-May-08	23541.65	=""	="LAND ROVER AUSTRALIA"	22-Apr-08 01:49 PM	

+="CN72150"	"Various vehicle parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Apr-08	06-May-08	11971.94	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	22-Apr-08 01:50 PM	

+="CN72135"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	41471.63	=""	="LAND ROVER"	22-Apr-08 01:53 PM	

+="CN72152"	"SEALING COMPOUND"	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	22-Apr-08	13-Jun-08	14696.26	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	22-Apr-08 02:11 PM	

+="CN72156"	"CORROSION RESISTANT COATING"	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	22-Apr-08	20-Jun-08	10365.52	=""	="INTERTURBINE ADVANCED COMPOSITES"	22-Apr-08 02:18 PM	

+="CN72159-A1"	"Plan for the Stand up of a new Headquarters in Army by the end of 2009."	="Department of Defence"	22-Apr-08	="Specialised educational services"	04-Apr-07	31-Jan-09	300000.00	="RFSOP013-HQ06"	="Noetic Solutions Pty Ltd"	22-Apr-08 02:32 PM	

+="CN72160"	"Supply and deliver 155 ea of vehicular ,pneumatic tyres"	="Defence Materiel Organisation"	22-Apr-08	="Heavy truck tyres"	22-Apr-08	12-May-08	63360.00	=""	="Transport tyre sales pty Ltd"	22-Apr-08 02:32 PM	

+="CN72161"	"PHARMACEUTICAL ASSOCIATED ITEM"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	05-Apr-08	07-May-08	16500.00	=""	="KEY PHARMACEUTICALS P/L"	22-Apr-08 02:50 PM	

+="CN72165"	"MOtor Vehicle Parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	12378.69	=""	="Volvo Commericial Vehicles"	22-Apr-08 03:23 PM	

+="CN72170-A1"	" PURCHASE OF AIRCRAFT FILTER FLUID ELEMENTS "	="Defence Materiel Organisation"	22-Apr-08	="Military rotary wing aircraft"	09-Apr-08	14-May-08	16866.96	=""	="PALL AUSTRALIA"	22-Apr-08 03:54 PM	

+="CN72178"	"Valuation Update"	="National Capital Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	10000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	22-Apr-08 04:00 PM	

+="CN72182"	"Vibrating Pinscreen Sculpture"	="Questacon"	22-Apr-08	="Exhibitions"	08-Apr-08	22-Dec-08	31000.00	=""	="Ward Fleming Pinscreens"	22-Apr-08 04:05 PM	

+="CN72185"	" CRS Australia - 85 William Street, Port Macquarie NSW "	="CRS Australia"	22-Apr-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	309038.20	=""	="Armidale First National Real Estate"	22-Apr-08 04:19 PM	

+="CN72186-A2"	"The contractor has been contracted to provide a security administrator for the Access Control Team for CRS Australia."	="CRS Australia"	22-Apr-08	="Information technology consultation services"	21-Apr-08	30-Jun-08	20656.00	=""	="Hays Specialist Recruitment Pty Ltd"	22-Apr-08 04:21 PM	

+="CN72188"	"Stuffed toys"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Fabrics and leather materials"	04-Jul-07	11-Jul-07	46263.36	=""	="KORIMCO TOYS"	22-Apr-08 04:32 PM	

+="CN72189"	"Dell Latitude D430 Laptop"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	05-Jul-07	19-Jul-07	22094.60	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72190"	"Rebuilding of boatshed Low Island"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Building and Construction and Maintenance Services"	09-Jul-07	06-Aug-07	44275.00	=""	="MISSION BEACH CONSTRUCTIONS Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72192"	"Recruitment advertising"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	19-Jul-07	16-Aug-07	50000.00	=""	="HMA BLAZE Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72193"	"Print 5 posters A3 full colour printed"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Adhesives and sealants"	04-Jul-07	01-Aug-07	12479.50	=""	="PENFOLD BUSCOMBE AUSTRALIA Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72194"	"Dell Optiplex 745 desktop & 19" LCD"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	09-Aug-07	12032.42	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72195"	"Charter of vessel "Bindi" 1/8/07-7/8/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Transportation and Storage and Mail Services"	31-Jul-07	07-Aug-07	18865.00	=""	="CJA EVETTS"	22-Apr-08 04:32 PM	

+="CN72196"	"RHQ: Elect 31/5-30/6/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jul-07	31-Jul-07	12323.64	=""	="Ergon Energy"	22-Apr-08 04:33 PM	

+="CN72197"	"2006-07 First progress charge"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Accounting and auditing"	04-Jul-07	04-Jul-07	19900.00	=""	="Australian National Audit Office"	22-Apr-08 04:33 PM	

+="CN72198"	"1st Qtr CSS/PSS & PPSap Account"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	25-Jul-07	25-Jul-07	11354.50	=""	="Comsuper"	22-Apr-08 04:33 PM	

+="CN72199"	"2007/08 Worker's Comp Premium"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	26-Jul-07	63880.91	=""	="Comcare Australia"	22-Apr-08 04:33 PM	

+="CN72200"	"Internet: Usage charges to 28/5-07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	10-Jul-07	10-Jul-07	11585.66	=""	="Telstra"	22-Apr-08 04:33 PM	

+="CN72201"	"IT: Internet Usage charges to 28/6/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	31-Jul-07	31-Jul-07	11345.89	=""	="Telstra"	22-Apr-08 04:33 PM	

+="CN72202"	"Rates: 3660 half year ending 31/12/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	02-Aug-07	11670.81	=""	="Townsville City Council"	22-Apr-08 04:33 PM	

+="CN72203"	"Cleaning contract of GBRMPA"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Cleaning and janitorial services"	02-Aug-07	15-Oct-08	88319.55	=""	="BINIRIS (AUST) Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72204"	"ArcGIS server enterprise standard"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	02-Aug-07	119713.00	=""	="ESRI AUSTRALIA Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72205"	"Leasing of Toshiba E Studio 3510C"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	14-Aug-09	14855.00	=""	="ALLEASING Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72206"	"Lease of Toyota Prius (CPG Rockhampton)"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	15-Aug-09	95079.60	=""	="LEASE PLAN AUSTRALIA Ltd"	22-Apr-08 04:34 PM	

+="CN72207"	"Dell Latitude D430 laptop w/MS office &"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	06-Aug-07	11514.63	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72208"	"Funding for storage & rental for July 07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	06-Aug-07	20000.00	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	22-Apr-08 04:34 PM	

+="CN72209"	"2007 COTS control programme on GBR"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	06-Aug-07	31-Jan-08	330000.00	=""	="ASSN OF MARINE PARK TOURISM OPERATORS"	22-Apr-08 04:34 PM	

+="CN72210"	"Media monitoring - electronic clips"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	07-Aug-07	17000.00	=""	="MEDIA MONITORS"	22-Apr-08 04:34 PM	

+="CN72211"	"Wetlabs ECO-FLNTU-SB combined chlorophyl"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	09-Aug-07	09-Aug-07	308385.00	=""	="IMBROS"	22-Apr-08 04:35 PM	

+="CN72212"	"Accommodation, meals & flights for 31"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	09-Aug-07	09-Aug-07	17351.00	=""	="LADY ELLIOT ISLAND ECO RESORT"	22-Apr-08 04:35 PM	

+="CN72213"	"Comcover premium 2007-08"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	14-Aug-07	30-Jun-08	152755.69	=""	="COMCOVER"	22-Apr-08 04:35 PM	

+="CN72214"	"Investment in CAP Reef community"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	15-Aug-07	31-Aug-07	11000.00	=""	="WILLIAM SAWYNOK"	22-Apr-08 04:35 PM	

+="CN72215"	"Cleaning contract of GBRMPA"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Cleaning and janitorial services"	02-Aug-07	15-Oct-08	85058.51	=""	="BINIRIS (AUST) Pty Ltd"	22-Apr-08 04:35 PM	

+="CN72216"	"Media monitoring - electronic clips"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	07-Aug-07	14418.64	=""	="MEDIA MONITORS"	22-Apr-08 04:35 PM	

+="CN72217"	"Employment of TEMP in Admin Officer"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	20-Aug-07	20-Aug-07	44952.60	=""	="SOS RECRUITMENT"	22-Apr-08 04:35 PM	

+="CN72218"	"Provision of sediment & nutrient"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Engineering and Research and Technology Based Services"	21-Aug-07	30-Nov-07	28592.00	=""	="AUSTRALIAN INSTITUTE OF MARINE SCIENCE"	22-Apr-08 04:35 PM	

+="CN72219"	"Funding for PIU temp staff"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	22-Aug-07	22-Aug-07	19175.60	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 04:35 PM	

+="CN72220"	"Lease: 1/8/2007 -31/7/2009"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	21-Aug-07	21-Aug-07	33104.67	=""	="Pat O'Driscoll"	22-Apr-08 04:36 PM	

+="CN72221"	"Internet: Usage charges to 28/7/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	21-Aug-07	21-Aug-07	12820.52	=""	="Telstra"	22-Apr-08 04:36 PM	

+="CN72169"	"Motor Vehicle Parts."	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	19-May-08	11929.87	=""	="Mercedes Benz Aust. Pacific"	22-Apr-08 04:51 PM	

+="CN72225"	"5x3 bay DS units 1875mm high"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	03-Sep-07	16369.25	=""	="QUEENSLAND LIBRARY SUPPLIES"	22-Apr-08 04:59 PM	

+="CN72226"	"EMC Data Transition"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management advisory services"	04-Sep-07	31-Oct-07	39600.00	=""	="ACIL TASMAN"	22-Apr-08 04:59 PM	

+="CN72227"	"Leased vehicles"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-09	139171.11	=""	="LEASE PLAN AUSTRALIA Ltd"	22-Apr-08 04:59 PM	

+="CN72228"	"Rent for Riverside House Mackay"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	12-Sep-07	31-Jul-09	58300.01	=""	="BAMMACK Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72229"	"Temporary employment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	13-Sep-07	13-Sep-07	30414.10	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72230"	"Temporary employment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	29-Aug-07	29-Aug-07	21361.24	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72231"	"Printing of "Climate Change and the"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Adhesives and sealants"	19-Sep-07	02-Oct-07	46904.00	=""	="PRINTPOINT AUSTRALIA Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72232"	"GBRMPA Zoning TV schedules"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Marketing and distribution"	20-Sep-07	20-Sep-07	12617.00	=""	="HMA BLAZE Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72233"	"Elect: 30/6-31/7/07 Reef HQ"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	14112.59	=""	="Ergon Energy"	22-Apr-08 05:00 PM	

+="CN72234"	"Lease: 6 Sept - 5 Oct 2007"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Sep-07	06-Sep-07	46134.43	=""	="Einstand Pty Lt"	22-Apr-08 05:01 PM	

+="CN72236"	"Lease: 1/10/07-31/7/09 Riverside House"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Sep-07	06-Sep-07	48583.35	=""	="Bammack Pty Ltd"	22-Apr-08 05:01 PM	

+="CN72235"	"Motor Vehicle Parts."	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-Apr-08	14729.18	=""	="Mercedes Benz Aust. Pacific"	22-Apr-08 05:01 PM	

+="CN72224"	" Kings Avenue / Parkes Way Bridge - Heritage and Environmental Impact Assessment "	="National Capital Authority"	22-Apr-08	="Cultural heritage preservation or promotion services"	06-Feb-08	15-Mar-08	20000.00	=""	="Architectural Projects Pty Ltd"	22-Apr-08 05:02 PM	

+="CN72237"	"Delivery of statement of Attainment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	14-Dec-07	12000.00	=""	="KPS & ASSOCIATES Pty Ltd"	22-Apr-08 05:40 PM	

+="CN72240"	"Compilation of information on the interaction of reef sharks with the line fishery in the GBRMP"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	04-Oct-07	21-Dec-07	28443.80	=""	="JAMES COOK UNIVERSITY"	22-Apr-08 05:40 PM	

+="CN72241"	"Kings Avenue / Parkes Way Bridge - Indigenous and Natural Envirnment Impact Assessment"	="National Capital Authority"	22-Apr-08	="Cultural heritage preservation or promotion services"	08-Feb-08	17-Mar-08	18293.00	="08/11"	="Navin Office Heritage Consultants Pty Ltd"	22-Apr-08 05:55 PM	

+="CN72242"	"PNG Kumul Clothing and Equipment"	="Defence Materiel Organisation"	22-Apr-08	="Military uniforms"	19-Mar-08	31-May-10	1288607.34	="2480038"	="Australian Defence Apparel"	22-Apr-08 07:15 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val0to16000.xls
@@ -1,1 +1,243 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61937"	"LAND ROVER PARTS"	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	15-May-08	11430.85	=""	="Land Rover Australiua"	18-Feb-08 10:46 AM	

+="CN61941"	"Printing of: NAT15634-6.2006 - FTC calculation worksheet."	="Australian Taxation Office"	18-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Feb-08	30-Mar-08	13959.00	=""	="Canprint Communications"	18-Feb-08 11:04 AM	

+="CN40316-A1"	"MOTOR VEHICLE"	="Office of the Official Secretary to the Governor-General"	18-Feb-08	="Motor vehicles"	21-Sep-07	30-Nov-07	14533.00	=""	="HIGH COUNTRY"	18-Feb-08 12:22 PM	

+="CN61969"	"KERP M&E - Mdm Chen Jielian"	="AusAid"	18-Feb-08	="Management advisory services"	04-Jun-07	30-Nov-07	10169.49	=""	="CHEN JIE LIAN"	18-Feb-08 12:43 PM	

+="CN62026"	"IAT Implementation Support Scoping Mission-Mark Borg"	="AusAid"	18-Feb-08	="Human resources services"	30-Jul-07	30-Sep-07	10800.05	=""	="BORG, MARK"	18-Feb-08 12:50 PM	

+="CN62042"	"Purchase of Task Chairs"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	14400.00	=""	="ERGONOMIC OFFICE PTY LTD"	18-Feb-08 12:52 PM	

+="CN62047"	"Committe Member - Accelerating Economic Growth RSC"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	12094.50	=""	="CAMERON, LISA"	18-Feb-08 12:53 PM	

+="CN62063"	"Contract: Bangladesh Academic Dr PETHERAM"	="AusAid"	18-Feb-08	="Human resources services"	07-Sep-07	16-Sep-07	12000.00	=""	="PETHERAM, R.J"	18-Feb-08 12:55 PM	

+="CN62072"	"Contract_Kathy McKenzie"	="AusAid"	18-Feb-08	="Human resources services"	17-Aug-07	31-Aug-07	10587.16	=""	="FIRE UP COACHING"	18-Feb-08 12:56 PM	

+="CN62079"	"ADRA External Commitee Member - HIV/AIDS RSC - Juliet Richters"	="AusAid"	18-Feb-08	="Management advisory services"	03-Sep-07	31-Dec-07	12094.50	=""	="RICHTERS, ASSOCIATE PROFESSOR JULIET"	18-Feb-08 12:57 PM	

+="CN62084"	"BRF Redesign - Sharon Menzies"	="AusAid"	18-Feb-08	="Management advisory services"	01-Sep-07	30-Oct-07	13526.73	=""	="NIMMO-BELL & COMPANY LIMITED"	18-Feb-08 12:58 PM	

+="CN62088"	"Tax Advisory Service for EINRIP"	="AusAid"	18-Feb-08	="Business administration services"	27-Aug-07	31-Oct-08	10265.45	=""	="PT PRIMA WAHANA CARAKA"	18-Feb-08 12:58 PM	

+="CN62092"	"ADRA Committee Member - Health RSC - UQ for Theo Vos"	="AusAid"	18-Feb-08	="Management advisory services"	05-Sep-07	31-Dec-07	11550.00	=""	="UNIVERSITY OF QUEENSLAND"	18-Feb-08 12:59 PM	

+="CN62098"	"Power Sector Short-Term Input - Phacelift Consulting Services Pty Ltd"	="AusAid"	18-Feb-08	="Utilities"	25-Sep-07	12-Oct-07	11949.01	=""	="PHACELIFT CONSULTING SERVICES PTY. LTD."	18-Feb-08 01:00 PM	

+="CN62101"	"Peter Smith Contracts Training Presentation SVP & ACT"	="AusAid"	18-Feb-08	="Vocational training"	26-Sep-07	31-Oct-07	13460.00	=""	="SMITH, PETER WILLIAM"	18-Feb-08 01:00 PM	

+="CN62102"	"ADRA Committee Chair - Environment RSC - Don Blackmore"	="AusAid"	18-Feb-08	="Management advisory services"	07-Sep-07	31-Dec-07	12589.50	=""	="BLACKMORE, DON"	18-Feb-08 01:00 PM	

+="CN62104"	"BEAM Review PFM Specialist - Ma Dulce Cacha"	="AusAid"	18-Feb-08	="Management advisory services"	15-Sep-07	26-Oct-07	13048.85	=""	="Cacha, Maria Dulce"	18-Feb-08 01:00 PM	

+="CN62105"	"Democratic Governance Program Strategy Mission: Stephen Sherlock"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Nov-07	13530.00	=""	="SHERLOCK, STEPHEN MARK"	18-Feb-08 01:00 PM	

+="CN62109"	"ADRA Committee Member - HIV/AIDS RSC - Doreen Rosenthal"	="AusAid"	18-Feb-08	="Management advisory services"	05-Sep-07	31-Dec-07	12094.50	=""	="DOREEN ROSENTHAL"	18-Feb-08 01:01 PM	

+="CN62115"	"Drivers of Change Issue Papers"	="AusAid"	18-Feb-08	="Writing and translations"	20-Sep-07	31-Oct-07	13200.00	=""	="WATERGALL CONSULTING LTD"	18-Feb-08 01:02 PM	

+="CN62125"	"HASMI - Review and Document Health System Issues in Papua and Papua Barat Provinces of Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	08-Oct-07	31-Dec-07	12481.60	=""	="HASMI"	18-Feb-08 01:03 PM	

+="CN62127"	"Short Term Consultant for SPHERE (E Pefianco)"	="AusAid"	18-Feb-08	="Management advisory services"	15-Oct-07	16-Nov-07	14171.63	=""	="SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION REGIONAL CENTER FOR EDUCATIONAL INNOVATION AND TECHNOLOGY (SEAMEO INNTOCH)"	18-Feb-08 01:03 PM	

+="CN62128"	"Dwi Handono - Review and Document Health System Issues in Papua and Papua Barat Provinces of Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	08-Oct-07	31-Dec-07	14996.32	=""	="HANDONO, DWI"	18-Feb-08 01:03 PM	

+="CN62135"	"Review of the Australia-Kiribati Country Program"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	14280.00	=""	="BENNETT, CATHERINE"	18-Feb-08 01:04 PM	

+="CN62157"	"SO Access Economics for Hughes to attend TAP for Accountability Mangager and Director"	="AusAid"	18-Feb-08	="Political systems and institutions"	01-Jul-07	30-Sep-07	12293.60	=""	="FOCUS ECONOMICS PTY LTD"	18-Feb-08 01:07 PM	

+="CN62162"	"Economics of Development PNG 6-7 September 2007"	="AusAid"	18-Feb-08	="Vocational training"	03-Sep-07	30-Sep-07	14841.20	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:08 PM	

+="CN62170"	"Tonga Fisheries Management Project - Technical Adviser"	="AusAid"	18-Feb-08	="Fisheries and aquaculture"	01-Jul-07	30-Jun-08	12457.50	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:09 PM	

+="CN62176"	"Workplan for Interim assistance to MOHLS - Solomon Islands"	="AusAid"	18-Feb-08	="Management advisory services"	19-Jun-07	31-Jul-07	10175.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62179"	"Tender Related Services"	="AusAid"	18-Feb-08	="Business administration services"	12-Jul-07	01-Sep-07	10703.00	=""	="ALLABURTON, ROBERT"	18-Feb-08 01:11 PM	

+="CN62201"	"Coffey M.P.W. Pty Limited"	="AusAid"	18-Feb-08	="Electronic reference material"	20-Aug-07	30-Jun-08	10304.58	=""	="COFFEY MPW PTY LTD"	18-Feb-08 01:14 PM	

+="CN62212"	"Initiative Management Training in Canberra - July 2007"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Sep-07	28-Sep-07	15827.90	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62227"	"Independent Appraisal of Cambodia Health Sector Engagement Strategy"	="AusAid"	18-Feb-08	="Human resources services"	31-Jul-07	30-Jun-09	10419.31	=""	="BISCOE, GILLIAN"	18-Feb-08 01:17 PM	

+="CN62229"	"Appraisal of Pakistan Health Strategy"	="AusAid"	18-Feb-08	="Comprehensive health services"	20-Nov-07	31-Dec-07	10341.00	=""	="BISCOE, GILLIAN"	18-Feb-08 01:18 PM	

+="CN62243"	"Lynn Pieper SFDI Design Appraisal"	="AusAid"	18-Feb-08	="Community and social services"	13-Jul-07	22-Aug-07	10170.18	=""	="PIEPER, LYNN AS TRUSTEE FOR PIEPER FAMILY TRUST"	18-Feb-08 01:19 PM	

+="CN62248"	"OAGDS Assessment Hands Across the Water"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	19-Nov-07	04-Feb-08	13555.30	=""	="TRUSCOTT, WILLIAM P"	18-Feb-08 01:20 PM	

+="CN62262"	"Mission for the Development of M&E System"	="AusAid"	18-Feb-08	="Management advisory services"	01-Feb-07	30-Jan-08	14196.80	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:22 PM	

+="CN62271"	"2007 PNG PRMP - Facilitation Consultant - EDG Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	10-Sep-07	05-Oct-07	12529.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:23 PM	

+="CN62279"	"Solomons trip"	="AusAid"	18-Feb-08	="Photographic services"	25-Jul-07	03-Aug-07	13459.38	=""	="WALKER, ROBERT KENNETH"	18-Feb-08 01:25 PM	

+="CN62280"	"fiji and vanuatu trip"	="AusAid"	18-Feb-08	="Marketing and distribution"	01-Aug-07	31-Aug-07	11243.90	=""	="WALKER, ROBERT KENNETH"	18-Feb-08 01:25 PM	

+="CN62282"	"AusAID 2010 Change Communication Strategy - Preparation"	="AusAid"	18-Feb-08	="Educational facilities"	29-May-07	31-Jul-07	13200.00	=""	="JUNIPER LEBIR PTY LTD & VERDEN ENT PTY LTD & EMILIANO BURZOTTO & SUSAN PARKER HORIZON PUBLIC RELATIONS &  MARKETING"	18-Feb-08 01:25 PM	

+="CN62283"	"PAF Rapid review Focus Groups"	="AusAid"	18-Feb-08	="Management advisory services"	02-Oct-07	02-Nov-07	15867.00	=""	="HORIZON COMMUNICATION GROUP PTY LTD"	18-Feb-08 01:25 PM	

+="CN62285"	"GRiD - ongoing design fees"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="GRID COMMUNICATIONS PTY LTD"	18-Feb-08 01:26 PM	

+="CN62288"	"Exhibition Centre - general admin service order"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	14-Mar-08	11000.00	=""	="THE EXHIBITION CENTRE PTY LTD"	18-Feb-08 01:26 PM	

+="CN62289"	"Exhibition Centre"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="THE EXHIBITION CENTRE PTY LTD"	18-Feb-08 01:26 PM	

+="CN62292"	"Managing Safe Water Field Manual printing"	="AusAid"	18-Feb-08	="Printed media"	20-Aug-07	03-Sep-07	10803.10	=""	="PIRION PTY LTD"	18-Feb-08 01:27 PM	

+="CN62293"	"Aid_Map"	="AusAid"	18-Feb-08	="Printed media"	01-Jul-07	30-Jun-08	11000.00	=""	="PIRION PTY LTD"	18-Feb-08 01:27 PM	

+="CN62304"	"Provison of Ad hoc Technical and Administrative Services"	="AusAid"	18-Feb-08	="Business administration services"	19-Sep-07	26-Sep-07	13200.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62313"	"TAP related financial services"	="AusAid"	18-Feb-08	="Accounting and auditing"	11-Sep-07	30-Sep-07	12309.00	=""	="JOWEE TRUST & LISMAR TRUST & MILOJO TRUST & SMERGI TRUST & THE TRUSTEE FOR SCOTT FAMILY TRUST T/A DEUSBURYS"	18-Feb-08 01:29 PM	

+="CN62340"	"HIV/AIDS Training in Jakarta 3 October 2007"	="AusAid"	18-Feb-08	="Alternative educational systems"	01-Oct-07	31-Oct-07	10945.00	=""	="MACFARLANE BURNET INSTITUTE FOR MEDICAL RESEARCH AND PUBLIC HEALTH LTD T/A BURNET INSTITUTE"	18-Feb-08 01:33 PM	

+="CN62358"	"2007 R&FMP Quality Assurance Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	30-Oct-07	10732.92	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:35 PM	

+="CN62376"	"Services Order Deborah Rhodes"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	31-Dec-07	12950.00	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62396"	"National Mailing and Marketing - general admin service order"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	11000.00	=""	="NATIONAL MAILING & MARKETING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62408"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	15-Aug-06	30-Jun-08	15257.88	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62448"	"CCJAG - procurement of key team members"	="AusAid"	18-Feb-08	="Human resources services"	31-Aug-07	31-Oct-07	11000.00	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62502"	"Cambodia Agriculture Quality Improvement Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-00	31-Jan-08	11787.60	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:55 PM	

+="CN62512"	"Sonar Trials at Jervis Bay 3-14/12/2007, plus pre trial meeting on 8/11/2007"	="Geoscience Australia"	18-Feb-08	="Transportation and Storage and Mail Services"	07-Jan-08	14-Jan-08	13057.00	=""	="HELSCO Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62513"	"Consultancy Services Building Condition Index Review 2008"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	08-Jan-08	30-Jun-08	13255.00	=""	="Advance FM Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62518"	"RP00936 SOPAC Various"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	10-Jan-08	30-Jun-08	11181.72	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:54 PM	

+="CN62526"	"Consultation November to December 2007."	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	14-Jan-08	30-Jun-08	12017.50	=""	="Australian National University"	18-Feb-08 03:55 PM	

+="CN62528"	"RP - transcription of tapes consisting of 4688 x 3480 cartriges."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	11879.66	="2006/3933"	="SpectrumData"	18-Feb-08 03:55 PM	

+="CN62521"	"Motor Vehicle Parts."	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	18-Mar-08	12123.08	=""	="Mercedes Benz Aust. Pacific"	18-Feb-08 03:55 PM	

+="CN62533"	"4 x 4GB of RAM DDR1 memory"	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	01-Mar-08	13609.20	=""	="Anabelle Bits T/as ASI Solutions"	18-Feb-08 03:56 PM	

+="CN62535"	"ALOS derived Digital Elevation Model for ALOS Stereo Modelling pilot program - 17 January 2008 to 9 April 2008."	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	11000.00	=""	="Terranean Mapping Technologies"	18-Feb-08 03:56 PM	

+="CN62540"	"GEPS Australasia from Petroconsultants MAI Ltd an IHS company."	="Geoscience Australia"	18-Feb-08	="Printed publications"	18-Jan-08	31-Jan-08	10520.00	=""	="IHS Energy Group"	18-Feb-08 03:57 PM	

+="CN62542"	"6 x Sonnenchein A600 OPZV1700 Batteries"	="Geoscience Australia"	18-Feb-08	="Tools and General Machinery"	21-Jan-08	30-Jun-08	11085.43	=""	="M+H Power Systems Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62546"	"Palynostratigraphic analysis of core samples"	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	23-Jan-08	29-Feb-08	14410.00	=""	="Antiques ACT T/AS Consultant Palynological Services"	18-Feb-08 03:58 PM	

+="CN62548"	"Supply and install 17 System 55 suspended screens as per quote MG25/02062"	="Geoscience Australia"	18-Feb-08	="Real estate management services"	24-Jan-08	30-Jun-08	15190.00	=""	="Schiavello ACT Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62554"	"Relocation expenses - from Bordersholm, Germany to Curtin, ACT"	="Geoscience Australia"	18-Feb-08	="Personnel recruitment"	29-Jan-08	31-Mar-08	14231.00	=""	="Hasenkamp"	18-Feb-08 03:59 PM	

+="CN62555"	"Sample Analysis - Pollen Analysis"	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	29-Jan-08	31-Dec-08	11825.00	=""	="Australian National University"	18-Feb-08 03:59 PM	

+="CN62557"	"Employment of contract staff  - Admin and technical work"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	29-Jan-08	14-Mar-08	13750.00	=""	="Frontier Group Australia Pty Ltd"	18-Feb-08 03:59 PM	

+="CN62559"	"Core Boxes - GSO Box 650 x 500, GSO Lid 650 x 500, GSO Divider 650 x 1500, Long Core Box x 100."	="Geoscience Australia"	18-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	30-Jun-08	15152.50	=""	="M J Samcore Pty Ltd"	18-Feb-08 03:59 PM	

+="CN62561"	"GeoS4 - 1. Quantitative yields of C1, C2-C5, C6-C14, C15+ and individual compounds."	="Geoscience Australia"	18-Feb-08	="Professional engineering services"	31-Jan-08	30-Jun-08	10750.00	=""	="GeoS4 Gmbh"	18-Feb-08 04:00 PM	

+="CN62567"	"Procurement of:  BATTERY,STORAGE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	18-Feb-08	12112.56	=""	="CAIRNS BATTERY FACTORY"	18-Feb-08 05:10 PM	

+="CN62568"	"Procurement of:  LEVER,RELEASE,SMALL ARMS"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	18-Feb-08	15750.00	=""	="THALES AUSTRALIA - BENDIGO"	18-Feb-08 05:10 PM	

+="CN62569"	"Procurement of:  TERMINAL BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	02-Jan-08	15-Jun-08	11621.36	=""	="THALES AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62573"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,GATE;  PLUG,MACHINE THREAD"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	08-Apr-08	12659.64	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62580"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	10-Mar-08	13975.00	=""	="RFD TECHNOLOGIES Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62591"	"Procurement of:  COMPUTER SUBASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	04-Apr-08	10182.00	=""	="NOSKE-KAESER NZ Ltd"	18-Feb-08 05:13 PM	

+="CN62592"	"Procurement of:  DUMMY CONNECTOR ASSEMBLY,ELECTRICAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	16-Jun-08	15480.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62597"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	14-Oct-08	12211.78	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62599"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	14-Oct-08	10125.00	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62604"	"Procurement of:  LIGHT,MARKER,DISTRESS"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	18-Feb-08	15400.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:14 PM	

+="CN62607"	"Procurement of:  PLATE,METAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	11-Apr-08	12918.72	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:15 PM	

+="CN62615"	"Procurement of:  BEACON,SONAR"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	12-Apr-08	15452.40	=""	="RFD TECHNOLOGIES Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62616"	"Procurement of:  SCUPPER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	12-Apr-08	15357.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	18-Feb-08 05:16 PM	

+="CN62618"	"Procurement of:  CABLE ASSEMBLY SET,FIBER OPTIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	08-Apr-08	12450.00	=""	="MILSPEC SERVICES Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62620"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	19-May-08	14680.00	=""	="RECORD MARINE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62622"	"Procurement of:  PRINTED WIRING BOARD"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	31-Jan-08	01-Nov-08	10326.96	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62629"	"Procurement of:  VALVE, TEST, CYLINDER COMPRESSION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	20-Mar-08	10335.30	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62636"	"Procurement of:  PARTS KIT,BALL VALVE;  REPAIR KIT,VALVE;  VALVE,BALL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	10984.05	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62640"	"Procurement of:  NET,RAILING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	28-Feb-08	11545.54	=""	="AUSTRALIAN NETMAKERS"	18-Feb-08 05:19 PM	

+="CN62643"	"Content management and on-going development of the ACSSA website"	="Australian Institute of Family Studies"	18-Feb-08	="Internet related services"	11-Feb-08	30-Jun-08	12750.00	=""	="W3 Consulting Pty Ltd"	18-Feb-08 05:30 PM	

+="CN62644"	"Promotional Products"	="Family Court of Australia"	19-Feb-08	="Promotional merchandise"	23-Jan-08	22-Feb-08	11126.50	=""	="SK Global Enterprises Pty Ltd"	19-Feb-08 07:53 AM	

+="CN62647"	"REPAIR AND OH OF BLACK HAWK SHAFT ASSY."	="Defence Materiel Organisation"	19-Feb-08	="Military rotary wing aircraft"	19-Feb-08	30-Jun-08	12187.26	=""	="SAAL"	19-Feb-08 08:50 AM	

+="CN62650"	"Printing - Various Print Contracts <$10k ea (AUSTENDER SON283)"	="Australian Taxation Office"	19-Feb-08	="Published Products"	14-Feb-08	30-Apr-08	10692.00	=""	="CANPRINT COMMUNICATIONS PTY LTD"	19-Feb-08 09:07 AM	

+="CN62652"	"Think on your Feet 18 Attendees"	="Australian Taxation Office"	19-Feb-08	="Education and Training Services"	13-Feb-08	14-Feb-08	10100.00	=""	="WILSON STRATEGIC MANAGEMENT"	19-Feb-08 09:07 AM	

+="CN62653"	"End to End Software Test 12 Attendees"	="Australian Taxation Office"	19-Feb-08	="Education and Training Services"	13-Feb-08	14-Feb-08	12600.00	=""	="IV & V Australia"	19-Feb-08 09:08 AM	

+="CN62654"	"Procurement Training Course"	="Australian Taxation Office"	19-Feb-08	="Education and Training Services"	13-Feb-08	30-Jun-08	13600.00	=""	="CIT Solutions Pty Ltd"	19-Feb-08 09:08 AM	

+="CN62655"	"Websphere Datastage Essentials 4 attendees"	="Australian Taxation Office"	19-Feb-08	="Education and Training Services"	13-Feb-08	22-Feb-08	13200.00	=""	="IBM AUSTRALIA LIMITED"	19-Feb-08 09:08 AM	

+="CN62658"	"CONTRACT STAFF"	="Australian Taxation Office"	19-Feb-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	18-Feb-08	15728.65	=""	="Hudson Global Resources (Aust) P/L"	19-Feb-08 09:09 AM	

+="CN62660"	"Publications"	="Australian Taxation Office"	19-Feb-08	="Published Products"	13-Feb-08	13-Feb-08	10000.00	=""	="CCH Australia Limited"	19-Feb-08 09:10 AM	

+="CN62665"	"automation consultants"	="Royal Australian Mint"	19-Feb-08	="Information technology consultation services"	30-Jan-08	30-Jan-08	10037.50	=""	="AUTOMATION CONSULTANTS & TECH SERVS"	19-Feb-08 09:26 AM	

+="CN62668-A1"	"Deliver personal efficiency training program, addressing efficient and effective work practices for better workload management."	="Centrelink"	19-Feb-08	="Specialised educational services"	14-Feb-08	30-Jun-08	13200.00	=""	="D'Arcy Consulting Group Pty Ltd"	19-Feb-08 09:50 AM	

+="CN62669"	"computer hardware"	="Royal Australian Mint"	19-Feb-08	="Computer Equipment and Accessories"	31-Jan-08	31-Jan-08	13132.03	=""	="DELL AUSTRALIA PTY LIMITED"	19-Feb-08 09:52 AM	

+="CN62681"	"Administration Investigation and Review Services"	="Australian Taxation Office"	19-Feb-08	="Management and Business Professionals and Administrative Services"	14-Aug-07	13-Oct-07	10800.00	=""	="LKA Group"	19-Feb-08 10:44 AM	

+="CN62689"	" Distribution of Election materials "	="Australian Electoral Commission"	19-Feb-08	="Material handling services"	19-Nov-07	30-Nov-07	10600.00	=""	="Reeds Removals Taree"	19-Feb-08 11:14 AM	

+="CN62711-A2"	"Security Vetting Services"	="Department of Immigration and Citizenship"	19-Feb-08	="Management advisory services"	08-Feb-08	21-Mar-08	14988.00	=""	="Persec Solutions Pty Ltd"	19-Feb-08 01:37 PM	

+="CN62721"	" Printing publications "	="Australian Centre for International Agricultural Research"	19-Feb-08	="Publication printing"	12-Dec-07	18-Feb-08	10549.00	=""	="Union Offset Printers"	19-Feb-08 02:42 PM	

+="CN62723"	" Tiertiary fees "	="Australian Centre for International Agricultural Research"	19-Feb-08	="University and colleges"	21-Dec-07	11-Feb-08	10697.50	=""	="UMME Ltd"	19-Feb-08 02:53 PM	

+="CN62731-A1"	"Provision of Security Vetting Services"	="Department of Immigration and Citizenship"	19-Feb-08	="Management advisory services"	24-Jan-08	06-Mar-08	10562.00	=""	="Persec Solutions Pty Ltd"	19-Feb-08 02:58 PM	

+="CN62732-A2"	"Provision of Security Vetting Services"	="Department of Immigration and Citizenship"	19-Feb-08	="Management advisory services"	01-Feb-08	14-Mar-08	12079.00	=""	="Persec Solutions Pty Ltd"	19-Feb-08 03:03 PM	

+="CN62737-A1"	"Provision for Consultant to Review Treatment of Project Costs"	="Comsuper"	19-Feb-08	="Business and corporate management consultation services"	12-Feb-08	25-Feb-08	15000.00	=""	="KPMG"	19-Feb-08 03:09 PM	

+="CN62738"	"Provision of Personal Safety Training Courses"	="Department of Immigration and Citizenship"	19-Feb-08	="Employee education"	04-Feb-08	09-Apr-08	13300.00	=""	="Achievement Awareness Training Pty Ltd"	19-Feb-08 03:10 PM	

+="CN62747"	"CPO019090 - Printing"	="Australian Customs and Border Protection Service"	19-Feb-08	="Printed media"	22-Jan-08	22-Jan-08	11920.84	=""	="Craft Inprint Brisbane"	19-Feb-08 03:53 PM	

+="CN62751"	"CPO019136 - Background Checking Service"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Nov-07	14964.00	=""	="AusCheck"	19-Feb-08 03:54 PM	

+="CN62754"	"CPE003920-3 - Stationery and Office Supplies"	="Australian Customs and Border Protection Service"	19-Feb-08	="Office supplies"	16-Jan-08	29-Jan-08	11452.08	=""	="Corporate Express Australia Ltd"	19-Feb-08 03:54 PM	

+="CN62795"	"CPE002796-4 -  Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	11827.20	=""	="CRIMTRAC"	19-Feb-08 04:03 PM	

+="CN62797"	"CPO019292 - Reporting Documents"	="Australian Customs and Border Protection Service"	19-Feb-08	="Printed media"	12-Dec-07	01-Feb-08	12650.00	=""	="International Broking Services"	19-Feb-08 04:03 PM	

+="CN62799"	"CPE003131-6 - Fuel"	="Australian Customs and Border Protection Service"	19-Feb-08	="Fuels"	04-Jan-08	04-Jan-08	14305.60	=""	="Sea Swift Pty Ltd"	19-Feb-08 04:04 PM	

+="CN62807"	"CPO019314 - Mains Power Installation"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	12071.40	=""	="Access Control Engineered Systems Pty Ltd"	19-Feb-08 04:05 PM	

+="CN62815"	"CPE004472-1 - Storage Cabinet"	="Australian Customs and Border Protection Service"	19-Feb-08	="Metal and mineral industries"	06-Feb-08	30-Jun-08	10506.10	=""	="Dexion North Queensland"	19-Feb-08 04:06 PM	

+="CN62816"	"CPO019323 - Training Course"	="Australian Customs and Border Protection Service"	19-Feb-08	="Education and Training Services"	08-Feb-08	13-Jun-08	12749.00	=""	="Visual Analysis"	19-Feb-08 04:06 PM	

+="CN62819"	"CPO019461 - Background Checking Services"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	10425.00	=""	="AusCheck"	19-Feb-08 04:06 PM	

+="CN62820"	"CPO018838 - Barrier System"	="Australian Customs and Border Protection Service"	19-Feb-08	="Metal and mineral industries"	17-Jan-08	08-Feb-08	10911.56	=""	="UFL Group"	19-Feb-08 04:06 PM	

+="CN62828"	"CPO019568 - Review Design"	="Australian Customs and Border Protection Service"	19-Feb-08	="Human resources services"	14-Feb-08	25-Feb-08	11935.00	=""	="E Fab Pty Ltd"	19-Feb-08 04:07 PM	

+="CN62833"	"QANTAS Standing Offer"	="Defence Materiel Organisation"	19-Feb-08	="Travel and Food and Lodging and Entertainment Services"	16-Nov-07	16-Nov-07	12559.81	=""	="QANTAS AIRWAYS LIMITED"	19-Feb-08 04:28 PM	

+="CN62834"	"Patrick Batch end of post return"	="Defence Materiel Organisation"	19-Feb-08	="Travel and Food and Lodging and Entertainment Services"	05-Feb-08	05-Feb-08	10699.30	=""	="QANTAS AIRWAYS LIMITED"	19-Feb-08 04:28 PM	

+="CN62837"	"REGO 058/08Purchase of Qty 8 drums of premium blue oil for Harts Range site Alice Springs"	="Defence Materiel Organisation"	19-Feb-08	="Lubricants and oils and greases and anti corrosives"	11-Jan-08	11-Jan-08	10003.31	=""	="CUMMINS POORAKA"	19-Feb-08 04:29 PM	

+="CN62838"	"Sennheiser PXC 450 Headphones"	="Defence Materiel Organisation"	19-Feb-08	="Communications Devices and Accessories"	22-Jan-08	22-Jan-08	10260.00	=""	="SOUTH COAST MUSIC"	19-Feb-08 04:29 PM	

+="CN62845"	"Early General News IIF"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Marketing and distribution"	01-Feb-08	21-Feb-08	13428.10	=""	="HMA BLAZE PTY LTD"	19-Feb-08 04:49 PM	

+="CN62856"	"Project Management Wilde and Woollard job 0750, 08-278 ks"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	29-Feb-08	12212.61	=""	="WILDE AND WOOLLARD"	19-Feb-08 04:51 PM	

+="CN62857"	"OHS Chemical database Annual Maintenance Fee Nov07-Oct08 000"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Communications Devices and Accessories"	11-Feb-08	29-Feb-08	15730.00	=""	="CHEMWATCH"	19-Feb-08 04:51 PM	

+="CN62859"	"Helium 16 Pack and Mthly Rental Supagas 20147-1-2008  ks"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory supplies and fixtures"	12-Feb-08	29-Feb-08	10374.10	=""	="SUPAGAS"	19-Feb-08 04:51 PM	

+="CN62860"	"wORKSHOPS FOR sILK aUTOMATION pROCESSES aURION uPGRADE C07/0"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	12-Feb-08	29-Feb-08	13200.00	=""	="AURION CORPORATION P/L"	19-Feb-08 04:51 PM	

+="CN62862"	"GST and Customs Import fees  N/A"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Transportation and Storage and Mail Services"	12-Feb-08	30-Jun-08	15288.50	=""	="CAMPBELL and RONAN PTY LTD"	19-Feb-08 04:51 PM	

+="CN62867"	"Universal counter and delay generator  ."	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Feb-08	12-Mar-08	13826.00	=""	="SCIENTIFIC DEVICES AUSTRALIA PTY LTD"	19-Feb-08 04:52 PM	

+="CN62870"	"DISPENSING PUMP  NA"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	14-Feb-08	14-Mar-08	11693.00	=""	="A.L.P.E PTY LTD"	19-Feb-08 04:52 PM	

+="CN62872"	"Mallesons Stephen Jaques"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Legal services"	14-Jan-08	01-Jun-08	14850.00	=""	="MALLESONS STEPHEN JAQUES"	19-Feb-08 04:53 PM	

+="CN62874"	"IBM Cisco Switches for Blade Centre  C05/06800"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer Equipment and Accessories"	15-Feb-08	29-Feb-08	15443.84	=""	="FUJITSU AUSTRALIA LIMITED"	19-Feb-08 04:53 PM	

+="CN62876"	"Hand held analyzer with sound level meter from Bruel and kjaer"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	18-Dec-07	18-Dec-07	10180.50	=""	="BRUEL and KJAER AUSTRALIA"	19-Feb-08 04:53 PM	

+="CN62878"	"Staff Relocation Costs C07/87459"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	18-Jan-08	31-Jan-08	12017.87	=""	="TOLL TRANSITIONS"	19-Feb-08 04:53 PM	

+="CN62881"	"Provision of MS Sharepoint/Infopath 2007 Development Assista"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer services"	20-Dec-07	29-Feb-08	11880.00	=""	="UNIQUE WORLD PTY LTD"	19-Feb-08 04:54 PM	

+="CN62883"	"Architectural record drawings L2 and L3  N/A"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Building and Construction and Maintenance Services"	21-Jan-08	30-Jun-08	11242.00	=""	="LEIGHTON IRWIN PTY LTD"	19-Feb-08 04:54 PM	

+="CN62884"	"Supply/install Gas Reticulation  N/A"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory supplies and fixtures"	21-Jan-08	30-Jun-08	12866.70	=""	="BOC GASES"	19-Feb-08 04:54 PM	

+="CN62885"	"Provision of Implementation Services for Symantec End Point"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer services"	23-Jan-08	29-Feb-08	10384.00	=""	="SYMANTEC AUSTRALIA PTY LTD"	19-Feb-08 04:54 PM	

+="CN62886"	"EBSCO journal subscription for library From January 2008 to"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	23-Jan-08	15342.26	=""	="EBSCO AUSTRALIA"	19-Feb-08 04:54 PM	

+="CN62887"	"JLL POE water and sewage service NMIPOE180122008"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	31-Jan-08	10386.20	=""	="JONES LANG LASALLE (ACT) PTY LTD"	19-Feb-08 04:55 PM	

+="CN62888"	"NCSI Audit Charges INN00007243 Req."	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	31-Jan-08	12424.50	=""	="NCS INTERNATIONAL PTY LTD"	19-Feb-08 04:55 PM	

+="CN62891"	"FILE CENSUS  C07/13483"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Transportation and Storage and Mail Services"	28-Nov-07	30-Jun-08	10000.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	19-Feb-08 04:55 PM	

+="CN62893"	"Venue hire - SES forum"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Hotels and lodging and meeting facilities"	30-Jan-08	18-Feb-08	12455.00	=""	="THE HYATT HOTEL CANBERRA"	19-Feb-08 04:55 PM	

+="CN62896"	"Maintenance Agreement Immulite"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	30-Jan-08	31-Dec-08	10081.50	=""	="SIEMENS MEDICAL SOLUTIONS DIAGNOSTICS PL"	19-Feb-08 04:56 PM	

+="CN62897"	"Glucuronidase"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Chemicals including Bio Chemicals and Gas Materials"	30-Jan-08	31-Dec-20	13783.00	=""	="ROCHE DIAGNOSTICS AUST PTY LTD"	19-Feb-08 04:56 PM	

+="CN62903"	"Recruitment Services"	="Australian Taxation Office"	19-Feb-08	="Recruitment services"	25-Jan-08	30-Apr-08	13066.20	="06.042"	="Manpower Services (Aust) Pty Ltd"	19-Feb-08 05:16 PM	

+="CN62910"	"07/2072 - Training Services - 1523-1816 - Leading People at the Frontline Panel - 06/1523 (CPO012789)"	="Australian Customs and Border Protection Service"	20-Feb-08	="Specialised educational services"	15-Oct-07	29-Jan-08	14000.00	=""	="McMillan Staff Development"	20-Feb-08 09:10 AM	

+="CN62912"	"07/2295 - Training Services - 1523-1816  - Leading People at the Frontline Panel - 06/1523 (CPO015582)"	="Australian Customs and Border Protection Service"	20-Feb-08	="Specialised educational services"	10-Mar-08	10-Jun-08	14000.00	=""	="McMillan Staff Development"	20-Feb-08 09:15 AM	

+="CN62916"	"Provision of  Internal audit service Contract (DPS04163)"	="Department of Parliamentary Services"	20-Feb-08	="Internal audits"	06-Feb-08	03-Mar-08	15943.13	=""	="WalterTurnbull Pty Ltd"	20-Feb-08 09:20 AM	

+="CN62917"	"Provision of  Internal audit service Contract (DPS04163)"	="Department of Parliamentary Services"	20-Feb-08	="Internal audits"	06-Feb-08	03-Mar-08	15458.44	=""	="WalterTurnbull Pty Ltd"	20-Feb-08 09:20 AM	

+="CN62921"	"provision of  case management Contract (DPS06125)"	="Department of Parliamentary Services"	20-Feb-08	="Physical and occupational therapy and rehabilitation products"	11-Feb-08	03-Mar-08	11000.00	=""	="SRC Solutions"	20-Feb-08 09:20 AM	

+="CN62926"	"Supply of electronic security hardware"	="Department of Parliamentary Services"	20-Feb-08	="Safety or security systems installation"	12-Feb-08	31-Mar-08	11000.00	=""	="Honeywell Security - Australia"	20-Feb-08 09:21 AM	

+="CN62928"	"Provision of internal Audit Services"	="Department of Parliamentary Services"	20-Feb-08	="Internal audits"	01-Feb-08	30-Jun-08	12375.00	=""	="WalterTurnbull Pty Ltd"	20-Feb-08 09:21 AM	

+="CN62935"	"Provision of financial assessments in relation to Parliament House catering services"	="Department of Parliamentary Services"	20-Feb-08	="Government finance services"	05-Feb-08	05-Feb-08	11088.00	=""	="Grey Advantage Consulting Pty Ltd"	20-Feb-08 09:22 AM	

+="CN62939"	"Maintenance service for  security bollards Contract (DPS07051)"	="Department of Parliamentary Services"	20-Feb-08	="Security systems services"	08-Feb-08	03-Mar-08	12397.00	=""	="Oztime Technologies"	20-Feb-08 09:23 AM	

+="CN62940"	"Provision of  Project Mangement Services"	="Department of Parliamentary Services"	20-Feb-08	="Project management"	08-Feb-08	30-Jun-08	12704.62	=""	="Manteena Pty Ltd"	20-Feb-08 09:23 AM	

+="CN62942"	"Building works Package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	20-Feb-08	="Building construction management"	08-Feb-08	03-Mar-08	13200.00	=""	="Manteena Pty Ltd"	20-Feb-08 09:23 AM	

+="CN62947"	"Security Provisions for Bike Racks"	="Department of the Environment Water Heritage and the Arts"	20-Feb-08	="Public Utilities and Public Sector Related Services"	23-Jan-08	31-Mar-08	10450.00	="2008/00866"	="Promo Electrical Pty Ltd"	20-Feb-08 09:53 AM	

+="CN62965"	"Provision for Graduate Training"	="Department of Immigration and Citizenship"	20-Feb-08	="Employee education"	11-Feb-08	03-Mar-08	12525.00	=""	="The Trustee for the People & Strategy Unit Trust"	20-Feb-08 11:18 AM	

+="CN62971"	"Sewer Replacement Services"	="Questacon"	20-Feb-08	="Plumbing system maintenance or repair"	03-Jan-08	03-Mar-08	10200.00	=""	="The Plumbing Connection"	20-Feb-08 11:29 AM	

+="CN62974"	"Update Building Condition Index"	="Questacon"	20-Feb-08	="Facilities management"	29-Jan-08	31-Mar-08	12710.00	=""	="Advanced FM"	20-Feb-08 12:11 PM	

+="CN62995"	" Engine Built-up Unit, Aircraft  2840/661030991 "	="Defence Materiel Organisation"	20-Feb-08	="Military transport aircraft"	19-Feb-08	19-May-08	10425.30	=""	="Qantas Defence Services"	20-Feb-08 02:52 PM	

+="CN62999"	"labour cost repair intercom set gun control"	="Department of Defence"	20-Feb-08	="Intercom systems"	20-Feb-08	29-May-08	12182.00	=""	="JENKINS ENGINEERING DEFENCE"	20-Feb-08 02:55 PM	

+="CN63006"	"5x Forensic Toolkit 2.0 Licenses"	="Australian Taxation Office"	20-Feb-08	="License management software"	27-Feb-08	27-Feb-08	14995.00	=""	="Fulcrum Management"	20-Feb-08 03:29 PM	

+="CN63005"	"NSN 4720-00-289-6165, Nonmetallic Hose Assemblies"	="Defence Materiel Organisation"	20-Feb-08	="Aerospace systems and components and equipment"	11-Feb-08	01-Aug-08	11013.20	=""	="Milspec Services Pty Ltd"	20-Feb-08 03:31 PM	

+="CN63011"	"Administrative Arrangement Orders"	="Department of the Prime Minister and Cabinet"	20-Feb-08	="Business administration services"	18-Dec-07	17-Jan-08	12300.00	=""	="Attorney-Generals Department Cth CPM"	20-Feb-08 04:25 PM	

+="CN63013"	"qty 1,000 sheet, technical operating instructions, radio set"	="Defence Materiel Organisation"	20-Feb-08	="Printed inserts or instructions"	19-Feb-08	25-Mar-08	13200.00	="RFQ-C7087"	="EYLEX PTTY LTD"	20-Feb-08 05:03 PM	

+="CN63014"	"NSN 3120-01-066-4997, Eccentric Bushings"	="Defence Materiel Organisation"	20-Feb-08	="Aerospace systems and components and equipment"	15-Feb-08	19-Oct-08	14256.00	=""	="Milspec Services Pty Ltd"	20-Feb-08 05:19 PM	

+="CN63049"	"METHYL ETHYL, KETONE TECHNICAL"	="Defence Materiel Organisation"	21-Feb-08	="Chemicals including Bio Chemicals and Gas Materials"	20-Feb-08	05-Mar-08	14300.00	=""	="CHEM-SUPPLY PTY LTD"	21-Feb-08 11:44 AM	

+="CN63055"	"Sun Computer Workstation & Accessories"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Furniture and Furnishings"	21-Mar-08	21-Mar-08	12232.00	=""	="Frontline"	21-Feb-08 12:25 PM	

+="CN63058"	"Levies Support - Jan 2008"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Computer services"	01-Jan-08	31-Jan-08	10769.00	=""	="Aladn System Solutions"	21-Feb-08 12:26 PM	

+="CN63060"	"GRDC Variety Form Amendment"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Computer services"	01-Jan-08	31-Jan-08	10296.00	=""	="Aladn System Solutions"	21-Feb-08 12:26 PM	

+="CN63061"	"Supply of 10 spare workstations"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	30-Jun-08	11350.90	=""	="Cite Office Design Pty Ltd"	21-Feb-08 12:26 PM	

+="CN63062"	"Lease of 1 HP Designjet T1100PS"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Tools and General Machinery"	11-Feb-08	11-Feb-11	14184.00	=""	="Alliance Equipment Finance Pty Limited"	21-Feb-08 12:26 PM	

+="CN63064"	"Short term rental property to accommodate relieving staff"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Passenger transport"	18-Feb-08	11-Jul-08	15450.00	=""	="McLaws Discretionary"	21-Feb-08 12:27 PM	

+="CN63072-A2"	"production of Aquatic animal disease CD"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	28-Apr-08	23-May-08	11689.00	=""	="Wilton Hanford Hanover Pty Ltd"	21-Feb-08 12:28 PM	

+="CN63077"	"Relocation Accommodation"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Passenger transport"	06-Jan-08	01-Mar-08	12000.00	=""	="Pinnacle Apartment Hotel"	21-Feb-08 12:29 PM	

+="CN63078"	"Helicopter Charter to Maningrida 5th to 7th Feb 08. Original quote was less than $10k, flight time extended,increasing total cost."	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Transportation and Storage and Mail Services"	05-Feb-08	07-Feb-08	12498.20	=""	="Jayrow Helicopters Pty Ltd"	21-Feb-08 12:29 PM	

+="CN63084"	"Blackberry charges for Dec 07"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	14493.93	=""	="Telstra Corporation"	21-Feb-08 12:30 PM	

+="CN63093"	"NEW COMFLOT VISITING HIS EQUIVALENT POSITIONS IN THE RN AND TO VALIDATE THE CURRENT MR PROCESS BY VISIT THE MEAO"	="Department of Defence"	21-Feb-08	="Recreational aircraft"	05-Sep-07	05-Sep-07	13348.30	=""	="QANTAS AIRWAYS LIMITED"	21-Feb-08 01:18 PM	

+="CN63094"	"AIJAC Visit 07"	="Department of Defence"	21-Feb-08	="Passenger transport"	09-Nov-07	09-Nov-07	10619.50	=""	="QANTAS AIRWAYS LIMITED"	21-Feb-08 01:18 PM	

+="CN63095"	"Woomera ARH Trial - Accommodation 16 - 22 Nov 07"	="Department of Defence"	21-Feb-08	="Travel and Food and Lodging and Entertainment Services"	22-Nov-07	22-Nov-07	12470.00	=""	="EUREST NO 1"	21-Feb-08 01:18 PM	

+="CN63096"	"ACMS 1774021 CADET TRAVEL TO TAS 08 ANNUAL CAMP (TIPALOURA NO SHOW AWAIT REFUND)"	="Department of Defence"	21-Feb-08	="Travel facilitation"	14-Dec-07	14-Dec-07	11431.00	=""	="VIRGIN BLUE"	21-Feb-08 01:18 PM	

+="CN63100"	"KE software annual fee and new installation"	="Department of Defence"	21-Feb-08	="Information services"	13-Nov-07	13-Nov-07	12848.00	=""	="KE SOFTWARE P/L"	21-Feb-08 01:19 PM	

+="CN63103"	"Replacement of existing assets, which have been declared BER. Quote chosen represents VFM."	="Department of Defence"	21-Feb-08	="Furniture and Furnishings"	05-Dec-07	05-Dec-07	11725.00	=""	="THE OUTDOOR FURN SPEC"	21-Feb-08 01:19 PM	

+="CN63105"	"Advertising display boards"	="Department of Defence"	21-Feb-08	="Advertising"	14-Dec-07	14-Dec-07	12403.71	=""	="DISPLAY SYSTEMS"	21-Feb-08 01:20 PM	

+="CN63108"	"4500628126 - Display builders up front payment as approved from Jimmy Hafesjee"	="Department of Defence"	21-Feb-08	="Building and Construction and Maintenance Services"	20-Dec-07	29-Jan-08	13515.92	=""	="THE DISPLAY BUILDERS"	21-Feb-08 01:20 PM	

+="CN63113"	"AST Key watcher  model KW 00080for R1-3-D142"	="Department of Defence"	21-Feb-08	="Security and control equipment"	14-Jan-08	14-Feb-08	13069.00	=""	="AUSTRALIAN SECURITY IN"	21-Feb-08 01:21 PM	

+="CN63114"	"Training Delivery in Darwin"	="Department of Defence"	21-Feb-08	="Education and Training Services"	08-Oct-07	08-Nov-07	11023.37	=""	="DIMENSIONS DATA LEARNING"	21-Feb-08 01:21 PM	

+="CN63115"	"Health Costs"	="Department of Defence"	21-Feb-08	="Patient care and treatment products and supplies"	14-Jan-08	13-Feb-08	14249.57	=""	="ST JOHN OF GOD SU"	21-Feb-08 01:21 PM	

+="CN63116"	"Booth space and shell scheme hire -ITEC 2008"	="Department of Defence"	21-Feb-08	="Trade shows and exhibits"	16-Jan-08	12-Jun-08	12533.48	=""	="REED EXHIBITIONS"	21-Feb-08 01:21 PM	

+="CN63118"	"23/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	17-Jan-08	17-Jan-08	12098.33	=""	="GREENSLOPES PRIV H"	21-Feb-08 01:22 PM	

+="CN63119"	"30/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	16-Jan-08	16-Jan-08	11205.00	=""	="ADIB MEDICAL PTY LTD"	21-Feb-08 01:22 PM	

+="CN63120"	"22/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	16-Jan-08	16-Jan-08	10164.15	=""	="DR BENJAMIN ERZETIC"	21-Feb-08 01:22 PM	

+="CN63122"	"01/02/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	16-Jan-08	16-Jan-08	11190.60	=""	="ST ANDREWS HOSPITAL"	21-Feb-08 01:22 PM	

+="CN63123"	"23/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	18-Jan-08	18-Jan-08	13061.01	=""	="OPSM 8921"	21-Feb-08 01:22 PM	

+="CN63124"	"Furniture"	="Department of Defence"	21-Feb-08	="Furniture and Furnishings"	18-Jan-08	18-Jan-08	11880.00	=""	="COMP OFFICE SUPPLIES"	21-Feb-08 01:23 PM	

+="CN63125"	"Health Costs"	="Department of Defence"	21-Feb-08	="Patient care and treatment products and supplies"	18-Jan-08	06-Feb-08	11609.55	=""	="PERTH CLINIC"	21-Feb-08 01:23 PM	

+="CN63127"	"Health Costs"	="Department of Defence"	21-Feb-08	="Patient care and treatment products and supplies"	19-Jan-08	06-Feb-08	12271.10	=""	="THE MOUNT PRIVATE"	21-Feb-08 01:23 PM	

+="CN63128"	"07081312TG File cencus Analysis"	="Department of Defence"	21-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	13082.78	=""	="ARDEC INTERNATIONAL"	21-Feb-08 01:23 PM	

+="CN63129"	"Renewal of single-conscurrent-user networked right-to-use annual GridGen license (USD$9,500.00) DSTO198226 /DPC 3863"	="Department of Defence"	21-Feb-08	="Software"	17-Jan-08	17-Jan-08	10869.47	=""	="POINTWISE INC"	21-Feb-08 01:23 PM	

+="CN63131"	"MSA Bandicoot Refit accommodation Port Macquaire"	="Department of Defence"	21-Feb-08	="Hotels and lodging and meeting facilities"	23-Jan-08	30-Jan-08	11220.00	=""	="RYDGESPORTMACQ"	21-Feb-08 01:23 PM	

+="CN63132"	"GATEWAY CHARGES FOR THE COLLEGE"	="Department of Defence"	21-Feb-08	="Computer services"	22-Jan-08	22-Jan-08	12137.51	=""	="SECURENET LTD"	21-Feb-08 01:24 PM	

+="CN63136"	"MSA Bandicoot refit accommodation Port Macquarie"	="Department of Defence"	21-Feb-08	="Hotels and lodging and meeting facilities"	31-Jan-08	07-Feb-08	10840.00	=""	="RYDGESPORTMACQ"	21-Feb-08 01:24 PM	

+="CN63137"	"Supply Chain & Logistics Management Executive Development Program"	="Department of Defence"	21-Feb-08	="Education and Training Services"	30-Jan-08	28-Feb-08	15500.00	=""	="MONASH UNI BUS/ECON"	21-Feb-08 01:24 PM	

+="CN63138"	"Furniture"	="Department of Defence"	21-Feb-08	="Furniture and Furnishings"	04-Feb-08	04-Feb-08	15015.00	=""	="COMP OFFICE SUPPLIES"	21-Feb-08 01:24 PM	

+="CN63142"	"Office Max monthly bill for December"	="Department of Defence"	21-Feb-08	="Office supplies"	04-Feb-08	04-Feb-08	11978.89	=""	="NATIONAL OFFICE PRODUC"	21-Feb-08 01:25 PM	

+="CN63145"	"GATEWAY FEES FOR ADC WESTON"	="Department of Defence"	21-Feb-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-08	07-Feb-08	10507.53	=""	="SECURENET LTD"	21-Feb-08 01:26 PM	

+="CN63163"	" NSN 2840/00-127-5730  REPAIR/OVERHAUL OF HOUSING, GEARBOX, TURBINE ENGINE EX GST "	="Defence Materiel Organisation"	21-Feb-08	="Military transport aircraft"	21-Feb-08	21-May-08	11888.50	=""	="Qantas Defence Services Pty Ltd"	21-Feb-08 02:52 PM	

+="CN63165"	" NSN 2840/00-127-5730  REPAIR/OVERHAUL OF HOUSING, GEARBOX, TURBINE ENGINE EX GST "	="Defence Materiel Organisation"	21-Feb-08	="Military transport aircraft"	21-Feb-08	21-May-08	11888.50	=""	="Qantas Defence Services Pty Ltd"	21-Feb-08 02:56 PM	

+="CN63167-A1"	" Energy Efficiency Scoping of better practice guide "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-02	01-Jul-06	11000.00	=""	="FUTURE PERFECT COMMUNICATIONS"	21-Feb-08 03:00 PM	

+="CN63172-A1"	" Gas production and water heating checktesting for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	21-Feb-08	="Trade policy and services"	18-Jul-07	20-Jul-07	11440.00	=""	="ENERTECH AUSTRALIA P/L"	21-Feb-08 03:00 PM	

+="CN63174-A1"	" Minimum Energy Performance Standards and Regulatory Impact Statements for the testing energy efficiency of commercial refirgeration and whitegoods "	="Department of Resources Energy and Tourism"	21-Feb-08	="Measuring and observing and testing instruments"	18-Jul-07	30-Jun-08	12504.00	=""	="GEORGE WILKENFELD and ASSOCIATES PTY LTD"	21-Feb-08 03:01 PM	

+="CN63175-A1"	"ComSuper Admin Employer Contribution"	="Department of Resources Energy and Tourism"	21-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jul-07	30-Jun-08	14960.00	=""	="DIGITAL CENERGY AUSTRALIA"	21-Feb-08 03:01 PM	

+="CN63177-A1"	" Development of nine building block training courses  "	="Department of Resources Energy and Tourism"	21-Feb-08	="Education and Training Services"	18-Jul-07	31-Jul-07	11458.34	=""	="SUSTAINABILIITY VICTORIA"	21-Feb-08 03:01 PM	

+="CN63181-A1"	" Energy Efficiency Opportunities industry issues and community practice "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	30-Jun-08	14300.00	=""	="GHD PTY LTD"	21-Feb-08 03:02 PM	

+="CN63184-A1"	" Legal advice on acreage release "	="Department of Resources Energy and Tourism"	21-Feb-08	="Legal services"	19-Jul-07	31-Aug-07	11933.90	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Feb-08 03:02 PM	

+="CN63185-A1"	" Energy Efficiency Opportunities Trail verification "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	31-Jul-07	2631.16	=""	="EXERGY AUSTRALIA PTY LIMITED"	21-Feb-08 03:03 PM	

+="CN63194"	"Recruitment Services"	="Australian Taxation Office"	21-Feb-08	="Recruitment services"	04-Feb-08	15-Mar-08	12000.00	="06.042"	="Hays Personnel Services (Australia) Pty Ltd"	21-Feb-08 04:36 PM	

+="CN63196"	"NSN 1660-01-307-7023, Aircraft Air Water Separators"	="Defence Materiel Organisation"	21-Feb-08	="Aerospace systems and components and equipment"	14-Nov-07	04-Sep-08	11701.82	=""	="Milspec Services Pty Ltd"	21-Feb-08 04:51 PM	

+="CN63202"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	11-Apr-09	14718.07	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 07:55 AM	

+="CN63204"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	29-Sep-08	14571.15	=""	="MILSPEC SERVICES PTY LTD"	22-Feb-08 08:11 AM	

+="CN63205"	"Flammable liquid storage cabinets."	="Department of Defence"	22-Feb-08	="Hazardous materials cabinets"	12-Feb-08	19-Mar-08	12249.60	=""	="FGP Company Pty Ltd"	22-Feb-08 08:22 AM	

+="CN63207"	" Motor Vehilce Spare Parts "	="Department of Defence"	22-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Feb-08	19-Mar-08	11679.36	=""	="Volvo Commericial Vehicles"	22-Feb-08 08:35 AM	

+="CN63226"	"motor vehicle spare parts"	="Department of Defence"	22-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Feb-08	22-Mar-08	10410.60	=""	="Rover Australia"	22-Feb-08 11:16 AM	

+="CN63232"	"Production of a Replica of a Museum Art Piece"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	11-Jan-08	11-Jan-08	13500.00	="2007/00852"	="The British Museum Great Court Limited"	22-Feb-08 11:42 AM	

+="CN63242"	"Provision of Security Contractor for Building Works"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	17-Jan-08	01-Feb-08	13827.00	="2007/00732"	="Promo Electrical Pty Ltd"	22-Feb-08 01:18 PM	

+="CN63254"	" SUPPLY OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	22-Feb-08	="Motor vehicles"	22-Feb-08	07-Mar-08	12869.34	=""	="LAND ROVER AUSTRALIA"	22-Feb-08 02:37 PM	

+="CN63259"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Apr-08	12009.20	=""	="RYDGES CANBERRA"	22-Feb-08 02:46 PM	

+="CN63261"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	21-Feb-08	31-Mar-08	14500.00	=""	="ZOO"	22-Feb-08 02:46 PM	

+="CN63263"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	13250.00	="TBA"	="SPHERE CONSULTING PTY LTD"	22-Feb-08 02:46 PM	

+="CN63264"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	13500.00	="TBA"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	22-Feb-08 02:46 PM	

+="CN63282"	"NSN 1560-00-949-6066, Duct Assemblies"	="Defence Materiel Organisation"	22-Feb-08	="Aerospace systems and components and equipment"	22-Feb-08	14-Apr-08	13145.68	=""	="Milspec Services Pty Ltd"	22-Feb-08 04:52 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val16000to20000.xls
@@ -1,1 +1,101 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61975"	"Leadership Workshop at ALAS 2007 Leadership Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	23-Jul-07	31-Aug-07	16500.00	=""	="BENEVOLENT SOCIETY, THE"	18-Feb-08 12:43 PM	

+="CN61990"	" NSN 1660/00-956-4032  REPAIR/OVERHAUL OF REGULATOR, O, YGEN  EX GST "	="Defence Materiel Organisation"	18-Feb-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17675.68	=""	="John Holland Aviation Services"	18-Feb-08 12:46 PM	

+="CN62003"	"Medium Term Expenditure Framework"	="AusAid"	18-Feb-08	="Educational institutions"	04-Jul-07	31-Dec-07	18700.00	=""	="WATERGALL CONSULTING LTD"	18-Feb-08 12:47 PM	

+="CN62018"	" NSN 1660/00-956-4032  REPAIR/OVERHAUL OF REGULATOR, O, YGEN  EX GST "	="Defence Materiel Organisation"	18-Feb-08	="Military transport aircraft"	11-Jan-07	15-Dec-07	17675.68	=""	="John Holland Aviation Services"	18-Feb-08 12:50 PM	

+="CN62041"	"Temporary AIPRD Program Manager FY 2007/2008"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	20-Oct-07	17050.00	=""	="FULLER, KATE MARIANNE"	18-Feb-08 12:52 PM	

+="CN62057"	"Contract for Solomon Islands Ranking of Scholarships Application"	="AusAid"	18-Feb-08	="Educational facilities"	01-Jul-07	30-Jun-10	17114.86	=""	="SOUTH PACIFIC BOARD FOR EDUCATIONAL ASSESSMENT"	18-Feb-08 12:54 PM	

+="CN62073"	"Democratic Governance Program Strategy Mission: Dr Frank Feulner"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Nov-07	16063.35	=""	="FEULNER, FRANK"	18-Feb-08 12:56 PM	

+="CN62077"	"MId Trem Review of ACRP - Nick"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Nov-07	17653.28	=""	="BRIDGER, NICHOLAS"	18-Feb-08 12:57 PM	

+="CN62081"	"Risk Management Advisory Indonesia 07/08"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Jul-07	30-Jun-08	19500.00	=""	="RISK MANAGEMENT ADVISORY INDONESIA"	18-Feb-08 12:57 PM	

+="CN62086"	"Independent Completion Report for HARAP - Pudjirahardjo, dr Widodo J"	="AusAid"	18-Feb-08	="Community and social services"	15-Aug-07	31-Oct-07	16684.05	=""	="PUDJIRAHARDJO, WIDODO J."	18-Feb-08 12:58 PM	

+="CN62090"	"Review of Whole of Government Briefings for Overseas Deployment"	="AusAid"	18-Feb-08	="Information services"	30-Aug-07	31-Mar-08	19415.00	=""	="UPTON MARTIN AND ASSOC UNIT TRUST"	18-Feb-08 12:58 PM	

+="CN62097"	"Power Sector Short-Term Input - Barry Trembath"	="AusAid"	18-Feb-08	="Utilities"	23-Sep-07	30-Mar-08	18880.01	=""	="TREMBATH, BARRY"	18-Feb-08 12:59 PM	

+="CN62119"	"Miller Aviation Partners (CAPA Consulting) - Aviation background"	="AusAid"	18-Feb-08	="Economics"	15-Oct-07	31-Oct-07	19250.00	=""	="MILLER AVIATION PARTNERS PTY LTD"	18-Feb-08 01:02 PM	

+="CN62142"	"Review of Copra Industry and Commodities Marketing - Team Leader"	="AusAid"	18-Feb-08	="Management advisory services"	05-Nov-07	31-Jan-08	16248.44	=""	="HOPA, DAVID"	18-Feb-08 01:05 PM	

+="CN62144"	"PNG Electoral Support Program - Six Monthly Contractor Performance Review -Tanorama"	="AusAid"	18-Feb-08	="Management advisory services"	29-Oct-07	07-Dec-07	18768.13	=""	="BRASH, MARTIN E"	18-Feb-08 01:05 PM	

+="CN62178"	"TA for Establishing the OACC - Dr Alex Taylor"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	30-Oct-07	18271.00	=""	="BRISBANE CITY ENTERPRISES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62216"	"Hassall & Associates Pty Ltd - Service Order District Health Planning Mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Sep-07	31-Oct-07	20000.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62217"	"Azwar Hasan_National Governance Advisor_HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	20-Oct-07	30-Jan-08	18436.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62235"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	31-Oct-07	18805.60	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:18 PM	

+="CN62263"	"Martine Van de Velde - Presentation on M&E framework at AusAID/WB Conference and the MWG (Nov 07)."	="AusAid"	18-Feb-08	="International relations"	06-Nov-07	30-Nov-07	18069.53	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:22 PM	

+="CN62276"	"ACFID - Funding for East Timor NGO Forum"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	31-Jul-07	31-Aug-07	16720.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62281"	"Photographic assignment in Kirbati & Nauru"	="AusAid"	18-Feb-08	="Printed media"	14-Jun-07	31-Aug-07	17332.92	=""	="LORRIE GRAHAM PHOTOGRAPHER PTY LTD"	18-Feb-08 01:25 PM	

+="CN62287"	"Swell"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	19759.30	=""	="SWELL DESIGN GROUP PTY LTD"	18-Feb-08 01:26 PM	

+="CN62305"	"Probity Audit - Solomon Islands Public Sector Improvement Program (PSIP)"	="AusAid"	18-Feb-08	="Human resources services"	18-May-07	18-Jun-07	16494.39	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:28 PM	

+="CN62374"	"Review of Vanuatu Kastom Governance Partnership"	="AusAid"	18-Feb-08	="Vocational training"	25-Aug-07	17-Sep-07	18396.40	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62437"	"Recruitment of Customs Adviser"	="AusAid"	18-Feb-08	="Human resources services"	24-Sep-07	31-Dec-07	17050.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62475"	"2009 Indonesia Elections Support Scoping and Strategy Study"	="AusAid"	18-Feb-08	="Business administration services"	19-Mar-07	30-Nov-07	18920.00	=""	="WHELAN, PHIL R"	18-Feb-08 01:52 PM	

+="CN62484"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-May-07	30-Sep-07	17732.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN40312"	"BUILDING MAINTENANCE"	="Office of the Official Secretary to the Governor-General"	18-Feb-08	="Building construction and support and maintenance and repair services"	25-Oct-07	25-Nov-07	19714.75	=""	="BESSELINK MASTER PAINTERS PTY LTD"	18-Feb-08 03:04 PM	

+="CN62517"	"G1821 Travel  support  and per diem for Simon Cox as part of CSIRO contributions towards report to  OGC/ISO Joint Advisory Group   held in Italy, 10-14 Dec 07"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	10-Jan-08	30-Jan-08	18857.27	=""	="CSIRO"	18-Feb-08 03:54 PM	

+="CN62519"	"RP00936 80% payment to Guardian Data Transcripton of tapes"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	10-Jan-08	30-Jun-08	18049.68	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:54 PM	

+="CN62525"	"Leica GS20 Differential GPS and accessories."	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	14-Jan-08	31-Jan-08	16005.00	=""	="Johnny Appleseed GPS"	18-Feb-08 03:55 PM	

+="CN62529"	"RP00901 Transcription of 45 x 3590 cartridges."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	16076.50	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:55 PM	

+="CN62558"	"Supply and install glazed partitioning Level 2 NE Quadrant."	="Geoscience Australia"	18-Feb-08	="Real estate management services"	29-Jan-08	30-Jun-08	19756.00	=""	="Skilled Group Limited"	18-Feb-08 03:59 PM	

+="CN62570"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	28-Apr-08	19180.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	18-Feb-08 05:10 PM	

+="CN62572"	"Procurement of:  TEST KIT,OIL CONDITION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	26-Feb-08	17225.00	=""	="OWEN INTERNATIONAL Pty Ltd"	18-Feb-08 05:10 PM	

+="CN62576"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	08-Apr-08	16662.32	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62586"	"Procurement of:  TRANSMITTER,TEMPERATURE,ELECTRICAL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	05-Mar-08	16446.20	=""	="MAN DIESEL AUSTRALIA Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62593"	"Procurement of:  MATTRESS,BED;  MATTRESS,BED"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	18-Feb-08	18492.00	=""	="SEALY OF AUSTRALIA (NSW) Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62598"	"Procurement of:  LOUDSPEAKER-MICROPHONE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	18-Feb-08	19500.00	=""	="TR CORPORATION Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62606"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	21-Jan-08	18-Feb-08	18077.25	=""	="ROCKWELL AUTOMATION AUST Ltd"	18-Feb-08 05:14 PM	

+="CN62613"	"Procurement of:  VALVE,CHECK"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	14-May-08	16277.28	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:15 PM	

+="CN62619"	"Procurement of:  ADAPTOR,SNIB;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	16-Jun-08	16754.00	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62627"	"Procurement of:  GUARD,MECHANICAL DRIVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	09-Jan-08	08-Apr-08	19213.60	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62628"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	15-Oct-08	19395.18	=""	="SAAB SYSTEMS Pty Ltd"	18-Feb-08 05:17 PM	

+="CN62649"	"AFP Investigation Management Training Program - 16 attendees. 12-16 November 2007"	="Australian Taxation Office"	19-Feb-08	="Education and Training Services"	15-Feb-08	15-Feb-08	17000.00	=""	="Australian Federal Police"	19-Feb-08 09:07 AM	

+="CN62659"	"royalty payment"	="Royal Australian Mint"	19-Feb-08	="Mint coin collections"	25-Jan-08	25-Jan-08	18663.57	=""	="SURF LIFE SAVING AUSTRALIA LIMITED"	19-Feb-08 09:10 AM	

+="CN62675"	"IT HARDWARE"	="Department of Human Services"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	28-Feb-08	28-Feb-08	16014.33	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	19-Feb-08 10:06 AM	

+="CN62726"	"motor vehicle spare parts"	="Department of Defence"	19-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Feb-08	19-Mar-08	19286.26	=""	="LANDROVER"	19-Feb-08 02:51 PM	

+="CN62749"	"CPO013137 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	17-Jul-07	09-Sep-07	17344.80	=""	="Motorola Australia Pty Ltd"	19-Feb-08 03:53 PM	

+="CN62750"	"CPO013741 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	31-Jul-07	08-Oct-07	17344.80	=""	="Motorola Australia Pty Ltd"	19-Feb-08 03:53 PM	

+="CN62752"	"111800358634 - Contribution to Travel & Freight Recovery"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	16493.50	=""	="Department of Defence"	19-Feb-08 03:54 PM	

+="CN62757"	"CPO019211 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	31-Jan-08	30-Apr-08	17113.38	=""	="Tait Electronics (Aust) Pty Ltd"	19-Feb-08 03:54 PM	

+="CN62791"	"Lease of Property in SA"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jan-08	31-Dec-08	19677.62	=""	="Adelaide Airport Ltd"	19-Feb-08 04:03 PM	

+="CN62800"	"CPE003131-7 - Fuel"	="Australian Customs and Border Protection Service"	19-Feb-08	="Fuels"	09-Jan-08	09-Jan-08	16008.30	=""	="Sea Swift Pty Ltd"	19-Feb-08 04:04 PM	

+="CN62806"	"CPE003131-8 - Fuel"	="Australian Customs and Border Protection Service"	19-Feb-08	="Fuels"	22-Jan-08	22-Jan-08	16244.31	=""	="Sea Swift Pty Ltd"	19-Feb-08 04:05 PM	

+="CN62810"	"CPO019288 - Engine Repair"	="Australian Customs and Border Protection Service"	19-Feb-08	="Industrial Manufacturing and Processing Machinery and Accessories"	05-Feb-08	05-Feb-08	16881.96	=""	="Mobile Marine Repairs Pty Ltd"	19-Feb-08 04:05 PM	

+="CN62814"	"CPE004471-1 - Office Furniture"	="Australian Customs and Border Protection Service"	19-Feb-08	="Furniture and Furnishings"	04-Feb-08	30-Jun-08	19021.00	=""	="McLeod's Office Furniture"	19-Feb-08 04:06 PM	

+="CN62824"	"CPO019618 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	02-Nov-07	30-Jun-08	17398.80	=""	="Rosewarne Installations Service"	19-Feb-08 04:07 PM	

+="CN62835"	"CPA membership fees - Various members"	="Defence Materiel Organisation"	19-Feb-08	="Education and Training Services"	18-Dec-07	30-Jun-08	18336.00	=""	="CPA AUSTRALIA LTD"	19-Feb-08 04:29 PM	

+="CN62846"	"Feedback Training Performance Management C06/03007"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	01-Jan-07	30-Jun-09	20000.00	=""	="MAXWELL CONSULTING"	19-Feb-08 04:49 PM	

+="CN62873"	"JLLasalle Facilities Management Fees for Jan08, 2100069539 -"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	28-Feb-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	19-Feb-08 04:53 PM	

+="CN62890"	"BAX Adaptor  NA"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	24-Jan-08	30-Mar-08	16500.00	=""	="OXOID AUSTRALIA PTY LTD"	19-Feb-08 04:55 PM	

+="CN62899"	"SHOES MENS, DRESS PATENT LEATHER. NAVY DANCING"	="Defence Materiel Organisation"	19-Feb-08	="Mens shoes"	11-Feb-08	30-May-08	18755.00	=""	="LYMINGTON PACIFIC"	19-Feb-08 04:58 PM	

+="CN62901"	" MANUFACTURE LARCV WHEEL RIMS "	="Department of Defence"	19-Feb-08	="Commercial marine craft"	11-Feb-08	30-Jun-08	18259.56	=""	="TITAN WHEELS AUSTRALIA"	19-Feb-08 05:09 PM	

+="CN62911"	"07/2132 - Training Services - 1523-1819 - Leading People at the Frontline Panel 06/1523 (CPO013305)"	="Australian Customs and Border Protection Service"	20-Feb-08	="Specialised educational services"	03-Sep-07	25-Oct-07	18645.00	=""	="Vivien Twyford Consulting"	20-Feb-08 09:13 AM	

+="CN62913"	"07/2353 - Training Services - 1523-1816 - Leading People at the Frontline Panel - 06/1523 (CPO016900)"	="Australian Customs and Border Protection Service"	20-Feb-08	="Specialised educational services"	16-Jun-08	05-Aug-08	17000.00	=""	="McMillan Staff Development"	20-Feb-08 09:18 AM	

+="CN62923"	"07/2411 - Training Services - - 1523-1812 - Leading People at the Frontline Panel - 06/1523 (CPO018276)"	="Australian Customs and Border Protection Service"	20-Feb-08	="Specialised educational services"	03-Mar-08	02-Jun-08	17325.00	=""	="Australia-wide Business Training Pty Ltd"	20-Feb-08 09:21 AM	

+="CN62954"	" PVC Channel, 100mm flat black skirting fitting of stairnosing "	="Questacon"	20-Feb-08	="Structural building products"	06-Dec-07	06-Feb-08	17519.98	=""	="Nash Agencies"	20-Feb-08 10:14 AM	

+="CN62959"	"REPAIR MERLO ARN-202309 W/O-35238"	="Department of Defence"	20-Feb-08	="Motor vehicles"	20-Feb-08	18-Apr-08	19262.10	=""	="F.B. AUTOS"	20-Feb-08 10:41 AM	

+="CN62970"	"Pin, Firing for use on F/A-18 hornet aircraft use."	="Defence Materiel Organisation"	20-Feb-08	="Aircraft spars"	30-Jan-08	30-Jun-08	18586.50	=""	="Milspec"	20-Feb-08 11:28 AM	

+="CN62972"	"Prime mover rent and driver for Shell Questacon Science Circus"	="Questacon"	20-Feb-08	="Cargo trucks"	25-Jan-08	31-Dec-08	17500.00	=""	="The Event Company Pty Ltd"	20-Feb-08 11:57 AM	

+="CN62987"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	20-Feb-08	="Community and social services"	01-Jul-07	30-Jun-08	18003.53	=""	="Pipalyatjara Community Incorporated"	20-Feb-08 02:05 PM	

+="CN63008"	" Engine Built-up Unit, Aircraft Repair  2840/661030991 "	="Defence Materiel Organisation"	20-Feb-08	="Military transport aircraft"	19-Feb-08	19-May-08	17192.60	=""	="Qantas Defence Services PTY LTD"	20-Feb-08 03:30 PM	

+="CN63012"	"qty 100 guy assemblies c/w rope, snap hook, guy tensioner, anchor tensioner, wire reel, for use with military communications equipment."	="Defence Materiel Organisation"	20-Feb-08	="Guy cables"	20-Feb-08	17-Apr-08	19228.00	="RFQ-C7101"	="MILSPEC SERVICES PTY LTD"	20-Feb-08 04:52 PM	

+="CN63026"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	21-Feb-08	="Military rotary wing aircraft"	21-Feb-08	30-Jun-08	19800.36	=""	="SAAL"	21-Feb-08 10:27 AM	

+="CN63045"	"SEALING COMPOUND"	="Defence Materiel Organisation"	21-Feb-08	="Compounds and mixtures"	21-Feb-08	20-Mar-08	16253.13	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	21-Feb-08 11:29 AM	

+="CN63066"	"Data Capture and Validation Activities"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	16264.38	=""	="NSW Department of Primary Industries"	21-Feb-08 12:27 PM	

+="CN63067"	"Data capture and validation."	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	17000.00	=""	="QLD Department of Primary Industries and Fisheries"	21-Feb-08 12:27 PM	

+="CN63079"	"Consultancy Services - Validation activities"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Insurance and retirement services"	01-Dec-07	01-May-08	19800.00	=""	="Forestry Tasmania"	21-Feb-08 12:29 PM	

+="CN63081"	"Consultancy Services - Validation activities"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Dec-07	01-May-08	19800.00	=""	="Forestry Tasmania"	21-Feb-08 12:29 PM	

+="CN63097"	"ANZ07/1503"	="Department of Defence"	21-Feb-08	="Computer Equipment and Accessories"	26-Apr-07	26-Apr-07	16200.00	=""	="HARRIS TECHNOLOGY"	21-Feb-08 01:18 PM	

+="CN63101"	"camera and software purchase"	="Department of Defence"	21-Feb-08	="Photographic or filming or video equipment"	13-Nov-07	30-Jan-08	18330.00	=""	="VIDEOGUYS AUSTRALIA"	21-Feb-08 01:19 PM	

+="CN63106"	"OH&S approved chairs"	="Department of Defence"	21-Feb-08	="Furniture and Furnishings"	17-Dec-07	03-Apr-10	16182.10	=""	="DIRECT ERGONOMICS"	21-Feb-08 01:20 PM	

+="CN63107"	"TACTICAL LANGUAGE -  ASW"	="Department of Defence"	21-Feb-08	="Education and Training Services"	19-Dec-07	28-Feb-08	19759.51	=""	="VIRTUAL CULTURE"	21-Feb-08 01:20 PM	

+="CN63135"	"Single leap"	="Department of Defence"	21-Feb-08	="Domestic appliances"	31-Jan-08	31-Jan-08	18150.00	=""	="EDU QUIP GOV QUIP"	21-Feb-08 01:24 PM	

+="CN63141"	"TR 118/07-08 NEW ZEALAND AIR SHOW"	="Department of Defence"	21-Feb-08	="Hotels and lodging and meeting facilities"	04-Feb-08	04-Feb-08	16241.78	=""	="ALPINE RESORT"	21-Feb-08 01:25 PM	

+="CN63143"	"LSE Bahrain Logistic Running Costs"	="Department of Defence"	21-Feb-08	="Transportation and Storage and Mail Services"	05-Feb-08	05-Feb-08	16731.21	=""	="INCHAPE SHIPPING SERVICES"	21-Feb-08 01:25 PM	

+="CN63144"	"MEDICAL / DENTAL SERVICES"	="Department of Defence"	21-Feb-08	="Medical practice"	11-Feb-08	15-Feb-08	17756.56	=""	="CALVARY HEALTH CARE AD"	21-Feb-08 01:26 PM	

+="CN63161-A1"	"Provision for Security Vetting Services"	="Department of Immigration and Citizenship"	21-Feb-08	="Management advisory services"	20-Feb-08	02-Apr-08	16318.00	=""	="Persec Solutions Pty Ltd"	21-Feb-08 02:48 PM	

+="CN63166"	" X-RAY TUBE & CABLE FLANGE "	="Defence Materiel Organisation"	21-Feb-08	="Laboratory and scientific equipment"	06-Feb-08	20-Mar-08	17585.04	=""	="AUSTRALIAN X-RAY TUBES P/L"	21-Feb-08 02:59 PM	

+="CN63169-A1"	" Provision of consulting and energy efficiency testing services for the washing machine round robin test program for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	21-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jul-07	01-Aug-07	16248.41	=""	="ENERTECH AUSTRALIA P/L"	21-Feb-08 03:00 PM	

+="CN63186-A1"	"Audio Visual equipment VICSO fitout Property Claims"	="Department of Resources Energy and Tourism"	21-Feb-08	="Audio and visual equipment"	19-Jul-07	31-Jul-07	18333.66	=""	="PROFESSIONAL CONFERENCE SERVICES"	21-Feb-08 03:03 PM	

+="CN63203"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	11-Apr-09	16140.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 07:59 AM	

+="CN63219"	"Provision for the development of Web Services"	="Comsuper"	22-Feb-08	="Software"	02-Oct-07	30-May-08	19338.00	=""	="Link Web Services"	22-Feb-08 10:22 AM	

+="CN63223"	" Maintenance and support for software products Jumar links- Allfusion Ervin and Advantage Gen, and Jumar Smartlinker "	="Australian Taxation Office"	22-Feb-08	="Software"	22-Dec-07	21-Jan-08	18950.00	=""	="Jumar Solutions Ltd"	22-Feb-08 10:52 AM	

+="CN63237"	"Advertising Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	17-Jan-08	30-Jun-08	16846.83	="2007/00858"	="HMA Blaze Pty Ltd"	22-Feb-08 11:53 AM	

+="CN63262"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	28-Mar-08	18250.00	="TBA"	="DEONVALE CONSULTING SERVICES"	22-Feb-08 02:46 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val20000to30000.xls
@@ -1,1 +1,138 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61945"	" CRS Australia - Suite 8, Level 1, 51-55 Bulcock Street, Caloundra, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	14-Dec-07	13-Dec-08	23680.80	=""	="Lorelei Investments Pty Ltd"	18-Feb-08 11:41 AM	

+="CN61958"	"East Timor Education Sector Program Review"	="AusAid"	18-Feb-08	="Educational institutions"	01-Mar-07	30-Jun-07	22000.00	=""	="DGB CONCEPTS PTY. LTD."	18-Feb-08 12:41 PM	

+="CN61977"	"Contract for Margaret Gosling"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	29-Feb-08	23800.00	=""	="GOSLING, MARGARET HONOR"	18-Feb-08 12:44 PM	

+="CN61982"	"CARD MTR August 2007 - John Soussan"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	30-Sep-07	23150.00	=""	="STOCKHOLM ENVIRONMENT INSTITUTE (SEI)"	18-Feb-08 12:44 PM	

+="CN61992"	"Evaluation of Three Environment Projects in China - Evaluation Team Member Zheng Baohua"	="AusAid"	18-Feb-08	="Business administration services"	15-Jun-07	30-Nov-07	20123.27	=""	="ZHENG, BAOHUA"	18-Feb-08 12:45 PM	

+="CN62004"	"Paciifc Land Program - Concept Paper Stage 3- Solomon Islands Land Sector  Program- Larden"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jul-07	30-Oct-07	29057.00	=""	="LARDEN, PROFESSOR DOUGLAS"	18-Feb-08 12:47 PM	

+="CN62013"	"Rob MacColl Pacific trip contract engagement"	="AusAid"	18-Feb-08	="Photographic services"	01-Jul-07	30-Sep-07	23887.60	=""	="MACCOLL, ROBERT"	18-Feb-08 12:48 PM	

+="CN62015"	"TVET review- David Fretwell"	="AusAid"	18-Feb-08	="Educational institutions"	28-Jul-07	10-Sep-07	29679.00	=""	="FRETWELL, DAVID H"	18-Feb-08 12:48 PM	

+="CN62021"	"Aceh Rehabilitation Program - Building Materials Inspection Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	16-Jul-07	16-Sep-07	24431.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:49 PM	

+="CN62023"	"Aceh Rehabilitation Program - Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	30-Jul-07	30-Aug-07	20680.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 12:49 PM	

+="CN62027"	"Bear Cage - corporate Video"	="AusAid"	18-Feb-08	="Graphic design"	01-Jul-07	01-Sep-07	26620.00	=""	="BEARCAGE MEDIA SERVICES PTY LTD"	18-Feb-08 12:50 PM	

+="CN62040"	"Chair - Accelerating Economic Growth RSC"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	31-Dec-07	22550.00	=""	="UNIVERSITY OF THE SOUTH PACIFIC"	18-Feb-08 12:52 PM	

+="CN62045"	"Supply of storage units -Lelei office Honiara"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	23611.50	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	18-Feb-08 12:53 PM	

+="CN62046"	"Interpreter for TA in Dien Bien province-Contract with URS"	="AusAid"	18-Feb-08	="Business administration services"	22-Aug-07	31-Dec-08	24942.13	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:53 PM	

+="CN62059"	"Chair - Humanitarian Assistance RSC"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	31-Dec-07	22550.00	=""	="OVERSEAS DEVELOPMENT INSTITUTE"	18-Feb-08 12:54 PM	

+="CN62069"	"ADRA Committee Chairs for Health & HIV RSC - AIHI"	="AusAid"	18-Feb-08	="Management advisory services"	22-Aug-07	31-Mar-08	21726.52	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 12:56 PM	

+="CN62071"	"Minor Contract to perform ongoing M & E"	="AusAid"	18-Feb-08	="Forestry"	27-Aug-07	30-Jun-09	27500.00	=""	="BOND, ANDREW"	18-Feb-08 12:56 PM	

+="CN62078"	"John P Pace - Philippines Human Rights scoping Mission"	="AusAid"	18-Feb-08	="International relations"	31-Aug-07	17-Oct-07	27811.00	=""	="JOHN PACE"	18-Feb-08 12:57 PM	

+="CN62091"	"PACAP Strategic Directions & Effectiveness Review - Jessie Ponce"	="AusAid"	18-Feb-08	="Management advisory services"	22-Aug-07	31-Oct-07	24050.00	=""	="PONCE, JESSIE T"	18-Feb-08 12:59 PM	

+="CN62106"	"Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	17-Sep-07	19-Oct-07	24640.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:01 PM	

+="CN62108"	"Contract Margaret Gosling Oct-Dec"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	21-Dec-07	25800.00	=""	="GOSLING, MARGARET HONOR"	18-Feb-08 01:01 PM	

+="CN62112"	"In Line Secretary for Health and Medical Services October 07"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Oct-07	09-Nov-07	21348.34	=""	="BACIGALUPO, MAREE LOUISE"	18-Feb-08 01:01 PM	

+="CN62130"	"Nauru Security Risk Assessment of Deployees"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Jul-07	31-Dec-07	22000.00	=""	="DDW CONSULTING PTY LTD"	18-Feb-08 01:04 PM	

+="CN62133"	"Strategy paper for health performance incentives"	="AusAid"	18-Feb-08	="Comprehensive health services"	17-Oct-07	31-Jan-08	22000.00	=""	="CHAMBERLAIN, CHRISTOPHER A"	18-Feb-08 01:04 PM	

+="CN62151"	"Education Consultant Bangladesh - Mr James Jennings"	="AusAid"	18-Feb-08	="Business administration services"	05-Aug-07	15-Nov-07	21991.65	=""	="JENNINGS, JAMES EDWIN"	18-Feb-08 01:06 PM	

+="CN62164"	"Development of an Australian Scholarships Student Survey"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jul-07	30-Sep-07	26009.50	=""	="THE AUSTRALIAN COUNCIL FOR EDUCATIONAL RESEARCH LTD (ACER)"	18-Feb-08 01:08 PM	

+="CN62165"	"Analysis of ALA Student Survey"	="AusAid"	18-Feb-08	="Educational institutions"	31-Aug-07	30-Sep-07	21342.20	=""	="THE AUSTRALIAN COUNCIL FOR EDUCATIONAL RESEARCH LTD (ACER)"	18-Feb-08 01:09 PM	

+="CN62166"	"Review of Transitional Support - Cathy Deane"	="AusAid"	18-Feb-08	="Information services"	04-Oct-07	30-Apr-08	22889.43	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:09 PM	

+="CN62182"	"Program Monitoring Group: Strategic Review"	="AusAid"	18-Feb-08	="Management advisory services"	10-Oct-07	31-Dec-07	29332.88	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62189"	"James McGovern - Tonga Police Force Strengthening Phase 1"	="AusAid"	18-Feb-08	="Public order and safety"	20-Aug-07	30-Sep-07	21996.70	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62193"	"East Timor JSSF & SJA TAP member"	="AusAid"	18-Feb-08	="Management advisory services"	09-Nov-07	01-Dec-07	26769.40	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:13 PM	

+="CN62216"	"Hassall & Associates Pty Ltd - Service Order District Health Planning Mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Sep-07	31-Oct-07	20000.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62218"	"Design Mission - Local Government Capacity Building Adviser - Azwar Hasan"	="AusAid"	18-Feb-08	="Management advisory services"	19-Nov-07	31-Dec-07	25135.00	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:16 PM	

+="CN62220"	"Review of the monitoring and evaluation components of the draft IMR framework and NGOs projects designs under PASHIP"	="AusAid"	18-Feb-08	="Disease prevention and control"	06-Aug-07	31-Oct-07	25261.50	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:16 PM	

+="CN62234"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	30-Sep-07	27475.80	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:18 PM	

+="CN62237"	"Administrative support for PGSP"	="AusAid"	18-Feb-08	="Public administration and finance services"	10-Jul-07	30-Nov-07	29879.08	=""	="ZABAR, PENELOPE GRACE"	18-Feb-08 01:19 PM	

+="CN62238"	"Paris Declaration Headquarters Evaluation - Michael Pilbrow"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	14-Dec-07	26511.89	=""	="BROW, MICHAEL JEREMY"	18-Feb-08 01:19 PM	

+="CN62268"	"S Dawson Input for Health MnE Workshop"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	28-Sep-07	26471.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62286"	"APMM Branding - Business + Government Against HIV/AIDS"	="AusAid"	18-Feb-08	="Management advisory services"	28-Feb-07	31-Aug-07	21032.50	=""	="GRID COMMUNICATIONS PTY LTD"	18-Feb-08 01:26 PM	

+="CN62290"	"Environment strategy printing"	="AusAid"	18-Feb-08	="Business administration services"	09-Aug-07	15-Sep-07	22596.20	=""	="PIRION PTY LTD"	18-Feb-08 01:26 PM	

+="CN62295"	"Audit of International Needs Australia"	="AusAid"	18-Feb-08	="Accounting and auditing"	20-Aug-07	31-Mar-08	21018.60	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62296"	"Audit of AidWorks and FMIS"	="AusAid"	18-Feb-08	="Business administration services"	17-Sep-07	30-Jun-08	21671.93	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62297"	"AusAID Audit Committee Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Nov-07	01-Feb-10	29700.00	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62306"	"Service Order 13562/88 for the Review of Improved Financial Management by Coffey International Development on ASFII"	="AusAid"	18-Feb-08	="Business administration services"	12-Aug-07	24-Aug-07	25885.09	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:28 PM	

+="CN62309"	"FSA for Accreditation of Interplast and ACMFF"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	01-May-07	30-Jun-08	20418.10	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62317"	"Procurement of RAMSI Management Information System Website"	="AusAid"	18-Feb-08	="Management advisory services"	23-May-07	31-Dec-07	29491.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62319"	"Recruitment of Public Health Specialist"	="AusAid"	18-Feb-08	="Human resources services"	01-Aug-07	31-Dec-08	24013.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62359"	"Fraud and Risk Management Training"	="AusAid"	18-Feb-08	="Management advisory services"	02-Feb-07	28-Sep-07	28183.38	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:36 PM	

+="CN62365"	"DAC CRS++ Reporting for Stats Unit, Altis Consulting"	="AusAid"	18-Feb-08	="Computer services"	10-Sep-07	30-Nov-07	22088.00	=""	="ALTIS CONSULTING PTY LTD"	18-Feb-08 01:36 PM	

+="CN62368"	"Making a Difference Aug-Sept 2007 Robyn Rennenberg"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	17-Sep-07	25080.00	=""	="ELLIOTT STREET CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62375"	"Consultancy - Deborah Rhodes"	="AusAid"	18-Feb-08	="Information services"	15-Aug-07	30-Jun-08	23399.75	=""	="LEADERSHIP STRATEGIES PTY LTD"	18-Feb-08 01:38 PM	

+="CN62377"	"Making a Difference Aug-Sept 2007 Sue Emmott"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	17-Sep-07	23400.00	=""	="EMMOTT, SUE"	18-Feb-08 01:38 PM	

+="CN62384"	"Heather Baser-Presentation/discussions on joint evaluation"	="AusAid"	18-Feb-08	="Business administration services"	22-Sep-07	30-Dec-07	20205.44	=""	="BASER, HEATHER"	18-Feb-08 01:39 PM	

+="CN62420"	"Recruitment - Legal Advisor (Office of the Attorney General)"	="AusAid"	18-Feb-08	="Human resources services"	30-Apr-07	03-Aug-07	23650.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62421"	"Recruitment - Peoples Lawyers Office"	="AusAid"	18-Feb-08	="Human resources services"	30-Apr-07	03-Aug-07	23650.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62423"	"Samoa National Provident Fund - Recruitment Services Order"	="AusAid"	18-Feb-08	="Credit agencies"	22-May-07	31-Oct-07	27500.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62439"	"Recruitment of Budget Management Advisor"	="AusAid"	18-Feb-08	="Development finance"	01-Oct-07	31-Dec-07	21500.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62446"	"THE PROVISION OF PERSONAL SAFETY AND AWARENESS TRAINING"	="AusAid"	18-Feb-08	="Human resources services"	09-Sep-06	30-Jun-10	27984.00	=""	="YU SHIH TAD KUNG FU SOCIETY"	18-Feb-08 01:48 PM	

+="CN62532"	"Reproduction and shipment of ALOS data plus Direct transmission of ALOS data for the 2nd and 3rd quarters of 2007 - 1 April 2007 to 30 September 2007."	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	15-Jan-08	30-Jun-08	22900.30	=""	="Remote Sensing Technology Center Of Japan"	18-Feb-08 03:56 PM	

+="CN62575"	"Procurement of:  FILTER ELEMENT,FLUID;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	07-Apr-08	25720.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62579"	"Procurement of:  PUMP SET"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	28-Apr-08	29939.47	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62584"	"Procurement of:  HEATER,FLUID,ELECTRIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	04-Mar-08	26925.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62590"	"Procurement of:  VALVE,SAFETY RELIEF;  PIN,GUDGEON"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	10-Mar-08	20547.12	=""	="COMPAIR (A/ASIA) Ltd"	18-Feb-08 05:12 PM	

+="CN62611"	"Procurement of:  JACKET,BUOYANCY AID"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	15-Apr-08	25500.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62617"	"Procurement of:  TRANSMITTER,POSITION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	24-Jan-08	30-Apr-08	20945.52	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:16 PM	

+="CN62632"	"Procurement of:  PIPE,AIR"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	08-May-08	29298.92	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62637"	"Procurement of:  REPAIR KIT,VALVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	20603.73	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62641"	"Procurement of:  SHUNT,INSTRUMENT;  SHUNT,INSTRUMENT;  SHUNT,INSTRUMENT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	18-Feb-08	27916.14	=""	="SCHNEIDER ELECTRICS (AUST) P / L"	18-Feb-08 05:19 PM	

+="CN62646"	"printing"	="Royal Australian Mint"	19-Feb-08	="Printed inserts or instructions"	14-Jan-08	28-Jan-08	21422.50	=""	="RODENPRINT P/ L"	19-Feb-08 08:44 AM	

+="CN62656"	"5 X MEETING TABLES MODEL ET-125"	="Australian Taxation Office"	19-Feb-08	="Furniture and Furnishings"	13-Feb-08	13-Feb-08	21670.00	=""	="Schiavello"	19-Feb-08 09:08 AM	

+="CN62661"	"Various print contracts < $10,000 each SON283 (APCM 06.030)"	="Australian Taxation Office"	19-Feb-08	="Published Products"	08-Feb-08	29-Feb-08	29797.90	=""	="Paragon Printers"	19-Feb-08 09:11 AM	

+="CN62666"	"Supply of Gloves, Electrical Workers"	="Defence Materiel Organisation"	19-Feb-08	="Gloves or mittens"	18-Jan-08	08-Feb-08	29351.30	=""	="Australian Safety Specialists"	19-Feb-08 09:35 AM	

+="CN62671"	"IT HARDWARE"	="Department of Human Services"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	28-Feb-08	28-Feb-08	20165.54	=""	="CORPORATE EXPRESS"	19-Feb-08 09:55 AM	

+="CN62674"	"labour cost repair"	="Department of Defence"	19-Feb-08	="Drilling rig ships"	13-Feb-08	22-May-08	21550.00	=""	="NOAKES RIGGING PTY LTD"	19-Feb-08 10:03 AM	

+="CN62678"	"LEGAL SERVICES / CONSULTANCY"	="Department of Human Services"	19-Feb-08	="Legal services"	19-Feb-08	19-Feb-08	27500.00	=""	="BLAKE DAWSON WALDRON"	19-Feb-08 10:15 AM	

+="CN62693"	"Printing of NAT2376-02.2008. Qty: 50,000"	="Australian Taxation Office"	19-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Feb-08	29-Feb-08	25493.60	=""	="Paragon Printers"	19-Feb-08 11:26 AM	

+="CN62710"	" Election Conference Venue Hire "	="Australian Electoral Commission"	19-Feb-08	="Hotels and lodging and meeting facilities"	28-Feb-08	29-Feb-08	21098.00	=""	="Mercure Sydney"	19-Feb-08 01:05 PM	

+="CN62739"	"07/2494 - Construction Management Services - 0769-138 - Property Panel Queensland 05/0769 (CPE004505-1)"	="Australian Customs and Border Protection Service"	19-Feb-08	="Project management"	11-Feb-08	30-Jun-08	22000.00	=""	="Jones Lang Lasalle (QLD) Pty Ltd"	19-Feb-08 03:11 PM	

+="CN62748"	"CPO013842 - Wireless Microphones"	="Australian Customs and Border Protection Service"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	01-Aug-07	08-Sep-07	21866.55	=""	="Defcon Technologies Pty Ltd"	19-Feb-08 03:53 PM	

+="CN62756"	"CPO019101 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	30-Jan-08	31-Mar-08	22387.20	=""	="Motorola Australia Pty Ltd"	19-Feb-08 03:54 PM	

+="CN62758"	"AMIS/P3A/MGT/028-002 - On-line Licence Trial"	="Australian Customs and Border Protection Service"	19-Feb-08	="Computer services"	29-Jan-08	28-Jan-09	28082.00	=""	="Lloyds Maritime Intelligence Unit (A Division of Informa PLC)"	19-Feb-08 03:55 PM	

+="CN62790"	"Lease of Property in TAS"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Dec-07	01-Dec-08	29800.00	=""	="Tasmanian Ports Corporation"	19-Feb-08 04:03 PM	

+="CN62796"	"07/1739 - Cleaning Services"	="Australian Customs and Border Protection Service"	19-Feb-08	="Cleaning and janitorial services"	10-Apr-07	09-Apr-08	28303.04	=""	="Sharman Property Services Pty Ltd"	19-Feb-08 04:03 PM	

+="CN62808"	"CPO019315 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	13-Jul-07	30-Jun-08	23670.83	=""	="Crimetech Security"	19-Feb-08 04:05 PM	

+="CN62821"	"CPO019554 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	12-Feb-08	30-Jun-08	25162.50	=""	="Direct Alarm Supplies"	19-Feb-08 04:07 PM	

+="CN62822"	"07/2424 - Architectural Services - (CPE004476-1)"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	29-Feb-08	24000.00	=""	="Jack Taylor Architects Pty Ltd"	19-Feb-08 04:07 PM	

+="CN62825"	"CPO019612 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	13-Feb-08	30-Jun-08	26346.50	=""	="Rosewarne Installations Service"	19-Feb-08 04:07 PM	

+="CN62846"	"Feedback Training Performance Management C06/03007"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	01-Jan-07	30-Jun-09	20000.00	=""	="MAXWELL CONSULTING"	19-Feb-08 04:49 PM	

+="CN62858"	"Graduate Development Program 2008/2009  C07/07657"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	12-Dec-07	30-Jan-09	22000.00	=""	="NGA.NET PTY LTD"	19-Feb-08 04:51 PM	

+="CN62868"	"Laser Speed Measurement System  ."	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	13-Feb-08	12-Mar-08	21091.37	=""	="LASER TECHNOLOGY AUSTRALIA"	19-Feb-08 04:52 PM	

+="CN62877"	"Professional dev for teaching of biotechnology Innov Div PO"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20020.00	=""	="MONASH INSTITUTE OF MEDICAL RESEARCH"	19-Feb-08 04:53 PM	

+="CN62894"	"Dell Latitude D630 Laptops and Network Laser Printer C05/068"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	29-Feb-08	24409.00	=""	="DELL AUSTRALIA"	19-Feb-08 04:56 PM	

+="CN62898"	"ADEX-placement of 2 newspaper ads on 28.1.08 in Nikkei Sangy"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Marketing and distribution"	31-Jan-08	31-Jan-08	22000.00	=""	="ADEX NIHON KEIZAI ADVERTISING CO LTD"	19-Feb-08 04:56 PM	

+="CN62914"	"Provision of internal Audit Services"	="Department of Parliamentary Services"	20-Feb-08	="Internal audits"	04-Feb-08	30-Jun-08	23895.30	=""	="WalterTurnbull Pty Ltd"	20-Feb-08 09:19 AM	

+="CN62920"	"Supply of scanners and software"	="Department of Parliamentary Services"	20-Feb-08	="Scanner accessories"	07-Feb-08	04-Apr-08	29956.03	=""	="TIG International P/L"	20-Feb-08 09:20 AM	

+="CN62925"	"Carpetlaying and floor covering services Contract (DPS04145)"	="Department of Parliamentary Services"	20-Feb-08	="Carpeting"	12-Feb-08	03-Mar-08	28237.00	=""	="Chesta's Floors"	20-Feb-08 09:21 AM	

+="CN62927"	"Provision of Cabling and associated Services Contract (DPS04198 )"	="Department of Parliamentary Services"	20-Feb-08	="Building and Construction and Maintenance Services"	12-Feb-08	03-Mar-08	22000.00	=""	="Secom Technical Services P/L"	20-Feb-08 09:21 AM	

+="CN62933"	"Provision of review services"	="Department of Parliamentary Services"	20-Feb-08	="Public Utilities and Public Sector Related Services"	01-Feb-08	15-Mar-08	22000.00	=""	="Yarrimbah Consulting"	20-Feb-08 09:22 AM	

+="CN62941"	"Provision of  Project Mangement Services Contract (JH00007  52)"	="Department of Parliamentary Services"	20-Feb-08	="Management and provision of all facilities engineering modification and maintenance services for a site or platform"	08-Feb-08	30-Jun-08	22720.50	=""	="Manteena Pty Ltd"	20-Feb-08 09:23 AM	

+="CN62950"	" MARINE QUALIFIED LABOUR HIRE "	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	28892.16	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 10:00 AM	

+="CN62952"	" MARINE QUALIFIED LABOUR HIRE "	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	22323.71	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 10:08 AM	

+="CN62953"	" MARINE QUALIFIED LABOUR HIRE "	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	22323.72	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 10:11 AM	

+="CN62955"	" MARINE QUALIFIED LABOUR HIRE "	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	22323.71	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 10:15 AM	

+="CN62956"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	28892.16	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 10:18 AM	

+="CN62964"	"Crates for Imagination Factory"	="Questacon"	20-Feb-08	="Crating services"	06-Dec-07	06-Feb-08	23775.00	=""	="Relm International Pty Ltd"	20-Feb-08 10:57 AM	

+="CN62969"	"Battery Discharger"	="Defence Materiel Organisation"	20-Feb-08	="Electrical equipment and components and supplies"	04-Oct-07	13-Dec-07	23017.50	="J7647"	="International Technologies Pty Ltd"	20-Feb-08 11:36 AM	

+="CN62976"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	20-Feb-08	="Motor vehicles"	20-Feb-08	05-Mar-08	23409.73	=""	="MECEDES-BENZ AUSTRALIA PACIFIC"	20-Feb-08 01:32 PM	

+="CN62983"	" BRACKET MOUNTING BAR ARMOUR "	="Department of Defence"	20-Feb-08	="Armoured fighting vehicles"	18-Feb-08	24-Apr-08	20540.84	=""	="General Dynamics Land Systems"	20-Feb-08 01:48 PM	

+="CN62986"	"qty 200 VHF broadband antenna assembly for use with military radios"	="Defence Materiel Organisation"	20-Feb-08	="Radio antennas"	19-Feb-08	20-May-08	24640.00	="RFQ-C7100"	="EYLEX PTTY LTD"	20-Feb-08 02:03 PM	

+="CN62996-A1"	"Code of Conduct Investigation"	="Australian Electoral Commission"	20-Feb-08	="Temporary human resources services"	13-Feb-06	13-Mar-09	21201.94	=""	="Kamira Stacey Consulting"	20-Feb-08 02:46 PM	

+="CN62998"	"NSN 2915-00-822-3555, Parts Kits, Valve, Cur"	="Defence Materiel Organisation"	20-Feb-08	="Aerospace systems and components and equipment"	06-Feb-08	08-May-08	27391.10	=""	="Milspec Services Pty Ltd"	20-Feb-08 02:58 PM	

+="CN63046"	"Fees"	="Productivity Commission"	21-Feb-08	="Administrative agencies services"	03-Oct-07	18-Dec-07	22000.00	=""	="Comsuper"	21-Feb-08 11:30 AM	

+="CN63048"	"SEALING COMPOUND"	="Defence Materiel Organisation"	21-Feb-08	="Compounds and mixtures"	21-Feb-08	03-Apr-08	20793.93	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	21-Feb-08 11:36 AM	

+="CN63063-A1"	" Provision of advice regarding the operational feasibility of a stereo video and evaluate monitoring options for the Southern Bluefin Tuna Fishery Farm Sector. (Input also provided by Australian Southern Bluefin Tuna Association, SeaGIS and the University of Western Australia) "	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Jan-08	01-Mar-08	27940.00	=""	="AQ1 Systems Pty Ltd"	21-Feb-08 12:27 PM	

+="CN63065"	"Public Service Gazette Subscription 2007 - 2008"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Education and Training Services"	06-Dec-07	06-Dec-08	23276.64	=""	="Australian Public Service Commission"	21-Feb-08 12:27 PM	

+="CN63073"	"Personal Efficiency Program for Staff"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Education and Training Services"	28-Feb-08	11-Apr-08	26400.00	=""	="D'Arcy Consulting Group Pty Limited"	21-Feb-08 12:28 PM	

+="CN63075-A2"	" Provision of research outcomes for assessing operational feasibility of stereo video for use in the Southern Bluefin Tuna Fishery Farm Sector. (In collaboration with the University of Western Australia and the Australian Southern Bluefin Tuna Association) "	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Dec-07	30-Jun-08	20680.00	=""	="SeaGIS"	21-Feb-08 12:28 PM	

+="CN63076"	"Data capture and Validation activities"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	22220.00	=""	="Victorian Department of Primary Industries"	21-Feb-08 12:28 PM	

+="CN63086"	"Data Capture and Validation"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	23100.00	=""	="QLD Department of Primary Industries and Fisheries"	21-Feb-08 12:30 PM	

+="CN63089"	"Switchboard operators for Jan 08"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Human resources services"	01-Jan-08	31-Jan-08	24183.14	=""	="Sirius Corporation Limited"	21-Feb-08 12:30 PM	

+="CN63102"	"TG158 Accommodation 4-30 Nov 07 (Swanson)"	="Department of Defence"	21-Feb-08	="Travel and Food and Lodging and Entertainment Services"	01-Dec-07	01-Dec-07	24726.44	=""	="ALSAFIR TOWER"	21-Feb-08 01:19 PM	

+="CN63098"	"Property Lease - Duct Licence Fairbairn ACT"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	11-Jul-07	10-Jul-13	25793.30	=""	="Canberra International Airport Pty Ltd"	21-Feb-08 01:19 PM	

+="CN63104"	"HMAS SYDNEY Visit to Pearl Harbor - 1-4 Dec 07"	="Department of Defence"	21-Feb-08	="Military services and national defence"	05-Dec-07	05-Dec-07	22530.89	=""	="NAVFAC HAWAII"	21-Feb-08 01:20 PM	

+="CN63109"	"RATIONS"	="Department of Defence"	21-Feb-08	="Food and nutrition services"	21-Nov-07	20-Dec-07	29301.63	=""	="RICHARD FADER PTY LTD"	21-Feb-08 01:20 PM	

+="CN63117"	"REQUIRED FOR 1 SQUADRON ARNHEM THUNDER DEPLOYMENT"	="Department of Defence"	21-Feb-08	="Transportation components and systems"	17-Jan-08	17-Jan-08	23327.02	=""	="TOLL TRANSPORT PL"	21-Feb-08 01:22 PM	

+="CN63130"	"CTF158 Staff Accommodation / Laundry / Internet / Airport Transfers"	="Department of Defence"	21-Feb-08	="Hotels and lodging and meeting facilities"	21-Jan-08	21-Jan-08	22518.05	=""	="THE DIPLOMAT RADISSON"	21-Feb-08 01:23 PM	

+="CN63139"	"Furniture"	="Department of Defence"	21-Feb-08	="Furniture and Furnishings"	04-Feb-08	04-Feb-08	24816.00	=""	="COMP OFFICE SUPPLIES"	21-Feb-08 01:25 PM	

+="CN63140"	"PURCHASE QTY 2 HONDA TRX500FM QUAD BIKES, PER QUOTE DATED 31/1/08"	="Department of Defence"	21-Feb-08	="Motorised cycles"	01-Feb-08	01-Feb-09	22866.00	=""	="R AND M MOTORCYCLES"	21-Feb-08 01:25 PM	

+="CN63170-A1"	" Strategies checktesting for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	21-Feb-08	="Measuring and observing and testing instruments"	18-Jul-07	01-Aug-07	27343.93	=""	="ENERGY EFFICIENT STRATEGIES P/L"	21-Feb-08 03:00 PM	

+="CN63173-A1"	" Greenhouse performance module research.  Energy performance rating of housing for the Energy Efficiency Working Group and Buildings Implementation Committee "	="Department of Resources Energy and Tourism"	21-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jul-07	27-Jul-07	21587.50	=""	="BRANZ PTY LTD"	21-Feb-08 03:01 PM	

+="CN63178-A1"	" Building Energy Analysis for the Energy Efficiency Program "	="Department of Resources Energy and Tourism"	21-Feb-08	="Business administration services"	18-Jul-07	31-Jul-07	20625.84	=""	="SUSTAINABILIITY VICTORIA"	21-Feb-08 03:01 PM	

+="CN63182-A1"	" Energy Efficiency Opportunities hydro Aluminium Trial Verification "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	30-Jun-08	22120.00	=""	="URS AUSTRALIA PTY LTD"	21-Feb-08 03:02 PM	

+="CN63206"	" PROCUREMENT OF AIRCRAFT SPARES "	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	02-Dec-08	24574.92	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 08:28 AM	

+="CN63236"	"Removal costs"	="Future Fund Management Agency"	22-Feb-08	="Relocation services"	12-Dec-07	05-Feb-08	21875.00	=""	="Crown Relocations"	22-Feb-08 11:51 AM	

+="CN63240"	" Website Exhibition Services "	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	21-Jan-08	22-Feb-08	29205.00	="2007/00861"	="Zoo Communications"	22-Feb-08 01:00 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val300000to999999999.xls
@@ -1,1 +1,183 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61936"	" CRS Australia - Level 12, 215 Adelaide Street, Brisbane, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	15-Jun-08	14-Jun-13	3190805.54	=""	="South Hooke Pty Ltd"	18-Feb-08 10:44 AM	

+="CN61955-A4"	"Provision of Serial Publications"	="Australian Taxation Office"	18-Feb-08	="Printed publications"	01-Jan-08	30-Jun-10	340000.00	=""	="Ebsco Information Services Australia"	18-Feb-08 12:34 PM	

+="CN61956"	"Kiribati Australia Nursing Initiative (KANI)"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jun-07	30-Jun-12	4663238.80	=""	="GRIFFITH UNIVERSITY"	18-Feb-08 12:41 PM	

+="CN61960-A2"	" Australia China Environment Development Program "	="AusAid"	18-Feb-08	="Environmental management"	01-Jul-07	30-Jun-12	27193793.00	=""	="GHD PTY LTD"	18-Feb-08 12:42 PM	

+="CN61963"	"Engineering Advisor for Road Infrastructure Program"	="AusAid"	18-Feb-08	="Professional engineering services"	09-Jul-07	09-Jul-09	694000.00	=""	="ROBERTSON, LESLIE"	18-Feb-08 12:42 PM	

+="CN61965"	"International Senior Health Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	29-Jun-07	28-Jun-09	389694.66	=""	="INFONOMICS INTERNATIONAL PTY LTD"	18-Feb-08 12:42 PM	

+="CN61967"	"China-Australia Health and HIV/AIDS Facility (CAHHF)"	="AusAid"	18-Feb-08	="Disease prevention and control"	13-Aug-07	12-Aug-10	26840000.00	=""	="THE MACFARLANE BURNET INSTITUTE FOR MEDICAL RESEARCH AND PUBLIC HEALTH LTD"	18-Feb-08 12:42 PM	

+="CN61973"	"HAARP Program Director"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Jul-07	31-Dec-08	384694.48	=""	="CHATTERJEE, ANINDYA"	18-Feb-08 12:43 PM	

+="CN61976"	"TSSP ISP Contract"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Jun-10	16500000.00	=""	="SNOWY MOUNTAINS ENGINEERING CORPORATION LTD"	18-Feb-08 12:44 PM	

+="CN61979"	"Third Party Cost Sharing Agreement - Government of Australia (AusAID) & United Nations Development Program (UNDP)"	="AusAid"	18-Feb-08	="Management advisory services"	18-Jun-07	30-Jul-07	1000000.00	=""	="UNITED NATIONS DEVELOPMENT PROGRAM"	18-Feb-08 12:44 PM	

+="CN61983"	"Enterprise Challenge Fund for the Pacific and South East Asia"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	31-Oct-13	21392949.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 12:44 PM	

+="CN61985"	"Development Assistance Facility for Afghanistan - Interim Facility Manager"	="AusAid"	18-Feb-08	="Political systems and institutions"	01-Jul-07	01-Mar-08	425180.80	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 12:45 PM	

+="CN62007"	"Australia-Pacific Technical College Phase II Design Health and Community Services School"	="AusAid"	18-Feb-08	="Vocational training"	19-Jul-07	31-Mar-08	657397.40	=""	="BOX HILL INSTITUTE OF TAFE"	18-Feb-08 12:47 PM	

+="CN62008"	"Business Process Reform Project - Implementation Phase II"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-07	31-Oct-08	731933.40	=""	="THE TRUSTEE FOR APIS CONSULTING UNIT TRUST T/A APIS CONSULTING GROUP PTY LTD"	18-Feb-08 12:48 PM	

+="CN62014"	"Building Sustainable Electoral Admin Phase3 TAF"	="AusAid"	18-Feb-08	="Political systems and institutions"	17-Jul-07	30-Sep-08	739067.00	=""	="THE ASIA FOUNDATION"	18-Feb-08 12:48 PM	

+="CN62029"	"RAMSI Security Officer"	="AusAid"	18-Feb-08	="Security and personal safety"	01-Sep-07	31-Aug-09	1253812.91	=""	="DDW CONSULTING PTY LTD"	18-Feb-08 12:50 PM	

+="CN62030"	"Technical Assistance for Natural Disaster Risk Management in Viet Nam"	="AusAid"	18-Feb-08	="Business administration services"	30-Aug-07	31-Aug-09	4758800.20	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Feb-08 12:50 PM	

+="CN62037"	"Transition Plan for a Sustainable Response to Child Sex Tourism in SE Asia"	="AusAid"	18-Feb-08	="International relations"	01-Aug-07	31-Mar-09	550000.00	=""	="CHILD WISE LTD"	18-Feb-08 12:52 PM	

+="CN62038-A1"	"Rural Water Supply and Sanitation Program (RWSSP) East Timor - Implementation"	="AusAid"	18-Feb-08	="Environmental management"	17-Sep-07	30-Jun-12	45187106.80	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 12:52 PM	

+="CN62048"	"UNODC: Kokang & Wa Initiative (transition phase)"	="AusAid"	18-Feb-08	="General building construction"	10-Aug-07	31-Dec-08	372000.00	=""	="UNITED NATIONS OFFICE ON DRUGS AND CRIME (UNODC)"	18-Feb-08 12:53 PM	

+="CN62052"	"Local consultants for RWSS NTPII - Contract with URS"	="AusAid"	18-Feb-08	="Human resources services"	16-Oct-07	31-Dec-08	500000.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 12:54 PM	

+="CN62053"	"Infrastructure for Growth Advisor"	="AusAid"	18-Feb-08	="Utilities"	22-Aug-07	30-Aug-08	463000.00	=""	="HAWES, DAVID MICHAEL"	18-Feb-08 12:54 PM	

+="CN62055"	"Communities and Education in Aceh (CEPA) Phase 2."	="AusAid"	18-Feb-08	="Educational institutions"	19-Sep-07	25-Sep-09	7001687.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 12:54 PM	

+="CN62062"	"ANU Diplomatic Training Phase1"	="AusAid"	18-Feb-08	="Vocational training"	07-May-07	30-Jun-08	420236.30	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 12:55 PM	

+="CN62066-A2"	" Sexual and Reproductive health in Crisis and Post Crisis Situations "	="AusAid"	18-Feb-08	="Comprehensive health services"	03-Sep-07	31-Dec-11	3355445.00	=""	="INTERNATIONAL PLANNED PARENTHOOD FEDERATION"	18-Feb-08 12:55 PM	

+="CN62083"	"Lease of Emergency Gensets for Nauru - Coates"	="AusAid"	18-Feb-08	="Utilities"	01-Jul-07	30-Jun-08	692307.00	=""	="COATES"	18-Feb-08 12:58 PM	

+="CN62089-A1"	"Vision Myanmar: Reducing preventable blindness"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Aug-07	31-Dec-12	1099987.90	=""	="ROYAL ADELAIDE HOSPITAL"	18-Feb-08 12:58 PM	

+="CN62113"	"Nauru Public Sector Reform and Capacity Building Program Design Team (PDT)"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	30-Jun-08	673948.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:01 PM	

+="CN62120"	"Coffey International Limited"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	500000.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:02 PM	

+="CN62121"	"Global Justice Solutions"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	2000000.00	=""	="GLOBAL JUSTICE SOLUTIONS PTY LTD"	18-Feb-08 01:02 PM	

+="CN62122"	"GRM International Pty Ltd"	="AusAid"	18-Feb-08	="Public order and safety"	03-Oct-07	30-Jun-09	500000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:03 PM	

+="CN62141"	"Freedom House - Political Communication and Marketing Training Program for Civil Society Groups (NGO's)"	="AusAid"	18-Feb-08	="Socio political conditions"	01-Nov-07	30-Nov-08	559200.00	=""	="FREEDOM HOUSE"	18-Feb-08 01:05 PM	

+="CN62149"	"Freedom House Political Training Zimbabwe"	="AusAid"	18-Feb-08	="Socio political conditions"	01-Nov-07	30-Nov-08	562017.26	=""	="FREEDOM HOUSE"	18-Feb-08 01:06 PM	

+="CN62200"	"Interim CTA position"	="AusAid"	18-Feb-08	="Management advisory services"	10-Oct-06	31-Aug-07	328482.00	=""	="KELLOGG BROWN & ROOT PTY LTD"	18-Feb-08 01:14 PM	

+="CN62203"	"Indonesia Community Development and Civil Society (ACCESS) Project"	="AusAid"	18-Feb-08	="Business administration services"	03-Jan-02	30-Apr-08	19082109.50	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 01:14 PM	

+="CN62204"	"Tonga Fisheries Management Project"	="AusAid"	18-Feb-08	="Fisheries and aquaculture"	14-Jan-02	30-Jun-08	7976626.90	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:14 PM	

+="CN62205"	"Papua New Guinea-Australia Targeted Training Facility"	="AusAid"	18-Feb-08	="Alternative educational systems"	02-Apr-02	01-Oct-08	5252876.88	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:14 PM	

+="CN62206"	"PNG - Lae City WaterSupply Project Phase II"	="AusAid"	18-Feb-08	="Utilities"	09-Jul-02	31-Dec-07	2958505.00	=""	="CARDNO INTERNATIONAL PTY LTD T/A CARDNO MBK INTERNATIONAL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62207"	"Indonesia HIV/AIDS Prevention and Care Project - Phase II"	="AusAid"	18-Feb-08	="Disease prevention and control"	31-Jul-02	30-Jun-08	45210000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62208"	"Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Community and social services"	17-Jul-02	17-Nov-07	14421000.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:15 PM	

+="CN62209"	"Australia - East Timor Capacity Building Facility"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Sep-02	30-Jun-07	16692005.99	=""	="ILLAWARA TECHNOLOGY CORPORATION LTD"	18-Feb-08 01:15 PM	

+="CN62222"	"Nauru - Health Sector Assistance Facility"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Oct-06	30-Sep-07	1883877.05	=""	="AUS HEALTH INTERNATIONAL PTY LTD"	18-Feb-08 01:17 PM	

+="CN62230"	"Asean-Australia Development Cooperation Program Program Stream"	="AusAid"	18-Feb-08	="Trade policy and services"	19-May-03	31-Dec-08	5485420.60	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:18 PM	

+="CN62231"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	18-Feb-08	="Business administration services"	19-May-03	18-Jul-08	810171.15	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:18 PM	

+="CN62239"	"Indonesia ADS Off-Shore Management Program - Phase II"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jul-03	30-Jun-09	11853068.61	=""	="IDP EDUCATION PTY LTD"	18-Feb-08 01:19 PM	

+="CN62240"	"East Timor Ministry of Planning and Finance Capacity Building Project"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jul-03	31-Dec-08	27303650.95	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:19 PM	

+="CN62241"	"Pacific Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Disease prevention and control"	20-Nov-03	31-Dec-08	7812679.60	=""	="International Development Support Services Pty Ltd"	18-Feb-08 01:19 PM	

+="CN62242"	"RAFI Extension"	="AusAid"	18-Feb-08	="Political systems and institutions"	09-Oct-07	30-Sep-08	5557906.28	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:19 PM	

+="CN62245"	"Samoa Police Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Dec-03	28-Feb-09	3106628.11	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:20 PM	

+="CN62247"	"In Africa ADS Management Project"	="AusAid"	18-Feb-08	="Human resources services"	01-Feb-04	31-May-09	2194276.81	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:20 PM	

+="CN62249"	"Solid Waste Management for Tonga"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Mar-04	01-Mar-08	1255465.82	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:20 PM	

+="CN62251"	"Vanuatu Secondary Schools Extension Project - Phase 2"	="AusAid"	18-Feb-08	="Educational facilities"	15-Apr-04	30-Jun-09	3636490.00	=""	="REEVES CONSTRUCTION SERVICES PTY LTD"	18-Feb-08 01:21 PM	

+="CN62253"	"TIMOR LESTE POLICE DEVELOPMENT PROGRAM"	="AusAid"	18-Feb-08	="Public order and safety"	02-Jun-04	02-Dec-08	8585974.46	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:21 PM	

+="CN62274"	"Solomon Island Foresty Management Project Phase II"	="AusAid"	18-Feb-08	="Forestry"	01-Oct-04	30-Sep-08	388521.75	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:24 PM	

+="CN62275"	"Provision of Coordination and liaison with NGOs"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-04	30-Jun-08	363000.00	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62278"	"International Quality Assurance Programs for HIV Testing and Laboratory Management"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Dec-04	31-May-08	1195012.50	=""	="ST VINCENT'S INSTITUTE OF MEDICAL RESEARCH"	18-Feb-08 01:25 PM	

+="CN62294"	"Solomon Islands Machinery of Government Infrastructure Project"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-05	31-Mar-08	1101175.29	=""	="SAKHIWE CONSULTANTS PTY LIMITED"	18-Feb-08 01:27 PM	

+="CN62314"	"Philippines Australia Partnership for Economic Governance Reforms (PEGR)"	="AusAid"	18-Feb-08	="Development finance"	18-Apr-05	31-May-10	13172122.80	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:30 PM	

+="CN62315"	"Solomon Islands Disaster Risk Management Project Short Term Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-07	31-Dec-07	326317.20	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62318"	"Management of Interim Assistance TSAP Manager Position"	="AusAid"	18-Feb-08	="Business administration services"	19-Jun-07	31-Dec-08	454045.90	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62321"	"RGSF MOG - Strengthening Accountability"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	10372034.02	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62322"	"RGSF MOG - Public Service Repair and Reform"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	10462716.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62323"	"RGSF MOG - Parliament and Electoral"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	4093249.60	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62324"	"RGSF MOG - Program Governance and Evaluation"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	2137357.55	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62325"	"RGSF MOG - Provincial Governance"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Sep-09	2997440.69	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62326"	"Facilitation of Interim Assistance Package for Ministry of Lands Housing and Survey"	="AusAid"	18-Feb-08	="Business administration services"	15-Oct-07	29-Aug-08	705171.50	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62329"	"GOVERNANCE AND RELATED AID ACTIVITY IN SOLOMON ISLANDS (GRAISI)"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-05	30-Sep-09	3481737.39	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62331"	"AIPRD Procurement & Logistic Support"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	10388253.77	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62332"	"HKSI Logistics Support to GPF"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	31-Dec-07	1334546.66	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62333"	"Nauru Shipping"	="AusAid"	18-Feb-08	="Transport operations"	01-Jul-07	30-Jun-08	550000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62334"	"Emergency Disaster Warehouse Facility HK"	="AusAid"	18-Feb-08	="Transport operations"	01-Jul-07	30-Jun-10	549111.16	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62335"	"AusAID Emergency Purchase through HK Logistics"	="AusAid"	18-Feb-08	="Material packing and handling"	10-Sep-07	10-Sep-08	990000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:32 PM	

+="CN62336"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	2508299.85	=""	="AUSTRALIAN BUSINESS VOLUNTEERS LIMITED"	18-Feb-08 01:32 PM	

+="CN62337"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	2255308.00	=""	="AUSTRAINING INTERNATIONAL PTY LTD"	18-Feb-08 01:33 PM	

+="CN62338"	"VOLUNTEER PROGRAM"	="AusAid"	18-Feb-08	="International relations"	01-Jul-05	30-Jun-10	5477054.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:33 PM	

+="CN62349"	"AIPRD - Health Assistance Rehabilitation - Aceh Program (HARAP)"	="AusAid"	18-Feb-08	="Comprehensive health services"	05-Sep-05	11-Sep-07	5652170.50	=""	="JTA INTERNATIONAL PTY LTD"	18-Feb-08 01:34 PM	

+="CN62352"	"TRADE ANALYSIS AND REFORM PROJECT"	="AusAid"	18-Feb-08	="Trade policy and regulation"	23-Sep-05	23-Sep-08	646766.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62355"	"AIRPD - Education Rehabilitation in Aceh (ERA) Program"	="AusAid"	18-Feb-08	="Educational institutions"	30-Sep-05	09-Apr-08	687120.87	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:35 PM	

+="CN62356"	"Bangladesh English Language Teacher (ELT) Trainers"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jul-07	30-Jun-10	1382311.70	=""	="AUSTRAINING INTERNATIONAL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62360"	"Local Governance and Infrastructure for Communities in Aceh (LOGICA)"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jan-06	14-Jul-08	4509999.78	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:36 PM	

+="CN62364"	"Project Preparation Consultant (PPC) for the Eastern Indonesia National Road Improvement Project (EINRIP)"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	15-Mar-06	31-Dec-08	7421468.05	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:36 PM	

+="CN62372"	"EPSG Design Coordinator"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	335500.00	=""	="THE TRUSTEE FOR TRUST -SEAVIEW MONTVILLE T/A TRUST -SEAVIEW MONTVILLE"	18-Feb-08 01:37 PM	

+="CN62379"	"Budget Management Technical Assistance for GoT-Long Term Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	01-Apr-06	31-Oct-07	450428.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:39 PM	

+="CN62387"	"Operational Support in Nauru"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Nov-06	31-Dec-07	1105902.09	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62388"	"Operational Support in Nauru"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Nov-06	30-Jun-08	1085480.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62389"	"HK Shipping - Admin & Logistic Support for AIP Health NTT"	="AusAid"	18-Feb-08	="Community and social services"	28-May-07	07-May-08	2535197.17	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62393"	"PNG-Australia Transport Sector Support Program - Interim Phase"	="AusAid"	18-Feb-08	="Transport operations"	30-May-06	31-Dec-07	2127741.00	=""	="CARDNO INTERNATIONAL PTY LTD"	18-Feb-08 01:40 PM	

+="CN62394"	"Construction Contract for Police Building"	="AusAid"	18-Feb-08	="General building construction"	29-May-06	30-Nov-08	1216399.24	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:41 PM	

+="CN62395"	"East Timor Public Sector Capacity Development Program"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-06	15-Jul-11	13750000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:41 PM	

+="CN62399"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	350592.00	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:41 PM	

+="CN62401"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	337920.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62402"	"Provision of Services to the RAMSI Law & Justice Sector Program"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	19800000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:42 PM	

+="CN62405"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	390851.13	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:42 PM	

+="CN62406"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	327733.72	=""	="WIZARD INFORMATION SERVICES PTY LTD"	18-Feb-08 01:42 PM	

+="CN62412"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	21-Aug-06	30-Jun-08	483582.00	=""	="CONSOLVE PTY LTD"	18-Feb-08 01:43 PM	

+="CN62413"	"PNG Health -  Independent Monitoring and Review Group Team Leader"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Sep-06	31-Dec-08	692120.00	=""	="HEALTH RESEARCH FOR ACTION"	18-Feb-08 01:43 PM	

+="CN62414"	"AIPRD BASIC EDUCATION PROGRAM - INDEPENDENT AUDIT CONTRACTOR (IAC)"	="AusAid"	18-Feb-08	="Educational facilities"	01-Oct-06	01-Oct-09	1320000.00	=""	="PRICEWATERHOUSECOOPERS"	18-Feb-08 01:43 PM	

+="CN62416"	"Dr David Fegan"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	31-Oct-08	320552.73	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:43 PM	

+="CN62418"	"Dr Tony Diprose"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	31-Aug-08	360942.10	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62419"	"Community Development Specialist - SIRIP"	="AusAid"	18-Feb-08	="Management advisory services"	24-Mar-07	30-Jun-09	308074.80	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62422"	"Incountry Management Long Term Adviser CDRC"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jan-07	30-Jun-09	483641.71	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62426"	"Placement of General Surgeon (Chief Surgeon Specialist)"	="AusAid"	18-Feb-08	="Medical practice"	25-Aug-07	24-Aug-09	356456.10	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62434"	"PACTAM Placement Service Order - Air Kiribati Deputy Engineer"	="AusAid"	18-Feb-08	="Transportation repair or maintenance services"	01-Oct-07	30-Oct-09	361452.41	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62438-A1"	" Water Supply Operations Adviser - Placement "	="AusAid"	18-Feb-08	="Environmental management"	19-Oct-07	24-Oct-11	496777.05	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62464"	"Cambodia Criminal Justice Assistance Project Phase III"	="AusAid"	18-Feb-08	="Management advisory services"	05-Feb-07	04-Feb-12	4245383.10	=""	="GLOBAL JUSTICE SOLUTIONS (ASIA) PTY LTD"	18-Feb-08 01:50 PM	

+="CN62470"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	26-Feb-07	30-Jun-08	309069.75	=""	="PAXUS AUSTRALIA PTY LTD"	18-Feb-08 01:51 PM	

+="CN62478"	"Independant Review Group (IRG) Team Leader"	="AusAid"	18-Feb-08	="Management advisory services"	18-Apr-07	30-Jun-10	438317.78	=""	="AGGLETON, PETER"	18-Feb-08 01:52 PM	

+="CN62480"	"Pacific Land Program - Case Study Proper - ANU Enterprise Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	29-Mar-07	31-Jan-08	394975.57	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:52 PM	

+="CN62486"	"APTC Coordination Office - Personnel and Logistics"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Jun-11	1879544.70	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:53 PM	

+="CN62488"	"Emergency Gensets and Consumables for Nauru"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Apr-07	31-Dec-07	369837.60	=""	="CUMMINS SOUTH PACIFIC PTY LTD"	18-Feb-08 01:53 PM	

+="CN62489"	"Disaster Management Adviser to Indonesia"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	31-Dec-07	335500.00	=""	="LOCKTON MORRISSEY CONSULTING PTY LTD"	18-Feb-08 01:53 PM	

+="CN62499"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	729716.01	=""	="MGF WEBB"	18-Feb-08 01:55 PM	

+="CN62501"	"PNG Incentive Fund - Australian Managing Contractor"	="AusAid"	18-Feb-08	="Management advisory services"	26-Jul-00	31-Dec-07	22588197.68	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:55 PM	

+="CN62504"	"E44484A Spectrum analysers"	="Defence Materiel Organisation"	18-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	14-Feb-08	20-Jun-14	1321465.56	=""	="AGILENT TECHNOLOGIES"	18-Feb-08 02:11 PM	

+="CN62522"	"Provision for Monthly internet charges for (Jan-Jun) 2008"	="Geoscience Australia"	18-Feb-08	="Computer services"	11-Jan-08	30-Jun-08	726000.00	=""	="Verizon (Cybertrust Australia Pty Ltd)"	18-Feb-08 03:54 PM	

+="CN62523"	"Offshore SW Tasmania Airborne Magnetic Survey (inclusive of full stand-by).  Ref:  2007/3575"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	12-Jan-08	30-Jun-08	340438.23	=""	="Fugro Airborne Surveys"	18-Feb-08 03:55 PM	

+="CN62527"	"Airborne Magnetic Survey - Offshore NW Tasmania. DEED #: G2023B C - TRIM Container: 2007/2161"	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	14-Jan-08	30-Apr-08	503012.40	=""	="Fugro Airborne Surveys"	18-Feb-08 03:55 PM	

+="CN62538"	"Bass Strait Airborne Magnetic Survey (inclusive of full stand-by) - Reference:  2007/3573"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	30-Jun-08	426926.50	=""	="Thomson Aviation Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62596"	"Procurement of:  DETECTOR,WIND DIRECTION AND;  ELECTRONIC COMPONENTS ASSEMBLY;  JUNCTION BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	15-Aug-08	319910.00	=""	="SITEP AUSTRALIA Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62600"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	29-Jan-08	10-Jun-08	312218.16	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	18-Feb-08 05:14 PM	

+="CN62633"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	15-Apr-08	365640.00	=""	="MEASUREMENT RESOURCES Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62639"	"Procurement of:  TUBE,METALLIC;  HOUSING;  HOUSING;  PLATE,MOUNTING;  PLATE,MOUNTING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	24-Jan-08	13-Dec-08	366182.14	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM	

+="CN62642"	"Procurement of:  CIRCUIT BREAKER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	20-Nov-09	958345.26	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM	

+="CN62645"	"teer coating machine"	="Royal Australian Mint"	19-Feb-08	="Coating machines"	14-Jan-08	14-Jan-08	830038.07	=""	="TEER COATING LTD"	19-Feb-08 08:39 AM	

+="CN62715"	"Provision of Secure Internet Services. (contract under the Head of Agreement between the Commonwealth of Australia and Optus)"	="Office of the Commonwealth Ombudsman"	19-Feb-08	="Internet services"	20-Apr-06	19-Apr-09	402513.00	=""	="Optus Networks Pty Ltd"	19-Feb-08 02:19 PM	

+="CN62716"	" Agricultural research "	="Australian Centre for International Agricultural Research"	19-Feb-08	="Agricultural research services"	14-Feb-08	13-Oct-11	484160.00	=""	="Mr John Oakeshott"	19-Feb-08 02:26 PM	

+="CN62725-A1"	"Supply of electricity for AFP properties in ACT, NSW & VIC"	="Australian Federal Police"	19-Feb-08	="Electric utilities"	01-Jan-05	30-Jun-09	7069423.00	=""	="ActewAGL Retail"	19-Feb-08 02:50 PM	

+="CN62727-A1"	"07/2518 - Technical Analyst 0717-0873 - ICT Panel - 05/0717"	="Australian Customs and Border Protection Service"	19-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	389000.00	="07/2518"	="EDS (Australia) Pty Ltd"	19-Feb-08 02:50 PM	

+="CN62728"	"04/0653 - Automatic Explosive Detection X-Ray Units - 0109-1065 - X-Ray Panel 03/0109 (CPO018509)"	="Australian Customs and Border Protection Service"	19-Feb-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-May-05	27-Dec-07	322586.00	=""	="L3 Communications Australia Pty Ltd"	19-Feb-08 02:55 PM	

+="CN62733-A2"	"07/2053 - Infrastucture Project Management - 0717-0877 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	19-Feb-08	="Temporary personnel services"	02-Jul-07	30-Nov-08	408491.40	=""	="Greythorn Pty Ltd"	19-Feb-08 03:04 PM	

+="CN62745-A4"	"04/0618 - Employee assistance programme"	="Australian Customs and Border Protection Service"	19-Feb-08	="Management and Business Professionals and Administrative Services"	05-Apr-07	09-Oct-09	886459.82	=""	="PPC Worldwide Formerly OSA Group"	19-Feb-08 03:53 PM	

+="CN62755"	"06/1552 - Network Supply and Installation"	="Australian Customs and Border Protection Service"	19-Feb-08	="Computer services"	13-Apr-07	12-Apr-10	1924283.00	=""	="Attorney Generals Department"	19-Feb-08 03:54 PM	

+="CN62760"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	15-Mar-07	14-Mar-10	425970.00	=""	="Ferry Real Estate"	19-Feb-08 03:55 PM	

+="CN62761"	"Lease of Property in VIC"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jan-07	31-Dec-11	838749.60	=""	="Melbourne Airport"	19-Feb-08 03:55 PM	

+="CN62762-A1"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-06	31-Dec-09	863953.20	=""	="Bunnings Properties Pty Ltd"	19-Feb-08 03:55 PM	

+="CN62763"	"Lease of Property in NSW"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Dec-06	30-Nov-09	503910.00	=""	="Trust Company of Australia Ltd"	19-Feb-08 03:55 PM	

+="CN62764"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-May-07	31-Jan-11	1202643.78	=""	="Lend Lease Real Estate"	19-Feb-08 03:55 PM	

+="CN62765"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	16-Feb-07	15-Feb-10	425295.00	=""	="AQIS Pty Ltd"	19-Feb-08 03:55 PM	

+="CN62766"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jan-07	31-Dec-10	1741146.00	=""	="Cirillo & Others"	19-Feb-08 03:55 PM	

+="CN62767"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	15-Oct-05	14-Oct-10	2385917.12	=""	="Sandran Pty Ltd"	19-Feb-08 03:56 PM	

+="CN62770"	"Lease of Property in NSW"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Sep-07	31-Aug-09	484000.00	=""	="L & G Management Pty Ltd"	19-Feb-08 03:56 PM	

+="CN62771"	"Lease of Property in WA"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Nov-07	31-Oct-17	1600000.00	=""	="Esperance Port Authority"	19-Feb-08 03:56 PM	

+="CN62774"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jan-08	31-Dec-12	15111442.50	=""	="ISPT Pty Ltd"	19-Feb-08 03:57 PM	

+="CN62775"	"Lease Of Property in NT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Sep-07	31-Aug-10	488800.00	=""	="Bunuwal Investments Pty Ltd / Trustee of Miliditjpi Trust"	19-Feb-08 03:57 PM	

+="CN62776"	"Lease of Property in SA"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Nov-07	31-Oct-10	2809440.00	=""	="Port Canal Shopping Centre Pty Ltd (formerly Comport Properties)"	19-Feb-08 03:57 PM	

+="CN62777"	"Lease of Property in ACT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jan-07	31-Dec-14	7698873.60	=""	="Jones Lang LaSalle in association with Ray L Davis"	19-Feb-08 03:57 PM	

+="CN62778"	"Lease of Property in NSW"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Mar-07	28-Feb-09	1064993.60	=""	="Private Investors Nominees"	19-Feb-08 04:01 PM	

+="CN62779"	"Lease Of Property in NT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Sep-06	31-Aug-11	3617328.00	=""	="Coorong Investments Pty Ltd"	19-Feb-08 04:01 PM	

+="CN62811-A1"	"07/2386 - Software"	="Australian Customs and Border Protection Service"	19-Feb-08	="Computer services"	30-Oct-07	30-Jun-11	434457.00	=""	="Boldon James Ltd"	19-Feb-08 04:05 PM	

+="CN62829-A2"	"07/2273 - Construction Services (CPE004388-1)"	="Australian Customs and Border Protection Service"	19-Feb-08	="General building construction"	01-Jan-08	30-Jun-08	2296428.00	=""	="Chappell Development Group Pty Ltd"	19-Feb-08 04:08 PM	

+="CN62832-A2"	"Business Integrity Application Services Panel"	="Centrelink"	19-Feb-08	="Computer services"	09-Mar-05	30-Jun-09	2264033.96	=""	="KAZ Technology Services Pty Ltd"	19-Feb-08 04:28 PM	

+="CN62840-A1"	"07/2036 - Business Analyst - 0717-0860 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	19-Feb-08	="Temporary personnel services"	18-Feb-08	30-Jun-09	333000.00	="05/0717"	="Ambit Group Pty Ltd"	19-Feb-08 04:36 PM	

+="CN62841"	"PARADE BOOTS"	="Defence Materiel Organisation"	19-Feb-08	="Boots"	14-Feb-08	30-May-08	1988763.70	=""	="LYMINGTON HILL"	19-Feb-08 04:40 PM	

+="CN62854"	"Liquid Chromotagraph Mass Spectrometer Mass Spectrometer"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	10-Oct-07	23-Nov-07	396000.00	=""	="VARIAN AUSTRALIA PTY LTD"	19-Feb-08 04:50 PM	

+="CN62879"	"UPLC/TQD MSMS SYST WATERS AUST PO"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	19-Feb-08	19-Feb-08	415745.00	=""	="WATERS AUSTRALIA PTY LTD"	19-Feb-08 04:54 PM	

+="CN62880"	"UPLC/TQD MSMS SYST WATERS AUST PO l"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	19-Feb-08	19-Feb-08	415745.00	=""	="WATERS AUSTRALIA PTY LTD"	19-Feb-08 04:54 PM	

+="CN62906"	"SHOES MENS. BLACK. SERVICE DRESS. PATENT LEATHER"	="Defence Materiel Organisation"	19-Feb-08	="Mens shoes"	14-Feb-08	30-May-08	756396.30	=""	="LYMINGTON PACIFIC"	19-Feb-08 05:23 PM	

+="CN62908"	"07/2479 - Project Manager - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	20-Feb-08	="Temporary personnel services"	01-Mar-08	28-Feb-09	327000.00	=""	="Clicks Recruit Pty Ltd"	20-Feb-08 09:01 AM	

+="CN62936"	"Provision of online full text news services"	="Department of Parliamentary Services"	20-Feb-08	="News and publicity services"	11-Feb-08	31-Dec-10	594000.00	="DPS06122"	="Media Monitors ACT Pty Ltd"	20-Feb-08 09:23 AM	

+="CN62937"	"Provision of Water & Sewerage services"	="Department of Parliamentary Services"	20-Feb-08	="Supply of water"	08-Feb-08	30-Jun-08	550000.00	=""	="ACTEW AGL Water"	20-Feb-08 09:23 AM	

+="CN62975"	" CRS Australia - 33 - 35 St Andrews Street, Maitland, NSW "	="CRS Australia"	20-Feb-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	327187.20	=""	="Delore Investments Pty Ltd"	20-Feb-08 12:16 PM	

+="CN62985"	" Supply of constant velocity Joints (CV joints), NSN 2520-99-797-7024, 250 QTY. "	="Defence Materiel Organisation"	20-Feb-08	="War vehicles"	20-Feb-08	04-Mar-08	355437.50	=""	="LAND ROVER AUSTRALIA"	20-Feb-08 02:04 PM	

+="CN62992-A1"	"Provision for Passenger Information Processing and Related Services"	="Department of Immigration and Citizenship"	20-Feb-08	="Security systems services"	01-Jul-07	30-Jun-08	5500000.00	=""	="Converga Pty Limited"	20-Feb-08 02:29 PM	

+="CN63023"	" Review GFM "	="Defence Materiel Organisation"	21-Feb-08	="Professional engineering services"	10-Jan-07	30-Apr-07	385000.00	=""	="BOEING AUSTRALIA"	21-Feb-08 10:10 AM	

+="CN63025"	"PREPARATION OF NROC"	="Defence Materiel Organisation"	21-Feb-08	="Professional engineering services"	13-Sep-07	30-Mar-08	406510.82	=""	="DARONMONT TECHNOLOGIES PTY LTD"	21-Feb-08 10:17 AM	

+="CN63034-A6"	"Property Lease Melbourne Airport VIC"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	05-Nov-06	30-Jun-11	754075.80	=""	="Australian Pacific Airports(Melbourne) Pty Ltd"	21-Feb-08 10:53 AM	

+="CN63041-A1"	"Property Lease Kingston ACT"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	06-Nov-05	05-Nov-09	1771852.00	=""	="BMD Pty Ltd"	21-Feb-08 11:18 AM	

+="CN63050-A1"	"Property lease Brindabella Park ACT"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	11-Jun-07	10-Jun-14	7801204.90	=""	="Canberra International Airport Pty Ltd"	21-Feb-08 12:09 PM	

+="CN63056-A1"	" Provision of large mail out services. "	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Mail and cargo transport"	08-Feb-08	08-Apr-08	441412.10	=""	="AUSTRALIA POST"	21-Feb-08 12:26 PM	

+="CN63059-A4"	"Report Developer for AQIS Business Software Solutions."	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Human resources services"	18-Feb-08	30-Jun-10	518100.00	=""	="Greythorn Pty Ltd"	21-Feb-08 12:26 PM	

+="CN63071-A3"	"Tester for AQIS Business Software Solutions - reference RFQ 0074-01"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Human resources services"	01-Jan-08	30-Jun-10	368500.00	=""	="Greythorn Pty Ltd"	21-Feb-08 12:28 PM	

+="CN63160-A1"	"Property Lease Barton ACT"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	01-Mar-06	28-Feb-09	1664958.00	=""	="Defence Housing Authority"	21-Feb-08 02:47 PM	

+="CN63220-A3"	"Project Management Services, National Aboriginal Islander Skills Development Association Capital Upgrade"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Building construction and support and maintenance and repair services"	13-Dec-07	30-Jun-11	500973.00	="07/484"	="Root Projects Australia Pty Ltd"	22-Feb-08 10:28 AM	

+="CN63221-A1"	"Property Lease - Kingston ACT"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	01-Jun-07	31-May-11	2085066.00	=""	="Intelligent Group Pty Ltd as Trustee for The Intelligent Trust"	22-Feb-08 10:29 AM	

+="CN63238"	"Valuation Services"	="Centrelink"	22-Feb-08	="Economic or financial evaluation of projects"	01-Jul-07	30-Jun-08	25000000.00	=""	="Australian Valuation Office"	22-Feb-08 01:09 PM	

+="CN63247-A1"	"Property Lease Yarralumla ACT"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	28-Jun-03	30-Jun-09	472702.00	=""	="Serif Kaya"	22-Feb-08 01:48 PM	

+="CN63266-A2"	"Lease at Sunshine, Victoria."	="Department of Human Services"	22-Feb-08	="Lease and rental of property or building"	01-Feb-08	31-Jul-13	2448715.01	=""	="Australia THL Investment Corp Pty Ltd"	22-Feb-08 02:51 PM	

+="CN63267-A3"	"Property lease Perth WA"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	01-Feb-05	31-Aug-08	310015.00	=""	="Western Australia Police Service"	22-Feb-08 02:54 PM	

+="CN63270"	"qty 300 battery chargers; qty 512 cordless handset; used for military communications."	="Defence Materiel Organisation"	22-Feb-08	="Phone handsets"	22-Feb-08	12-Apr-08	344410.00	=""	="INTEGRATED WIRELESS PTY LTD"	22-Feb-08 03:08 PM	

+="CN63283-A3"	"Provision for Security Guarding for DIAC NatO and Regional Offices"	="Department of Immigration and Citizenship"	22-Feb-08	="Security guard services"	15-Mar-05	15-Mar-10	11091771.00	=""	="MSS Security Pty Ltd"	22-Feb-08 04:55 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val30000to40000.xls
@@ -1,1 +1,103 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61931"	"Development of training materials and their presentation to DVA staff nationally"	="Department of Veterans' Affairs"	18-Feb-08	="Specialised educational services"	30-Jul-07	12-Sep-07	39861.00	=""	="HSA GROUP"	18-Feb-08 10:31 AM	

+="CN61935"	" CRS Australia - Temporary Lease, Christie Centre, CRS QLD Corporate Office "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	05-Mar-08	04-May-08	33000.00	=""	="Christie Systems Services"	18-Feb-08 10:38 AM	

+="CN61944"	"Provision for Administrative Personnel"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	29-May-06	23-Jun-06	34650.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:38 AM	

+="CN61946"	"Provision for Information Technology Specialist Services "	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	38709.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:43 AM	

+="CN61978"	"Labour Market Analysis"	="AusAid"	18-Feb-08	="Vocational training"	30-Aug-07	31-Oct-07	33429.00	=""	="VOIGT-GRAF, CARMEN"	18-Feb-08 12:44 PM	

+="CN62001"	"Finance Management Assesment- Roger Jenkins"	="AusAid"	18-Feb-08	="Educational institutions"	01-Jul-07	01-Sep-07	36995.94	=""	="JENKINS, ROGER DOUGLAS"	18-Feb-08 12:47 PM	

+="CN62022"	"Minor Contract - Judith Johnson"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Nov-07	33315.15	=""	="JOHNSON, JUDITH"	18-Feb-08 12:49 PM	

+="CN62031"	"Public Financial Management Specialists - Mark Harradine"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	12-Oct-07	30024.50	=""	="HARRADINE, MARK"	18-Feb-08 12:51 PM	

+="CN62034"	"Peter Millington - Water Resource Specialist - NVN ICR"	="AusAid"	18-Feb-08	="Environmental management"	02-Aug-07	31-Jul-08	33550.00	=""	="PETER MILLINGTON & ASSOCIATES PTY LTD"	18-Feb-08 12:51 PM	

+="CN62043"	"People Movement Paper"	="AusAid"	18-Feb-08	="Community and social services"	20-Aug-07	29-Feb-08	32600.00	=""	="THE ADELAIDE RESEARCH & INNOVATION INVESTMENT TRUST"	18-Feb-08 12:52 PM	

+="CN62061"	"Payment for ICR Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	18-Aug-07	31-Oct-07	33009.90	=""	="UNIVERSITY OF TECHNOLOGY, SYDNEY"	18-Feb-08 12:55 PM	

+="CN62076"	"Mid Term Review of ACRP"	="AusAid"	18-Feb-08	="Human resources services"	01-Aug-07	31-Dec-07	35250.00	=""	="JANSSEN, GUY MATHIEU AGNES"	18-Feb-08 12:57 PM	

+="CN62082"	"Pacific Cluster Evaluation - Julie Eagles"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	39775.45	=""	="EAGLES, JULIE ANNE"	18-Feb-08 12:57 PM	


+="CN62095"	"Contract with David Barber - Annual Review 2007"	="AusAid"	18-Feb-08	="Management advisory services"	20-Sep-07	30-Nov-07	38964.00	=""	="BARBER, DAVID G"	18-Feb-08 12:59 PM	

+="CN62103"	"TA for Establihing the OACC - John Wood"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	31-Jan-08	33643.01	=""	="BALJURDA COMPREHENSIVE CONSULTING"	18-Feb-08 01:00 PM	

+="CN62117"	"HSSP Interim Health Sector Adviser (Chris Chamberlin)"	="AusAid"	18-Feb-08	="Comprehensive health services"	22-Oct-07	12-Mar-08	36972.83	=""	="CHAMBERLAIN, CHRISTOPHER A"	18-Feb-08 01:02 PM	

+="CN62138"	"UNIFEM Bangkok VAW Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Jul-07	30-Jun-08	40000.00	=""	="UNITED NATIONS FUND FOR WOMEN"	18-Feb-08 01:05 PM	

+="CN62139"	"Carol Beaver"	="AusAid"	18-Feb-08	="Disease prevention and control"	15-Oct-07	15-Nov-07	33550.00	=""	="THE TRUSTEE FOR VAN KONKELENBERG FAMILY TRUST"	18-Feb-08 01:05 PM	

+="CN62140"	"Review of Copra Industry - Duncan Burnett"	="AusAid"	18-Feb-08	="Management advisory services"	04-Nov-07	31-Jan-08	30528.81	=""	="BURNETT, DUNCAN"	18-Feb-08 01:05 PM	

+="CN62168-A1"	"GIFC Indonesia - fire and peatland prefeasibility mission"	="AusAid"	18-Feb-08	="Forestry"	26-Jul-07	10-Oct-07	31826.30	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:09 PM	

+="CN62169"	"GIFC program management - general input"	="AusAid"	18-Feb-08	="Forestry"	30-Jul-07	30-Jun-08	36982.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:09 PM	

+="CN62173"	"Independent Completion Report Mission, Cuu Long RWSS Project"	="AusAid"	18-Feb-08	="Human resources services"	06-Sep-07	31-Oct-07	33331.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:10 PM	

+="CN62177"	"ABC/NBC Review Diane Berryman"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	30-May-08	36723.00	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:10 PM	

+="CN62190"	"Livingston - AFCJP 2008 AP Pre Planning Mission"	="AusAid"	18-Feb-08	="Security and personal safety"	16-Sep-07	30-Nov-07	30676.80	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62198"	"Service Order for Beijing Post Staffing Review Consolidation"	="AusAid"	18-Feb-08	="Human resources services"	10-Sep-07	28-Feb-08	33150.00	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:13 PM	

+="CN62223"	"Evaluation of WHO-RBM in Mindanao and ADS-MCP Initiatives"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Sep-07	30-Nov-07	39500.02	=""	="CONDON, ROBERT JAMES"	18-Feb-08 01:17 PM	

+="CN62224"	"TAG Oct 2007 - Consultant Costs"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Oct-07	31-Dec-07	37314.20	=""	="CONDON, ROBERT JAMES"	18-Feb-08 01:17 PM	

+="CN62260"	"ABC/NBC Review Ian Teese"	="AusAid"	18-Feb-08	="Management advisory services"	24-Oct-07	30-Nov-07	30998.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:22 PM	

+="CN62264"	"Iraq capacity Building Facility Design inputs"	="AusAid"	18-Feb-08	="Human resources services"	01-May-07	01-Nov-07	35200.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:22 PM	

+="CN62266"	"Service Order - administrative inputs"	="AusAid"	18-Feb-08	="Electronic reference material"	03-Sep-07	30-Nov-07	30426.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:23 PM	

+="CN62269"	"Aceh Program PMSG M&E Helpdesk - Sue Dawson Aug 07"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	31-Oct-07	33000.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62298"	"Audit of ANU & ANU Enterprises"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	01-Mar-08	30654.20	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:27 PM	

+="CN62299"	"IT Audit of SIMON and OASIS"	="AusAid"	18-Feb-08	="Business administration services"	05-Nov-07	30-Jun-08	34886.42	=""	="STIRLING INTERNATIONAL"	18-Feb-08 01:28 PM	

+="CN62311"	"Performance Audit of VCMB"	="AusAid"	18-Feb-08	="Accounting and auditing"	05-Nov-07	31-Jan-08	31258.70	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62348"	"Review of AusAID Port Moresby Disaster Preparedness and Response Capacity"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Aug-07	21-Sep-07	31433.60	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62354"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	20-Feb-07	29-Jun-07	33336.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:36 PM	

+="CN62425"	"Recruitment of Vocational & Educational Training Specialist"	="AusAid"	18-Feb-08	="Vocational training"	04-Jul-07	05-Oct-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62435"	"PACTAM Recruitment - Strategic Health Planner/Project Manager, Naurau"	="AusAid"	18-Feb-08	="Medical practice"	19-Sep-07	14-Nov-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62436"	"PACTAM Recruitment - Secretary Health and Medical Services, Nauru"	="AusAid"	18-Feb-08	="Medical practice"	19-Sep-07	14-Nov-07	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62440"	"FSM PACTAM Tax Reform Adviser Recruitment"	="AusAid"	18-Feb-08	="Accounting and auditing"	27-Sep-07	31-Mar-08	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62444"	"PACTAM Recruitment - Health Educator, Nauru"	="AusAid"	18-Feb-08	="Medical practice"	05-Oct-07	30-Jan-08	30250.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:48 PM	

+="CN62445"	"Pacific Land Program Phase 1 Advisory Services"	="AusAid"	18-Feb-08	="Management advisory services"	11-Sep-06	31-May-08	35516.80	=""	="MUNRO, JOHN"	18-Feb-08 01:48 PM	

+="CN62461"	"Aceh Infrastructure Monitoring Team - Team Member - Leon Mayers"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	29-Jan-07	10-May-08	39327.84	=""	="MAYERS, LEON C"	18-Feb-08 01:50 PM	

+="CN62497"	"Aceh Rehabilitation Program - Building Materials Testing Services"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	30-Jul-07	31-Aug-07	35090.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:54 PM	

+="CN62510"	"Provision for National Action Plan to Promote understanding and Dialogue among Australians"	="Department of Immigration and Citizenship"	18-Feb-08	="Civic organisations and associations and movements"	21-Jan-08	30-Jun-08	31075.00	=""	="Islamic Council of Victoria Inc"	18-Feb-08 03:30 PM	

+="CN62516"	"3 x VMWare Infrastructure Enterprise for 2CPU and 3 x 3Yr  Gold Support"	="Geoscience Australia"	18-Feb-08	="Software"	10-Jan-08	02-Jan-09	31445.70	=""	="Dell Australia Pty Ltd"	18-Feb-08 03:54 PM	

+="CN62530"	"RP - transcription of tapes consisting of 11,583 x 3480 tapes."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	30851.46	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:56 PM	

+="CN62537"	"Master of Science Academic Program 2007 Semesters"	="Geoscience Australia"	18-Feb-08	="Education and Training Services"	17-Jan-08	31-Jan-08	31443.20	=""	="Australian National University"	18-Feb-08 03:57 PM	

+="CN62543"	"30 x Dell Optiplex 755 Desktops"	="Geoscience Australia"	18-Feb-08	="Computer Equipment and Accessories"	21-Jan-08	01-Feb-08	35145.00	=""	="Dell Australia Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62544"	"Consultancy contract for QC services for the North Perth Basin Seismic Reprocessing"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	21-Jan-08	31-Jul-08	33000.00	=""	="Makaira Geotechnical Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62553"	"Consultancy contract for provision of environmental approval documentation for the GA WA Offshore Seismic Survey Program."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	29-Jan-08	30-Aug-08	36300.00	=""	="RPS Environment Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62560"	"Import charges for the movement of 1 x 20ft gp owner sea container."	="Geoscience Australia"	18-Feb-08	="Transportation and Storage and Mail Services"	30-Jan-08	30-Jan-08	31226.61	=""	="International Art Services"	18-Feb-08 04:00 PM	

+="CN62574"	"Procurement of:  GEAR ASSEMBLY,SPEED DECREASER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	14-Sep-08	33124.67	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62581"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	28-Apr-08	34688.90	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62588"	"Procurement of:  THERMOSTAT,FLOW CONTROL"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	17-Apr-08	31102.36	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62602"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	21-Mar-08	34969.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	18-Feb-08 05:14 PM	

+="CN62610"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	15-Apr-08	33900.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62624"	"Procurement of:  BUSHING,SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	21-Jan-08	17-Oct-08	33564.64	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62626"	"Procurement of:  TRANSDUCER, DC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	01-May-08	33800.00	=""	="BAE SYSTEMS AUSTRALIA Ltd"	18-Feb-08 05:17 PM	

+="CN62634"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	11-Jul-08	31639.08	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62635"	"Procurement of:  VALVE,BUTTERFLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	08-Dec-08	33011.11	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62686"	"Election Conference Venue Hire"	="Australian Electoral Commission"	19-Feb-08	="Hotels and lodging and meeting facilities"	25-Feb-08	27-Feb-08	35000.00	=""	="Craigieburn Resort Pty Ltd"	19-Feb-08 11:05 AM	

+="CN62701"	"Election Advertising"	="Australian Electoral Commission"	19-Feb-08	="Advertising"	01-Oct-02	30-Jun-08	34942.62	=""	="HMA Blaze Pty Ltd"	19-Feb-08 11:52 AM	

+="CN62712"	"Antenna Element"	="Defence Materiel Organisation"	19-Feb-08	="Radio antennas"	18-Feb-08	05-May-08	35255.00	="RFQ-C7077"	="MOONRAKER PTY LTD"	19-Feb-08 01:58 PM	

+="CN62719"	"Airfares December 07"	="Australian Centre for International Agricultural Research"	19-Feb-08	="Travel agents"	28-Dec-07	18-Jan-08	34080.24	=""	="American Express Travel"	19-Feb-08 02:36 PM	

+="CN62729-A2"	"ABS Agreement No 6"	="Productivity Commission"	19-Feb-08	="Data services"	31-Oct-07	28-Feb-08	40000.00	=""	="ABS"	19-Feb-08 02:57 PM	

+="CN62734"	"Provision for ANZSOG training"	="Comsuper"	19-Feb-08	="Education and Training Services"	01-Jan-08	31-Dec-08	36900.00	=""	="Australia and New Zealand School of Government"	19-Feb-08 03:04 PM	

+="CN62792"	"Lease of Property in NT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-09	32021.00	=""	="Northern Territory Airports"	19-Feb-08 04:03 PM	

+="CN62794"	"CPO019238 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Power Generation and Distribution Machinery and Accessories"	02-Jan-08	03-Mar-08	32400.17	=""	="Motorola Australia Pty Ltd"	19-Feb-08 04:03 PM	

+="CN62836"	"STA135 STEP UP DC/DC CONVERTERS - QTY 18(SRV SPARES)"	="Defence Materiel Organisation"	19-Feb-08	="Electronic hardware and component parts and accessories"	21-Dec-07	21-Dec-07	33396.47	=""	="AUTOMATED BUSINESS POWER"	19-Feb-08 04:29 PM	

+="CN62850"	"IBM LTO4 Tapes  C05/06800"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer Equipment and Accessories"	04-Feb-08	29-Feb-08	33990.00	=""	="PRODATA PTY LTD"	19-Feb-08 04:50 PM	

+="CN62851"	"HS First Aid Defibrillators C07/07657"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	06-Feb-08	30-Jun-08	35460.00	=""	="ST JOHN AMBULANCE AUST"	19-Feb-08 04:50 PM	

+="CN62855"	"ADEX-placement of website ad in Nikkei Net, Nikkei Net BizPl"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Marketing and distribution"	11-Dec-07	31-Jan-08	38054.97	=""	="ADEX NIHON KEIZAI ADVERTISING CO LTD"	19-Feb-08 04:51 PM	

+="CN62863"	"GST and Customs Import fees  N/A"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Legal services"	12-Feb-08	30-Jun-08	32908.70	=""	="MALLESONS STEPHEN JAQUES"	19-Feb-08 04:52 PM	

+="CN62864"	"GST and Customs Import fees  N/A"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Legal services"	12-Feb-08	30-Jun-08	32908.70	=""	="MALLESONS STEPHEN JAQUES"	19-Feb-08 04:52 PM	

+="CN62865"	"Accommodation and Conference Space Crowne Plaza 21-24oct08 12D"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Hotels and lodging and meeting facilities"	12-Oct-08	28-Oct-08	33884.00	=""	="CROWNE PLAZA HUNTER VALLEY"	19-Feb-08 04:52 PM	

+="CN62892"	"Drafting instructions for parent Trade Measurement legislati"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	39421.80	=""	="DEPT OF JUSTICE AND ATTORNEY-GENERAL"	19-Feb-08 04:55 PM	

+="CN62895"	"Cutting Mill"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	30-Jan-08	29-Feb-08	32397.20	=""	="MEP INSTRUMENTS PTY LTD"	19-Feb-08 04:56 PM	

+="CN62918"	"Supply for server equipment"	="Department of Parliamentary Services"	20-Feb-08	="Computer servers"	06-Feb-08	03-Mar-08	33479.38	=""	="Hewlett Packard Australia Pty Ltd"	20-Feb-08 09:20 AM	

+="CN62919"	"Supply of Horticulture Heavy Duty Utility Vehicle"	="Department of Parliamentary Services"	20-Feb-08	="Utility service vehicles"	06-Feb-08	29-Feb-08	38610.00	=""	="Intech Industrial Technicians"	20-Feb-08 09:20 AM	

+="CN62922"	"Supply of computer hardware and software"	="Department of Parliamentary Services"	20-Feb-08	="Computer accessories"	11-Feb-08	03-Mar-08	30262.92	=""	="Cerulean Solutions Ltd"	20-Feb-08 09:21 AM	

+="CN62929"	"subscriptions to assrtd publications"	="Department of Parliamentary Services"	20-Feb-08	="Printed publications"	14-Jan-08	14-Jan-09	32336.27	=""	="THOMSON LEGAL & REGULATORY LTD"	20-Feb-08 09:22 AM	

+="CN62930"	"subscriptions to assrtd publications"	="Department of Parliamentary Services"	20-Feb-08	="Printed publications"	14-Jan-08	14-Jan-09	32757.75	=""	="THOMSON LEGAL & REGULATORY LTD"	20-Feb-08 09:22 AM	

+="CN62931"	"subscriptions to assrtd publications"	="Department of Parliamentary Services"	20-Feb-08	="Printed publications"	14-Jan-08	14-Jan-09	38681.40	=""	="THOMSON LEGAL & REGULATORY LTD"	20-Feb-08 09:22 AM	

+="CN62944"	"Venue Hire, accommodation and catering for Questacon Smart Moves Invention Convention"	="Questacon"	20-Feb-08	="Hotels and lodging and meeting facilities"	05-Jul-08	12-Jul-08	36363.64	=""	="Flagship Leisure Parks"	20-Feb-08 09:43 AM	

+="CN62945"	" MARINE QUALIFIED LABOUR HIRE "	="Department of Defence"	20-Feb-08	="Commercial marine craft"	19-Feb-08	30-Jul-08	33361.40	=""	="SKILLED ENGINEERING LTD"	20-Feb-08 09:45 AM	

+="CN62993"	"Polypropylene promotional satchels"	="Australian Electoral Commission"	20-Feb-08	="Bags"	26-Oct-07	20-Feb-08	32010.00	=""	="Slick Promotions"	20-Feb-08 02:31 PM	

+="CN63016"	"Pharmaceuticasl For ADF"	="Defence Materiel Organisation"	21-Feb-08	="Influenza virus vaccine"	20-Feb-08	02-Apr-08	33000.00	=""	="Solvay Pharmaceuticals Pty Ltd"	21-Feb-08 07:52 AM	

+="CN63057"	"Dairy Development - January 2008"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Computer services"	01-Jan-08	31-Jan-08	30212.60	=""	="Aladn System Solutions"	21-Feb-08 12:26 PM	

+="CN63074-A2"	" Provision of research outcomes for assessing operational feasibility of stereo video for use in the Southern bluefin Tuna Fishery Farm Sector. (In collaboration with the SeaGIS and the Australian Southern Bluefin Tuna Association) "	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Dec-07	01-May-08	37000.00	=""	="University of Western Australia"	21-Feb-08 12:28 PM	

+="CN63090"	"Data Capture and Validation services"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Insurance and retirement services"	01-Sep-07	30-Jun-08	34100.00	=""	="QLD Department of Primary Industries and Fisheries"	21-Feb-08 12:30 PM	

+="CN63099"	"NAVFAC Pearl Harbor - Port Charges"	="Department of Defence"	21-Feb-08	="Marine transport"	01-Jan-00	01-Jan-00	37827.35	=""	="NAVFAC HAWAII"	21-Feb-08 01:19 PM	

+="CN63134"	"DS-TAS"	="Department of Defence"	21-Feb-08	="Food and beverage industries"	29-Jan-08	29-Jan-08	32660.74	=""	="RICHARD FADER PTY LTD"	21-Feb-08 01:24 PM	

+="CN63208"	"BIS/SAP Agency Seperation Training"	="Office of the Australian Building and Construction Commissioner (ABCC)"	22-Feb-08	="Business administration services"	03-Dec-07	03-Dec-07	34000.00	=""	="DEPARTMENT OF EMPLOYMENT AND WORKPLACE RELATIONS"	22-Feb-08 09:41 AM	

+="CN63213-A1"	"Provision for Financial Consulting Services"	="Comsuper"	22-Feb-08	="Business and corporate management consultation services"	18-Feb-08	18-Mar-08	40000.00	=""	="Analyctic Group"	22-Feb-08 10:05 AM	

+="CN63216"	"Furniture Conservation Project"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	20-Dec-07	28-Mar-08	39600.00	="2008/00878"	="Conservation Works Pty Ltd"	22-Feb-08 10:16 AM	

+="CN63225"	"Provision and Installation of Bike Racks for Staff and Visitor Use"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Building and Construction and Maintenance Services"	06-Dec-07	30-Mar-08	37400.00	=""	="Picasso Builders Pty Ltd"	22-Feb-08 11:15 AM	

+="CN63244"	"Chairing Services for Conservation Project"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	20-Dec-07	23-May-08	39600.00	="2008/00879"	="Conservation Works Pty Ltd"	22-Feb-08 01:26 PM	

+="CN63280"	"GuyReels"	="Defence Materiel Organisation"	22-Feb-08	="Reel"	22-Feb-08	28-Apr-08	31031.00	=""	="Eylex Pty Ltd"	22-Feb-08 03:33 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val40000to80000.xls
@@ -1,1 +1,228 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61929"	"Development and Implementation of DVA Capability Framework"	="Department of Veterans' Affairs"	18-Feb-08	="Human resources services"	30-Apr-07	30-Jun-07	50000.00	=""	="Yellow Edge Pty Ltd"	18-Feb-08 10:30 AM	

+="CN61930"	"MOU for Cannon Hill, Queensland File Services premises"	="Department of Veterans' Affairs"	18-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-Jun-03	30-Jun-08	77717.00	=""	="National Archives of Australia"	18-Feb-08 10:30 AM	

+="CN61947"	" CRS Australia - 32 Horseshoe Bend Road, Gympie, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Jan-07	31-Dec-08	43056.00	=""	="Lynelle Mason"	18-Feb-08 11:46 AM	

+="CN61949"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 11:53 AM	

+="CN61952"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 12:00 PM	

+="CN61954"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 12:15 PM	

+="CN61957"	"PACAP Strategic Directions & Effectiveness Review - Peter Bazeley"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	30-Nov-07	64020.00	=""	="PETER BAZELEY DEVELOPMENT CONSULTING"	18-Feb-08 12:41 PM	

+="CN61959"	"Edwin Shanks - Policy Research and Institutional Development Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	10-May-07	30-Jun-09	62970.59	=""	="SHANKS, ROBERT EDWIN"	18-Feb-08 12:41 PM	

+="CN61961"	"Mekong Development Issues Conference"	="AusAid"	18-Feb-08	="Management advisory services"	09-May-07	31-Oct-07	55000.00	=""	="UNIVERSITY OF SYDNEY"	18-Feb-08 12:42 PM	

+="CN61962"	"Aceh Infrastructure Monitoring Team-Intermittent Support:ASSAI"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-May-07	30-Apr-08	40480.00	=""	="ASSAI PTY LTD"	18-Feb-08 12:42 PM	

+="CN61966"	"Rapid review of AusAID Media - by CARMA, Media Monitors"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	30-Sep-07	55000.00	=""	="MEDIA MONITORS PTY LTD"	18-Feb-08 12:42 PM	

+="CN61968"	"Reproductive Health in Emergencies Review"	="AusAid"	18-Feb-08	="Specialised educational services"	18-Jun-07	12-Oct-07	42350.00	=""	="SARAH DAWSON"	18-Feb-08 12:43 PM	

+="CN61970"	"Fiduciary Risk Assessment to inform the Poverty Reduction Support Credit 6-10"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jun-07	31-Oct-07	67963.47	=""	="DAI EUROPE LTD"	18-Feb-08 12:43 PM	

+="CN61974"	"Hilton Hotel, Cairns"	="AusAid"	18-Feb-08	="Hotels and lodging and meeting facilities"	14-Jun-07	30-Jun-08	71628.60	=""	=" Hilton Hotel Cairns"	18-Feb-08 12:43 PM	

+="CN61980"	"Mercer - Recruitment of Head of TCS"	="AusAid"	18-Feb-08	="Human resources services"	04-Jun-07	30-Sep-07	45100.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	18-Feb-08 12:44 PM	

+="CN61981"	"Economic Insights Pty Ltd - Pacific Performance Chapter"	="AusAid"	18-Feb-08	="Economics"	23-Jul-07	29-Feb-08	60445.00	=""	="ECONOMIC INSIGHTS PTY LTD"	18-Feb-08 12:44 PM	

+="CN61984"	"B Kerstan - Gender and Poverty Analysis in Papua"	="AusAid"	18-Feb-08	="Community and social services"	31-Jul-07	30-Nov-07	67408.60	=""	="KERSTAN, BIRGIT"	18-Feb-08 12:45 PM	

+="CN61996"	"Contract - Bennett"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jun-07	31-Dec-07	51315.00	=""	="BENNETT, CATHERINE"	18-Feb-08 12:46 PM	

+="CN61999"	"Team Leader - Appropriate Hydrological Network Improvement Project Independent Completion Report"	="AusAid"	18-Feb-08	="Community and social services"	22-Jul-07	30-Sep-07	57200.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 12:46 PM	

+="CN62000"	"Technical Expert - Appropriate Hydrological Network Improvement Project Independent Completion Report"	="AusAid"	18-Feb-08	="Community and social services"	22-Jul-07	30-Sep-07	46750.00	=""	="PETER MILLINGTON & ASSOCIATES PTY LTD"	18-Feb-08 12:47 PM	

+="CN62005"	"Preparation of a PEFA Public Financial Management Performance Report for Tonga"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	31-Dec-07	75600.00	=""	="DELOITTE TOUCHE TOHMATSU"	18-Feb-08 12:47 PM	

+="CN62006"	"Thomas Cook - contract for IADS re-design mission"	="AusAid"	18-Feb-08	="Specialised educational services"	02-Sep-07	31-Dec-07	45265.00	=""	="THOMS J. COOK"	18-Feb-08 12:47 PM	

+="CN62009"	"Prof Steven Schwartz - Macquarie Uni: Representation on University of the South Pacific Council"	="AusAid"	18-Feb-08	="Educational institutions"	01-Oct-07	31-Jan-12	77000.00	=""	="MACQUARIE UNIVERSITY"	18-Feb-08 12:48 PM	

+="CN62016"	"Wan Smolbag contract with Siula Bulu"	="AusAid"	18-Feb-08	="Disease prevention and control"	31-Jul-07	01-Dec-07	52280.00	=""	="WAN SMOL BAG THEATRE"	18-Feb-08 12:49 PM	

+="CN62017"	"Consultancy Services for the Review of 03-07 South Asia Regional Framework"	="AusAid"	18-Feb-08	="Management advisory services"	30-Jul-07	31-Oct-07	57427.74	=""	="CARTER, MICHAEL"	18-Feb-08 12:49 PM	

+="CN62019"	"Dr Paul Crawford"	="AusAid"	18-Feb-08	="Management advisory services"	16-Jul-07	31-Aug-07	41006.45	=""	="AID-IT! SOLUTIONS PTY LTD"	18-Feb-08 12:49 PM	

+="CN62032"	"2007-08 Quality Assurance Group - Trade Liberalisation"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-09	51207.44	=""	="DEVELOPMENT NETWORK AFRICA PTY LTD"	18-Feb-08 12:51 PM	

+="CN62033"	"2007-08 Quality Assurance Advisor - Democratisation Component"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-09	56120.84	=""	="KOSTER, JD"	18-Feb-08 12:51 PM	

+="CN62036"	"Alan Morris Contract"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	47300.00	=""	="MORRIS, ALAN GREGORY"	18-Feb-08 12:51 PM	

+="CN62044"	"Supply, freight and installation of office furniture - Lelei"	="AusAid"	18-Feb-08	="Office and desk accessories"	12-Jul-07	30-Nov-07	73119.90	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	18-Feb-08 12:53 PM	

+="CN62051"	"The Midwifery Service Delivery Mission in NTT"	="AusAid"	18-Feb-08	="Community and social services"	25-Aug-07	30-Apr-08	73098.46	=""	="HOHNEN, JANET"	18-Feb-08 12:53 PM	

+="CN62067"	"Transnational Crime & Security Paper"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	07-Dec-07	70050.00	=""	="WESLEY, MICHAEL"	18-Feb-08 12:56 PM	

+="CN62068"	"Corrections TAG"	="AusAid"	18-Feb-08	="General building construction"	03-Sep-07	03-Sep-08	44000.00	=""	="SMITH, PATRICK JAMES"	18-Feb-08 12:56 PM	

+="CN62070"	"Bangladesh Health Sector Appraisal/technical Advisory Services"	="AusAid"	18-Feb-08	="Management advisory services"	20-Jul-07	31-Dec-07	43450.00	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 12:56 PM	

+="CN62074"	"Democratic Governance Program Strategy Mission: Niall Johnston"	="AusAid"	18-Feb-08	="Business administration services"	27-Aug-07	30-Nov-07	63200.00	=""	="JOHNSTON, NIALL"	18-Feb-08 12:57 PM	

+="CN62080"	"Pacific Cluster Evaluation 2007 - AID-IT! Solutions"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	31-Dec-07	55863.50	=""	="AID-IT! SOLUTIONS PTY LTD"	18-Feb-08 12:57 PM	

+="CN62085"	"Independent Completion Report for HARAP - Debra Hartley"	="AusAid"	18-Feb-08	="Community and social services"	01-Aug-07	31-Oct-07	44368.79	=""	="HARTLEY, DEBRA JANE"	18-Feb-08 12:58 PM	

+="CN62087"	"Design Mission: Dr John Hamilton"	="AusAid"	18-Feb-08	="Comprehensive health services"	02-Sep-07	30-Apr-08	69707.00	=""	="HAMILTON, JOHN DAVIS"	18-Feb-08 12:58 PM	

+="CN62111"	"Krishna Hort_Deputy Team Leader_HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	26-Sep-07	20-May-08	77211.20	=""	="AUSTRALIAN INTERNATIONAL HEALTH INSTITUTE (THE UNIVERSITY OF MELBOURNE) LTD"	18-Feb-08 01:01 PM	

+="CN62116"	"Provision of An Independent Completion Report for the Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	68200.00	=""	="SUTTON INTERNATIONAL PROFESSIONAL SERVICES PTY LTD"	18-Feb-08 01:02 PM	

+="CN62118"	"Making A Difference: Practical Tools and Approaches for Capacity Building"	="AusAid"	18-Feb-08	="Human resources services"	24-Sep-07	20-Dec-07	74602.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:02 PM	

+="CN62123"	"PNG Democratic Governance Program Design - RDSM Consulting Pty Ltd"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	31-Dec-07	56322.20	=""	="RDSM CONSULTING PTY LTD"	18-Feb-08 01:03 PM	

+="CN62132"	"Specialist cabling/electrical and supervision"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	09-Oct-07	31-Dec-07	73040.00	=""	="MILLHOUSE ENTERPRISES PTY LTD"	18-Feb-08 01:04 PM	

+="CN62136"	"Education Sector Consultancy Sri Lanka"	="AusAid"	18-Feb-08	="Educational institutions"	15-Oct-07	31-Jan-08	50238.80	=""	="RAWLINSON, RALPH"	18-Feb-08 01:04 PM	

+="CN62138"	"UNIFEM Bangkok VAW Conference"	="AusAid"	18-Feb-08	="Specialised educational services"	01-Jul-07	30-Jun-08	40000.00	=""	="UNITED NATIONS FUND FOR WOMEN"	18-Feb-08 01:05 PM	

+="CN62145"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	12-Oct-07	74857.20	=""	="INNOVATIVE BUSINESS COMPUTING PTY LTD"	18-Feb-08 01:06 PM	

+="CN62146"	"Intensive Trial Advocacy Workshop"	="AusAid"	18-Feb-08	="Travel facilitation"	18-Oct-07	19-Dec-07	42000.00	=""	="AUSTRALIAN BAR ASSOCIATION"	18-Feb-08 01:06 PM	

+="CN62147"	"JTA International Pty Ltd"	="AusAid"	18-Feb-08	="Comprehensive health services"	12-Nov-07	31-Jan-08	66935.00	=""	="JTA INTERNATIONAL PTY LTD"	18-Feb-08 01:06 PM	

+="CN62150"	"Contract - Pat Duggan - Disaster Management Strategy Development mission"	="AusAid"	18-Feb-08	="Community and social services"	30-Nov-07	28-Feb-08	50600.00	=""	="DUGGAN, PATRICIA MARIE"	18-Feb-08 01:06 PM	

+="CN62154"	"Pacific Infrastructure 4 national budgets (Kiribati, Nauru, Samoa, Vanuatu) desk study"	="AusAid"	18-Feb-08	="Economics"	08-Oct-07	31-Dec-07	43318.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62155"	"Inequities and Adjustment Costs of Regional Economic Integration"	="AusAid"	18-Feb-08	="Political systems and institutions"	09-Oct-07	31-Jan-08	75748.20	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62158"	"Bougainville Strategy Review - Robert Harden"	="AusAid"	18-Feb-08	="Economics"	21-Oct-07	30-Nov-07	41716.40	=""	="FOCUS ECONOMICS PTY LTD"	18-Feb-08 01:08 PM	

+="CN62161"	"Trade Analysis and Reform Project - Mid-Term Review: M&E Specialist"	="AusAid"	18-Feb-08	="Trade policy and services"	29-Oct-07	14-Dec-07	59400.00	=""	="NEWSOUTH GLOBAL PTY LIMITED"	18-Feb-08 01:08 PM	

+="CN62167"	"Review of AIPRD Programs - Catherine Deane"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	01-Nov-07	31-Dec-07	41676.80	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:09 PM	

+="CN62163"	"Provision for Information technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:09 PM	

+="CN62175"	"SADI Planning Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	65467.60	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62181"	"Philippines Australia Human Resource Development Facility (PAHRDF) - Team Leader for Strategic Review (September 2007)"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	31-Oct-07	57200.00	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62183"	"East Timor Vocational Education Program Design"	="AusAid"	18-Feb-08	="Vocational training"	01-Jun-07	01-Sep-07	52570.10	=""	="KAYE SCHOFIELD & ASSOCIATES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62184"	"Review team Ms Wahib"	="AusAid"	18-Feb-08	="Educational institutions"	13-Aug-07	30-Oct-07	57822.60	=""	="ACCESS MACQUARIE LTD"	18-Feb-08 01:11 PM	

+="CN62185"	"HRD Plan- Carolyn Marsh"	="AusAid"	18-Feb-08	="Educational institutions"	14-Aug-07	17-Oct-07	60177.70	=""	="MDG PTY LTD"	18-Feb-08 01:11 PM	

+="CN62191"	"Capacity Building for KEMIS"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	40503.10	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62192"	"Training support for KEMIS staff"	="AusAid"	18-Feb-08	="Specialised educational services"	02-Oct-07	30-Nov-07	40503.10	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:13 PM	

+="CN62194"	"Independent Completion Report"	="AusAid"	18-Feb-08	="Management advisory services"	25-Nov-07	31-May-08	74294.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES PTY LTD"	18-Feb-08 01:13 PM	

+="CN62195"	"SADI Supervision Mission"	="AusAid"	18-Feb-08	="Management advisory services"	19-Aug-07	12-Oct-07	40438.20	=""	="LENGANO PTY LTD"	18-Feb-08 01:13 PM	

+="CN62196"	"Mozambique - ICSAS ICR - Consultant (K Detto)"	="AusAid"	18-Feb-08	="Educational institutions"	19-Oct-07	31-Dec-07	43441.20	=""	="LENGANO PTY LTD"	18-Feb-08 01:13 PM	

+="CN62197"	"Scribe Services for Australian Develoment Research Awards 2007 Funding Round"	="AusAid"	18-Feb-08	="Business administration services"	12-Aug-07	31-Dec-07	60500.00	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:13 PM	

+="CN62199"	"Honiara Country Office Organisational Review"	="AusAid"	18-Feb-08	="Management advisory services"	25-Sep-07	31-Dec-07	54445.30	=""	="THE WRIGHT CONSULTANCY (QLD) PTY LTD"	18-Feb-08 01:14 PM	

+="CN62202"	"David Mitchell - Disaster Risk Management Specialist - QNDMP ICR"	="AusAid"	18-Feb-08	="Environmental management"	17-Oct-07	31-Mar-08	41041.00	=""	="GHD PTY LTD"	18-Feb-08 01:14 PM	

+="CN62210"	"Cross Cultural Awareness Training Feb to Dec 2007"	="AusAid"	18-Feb-08	="Vocational training"	01-Feb-07	15-Dec-07	45965.70	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62211"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	08-Jan-07	29-Jun-07	44627.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:16 PM	

+="CN62221"	"Review of the monitoring and evaluation components of the draft IMR framework and NGOs projects designs under PASHIP"	="AusAid"	18-Feb-08	="Disease prevention and control"	06-Aug-07	31-Mar-08	50454.80	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:17 PM	

+="CN62225"	"Torres Strait Treaty Zone Health Partnership - Review Team Leader"	="AusAid"	18-Feb-08	="Disease prevention and control"	01-Oct-07	31-Dec-07	48983.00	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:17 PM	

+="CN62226"	"Engaging Gillian Biscoe-MTR for THSSP"	="AusAid"	18-Feb-08	="Medical practice"	14-Jul-07	31-Aug-07	74433.87	=""	="BISCOE, GILLIAN"	18-Feb-08 01:17 PM	

+="CN62228"	"Provision of An Independent Completion Report for the Asia Regional HIV/AIDS Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	30-Nov-07	68159.38	=""	="BISCOE, GILLIAN"	18-Feb-08 01:18 PM	

+="CN62232"	"Vietnam-Australia ADS Pre-Departure Project ADS Support"	="AusAid"	18-Feb-08	="Business administration services"	19-May-03	18-Jul-08	78731.40	=""	="SINCLAIR KNIGHT MERZ PTY LTD"	18-Feb-08 01:18 PM	

+="CN62250"	"Collaboration of Agricultural and Rural Development Viet Nam"	="AusAid"	18-Feb-08	="Business administration services"	30-Mar-04	30-Mar-10	75202.60	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:20 PM	

+="CN62252"	"AusAID Rapid Response Team Health Support Program"	="AusAid"	18-Feb-08	="Medical practice"	01-Sep-04	30-Sep-08	79206.19	=""	="HEALTH SERVICES AUSTRALIA"	18-Feb-08 01:21 PM	

+="CN62255"	"M&E training consultant Mike Crooke"	="AusAid"	18-Feb-08	="Management advisory services"	21-Oct-07	20-Feb-08	49500.00	=""	="TRANSFORMATION SYSTEMS AUSTRALIA PTY LTD"	18-Feb-08 01:21 PM	

+="CN62259"	"Evlaution of Three Environment Projects in China- Second Team Member Ian Teese"	="AusAid"	18-Feb-08	="Community and social services"	21-Jun-07	31-Dec-07	77000.00	=""	="WORLD WIDE PROJECT MANAGEMENT SERVICES"	18-Feb-08 01:22 PM	

+="CN62265"	"AMENCA 2 Design inputs"	="AusAid"	18-Feb-08	="Management advisory services"	15-Jun-07	30-Jan-08	57736.80	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:23 PM	

+="CN62270"	"Service Order - M&E specialist for GPF Review"	="AusAid"	18-Feb-08	="Public administration and finance services"	01-Oct-07	30-Jun-08	55000.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62261"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:23 PM	

+="CN62272"	"Andrew Cornish - Evaluation Specialist - QNDMP ICR"	="AusAid"	18-Feb-08	="Environmental management"	17-Oct-07	29-Feb-08	41456.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:24 PM	

+="CN62291"	"Focus magazine Vol.22. No. 3"	="AusAid"	18-Feb-08	="Printed media"	01-Jul-07	10-Sep-07	40328.20	=""	="PIRION PTY LTD"	18-Feb-08 01:26 PM	

+="CN62301"	"BEAM Review Islamic Education Adviser (Karyn Docking) 07-08"	="AusAid"	18-Feb-08	="Management advisory services"	15-Sep-07	31-Oct-07	56908.50	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62302"	"Design Study for the Australia Indonesia School e-Exchange Program"	="AusAid"	18-Feb-08	="Management advisory services"	17-Sep-07	30-Apr-08	71695.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62307"	"Incentive Fund Phase III Design Mission - Keith Lingard"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	30-Apr-08	46381.50	=""	="STANTONS INTERNATIONAL PTY LTD"	18-Feb-08 01:29 PM	

+="CN62310"	"Audit Services for PNG Institute Medical Research Support Program Phase 2"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-07	31-Oct-08	58652.00	=""	="BDO KENDALLS (VIC) PTY LTD"	18-Feb-08 01:29 PM	

+="CN62312"	"2007 PNG PRMP - Facilitation Consultant - Duesburys Nexia"	="AusAid"	18-Feb-08	="Management advisory services"	10-Sep-07	05-Oct-07	59928.00	=""	="JOWEE TRUST & LISMAR TRUST & MILOJO TRUST & SMERGI TRUST & THE TRUSTEE FOR SCOTT FAMILY TRUST T/A DEUSBURYS"	18-Feb-08 01:29 PM	

+="CN62316"	"Services for RAMSI Security Officers"	="AusAid"	18-Feb-08	="Business administration services"	03-May-07	31-Dec-07	59798.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62327"	"Tasking Note - Program Advisory Office Costs"	="AusAid"	18-Feb-08	="Utilities"	22-Aug-05	30-Sep-09	55000.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62330"	"Provision of services for the production of FOCUS magazine"	="AusAid"	18-Feb-08	="Printed media"	14-Jun-05	31-Jan-08	55000.00	=""	="GIBSON, PATRICIA MARGARET MARY"	18-Feb-08 01:32 PM	

+="CN62343"	"Mid Term Review for Yogya-Central Java CAP: Mike Freeman"	="AusAid"	18-Feb-08	="Community and social services"	15-Aug-07	05-Oct-07	45425.60	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62345"	"AIPRD Asset Mapping Design Specialist - Team Leader"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	23-Oct-07	31-Dec-07	61400.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62350"	"Services Order Heather Wallace"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	31-Dec-07	53282.10	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:34 PM	

+="CN62353"	"Program Monitoring Group for Timor Teste Police Development Program - John McFarlane"	="AusAid"	18-Feb-08	="Management advisory services"	01-Oct-05	30-Jun-08	57221.07	=""	="AJ McFARLANE & ASSOC. PTY LTD"	18-Feb-08 01:35 PM	

+="CN62367"	"Making a Difference Courses Oct 07 - Dec 07. Robyn Renneberg."	="AusAid"	18-Feb-08	="Management advisory services"	23-Oct-07	24-Dec-07	45980.00	=""	="ELLIOTT STREET CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62369"	"Service Order No.37052/7 for AusAID Capacity Building Workshop September to December 2007"	="AusAid"	18-Feb-08	="Vocational training"	24-Sep-07	31-Dec-07	75410.00	=""	="MORGAN HUNTER CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62371"	"Services Order - Kaye Schofield - ICR PMCF and Pacific Media Design"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Jun-08	66308.00	=""	="SCHOFIELD, KAYE"	18-Feb-08 01:37 PM	

+="CN62373"	"Services Order Peter Deacon (Seaview Montville Trust) for ICR ERA"	="AusAid"	18-Feb-08	="Educational facilities"	01-Sep-07	12-Nov-07	61989.13	=""	="THE TRUSTEE FOR TRUST -SEAVIEW MONTVILLE T/A TRUST -SEAVIEW MONTVILLE"	18-Feb-08 01:38 PM	

+="CN62378"	"Making a Difference Courses Oct 07 - Dec 07 - Sue Emmot"	="AusAid"	18-Feb-08	="Management advisory services"	22-Oct-07	24-Dec-07	48510.00	=""	="EMMOTT, SUE"	18-Feb-08 01:38 PM	

+="CN62382"	"Making a Difference Aug-Sept 2007 Michael Prince"	="AusAid"	18-Feb-08	="Management advisory services"	24-Aug-07	17-Sep-07	40865.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:39 PM	

+="CN62383"	"Making A Diffrence Courses Oct 07 - Dec 07 - Michael Prince"	="AusAid"	18-Feb-08	="Management advisory services"	21-Oct-07	24-Dec-07	74250.00	=""	="THE WINDING STAIRCASE PTY LTD"	18-Feb-08 01:39 PM	

+="CN62397"	"Jens Lauring-Knudsen's contract"	="AusAid"	18-Feb-08	="Crop production and management and protection"	01-Oct-05	30-Sep-08	45008.45	=""	="LAURING-KNUDSEN, JENS"	18-Feb-08 01:41 PM	

+="CN62410"	"Provision of Legal Services"	="AusAid"	18-Feb-08	="Legal services"	04-Jul-06	30-Jun-08	40295.07	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	18-Feb-08 01:43 PM	

+="CN62411"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	21-Aug-06	30-Sep-07	77880.00	=""	="CONSOLVE PTY LTD"	18-Feb-08 01:43 PM	

+="CN62433"	"Vocational Training and Employment Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	23-Feb-08	66846.86	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62442"	"Dr. Fred Merchant"	="AusAid"	18-Feb-08	="Medical practice"	27-Sep-07	30-Nov-07	52152.05	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62451"	"Ray Marsden Contract"	="AusAid"	18-Feb-08	="Alternative educational systems"	02-Oct-06	31-Mar-08	73988.59	=""	="NEWMAN, NEVILLE R T/A RAY WHITE MARSDEN"	18-Feb-08 01:49 PM	

+="CN62453"	"Lease for Program Manager's Residence"	="AusAid"	18-Feb-08	="Real estate services"	15-Dec-06	31-Dec-07	67997.42	=""	="ISLAND PROPERTY"	18-Feb-08 01:49 PM	

+="CN62456"	"Aceh Infrastructure Monitoring Team - Team Leader - Andrew Whillas"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	15-Nov-06	13-May-08	47040.00	=""	="WHILLAS, ANDREW"	18-Feb-08 01:49 PM	

+="CN62458"	"Yogyakarta - Jateng Community Assistance Program - Deputy / Liaison Officer"	="AusAid"	18-Feb-08	="Management advisory services"	30-Oct-06	04-Sep-08	57073.76	=""	="EJ HERI WAHYUDI"	18-Feb-08 01:49 PM	

+="CN62459"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-Jan-07	30-Jun-08	79200.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:50 PM	

+="CN62466"	"ESSP Mission - TVET Design Input"	="AusAid"	18-Feb-08	="Vocational training"	15-Jan-07	01-Jun-08	58947.01	=""	="MCNAMARA, LUKE ANTHONY T/A LUKE MCNAMARA AND ASSOCIATES"	18-Feb-08 01:51 PM	

+="CN62468"	"Design Advisor Mark Minford"	="AusAid"	18-Feb-08	="Management advisory services"	20-Feb-07	30-Sep-07	52494.00	=""	="MINFORD, MARK LESLIE MACKAY"	18-Feb-08 01:51 PM	

+="CN62477"	"Bougainville Strategy Review - Anthony Regan"	="AusAid"	18-Feb-08	="Legal services"	21-Oct-07	30-Nov-07	41951.25	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:52 PM	

+="CN62476"	"Provision for Administrative Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	07-Mar-07	07-Sep-07	49170.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:52 PM	

+="CN62483"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	23-Apr-07	14-Oct-07	76315.80	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62485"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-May-07	30-Nov-07	42284.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62492"	"The Forum Group"	="AusAid"	18-Feb-08	="Business administration services"	01-Jun-07	30-Jun-08	44008.02	=""	="THE FORUM GROUP PTY LTD"	18-Feb-08 01:54 PM	

+="CN62495"	"PAHRDF Review - Design Specialist - Ms Catherine Bennett"	="AusAid"	18-Feb-08	="Management advisory services"	28-Aug-07	31-Oct-07	42726.40	=""	="BENNETT, CATHERINE"	18-Feb-08 01:54 PM	

+="CN62503"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	22-Jan-07	29-Jun-07	40164.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:57 PM	

+="CN62505"	"vehicle windows"	="Department of Defence"	18-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Feb-08	15-Apr-08	66731.53	=""	="Thales Australia"	18-Feb-08 02:43 PM	

+="CN62506-A1"	"Lease: 1201/31 Spring Street, Melbourne"	="Australian Institute of Family Studies"	18-Feb-08	="Lease and rental of property or building"	01-Sep-04	31-Jan-08	74043.00	=""	="Leasing Melbourne"	18-Feb-08 03:04 PM	

+="CN62514"	"Qld Capricorn Coast - Large Scale Mapping for Emergency Management, 75% acceptance payment - Gladstone."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	09-Jan-08	30-Jun-08	67452.00	="2006/3933"	="Photo Mapping Services Pty Ltd"	18-Feb-08 03:53 PM	

+="CN62515"	"Qld Murray Darling Basin - Large Scale Mapping for Emergency Management. Final Delivery acceptance - 75%."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	09-Jan-08	30-Jun-08	43241.25	="2006/3933"	="DSM Geodata"	18-Feb-08 03:54 PM	

+="CN62524"	"G2149 Provision for Supply of Contract Staff 2007/08  Geppert"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	14-Jan-08	20-Mar-08	58052.50	=""	="GMT Canberra Pty Ltd"	18-Feb-08 03:55 PM	

+="CN62531"	"RP00911 transcription of tapes consisting of 702 x 8mm tapes."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	15-Jan-08	30-Jun-08	62876.00	="2006/3933"	="CGGVeritas (Guardian Data Seismic)"	18-Feb-08 03:56 PM	

+="CN62534"	"Provision for Geoplus Training Costs"	="Geoscience Australia"	18-Feb-08	="Business and corporate management consultation services"	16-Jan-08	31-Jan-08	75000.00	=""	="Joint Strategies Pty Ltd"	18-Feb-08 03:56 PM	

+="CN62536"	"1,000,000 Document Geoscience Australia wide Enterprise Software Perpetual Licence"	="Geoscience Australia"	18-Feb-08	="Software"	17-Jan-08	14-Dec-10	66000.00	=""	="Funnelback Pty Ltd"	18-Feb-08 03:56 PM	

+="CN62539"	"Signed contract - Seismic data loading contract."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	30-Apr-08	49500.00	=""	="Cohesion Geodata Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62541"	"Proposal for Feasability Study"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	18-Jan-08	31-Jan-08	49999.99	=""	="Oakton AA Services Pty Ltd"	18-Feb-08 03:57 PM	

+="CN62547"	"Hardware and firmware for 20 GNSS receivers"	="Geoscience Australia"	18-Feb-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	30-Jun-08	70400.00	=""	="CR Kennedy & Company Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62549"	"First Quarter License Fees for the provision of satellite Data, the supply of the Product Generation system and service - 1st January to 31 March 2008."	="Geoscience Australia"	18-Feb-08	="Telecommunications media services"	24-Jan-08	30-Jun-08	76819.56	=""	="Antrix Corporation Limited"	18-Feb-08 03:58 PM	

+="CN62552-A3"	"Provision for Facilitation for Training Workshops"	="Department of Immigration and Citizenship"	18-Feb-08	="Employee education"	13-Feb-08	31-Oct-08	55000.00	=""	="M Andrew & G Wilson"	18-Feb-08 03:59 PM	

+="CN62578"	"Procurement of:  CAMERA SET,TELEVISION"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	06-Jul-08	52880.00	=""	="SITEP AUSTRALIA Pty Ltd"	18-Feb-08 05:11 PM	

+="CN62582"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	10-Jan-08	08-Jan-09	42703.66	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62583"	"Procurement of:  ANTENNA"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	12-Jun-08	72678.96	=""	="THALES AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62587"	"Procurement of:  VALVE,REGULATING,SYSTEM PRESSURE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	17-Apr-08	43666.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62594"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	16-Jan-08	15-Aug-08	76536.09	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62601"	"Procurement of:  HELMET,CRASH"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	17-Jan-08	17-Apr-08	64975.00	=""	="DEFCON TECHNOLOGIES Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62605"	"Procurement of:  HELMET,CRASH"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	22-Apr-08	73450.00	=""	="DEFCON TECHNOLOGIES Pty Ltd"	18-Feb-08 05:14 PM	

+="CN62608"	"Procurement of:  TERMINAL BOX"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	16-Apr-08	72250.00	=""	="AIR CARE TECHNOLOGY Ltd"	18-Feb-08 05:15 PM	

+="CN62609"	"Procurement of:  ANTENNA"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	04-May-08	53880.00	=""	="SONARTECH ATLAS"	18-Feb-08 05:15 PM	

+="CN62612"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	16-Apr-08	56500.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	18-Feb-08 05:15 PM	

+="CN62614"	"Procurement of:  LEVER ASSEMBLY,TRAVERSE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	29-Sep-08	40906.40	=""	="BEAK RAST ENGINEERING"	18-Feb-08 05:15 PM	

+="CN62621"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  GLASS,PLATE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	30-Jan-08	16-Jun-08	57367.92	=""	="TENIX DEFENCE Pty Ltd"	18-Feb-08 05:16 PM	

+="CN62631"	"Procurement of:  BLADDER,ACCUMULATOR,HYDRAULIC;  BLADDER,ACCUMULATOR,HYDRAULIC;  GASKET AND"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	12-Jun-08	65944.68	=""	="ASC Pty Ltd"	18-Feb-08 05:18 PM	

+="CN62638"	"Procurement of:  MANIFOLD ASSEMBLY,HYDRAULIC;  MANIFOLD ASSEMBLY,HYDRAULIC"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	22-May-08	56104.29	=""	="ASC Pty Ltd"	18-Feb-08 05:19 PM	

+="CN62648"	"coin packs"	="Royal Australian Mint"	19-Feb-08	="Mint coin collections"	24-Jan-08	25-Jan-08	59785.00	=""	="AUSTRALIA POST"	19-Feb-08 08:51 AM	

+="CN62667"	"consultancy services"	="Royal Australian Mint"	19-Feb-08	="Information technology consultation services"	30-Jan-08	30-Jan-08	46062.50	=""	="LANGE CONSULTING AND SOFTWARE"	19-Feb-08 09:45 AM	

+="CN62673"	"COMMUNICATIONS"	="Department of Human Services"	19-Feb-08	="Components for information technology or broadcasting or telecommunications"	30-Jun-08	30-Jun-08	60000.00	=""	="TELSTRA"	19-Feb-08 10:01 AM	

+="CN62704"	"TIE DOWN, CARGO, AIRCRAFT 5000 LB"	="Defence Materiel Organisation"	19-Feb-08	="Rope and chain and cable and wire and strap"	19-Dec-07	31-Mar-08	64000.00	=""	="ANCRA AUSTRALIA PTY LTD"	19-Feb-08 12:08 PM	

+="CN62705"	"Qty 300 Tyre Pneumatic Vehicular, 7.50R16LT Ply Steel Trek."	="Defence Materiel Organisation"	19-Feb-08	="Heavy truck tyres"	19-Feb-08	07-Mar-08	73250.10	=""	="South Pacific Tyres"	19-Feb-08 12:10 PM	

+="CN62709"	"Facilitation Services"	="Australian Taxation Office"	19-Feb-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	30-Mar-08	56185.00	=""	="Fyusion Asia Pacific P/L"	19-Feb-08 12:39 PM	

+="CN62729-A2"	"ABS Agreement No 6"	="Productivity Commission"	19-Feb-08	="Data services"	31-Oct-07	28-Feb-08	40000.00	=""	="ABS"	19-Feb-08 02:57 PM	

+="CN62741"	"Courier/supply service"	="Australian Electoral Commission"	19-Feb-08	="Postal and small parcel and courier services"	01-Sep-02	30-Aug-08	55000.00	=""	="Metrostate Security Courier Pty Ltd"	19-Feb-08 03:25 PM	

+="CN62742"	"COURT SHOES, BLACK"	="Defence Materiel Organisation"	19-Feb-08	="Womens shoes"	13-Feb-08	30-May-08	69963.19	=""	="LYMINGTON PACIFIC"	19-Feb-08 03:41 PM	

+="CN62743-A1"	"Provision of services in relation to Help Desk Analysis activities"	="Australian Federal Police"	19-Feb-08	="Technical support or help desk services"	27-Feb-07	31-Jul-07	46173.60	=""	="Infosys Solutions Pty Ltd"	19-Feb-08 03:42 PM	

+="CN62746"	"07/2505 - Training & Storage Fitout (CPE004445)"	="Australian Customs and Border Protection Service"	19-Feb-08	="Building and Construction and Maintenance Services"	25-Jan-08	30-Jun-08	62943.10	=""	="Semrau Constructions"	19-Feb-08 03:53 PM	

+="CN62781"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	55112.63	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62782"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	50833.75	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62783"	"Lease of Property in NSW"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	55109.63	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62784"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	50833.75	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62785"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	50833.75	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62786"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-10	57426.56	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62787"	"Lease of Property in SA"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Aug-07	31-Jul-10	51781.85	=""	="Civic Centre Syndicate"	19-Feb-08 04:02 PM	

+="CN62788"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-11	73541.33	=""	="Motorola Smartnet"	19-Feb-08 04:02 PM	

+="CN62789"	"Lease of Property in VIC"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	09-Dec-07	08-Dec-09	64716.48	=""	="G & F Bof"	19-Feb-08 04:03 PM	

+="CN62793"	"Lease of Property in NT"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Nov-07	31-Oct-17	76101.00	=""	="Braodcast Australia"	19-Feb-08 04:03 PM	

+="CN62812-A1"	"06/1677 - Chartered Physicist and Consulting Engineer"	="Australian Customs and Border Protection Service"	19-Feb-08	="Business and corporate management consultation services"	01-Jul-07	30-Jun-10	60000.00	=""	="Consultant Physicist and Engineer"	19-Feb-08 04:05 PM	

+="CN62817"	"CPO019429 - Recruitment Services"	="Australian Customs and Border Protection Service"	19-Feb-08	="Human resources services"	21-Feb-08	20-May-08	43263.00	=""	="IPA Personnel Pty Ltd"	19-Feb-08 04:06 PM	

+="CN62818"	"CPO019428 - Testing Services"	="Australian Customs and Border Protection Service"	19-Feb-08	="Comprehensive health services"	30-Nov-07	29-Feb-08	44603.20	=""	="Australian Institute of Forensic Psychology"	19-Feb-08 04:06 PM	

+="CN62826"	"CPO019617 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	11-Feb-08	30-Jun-08	55473.70	=""	="Rosewarne Installations Service"	19-Feb-08 04:07 PM	

+="CN62827"	"CPO019633 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	30-Jun-08	67848.80	=""	="Intelligent Surveillance"	19-Feb-08 04:07 PM	

+="CN62842"	"07/2449 - Airconditioning - 0773-2154 - Property Panel South Australia - 05/0773"	="Australian Customs and Border Protection Service"	19-Feb-08	="Project management"	02-Jan-08	13-Jun-08	49775.00	=""	="GHD Pty Ltd"	19-Feb-08 04:40 PM	

+="CN62843-A1"	"07/2262 - Consultancy Services - 1599-1938 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	19-Feb-08	="Business and corporate management consultation services"	06-Feb-08	25-Jun-08	50000.00	="06/1599"	="Booz Allen Hamilton"	19-Feb-08 04:49 PM	

+="CN62844"	"SHOES WOMENS. FULL GRAIN LEATHER. WHITE."	="Defence Materiel Organisation"	19-Feb-08	="Womens shoes"	12-Feb-08	30-May-08	60548.40	=""	="LYMINGTON PACIFIC"	19-Feb-08 04:49 PM	

+="CN62847"	"Employee Assistance Program  C07/12378"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Human resources services"	01-Jul-05	30-Jun-08	43791.92	=""	="I P S WORLDWIDE"	19-Feb-08 04:49 PM	

+="CN62849"	"Contractor - For the Period 3/12/07 to 7/3/08 D"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer services"	03-Dec-07	31-Mar-08	57120.00	=""	="PEOPLEBANK"	19-Feb-08 04:50 PM	

+="CN62852"	"Provision of financial services  C07/08410"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Accounting and auditing"	07-Jan-07	30-Jun-08	66990.00	=""	="WALTER and TURNBULL"	19-Feb-08 04:50 PM	

+="CN62853"	"Dell Optiplex 755 Small Form Factor Computer and Dell 630 La"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer Equipment and Accessories"	08-Feb-08	29-Feb-08	50479.00	=""	="DELL AUSTRALIA"	19-Feb-08 04:50 PM	

+="CN62861"	"wORKSHOPS FOR sILK aUTOMATION pROCESSES aURION uPGRADE C07/0"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Legal services"	12-Feb-08	29-Feb-08	53346.70	=""	="MALLESONS STEPHEN JAQUES"	19-Feb-08 04:51 PM	

+="CN62866"	"Accommodation and Conference Space Crowne Plaza 21-24oct08 12D"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Legal services"	12-Oct-08	28-Oct-08	59597.78	=""	="MALLESONS STEPHEN JAQUES"	19-Feb-08 04:52 PM	

+="CN62869"	"IBM X Series Servers for the NMI Refresh Project C05/06800"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Computer Equipment and Accessories"	13-Feb-08	29-Feb-08	72126.52	=""	="FUJITSU AUSTRALIA LIMITED"	19-Feb-08 04:52 PM	

+="CN62871"	"Titrator with Autosampler  NA"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Laboratory and scientific equipment"	14-Feb-08	28-Mar-08	78914.00	=""	="JOHN MORRIS SCIENTIFIC P/L"	19-Feb-08 04:53 PM	

+="CN62875"	"Public Awareness survey of community attitudes to Nanotechno"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	30-Jun-08	57475.00	=""	="MARKET ATTITUDE RESEARCH SERVICES P/L"	19-Feb-08 04:53 PM	

+="CN62882"	"Provision of Maintenance and Support For the NMI SampleManga"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Software"	21-Jan-08	29-Feb-08	79965.60	=""	="THERMO INFORMATICS ASIA PACIFIC PTY LTD"	19-Feb-08 04:54 PM	

+="CN62889"	"Undertake Market Research on the business.gov.au Website C07"	="Department of Innovation Industry Science and Research"	19-Feb-08	="Management advisory services"	23-Jan-08	31-Mar-08	59921.00	=""	="ORIMA RESEARCH PTY LTD"	19-Feb-08 04:55 PM	

+="CN62904"	"SHOES WOMENS BLACK. FULL GRAIN LEATHER."	="Defence Materiel Organisation"	19-Feb-08	="Womens shoes"	14-Feb-08	30-May-08	59172.30	=""	="LYMINGTON PACIFIC"	19-Feb-08 05:17 PM	

+="CN62909-A1"	"08/2562 - Business Services - 1599-2004 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	20-Feb-08	="Business and corporate management consultation services"	04-Feb-08	31-Mar-08	75000.00	="06/1599"	="2nd Road Pty Ltd"	20-Feb-08 09:07 AM	

+="CN62915"	"Provision of ICT services"	="Department of Parliamentary Services"	20-Feb-08	="Information Technology Broadcasting and Telecommunications"	04-Feb-08	30-Jun-08	44000.00	=""	="Int Education & Employment Links PL"	20-Feb-08 09:20 AM	

+="CN62934"	"Provision of warehousing services (DPS08017)"	="Department of Parliamentary Services"	20-Feb-08	="Warehouses"	01-Feb-08	05-Jan-09	60500.00	=""	="1st Fleet Warehousing & Dist"	20-Feb-08 09:22 AM	

+="CN62948"	"Purchase of qty 5 Panel Assy Misc Sw for use on Black Hawk Helicopters. "	="Defence Materiel Organisation"	20-Feb-08	="Military rotary wing aircraft"	20-Feb-08	04-Feb-09	44047.91	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	20-Feb-08 09:57 AM	

+="CN62951"	"REPAIR AND OH OF BLACK HAWK TAIL ROTOR BLADE."	="Defence Materiel Organisation"	20-Feb-08	="Military rotary wing aircraft"	20-Feb-08	30-Jun-08	45344.37	=""	="SAAL"	20-Feb-08 10:03 AM	

+="CN62957"	"Supply and lay anthracite, slate and tile to ramp"	="Questacon"	20-Feb-08	="Stone or tile flooring"	06-Dec-07	06-Feb-08	42120.00	=""	="Nu-Lay Flooring Services"	20-Feb-08 10:33 AM	

+="CN62962"	"Provision for Security Controls on the IBMi Series Hardware"	="Comsuper"	20-Feb-08	="Software"	19-Feb-08	20-Feb-11	76780.00	=""	="Hyro Australia"	20-Feb-08 10:49 AM	

+="CN62963"	"REPAIR AND OH OF BLACK HAWK SWASHPLATE ASSY."	="Defence Materiel Organisation"	20-Feb-08	="Military rotary wing aircraft"	20-Feb-08	30-Jun-08	65353.60	=""	="SAAL"	20-Feb-08 10:53 AM	

+="CN62967"	"Exhibition Agreement"	="Questacon"	20-Feb-08	="Exhibitions"	22-Nov-07	20-Jun-08	71395.26	=""	="Currumbin Wildlife Sanctuary"	20-Feb-08 11:20 AM	

+="CN62988-A2"	"Services relating to providing coordination and administrative support to AFP Information Communications Technology Projects."	="Australian Federal Police"	20-Feb-08	="Management and Business Professionals and Administrative Services"	29-Jan-07	31-Jul-07	67084.05	=""	="Hubnet Global Resources Pty Ltd"	20-Feb-08 02:13 PM	

+="CN63001"	" Rotor, Tubine, Aircraft Gas Turbine  2840/010893950 "	="Defence Materiel Organisation"	20-Feb-08	="Military transport aircraft"	19-Feb-08	19-May-08	41152.50	=""	="Qantas Defence Services"	20-Feb-08 03:01 PM	

+="CN63003"	" ROTOR, TURBINE, AIRCRAFT GAS TURBINE  2840/010893950 "	="Defence Materiel Organisation"	20-Feb-08	="Military transport aircraft"	19-Feb-08	19-May-08	41152.50	=""	="Qantas Defence Services"	20-Feb-08 03:14 PM	

+="CN63015"	" STANDOFF, THREADED, SPACING TWO LAND RAMP TIE ROD COUPLER STEEL, BLACK FINISH, 140MM LG X 20MM DIA  TOOL BOX, PORTABLE HINDER LID W/TWO LATCHES, HAND TOOL SET, FMB 51M  SOCKET WRENCH  SLING, MULTIPLE LEG WIRE ROPE, 4 LEG, HOOK ATTACHMENT ONE END, RING LOCATION OPPOSITE END, HANDTOOL SET, FMB 51M  GAUGE, PIN FORMS PART OF THE TEST SET EQUIPMENT FMB, 51M  BRACING MEMBER, BRIDGING FOOTWALK BEARER ASSEMBLY, FABRICATED, STEEL, GALVANISED, 6FT LONG, FOOTWALK SET, FMB 51M  TUBE ASSEMBLY, SUPPORT STRUT  BOLT, MACHINE POST, STEEL, HEX HD, 12.7MM DIA, 101.6MM LG, FOOTWALK SET, FMB 51M  SPACER, PLATE JACKING GRILLAGE, STEEL, GALVANISED, 648MM SQ, 10MM THK  SPACER, PLATE BACKER JACKING POST, STEEL, GALVANISED, 254MM LG, 51MM W, 6MM THK  ROD, CONTINUOUS THREAD RAMP TIE, STEEL, BLACK FINISH, 19MM DIA, 4570MM LG  TUBE ASSEMBLY, METAL ABUTMENT ASSY, STEEL, GALVANISED, 1524MM LG, 127MM SQ, 8 HOLES  RAKER SIDE BRACE, CHANNEL SECTION, STEEL, GALVANISED, TRANSOM TO PANEL (AB701), FMB, 51M  GRILLAGE, JACKING STEEL, FABRICATED, GALVANISED, SQUARE TUBING W/STEEL TOP PLATE, FMB 51M  BRACING MEMBER, BRIDGING  ARM, STRUCTURAL, BRIDGE  BOLT, MACHINE BEARER, 3/4IN., UNC, 67MM LG, STEEL, GALVANISED, HEX HD, C/W HEX NUT & LOCK WASHER  ARM, STRUCTURAL, BRIDGE LINK SWAYBRACE EXTENSION, STEEL, GALVANISED, 226MM LG, 76MM W, 44MM H  RETAINER BRACKET  ROD, CONTINUOUS THREAD  CHAIN ASSEMBLY, SINGLE LEG "	="Defence Materiel Organisation"	20-Feb-08	="Bridge construction"	13-Feb-08	16-Jul-08	72484.02	="B1198"	="RPC TECHNOLOGIES PTY LTD"	20-Feb-08 05:47 PM	

+="CN63019"	" REPAIRS TO S'LINER ARN-51253 ON WORK ORDER-35903 "	="Department of Defence"	21-Feb-08	="Motor vehicles"	21-Feb-08	13-Jun-08	45164.47	=""	="RGM MAINTENANCE"	21-Feb-08 09:29 AM	

+="CN63028"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	21-Feb-08	="Military rotary wing aircraft"	21-Feb-08	30-Jun-08	75801.17	=""	="SAAL"	21-Feb-08 10:31 AM	

+="CN63054"	"Plan, organise and facilitate 3 fisheries workshops in the SE Asia region to assist implementation of the Regional Plan of Action."	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-08	79500.00	=""	="University of Wollongong - Australian National Centre for Ocean Resources and Security"	21-Feb-08 12:25 PM	

+="CN63082"	"Management Accountant role"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Human resources services"	02-Jan-08	28-Mar-08	57750.00	=""	="Walter Turnbull Pty Ltd"	21-Feb-08 12:29 PM	

+="CN63087"	"Data capture and validation"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	53724.00	=""	="QLD Department of Primary Industries and Fisheries"	21-Feb-08 12:30 PM	

+="CN63112"	"Temp Accom - Dec 07 - Jan 08"	="Department of Defence"	21-Feb-08	="Hotels and lodging and meeting facilities"	09-Jan-08	31-Jan-08	57970.00	=""	="PINNACLE APARTMENTS"	21-Feb-08 01:21 PM	

+="CN63121"	"01/02/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Feb-08	="Medical practice"	17-Jan-08	17-Jan-08	72513.38	=""	="GREENSLOPES PRIV H"	21-Feb-08 01:22 PM	

+="CN63168-A1"	"Dueburys tax and accounting services"	="Department of Resources Energy and Tourism"	21-Feb-08	="Tax accounting"	13-Oct-05	30-Sep-07	75000.00	=""	="INTERNATIONAL NICKEL STUDY GROUP"	21-Feb-08 03:00 PM	

+="CN63183-A1"	" Australian International Lead & Zinc Study Group membership "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	30-Jun-08	50000.00	=""	="INTERNATIONAL LEAD and ZINC STUDY GROUP"	21-Feb-08 03:02 PM	

+="CN63189"	" NSN 2840/01-092-8378  PURCHASE OF HOUSING, REDUCTION GEAR, AIRCRAFT GAS TURBINE ENGINE EX GST "	="Defence Materiel Organisation"	21-Feb-08	="Military transport aircraft"	04-Jul-06	12-Nov-07	80000.00	=""	="Flite Path Pty Ltd"	21-Feb-08 03:04 PM	

+="CN63197"	"Training Services"	="Australian Taxation Office"	21-Feb-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	30-Nov-08	61680.00	="07.247"	="Monash University"	21-Feb-08 04:59 PM	

+="CN63198"	"NSN 4820-00-867-0066, Valve Assemblies"	="Defence Materiel Organisation"	21-Feb-08	="Aerospace systems and components and equipment"	14-Aug-07	21-Apr-08	68244.95	=""	="Milspec Services Pty Ltd"	21-Feb-08 05:01 PM	

+="CN63200"	"Audit Services"	="Australian Taxation Office"	21-Feb-08	="Audit services"	29-Jan-08	23-Apr-08	79600.00	="104.03"	="KPMG"	21-Feb-08 05:20 PM	

+="CN63210-A1"	"skylark operator training in country by civilian contractor"	="Defence Materiel Organisation"	22-Feb-08	="Ground support training systems"	22-Feb-08	28-Mar-08	41306.18	=""	="flight data systems pty ltd"	22-Feb-08 09:56 AM	

+="CN63213-A1"	"Provision for Financial Consulting Services"	="Comsuper"	22-Feb-08	="Business and corporate management consultation services"	18-Feb-08	18-Mar-08	40000.00	=""	="Analyctic Group"	22-Feb-08 10:05 AM	

+="CN63218"	"Recruitment Services"	="Australian Taxation Office"	22-Feb-08	="Recruitment services"	07-Feb-08	30-Apr-08	65000.00	="06.042"	="DFP Recruitment Services Pty Ltd"	22-Feb-08 10:19 AM	

+="CN63230"	"Exhibition Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	09-Jan-08	09-Jan-08	60000.01	="2007/00847"	="J.C&M.C Triggs"	22-Feb-08 11:36 AM	

+="CN63233"	"Headset-microphone"	="Defence Materiel Organisation"	22-Feb-08	="Air transportation support systems and equipment"	15-Aug-07	25-Sep-07	50228.00	=""	="Anixter Australia Pty Ltd"	22-Feb-08 11:50 AM	

+="CN63241"	"Advertising Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jan-08	30-Jun-08	44222.93	="2007/00862"	="HMA Blaze Pty Limited"	22-Feb-08 01:06 PM	

+="CN63257"	"Legal Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	50000.00	="N/A"	="CLAYTON UTZ - 404925"	22-Feb-08 02:45 PM	

+="CN63258"	"Contractor Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	67400.00	="n/a"	="HAYS PERSONNEL SERVICES"	22-Feb-08 02:45 PM	

+="CN63275-A3"	" Software licenses, support and maintenance "	="Office of the Director of Public Prosecutions"	22-Feb-08	="Software"	05-Mar-07	31-Mar-12	76654.74	=""	="WEBSecure"	22-Feb-08 03:19 PM 

--- /dev/null
+++ b/admin/partialdata/18Feb2008to22Feb2008val80000to300000.xls
@@ -1,1 +1,215 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN61918"	" PURCHASE OF QTY 10 BLACK HAWK SUPPORT ASSY'S.  CAGE: 78286 "	="Defence Materiel Organisation"	18-Feb-08	="Military rotary wing aircraft"	18-Feb-08	30-Jun-08	276241.79	=""	="SAAL"	18-Feb-08 09:29 AM	

+="CN61924-A4"	"Provision of Software Licence and Support Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Software"	10-Dec-07	17-Sep-10	222673.00	=""	="DATA#3 LIMITED"	18-Feb-08 10:09 AM	

+="CN61926"	"CRS Australia - Suite 1, 2-4 Meton Street, Sutherland, NSW"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	31-Oct-10	249575.98	=""	="GDF Properties Pty Ltd"	18-Feb-08 10:24 AM	

+="CN61927"	"CRS Australia - Level 3, Ipswich City Tower, 2 Bell Street, Ipswich QLD"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Jun-07	31-May-09	216919.36	=""	="The Public Trustee Of Queensland"	18-Feb-08 10:28 AM	

+="CN61928-A1"	"Provision of Quality Improvement Control accreditation services."	="Department of Veterans' Affairs"	18-Feb-08	="Medical practice"	01-Feb-08	01-Feb-11	134775.00	=""	="Quality Management Services"	18-Feb-08 10:30 AM	

+="CN61932"	"CRS Australia - RAA House, 33 Smart Road, Modbury, SA"	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	31-Dec-10	259147.20	=""	="Supreme Kitchens (SA) Pty Ltd"	18-Feb-08 10:32 AM	

+="CN61940-A1"	"Provision for Business Analyst"	="Comsuper"	18-Feb-08	="Human resources services"	14-Feb-08	30-Jun-08	100000.00	=""	="Peoplebank Australia"	18-Feb-08 10:54 AM	

+="CN61950-A4"	"Provision of Non-Serial Publications."	="Australian Taxation Office"	18-Feb-08	="Printed publications"	01-Jan-08	30-Jun-10	250000.00	=""	="DA Information Services"	18-Feb-08 11:58 AM	

+="CN61953"	" CRS Australia - Suite 6, 39 Old Cleveland Road, Capalaba, QLD "	="CRS Australia"	18-Feb-08	="Lease and rental of property or building"	01-Nov-07	30-Oct-09	118402.51	=""	="Jexville Pty Ltd"	18-Feb-08 12:12 PM	

+="CN61964"	"Governance Coordinator in Aceh"	="AusAid"	18-Feb-08	="Management advisory services"	20-Aug-07	19-Aug-08	276650.00	=""	="HUNT, DANIEL JAMES"	18-Feb-08 12:42 PM	

+="CN61971"	"Design of a new ASEAN Program: Design Specialist"	="AusAid"	18-Feb-08	="Trade policy and services"	01-Jul-07	31-Dec-07	108273.77	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD (PDM)"	18-Feb-08 12:43 PM	


+="CN61986"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	31-Dec-07	87067.20	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 12:45 PM	

+="CN61987"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	168960.00	=""	="COMPAS PTY.LTD."	18-Feb-08 12:45 PM	

+="CN61988"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	194304.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 12:45 PM	

+="CN61989"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	221760.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 12:45 PM	

+="CN61991"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	02-Jul-07	30-Jun-08	179520.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 12:45 PM	

+="CN61993"	"Pacific Urban Program Support Workshop"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	31-Oct-07	81204.20	=""	="PLANNING INSTITUTE AUSTRALIA INC NEW SOUTH WALES DIVISION"	18-Feb-08 12:46 PM	

+="CN61994"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Vocational training"	02-Jul-07	30-Jun-08	109824.00	=""	="CONQUEST ENTERPRISE CONSULTING PTY LTD"	18-Feb-08 12:46 PM	

+="CN61995"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	190080.00	=""	="SURYA ENTERPRISES PTY LTD"	18-Feb-08 12:46 PM	

+="CN61997"	"Peter Bazeley"	="AusAid"	18-Feb-08	="Management advisory services"	21-Jul-07	30-Nov-07	85328.42	=""	="PETER BAZELEY DEVELOPMENT CONSULTING"	18-Feb-08 12:46 PM	

+="CN61998"	"Design Advisor"	="AusAid"	18-Feb-08	="Management advisory services"	09-Jul-07	30-Jun-08	162800.00	=""	="GAISHERIDAN INTERNATIONAL PTY LTD"	18-Feb-08 12:46 PM	

+="CN62002"	"IRG Team Member Counselling, Care and Community Health"	="AusAid"	18-Feb-08	="Management advisory services"	01-Aug-07	30-Nov-10	211401.29	=""	="DR ALEX GODWIN COUTINHO"	18-Feb-08 12:47 PM	

+="CN62010"	"Ray Rist - IPDET and Consulting"	="AusAid"	18-Feb-08	="Trade policy and services"	01-Jul-07	30-Jun-08	128012.92	=""	="RIST, RAY"	18-Feb-08 12:48 PM	

+="CN62011"	"Michael Flint - Consulting"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	30-Jun-08	99092.40	=""	="MICHAEL FLINT"	18-Feb-08 12:48 PM	

+="CN62012"	"Chris Wheeler - design mission"	="AusAid"	18-Feb-08	="Disease prevention and control"	23-Jul-07	31-Dec-07	115195.30	=""	="WHEELER, CHRIS"	18-Feb-08 12:48 PM	

+="CN62020"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	154176.00	=""	="OFFICELINK PLUS PTY LTD"	18-Feb-08 12:49 PM	

+="CN62024"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Business administration services"	20-Aug-07	30-Jun-08	198000.00	=""	="AUREC PTY LTD"	18-Feb-08 12:49 PM	

+="CN62025"	"Hans Binswanger - senior expert consulting"	="AusAid"	18-Feb-08	="Management advisory services"	15-Aug-07	30-Jun-08	99110.66	=""	="BINSWANGER, HANS P"	18-Feb-08 12:50 PM	

+="CN62028"	"Financial Coordination"	="AusAid"	18-Feb-08	="Business administration services"	01-Aug-07	30-Jun-08	164787.26	=""	="WALL, ROBERT W"	18-Feb-08 12:50 PM	

+="CN62035"	"Photolibrary Manager"	="AusAid"	18-Feb-08	="Business administration services"	06-Aug-07	06-Aug-09	82500.00	=""	="DAMIT AUSTRALIA PTY LTD"	18-Feb-08 12:51 PM	

+="CN62039"	"Mapping of suspect land under cultivation"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	13-Aug-07	30-Sep-08	180060.69	=""	="MINES ADVISORY GROUP"	18-Feb-08 12:52 PM	

+="CN62049"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	30-Sep-07	100000.00	=""	="MGF WEBB"	18-Feb-08 12:53 PM	

+="CN62050"	"PNG National Land Development Program Concept Design"	="AusAid"	18-Feb-08	="Land and soil preparation and management and protection"	08-Jul-07	31-Mar-08	188567.50	=""	="LAND EQUITY INTERNATIONAL PTY LTD"	18-Feb-08 12:53 PM	

+="CN62054"	"UNEP-Sidoarjo Mud Flow Project"	="AusAid"	18-Feb-08	="Environmental protection"	16-Aug-07	31-Jan-08	94308.00	=""	="UNITED NATIONS ENVIRONMENT PROGRAMME"	18-Feb-08 12:54 PM	

+="CN62056"	"TELECOMMUNICATIONS FOR GROWTH ADVISOR"	="AusAid"	18-Feb-08	="Economics"	22-Aug-07	31-Jan-09	272635.00	=""	="MARKET DYNAMICS PTY LTD"	18-Feb-08 12:54 PM	

+="CN62058"	"AusAID Port Vila - Aid Performance Adviser"	="AusAid"	18-Feb-08	="Management advisory services"	01-Sep-07	30-Jun-08	240039.58	=""	="UNIQUEST PTY LTD"	18-Feb-08 12:54 PM	

+="CN62060"	"Support for the Global Integrity Alliance"	="AusAid"	18-Feb-08	="International relations"	20-Jul-07	30-Jun-08	135932.50	=""	="MORRIS, ALAN GREGORY"	18-Feb-08 12:55 PM	

+="CN62064"	"Pacific Education Program Development"	="AusAid"	18-Feb-08	="Alternative educational systems"	01-Aug-07	30-Jun-08	207900.00	=""	="COLLINGWOOD, IAN"	18-Feb-08 12:55 PM	

+="CN62065"	"Provision of Services - Peter Mulligan (BA)"	="AusAid"	18-Feb-08	="Computer services"	04-Sep-07	04-Mar-08	107100.00	=""	="PLATINUM (ACT) PTY LTD"	18-Feb-08 12:55 PM	

+="CN62075"	"Building Sustainable Electoral Admin Phase3 TAF- reconciled funds"	="AusAid"	18-Feb-08	="Political systems and institutions"	17-Jul-06	30-Jul-08	122121.10	=""	="THE ASIA FOUNDATION"	18-Feb-08 12:57 PM	

+="CN62093"	"Violence Against Women Evaluation - Chris Bradley Contract"	="AusAid"	18-Feb-08	="Community and social services"	16-Sep-07	30-Jun-08	138000.00	=""	="BRADLEY, CHRISTINE"	18-Feb-08 12:59 PM	

+="CN62096"	"monitoring & evaluation of SRH, emergency supplies & MISP"	="AusAid"	18-Feb-08	="Comprehensive health services"	30-Oct-07	30-Oct-08	110000.00	=""	="SARAH DAWSON"	18-Feb-08 12:59 PM	

+="CN62099"	"AIPRD Asset Mapping Technical Assistance for Building Materials Testing and Handling"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	06-Sep-07	30-Dec-07	103424.00	=""	="ROBSON LABORATORIES PTY LTD"	18-Feb-08 01:00 PM	

+="CN62100"	"Better Education Convention"	="AusAid"	18-Feb-08	="Business administration services"	20-Jul-07	30-Dec-07	104005.00	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:00 PM	

+="CN62107"	"Recruitment of MOG Program Director - Hansen and Searson Executive Search"	="AusAid"	18-Feb-08	="Human resources services"	13-Sep-07	31-Dec-07	93500.00	=""	="PAPER SHUFFLE PTY LTD"	18-Feb-08 01:01 PM	

+="CN62110"	"country strategy effectiveness review - Team Leader - Michael Flint"	="AusAid"	18-Feb-08	="Management advisory services"	24-Sep-07	31-Dec-07	91230.00	=""	="MICHAEL FLINT"	18-Feb-08 01:01 PM	


+="CN62124"	"Investing in People Conference - 19 & 20 November 2007"	="AusAid"	18-Feb-08	="Specialised educational services"	19-Nov-07	30-Nov-07	88865.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	18-Feb-08 01:03 PM	

+="CN62126"	"AIPRD Asset Mapping and Management - GIS/Mapping Specialist"	="AusAid"	18-Feb-08	="Environmental management"	22-Oct-07	31-Dec-07	109780.00	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:03 PM	

+="CN62129"	"KPK - Fighting Bribery in Public Procurement"	="AusAid"	18-Feb-08	="Work related organisations"	03-Oct-07	01-Jan-08	129467.39	=""	="INDONESIA: KOMISI PEMBERANTASAN KORUPSI"	18-Feb-08 01:03 PM	

+="CN62131"	"Amber Davidson"	="AusAid"	18-Feb-08	="Disease prevention and control"	15-Oct-07	29-Feb-08	94632.35	=""	="DAVIDSON, AMBER"	18-Feb-08 01:04 PM	

+="CN62134"	"Gender Training"	="AusAid"	18-Feb-08	="Vocational training"	12-Oct-07	12-Oct-09	118861.87	=""	="ANU ENTERPRISES PTY LTD"	18-Feb-08 01:04 PM	

+="CN62137"	"Case Studies in Fragile States"	="AusAid"	18-Feb-08	="Humanitarian aid and relief"	15-Oct-07	29-Aug-08	86356.00	=""	="CONSTANTINE, JANINE ANDREA"	18-Feb-08 01:04 PM	

+="CN62143"	"East Timor Performance & Quality Management"	="AusAid"	18-Feb-08	="Management advisory services"	05-Oct-07	30-Jun-08	95799.00	=""	="DAVIDSON, AMBER"	18-Feb-08 01:05 PM	

+="CN62148"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Oct-07	31-Mar-08	100848.00	=""	="ICON RECRUITMENT PTY LTD"	18-Feb-08 01:06 PM	

+="CN62152"	"Jenny Gordon IIF Design"	="AusAid"	18-Feb-08	="Management advisory services"	01-Apr-07	28-Sep-07	111815.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:06 PM	

+="CN62153"	"APEC's engagement with other multilateral organisations"	="AusAid"	18-Feb-08	="Economics"	08-Oct-07	31-Mar-09	170000.00	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62156"	"AANZFTA Economic Cooperation Chapter Technical Expert"	="AusAid"	18-Feb-08	="Trade policy and services"	15-Nov-07	30-Jun-08	91900.60	=""	="INTERNATIONAL ECONOMICS PTY LIMITED T/A CENTRE FOR INTERNATIONAL ECONOMICS"	18-Feb-08 01:07 PM	

+="CN62159"	"Financial Sector Consultant"	="AusAid"	18-Feb-08	="Management advisory services"	13-Aug-07	28-Feb-08	269280.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:08 PM	

+="CN62160"	"Samoa Internal Revenue Department ISP: Preliminary Phase Work"	="AusAid"	18-Feb-08	="Management advisory services"	06-Aug-07	30-Nov-07	117040.00	=""	="PDP AUSTRALIA PTY. LTD."	18-Feb-08 01:08 PM	

+="CN62171"	"GIFC: Forests and Climate Program Coordinator Indonesia"	="AusAid"	18-Feb-08	="Forestry"	02-Jul-07	02-Nov-07	149749.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:09 PM	

+="CN62172"	"GIFC: Forests and Climate Program Coordinator Indonesia"	="AusAid"	18-Feb-08	="Forestry"	02-Jul-07	29-Feb-08	213625.00	=""	="URS AUSTRALIA PTY LTD"	18-Feb-08 01:10 PM	

+="CN62174"	"Australia Indonesia Partnership Regional Development Monitoring and Review Group (MARG): Richard Holloway"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	30-Apr-08	225541.80	=""	="HASSALL & ASSOCIATES PTY LTD"	18-Feb-08 01:10 PM	

+="CN62180"	"Senior Research Adviser for Aceh Communities Assistance Research Project (Craig Thorburn)"	="AusAid"	18-Feb-08	="Management advisory services"	14-Jun-07	30-Nov-07	104374.60	=""	="INTERNATIONAL DEVELOPMENT SUPPORT SERVICES PTY LTD"	18-Feb-08 01:11 PM	

+="CN62186"	"HRD Plan- Carolyn Marsh"	="AusAid"	18-Feb-08	="Educational institutions"	14-Aug-07	31-Jan-08	135414.40	=""	="MDG PTY LTD"	18-Feb-08 01:12 PM	

+="CN62187"	"Solomon Islands Electoral Strengthening Design Mission - Design Specialist"	="AusAid"	18-Feb-08	="Management advisory services"	28-May-07	29-Feb-08	100782.00	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62188"	"Samoa Law and Justice Sector - Law and Justice Sector Plan"	="AusAid"	18-Feb-08	="Management advisory services"	29-Jul-07	30-Jun-08	143587.85	=""	="UNIQUEST PTY LTD"	18-Feb-08 01:12 PM	

+="CN62213"	"Aid Delivery Training in Various Regional Posts"	="AusAid"	18-Feb-08	="Specialised educational services"	17-Sep-07	31-Dec-07	93849.80	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:15 PM	

+="CN62214"	"Praxis Aid Delivery Training - September to December 2007"	="AusAid"	18-Feb-08	="Vocational training"	17-Sep-07	31-Dec-07	93849.80	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:16 PM	

+="CN62215"	"Australia Indonesia Partnership Regional Development Monitoring and Review Group (MARG): Julie Klugman"	="AusAid"	18-Feb-08	="Management advisory services"	02-Jan-07	30-Apr-08	101704.90	=""	="GHD PTY LTD"	18-Feb-08 01:16 PM	

+="CN62219"	"Mike Finlayson_Team Leader of HSS and MNH Design Mission"	="AusAid"	18-Feb-08	="Community and social services"	26-Sep-07	30-Apr-08	88250.80	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:16 PM	

+="CN62233"	"Fiji Education Sector Program"	="AusAid"	18-Feb-08	="Educational facilities"	01-May-03	31-Dec-08	118119.10	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:18 PM	

+="CN62236"	"MoG Administration Support (Desk)"	="AusAid"	18-Feb-08	="Management advisory services"	12-Sep-06	14-Dec-07	147400.00	=""	="GARRETT, WILLIAM JAMES"	18-Feb-08 01:19 PM	

+="CN62244"	"David Henry OTS Strategy, Plans and Materials"	="AusAid"	18-Feb-08	="Vocational training"	16-Apr-07	31-Dec-07	108632.00	=""	="HENRY, DAVID MCKENZIE"	18-Feb-08 01:20 PM	

+="CN62246"	"Samoa Police Project"	="AusAid"	18-Feb-08	="Management advisory services"	01-Dec-03	28-Feb-09	243784.93	=""	="UNIQUEST PTY LIMITED"	18-Feb-08 01:20 PM	

+="CN62254"	"Review TL Dr P Murphy"	="AusAid"	18-Feb-08	="Educational institutions"	06-Aug-07	31-Oct-07	81864.20	=""	="CONSULTING PLUS PTY. LTD."	18-Feb-08 01:21 PM	

+="CN62256"	"Praxis Consultants Pty Ltd - Democratic Governance Program Design"	="AusAid"	18-Feb-08	="Management advisory services"	07-Oct-06	31-Dec-07	229397.30	=""	="PRAXIS CONSULTANTS PTY LTD"	18-Feb-08 01:21 PM	

+="CN62257"	"Review of Asia Regional Strategy 2005-2009"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	04-Jan-08	107404.00	=""	="BYSOUTH, KAYE ANNETTE"	18-Feb-08 01:21 PM	

+="CN62258"	"Services for development of Civil Society Framework Bysouth"	="AusAid"	18-Feb-08	="Political systems and institutions"	08-Nov-07	30-Jun-08	83385.50	=""	="BYSOUTH, KAYE ANNETTE"	18-Feb-08 01:21 PM	

+="CN62267"	"PUBLIC SECTOR LINKAGES PROGRAM (PSLP) MONITORING AND EVALUATION SPECIALIST"	="AusAid"	18-Feb-08	="Management advisory services"	22-May-06	30-Jun-07	111936.00	=""	="INTERNATIONAL HEALTH DEVELOPMENT PTY LTD"	18-Feb-08 01:23 PM	

+="CN62273"	"The provision of library and information services"	="AusAid"	18-Feb-08	="Educational facilities"	01-Jul-04	30-Jun-08	159540.29	=""	="LYNN FARKAS INFORMATION SERVICES PTY LTD"	18-Feb-08 01:24 PM	

+="CN62277"	"ACFID Training and Seminar 2007-2008"	="AusAid"	18-Feb-08	="Civic organisations and associations and movements"	01-Jul-07	30-Jun-08	133131.90	=""	="AUSTRALIAN COUNCIL FOR INTERNATIONAL DEVELOPMENT INC"	18-Feb-08 01:24 PM	

+="CN62284"	"Joint SE/HES Baystreet Fees"	="AusAid"	18-Feb-08	="Community and social services"	01-Jul-07	14-Mar-08	220000.00	=""	="BAY STREET MEDIA WORKS"	18-Feb-08 01:25 PM	

+="CN62300"	"Geoff Lacey's Service Order through EDG for the ADS re-design"	="AusAid"	18-Feb-08	="Educational facilities"	02-Sep-07	31-Dec-07	83322.80	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62303"	"Australian Scholarships Alumni Network"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-07	31-Oct-07	95700.00	=""	="EFFECTIVE DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:28 PM	

+="CN62308-A1"	"Provision for Information Technology Specialist Services"	="Department of Immigration and Citizenship"	18-Feb-08	="Human resources services"	05-Feb-07	30-Jun-09	264660.00	=""	="Wizard Personnel & Office Services Pty. Limited"	18-Feb-08 01:30 PM	

+="CN62320"	"HSSP Transition Phase - Technical Assistance"	="AusAid"	18-Feb-08	="Comprehensive health services"	06-Aug-07	31-Dec-07	220548.90	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:30 PM	

+="CN62328"	"RAMSI Community Outreach Officer Recruitment"	="AusAid"	18-Feb-08	="Marketing and distribution"	31-Jul-06	30-Nov-08	203869.00	=""	="GRM INTERNATIONAL PTY LTD"	18-Feb-08 01:31 PM	

+="CN62339"	"PNG Electoral Support Program Phase 2"	="AusAid"	18-Feb-08	="Political systems and institutions"	15-Aug-05	15-Aug-08	200685.10	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:33 PM	

+="CN62341"	"Engagement of consultant"	="AusAid"	18-Feb-08	="Management advisory services"	20-Apr-07	30-Oct-07	86600.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62342"	"Senior Field Researcher for Aceh Community Assistance Research Project"	="AusAid"	18-Feb-08	="Community and social services"	21-May-07	30-Dec-07	84700.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:33 PM	

+="CN62344"	"ASEAN+3 EID (Phase 2)- Implementation Stage: Design Capacity Building Workshops- Mike Freeman"	="AusAid"	18-Feb-08	="Management advisory services"	27-Aug-07	12-Nov-07	87124.40	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62346"	"AANZFTA Economic Cooperation Chapter Design Expert"	="AusAid"	18-Feb-08	="Trade policy and services"	22-Oct-07	30-Jun-08	96140.00	=""	="PROJECT DESIGN & MANAGEMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62347"	"Coffey International Development"	="AusAid"	18-Feb-08	="Management advisory services"	28-Feb-07	30-Sep-07	96585.13	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:34 PM	

+="CN62351"	"AIPRD Asset Mapping Assistance - Interim Assistance Coordinator"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Oct-07	31-Jan-08	125876.30	=""	="M.D.I. INTERNATIONAL PTY LTD"	18-Feb-08 01:35 PM	

+="CN62357"	"Philippines Education Sectoral Advisory Group (David Chantrill)"	="AusAid"	18-Feb-08	="Management advisory services"	27-Jan-06	30-Jun-09	110000.00	=""	="CHANTRILL, DAVID"	18-Feb-08 01:35 PM	

+="CN62362"	"ABMEC TAG - E Zambotti"	="AusAid"	18-Feb-08	="Management advisory services"	03-Feb-06	31-Jan-08	85772.50	=""	="ZAMBOTTI, ELIZABETH PAULINE"	18-Feb-08 01:36 PM	

+="CN62363"	"ANTARA Management Support Team"	="AusAid"	18-Feb-08	="Business administration services"	01-Mar-06	28-Feb-11	181900.66	=""	="CARDNO ACIL PTY LTD"	18-Feb-08 01:36 PM	

+="CN62366"	"Datamart Developemnt and Support Services in  Relation to AusAID Business Systems"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	30-Jun-08	220000.00	=""	="ALTIS CONSULTING PTY LTD"	18-Feb-08 01:37 PM	

+="CN62370"	"RAMSI PAAT CB Specialist - Kaye Schofield"	="AusAid"	18-Feb-08	="Management advisory services"	13-Feb-07	12-Feb-08	133146.20	=""	="SCHOFIELD, KAYE"	18-Feb-08 01:37 PM	

+="CN62380"	"Service Order 17 Technical Support to ETG - Val Haugen"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-07	15-Oct-07	148808.00	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:39 PM	

+="CN62381"	"Service Order 20 Technical Support to ETG - Val Haugen"	="AusAid"	18-Feb-08	="Management advisory services"	15-Oct-07	30-Jun-08	200244.00	=""	="SYNERGY DEVELOPMENT GROUP PTY LTD"	18-Feb-08 01:39 PM	

+="CN62385"	"Peter Morgan"	="AusAid"	18-Feb-08	="Writing and translations"	01-Jul-07	23-May-09	85077.96	=""	="MORGAN, PETER JOHN"	18-Feb-08 01:39 PM	

+="CN62386"	"PNG Deployee Services Tasking Note - Coffey ID"	="AusAid"	18-Feb-08	="Management advisory services"	20-Jan-07	07-May-08	98780.00	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:40 PM	

+="CN62390"	"Luman Soho Property Management"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	01-Jul-07	30-Jun-08	231000.00	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:40 PM	

+="CN62391"	"Building Sustainable Communities: Livelihoods & Community Structure in Post-Tsunami Housing Projects in Sri Lanka, India & Indonesia"	="AusAid"	18-Feb-08	="Community and social services"	01-Jan-07	31-May-10	99000.00	=""	="MONASH UNIVERSITY"	18-Feb-08 01:40 PM	

+="CN62392"	"RAMSI Interim Performance Review Nov/Dec 06- PAAT services"	="AusAid"	18-Feb-08	="Management advisory services"	01-Nov-06	31-Mar-08	99444.00	=""	="CAMRIS INTERNATIONAL"	18-Feb-08 01:40 PM	

+="CN62398"	"Quality Assurance Contractor for the Second Phase of the Land Administration and Management Project (QAC for LAMP II)"	="AusAid"	18-Feb-08	="Management advisory services"	01-Jul-06	31-Oct-07	105242.50	=""	="Department of Environment and Natural Resources (Philippines)"	18-Feb-08 01:41 PM	

+="CN62400"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	26-Jul-06	30-Jun-08	291620.18	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:41 PM	

+="CN62403"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	01-Jul-06	30-Jun-08	221760.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62404"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	01-Jul-06	30-Jun-08	105600.00	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62407"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	14-Aug-06	30-Jun-08	202848.53	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:42 PM	

+="CN62409"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	15-Aug-06	24-Dec-07	211298.12	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:43 PM	

+="CN62415"	"Dr Basil McNamara"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	30-Apr-08	237081.42	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:43 PM	

+="CN62417"	"Dr Jason Sly"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Dec-06	30-Sep-08	182877.75	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:44 PM	

+="CN62424"	"PACTAM Maritime College Engineer"	="AusAid"	18-Feb-08	="Educational institutions"	23-Jul-07	13-Nov-09	122420.29	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62427"	"Electrical Engineer - Placement"	="AusAid"	18-Feb-08	="Utilities"	31-Aug-07	31-Oct-09	112330.16	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62428"	"Placement for Legal Advisor (OAG)"	="AusAid"	18-Feb-08	="Legal services"	01-Oct-07	30-Sep-09	244244.70	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62429"	"Chief Accountant"	="AusAid"	18-Feb-08	="Accounting and auditing"	01-Jun-07	20-Jul-08	90155.86	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:45 PM	

+="CN62432"	"Dr. Jacqui Glennon"	="AusAid"	18-Feb-08	="Comprehensive health services"	01-Jul-07	31-Oct-08	113680.03	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:46 PM	

+="CN62443"	"SNPF Legal Consultant - Bill Martin"	="AusAid"	18-Feb-08	="Credit agencies"	01-Oct-07	30-Nov-08	160000.00	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	18-Feb-08 01:47 PM	

+="CN62441"	"Property Lease - Division of Fremantle"	="Australian Electoral Commission"	18-Feb-08	="Lease and rental of property or building"	01-Jan-08	31-Dec-12	286000.00	=""	="Mayport Pty Ltd"	18-Feb-08 01:48 PM	

+="CN62447"	"Service Order - PASP Adhoc Services - HK Logistics"	="AusAid"	18-Feb-08	="Educational institutions"	01-Aug-07	31-Oct-07	151367.37	=""	="HK LOGISTICS PTY LTD"	18-Feb-08 01:48 PM	

+="CN62449"	"CCJAG - Payment to PASP account for Charles Kendall and Partners Ltd for Management of CCJAG"	="AusAid"	18-Feb-08	="Human resources services"	08-Oct-07	31-Dec-09	294962.90	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62450"	"CKP: Selection of HSSP S/term Procurement Specialist - Interim Phase"	="AusAid"	18-Feb-08	="Human resources services"	26-Oct-07	30-May-08	159540.00	=""	="CHARLES KENDALL & PARTNERS LTD"	18-Feb-08 01:48 PM	

+="CN62452"	"Philippines-Australia Local Governance Development Program (LDGP) Phase 1"	="AusAid"	18-Feb-08	="Management advisory services"	16-Oct-06	15-Nov-07	263894.97	=""	="COFFEY INTERNATIONAL DEVELOPMENT PTY LTD"	18-Feb-08 01:49 PM	

+="CN62454"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	11-Dec-06	30-Jun-08	143264.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	18-Feb-08 01:49 PM	

+="CN62455"	"Manager Nauru Utilities"	="AusAid"	18-Feb-08	="Utilities"	11-Dec-06	31-Dec-08	144152.50	=""	="BREARLEY, WAYNE"	18-Feb-08 01:49 PM	

+="CN62457"	"Provision of IT Technical Personnel - Windows Technical Support"	="AusAid"	18-Feb-08	="Business administration services"	15-Jan-07	30-Jun-08	279618.57	=""	="CCS INDEX PTY LTD"	18-Feb-08 01:49 PM	

+="CN62460"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	01-Jan-07	30-Jun-08	193076.40	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:50 PM	

+="CN62462"	"Aceh Infrastructure Monitoring Team - Team Member - Damien Smith"	="AusAid"	18-Feb-08	="Building construction and support and maintenance and repair services"	08-Jan-07	10-May-08	187748.00	=""	="SMITH, DAMIEN JOEL"	18-Feb-08 01:50 PM	

+="CN62463"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	15-Jan-07	30-Jun-08	200640.00	=""	="COMPAS PTY.LTD."	18-Feb-08 01:50 PM	

+="CN62465"	"CEPA Interim Team Leader - Chloe Olliver"	="AusAid"	18-Feb-08	="Management advisory services"	31-Jan-07	31-Dec-07	217030.00	=""	="OLLIVER, CHLOE JANE"	18-Feb-08 01:50 PM	

+="CN62467-A1"	"Griffin NRM-Environment Consultant"	="AusAid"	18-Feb-08	="Environmental management"	12-Feb-07	30-Dec-07	113300.00	=""	="GRIFFIN NRM PTY LTD"	18-Feb-08 01:51 PM	

+="CN62469"	"Design Advisor Mark Minford"	="AusAid"	18-Feb-08	="Management advisory services"	20-Feb-07	30-Nov-07	265760.00	=""	="MINFORD, MARK LESLIE MACKAY"	18-Feb-08 01:51 PM	

+="CN62471"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	26-Feb-07	30-Jun-08	164104.60	=""	="GREYTHORN PTY LTD"	18-Feb-08 01:51 PM	

+="CN62472"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Software"	01-Mar-07	30-Jun-08	199471.80	=""	="TARAKAN CONSULTING PTY LTD"	18-Feb-08 01:51 PM	

+="CN62473"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	30-Apr-07	30-Jun-08	237600.00	=""	="AMBIT GROUP PTY LTD"	18-Feb-08 01:51 PM	

+="CN62474"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	13-Mar-07	30-Jun-08	292160.00	=""	="GREYTHORN PTY LTD"	18-Feb-08 01:52 PM	

+="CN62479"	"Provision of IT Technical Personnel"	="AusAid"	18-Feb-08	="Business administration services"	26-Mar-07	30-Jun-08	210056.00	=""	="CCS INDEX PTY LTD"	18-Feb-08 01:52 PM	

+="CN62481"	"AIPRD Aceh Rehabilitation Program - Timber Adviser"	="AusAid"	18-Feb-08	="Forestry"	09-Apr-07	08-Oct-07	142890.00	=""	="KURU, GEORGE"	18-Feb-08 01:52 PM	

+="CN62482"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	11-Apr-07	30-Sep-08	238150.00	=""	="TALENT INTERNATIONAL (ACT) PTY LTD"	18-Feb-08 01:53 PM	

+="CN62487"	"Provision of IT Technical Services"	="AusAid"	18-Feb-08	="Software"	04-Jun-07	30-Jun-08	290312.00	=""	="AUREC PTY LTD"	18-Feb-08 01:53 PM	

+="CN62490"	"Pacific Statebuilding and Governance Research Project"	="AusAid"	18-Feb-08	="Management advisory services"	31-May-07	30-Jun-08	267525.50	=""	="UNIVERSITY OF QUEENSLAND"	18-Feb-08 01:53 PM	

+="CN62491"	"Cairns Convention Centre"	="AusAid"	18-Feb-08	="Hotels and lodging and meeting facilities"	01-Jun-07	30-Jun-08	94436.22	=""	="CAIRNS CONVENTION CENTRE"	18-Feb-08 01:54 PM	

+="CN62493"	"The Forum Group"	="AusAid"	18-Feb-08	="Business administration services"	01-Jun-07	30-Jun-08	138122.89	=""	="THE FORUM GROUP PTY LTD"	18-Feb-08 01:54 PM	

+="CN62494"	"Assistance to AusAID and the Tonga Public Service Commission to develop the proposed Performance Incentives Arrangement"	="AusAid"	18-Feb-08	="Management advisory services"	14-Jun-07	30-Jul-08	80264.47	=""	="SAPERE CONSULTING"	18-Feb-08 01:54 PM	

+="CN62496"	"Design Mission: Peter Heijkoop"	="AusAid"	18-Feb-08	="Medical practice"	23-Sep-07	30-Apr-08	83047.80	=""	="UNIVERSAL FINANCIAL MANAGEMENT SOLUTIONS"	18-Feb-08 01:54 PM	

+="CN62498"	"Telecommunications Liberalisation- Negotiator"	="AusAid"	18-Feb-08	="Telecommunications media services"	01-Jul-07	31-Oct-07	100000.00	=""	="MGF WEBB"	18-Feb-08 01:54 PM	

+="CN62500"	"Better Education Convention"	="AusAid"	18-Feb-08	="Business administration services"	20-Jul-07	30-Dec-07	114405.50	=""	="MELBOURNE DEVELOPMENT INSTITUTE PTY LTD"	18-Feb-08 01:55 PM	

+="CN62520"	"G2193 Linux Specialist Provision of Staff Under Deed of Standing Offer to June 2008"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	11-Jan-08	30-Jun-08	106700.00	=""	="Peoplebank Australia Ltd"	18-Feb-08 03:54 PM	

+="CN62545"	"G2128 Storage Solution for Geoscience Australia 2008"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	23-Jan-08	30-Jun-08	235400.00	=""	="Clonnaugh Pty Ltd"	18-Feb-08 03:58 PM	

+="CN62550"	"WP 2007/263 Qld Capricorn Coast - Large Scale Mapping for Emergency Management."	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	24-Jan-08	30-Jun-08	205184.40	="2006/3933"	="DSM Geodata"	18-Feb-08 03:58 PM	

+="CN62551"	"QC Services of remastered data - CMC# G0865"	="Geoscience Australia"	18-Feb-08	="Temporary personnel services"	25-Jan-08	30-Jun-08	115500.00	=""	="GeoCom Services Australia Pty  Ltd"	18-Feb-08 03:58 PM	

+="CN62571"	"Procurement of:  FILTER,FLUID;  FILTER,FLUID;  FILTER,FLUID"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	07-Jan-08	09-May-08	141915.02	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:10 PM	

+="CN62577"	"Procurement of:  HEATER,FLUID,INDUSTRIAL;  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	08-Jan-08	13-May-08	173781.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:11 PM	

+="CN62585"	"Procurement of:  TURBOSUPERCHARGER,ENGINE,NON-AIRCRAFT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	14-Jan-08	20-Apr-08	102358.73	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:12 PM	

+="CN62589"	"Procurement of:  INTERFACE UNIT,COMMUNICATION EQUIPMENT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	15-Jan-08	29-Aug-08	97320.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	18-Feb-08 05:12 PM	

+="CN62595"	"Procurement of:  PUMP,RECIPROCATING"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	16-Jul-08	103230.00	=""	="HASKEL AUSTRALASIA Pty Ltd"	18-Feb-08 05:13 PM	

+="CN62603"	"Procurement of:  PUMP,COOLING SYSTEM,ENGINE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	18-Jan-08	09-May-08	93834.76	=""	="MTU DETROIT DIESEL AUSTRALIA"	18-Feb-08 05:14 PM	

+="CN62623"	"Procurement of:  JACKET,WATER"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	22-Jan-08	20-May-08	102436.12	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62625"	"Procurement of:  CYLINDER SLEEVE"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	23-Jan-08	13-Mar-08	120249.00	=""	="HEDEMORA DIESEL AUSTRALIA"	18-Feb-08 05:17 PM	

+="CN62630"	"Procurement of:  SWITCH,ANTENNA UNIT"	="Defence Materiel Organisation"	18-Feb-08	="Marine transport"	11-Jan-08	11-May-08	108672.70	=""	="RAYTHEON AUSTRALIA Pty Ltd"	18-Feb-08 05:17 PM	

+="CN62651"	"IT Contractor"	="Australian Taxation Office"	19-Feb-08	="Engineering and Research and Technology Based Services"	14-Feb-08	17-Aug-08	94168.80	=""	="CANDLE AUSTRALIA PTY LTD"	19-Feb-08 09:07 AM	

+="CN62657"	"IT Contractor"	="Australian Taxation Office"	19-Feb-08	="Engineering and Research and Technology Based Services"	13-Feb-08	13-Feb-09	231000.00	=""	="COMPAS PTY LTD"	19-Feb-08 09:08 AM	

+="CN62662"	"IT Contractor"	="Australian Taxation Office"	19-Feb-08	="Engineering and Research and Technology Based Services"	14-Feb-08	21-Feb-09	225882.70	=""	="FACE2FACE RECRUITMENT PTY LTD"	19-Feb-08 09:12 AM	

+="CN62663"	"IT Contractor"	="Australian Taxation Office"	19-Feb-08	="Engineering and Research and Technology Based Services"	14-Feb-08	27-May-09	220704.00	=""	="ELITE IT PTY LTD"	19-Feb-08 09:12 AM	

+="CN62664"	"IT Contractor"	="Australian Taxation Office"	19-Feb-08	="Engineering and Research and Technology Based Services"	18-Feb-08	31-Dec-08	207905.50	=""	="ICON RECRUITMENT"	19-Feb-08 09:12 AM	

+="CN60778"	"WAN INFRASTRUCTURE"	="Department of Human Services"	19-Feb-08	="Communications Devices and Accessories"	30-Jun-08	30-Jun-09	149451.72	=""	="Singtel Optus Pty Ltd"	19-Feb-08 09:43 AM	

+="CN62679"	"IT SERVICES"	="Department of Human Services"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	15-Feb-08	15-Feb-08	150260.00	=""	="ASG GROUP LIMITED"	19-Feb-08 10:24 AM	

+="CN62717-A1"	"Provision of services in relation to applications development"	="Australian Federal Police"	19-Feb-08	="Engineering and Research and Technology Based Services"	01-Jul-07	31-Dec-07	95700.00	=""	="Southern Cross Computing Pty Limited"	19-Feb-08 02:27 PM	

+="CN62720"	"07/2429 - Project Management Services - 1599-1971 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	19-Feb-08	="Business and corporate management consultation services"	15-Sep-07	15-Mar-08	190000.00	=""	="Ball Solutions Group"	19-Feb-08 02:40 PM	

+="CN62722"	"07/2370 - /training Services - 1599-1947 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	19-Feb-08	="Business and corporate management consultation services"	01-Dec-07	01-Jun-08	200000.00	=""	="Centre for Customs and Excise Studies - University of Canberra"	19-Feb-08 02:45 PM	

+="CN62724-A1"	"Provision for Program Sceduler"	="Comsuper"	19-Feb-08	="Human resources services"	11-Feb-08	30-Jun-08	93280.00	=""	="M&T Resources"	19-Feb-08 02:50 PM	

+="CN62736"	"08/2533 - Marketing and Communications Officer - 0717-0865 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	19-Feb-08	="Temporary personnel services"	04-Feb-08	03-Feb-09	252000.00	=""	="Candle Australia Pty Ltd"	19-Feb-08 03:07 PM	

+="CN62753"	"07/1825 - Equipment Maintenance"	="Australian Customs and Border Protection Service"	19-Feb-08	="Manufacture of electrical goods and precision instruments"	22-Jan-08	22-Jan-11	100000.00	=""	="Point Trading Pty Ltd"	19-Feb-08 03:54 PM	

+="CN62759-A1"	"07/2165 - Long Range Tracking Service"	="Australian Customs and Border Protection Service"	19-Feb-08	="Measuring and observing and testing instruments"	16-Jan-08	15-Jan-13	173500.00	=""	="Pole Star Space Applications Ltd"	19-Feb-08 03:55 PM	

+="CN62768"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	15-Aug-06	30-Jun-11	149531.00	=""	="Queensland Archival Management Pty Ltd"	19-Feb-08 03:56 PM	

+="CN62769"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	11-Aug-06	10-Aug-09	259048.32	=""	="Jack Chakmeng Ng - Hee-Luang Ng"	19-Feb-08 03:56 PM	

+="CN62772"	"Lease of Property in NSW"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	09-Feb-07	08-Feb-09	116421.64	=""	="Bevans Real Estate (Agent)"	19-Feb-08 03:56 PM	

+="CN62773"	"Lease of Property in WA"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-17	185000.00	=""	="Albany Port Authority"	19-Feb-08 03:56 PM	

+="CN62780"	"Lease of Property in QLD"	="Australian Customs and Border Protection Service"	19-Feb-08	="Real estate services"	01-Jul-07	30-Jun-11	91053.41	=""	="Motorola Smartnet"	19-Feb-08 04:01 PM	

+="CN62809-A1"	"07/2098 - Equipment Maintenance"	="Australian Customs and Border Protection Service"	19-Feb-08	="Computer services"	21-Dec-07	22-Dec-09	160000.00	=""	="Electroboard Solutions Pty Ltd"	19-Feb-08 04:05 PM	

+="CN62813"	"07/2506 - Supply of Radio Equipment"	="Australian Customs and Border Protection Service"	19-Feb-08	="Information Technology Broadcasting and Telecommunications"	03-Aug-07	30-Dec-07	85470.00	=""	="Tait Electronics (Aust) Pty Ltd"	19-Feb-08 04:06 PM	

+="CN62823-A2"	"07/2145 - Financial Contractor"	="Australian Customs and Border Protection Service"	19-Feb-08	="Human resources services"	16-Jul-07	27-Jan-09	91000.00	=""	="Gredta Pty Ltd"	19-Feb-08 04:07 PM	

+="CN62839-A2"	"07/2457 - Technical Analyst - 0717-0892 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	19-Feb-08	="Business and corporate management consultation services"	03-Mar-08	31-Dec-08	175000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	19-Feb-08 04:31 PM	

+="CN62900"	"SHOES MENS, WHITE. FULL GRAIN LEATHER"	="Defence Materiel Organisation"	19-Feb-08	="Mens shoes"	14-Feb-08	30-May-08	168801.60	=""	="LYMINGTON PACIFIC"	19-Feb-08 05:03 PM	

+="CN62902"	"SHOES MENS, BLACK. FULL GRAIN LEATHER."	="Defence Materiel Organisation"	19-Feb-08	="Mens shoes"	13-Feb-08	30-May-08	107355.80	=""	="LYMINGTON PACIFIC"	19-Feb-08 05:12 PM	

+="CN62905"	"SHOES WOMENS. PATENT LEATHER."	="Defence Materiel Organisation"	19-Feb-08	="Womens shoes"	13-Feb-08	30-May-08	119720.70	=""	="LYMINGTON PACIFIC"	19-Feb-08 05:20 PM	

+="CN62907-A2"	"07/2403 - IT Specialist - Microsoft Services Deed - 06/1524"	="Australian Customs and Border Protection Service"	20-Feb-08	="Temporary personnel services"	22-Oct-07	29-Jan-08	126720.00	="06/1524"	="Microsoft Pty Ltd"	20-Feb-08 08:57 AM	

+="CN62924"	"Provision of internet services"	="Department of Parliamentary Services"	20-Feb-08	="Internet services"	11-Feb-08	29-Feb-08	118457.37	=""	="Telstra Corporation Ltd"	20-Feb-08 09:21 AM	

+="CN62932"	"Supply of gas to Parliament House (extension to DPS06063)"	="Department of Parliamentary Services"	20-Feb-08	="Supply of natural gas"	11-Feb-08	30-Jun-08	198000.00	=""	="ACTEW AGL Gas Company (ACT) Ltd"	20-Feb-08 09:22 AM	

+="CN62961-A4"	"Provision for Development and Implementation of Public Relations Components for Australian Citizenship Test"	="Department of Immigration and Citizenship"	20-Feb-08	="Public relations programs or services"	25-Jul-07	30-Jun-08	136793.00	=""	="The Trustee for Royce Communications Unit Trust"	20-Feb-08 10:49 AM	

+="CN62973"	"Lease - 98 - Lease of Property in NT"	="Australian Customs and Border Protection Service"	20-Feb-08	="Land leases"	01-Jul-07	31-May-10	94132.52	=""	="L J Hooker Darwin"	20-Feb-08 12:09 PM	

+="CN62977"	"Recruitment Services"	="Australian Taxation Office"	20-Feb-08	="Recruitment services"	20-Feb-08	15-May-08	253000.00	="06.042"	="DFP Recruitment Services Pty Ltd"	20-Feb-08 01:32 PM	

+="CN63002-A8"	" Electronic Sources of Business Information. "	="Australian Taxation Office"	20-Feb-08	="Library or documentation services"	01-Jul-07	31-Mar-12	193890.00	=""	="Morningstar Australasia Pty Limited"	20-Feb-08 03:05 PM	

+="CN63030"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	21-Feb-08	="Military rotary wing aircraft"	21-Feb-08	30-Jun-08	107117.59	=""	="SAAL"	21-Feb-08 10:34 AM	

+="CN63032"	"REPAIR AND OH OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	21-Feb-08	="Military rotary wing aircraft"	21-Feb-08	30-Jun-08	102450.52	=""	="SAAL"	21-Feb-08 10:39 AM	

+="CN63068"	"Supply of Whitegoods for ACT premises"	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	29-Feb-08	128334.80	=""	="Harvey Norman Commercial Division"	21-Feb-08 12:27 PM	

+="CN63080-A1"	" Fitout project - Melbourne "	="Office of the Director of Public Prosecutions"	21-Feb-08	="Building construction and support and maintenance and repair services"	25-Feb-08	30-Apr-09	222397.00	=""	="Harris Office Environments Pty Ltd"	21-Feb-08 12:30 PM	

+="CN63085-A2"	" To assess the outcomes for assessing operational feasibility of stereo video for use in the Southern Bluefin Tuna Fishery Farm Sector. (In collaboration with SeaGIS and the University of Western Australia) "	="Department of Agriculture Fisheries and Forestry"	21-Feb-08	="Management advisory services"	01-Dec-07	01-Aug-08	183163.00	=""	="Australian Southern Bluefin Tuna Association Ltd"	21-Feb-08 12:30 PM	

+="CN63155-A1"	" Provision of design develeopment, documentation, tendering, contract supervision and administration of refurbishment of the Chief Justice's Chambers and associated areas at the FCoA Melbourne Commonwealth Law Courts, 305 William Street Melbourne VIC 3000. "	="Family Court of Australia"	21-Feb-08	="Architect associations"	21-Feb-08	30-Jul-08	138061.00	=""	="Crosier Scott Architects pty ltd"	21-Feb-08 02:35 PM	

+="CN63156-A1"	" Dell Computer "	="Productivity Commission"	21-Feb-08	="Computers"	26-Sep-07	26-Sep-07	108000.00	=""	="Dell Computer Pty Ltd"	21-Feb-08 02:38 PM	

+="CN63171-A2"	" Australia Post - Postage services "	="Department of Resources Energy and Tourism"	21-Feb-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	18-Jul-08	97343.48	=""	="STRATEGIC DATA MANAGEMENT PTY LTD"	21-Feb-08 03:00 PM	

+="CN63179-A1"	"Placement Fees for Non Ongoing Employee"	="Department of Resources Energy and Tourism"	21-Feb-08	="Employment"	18-Jul-07	31-Jul-07	99900.00	=""	="TRADE AND MANAGEMENT CONSULTANTS AUST"	21-Feb-08 03:02 PM	

+="CN63187-A1"	"Mammalian Cell Facility Grant Invitation"	="Department of Resources Energy and Tourism"	21-Feb-08	="Marketing and distribution"	19-Jul-07	31-Jul-07	119900.00	=""	="INSTINCT AND REASON PTY LTD"	21-Feb-08 03:03 PM	

+="CN63189"	" NSN 2840/01-092-8378  PURCHASE OF HOUSING, REDUCTION GEAR, AIRCRAFT GAS TURBINE ENGINE EX GST "	="Defence Materiel Organisation"	21-Feb-08	="Military transport aircraft"	04-Jul-06	12-Nov-07	80000.00	=""	="Flite Path Pty Ltd"	21-Feb-08 03:04 PM	

+="CN63191-A6"	"Property Lease Darwin NT"	="Australian Federal Police"	21-Feb-08	="Lease and rental of property or building"	26-Jan-06	30-Jun-11	87367.00	=""	="Darwin International Airport Pty Limited"	21-Feb-08 03:42 PM	

+="CN63260"	"Finance Services"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	17-Mar-08	250000.00	="FIN07/FMG002"	="MERCER (AUSTRALIA) PTY LTD"	22-Feb-08 02:46 PM	

+="CN63265"	"Security Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-May-08	143316.88	="N/A"	="OAKTON AA SERVICES PTY LTD"	22-Feb-08 02:47 PM	

+="CN63281-A1"	"Provision of executive coaching"	="Australian Federal Police"	22-Feb-08	="Assessment resource books"	22-Feb-08	30-Jun-08	147635.00	="APS Commission 2005/014"	="The Teleran Group"	22-Feb-08 03:42 PM 

--- /dev/null
+++ b/admin/partialdata/18May2008to20May2008valto.xls
@@ -1,1 +1,538 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN84807"	" 1. 9150 66-089-6558 Engine Lubricating Oil OMD-115 200x20L Drums  2. 9150 66-083-9744 Air Compressor Lubricating Oil om-58 10x20L Drums    "	="Defence Materiel Organisation"	19-May-08	="Lubricants and oils and greases and anti corrosives"	26-Mar-08	02-Apr-08	13112.00	=""	="CALTEX"	19-May-08 07:57 AM	

+="CN84808"	" 9150 66-153-6330 Gear Lubricating Oil  Opti Gear BM100  30x18KG Drums       "	="Defence Materiel Organisation"	19-May-08	="Lubricants and oils and greases and anti corrosives"	27-Mar-08	03-Apr-08	15702.06	=""	="CASTROL"	19-May-08 08:10 AM	

+="CN84809"	" 9150 66-133-3214 Engine Lubricating Oil Multigrade SAE in205L  Pumred supply 21 DRx205L to RAN vessel "	="Defence Materiel Organisation"	19-May-08	="Lubricants and oils and greases and anti corrosives"	27-Mar-08	28-Mar-08	12343.02	=""	="CALTEX"	19-May-08 08:24 AM	

+="CN84811"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	19-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-May-08	15-Jul-08	39028.23	=""	="Land Rover AUSTRALIA"	19-May-08 08:48 AM	

+="CN84812"	"Endeavour Seminars in Sydney 17/4/08"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	30-Jun-08	13220.00	="PRN18771"	="THE MENZIES HOTEL"	19-May-08 08:52 AM	

+="CN84813"	"PRISMS On-Line Training - Needs Analysis"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	20-Mar-08	20-Jun-08	34375.00	="PRN18747"	="Corporate Diagnostics pty ltd"	19-May-08 08:52 AM	

+="CN84814"	"Progression in and attrition from Science, Technol"	="Department of Education Employment and Workplace Relations"	19-May-08	="Engineering and Research and Technology Based Services"	28-Mar-08	30-May-08	15730.00	="PRN18456"	="NATIONAL CENTRE FOR VOCATIONAL"	19-May-08 08:52 AM	

+="CN84815"	"Study in Australia advertising in Hobsons Guide"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	21-Dec-07	31-Dec-08	30107.00	="PRN18515"	="HOBSONS AUSTRALIA PTY LIMITED"	19-May-08 08:52 AM	

+="CN84816"	"AEI Industry Forum 2008: engagment of facilitator"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Jun-08	11550.00	="PRN18960"	="CSE CENTRE FOR STRATEGIC EDUC"	19-May-08 08:52 AM	

+="CN84817"	"Development of Endeavour Awards materials"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	03-Apr-08	30-Jun-08	20000.00	="PRN19096"	="EQUATION CORPORATE DESIGN"	19-May-08 08:53 AM	

+="CN84818"	"Certificate IV in Government (Statutory Compliance"	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	03-Mar-08	30-Jun-08	16000.00	="PRN18578"	="SYDNEY INSTITUTE OF PROFFESIONAL"	19-May-08 08:53 AM	

+="CN84819"	"Wellington Group Forum Dinner and Cruise"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	03-Dec-08	11900.00	="PRN19191"	="MAGISTIC CRUISES"	19-May-08 08:53 AM	

+="CN84820"	"Hire of Clifton's IT Training Facilities in Sydney"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	10820.70	="PRN18768"	="CLIFTON OPERATIONS PTY LIMITED"	19-May-08 08:53 AM	

+="CN84821"	"Hire of Clifton's IT Training Facilities in Melbourne"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	30-Jun-08	16100.70	="PRN18770"	="CLIFTON OPERATIONS PTY LIMITED"	19-May-08 08:53 AM	

+="CN84825"	"Administration Fee for Indigenous Contract Management"	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	10-Apr-08	30-Jun-08	11000.00	="PRN19170"	="DEWR"	19-May-08 08:58 AM	

+="CN84826"	"The Australian and New Zealand School of Government"	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	15-Jan-08	30-May-08	40000.00	="PRN18926"	="AUSTRALIA and NEW ZEALAND SCHOOL"	19-May-08 08:58 AM	

+="CN84827-A1"	"Fit out DEST Griffith premises"	="Department of Education Employment and Workplace Relations"	19-May-08	="General building construction"	29-Feb-08	27-Jun-08	156541.00	="PRN18699"	="GRAHAM J DEANE BUILDING SERVICES"	19-May-08 09:01 AM	

+="CN84828"	"Training"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	15-May-08	15-May-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY"	19-May-08 09:04 AM	

+="CN84829"	"computer training course"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	15-May-08	30-May-08	28160.00	=""	="IBM AUSTRALIA LIMITED"	19-May-08 09:04 AM	

+="CN84830"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	15-May-08	18-May-09	179150.40	=""	="ICON RECRUITMENT"	19-May-08 09:04 AM	

+="CN84831"	"IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	14-May-08	18-Nov-08	150440.40	="RFT 004-2008"	="TALENT INTERNATIONAL"	19-May-08 09:04 AM	

+="CN84832"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	14-May-08	25-May-09	119433.60	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	19-May-08 09:04 AM	

+="CN84833"	"TRAINING SERVICES"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	16-May-08	16-May-08	10472.00	=""	="COGNOS PTY LTD"	19-May-08 09:04 AM	

+="CN84834"	"Development of Pricing Model for MNS RFT"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	16-May-08	31-Jan-09	275220.00	=""	="EVANS & PECK"	19-May-08 09:04 AM	

+="CN84835"	"RFT 013-2008 IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	16-May-08	01-Jun-09	205920.00	=""	="ELITE IT PTY LTD"	19-May-08 09:05 AM	

+="CN84836"	"Photographic Equipment"	="Australian Taxation Office"	19-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-May-08	30-May-08	26793.90	=""	="Nikon On Broadway"	19-May-08 09:05 AM	

+="CN84837"	"x110 GN9350 Headset Purchase for MEI Client servic"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	16-May-08	30-Jun-08	43560.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	19-May-08 09:05 AM	

+="CN84838"	"Hecs Fees for 1 cadet"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	09-May-08	19580.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	19-May-08 09:05 AM	

+="CN84839"	"NEW BUSINESS PRODUCT TESTING"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	16-May-08	11436.00	=""	="Q&A MARKET RESEARCH"	19-May-08 09:05 AM	

+="CN84840"	"Hecs Fees for 1 cadet"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	09-May-08	19580.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	19-May-08 09:05 AM	

+="CN84841"	"AGS LEGAL TRAINING PROGRAM"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	05-May-08	09-May-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITORS"	19-May-08 09:05 AM	

+="CN84842"	"Hecs Fees for 1 cadet"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	09-May-08	19580.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	19-May-08 09:05 AM	

+="CN84843"	"CAREER DEVELOPMENT ASSESSMENT CENTRE PROGRAM"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	05-May-08	09-May-08	11825.00	=""	="Australian Public Service"	19-May-08 09:05 AM	

+="CN84844"	"Hecs Fees for 1 cadet"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	09-May-08	19580.00	=""	="GLOBAL ONLINE LEARNING PTY LTD"	19-May-08 09:05 AM	

+="CN84845"	"12 CADETS FEES"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	24-Apr-08	07-May-08	78471.09	=""	="UNIVERSITY OF NSW"	19-May-08 09:05 AM	

+="CN84846"	"45 x CHAIRS & 3 x LOUNGES FOR OFFICE"	="Australian Taxation Office"	19-May-08	="Furniture and Furnishings"	06-May-08	06-May-08	24128.11	=""	="STURDY COMPONENTS PTY LTD"	19-May-08 09:05 AM	

+="CN84847"	"CONSULTATION"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	07-May-08	17197.40	=""	="SPACETIME RESEARCH PTY LTD"	19-May-08 09:06 AM	

+="CN84848"	"PABX interface cards for the Genesys Hold project."	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	13-May-08	30-Jun-08	19690.00	=""	="NEC AUSTRALIA PTY LTD"	19-May-08 09:06 AM	

+="CN84850"	"RFT 001-2008 IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	12-May-08	12-Nov-08	202892.80	=""	="AFFINITY IT RECRUITMENT PTY LTD"	19-May-08 09:06 AM	

+="CN84851"	"IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	09-May-08	11-May-09	332924.80	="RFT 016-2008"	="DIVERSITI PTY LTD"	19-May-08 09:06 AM	

+="CN84852"	"Hardware & equipment for design services."	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	08-May-08	30-Jun-08	109450.00	=""	="APPLECENTRE MAC 1"	19-May-08 09:06 AM	

+="CN84853"	"7 ongoing ADSL accounts for 07/08 F/Y"	="Australian Taxation Office"	19-May-08	="Management and Business Professionals and Administrative Services"	03-Jul-07	30-Jun-08	12999.00	=""	="TELSTRA"	19-May-08 09:06 AM	

+="CN84854"	"Mastering the requirements Process course 4 attendees"	="Australian Taxation Office"	19-May-08	="Education and Training Services"	14-Jan-08	07-May-08	10340.00	=""	="SOFTWARE EDUCATION AUSTRALIA P/L"	19-May-08 09:06 AM	

+="CN84855"	"RFT 012-2007 IT Contractor Extension"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	15-May-08	15-Nov-08	200005.80	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	19-May-08 09:07 AM	

+="CN84856"	"IT Contractor"	="Australian Taxation Office"	19-May-08	="Engineering and Research and Technology Based Services"	14-May-08	14-May-09	187200.00	="RFT 010-2007."	="COMPAS PTY LTD"	19-May-08 09:07 AM	

+="CN84858"	"White Pages Directory entries for DEEW for 2007-08"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	01-Jul-07	30-Jun-08	1017228.30	="PRN16753"	="TELSTRA CORPORATION LTD"	19-May-08 09:08 AM	

+="CN84859-A1"	"Design and document fitout L20/477 Pitt St Sydney"	="Department of Education Employment and Workplace Relations"	19-May-08	="General building construction"	13-Aug-07	28-Dec-07	10116.68	="PRN16512"	="GECHAWELL PTY LTD"	19-May-08 09:08 AM	

+="CN84860"	"Graduate Relocation 2008"	="Department of Education Employment and Workplace Relations"	19-May-08	="Human resources services"	10-Jan-08	31-Jul-08	30000.00	="PRN18874"	="Wridgways Ltd"	19-May-08 09:08 AM	

+="CN84861"	"Power and Cabling invoices for National Office 2007/2008"	="Department of Education Employment and Workplace Relations"	19-May-08	="Building and Construction and Maintenance Services"	01-Apr-08	01-Sep-08	45000.00	="PRN19053"	="INTRAVISION PTY LTD"	19-May-08 09:08 AM	

+="CN84862"	"Personal Efficiency@Outlook program 4 Day Inhouse"	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	16-Apr-08	30-Jun-08	13200.00	="PRN19298"	="D'ARCY CONSULTING GROUP PTY LTD"	19-May-08 09:09 AM	

+="CN84863"	"Office Furniture for National Office"	="Department of Education Employment and Workplace Relations"	19-May-08	="General building construction"	01-Jan-08	30-May-08	10310.30	="PRN19303"	="CITE OFFICE DESIGN PTY LIMITED"	19-May-08 09:09 AM	

+="CN84864-A1"	"DEEWR branded Water bottles"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	07-Mar-08	30-Jun-08	5727.19	="PRN18835"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	19-May-08 09:09 AM	

+="CN84865"	"Additional SuperSTAR and SuperCROSS license"	="Department of Education Employment and Workplace Relations"	19-May-08	="Computer Equipment and Accessories"	06-Mar-08	30-Jun-08	15400.00	="PRN18802"	="SPACE-TIME RESEARCH PTY LTD"	19-May-08 09:10 AM	

+="CN84866"	"Intrusion Prevention Software"	="Department of Education Employment and Workplace Relations"	19-May-08	="Computer Equipment and Accessories"	22-Apr-08	30-Jun-08	12724.58	="PRN19363"	="Dimension Data Australia Pty Ltd"	19-May-08 09:10 AM	

+="CN84867"	"Canon 9080C Scanner"	="Department of Education Employment and Workplace Relations"	19-May-08	="Office machines and their supplies and accessories"	23-Apr-08	30-Jun-08	12134.65	="PRN19386"	="Dataflex Pty Ltd"	19-May-08 09:10 AM	

+="CN84868"	"12x Verisign Certificate"	="Department of Education Employment and Workplace Relations"	19-May-08	="Computer Equipment and Accessories"	02-Apr-08	30-Jun-08	15840.00	="PRN19090"	="VERISIGN AUSTRALIA LIMITED"	19-May-08 09:10 AM	

+="CN84869"	"Intrusion Prevention Maintenance Renewal"	="Department of Education Employment and Workplace Relations"	19-May-08	="Computer Equipment and Accessories"	28-Apr-08	30-Jun-08	41821.30	="PRN19429"	="Dimension Data Australia Pty Ltd"	19-May-08 09:10 AM	

+="CN84870"	"Checkpoint Software Maintenance"	="Department of Education Employment and Workplace Relations"	19-May-08	="Computer Equipment and Accessories"	26-Mar-08	30-Jun-08	79786.00	="PRN18939"	="Dimension Data Australia Pty Ltd"	19-May-08 09:10 AM	

+="CN84871"	"Knowledge Management"	="Department of Education Employment and Workplace Relations"	19-May-08	="Human resources services"	10-Mar-08	29-Aug-08	40000.00	="PRN18636"	="KNOWABLE"	19-May-08 09:18 AM	

+="CN84872"	"Leadership Development Program"	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	11-Mar-08	30-Sep-08	38900.00	="PRN18990"	="MERCER (AUSTRALIA) PTY LTD"	19-May-08 09:19 AM	

+="CN84873"	"Corporate Communication Contract Staff"	="Department of Education Employment and Workplace Relations"	19-May-08	="Human resources services"	08-Feb-08	30-Jun-08	30000.00	="PRN17660"	="TMP/HUDSON GLOBAL RESOURCES"	19-May-08 09:19 AM	

+="CN84875"	"Office for Early Childhood Education and Child Car"	="Department of Education Employment and Workplace Relations"	19-May-08	="Printed media"	09-Apr-08	30-Jun-08	69150.00	="PRN19167"	="MARCUS FILLINGER"	19-May-08 09:20 AM	

+="CN84877-A1"	"Private Tuition Coordinator for An Even Start # National Tuition Program"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	18-Feb-08	31-Jan-09	2250000.00	="PRN16851"	="CURRICULUM CORPORATION"	19-May-08 09:20 AM	

+="CN84878"	"Audit and Moderation Workshop"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	10-Apr-08	11-Apr-08	13200.00	="PRN17936"	="LABYRINTH CONSULTANCY (TAS) PTY LTD"	19-May-08 09:26 AM	

+="CN84879-A2"	"Development and Management of Skills and Training"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	01-Apr-08	31-Dec-09	472654.60	="PRN19070"	="INDUSTRY TRAINING AUSTRALIA PTY LTD"	19-May-08 09:26 AM	

+="CN84880"	"Venue Hire Rydges Swanson St, Pest and Weed Meetin"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	26-Jun-08	14000.00	="PRN18787"	="CARLTON UNIT TRUST"	19-May-08 09:27 AM	

+="CN84881"	"Venue Hire Rydges Swanson St, Melbourne, Shotfirer"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	26-Jun-08	14000.00	="PRN18788"	="CARLTON UNIT TRUST"	19-May-08 09:27 AM	

+="CN84882-A1"	"AQTF 2007 Research and Advice"	="Department of Education Employment and Workplace Relations"	19-May-08	="Trade shows and exhibits"	27-Aug-07	30-Jun-08	35100.01	="PRN16521"	="LISTA"	19-May-08 09:27 AM	

+="CN84883"	"Study into the Enhancement of the AQF"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	09-Apr-08	29-Aug-08	113822.00	="PRN18029"	="UNIVERSITY OF MELBOURNE"	19-May-08 09:27 AM	

+="CN84884"	"Australian Flexible Learning Framework - 2008 revi"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	07-Apr-08	30-Jun-08	49800.00	="PRN18942"	="NOUS"	19-May-08 09:27 AM	

+="CN84885"	"Fee For Service Policy Framework Update"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	18-Jun-08	24500.00	="PRN19292"	="OAKTON SERVICES PTY LIMITED"	19-May-08 09:28 AM	

+="CN84886"	"AEI and Universities of Australia International Planning Day"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Apr-08	21000.00	="PRN17957"	="NOUS"	19-May-08 09:29 AM	

+="CN84887"	"Moderation project"	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	26-Jun-08	17600.00	="PRN18355"	="LABYRINTH CONSULTANCY (TAS) PTY LTD"	19-May-08 09:29 AM	

+="CN84888-A1"	"Finalisation of ELICOS National Standards"	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	14-Mar-08	30-Nov-08	42788.00	="PRN18809"	="DJ and MJ FOREMAN FAMILY TRUST"	19-May-08 09:29 AM	

+="CN84889"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	05-Feb-08	05-Feb-08	10431.83	=""	="Qantas Airways"	19-May-08 09:31 AM	

+="CN84893"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	05-Feb-08	05-Feb-08	12238.82	=""	="Qantas Airways"	19-May-08 09:46 AM	

+="CN84894"	"Supply of Bosh alternators, NSN 2920-66-128-6038, 97 QTY."	="Defence Materiel Organisation"	19-May-08	="War vehicles"	24-Apr-08	19-May-08	25068.10	=""	="LAND ROVER AUSTRALIA"	19-May-08 09:47 AM	

+="CN84895"	" Personal Efficiency@Outlook program 4 Day Inhouse Training Course "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	09-Apr-08	30-Jun-08	13200.00	="PRN19174"	="D'Arcy Consulting group Pty Ltd"	19-May-08 09:49 AM	

+="CN84896"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	05-Feb-08	05-Feb-08	15061.62	=""	="Qantas Airways"	19-May-08 09:49 AM	

+="CN84897"	"Sun 6140 Disk Expansion + Gold Maintenance + 1yr Support"	="Australian Securities and Investments Commission"	19-May-08	="Components for information technology or broadcasting or telecommunications"	05-Nov-07	05-Nov-07	32362.00	=""	="MCR Computing Resources Pty Ltd"	19-May-08 09:52 AM	

+="CN84898"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	01-Apr-08	31-May-08	26488.00	=""	="SVH Computing Pty Ltd"	19-May-08 10:08 AM	

+="CN84899"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	27-Feb-08	27-Feb-08	10233.61	=""	="Qantas Airways"	19-May-08 10:11 AM	

+="CN84902"	" Certificate IV in Government (Statutory Compliance) "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	08-Apr-08	30-Jun-08	16000.00	="PRN19165"	="SYDNEY INSTITUTE OF PROFFESIONAL T/A STUDIES PTY LIMITED"	19-May-08 10:12 AM	

+="CN84903"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	04-Mar-08	04-Mar-08	12747.46	=""	="Qantas Airways"	19-May-08 10:14 AM	

+="CN84904"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	04-Mar-08	04-Mar-08	13423.28	=""	="Qantas Airways"	19-May-08 10:17 AM	

+="CN84905"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	11-Mar-08	11-Mar-08	13292.16	=""	="Qantas Airways"	19-May-08 10:21 AM	

+="CN84906"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	16-Mar-08	16-Mar-08	10228.55	=""	="Qantas Airways"	19-May-08 10:30 AM	

+="CN84907"	" Delaney and Associates "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	17-Apr-08	30-Jun-08	16170.00	="PRN19310"	="DELANEY and ASSOCIATES T/A DELANEY and ASSOCIATES PTY LTD"	19-May-08 10:32 AM	

+="CN84908"	" Spectrum Analyzer "	="Defence Materiel Organisation"	19-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	16-May-08	30-Jun-08	108263.41	=""	="ANRITSU"	19-May-08 10:35 AM	

+="CN84910"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	16-Mar-08	16-Mar-08	10228.55	=""	="Qantas Airways"	19-May-08 10:36 AM	

+="CN84911"	" Career Advice Australia (CAA) State Conferences "	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	72200.00	="PRN18656"	="FOUR POINTS HOTEL SYDNEY"	19-May-08 10:37 AM	

+="CN84912"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	25-Mar-08	25-Mar-08	10528.52	=""	="Qantas Airways"	19-May-08 10:40 AM	

+="CN84913"	" Career Advice Australia (CAA) State Conferences "	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	60000.00	="PRN18656"	="THE LAKES RESORT HOTEL"	19-May-08 10:41 AM	

+="CN84914"	"Contract for the provision of Information Technology Services - Application Team Leader"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	03-Jan-08	31-Mar-08	36608.00	=""	="Wordfields Consulting Pty Ltd"	19-May-08 10:43 AM	

+="CN84915"	"Upgrade/Repairs to property at Jabiru"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="General building construction"	06-May-08	30-Jun-08	17146.80	="0708-1366"	="Kakadu Contracting"	19-May-08 10:43 AM	

+="CN84916"	"Sponsorship Australian Rangelands Society Conference"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	06-May-08	31-May-08	11000.00	="0708-1353"	="Australian Rangeland Society"	19-May-08 10:43 AM	

+="CN84917"	"Services Relating to the HOsting of East Asian Australian Flyway Partnership Secretariat"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	06-May-08	16-Jan-09	63052.00	="0708-1193"	="Wetlands International Oceania"	19-May-08 10:43 AM	

+="CN84918"	"strategy to enhance environment performance of regional fisheries management organisations"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	06-Jun-08	23100.00	="0708-1355"	="Shellack"	19-May-08 10:43 AM	

+="CN84919"	"Department Leadship Development Program"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	09-May-08	77238.00	="0708-1308"	="Craigieburn Resort Pty Ltd"	19-May-08 10:44 AM	

+="CN84920-A1"	"Replace kitchens in two Jabiru properties"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="General building construction"	07-May-08	30-Jun-08	94600.00	="0708-1339"	="McKinnon Cabinet Makers Pty Ltd"	19-May-08 10:44 AM	

+="CN84922"	"Design costs Office extension"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="General building construction"	08-May-08	30-Jun-08	41807.26	="0708-908"	="RND Architects Pty Ltd"	19-May-08 10:44 AM	

+="CN84923"	"AUSTRALIA POST ACCOUNT FOR APRIL"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Transportation and Storage and Mail Services"	08-May-08	31-May-08	25666.09	="0708-1379"	="Australia Post"	19-May-08 10:44 AM	

+="CN84924"	"Retrieval of Arts files from offsite storage  facility"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Transportation and Storage and Mail Services"	08-May-08	30-Jun-08	30000.00	="0708-1305"	="Dept of Communications Information"	19-May-08 10:44 AM	

+="CN84925"	"Creation of conservation advices for EPBC Act listed threatened species"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	08-May-08	26-Sep-08	62400.00	="0708-1182"	="Royal Botanic Gardens"	19-May-08 10:44 AM	

+="CN84926"	"Chemical Consultancy Services"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Environmental Services"	08-May-08	30-Jun-08	26570.00	="0708-1385"	="Australian Environment"	19-May-08 10:44 AM	

+="CN84927"	"Development of Caring for our Country online and electronic application form"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	09-May-08	19-May-08	65000.00	="0708-1380"	="SRA Information Technology"	19-May-08 10:45 AM	

+="CN84928"	"Feasibility study into more efficient handling of test reports for WELS products"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Water resources development and oversight"	22-Apr-08	20-Jun-08	14850.00	="0708-1261"	="Oakton Services Pty Ltd"	19-May-08 10:45 AM	

+="CN84930-A1"	"Stage 2 of the Indoor Air Study"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Entertainment services"	14-May-08	17-Jun-09	902303.00	="0708-967"	="CSIRO Marine Research"	19-May-08 10:45 AM	

+="CN84931"	"Information products for conference sevices"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Advertising"	14-May-08	01-Jun-08	11093.50	="0708-1446"	="INSIGNIA EMBROIDERY DESIGN"	19-May-08 10:45 AM	

+="CN84933"	"Custom fitout of packing boxes"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Public Utilities and Public Sector Related Services"	30-Apr-08	23-May-08	13629.00	="0708-970"	="Trustee for Foster Ingpen Trust T/a"	19-May-08 10:45 AM	

+="CN84929-A1"	"Venue Hire for Training Course"	="Australian Federal Police"	19-May-08	="Education and Training Services"	27-May-08	06-Jun-08	44777.00	=""	="Novotel Brisbane"	19-May-08 10:46 AM	

+="CN84935-A1"	"SAP Strategy Stage III- Go Live Support"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	687541.26	="0708-1284"	="Phase III Solutions Pty Ltd"	19-May-08 10:46 AM	

+="CN84936"	"Review - Capacity Building, Indigenous Broadcasting Program"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	28-May-08	44000.00	="0708-902"	="McGrath Nicol & Partners"	19-May-08 10:46 AM	

+="CN84934"	" Career Advice Australia (CAA) State Conferences "	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	92750.00	="PRN18656"	="GOLD COAST INTERNATIONAL HOTEL"	19-May-08 10:46 AM	

+="CN84939"	"Conservation assessment redevelopment"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Public Utilities and Public Sector Related Services"	01-May-08	06-Jun-08	22782.00	="0708 - 1357"	="International Conservation Services"	19-May-08 10:46 AM	

+="CN84941"	"Economic Modelling of a Resale Royalty Scheme"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-May-08	66000.00	="0708-1002"	="ACCESS ECONOMICS"	19-May-08 10:47 AM	

+="CN84932"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	30-Mar-08	30-Mar-08	10251.43	=""	="Qantas Airways"	19-May-08 10:47 AM	

+="CN84942"	"Strategic Asset Management Plan"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Public Utilities and Public Sector Related Services"	01-May-08	30-Jun-08	64350.00	="0708-1120"	="Australis Facilities Management Pty"	19-May-08 10:47 AM	

+="CN84943"	"Upgrade/Repairs to property at Jabiru"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="General building construction"	06-May-08	30-Jun-08	34304.50	="0708-1365"	="Kakadu Contracting"	19-May-08 10:47 AM	

+="CN84944"	"Security Patrols"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Security and personal safety"	28-Apr-08	31-Dec-08	26000.00	="0708-1146"	="Chubb Security Personnel Pty Ltd"	19-May-08 10:47 AM	

+="CN84937"	"Repair of Radar TX Drive, CCA (2A12)"	="Defence Materiel Organisation"	19-May-08	="Military fixed wing aircraft"	19-May-08	19-May-09	96700.00	=""	="Raytheon Australia"	19-May-08 10:47 AM	

+="CN84945"	"Database Package 2008/2009"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Electronic reference material"	01-Feb-08	31-Jan-09	18590.00	="0708-1334"	="Ebsco Aust Subscription Services"	19-May-08 10:47 AM	

+="CN84946"	"ADVERTISING FOR ROUND 2 COMMUNITY WATER GRANTS"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Advertising"	29-Apr-08	31-May-08	40000.00	="0708-1309"	="HMA Blaze Pty Ltd"	19-May-08 10:48 AM	

+="CN84947"	"Provision of Research into the Structure Options for public affairs"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Published Products"	30-Apr-08	30-May-08	11150.06	="0708-1342"	="Mary Dickie Issues Management Pty L"	19-May-08 10:48 AM	

+="CN84948"	"External review to examine the most efficient way for the Murray Darling Basin Authority to perform"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Water resources development and oversight"	30-Apr-08	31-May-08	160000.00	="0708-1188"	="Allen Consulting Group"	19-May-08 10:48 AM	

+="CN84949-A1"	"Recruitment services for a Deaprtment position"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Water resources development and oversight"	30-Apr-08	31-Dec-08	47848.89	="0708-1343"	="Hays Specialist Recruitment"	19-May-08 10:48 AM	

+="CN84940"	"Voltmeter 24 VDC - ASLAV"	="Department of Defence"	19-May-08	="Armoured fighting vehicles"	16-May-08	05-Nov-08	26037.75	=""	="GENERAL DYNAMICS LAND SYSTEMS"	19-May-08 10:48 AM	

+="CN84950"	"Development of full training package for undertaking assessment under EPBC Act"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	31-May-08	66000.00	="0708-1129"	="Eco Logical Australia"	19-May-08 10:48 AM	

+="CN84951"	"Check testing dishwashers and refrigerators"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	23-May-08	32540.00	="0708-1198"	="VIPAC Engineers and Scientists"	19-May-08 10:48 AM	

+="CN84952"	"Habitat & distribution mapping for vulnerable Western Ringtail Possum Albany region WA"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	01-May-08	09-Jun-08	20000.00	="0708-974"	="Department of Environment & Conserv"	19-May-08 10:48 AM	

+="CN84953-A1"	"Reporting on effectiveness of move to 10 Star Energy Efficiency Label"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	25-Jun-08	30470.00	="0708-1316"	="Winton Sustainable"	19-May-08 10:48 AM	

+="CN84954"	"Installation of an  additional Air Conditioner for a Sever Room"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	16-May-08	76560.00	="0708-1267"	="Integrated Technical Management"	19-May-08 10:49 AM	

+="CN84955"	"Services relating to the review of CEI's to  incorporate the arts division functions"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	50000.00	="0708-1273"	="Michelle Minaroy Pty Ltd"	19-May-08 10:49 AM	

+="CN84956"	"Expert survey Services for road side vegetation  in Queensland"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	01-May-08	19-May-08	13326.40	="0708-1108"	="E.A. Systems Pty. Ltd."	19-May-08 10:49 AM	

+="CN84957"	"Review and update of residential hot water systems."	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	49500.00	="0708-1218"	="Energy  Strategies Pty Ltd"	19-May-08 10:49 AM	

+="CN84958"	"Independent expert advice on current environment assessment Guthalungra aquaculture project"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	02-May-08	30-Jun-08	35000.00	="0708-1167"	="CSIRO Accounts Receivable"	19-May-08 10:49 AM	

+="CN84959"	"Independent Riverine Ecology Specialist"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	02-May-08	30-Jun-08	19680.00	="0708-778"	="Griffith University"	19-May-08 10:49 AM	

+="CN84960"	"Legal advice for 10 Star Energy efficiency Rating"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	33000.00	="0708-1356"	="Clayton Utz"	19-May-08 10:49 AM	

+="CN84961"	"Independent expert review information  relating to protected species"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Engineering and Research and Technology Based Services"	05-May-08	30-Jun-08	27611.00	="0708-1054"	="Keith Forbes Walker T/as KFW Consul"	19-May-08 10:49 AM	

+="CN84962"	"National Pollutant Inventory development for April 2008"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Information services"	05-May-08	05-May-08	25977.51	="0708-1176"	="Dialog Information Technology"	19-May-08 10:49 AM	

+="CN84963"	"Development of Capability Framework"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	26928.00	="0708-1370"	="Oakton AA Services Pty Limited"	19-May-08 10:50 AM	

+="CN84964"	"Development of Capability Statements"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Management and Business Professionals and Administrative Services"	06-May-08	30-Jun-08	62084.00	="0708-1369"	="Oakton AA Services Pty Limited"	19-May-08 10:50 AM	

+="CN84965"	"Update National Pollutant Inventory airports manual"	="Department of the Environment Water Heritage and the Arts"	19-May-08	="Pollutants tracking and monitoring and rehabilitation services"	06-May-08	30-Jun-08	25740.00	="0708-1266"	="Environ Australia Pty Ltd"	19-May-08 10:50 AM	

+="CN84967"	" Stragiea advising Pty Ltd "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	17-Apr-08	30-Jun-08	29100.00	="PRN19304"	="Strategia Advising Pty Ltd"	19-May-08 10:51 AM	

+="CN84969"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	30-Mar-08	30-Mar-08	10251.43	=""	="Qantas Airways"	19-May-08 10:56 AM	

+="CN84970"	" National Curriculum Board - Subject Specific Forum "	="Department of Education Employment and Workplace Relations"	19-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	28-Jun-08	26700.00	="PRN19325"	="Hilton Melbourne Airport"	19-May-08 10:57 AM	

+="CN84971"	"Repair of Freq/Synth, CCA (2A13)"	="Defence Materiel Organisation"	19-May-08	="Military fixed wing aircraft"	19-May-08	03-May-09	89500.00	=""	="Raytheon Australia"	19-May-08 10:59 AM	

+="CN84972"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	30-Mar-08	30-Mar-08	10307.20	=""	="Qantas Airways"	19-May-08 11:03 AM	

+="CN84973"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	01-Apr-08	31-May-08	34496.00	=""	="Sammes and Sammes Pty Ltd"	19-May-08 11:05 AM	

+="CN84974"	" An Even Start- National Tuition Programme- State/Territory/Sector Administrators "	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	21-Apr-08	31-Mar-09	20714916.00	="PRN17026"	="NSW DEPARTMENT OF EDUCATION AND TRAINING"	19-May-08 11:05 AM	

+="CN84976"	" Maura Fay Workshop 25th & 26th March 2008  "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	24-Apr-08	30-Jun-08	12100.00	="PRN19407"	="Maura Fay Productions"	19-May-08 11:09 AM	

+="CN84977"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	01-Apr-08	31-May-08	26488.00	=""	="Pilgrim Programmers Pty Ltd"	19-May-08 11:10 AM	

+="CN84978"	" Australian Skills Vouchers Programme Assesment Fees "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="VET TRAIN PTY LTD"	19-May-08 11:15 AM	

+="CN84980"	"Audit of the DHOAS"	="Department of Veterans' Affairs"	19-May-08	="Accounting and auditing"	01-May-08	03-Jul-08	40567.00	=""	="KPMG Australia"	19-May-08 11:16 AM	

+="CN84981"	"Consultation regarding painted infill on London, Australian War Memorial"	="Department of Veterans' Affairs"	19-May-08	="Building construction and support and maintenance and repair services"	13-May-08	13-May-09	36700.00	=""	="Chatfield Applied Research Labs"	19-May-08 11:17 AM	

+="CN84979"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	01-Apr-08	31-May-08	26488.00	=""	="P & D Consultancies Pty Ltd"	19-May-08 11:17 AM	

+="CN84982"	" Provision of Workshop Planning Services "	="Department of Immigration and Citizenship"	19-May-08	="Workshops"	17-Apr-08	01-May-08	11275.00	=""	="Nous Group Pty. Ltd."	19-May-08 11:20 AM	

+="CN84983"	" Australian Skills Vouchers Programme Assesment Fees "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="Housing Industry Association"	19-May-08 11:23 AM	

+="CN84984"	" Australian Skills Vouchers Programme Assesment Fees "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	01-Jan-07	22-Feb-10	11880.00	="PRN12579"	="Australian Vocational Training"	19-May-08 11:27 AM	

+="CN84985"	" Australian Skills Vouchers Programme Assesment Fees "	="Department of Education Employment and Workplace Relations"	19-May-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="Pow Wow Training"	19-May-08 11:30 AM	

+="CN84986"	"Provision of Training Program Services"	="Department of Immigration and Citizenship"	19-May-08	="Educational certificates or diplomas"	07-May-08	25-Jun-08	64834.00	=""	="Major Training Services Pty. Ltd"	19-May-08 11:34 AM	

+="CN84988"	" Website Content to Support the Implementation of the Australian Core Skills Framework "	="Department of Education Employment and Workplace Relations"	19-May-08	="Marketing and distribution"	01-Mar-08	30-Jun-08	35435.40	="PRN18608"	="Linda Wyse and Associates Pty Ltd"	19-May-08 11:37 AM	

+="CN84987"	"Contract for the provisioin of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	27-Feb-08	31-May-08	43972.00	=""	="Dragon House Consultants Pty Ltd"	19-May-08 11:37 AM	

+="CN84990"	"BAR, SERVICE RIBBON"	="Defence Materiel Organisation"	19-May-08	="Decorative ribbons"	13-Mar-07	14-Apr-07	43364.91	=""	="CASHS AUSTRALIA PTY LTD"	19-May-08 11:47 AM	

+="CN44659"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	19-May-08	="Drugs and Pharmaceutical Products"	23-Aug-07	30-Aug-07	14589.88	=""	="Clifford Hallam"	19-May-08 11:51 AM	

+="CN84992"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	26-Feb-08	31-May-08	25579.88	=""	="Dhata Holdings Pty Ltd"	19-May-08 11:52 AM	

+="CN84993"	"NSN 5340-66-121-2708, Support Ladder Handrail"	="Defence Materiel Organisation"	19-May-08	="Aerospace systems and components and equipment"	19-May-08	25-Mar-09	12580.40	=""	="Milspec Services Pty Ltd"	19-May-08 11:52 AM	

+="CN46645"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	19-May-08	="Medical Equipment and Accessories and Supplies"	09-Nov-07	21-Dec-07	15387.90	=""	="Smiths Medical Australasia Pty Ltd"	19-May-08 11:53 AM	

+="CN84994"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	28-Aug-07	25-Feb-08	18000.00	=""	="Dhata Holdings Pty Ltd"	19-May-08 11:56 AM	

+="CN47152"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	19-May-08	="Medical Equipment and Accessories and Supplies"	11-Oct-07	19-Oct-07	11303.89	=""	="Tyco Healthcare Pty Ltd"	19-May-08 11:59 AM	

+="CN84995"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	15-Jan-08	15-Jun-08	57200.00	=""	="Genesis IT Search Pty Ltd"	19-May-08 12:00 PM	

+="CN84996"	"Contract for the provision of Information Technology Services - Application Team Leader"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	01-Apr-08	31-May-08	24596.00	=""	="Wordfields Consulting Pty Ltd"	19-May-08 12:10 PM	

+="CN84997-A1"	"Provision of program management services"	="Australian Securities and Investments Commission"	19-May-08	="Information technology consultation services"	04-Oct-07	24-Dec-07	95700.00	=""	="Oakton Services Pty Ltd"	19-May-08 12:17 PM	

+="CN84998"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	02-Apr-08	02-Apr-08	17703.93	=""	="Qantas Airways"	19-May-08 12:18 PM	

+="CN84999"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	08-Apr-08	08-Apr-08	10413.35	=""	="Qantas Airways"	19-May-08 12:21 PM	

+="CN85002"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	08-Apr-08	08-Apr-08	10413.35	=""	="Qantas Airways"	19-May-08 12:27 PM	

+="CN85004"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	08-Apr-08	08-Apr-08	10481.66	=""	="Qantas Aiways"	19-May-08 12:29 PM	

+="CN85005"	"Airfare"	="Australian Prudential Regulation Authority (APRA)"	19-May-08	="Passenger air transportation"	23-Apr-08	23-Apr-08	10025.49	=""	="Qantas Airways"	19-May-08 12:32 PM	

+="CN25057"	"Lease of car park space at Trafalgar Carpark 108 - 110 Collins Street Hobart (GAPS ID: 1333944)"	="Department of Foreign Affairs and Trade"	19-May-08	="Real estate services"	01-Aug-03	31-Jul-13	19040.00	=""	="HERMAN ROCKEFELLER TRUST"	19-May-08 12:32 PM	

+="CN85003-A1"	"CA Software Maintenance"	="Australian Securities and Investments Commission"	19-May-08	="Temporary information technology software developers"	29-Jan-08	28-Jan-11	1718917.00	=""	="CA (Pacific) Pty Ltd"	19-May-08 12:34 PM	

+="CN85006"	"Hard copy subscriptions for Sydney, Adelaide. Perth and Hobart Information Resource Centres"	="Australian Securities and Investments Commission"	19-May-08	="Periodicals"	01-Jan-08	30-Jun-08	42220.12	=""	="Thomson Legal & Regulatory Ltd"	19-May-08 12:42 PM	

+="CN25011"	"Property lease of part of Level 17, Exchange Plaza, 2 The Esplanade, Perth WA 6000. The original gazettal 1111349 was incorrect. Total contract value is really $$3,826,288.81 (GAPS ID: 1425748)"	="Department of Foreign Affairs and Trade"	19-May-08	="Real estate services"	14-Dec-02	13-Dec-12	3668760.30	=""	="THE TRUSTEE FOR PERPETUAL TRUSTEE COMPANY LTD"	19-May-08 12:44 PM	

+="CN85007-A3"	"  Audio visual copyright licence fees  "	="Australian Federal Police"	19-May-08	="Audio visual services"	01-Jan-02	31-Dec-11	174000.00	=""	="Audio-Visual Copyright Society Limited (TA) Screenrights"	19-May-08 12:54 PM	

+="CN24368"	"Contract for the provision of motor vehicle fleet leasing and management services (Ref Standing Offer ID 12383) (GAPS ID: 1319281)"	="Department of Foreign Affairs and Trade"	19-May-08	="Management and Business Professionals and Administrative Services"	15-Jan-04	15-Jan-10	1245500.00	=""	="LEASE PLAN AUSTRALIA LTD"	19-May-08 12:57 PM	

+="CN20951-A3"	" Lease of Office Space - Sydney "	="Department of Foreign Affairs and Trade"	19-May-08	="Lease and rental of property or building"	01-Aug-01	31-Jul-11	4467090.89	=""	="AMP LIFE LIMITED"	19-May-08 12:59 PM	

+="CN11709"	"INSURANCE EXPENSES (GAPS ID: 1688717)"	="Department of Foreign Affairs and Trade"	19-May-08	="Insurance and retirement services"	14-Jun-07	13-Jun-08	122748.01	=""	="STRATEGIC PARTNERSHIPS HOLDINGS"	19-May-08 01:15 PM	

+="CN823"	"Recruitment Advertising (GAPS ID: 1690194)"	="Department of Foreign Affairs and Trade"	19-May-08	="Marketing and distribution"	24-Jul-07	27-Jul-07	13031.90	=""	="HMA BLAZE PTY LTD"	19-May-08 01:19 PM	

+="CN833"	"SOFTWARE LICENCE (GAPS ID: 1676298)"	="Department of Foreign Affairs and Trade"	19-May-08	="Computer services"	04-May-07	01-May-08	29062.00	=""	="OPEN SYSTEMS AUSTRALIA"	19-May-08 01:26 PM	

+="CN845"	"ADVERTISING EXPENSES (GAPS ID: 1688763)"	="Department of Foreign Affairs and Trade"	19-May-08	="Marketing and distribution"	26-Jun-07	10-Jul-07	18679.11	=""	="HMA BLAZE PTY LTD"	19-May-08 01:27 PM	

+="CN858"	"ADVERTISING EXPENSES (GAPS ID: 1689050)"	="Department of Foreign Affairs and Trade"	19-May-08	="Marketing and distribution"	13-Jul-07	27-Jul-07	23018.82	=""	="HMA BLAZE PTY LTD"	19-May-08 01:36 PM	

+="CN85008"	"Economic Research - MITTS Scoping Study"	="Australian Fair Pay Commission"	19-May-08	="Temporary research and development services"	23-Mar-08	30-Jun-08	15400.00	=""	="University of Melbourne"	19-May-08 02:06 PM	

+="CN85009"	"Records Authority Development"	="Australian Fair Pay Commission"	19-May-08	="Document management software"	21-Apr-08	21-Aug-08	35200.00	=""	="Clive Beeson"	19-May-08 02:20 PM	

+="CN85012"	"Purchase of Blackberry handsets"	="Family Court of Australia"	19-May-08	="Mobiles"	14-May-08	13-Jun-08	26072.20	=""	="Computer Ezy Pty Ltd"	19-May-08 02:27 PM	

+="CN85015"	" Upgrade existing Technology One Travel Module "	="Family Court of Australia"	19-May-08	="Software"	19-May-08	30-Jun-08	16104.00	=""	="Technology One"	19-May-08 02:38 PM	

+="CN49174"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	19-May-08	="Medical Equipment and Accessories and Supplies"	26-Nov-07	08-Jan-08	11283.20	=""	="Aaxis Pacific P/L"	19-May-08 02:52 PM	

+="CN85020"	"Purchase of replacement for Novell BorderManager"	="Family Court of Australia"	19-May-08	="Computer Equipment and Accessories"	19-May-08	18-Jun-08	92458.41	=""	="Open Systems Australia"	19-May-08 02:56 PM	

+="CN85023"	"Provision of Written Communication Course"	="Department of Immigration and Citizenship"	19-May-08	="Academic or scientific article writing"	09-May-08	30-Jun-08	13848.00	=""	="Effective People Pty Ltd"	19-May-08 03:28 PM	

+="CN85026"	"Provision of Training Modules"	="Department of Immigration and Citizenship"	19-May-08	="Developmental and professional teaching aids and materials and accessories and supplies"	02-Jun-08	30-Jun-08	13139.00	=""	="Alistair Henderson"	19-May-08 03:49 PM	

+="CN85027-A1"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	19-May-08	="Legal services"	22-Apr-08	30-Jun-08	60000.00	=""	="Thomas, David"	19-May-08 04:23 PM	

+="CN85030"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	19-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	13-May-08	30-Jun-08	184372.28	="0"	="ISIS PROJECTS PTY LTD"	19-May-08 05:02 PM	

+="CN85031"	"Fire Services Payment"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-09	7500000.00	=""	="NT POLICE, FIRE & EMERG SVCE"	19-May-08 05:02 PM	

+="CN85032"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	19-May-08	="Editorial and Design and Graphic and Fine Art Services"	22-Jun-07	30-Jun-08	30000.00	=""	="EQUATION CORPORATE DESIGN"	19-May-08 05:02 PM	

+="CN85033"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-May-08	38478.00	="0"	="MANPOWER SERVICES (AUST) P/L"	19-May-08 05:03 PM	

+="CN85034"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	27-Jun-08	80000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	19-May-08 05:03 PM	

+="CN85035"	"Recruitment Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-May-08	21280.00	="Finance Recruitment Panel"	="EFFECTIVE PEOPLE PTY LIMITED"	19-May-08 05:03 PM	

+="CN85036"	"Recruitment Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-May-08	21280.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	19-May-08 05:03 PM	

+="CN85037"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	31-Dec-08	114015.00	="N/A"	="EXCELIOR PTY LTD"	19-May-08 05:03 PM	

+="CN85038"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	16720.00	="N/A"	="PREDICATE PARTNERS PTY LTD"	19-May-08 05:03 PM	

+="CN85039"	"IT System Development Services"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	15-Apr-08	30-Apr-08	33859.98	="PR4950"	="CORPORATE EXPRESS AUSTRALIA LIMITED"	19-May-08 05:03 PM	

+="CN85040"	"IT System Development Services"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	15-Apr-08	15-May-08	15640.00	="PR5035"	="OAKTON AA SERVICES PTY LTD"	19-May-08 05:03 PM	

+="CN85041"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	19-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-Apr-08	30-Jun-08	22000.00	="0"	="LEXMARK INTERNATIONAL (AUST) PTY LTD"	19-May-08 05:03 PM	

+="CN85042"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	17-Apr-08	16-May-08	20262.00	="PO#3854"	="OPTUS DIRECT CREDITS"	19-May-08 05:04 PM	

+="CN85043"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	17-Apr-08	16-May-08	18831.67	="PO#5040"	="ZALLCOM PTY LTD"	19-May-08 05:04 PM	

+="CN85044"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-09	30000.00	="FIN 05CRP004-25"	="OAKTON AA SERVICES PTY LTD"	19-May-08 05:04 PM	

+="CN85045"	"IT Communication Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	13-Jun-08	18095.00	="0"	="DIVERSE DATA COMMUNICATIONS"	19-May-08 05:04 PM	

+="CN85046"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	28600.00	="FIN05CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	19-May-08 05:04 PM	

+="CN85047"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	24-Apr-08	30-May-08	30470.00	="0"	="MRB COMMUNICATIONS PTY LTD"	19-May-08 05:04 PM	

+="CN85048"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	24-Apr-08	30-May-08	32010.00	="0"	="DIVERSE DATA COMMUNICATIONS"	19-May-08 05:04 PM	

+="CN85049"	"Additional Construction Works"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	01-May-06	30-Apr-08	35000.00	="WEB SERVICES"	="OPC IT PTY LTD"	19-May-08 05:04 PM	

+="CN85050"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	01-Jun-07	30-Jun-08	76040.00	="WEB SERVICES"	="OPC IT PTY LTD"	19-May-08 05:04 PM	

+="CN85051"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	29-Apr-08	30-May-08	12864.50	=""	="ECOWISE SERVICES (AUSTRALIA) P/L"	19-May-08 05:05 PM	

+="CN85052"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	29-Apr-08	30-May-08	33550.00	="nil"	="AFC GROUP PTY LTD"	19-May-08 05:05 PM	

+="CN85053"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	06-Jun-08	18200.00	="FIN05CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	19-May-08 05:05 PM	

+="CN85054"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	29-Apr-08	29-May-08	44251.90	="po4833"	="PRECISION METALS QUEANBEYAN PTY LTD"	19-May-08 05:05 PM	

+="CN85055"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-08	30-Jun-09	37202.99	="Renewal"	="GRANGER PTY LTD"	19-May-08 05:05 PM	

+="CN85056"	"Communication Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	30-May-08	45535.78	=""	="JIM HENDRICKSON AND ASSOCIATES"	19-May-08 05:05 PM	

+="CN85057"	"Security Costs"	="Department of Finance and Deregulation"	19-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-May-08	30-Jun-08	159000.00	="0"	="ASSA ABLOY AUSTRALIA PTY LTD"	19-May-08 05:05 PM	

+="CN85058"	"Documentation Services"	="Department of Finance and Deregulation"	19-May-08	="Building and Construction and Maintenance Services"	01-Mar-08	30-Jun-08	26510.00	="n/a"	="CARDNO (NSW) PTY LTD"	19-May-08 05:05 PM	

+="CN85060"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	25-Mar-08	25-Apr-08	12870.00	="Modifications to templates"	="INDIGO PACIFIC"	19-May-08 05:05 PM	

+="CN85061"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	25-Apr-08	24-Apr-09	175000.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	19-May-08 05:06 PM	

+="CN85062"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	27-Jun-08	46000.00	="FIN 05CRP004-35"	="OAKTON AA SERVICES PTY LTD"	19-May-08 05:06 PM	

+="CN85059"	"Provision of Economic Analysis Services"	="Department of Immigration and Citizenship"	19-May-08	="Economic analysis"	07-Mar-08	11-Apr-08	99200.00	=""	="The Trustee for Access Economics Trust"	19-May-08 05:06 PM	

+="CN85063"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	27-Jun-08	22000.00	="FIN 05CRP004-35"	="OAKTON AA SERVICES PTY LTD"	19-May-08 05:06 PM	

+="CN85064"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	14-Nov-08	51458.88	="FIN05/FeS004"	="EFFECTIVE PEOPLE PTY LIMITED"	19-May-08 05:06 PM	

+="CN85065"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	09-May-08	30-May-08	280000.00	="FMIS - SAP"	="SAP AUSTRALIA P/L"	19-May-08 05:06 PM	

+="CN85066"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	12-Nov-08	30000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	19-May-08 05:06 PM	

+="CN85067"	"Legal Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	12-Jun-08	22461.30	="pr5019"	="INFRONT SYSTEMS PTY LTD"	19-May-08 05:06 PM	

+="CN85068"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	12-Jun-08	10086.05	="PO5167"	="INFRONT SYSTEMS PTY LTD"	19-May-08 05:07 PM	

+="CN85069"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	12-Jun-08	37217.58	="po5039"	="INFRONT SYSTEMS PTY LTD"	19-May-08 05:07 PM	

+="CN85070"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	12-Jun-08	10257.17	="po5116"	="CORPORATE EXPRESS AUSTRALIA LIMITED"	19-May-08 05:07 PM	

+="CN85071"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	12-Jun-08	51659.08	="PO4971"	="DELL COMPUTER PTY LIMITED"	19-May-08 05:07 PM	

+="CN85072"	"Memberships & Subscriptions Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	30-May-08	11000.00	="n/a"	="UNIVERSITY OF CANBERRA"	19-May-08 05:07 PM	

+="CN85073"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	19-May-08	="Engineering and Research and Technology Based Services"	15-May-08	13-Oct-08	265381.32	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	19-May-08 05:07 PM	

+="CN85074"	"Architectural Services"	="Department of Finance and Deregulation"	19-May-08	="Engineering and Research and Technology Based Services"	15-May-08	31-Dec-08	67002.20	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	19-May-08 05:07 PM	

+="CN85075"	"Contractor Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	01-Feb-10	275000.00	="N/A"	="HAYS PERSONNEL SERVICES"	19-May-08 05:07 PM	

+="CN85076"	"Consultancy Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	77000.00	="N/A"	="FIELDWARE PTY LTD"	19-May-08 05:07 PM	

+="CN85077"	"Business Advisory Services"	="Department of Finance and Deregulation"	19-May-08	="Education and Training Services"	09-May-08	30-May-08	12839.20	=""	="GROSVENOR MANAGEMENT CONSULTING"	19-May-08 05:08 PM	

+="CN85078"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-May-08	13000.00	="N/A"	="ADVISE CONSULTING PTY LTD"	19-May-08 05:08 PM	

+="CN85079"	"Consultancy Costs"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Apr-09	375000.00	="FIN07/FMG03"	="PRICEWATERHOUSECOOPERS- 833468126"	19-May-08 05:08 PM	

+="CN85080"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	21500.00	="N/A"	="PROTIVITI PTY LTD"	19-May-08 05:08 PM	

+="CN85081"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	13500.00	="n/a"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	19-May-08 05:08 PM	

+="CN85082"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	16000.00	="N/A"	="UNITED GROUP SERVICES - 559472295"	19-May-08 05:08 PM	

+="CN85083"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	19-May-08	="Management and Business Professionals and Administrative Services"	08-May-08	30-May-08	16500.00	="N/A"	="SWEENEY BUSINESS GROUP"	19-May-08 05:08 PM	

+="CN85084"	"Consultancy Costs"	="Department of Finance and Deregulation"	19-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Jun-08	77000.00	="CSB98/00067"	="MICROSOFT PTY LIMITED"	19-May-08 05:08 PM	

+="CN85085"	" SUPPLY OF ULTRASONIC UNIT & ACCESSORIES "	="Defence Materiel Organisation"	19-May-08	="Medical Equipment and Accessories and Supplies"	16-May-08	30-Jun-08	52580.00	=""	="SONOSITE AUSTRALASIA PTY LTD"	19-May-08 05:31 PM	

+="CN85086"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	12-May-08	01-Jun-08	11480.91	=""	="sikorsky aircraft australia ltd"	20-May-08 07:48 AM	

+="CN85087"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	28-May-08	02-Jun-08	11468.71	=""	="sikorsky aircraft australia ltd"	20-May-08 07:52 AM	

+="CN85088"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	12-May-08	01-Jun-08	11480.91	=""	="sikorsky aircraft aust ltd"	20-May-08 07:57 AM	

+="CN85090"	"IT Managed Services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Computer services"	21-Apr-08	30-Jun-12	15203955.00	="TRS08/003"	="ASG Group Limited"	20-May-08 09:20 AM	

+="CN85091"	"Legal Services Expenditure 6791"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	09-Apr-08	30-Jun-08	15400.00	="TRS06/175"	="DLA PHILLIPS FOX"	20-May-08 09:20 AM	

+="CN85092"	"Legal Services Expenditure 7140"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	02-Apr-08	30-Jun-08	13981.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	20-May-08 09:20 AM	

+="CN85093"	"Graphic design services for AACA scheme"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Graphic design"	09-May-08	30-Jun-08	100000.00	="TRS06/036"	="THE TRUSTEE FOR THE D & K FAMILY TR"	20-May-08 09:20 AM	

+="CN85095"	"Legal Services Expenditure 3556"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	15918.60	="TRS06/175"	="DLA PHILLIPS FOX"	20-May-08 09:20 AM	

+="CN85096"	"Advice on future fuel and vehicle technologies in Australia"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	25-Mar-08	30-Jun-08	24750.00	=""	="CSIRO"	20-May-08 09:20 AM	

+="CN85097"	"ICT APPRENTICESHIP PROGRAMME"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	01-Feb-08	28-Feb-10	230000.00	="TRS08/120"	="Excelior Pty Ltd"	20-May-08 09:21 AM	

+="CN85098"	"Temporary EL1 for three months"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Human resources services"	02-Apr-08	04-Jul-08	40000.40	=""	="CAREERS UNLIMITED PTY LTD"	20-May-08 09:21 AM	

+="CN85099"	"Service Desk Tool"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Computer services"	19-May-08	18-May-12	358600.00	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC"	20-May-08 09:21 AM	

+="CN85100"	"ENGAGE A CONSULTANT TO EVALUATE JPTE"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Security and personal safety"	13-May-08	30-Jun-08	59880.00	="TRS08/053"	="COGENT BUSINESS SOLUTIONS PTY LTD"	20-May-08 09:21 AM	

+="CN85101"	"Undertake Risk Workshops"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Business administration services"	01-May-08	30-Jun-08	16000.01	=""	="Deloitte Touche Tohmatsu"	20-May-08 09:21 AM	

+="CN85102"	"SCOT/TACE meeting at Westin Sydney on 20-21 May 08"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Hotels and lodging and meeting facilities"	20-May-08	21-May-08	12777.04	=""	="AUSCO MARTIN PTY LIMITED"	20-May-08 09:21 AM	

+="CN85103"	"Tas Freight Reforms: improved IT & administration of the Tasmanian Freight Subsidy Schemes."	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Public administration and finance services"	16-May-08	30-Jun-11	1232000.00	=""	="Centrelink"	20-May-08 09:21 AM	

+="CN85104"	"Trial of a system of int perf monit"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Specialised educational services"	12-May-08	30-Jun-08	46200.00	=""	="NOETIC SOLUTIONS PTY LTD"	20-May-08 09:21 AM	

+="CN85105"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	08-May-08	30-Jun-09	10530.88	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:22 AM	

+="CN85106"	"provision of scientific services for the air cargo security x-ray trial project"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Measuring and observing and testing instruments"	13-May-08	30-Jun-08	83210.01	=""	="AUSTRALIAN NUCLEAR SCIENCE &"	20-May-08 09:22 AM	

+="CN85107"	"Legal Service Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	09-May-08	30-Jun-09	12260.49	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:22 AM	

+="CN85108"	"Legal Services Expenditure 6995"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	07-May-08	30-Jun-09	10598.50	="TRS06/175"	="Clayton Utz Canberra"	20-May-08 09:22 AM	

+="CN85109"	"contractor services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	13-May-08	13-May-08	11000.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	20-May-08 09:22 AM	

+="CN85110"	"Legal Services Expenditure 6901 Legal Services Expenditure 6901"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	10367.50	="TRS06/175"	="Clayton Utz Canberra"	20-May-08 09:22 AM	

+="CN85111"	"Legal Services Expenditure 6847"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	08-May-08	30-Jun-09	27247.77	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:23 AM	

+="CN85112"	"Contract Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	19-May-08	30-Sep-08	42337.90	="TRS05/251"	="AMBIT GROUP PTY LTD"	20-May-08 09:23 AM	

+="CN85113"	"Legal Services Expenditure 6567"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	10076.81	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	20-May-08 09:23 AM	

+="CN85114"	"Consultant Fees"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Security surveillance and detection"	03-Apr-08	15-Jun-08	78100.00	=""	="Intelligent Outcomes Group"	20-May-08 09:23 AM	

+="CN85115"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	17-Mar-08	31-Dec-08	89965.48	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	20-May-08 09:23 AM	

+="CN85116"	"Prov of design & facilitation services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Specialised educational services"	09-May-08	30-Jun-08	44004.40	=""	="Thinkplace Pty Ltd"	20-May-08 09:23 AM	

+="CN85117"	"Training Material"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	13-May-08	30-Jun-08	14273.00	="TRS08/117"	="Australian Management Control Pty L"	20-May-08 09:23 AM	

+="CN85118"	" Services in relation to the Third Party Services Portal Management and Governance "	="Centrelink"	20-May-08	="Management advisory services"	21-May-08	30-Jun-08	55000.00	=""	="Smartnet Pty Ltd"	20-May-08 09:30 AM	

+="CN85122"	"Rack, Ammunation Stowage"	="Defence Materiel Organisation"	20-May-08	="Ammunition handling systems"	23-Apr-08	23-Jun-08	54912.00	=""	="Linton Engineering Pty Ltd"	20-May-08 09:49 AM	

+="CN85123"	" Deflector, Blast Attenuation Device "	="Defence Materiel Organisation"	20-May-08	="Attenuators"	23-Apr-08	19-Jun-08	134640.00	=""	="G A Hanrahan Pty Ltd"	20-May-08 10:05 AM	

+="CN85124"	"Video conferencing equipment and plasma TV screens"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	13-Dec-07	10-Jan-08	24186.87	=""	="TELSTRA CORPORATION LIMITED"	20-May-08 10:06 AM	

+="CN85125"	"69 Mobile phone handsets and 30 modems"	="Australian Industrial Registry"	20-May-08	="Mobile phones"	11-Jan-08	08-Feb-08	58957.00	=""	="TELSTRA"	20-May-08 10:06 AM	

+="CN85126"	"Cabling of Brisbane computer room and air-conditioner"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	29-Apr-08	27-May-08	104908.10	=""	="SURE POWER"	20-May-08 10:06 AM	

+="CN85127"	"QED Workstations and pedestal units"	="Australian Industrial Registry"	20-May-08	="Desks"	03-Oct-07	31-Oct-07	23474.00	=""	="SCHIAVELLO (SOUTHBANK)"	20-May-08 10:06 AM	

+="CN85128"	"Building and joinery works for AIR library fit-out"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	03-Oct-07	31-Oct-07	31394.00	=""	="ASSET INTERIORS"	20-May-08 10:06 AM	

+="CN85129"	"Level 8 Melbourne building works and project management"	="Australian Industrial Registry"	20-May-08	="Renovation of buildings or landmarks or monuments"	10-Apr-08	08-May-08	34529.00	=""	="ASSET INTERIORS"	20-May-08 10:06 AM	

+="CN85130"	"Internal audit services"	="Australian Industrial Registry"	20-May-08	="Internal audits"	17-Apr-08	15-May-08	45100.00	=""	="PKF"	20-May-08 10:07 AM	

+="CN85131"	"Suspected breaches of APS - J Nicita Whistleblowing Report - J Nicita"	="Australian Industrial Registry"	20-May-08	="Private investigation services"	21-Feb-08	22-Feb-08	68596.89	=""	="ADEPT ASSOCIATES PTY LTD"	20-May-08 10:07 AM	

+="CN85132"	"Quarterly lease - 15/8/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	13-Aug-07	14-Aug-07	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85133"	"Quarterly Lease: 15/11/07 - 15/02/08"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	09-Nov-07	09-Nov-07	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85134"	"Quarterly Lease: 15/02/08 - 15/05/08"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	14-Feb-08	15-Feb-08	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85135"	"11X Proj Mgt agreed fee adjust Less credit payment $550"	="Australian Industrial Registry"	20-May-08	="Project administration or planning"	14-Aug-07	11-Sep-07	47850.00	=""	="APP CORPORATION PTY LTD"	20-May-08 10:07 AM	

+="CN85136"	"Taxi Fares: 2/02/08 - 7/03/08 Account No: 09305505"	="Australian Industrial Registry"	20-May-08	="Taxicab services"	28-Mar-08	01-Apr-08	13860.07	=""	="CABCHARGE AUSTRALIA"	20-May-08 10:07 AM	

+="CN85137-A1"	"FARES - 28/6/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	01-Aug-07	03-Aug-07	95881.68	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:07 AM	

+="CN85138-A1"	"FARES - 28/7/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Aug-07	31-Aug-07	72177.08	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:07 AM	

+="CN85139-A1"	"FARES - 28/8/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	01-Oct-07	02-Oct-07	96783.40	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85140-A1"	"FARES - 28/9/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Oct-07	31-Oct-07	60485.68	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85141-A1"	"FARES 28/10/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	29-Nov-07	30-Nov-07	90163.90	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85142-A1"	"FARES - 28/11/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	19-Dec-07	19-Dec-07	72868.99	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85143-A1"	"FARES - 28/12/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Jan-08	31-Jan-08	60444.05	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85144-A1"	"FARES - 28/1/08"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	21-Feb-08	25-Feb-08	33526.76	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85145-A1"	"Fares for Feb 2008"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Mar-08	09-Apr-08	111537.98	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85146-A1"	"FARES - 28/3/08"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	29-Apr-08	30-Apr-08	68290.57	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85147"	"Codes: 34150A, 34151A (34062A-not paid) Customer No: 0186080"	="Australian Industrial Registry"	20-May-08	="Periodicals"	07-Sep-07	27-Sep-07	11343.89	=""	="CCH AUSTRALIA"	20-May-08 10:08 AM	

+="CN85148"	"User needs of AIRC - 30% project costs Ref No: 7073879"	="Australian Industrial Registry"	20-May-08	="Internet based market research"	09-Jul-07	31-Jul-07	25135.00	=""	="COLMAR BRUNTON SOCIAL RESEARCH"	20-May-08 10:08 AM	

+="CN85149"	"Level 9 - new carpet, partition and paint"	="Australian Industrial Registry"	20-May-08	="Carpeting"	26-Mar-08	15-Apr-08	24596.00	=""	="COMMERCIAL CIVIC INTERIORS AND PROPERTY"	20-May-08 10:09 AM	

+="CN85150"	"HP Procurve Switch: 5406ZL, 5400ZL, ZL Account No: AUS223"	="Australian Industrial Registry"	20-May-08	="Computer switch boxes"	04-Feb-08	22-Feb-08	15674.95	=""	="COMPUTERCORP"	20-May-08 10:09 AM	

+="CN85151"	"Communications upgrade - per quote 12477 Job No: 15901"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	17-Mar-08	04-Apr-08	18892.23	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85152"	"Computer Rm Relocation - per quote 12739 Job No: 15900"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	17-Mar-08	04-Apr-08	16264.34	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85154"	"Computer Room Relocation project Job No: 15900"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	07-Apr-08	29-Apr-08	13444.62	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85155"	"AS PE2950 PowerEdge Rack Mount server Cust No. 14649"	="Australian Industrial Registry"	20-May-08	="Computer servers"	30-Jul-07	20-Aug-07	12896.52	=""	="DELL COMPUTER PTY LTD"	20-May-08 10:09 AM	

+="CN85156"	"Printing for July 2007"	="Australian Industrial Registry"	20-May-08	="Publication printing"	13-Aug-07	23-Aug-07	10651.35	=""	="DOCUMENT PRINTING AUSTRALIA"	20-May-08 10:10 AM	

+="CN85157"	"Various Journals Account No: AU-S-39025-00"	="Australian Industrial Registry"	20-May-08	="Periodicals"	05-Dec-07	24-Dec-07	10469.20	=""	="EBSCO AUSTRALIA"	20-May-08 10:10 AM	

+="CN85158"	"Attend to test and tag - February 2008 Job No: 92008"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	02-Apr-08	24-Apr-08	14316.50	=""	="ELECRAFT"	20-May-08 10:10 AM	

+="CN85159"	"Carpet Install. on L14, AIR"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	11-Dec-07	03-Jan-08	11850.00	=""	="FRANK ROSS AND ASSOCIATES"	20-May-08 10:10 AM	

+="CN85153"	"repair landrover 6x6 com sec w/o-37050 ed"	="Department of Defence"	20-May-08	="Motor vehicles"	20-May-08	25-Jul-08	24413.40	=""	="MC IMPORTS"	20-May-08 10:10 AM	

+="CN85160"	"AIRC Conference - 3/10/07 Delegate and Beverage Package"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	09-Nov-07	20-Nov-07	11586.40	=""	="HILTON ON THE PARK"	20-May-08 10:10 AM	

+="CN85161"	"AIRC Website Redevelopment Project"	="Australian Industrial Registry"	20-May-08	="Internet browser software"	01-Oct-07	24-Oct-07	85538.00	=""	="THE HISER GROUP"	20-May-08 10:10 AM	

+="CN85162"	"Contract No: 29934/AUS/KLA/S/1/A/1 Period: 1/04/08 - 30/06/08"	="Australian Industrial Registry"	20-May-08	="Photocopiers"	13-Mar-08	01-Apr-08	22598.71	=""	="HP FINANCIAL SERVICES"	20-May-08 10:10 AM	

+="CN85163"	"FUEL - P/E 31/5/"07 CUSTOMER NO. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	16-Jul-07	17-Jul-07	12491.03	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:10 AM	

+="CN85164"	"LEASE - P/E 31/7/"07 CUSTOMER NO. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	16-Jul-07	17-Jul-07	49269.15	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:10 AM	

+="CN85165"	"Lease P/E 31/8/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	09-Aug-07	14-Aug-07	50401.92	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85166"	"Fuel P/E 30/6/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	09-Aug-07	14-Aug-07	11484.60	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85167"	"Lease P/E 30/9/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	02-Oct-07	02-Oct-07	51367.89	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85168"	"Fuel P/E 31/07/2007 Customer no. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	02-Oct-07	03-Oct-07	12148.98	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85169"	"Customer No. 361630 Lease P/E - 31/10/2007"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	11-Oct-07	17-Oct-07	51209.70	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85170"	"Costomer No. 361630 Fuel P/E - 31/8/2007"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	11-Oct-07	16-Oct-07	10604.92	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85171"	"Lease P/E 30/11/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	20-Nov-07	23-Nov-07	30658.83	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85172"	"Fuel P/E 30/9/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	20-Nov-07	23-Nov-07	11896.41	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85173"	"Lease  - P/E 31/12/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	13-Dec-07	18-Dec-07	47629.11	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85174"	"Fuel - P/E 31/10/07 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	13-Dec-07	18-Dec-07	11390.89	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85175"	"Lease P/E -31/01/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	10-Jan-08	15-Jan-08	52554.56	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85176"	"Fuel  P/E-31/11/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	10-Jan-08	15-Jan-08	12633.69	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85177"	"Lease P/E - 29/2/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	19-Feb-08	21-Feb-08	49883.04	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85178"	"Fuel P/E - 31/12/07 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	19-Feb-08	22-Feb-08	13964.68	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85179"	"Lease P/E31/3/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	18-Mar-08	20-Mar-08	52281.70	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85180"	"Fuel P/E 31/1/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	18-Mar-08	20-Mar-08	15319.28	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85181"	"Fuel Charges - P/E: 29/02/08 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	09-Apr-08	10-Apr-08	12862.36	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85182"	"Lease Charges - April 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	09-Apr-08	10-Apr-08	52910.20	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85183"	"Lease Charges - May 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	30-Apr-08	30-Apr-08	38521.82	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:13 AM	

+="CN85184"	"Fuel Charges - March 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	30-Apr-08	30-Apr-08	16256.84	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:13 AM	

+="CN85185"	"Transcript: 16/06/07 - 30/06/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jul-07	12-Jul-07	17858.28	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85186"	"Monitoring: 16/06/07 - 30/06/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jul-07	12-Jul-07	17379.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85187"	"Transcript services 1 - 15 July 07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Jul-07	26-Jul-07	18164.76	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85188"	"MPO Period 1/7 - 15/7/07"	="Australian Industrial Registry"	20-May-08	="Court reporting services"	31-Jul-07	02-Aug-07	12102.44	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85189"	"Transcript services 16-31/7/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Aug-07	15-Aug-07	25220.98	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85190"	"Monitoring service 16-31/7/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	14-Aug-07	24-Aug-07	13390.10	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85191"	"Transcript services 1/8 - 15/8"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	20-Aug-07	30-Aug-07	23723.32	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85192"	"Monitoring: 1/08/07 - 15/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	31-Aug-07	31-Aug-07	21541.15	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85193"	"Transcript: 16/08/07 - 31/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Sep-07	17-Sep-07	17071.33	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85194"	"Monitoring: 16/08/07 - 31/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Sep-07	17-Sep-07	21323.67	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85196"	"Transcript: 1/09/07 - 15/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	01-Oct-07	04-Oct-07	14948.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85198"	"Monitoring: 1/09/07 - 15/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	01-Oct-07	04-Oct-07	13727.65	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85199"	"Transcript: 16/09/07 - 30/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Oct-07	18-Oct-07	34826.77	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85200"	"Transcript: 1/10/07 - 15/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	23-Oct-07	24-Oct-07	24296.73	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85197-A1"	"Guy Antenna Element to Stake"	="Defence Materiel Organisation"	20-May-08	="Manufacturing Components and Supplies"	16-May-08	20-Jun-08	20295.00	=""	="B B Engineering Pty Ltd"	20-May-08 10:15 AM	

+="CN85201"	"Monitoring: 16/09/07 - 30/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	24-Oct-07	25-Oct-07	16767.33	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85202"	"Monitoring: 1/10/07 - 15/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	24-Oct-07	25-Oct-07	11359.68	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85203"	"Transcript: 16/10/07 - 31/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Nov-07	16-Nov-07	22076.88	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85204"	"Monitoring: 16/10/07 - 31/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Nov-07	16-Nov-07	14589.24	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85205"	"Transcript: 1/11/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	27-Nov-07	30-Nov-07	18351.74	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85206"	"Monitoring: 1/11/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	04-Dec-07	07-Dec-07	13511.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85207"	"Transcript: 16/11/07 - 30/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Dec-07	21-Dec-07	34589.52	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85208"	"Monitoring: 16/11/07 - 30/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Dec-07	21-Dec-07	23128.40	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85209"	"Transcript: 1/12/07 - 15/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	03-Jan-08	03-Jan-08	19917.14	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85210"	"Monitoring: 1/12/07 - 15/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	03-Jan-08	03-Jan-08	11000.47	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85211"	"Transcript: 16/12/07 - 31/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jan-08	21-Jan-08	15746.78	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85212"	"Transcript: 1/02/08 - 15/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	22-Feb-08	05-Mar-08	23705.62	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85213"	"Transcript: 16/02/08 - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	12-Mar-08	13-Mar-08	17765.58	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85214"	"Monitoring: 1/01/08 - 31/01/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	18-Mar-08	19-Mar-08	13219.90	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85215"	"Monitoring: 1/02/08 - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	18-Mar-08	19-Mar-08	18948.95	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85216"	"Transcript: 1/03/08 - 15/03/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	26-Mar-08	31-Mar-08	17331.97	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85217"	"Transcript: 16/03/08 - 31/03/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Apr-08	18-Apr-08	21872.91	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85218"	"Transcript: 1/04/08 - 15/04/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	28-Apr-08	01-May-08	23257.69	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85219"	"1st Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	19-Oct-07	07-Nov-07	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85220"	"2nd Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	19-Oct-07	08-Nov-07	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85221"	"3rd Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Jan-08	14-Jan-08	14660.90	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85222"	"4th Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	08-Apr-08	29-Apr-08	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85223"	"Contracting - June 2007 Superannuation - June 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	16-Jul-07	28-Jul-07	12193.44	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85224"	"Contracting - September 2007 Superannuation - September 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	05-Oct-07	26-Oct-07	11612.80	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85225"	"Contracting - October 2007 Superannuation - October 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	09-Nov-07	29-Nov-07	13354.72	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85226"	"Contracting - November 2007 Superannuation - November 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	06-Dec-07	31-Dec-07	12774.08	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85227"	"Contracting - January 2008 Superannuation - January 2008"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	08-Feb-08	29-Feb-08	13354.72	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85228"	"Contracting - March 2008 Superannuation - March 2008"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	07-Apr-08	28-Apr-08	12021.42	=""	="MARINGA"	20-May-08 10:18 AM	

+="CN85229"	"Proto-type 20% of the software"	="Australian Industrial Registry"	20-May-08	="Software coding"	25-Jul-07	21-Aug-07	46237.40	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85230"	"Oracle database-standard edition proceesor and support"	="Australian Industrial Registry"	20-May-08	="Application server software"	20-Aug-07	12-Sep-07	24409.64	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85231"	"CMS Project Management - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	25-Sep-07	16-Oct-07	16993.75	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85232"	"CMS Redevelpment - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	01-Oct-07	24-Oct-07	32657.66	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85233"	"CMS Redevolopment - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	16-Oct-07	24-Oct-07	15663.91	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85234"	"CMS Redevelopment - September 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	26-Nov-07	30-Nov-07	39725.32	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85235"	"CMS Redevelopment - October 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	26-Nov-07	30-Nov-07	38625.85	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85236"	"CMS redevelopment project 13/2/08"	="Australian Industrial Registry"	20-May-08	="Software patches or upgrades"	28-Feb-08	26-Mar-08	45793.70	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85237"	"CMS Redevelopment Project - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	14-Mar-08	31-Mar-08	17160.00	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85238"	"CMS Redevelopment Project - Apr 2008 PM.40 Project Management"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	30-Apr-08	30-Apr-08	23492.04	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:19 AM	

+="CN85239"	"Metlink - Zone 1 x 11, Zone 1/2 x 7 Account No: TAIRCC01"	="Australian Industrial Registry"	20-May-08	="Subway transport"	17-Jan-08	17-Jan-08	21906.90	=""	="METLINK VICTORIA PTY LTD"	20-May-08 10:19 AM	

+="CN85240"	"Train Tickets - February 2006 Zone 1 x 9, Zone 1/2 x 4"	="Australian Industrial Registry"	20-May-08	="Subway transport"	20-Feb-08	20-Feb-08	15246.90	=""	="METLINK VICTORIA PTY LTD"	20-May-08 10:19 AM	

+="CN85241"	"SA service and accom fees Apr-Jun 07"	="Australian Industrial Registry"	20-May-08	="Property management"	18-Jul-07	13-Aug-07	151025.05	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85242"	"Property Fee: Jul 2007 - Sep 2007 Other Agreed Items: Jul 2007 - Sep 2007"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Nov-07	06-Dec-07	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85243"	"Property Fee: Oct - Dec 2007 Other Agreed Items: Oct - Dec 2007"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Jan-08	20-Feb-08	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85244"	"Property Fee: Jan 2008- Mar 2008 Other Agreed Items: Jan 2008 - Mar 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	02-May-08	22-May-08	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85245"	"Secondment: 1/10/07 - 31/12/07 (Russell) Customer No: 1814"	="Australian Industrial Registry"	20-May-08	="Temporary clerical or administrative assistance"	31-Jan-08	21-Feb-08	17294.62	=""	="OFFICE OF SHARED SERVICES (WA STATE LIBR"	20-May-08 10:19 AM	

+="CN85246"	"Secondment: 1/01/08 - 31/03/08 (Russell) Customer No: 1814"	="Australian Industrial Registry"	20-May-08	="Temporary clerical or administrative assistance"	30-Apr-08	21-May-08	17251.12	=""	="OFFICE OF SHARED SERVICES (WA STATE LIBR"	20-May-08 10:19 AM	

+="CN85247"	"Design works to standardise communicatio Job No. AIR12221"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	19-Jul-07	13-Aug-07	14300.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85248"	"Standardise communication materials Job No: AIR12221"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	14-Aug-07	11-Sep-07	12100.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85249"	"Part One - Design Standardisation Customer No: 56073"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	15-Feb-08	07-Mar-08	13200.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85250"	"Financial Statements Prep - June 2007 Client Code: AIRV11/AUC"	="Australian Industrial Registry"	20-May-08	="Accounting software"	21-Sep-07	09-Oct-07	10615.00	=""	="PKF"	20-May-08 10:20 AM	

+="CN85251"	"Postage Charges - September 2007 Account No: 38497"	="Australian Industrial Registry"	20-May-08	="National postal delivery services"	25-Oct-07	25-Oct-07	22496.10	=""	="AUSTRALIA POST (VIC)"	20-May-08 10:20 AM	

+="CN85252"	"AIRC Presentation Skills Program Ref No: M100051FF"	="Australian Industrial Registry"	20-May-08	="Clerical training"	11-Jul-07	06-Aug-07	10991.53	=""	="ROGEN INTERNATIONAL (AUSTRALIA) PTY LTD"	20-May-08 10:20 AM	

+="CN85253"	"Presentation Skills Prog: 27 and 28/08/07 Ref No: MEL103628FF"	="Australian Industrial Registry"	20-May-08	="Clerical training"	16-Oct-07	06-Nov-07	10725.00	=""	="ROGEN INTERNATIONAL (AUSTRALIA) PTY LTD"	20-May-08 10:20 AM	

+="CN85254"	"Counter joinery - Job: AA390739103100 Adelaide"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	14-Aug-07	10-Sep-07	33275.00	=""	="SCHIAVELLO COMM INTERIORS VIC"	20-May-08 10:20 AM	

+="CN85255"	"Counter Joinery Job: AA390739103100 Perth"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	14-Aug-07	10-Sep-07	37950.00	=""	="SCHIAVELLO COMM INTERIORS VIC"	20-May-08 10:20 AM	

+="CN85256"	"AIRC 2008 Annual Conference- 50% deposit"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	23-Oct-07	23-Oct-07	16520.50	=""	="THE SEBEL KIRKTON PARK"	20-May-08 10:20 AM	

+="CN85257"	"4 day Commission Statuatory Conference 16/2-19/2/08"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	07-Mar-08	13-Mar-08	16633.00	=""	="THE SEBEL KIRKTON PARK"	20-May-08 10:21 AM	

+="CN85258"	"Records Management Consultancy Contract: V3 Nov2007"	="Australian Industrial Registry"	20-May-08	="Library software"	18-Apr-08	08-May-08	30495.00	=""	="SILLER SYSTEMS ADMINISTRATION"	20-May-08 10:21 AM	

+="CN85259"	"Annual Reports 2006-2007 x 1100 Customer: AUSTINDU"	="Australian Industrial Registry"	20-May-08	="Publication printing"	03-Jan-08	11-Jan-08	13545.60	=""	="SNAP PRINTING"	20-May-08 10:21 AM	

+="CN85260"	"Works associated with Quote VS01329 Customer No: AUSTIND-VM"	="Australian Industrial Registry"	20-May-08	="Communications server software"	18-Mar-08	08-Apr-08	23910.70	=""	="STOWE AUSTRALIA PTY LTD"	20-May-08 10:21 AM	

+="CN85261"	"Cat 6 Communications Cabling Upgrade Labour and Materials - Variation SC00713"	="Australian Industrial Registry"	20-May-08	="Communications server software"	15-Apr-08	06-May-08	17149.00	=""	="STOWE AUSTRALIA PTY LTD"	20-May-08 10:21 AM	

+="CN85262"	"Support and Maint.: 2/12/07 - 1/12/08 Debtor ID: AIR"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	19-Dec-07	21-Dec-07	29530.96	=""	="TECHNOLOGY ONE"	20-May-08 10:21 AM	

+="CN85263"	"MVS service - June 2007 Acc No. 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	31-Jul-07	11-Aug-07	36162.04	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85264"	"Acc No: 218 1194 300 Bill No: A 131 317 431-7"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	29-Aug-07	10-Sep-07	36162.07	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85265"	"Account No: 226 3120 400 Bill No: A 331 737 341-7"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	21-Sep-07	21-Sep-07	23938.92	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85266"	"MVS Charges - August 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	03-Oct-07	15-Oct-07	36315.86	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85267"	"MVS Charges - September 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	05-Nov-07	07-Nov-07	35718.39	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85268"	"Account No: 226 3120 400 Bill No: A 183 064 861-2"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	19-Dec-07	19-Dec-07	18433.66	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85269"	"Account No: 174 1614 600 Bill No: A 024 032 561-7"	="Australian Industrial Registry"	20-May-08	="Wide area network WAN maintenance or support"	21-Dec-07	21-Dec-07	83673.59	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85270"	"MVS Charges - November 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	14-Jan-08	14-Jan-08	36121.86	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85271"	"MVS Charges - December 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	05-Feb-08	06-Feb-08	34956.36	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85272"	"MVS charges - January Account No. 2181194300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	04-Mar-08	13-Mar-08	36517.07	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85273"	"Account No: 226 3120 400 Bill No: A 428 214 291-0"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	19-Mar-08	19-Mar-08	11284.58	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85274"	"Account No: 174 1614 600 Bill No: A 272 931 791-7"	="Australian Industrial Registry"	20-May-08	="Wide area network WAN maintenance or support"	07-Apr-08	07-Apr-08	36022.95	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85275"	"MVS Charges - March 2008 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	30-Apr-08	05-May-08	35111.32	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85276"	"Annual subscriptions to various law journals."	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Aug-07	11-Sep-07	173984.49	=""	="THOMSON LEGAL and REGULATORY GROUP"	20-May-08 10:22 AM	

+="CN85277"	"Annual subscriptions to various law reports and journals"	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Aug-07	11-Sep-07	74946.40	=""	="THOMSON LEGAL and REGULATORY GROUP"	20-May-08 10:23 AM	

+="CN85278"	"Property services July 07"	="Australian Industrial Registry"	20-May-08	="Property management"	24-Jul-07	27-Jul-07	970357.50	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85279"	"Property Operating Expenses - AUG 07"	="Australian Industrial Registry"	20-May-08	="Property management"	05-Sep-07	10-Sep-07	975381.76	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85280"	"Property Operating Expenses - OCT 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	25-Sep-07	26-Sep-07	976148.70	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85281"	"Property Operating Expenses - NOV 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	26-Oct-07	30-Oct-07	977611.92	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85282"	"Property Operating Expenses - DEC 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Nov-07	26-Nov-07	1004170.54	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85283"	"Property Operating Expenses - Jan 2008 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	21-Dec-07	24-Dec-07	1273702.42	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85284"	"Property Operating Expense - FEB 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Jan-08	29-Jan-08	1014512.70	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85285"	"Property Operating Expenses - March 2008 Client No: AIR"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Feb-08	26-Feb-08	1015770.19	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85286"	"Property Operating Expenses - Apr 2008 Client No: AIR"	="Australian Industrial Registry"	20-May-08	="Property management"	25-Mar-08	27-Mar-08	1007571.43	=""	="UNITED GROUP"	20-May-08 10:24 AM	

+="CN85287"	"Property Operating Expenses - MAY 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Apr-08	24-Apr-08	1007195.21	=""	="UNITED GROUP"	20-May-08 10:24 AM	

+="CN85288"	"Prepayment: Jan 08 - Jun 08 (Hobart) Account No: 1054024"	="Australian Industrial Registry"	20-May-08	="Commercial or industrial facility rental"	12-Dec-07	04-Jan-08	150305.00	=""	="UNITED GROUP (KFPW REAL ESTATE SERVICES)"	20-May-08 10:24 AM	

+="CN85289"	"National Portfolio MGMT - July 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	09-Jul-07	31-Jul-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85290"	"National Portfolio MGMT Aug 07 Acc: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	06-Aug-07	31-Aug-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85291"	"National portfolio MGMT for Sept 07 Acc: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Aug-07	19-Sep-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85292"	"National Portfolio MGMT - October 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	28-Sep-07	22-Oct-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85293"	"National Portfolio MGMT - November 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Oct-07	15-Nov-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85294"	"National Portfolio MGMT - December 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	30-Nov-07	17-Dec-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85295"	"National Portfolio MGMT - January 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	19-Dec-07	10-Jan-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85296"	"National Portfolio MGMT - February 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	31-Jan-08	21-Feb-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85297"	"National Portfolio MGMT - March 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Feb-08	19-Mar-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85298"	"National Portfolio MGMT - April 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	28-Mar-08	17-Apr-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85299"	"National Portfolio MGMT - May 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	05-May-08	26-May-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85300"	"Supply and Install Blinds: Level 7-8 Quote No: 1417-1416"	="Australian Industrial Registry"	20-May-08	="Roll up shades"	19-Mar-08	08-Apr-08	33398.20	=""	="VALTAS ENTERPRISES PTY LTD"	20-May-08 10:25 AM	

+="CN85301"	"Supply of a system to receive, transfer and store non-AMSA AIS data."	="Australian Maritime Safety Authority"	20-May-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	31-May-10	472600.00	="AMSA No.868/37908"	="Australian Maritime Systems Ltd"	20-May-08 10:33 AM	

+="CN85302"	"Legal services"	="National Competition Council"	20-May-08	="Legal services"	30-Apr-08	30-May-08	22657.81	=""	="Australia Government Solocitor"	20-May-08 10:35 AM	

+="CN85303"	"Usability Testing Services"	="Centrelink"	20-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Mar-08	30-Jun-08	39773.25	=""	="ACCESS TESTING"	20-May-08 10:36 AM	

+="CN85304"	"Mail and cargo transport"	="Australian Competition and Consumer Commission"	20-May-08	="Mail and cargo transport"	01-Mar-08	31-Mar-08	14460.41	=""	="National Mail and Marketing Pty Ltd"	20-May-08 10:45 AM	

+="CN85305"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	09-May-08	30-Jun-08	20000.00	=""	="EcoAssist Pty Ltd"	20-May-08 10:45 AM	

+="CN85306"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	11-May-08	15-Aug-08	16944.80	=""	="Palms City Resort"	20-May-08 10:45 AM	

+="CN85307"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	11-May-08	16-Aug-08	14333.01	=""	="M-Power Accommodation Pty Ltd"	20-May-08 10:46 AM	

+="CN85308"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	20-May-08	="Telecommunications media services"	14-Mar-08	14-Apr-08	16079.61	=""	="Telstra"	20-May-08 10:46 AM	

+="CN85309"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	14-May-08	16-Aug-08	10340.00	=""	="Tribeca By Q Resorts"	20-May-08 10:46 AM	

+="CN85310"	"Management Advosiry Services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	14-May-08	26-Sep-08	30000.00	=""	="Rowena Armstrong"	20-May-08 10:46 AM	

+="CN85311"	"Management advisory services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	14-May-08	30-Apr-09	64900.00	="RFT 2007- 12"	="Energy and Management Services Pty Ltd"	20-May-08 10:46 AM	

+="CN85312"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	20-May-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	16720.00	=""	="Dell Australia"	20-May-08 10:46 AM	

+="CN85313"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	20-May-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	41580.00	=""	="Dell Australia"	20-May-08 10:46 AM	

+="CN85314"	"reproduction services"	="Australian Competition and Consumer Commission"	20-May-08	="Reproduction services"	21-Apr-08	21-May-08	43743.70	=""	="Pirion Pty Ltd"	20-May-08 10:46 AM	

+="CN85315"	"Reproduction services"	="Australian Competition and Consumer Commission"	20-May-08	="Reproduction services"	24-Apr-08	24-May-08	13035.00	=""	="Epimedia"	20-May-08 10:46 AM	

+="CN85316"	"Human resources services"	="Australian Competition and Consumer Commission"	20-May-08	="Human resources services"	28-Feb-08	11-Mar-08	32816.60	=""	="CCH Workflow Solutions"	20-May-08 10:47 AM	

+="CN85317"	"Accounting and auditing"	="Australian Competition and Consumer Commission"	20-May-08	="Accounting and auditing"	31-Mar-08	31-May-08	46200.00	=""	="Acumen Alliance"	20-May-08 10:47 AM	

+="CN85318"	"Security Monitoring"	="Federal Magistrates Court"	20-May-08	="Security surveillance and detection"	01-Apr-08	30-Apr-08	29104.37	=""	="ADT Security"	20-May-08 10:49 AM	

+="CN85319"	" Office Equipment - FMC JMT "	="Federal Magistrates Court"	20-May-08	="Office Equipment and Accessories and Supplies"	01-Apr-08	30-Apr-08	21329.00	=""	="B & H Australia Pty Ltd"	20-May-08 11:00 AM	

+="CN85321"	"Taxi & Cabcharges"	="Federal Magistrates Court"	20-May-08	="Taxicab services"	01-Apr-08	30-Apr-08	32163.94	=""	="Cabcharge Australia Limited"	20-May-08 11:04 AM	

+="CN85323"	"Recover Costs Rental, Outgoings, Car Parking - April 2008"	="Federal Magistrates Court"	20-May-08	="Commercial or industrial facility rental"	01-Apr-08	30-Apr-08	14982.12	=""	="Charter Hall Limited - Savills"	20-May-08 11:08 AM	

+="CN85324"	"Security Monitoring"	="Federal Magistrates Court"	20-May-08	="Security surveillance and detection"	01-Apr-08	30-Apr-08	17763.64	=""	="Chubb Protective Services"	20-May-08 11:12 AM	

+="CN85325"	" Manufacture & fitting of furniture FMC JMT "	="Federal Magistrates Court"	20-May-08	="Carpentry"	01-Apr-08	30-Apr-08	38122.70	=""	="Claremont Joinery"	20-May-08 11:19 AM	

+="CN85326"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	20-May-08	="Stationery"	01-Apr-08	30-Apr-08	17048.28	=""	="Corporate Express Australia"	20-May-08 11:22 AM	

+="CN85327"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	20-May-08	="Temporary legal staffing needs"	01-Apr-08	30-Apr-08	43229.48	=""	="Drake Australia Pty Ltd"	20-May-08 11:26 AM	

+="CN85328"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	19556.16	=""	="Harvey Consultancy - Report Writer"	20-May-08 11:30 AM	

+="CN85329"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	20-May-08	="Temporary clerical or administrative assistance"	01-Apr-08	30-Apr-08	29274.95	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	20-May-08 11:34 AM	

+="CN85330"	"Leasehold Improvements - FMC Level 9 LBB"	="Federal Magistrates Court"	20-May-08	="Refurbishing services"	01-Apr-08	30-Apr-08	10885.60	=""	="Interior Development Pty Ltd"	20-May-08 11:43 AM	

+="CN85331"	"Motor Vehicle Parts"	="Department of Defence"	20-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	10463.20	=""	="BEAUREPAIRES FOR TYRES"	20-May-08 11:46 AM	

+="CN85332"	"Office Refurbishment - FMC Level 12, Melbourne"	="Federal Magistrates Court"	20-May-08	="Refurbishing services"	01-Apr-08	30-Apr-08	15079.90	=""	="IRM Interiors Pty Ltd"	20-May-08 11:48 AM	

+="CN85334"	"Counselling Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	16170.00	=""	="Joy Slattery Counselling Pty Ltd"	20-May-08 11:54 AM	

+="CN85333"	"qty 700 field manpacks for military radios."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	19-May-08	04-Sep-08	45707.20	="RFQ-C7168"	="GEE YAN INDUSTRY PTY LTD"	20-May-08 11:55 AM	

+="CN85335"	"Various Photocopier Equipment, Accessories & Photocopier Charges"	="Federal Magistrates Court"	20-May-08	="Printer and photocopier and facsimile accessories"	01-Apr-08	30-Apr-08	10918.88	=""	="Kyocera Mita Australia Pty Ltd"	20-May-08 11:59 AM	

+="CN85336"	"Recover Costs Rental, Outgoings, Car Parking - FMC Macquarie St, Sydney, March & April 2008"	="Federal Magistrates Court"	20-May-08	="Commercial or industrial facility rental"	01-Apr-08	30-Apr-08	25140.12	=""	="Law Courts Limited - United Group Services"	20-May-08 12:04 PM	

+="CN85337"	"Vehicle Leases"	="Federal Magistrates Court"	20-May-08	="Vehicle rental"	01-Apr-08	30-Apr-08	84514.82	=""	="Lease Plan"	20-May-08 12:09 PM	

+="CN85339"	"Temp Staff - Payroll"	="Federal Magistrates Court"	20-May-08	="Temporary clerical or administrative assistance"	01-Apr-08	30-Apr-08	14686.05	=""	="Micropay Pty Ltd"	20-May-08 12:13 PM	

+="CN85340"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-May-08	="Transcribing services"	01-Apr-08	30-Apr-08	170916.01	=""	="National Transcription Services Pty Ltd"	20-May-08 12:16 PM	

+="CN85338"	"Motor Vehilce Parts"	="Department of Defence"	20-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	19397.10	=""	="Landrover Australia"	20-May-08 12:17 PM	

+="CN85341"	"Consulting services for Back Office Systems Selection & Preparation of an Infrastructure Request for Proposal"	="Federal Magistrates Court"	20-May-08	="Business and corporate management consultation services"	01-Apr-08	30-Apr-08	92537.20	=""	="Oakton Services Pty Ltd"	20-May-08 12:23 PM	

+="CN85342"	"Interpreting Services"	="Federal Magistrates Court"	20-May-08	="Interpreters"	01-Apr-08	30-Apr-08	17530.15	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	20-May-08 12:26 PM	

+="CN85343"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	15403.98	=""	="Paris Consultancy Pty Ltd"	20-May-08 12:30 PM	

+="CN85344"	"Airfares"	="Federal Magistrates Court"	20-May-08	="Commercial aeroplane travel"	01-Apr-08	30-Apr-08	85627.51	=""	="Qantas - QAEBTA"	20-May-08 12:33 PM	

+="CN85345"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-May-08	="Transcribing services"	01-Apr-08	30-Apr-08	58499.18	=""	="Spark & Cannon Australasia Pty Ltd"	20-May-08 12:36 PM	

+="CN85347"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	20-May-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	30-Apr-08	24232.16	=""	="Telstra Corporation Limited"	20-May-08 12:39 PM	

+="CN85348"	"Freight Forwarding Service"	="Federal Magistrates Court"	20-May-08	="Freight forwarders services"	01-Apr-08	30-Apr-08	17837.90	=""	="Toll IPEC Pty Ltd"	20-May-08 12:42 PM	

+="CN85353"	"SUPPLY OF TROUSERS, MEN'S, BARATHEA. ORIGINALLY UNDER CN45671 ON 10 NOV 2007, BUT INCORRECT VALUE WAS ENTERED AT THAT TIME."	="Defence Materiel Organisation"	20-May-08	="Military uniforms"	22-Jan-08	22-May-08	838552.00	="DNJO34"	="AUSTRALIAN DEFENCE APPAREL"	20-May-08 01:54 PM	

+="CN85355"	"qty 200 VHF antenna assemblies for use with military radios."	="Defence Materiel Organisation"	20-May-08	="Radio antennas"	20-May-08	19-Aug-08	25740.00	="RFQ-C7169"	="EYLEX PTTY LTD"	20-May-08 02:26 PM	

+="CN85354"	"Information Management and Complicence Framework"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Corporate objectives or policy development"	27-Jun-07	07-Aug-07	223369.00	=""	="Ernst & Young"	20-May-08 02:26 PM	

+="CN85356-A1"	"Provision of Investigation Services"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Private investigation services"	20-Jul-07	30-Sep-07	59754.00	=""	="Australian Forensic services"	20-May-08 02:38 PM	

+="CN85357-A1"	"Advertising"	="Productivity Commission"	20-May-08	="Advertising"	30-Jan-08	15-Feb-08	38852.00	=""	="HMA Blaze P/L"	20-May-08 02:39 PM	

+="CN85358-A2"	"Develop a forecast position for information services at 30 june 08"	="Australian Federal Police"	20-May-08	="Audit services"	01-May-08	30-Jun-08	134904.00	="RFT 01-2005"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	20-May-08 02:49 PM	

+="CN85361"	"External testing against the Child Support Agency's internat system"	="Child Support Agency"	20-May-08	="Business administration services"	20-May-08	30-Jun-08	19250.00	=""	="Pure Hacking Pty Ltd"	20-May-08 02:54 PM	

+="CN85362"	" Provision of office fitout works for the Kununurra unit of CRS Australia. "	="CRS Australia"	20-May-08	="Building and Construction and Maintenance Services"	14-May-08	16-Jun-08	28550.00	=""	="Franmor Constructions Pty Ltd"	20-May-08 03:00 PM	

+="CN85363-A2"	"Provision of Interpreting services."	="CRS Australia"	20-May-08	="Interpreters"	14-May-08	30-Sep-08	223238.97	=""	="New Age Interpreting Services"	20-May-08 03:05 PM	

+="CN85366"	"Review of Implications of Closure of State offices"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Strategic planning consultation services"	11-Jul-07	19-Oct-07	37000.00	=""	="Nicki Vance Consulting"	20-May-08 03:36 PM	

+="CN85367"	"Cleaning Services for CSA Geelong"	="Child Support Agency"	20-May-08	="General building and office cleaning and maintenance services"	20-May-08	31-Dec-08	23000.00	=""	="Etheridge Cleaning and Maintenance Services"	20-May-08 03:37 PM	

+="CN85369"	"Tax Office/Taxpayer relationship research"	="Australian Taxation Office"	20-May-08	="Market research"	30-Apr-08	30-Jun-08	69971.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	20-May-08 03:45 PM	

+="CN85373"	" 9150 66-068-0440 Engine Lubricating Oil  20X 205L Drums OMD 113 "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	28-Mar-08	04-Apr-08	13483.00	=""	="Castrol"	20-May-08 03:55 PM	

+="CN85371-A1"	"Provision of Internal Audit Services"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Audit services"	01-Sep-07	30-Jun-11	250000.00	="RFT0607/006"	="Deloitte Touche Tohmatsu"	20-May-08 03:57 PM	

+="CN85374"	" 9150 66-034-7917  Steam Turbine Lubricating Oil   20X205L Drums OEP-89 (Regal Marine 77)       "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	04-Apr-08	12131.90	=""	="CALTEX"	20-May-08 04:10 PM	

+="CN85376"	"Shock Absorber Kit - ASLAV"	="Department of Defence"	20-May-08	="Armoured fighting vehicles"	20-May-08	19-Dec-08	26441.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-May-08 04:12 PM	

+="CN85375"	" CIRCUIT CARD ASSEMBLY; PART No 245-6211-10; MC22373. QUANTITY 10 "	="Defence Materiel Organisation"	20-May-08	="Military rotary wing aircraft"	20-May-08	25-Jan-09	18472.85	=""	="ASSOCIATED AIRCRAFT"	20-May-08 04:13 PM	

+="CN85377"	"Power Drive CGU - ASLAV"	="Department of Defence"	20-May-08	="Armoured fighting vehicles"	20-May-08	14-Nov-08	11926.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-May-08 04:15 PM	

+="CN85378"	"9150 99-458-6311Engine Lubricating Oil 40 x205L Drums Energol HPDX 40 in 205L"	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	04-Apr-08	29121.84	=""	="BP Australia Ltd"	20-May-08 04:20 PM	

+="CN85381"	"Audit Consultant"	="Australian Securities and Investments Commission"	20-May-08	="Audit services"	24-Apr-08	30-Jun-08	30800.00	=""	="Bentleys MRI"	20-May-08 04:32 PM	

+="CN85380"	" 9150 00-261-8317  Petroleum Base Hydraulic Fluid   H-575 Hydranycoil FHG  220xUS 5GGAL "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	09-Apr-08	47707.08	=""	="Interchem"	20-May-08 04:34 PM	

+="CN85382"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	20-May-08	="Legal services"	07-May-08	30-Jun-08	50000.00	=""	="Luchich, Madeline"	20-May-08 04:36 PM	

+="CN85383"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	20-May-08	="Legal services"	12-May-08	30-Jun-08	51000.00	=""	="Robberds, Lionel"	20-May-08 04:47 PM	

+="CN85385"	"Consultant"	="Australian Securities and Investments Commission"	20-May-08	="Temporary research and development services"	25-Mar-08	25-Sep-08	81900.00	=""	="Turton, Allen"	20-May-08 05:01 PM	

+="CN85387"	"Sand Bags, Hessian 33 x 14 Inches, with Vent and Tie String. Qty 80,000."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	20-May-08	13-Jun-08	38139.20	=""	="H POLESY & CO PTY LTD"	20-May-08 05:17 PM	

+="CN85388-A1"	"Sand Bags, Hessian 33 x 14 Inches, with Vent and Tie String. Qty 231,000."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	20-May-08	23-May-08	118944.21	=""	="H POLESY & CO PTY LTD"	20-May-08 05:40 PM 

--- a/admin/partialdata/18Nov2007to22Nov2007valto.xls
+++ b/admin/partialdata/18Nov2007to22Nov2007valto.xls
@@ -1,591 +1,591 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN47053-A1"	"COAT, MAN'S, W/P, DOUBLEBREASTED"	="Defence Materiel Organisation"	19-Nov-07	="Military uniforms"	13-Nov-07	21-Apr-08	205920.00	=""	="Australian Defence Apparel"	19-Nov-07 07:29 AM	
-="CN47055"	"Trunks, G/P, Dark Blue"	="Defence Materiel Organisation"	19-Nov-07	="Uniforms"	26-Oct-07	29-Feb-08	134041.60	=""	="PACIFIC BRANDS APPAREL"	19-Nov-07 07:49 AM	
-="CN47056"	"Aviation Spares, Repair of Main Rotor Shaft"	="Defence Materiel Organisation"	19-Nov-07	="Military rotary wing aircraft"	07-Jun-07	29-Feb-08	26546.99	=""	="Australian Aerospace"	19-Nov-07 08:34 AM	
-="CN47057"	"Aviation spares, repair of swashplate, controllable"	="Defence Materiel Organisation"	19-Nov-07	="Military rotary wing aircraft"	20-Aug-07	31-Jan-08	12076.57	=""	="Australian Aerospace"	19-Nov-07 08:46 AM	
-="CN47063"	" Ceremonial items for Royal Australian Navy "	="Defence Materiel Organisation"	19-Nov-07	="Whistle"	16-Nov-07	13-Mar-08	22869.00	="ACC016/0708"	="Solar Manufacturing Agencies"	19-Nov-07 10:07 AM	
-="CN47067"	"Software for smartcards readers"	="Centrelink"	19-Nov-07	="Software"	19-Nov-07	19-Nov-08	50512.00	="2004/52285"	="Acer Computer Australia Pty Ltd"	19-Nov-07 10:26 AM	
-="CN47074"	"APSC Panel for L&D - JwJ Consulting for Mental Health Seminars"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	12-Nov-07	30-Jun-08	15180.00	=""	="Australian Public Service Commission"	19-Nov-07 10:35 AM	
-="CN47075"	"Horticultural maintenance at Wagga War Cemetery"	="Department of Veterans' Affairs"	19-Nov-07	="Cemetery upkeep services"	13-Nov-07	31-Jul-10	15444.00	=""	="Riverina Short Back & Sides Mowing Service"	19-Nov-07 10:35 AM	
-="CN47076"	"Horticultural maintenance of Sale War Cemetery.Contract extended by two years and amont increased to $4,400 per year."	="Department of Veterans' Affairs"	19-Nov-07	="Building and Construction and Maintenance Services"	01-Dec-04	30-Nov-09	18700.00	=""	="Noel M & Kerri A Schweitzer"	19-Nov-07 10:35 AM	
-="CN47077-A1"	"Provide Community Nursing Advisory services."	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-10	185702.00	=""	="Railand Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47078-A1"	" Podiatry advisory services "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	167648.00	=""	="Buntex Podiatry Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47079-A1"	" Podiatry advisory serves "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	167648.00	=""	="Podnik Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47080-A1"	" New contract for Occupational Therapist "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	293384.00	=""	="Hanivoile Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47081"	"New Contract for Occupational Therapy Adviser"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	293384.00	=""	="EW PTY LTD"	19-Nov-07 10:36 AM	
-="CN47082-A1"	" New Agreement With Occupational therapy Adviser "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	293384.00	=""	="ACOT Consultants Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47083"	"New Agreement for Podiatry Adviser"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	167648.00	=""	="F & N CONTRACTING PTY LTD"	19-Nov-07 10:36 AM	
-="CN47084-A1"	" New Agreement for Podiatry Adviser "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	167648.00	=""	="Williams Podiatry Pty Ltd"	19-Nov-07 10:36 AM	
-="CN47085"	"Physiotherapy advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	150883.00	=""	="Therapy Advice and Review Service"	19-Nov-07 10:36 AM	
-="CN47086"	"Occupational Therapy Advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	471510.00	=""	="Counselling Appraisal Consultants Pty Ltd"	19-Nov-07 10:37 AM	
-="CN47087-A1"	"Provision of community nursing advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-10	310000.00	="AHC07"	="C M Collyer & J L Turner"	19-Nov-07 10:37 AM	
-="CN47088-A1"	" Podiatry Advice "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	50294.00	=""	="The Trustee for The Darner Family Trust"	19-Nov-07 10:37 AM	
-="CN47090"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	167648.00	=""	="The Trustee for The Steve Cooper Family Trust"	19-Nov-07 10:37 AM	
-="CN47091"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	134118.00	=""	="Susan Yates O.T. Pty Ltd"	19-Nov-07 10:37 AM	
-="CN47092"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	117354.00	=""	="The Trustee for The Knights Family Trust"	19-Nov-07 10:37 AM	
-="CN47093"	"Physiotherapy & Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	184413.00	="AHC07"	="Physiotherapy & Speech Pathology Advisory Services P/L"	19-Nov-07 10:37 AM	
-="CN47094"	"Physio therapist advice to the Department of Veterans' Affairs."	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	167648.00	=""	="Physio To Fit Pty Ltd"	19-Nov-07 10:37 AM	
-="CN47095"	"Podiatry Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	58676.00	=""	="Rintoul WA Pty Ltd"	19-Nov-07 10:37 AM	
-="CN47096-A1"	"Provide Community Nursing Advisory services."	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-10	83824.00	=""	="The Burchell Trust Fund"	19-Nov-07 10:37 AM	
-="CN47097"	"Occupational Therapy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	184412.00	=""	="The Trustee for Vekdraft Pty Ltd"	19-Nov-07 10:38 AM	
-="CN47098"	"Physiotherpy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	92206.00	=""	="Goldsage Corporation Pty Ltd"	19-Nov-07 10:38 AM	
-="CN47099"	"Physiotherapy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	33529.00	=""	="Guy Maddison Physiotherapy Pty Ltd"	19-Nov-07 10:38 AM	
-="CN47100"	"The provision of Community Nursing Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	320000.00	="AHC07"	="Nursing Advisory Services Pty Ltd"	19-Nov-07 10:38 AM	
-="CN47101"	"The provision of Physiotherapy Adviser Services"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	50295.00	=""	="Saber Pty Ltd"	19-Nov-07 10:38 AM	
-="CN47106"	"Legal Services Expenditure 3816"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	11-Aug-06	30-Jun-09	12183.60	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:51 AM	
-="CN47107"	"Scientific Research"	="Department of Transport and Regional Services"	19-Nov-07	="Laboratory and scientific equipment"	03-Sep-07	30-Jun-08	44309.98	=""	="AUSTRALIAN NUCLEAR SCIENCE &"	19-Nov-07 10:51 AM	
-="CN47108"	"Scientific Research"	="Department of Transport and Regional Services"	19-Nov-07	="Laboratory and scientific equipment"	31-Aug-07	30-Jun-08	74250.00	=""	="PROFESSOR DUDLEY CECIL CREAGH"	19-Nov-07 10:51 AM	
-="CN47109"	"Project Management Services FI Consultant - Jason Dunn PSFM"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	08-Oct-07	30-Jun-08	1380077.60	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	19-Nov-07 10:51 AM	
-="CN47110"	"Digital Voice Data Recorder (DVDR)"	="Department of Transport and Regional Services"	19-Nov-07	="Electrical equipment and components and supplies"	01-Nov-07	30-Apr-08	39930.00	=""	="AUSTRALIAN AVIONICS PTY LTD"	19-Nov-07 10:51 AM	
-="CN47111"	"Contracting Services - Calvert & Aldag"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	24-Oct-07	30-Jul-08	214999.61	="TRS06/038"	="INNOGENCE"	19-Nov-07 10:52 AM	
-="CN47112"	"Supply of temporary staff resources Superannuation on labour hire"	="Department of Transport and Regional Services"	19-Nov-07	="Business administration services"	25-Oct-07	30-Apr-08	26702.50	=""	="PURCHASING AND BUSINESS ENTERPRISES"	19-Nov-07 10:52 AM	
-="CN47113"	"Contracting Services - Alex Ciceran"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	20-Sep-07	30-Jun-08	140000.30	="TRS06/038"	="ANTZ Consulting Pty Ltd"	19-Nov-07 10:52 AM	
-="CN47114"	"Legal Services Expenditure 6757"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	11-Aug-06	30-Jun-09	10154.54	="TRS06/175"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:52 AM	
-="CN47115"	"Advice industrial dev fed leased airport"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	22-Oct-07	21-Oct-09	59604.60	="TRS07/095"	="CH2M HILL AUSTRALIA PTY. LIMITED"	19-Nov-07 10:52 AM	
-="CN47116"	"Ad hoc mov't staff to and from o/s posts"	="Department of Transport and Regional Services"	19-Nov-07	="Material packing and handling"	01-Jul-07	30-Jun-08	48200.00	=""	="SIRVA Pty Ltd"	19-Nov-07 10:52 AM	
-="CN47117"	"Financial Analysis"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	05-Oct-07	05-Nov-07	19371.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	19-Nov-07 10:52 AM	
-="CN47118"	"Change Management"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	30-Jul-07	01-Feb-08	103000.00	="T2004/0699"	="VOLANTE GROUP LTD"	19-Nov-07 10:52 AM	
-="CN47119"	"Legal Services Expenditure LG6686"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	14-Nov-07	30-Jun-09	30479.17	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	
-="CN47120"	"Legal Services ExpenditureLG 6726"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	22400.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	
-="CN47121"	"Legal Service Expenditure LG070807-6735"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	21450.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	
-="CN47122"	"Legal Services - Green Review"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	14-Nov-07	19-Nov-07	13809.51	="TRS07/267"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:53 AM	
-="CN47123"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	10069.80	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	
-="CN47124"	"Legal Service Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	44944.58	="TRS06/175"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:53 AM	
-="CN47125"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	31-Oct-07	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	
-="CN47066"	"Voice Communications System"	="Department of the Environment and Water Resources"	19-Nov-07	="Information Technology Broadcasting and Telecommunications"	11-Jul-02	31-Jul-07	3007000.00	=""	="LOGICAL NETWORKS LIMITED"	19-Nov-07 11:09 AM	
-="CN47065"	"Cartage Services"	="Department of the Environment and Water Resources"	19-Nov-07	="Transportation and Storage and Mail Services"	28-Apr-05	31-Mar-10	341000.00	=""	="Chas Kelly Transport"	19-Nov-07 11:10 AM	
-="CN47105"	" DRY CLEANING SOLVENT "	="Defence Materiel Organisation"	19-Nov-07	="Solvents"	16-Nov-07	21-Nov-07	10494.00	=""	="GLENDALE PACKAGING P/L"	19-Nov-07 11:11 AM	
-="CN47128"	"motor vehicle spare parts"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10030.00	=""	="LANDROVER"	19-Nov-07 11:18 AM	
-="CN47126"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	19-Nov-07	="Medical Equipment and Accessories and Supplies"	16-Jan-07	19-Jan-07	46061.84	=""	="Tyco Healthcare"	19-Nov-07 11:19 AM	
-="CN47141"	"BOOTS, EXTREME COLD WEATHER."	="Defence Materiel Organisation"	19-Nov-07	="Boots"	14-Nov-07	14-Dec-07	64350.00	="J7968"	="PLATYPUS"	19-Nov-07 12:38 PM	
-="CN47156-A1"	" Workstation modification on Level 3 Executive Area  National Support Ofice "	="Family Court of Australia"	19-Nov-07	="Building and Construction Machinery and Accessories"	18-Sep-07	30-Nov-07	24279.10	=""	="Hytec Interior Solutions"	19-Nov-07 01:39 PM	
-="CN47158"	"Battery pack"	="Defence Materiel Organisation"	19-Nov-07	="Product specific battery packs"	16-Nov-07	17-Dec-07	26864.20	=""	="XTEK LTD"	19-Nov-07 01:46 PM	
-="CN47159"	"Fleet management and leasing services (Ref Standing offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	11-Dec-06	10-Dec-08	42978.67	=""	="LEASEPLAN"	19-Nov-07 01:51 PM	
-="CN47160-A1"	" Level 4 HR Workstation Alterations   National Support Office "	="Family Court of Australia"	19-Nov-07	="Building and Construction Machinery and Accessories"	30-Oct-07	30-Nov-07	11733.15	=""	="Hytec Interior Solutions"	19-Nov-07 01:52 PM	
-="CN47161"	"Fleet Management and Leasing Services (Ref standing Offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	29-Jun-07	28-Jun-09	24473.00	=""	="LeasePlan"	19-Nov-07 02:09 PM	
-="CN47163"	"fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	05-Apr-07	04-Apr-09	39100.00	=""	="Leaseplan"	19-Nov-07 02:17 PM	
-="CN47164"	" Circuit Card Assembly for Gen Set. "	="Defence Materiel Organisation"	19-Nov-07	="Motor or generator components"	19-Nov-07	09-Jan-08	11170.34	=""	="Advanced Power (NSW) Pty Ltd"	19-Nov-07 02:28 PM	
-="CN47170"	"Provision for new computer hardware _ MOU MilitarySuper MSB Board"	="Comsuper"	19-Nov-07	="Software"	01-May-06	01-May-08	45926.00	=""	="OPC"	19-Nov-07 02:49 PM	
-="CN47173"	"Provision for Supply of Disk Array Enclosures"	="Comsuper"	19-Nov-07	="Software"	19-Jun-07	18-Jun-08	64900.00	=""	="Vectra Corporation Ltd"	19-Nov-07 02:55 PM	
-="CN47176-A1"	"Provision of Additional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	16-Jan-07	30-Jun-08	198792.00	=""	="IT matters Recruitment services"	19-Nov-07 03:00 PM	
-="CN47179-A1"	"Provision for Additional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	03-Jul-06	28-Jun-08	194480.00	=""	="Southern Cross Computing"	19-Nov-07 03:04 PM	
-="CN47190"	"air fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Travel facilitation"	28-Sep-07	28-Sep-07	140127.66	=""	="American Express"	19-Nov-07 03:17 PM	
-="CN47191"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Transportation and Storage and Mail Services"	04-Sep-07	04-Sep-07	24439.31	=""	="Cabcharge Australia Pty Ltd"	19-Nov-07 03:17 PM	
-="CN47192"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	10-Sep-07	10-Sep-07	10120.00	=""	="Compact - Compliance and Corporate Training"	19-Nov-07 03:17 PM	
-="CN47193"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	21-Sep-07	21-Sep-07	23982.27	=""	="Cybertrust Australia Pty Ltd"	19-Nov-07 03:17 PM	
-="CN47194"	"Consultant AMLR"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	20750.00	=""	="Deloitte Touche Tohmatsu"	19-Nov-07 03:17 PM	
-="CN47195"	"Consultant AMLR"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	13-Sep-07	17600.00	=""	="Deloitte Touche Tohmatsu"	19-Nov-07 03:17 PM	
-="CN47196"	"Consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management advisory services"	11-Sep-07	11-Sep-07	10000.00	=""	="EAS Management"	19-Nov-07 03:18 PM	
-="CN47197"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	03-Sep-07	26437.27	=""	="Electroboard Solutions Pty Ltd"	19-Nov-07 03:18 PM	
-="CN47198"	"user licence"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	04-Sep-07	04-Sep-07	23250.00	=""	="Esri Australia"	19-Nov-07 03:18 PM	
-="CN47199"	"computer repair"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	24-Sep-07	24-Sep-07	40500.00	=""	="Evotec"	19-Nov-07 03:18 PM	
-="CN47200"	"Photocopier Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Office machines and their supplies and accessories"	24-Sep-07	24-Sep-07	16250.00	=""	="Fuji Xerox Aust. Pty Ltd - NSW"	19-Nov-07 03:18 PM	
-="CN47201"	"Personnel placement fee"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	28290.00	=""	="Hays Accountancy Personnel"	19-Nov-07 03:18 PM	
-="CN47202"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Marketing and distribution"	10-Sep-07	10-Sep-07	10923.00	=""	="HMA Blaze"	19-Nov-07 03:18 PM	
-="CN47203"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Marketing and distribution"	27-Sep-07	27-Sep-07	11469.15	=""	="HMA Blaze"	19-Nov-07 03:18 PM	
-="CN47204"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	37180.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:18 PM	
-="CN47205"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	111475.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47206"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	11147.50	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47207"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	03-Sep-07	03-Sep-07	31960.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47208"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	11-Sep-07	11-Sep-07	20296.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47209"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Engineering and Research and Technology Based Services"	14-Sep-07	14-Sep-07	30543.00	=""	="Open Mind Research Group Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47210"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	24-Sep-07	24-Sep-07	16795.39	=""	="Telstra"	19-Nov-07 03:19 PM	
-="CN47212"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	26-Oct-07	26-Oct-07	14058.26	=""	="Australian Public Service Commission"	19-Nov-07 03:19 PM	
-="CN47213"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Furniture and Furnishings"	24-Sep-07	24-Sep-07	20970.00	=""	="UCI Projects Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47214"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Transportation and Storage and Mail Services"	09-Oct-07	09-Oct-07	22285.41	=""	="Cabcharge Australia Pty Ltd"	19-Nov-07 03:19 PM	
-="CN47188"	"Timber"	="Department of Defence"	19-Nov-07	="Plywood"	19-Nov-07	03-Dec-07	12436.80	=""	="PJC DISTRIBUTORS"	19-Nov-07 03:19 PM	
-="CN47215"	"Insurance - Fees"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Insurance and retirement services"	09-Oct-07	09-Oct-07	11545.50	=""	="ComSuper"	19-Nov-07 03:19 PM	
-="CN47216"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	19-Oct-07	19-Oct-07	22890.91	=""	="Cybertrust Australia Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47217"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer Equipment and Accessories"	08-Oct-07	08-Oct-07	29850.36	=""	="Electroboard Solutions Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47218"	"IT Maintenance"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	54994.80	=""	="Hewlett-Packard Australia Ltd"	19-Nov-07 03:20 PM	
-="CN47219"	"Leased Office Space"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Real estate services"	02-Oct-07	02-Oct-07	25836.76	=""	="Investa Asset Management (QLD) Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47220"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Oct-07	01-Oct-07	10030.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47221"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	05-Oct-07	05-Oct-07	25161.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47222"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	30723.78	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47223"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	15392.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47224"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	130397.80	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	
-="CN47189"	" Motor Vehicle Parts. "	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Dec-07	20180.45	=""	="Daimler Chrysler Aust. Pacific"	19-Nov-07 03:21 PM	
-="CN47225"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	13039.78	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:21 PM	
-="CN47226"	"Project Mgmt Services"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Building and Construction and Maintenance Services"	25-Oct-07	25-Oct-07	16016.72	=""	="Montlaur Project Services"	19-Nov-07 03:21 PM	
-="CN47227"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	08-Oct-07	08-Oct-07	15970.48	=""	="Optus"	19-Nov-07 03:21 PM	
-="CN47228"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	01-Oct-07	49597.25	=""	="Ryder Shop & Office Fitting Pty Ltd"	19-Nov-07 03:21 PM	
-="CN47229"	"training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	08-Oct-07	08-Oct-07	66150.00	=""	="SPSS Australasia Pty Ltd"	19-Nov-07 03:21 PM	
-="CN47230"	"Publication Subscriptions"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Printed media"	16-Oct-07	16-Oct-07	11800.11	=""	="Swets information Services"	19-Nov-07 03:21 PM	
-="CN47231"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	23-Oct-07	23-Oct-07	15866.65	=""	="Telstra"	19-Nov-07 03:21 PM	
-="CN47232"	"Roller blinds"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Furniture and Furnishings"	08-Oct-07	08-Oct-07	10149.00	=""	="The Lidi Group Pty Ltd"	19-Nov-07 03:21 PM	
-="CN47239"	" NSN 2915-00-307-5673  PURCHASE OF DIAPHRAGM, PUMP  EX GST "	="Defence Materiel Organisation"	19-Nov-07	="Military transport aircraft"	24-Sep-07	08-Nov-07	10689.20	=""	="Military Aviation Spares Pty Ltd"	19-Nov-07 03:40 PM	
-="CN47242"	" NSN 5330-66-127-3034  PURCHASE OF SEAL BARREL HALF  EX GST "	="Defence Materiel Organisation"	19-Nov-07	="Military transport aircraft"	02-May-07	28-Nov-07	13045.00	=""	="Military Aviation Spares Pty Ltd"	19-Nov-07 03:49 PM	
-="CN47244-A1"	"Provision of Aditional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	03-Jul-07	30-Jun-08	191048.00	=""	="Icon Recruitment Pty Ltd"	19-Nov-07 03:55 PM	
-="CN47243"	"Motor Vehicle parts."	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Nov-07	10244.90	=""	="Daimler Chrysler Aust Pacific"	19-Nov-07 03:56 PM	
-="CN47245-A1"	"Provision of ComSuper Application developer"	="Comsuper"	19-Nov-07	="Human resources services"	09-Oct-06	30-Jun-08	202488.00	=""	="Icon Recruitment"	19-Nov-07 04:00 PM	
-="CN47246"	"Provision for the purchase of Power-Path Licenece for the StatProd server"	="Comsuper"	19-Nov-07	="Software"	15-Nov-07	15-Feb-08	16239.00	=""	="Vectra Corporation Ltd"	19-Nov-07 04:02 PM	
-="CN47247"	"Provision for the development of Anti-Money Laundering and Counter Terrorism Financing e-learning software"	="Comsuper"	19-Nov-07	="Software"	15-Oct-07	15-Dec-07	37984.00	=""	="Total learn Pty Ltd"	19-Nov-07 04:08 PM	
-="CN47248"	" Recruitment Services - 165 Reference Checks. "	="Australian Taxation Office"	19-Nov-07	="Management and Business Professionals and Administrative Services"	26-Sep-07	19-Oct-07	19965.00	="06.042"	="Hudson Global Resources (Aust) Pty Ltd"	19-Nov-07 04:14 PM	
-="CN47249"	"Motor Vehicle Parts."	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Dec-07	17663.76	=""	="Daimler Chrysler Aust. Pacific"	19-Nov-07 04:31 PM	
-="CN47251"	"Provision for Consultancy services"	="Comsuper"	19-Nov-07	="Financial and Insurance Services"	27-Aug-07	28-Sep-07	70450.00	=""	="The IQ Business Group Pty Ltd"	19-Nov-07 04:35 PM	
-="CN47252"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10677.12	=""	="ROVER AUSTRALIA"	19-Nov-07 04:39 PM	
-="CN47253-A1"	"07/2207 - Business analysis services - 1599-1962 - Consultancy and Business Servuces Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	29-Oct-07	31-Dec-08	590544.64	="06/1599"	="Centre for Customs and Excise Studies - University of Canberra"	19-Nov-07 04:39 PM	
-="CN47254-A2"	"07/2378 - Project Manager - 0717-0866 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	210875.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:43 PM	
-="CN47255"	"07/2044 - IT Contractor - 0717-0877 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	13-Aug-07	12-Aug-08	233000.00	="05/0717"	="Greythorn pty Ltd"	19-Nov-07 04:48 PM	
-="CN47256"	"07/2056 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	202000.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:51 PM	
-="CN47257"	"07/2380 - Systems Analyst/Programmer - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	152000.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:54 PM	
-="CN47259"	"Executive Facilitation Services for SES & EL2 Leadership Group."	="Australian Taxation Office"	19-Nov-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	19-Nov-07	11945.00	="06.028"	="Fyusion Asia Pacific P/L"	19-Nov-07 04:56 PM	
-="CN47260-A2"	"07/2383 - Systems Design Coordinator - 0717-0885 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	29-Oct-07	30-Jun-09	447000.00	="05/0717"	="Professionals Online"	19-Nov-07 04:58 PM	
-="CN47261-A1"	"07/2310 - Project Manager - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	19-Nov-07	30-Jun-08	458000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	19-Nov-07 05:01 PM	
-="CN47262"	"07/2140 - IT Contractor -0717-0875 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	03-Sep-07	29-Feb-08	159302.00	="05/0717"	="Frontier Group Australia Pty Ltd"	19-Nov-07 05:04 PM	
-="CN47263"	" Rental & Service for the DAFF Phase Three Photocopiers - local & regional "	="Department of Agriculture Fisheries and Forestry"	19-Nov-07	="Tools and General Machinery"	01-Jul-07	12-Apr-09	635456.10	=""	="Sharp Direct"	19-Nov-07 05:07 PM	
-="CN47264-A1"	"07/2400 - IT Contractor - 0717-0862 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	01-Nov-07	30-Apr-08	100698.00	="05/0717"	="Aurec Pty Ltd"	19-Nov-07 05:07 PM	
-="CN47265"	"CPO016908 - Telecommunications maintenance"	="Australian Customs and Border Protection Service"	19-Nov-07	="Information Technology Broadcasting and Telecommunications"	16-Jun-07	06-Oct-07	54610.05	=""	="Motorola Australia Pty Ltd"	19-Nov-07 05:14 PM	
-="CN47266-A2"	"07/2330 - Technical consultant"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	07-Nov-07	31-Dec-07	76000.00	=""	="Brian Gatfield"	19-Nov-07 05:14 PM	
-="CN47267"	"CPE004099-1 - Fuel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Fuels"	30-Oct-07	30-Oct-07	19195.43	=""	="Cocks Petroleum Pty Ltd"	19-Nov-07 05:14 PM	
-="CN47268"	"CPE004168-1 - Supply of propellor entrapment device"	="Australian Customs and Border Protection Service"	19-Nov-07	="Industrial Manufacturing and Processing Machinery and Accessories"	12-Nov-07	12-Nov-07	14850.00	=""	="Gemini Inflatables Aust Pty"	19-Nov-07 05:14 PM	
-="CN47269-A2"	"07/2355 - Consultancy Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	08-Nov-07	30-Jun-08	76000.00	=""	="Miltech Services"	19-Nov-07 05:14 PM	
-="CN47270"	"06/1640 - Construction Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="General building construction"	14-Sep-07	20-Jun-08	2142910.00	=""	="Northern Australia Aboriginal Development Corporation Pty"	19-Nov-07 05:14 PM	
-="CN47271"	"CPO015592 - Monitoring Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="Management advisory services"	01-Sep-07	26-Feb-08	11000.00	=""	="TradeData International"	19-Nov-07 05:15 PM	
-="CN47272"	"CPO017058 - Digital Recording Equipment"	="Australian Customs and Border Protection Service"	19-Nov-07	="Components for information technology or broadcasting or telecommunications"	15-Nov-07	30-Jun-08	54982.40	=""	="TPR Systems"	19-Nov-07 05:15 PM	
-="CN47273"	"CPO017018 - Conversion of Security System"	="Australian Customs and Border Protection Service"	19-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Nov-07	13167.00	=""	="Honeywell"	19-Nov-07 05:15 PM	
-="CN47275"	"motor vehicle spare parts"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	11003.31	=""	="LAND ROVER AUSTRALIA"	19-Nov-07 05:25 PM	
-="CN47281"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0788 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	19-Nov-07	31-Dec-07	12990.72	=""	="Goodrich Control Systems PTY LTD"	19-Nov-07 08:02 PM	
-="CN47282-A1"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1081 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	19-Nov-07	31-Dec-07	35577.60	=""	="Goodrich Control System PTY LTD"	19-Nov-07 08:08 PM	
-="CN47283"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1935 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	13-Nov-07	31-Dec-07	10699.69	=""	="Goodrich Control Systems PTY LTD"	19-Nov-07 08:13 PM	
-="CN47285"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Nov-07	="Aircraft spars"	19-Nov-07	20-Jun-08	35878.70	=""	="MILSPEC SERVICES PTY LTD"	20-Nov-07 07:34 AM	
-="CN47286"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Medical Equipment and Accessories and Supplies"	12-Nov-07	21-Nov-07	20169.60	=""	="Laerdal Pty Ltd"	20-Nov-07 07:51 AM	
-="CN47287"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	13-Nov-07	10-Dec-07	11616.00	=""	="Alcon Laboratories (Aust) Pty Ltd"	20-Nov-07 07:55 AM	
-="CN47288"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Medical Equipment and Accessories and Supplies"	13-Nov-07	10-Dec-07	38280.00	=""	="LMA Pacmed Pty Ltd"	20-Nov-07 08:01 AM	
-="CN47289"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	13-Nov-07	22-Nov-07	12757.80	=""	="GlaxoSmithKline Australia"	20-Nov-07 08:05 AM	
-="CN47290"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	14-Nov-07	23-Nov-07	17160.00	=""	="Key Pharmaceuticals Pty Ltd"	20-Nov-07 08:08 AM	
-="CN47291"	"CLEANING TOOL. BOOT, COMBO."	="Defence Materiel Organisation"	20-Nov-07	="Mud cleaning equipment"	15-Nov-07	04-Jan-08	134475.00	="J7967"	="REDBACK BOOT CO"	20-Nov-07 08:35 AM	
-="CN47301"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	11434.51	=""	="Auscript Australasia Pty Ltd"	20-Nov-07 09:29 AM	
-="CN47305"	"Taxi & Cabcharges"	="Federal Magistrates Court"	20-Nov-07	="Taxicab services"	01-Oct-07	31-Oct-07	23048.15	=""	="Cabcharge Australia Pty Ltd"	20-Nov-07 09:38 AM	
-="CN47306"	"Recover Costs Rental, Outgoings, Car Parking - October 2007"	="Federal Magistrates Court"	20-Nov-07	="Commercial or industrial facility rental"	01-Oct-07	31-Oct-07	14485.18	=""	="Charter Hall Limited - Savills"	20-Nov-07 09:54 AM	
-="CN47307"	"Accommodation for Associates Conference in Melbourne 260807-280807"	="Federal Magistrates Court"	20-Nov-07	="Hotels and motels and inns"	01-Oct-07	31-Oct-07	27067.90	=""	="Citigate Melbourne"	20-Nov-07 10:03 AM	
-="CN47309"	"Supply and Installation of ceiling tiles, framing and doors for Darwin fit-out"	="Austrade"	20-Nov-07	="General building construction"	20-Aug-07	21-Aug-07	11493.00	=""	="Turtle Constructions Pty Ltd"	20-Nov-07 10:07 AM	
-="CN47310"	"Material and labour for Darwin electrical fit-out"	="Austrade"	20-Nov-07	="Electrical equipment and components and supplies"	03-Aug-07	17-Aug-07	14300.00	=""	="Hardies Electrical Contracting Services Pty Ltd"	20-Nov-07 10:07 AM	
-="CN47311-A1"	"Development of speech and corporate writing"	="Austrade"	20-Nov-07	="Human resources services"	11-Oct-06	15-Feb-07	16000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	20-Nov-07 10:07 AM	
-="CN47312-A1"	"Workshop development and facilitation"	="Austrade"	20-Nov-07	="Computer services"	27-Apr-07	30-Jun-07	17000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	20-Nov-07 10:07 AM	
-="CN47313"	"Supply and installation of Fujitsu wall unit for Darwin fit-out"	="Austrade"	20-Nov-07	="General building construction"	03-Aug-07	17-Aug-07	17459.20	=""	="SIMS Refrigeration"	20-Nov-07 10:07 AM	
-="CN47314-A1"	"Development and delivery of strategic collaboration meeting in New Delhi"	="Austrade"	20-Nov-07	="Human resources services"	18-Apr-07	05-May-07	17500.00	=""	="Learning Dimensions Network Pty Ltd"	20-Nov-07 10:07 AM	
-="CN47315-A1"	"E-business workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	01-Jul-07	30-Jun-08	20000.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:07 AM	
-="CN47316-A1"	"Workshop and online survey development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	19-Sep-07	28-Sep-07	21265.87	=""	="Culture Resource Centre Pty Ltd"	20-Nov-07 10:07 AM	
-="CN47317-A1"	"Analysis and management of service desk functions for Canberra, State Offices & Overseas Posts"	="Austrade"	20-Nov-07	="Human resources services"	13-Aug-07	09-Nov-07	23650.00	=""	="Icon Recruitment Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47318-A2"	"In-House personnel vetting services and development and analysis of Revalidation Program"	="Austrade"	20-Nov-07	="Human resources services"	03-Sep-07	30-Nov-07	22183.20	=""	="Key Vetting Services Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47319-A1"	"Development and delivery of framework for CRM project"	="Austrade"	20-Nov-07	="Human resources services"	10-Sep-07	30-Sep-07	22605.00	=""	="In Corporate Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47320-A1"	"E-business workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	09-Jan-07	30-Jun-07	25000.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47321-A1"	"Workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	16-Aug-07	30-Sep-08	27500.00	=""	="Corteks Company Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47322-A1"	"Professional fees for Word on the Street 2007"	="Austrade"	20-Nov-07	="Human resources services"	31-May-07	01-Jun-07	30332.50	=""	="Impact Employee Communications Pty Limited"	20-Nov-07 10:08 AM	
-="CN47323-A1"	"Delivery of workable classification of information assets"	="Austrade"	20-Nov-07	="Human resources services"	24-Sep-07	30-Jun-08	38500.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:08 AM	
-="CN47324-A1"	"Development and delivery of Microsoft Dynamics CRM showcase"	="Austrade"	20-Nov-07	="Computer services"	12-Sep-07	12-Nov-07	40000.00	=""	="Accenture Australia Holdings Pty Ltd"	20-Nov-07 10:09 AM	
-="CN47325-A1"	"Research and forecast of future skill trends, and formalise practices to drive efficient resource management"	="Austrade"	20-Nov-07	="Computer services"	30-Jul-07	26-Oct-07	53900.00	=""	="GMT Canberra Pty Ltd"	20-Nov-07 10:09 AM	
-="CN47326-A1"	"Management and support in the implementation of the EWC Project"	="Austrade"	20-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	63350.00	=""	="The Nous Group Pty Ltd"	20-Nov-07 10:09 AM	
-="CN47327"	"Room hire for National EMDG Conference"	="Austrade"	20-Nov-07	="Travel and Food and Lodging and Entertainment Services"	06-Feb-07	09-Feb-07	67800.00	=""	="Thakral Operations Pty Ltd"	20-Nov-07 10:09 AM	
-="CN47328-A1"	"Development, analysis and delivery of application systems"	="Austrade"	20-Nov-07	="Human resources services"	02-Jul-06	21-Dec-07	102300.00	=""	="CCS Technology Recruiters"	20-Nov-07 10:09 AM	
-="CN47330"	" Manufacture Furniture FMC LBB & JMT "	="Federal Magistrates Court"	20-Nov-07	="Carpentry"	01-Oct-07	31-Oct-07	13951.30	=""	="Claremont Joinery"	20-Nov-07 10:12 AM	
-="CN47331-A1"	"Design & publishing of annual report & Logo.  This is an additonal top of $8948 to CN34024 $38586.90."	="Future Fund Management Agency"	20-Nov-07	="Promotional material or annual reports"	12-Nov-07	12-Nov-07	47534.90	=""	="Moss Advertising"	20-Nov-07 10:15 AM	
-="CN47333"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	20-Nov-07	="Stationery"	01-Oct-07	31-Oct-07	30011.55	=""	="Corporate Express Australia"	20-Nov-07 10:17 AM	
-="CN47332"	"Cover Plate; Plunger, Clutch; Retaining Tool; Shaft, Straight; Collar, Shaft; Bearing Washer Thrust; Nipple, Pipe; Waher, Key;Pin, Grooved; Spacer, Sleeve"	="Defence Materiel Organisation"	20-Nov-07	="Conventional weapons usage"	20-Nov-07	27-Nov-08	10994.50	=""	="G A Hanrahan Pty Ltd"	20-Nov-07 10:18 AM	
-="CN47334"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	20-Nov-07	="Temporary legal staffing needs"	01-Oct-07	31-Oct-07	30351.10	=""	="Drake Australia Pty Ltd"	20-Nov-07 10:22 AM	
-="CN47336"	"Supply and Install Floor Coverings FMC JMT Level 5"	="Federal Magistrates Court"	20-Nov-07	="Floor coverings"	01-Oct-07	31-Oct-07	51408.50	=""	="Future Floor Services NSW Pty Ltd"	20-Nov-07 10:30 AM	
-="CN47335"	"Development, facilitation and advice on industry team strategy, with a focus on South Asia operations"	="Austrade"	20-Nov-07	="Computer services"	21-Jul-07	31-Jul-08	15400.00	=""	="CBA Consulting Group Ltd"	20-Nov-07 10:31 AM	
-="CN47337"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	21864.32	=""	="Harvey Consultancy - Report Writer"	20-Nov-07 10:36 AM	
-="CN47338"	"HMA Blaze"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Advertising"	01-Jul-07	30-Jun-08	12311.99	=""	="HMA Blaze Pty Ltd"	20-Nov-07 10:38 AM	
-="CN47339"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Internet services"	01-Jul-07	30-Jun-08	12856.01	=""	="Telstra"	20-Nov-07 10:38 AM	
-="CN47340"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14029.67	=""	="Tru Energy"	20-Nov-07 10:38 AM	
-="CN47341"	"EXPRESS OFFICE SYSTEMS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Laser printers"	01-Oct-07	01-Oct-08	21662.30	="NA"	="EXPRESS OFFICE SYSTEMS"	20-Nov-07 10:38 AM	
-="CN47342"	"Attorney-General's Department"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Network security equipment"	06-Sep-07	06-Sep-07	50000.00	=""	="Attorney-General's Department"	20-Nov-07 10:38 AM	
-="CN47343"	"EBSCO AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Library"	07-Nov-07	07-Nov-08	141148.04	="NA"	="EBSCO Australia"	20-Nov-07 10:38 AM	
-="CN47344"	"GJK CLEANING SERVICES"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Cleaning and janitorial supplies"	15-Oct-07	15-Oct-08	109203.38	="NA"	="GJK Facility Services"	20-Nov-07 10:38 AM	
-="CN47345"	"LOOP TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer servers"	23-Aug-07	23-Aug-08	32315.87	="NA"	="Loop Technology"	20-Nov-07 10:39 AM	
-="CN47346"	"Radisson Hotels"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Hotels"	23-Jul-07	23-Jul-07	28912.00	=""	="Radisson Hotel and Suites Sydney"	20-Nov-07 10:39 AM	
-="CN47347"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer accessories"	23-Jul-07	30-Jun-08	15400.00	=""	="DELL COMPUTER P/L"	20-Nov-07 10:39 AM	
-="CN47348"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Meteorology"	24-Aug-07	24-Aug-08	46819.97	="NA"	="Bureau of Meteorology"	20-Nov-07 10:39 AM	
-="CN47350"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	10793.75	=""	="Protiviti Pty Ltd"	20-Nov-07 10:39 AM	
-="CN47351"	"Inderlec Medical Systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer accessories"	31-Jul-07	30-Jun-08	39347.00	="NA"	="Inderlec Medical Systems P/L"	20-Nov-07 10:39 AM	
-="CN47349"	"    Venue Hire for New York International Gift Fair    "	="Austrade"	20-Nov-07	="Marketing and distribution"	12-Aug-07	16-Aug-07	21996.00	=""	="George Little Management"	20-Nov-07 10:39 AM	
-="CN47352"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrical services"	01-Jul-07	30-Jun-08	13946.71	=""	="Tru Energy"	20-Nov-07 10:40 AM	
-="CN47353"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14322.55	=""	="Tru Energy"	20-Nov-07 10:40 AM	
-="CN47354"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	17791.40	=""	="Honeywell"	20-Nov-07 10:40 AM	
-="CN47355"	"HMA Blaze"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Advertising"	01-Jul-07	30-Jun-08	24141.35	=""	="HMA Blaze Pty Ltd"	20-Nov-07 10:40 AM	
-="CN47356"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	
-="CN47357"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	
-="CN47358"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	
-="CN47359"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Property management"	01-Jul-07	30-Jun-08	73985.64	=""	="Honeywell"	20-Nov-07 10:41 AM	
-="CN47360"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Pump integrity monitors"	03-Oct-07	30-Oct-08	46337.50	="NA"	="Nu Scientific P/L"	20-Nov-07 10:41 AM	
-="CN47361"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Meteorology"	24-Aug-07	24-Aug-08	46476.77	="NA"	="Bureau of Meteorology"	20-Nov-07 10:41 AM	
-="CN47362"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Audit services"	26-Jun-07	26-Jun-07	14300.00	=""	="Protiviti Pty Ltd"	20-Nov-07 10:41 AM	
-="CN47363"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Internet services"	01-Jul-07	30-Jun-08	12856.01	=""	="Telstra"	20-Nov-07 10:41 AM	
-="CN47365"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of two phase electricity"	01-Jul-07	30-Jun-08	13036.28	=""	="Tru Energy"	20-Nov-07 10:41 AM	
-="CN47366"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrical services"	01-Jul-07	30-Jun-08	13094.93	=""	="Tru Energy"	20-Nov-07 10:42 AM	
-="CN47367"	"LEASEPLAN"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Transportation services equipment"	01-Jul-07	30-Jun-08	25000.00	="NA"	="Leaseplan Australia"	20-Nov-07 10:42 AM	
-="CN47368"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:42 AM	
-="CN47369"	"United Nations Environmental Programme"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Environmental Services"	08-Oct-07	08-Oct-07	100648.62	=""	="United Nations Environment Programme"	20-Nov-07 10:42 AM	
-="CN47364"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	20-Nov-07	="Temporary clerical or administrative assistance"	01-Oct-07	31-Oct-07	10675.09	=""	="Hays Specialist Recruitment (Australia) Pty Ltd"	20-Nov-07 10:42 AM	
-="CN47370"	"PROGRAMMED MAINTENANCE SERVICES"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Grounds maintenance services"	12-Sep-07	12-Sep-08	21648.00	="NA"	="PROGRAMMED MAINTENANCE SERVICES"	20-Nov-07 10:42 AM	
-="CN47371"	"AUTOSCAN SYSTEMS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer Equipment and Accessories"	14-Aug-07	14-Aug-08	11000.00	="NA"	="Autoscan Systems"	20-Nov-07 10:42 AM	
-="CN47372"	"Tour Hosts"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Conference centres"	21-Aug-07	30-Nov-07	145000.00	=""	="Tour Hosts Pty Ltd"	20-Nov-07 10:42 AM	
-="CN47373"	"LOOP TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="High end computer servers"	23-Aug-07	23-Aug-08	10985.08	="NA"	="Loop Technology"	20-Nov-07 10:43 AM	
-="CN47374"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	16920.31	=""	="Protiviti Pty Ltd"	20-Nov-07 10:43 AM	
-="CN47375"	"Department of Foreign Affairs and Trade"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Desktop communications software"	31-May-07	07-Aug-07	15345.00	=""	="Department of Foreign Affairs and Trade"	20-Nov-07 10:43 AM	
-="CN47377"	"Votar Partners"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Information technology consultation services"	01-Sep-07	30-Sep-07	13750.00	=""	="Votar Partners"	20-Nov-07 10:43 AM	
-="CN47378"	"MCMILLAN PRINT MANAGEMENT"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Tags"	08-Oct-07	08-Oct-08	82212.01	="NA"	="McMillan Print Group"	20-Nov-07 10:43 AM	
-="CN47379"	"Dr S A Harbison"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	10-Aug-07	10-Aug-07	12639.03	=""	="S A Harbison CB"	20-Nov-07 10:43 AM	
-="CN47380"	"Department of Finance and Admin"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Employer administered pension funds"	16-Jul-07	16-Jul-07	117391.00	=""	="DEPT OF FINANCE and  ADMIN"	20-Nov-07 10:43 AM	
-="CN47381"	"TRIPLE POINT CALIBRATIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Amplifiers"	21-Sep-07	21-Sep-08	25555.00	="NA"	="TRIPLE POINT CALIBRATIONS"	20-Nov-07 10:43 AM	
-="CN47382"	"SCIENTIFIC DEVICES P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrometers"	21-Sep-07	21-Sep-08	25653.00	="NA"	="Scientific Devices Australia Pty Lt"	20-Nov-07 10:44 AM	
-="CN47383"	"CORPORATE EXPRESS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer services"	24-Aug-07	24-Aug-07	95385.82	="NA"	="Corporate Express"	20-Nov-07 10:44 AM	
-="CN47384"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	10304.91	=""	="Protiviti Pty Ltd"	20-Nov-07 10:44 AM	
-="CN47385"	"Australian Taxation Office"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Water or gas control evaluation services"	28-Aug-07	28-Aug-07	16720.00	=""	="Australian Taxation Office"	20-Nov-07 10:44 AM	
-="CN47386"	"    Workshop development and facilitation    "	="Austrade"	20-Nov-07	="Marketing and distribution"	09-Jul-07	17-Oct-08	44800.00	=""	="Orbis Associates"	20-Nov-07 10:46 AM	
-="CN47387"	"Advertising"	="Federal Magistrates Court"	20-Nov-07	="Advertising"	01-Oct-07	31-Oct-07	10328.27	=""	="HMA Blaze Intergrated Communications"	20-Nov-07 10:47 AM	
-="CN47388"	"    Delivery and management of IT test environment    "	="Austrade"	20-Nov-07	="Human resources services"	02-Oct-07	21-Dec-07	54000.00	=""	="Gobind and Kanchan Hira"	20-Nov-07 10:48 AM	
-="CN47389"	"    Olympics hospitality and ticket package for Beijing 2008 Olympics    "	="Austrade"	20-Nov-07	="Marketing and distribution"	26-Jun-07	29-Jun-07	354487.00	=""	="Cosport"	20-Nov-07 10:51 AM	
-="CN47376"	"    Accomodation, and room hire for the 'Australian Education International-Study in Australia'    event    "	="Austrade"	20-Nov-07	="Travel and Food and Lodging and Entertainment Services"	30-Aug-07	26-Oct-07	29995.00	=""	="Renaissance Sao Paulo Hotel"	20-Nov-07 10:55 AM	
-="CN47390"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	24225.30	=""	="Jay Manya"	20-Nov-07 10:58 AM	
-="CN47392"	"Counselling Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	12564.30	=""	="Joy Slattery Counselling Pty Ltd"	20-Nov-07 11:05 AM	
-="CN47393"	"Various Photocopier Equipment & Accessories"	="Federal Magistrates Court"	20-Nov-07	="Printer and photocopier and facsimile accessories"	01-Oct-07	31-Oct-07	36621.06	=""	="Kyocera Mita Australia Pty Ltd"	20-Nov-07 11:09 AM	
-="CN47395"	"Recover Costs Rental, Outgoings, Car Parking"	="Federal Magistrates Court"	20-Nov-07	="Commercial or industrial facility rental"	01-Oct-07	31-Oct-07	13595.53	=""	="Law Courts Ltd-United Group Services (United KFPW)"	20-Nov-07 11:15 AM	
-="CN47396"	"Vehicle Leases"	="Federal Magistrates Court"	20-Nov-07	="Vehicle rental"	01-Oct-07	31-Oct-07	81023.75	=""	="Lease Plan"	20-Nov-07 11:21 AM	
-="CN47397"	"Magazines & Subscriptions"	="Federal Magistrates Court"	20-Nov-07	="Magazines"	01-Oct-07	31-Oct-07	24311.03	=""	="Lexis Nexis"	20-Nov-07 11:26 AM	
-="CN47398"	"Embroidered badges and ceremonial accoutrements"	="Defence Materiel Organisation"	20-Nov-07	="Military uniforms"	13-Nov-07	20-Jun-08	56450.00	="ACC002/0708"	="Babylon Industries"	20-Nov-07 11:33 AM	
-="CN47403"	"Consulting Fees due to MP Consulting on Multi-Cultural Program"	="Federal Magistrates Court"	20-Nov-07	="Business and corporate management consultation services"	01-Oct-07	31-Oct-07	11000.00	=""	="MP Consulting Pty Ltd"	20-Nov-07 11:50 AM	
-="CN47409"	"Fleet Management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	27-Jan-06	26-Jan-09	20539.73	=""	="Leaseplan"	20-Nov-07 12:16 PM	
-="CN47411"	" Embroidered Insignia "	="Defence Materiel Organisation"	20-Nov-07	="Badges"	13-Nov-07	20-Jun-08	61146.27	="ACC002/0708"	="Babylon Industries"	20-Nov-07 12:35 PM	
-="CN47415"	"Fleet management and leasing services ( Ref Stnding Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	27-Jan-07	26-Jan-08	22673.90	=""	="Leaseplan"	20-Nov-07 12:36 PM	
-="CN47417"	"Internal audit services"	="Future Fund Management Agency"	20-Nov-07	="Internal audits"	15-Oct-07	31-Dec-07	12100.00	=""	="Pricewaterhouse Coopers"	20-Nov-07 12:49 PM	
-="CN47419"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	10-Nov-06	09-Nov-07	41940.10	=""	="Leaseplan"	20-Nov-07 12:52 PM	
-="CN47436"	"Testing of Translations in Eight Languages"	="Federal Magistrates Court"	20-Nov-07	="Business and corporate management consultation services"	01-Oct-07	31-Oct-07	13200.00	=""	="MyriaD Consultants"	20-Nov-07 01:27 PM	
-="CN47440"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	96326.43	=""	="National Transcription Services Pty Ltd"	20-Nov-07 01:32 PM	
-="CN47443"	"OES and ZENworks Suite Licenses and Maintenance"	="Federal Magistrates Court"	20-Nov-07	="License management software"	01-Oct-07	31-Oct-07	22453.75	=""	="Novell Pty Ltd"	20-Nov-07 01:39 PM	
-="CN47425"	"Legal Advice"	="Australian Crime Commission"	20-Nov-07	="Legal services"	24-Jul-07	24-Jul-07	20000.00	=""	="Blake Dawson Waldron"	20-Nov-07 01:41 PM	
-="CN47423"	"Contract Advice"	="Australian Crime Commission"	20-Nov-07	="Legal services"	24-Jul-07	24-Jul-07	15132.00	=""	="Australian Government Solicitor"	20-Nov-07 01:43 PM	
-="CN47445"	"Interpreting Services"	="Federal Magistrates Court"	20-Nov-07	="Interpreters"	01-Oct-07	31-Oct-07	22315.59	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	20-Nov-07 01:44 PM	
-="CN47421"	"Office Fit Out Works"	="Australian Crime Commission"	20-Nov-07	="Workstations and office packages"	24-Jul-07	24-Jul-07	14111.00	=""	="Bill the Builder"	20-Nov-07 01:44 PM	
-="CN47405"	"Supply and Installation of Loose furniture"	="Australian Crime Commission"	20-Nov-07	="Office furniture"	10-Jul-07	10-Jul-07	215606.00	=""	="CITE Office Furniture"	20-Nov-07 01:47 PM	
-="CN47418"	"PABX Service"	="Australian Crime Commission"	20-Nov-07	="Circuit switchboard equipment"	23-Jul-07	31-Mar-08	19343.59	=""	="Powertel Ltd"	20-Nov-07 01:49 PM	
-="CN47446"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	17176.99	=""	="Paris Consultancy Pty Ltd"	20-Nov-07 01:50 PM	
-="CN47391"	"Temporary Contractor"	="Australian Crime Commission"	20-Nov-07	="Personnel recruitment"	13-Feb-07	16-Jul-07	31904.81	=""	="Hays Personnel"	20-Nov-07 01:52 PM	
-="CN47447"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	20-Nov-07	="Temporary clerical or administrative assistance"	01-Oct-07	31-Oct-07	24993.13	=""	="Robert Half Australia"	20-Nov-07 01:54 PM	
-="CN47394"	"Computer Hardware"	="Australian Crime Commission"	20-Nov-07	="Computer hardware maintenance or support"	19-Jun-07	19-Jun-07	538735.00	=""	="Oxygen Business Solutions"	20-Nov-07 01:56 PM	
-="CN47448"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	28709.58	=""	="Spark & Cannon Australasia Pty Ltd"	20-Nov-07 01:59 PM	
-="CN47408"	" Computer Monitors "	="Australian Crime Commission"	20-Nov-07	="Computer Equipment and Accessories"	16-Jul-07	16-Jul-07	11932.00	=""	="Commander"	20-Nov-07 01:59 PM	
-="CN47449"	"Office Refurbishment FMC Level 6 & 7 JMT Building"	="Federal Magistrates Court"	20-Nov-07	="Refurbishing services"	01-Oct-07	31-Oct-07	156387.70	=""	="TDA Interiors Australia Pty Ltd"	20-Nov-07 02:05 PM	
-="CN47450"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	20-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Oct-07	31-Oct-07	21187.50	=""	="Telstra Corporation Limited"	20-Nov-07 02:08 PM	
-="CN47451-A1"	"Provision of an Enterprise Portal Consultant"	="CRS Australia"	20-Nov-07	="Computer services"	13-Nov-07	29-Feb-08	11550.00	=""	="Supply Chain Consulting Pty Ltd"	20-Nov-07 02:12 PM	
-="CN47452"	" Magazines & Subscriptions "	="Federal Magistrates Court"	20-Nov-07	="Legal Research Services"	01-Oct-07	31-Oct-07	24838.85	=""	="Thomson Legal & Regulatory Group"	20-Nov-07 02:13 PM	
-="CN47453"	"Manufacture & Supply Furniture - FMC"	="Federal Magistrates Court"	20-Nov-07	="Furniture manufacturing services"	01-Oct-07	31-Oct-07	28952.00	=""	="UCI Projects Pty Ltd - Canberra"	20-Nov-07 02:19 PM	
-="CN47456"	"Production of Superannuation Seminar DVD and replication of 7000 DVDs for distribution."	="Australian Taxation Office"	20-Nov-07	="Video production services"	22-Aug-07	25-Nov-07	62854.55	="56.04"	="Great Southern Communications (Australia) Pty Ltd"	20-Nov-07 02:26 PM	
-="CN47457"	"Office Furniture - FMC Adelaide & JMT"	="Federal Magistrates Court"	20-Nov-07	="Office furniture"	01-Oct-07	31-Oct-07	11017.60	=""	="Workspace Commercial Furniture Pty Ltd"	20-Nov-07 02:28 PM	
-="CN47458-A1"	"Recruitment of APS4 to EL1 OOM"	="Australian Taxation Office"	20-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	21-Dec-07	213000.00	="06.042"	="DFP Recruitment Services Pty Ltd"	20-Nov-07 02:31 PM	
-="CN47468"	"RAAF Flags "	="Defence Materiel Organisation"	20-Nov-07	="Flags or accessories"	12-Nov-07	23-Apr-08	179459.50	="ACC004/0708"	="Evan Evans Pty Ltd"	20-Nov-07 03:15 PM	
-="CN47467"	"CLEANING COMPOUND, AIRCRAFT SURFACE"	="Defence Materiel Organisation"	20-Nov-07	="Compounds and mixtures"	19-Nov-07	19-Dec-08	20348.59	=""	="ECO 2000 PTY LTD"	20-Nov-07 03:25 PM	
-="CN47471"	"  CAP, UTILITY, NAVY BLUE, BASEBALL STYLE, W/LEGIONNAIRES SKIRT, COTTON/POLYESTER  "	="Defence Materiel Organisation"	20-Nov-07	="Clothing accessories"	13-Nov-07	07-Mar-08	25315.13	=""	="DESIGN HOMES AUSTRALIA PTY LTD"	20-Nov-07 03:25 PM	
-="CN47474"	"Ceremonial Shoulder Boards and Ornamental Lace"	="Defence Materiel Organisation"	20-Nov-07	="Military uniforms"	15-Oct-07	21-Mar-08	18875.92	="ACC008/0708"	="Solomon Brothers"	20-Nov-07 04:08 PM	
-="CN47476"	"Desktop PC's"	="Centrelink"	20-Nov-07	="Personal computers"	20-Nov-07	20-Feb-08	11492.80	="2004/52285"	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:13 PM	
-="CN47477-A1"	"Production, editing and hosting online video to publish information on the type of services available to small business"	="Australian Taxation Office"	20-Nov-07	="Video production services"	19-Nov-07	05-Dec-07	39025.80	=""	="Great Southern Communications (Australia) Pty Ltd"	20-Nov-07 04:14 PM	
-="CN47479"	"SEALING COMPOUND"	="Defence Materiel Organisation"	20-Nov-07	="Sealing tools"	20-Nov-07	02-Jan-08	10443.18	=""	="PPG AEROSPACE PTY. LTD."	20-Nov-07 04:23 PM	
-="CN47481"	" EXTINGUISHER, FIRE DRY CHEMICAL, 4.5KG CAPACITY, STORED PRESSURE REGULATED DISCHARGE TYPE  EXTINGUISHER, FIRE DRY CHEMICAL, 2.5 KG CAPACITY, STORED PRESSURE REGULATED DISCHARGE TYPE, CLASS A, B & E  EXTINGUISHER, FIRE DRY CHEMICAL, 1.5 KG CAPACITY, STORED PRESSURE REGULATED CHARGE TYPE     "	="Defence Materiel Organisation"	20-Nov-07	="Fire extinguishers"	20-Nov-07	23-Nov-07	22220.00	=""	="CHUBB FIRE SAFETY LTD"	20-Nov-07 04:26 PM	
-="CN47485"	"Fleet managment and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	12-Jul-07	11-Jul-09	62982.22	=""	="LeasePlan"	20-Nov-07 04:39 PM	
-="CN47473"	" Provision of Desktop PC's and related services  Work Order 1 "	="CRS Australia"	20-Nov-07	="Desktop computers"	22-May-07	30-May-07	46233.00	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:42 PM	
-="CN47489"	" Provision of Desktop PC's and related services  Work Order No. 2 "	="CRS Australia"	20-Nov-07	="Desktop computers"	26-Jun-07	30-Sep-07	406580.90	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:47 PM	
-="CN47491"	" Provision of Desktop PC's and related services  Work Order No. 3 "	="CRS Australia"	20-Nov-07	="Desktop computers"	02-Oct-07	29-Oct-07	27064.16	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:51 PM	
-="CN47488"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	05-Apr-06	04-Apr-08	45212.00	=""	="LeasePlan"	20-Nov-07 04:52 PM	
-="CN47493"	" Provision of Desktop PC's and related services  Work Order No. 4 "	="CRS Australia"	20-Nov-07	="Desktop computers"	31-Oct-07	28-Nov-07	382379.80	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:56 PM	
-="CN47494"	"Protective Guard Services, Scanning and X-ray"	="Australian Electoral Commission"	20-Nov-07	="Security guard services"	12-Nov-07	28-Nov-07	64807.60	=""	="SNP Security"	20-Nov-07 04:57 PM	
-="CN47490"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	09-Feb-07	08-Feb-09	44788.00	=""	="Lease Plan"	20-Nov-07 04:57 PM	
-="CN47495"	"Metal Buckles raised against standing offer NCC/284/01"	="Defence Materiel Organisation"	20-Nov-07	="Buckles"	20-Nov-07	18-Apr-08	310376.00	="J8040"	="Cashs Australia Pty Ltd"	20-Nov-07 05:07 PM	
-="CN47498"	" Purchase of DPDU coats and Trousers "	="Defence Materiel Organisation"	20-Nov-07	="Clothing"	17-Aug-07	15-Dec-07	938330.80	=""	="Australian Defence Apparel Pty Ltd"	20-Nov-07 06:18 PM	
-="CN47280"	" Annual Maintenance for gas chromotographs "	="Australian Federal Police"	20-Nov-07	="Laboratory and scientific equipment"	27-Sep-07	30-Jun-08	11370.00	="RFT 40-2006"	="Agilent Technologies Australia Pty Ltd"	20-Nov-07 08:00 PM	
-="CN47500"	"Subscription for provision of research services"	="Australian Federal Police"	20-Nov-07	="Computer Equipment and Accessories"	01-Jul-07	30-Jun-08	94160.00	=""	="Gartner Australasia Pty Ltd"	20-Nov-07 08:09 PM	
-="CN47501"	"Engagement of speaker for law enforcement conference"	="Australian Federal Police"	20-Nov-07	="Law enforcement"	18-Jul-07	30-Nov-07	24500.00	=""	="ICIM Speakers and Entertainers"	20-Nov-07 08:45 PM	
-="CN47503"	" Relocation of Office equipment for the Australian Institute of Police Management "	="Australian Federal Police"	20-Nov-07	="Relocation services"	01-Jul-07	31-Jul-07	48690.00	=""	="Kent Moving and Storage"	20-Nov-07 09:02 PM	
-="CN47505"	" provision of data and electrical cabling "	="Australian Federal Police"	20-Nov-07	="Computer Equipment and Accessories"	15-Jun-07	31-Aug-07	50919.00	=""	="C & W Electrical Pty Ltd"	20-Nov-07 09:23 PM	
-="CN47506-A1"	" National Registration and Inquiry System which allows for emergency and disaster management "	="Australian Federal Police"	20-Nov-07	="Call management systems or accessories"	01-Jan-07	30-Jun-12	289721.88	=""	="Australian Red Cross"	20-Nov-07 09:35 PM	
-="CN47508"	"Forensic Laboratory equipment maintenance agreement"	="Australian Federal Police"	20-Nov-07	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jul-07	28-Jul-08	31284.00	=""	="Applied Biosystems"	20-Nov-07 09:59 PM	
-="CN47509"	"construction project management services"	="Australian Federal Police"	20-Nov-07	="Project management"	23-Jul-07	23-Feb-08	60000.00	=""	="Kramer Group (Vanuatu) Ltd"	20-Nov-07 10:18 PM	
-="CN47513"	" Lease of a forklift "	="Australian Federal Police"	20-Nov-07	="Material handling machinery and equipment"	03-Dec-07	30-Dec-12	40308.85	=""	="Crowne Equipment Pty Ltd"	20-Nov-07 10:58 PM	
-="CN47514"	"Information services business analysis activities for AFP applications and systems"	="Australian Federal Police"	20-Nov-07	="Computer services"	16-Jul-07	30-Nov-07	178024.00	=""	="Compas Pty Ltd"	20-Nov-07 11:19 PM	
-="CN47515"	"Information Services - application development support services"	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Jul-05	30-Jun-08	594448.00	=""	="Datavantage Australia Pty Ltd"	20-Nov-07 11:29 PM	
-="CN47516-A2"	" Provision of services relating to the delivery of information systems, fault diagnosis, enhancements and performance improvement "	="Australian Federal Police"	20-Nov-07	="Computer services"	13-Aug-07	01-Aug-08	159486.80	=""	="Finite Recruitment Pty. Ltd."	20-Nov-07 11:34 PM	
-="CN47517-A3"	" IT Services - High level Unix Support "	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Jul-07	30-Jun-09	560131.00	=""	="I&TC Solutions Pty Ltd"	20-Nov-07 11:42 PM	
-="CN47518-A2"	"Services relating to Project Management services for information services applications development projects"	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Aug-07	30-Sep-08	297827.20	=""	="Innovative Business Computing Pty Ltd"	20-Nov-07 11:50 PM	
-="CN47519-A1"	"Web publishing of content on internal and external AFP websites"	="Australian Federal Police"	20-Nov-07	="Engineering and Research and Technology Based Services"	13-Aug-07	28-Feb-09	194832.00	=""	="Peoplebank Australia Limited"	20-Nov-07 11:54 PM	
-="CN47520-A1"	" SHIPPING AND STORAGE CONTAINERS TO HOLD STEYR RIFLES "	="Defence Materiel Organisation"	21-Nov-07	="Die cut corrugated shipping cartons with separate lids"	19-Nov-07	03-Mar-08	142010.50	=""	="TRIMCAST PTY LTD"	21-Nov-07 06:54 AM	
-="CN47522-A1"	"SHIPPING AND STORAGE CONTAINERS TO STEYR RIFLES"	="Defence Materiel Organisation"	21-Nov-07	="Die cut corrugated shipping cartons with separate lids"	19-Nov-07	03-Mar-08	35502.50	=""	="TRIMCAST PTY LTD"	21-Nov-07 07:11 AM	
-="CN47521"	"Repair of aircraft parts"	="Defence Materiel Organisation"	21-Nov-07	="Aircraft"	01-Nov-07	01-Dec-07	92400.00	=""	="Rosebank Engineering Pty Ltd"	21-Nov-07 07:59 AM	
-="CN47459"	" 1. Petroleum Base Hydraulic Fluid 9150 00-223-4134 OM-15 (ROYCO 756) IN 1 US GAL can Qty 96  2. Fire Resistant Hydraulic Fluid 9150 01-548-6612 Royco 782 IN 1 US QT can Qty 1440     "	="Defence Materiel Organisation"	21-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	18-Dec-07	15014.21	=""	="AS Harrison & CO Pty Ltd"	21-Nov-07 08:04 AM	
-="CN47523"	"Repair of aircraft parts"	="Defence Materiel Organisation"	21-Nov-07	="Aircraft"	20-Nov-07	27-Dec-07	106063.10	=""	="Rosebank Engineering Pty Ltd"	21-Nov-07 08:09 AM	
-="CN47524"	" 9150 66-035-7879 Petroleum Base Hydraulic Fluid  OM-33 in 200L   12 Drums    "	="Defence Materiel Organisation"	21-Nov-07	="Lubricants and oils and greases and anti corrosives"	20-Nov-07	27-Nov-07	11996.03	=""	="Fuchs Lubricants"	21-Nov-07 08:16 AM	
-="CN47525"	"Insignia, Rank, Officer various"	="Defence Materiel Organisation"	21-Nov-07	="Badges"	14-Nov-07	21-Feb-08	65252.88	="ACC012/0708"	="Intandem"	21-Nov-07 08:16 AM	
-="CN47528"	"Tri Service Luggage"	="Defence Materiel Organisation"	21-Nov-07	="Luggage"	11-Oct-07	18-Jan-08	149660.28	="ACC013/0708"	="Larosa Leathergoods Pty Ltd"	21-Nov-07 09:05 AM	
-="CN47534"	"Internet Connectivity"	="Department of the Environment and Water Resources"	21-Nov-07	="Internet services"	14-Jun-00	30-Jun-07	660000.00	=""	="Telstra Corporation Ltd"	21-Nov-07 09:09 AM	
-="CN47535"	"ICT Contractor Services by Specified Personnel"	="Child Support Agency"	21-Nov-07	="Human resources services"	26-Nov-07	25-Feb-08	60060.00	=""	="Finite Recruitment Pty Ltd"	21-Nov-07 09:11 AM	
-="CN47536"	"Stevedoring Services"	="Department of the Environment and Water Resources"	21-Nov-07	="Stevedoring services"	01-Jul-05	30-Jun-10	600000.00	=""	="Capital Stevedoring"	21-Nov-07 09:12 AM	
-="CN47537-A1"	"Valuation of Departmental Assets"	="Department of the Environment and Water Resources"	21-Nov-07	="Management and Business Professionals and Administrative Services"	01-Sep-04	31-Aug-09	4172369.40	=""	="PURDON & FEATHERSTONE PTY LTD"	21-Nov-07 09:16 AM	
-="CN47538"	"ICT Contract Services by Specified Personnel"	="Child Support Agency"	21-Nov-07	="Human resources services"	07-Dec-07	06-Jun-08	171600.00	=""	="Tarakan Consulting Pty Ltd"	21-Nov-07 09:18 AM	
-="CN47540"	"Gold Plated Buckles raised against Metal Standing Offer NCC/284/01"	="Defence Materiel Organisation"	21-Nov-07	="Buckles"	21-Nov-07	15-Jun-08	211508.00	="G6800"	="Cash's Australia Pty Ltd"	21-Nov-07 09:22 AM	
-="CN47546"	"  BERET, MAN'S VARIOUS COLOURS  "	="Defence Materiel Organisation"	21-Nov-07	="Clothing accessories"	13-Nov-07	30-Apr-08	224507.80	=""	="MOUNTCASTLE PTY LTD"	21-Nov-07 09:32 AM	
-="CN47548-A2"	"Provision of stationery supplies and printing, storage and distribution of promotional items and publications."	="CRS Australia"	21-Nov-07	="Stationery"	11-Nov-04	31-Mar-10	7468886.04	="CRS0504"	="Corporate Express"	21-Nov-07 09:33 AM	
-="CN47549"	"Removal and Storage"	="Department of the Environment and Water Resources"	21-Nov-07	="Relocation services"	10-Oct-05	30-Sep-10	365000.00	=""	="Grace Removals Pty Ltd"	21-Nov-07 09:37 AM	
-="CN47550"	"Design Facilitation & Information Design Services"	="Australian Taxation Office"	21-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Jan-08	62000.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	21-Nov-07 09:39 AM	
-="CN47553"	"Study in Australia Communications and Advertising"	="Department of Education, Science and Training"	21-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	79982.00	="PRN16136"	="INSIDE STORY KNOWLEDGE MNGT P/L"	21-Nov-07 09:48 AM	
-="CN47412"	"Repair of Blackhawk Hoist"	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	20-Nov-07	22-Nov-07	49426.07	=""	="Sikorsky Aircraft Australia Ltd"	21-Nov-07 09:50 AM	
-="CN47554"	"Commonwealth Scholarship and Fellowship Plan Promotion and Nomination Process"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	03-Sep-07	30-Jun-10	90812.00	="PRN14847"	="IDP Education Australia Ltd"	21-Nov-07 09:51 AM	
-="CN47555"	"Venue Hire Trondheim"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Mar-07	30-Sep-07	10013.54	="PRN15625"	="RICA NIDELVEN HOTEL"	21-Nov-07 09:51 AM	
-="CN47558"	"Army Lanyards and Ornamental Lace"	="Defence Materiel Organisation"	21-Nov-07	="Military uniforms"	19-Nov-07	09-Jun-08	99206.68	="ACC015/0708"	="P Blashki and Sons"	21-Nov-07 10:08 AM	
-="CN47559"	"Examination of 2006 and 2007 financial statements"	="Department of Education, Science and Training"	21-Nov-07	="Financial and Insurance Services"	21-Sep-07	19-Oct-07	27500.00	="PRN16975"	="DELOITTE GROWTH SOLUTIONS PTY LTD"	21-Nov-07 10:12 AM	
-="CN47560"	"Two Temporary APS6's, Teacher Status Team"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	07-May-07	10-Aug-07	10219.02	="PRN14976"	="SELECT APPOINTMENTS"	21-Nov-07 10:12 AM	
-="CN47561"	"Implementation of a Revised Employee Performance Management System"	="Child Support Agency"	21-Nov-07	="Business administration services"	19-Nov-07	30-Jul-08	282223.50	="08CSA029"	="People and Strategy  (ACT) Pty Ltd"	21-Nov-07 10:19 AM	
-="CN47562"	"Tape Library support and maintenance cover."	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	01-Jul-07	30-Jun-08	96120.00	="PRN16665"	="SUN MICROSYSTEMS DATA MANAGE/GROUP"	21-Nov-07 10:19 AM	
-="CN47563"	"Business Intelligence Consulting"	="Department of Education, Science and Training"	21-Nov-07	="Business administration services"	01-Jul-07	30-Jun-08	46000.00	="PRN16911"	="SOLID QUALITY LEARNING PTY LTD"	21-Nov-07 10:19 AM	
-="CN47564"	"Mail Services November 2005"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	01-Jul-07	30-Jun-08	57000.00	="PRN16764"	="AUSTRALIA POST"	21-Nov-07 10:19 AM	
-="CN47565"	"Mail Services - Aust Post Oct Account"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	10-Sep-07	30-Nov-07	23500.00	="PRN16864"	="AUSTRALIA POST - STRAWBERRY HILLS"	21-Nov-07 10:20 AM	
-="CN47566"	"Courier Services - Wk ending 24 Aug"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	04-Sep-07	30-Nov-07	12056.22	="PRN16811"	="AUSTRALIAN AIR EXPRESS PTY LTD"	21-Nov-07 10:20 AM	
-="CN47567"	"i-Mate SP JAS Smartphone black"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10890.00	="PRN17159"	="TELEDESIGN AUSTRALIA"	21-Nov-07 10:20 AM	
-="CN47568"	"Courier Services - Wk ending 17 Aug"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	03-Sep-07	30-Nov-07	10594.90	="PRN16771"	="AUSTRALIAN AIR EXPRESS PTY LTD"	21-Nov-07 10:20 AM	
-="CN47569"	"Budget Initiatives Stakeholder Forum - Sydney, 4-5"	="Department of Education, Science and Training"	21-Nov-07	="Travel and Food and Lodging and Entertainment Services"	13-Jun-07	30-Oct-07	12993.00	="PRN16899"	="Rockdale Hotel Pty Ltd"	21-Nov-07 10:23 AM	
-="CN47570"	"Evaluation of the Success for Boys Programme"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	20-Sep-07	30-Jun-08	191000.00	="PRN13955"	="QUANTUM CONSULTING AUSTRALIA"	21-Nov-07 10:24 AM	
-="CN47571"	"Performance-based pay research and modelling"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	10-Sep-07	28-Feb-08	438374.00	="PRN14845"	="GERARD DANIELS AUSTRALIA PTY LTD"	21-Nov-07 10:24 AM	
-="CN47572"	"PMs Awards 2007 - Photos"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	10-Sep-07	31-Dec-07	19000.00	="PRN15785"	="Photocall Image Management  P/L"	21-Nov-07 10:25 AM	
-="CN47573"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2369740.00	="PRN15636"	="UNIVERSITY OF WOLLONGONG"	21-Nov-07 10:25 AM	
-="CN47574"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	1417020.00	="PRN15636"	="THE AUSTRALIAN NATIONAL UNIVERSITY"	21-Nov-07 10:25 AM	
-="CN47575"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2509650.00	="PRN15636"	="THE UNIVERSITY OF NEW ENGLAND"	21-Nov-07 10:25 AM	
-="CN47576"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2288150.00	="PRN15636"	="DEAKIN UNIVERSITY"	21-Nov-07 10:25 AM	
-="CN47578"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	31-Mar-06	30-Mar-08	30547.00	=""	="LEASEPLAN"	21-Nov-07 10:30 AM	
-="CN47579"	"Shoulder Boards for Royal Aust Navy and Ornamental Lace"	="Defence Materiel Organisation"	21-Nov-07	="Military uniforms"	05-Nov-07	21-Mar-08	101794.70	="ACC017/0708"	="Solomon Brothers"	21-Nov-07 10:40 AM	
-="CN47580"	"IBISWorld subscription"	="Department of Education, Science and Training"	21-Nov-07	="Organisations and Clubs"	10-Aug-07	09-Aug-08	20680.00	="PRN16773"	="IBISWORLD Business Information"	21-Nov-07 10:43 AM	
-="CN47582"	"User Satisfaction - Aust Skills Vouchers Programme"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Sep-07	16-Oct-07	58511.00	="PRN16504"	="NEW FOCUS PTY LTD"	21-Nov-07 10:45 AM	
-="CN47581"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	15-Jun-06	14-Jun-08	42358.00	=""	="LEASEPLAN"	21-Nov-07 10:45 AM	
-="CN47583"	"Analysis of Training Package Design"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	20-Aug-07	26-Oct-07	71060.00	="PRN15992"	="BMA CONSULTING PTY LTD"	21-Nov-07 10:45 AM	
-="CN47584"	"Analysis of Qualification Packaging Rules"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	27-Aug-07	26-Oct-07	39050.00	="PRN15994"	="PURPLE INFINITY"	21-Nov-07 10:45 AM	
-="CN47585"	"Analysis of the Construction of Units of Competenc"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	27-Aug-07	27-Oct-07	50930.00	="PRN15997"	="PERFORMANCE GROWTH PTY LTD"	21-Nov-07 10:46 AM	
-="CN47586"	"AQTF 2007 Research and Advice"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	30-Jun-08	49500.00	="PRN16521"	="LISTA"	21-Nov-07 10:46 AM	
-="CN47587"	"Staff support - International Science and Educatio"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	11-Sep-07	28-Sep-07	25000.00	="PRN16882"	="CATALYST RECRUITMENT SYSTEMS"	21-Nov-07 10:46 AM	
-="CN47588"	"Ranking Research Outlets for the Research Quality"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	21-Sep-07	31-Dec-07	81888.40	="PRN16762"	="Academy of Social Science Australia"	21-Nov-07 10:52 AM	
-="CN47589"	"Classifying Australian PhD Theses by RFCD Codes"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	25-Sep-07	30-Jun-08	68973.30	="PRN15536"	="RMIT"	21-Nov-07 10:52 AM	
-="CN47590"	"Assessing Authorities Conference Melbourne 25-26 O"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Nov-07	20000.00	="PRN17188"	="PACIFIC HOTEL MARKET STREET PTY LTD"	21-Nov-07 10:53 AM	
-="CN47591"	"Country Education Profiles (CEP) Online Rewrites"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	16-Oct-07	30-Jun-08	32670.00	="PRN17249"	="VISION AUSTRALIA"	21-Nov-07 10:53 AM	
-="CN47592"	"Omega Contact 2 Oct 2007 - 31 Jan 2008"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	02-Oct-07	31-Jan-08	26260.50	="PRN16966"	="Omega Personnel Pty Ltd"	21-Nov-07 10:53 AM	
-="CN47595"	"IT system development - Literacy and Numeracy Tuit"	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	26-Sep-07	26-Sep-08	1743398.20	="PRN15964"	="CURRICULUM CORPORATION"	21-Nov-07 10:55 AM	
-="CN47596"	"Student Aptitude Test for Tertiary Admission"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	24-Oct-07	31-Oct-08	2596000.00	="PRN15204"	="AUST COUNCIL FOR EDUC RESEARCH"	21-Nov-07 10:56 AM	
-="CN47597"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	26-Sep-07	30-May-08	7000000.00	="PRN15886"	="AUSTRALIAN COLLEGE OF EDUCATORS"	21-Nov-07 10:56 AM	
-="CN47598"	"Riverbed Steelhead 300s and Support"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	17-Oct-07	30-Jun-08	38202.00	="PRN17410"	="Dataflex Pty Ltd"	21-Nov-07 10:57 AM	
-="CN47599"	"Foxtel Sky News TV service"	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	15-Oct-07	30-Jun-09	16000.00	="PRN17209"	="FOXTEL MANAGEMENT PTY LTD"	21-Nov-07 10:58 AM	
-="CN47600"	"EL2 Recruitment - 4 roles"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	27-Aug-07	30-Jun-08	42185.00	="PRN17394"	="AMBIT Recruitment Group"	21-Nov-07 10:58 AM	
-="CN47601"	"Email Message Classification"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	04-Oct-07	30-Jun-08	13073.71	="PRN17195"	="Dataflex Pty Ltd"	21-Nov-07 10:58 AM	
-="CN47602"	"Dual Port PCI Express Cards"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	05-Oct-07	30-Jun-08	10125.00	="PRN17262"	="INFRONT SYSTEMS PTY LTD"	21-Nov-07 10:58 AM	
-="CN47603"	"K2 Workflow Software"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	30-Jun-08	85000.00	="PRN17200"	="Dimension Data Australia Pty Ltd"	21-Nov-07 10:58 AM	
-="CN47594"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	30-May-07	29-May-08	31108.00	=""	="Leaseplan"	21-Nov-07 11:01 AM	
-="CN47605"	"IT Training Vouchers for West Australian State Off"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Oct-07	01-May-08	14050.00	="PRN16702"	="WIZARD COMPUTER TRAINING  PTY LTD"	21-Nov-07 11:03 AM	
-="CN47607"	"Study in Australia - Refresh of Visual Identity"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	01-Jul-07	30-Jun-08	450000.00	="PRN14837"	="AJF PARTNERSHIP PTY LTD"	21-Nov-07 11:04 AM	
-="CN47593"	"Coupling & Cable Assembly"	="Defence Materiel Organisation"	21-Nov-07	="Parachute equipment"	16-Nov-07	06-Mar-08	153202.50	=""	="Paratech Pty Ltd"	21-Nov-07 11:05 AM	
-="CN47610"	"Australian Apprenticeships Access Programme and Gr"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	13-Sep-07	08-Nov-07	258129.00	="PRN14613"	="KPMG"	21-Nov-07 11:10 AM	
-="CN47612"	"Office furniture"	="Department of Education, Science and Training"	21-Nov-07	="Office machines and their supplies and accessories"	04-Oct-07	30-Nov-07	13262.70	="PRN16914"	="DESIGNCRAFT"	21-Nov-07 11:10 AM	
-="CN47613"	"National Tour 2008-2011"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	09-Oct-07	30-Nov-11	341000.00	="PRN14325"	="SHAC PTY LTD"	21-Nov-07 11:11 AM	
-="CN47614"	"Develop of impact projection guidelines for CRCs"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Oct-07	12-Nov-07	27500.00	="PRN17230"	="DELOITTE"	21-Nov-07 11:11 AM	
-="CN47615"	"Exits from the Trades"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	15-Oct-07	31-Mar-08	145162.59	="PRN14979"	="HUNTLEY CONSULTING GROUP PTY LTD"	21-Nov-07 11:12 AM	
-="CN47617"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Jun-08	16367.56	="PRN17129"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	
-="CN47618"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	11-Oct-07	30-Jun-08	11789.25	="PRN17128"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	
-="CN47619"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	30-Jun-08	11927.41	="PRN17045"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	
-="CN47620"	"Fit out DEST Sydney"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	24-Oct-07	22-Feb-08	68080.00	="PRN17554"	="CORPDES PTY LTD"	21-Nov-07 11:16 AM	
-="CN47623"	"2008 AGNAQS awards ceremony at Great Hall, Parliam"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	09-Aug-07	14-Mar-08	10500.00	="PRN16520"	="HYATT HOTEL CANBERRA"	21-Nov-07 11:19 AM	
-="CN47624"	"DFCTC Program Probity Adviser"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	22-Sep-07	31-Dec-07	24999.00	="PRN17122"	="SPARKE HELMORE LAWYERS"	21-Nov-07 11:20 AM	
-="CN47629"	"Provision for developing the Management Accounting Team"	="Comsuper"	21-Nov-07	="Organisational structure consultation"	04-Nov-07	12-Dec-07	57400.00	=""	="Analytics Group"	21-Nov-07 11:28 AM	
-="CN47635"	"Risk Profiling Review of Profiles and Predictors"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	26-Oct-07	01-Jan-08	49320.00	="PRN16454"	="TAYLOR FRY CONSULTING ACTUARIES"	21-Nov-07 11:40 AM	
-="CN47636"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	30-Jun-08	10210.53	="PRN17130"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:41 AM	
-="CN47637"	"Desk-based research and review of design principle"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	20-Aug-07	31-Aug-07	35200.00	="PRN16152"	="AUST COUNCIL FOR EDUC RESEARCH"	21-Nov-07 11:43 AM	
-="CN47634"	"CABLE POWER ELECTRICAL G5862 AND G5492 FOR 1000M AND 200M"	="Defence Materiel Organisation"	21-Nov-07	="Power cable"	16-Nov-07	14-Dec-07	61985.00	=""	="Euro-Tech Cables Pty Ltd"	21-Nov-07 11:45 AM	
-="CN47663"	"FITOUT CONSTRUCTION FOR IPSWICH CUSTOMER SERVICE CENTRE REFIT"	="Centrelink"	21-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Nov-07	09-Dec-07	276980.00	=""	="PREMIS SOLUTIONS"	21-Nov-07 12:51 PM	
-="CN47673"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	06-Sep-07	31-Oct-07	25000.00	="PRN16718"	="HANSEN and SEARSON MANAGEMENT SERVICE"	21-Nov-07 01:28 PM	
-="CN47674"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="ALZAHARAA CHILD CARE CENTRE"	21-Nov-07 01:29 PM	
-="CN47675"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="Journey Management Pty Ltd"	21-Nov-07 01:30 PM	
-="CN47676"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	21670.00	="PRN12579"	="CLB TRAINING and DEVELOPMENT PTY LTD"	21-Nov-07 01:30 PM	
-="CN47677"	"Financial Questionnaire Verification Exercise 2007 (2006 data)"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Oct-07	09-Mar-08	107800.00	="PRN16067"	="37 MARY STREET PTY LTD and A.C.N. 074"	21-Nov-07 01:31 PM	
-="CN47678"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="MP PERSONNEL CONSULTING"	21-Nov-07 01:32 PM	
-="CN47679"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11550.00	="PRN12579"	="WESTGATE COMMUNITY INITIATIVES"	21-Nov-07 01:32 PM	
-="CN47680"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="S T A T Security Training and"	21-Nov-07 01:32 PM	
-="CN47681"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="KERRY and BRIAN DAVID NEALE"	21-Nov-07 01:32 PM	
-="CN47682"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	08-Oct-07	14-Dec-07	40000.00	="PRN17225"	="HANSEN and SEARSON MANAGEMENT SERVICE"	21-Nov-07 01:33 PM	
-="CN47683"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	05-Sep-07	08-Nov-07	23595.00	="PRN16936"	="SICO SOUTH PACIFIC LIMITED"	21-Nov-07 01:33 PM	
-="CN47684"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	05-Sep-07	22-Nov-07	26257.00	="PRN16935"	="VIBE FURNITURE"	21-Nov-07 01:33 PM	
-="CN47685"	"SAP Enterprise Data Warehousing"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	14-Sep-07	14-Dec-07	10345.50	="PRN17642"	="SAP Australia Pty Ltd"	21-Nov-07 01:33 PM	
-="CN47686"	"DEST Exit Survey Pilot"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	04-Oct-07	31-Dec-07	17000.00	="PRN17140"	="RIGHT MANAGEMENT"	21-Nov-07 01:35 PM	
-="CN47687"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="L and M Gelb Consulting Services Pty"	21-Nov-07 01:37 PM	
-="CN47688"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="TAFE NSW SYDNEY INSTITUTE"	21-Nov-07 01:38 PM	
-="CN47689"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12430.00	="PRN12579"	="Manly Warringah Community College"	21-Nov-07 01:38 PM	
-="CN47690"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12210.00	="PRN12579"	="New England and North West Business"	21-Nov-07 01:38 PM	
-="CN47691"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Department of Employment and"	21-Nov-07 01:38 PM	
-="CN47692"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11330.00	="PRN12579"	="COSSETTINI, NARELLE MAY"	21-Nov-07 01:38 PM	
-="CN47693"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11110.00	="PRN12579"	="Capra Ryan Online Learning Pty Ltd"	21-Nov-07 01:38 PM	
-="CN47694"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="AUSTRALIAN TRAINING COMPANY"	21-Nov-07 01:38 PM	
-="CN47695"	"Accommodation for Marketing Conference  - Rialto"	="Department of Education, Science and Training"	21-Nov-07	="Hotels and lodging and meeting facilities"	01-Aug-07	31-Dec-07	60495.00	="PRN17059"	="RIALTO HOTEL ON COLLINS"	21-Nov-07 01:38 PM	
-="CN47696"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="Taree Adult Education Incorporated"	21-Nov-07 01:39 PM	
-="CN47697"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SMART CITY VOCATIONAL COLLEGE PTY."	21-Nov-07 01:39 PM	
-="CN47698"	"Enhanced Training Packages - Bringing it all toget"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	18-Oct-07	09-Nov-07	26000.00	="PRN17112"	="Peter Noonan"	21-Nov-07 01:43 PM	
-="CN47699"	"Forensic Accounting Services"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	30-Nov-07	22000.00	="PRN16374"	="DELOITTE"	21-Nov-07 01:43 PM	
-="CN47700"	"Due Diligence Audit - Information Technology"	="Department of Education, Science and Training"	21-Nov-07	="Accounting and auditing"	09-Oct-07	29-Feb-08	20000.00	="PRN16922"	="ACUMEN ALLIANCE"	21-Nov-07 01:47 PM	
-="CN47702"	"Supply of Lateral file pockets"	="Department of Education, Science and Training"	21-Nov-07	="Building and Construction and Maintenance Services"	11-Oct-07	30-Jun-08	12787.50	="PRN17349"	="PLANEX SALES PTY LTD"	21-Nov-07 01:49 PM	
-="CN47703"	"SES Office Furniture"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	18-Sep-07	03-Mar-08	12122.00	="PRN17250"	="DESIGN CRAFT FURNITURE PTY LTD"	21-Nov-07 01:49 PM	
-="CN47704"	"Supply and install workstations at 137 Harrington"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	17-Sep-07	28-Dec-07	36000.00	="PRN17270"	="Schiavello Commercial Interiors"	21-Nov-07 01:49 PM	
-="CN47706"	"16 Mort L1,2,4 Lift lobby painting"	="Department of Education, Science and Training"	21-Nov-07	="Building and Construction and Maintenance Services"	25-Oct-07	30-Jun-08	10864.70	="PRN17418"	="CONSTRUCTION CONTROL INTERIORS P/L"	21-Nov-07 01:49 PM	
-="CN47707"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	31-Oct-07	30-Jun-08	23595.00	="PRN16933"	="SICO SOUTH PACIFIC LIMITED"	21-Nov-07 01:49 PM	
-="CN47708"	"Protective Security Risk Review 2007"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	03-Oct-07	29-Feb-08	48895.00	="PRN16965"	="SINCLAIR KNIGHT MERZ PTY LTD"	21-Nov-07 01:49 PM	
-="CN47709"	"Australia and New Zealand School of Government (AN"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	31-Oct-07	30-Jun-08	24530.00	="PRN17427"	="AUSTRALIA and NEW ZEALAND SCHOOL"	21-Nov-07 01:50 PM	
-="CN47710"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	26-Oct-07	18-Jan-08	30000.00	="PRN17491"	="HANSON, SEARSON, FORD EXECUTIVE"	21-Nov-07 01:50 PM	
-="CN47711"	"Removals employee"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	30-Oct-07	30-Jun-08	10340.00	="PRN17586"	="Wridgways Ltd"	21-Nov-07 01:50 PM	
-="CN47713"	"Impact Learning and Development 2007 Graduates"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	12600.00	="PRN16551"	="IMPACT LEARNING AND DEVELOPMENT"	21-Nov-07 01:50 PM	
-="CN47717"	"CAA Conference St Kilda"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	30-Jun-08	10000.00	="PRN16946"	="NOVOTEL ST KILDA"	21-Nov-07 01:58 PM	
-="CN47719"	"Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	10-Sep-07	14-Sep-07	10120.00	="PRN16889"	="HAYS PERSONNEL SERVICES"	21-Nov-07 01:58 PM	
-="CN47701"	"FOR THE REPAIR/COMPLETE OVERHAUL OF BLACK HAWK HELICOPTER DISPLACEMENT GYROSCOPE"	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	21-Nov-07	31-Dec-12	10344.40	=""	="FLIGHT DATA SYSTEMS PTY LTD"	21-Nov-07 01:59 PM	
-="CN47725-A1"	"Refurbishment of Lakehaven CSC."	="Centrelink"	21-Nov-07	="Building construction management"	12-Sep-07	20-Nov-07	76795.01	=""	="David J Smith"	21-Nov-07 02:29 PM	
-="CN47732"	" FOR THE REPAIR & COMPLETE OVERHAUL OF QTY 1 BLACK HAWK HELICOPTER DISPLACEMENT GYROSCOPE. "	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	21-Nov-07	31-Dec-08	10344.40	=""	="FLIGHT DATA SYSTEMS PTY LTD"	21-Nov-07 02:45 PM	
-="CN47740-A2"	"Security Services"	="Department of the Prime Minister and Cabinet"	21-Nov-07	="Security guard services"	01-Oct-07	01-Feb-12	299677.00	=""	="Sydney Night Patrol & Inquiry Co P/L"	21-Nov-07 03:10 PM	
-="CN47750"	"Copywriting and journalistic services for CAA"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	10-Sep-07	20-Jun-08	29920.00	="PRN16961"	="WORDS AT WORK EDITORIAL SERVICES"	21-Nov-07 04:12 PM	
-="CN47751"	"Travel and Logistics for IHEAC Conference"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	30-Nov-07	24700.00	="PRN16770"	="NYE COMMUNICATIONS"	21-Nov-07 04:13 PM	
-="CN47752"	"Careers Advice Australia Conference and Accommodatio"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	21-Aug-07	28-Sep-07	46000.00	="PRN16148"	="RENDEZVOUS OBSERVATION CITY HOTEL"	21-Nov-07 04:16 PM	
-="CN47753"	"State Conference Venue and Facilities 2007"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	09-Aug-07	30-Nov-07	55000.00	="PRN15666"	="RAFFERTY'S RESORT OPERATIONS TRUST"	21-Nov-07 04:17 PM	
-="CN47754"	"Venue hire for Ministers Awards for Excellence Gal"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	25-Jun-07	30-Jun-08	42280.60	="PRN16707"	="SPOTLESS SERVICES LIMITED"	21-Nov-07 04:19 PM	
-="CN47755"	"Mid Term Review of the 2005 - 2008 Commonweath Sta"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Nov-07	1012000.00	="PRN15979"	="THE BOSTON CONSULTING GROUP P/L"	21-Nov-07 04:20 PM	
-="CN47756"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="TAFE NSW - WESTERN SYDNEY INSTITUDE"	21-Nov-07 04:20 PM	
-="CN47757"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13200.00	="PRN12579"	="TAFE NSW NORTH COAST INSTITUTE"	21-Nov-07 04:20 PM	
-="CN47758"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	19140.00	="PRN12579"	="STRATEGIC TRAINING AND EMPLOYMENT"	21-Nov-07 04:20 PM	
-="CN47759"	"Design Element for the AQTF 2007 Excellence Criter"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Sep-07	31-Dec-07	28776.00	="PRN16318"	="THE SCHOOL OF THOUGHT"	21-Nov-07 04:20 PM	
-="CN47760"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="HUNTER INSTITUTE OF TECHNOLOGY"	21-Nov-07 04:20 PM	
-="CN47761"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="SERVICE TO YOUTH COUNCIL INC"	21-Nov-07 04:20 PM	
-="CN47762"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="PENRITH SKILLS FOR JOBS LTD"	21-Nov-07 04:20 PM	
-="CN47763"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12870.00	="PRN12579"	="Anglicare Tasmania Pty Ltd"	21-Nov-07 04:20 PM	
-="CN47764"	"Review of Governance Arrangements of Industry Skil"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Aug-07	28-Sep-07	38150.00	="PRN16274"	="THE ALLEN CONSULTING GROUP PTY LTD"	21-Nov-07 04:21 PM	
-="CN47765"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11110.00	="PRN12579"	="BRIDGEWORKS PERSONNEL"	21-Nov-07 04:21 PM	
-="CN47766"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="TrainEdge Pty Ltd"	21-Nov-07 04:21 PM	
-="CN47767"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Victorian Training Group Pty"	21-Nov-07 04:21 PM	
-="CN47768"	"Photographs and case studies for reprint of Inform"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	03-Sep-07	30-Jun-08	22613.80	="PRN16796"	="SAXTON MANAGEMENT GROUP PTY LTD"	21-Nov-07 04:21 PM	
-="CN47769"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	17270.00	="PRN12579"	="Performis Pty Ltd"	21-Nov-07 04:21 PM	
-="CN47770"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14630.00	="PRN12579"	="HR COMPANY PTY LTD"	21-Nov-07 04:21 PM	
-="CN47771"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="SUBROSA SOLUTIONS"	21-Nov-07 04:21 PM	
-="CN47772"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	15180.00	="PRN12579"	="DIDASKO LEARNING INSTITUTE PTY LTD"	21-Nov-07 04:21 PM	
-="CN47773"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	15400.00	="PRN12579"	="MELBOURNE INSTITUTE OF NAILS AND"	21-Nov-07 04:21 PM	
-="CN47774"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14410.00	="PRN12579"	="LEWELMO PTY LIMITED"	21-Nov-07 04:22 PM	
-="CN47775"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12980.00	="PRN12579"	="SMP TRAINING CENTRE"	21-Nov-07 04:22 PM	
-="CN47776"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="Mediquest Pty Ltd"	21-Nov-07 04:22 PM	
-="CN47777"	"Market Research - Skills for the Future"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	26-Jun-07	31-Dec-07	199650.00	="PRN14937"	="DI MARZIO RESEARCH PTY LTD"	21-Nov-07 04:22 PM	
-="CN47778"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	22660.00	="PRN12579"	="Maddisson Employment Pty Ltd"	21-Nov-07 04:22 PM	
-="CN47779"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13200.00	="PRN12579"	="Australasian Education and Training"	21-Nov-07 04:22 PM	
-="CN47780"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="National Corporate Training Pty Ltd"	21-Nov-07 04:22 PM	
-="CN47781"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="Meee Australia Pty. Ltd."	21-Nov-07 04:22 PM	
-="CN47782"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11220.00	="PRN12579"	="Newtrain Northern Rivers Inc"	21-Nov-07 04:23 PM	
-="CN47784"	"Maura Fay Workshop-3 workshops, 10 atendees 6 and 7"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Oct-07	37290.00	="PRN16731"	="MAURA FAY PRODUCTIONS"	21-Nov-07 04:23 PM	
-="CN47783"	"Motor Vehicle Parts"	="Department of Defence"	21-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Nov-07	20-Dec-07	44122.88	=""	="Volvo Commerical Vehicles"	21-Nov-07 04:24 PM	
-="CN47785"	"Provision of Administrative Support Personnel from"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	28-May-07	30-Sep-07	17000.00	="PRN16573"	="Wizard Personnel and Office Services"	21-Nov-07 04:25 PM	
-="CN47786"	"Temporary Staff Recruitment"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	27-Aug-07	07-Nov-07	33700.00	="PRN16561"	="SOS RECRUITMENT"	21-Nov-07 04:25 PM	
-="CN47787"	"Development of an Adult Career Information Publication"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	25-Sep-07	10-Dec-07	54000.00	="PRN16522"	="MILES MORGAN AUSTRALIA PTY LTD"	21-Nov-07 04:25 PM	
-="CN47746"	" Provision of Engineering and architectural feasibiliy reports for Naru Police Headquarters "	="Australian Federal Police"	21-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jul-07	18-Oct-07	33660.00	=""	="Kramer Pacific Pty Ltd"	21-Nov-07 04:28 PM	
-="CN47789"	" Motor Vehile Parts "	="Department of Defence"	21-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	13183.97	=""	="Volvo Commerical"	21-Nov-07 04:29 PM	
-="CN47793"	" AIRCRAFT SPARES  NSN 5340-01-504-4221   ,  CLAMP LOOP.  QTY 50 "	="Defence Materiel Organisation"	21-Nov-07	="Military transport helicopters"	21-Nov-07	04-Feb-08	16775.00	=""	="FLITE PATH PTY LTD"	21-Nov-07 04:36 PM	
-="CN47803"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:08 AM	
-="CN47804"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:14 AM	
-="CN47805"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	04-Dec-06	03-Dec-07	35318.10	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:19 AM	
-="CN47806"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	58557.77	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:29 AM	
-="CN47807"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	61901.91	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:33 AM	
-="CN47808"	"Test Set Sychro"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	12-Oct-07	15-Feb-08	27500.00	=""	="Unitronix"	22-Nov-07 07:41 AM	
-="CN47809"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft spars"	20-Nov-07	03-Dec-07	11693.00	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 07:56 AM	
-="CN47744"	" 1. 9150 66-093-5653 Gear Lubricating Oil OX-46 IN 205LT BP AUTRAN TO-410 Qty 28 drums  2. 9150 66-093-5658 Automotive Brake Fluid H542- OX-8 IN 500ML  Bottle Qty 1200    "	="Defence Materiel Organisation"	22-Nov-07	="Lubricants and oils and greases and anti corrosives"	04-Oct-07	11-Oct-07	25319.71	=""	="BP AUSTRALIA PTY LTD"	22-Nov-07 08:03 AM	
-="CN47810-A1"	"TPS for Stabilator Amplifier"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	31-Oct-07	30-Nov-07	16340.00	=""	="Partech Systems"	22-Nov-07 08:04 AM	
-="CN47811"	"Ceremonial Shoulder Boards and Gorgets"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	23-Oct-07	30-Nov-07	75314.80	="ACC023/0708"	="P Blashki and Sons"	22-Nov-07 08:11 AM	
-="CN47815"	"Embroidered Insignia for Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	69067.35	="ACC025/0708"	="Babylon Industries"	22-Nov-07 08:39 AM	
-="CN47814"	"Embroidered Insignia for Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	71372.53	="ACC026/0708"	="Babylon Industries"	22-Nov-07 08:58 AM	
-="CN47813-A1"	"Embroidered Insignia, Tri Service"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	09-Oct-07	20-Jun-08	328590.68	="ACC009/0708"	="Babylon Industries"	22-Nov-07 09:17 AM	
-="CN47818"	"Lease at Echuca, Victoria"	="Centrelink"	22-Nov-07	="Real estate services"	01-Jan-08	31-Dec-09	225156.80	=""	="The Trustee for the Barker Family Trust"	22-Nov-07 09:22 AM	
-="CN47816"	"Supply of Tester, Switch, Hydrostatic, Qty 25, Cage: 36452 & PN: 108595."	="Defence Materiel Organisation"	22-Nov-07	="Battery testers"	10-Sep-07	09-Dec-07	14852.75	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 09:27 AM	
-="CN47823-A1"	"Aiguillettes, Gorgets and Bullion Embroidered Badges"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	13-Nov-07	30-Mar-08	131019.57	="ACC027/0708"	="P Blashki and Sons"	22-Nov-07 09:48 AM	
-="CN47825"	"Supply of Helmet Fireman's, White."	="Defence Materiel Organisation"	22-Nov-07	="Safety helmets"	20-Nov-07	31-Mar-08	68227.50	=""	="MSA (Aust) Pty Ltd"	22-Nov-07 10:02 AM	
-="CN47828-A3"	" Provision of services relating to Oracle database applications development support services "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-09	405091.60	=""	="Tarakan Consulting Pty Ltd"	22-Nov-07 10:27 AM	
-="CN47831"	"Embroidered Badges ,Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	23-Oct-07	30-Jan-08	18260.68	="ACC024/0708"	="Arcade Badge Embroidery Co"	22-Nov-07 10:36 AM	
-="CN47832"	"INSECTICIDE, D-PHENOTHRIN"	="Defence Materiel Organisation"	22-Nov-07	="Insecticides"	21-Nov-07	26-Nov-07	11830.51	=""	="CALLINGTON HAVEN PTY LTD"	22-Nov-07 10:42 AM	
-="CN47834-A1"	" Licencing of MS Office Products  "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-10	8515777.62	=""	="Dimension Data Australia Pty Ltd"	22-Nov-07 10:48 AM	
-="CN47802"	"Office Rental - Sydney, NSW"	="Australian Public Service Commission"	22-Nov-07	="Real estate services"	01-Aug-07	31-Jul-17	4185000.00	=""	="GPT Funds Management 2 Pty Ltd"	22-Nov-07 11:01 AM	
-="CN47835"	"Metal Insignia and Badges"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	07-Sep-07	15-Feb-08	35809.40	="ACC020/0708"	="Nichol Industries Pty Ltd"	22-Nov-07 11:47 AM	
-="CN47838"	"National Office supplies for workstation set up"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	01-Aug-07	28-Sep-07	34250.00	="PRN16270"	="Schiavello Commercial Interiors"	22-Nov-07 11:49 AM	
-="CN47839"	"Introduction to the Financial Management Framework"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	20-Sep-07	30-Jun-08	18000.00	="PRN16725"	="KPR FAMILY TRUST"	22-Nov-07 11:49 AM	
-="CN47840"	"SAP Australia - Funds Management Course - IPS910"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	29-Aug-07	30-Jun-08	32725.00	="PRN16671"	="SAP Australia Pty Ltd"	22-Nov-07 11:49 AM	
-="CN47841"	"Architectural Services - Function/Conference Room"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	04-Sep-07	30-Jun-08	10000.00	="PRN16680"	="PECKVONHARTEL"	22-Nov-07 11:50 AM	
-="CN47842"	"Air Conditioning Upgrade LG 14 Mort"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	30-Aug-07	30-Nov-07	53928.00	="PRN13164"	="DALKIA TECHNICAL SERVICES PTY LTD"	22-Nov-07 11:50 AM	
-="CN47843"	"16 Mort St - Level 1 Function and Conference Room Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	21-Sep-07	01-Nov-07	52729.60	="PRN16932"	="CONSTRUCTION CONTROL INTERIORS P/L"	22-Nov-07 11:50 AM	
-="CN47844"	"Executive Furniture 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="Building and Construction and Maintenance Services"	27-Sep-07	30-Jun-08	28773.00	="PRN17137"	="CITE OFFICE DESIGN PTY LIMITED"	22-Nov-07 11:50 AM	
-="CN47845"	"Placement Fee  for temporary staff"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	02-Jul-07	15-Oct-07	14000.00	="PRN16691"	="HAMILTON JAMES and BRUCE PTY LTD"	22-Nov-07 11:50 AM	
-="CN47846"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	14-Sep-07	21-Dec-07	41484.00	="PRN16938"	="CANBERRA PROFESSIONAL EQUIPMENT"	22-Nov-07 11:50 AM	
-="CN47847"	"Contractor for Incoming Government Brief"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	17-Sep-07	28-Sep-07	18000.00	="PRN16983"	="JOAN CORBETT"	22-Nov-07 11:50 AM	
-="CN47848"	"Electrical Mechanical documentation 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	06-Aug-07	28-Dec-07	31790.00	="PRN17142"	="BASSETT CONSULTING ENGINEERS"	22-Nov-07 11:50 AM	
-="CN47849"	"SES Recruitment Services"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	06-Sep-07	30-Nov-07	22000.00	="PRN16853"	="HANSEN and SEARSON MANAGEMENT SERVICE"	22-Nov-07 11:50 AM	
-="CN47851"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	14-Feb-07	25-Jan-08	66000.00	=""	="Cordelta Pty Ltd"	22-Nov-07 12:02 PM	
-="CN47853-A1"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	17-Nov-07	17-Apr-08	140000.00	=""	="Candle Australia"	22-Nov-07 12:05 PM	
-="CN47854"	"Code of Conduct Related Services"	="Department of Human Services"	22-Nov-07	="Business and corporate management consultation services"	22-Nov-07	30-Nov-07	11000.00	=""	="Quality Management Solutions Pty Ltd"	22-Nov-07 12:08 PM	
-="CN47856-A1"	"Provision for Procedures Writer"	="Comsuper"	22-Nov-07	="Human resources services"	23-Aug-07	22-Feb-08	116500.00	=""	="Face2Face Recruitment"	22-Nov-07 12:12 PM	
-="CN47860"	"Supply & Implement Software"	="National Archives of Australia"	22-Nov-07	="Software"	24-Oct-07	30-Jun-08	76615.00	=""	="The Reading Room Australia P/L"	22-Nov-07 12:19 PM	
-="CN47863-A2"	"Lease of printers, photocopiers, scanners and facsimilie equipment"	="Department of Human Services"	22-Nov-07	="Office machines and their supplies and accessories"	21-May-04	31-Aug-11	45300000.00	=""	="Fuji Xerox Australia Pty Ltd"	22-Nov-07 12:25 PM	
-="CN47866"	"Provision for Maintenance of Bizhub Colour laser printer"	="Comsuper"	22-Nov-07	="Laser printers"	20-Nov-07	20-Nov-12	40347.00	=""	="Konica Minolta Business Solutions"	22-Nov-07 12:30 PM	
-="CN47870"	"Communication services"	="Australian Crime Commission"	22-Nov-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	08-Nov-07	82040.65	=""	="ASIO"	22-Nov-07 12:51 PM	
-="CN47868"	" Research and Advisory Service Online Subscription "	="Australian Crime Commission"	22-Nov-07	="Internet based market research"	18-Oct-07	18-Oct-07	39490.00	=""	="Gartner Australia"	22-Nov-07 12:53 PM	
-="CN47867"	" Network performance monitoring equipment "	="Australian Crime Commission"	22-Nov-07	="Network analysers"	29-Oct-07	29-Oct-07	74258.00	=""	="Network General"	22-Nov-07 12:57 PM	
-="CN47864"	"Investigation into ACC internal matter"	="Australian Crime Commission"	22-Nov-07	="Private investigation services"	10-Oct-07	10-Oct-07	20000.00	=""	="HBA Consulting"	22-Nov-07 12:58 PM	
-="CN47859"	"Job advertisements"	="Australian Crime Commission"	22-Nov-07	="Advertising"	04-Aug-07	25-Aug-07	26828.00	=""	="HMA Blaze"	22-Nov-07 01:00 PM	
-="CN47855"	"International Policing Towards 2020 Conference"	="Australian Crime Commission"	22-Nov-07	="Conference centres"	19-Nov-07	21-Nov-07	11748.00	=""	="DPM Conferencing"	22-Nov-07 01:01 PM	
-="CN47852"	"Facilitation of Teamwork Project"	="Australian Crime Commission"	22-Nov-07	="Workshops"	21-Aug-07	31-Aug-07	16522.00	=""	="Mascot Solutions"	22-Nov-07 01:02 PM	
-="CN47830"	"Job advertisments"	="Australian Crime Commission"	22-Nov-07	="Advertising"	21-Jul-07	21-Jul-07	31752.78	=""	="Adcorp"	22-Nov-07 01:03 PM	
-="CN47833"	"SES Recruitment"	="Australian Crime Commission"	22-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	16170.00	=""	="Ford Kelly Executive Connection"	22-Nov-07 01:04 PM	
-="CN47829"	"Accommodation for ACC staff"	="Australian Crime Commission"	22-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Aug-07	20-Aug-07	30789.00	=""	="Bentley Suites"	22-Nov-07 01:05 PM	
-="CN47827"	" Accommodation & Venue for Conference "	="Australian Crime Commission"	22-Nov-07	="Conference centres"	30-Aug-07	08-Nov-07	20000.00	=""	="Aitken Hill Conference and Event Venue"	22-Nov-07 01:06 PM	
-="CN47873"	"Hunter RIMS Software Maintenance"	="Australian Taxation Office"	22-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	381894.27	=""	="Experian Asia Pacific Pty Ltd"	22-Nov-07 01:17 PM	
-="CN47872-A2"	"Provision of services relating to applications development"	="Australian Federal Police"	22-Nov-07	="Computer services"	20-Aug-07	30-Sep-08	229055.20	=""	="Cordelta Pty ltd"	22-Nov-07 01:18 PM	
-="CN47862"	"Adjustments for 06/07 Land Tax for Mitchell"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	32453.02	=""	="Jones Lang LaSalle (ACT) P/L"	22-Nov-07 01:33 PM	
-="CN47874"	"Adjustment of 06/07 for Land Tax - Chester Hill"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	15127.80	=""	="Jones Lang LaSalle (NSW) P/L"	22-Nov-07 01:40 PM	
-="CN47875"	"ICON Annual Levy"	="National Archives of Australia"	22-Nov-07	="Data services"	26-Oct-07	30-Jun-08	16500.00	=""	="Department of Finance"	22-Nov-07 01:44 PM	
-="CN47876"	"Fleet management and leasing services (Ref standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	30-Oct-07	29-Oct-09	19572.00	=""	="LeasePlan"	22-Nov-07 01:50 PM	
-="CN47877"	"The mailout consists of an A4 letter in a DL envelope to approx 700,000 clients."	="Australian Taxation Office"	22-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Nov-07	30-Jun-08	58608.00	="118.05"	="Hermes Precisa Pty Ltd"	22-Nov-07 01:52 PM	
-="CN47878"	"Supply of Laptops"	="National Archives of Australia"	22-Nov-07	="Notebook computers"	01-Nov-07	15-Nov-07	23945.00	=""	="Harris Technology"	22-Nov-07 01:55 PM	
-="CN47879"	" to undertake the production of 'The People of Australia' series of publication "	="Department of Immigration and Citizenship"	22-Nov-07	="Printed publications"	10-Sep-07	30-Jun-08	55350.00	="RFT07/51"	="the Trustee for EPD unit trust"	22-Nov-07 01:58 PM	
-="CN47880"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	28-Jul-06	27-Jul-08	39628.00	=""	="LeasePlan"	22-Nov-07 02:03 PM	
-="CN47881"	"Provision of Legal Services"	="Department of Education, Science and Training"	22-Nov-07	="Legal services"	29-Aug-07	31-Dec-07	11510.00	="PRN16769"	="Tom Brennan"	22-Nov-07 02:03 PM	
-="CN47883"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	09-Nov-07	08-Nov-09	40682.00	=""	="LeasePlan"	22-Nov-07 02:16 PM	
-="CN40684"	" Computer Replacement Program - Alice Springs "	="Family Court of Australia"	22-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	20-Nov-09	13970.00	=""	="Dell Australia Pty Ltd"	22-Nov-07 02:21 PM	
-="CN47882-A1"	"Contract for the provision of electronic voting services for the National Staff Consultative."	="Department of Immigration and Citizenship"	22-Nov-07	="Communications Devices and Accessories"	06-Sep-07	31-Oct-07	13556.00	=""	="Registries Limited"	22-Nov-07 02:28 PM	
-="CN47884"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	15-May-07	15-May-08	10688.00	=""	="SPSS Australasia Pty Ltd"	22-Nov-07 02:43 PM	
-="CN47885"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	73668.37	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 02:44 PM	
-="CN47886"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	22-May-07	22-May-08	12100.00	=""	="Leximancer Pty Ltd"	22-Nov-07 02:51 PM	
-="CN47557"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	21-Nov-07	03-Dec-07	11932.51	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	22-Nov-07 02:52 PM	
-="CN47887"	"Construction works for Darwin"	="Department of Immigration and Citizenship"	22-Nov-07	="Building and Construction Machinery and Accessories"	06-Sep-07	15-May-08	4059136.00	=""	="Sitzler Pty Ltd"	22-Nov-07 03:02 PM	
-="CN47889"	"Provision of software and support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	23-Jul-07	23-Jul-07	95000.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:10 PM	
-="CN47891"	"Design Facilitation - HOCOLEA Capability project"	="Australian Taxation Office"	22-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	21-Dec-07	10768.20	="05.164"	="ThinkPlace Pty Ltd as trustee for the ThinkPlace Trust"	22-Nov-07 03:14 PM	
-="CN47892"	"Provision of software and software support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	01-Jul-07	30-Jun-08	750285.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:15 PM	
-="CN47890-A1"	"CRS Alice Springs, 1/8 Gregory Terrace, NT"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	166990.00	=""	="AGEO Pty Ltd"	22-Nov-07 03:17 PM	
-="CN47893"	"Information services - Brio report developer services"	="Australian Federal Police"	22-Nov-07	="Computer services"	31-Jul-06	30-Jun-08	341000.00	=""	="Forge Data Solutions Pty Ltd"	22-Nov-07 03:17 PM	
-="CN47894"	"Provision of Caddy Units, Australia Wide"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	342201.00	=""	="Planex Sales Pty Ltd"	22-Nov-07 03:27 PM	
-="CN47888"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	72366.32	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 03:31 PM	
-="CN47897"	"FRENCH HORN, INCLUDES CASE, LYRE AND MOUTHPIECE, QUANTITY 6."	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	01-May-08	51599.99	=""	="PRO AUDIO SUPPLIES PTY LTD"	22-Nov-07 03:33 PM	
-="CN47900"	"Provision of Heigh Adjustable Desks & workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	13-Feb-07	13-Feb-07	208163.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:35 PM	
-="CN47901"	"Level1, 16 Mort St Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	02-Oct-07	31-Oct-07	11372.90	="PRN17104"	="Construction Control Interiors P/L"	22-Nov-07 03:35 PM	
-="CN47898"	"Night Vision Goggle Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	11-Sep-07	06-Jan-08	1866569.10	=""	="Point Trading"	22-Nov-07 03:36 PM	
-="CN47902"	"Provision of Height Adjustable Desks & Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	23-Mar-07	23-Mar-07	70657.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:38 PM	
-="CN47904-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	30-Nov-07	11050.00	=""	="Australian Federal Police"	22-Nov-07 03:40 PM	
-="CN47899-A1"	"Security vetting Services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	12727.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:42 PM	
-="CN47905"	"Height Adjustable Desks and Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	25164.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:42 PM	
-="CN47896-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	22-Nov-07	11300.00	=""	="Australian Federal Police"	22-Nov-07 03:43 PM	
-="CN47907"	" Cleaning Costs "	="Department of Finance and Administration"	22-Nov-07	="Cleaning and janitorial services"	12-Nov-07	11-Nov-09	1301004.40	="RFT01/MPS/2007"	="Glad Group Pty Ltd"	22-Nov-07 03:45 PM	
-="CN47908"	"Provision of height adjustable desks & workstation spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	16359.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:45 PM	
-="CN47909-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	11380.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:46 PM	
-="CN47906"	"Night Weapon Sight (F7000A) Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Surveillance and detection equipment"	18-Oct-07	18-Apr-08	230087.00	=""	="Qioptiq P/L"	22-Nov-07 03:47 PM	
-="CN47910"	"Mitchell restrooms upgrade"	="National Archives of Australia"	22-Nov-07	="Building construction and support and maintenance and repair services"	02-Nov-07	30-Jun-08	45584.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:00 PM	
-="CN47911-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	16-Nov-07	28-Dec-07	19860.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 04:02 PM	
-="CN47913"	"Changeover for Cabinet release Interactive"	="National Archives of Australia"	22-Nov-07	="Video production services"	09-Nov-07	01-Jan-08	14949.00	=""	="Lightwell P/L"	22-Nov-07 04:05 PM	
-="CN47914"	"Research - Margaret George Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	10000.00	=""	="Craig Stockings"	22-Nov-07 04:14 PM	
-="CN47915"	"Cable Assembly for Infra-red lluminators"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	17-Dec-07	99300.00	=""	="Owen International Pty Ltd"	22-Nov-07 04:16 PM	
-="CN47916"	"Research - Frederick Watson Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	15000.00	=""	="Mickey Dewar"	22-Nov-07 04:18 PM	
-="CN47917"	"Contractor Services"	="National Archives of Australia"	22-Nov-07	="Personnel recruitment"	15-Nov-07	31-Dec-07	50000.00	=""	="DFP Recruitment Services"	22-Nov-07 04:31 PM	
-="CN47920"	"Replacement of Humidifiers - Parkes"	="National Archives of Australia"	22-Nov-07	="Building support services"	15-Nov-07	30-Jun-08	20328.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:36 PM	
-="CN47921"	"CRS Australia Bankstown Suite 3, 402-410 Chapel Road Bankstown"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jul-05	30-Jun-09	480330.00	=""	="MP Delmege & AC Veale"	22-Nov-07 04:38 PM	
-="CN47923"	"Helmet Mount Frame Assembly"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	30-Nov-07	1176960.40	=""	="Point Trading"	22-Nov-07 04:42 PM	
-="CN47924"	"CRS Australia Bankstown - Sub Unit, 29 Kitchener Parade, Bankstown, NSW"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jun-07	31-May-09	26000.00	=""	="Chris Mognham"	22-Nov-07 04:43 PM	
-="CN47912"	" TROMBONE TENOR, C/W CASE, LYRE, MOUTHPIECE AND STAND, QUANTITY 11 "	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	14-Nov-08	49571.71	="RFQ 257227"	="ELTHAM WOODWIND & BRASS CENTRE"	22-Nov-07 05:02 PM	
-="CN47497"	"Purchase of coveralls, utility, grey, combat NAVY"	="Defence Materiel Organisation"	22-Nov-07	="Overalls and coveralls"	02-Nov-07	11-Feb-08	418000.00	=""	="Tuffa Workwear Pty Ltd"	22-Nov-07 05:04 PM	
-="CN47925"	" PANEL AND PAINT LANDROVER "	="Department of Defence"	22-Nov-07	="Motor vehicles"	18-Jun-07	02-Aug-07	14508.27	=""	="PETES PANEL AND PAINT"	22-Nov-07 05:23 PM	
-="CN47926"	"Ribbon for Service Cap, Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Synthetic ribbons"	02-Nov-07	06-Dec-07	14414.40	="ACC030/0708"	="Cash's Australia Pty Ltd"	22-Nov-07 05:56 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN47053-A1"	"COAT, MAN'S, W/P, DOUBLEBREASTED"	="Defence Materiel Organisation"	19-Nov-07	="Military uniforms"	13-Nov-07	21-Apr-08	205920.00	=""	="Australian Defence Apparel"	19-Nov-07 07:29 AM	

+="CN47055"	"Trunks, G/P, Dark Blue"	="Defence Materiel Organisation"	19-Nov-07	="Uniforms"	26-Oct-07	29-Feb-08	134041.60	=""	="PACIFIC BRANDS APPAREL"	19-Nov-07 07:49 AM	

+="CN47056"	"Aviation Spares, Repair of Main Rotor Shaft"	="Defence Materiel Organisation"	19-Nov-07	="Military rotary wing aircraft"	07-Jun-07	29-Feb-08	26546.99	=""	="Australian Aerospace"	19-Nov-07 08:34 AM	

+="CN47057"	"Aviation spares, repair of swashplate, controllable"	="Defence Materiel Organisation"	19-Nov-07	="Military rotary wing aircraft"	20-Aug-07	31-Jan-08	12076.57	=""	="Australian Aerospace"	19-Nov-07 08:46 AM	

+="CN47063"	" Ceremonial items for Royal Australian Navy "	="Defence Materiel Organisation"	19-Nov-07	="Whistle"	16-Nov-07	13-Mar-08	22869.00	="ACC016/0708"	="Solar Manufacturing Agencies"	19-Nov-07 10:07 AM	

+="CN47067"	"Software for smartcards readers"	="Centrelink"	19-Nov-07	="Software"	19-Nov-07	19-Nov-08	50512.00	="2004/52285"	="Acer Computer Australia Pty Ltd"	19-Nov-07 10:26 AM	

+="CN47074"	"APSC Panel for L&D - JwJ Consulting for Mental Health Seminars"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	12-Nov-07	30-Jun-08	15180.00	=""	="Australian Public Service Commission"	19-Nov-07 10:35 AM	

+="CN47075"	"Horticultural maintenance at Wagga War Cemetery"	="Department of Veterans' Affairs"	19-Nov-07	="Cemetery upkeep services"	13-Nov-07	31-Jul-10	15444.00	=""	="Riverina Short Back & Sides Mowing Service"	19-Nov-07 10:35 AM	

+="CN47076"	"Horticultural maintenance of Sale War Cemetery.Contract extended by two years and amont increased to $4,400 per year."	="Department of Veterans' Affairs"	19-Nov-07	="Building and Construction and Maintenance Services"	01-Dec-04	30-Nov-09	18700.00	=""	="Noel M & Kerri A Schweitzer"	19-Nov-07 10:35 AM	

+="CN47077-A1"	"Provide Community Nursing Advisory services."	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-10	185702.00	=""	="Railand Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47078-A1"	" Podiatry advisory services "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	167648.00	=""	="Buntex Podiatry Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47079-A1"	" Podiatry advisory serves "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	167648.00	=""	="Podnik Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47080-A1"	" New contract for Occupational Therapist "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	293384.00	=""	="Hanivoile Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47081"	"New Contract for Occupational Therapy Adviser"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	293384.00	=""	="EW PTY LTD"	19-Nov-07 10:36 AM	

+="CN47082-A1"	" New Agreement With Occupational therapy Adviser "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	293384.00	=""	="ACOT Consultants Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47083"	"New Agreement for Podiatry Adviser"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	167648.00	=""	="F & N CONTRACTING PTY LTD"	19-Nov-07 10:36 AM	

+="CN47084-A1"	" New Agreement for Podiatry Adviser "	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-11	167648.00	=""	="Williams Podiatry Pty Ltd"	19-Nov-07 10:36 AM	

+="CN47085"	"Physiotherapy advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	150883.00	=""	="Therapy Advice and Review Service"	19-Nov-07 10:36 AM	

+="CN47086"	"Occupational Therapy Advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	471510.00	=""	="Counselling Appraisal Consultants Pty Ltd"	19-Nov-07 10:37 AM	

+="CN47087-A1"	"Provision of community nursing advisory services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-10	310000.00	="AHC07"	="C M Collyer & J L Turner"	19-Nov-07 10:37 AM	

+="CN47088-A1"	" Podiatry Advice "	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-11	50294.00	=""	="The Trustee for The Darner Family Trust"	19-Nov-07 10:37 AM	

+="CN47090"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	167648.00	=""	="The Trustee for The Steve Cooper Family Trust"	19-Nov-07 10:37 AM	

+="CN47091"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	134118.00	=""	="Susan Yates O.T. Pty Ltd"	19-Nov-07 10:37 AM	

+="CN47092"	"Occupational Therapy Advice"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	117354.00	=""	="The Trustee for The Knights Family Trust"	19-Nov-07 10:37 AM	

+="CN47093"	"Physiotherapy & Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	184413.00	="AHC07"	="Physiotherapy & Speech Pathology Advisory Services P/L"	19-Nov-07 10:37 AM	

+="CN47094"	"Physio therapist advice to the Department of Veterans' Affairs."	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	167648.00	=""	="Physio To Fit Pty Ltd"	19-Nov-07 10:37 AM	

+="CN47095"	"Podiatry Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	58676.00	=""	="Rintoul WA Pty Ltd"	19-Nov-07 10:37 AM	

+="CN47096-A1"	"Provide Community Nursing Advisory services."	="Department of Veterans' Affairs"	19-Nov-07	="Comprehensive health services"	01-Oct-07	30-Sep-10	83824.00	=""	="The Burchell Trust Fund"	19-Nov-07 10:37 AM	

+="CN47097"	"Occupational Therapy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	184412.00	=""	="The Trustee for Vekdraft Pty Ltd"	19-Nov-07 10:38 AM	

+="CN47098"	"Physiotherpy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	92206.00	=""	="Goldsage Corporation Pty Ltd"	19-Nov-07 10:38 AM	

+="CN47099"	"Physiotherapy Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	33529.00	=""	="Guy Maddison Physiotherapy Pty Ltd"	19-Nov-07 10:38 AM	

+="CN47100"	"The provision of Community Nursing Advisory Services"	="Department of Veterans' Affairs"	19-Nov-07	="Management advisory services"	01-Oct-07	30-Sep-09	320000.00	="AHC07"	="Nursing Advisory Services Pty Ltd"	19-Nov-07 10:38 AM	

+="CN47101"	"The provision of Physiotherapy Adviser Services"	="Department of Veterans' Affairs"	19-Nov-07	="Healthcare Services"	01-Oct-07	30-Sep-09	50295.00	=""	="Saber Pty Ltd"	19-Nov-07 10:38 AM	

+="CN47106"	"Legal Services Expenditure 3816"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	11-Aug-06	30-Jun-09	12183.60	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:51 AM	

+="CN47107"	"Scientific Research"	="Department of Transport and Regional Services"	19-Nov-07	="Laboratory and scientific equipment"	03-Sep-07	30-Jun-08	44309.98	=""	="AUSTRALIAN NUCLEAR SCIENCE &"	19-Nov-07 10:51 AM	

+="CN47108"	"Scientific Research"	="Department of Transport and Regional Services"	19-Nov-07	="Laboratory and scientific equipment"	31-Aug-07	30-Jun-08	74250.00	=""	="PROFESSOR DUDLEY CECIL CREAGH"	19-Nov-07 10:51 AM	

+="CN47109"	"Project Management Services FI Consultant - Jason Dunn PSFM"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	08-Oct-07	30-Jun-08	1380077.60	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	19-Nov-07 10:51 AM	

+="CN47110"	"Digital Voice Data Recorder (DVDR)"	="Department of Transport and Regional Services"	19-Nov-07	="Electrical equipment and components and supplies"	01-Nov-07	30-Apr-08	39930.00	=""	="AUSTRALIAN AVIONICS PTY LTD"	19-Nov-07 10:51 AM	

+="CN47111"	"Contracting Services - Calvert & Aldag"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	24-Oct-07	30-Jul-08	214999.61	="TRS06/038"	="INNOGENCE"	19-Nov-07 10:52 AM	

+="CN47112"	"Supply of temporary staff resources Superannuation on labour hire"	="Department of Transport and Regional Services"	19-Nov-07	="Business administration services"	25-Oct-07	30-Apr-08	26702.50	=""	="PURCHASING AND BUSINESS ENTERPRISES"	19-Nov-07 10:52 AM	

+="CN47113"	"Contracting Services - Alex Ciceran"	="Department of Transport and Regional Services"	19-Nov-07	="Software"	20-Sep-07	30-Jun-08	140000.30	="TRS06/038"	="ANTZ Consulting Pty Ltd"	19-Nov-07 10:52 AM	

+="CN47114"	"Legal Services Expenditure 6757"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	11-Aug-06	30-Jun-09	10154.54	="TRS06/175"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:52 AM	

+="CN47115"	"Advice industrial dev fed leased airport"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	22-Oct-07	21-Oct-09	59604.60	="TRS07/095"	="CH2M HILL AUSTRALIA PTY. LIMITED"	19-Nov-07 10:52 AM	

+="CN47116"	"Ad hoc mov't staff to and from o/s posts"	="Department of Transport and Regional Services"	19-Nov-07	="Material packing and handling"	01-Jul-07	30-Jun-08	48200.00	=""	="SIRVA Pty Ltd"	19-Nov-07 10:52 AM	

+="CN47117"	"Financial Analysis"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	05-Oct-07	05-Nov-07	19371.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	19-Nov-07 10:52 AM	

+="CN47118"	"Change Management"	="Department of Transport and Regional Services"	19-Nov-07	="Management advisory services"	30-Jul-07	01-Feb-08	103000.00	="T2004/0699"	="VOLANTE GROUP LTD"	19-Nov-07 10:52 AM	

+="CN47119"	"Legal Services Expenditure LG6686"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	14-Nov-07	30-Jun-09	30479.17	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	

+="CN47120"	"Legal Services ExpenditureLG 6726"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	22400.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	

+="CN47121"	"Legal Service Expenditure LG070807-6735"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	21450.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	

+="CN47122"	"Legal Services - Green Review"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	14-Nov-07	19-Nov-07	13809.51	="TRS07/267"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:53 AM	

+="CN47123"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	10069.80	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	

+="CN47124"	"Legal Service Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	13-Nov-07	30-Jun-09	44944.58	="TRS06/175"	="MINTER ELLISON LAWYERS"	19-Nov-07 10:53 AM	

+="CN47125"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	19-Nov-07	="Legal services"	31-Oct-07	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	19-Nov-07 10:53 AM	

+="CN47066"	"Voice Communications System"	="Department of the Environment and Water Resources"	19-Nov-07	="Information Technology Broadcasting and Telecommunications"	11-Jul-02	31-Jul-07	3007000.00	=""	="LOGICAL NETWORKS LIMITED"	19-Nov-07 11:09 AM	

+="CN47065"	"Cartage Services"	="Department of the Environment and Water Resources"	19-Nov-07	="Transportation and Storage and Mail Services"	28-Apr-05	31-Mar-10	341000.00	=""	="Chas Kelly Transport"	19-Nov-07 11:10 AM	

+="CN47105"	" DRY CLEANING SOLVENT "	="Defence Materiel Organisation"	19-Nov-07	="Solvents"	16-Nov-07	21-Nov-07	10494.00	=""	="GLENDALE PACKAGING P/L"	19-Nov-07 11:11 AM	

+="CN47128"	"motor vehicle spare parts"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10030.00	=""	="LANDROVER"	19-Nov-07 11:18 AM	

+="CN47126"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	19-Nov-07	="Medical Equipment and Accessories and Supplies"	16-Jan-07	19-Jan-07	46061.84	=""	="Tyco Healthcare"	19-Nov-07 11:19 AM	

+="CN47141"	"BOOTS, EXTREME COLD WEATHER."	="Defence Materiel Organisation"	19-Nov-07	="Boots"	14-Nov-07	14-Dec-07	64350.00	="J7968"	="PLATYPUS"	19-Nov-07 12:38 PM	

+="CN47156-A1"	" Workstation modification on Level 3 Executive Area  National Support Ofice "	="Family Court of Australia"	19-Nov-07	="Building and Construction Machinery and Accessories"	18-Sep-07	30-Nov-07	24279.10	=""	="Hytec Interior Solutions"	19-Nov-07 01:39 PM	

+="CN47158"	"Battery pack"	="Defence Materiel Organisation"	19-Nov-07	="Product specific battery packs"	16-Nov-07	17-Dec-07	26864.20	=""	="XTEK LTD"	19-Nov-07 01:46 PM	

+="CN47159"	"Fleet management and leasing services (Ref Standing offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	11-Dec-06	10-Dec-08	42978.67	=""	="LEASEPLAN"	19-Nov-07 01:51 PM	

+="CN47160-A1"	" Level 4 HR Workstation Alterations   National Support Office "	="Family Court of Australia"	19-Nov-07	="Building and Construction Machinery and Accessories"	30-Oct-07	30-Nov-07	11733.15	=""	="Hytec Interior Solutions"	19-Nov-07 01:52 PM	

+="CN47161"	"Fleet Management and Leasing Services (Ref standing Offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	29-Jun-07	28-Jun-09	24473.00	=""	="LeasePlan"	19-Nov-07 02:09 PM	

+="CN47163"	"fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	19-Nov-07	="Vehicle leasing"	05-Apr-07	04-Apr-09	39100.00	=""	="Leaseplan"	19-Nov-07 02:17 PM	

+="CN47164"	" Circuit Card Assembly for Gen Set. "	="Defence Materiel Organisation"	19-Nov-07	="Motor or generator components"	19-Nov-07	09-Jan-08	11170.34	=""	="Advanced Power (NSW) Pty Ltd"	19-Nov-07 02:28 PM	

+="CN47170"	"Provision for new computer hardware _ MOU MilitarySuper MSB Board"	="Comsuper"	19-Nov-07	="Software"	01-May-06	01-May-08	45926.00	=""	="OPC"	19-Nov-07 02:49 PM	

+="CN47173"	"Provision for Supply of Disk Array Enclosures"	="Comsuper"	19-Nov-07	="Software"	19-Jun-07	18-Jun-08	64900.00	=""	="Vectra Corporation Ltd"	19-Nov-07 02:55 PM	

+="CN47176-A1"	"Provision of Additional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	16-Jan-07	30-Jun-08	198792.00	=""	="IT matters Recruitment services"	19-Nov-07 03:00 PM	

+="CN47179-A1"	"Provision for Additional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	03-Jul-06	28-Jun-08	194480.00	=""	="Southern Cross Computing"	19-Nov-07 03:04 PM	

+="CN47190"	"air fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Travel facilitation"	28-Sep-07	28-Sep-07	140127.66	=""	="American Express"	19-Nov-07 03:17 PM	

+="CN47191"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Transportation and Storage and Mail Services"	04-Sep-07	04-Sep-07	24439.31	=""	="Cabcharge Australia Pty Ltd"	19-Nov-07 03:17 PM	

+="CN47192"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	10-Sep-07	10-Sep-07	10120.00	=""	="Compact - Compliance and Corporate Training"	19-Nov-07 03:17 PM	

+="CN47193"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	21-Sep-07	21-Sep-07	23982.27	=""	="Cybertrust Australia Pty Ltd"	19-Nov-07 03:17 PM	

+="CN47194"	"Consultant AMLR"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	20750.00	=""	="Deloitte Touche Tohmatsu"	19-Nov-07 03:17 PM	

+="CN47195"	"Consultant AMLR"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	13-Sep-07	17600.00	=""	="Deloitte Touche Tohmatsu"	19-Nov-07 03:17 PM	

+="CN47196"	"Consulting"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management advisory services"	11-Sep-07	11-Sep-07	10000.00	=""	="EAS Management"	19-Nov-07 03:18 PM	

+="CN47197"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	03-Sep-07	26437.27	=""	="Electroboard Solutions Pty Ltd"	19-Nov-07 03:18 PM	

+="CN47198"	"user licence"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	04-Sep-07	04-Sep-07	23250.00	=""	="Esri Australia"	19-Nov-07 03:18 PM	

+="CN47199"	"computer repair"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	24-Sep-07	24-Sep-07	40500.00	=""	="Evotec"	19-Nov-07 03:18 PM	

+="CN47200"	"Photocopier Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Office machines and their supplies and accessories"	24-Sep-07	24-Sep-07	16250.00	=""	="Fuji Xerox Aust. Pty Ltd - NSW"	19-Nov-07 03:18 PM	

+="CN47201"	"Personnel placement fee"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	28290.00	=""	="Hays Accountancy Personnel"	19-Nov-07 03:18 PM	

+="CN47202"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Marketing and distribution"	10-Sep-07	10-Sep-07	10923.00	=""	="HMA Blaze"	19-Nov-07 03:18 PM	

+="CN47203"	"advertising"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Marketing and distribution"	27-Sep-07	27-Sep-07	11469.15	=""	="HMA Blaze"	19-Nov-07 03:18 PM	

+="CN47204"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	37180.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:18 PM	

+="CN47205"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	111475.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47206"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Sep-07	01-Sep-07	11147.50	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47207"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	03-Sep-07	03-Sep-07	31960.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47208"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	11-Sep-07	11-Sep-07	20296.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47209"	"Study"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Engineering and Research and Technology Based Services"	14-Sep-07	14-Sep-07	30543.00	=""	="Open Mind Research Group Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47210"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	24-Sep-07	24-Sep-07	16795.39	=""	="Telstra"	19-Nov-07 03:19 PM	

+="CN47212"	"Training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	26-Oct-07	26-Oct-07	14058.26	=""	="Australian Public Service Commission"	19-Nov-07 03:19 PM	

+="CN47213"	"Furniture"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Furniture and Furnishings"	24-Sep-07	24-Sep-07	20970.00	=""	="UCI Projects Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47214"	"taxi fares"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Transportation and Storage and Mail Services"	09-Oct-07	09-Oct-07	22285.41	=""	="Cabcharge Australia Pty Ltd"	19-Nov-07 03:19 PM	

+="CN47188"	"Timber"	="Department of Defence"	19-Nov-07	="Plywood"	19-Nov-07	03-Dec-07	12436.80	=""	="PJC DISTRIBUTORS"	19-Nov-07 03:19 PM	

+="CN47215"	"Insurance - Fees"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Insurance and retirement services"	09-Oct-07	09-Oct-07	11545.50	=""	="ComSuper"	19-Nov-07 03:19 PM	

+="CN47216"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	19-Oct-07	19-Oct-07	22890.91	=""	="Cybertrust Australia Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47217"	"IT equipment"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer Equipment and Accessories"	08-Oct-07	08-Oct-07	29850.36	=""	="Electroboard Solutions Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47218"	"IT Maintenance"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	54994.80	=""	="Hewlett-Packard Australia Ltd"	19-Nov-07 03:20 PM	

+="CN47219"	"Leased Office Space"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Real estate services"	02-Oct-07	02-Oct-07	25836.76	=""	="Investa Asset Management (QLD) Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47220"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	01-Oct-07	01-Oct-07	10030.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47221"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	05-Oct-07	05-Oct-07	25161.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47222"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	30723.78	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47223"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	15392.00	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47224"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	130397.80	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:20 PM	

+="CN47189"	" Motor Vehicle Parts. "	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Dec-07	20180.45	=""	="Daimler Chrysler Aust. Pacific"	19-Nov-07 03:21 PM	

+="CN47225"	"IT Assets"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Computer services"	26-Oct-07	26-Oct-07	13039.78	=""	="MCR Computer Resources Pty Ltd"	19-Nov-07 03:21 PM	

+="CN47226"	"Project Mgmt Services"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Building and Construction and Maintenance Services"	25-Oct-07	25-Oct-07	16016.72	=""	="Montlaur Project Services"	19-Nov-07 03:21 PM	

+="CN47227"	"Telecommunication Svs"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	08-Oct-07	08-Oct-07	15970.48	=""	="Optus"	19-Nov-07 03:21 PM	

+="CN47228"	"project design for fitout"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	01-Oct-07	49597.25	=""	="Ryder Shop & Office Fitting Pty Ltd"	19-Nov-07 03:21 PM	

+="CN47229"	"training"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Education and Training Services"	08-Oct-07	08-Oct-07	66150.00	=""	="SPSS Australasia Pty Ltd"	19-Nov-07 03:21 PM	

+="CN47230"	"Publication Subscriptions"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Printed media"	16-Oct-07	16-Oct-07	11800.11	=""	="Swets information Services"	19-Nov-07 03:21 PM	

+="CN47231"	"Telecommunications"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Telecommunications media services"	23-Oct-07	23-Oct-07	15866.65	=""	="Telstra"	19-Nov-07 03:21 PM	

+="CN47232"	"Roller blinds"	="Australian Transaction Reports and Analysis Centre (AUSTRAC)"	19-Nov-07	="Furniture and Furnishings"	08-Oct-07	08-Oct-07	10149.00	=""	="The Lidi Group Pty Ltd"	19-Nov-07 03:21 PM	

+="CN47239"	" NSN 2915-00-307-5673  PURCHASE OF DIAPHRAGM, PUMP  EX GST "	="Defence Materiel Organisation"	19-Nov-07	="Military transport aircraft"	24-Sep-07	08-Nov-07	10689.20	=""	="Military Aviation Spares Pty Ltd"	19-Nov-07 03:40 PM	

+="CN47242"	" NSN 5330-66-127-3034  PURCHASE OF SEAL BARREL HALF  EX GST "	="Defence Materiel Organisation"	19-Nov-07	="Military transport aircraft"	02-May-07	28-Nov-07	13045.00	=""	="Military Aviation Spares Pty Ltd"	19-Nov-07 03:49 PM	

+="CN47244-A1"	"Provision of Aditional Applications developer Services"	="Comsuper"	19-Nov-07	="Human resources services"	03-Jul-07	30-Jun-08	191048.00	=""	="Icon Recruitment Pty Ltd"	19-Nov-07 03:55 PM	

+="CN47243"	"Motor Vehicle parts."	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Nov-07	10244.90	=""	="Daimler Chrysler Aust Pacific"	19-Nov-07 03:56 PM	

+="CN47245-A1"	"Provision of ComSuper Application developer"	="Comsuper"	19-Nov-07	="Human resources services"	09-Oct-06	30-Jun-08	202488.00	=""	="Icon Recruitment"	19-Nov-07 04:00 PM	

+="CN47246"	"Provision for the purchase of Power-Path Licenece for the StatProd server"	="Comsuper"	19-Nov-07	="Software"	15-Nov-07	15-Feb-08	16239.00	=""	="Vectra Corporation Ltd"	19-Nov-07 04:02 PM	

+="CN47247"	"Provision for the development of Anti-Money Laundering and Counter Terrorism Financing e-learning software"	="Comsuper"	19-Nov-07	="Software"	15-Oct-07	15-Dec-07	37984.00	=""	="Total learn Pty Ltd"	19-Nov-07 04:08 PM	

+="CN47248"	" Recruitment Services - 165 Reference Checks. "	="Australian Taxation Office"	19-Nov-07	="Management and Business Professionals and Administrative Services"	26-Sep-07	19-Oct-07	19965.00	="06.042"	="Hudson Global Resources (Aust) Pty Ltd"	19-Nov-07 04:14 PM	

+="CN47249"	"Motor Vehicle Parts."	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	16-Nov-07	19-Dec-07	17663.76	=""	="Daimler Chrysler Aust. Pacific"	19-Nov-07 04:31 PM	

+="CN47251"	"Provision for Consultancy services"	="Comsuper"	19-Nov-07	="Financial and Insurance Services"	27-Aug-07	28-Sep-07	70450.00	=""	="The IQ Business Group Pty Ltd"	19-Nov-07 04:35 PM	

+="CN47252"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	10677.12	=""	="ROVER AUSTRALIA"	19-Nov-07 04:39 PM	

+="CN47253-A1"	"07/2207 - Business analysis services - 1599-1962 - Consultancy and Business Servuces Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	29-Oct-07	31-Dec-08	590544.64	="06/1599"	="Centre for Customs and Excise Studies - University of Canberra"	19-Nov-07 04:39 PM	

+="CN47254-A2"	"07/2378 - Project Manager - 0717-0866 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	210875.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:43 PM	

+="CN47255"	"07/2044 - IT Contractor - 0717-0877 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	13-Aug-07	12-Aug-08	233000.00	="05/0717"	="Greythorn pty Ltd"	19-Nov-07 04:48 PM	

+="CN47256"	"07/2056 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	01-Jul-07	30-Jun-08	202000.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:51 PM	

+="CN47257"	"07/2380 - Systems Analyst/Programmer - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	05-Nov-07	30-Jun-08	152000.00	="05/0717"	="CCS Index Pty Ltd"	19-Nov-07 04:54 PM	

+="CN47259"	"Executive Facilitation Services for SES & EL2 Leadership Group."	="Australian Taxation Office"	19-Nov-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	19-Nov-07	11945.00	="06.028"	="Fyusion Asia Pacific P/L"	19-Nov-07 04:56 PM	

+="CN47260-A2"	"07/2383 - Systems Design Coordinator - 0717-0885 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	29-Oct-07	30-Jun-09	447000.00	="05/0717"	="Professionals Online"	19-Nov-07 04:58 PM	

+="CN47261-A1"	"07/2310 - Project Manager - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	19-Nov-07	30-Jun-08	458000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	19-Nov-07 05:01 PM	

+="CN47262"	"07/2140 - IT Contractor -0717-0875 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	03-Sep-07	29-Feb-08	159302.00	="05/0717"	="Frontier Group Australia Pty Ltd"	19-Nov-07 05:04 PM	

+="CN47263"	" Rental & Service for the DAFF Phase Three Photocopiers - local & regional "	="Department of Agriculture Fisheries and Forestry"	19-Nov-07	="Tools and General Machinery"	01-Jul-07	12-Apr-09	635456.10	=""	="Sharp Direct"	19-Nov-07 05:07 PM	

+="CN47264-A1"	"07/2400 - IT Contractor - 0717-0862 - ICT Panel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Temporary personnel services"	01-Nov-07	30-Apr-08	100698.00	="05/0717"	="Aurec Pty Ltd"	19-Nov-07 05:07 PM	

+="CN47265"	"CPO016908 - Telecommunications maintenance"	="Australian Customs and Border Protection Service"	19-Nov-07	="Information Technology Broadcasting and Telecommunications"	16-Jun-07	06-Oct-07	54610.05	=""	="Motorola Australia Pty Ltd"	19-Nov-07 05:14 PM	

+="CN47266-A2"	"07/2330 - Technical consultant"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	07-Nov-07	31-Dec-07	76000.00	=""	="Brian Gatfield"	19-Nov-07 05:14 PM	

+="CN47267"	"CPE004099-1 - Fuel"	="Australian Customs and Border Protection Service"	19-Nov-07	="Fuels"	30-Oct-07	30-Oct-07	19195.43	=""	="Cocks Petroleum Pty Ltd"	19-Nov-07 05:14 PM	

+="CN47268"	"CPE004168-1 - Supply of propellor entrapment device"	="Australian Customs and Border Protection Service"	19-Nov-07	="Industrial Manufacturing and Processing Machinery and Accessories"	12-Nov-07	12-Nov-07	14850.00	=""	="Gemini Inflatables Aust Pty"	19-Nov-07 05:14 PM	

+="CN47269-A2"	"07/2355 - Consultancy Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="Business and corporate management consultation services"	08-Nov-07	30-Jun-08	76000.00	=""	="Miltech Services"	19-Nov-07 05:14 PM	

+="CN47270"	"06/1640 - Construction Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="General building construction"	14-Sep-07	20-Jun-08	2142910.00	=""	="Northern Australia Aboriginal Development Corporation Pty"	19-Nov-07 05:14 PM	

+="CN47271"	"CPO015592 - Monitoring Services"	="Australian Customs and Border Protection Service"	19-Nov-07	="Management advisory services"	01-Sep-07	26-Feb-08	11000.00	=""	="TradeData International"	19-Nov-07 05:15 PM	

+="CN47272"	"CPO017058 - Digital Recording Equipment"	="Australian Customs and Border Protection Service"	19-Nov-07	="Components for information technology or broadcasting or telecommunications"	15-Nov-07	30-Jun-08	54982.40	=""	="TPR Systems"	19-Nov-07 05:15 PM	

+="CN47273"	"CPO017018 - Conversion of Security System"	="Australian Customs and Border Protection Service"	19-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Nov-07	13167.00	=""	="Honeywell"	19-Nov-07 05:15 PM	

+="CN47275"	"motor vehicle spare parts"	="Department of Defence"	19-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	11003.31	=""	="LAND ROVER AUSTRALIA"	19-Nov-07 05:25 PM	

+="CN47281"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0788 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	19-Nov-07	31-Dec-07	12990.72	=""	="Goodrich Control Systems PTY LTD"	19-Nov-07 08:02 PM	

+="CN47282-A1"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1081 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	19-Nov-07	31-Dec-07	35577.60	=""	="Goodrich Control System PTY LTD"	19-Nov-07 08:08 PM	

+="CN47283"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1935 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	19-Nov-07	="Aerospace systems and components and equipment"	13-Nov-07	31-Dec-07	10699.69	=""	="Goodrich Control Systems PTY LTD"	19-Nov-07 08:13 PM	

+="CN47285"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Nov-07	="Aircraft spars"	19-Nov-07	20-Jun-08	35878.70	=""	="MILSPEC SERVICES PTY LTD"	20-Nov-07 07:34 AM	

+="CN47286"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Medical Equipment and Accessories and Supplies"	12-Nov-07	21-Nov-07	20169.60	=""	="Laerdal Pty Ltd"	20-Nov-07 07:51 AM	

+="CN47287"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	13-Nov-07	10-Dec-07	11616.00	=""	="Alcon Laboratories (Aust) Pty Ltd"	20-Nov-07 07:55 AM	

+="CN47288"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Medical Equipment and Accessories and Supplies"	13-Nov-07	10-Dec-07	38280.00	=""	="LMA Pacmed Pty Ltd"	20-Nov-07 08:01 AM	

+="CN47289"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	13-Nov-07	22-Nov-07	12757.80	=""	="GlaxoSmithKline Australia"	20-Nov-07 08:05 AM	

+="CN47290"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Nov-07	="Drugs and Pharmaceutical Products"	14-Nov-07	23-Nov-07	17160.00	=""	="Key Pharmaceuticals Pty Ltd"	20-Nov-07 08:08 AM	

+="CN47291"	"CLEANING TOOL. BOOT, COMBO."	="Defence Materiel Organisation"	20-Nov-07	="Mud cleaning equipment"	15-Nov-07	04-Jan-08	134475.00	="J7967"	="REDBACK BOOT CO"	20-Nov-07 08:35 AM	

+="CN47301"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	11434.51	=""	="Auscript Australasia Pty Ltd"	20-Nov-07 09:29 AM	

+="CN47305"	"Taxi & Cabcharges"	="Federal Magistrates Court"	20-Nov-07	="Taxicab services"	01-Oct-07	31-Oct-07	23048.15	=""	="Cabcharge Australia Pty Ltd"	20-Nov-07 09:38 AM	

+="CN47306"	"Recover Costs Rental, Outgoings, Car Parking - October 2007"	="Federal Magistrates Court"	20-Nov-07	="Commercial or industrial facility rental"	01-Oct-07	31-Oct-07	14485.18	=""	="Charter Hall Limited - Savills"	20-Nov-07 09:54 AM	

+="CN47307"	"Accommodation for Associates Conference in Melbourne 260807-280807"	="Federal Magistrates Court"	20-Nov-07	="Hotels and motels and inns"	01-Oct-07	31-Oct-07	27067.90	=""	="Citigate Melbourne"	20-Nov-07 10:03 AM	

+="CN47309"	"Supply and Installation of ceiling tiles, framing and doors for Darwin fit-out"	="Austrade"	20-Nov-07	="General building construction"	20-Aug-07	21-Aug-07	11493.00	=""	="Turtle Constructions Pty Ltd"	20-Nov-07 10:07 AM	

+="CN47310"	"Material and labour for Darwin electrical fit-out"	="Austrade"	20-Nov-07	="Electrical equipment and components and supplies"	03-Aug-07	17-Aug-07	14300.00	=""	="Hardies Electrical Contracting Services Pty Ltd"	20-Nov-07 10:07 AM	

+="CN47311-A1"	"Development of speech and corporate writing"	="Austrade"	20-Nov-07	="Human resources services"	11-Oct-06	15-Feb-07	16000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	20-Nov-07 10:07 AM	

+="CN47312-A1"	"Workshop development and facilitation"	="Austrade"	20-Nov-07	="Computer services"	27-Apr-07	30-Jun-07	17000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	20-Nov-07 10:07 AM	

+="CN47313"	"Supply and installation of Fujitsu wall unit for Darwin fit-out"	="Austrade"	20-Nov-07	="General building construction"	03-Aug-07	17-Aug-07	17459.20	=""	="SIMS Refrigeration"	20-Nov-07 10:07 AM	

+="CN47314-A1"	"Development and delivery of strategic collaboration meeting in New Delhi"	="Austrade"	20-Nov-07	="Human resources services"	18-Apr-07	05-May-07	17500.00	=""	="Learning Dimensions Network Pty Ltd"	20-Nov-07 10:07 AM	

+="CN47315-A1"	"E-business workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	01-Jul-07	30-Jun-08	20000.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:07 AM	

+="CN47316-A1"	"Workshop and online survey development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	19-Sep-07	28-Sep-07	21265.87	=""	="Culture Resource Centre Pty Ltd"	20-Nov-07 10:07 AM	

+="CN47317-A1"	"Analysis and management of service desk functions for Canberra, State Offices & Overseas Posts"	="Austrade"	20-Nov-07	="Human resources services"	13-Aug-07	09-Nov-07	23650.00	=""	="Icon Recruitment Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47318-A2"	"In-House personnel vetting services and development and analysis of Revalidation Program"	="Austrade"	20-Nov-07	="Human resources services"	03-Sep-07	30-Nov-07	22183.20	=""	="Key Vetting Services Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47319-A1"	"Development and delivery of framework for CRM project"	="Austrade"	20-Nov-07	="Human resources services"	10-Sep-07	30-Sep-07	22605.00	=""	="In Corporate Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47320-A1"	"E-business workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	09-Jan-07	30-Jun-07	25000.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47321-A1"	"Workshop development and facilitation"	="Austrade"	20-Nov-07	="Human resources services"	16-Aug-07	30-Sep-08	27500.00	=""	="Corteks Company Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47322-A1"	"Professional fees for Word on the Street 2007"	="Austrade"	20-Nov-07	="Human resources services"	31-May-07	01-Jun-07	30332.50	=""	="Impact Employee Communications Pty Limited"	20-Nov-07 10:08 AM	

+="CN47323-A1"	"Delivery of workable classification of information assets"	="Austrade"	20-Nov-07	="Human resources services"	24-Sep-07	30-Jun-08	38500.00	=""	="Information Solutions Pty Ltd"	20-Nov-07 10:08 AM	

+="CN47324-A1"	"Development and delivery of Microsoft Dynamics CRM showcase"	="Austrade"	20-Nov-07	="Computer services"	12-Sep-07	12-Nov-07	40000.00	=""	="Accenture Australia Holdings Pty Ltd"	20-Nov-07 10:09 AM	

+="CN47325-A1"	"Research and forecast of future skill trends, and formalise practices to drive efficient resource management"	="Austrade"	20-Nov-07	="Computer services"	30-Jul-07	26-Oct-07	53900.00	=""	="GMT Canberra Pty Ltd"	20-Nov-07 10:09 AM	

+="CN47326-A1"	"Management and support in the implementation of the EWC Project"	="Austrade"	20-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	63350.00	=""	="The Nous Group Pty Ltd"	20-Nov-07 10:09 AM	

+="CN47327"	"Room hire for National EMDG Conference"	="Austrade"	20-Nov-07	="Travel and Food and Lodging and Entertainment Services"	06-Feb-07	09-Feb-07	67800.00	=""	="Thakral Operations Pty Ltd"	20-Nov-07 10:09 AM	

+="CN47328-A1"	"Development, analysis and delivery of application systems"	="Austrade"	20-Nov-07	="Human resources services"	02-Jul-06	21-Dec-07	102300.00	=""	="CCS Technology Recruiters"	20-Nov-07 10:09 AM	

+="CN47330"	" Manufacture Furniture FMC LBB & JMT "	="Federal Magistrates Court"	20-Nov-07	="Carpentry"	01-Oct-07	31-Oct-07	13951.30	=""	="Claremont Joinery"	20-Nov-07 10:12 AM	

+="CN47331-A1"	"Design & publishing of annual report & Logo.  This is an additonal top of $8948 to CN34024 $38586.90."	="Future Fund Management Agency"	20-Nov-07	="Promotional material or annual reports"	12-Nov-07	12-Nov-07	47534.90	=""	="Moss Advertising"	20-Nov-07 10:15 AM	

+="CN47333"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	20-Nov-07	="Stationery"	01-Oct-07	31-Oct-07	30011.55	=""	="Corporate Express Australia"	20-Nov-07 10:17 AM	

+="CN47332"	"Cover Plate; Plunger, Clutch; Retaining Tool; Shaft, Straight; Collar, Shaft; Bearing Washer Thrust; Nipple, Pipe; Waher, Key;Pin, Grooved; Spacer, Sleeve"	="Defence Materiel Organisation"	20-Nov-07	="Conventional weapons usage"	20-Nov-07	27-Nov-08	10994.50	=""	="G A Hanrahan Pty Ltd"	20-Nov-07 10:18 AM	

+="CN47334"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	20-Nov-07	="Temporary legal staffing needs"	01-Oct-07	31-Oct-07	30351.10	=""	="Drake Australia Pty Ltd"	20-Nov-07 10:22 AM	

+="CN47336"	"Supply and Install Floor Coverings FMC JMT Level 5"	="Federal Magistrates Court"	20-Nov-07	="Floor coverings"	01-Oct-07	31-Oct-07	51408.50	=""	="Future Floor Services NSW Pty Ltd"	20-Nov-07 10:30 AM	

+="CN47335"	"Development, facilitation and advice on industry team strategy, with a focus on South Asia operations"	="Austrade"	20-Nov-07	="Computer services"	21-Jul-07	31-Jul-08	15400.00	=""	="CBA Consulting Group Ltd"	20-Nov-07 10:31 AM	

+="CN47337"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	21864.32	=""	="Harvey Consultancy - Report Writer"	20-Nov-07 10:36 AM	

+="CN47338"	"HMA Blaze"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Advertising"	01-Jul-07	30-Jun-08	12311.99	=""	="HMA Blaze Pty Ltd"	20-Nov-07 10:38 AM	

+="CN47339"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Internet services"	01-Jul-07	30-Jun-08	12856.01	=""	="Telstra"	20-Nov-07 10:38 AM	

+="CN47340"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14029.67	=""	="Tru Energy"	20-Nov-07 10:38 AM	

+="CN47341"	"EXPRESS OFFICE SYSTEMS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Laser printers"	01-Oct-07	01-Oct-08	21662.30	="NA"	="EXPRESS OFFICE SYSTEMS"	20-Nov-07 10:38 AM	

+="CN47342"	"Attorney-General's Department"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Network security equipment"	06-Sep-07	06-Sep-07	50000.00	=""	="Attorney-General's Department"	20-Nov-07 10:38 AM	

+="CN47343"	"EBSCO AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Library"	07-Nov-07	07-Nov-08	141148.04	="NA"	="EBSCO Australia"	20-Nov-07 10:38 AM	

+="CN47344"	"GJK CLEANING SERVICES"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Cleaning and janitorial supplies"	15-Oct-07	15-Oct-08	109203.38	="NA"	="GJK Facility Services"	20-Nov-07 10:38 AM	

+="CN47345"	"LOOP TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer servers"	23-Aug-07	23-Aug-08	32315.87	="NA"	="Loop Technology"	20-Nov-07 10:39 AM	

+="CN47346"	"Radisson Hotels"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Hotels"	23-Jul-07	23-Jul-07	28912.00	=""	="Radisson Hotel and Suites Sydney"	20-Nov-07 10:39 AM	

+="CN47347"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer accessories"	23-Jul-07	30-Jun-08	15400.00	=""	="DELL COMPUTER P/L"	20-Nov-07 10:39 AM	

+="CN47348"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Meteorology"	24-Aug-07	24-Aug-08	46819.97	="NA"	="Bureau of Meteorology"	20-Nov-07 10:39 AM	

+="CN47350"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	10793.75	=""	="Protiviti Pty Ltd"	20-Nov-07 10:39 AM	

+="CN47351"	"Inderlec Medical Systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer accessories"	31-Jul-07	30-Jun-08	39347.00	="NA"	="Inderlec Medical Systems P/L"	20-Nov-07 10:39 AM	

+="CN47349"	"    Venue Hire for New York International Gift Fair    "	="Austrade"	20-Nov-07	="Marketing and distribution"	12-Aug-07	16-Aug-07	21996.00	=""	="George Little Management"	20-Nov-07 10:39 AM	

+="CN47352"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrical services"	01-Jul-07	30-Jun-08	13946.71	=""	="Tru Energy"	20-Nov-07 10:40 AM	

+="CN47353"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14322.55	=""	="Tru Energy"	20-Nov-07 10:40 AM	

+="CN47354"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	17791.40	=""	="Honeywell"	20-Nov-07 10:40 AM	

+="CN47355"	"HMA Blaze"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Advertising"	01-Jul-07	30-Jun-08	24141.35	=""	="HMA Blaze Pty Ltd"	20-Nov-07 10:40 AM	

+="CN47356"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	

+="CN47357"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	

+="CN47358"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:40 AM	

+="CN47359"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Property management"	01-Jul-07	30-Jun-08	73985.64	=""	="Honeywell"	20-Nov-07 10:41 AM	

+="CN47360"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Pump integrity monitors"	03-Oct-07	30-Oct-08	46337.50	="NA"	="Nu Scientific P/L"	20-Nov-07 10:41 AM	

+="CN47361"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Meteorology"	24-Aug-07	24-Aug-08	46476.77	="NA"	="Bureau of Meteorology"	20-Nov-07 10:41 AM	

+="CN47362"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Audit services"	26-Jun-07	26-Jun-07	14300.00	=""	="Protiviti Pty Ltd"	20-Nov-07 10:41 AM	

+="CN47363"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Internet services"	01-Jul-07	30-Jun-08	12856.01	=""	="Telstra"	20-Nov-07 10:41 AM	

+="CN47365"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Supply of two phase electricity"	01-Jul-07	30-Jun-08	13036.28	=""	="Tru Energy"	20-Nov-07 10:41 AM	

+="CN47366"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrical services"	01-Jul-07	30-Jun-08	13094.93	=""	="Tru Energy"	20-Nov-07 10:42 AM	

+="CN47367"	"LEASEPLAN"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Transportation services equipment"	01-Jul-07	30-Jun-08	25000.00	="NA"	="Leaseplan Australia"	20-Nov-07 10:42 AM	

+="CN47368"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	20-Nov-07 10:42 AM	

+="CN47369"	"United Nations Environmental Programme"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Environmental Services"	08-Oct-07	08-Oct-07	100648.62	=""	="United Nations Environment Programme"	20-Nov-07 10:42 AM	

+="CN47364"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	20-Nov-07	="Temporary clerical or administrative assistance"	01-Oct-07	31-Oct-07	10675.09	=""	="Hays Specialist Recruitment (Australia) Pty Ltd"	20-Nov-07 10:42 AM	

+="CN47370"	"PROGRAMMED MAINTENANCE SERVICES"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Grounds maintenance services"	12-Sep-07	12-Sep-08	21648.00	="NA"	="PROGRAMMED MAINTENANCE SERVICES"	20-Nov-07 10:42 AM	

+="CN47371"	"AUTOSCAN SYSTEMS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer Equipment and Accessories"	14-Aug-07	14-Aug-08	11000.00	="NA"	="Autoscan Systems"	20-Nov-07 10:42 AM	

+="CN47372"	"Tour Hosts"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Conference centres"	21-Aug-07	30-Nov-07	145000.00	=""	="Tour Hosts Pty Ltd"	20-Nov-07 10:42 AM	

+="CN47373"	"LOOP TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="High end computer servers"	23-Aug-07	23-Aug-08	10985.08	="NA"	="Loop Technology"	20-Nov-07 10:43 AM	

+="CN47374"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	16920.31	=""	="Protiviti Pty Ltd"	20-Nov-07 10:43 AM	

+="CN47375"	"Department of Foreign Affairs and Trade"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Desktop communications software"	31-May-07	07-Aug-07	15345.00	=""	="Department of Foreign Affairs and Trade"	20-Nov-07 10:43 AM	

+="CN47377"	"Votar Partners"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Information technology consultation services"	01-Sep-07	30-Sep-07	13750.00	=""	="Votar Partners"	20-Nov-07 10:43 AM	

+="CN47378"	"MCMILLAN PRINT MANAGEMENT"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Tags"	08-Oct-07	08-Oct-08	82212.01	="NA"	="McMillan Print Group"	20-Nov-07 10:43 AM	

+="CN47379"	"Dr S A Harbison"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	10-Aug-07	10-Aug-07	12639.03	=""	="S A Harbison CB"	20-Nov-07 10:43 AM	

+="CN47380"	"Department of Finance and Admin"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Employer administered pension funds"	16-Jul-07	16-Jul-07	117391.00	=""	="DEPT OF FINANCE and  ADMIN"	20-Nov-07 10:43 AM	

+="CN47381"	"TRIPLE POINT CALIBRATIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Amplifiers"	21-Sep-07	21-Sep-08	25555.00	="NA"	="TRIPLE POINT CALIBRATIONS"	20-Nov-07 10:43 AM	

+="CN47382"	"SCIENTIFIC DEVICES P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Electrometers"	21-Sep-07	21-Sep-08	25653.00	="NA"	="Scientific Devices Australia Pty Lt"	20-Nov-07 10:44 AM	

+="CN47383"	"CORPORATE EXPRESS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Computer services"	24-Aug-07	24-Aug-07	95385.82	="NA"	="Corporate Express"	20-Nov-07 10:44 AM	

+="CN47384"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Business intelligence consulting services"	26-Jun-07	26-Jun-07	10304.91	=""	="Protiviti Pty Ltd"	20-Nov-07 10:44 AM	

+="CN47385"	"Australian Taxation Office"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	20-Nov-07	="Water or gas control evaluation services"	28-Aug-07	28-Aug-07	16720.00	=""	="Australian Taxation Office"	20-Nov-07 10:44 AM	

+="CN47386"	"    Workshop development and facilitation    "	="Austrade"	20-Nov-07	="Marketing and distribution"	09-Jul-07	17-Oct-08	44800.00	=""	="Orbis Associates"	20-Nov-07 10:46 AM	

+="CN47387"	"Advertising"	="Federal Magistrates Court"	20-Nov-07	="Advertising"	01-Oct-07	31-Oct-07	10328.27	=""	="HMA Blaze Intergrated Communications"	20-Nov-07 10:47 AM	

+="CN47388"	"    Delivery and management of IT test environment    "	="Austrade"	20-Nov-07	="Human resources services"	02-Oct-07	21-Dec-07	54000.00	=""	="Gobind and Kanchan Hira"	20-Nov-07 10:48 AM	

+="CN47389"	"    Olympics hospitality and ticket package for Beijing 2008 Olympics    "	="Austrade"	20-Nov-07	="Marketing and distribution"	26-Jun-07	29-Jun-07	354487.00	=""	="Cosport"	20-Nov-07 10:51 AM	

+="CN47376"	"    Accomodation, and room hire for the 'Australian Education International-Study in Australia'    event    "	="Austrade"	20-Nov-07	="Travel and Food and Lodging and Entertainment Services"	30-Aug-07	26-Oct-07	29995.00	=""	="Renaissance Sao Paulo Hotel"	20-Nov-07 10:55 AM	

+="CN47390"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	24225.30	=""	="Jay Manya"	20-Nov-07 10:58 AM	

+="CN47392"	"Counselling Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	12564.30	=""	="Joy Slattery Counselling Pty Ltd"	20-Nov-07 11:05 AM	

+="CN47393"	"Various Photocopier Equipment & Accessories"	="Federal Magistrates Court"	20-Nov-07	="Printer and photocopier and facsimile accessories"	01-Oct-07	31-Oct-07	36621.06	=""	="Kyocera Mita Australia Pty Ltd"	20-Nov-07 11:09 AM	

+="CN47395"	"Recover Costs Rental, Outgoings, Car Parking"	="Federal Magistrates Court"	20-Nov-07	="Commercial or industrial facility rental"	01-Oct-07	31-Oct-07	13595.53	=""	="Law Courts Ltd-United Group Services (United KFPW)"	20-Nov-07 11:15 AM	

+="CN47396"	"Vehicle Leases"	="Federal Magistrates Court"	20-Nov-07	="Vehicle rental"	01-Oct-07	31-Oct-07	81023.75	=""	="Lease Plan"	20-Nov-07 11:21 AM	

+="CN47397"	"Magazines & Subscriptions"	="Federal Magistrates Court"	20-Nov-07	="Magazines"	01-Oct-07	31-Oct-07	24311.03	=""	="Lexis Nexis"	20-Nov-07 11:26 AM	

+="CN47398"	"Embroidered badges and ceremonial accoutrements"	="Defence Materiel Organisation"	20-Nov-07	="Military uniforms"	13-Nov-07	20-Jun-08	56450.00	="ACC002/0708"	="Babylon Industries"	20-Nov-07 11:33 AM	

+="CN47403"	"Consulting Fees due to MP Consulting on Multi-Cultural Program"	="Federal Magistrates Court"	20-Nov-07	="Business and corporate management consultation services"	01-Oct-07	31-Oct-07	11000.00	=""	="MP Consulting Pty Ltd"	20-Nov-07 11:50 AM	

+="CN47409"	"Fleet Management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	27-Jan-06	26-Jan-09	20539.73	=""	="Leaseplan"	20-Nov-07 12:16 PM	

+="CN47411"	" Embroidered Insignia "	="Defence Materiel Organisation"	20-Nov-07	="Badges"	13-Nov-07	20-Jun-08	61146.27	="ACC002/0708"	="Babylon Industries"	20-Nov-07 12:35 PM	

+="CN47415"	"Fleet management and leasing services ( Ref Stnding Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	27-Jan-07	26-Jan-08	22673.90	=""	="Leaseplan"	20-Nov-07 12:36 PM	

+="CN47417"	"Internal audit services"	="Future Fund Management Agency"	20-Nov-07	="Internal audits"	15-Oct-07	31-Dec-07	12100.00	=""	="Pricewaterhouse Coopers"	20-Nov-07 12:49 PM	

+="CN47419"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	10-Nov-06	09-Nov-07	41940.10	=""	="Leaseplan"	20-Nov-07 12:52 PM	

+="CN47436"	"Testing of Translations in Eight Languages"	="Federal Magistrates Court"	20-Nov-07	="Business and corporate management consultation services"	01-Oct-07	31-Oct-07	13200.00	=""	="MyriaD Consultants"	20-Nov-07 01:27 PM	

+="CN47440"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	96326.43	=""	="National Transcription Services Pty Ltd"	20-Nov-07 01:32 PM	

+="CN47443"	"OES and ZENworks Suite Licenses and Maintenance"	="Federal Magistrates Court"	20-Nov-07	="License management software"	01-Oct-07	31-Oct-07	22453.75	=""	="Novell Pty Ltd"	20-Nov-07 01:39 PM	

+="CN47425"	"Legal Advice"	="Australian Crime Commission"	20-Nov-07	="Legal services"	24-Jul-07	24-Jul-07	20000.00	=""	="Blake Dawson Waldron"	20-Nov-07 01:41 PM	

+="CN47423"	"Contract Advice"	="Australian Crime Commission"	20-Nov-07	="Legal services"	24-Jul-07	24-Jul-07	15132.00	=""	="Australian Government Solicitor"	20-Nov-07 01:43 PM	

+="CN47445"	"Interpreting Services"	="Federal Magistrates Court"	20-Nov-07	="Interpreters"	01-Oct-07	31-Oct-07	22315.59	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	20-Nov-07 01:44 PM	

+="CN47421"	"Office Fit Out Works"	="Australian Crime Commission"	20-Nov-07	="Workstations and office packages"	24-Jul-07	24-Jul-07	14111.00	=""	="Bill the Builder"	20-Nov-07 01:44 PM	

+="CN47405"	"Supply and Installation of Loose furniture"	="Australian Crime Commission"	20-Nov-07	="Office furniture"	10-Jul-07	10-Jul-07	215606.00	=""	="CITE Office Furniture"	20-Nov-07 01:47 PM	

+="CN47418"	"PABX Service"	="Australian Crime Commission"	20-Nov-07	="Circuit switchboard equipment"	23-Jul-07	31-Mar-08	19343.59	=""	="Powertel Ltd"	20-Nov-07 01:49 PM	

+="CN47446"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-Nov-07	="Court reporting services"	01-Oct-07	31-Oct-07	17176.99	=""	="Paris Consultancy Pty Ltd"	20-Nov-07 01:50 PM	

+="CN47391"	"Temporary Contractor"	="Australian Crime Commission"	20-Nov-07	="Personnel recruitment"	13-Feb-07	16-Jul-07	31904.81	=""	="Hays Personnel"	20-Nov-07 01:52 PM	

+="CN47447"	"Temp Staff - Federal Magistrates Court Melbourne"	="Federal Magistrates Court"	20-Nov-07	="Temporary clerical or administrative assistance"	01-Oct-07	31-Oct-07	24993.13	=""	="Robert Half Australia"	20-Nov-07 01:54 PM	

+="CN47394"	"Computer Hardware"	="Australian Crime Commission"	20-Nov-07	="Computer hardware maintenance or support"	19-Jun-07	19-Jun-07	538735.00	=""	="Oxygen Business Solutions"	20-Nov-07 01:56 PM	

+="CN47448"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-Nov-07	="Transcribing services"	01-Oct-07	31-Oct-07	28709.58	=""	="Spark & Cannon Australasia Pty Ltd"	20-Nov-07 01:59 PM	

+="CN47408"	" Computer Monitors "	="Australian Crime Commission"	20-Nov-07	="Computer Equipment and Accessories"	16-Jul-07	16-Jul-07	11932.00	=""	="Commander"	20-Nov-07 01:59 PM	

+="CN47449"	"Office Refurbishment FMC Level 6 & 7 JMT Building"	="Federal Magistrates Court"	20-Nov-07	="Refurbishing services"	01-Oct-07	31-Oct-07	156387.70	=""	="TDA Interiors Australia Pty Ltd"	20-Nov-07 02:05 PM	

+="CN47450"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	20-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Oct-07	31-Oct-07	21187.50	=""	="Telstra Corporation Limited"	20-Nov-07 02:08 PM	

+="CN47451-A1"	"Provision of an Enterprise Portal Consultant"	="CRS Australia"	20-Nov-07	="Computer services"	13-Nov-07	29-Feb-08	11550.00	=""	="Supply Chain Consulting Pty Ltd"	20-Nov-07 02:12 PM	

+="CN47452"	" Magazines & Subscriptions "	="Federal Magistrates Court"	20-Nov-07	="Legal Research Services"	01-Oct-07	31-Oct-07	24838.85	=""	="Thomson Legal & Regulatory Group"	20-Nov-07 02:13 PM	

+="CN47453"	"Manufacture & Supply Furniture - FMC"	="Federal Magistrates Court"	20-Nov-07	="Furniture manufacturing services"	01-Oct-07	31-Oct-07	28952.00	=""	="UCI Projects Pty Ltd - Canberra"	20-Nov-07 02:19 PM	

+="CN47456"	"Production of Superannuation Seminar DVD and replication of 7000 DVDs for distribution."	="Australian Taxation Office"	20-Nov-07	="Video production services"	22-Aug-07	25-Nov-07	62854.55	="56.04"	="Great Southern Communications (Australia) Pty Ltd"	20-Nov-07 02:26 PM	

+="CN47457"	"Office Furniture - FMC Adelaide & JMT"	="Federal Magistrates Court"	20-Nov-07	="Office furniture"	01-Oct-07	31-Oct-07	11017.60	=""	="Workspace Commercial Furniture Pty Ltd"	20-Nov-07 02:28 PM	

+="CN47458-A1"	"Recruitment of APS4 to EL1 OOM"	="Australian Taxation Office"	20-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	21-Dec-07	213000.00	="06.042"	="DFP Recruitment Services Pty Ltd"	20-Nov-07 02:31 PM	

+="CN47468"	"RAAF Flags "	="Defence Materiel Organisation"	20-Nov-07	="Flags or accessories"	12-Nov-07	23-Apr-08	179459.50	="ACC004/0708"	="Evan Evans Pty Ltd"	20-Nov-07 03:15 PM	

+="CN47467"	"CLEANING COMPOUND, AIRCRAFT SURFACE"	="Defence Materiel Organisation"	20-Nov-07	="Compounds and mixtures"	19-Nov-07	19-Dec-08	20348.59	=""	="ECO 2000 PTY LTD"	20-Nov-07 03:25 PM	

+="CN47471"	"  CAP, UTILITY, NAVY BLUE, BASEBALL STYLE, W/LEGIONNAIRES SKIRT, COTTON/POLYESTER  "	="Defence Materiel Organisation"	20-Nov-07	="Clothing accessories"	13-Nov-07	07-Mar-08	25315.13	=""	="DESIGN HOMES AUSTRALIA PTY LTD"	20-Nov-07 03:25 PM	

+="CN47474"	"Ceremonial Shoulder Boards and Ornamental Lace"	="Defence Materiel Organisation"	20-Nov-07	="Military uniforms"	15-Oct-07	21-Mar-08	18875.92	="ACC008/0708"	="Solomon Brothers"	20-Nov-07 04:08 PM	

+="CN47476"	"Desktop PC's"	="Centrelink"	20-Nov-07	="Personal computers"	20-Nov-07	20-Feb-08	11492.80	="2004/52285"	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:13 PM	

+="CN47477-A1"	"Production, editing and hosting online video to publish information on the type of services available to small business"	="Australian Taxation Office"	20-Nov-07	="Video production services"	19-Nov-07	05-Dec-07	39025.80	=""	="Great Southern Communications (Australia) Pty Ltd"	20-Nov-07 04:14 PM	

+="CN47479"	"SEALING COMPOUND"	="Defence Materiel Organisation"	20-Nov-07	="Sealing tools"	20-Nov-07	02-Jan-08	10443.18	=""	="PPG AEROSPACE PTY. LTD."	20-Nov-07 04:23 PM	

+="CN47481"	" EXTINGUISHER, FIRE DRY CHEMICAL, 4.5KG CAPACITY, STORED PRESSURE REGULATED DISCHARGE TYPE  EXTINGUISHER, FIRE DRY CHEMICAL, 2.5 KG CAPACITY, STORED PRESSURE REGULATED DISCHARGE TYPE, CLASS A, B & E  EXTINGUISHER, FIRE DRY CHEMICAL, 1.5 KG CAPACITY, STORED PRESSURE REGULATED CHARGE TYPE     "	="Defence Materiel Organisation"	20-Nov-07	="Fire extinguishers"	20-Nov-07	23-Nov-07	22220.00	=""	="CHUBB FIRE SAFETY LTD"	20-Nov-07 04:26 PM	

+="CN47485"	"Fleet managment and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	12-Jul-07	11-Jul-09	62982.22	=""	="LeasePlan"	20-Nov-07 04:39 PM	

+="CN47473"	" Provision of Desktop PC's and related services  Work Order 1 "	="CRS Australia"	20-Nov-07	="Desktop computers"	22-May-07	30-May-07	46233.00	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:42 PM	

+="CN47489"	" Provision of Desktop PC's and related services  Work Order No. 2 "	="CRS Australia"	20-Nov-07	="Desktop computers"	26-Jun-07	30-Sep-07	406580.90	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:47 PM	

+="CN47491"	" Provision of Desktop PC's and related services  Work Order No. 3 "	="CRS Australia"	20-Nov-07	="Desktop computers"	02-Oct-07	29-Oct-07	27064.16	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:51 PM	

+="CN47488"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	05-Apr-06	04-Apr-08	45212.00	=""	="LeasePlan"	20-Nov-07 04:52 PM	

+="CN47493"	" Provision of Desktop PC's and related services  Work Order No. 4 "	="CRS Australia"	20-Nov-07	="Desktop computers"	31-Oct-07	28-Nov-07	382379.80	=""	="Acer Computer Australia Pty Ltd"	20-Nov-07 04:56 PM	

+="CN47494"	"Protective Guard Services, Scanning and X-ray"	="Australian Electoral Commission"	20-Nov-07	="Security guard services"	12-Nov-07	28-Nov-07	64807.60	=""	="SNP Security"	20-Nov-07 04:57 PM	

+="CN47490"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	20-Nov-07	="Vehicle leasing"	09-Feb-07	08-Feb-09	44788.00	=""	="Lease Plan"	20-Nov-07 04:57 PM	

+="CN47495"	"Metal Buckles raised against standing offer NCC/284/01"	="Defence Materiel Organisation"	20-Nov-07	="Buckles"	20-Nov-07	18-Apr-08	310376.00	="J8040"	="Cashs Australia Pty Ltd"	20-Nov-07 05:07 PM	

+="CN47498"	" Purchase of DPDU coats and Trousers "	="Defence Materiel Organisation"	20-Nov-07	="Clothing"	17-Aug-07	15-Dec-07	938330.80	=""	="Australian Defence Apparel Pty Ltd"	20-Nov-07 06:18 PM	

+="CN47280"	" Annual Maintenance for gas chromotographs "	="Australian Federal Police"	20-Nov-07	="Laboratory and scientific equipment"	27-Sep-07	30-Jun-08	11370.00	="RFT 40-2006"	="Agilent Technologies Australia Pty Ltd"	20-Nov-07 08:00 PM	

+="CN47500"	"Subscription for provision of research services"	="Australian Federal Police"	20-Nov-07	="Computer Equipment and Accessories"	01-Jul-07	30-Jun-08	94160.00	=""	="Gartner Australasia Pty Ltd"	20-Nov-07 08:09 PM	

+="CN47501"	"Engagement of speaker for law enforcement conference"	="Australian Federal Police"	20-Nov-07	="Law enforcement"	18-Jul-07	30-Nov-07	24500.00	=""	="ICIM Speakers and Entertainers"	20-Nov-07 08:45 PM	

+="CN47503"	" Relocation of Office equipment for the Australian Institute of Police Management "	="Australian Federal Police"	20-Nov-07	="Relocation services"	01-Jul-07	31-Jul-07	48690.00	=""	="Kent Moving and Storage"	20-Nov-07 09:02 PM	

+="CN47505"	" provision of data and electrical cabling "	="Australian Federal Police"	20-Nov-07	="Computer Equipment and Accessories"	15-Jun-07	31-Aug-07	50919.00	=""	="C & W Electrical Pty Ltd"	20-Nov-07 09:23 PM	

+="CN47506-A1"	" National Registration and Inquiry System which allows for emergency and disaster management "	="Australian Federal Police"	20-Nov-07	="Call management systems or accessories"	01-Jan-07	30-Jun-12	289721.88	=""	="Australian Red Cross"	20-Nov-07 09:35 PM	

+="CN47508"	"Forensic Laboratory equipment maintenance agreement"	="Australian Federal Police"	20-Nov-07	="Laboratory and Measuring and Observing and Testing Equipment"	29-Jul-07	28-Jul-08	31284.00	=""	="Applied Biosystems"	20-Nov-07 09:59 PM	

+="CN47509"	"construction project management services"	="Australian Federal Police"	20-Nov-07	="Project management"	23-Jul-07	23-Feb-08	60000.00	=""	="Kramer Group (Vanuatu) Ltd"	20-Nov-07 10:18 PM	

+="CN47513"	" Lease of a forklift "	="Australian Federal Police"	20-Nov-07	="Material handling machinery and equipment"	03-Dec-07	30-Dec-12	40308.85	=""	="Crowne Equipment Pty Ltd"	20-Nov-07 10:58 PM	

+="CN47514"	"Information services business analysis activities for AFP applications and systems"	="Australian Federal Police"	20-Nov-07	="Computer services"	16-Jul-07	30-Nov-07	178024.00	=""	="Compas Pty Ltd"	20-Nov-07 11:19 PM	

+="CN47515"	"Information Services - application development support services"	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Jul-05	30-Jun-08	594448.00	=""	="Datavantage Australia Pty Ltd"	20-Nov-07 11:29 PM	

+="CN47516-A2"	" Provision of services relating to the delivery of information systems, fault diagnosis, enhancements and performance improvement "	="Australian Federal Police"	20-Nov-07	="Computer services"	13-Aug-07	01-Aug-08	159486.80	=""	="Finite Recruitment Pty. Ltd."	20-Nov-07 11:34 PM	

+="CN47517-A3"	" IT Services - High level Unix Support "	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Jul-07	30-Jun-09	560131.00	=""	="I&TC Solutions Pty Ltd"	20-Nov-07 11:42 PM	

+="CN47518-A2"	"Services relating to Project Management services for information services applications development projects"	="Australian Federal Police"	20-Nov-07	="Computer services"	01-Aug-07	30-Sep-08	297827.20	=""	="Innovative Business Computing Pty Ltd"	20-Nov-07 11:50 PM	

+="CN47519-A1"	"Web publishing of content on internal and external AFP websites"	="Australian Federal Police"	20-Nov-07	="Engineering and Research and Technology Based Services"	13-Aug-07	28-Feb-09	194832.00	=""	="Peoplebank Australia Limited"	20-Nov-07 11:54 PM	

+="CN47520-A1"	" SHIPPING AND STORAGE CONTAINERS TO HOLD STEYR RIFLES "	="Defence Materiel Organisation"	21-Nov-07	="Die cut corrugated shipping cartons with separate lids"	19-Nov-07	03-Mar-08	142010.50	=""	="TRIMCAST PTY LTD"	21-Nov-07 06:54 AM	

+="CN47522-A1"	"SHIPPING AND STORAGE CONTAINERS TO STEYR RIFLES"	="Defence Materiel Organisation"	21-Nov-07	="Die cut corrugated shipping cartons with separate lids"	19-Nov-07	03-Mar-08	35502.50	=""	="TRIMCAST PTY LTD"	21-Nov-07 07:11 AM	

+="CN47521"	"Repair of aircraft parts"	="Defence Materiel Organisation"	21-Nov-07	="Aircraft"	01-Nov-07	01-Dec-07	92400.00	=""	="Rosebank Engineering Pty Ltd"	21-Nov-07 07:59 AM	

+="CN47459"	" 1. Petroleum Base Hydraulic Fluid 9150 00-223-4134 OM-15 (ROYCO 756) IN 1 US GAL can Qty 96  2. Fire Resistant Hydraulic Fluid 9150 01-548-6612 Royco 782 IN 1 US QT can Qty 1440     "	="Defence Materiel Organisation"	21-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	18-Dec-07	15014.21	=""	="AS Harrison & CO Pty Ltd"	21-Nov-07 08:04 AM	

+="CN47523"	"Repair of aircraft parts"	="Defence Materiel Organisation"	21-Nov-07	="Aircraft"	20-Nov-07	27-Dec-07	106063.10	=""	="Rosebank Engineering Pty Ltd"	21-Nov-07 08:09 AM	

+="CN47524"	" 9150 66-035-7879 Petroleum Base Hydraulic Fluid  OM-33 in 200L   12 Drums    "	="Defence Materiel Organisation"	21-Nov-07	="Lubricants and oils and greases and anti corrosives"	20-Nov-07	27-Nov-07	11996.03	=""	="Fuchs Lubricants"	21-Nov-07 08:16 AM	

+="CN47525"	"Insignia, Rank, Officer various"	="Defence Materiel Organisation"	21-Nov-07	="Badges"	14-Nov-07	21-Feb-08	65252.88	="ACC012/0708"	="Intandem"	21-Nov-07 08:16 AM	

+="CN47528"	"Tri Service Luggage"	="Defence Materiel Organisation"	21-Nov-07	="Luggage"	11-Oct-07	18-Jan-08	149660.28	="ACC013/0708"	="Larosa Leathergoods Pty Ltd"	21-Nov-07 09:05 AM	

+="CN47534"	"Internet Connectivity"	="Department of the Environment and Water Resources"	21-Nov-07	="Internet services"	14-Jun-00	30-Jun-07	660000.00	=""	="Telstra Corporation Ltd"	21-Nov-07 09:09 AM	

+="CN47535"	"ICT Contractor Services by Specified Personnel"	="Child Support Agency"	21-Nov-07	="Human resources services"	26-Nov-07	25-Feb-08	60060.00	=""	="Finite Recruitment Pty Ltd"	21-Nov-07 09:11 AM	

+="CN47536"	"Stevedoring Services"	="Department of the Environment and Water Resources"	21-Nov-07	="Stevedoring services"	01-Jul-05	30-Jun-10	600000.00	=""	="Capital Stevedoring"	21-Nov-07 09:12 AM	

+="CN47537-A1"	"Valuation of Departmental Assets"	="Department of the Environment and Water Resources"	21-Nov-07	="Management and Business Professionals and Administrative Services"	01-Sep-04	31-Aug-09	4172369.40	=""	="PURDON & FEATHERSTONE PTY LTD"	21-Nov-07 09:16 AM	

+="CN47538"	"ICT Contract Services by Specified Personnel"	="Child Support Agency"	21-Nov-07	="Human resources services"	07-Dec-07	06-Jun-08	171600.00	=""	="Tarakan Consulting Pty Ltd"	21-Nov-07 09:18 AM	

+="CN47540"	"Gold Plated Buckles raised against Metal Standing Offer NCC/284/01"	="Defence Materiel Organisation"	21-Nov-07	="Buckles"	21-Nov-07	15-Jun-08	211508.00	="G6800"	="Cash's Australia Pty Ltd"	21-Nov-07 09:22 AM	

+="CN47546"	"  BERET, MAN'S VARIOUS COLOURS  "	="Defence Materiel Organisation"	21-Nov-07	="Clothing accessories"	13-Nov-07	30-Apr-08	224507.80	=""	="MOUNTCASTLE PTY LTD"	21-Nov-07 09:32 AM	

+="CN47548-A2"	"Provision of stationery supplies and printing, storage and distribution of promotional items and publications."	="CRS Australia"	21-Nov-07	="Stationery"	11-Nov-04	31-Mar-10	7468886.04	="CRS0504"	="Corporate Express"	21-Nov-07 09:33 AM	

+="CN47549"	"Removal and Storage"	="Department of the Environment and Water Resources"	21-Nov-07	="Relocation services"	10-Oct-05	30-Sep-10	365000.00	=""	="Grace Removals Pty Ltd"	21-Nov-07 09:37 AM	

+="CN47550"	"Design Facilitation & Information Design Services"	="Australian Taxation Office"	21-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Jan-08	62000.00	="05.164"	="Olivia Sainsbury Consulting Pty Ltd"	21-Nov-07 09:39 AM	

+="CN47553"	"Study in Australia Communications and Advertising"	="Department of Education, Science and Training"	21-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	79982.00	="PRN16136"	="INSIDE STORY KNOWLEDGE MNGT P/L"	21-Nov-07 09:48 AM	

+="CN47412"	"Repair of Blackhawk Hoist"	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	20-Nov-07	22-Nov-07	49426.07	=""	="Sikorsky Aircraft Australia Ltd"	21-Nov-07 09:50 AM	

+="CN47554"	"Commonwealth Scholarship and Fellowship Plan Promotion and Nomination Process"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	03-Sep-07	30-Jun-10	90812.00	="PRN14847"	="IDP Education Australia Ltd"	21-Nov-07 09:51 AM	

+="CN47555"	"Venue Hire Trondheim"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Mar-07	30-Sep-07	10013.54	="PRN15625"	="RICA NIDELVEN HOTEL"	21-Nov-07 09:51 AM	

+="CN47558"	"Army Lanyards and Ornamental Lace"	="Defence Materiel Organisation"	21-Nov-07	="Military uniforms"	19-Nov-07	09-Jun-08	99206.68	="ACC015/0708"	="P Blashki and Sons"	21-Nov-07 10:08 AM	

+="CN47559"	"Examination of 2006 and 2007 financial statements"	="Department of Education, Science and Training"	21-Nov-07	="Financial and Insurance Services"	21-Sep-07	19-Oct-07	27500.00	="PRN16975"	="DELOITTE GROWTH SOLUTIONS PTY LTD"	21-Nov-07 10:12 AM	

+="CN47560"	"Two Temporary APS6's, Teacher Status Team"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	07-May-07	10-Aug-07	10219.02	="PRN14976"	="SELECT APPOINTMENTS"	21-Nov-07 10:12 AM	

+="CN47561"	"Implementation of a Revised Employee Performance Management System"	="Child Support Agency"	21-Nov-07	="Business administration services"	19-Nov-07	30-Jul-08	282223.50	="08CSA029"	="People and Strategy  (ACT) Pty Ltd"	21-Nov-07 10:19 AM	

+="CN47562"	"Tape Library support and maintenance cover."	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	01-Jul-07	30-Jun-08	96120.00	="PRN16665"	="SUN MICROSYSTEMS DATA MANAGE/GROUP"	21-Nov-07 10:19 AM	

+="CN47563"	"Business Intelligence Consulting"	="Department of Education, Science and Training"	21-Nov-07	="Business administration services"	01-Jul-07	30-Jun-08	46000.00	="PRN16911"	="SOLID QUALITY LEARNING PTY LTD"	21-Nov-07 10:19 AM	

+="CN47564"	"Mail Services November 2005"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	01-Jul-07	30-Jun-08	57000.00	="PRN16764"	="AUSTRALIA POST"	21-Nov-07 10:19 AM	

+="CN47565"	"Mail Services - Aust Post Oct Account"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	10-Sep-07	30-Nov-07	23500.00	="PRN16864"	="AUSTRALIA POST - STRAWBERRY HILLS"	21-Nov-07 10:20 AM	

+="CN47566"	"Courier Services - Wk ending 24 Aug"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	04-Sep-07	30-Nov-07	12056.22	="PRN16811"	="AUSTRALIAN AIR EXPRESS PTY LTD"	21-Nov-07 10:20 AM	

+="CN47567"	"i-Mate SP JAS Smartphone black"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10890.00	="PRN17159"	="TELEDESIGN AUSTRALIA"	21-Nov-07 10:20 AM	

+="CN47568"	"Courier Services - Wk ending 17 Aug"	="Department of Education, Science and Training"	21-Nov-07	="Mail and cargo transport"	03-Sep-07	30-Nov-07	10594.90	="PRN16771"	="AUSTRALIAN AIR EXPRESS PTY LTD"	21-Nov-07 10:20 AM	

+="CN47569"	"Budget Initiatives Stakeholder Forum - Sydney, 4-5"	="Department of Education, Science and Training"	21-Nov-07	="Travel and Food and Lodging and Entertainment Services"	13-Jun-07	30-Oct-07	12993.00	="PRN16899"	="Rockdale Hotel Pty Ltd"	21-Nov-07 10:23 AM	

+="CN47570"	"Evaluation of the Success for Boys Programme"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	20-Sep-07	30-Jun-08	191000.00	="PRN13955"	="QUANTUM CONSULTING AUSTRALIA"	21-Nov-07 10:24 AM	

+="CN47571"	"Performance-based pay research and modelling"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	10-Sep-07	28-Feb-08	438374.00	="PRN14845"	="GERARD DANIELS AUSTRALIA PTY LTD"	21-Nov-07 10:24 AM	

+="CN47572"	"PMs Awards 2007 - Photos"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	10-Sep-07	31-Dec-07	19000.00	="PRN15785"	="Photocall Image Management  P/L"	21-Nov-07 10:25 AM	

+="CN47573"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2369740.00	="PRN15636"	="UNIVERSITY OF WOLLONGONG"	21-Nov-07 10:25 AM	

+="CN47574"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	1417020.00	="PRN15636"	="THE AUSTRALIAN NATIONAL UNIVERSITY"	21-Nov-07 10:25 AM	

+="CN47575"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2509650.00	="PRN15636"	="THE UNIVERSITY OF NEW ENGLAND"	21-Nov-07 10:25 AM	

+="CN47576"	"The Australian Government Summer Schools for Teach"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	07-Sep-07	30-May-08	2288150.00	="PRN15636"	="DEAKIN UNIVERSITY"	21-Nov-07 10:25 AM	

+="CN47578"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	31-Mar-06	30-Mar-08	30547.00	=""	="LEASEPLAN"	21-Nov-07 10:30 AM	

+="CN47579"	"Shoulder Boards for Royal Aust Navy and Ornamental Lace"	="Defence Materiel Organisation"	21-Nov-07	="Military uniforms"	05-Nov-07	21-Mar-08	101794.70	="ACC017/0708"	="Solomon Brothers"	21-Nov-07 10:40 AM	

+="CN47580"	"IBISWorld subscription"	="Department of Education, Science and Training"	21-Nov-07	="Organisations and Clubs"	10-Aug-07	09-Aug-08	20680.00	="PRN16773"	="IBISWORLD Business Information"	21-Nov-07 10:43 AM	

+="CN47582"	"User Satisfaction - Aust Skills Vouchers Programme"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Sep-07	16-Oct-07	58511.00	="PRN16504"	="NEW FOCUS PTY LTD"	21-Nov-07 10:45 AM	

+="CN47581"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	15-Jun-06	14-Jun-08	42358.00	=""	="LEASEPLAN"	21-Nov-07 10:45 AM	

+="CN47583"	"Analysis of Training Package Design"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	20-Aug-07	26-Oct-07	71060.00	="PRN15992"	="BMA CONSULTING PTY LTD"	21-Nov-07 10:45 AM	

+="CN47584"	"Analysis of Qualification Packaging Rules"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	27-Aug-07	26-Oct-07	39050.00	="PRN15994"	="PURPLE INFINITY"	21-Nov-07 10:45 AM	

+="CN47585"	"Analysis of the Construction of Units of Competenc"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	27-Aug-07	27-Oct-07	50930.00	="PRN15997"	="PERFORMANCE GROWTH PTY LTD"	21-Nov-07 10:46 AM	

+="CN47586"	"AQTF 2007 Research and Advice"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	27-Aug-07	30-Jun-08	49500.00	="PRN16521"	="LISTA"	21-Nov-07 10:46 AM	

+="CN47587"	"Staff support - International Science and Educatio"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	11-Sep-07	28-Sep-07	25000.00	="PRN16882"	="CATALYST RECRUITMENT SYSTEMS"	21-Nov-07 10:46 AM	

+="CN47588"	"Ranking Research Outlets for the Research Quality"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	21-Sep-07	31-Dec-07	81888.40	="PRN16762"	="Academy of Social Science Australia"	21-Nov-07 10:52 AM	

+="CN47589"	"Classifying Australian PhD Theses by RFCD Codes"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	25-Sep-07	30-Jun-08	68973.30	="PRN15536"	="RMIT"	21-Nov-07 10:52 AM	

+="CN47590"	"Assessing Authorities Conference Melbourne 25-26 O"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Nov-07	20000.00	="PRN17188"	="PACIFIC HOTEL MARKET STREET PTY LTD"	21-Nov-07 10:53 AM	

+="CN47591"	"Country Education Profiles (CEP) Online Rewrites"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	16-Oct-07	30-Jun-08	32670.00	="PRN17249"	="VISION AUSTRALIA"	21-Nov-07 10:53 AM	

+="CN47592"	"Omega Contact 2 Oct 2007 - 31 Jan 2008"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	02-Oct-07	31-Jan-08	26260.50	="PRN16966"	="Omega Personnel Pty Ltd"	21-Nov-07 10:53 AM	

+="CN47595"	"IT system development - Literacy and Numeracy Tuit"	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	26-Sep-07	26-Sep-08	1743398.20	="PRN15964"	="CURRICULUM CORPORATION"	21-Nov-07 10:55 AM	

+="CN47596"	"Student Aptitude Test for Tertiary Admission"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	24-Oct-07	31-Oct-08	2596000.00	="PRN15204"	="AUST COUNCIL FOR EDUC RESEARCH"	21-Nov-07 10:56 AM	

+="CN47597"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	26-Sep-07	30-May-08	7000000.00	="PRN15886"	="AUSTRALIAN COLLEGE OF EDUCATORS"	21-Nov-07 10:56 AM	

+="CN47598"	"Riverbed Steelhead 300s and Support"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	17-Oct-07	30-Jun-08	38202.00	="PRN17410"	="Dataflex Pty Ltd"	21-Nov-07 10:57 AM	

+="CN47599"	"Foxtel Sky News TV service"	="Department of Education, Science and Training"	21-Nov-07	="Computer services"	15-Oct-07	30-Jun-09	16000.00	="PRN17209"	="FOXTEL MANAGEMENT PTY LTD"	21-Nov-07 10:58 AM	

+="CN47600"	"EL2 Recruitment - 4 roles"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	27-Aug-07	30-Jun-08	42185.00	="PRN17394"	="AMBIT Recruitment Group"	21-Nov-07 10:58 AM	

+="CN47601"	"Email Message Classification"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	04-Oct-07	30-Jun-08	13073.71	="PRN17195"	="Dataflex Pty Ltd"	21-Nov-07 10:58 AM	

+="CN47602"	"Dual Port PCI Express Cards"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	05-Oct-07	30-Jun-08	10125.00	="PRN17262"	="INFRONT SYSTEMS PTY LTD"	21-Nov-07 10:58 AM	

+="CN47603"	"K2 Workflow Software"	="Department of Education, Science and Training"	21-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	30-Jun-08	85000.00	="PRN17200"	="Dimension Data Australia Pty Ltd"	21-Nov-07 10:58 AM	

+="CN47594"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	21-Nov-07	="Vehicle leasing"	30-May-07	29-May-08	31108.00	=""	="Leaseplan"	21-Nov-07 11:01 AM	

+="CN47605"	"IT Training Vouchers for West Australian State Off"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Oct-07	01-May-08	14050.00	="PRN16702"	="WIZARD COMPUTER TRAINING  PTY LTD"	21-Nov-07 11:03 AM	

+="CN47607"	"Study in Australia - Refresh of Visual Identity"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	01-Jul-07	30-Jun-08	450000.00	="PRN14837"	="AJF PARTNERSHIP PTY LTD"	21-Nov-07 11:04 AM	

+="CN47593"	"Coupling & Cable Assembly"	="Defence Materiel Organisation"	21-Nov-07	="Parachute equipment"	16-Nov-07	06-Mar-08	153202.50	=""	="Paratech Pty Ltd"	21-Nov-07 11:05 AM	

+="CN47610"	"Australian Apprenticeships Access Programme and Gr"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	13-Sep-07	08-Nov-07	258129.00	="PRN14613"	="KPMG"	21-Nov-07 11:10 AM	

+="CN47612"	"Office furniture"	="Department of Education, Science and Training"	21-Nov-07	="Office machines and their supplies and accessories"	04-Oct-07	30-Nov-07	13262.70	="PRN16914"	="DESIGNCRAFT"	21-Nov-07 11:10 AM	

+="CN47613"	"National Tour 2008-2011"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	09-Oct-07	30-Nov-11	341000.00	="PRN14325"	="SHAC PTY LTD"	21-Nov-07 11:11 AM	

+="CN47614"	"Develop of impact projection guidelines for CRCs"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Oct-07	12-Nov-07	27500.00	="PRN17230"	="DELOITTE"	21-Nov-07 11:11 AM	

+="CN47615"	"Exits from the Trades"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	15-Oct-07	31-Mar-08	145162.59	="PRN14979"	="HUNTLEY CONSULTING GROUP PTY LTD"	21-Nov-07 11:12 AM	

+="CN47617"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Jun-08	16367.56	="PRN17129"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	

+="CN47618"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	11-Oct-07	30-Jun-08	11789.25	="PRN17128"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	

+="CN47619"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	30-Jun-08	11927.41	="PRN17045"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:15 AM	

+="CN47620"	"Fit out DEST Sydney"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	24-Oct-07	22-Feb-08	68080.00	="PRN17554"	="CORPDES PTY LTD"	21-Nov-07 11:16 AM	

+="CN47623"	"2008 AGNAQS awards ceremony at Great Hall, Parliam"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	09-Aug-07	14-Mar-08	10500.00	="PRN16520"	="HYATT HOTEL CANBERRA"	21-Nov-07 11:19 AM	

+="CN47624"	"DFCTC Program Probity Adviser"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	22-Sep-07	31-Dec-07	24999.00	="PRN17122"	="SPARKE HELMORE LAWYERS"	21-Nov-07 11:20 AM	

+="CN47629"	"Provision for developing the Management Accounting Team"	="Comsuper"	21-Nov-07	="Organisational structure consultation"	04-Nov-07	12-Dec-07	57400.00	=""	="Analytics Group"	21-Nov-07 11:28 AM	

+="CN47635"	"Risk Profiling Review of Profiles and Predictors"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	26-Oct-07	01-Jan-08	49320.00	="PRN16454"	="TAYLOR FRY CONSULTING ACTUARIES"	21-Nov-07 11:40 AM	

+="CN47636"	"AEI-NOOSR Professional Development Workshops Octob"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	30-Jun-08	10210.53	="PRN17130"	="CLIFTON OPERATIONS PTY LIMITED"	21-Nov-07 11:41 AM	

+="CN47637"	"Desk-based research and review of design principle"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	20-Aug-07	31-Aug-07	35200.00	="PRN16152"	="AUST COUNCIL FOR EDUC RESEARCH"	21-Nov-07 11:43 AM	

+="CN47634"	"CABLE POWER ELECTRICAL G5862 AND G5492 FOR 1000M AND 200M"	="Defence Materiel Organisation"	21-Nov-07	="Power cable"	16-Nov-07	14-Dec-07	61985.00	=""	="Euro-Tech Cables Pty Ltd"	21-Nov-07 11:45 AM	

+="CN47663"	"FITOUT CONSTRUCTION FOR IPSWICH CUSTOMER SERVICE CENTRE REFIT"	="Centrelink"	21-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Nov-07	09-Dec-07	276980.00	=""	="PREMIS SOLUTIONS"	21-Nov-07 12:51 PM	

+="CN47673"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	06-Sep-07	31-Oct-07	25000.00	="PRN16718"	="HANSEN and SEARSON MANAGEMENT SERVICE"	21-Nov-07 01:28 PM	

+="CN47674"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="ALZAHARAA CHILD CARE CENTRE"	21-Nov-07 01:29 PM	

+="CN47675"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="Journey Management Pty Ltd"	21-Nov-07 01:30 PM	

+="CN47676"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	21670.00	="PRN12579"	="CLB TRAINING and DEVELOPMENT PTY LTD"	21-Nov-07 01:30 PM	

+="CN47677"	"Financial Questionnaire Verification Exercise 2007 (2006 data)"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Oct-07	09-Mar-08	107800.00	="PRN16067"	="37 MARY STREET PTY LTD and A.C.N. 074"	21-Nov-07 01:31 PM	

+="CN47678"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="MP PERSONNEL CONSULTING"	21-Nov-07 01:32 PM	

+="CN47679"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11550.00	="PRN12579"	="WESTGATE COMMUNITY INITIATIVES"	21-Nov-07 01:32 PM	

+="CN47680"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="S T A T Security Training and"	21-Nov-07 01:32 PM	

+="CN47681"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10670.00	="PRN12579"	="KERRY and BRIAN DAVID NEALE"	21-Nov-07 01:32 PM	

+="CN47682"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	08-Oct-07	14-Dec-07	40000.00	="PRN17225"	="HANSEN and SEARSON MANAGEMENT SERVICE"	21-Nov-07 01:33 PM	

+="CN47683"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	05-Sep-07	08-Nov-07	23595.00	="PRN16936"	="SICO SOUTH PACIFIC LIMITED"	21-Nov-07 01:33 PM	

+="CN47684"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	05-Sep-07	22-Nov-07	26257.00	="PRN16935"	="VIBE FURNITURE"	21-Nov-07 01:33 PM	

+="CN47685"	"SAP Enterprise Data Warehousing"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	14-Sep-07	14-Dec-07	10345.50	="PRN17642"	="SAP Australia Pty Ltd"	21-Nov-07 01:33 PM	

+="CN47686"	"DEST Exit Survey Pilot"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	04-Oct-07	31-Dec-07	17000.00	="PRN17140"	="RIGHT MANAGEMENT"	21-Nov-07 01:35 PM	

+="CN47687"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="L and M Gelb Consulting Services Pty"	21-Nov-07 01:37 PM	

+="CN47688"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="TAFE NSW SYDNEY INSTITUTE"	21-Nov-07 01:38 PM	

+="CN47689"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12430.00	="PRN12579"	="Manly Warringah Community College"	21-Nov-07 01:38 PM	

+="CN47690"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12210.00	="PRN12579"	="New England and North West Business"	21-Nov-07 01:38 PM	

+="CN47691"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="Department of Employment and"	21-Nov-07 01:38 PM	

+="CN47692"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11330.00	="PRN12579"	="COSSETTINI, NARELLE MAY"	21-Nov-07 01:38 PM	

+="CN47693"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11110.00	="PRN12579"	="Capra Ryan Online Learning Pty Ltd"	21-Nov-07 01:38 PM	

+="CN47694"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="AUSTRALIAN TRAINING COMPANY"	21-Nov-07 01:38 PM	

+="CN47695"	"Accommodation for Marketing Conference  - Rialto"	="Department of Education, Science and Training"	21-Nov-07	="Hotels and lodging and meeting facilities"	01-Aug-07	31-Dec-07	60495.00	="PRN17059"	="RIALTO HOTEL ON COLLINS"	21-Nov-07 01:38 PM	

+="CN47696"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="Taree Adult Education Incorporated"	21-Nov-07 01:39 PM	

+="CN47697"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="SMART CITY VOCATIONAL COLLEGE PTY."	21-Nov-07 01:39 PM	

+="CN47698"	"Enhanced Training Packages - Bringing it all toget"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	18-Oct-07	09-Nov-07	26000.00	="PRN17112"	="Peter Noonan"	21-Nov-07 01:43 PM	

+="CN47699"	"Forensic Accounting Services"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	30-Nov-07	22000.00	="PRN16374"	="DELOITTE"	21-Nov-07 01:43 PM	

+="CN47700"	"Due Diligence Audit - Information Technology"	="Department of Education, Science and Training"	21-Nov-07	="Accounting and auditing"	09-Oct-07	29-Feb-08	20000.00	="PRN16922"	="ACUMEN ALLIANCE"	21-Nov-07 01:47 PM	

+="CN47702"	"Supply of Lateral file pockets"	="Department of Education, Science and Training"	21-Nov-07	="Building and Construction and Maintenance Services"	11-Oct-07	30-Jun-08	12787.50	="PRN17349"	="PLANEX SALES PTY LTD"	21-Nov-07 01:49 PM	

+="CN47703"	"SES Office Furniture"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	18-Sep-07	03-Mar-08	12122.00	="PRN17250"	="DESIGN CRAFT FURNITURE PTY LTD"	21-Nov-07 01:49 PM	

+="CN47704"	"Supply and install workstations at 137 Harrington"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	17-Sep-07	28-Dec-07	36000.00	="PRN17270"	="Schiavello Commercial Interiors"	21-Nov-07 01:49 PM	

+="CN47706"	"16 Mort L1,2,4 Lift lobby painting"	="Department of Education, Science and Training"	21-Nov-07	="Building and Construction and Maintenance Services"	25-Oct-07	30-Jun-08	10864.70	="PRN17418"	="CONSTRUCTION CONTROL INTERIORS P/L"	21-Nov-07 01:49 PM	

+="CN47707"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	21-Nov-07	="General building construction"	31-Oct-07	30-Jun-08	23595.00	="PRN16933"	="SICO SOUTH PACIFIC LIMITED"	21-Nov-07 01:49 PM	

+="CN47708"	"Protective Security Risk Review 2007"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	03-Oct-07	29-Feb-08	48895.00	="PRN16965"	="SINCLAIR KNIGHT MERZ PTY LTD"	21-Nov-07 01:49 PM	

+="CN47709"	"Australia and New Zealand School of Government (AN"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	31-Oct-07	30-Jun-08	24530.00	="PRN17427"	="AUSTRALIA and NEW ZEALAND SCHOOL"	21-Nov-07 01:50 PM	

+="CN47710"	"SES Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	26-Oct-07	18-Jan-08	30000.00	="PRN17491"	="HANSON, SEARSON, FORD EXECUTIVE"	21-Nov-07 01:50 PM	

+="CN47711"	"Removals employee"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	30-Oct-07	30-Jun-08	10340.00	="PRN17586"	="Wridgways Ltd"	21-Nov-07 01:50 PM	

+="CN47713"	"Impact Learning and Development 2007 Graduates"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	12600.00	="PRN16551"	="IMPACT LEARNING AND DEVELOPMENT"	21-Nov-07 01:50 PM	

+="CN47717"	"CAA Conference St Kilda"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	30-Jun-08	10000.00	="PRN16946"	="NOVOTEL ST KILDA"	21-Nov-07 01:58 PM	

+="CN47719"	"Recruitment Services"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	10-Sep-07	14-Sep-07	10120.00	="PRN16889"	="HAYS PERSONNEL SERVICES"	21-Nov-07 01:58 PM	

+="CN47701"	"FOR THE REPAIR/COMPLETE OVERHAUL OF BLACK HAWK HELICOPTER DISPLACEMENT GYROSCOPE"	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	21-Nov-07	31-Dec-12	10344.40	=""	="FLIGHT DATA SYSTEMS PTY LTD"	21-Nov-07 01:59 PM	

+="CN47725-A1"	"Refurbishment of Lakehaven CSC."	="Centrelink"	21-Nov-07	="Building construction management"	12-Sep-07	20-Nov-07	76795.01	=""	="David J Smith"	21-Nov-07 02:29 PM	

+="CN47732"	" FOR THE REPAIR & COMPLETE OVERHAUL OF QTY 1 BLACK HAWK HELICOPTER DISPLACEMENT GYROSCOPE. "	="Defence Materiel Organisation"	21-Nov-07	="Military rotary wing aircraft"	21-Nov-07	31-Dec-08	10344.40	=""	="FLIGHT DATA SYSTEMS PTY LTD"	21-Nov-07 02:45 PM	

+="CN47740-A2"	"Security Services"	="Department of the Prime Minister and Cabinet"	21-Nov-07	="Security guard services"	01-Oct-07	01-Feb-12	299677.00	=""	="Sydney Night Patrol & Inquiry Co P/L"	21-Nov-07 03:10 PM	

+="CN47750"	"Copywriting and journalistic services for CAA"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	10-Sep-07	20-Jun-08	29920.00	="PRN16961"	="WORDS AT WORK EDITORIAL SERVICES"	21-Nov-07 04:12 PM	

+="CN47751"	"Travel and Logistics for IHEAC Conference"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	30-Nov-07	24700.00	="PRN16770"	="NYE COMMUNICATIONS"	21-Nov-07 04:13 PM	

+="CN47752"	"Careers Advice Australia Conference and Accommodatio"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	21-Aug-07	28-Sep-07	46000.00	="PRN16148"	="RENDEZVOUS OBSERVATION CITY HOTEL"	21-Nov-07 04:16 PM	

+="CN47753"	"State Conference Venue and Facilities 2007"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	09-Aug-07	30-Nov-07	55000.00	="PRN15666"	="RAFFERTY'S RESORT OPERATIONS TRUST"	21-Nov-07 04:17 PM	

+="CN47754"	"Venue hire for Ministers Awards for Excellence Gal"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	25-Jun-07	30-Jun-08	42280.60	="PRN16707"	="SPOTLESS SERVICES LIMITED"	21-Nov-07 04:19 PM	

+="CN47755"	"Mid Term Review of the 2005 - 2008 Commonweath Sta"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Nov-07	1012000.00	="PRN15979"	="THE BOSTON CONSULTING GROUP P/L"	21-Nov-07 04:20 PM	

+="CN47756"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="TAFE NSW - WESTERN SYDNEY INSTITUDE"	21-Nov-07 04:20 PM	

+="CN47757"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13200.00	="PRN12579"	="TAFE NSW NORTH COAST INSTITUTE"	21-Nov-07 04:20 PM	

+="CN47758"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	19140.00	="PRN12579"	="STRATEGIC TRAINING AND EMPLOYMENT"	21-Nov-07 04:20 PM	

+="CN47759"	"Design Element for the AQTF 2007 Excellence Criter"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Sep-07	31-Dec-07	28776.00	="PRN16318"	="THE SCHOOL OF THOUGHT"	21-Nov-07 04:20 PM	

+="CN47760"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="HUNTER INSTITUTE OF TECHNOLOGY"	21-Nov-07 04:20 PM	

+="CN47761"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10120.00	="PRN12579"	="SERVICE TO YOUTH COUNCIL INC"	21-Nov-07 04:20 PM	

+="CN47762"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="PENRITH SKILLS FOR JOBS LTD"	21-Nov-07 04:20 PM	

+="CN47763"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12870.00	="PRN12579"	="Anglicare Tasmania Pty Ltd"	21-Nov-07 04:20 PM	

+="CN47764"	"Review of Governance Arrangements of Industry Skil"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	17-Aug-07	28-Sep-07	38150.00	="PRN16274"	="THE ALLEN CONSULTING GROUP PTY LTD"	21-Nov-07 04:21 PM	

+="CN47765"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11110.00	="PRN12579"	="BRIDGEWORKS PERSONNEL"	21-Nov-07 04:21 PM	

+="CN47766"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="TrainEdge Pty Ltd"	21-Nov-07 04:21 PM	

+="CN47767"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10560.00	="PRN12579"	="The Victorian Training Group Pty"	21-Nov-07 04:21 PM	

+="CN47768"	"Photographs and case studies for reprint of Inform"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	03-Sep-07	30-Jun-08	22613.80	="PRN16796"	="SAXTON MANAGEMENT GROUP PTY LTD"	21-Nov-07 04:21 PM	

+="CN47769"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	17270.00	="PRN12579"	="Performis Pty Ltd"	21-Nov-07 04:21 PM	

+="CN47770"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14630.00	="PRN12579"	="HR COMPANY PTY LTD"	21-Nov-07 04:21 PM	

+="CN47771"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11770.00	="PRN12579"	="SUBROSA SOLUTIONS"	21-Nov-07 04:21 PM	

+="CN47772"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	15180.00	="PRN12579"	="DIDASKO LEARNING INSTITUTE PTY LTD"	21-Nov-07 04:21 PM	

+="CN47773"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	15400.00	="PRN12579"	="MELBOURNE INSTITUTE OF NAILS AND"	21-Nov-07 04:21 PM	

+="CN47774"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	14410.00	="PRN12579"	="LEWELMO PTY LIMITED"	21-Nov-07 04:22 PM	

+="CN47775"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12980.00	="PRN12579"	="SMP TRAINING CENTRE"	21-Nov-07 04:22 PM	

+="CN47776"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11990.00	="PRN12579"	="Mediquest Pty Ltd"	21-Nov-07 04:22 PM	

+="CN47777"	"Market Research - Skills for the Future"	="Department of Education, Science and Training"	21-Nov-07	="Engineering and Research and Technology Based Services"	26-Jun-07	31-Dec-07	199650.00	="PRN14937"	="DI MARZIO RESEARCH PTY LTD"	21-Nov-07 04:22 PM	

+="CN47778"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	22660.00	="PRN12579"	="Maddisson Employment Pty Ltd"	21-Nov-07 04:22 PM	

+="CN47779"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	13200.00	="PRN12579"	="Australasian Education and Training"	21-Nov-07 04:22 PM	

+="CN47780"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="National Corporate Training Pty Ltd"	21-Nov-07 04:22 PM	

+="CN47781"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10780.00	="PRN12579"	="Meee Australia Pty. Ltd."	21-Nov-07 04:22 PM	

+="CN47782"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	21-Nov-07	="Education and Training Services"	01-Jan-07	22-Feb-10	11220.00	="PRN12579"	="Newtrain Northern Rivers Inc"	21-Nov-07 04:23 PM	

+="CN47784"	"Maura Fay Workshop-3 workshops, 10 atendees 6 and 7"	="Department of Education, Science and Training"	21-Nov-07	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Oct-07	37290.00	="PRN16731"	="MAURA FAY PRODUCTIONS"	21-Nov-07 04:23 PM	

+="CN47783"	"Motor Vehicle Parts"	="Department of Defence"	21-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Nov-07	20-Dec-07	44122.88	=""	="Volvo Commerical Vehicles"	21-Nov-07 04:24 PM	

+="CN47785"	"Provision of Administrative Support Personnel from"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	28-May-07	30-Sep-07	17000.00	="PRN16573"	="Wizard Personnel and Office Services"	21-Nov-07 04:25 PM	

+="CN47786"	"Temporary Staff Recruitment"	="Department of Education, Science and Training"	21-Nov-07	="Human resources services"	27-Aug-07	07-Nov-07	33700.00	="PRN16561"	="SOS RECRUITMENT"	21-Nov-07 04:25 PM	

+="CN47787"	"Development of an Adult Career Information Publication"	="Department of Education, Science and Training"	21-Nov-07	="Marketing and distribution"	25-Sep-07	10-Dec-07	54000.00	="PRN16522"	="MILES MORGAN AUSTRALIA PTY LTD"	21-Nov-07 04:25 PM	

+="CN47746"	" Provision of Engineering and architectural feasibiliy reports for Naru Police Headquarters "	="Australian Federal Police"	21-Nov-07	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jul-07	18-Oct-07	33660.00	=""	="Kramer Pacific Pty Ltd"	21-Nov-07 04:28 PM	

+="CN47789"	" Motor Vehile Parts "	="Department of Defence"	21-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Nov-07	19-Dec-07	13183.97	=""	="Volvo Commerical"	21-Nov-07 04:29 PM	

+="CN47793"	" AIRCRAFT SPARES  NSN 5340-01-504-4221   ,  CLAMP LOOP.  QTY 50 "	="Defence Materiel Organisation"	21-Nov-07	="Military transport helicopters"	21-Nov-07	04-Feb-08	16775.00	=""	="FLITE PATH PTY LTD"	21-Nov-07 04:36 PM	

+="CN47803"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:08 AM	

+="CN47804"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:14 AM	

+="CN47805"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	04-Dec-06	03-Dec-07	35318.10	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:19 AM	

+="CN47806"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	58557.77	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:29 AM	

+="CN47807"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	61901.91	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:33 AM	

+="CN47808"	"Test Set Sychro"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	12-Oct-07	15-Feb-08	27500.00	=""	="Unitronix"	22-Nov-07 07:41 AM	

+="CN47809"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft spars"	20-Nov-07	03-Dec-07	11693.00	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 07:56 AM	

+="CN47744"	" 1. 9150 66-093-5653 Gear Lubricating Oil OX-46 IN 205LT BP AUTRAN TO-410 Qty 28 drums  2. 9150 66-093-5658 Automotive Brake Fluid H542- OX-8 IN 500ML  Bottle Qty 1200    "	="Defence Materiel Organisation"	22-Nov-07	="Lubricants and oils and greases and anti corrosives"	04-Oct-07	11-Oct-07	25319.71	=""	="BP AUSTRALIA PTY LTD"	22-Nov-07 08:03 AM	

+="CN47810-A1"	"TPS for Stabilator Amplifier"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	31-Oct-07	30-Nov-07	16340.00	=""	="Partech Systems"	22-Nov-07 08:04 AM	

+="CN47811"	"Ceremonial Shoulder Boards and Gorgets"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	23-Oct-07	30-Nov-07	75314.80	="ACC023/0708"	="P Blashki and Sons"	22-Nov-07 08:11 AM	

+="CN47815"	"Embroidered Insignia for Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	69067.35	="ACC025/0708"	="Babylon Industries"	22-Nov-07 08:39 AM	

+="CN47814"	"Embroidered Insignia for Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	71372.53	="ACC026/0708"	="Babylon Industries"	22-Nov-07 08:58 AM	

+="CN47813-A1"	"Embroidered Insignia, Tri Service"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	09-Oct-07	20-Jun-08	328590.68	="ACC009/0708"	="Babylon Industries"	22-Nov-07 09:17 AM	

+="CN47818"	"Lease at Echuca, Victoria"	="Centrelink"	22-Nov-07	="Real estate services"	01-Jan-08	31-Dec-09	225156.80	=""	="The Trustee for the Barker Family Trust"	22-Nov-07 09:22 AM	

+="CN47816"	"Supply of Tester, Switch, Hydrostatic, Qty 25, Cage: 36452 & PN: 108595."	="Defence Materiel Organisation"	22-Nov-07	="Battery testers"	10-Sep-07	09-Dec-07	14852.75	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 09:27 AM	

+="CN47823-A1"	"Aiguillettes, Gorgets and Bullion Embroidered Badges"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	13-Nov-07	30-Mar-08	131019.57	="ACC027/0708"	="P Blashki and Sons"	22-Nov-07 09:48 AM	

+="CN47825"	"Supply of Helmet Fireman's, White."	="Defence Materiel Organisation"	22-Nov-07	="Safety helmets"	20-Nov-07	31-Mar-08	68227.50	=""	="MSA (Aust) Pty Ltd"	22-Nov-07 10:02 AM	

+="CN47828-A3"	" Provision of services relating to Oracle database applications development support services "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-09	405091.60	=""	="Tarakan Consulting Pty Ltd"	22-Nov-07 10:27 AM	

+="CN47831"	"Embroidered Badges ,Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	23-Oct-07	30-Jan-08	18260.68	="ACC024/0708"	="Arcade Badge Embroidery Co"	22-Nov-07 10:36 AM	

+="CN47832"	"INSECTICIDE, D-PHENOTHRIN"	="Defence Materiel Organisation"	22-Nov-07	="Insecticides"	21-Nov-07	26-Nov-07	11830.51	=""	="CALLINGTON HAVEN PTY LTD"	22-Nov-07 10:42 AM	

+="CN47834-A1"	" Licencing of MS Office Products  "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-10	8515777.62	=""	="Dimension Data Australia Pty Ltd"	22-Nov-07 10:48 AM	

+="CN47802"	"Office Rental - Sydney, NSW"	="Australian Public Service Commission"	22-Nov-07	="Real estate services"	01-Aug-07	31-Jul-17	4185000.00	=""	="GPT Funds Management 2 Pty Ltd"	22-Nov-07 11:01 AM	

+="CN47835"	"Metal Insignia and Badges"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	07-Sep-07	15-Feb-08	35809.40	="ACC020/0708"	="Nichol Industries Pty Ltd"	22-Nov-07 11:47 AM	

+="CN47838"	"National Office supplies for workstation set up"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	01-Aug-07	28-Sep-07	34250.00	="PRN16270"	="Schiavello Commercial Interiors"	22-Nov-07 11:49 AM	

+="CN47839"	"Introduction to the Financial Management Framework"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	20-Sep-07	30-Jun-08	18000.00	="PRN16725"	="KPR FAMILY TRUST"	22-Nov-07 11:49 AM	

+="CN47840"	"SAP Australia - Funds Management Course - IPS910"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	29-Aug-07	30-Jun-08	32725.00	="PRN16671"	="SAP Australia Pty Ltd"	22-Nov-07 11:49 AM	

+="CN47841"	"Architectural Services - Function/Conference Room"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	04-Sep-07	30-Jun-08	10000.00	="PRN16680"	="PECKVONHARTEL"	22-Nov-07 11:50 AM	

+="CN47842"	"Air Conditioning Upgrade LG 14 Mort"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	30-Aug-07	30-Nov-07	53928.00	="PRN13164"	="DALKIA TECHNICAL SERVICES PTY LTD"	22-Nov-07 11:50 AM	

+="CN47843"	"16 Mort St - Level 1 Function and Conference Room Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	21-Sep-07	01-Nov-07	52729.60	="PRN16932"	="CONSTRUCTION CONTROL INTERIORS P/L"	22-Nov-07 11:50 AM	

+="CN47844"	"Executive Furniture 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="Building and Construction and Maintenance Services"	27-Sep-07	30-Jun-08	28773.00	="PRN17137"	="CITE OFFICE DESIGN PTY LIMITED"	22-Nov-07 11:50 AM	

+="CN47845"	"Placement Fee  for temporary staff"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	02-Jul-07	15-Oct-07	14000.00	="PRN16691"	="HAMILTON JAMES and BRUCE PTY LTD"	22-Nov-07 11:50 AM	

+="CN47846"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	14-Sep-07	21-Dec-07	41484.00	="PRN16938"	="CANBERRA PROFESSIONAL EQUIPMENT"	22-Nov-07 11:50 AM	

+="CN47847"	"Contractor for Incoming Government Brief"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	17-Sep-07	28-Sep-07	18000.00	="PRN16983"	="JOAN CORBETT"	22-Nov-07 11:50 AM	

+="CN47848"	"Electrical Mechanical documentation 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	06-Aug-07	28-Dec-07	31790.00	="PRN17142"	="BASSETT CONSULTING ENGINEERS"	22-Nov-07 11:50 AM	

+="CN47849"	"SES Recruitment Services"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	06-Sep-07	30-Nov-07	22000.00	="PRN16853"	="HANSEN and SEARSON MANAGEMENT SERVICE"	22-Nov-07 11:50 AM	

+="CN47851"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	14-Feb-07	25-Jan-08	66000.00	=""	="Cordelta Pty Ltd"	22-Nov-07 12:02 PM	

+="CN47853-A1"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	17-Nov-07	17-Apr-08	140000.00	=""	="Candle Australia"	22-Nov-07 12:05 PM	

+="CN47854"	"Code of Conduct Related Services"	="Department of Human Services"	22-Nov-07	="Business and corporate management consultation services"	22-Nov-07	30-Nov-07	11000.00	=""	="Quality Management Solutions Pty Ltd"	22-Nov-07 12:08 PM	

+="CN47856-A1"	"Provision for Procedures Writer"	="Comsuper"	22-Nov-07	="Human resources services"	23-Aug-07	22-Feb-08	116500.00	=""	="Face2Face Recruitment"	22-Nov-07 12:12 PM	

+="CN47860"	"Supply & Implement Software"	="National Archives of Australia"	22-Nov-07	="Software"	24-Oct-07	30-Jun-08	76615.00	=""	="The Reading Room Australia P/L"	22-Nov-07 12:19 PM	

+="CN47863-A2"	"Lease of printers, photocopiers, scanners and facsimilie equipment"	="Department of Human Services"	22-Nov-07	="Office machines and their supplies and accessories"	21-May-04	31-Aug-11	45300000.00	=""	="Fuji Xerox Australia Pty Ltd"	22-Nov-07 12:25 PM	

+="CN47866"	"Provision for Maintenance of Bizhub Colour laser printer"	="Comsuper"	22-Nov-07	="Laser printers"	20-Nov-07	20-Nov-12	40347.00	=""	="Konica Minolta Business Solutions"	22-Nov-07 12:30 PM	

+="CN47870"	"Communication services"	="Australian Crime Commission"	22-Nov-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	08-Nov-07	82040.65	=""	="ASIO"	22-Nov-07 12:51 PM	

+="CN47868"	" Research and Advisory Service Online Subscription "	="Australian Crime Commission"	22-Nov-07	="Internet based market research"	18-Oct-07	18-Oct-07	39490.00	=""	="Gartner Australia"	22-Nov-07 12:53 PM	

+="CN47867"	" Network performance monitoring equipment "	="Australian Crime Commission"	22-Nov-07	="Network analysers"	29-Oct-07	29-Oct-07	74258.00	=""	="Network General"	22-Nov-07 12:57 PM	

+="CN47864"	"Investigation into ACC internal matter"	="Australian Crime Commission"	22-Nov-07	="Private investigation services"	10-Oct-07	10-Oct-07	20000.00	=""	="HBA Consulting"	22-Nov-07 12:58 PM	

+="CN47859"	"Job advertisements"	="Australian Crime Commission"	22-Nov-07	="Advertising"	04-Aug-07	25-Aug-07	26828.00	=""	="HMA Blaze"	22-Nov-07 01:00 PM	

+="CN47855"	"International Policing Towards 2020 Conference"	="Australian Crime Commission"	22-Nov-07	="Conference centres"	19-Nov-07	21-Nov-07	11748.00	=""	="DPM Conferencing"	22-Nov-07 01:01 PM	

+="CN47852"	"Facilitation of Teamwork Project"	="Australian Crime Commission"	22-Nov-07	="Workshops"	21-Aug-07	31-Aug-07	16522.00	=""	="Mascot Solutions"	22-Nov-07 01:02 PM	

+="CN47830"	"Job advertisments"	="Australian Crime Commission"	22-Nov-07	="Advertising"	21-Jul-07	21-Jul-07	31752.78	=""	="Adcorp"	22-Nov-07 01:03 PM	

+="CN47833"	"SES Recruitment"	="Australian Crime Commission"	22-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	16170.00	=""	="Ford Kelly Executive Connection"	22-Nov-07 01:04 PM	

+="CN47829"	"Accommodation for ACC staff"	="Australian Crime Commission"	22-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Aug-07	20-Aug-07	30789.00	=""	="Bentley Suites"	22-Nov-07 01:05 PM	

+="CN47827"	" Accommodation & Venue for Conference "	="Australian Crime Commission"	22-Nov-07	="Conference centres"	30-Aug-07	08-Nov-07	20000.00	=""	="Aitken Hill Conference and Event Venue"	22-Nov-07 01:06 PM	

+="CN47873"	"Hunter RIMS Software Maintenance"	="Australian Taxation Office"	22-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	381894.27	=""	="Experian Asia Pacific Pty Ltd"	22-Nov-07 01:17 PM	

+="CN47872-A2"	"Provision of services relating to applications development"	="Australian Federal Police"	22-Nov-07	="Computer services"	20-Aug-07	30-Sep-08	229055.20	=""	="Cordelta Pty ltd"	22-Nov-07 01:18 PM	

+="CN47862"	"Adjustments for 06/07 Land Tax for Mitchell"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	32453.02	=""	="Jones Lang LaSalle (ACT) P/L"	22-Nov-07 01:33 PM	

+="CN47874"	"Adjustment of 06/07 for Land Tax - Chester Hill"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	15127.80	=""	="Jones Lang LaSalle (NSW) P/L"	22-Nov-07 01:40 PM	

+="CN47875"	"ICON Annual Levy"	="National Archives of Australia"	22-Nov-07	="Data services"	26-Oct-07	30-Jun-08	16500.00	=""	="Department of Finance"	22-Nov-07 01:44 PM	

+="CN47876"	"Fleet management and leasing services (Ref standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	30-Oct-07	29-Oct-09	19572.00	=""	="LeasePlan"	22-Nov-07 01:50 PM	

+="CN47877"	"The mailout consists of an A4 letter in a DL envelope to approx 700,000 clients."	="Australian Taxation Office"	22-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Nov-07	30-Jun-08	58608.00	="118.05"	="Hermes Precisa Pty Ltd"	22-Nov-07 01:52 PM	

+="CN47878"	"Supply of Laptops"	="National Archives of Australia"	22-Nov-07	="Notebook computers"	01-Nov-07	15-Nov-07	23945.00	=""	="Harris Technology"	22-Nov-07 01:55 PM	

+="CN47879"	" to undertake the production of 'The People of Australia' series of publication "	="Department of Immigration and Citizenship"	22-Nov-07	="Printed publications"	10-Sep-07	30-Jun-08	55350.00	="RFT07/51"	="the Trustee for EPD unit trust"	22-Nov-07 01:58 PM	

+="CN47880"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	28-Jul-06	27-Jul-08	39628.00	=""	="LeasePlan"	22-Nov-07 02:03 PM	

+="CN47881"	"Provision of Legal Services"	="Department of Education, Science and Training"	22-Nov-07	="Legal services"	29-Aug-07	31-Dec-07	11510.00	="PRN16769"	="Tom Brennan"	22-Nov-07 02:03 PM	

+="CN47883"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	09-Nov-07	08-Nov-09	40682.00	=""	="LeasePlan"	22-Nov-07 02:16 PM	

+="CN40684"	" Computer Replacement Program - Alice Springs "	="Family Court of Australia"	22-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	20-Nov-09	13970.00	=""	="Dell Australia Pty Ltd"	22-Nov-07 02:21 PM	

+="CN47882-A1"	"Contract for the provision of electronic voting services for the National Staff Consultative."	="Department of Immigration and Citizenship"	22-Nov-07	="Communications Devices and Accessories"	06-Sep-07	31-Oct-07	13556.00	=""	="Registries Limited"	22-Nov-07 02:28 PM	

+="CN47884"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	15-May-07	15-May-08	10688.00	=""	="SPSS Australasia Pty Ltd"	22-Nov-07 02:43 PM	

+="CN47885"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	73668.37	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 02:44 PM	

+="CN47886"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	22-May-07	22-May-08	12100.00	=""	="Leximancer Pty Ltd"	22-Nov-07 02:51 PM	

+="CN47557"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	21-Nov-07	03-Dec-07	11932.51	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	22-Nov-07 02:52 PM	

+="CN47887"	"Construction works for Darwin"	="Department of Immigration and Citizenship"	22-Nov-07	="Building and Construction Machinery and Accessories"	06-Sep-07	15-May-08	4059136.00	=""	="Sitzler Pty Ltd"	22-Nov-07 03:02 PM	

+="CN47889"	"Provision of software and support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	23-Jul-07	23-Jul-07	95000.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:10 PM	

+="CN47891"	"Design Facilitation - HOCOLEA Capability project"	="Australian Taxation Office"	22-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	21-Dec-07	10768.20	="05.164"	="ThinkPlace Pty Ltd as trustee for the ThinkPlace Trust"	22-Nov-07 03:14 PM	

+="CN47892"	"Provision of software and software support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	01-Jul-07	30-Jun-08	750285.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:15 PM	

+="CN47890-A1"	"CRS Alice Springs, 1/8 Gregory Terrace, NT"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	166990.00	=""	="AGEO Pty Ltd"	22-Nov-07 03:17 PM	

+="CN47893"	"Information services - Brio report developer services"	="Australian Federal Police"	22-Nov-07	="Computer services"	31-Jul-06	30-Jun-08	341000.00	=""	="Forge Data Solutions Pty Ltd"	22-Nov-07 03:17 PM	

+="CN47894"	"Provision of Caddy Units, Australia Wide"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	342201.00	=""	="Planex Sales Pty Ltd"	22-Nov-07 03:27 PM	

+="CN47888"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	72366.32	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 03:31 PM	

+="CN47897"	"FRENCH HORN, INCLUDES CASE, LYRE AND MOUTHPIECE, QUANTITY 6."	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	01-May-08	51599.99	=""	="PRO AUDIO SUPPLIES PTY LTD"	22-Nov-07 03:33 PM	

+="CN47900"	"Provision of Heigh Adjustable Desks & workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	13-Feb-07	13-Feb-07	208163.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:35 PM	

+="CN47901"	"Level1, 16 Mort St Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	02-Oct-07	31-Oct-07	11372.90	="PRN17104"	="Construction Control Interiors P/L"	22-Nov-07 03:35 PM	

+="CN47898"	"Night Vision Goggle Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	11-Sep-07	06-Jan-08	1866569.10	=""	="Point Trading"	22-Nov-07 03:36 PM	

+="CN47902"	"Provision of Height Adjustable Desks & Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	23-Mar-07	23-Mar-07	70657.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:38 PM	

+="CN47904-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	30-Nov-07	11050.00	=""	="Australian Federal Police"	22-Nov-07 03:40 PM	

+="CN47899-A1"	"Security vetting Services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	12727.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:42 PM	

+="CN47905"	"Height Adjustable Desks and Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	25164.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:42 PM	

+="CN47896-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	22-Nov-07	11300.00	=""	="Australian Federal Police"	22-Nov-07 03:43 PM	

+="CN47907"	" Cleaning Costs "	="Department of Finance and Administration"	22-Nov-07	="Cleaning and janitorial services"	12-Nov-07	11-Nov-09	1301004.40	="RFT01/MPS/2007"	="Glad Group Pty Ltd"	22-Nov-07 03:45 PM	

+="CN47908"	"Provision of height adjustable desks & workstation spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	16359.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:45 PM	

+="CN47909-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	11380.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:46 PM	

+="CN47906"	"Night Weapon Sight (F7000A) Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Surveillance and detection equipment"	18-Oct-07	18-Apr-08	230087.00	=""	="Qioptiq P/L"	22-Nov-07 03:47 PM	

+="CN47910"	"Mitchell restrooms upgrade"	="National Archives of Australia"	22-Nov-07	="Building construction and support and maintenance and repair services"	02-Nov-07	30-Jun-08	45584.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:00 PM	

+="CN47911-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	16-Nov-07	28-Dec-07	19860.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 04:02 PM	

+="CN47913"	"Changeover for Cabinet release Interactive"	="National Archives of Australia"	22-Nov-07	="Video production services"	09-Nov-07	01-Jan-08	14949.00	=""	="Lightwell P/L"	22-Nov-07 04:05 PM	

+="CN47914"	"Research - Margaret George Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	10000.00	=""	="Craig Stockings"	22-Nov-07 04:14 PM	

+="CN47915"	"Cable Assembly for Infra-red lluminators"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	17-Dec-07	99300.00	=""	="Owen International Pty Ltd"	22-Nov-07 04:16 PM	

+="CN47916"	"Research - Frederick Watson Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	15000.00	=""	="Mickey Dewar"	22-Nov-07 04:18 PM	

+="CN47917"	"Contractor Services"	="National Archives of Australia"	22-Nov-07	="Personnel recruitment"	15-Nov-07	31-Dec-07	50000.00	=""	="DFP Recruitment Services"	22-Nov-07 04:31 PM	

+="CN47920"	"Replacement of Humidifiers - Parkes"	="National Archives of Australia"	22-Nov-07	="Building support services"	15-Nov-07	30-Jun-08	20328.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:36 PM	

+="CN47921"	"CRS Australia Bankstown Suite 3, 402-410 Chapel Road Bankstown"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jul-05	30-Jun-09	480330.00	=""	="MP Delmege & AC Veale"	22-Nov-07 04:38 PM	

+="CN47923"	"Helmet Mount Frame Assembly"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	30-Nov-07	1176960.40	=""	="Point Trading"	22-Nov-07 04:42 PM	

+="CN47924"	"CRS Australia Bankstown - Sub Unit, 29 Kitchener Parade, Bankstown, NSW"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jun-07	31-May-09	26000.00	=""	="Chris Mognham"	22-Nov-07 04:43 PM	

+="CN47912"	" TROMBONE TENOR, C/W CASE, LYRE, MOUTHPIECE AND STAND, QUANTITY 11 "	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	14-Nov-08	49571.71	="RFQ 257227"	="ELTHAM WOODWIND & BRASS CENTRE"	22-Nov-07 05:02 PM	

+="CN47497"	"Purchase of coveralls, utility, grey, combat NAVY"	="Defence Materiel Organisation"	22-Nov-07	="Overalls and coveralls"	02-Nov-07	11-Feb-08	418000.00	=""	="Tuffa Workwear Pty Ltd"	22-Nov-07 05:04 PM	

+="CN47925"	" PANEL AND PAINT LANDROVER "	="Department of Defence"	22-Nov-07	="Motor vehicles"	18-Jun-07	02-Aug-07	14508.27	=""	="PETES PANEL AND PAINT"	22-Nov-07 05:23 PM	

+="CN47926"	"Ribbon for Service Cap, Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Synthetic ribbons"	02-Nov-07	06-Dec-07	14414.40	="ACC030/0708"	="Cash's Australia Pty Ltd"	22-Nov-07 05:56 PM	

 ="CN47927"	" Ceremonial Sashs, Sword Knots and, Shoulder Boards and Ornamental Lace "	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	15-Nov-07	25-Mar-08	173633.13	="ACC027A/0708"	="P Blashki and Sons"	22-Nov-07 06:04 PM 

--- /dev/null
+++ b/admin/partialdata/19Jun2008to21Jun2008valto.xls
@@ -1,1 +1,819 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN93252"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	05-Jun-08	30-Jun-08	41800.00	=""	="Chandler Macleod Group"	19-Jun-08 07:52 AM	

+="CN93253"	"Expansion of storage racking capacity"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Jun-08	30-Jun-08	15958.80	=""	="Jackman Builders Pty Ltd"	19-Jun-08 07:52 AM	

+="CN93254"	"Healthcare Services"	="Centrelink"	19-Jun-08	="Healthcare Services"	12-Jun-08	30-Jun-08	11000.00	=""	="Insite Injury Management Group"	19-Jun-08 07:53 AM	

+="CN93255"	"Staff Medical Assessments"	="Centrelink"	19-Jun-08	="Human resources services"	17-Jul-07	30-Jun-08	11255.00	=""	="Gillian Groom"	19-Jun-08 07:53 AM	

+="CN93256"	"Architectural Services"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	16500.00	=""	="Integrated Space Ltd"	19-Jun-08 07:53 AM	

+="CN93257-A1"	"Press and radio advertisements"	="Centrelink"	19-Jun-08	="Advertising"	16-May-08	30-Jun-08	105524.90	=""	="HMA Blaze Pty Ltd"	19-Jun-08 07:53 AM	

+="CN93258"	"Legal Services"	="Centrelink"	19-Jun-08	="Legal services"	12-Jun-08	30-Jun-08	110000.00	=""	="Minter Ellison Lawyers"	19-Jun-08 07:53 AM	

+="CN93259"	"Legal Services"	="Centrelink"	19-Jun-08	="Legal services"	13-Sep-07	30-Jun-08	18200.00	=""	="Minter Ellison Lawyers"	19-Jun-08 07:53 AM	

+="CN93260"	"Self Service Internet Services, Victoria"	="Centrelink"	19-Jun-08	="Telecommunications media services"	11-Sep-07	30-Jun-08	13200.00	=""	="Telstra"	19-Jun-08 07:53 AM	

+="CN93261"	"Office Fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	27-Mar-08	30-Jun-08	29499.80	=""	="National Interiors"	19-Jun-08 07:53 AM	

+="CN93262"	"Office furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	11-Jun-08	30-Jun-08	83916.80	=""	="Schiavello (Vic) Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93263"	"Venue Hire"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	22-Feb-08	30-Jun-08	11286.00	=""	="Fremantle Sailing Club"	19-Jun-08 07:54 AM	

+="CN93264"	"Data Entry Services"	="Centrelink"	19-Jun-08	="Computer services"	10-Jun-08	31-Dec-08	77000.00	=""	="Searson Buck Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93265"	"Office furniture for Caboolture, QLD, relocation"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	10-Jun-08	30-Jun-08	29884.80	=""	="Emtek Furniture"	19-Jun-08 07:54 AM	

+="CN93266"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	13-Jun-08	16-Jun-08	112312.20	="RFTS07/0129"	="Omaha IT Services Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93267"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	10-Jun-08	11-Jun-08	180180.00	=""	="Compas Pty Ltd"	19-Jun-08 07:54 AM	

+="CN93268"	"Project management of Casino, NSW, refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-Jan-08	29-Jun-08	10380.62	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 07:54 AM	

+="CN93269"	"Oracle License and service contract renewal"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	22-Feb-08	21-Feb-09	193861.88	="ATM08/1043"	="Oracle Corporation"	19-Jun-08 09:07 AM	

+="CN93270"	"48 x HDD for servers"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Office Equipment and Accessories and Supplies"	06-Jun-08	30-Jun-08	29418.58	="ATM08/1053"	="Service Management Advantage Pty Lt"	19-Jun-08 09:07 AM	

+="CN93271"	"MapInfo Software for Mapping Room RS & T Branch - 1 Yr  plus freight"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-Jun-08	30-Jun-09	31092.05	="ATM08/1054"	="MAPINFO AUSTRALIA PTY LTD"	19-Jun-08 09:07 AM	

+="CN93272-A1"	"Archived File Retrieval (MoG) Arts & Sports Files"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	27-Apr-08	30-Jun-08	57569.51	="ATM08/1055"	="RECALL INFORMATION MANAGEMENT Pty L"	19-Jun-08 09:08 AM	

+="CN93273"	"Video conferencing equipment for Media Rooms 1 and 2 - 38 Sydney Avenue"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	25839.00	="ATM08/1070"	="CANBERRA PROFESSIONAL EQUIPMENT"	19-Jun-08 09:08 AM	

+="CN93274-A1"	"NetVault Maintenance"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	13-Apr-03	13-Apr-10	17658.97	="DCON/03/63"	="KAZ Group"	19-Jun-08 09:08 AM	

+="CN93275-A1"	"Assistance with March interim hard-close 07-08"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	47492.48	="DCON/05/53"	="ERNST & YOUNG"	19-Jun-08 09:08 AM	

+="CN93276-A2"	"BIA Round 1 Training - Skills Development"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	01-Nov-08	440644.01	="ATM08/01035"	="Techlink Pty Ltd"	19-Jun-08 09:08 AM	

+="CN93277"	"400 x 8GB USB key"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-08	74580.00	="ATM08/1061"	="Service Management Advantage Pty Lt"	19-Jun-08 09:08 AM	

+="CN93278"	"50 training units"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	30-Jun-08	16500.00	="DCON/07/65"	="Squiz Pty Ltd"	19-Jun-08 09:08 AM	

+="CN93279-A1"	"eHealth Forum in Melbourne"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	17-Jul-08	18-Jul-08	23479.60	="ATM08/1065"	="Rydges on Swanston"	19-Jun-08 09:09 AM	

+="CN93280"	"Assistance with the tender for Application Development Panel"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	15864.30	="DCON/05/53"	="WALTER TURNBULL"	19-Jun-08 09:09 AM	

+="CN93281"	"220 VM radius & web tokens"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	13-Jun-08	19-Jun-08	50270.66	="ATM08/1067"	="VASCO Data Security Australia"	19-Jun-08 09:09 AM	

+="CN93282-A1"	"SPSS Advertising 2008 - GCUADV 2002/03"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	30-Jun-09	40450.18	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	19-Jun-08 09:09 AM	

+="CN93283"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	30-Jun-08	14460.72	="ATM08/1051"	="PCA People Pty Ltd"	19-Jun-08 09:09 AM	

+="CN93284-A1"	"PCMS Maintenance Support Renewal"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jun-08	31-May-09	27500.00	="CCR/07/2446"	="RANDOM COMPUTING SERVICES PTY LTD"	19-Jun-08 09:10 AM	

+="CN93287"	"Consultancy Serv WT-Network SLA 07/08"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	19746.50	="DCON/05/53"	="WALTER TURNBULL"	19-Jun-08 09:10 AM	

+="CN93289"	"Web publisher contractors"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	30-Jun-08	11000.00	="DCON/04/162"	="THE GREEN AND GREEN GROUP PTY LTD"	19-Jun-08 09:10 AM	

+="CN93290"	"Contribution towards APT's Workshop on trade in Telecoms, ASTAP-14 & WTSA-2008 prep meeting"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	20-Jun-08	205800.81	="ATM08/1071"	="ASIA PACIFIC TELECOMMUNITY"	19-Jun-08 09:10 AM	

+="CN93292-A1"	"LegalNet Licences x 5 (Round 3)"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	01-Nov-07	31-Oct-08	13612.50	="ATM08/890"	="Nsynergy International Pty Ltd"	19-Jun-08 09:11 AM	

+="CN93293-A1"	"Contractor for Netowrks Competion Branch"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	03-Jun-08	03-Sep-08	35000.00	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	19-Jun-08 09:11 AM	

+="CN93294-A1"	"Transition to PCMS & MobileX OEM Licensing"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Public Utilities and Public Sector Related Services"	07-Jul-08	30-Jun-09	40947.03	="ATM08/988"	="RANDOM COMPUTING SERVICES PTY LTD"	19-Jun-08 09:11 AM	

+="CN93295"	"5 sets FME Professional Edition"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	30-Jun-08	20542.50	="ATM08/1042"	="MAPINFO AUSTRALIA PTY LTD"	19-Jun-08 09:11 AM	

+="CN93296-A1"	"Public Relations officer for 2008 National E-Security Awareness Week"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	212569.97	="DCON/08/29"	="The Quay Connection"	19-Jun-08 09:11 AM	

+="CN93297-A1"	"E-Security Education Package"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-11	847217.26	="DCON/08/13"	="Roar Film Pty Ltd"	19-Jun-08 09:11 AM	

+="CN93299"	"Facilitator to assist formation of a peak Telecommunications Consumer Representivie body"	="Department of Broadband Communications and the Digital Economy"	19-Jun-08	="Management and Business Professionals and Administrative Services"	16-May-08	13-Jun-08	40000.00	="DCON/08/42"	="Philippa Smith"	19-Jun-08 09:12 AM	

+="CN93300"	" Frames for field packs. "	="Defence Materiel Organisation"	19-Jun-08	="Harness goods"	13-Jun-08	30-Oct-08	123438.70	=""	="Page Furnishers Pty Ltd"	19-Jun-08 09:23 AM	

+="CN93301-A1"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Jun-08	09-Jul-08	11100.78	=""	="Symbion"	19-Jun-08 10:06 AM	

+="CN93302-A2"	" Sources of Business Information.  Month by month extension.  Connected with GaPS # 1292355 & 1568305 (GAPS ID: 1649727)    "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	15-Jun-08	31-Aug-08	63464.50	=""	="IBISWORLD PTY LTD"	19-Jun-08 10:14 AM	

+="CN93304"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	11-Jul-08	16974.10	=""	="SYMBION PHARMACY SERVICES"	19-Jun-08 10:47 AM	

+="CN93305"	"Pocket Distress Sig"	="Defence Materiel Organisation"	19-Jun-08	="Signalling components"	16-Jun-08	25-Aug-08	18403.00	=""	="Light Aircraft"	19-Jun-08 11:02 AM	

+="CN93307"	"Varicella Virus Vaccine"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	05-Jun-08	04-Aug-08	54660.00	=""	="GLAXOSMITHKLINE AUSTRALIA P/L"	19-Jun-08 11:32 AM	

+="CN93308"	"Search & Rescue Buoy"	="Defence Materiel Organisation"	19-Jun-08	="Emergency medical services search and rescue kits"	16-Jun-08	16-Jul-08	15840.00	=""	="Kinetic Technology International"	19-Jun-08 11:57 AM	

+="CN93309-A1"	" Cloth Coated "	="Defence Materiel Organisation"	19-Jun-08	="Fabrics and leather materials"	13-Jun-08	30-Jul-08	1005048.00	=""	="Wax Converters Textiles Pty Ltd"	19-Jun-08 11:59 AM	

+="CN93310"	"Tool Kits Generic Fitters & Turners.  Order raised against Standing Offer No. CONL069"	="Defence Materiel Organisation"	19-Jun-08	="Tool kits"	17-Jun-08	01-Jul-08	63549.09	=""	="Brentool Industrial Supplies Pty Ltd"	19-Jun-08 12:04 PM	

+="CN93311"	"QTY10 Control assembly P/N 950018-2; MC 99449"	="Defence Materiel Organisation"	19-Jun-08	="Military rotary wing aircraft"	17-Jun-08	04-Nov-08	12574.76	=""	="Airnsea safety pl"	19-Jun-08 01:11 PM	

+="CN93315"	"motor vehicle parts"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	14824.14	=""	="Mercedes Benz Aust"	19-Jun-08 01:20 PM	

+="CN93316"	"misc fasteners"	="Defence Materiel Organisation"	19-Jun-08	="Retaining clips"	13-Jun-08	25-Jul-08	33831.60	=""	="ITW Fastex General Products"	19-Jun-08 01:21 PM	

+="CN93317"	"Provision of Service Support of CSA Entderprise Project Management System"	="Child Support Agency"	19-Jun-08	="Project management software"	01-Jul-08	30-Jun-09	86900.00	=""	="Enterprise Project Management Services Pty Ltd"	19-Jun-08 01:22 PM	

+="CN93319"	" VARIOUS GRADER 672D PARTS "	="Defence Materiel Organisation"	19-Jun-08	="Vehicle bodies and trailers"	18-Jun-08	21-Jun-08	18699.91	=""	="HITACHI CONSTRUCTION MACHINERY"	19-Jun-08 01:35 PM	

+="CN93320"	"camelbacks"	="Defence Materiel Organisation"	19-Jun-08	="Drink coolers"	13-Jun-08	30-Oct-08	258060.00	=""	="Hydration Systems Australia"	19-Jun-08 01:39 PM	

+="CN93321-A1"	" Certificate III in Financial Services Course Material "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	30-Jun-08	64480.00	="08.094"	="Box Hill Institute of TAFE"	19-Jun-08 01:53 PM	

+="CN93322"	"field pack components"	="Defence Materiel Organisation"	19-Jun-08	="Backpacks"	13-Jun-08	30-Oct-08	436016.42	=""	="Adventure One Pty Ltd"	19-Jun-08 02:00 PM	

+="CN93323"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	24-Jan-08	31-Mar-08	10092.50	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Jun-08 02:06 PM	

+="CN93325"	" Various components required for field pack "	="Defence Materiel Organisation"	19-Jun-08	="Harnesses or its accessories"	13-Jun-08	30-Oct-08	845929.70	=""	="Hunters Edge"	19-Jun-08 02:10 PM	

+="CN93326"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Mar-08	04-Apr-08	10553.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	19-Jun-08 02:11 PM	

+="CN93324"	"BOOK RECORD: OC187 SERVICE POLICE INVESTIGATORS NOTE BOOK, BOOK OF 100 PAGES. QTY 800 BOOKS."	="Defence Materiel Organisation"	19-Jun-08	="Log books or pads"	18-Jun-08	08-Aug-08	12654.40	=""	="ADAMSON PRINTING CO PTY LTD"	19-Jun-08 02:12 PM	

+="CN93344-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	302500.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:13 PM	

+="CN93346-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93348"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	15-May-08	30-Jun-08	10000.00	=""	="Borroloola Hostel/Guesthouse"	19-Jun-08 02:14 PM	

+="CN93350"	"Office Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-May-08	30-Jun-08	16905.90	=""	="Isis Projects Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93352"	"Office Fitout of Hervey Bay, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-May-08	30-Jun-08	261877.00	=""	="Signature Projects Pty Ltd"	19-Jun-08 02:14 PM	

+="CN93354"	"Counselling services"	="Centrelink"	19-Jun-08	="Office supplies"	13-May-08	30-Jun-08	35000.00	=""	="Workcare Australia"	19-Jun-08 02:14 PM	

+="CN93356"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	27-Jun-08	41654.80	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93357"	"Hotel Lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	09-May-08	30-Jun-08	10000.00	=""	="Demed Association Inc"	19-Jun-08 02:15 PM	

+="CN93358"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	01-Jun-08	26994.00	=""	="Heyday Group Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93359"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	20-Jun-08	43798.70	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93360"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	08-May-08	01-Jun-08	59932.40	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93361"	"Supply of Foxtel Business Channels"	="Centrelink"	19-Jun-08	="Telecommunications media services"	07-May-08	28-Feb-11	60886.08	=""	="Foxtel"	19-Jun-08 02:15 PM	

+="CN93362"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	07-May-08	15-Jun-08	71492.30	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:15 PM	

+="CN93363"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	16-May-08	30-Jun-08	10139.51	=""	="Crowne  Plaza Darwin"	19-Jun-08 02:16 PM	

+="CN93364-A3"	"Enhancement and maintainance of Interpreter Management System."	="Centrelink"	19-Jun-08	="Software"	01-Mar-08	30-Jun-11	248064.00	=""	="FlowConnect Pty Limited"	19-Jun-08 02:16 PM	

+="CN93365"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	01-Jun-08	15180.00	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93367-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	47616.80	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93368-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	30996.90	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:16 PM	

+="CN93369-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	28050.00	=""	="Drake Australia Pty Ltd"	19-Jun-08 02:16 PM	

+="CN93370-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	40752.80	=""	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93371-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	25726.80	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:17 PM	

+="CN93372-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="Ross Human Directions Limited"	19-Jun-08 02:17 PM	

+="CN93366"	"Lease for premises at Corner Plenty and McKimmies Rd Bundoora Victoria"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-06	30-Nov-08	20553.67	=""	="Royal Melbourne Institute of Technology"	19-Jun-08 02:17 PM	

+="CN93373-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:17 PM	

+="CN93374-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93349"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	26-Feb-08	28-Mar-08	38902.86	=""	="CLAYTON UTZ"	19-Jun-08 02:17 PM	

+="CN93375-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	363000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:17 PM	

+="CN93376-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	242000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:18 PM	

+="CN93377"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	05-May-08	30-Jun-08	49500.00	=""	="PricewaterhouseCoopers"	19-Jun-08 02:18 PM	

+="CN93378"	"Long term rental accommodation, NT"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	03-Apr-08	30-May-08	32400.02	=""	="Jessica Court Serviced Apartments"	19-Jun-08 02:18 PM	

+="CN93379"	"Engineering services for Terrica Pl, Brisbane, QLD"	="Centrelink"	19-Jun-08	="Professional engineering services"	30-May-08	30-Jun-08	15214.50	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 02:18 PM	

+="CN93380"	"Expansion of storage racking capacity"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Dec-07	30-Jun-08	41105.08	=""	="Jackman Builders Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93381"	"Fitout Manager Services - Tasmania"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-Sep-07	30-Jun-08	16000.00	=""	="GHD Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93382"	"Project management services"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-08	15962.29	=""	="GHD Pty Ltd"	19-Jun-08 02:18 PM	

+="CN93383"	"Pilot construction project for Centrelink Concept Office Tuggeranong, ACT"	="Centrelink"	19-Jun-08	="Office supplies"	01-Jun-07	30-Jul-08	17155.74	=""	="Kaldi Coffee"	19-Jun-08 02:19 PM	

+="CN93384"	"Advertising"	="Centrelink"	19-Jun-08	="Advertising"	02-May-08	30-Jun-08	33000.00	=""	="HMA Blaze Pty Ltd"	19-Jun-08 02:19 PM	

+="CN93385"	"Internet services"	="Centrelink"	19-Jun-08	="Information services"	05-Sep-07	30-Jun-08	165000.00	=""	="Telstra"	19-Jun-08 02:19 PM	

+="CN93386"	"Data Centre Electrical services"	="Centrelink"	19-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	23-May-08	30-Jun-08	11000.00	=""	="O'Donnell Griffin (ACT)"	19-Jun-08 02:19 PM	

+="CN93387"	"Fraud Investigations"	="Centrelink"	19-Jun-08	="Security surveillance and detection"	12-Jul-07	30-Jun-08	13200.00	=""	="CITEC"	19-Jun-08 02:19 PM	

+="CN93388"	"Information Services"	="Centrelink"	19-Jun-08	="Information services"	07-May-08	30-Jun-08	19940.00	=""	="Land Services Group"	19-Jun-08 02:19 PM	

+="CN93389"	"Staff Medicals"	="Centrelink"	19-Jun-08	="Human resources services"	27-Sep-07	30-Jun-08	17600.00	=""	="Health for Industry"	19-Jun-08 02:19 PM	

+="CN93390"	"Water charges 2007/2008"	="Centrelink"	19-Jun-08	="Utilities"	10-Jul-07	30-Jun-08	10169.15	=""	="Water Corporation"	19-Jun-08 02:19 PM	

+="CN93391"	"Office Refurbishment"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	02-May-08	20-Jun-08	68284.78	=""	="Isis Projects Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93392"	"Audit and review"	="Centrelink"	19-Jun-08	="Accounting and auditing"	02-May-08	30-Jun-08	151800.00	=""	="PricewaterhouseCoopers"	19-Jun-08 02:20 PM	

+="CN93393"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	01-May-08	30-Jun-08	122100.00	=""	="Nuance Communications International BVBA"	19-Jun-08 02:20 PM	

+="CN93394"	"Accounting and auditing"	="Centrelink"	19-Jun-08	="Accounting and auditing"	01-May-08	30-Jun-08	73237.51	=""	="KPMG"	19-Jun-08 02:20 PM	

+="CN93396"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Building and Construction Machinery and Accessories"	19-May-08	03-Mar-09	20480.90	=""	="Mossop Group Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93397"	"Fitout management of Palm Beach, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-May-08	19-Dec-08	11330.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:20 PM	

+="CN93399-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	14-May-08	30-Jun-08	11550.00	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:21 PM	

+="CN93400"	"Office Supplies"	="Centrelink"	19-Jun-08	="Office supplies"	02-Jan-08	30-Jun-08	15400.00	=""	="Rolls Filing Systems"	19-Jun-08 02:21 PM	

+="CN93401"	"Hotel, lodging and other meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	23-May-08	30-Jun-08	140000.00	=""	="Departmentt of Local Government Housing and Sport"	19-Jun-08 02:21 PM	

+="CN93402"	"Rehabilitation services"	="Centrelink"	19-Jun-08	="Healthcare Services"	29-Nov-07	30-Jun-08	12000.00	=""	="Recovery Partners"	19-Jun-08 02:21 PM	

+="CN93403"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	20-Dec-07	30-Jun-08	16500.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93404"	"Customer Service Centre  Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Dec-07	03-Dec-08	10621.00	=""	="Schiavello SA Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93405-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	16-May-08	30-Jun-08	39600.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	19-Jun-08 02:21 PM	

+="CN93406"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	29-May-08	15-Aug-08	344924.00	=""	="Formula Interiors NSW"	19-Jun-08 02:22 PM	

+="CN93407"	"Fitout management services"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-09	52200.00	=""	="IA Group Pty Ltd (Interiors Australia)"	19-Jun-08 02:22 PM	

+="CN93408"	"Office fitout services for Kippa Ring, QLD"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-08	12500.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93409"	"Office fitout services at for Kawana Waters, QLD"	="Centrelink"	19-Jun-08	="Management advisory services"	28-May-08	30-Jun-09	31552.00	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93410"	"Fitout services"	="Centrelink"	19-Jun-08	="Professional engineering services"	28-May-08	30-Jun-09	12600.01	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:22 PM	

+="CN93411-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	28-May-08	30-Jun-08	115000.00	="RFT07/0021"	="Ross Human Directions Limited"	19-Jun-08 02:22 PM	

+="CN93412"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	27-May-08	15-Jun-08	38500.00	=""	="Commstar Communications"	19-Jun-08 02:22 PM	

+="CN93413"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	27-May-08	30-Jun-08	14000.01	=""	="Art of Service"	19-Jun-08 02:23 PM	

+="CN93414"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	27-May-08	30-Jun-08	14000.01	=""	="Art of Service"	19-Jun-08 02:23 PM	

+="CN93415"	"Advisory Services"	="Centrelink"	19-Jun-08	="Management advisory services"	27-May-08	30-Jun-08	35000.00	=""	="Capgemini Australia Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93416"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	26-May-08	30-Jun-08	100727.00	=""	="Formula Interiors NSW"	19-Jun-08 02:23 PM	

+="CN93417"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	23-May-08	30-Jun-08	250571.20	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93398"	"Professional Legal Fes"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Feb-08	13-Feb-08	26400.00	=""	="CLAYTON UTZ"	19-Jun-08 02:23 PM	

+="CN93418"	"Perth Call Centre upgrade"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	22-May-08	02-Jun-08	310779.70	=""	="Schiavello (WA) Pty Ltd"	19-Jun-08 02:23 PM	

+="CN93419"	"Fitout Works"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	20-Jun-08	63800.00	=""	="Faccenda Shopfitters"	19-Jun-08 02:24 PM	

+="CN93420"	"Office Fitout Construction for Roma, QLD"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	30-May-08	30-Jun-08	104709.00	=""	="Signature Projects Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93421"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	29-May-08	13-Jun-08	41514.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93422"	"Interpreter services"	="Centrelink"	19-Jun-08	="Writing and translations"	29-May-08	30-Jun-08	24378.30	=""	="Australian High Commission"	19-Jun-08 02:24 PM	

+="CN93423-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	21500.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93424-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	31999.99	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93425-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	64999.99	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93426-A1"	"Recruitment Servcies"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	25499.99	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:24 PM	

+="CN93427-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	55700.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:25 PM	

+="CN93428-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	36000.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:25 PM	

+="CN93429-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93430-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	80000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93431-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	29-May-08	30-Jun-08	65750.01	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:25 PM	

+="CN93432"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	15-Jun-08	20493.00	=""	="Diverse Data Communications (ACT)"	19-Jun-08 02:25 PM	

+="CN93433-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	92400.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:25 PM	

+="CN93436"	"External Training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93437"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	30000.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93438"	"Healthcare services"	="Centrelink"	19-Jun-08	="Healthcare Services"	20-May-08	30-Jun-08	12000.00	=""	="Ford Health"	19-Jun-08 02:26 PM	

+="CN93440"	"Management advisory services"	="Centrelink"	19-Jun-08	="Management advisory services"	20-May-08	30-Jun-08	35000.00	=""	="Cogent Business Solutions Pty Ltd"	19-Jun-08 02:26 PM	

+="CN93441"	"Uninterruptable Power Supply Maintenance"	="Centrelink"	19-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	20-May-08	30-Jun-08	11000.00	=""	="Chloride Power Protection"	19-Jun-08 02:27 PM	

+="CN93442-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	181500.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93443-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	79200.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93444-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	118800.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93445-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	46200.00	="RFT07/0021"	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:27 PM	

+="CN93446-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	19-May-08	30-Jun-08	214500.00	="RFT07/0021"	="Regent Recruitment"	19-Jun-08 02:28 PM	

+="CN93447"	"IT Computer Cabling"	="Centrelink"	19-Jun-08	="Computer services"	19-May-08	13-Jun-08	123854.50	=""	="DESA Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93435"	"cloth coated"	="Defence Materiel Organisation"	19-Jun-08	="Fabrics and leather materials"	22-Apr-08	31-May-08	307296.00	=""	="Wax Converters Textiles Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93448"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	09-Jun-08	28325.00	=""	="Heyday Group Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93449"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	30-Apr-09	1637908.45	=""	="Sun Microsystems Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93450"	"Office fitout project management for Glen Innes, NSW"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Nov-08	20961.69	=""	="Interior Dynamics Australia Pty Ltd"	19-Jun-08 02:28 PM	

+="CN93451-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	22-May-08	30-Jun-08	165000.00	="RFT07/0021"	="Kelly Services (Australia) Ltd"	19-Jun-08 02:28 PM	

+="CN93452"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	22-May-08	30-Jun-08	10000.00	=""	="Renner Springs Desert Inn"	19-Jun-08 02:28 PM	

+="CN93453"	"Staff medical assessments"	="Centrelink"	19-Jun-08	="Healthcare Services"	21-May-08	30-Jun-08	38500.00	="RFTS06/0500"	="Health for Industry"	19-Jun-08 02:29 PM	

+="CN93454"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	21-May-08	30-Jun-08	244050.40	=""	="Pirotta Services Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93455-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	03-Jun-08	85999.99	="RFT07/0021"	="Kelly Services (Australia) Ltd"	19-Jun-08 02:29 PM	

+="CN93456-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	28878.30	=""	="DFP Recruitment Services Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93457-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	214500.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93458-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	396000.00	="RFT07/0021"	="IPA Personnel Pty Ltd"	19-Jun-08 02:29 PM	

+="CN93459-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	71500.00	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:29 PM	

+="CN93460-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	21-May-08	30-Jun-08	110000.00	="RFT07/0021"	="Hoban Recruitment"	19-Jun-08 02:30 PM	

+="CN93461"	"Removal services"	="Centrelink"	19-Jun-08	="Transportation services equipment"	08-May-08	30-Jun-08	10285.00	=""	="Allied  Pickfords Business Relocations"	19-Jun-08 02:30 PM	

+="CN93462"	"Membership"	="Centrelink"	19-Jun-08	="Business administration services"	08-May-08	30-Jun-08	45658.00	=""	="CUTTER CONSORTIUM, LLC"	19-Jun-08 02:30 PM	

+="CN93463"	"Software Licences"	="Centrelink"	19-Jun-08	="Software"	08-May-08	08-May-08	42210.79	=""	="Kaz Group Pty Ltd"	19-Jun-08 02:30 PM	

+="CN93465"	"Security and personal safety"	="Centrelink"	19-Jun-08	="Security and personal safety"	08-May-08	30-Jun-08	110000.00	=""	="Leonhard Kurz Australia Pty Ltd"	19-Jun-08 02:30 PM	

+="CN93466"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	30-Jun-09	139429.46	=""	="Interface Flor"	19-Jun-08 02:30 PM	

+="CN93467"	"Furniture for Hawkesbury, NSW"	="Centrelink"	19-Jun-08	="Office and desk accessories"	07-May-08	30-Jun-08	12419.00	=""	="Stem Industries Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93468"	"Fitout Construction"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	02-Jun-08	287706.10	=""	="Cordwell Lane Building Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93469"	"Maintainance of Interpreter Management System"	="Centrelink"	19-Jun-08	="Software"	07-May-08	30-Jun-08	15252.70	=""	="ARI Systems"	19-Jun-08 02:31 PM	

+="CN93464-A1"	"Awareness and Attitudes to Family Court Study"	="Family Court of Australia"	19-Jun-08	="Market research telephone surveys"	20-Jun-08	22-Jun-08	17231.50	=""	="Newspoll Market research"	19-Jun-08 02:31 PM	

+="CN93470"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	07-May-08	30-May-11	18550.48	=""	="Infront Systems Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93471"	"Automatic gate opener and IT room air conditioner"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-May-08	30-May-08	15298.80	=""	="BSH Electrical Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93472"	"IT Cabling"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	06-May-08	06-May-08	31273.06	=""	="Anixter Australia Pty Ltd"	19-Jun-08 02:31 PM	

+="CN93473"	"Construction fitout for Centrelink office, Taylor's Lakes, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	06-May-08	30-Jun-08	54297.87	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:31 PM	

+="CN93474"	"Furniture for office fitout"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	05-May-08	30-Jun-08	45460.80	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:32 PM	

+="CN93475"	"Removals for Hervey Bay, QLD, refurbishment"	="Centrelink"	19-Jun-08	="Material packing and handling"	13-May-08	09-Jun-08	10719.50	=""	="Wridgways The Removalists"	19-Jun-08 02:32 PM	

+="CN93476"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	13-Nov-08	116516.40	="RFTS07/0129"	="Peoplebank Australia Pty Ltd"	19-Jun-08 02:32 PM	

+="CN93477"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	12-May-08	30-Sep-08	71179.46	=""	="Interface Flor"	19-Jun-08 02:32 PM	

+="CN93478"	"Air conditioning units"	="Centrelink"	19-Jun-08	="Electronic Components and Supplies"	12-May-08	31-Dec-08	94600.00	=""	="Emerson Network Power"	19-Jun-08 02:32 PM	

+="CN93479"	"Relocation of Inter-government Communications Network service"	="Centrelink"	19-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-May-08	30-Sep-08	13750.00	=""	="Department of Finance and Deregulation"	19-Jun-08 02:32 PM	

+="CN93480"	"Relocation of Inter-government Communication Network service"	="Centrelink"	19-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-May-08	30-Sep-08	25410.00	=""	="Department of Finance and Deregulation"	19-Jun-08 02:32 PM	

+="CN93481"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	12-May-08	23-Nov-08	117717.60	="RFTS07/0129"	="Southern Cross Computing Pty Ltd"	19-Jun-08 02:32 PM	

+="CN93482"	"Office Supplies"	="Centrelink"	19-Jun-08	="Office supplies"	12-May-08	30-Jun-08	20768.00	=""	="PaperlinX Office"	19-Jun-08 02:33 PM	

+="CN93483"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	165000.00	=""	="Novell Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93484"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	12-May-08	30-Jun-08	165000.00	=""	="Novell Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93485"	"Steel shelving and filing cabinets"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	09-May-08	18-Jun-08	15420.24	=""	="Brownbuilt Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93486"	"Refurbishment of the Office and Storage area"	="Centrelink"	19-Jun-08	="Storage"	09-May-08	30-Jun-08	13500.30	=""	="ISIS Projects Pty Ltd"	19-Jun-08 02:33 PM	

+="CN93487"	"Construction fitout, Werribee, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	09-May-08	29-Aug-08	176171.82	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:33 PM	

+="CN93488"	"Removalist services"	="Centrelink"	19-Jun-08	="Material packing and handling"	05-May-08	09-May-08	17136.90	=""	="Movers and Shakers Business Relocations"	19-Jun-08 02:33 PM	

+="CN93489"	"Office furniture for Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	15-May-08	30-Jun-08	16316.59	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:34 PM	

+="CN93490"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	27-May-08	17-Aug-08	11440.00	=""	="Compas Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93491"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	21-Feb-08	30-Jun-08	139553.37	=""	="Interface Flor"	19-Jun-08 02:34 PM	

+="CN93492"	"Data Entry Services"	="Centrelink"	19-Jun-08	="Computer services"	05-Jun-08	31-Dec-08	11000.00	=""	="Searson Buck Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93493"	"Furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	04-Feb-08	30-Jun-08	12445.40	="RFTS07/0113"	="Schiavello Systems (NSW) Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93494-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	26-May-08	30-Jun-08	14887.73	="RFT07/0021"	="Chandler Macleod Group"	19-Jun-08 02:34 PM	

+="CN93495"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	20-May-08	27-May-08	23100.00	=""	="Write Once Pty Ltd"	19-Jun-08 02:34 PM	

+="CN93496"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	17-Oct-07	28-May-08	24931.52	=""	="IPA Personnel Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93497"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Human resources services"	17-Mar-07	30-Jun-08	158149.13	=""	="CSC Australia Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93498"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Human resources services"	15-May-08	30-Jun-08	58333.92	=""	="Kaz Group Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93439"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	28-Mar-08	14-Apr-08	27889.99	=""	="CLAYTON UTZ"	19-Jun-08 02:35 PM	

+="CN93499"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	17-Mar-08	12-Jul-08	11104.32	=""	="ComPro Solutions Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93500"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	01-Jun-07	31-May-08	21120.00	=""	="Write Once Pty Ltd"	19-Jun-08 02:35 PM	

+="CN93501"	"Hotel and other lodging services"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	30-May-07	29-Jun-08	21220.00	=""	="David Leahey"	19-Jun-08 02:35 PM	

+="CN93502"	"Office fitout"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	05-May-08	30-Jun-08	697400.00	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:35 PM	

+="CN93503-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	02-May-08	30-Jun-08	32670.00	="RFT07/0021"	="Vedior Asia Pacific Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93504-A1"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	02-May-08	05-Sep-10	521875.20	=""	="Peoplebank Australia Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93505"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	02-May-08	03-May-10	334048.00	=""	="Collective Resources IT Recruitment"	19-Jun-08 02:36 PM	

+="CN93506"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	02-May-08	30-Jun-09	87945.00	=""	="Emmett Construct Pty Ltd"	19-Jun-08 02:36 PM	

+="CN93507"	"Membership"	="Centrelink"	19-Jun-08	="Business administration services"	02-May-08	30-Jun-08	36588.94	=""	="Corporate Executive Board"	19-Jun-08 02:36 PM	

+="CN93508"	"Chairs for Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	01-May-08	29-Aug-08	51921.10	=""	="Solitaire Seating"	19-Jun-08 02:36 PM	

+="CN93509"	"Clerical chairs for Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	01-May-08	29-Aug-08	38736.50	=""	="Unifurn Commercial Furniture"	19-Jun-08 02:36 PM	

+="CN93510"	"Office Fitout at Curtin University, Bentley, WA"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-08	17-May-08	169708.00	=""	="Topline Partitions and Interiors Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93511"	"Office Fitout, Frankston, VIC"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-May-08	29-May-08	208087.00	=""	="Bronts Commercial Interiors Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93512"	"Fitout Furniture"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-May-08	31-Aug-08	28888.22	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:37 PM	

+="CN93513"	"Computer Software"	="Centrelink"	19-Jun-08	="Software"	15-Apr-08	06-Jun-08	33440.00	=""	="Worldsmart Technology Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93514"	"Install alarm system"	="Centrelink"	19-Jun-08	="Office supplies"	18-Mar-08	30-Jun-08	10953.53	=""	="Novocastrian Alarms Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93515"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	14-May-08	31-Jul-08	66330.00	=""	="Chandler Macleod Consultants Pty Ltd"	19-Jun-08 02:37 PM	

+="CN93516"	"Signage for fitout, Hervey Bay, QLD"	="Centrelink"	19-Jun-08	="Signage and accessories"	30-May-08	30-Jun-08	22743.57	=""	="Signworld Sunshine Coast"	19-Jun-08 02:37 PM	

+="CN93517"	"Supply and install additional reception counter for Centrelink Watergardens"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	29-May-08	01-Aug-08	12172.60	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:37 PM	

+="CN93518"	"Supply and install carpet"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	28-May-08	30-Jun-08	37520.70	=""	="Interface Flor"	19-Jun-08 02:38 PM	

+="CN93519"	"Memberships"	="Centrelink"	19-Jun-08	="Business administration services"	28-May-08	30-Jun-08	34243.50	=""	="Corporate Executive Board"	19-Jun-08 02:38 PM	

+="CN93520"	"Computer Equipment and Accessories"	="Centrelink"	19-Jun-08	="Computer Equipment and Accessories"	27-May-08	27-May-08	46556.40	=""	="Rohde and Schwarz (Aust) Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93521"	"Residential Social Worker Conference Area Pacific Central"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	26-May-08	29-May-08	11719.00	=""	="Hotel Watermark"	19-Jun-08 02:38 PM	

+="CN93522"	"Occupational Health and Safety approved chairs"	="Centrelink"	19-Jun-08	="Office and desk accessories"	26-May-08	30-Jun-08	13836.63	=""	="Sturdy Components Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93523"	"External Training"	="Centrelink"	19-Jun-08	="Vocational training"	23-May-08	30-Jun-08	14350.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:38 PM	

+="CN93524"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	28589.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93525"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	20790.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93526"	"Blinds"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-May-08	30-Jun-08	15235.00	=""	="Daac Holdings Pty Ltd"	19-Jun-08 02:38 PM	

+="CN93527"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	22-May-08	22-May-08	73804.50	=""	="Alpha Computer (Aust) Pty Ltd"	19-Jun-08 02:39 PM	

+="CN93528"	"Computer Software"	="Department of Human Services"	19-Jun-08	="Software"	22-May-08	30-Mar-13	79200.00	=""	="Actividentity"	19-Jun-08 02:39 PM	

+="CN93529"	"Cafe equipment repairs"	="Centrelink"	19-Jun-08	="Domestic Appliances and Supplies and Consumer Electronic Products"	20-Feb-08	30-Jun-08	11550.00	=""	="Norfolk Foodservices"	19-Jun-08 02:39 PM	

+="CN93530"	"Advertising"	="Centrelink"	19-Jun-08	="Advertising"	04-Oct-07	30-Jun-08	22550.00	=""	="HMA Blaze Pty Ltd"	19-Jun-08 02:39 PM	

+="CN93531"	"Locksmith Services"	="Centrelink"	19-Jun-08	="Security and personal safety"	06-Jul-07	27-Sep-07	11000.00	=""	="Australian Security Industries Pty"	19-Jun-08 02:39 PM	

+="CN93532"	"Courier Services"	="Centrelink"	19-Jun-08	="Transport operations"	27-May-08	30-Jun-08	50000.01	=""	="Toll Priority"	19-Jun-08 02:39 PM	

+="CN93533"	"Courier Services"	="Centrelink"	19-Jun-08	="Mail and cargo transport"	20-May-08	30-Jun-08	22000.00	=""	="Toll Priority"	19-Jun-08 02:39 PM	

+="CN93536"	"Architectural services"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	24-Nov-06	30-Jun-08	11536.54	=""	="GHD Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93537"	"Customer Service Centre Refurbishment"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	30-May-08	28-May-09	286910.23	=""	="Schiavello SA Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93538"	"Furniture for new Centrelink office, Werribee, VIC"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	30-May-08	29-Aug-08	17066.50	=""	="Solitaire Seating"	19-Jun-08 02:40 PM	

+="CN93535"	" Certificate IV in Government (Civil Investigation) "	="Australian Taxation Office"	19-Jun-08	="Management and Business Professionals and Administrative Services"	30-Jun-08	11-Jul-08	60000.00	="06.205-8"	="KPS and Associates Pty Ltd"	19-Jun-08 02:40 PM	

+="CN93539"	"Storage update at Records Managment Unit"	="Centrelink"	19-Jun-08	="Containers and storage"	21-May-08	30-Jun-08	26991.67	=""	="APC Storage Solutions"	19-Jun-08 02:40 PM	

+="CN93540"	"Hotel, lodging and meeting facilities"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	16-May-08	30-Jun-08	12915.00	=""	="Bedarra Research Labs Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93541"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	31-Jul-08	45157.73	=""	="Infront Systems Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93544"	"Conference""	="Centrelink"	19-Jun-08	="Management advisory services"	15-May-08	30-May-08	10620.00	=""	="Red Carpet Ltd"	19-Jun-08 02:41 PM	

+="CN93545"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	17-May-08	223423.20	=""	="Ekonsulting Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93546"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	15-May-08	11-Jul-08	70179.96	=""	="Hewlett Packard Australia Pty Ltd"	19-Jun-08 02:41 PM	

+="CN93547"	"Subscriptions"	="Centrelink"	19-Jun-08	="Business administration services"	15-May-08	20-Jun-08	27859.70	=""	="Butler Group"	19-Jun-08 02:42 PM	

+="CN93548-A3"	"IT Specialist Services by Specified Personnel"	="Centrelink"	19-Jun-08	="Computer services"	14-May-08	13-May-11	3995749.12	="RFTS07/0129"	="Ross Human Directions Limited"	19-Jun-08 02:42 PM	

+="CN93549"	"Workstations and Storage for Office fitout, Roma, QLD"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	78476.27	=""	="Schiavello Systems (QLD) Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93550"	"Workstations and storage for fitout of new office"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	72458.65	=""	="Schiavello Systems (QLD) Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93551"	"CD Portable interview recorder"	="Centrelink"	19-Jun-08	="Components for information technology or broadcasting or telecommunications"	14-May-08	30-Jun-08	14300.00	=""	="TPR Systems"	19-Jun-08 02:42 PM	

+="CN93552"	"Furniture for office fitout, Roma QLD"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	14-May-08	30-Jun-08	11987.80	=""	="Emtek Furniture"	19-Jun-08 02:42 PM	

+="CN93553"	"Office furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	21-May-08	30-Jun-08	12673.10	=""	="Cafe Culture Australia Pty Ltd"	19-Jun-08 02:42 PM	

+="CN93554"	"Building security access control"	="Centrelink"	19-Jun-08	="National Defence and Public Order and Security and Safety Services"	21-May-08	30-Jun-08	12023.00	=""	="TAC Pacific Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93555"	"External training"	="Centrelink"	19-Jun-08	="Vocational training"	21-May-08	30-Jun-08	11825.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:43 PM	

+="CN93556"	"Workstations and screens"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	20-May-08	17-Jun-08	164332.30	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:43 PM	

+="CN93557-A1"	"Recruitment Services"	="Centrelink"	19-Jun-08	="Human resources services"	20-May-08	30-Jun-08	14300.00	=""	="Drake Australia Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93558"	"Computer Cabling"	="Centrelink"	19-Jun-08	="Computer services"	20-May-08	20-May-08	14630.00	=""	="Anixter Australia Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93559"	"Melbourne Retirement and Life Style Expo, stand hire"	="Centrelink"	19-Jun-08	="Marketing and distribution"	19-May-08	15-Sep-08	10054.00	=""	="Exhibition and Marketing Services Pty Ltd"	19-Jun-08 02:43 PM	

+="CN93560"	"Office Fitout"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	19-May-08	30-Jun-08	126192.00	=""	="Schiavello (Vic) Pty  Ltd"	19-Jun-08 02:43 PM	

+="CN93561"	"Computer services"	="Centrelink"	19-Jun-08	="Computer services"	19-May-08	23-Jun-08	238150.00	=""	="IBM Australia Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93562"	"Class B 3 draw safes"	="Centrelink"	19-Jun-08	="Office and desk accessories"	19-May-08	30-Jun-08	42680.00	=""	="Planex Sales Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93563"	"Residential conference for team meeting"	="Centrelink"	19-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	24-Jul-08	15702.78	=""	="Crowne Plaza Pelican Waters"	19-Jun-08 02:44 PM	

+="CN93564"	"Vocational training"	="Centrelink"	19-Jun-08	="Vocational training"	16-May-08	16-May-08	15100.00	=""	="Australian Public Servce Commission"	19-Jun-08 02:44 PM	

+="CN93565"	"Furniture"	="Centrelink"	19-Jun-08	="Furniture and Furnishings"	16-May-08	30-Jun-08	42395.10	=""	="Schiavello Systems (NSW) Pty Ltd"	19-Jun-08 02:44 PM	

+="CN93543"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	31-Mar-08	28-Apr-08	23749.11	=""	="MINTER ELLISON"	19-Jun-08 02:45 PM	

+="CN93566"	"Registry Officer - temporary staff member pending position advertisement."	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	08-Jul-08	20966.40	=""	="Manpower Services (Australia) Pty Ltd"	19-Jun-08 02:48 PM	

+="CN93567"	"Austrade Indigenous Graphics.  Stage 5:  Templates and Usage Rules"	="Austrade"	19-Jun-08	="Marketing and distribution"	31-Mar-08	30-Apr-08	12870.00	=""	="Keystone Corporate Positioning Pty Ltd"	19-Jun-08 02:48 PM	

+="CN93568"	"Provide administrative assistance for BCA Beijing project as directed"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	14000.00	=""	="Manpower Services (Australia) Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93569"	"Design and delivery of training to State and Network Managers in Coaching and Client relationships"	="Austrade"	19-Jun-08	="Education and Training Services"	19-May-08	12-Jun-08	32340.00	=""	="In Corporate Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93570"	"Manage test environment operations"	="Austrade"	19-Jun-08	="Computer services"	30-Dec-07	28-Mar-08	59400.00	=""	="Icon Recruitment Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93571"	"Digital reproduction of Commonwealth books, journals, magazines and artworks."	="Austrade"	19-Jun-08	="Legal services"	26-Mar-08	26-Mar-08	19184.68	=""	="Copyright Agency Limited"	19-Jun-08 02:49 PM	

+="CN93572"	"Provide eLearning design and development for range of materials to support Journey to Export business programs"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-May-08	45314.50	=""	="TACTICS Consulting Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93573"	"AAP Residential Conference 2008"	="Austrade"	19-Jun-08	="Hotels and lodging and meeting facilities"	03-Mar-08	20-Mar-08	16436.90	=""	="Crowne Plaza Canberra"	19-Jun-08 02:49 PM	

+="CN93574"	"ICT Hardware and Assoc Services - Support Services, Schedule 3 Clause 4 Agreements"	="Austrade"	19-Jun-08	="Computer services"	01-Nov-06	31-Jan-08	607929.00	=""	="Hewlett Packard Australia Pty Ltd"	19-Jun-08 02:49 PM	

+="CN93575"	"Design and development of online courses covering OH&S and Procurement"	="Austrade"	19-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	52140.00	=""	="Evolve Studios Pty Ltd"	19-Jun-08 02:50 PM	

+="CN93576"	"Vietnamese Business Networking Breakfast 2008"	="Austrade"	19-Jun-08	="Hotels and lodging and meeting facilities"	14-Mar-08	14-Mar-08	14818.38	=""	="Shangri-La Hotel (Sydney)"	19-Jun-08 02:50 PM	

+="CN93578"	"Lease for premises at 85 Chalgrove Avenue, Rockingham"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Apr-08	30-Dec-11	19181.25	=""	="Tallbrook P/L"	19-Jun-08 02:51 PM	

+="CN93579"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	29537.00	=""	="Honeywell"	19-Jun-08 02:52 PM	

+="CN93580"	"Commercial Office Lease"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	29791.67	=""	="L J Hooker"	19-Jun-08 02:52 PM	

+="CN93577"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	29-Feb-08	27-Mar-08	11916.63	=""	="MINTER ELLISON"	19-Jun-08 02:52 PM	

+="CN93581"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Spectrometers"	03-Oct-07	30-Oct-08	337258.00	="NA"	="Nu Scientific P/L"	19-Jun-08 02:52 PM	

+="CN93582"	"Supply of Emerson Racks"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer Equipment and Accessories"	09-May-08	09-May-08	62429.40	=""	="Emerson"	19-Jun-08 02:52 PM	

+="CN93583"	"BETA GAMMA 8 ELEMENT TLD DOSIMETER CARDS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Dosimetry equipment"	15-May-08	15-May-08	48685.05	="NA"	="REXON TLD SYSTEMS INC."	19-Jun-08 02:52 PM	

+="CN93584"	"CERULEAN SOLUTIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Switches and controls and relays and accessories"	16-Apr-08	16-Apr-09	18849.53	="OPEN"	="CERULEAN"	19-Jun-08 02:53 PM	

+="CN93585"	"MAPINFO"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Map creation software"	18-Apr-08	18-Apr-09	30099.30	="OPEN"	="PITNEY BOWES"	19-Jun-08 02:53 PM	

+="CN93586"	"GALLAY MEDICAL and SCIENTIFIC"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Washers"	20-May-08	20-May-08	12597.20	="DIRECT"	="Gallay Scientific"	19-Jun-08 02:53 PM	

+="CN93587"	"HARRIS TECHNOLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Personal computers"	20-May-08	20-May-09	16072.40	="OPEN"	="Harris Technology"	19-Jun-08 02:53 PM	

+="CN93588"	"KONICA MINOLTA BUSINESS SOLUTIONS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Photocopiers"	21-May-08	21-May-09	15737.70	="OPEN"	="Konica Minolta Business Solutions Aust"	19-Jun-08 02:53 PM	

+="CN93589"	"Data and Records Mgt Internal Audit Review"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Accounting and auditing"	22-Apr-08	22-Apr-08	14056.93	=""	="Protiviti Pty Ltd"	19-Jun-08 02:53 PM	

+="CN93590"	"GAMMADATA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Multi gas monitors"	22-May-08	22-May-09	17791.51	="DIRECT"	="GAMMADATA"	19-Jun-08 02:53 PM	

+="CN93591"	"NATIONAL INSTRUMENTS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Dosimetry equipment"	22-May-08	22-May-09	39984.45	="DIRECT"	="National Instruments"	19-Jun-08 02:53 PM	

+="CN93592"	"Computer Equipment"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computers"	23-Jul-07	30-Jun-08	12210.00	=""	="DELL COMPUTER P/L"	19-Jun-08 02:53 PM	

+="CN93593"	"Computer Equipment"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer servers"	23-Jul-07	30-Jun-08	70290.00	=""	="DELL COMPUTER P/L"	19-Jun-08 02:54 PM	

+="CN93594"	"CORPORATE EXPRESS"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Computer servers"	24-Aug-07	24-Aug-07	20558.67	="NA"	="Corporate Express"	19-Jun-08 02:54 PM	

+="CN93595"	"Review of ANSTO Submission"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	19-Jun-08	="Strategic planning consultation services"	29-Apr-08	29-Apr-08	13673.15	="na"	="UNSW Global Pty.Ltd."	19-Jun-08 02:54 PM	

+="CN93596"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Stationery"	01-Apr-08	30-Apr-08	19721.09	=""	="OFFICEMAX AUSTRALIA LTD"	19-Jun-08 02:56 PM	

+="CN93598"	"supply of radio equipment"	="Australian Federal Police"	19-Jun-08	="Communications Devices and Accessories"	13-Apr-07	13-Jun-07	2597710.00	=""	="Motorola Australia Pty Limited"	19-Jun-08 03:04 PM	

+="CN93599"	"Computer Applications Testing."	="Family Court of Australia"	19-Jun-08	="Information technology consultation services"	26-Jun-08	31-Dec-08	85800.00	=""	="Clicks Recruitment Pty Ltd"	19-Jun-08 03:04 PM	

+="CN93597"	"Fact Sheet External Printing"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Corporate finance"	21-May-08	21-May-08	18999.00	=""	="CANBERRA PUBLISHING CO PTY LTD"	19-Jun-08 03:06 PM	

+="CN93600"	"Lease for premises at 109 Kent Street, Deakin ACT 2600"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-07	29-Feb-12	12827895.00	=""	="Telstra Corporation Limited"	19-Jun-08 03:07 PM	

+="CN93601"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	05-Jun-08	05-Jul-08	26074.40	=""	="Symbion"	19-Jun-08 03:15 PM	

+="CN93602"	"Partnership to develop  a Language other than English  learning resource on human rights/discrimination for young students attending Community Language Schools."	="Australian Human Rights Commission"	19-Jun-08	="Resources for learning to speak English"	25-Feb-08	31-Mar-09	167200.00	=""	="Australian Federation of Ethnic Schools"	19-Jun-08 03:15 PM	

+="CN93605"	"Scribe for LO1 & LO2 interviews in Sydney Office"	="Office of the Director of Public Prosecutions"	19-Jun-08	="Human resources services"	12-Jun-08	31-Jul-08	18732.78	=""	="DMW Group"	19-Jun-08 03:23 PM	

+="CN93603"	"Lease for premises 24 Fairbairn Ave, Canberra Airport, ACT"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Mar-07	28-Feb-17	4030387.00	=""	="Canberra International Airport Pty Ltd"	19-Jun-08 03:24 PM	

+="CN93606-A1"	"SAS Analyst Services"	="Family Court of Australia"	19-Jun-08	="Information technology consultation services"	12-May-08	11-Nov-08	82368.00	=""	="Finite IT Recruitment Solutions"	19-Jun-08 03:30 PM	

+="CN91578"	"Tenancy Alterations Levels 15 & 16 Darling Park."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Oct-07	30-Jun-08	139246.25	="07/ACMA014"	="Intact Projects Pty Ltd"	19-Jun-08 03:34 PM	

+="CN93608"	"Pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	03-Aug-08	41089.40	=""	="Symbion"	19-Jun-08 03:35 PM	

+="CN93610"	"Procurement of:  WATCH,WRIST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	19-Jun-08	25911.60	=""	="CITIZEN WATCHES (AUST) Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93611"	"Procurement of:  PUMP UNIT,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	20-Jul-08	46856.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	19-Jun-08 03:39 PM	

+="CN93612"	"Procurement of:  INDICATOR,DISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	19-Jun-08	21000.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93613"	"Procurement of:  LIGHT,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	19-Jun-08	29750.00	=""	="VERSALUX LIGHTING SYSTEMS"	19-Jun-08 03:39 PM	

+="CN93614"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	31-Jul-08	10527.52	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:39 PM	

+="CN91387"	"Scanning project."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Document scanning service"	09-Jun-08	30-Jun-08	10747.00	=""	="Microsystems Pty Ltd"	19-Jun-08 03:39 PM	

+="CN93616"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	22-Aug-08	26852.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93618"	"Procurement of:  PLATE KIT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	10-Jul-08	29502.20	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93619"	"Procurement of:  SWITCH,THERMOSTATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	13-Mar-09	18316.10	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93620"	"Procurement of:  PLYWOOD,CONSTRUCTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	23-Sep-08	18500.00	=""	="HARPER TIMBER Pty Ltd"	19-Jun-08 03:40 PM	

+="CN93615"	"Lease for premises at 28-32 King Raymond Terrace and Bourke Street Raymond Terrace"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	02-May-08	30-Apr-23	18026250.00	=""	="Buildev Properties Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93621"	"Procurement of:  TEST SET,INSULATION BREAKDOWN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	20-Jun-08	589140.00	=""	="EBBCO Ltd"	19-Jun-08 03:41 PM	

+="CN93622"	"Procurement of:  FLAG,NATIONAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	04-Aug-08	14140.00	=""	="CHRISTIE'S Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93617"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	10956.06	=""	="LANDROVER"	19-Jun-08 03:41 PM	

+="CN93623"	"Procurement of:  STOPPER ASSEMBLY,CHAIN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	19-Jun-08	33748.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93624"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	25-Aug-08	17820.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93625"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	05-Aug-08	16440.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93626"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	01-Sep-08	40480.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Jun-08 03:41 PM	

+="CN93627"	"Procurement of:  TELEPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	10-Oct-08	93938.90	=""	="THALES AUSTRALIA"	19-Jun-08 03:41 PM	

+="CN93628"	"Procurement of:  HEADSET-MICROPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	02-May-08	01-Aug-08	50932.00	=""	="JEA TECHNOLOGIES Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93629"	"Procurement of:  CONTROL,POWER SUPPLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	19-Jun-08	95384.68	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93630"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	05-Oct-08	66197.60	=""	="THALES AUSTRALIA"	19-Jun-08 03:42 PM	

+="CN93631"	"Procurement of:  CHAIN ASSEMBLY,SINGLE LEG;  CHAIN ASSEMBLY,SINGLE LEG"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	22-Oct-08	328743.50	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93633"	"Procurement of:  ACTUATOR,ELECTRO-MECHANICAL,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	01-Aug-08	10599.00	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 03:42 PM	

+="CN93634"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	07-Sep-08	72021.02	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93635"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	07-Sep-08	43078.36	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93636"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	29-Aug-08	22500.00	=""	="PUMPSEAL SALES Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93637"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	08-Sep-08	43187.30	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93639"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	17-Aug-08	10212.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:43 PM	

+="CN93640"	"Procurement of:  INDICATOR,HUMIDITY,PLUG"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	09-Feb-09	10831.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:43 PM	

+="CN93641"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	24-Oct-08	29940.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93644"	"Procurement of:  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	13-Aug-08	20340.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 03:44 PM	

+="CN93638"	" AIRCRAFT SPARES  NSN 3120-01-096-1323 , BEASRING SLEEVE , FLIGHT ESSENTIAL PART A25A , QTY 70 "	="Defence Materiel Organisation"	19-Jun-08	="Military transport helicopters"	19-Jun-08	19-Feb-09	11123.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	19-Jun-08 03:44 PM	

+="CN93645"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	16-Jul-08	15880.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93646"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	01-Aug-08	59047.15	=""	="MARINE PLANT SYSTEMS Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93647"	"Procurement of:  METER,FLOW RATE INDICATING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	17-Jul-08	17012.00	=""	="JORD INTERNATIONAL Pty Ltd"	19-Jun-08 03:44 PM	

+="CN93648"	"Procurement of:  AMPLIFIER,INTERMEDIATE FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	27-Aug-08	16466.40	=""	="MILSPEC SERVICES Pty Ltd"	19-Jun-08 03:45 PM	

+="CN93642"	"Divorce Kit"	="Family Court of Australia"	19-Jun-08	="Printing and publishing equipment"	16-Jun-08	30-Jun-08	16346.00	=""	="Canprint Communications Pty Ltd"	19-Jun-08 03:45 PM	

+="CN93650"	"Procurement of:  PRUEFAUSSTATTUNG, A"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	14-Oct-08	60698.12	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN91341"	"Report review of functions and operations of the Space Regulation and Coordination Section"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Temporary personnel services"	10-Jun-08	30-Jun-08	27225.00	="06/ACMA107"	="SMS Management and Technology Limited"	19-Jun-08 03:45 PM	

+="CN93651"	"Procurement of:  PUMP,ROTARY;  GEAR,SPUR;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	30-Oct-08	44774.10	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN93652"	"Procurement of:  PUMP,ROTARY;  GEAR,SPUR;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	04-Jul-08	186563.64	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:45 PM	

+="CN93653"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	02-Jul-08	123900.00	=""	="MOOG AUSTRALIA Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93649"	"Supply of communications equipment"	="Australian Federal Police"	19-Jun-08	="Communications Devices and Accessories"	23-Mar-07	30-Jun-08	130618.40	=""	="Motorola Australia Pty Limited"	19-Jun-08 03:46 PM	

+="CN93654"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	06-Aug-08	100000.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:46 PM	

+="CN93655"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	26-Jan-09	12540.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93656"	"Procurement of:  RETAINER,SEAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	20-Aug-08	17772.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93657"	"Procurement of:  CHAIN,STUD LINK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	06-Aug-08	15472.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93658"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	16-Sep-08	45936.90	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:46 PM	

+="CN93659"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	19-Jun-08	10908.00	=""	="GILBARCO AUSTRALIA Ltd"	19-Jun-08 03:46 PM	

+="CN93660"	"Procurement of:  STRAP,WEBBING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	19-Jun-08	16500.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:47 PM	

+="CN91166"	"Revision of Cyberquoll Technical & Content Features"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Computer or network or internet security"	11-Jun-08	05-Nov-08	55474.07	="07/ACMA052"	="Curriculum Corporation"	19-Jun-08 03:47 PM	

+="CN93661"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	19-Jun-08	15444.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93662"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	28-Jul-08	16416.00	=""	="SONARTECH ATLAS"	19-Jun-08 03:47 PM	

+="CN93663"	"Procurement of:  CONVERTER,POTENTIAL,STATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	17-Sep-08	27240.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93664"	"Procurement of:  PUMP,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	20-Aug-08	17681.08	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:47 PM	

+="CN93665"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	12-May-09	82287.20	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:47 PM	

+="CN93666"	"Procurement of:  CABLE,RADIO FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	06-Feb-09	14236.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93667"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	13-Apr-09	95287.00	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93668"	"Procurement of:  PUMP,OIL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	16-Feb-09	142005.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93669"	"Procurement of:  CHAIN,TRANSITION LINK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	07-Jan-09	38183.05	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93670"	"Procurement of:  ACCUMULATOR,PNEUMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	17-Dec-08	482488.08	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93671"	"Procurement of:  SEAL,PLAIN;  RING,WIPER;  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	11-Jul-08	12485.00	=""	="PACIFIC AERODYNE Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93643"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	26750.57	=""	="LAND ROVER AUSTRALIA"	19-Jun-08 03:48 PM	

+="CN93672"	"Procurement of:  BEARING,SLEEVE;  BEARING,SLEEVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	11-Nov-08	31896.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:48 PM	

+="CN93673"	"Procurement of:  SERIES LINK UNIT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	13-May-09	57364.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93674"	"Procurement of:  CALIBRATOR,FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	04-Sep-08	30285.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:49 PM	

+="CN93675"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	18-Nov-08	65651.07	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93676"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	30-Aug-08	30311.40	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:49 PM	

+="CN93677"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	22-May-09	21164.88	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93678"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	46500.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93679"	"Procurement of:  LIGHT,CHEMILUMINESCENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	15-May-08	13-Aug-08	62000.00	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93680"	"Procurement of:  ;  SCREW,MACHINE;  PARTS KIT,SEAL REPLACEMENT,MECHANICAL;  WRENCH LOCKING,PITCH"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	03-Sep-08	15133.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:49 PM	

+="CN93681"	"Procurement of:  BEARING,SLEEVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	23-Sep-08	27229.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93682"	"Procurement of:  CONTROLLER,HOIST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	05-Sep-08	17090.00	=""	="PARKER HANNIFIN AUST Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93683"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	20-Jun-08	27845.40	=""	="LAMINAR FLOW Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93684"	"Procurement of:  RESISTOR,VARIABLE,NONWIRE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jun-08	25749.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:50 PM	

+="CN93685"	"Procurement of:  LP INFLATOR ASSY WI;  MASK,DIVER'S;  GLOVES,DIVERS';  SUIT, DIVER'S PROTECTIVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	19-Jun-08	10219.84	=""	="CAPE BYRON IMPORTS & WHOLESALE *"	19-Jun-08 03:50 PM	

+="CN93686"	"Procurement of:  TARGET,RADAR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	15-May-08	30-Jun-08	48611.20	=""	="CHEMRING AUSTRALIA Pty Ltd"	19-Jun-08 03:51 PM	

+="CN91093-A1"	"Review of CFM System"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Data base management system software"	04-Jun-08	30-Sep-08	53100.00	="07/ACMA088"	="Metacorp Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93688"	"Procurement of:  MAT,CARGO"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	15-Jan-09	61300.00	=""	="ASCOT SPLICING & SUPPLIES"	19-Jun-08 03:51 PM	

+="CN93689"	"Procurement of:  HOOK,PELICAN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	22-Nov-08	26843.40	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93690"	"Procurement of:  FILTER ASSEMBLY,ELECTRICAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	19-Jul-08	16090.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93691"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Aug-08	10529.40	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:51 PM	

+="CN93692"	"Procurement of:  METER,ELECTRICAL FREQUENCY;  WATTMETER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	22545.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93693"	"Procurement of:  VALVE,DIAPHRAGM,STOP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	04-Sep-08	49358.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93687"	"motor vehicle spare parts"	="Department of Defence"	19-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jun-08	18-Jul-08	36199.37	=""	="LAND ROVER AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93694"	"Procurement of:  RELAY,ELECTROMAGNETIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	17-Feb-09	16193.90	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93695"	"Procurement of:  CONTROL,DATA TRANSMISSION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	09-Aug-08	16836.60	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93696"	"Procurement of:  DRAINAGE,AUTOMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	18-Aug-08	22533.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:52 PM	

+="CN93697"	"Procurement of:  PURIFIER,CENTRIFUGAL,0IL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	03-Jul-09	120000.00	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93698"	"Procurement of:  OSCILLATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jul-09	663203.20	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:52 PM	

+="CN93699"	"Procurement of:  MODUL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	16-Sep-09	188814.86	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93700"	"Procurement of:  TERMINATION KIT,CABLE ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	15-Feb-09	55485.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93701"	"Procurement of:  BEACON,SONAR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	06-Jul-08	15452.40	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93702"	"Procurement of:  VALVE,GLOBE;  COLLAR,SHAFT;  BACK UP RING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	24-Sep-08	83727.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 03:53 PM	

+="CN93703"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	19-May-09	21003.80	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93705"	"Procurement of:  VALVE,FLOAT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	30-Sep-08	28332.60	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:53 PM	

+="CN93706"	"Procurement of:  LIFTING ARRANGEMENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	08-Oct-08	40114.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93708"	"Procurement of:  PLATE,RETAINING,BEARING;  SHIM;  SHIM;  CAMSHAFT,ENGINE;  CAMSHAFT,ENGINE;  SCREW,CAP; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Nov-08	45377.63	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93709"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	17550.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:54 PM	

+="CN93704"	"Lease for Premises at Student Administration Building, James Cook University, Townsville, QLD 4811"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	02-Jan-07	01-Jan-10	18204.84	=""	="James Cook University"	19-Jun-08 03:54 PM	

+="CN93710"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	10486.00	=""	="RECORD MARINE Pty Ltd"	19-Jun-08 03:54 PM	

+="CN93711"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	12-Aug-08	15300.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 03:55 PM	

+="CN93712"	"Procurement of:  DUMMY LOAD,ELECTRICAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	06-Jan-09	11380.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 03:55 PM	

+="CN93707"	"Additional Priority Support Program Days"	="Australian Taxation Office"	19-Jun-08	="Software maintenance and support"	19-Jun-08	30-Jun-08	68548.00	=""	="IBM Australia Ltd"	19-Jun-08 03:55 PM	

+="CN93713"	"Procurement of:  ANTENNA SIMULATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	13-Sep-08	11880.69	=""	="THALES AUSTRALIA"	19-Jun-08 03:55 PM	

+="CN93714"	"Procurement of:  CART,AVIATION GAS SUPPORT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	10-Aug-08	249890.00	=""	="MONZ Ltd"	19-Jun-08 03:55 PM	

+="CN93715"	"Procurement of:  DAMPENER,VIBRATION,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	17-Dec-08	150211.44	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:55 PM	

+="CN93716"	"Procurement of:  TESTER,CABLE TENSIOMETER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	06-Feb-09	49440.60	=""	="BEAK RAST ENGINEERING"	19-Jun-08 03:55 PM	

+="CN93717"	"Procurement of:  SHACKLE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Nov-08	58187.20	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:56 PM	

+="CN91092"	"Consultancy of the administrative Incentive Pricing of radio frequency Spectrum"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Information technology consultation services"	03-Jun-08	02-Sep-08	79100.00	="07/ACMA072"	="Plum Consulting Ltd"	19-Jun-08 03:56 PM	

+="CN93718"	"Procurement of:  DETECTOR,LIGHT INTENSITY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	31-Aug-08	220697.00	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:56 PM	

+="CN93720"	"Procurement of:  INDICATING BANJO BOLT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Jun-08	14196.00	=""	="A AND D INTERNATIONAL Pty Ltd"	19-Jun-08 03:56 PM	

+="CN93721"	"Procurement of:  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD;  VALVE ASSEMBLY,MANIFOLD"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	31-Jul-08	210951.10	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:56 PM	

+="CN93722"	"Procurement of:  TANK,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	07-Jul-08	65696.00	=""	="COMPAIR (AUSTRALASIA) Ltd"	19-Jun-08 03:57 PM	

+="CN93723"	"Procurement of:  ACCUMULATOR,PNEUMATIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	20-Nov-08	232803.12	=""	="H I FRASER Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93724"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Dec-08	27828.60	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93726"	"Procurement of:  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE;  BEARING,SLEEVE; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Nov-08	75492.00	=""	="RFD TECHNOLOGIES Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93727"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-May-09	77764.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 03:57 PM	

+="CN93728"	"Procurement of:  HOIST,CHAIN"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	20-Jun-08	19869.50	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93729"	"Procurement of:  BATHYTHERMOGRAPH;  PROBE, BATHYTHERMOGRAPH"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	22-Nov-08	298471.44	=""	="THALES UNDERWATER SYSTEMS Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93730"	"Procurement of:  SEAL,PLAIN ENCASED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	25-Jul-08	10650.00	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93731"	"Procurement of:  PANEL,INDICATING,LIGHT TRANSMITTING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	31-Aug-08	19503.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 03:58 PM	

+="CN91090"	"ACMA Server Co-Location Services"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Internet or intranet server application development services"	24-Mar-08	23-Mar-11	150000.00	="07/ACMA047"	="Frontline Hyperlink Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93732"	"Procurement of:  ANCHOR,MARINE,FLUKED;  ANCHOR,MARINE,FLUKED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	19-Oct-08	21533.00	=""	="BEAVER ENGINEERING Pty Ltd"	19-Jun-08 03:58 PM	

+="CN93733"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	13953.00	=""	="SONARTECH ATLAS"	19-Jun-08 03:58 PM	

+="CN93735"	"Procurement of:  PLATE,CATHODE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	15-Aug-08	20600.00	=""	="TSF ENGINEERING Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93736"	"Procurement of:  PANEL,CONTROL,ELECTRICAL-ELECTRONIC;  CIRCUIT CARD ASSEMBLY;  AMPLIFIER-POWER SUPPLY GROUP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Nov-08	45190.00	=""	="SITEP AUSTRALIA Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93737"	"Procurement of:  CLOCK,WALL;  DISPLAY,OPTOELECTRONIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	22-Jul-08	26960.00	=""	="INGRAMS CLOCKS Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93738"	"Procurement of:  FILTER,FLUID"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	23-Oct-08	35903.48	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93739"	"Procurement of:  COMPRESSOR,REFRIGERATION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	01-Aug-08	17500.00	=""	="HEATCRAFT AUSTRALIA Pty Ltd"	19-Jun-08 03:59 PM	

+="CN93740"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	03-Oct-08	16222.01	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93741"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-May-09	124455.76	=""	="SAAB SYSTEMS Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93742"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	09-Oct-08	85772.43	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93743"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	17-Feb-09	82950.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93744"	"Procurement of:  CONTROL,DISTRIBUTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	10-Jul-08	31008.00	=""	="INGRAMS CLOCKS Pty Ltd"	19-Jun-08 04:00 PM	

+="CN90515"	"Provision of internet safety activities."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Computer or network or internet security"	23-Jun-08	22-Jun-09	78000.00	="07/ACMA083"	="E-ngage Development Ltd"	19-Jun-08 04:00 PM	

+="CN93745"	"Procurement of:  CONVERTER-MONITOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	09-Mar-09	68661.90	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:00 PM	

+="CN93746"	"Procurement of:  FILTER,AIR,DIVING APPARATUS"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	22-Aug-08	13040.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:01 PM	

+="CN93747"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE;  SPACER,FLEXIBLE,PIPELINE; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	15-Aug-08	10274.50	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93748"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	24-Sep-08	16167.03	=""	="THALES AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93749"	"Procurement of:  OIL PUMP ASSEMBLY,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	12-Sep-08	15282.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93750"	"Procurement of:  INDICATOR,ANGLE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Nov-08	17200.00	=""	="INTERNATIONAL TECHNOLOGIES Pty L"	19-Jun-08 04:01 PM	

+="CN93751"	"Procurement of:  JUNCTION BOX;  PANEL,POWER DISTRIBUTION"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	05-Sep-08	15900.70	=""	="TENIX DEFENCE Pty Ltd"	19-Jun-08 04:01 PM	

+="CN93752"	"Procurement of:  PUMP,FUEL,METERING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	10-Nov-08	87206.75	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:01 PM	

+="CN93725"	"pharmaceuticals"	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	04-Jul-08	19965.00	=""	="Symbion"	19-Jun-08 04:01 PM	

+="CN93753"	"Procurement of:  COOLER,LUBRICATING OIL,ENGINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	10-Oct-08	29000.16	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:02 PM	

+="CN93754"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	27-Sep-08	12359.40	=""	="THALES AUSTRALIA"	19-Jun-08 04:02 PM	

+="CN93755"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	31-Oct-08	50330.94	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:02 PM	

+="CN93756"	"Procurement of:  FAN,CENTRIFUGAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	12-Jan-09	17421.00	=""	="NOSKE-KAESER NZ Ltd"	19-Jun-08 04:02 PM	

+="CN93758"	"Procurement of:  GRINDING MACHINE,MACHINE TOOL ATTACHMENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	23-Sep-08	96480.00	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 04:02 PM	

+="CN90992"	"Additional costs associated with Radcomms 08 conference at Sofitel, Melbourne"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Conference centres"	30-Apr-08	02-May-08	14521.70	=""	="Sofitel Melbourne"	19-Jun-08 04:03 PM	

+="CN93759"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	12191.10	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93760"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	21870.10	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93761"	"Procurement of:  RING SET,PISTON;  VALVE,CONCENTRIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	25-Jun-08	11084.45	=""	="COMPAIR (AUSTRALASIA) Ltd"	19-Jun-08 04:03 PM	

+="CN93762"	"Procurement of:  HOSE,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	13069.80	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93763"	"Procurement of:  LIFE PRESERVER,VEST"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	19-Aug-08	35100.00	=""	="SOS MARINE A DIV OF CASE INVESTM"	19-Jun-08 04:03 PM	

+="CN93764"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	22293.80	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:03 PM	

+="CN93765"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	25708.85	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93766"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jun-08	19568.95	=""	="BAKER & PROVAN Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93767"	"Procurement of:  MODULE ENTREE,SORTI"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	05-Aug-08	14318.00	=""	="A AND D INTERNATIONAL Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93768"	"Procurement of:  CHAIR,ROTARY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jul-08	15804.50	=""	="OFFICE ORGANIZATION Pty Ltd"	19-Jun-08 04:04 PM	

+="CN93769"	"Procurement of:  COVER,FOLDING COT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	28-Jul-08	10250.00	=""	="NANS TARPS"	19-Jun-08 04:04 PM	

+="CN93770"	"Procurement of:  TUBE ASSEMBLY,METAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	27-Jul-08	76000.00	=""	="GTSA ENGINEERING"	19-Jun-08 04:04 PM	

+="CN93771"	"Procurement of:  CABLE ASSEMBLY,TELEPHONE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	05-Sep-08	86160.60	=""	="THALES AUSTRALIA"	19-Jun-08 04:04 PM	

+="CN93772"	"Procurement of:  INDICATOR,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	19-Sep-08	16502.20	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:05 PM	

+="CN93773"	"Procurement of:  HEATER,WATER,ELECTRIC"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	25-Dec-08	35401.18	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:05 PM	

+="CN93774"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,LIFT-CHECK;  VALVE,STOP-CHECK; + MORE..."	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	25-Feb-09	182992.84	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93775"	"Procurement of:  CONTROL,ANTENNA COUPLER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	27-Oct-08	105720.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93734"	"Lease for Premises at 340 Ross River Rd, Aitkenvale, Townsville, North QLD 4814"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-May-08	30-Apr-13	708180.00	=""	="Rapisarda Nominees Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93776"	"Procurement of:  BLOCK SET,ENGINE DR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	06-Sep-08	182997.96	=""	="DIESELS AND COMPONENTS Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93777"	"Procurement of:  HEAT GUN, THERMOPLASTIC WELDING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	01-Jul-08	27000.00	=""	="PLASTRAL Pty Ltd"	19-Jun-08 04:05 PM	

+="CN93778"	"Procurement of:  FACE ASSEMBLY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	29-Jul-08	26774.40	=""	="WARTSILA AUSTRALIA Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93779"	"Procurement of:  SEAL ASSEMBLY,SHAFT,SPRING LOADED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	19-Jun-08	11980.00	=""	="SOUTHERN PUMPING SPECIALISTS"	19-Jun-08 04:06 PM	

+="CN93780"	"Procurement of:  VALVE,STOP-CHECK;  VALVE,STOP-CHECK;  VALVE,STOP-CHECK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	22-Dec-08	29784.58	=""	="FRONTLINE AUSTRALASIA Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93781"	"Procurement of:  HATCH,MARINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	28-Aug-08	17614.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	19-Jun-08 04:06 PM	

+="CN93782"	"Procurement of:  DETECTOR KIT,CHEMICAL AGENT;  INDICATOR TUBE,GAS"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	20400.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:06 PM	

+="CN93784"	"Procurement of:  GOVERNOR,DIESEL ENGINE;  TRANSMITTER,LIQUID QUANTITY;  SHIPPING AND"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	06-Dec-08	321438.98	=""	="MTU DETROIT DIESEL AUSTRALIA"	19-Jun-08 04:06 PM	

+="CN93785"	"Procurement of:  SHEET,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	28-Aug-08	22000.00	=""	="JBM AGENCIES Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93786"	"Procurement of:  PARTS KIT,SEPARATOR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	29-Jun-08	16066.65	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93787"	"Procurement of:  TANK,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	01-Aug-08	43359.65	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93783"	"RAINCOATS"	="Defence Materiel Organisation"	19-Jun-08	="Clothing accessories"	10-Jun-08	22-Oct-08	91509.00	=""	="AGMER DRYWEAR AUSTRALIA"	19-Jun-08 04:07 PM	

+="CN93788"	"Procurement of:  MOUNT,RESILIENT,GENERAL PURPOSE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	29-Aug-08	10795.85	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93789"	"Procurement of:  MATTRESS,BED"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	01-May-08	01-Jul-08	14260.00	=""	="SLUMBERCARE BEDDING"	19-Jun-08 04:07 PM	

+="CN93790"	"Procurement of:  SPROCKET WHEEL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	15-Dec-08	16693.91	=""	="ASC Pty Ltd"	19-Jun-08 04:07 PM	

+="CN93791"	"Procurement of:  LOUDSPEAKER-AMPLIFIER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	15-Jan-09	38452.71	=""	="THALES AUSTRALIA"	19-Jun-08 04:08 PM	

+="CN93792"	"Procurement of:  CLAMP,LOOP"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	05-May-08	26-Sep-08	17994.50	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN93793"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	06-May-08	02-Mar-09	511808.11	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN93795"	"Procurement of:  REPAIR KIT,VALVE;  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	07-May-08	23-Mar-09	145846.71	=""	="ASC Pty Ltd"	19-Jun-08 04:08 PM	

+="CN90518"	"Translation of consumer information on ACMA website on Rights & Services."	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Transcription or translation systems or kits"	30-May-08	01-Jul-08	15924.43	=""	="eTranslate"	19-Jun-08 04:08 PM	

+="CN93796"	"Procurement of:  MOTOR,ALTERNATING CURRENT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	12-May-08	09-Oct-08	17944.00	=""	="AUSTRALIAN PUMP INDUSTRIES Pty *"	19-Jun-08 04:08 PM	

+="CN93798"	"Procurement of:  VALVE,BALL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	08-May-08	04-Dec-08	31259.10	=""	="ASC Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93799"	"Procurement of:  ELEMENT,REVERSE OSM;  GAGE,PRESSURE,DIAL INDICATING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	09-May-08	11-Aug-08	25975.82	=""	="ASC Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93800"	"Procurement of:  MASK,AIR LINE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	37293.12	=""	="MSA (AUST) Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93801"	"Procurement of:  MODIFICATION KIT, MASK"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	13-May-08	19-Jun-08	11900.00	=""	="MSA (AUST) Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93802"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	14-May-08	19-Jun-08	16043.00	=""	="CEA TECHNOLOGIES Pty Ltd"	19-Jun-08 04:09 PM	

+="CN93803"	"Procurement of:  INDICATOR TUBE,GAS;  TUBE SET,GAS-VAPOUR"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	19-May-08	19-Jun-08	20220.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93805"	"Procurement of:  CABLE ASSEMBLY,RADIO FREQUENCY"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	19-Jul-08	123453.15	=""	="ASC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93806"	"Procurement of:  PARTS KIT,FOUR WHEEL DRIVE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	21-May-08	19-Nov-08	70219.98	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	19-Jun-08 04:10 PM	

+="CN93807"	"Procurement of:  GUIDE,TORSIONAL VIBRATION DAMPER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	20-May-08	28-Aug-08	23617.44	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Jun-08 04:10 PM	

+="CN93808"	"Procurement of:  WASHER,FLAT;  CLAMP,LOOP;  SETSCREW;  NUT,PLAIN,HEXAGON;  WASHER,FLAT"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	10-Nov-08	36980.00	=""	="ASC Pty Ltd"	19-Jun-08 04:10 PM	

+="CN93809"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	21-Aug-08	13267.76	=""	="THALES AUSTRALIA"	19-Jun-08 04:11 PM	

+="CN93810"	"Procurement of:  CABLE ASSEMBLY,SPECIAL"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	22-May-08	13-Oct-08	11854.64	=""	="THALES AUSTRALIA"	19-Jun-08 04:11 PM	

+="CN93811"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	23-May-08	19-Jun-08	20000.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93812"	"Procurement of:  REGULATOR,VOLTAGE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	26-May-08	24-Aug-08	23040.00	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93813"	"Procurement of:  TRANSMITTER,PRESSURE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Aug-08	11149.88	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93814"	"Procurement of:  THERMOMETER,INDICATING,RESISTANCE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	27-May-08	25-Aug-08	12316.64	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93815"	"Procurement of:  SHIELD ASSEMBLY,BEARING;  SHIELD ASSEMBLY,BEARING"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	28-May-08	27-Jul-08	46925.28	=""	="HEDEMORA DIESEL AUSTRALIA"	19-Jun-08 04:11 PM	

+="CN93816"	"Procurement of:  O-RING;  GASKET;  SETSCREW;  SUPPORT,LOWER;  SUPPORT,UPPER;  NUT,PLAIN,HEXAGON"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	13-Oct-08	39067.90	=""	="ASC Pty Ltd"	19-Jun-08 04:11 PM	

+="CN93817"	"Procurement of:  LOUDSPEAKER-AMPLIFIER"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	29-May-08	27-Feb-09	77371.20	=""	="THALES AUSTRALIA"	19-Jun-08 04:12 PM	

+="CN93818"	"Procurement of:  VALVE,SAFETY RELIEF;  VALVE,STOP-RELEASE"	="Defence Materiel Organisation"	19-Jun-08	="Marine transport"	30-May-08	27-Sep-08	22581.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	19-Jun-08 04:12 PM	

+="CN90517"	"Contractor policy/project coordinator"	="Australian Communications and Media Authority (ACMA)"	19-Jun-08	="Temporary personnel services"	02-Jun-08	05-Sep-08	31416.00	="05/ACMA013"	="Hudson Global Resources(Aust) Pty Ltd"	19-Jun-08 04:13 PM	

+="CN93820"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	31-Jan-08	27-Mar-08	17444.21	=""	="BLAKE DAWSON WALDRON"	19-Jun-08 04:16 PM	

+="CN93821"	"Lease for Premises at 10 Hawkins Place, Emerald, QLD 4720"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	22-Oct-07	21-Sep-10	117315.00	=""	="Army Reserve Depot"	19-Jun-08 04:18 PM	

+="CN93804"	"Provision of Research Services"	="Department of Immigration and Citizenship"	19-Jun-08	="Textbook or research publishing"	30-Mar-08	30-Jun-08	70000.00	=""	="Australian National University"	19-Jun-08 04:21 PM	

+="CN93823"	"Adobe License Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="License management software"	02-Apr-08	09-Apr-08	16596.18	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	19-Jun-08 04:23 PM	

+="CN93824"	"Lease for Premises at 113-123 Parramatta Rd and 44-50 Powell Street"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	15-May-07	15-May-09	32153264.00	=""	="A>R>M Holdings Pty Ltd & Renlarn Pty Ltd"	19-Jun-08 04:25 PM	

+="CN93826"	"PURCHASE OF HEADWEAR AGAINST STANDING OFFER 46278"	="Defence Materiel Organisation"	19-Jun-08	="Hats"	13-Jun-08	17-Oct-08	91522.20	=""	="MOUNTCASTLE PTY LTD"	19-Jun-08 04:27 PM	

+="CN93825"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	19-Jun-08	="Military fixed wing aircraft"	17-Jun-08	16-Aug-08	35596.00	=""	="MILSPEC"	19-Jun-08 04:28 PM	

+="CN93827-A1"	"Insolvency Administration (Variation)"	="Australian Securities and Investments Commission"	19-Jun-08	="Accounting services"	01-Dec-07	31-Mar-08	12500.00	=""	="Grant Thornton Services"	19-Jun-08 04:34 PM	

+="CN93829"	"Lease for Premises at Site 754, Camden Airport, Aerodrome Rd Camden NSW 2570"	="Department of Defence"	19-Jun-08	="Lease and rental of property or building"	01-Jul-08	30-Jun-13	127491.60	=""	="Camden Airport Limited"	19-Jun-08 04:38 PM	

+="CN93841"	"SHIPPING PLASTIC BOXES"	="Department of Defence"	19-Jun-08	="Tool chests or boxes or cabinets"	21-May-08	19-Jun-08	11055.00	=""	="TRIMCAST"	19-Jun-08 04:47 PM	

+="CN93797"	"  DRILL BONE PNEUMATIC , COUPLING ATTACHMENT  "	="Defence Materiel Organisation"	19-Jun-08	="Medical Equipment and Accessories and Supplies"	21-Aug-07	31-Oct-07	10226.70	="3-sept-07"	="Laerdal Pty Ltd"	19-Jun-08 04:47 PM	

+="CN93844"	"DESERT FOX BOOTS"	="Department of Defence"	19-Jun-08	="Safety footwear"	26-Mar-08	19-Jun-08	27225.00	=""	="SASSPORT"	19-Jun-08 05:01 PM	

+="CN93842"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Business law services"	12-Mar-08	20-Apr-08	12139.93	=""	="FREEHILLS"	19-Jun-08 05:05 PM	

+="CN93845"	" Pool Vehicle Lease Charges for June 08 "	="Office of the Australian Building and Construction Commissioner (ABCC)"	19-Jun-08	="Vehicle leasing"	01-Jun-08	30-Jun-08	15800.11	=""	="LEASEPLAN AUSTRALIA LTD"	19-Jun-08 05:10 PM	

+="CN93847"	"Printing NAT71874 Concesions for small business entities"	="Australian Taxation Office"	19-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	19-Jun-08	03-Jul-08	28388.89	=""	="Blue Star Print Group"	19-Jun-08 05:58 PM	

+="CN93848"	" DOZER 850J (VARIOUS PARTS) "	="Defence Materiel Organisation"	19-Jun-08	="Vehicle bodies and trailers"	18-Jun-08	23-Jun-08	19880.05	=""	="HITACHI CONSTRUCTION MACHINERY"	19-Jun-08 06:27 PM	

+="CN93849"	"Fitout of Level 2, Centrelink Perth Call Centre, Osborne Park WA"	="Centrelink"	19-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	04-Jun-08	30-Jun-08	71830.00	=""	="National Interiors"	19-Jun-08 07:09 PM	

+="CN93850"	" Aircraft Spares  QTY 1 P/N SSP-4000-3D-G "	="Defence Materiel Organisation"	20-Jun-08	="Aircraft"	17-Apr-08	15-May-08	17611.00	=""	="Davidson Measurement"	20-Jun-08 07:23 AM	

+="CN93851"	"Training DVD - How to have positive conversations in the workplace - Preparation and filming subject expert."	="Centrelink"	20-Jun-08	="Specialised educational services"	17-Dec-07	09-Feb-08	13200.00	="2005/014"	="Institute of Executive Coaching"	20-Jun-08 07:43 AM	

+="CN93852"	"MEDICAL SUPPLIES"	="Department of Defence"	20-Jun-08	="Medical lamps"	19-Jun-08	24-Jun-08	34812.80	=""	="HEINE AUSTRALIA PTY LTD"	20-Jun-08 07:49 AM	

+="CN93853"	"MEDICAL SUPPLIES"	="Department of Defence"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	19-Jun-08	24-Jun-08	20151.37	=""	="WELCH ALLYN AUSTRALIA PTY LTD"	20-Jun-08 07:54 AM	

+="CN93855"	"Supply of Communication services and equipment"	="Australian Federal Police"	20-Jun-08	="Communications Devices and Accessories"	23-Mar-07	23-Mar-10	38313.00	=""	="Motorola Australia Pty Limited"	20-Jun-08 08:31 AM	

+="CN93856"	"Aviation Spares, Repair of tail boom assy."	="Defence Materiel Organisation"	20-Jun-08	="Military rotary wing aircraft"	29-Oct-07	31-Jul-08	19800.94	=""	="Turbomeca A/Asia Pty Ltd"	20-Jun-08 08:34 AM	

+="CN93857"	"SHIPPING CONTAINERS"	="Department of Defence"	20-Jun-08	="Containers and storage"	17-Jun-08	29-Jun-08	17700.00	=""	="SIMPLY CONTAINERS"	20-Jun-08 08:43 AM	

+="CN93858"	"Anit-Venom. (Various)"	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	03-Jul-08	17846.95	=""	="CSL Biotherapies"	20-Jun-08 08:43 AM	

+="CN93859"	"ASLAV REFRIFERATOR"	="Department of Defence"	20-Jun-08	="Armoured fighting vehicles"	12-Jun-08	20-Jul-08	13530.00	=""	="NORCOAST REFIGERATION COMPANY PTY LTD"	20-Jun-08 08:56 AM	

+="CN93861"	"Pharmaceuticals"	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	31-May-08	28-Jun-08	31960.09	=""	="Symbion"	20-Jun-08 09:05 AM	

+="CN93863-A3"	" Lease at 15-19 Queen St Perth, Western Australia. "	="Department of Human Services"	20-Jun-08	="Lease and rental of property or building"	13-Nov-06	12-Nov-12	1481361.64	=""	="Jandakot Pastoral Pty Ltd"	20-Jun-08 09:09 AM	

+="CN93864"	"Accounting Services"	="Royal Australian Mint"	20-Jun-08	="Accounting services"	18-Mar-08	31-Dec-08	75000.00	=""	="Caskadel Pty Ltd"	20-Jun-08 09:20 AM	

+="CN93865"	"Transformation Management"	="Royal Australian Mint"	20-Jun-08	="Business and corporate management consultation services"	01-May-08	30-Sep-08	76182.00	="M2008-006"	="Grosvenor Management Consulting Pty Ltd"	20-Jun-08 09:37 AM	

+="CN93866"	"Planning and Support Services"	="Department of the Prime Minister and Cabinet"	20-Jun-08	="National planning services"	16-Jun-08	19-Jun-09	50000.00	=""	="Geoffrey Mulgan"	20-Jun-08 09:37 AM	

+="CN93867"	"Pharmaceuticals"	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	04-Jun-08	02-Jul-08	32891.10	=""	="Symbion"	20-Jun-08 09:48 AM	

+="CN16985"	"Review the Hospital Information Performance Improvement Program (HIPIP) (GAPS ID: 1681315)"	="Department of Health and Ageing"	20-Jun-08	="Management and Business Professionals and Administrative Services"	03-May-07	31-Aug-07	86978.68	=""	="THE TRUSTEE FOR VAN KONKELENBERG FA"	20-Jun-08 09:51 AM	

+="CN90716"	" upgrad of trim to V6.2 "	="Royal Australian Mint"	20-Jun-08	="Software"	30-May-08	30-May-08	24343.00	=""	="MICROHELP"	20-Jun-08 10:05 AM	

+="CN93868"	"Extension Test Lead C2007/11159 01JUL08-30NOV09"	="IP Australia"	20-Jun-08	="Temporary personnel services"	27-May-08	30-Nov-09	297000.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	20-Jun-08 10:12 AM	

+="CN93869"	"Senior Project Manager C2007/12906"	="IP Australia"	20-Jun-08	="Temporary personnel services"	05-Jun-08	03-Jul-08	25744.00	="IPA2006/11854-5"	="CLICKS RECRUIT PTY LTD"	20-Jun-08 10:12 AM	

+="CN93870"	"CA Performance testing of Objective Application"	="IP Australia"	20-Jun-08	="Software maintenance and support"	22-May-08	30-Jun-08	21120.00	="IPAC2008/12013"	="CA (Pacific) Pty Ltd"	20-Jun-08 10:12 AM	

+="CN93871"	"BIMS Online Survey 2008-2010"	="IP Australia"	20-Jun-08	="Computer services"	26-May-08	30-Jun-10	32655.00	="IPAC200811910"	="CLIENTWISE PTY LTD"	20-Jun-08 10:12 AM	

+="CN93872"	"Workplace Assesor Training,  Assesements Booklets for Trade Marks"	="IP Australia"	20-Jun-08	="Human resources services"	26-May-08	30-Jun-08	23942.40	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	20-Jun-08 10:12 AM	

+="CN93873"	"Engagement of Project Manager C2008/11740"	="IP Australia"	20-Jun-08	="Temporary personnel services"	04-Jun-08	30-Jan-09	57240.00	="IPAC2008/11740"	="ONLINE 89 PTY LTD"	20-Jun-08 10:12 AM	

+="CN93874"	"Engagement of Unix Administrator C2008/11152"	="IP Australia"	20-Jun-08	="Temporary personnel services"	04-Jun-08	30-Dec-08	108000.00	="IPAC2008/11152"	="Oakton AA Services Pty Ltd"	20-Jun-08 10:13 AM	

+="CN93875"	"Re engage of RFQ C2008/11679 Test Lead"	="IP Australia"	20-Jun-08	="Temporary personnel services"	05-Jun-08	30-Nov-09	259425.00	="IPAC2008/11679"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 10:13 AM	

+="CN93876"	"Oracle Software Updates Licence and Support 2008"	="IP Australia"	20-Jun-08	="Software maintenance and support"	06-Jun-08	31-Jul-09	374822.71	="IPAC2008/"	="Oracle Corporation Australia Pty"	20-Jun-08 10:13 AM	

+="CN93877"	"Legal Services Panel - PLF001 Advise re CSN in COG"	="IP Australia"	20-Jun-08	="Legal services"	10-Jun-08	30-Jun-08	10000.00	="IPAC2008/12274"	="PHILLIPS FOX (ACT)"	20-Jun-08 10:13 AM	

+="CN93878"	"Review of COG Structure"	="IP Australia"	20-Jun-08	="Temporary personnel services"	10-Jun-08	25-Jun-08	34134.10	="IPAC2008/12280"	="Oakton AA Services Pty Ltd"	20-Jun-08 10:13 AM	

+="CN93879"	"Engage of J2EE Senior Analyst RFT C2008/11835"	="IP Australia"	20-Jun-08	="Temporary personnel services"	11-Jun-08	30-Jun-09	220200.00	="IPAC2008/11835"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 10:13 AM	

+="CN93880"	"Engage Senior Project Manager RFQ C2008/11916"	="IP Australia"	20-Jun-08	="Temporary personnel services"	13-Jun-08	16-Jun-09	269104.00	="IPAC2008/11916"	="ICON RECRUITMENT PTY LTD"	20-Jun-08 10:14 AM	

+="CN93881"	"Sherman v Merck & Co."	="IP Australia"	20-Jun-08	="Legal services"	04-Jun-08	10-Nov-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 10:14 AM	

+="CN93882"	"Fabricated Sandwich Preparation Unit"	="IP Australia"	20-Jun-08	="Building and Construction and Maintenance Services"	06-May-08	27-May-08	10538.00	=""	="Border Stainless Steel Pty Ltd"	20-Jun-08 10:14 AM	

+="CN93883"	"Report produced by Intellectual Property"	="IP Australia"	20-Jun-08	="Business administration services"	26-May-08	26-May-08	33000.00	=""	="UNIVERSITY OF MELBOURNE"	20-Jun-08 10:14 AM	

+="CN93884"	"Content Keeper 24 Months Subscription"	="IP Australia"	20-Jun-08	="Software maintenance and support"	27-May-08	24-May-10	27870.36	=""	="OPEN SYSTEMS AUSTRALIA PTY LTD"	20-Jun-08 10:14 AM	

+="CN93885"	"Oracle Software Update & Licences Support"	="IP Australia"	20-Jun-08	="Software maintenance and support"	27-May-08	31-Jul-09	374822.71	=""	="Oracle Corporation Australia Pty"	20-Jun-08 10:14 AM	

+="CN93886"	"Acrobat Maintenance 24 Months"	="IP Australia"	20-Jun-08	="Software maintenance and support"	27-May-08	27-May-08	41370.00	=""	="Data#3 Limited"	20-Jun-08 10:14 AM	

+="CN93887"	"AGS Interpharma V Eli Lilly VID160/2008"	="IP Australia"	20-Jun-08	="Legal services"	04-Jun-08	30-Jun-09	10000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 10:15 AM	

+="CN93888"	"25xOracle DB Enterprise Edition licences"	="IP Australia"	20-Jun-08	="Software maintenance and support"	06-Jun-08	20-Jun-08	23756.76	=""	="Attain IT Pty Ltd"	20-Jun-08 10:15 AM	

+="CN93889"	"Cisco Redundant Power Supply"	="IP Australia"	20-Jun-08	="Computer services"	10-Jun-08	11-Jun-08	11506.24	=""	="CERULEAN SOLUTION LTD C/O IBM AUSTR"	20-Jun-08 10:15 AM	

+="CN93890"	"CISCO 2851 Bundle with maintenance"	="IP Australia"	20-Jun-08	="Computer services"	11-Jun-08	20-Jun-08	10950.20	=""	="CERULEAN SOLUTION LTD C/O IBM AUSTR"	20-Jun-08 10:15 AM	

+="CN93891"	"PABX system software procurement"	="IP Australia"	20-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	09-Apr-08	01-Aug-09	53828.50	="IPAC2006/10842"	="INTEG COMMUNICATION SOLUTIONS PTY L"	20-Jun-08 10:15 AM	

+="CN93892"	"Data and Electrical Cabling Services"	="IP Australia"	20-Jun-08	="Electrical equipment and components and supplies"	22-May-08	25-Aug-09	20000.00	="IPAC2006/10417"	="HEYDAY GROUP PTY LTD"	20-Jun-08 10:15 AM	

+="CN93893"	"Microsoft Server 2003 Expert"	="IP Australia"	20-Jun-08	="Temporary personnel services"	05-Jun-08	05-Jun-08	15000.00	="IPA2006/11854-5"	="CLICKS RECRUIT PTY LTD"	20-Jun-08 10:15 AM	

+="CN93894"	" Mask, Airway, Laryngeal. "	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	10-Jul-08	35090.00	=""	="LMA Pacmed"	20-Jun-08 10:24 AM	

+="CN93895"	"Construction Management Frankston refurbishment extra works"	="Centrelink"	20-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-Jun-08	21-Jun-08	17820.00	=""	="Bronts Commercial Interiors pty ltd"	20-Jun-08 10:24 AM	

+="CN93898"	"Medical Consumables"	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	04-Jul-08	16117.20	=""	="Laerdal"	20-Jun-08 11:07 AM	

+="CN93899"	"Services including research and development and facilitation of Roundtable event."	="Australian Human Rights Commission"	20-Jun-08	="Temporary research and development services"	21-May-08	15-Nov-08	22000.00	=""	="Myriad Consulting Pty Ltd"	20-Jun-08 11:14 AM	

+="CN93901"	"Design, Artwork and Printing for Annual Report 2007-08"	="Family Court of Australia"	20-Jun-08	="Graphic design"	23-May-08	29-Sep-08	24530.00	=""	="Design Direction"	20-Jun-08 11:19 AM	

+="CN93903"	"DUCT ASSEMBLY, BLEED AIR - NSN: 1560/14728560"	="Defence Materiel Organisation"	20-Jun-08	="Military transport aircraft"	19-Jun-08	26-Jun-08	20380.30	=""	="MILSPEC SERVICES PTY LTD"	20-Jun-08 11:35 AM	

+="CN93904"	"Medical Consumables"	="Defence Materiel Organisation"	20-Jun-08	="Medical Equipment and Accessories and Supplies"	10-Jun-08	08-Jul-08	19309.40	=""	="BAXTER HEALTHCARE PTY LTD"	20-Jun-08 11:36 AM	

+="CN93905"	" AIRCRAFT SPARES  NSN: 9525-01-323-1449  QTY: 10 "	="Defence Materiel Organisation"	20-Jun-08	="Military transport helicopters"	20-Jun-08	08-Oct-08	13138.80	=""	="AIRNSEA SAFETY PTY LTD"	20-Jun-08 11:52 AM	

+="CN93906"	"Fitout Management - Centrelink Northam office, Area WA"	="Centrelink"	20-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	03-Jun-08	20-Jun-08	11400.00	=""	="Interiors Australia Group"	20-Jun-08 11:54 AM	

+="CN93909"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	21-May-08	31-Aug-08	24000.00	="06/18411"	="Oakton AA Services Pty Ltd"	20-Jun-08 12:55 PM	

+="CN93910"	"Guarding service"	="Attorney-General's Department"	20-Jun-08	="Safety or security systems installation"	21-May-08	31-May-09	21438.07	=""	="Chubb Security Personnel Pty Ltd"	20-Jun-08 12:55 PM	

+="CN93911"	"Guarding service"	="Attorney-General's Department"	20-Jun-08	="Security guard services"	21-May-08	31-May-09	21438.07	=""	="Chubb Security Personnel Pty Ltd"	20-Jun-08 12:55 PM	

+="CN93912"	"Travel"	="Attorney-General's Department"	20-Jun-08	="Commercial aeroplane travel"	22-May-08	31-Dec-08	13291.20	=""	="Department of Defence"	20-Jun-08 12:55 PM	

+="CN93913"	"Facilitaion"	="Attorney-General's Department"	20-Jun-08	="Trade facilitation"	22-May-08	31-Dec-08	22000.00	="06/4680"	="Australian Capital Training Group P"	20-Jun-08 12:55 PM	

+="CN93914"	"Literature"	="Attorney-General's Department"	20-Jun-08	="Reference books"	21-May-08	31-Dec-08	10000.00	=""	="MONASH UNIVERSITY"	20-Jun-08 12:55 PM	

+="CN93916"	"Program Reaearch"	="Attorney-General's Department"	20-Jun-08	="Social welfare services"	19-May-08	31-Dec-08	19000.00	=""	="Quality Management Solutions"	20-Jun-08 12:56 PM	

+="CN93917"	"Renewal"	="Attorney-General's Department"	20-Jun-08	="Telecommunications media services"	20-May-08	31-Dec-08	31984.72	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 12:56 PM	

+="CN93918"	"Accomodation"	="Attorney-General's Department"	20-Jun-08	="Hotel rooms"	20-May-08	31-Dec-08	14346.81	=""	="Australian Embassy Beijing"	20-Jun-08 12:56 PM	

+="CN93919"	"Rental service"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	20-May-08	31-Dec-08	25666.67	=""	="United Process Solutions Pty Limite"	20-Jun-08 12:56 PM	

+="CN93920"	"Seminar"	="Attorney-General's Department"	20-Jun-08	="Theological seminaries"	22-May-08	31-Dec-08	11244.20	=""	="Red Carpet Ltd"	20-Jun-08 12:56 PM	

+="CN93921"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	22-May-08	31-Jul-09	42000.00	=""	="T & T Services"	20-Jun-08 12:57 PM	

+="CN93922"	"Rental service"	="Attorney-General's Department"	20-Jun-08	="Commercial or industrial facility rental"	22-May-08	30-Jun-08	48000.00	=""	="Keith MacDonald Pty Ltd"	20-Jun-08 12:57 PM	

+="CN93923"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	23-May-08	30-Jun-08	36000.00	="05/19755"	="Ultra Care Cleaning Services"	20-Jun-08 12:57 PM	

+="CN93924"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	23-May-08	30-Jun-08	18000.00	="05/19755"	="Ultra Care Cleaning Services"	20-Jun-08 12:57 PM	

+="CN93925"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	23-May-08	30-Jun-10	36000.00	="05/19755"	="Ultra Care Cleaning Services"	20-Jun-08 12:57 PM	

+="CN93926"	"Security"	="Attorney-General's Department"	20-Jun-08	="Environmental security control services"	22-May-08	01-Dec-08	36000.00	=""	="TAC Pacific Pty Ltd"	20-Jun-08 12:57 PM	

+="CN93927"	"Medical Services"	="Attorney-General's Department"	20-Jun-08	="Emergency medical services supplies"	22-May-08	06-Jun-08	30000.00	="85120000"	="Bradley G Gray"	20-Jun-08 12:57 PM	

+="CN93928"	"Equipment"	="Attorney-General's Department"	20-Jun-08	="Cabbing equipment"	22-May-08	31-Dec-08	11095.92	=""	="Anderson Corporation"	20-Jun-08 12:58 PM	

+="CN93929"	"Equipment"	="Attorney-General's Department"	20-Jun-08	="Cabbing equipment"	22-May-08	31-Dec-08	23853.50	=""	="Anderson Corporation"	20-Jun-08 12:58 PM	

+="CN93930"	"Fuel costs"	="Attorney-General's Department"	20-Jun-08	="Operating lease finance service"	22-May-08	31-Dec-10	24000.00	=""	="LEASE PLAN AUSTRALIA LTD"	20-Jun-08 12:58 PM	

+="CN93931"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General purpose cleaners"	22-May-08	31-Jul-09	30241.20	=""	="Halfhide Pty Ltd"	20-Jun-08 12:58 PM	

+="CN93932"	"Training Comsultant"	="Attorney-General's Department"	20-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	19800.00	=""	="Jakeman Business Solutions Pty Ltd"	20-Jun-08 12:58 PM	

+="CN93933"	"Telecommunication service"	="Attorney-General's Department"	20-Jun-08	="Enhanced telecommunications services"	14-May-08	31-Dec-08	374000.00	=""	="Telstra"	20-Jun-08 12:58 PM	

+="CN93934"	"Telecommunication service"	="Attorney-General's Department"	20-Jun-08	="Fibre telecommunications services"	14-May-08	14-May-08	198000.00	=""	="Telstra"	20-Jun-08 12:59 PM	

+="CN93935"	"Journal Subscription"	="Attorney-General's Department"	20-Jun-08	="Electronic magazines"	14-May-08	31-Dec-08	10450.00	=""	="DA Information Services Pty Ltd"	20-Jun-08 12:59 PM	

+="CN93936"	"Pump & storage"	="Attorney-General's Department"	20-Jun-08	="Water and wastewater treatment supply and disposal"	14-May-08	14-May-08	933000.00	=""	="Water Corporation"	20-Jun-08 12:59 PM	

+="CN93937"	"Internet services"	="Attorney-General's Department"	20-Jun-08	="Mobile internet services software"	14-May-08	31-Dec-08	61606.88	=""	="Cybertrust Australia Pty Ltd"	20-Jun-08 12:59 PM	

+="CN93938"	"Consulting services"	="Attorney-General's Department"	20-Jun-08	="Business intelligence consulting services"	14-May-08	31-Oct-08	33000.00	=""	="ANTHONY BLUNN"	20-Jun-08 12:59 PM	

+="CN93939"	"Journal Subscription Renewal"	="Attorney-General's Department"	20-Jun-08	="Information services"	12-May-08	12-May-08	13750.00	=""	="Swets Information Services"	20-Jun-08 12:59 PM	

+="CN93940"	"Electronic Equipment"	="Attorney-General's Department"	20-Jun-08	="Electronic manufacturing machinery and equipment and accessories"	13-May-08	01-Jun-08	11306.90	=""	="IRT Electronics Pty Ltd"	20-Jun-08 12:59 PM	

+="CN93941"	"Training services"	="Attorney-General's Department"	20-Jun-08	="Computer based training software"	13-May-08	31-Dec-08	11830.01	=""	="Altarama Information Systems"	20-Jun-08 01:00 PM	

+="CN93942"	"Education Program"	="Attorney-General's Department"	20-Jun-08	="Educational certificates or diplomas"	13-May-08	31-Dec-08	11495.00	=""	="JAMES COOK UNIVERSITY"	20-Jun-08 01:00 PM	

+="CN93943"	"Camera Equipment"	="Attorney-General's Department"	20-Jun-08	="Camera accessories"	13-May-08	01-Jun-08	70995.10	=""	="Tandberg Television Pty Ltd"	20-Jun-08 01:00 PM	

+="CN93944"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Temporary information technology networking specialists"	15-May-08	30-Nov-08	85800.00	=""	="HEDLOC"	20-Jun-08 01:00 PM	

+="CN93945"	"Function"	="Attorney-General's Department"	20-Jun-08	="Food service dinnerware"	16-May-08	31-May-08	16525.75	=""	="Darling Harbour Convention & Exhibi"	20-Jun-08 01:00 PM	

+="CN93946"	"Software version upgrade"	="Attorney-General's Department"	20-Jun-08	="Information technology consultation services"	16-May-08	31-Dec-08	14502.73	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 01:00 PM	

+="CN93948"	"Sewerage workd inspection"	="Attorney-General's Department"	20-Jun-08	="Vehicle Inspection"	19-May-08	30-Jun-08	193343.70	=""	="Western Water"	20-Jun-08 01:01 PM	

+="CN93949"	"Product License"	="Attorney-General's Department"	20-Jun-08	="License management software"	19-May-08	31-Dec-08	43692.09	=""	="Tower Software"	20-Jun-08 01:01 PM	

+="CN93950"	"School Education Resources"	="Attorney-General's Department"	20-Jun-08	="Schools"	16-May-08	27-Jun-08	19459.00	=""	="DK2 Pty Ltd"	20-Jun-08 01:01 PM	

+="CN93951"	"Contract  Services"	="Attorney-General's Department"	20-Jun-08	="Technical support or help desk services"	15-May-08	30-Nov-08	80080.00	=""	="Finite Recruitment Pty ltd"	20-Jun-08 01:01 PM	

+="CN93952"	"Printing"	="Attorney-General's Department"	20-Jun-08	="Offset industrial printing services"	15-May-08	31-Dec-08	32987.35	=""	="Blue Star Print Group Pty Ltd"	20-Jun-08 01:01 PM	

+="CN93953"	"Contracting services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	15-May-08	31-Dec-08	40000.00	="FIN07/AGI003"	="Excelior Pty Ltd"	20-Jun-08 01:02 PM	

+="CN93954"	"Services Charges"	="Attorney-General's Department"	20-Jun-08	="Legal services"	15-May-08	15-May-08	66000.00	=""	="Ernst & Young"	20-Jun-08 01:02 PM	

+="CN93955"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Temporary technician staffing needs"	15-May-08	11-Jul-08	58800.01	="06/18394"	="Face 2 Face Recruitment Pty Limited"	20-Jun-08 01:02 PM	

+="CN93956"	"Printing"	="Attorney-General's Department"	20-Jun-08	="Offset printing presses"	28-May-08	31-Dec-08	10767.90	=""	="SYMAGY PTY LIMITED (METROGRAPHICS)"	20-Jun-08 01:02 PM	

+="CN93957"	"Engine Oil"	="Attorney-General's Department"	20-Jun-08	="Engine oil"	28-May-08	31-Dec-08	13478.40	=""	="STATEWIDE OIL DISTRIBUTOR"	20-Jun-08 01:02 PM	

+="CN93958"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-09	228207.44	=""	="Property Advisory Australia Pty Ltd"	20-Jun-08 01:02 PM	

+="CN93959"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-09	890174.12	=""	="NSW Teachers Federation"	20-Jun-08 01:03 PM	

+="CN93960"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-09	834900.00	=""	="Willemsen Property Corporation"	20-Jun-08 01:03 PM	

+="CN93961"	"BackUp tapes"	="Attorney-General's Department"	20-Jun-08	="Data storage and backup"	28-May-08	31-Dec-08	14122.90	=""	="Dell Australia PTY Limited"	20-Jun-08 01:03 PM	

+="CN93962"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	06-Jun-08	47478.00	="07/17601"	="Kaz Group Pty Limited"	20-Jun-08 01:03 PM	

+="CN93963"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	30-Jun-08	65195.85	="07/17601"	="Kaz Group Pty Limited"	20-Jun-08 01:03 PM	

+="CN93964"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	30-Sep-08	234240.00	="07/17601"	="Kaz Group Pty Limited"	20-Jun-08 01:04 PM	

+="CN93965"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	30-Jun-08	72190.56	="07/17601"	="Kaz Group Pty Limited"	20-Jun-08 01:04 PM	

+="CN93966"	"Power Vaults"	="Attorney-General's Department"	20-Jun-08	="Electric lead wires or cables"	28-May-08	31-Dec-08	12346.40	=""	="Dell Australia PTY Limited"	20-Jun-08 01:04 PM	

+="CN93967"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-09	308000.00	=""	="United Process Solutions Pty Limite"	20-Jun-08 01:04 PM	

+="CN93968"	"Work Orders"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	29-May-08	31-Dec-08	96800.00	=""	="Department of Finance and"	20-Jun-08 01:04 PM	

+="CN93969"	"Computer Software"	="Attorney-General's Department"	20-Jun-08	="Computer based training software"	29-May-08	31-Dec-08	53175.00	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 01:04 PM	

+="CN93970"	"Flight service"	="Attorney-General's Department"	20-Jun-08	="Conveyor flights or links"	29-May-08	31-Dec-08	97500.00	=""	="AUSTRALIAN AIR EXPRESS PTY LTD"	20-Jun-08 01:05 PM	

+="CN93971"	"Conference Services"	="Attorney-General's Department"	20-Jun-08	="Temporary sourcing and logistics services"	30-May-08	30-Jun-09	44000.00	=""	="Conference Logistics"	20-Jun-08 01:05 PM	

+="CN93972"	"Research"	="Attorney-General's Department"	20-Jun-08	="Range research"	30-May-08	31-Dec-08	49500.00	=""	="DEPT FOR FAMILIES & COMMUNITIES"	20-Jun-08 01:05 PM	

+="CN93973"	"computer programs"	="Attorney-General's Department"	20-Jun-08	="Electronic computers or data processing equipment manufacture services"	29-May-08	31-Dec-08	13051.78	=""	="Dell Australia PTY Limited"	20-Jun-08 01:05 PM	

+="CN93974"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-09	252000.00	=""	="Ultra Care Cleaning Services"	20-Jun-08 01:05 PM	

+="CN93975"	"Rental"	="Attorney-General's Department"	20-Jun-08	="Lease and rental of property or building"	28-May-08	30-Jun-10	72600.00	="05/19755"	="Ultra Care Cleaning Services"	20-Jun-08 01:05 PM	

+="CN93976"	"Part for Diesel Engine"	="Attorney-General's Department"	20-Jun-08	="Engine or engine parts teaching aids or materials"	28-May-08	30-Jun-08	94381.67	="39120000"	="ROLLS-ROYCE MARINE AUSTRALIA P/L"	20-Jun-08 01:06 PM	

+="CN93977"	"Part for Diesel Engine"	="Attorney-General's Department"	20-Jun-08	="Engine or engine parts teaching aids or materials"	28-May-08	30-Jun-08	98143.86	="39120000"	="ROLLS-ROYCE MARINE AUSTRALIA P/L"	20-Jun-08 01:06 PM	

+="CN93979"	"Picture trial"	="Attorney-General's Department"	20-Jun-08	="Operating system software"	28-May-08	30-Jun-08	50000.01	=""	="Department of Primary Industries,"	20-Jun-08 01:06 PM	

+="CN93980"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	11-Jul-08	13200.00	="06/18411"	="Oakton AA Services Pty Ltd"	20-Jun-08 01:06 PM	

+="CN93981"	"Conference"	="Attorney-General's Department"	20-Jun-08	="Hotels and lodging and meeting facilities"	23-May-08	31-Dec-08	23314.53	=""	="Rydges Capital Hill"	20-Jun-08 01:07 PM	

+="CN93982"	"Communications"	="Attorney-General's Department"	20-Jun-08	="Network connectivity terminal emulation software"	23-May-08	30-Jun-08	174213.60	=""	="Rivercorp Pty Ltd"	20-Jun-08 01:07 PM	

+="CN93978"	"Graphic design and desktop publishing services"	="Office of the Commonwealth Ombudsman"	20-Jun-08	="Promotional material or annual reports"	11-Jun-08	28-Nov-08	22219.00	=""	="Zoo Communications Pty Ltd"	20-Jun-08 01:07 PM	

+="CN93983"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	23-May-08	31-Aug-08	109998.00	="06/18397"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:07 PM	

+="CN93984"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	23-May-08	30-Jun-08	130000.00	="06/18147"	="Face 2 Face Recruitment Pty Limited"	20-Jun-08 01:07 PM	

+="CN93985"	"Program Services"	="Attorney-General's Department"	20-Jun-08	="Diplomats security services"	23-May-08	31-Dec-08	27293.20	=""	="Goetzloff GMBH"	20-Jun-08 01:07 PM	

+="CN93986"	"Mail Costs"	="Attorney-General's Department"	20-Jun-08	="National postal delivery services"	23-May-08	11-Sep-08	49500.00	=""	="AUSTRALIA POST (8756956)"	20-Jun-08 01:08 PM	

+="CN93987"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	23-May-08	30-Jun-08	40800.00	="02/12137"	="Face 2 Face Recruitment Pty Limited"	20-Jun-08 01:08 PM	

+="CN93988"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	23-May-08	30-Jun-08	100320.00	="06/18414"	="Icon Recruitment Pty Ltd"	20-Jun-08 01:08 PM	

+="CN93989"	"Review"	="Attorney-General's Department"	20-Jun-08	="Quarterly reviews"	23-May-08	30-May-08	108185.00	=""	="The University of Queensland"	20-Jun-08 01:08 PM	

+="CN93990"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	23-May-08	30-Jun-08	60500.00	="07/1581"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:08 PM	

+="CN93991"	"Travel Expenses"	="Attorney-General's Department"	20-Jun-08	="Women staff associations"	23-May-08	31-Dec-08	19810.00	=""	="Kidsons Pty Ltd"	20-Jun-08 01:08 PM	

+="CN93992"	"Program Services"	="Attorney-General's Department"	20-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-May-08	30-Jun-08	20939.60	=""	="Motorola Australia Pty Ltd"	20-Jun-08 01:09 PM	

+="CN93993"	"Project Equipment"	="Attorney-General's Department"	20-Jun-08	="Automotive computer systems"	26-May-08	30-Jun-08	15397.69	=""	="Dell Computer Limited"	20-Jun-08 01:09 PM	

+="CN93994"	"Computer Licences"	="Attorney-General's Department"	20-Jun-08	="Computer servers"	27-May-08	30-Jun-08	55113.54	=""	="Data#3 Ltd"	20-Jun-08 01:09 PM	

+="CN93995"	"Management Program"	="Attorney-General's Department"	20-Jun-08	="Public relations programs or services"	27-May-08	31-Dec-08	15200.00	=""	="Department of Defence"	20-Jun-08 01:09 PM	

+="CN93996"	"Phone Charges"	="Attorney-General's Department"	20-Jun-08	="Fixed phones"	27-May-08	31-Dec-08	120000.00	=""	="Optus Billing Services Pty Ltd"	20-Jun-08 01:09 PM	

+="CN93997-A1"	"Project Management For Accelerated AsbestosRemoval"	="Attorney-General's Department"	20-Jun-08	="Asbestos decontamination or removal"	27-May-08	31-Dec-09	1076424.00	="07/3839"	="GHD Pty Ltd"	20-Jun-08 01:09 PM	

+="CN93998"	"Cleaning services"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	26-May-08	30-Jun-08	36000.00	="06/9914"	="Ultra Care Cleaning Services"	20-Jun-08 01:10 PM	

+="CN93999"	"NCTC Equipment"	="Attorney-General's Department"	20-Jun-08	="Security and personal safety"	26-May-08	30-Jun-08	837636.80	=""	="Zangold Pty Ltd"	20-Jun-08 01:10 PM	

+="CN94000"	"Training"	="Attorney-General's Department"	20-Jun-08	="Safety training services"	26-May-08	31-Dec-08	44400.00	=""	="Total Learn Pty Ltd"	20-Jun-08 01:10 PM	

+="CN94001"	"Text Books"	="Attorney-General's Department"	20-Jun-08	="Educational or vocational textbooks"	26-May-08	31-Dec-08	11000.00	=""	="Thomson Legal & Regulatory Ltd"	20-Jun-08 01:10 PM	

+="CN94002"	"Support & Maintenance"	="Attorney-General's Department"	20-Jun-08	="Computer data input devices"	26-May-08	30-Jun-08	159984.26	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 01:10 PM	

+="CN94003"	"Guarding services"	="Attorney-General's Department"	20-Jun-08	="Environmental security control services"	26-May-08	31-May-08	21438.07	=""	="Chubb Security Personnel Pty Ltd"	20-Jun-08 01:11 PM	

+="CN94004"	"Supplies"	="Attorney-General's Department"	20-Jun-08	="Video networking equipment"	12-May-08	01-Jun-08	18588.80	=""	="Videoguys Australia Pty Ltd"	20-Jun-08 01:11 PM	

+="CN94005"	"Professional Services"	="Attorney-General's Department"	20-Jun-08	="Internal audits"	28-Mar-08	31-Jul-10	20636.00	="RFT06/16740"	="Deloitte Touche Tohmatsu"	20-Jun-08 01:11 PM	

+="CN94006"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	31-Jan-08	31-Jan-08	19250.00	="AGD04011972"	="Australian Government Solicitor"	20-Jun-08 01:11 PM	

+="CN94007"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	16-May-08	16-May-08	12784.35	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:11 PM	

+="CN94008"	"service provided"	="Attorney-General's Department"	20-Jun-08	="Supply of single phase electricity"	23-May-08	30-Jun-08	10766.23	=""	="ACTEWAGL RETAIL"	20-Jun-08 01:12 PM	

+="CN94009"	"Provision of Services"	="Attorney-General's Department"	20-Jun-08	="Clerical training"	14-May-08	30-Jun-08	11825.00	=""	="Australian Public Service"	20-Jun-08 01:12 PM	

+="CN94010"	"Stationary"	="Attorney-General's Department"	20-Jun-08	="Warehouse stores"	12-May-08	21-May-08	17624.87	=""	="Corporate Express"	20-Jun-08 01:12 PM	

+="CN94011"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	14-Apr-08	30-Jun-18	11448.25	="06#195748DOC"	="Australian Government Solicitor"	20-Jun-08 01:12 PM	

+="CN94012"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	14-Apr-08	30-Jun-18	13037.20	="06#195748DOC"	="Australian Government Solicitor"	20-Jun-08 01:12 PM	

+="CN94013"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	29-Feb-08	15-May-08	48990.79	="06#199427 DOC"	="Blake Dawson"	20-Jun-08 01:13 PM	

+="CN94014"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	30-Jan-08	15-May-08	37752.51	="06#199427DOC"	="Blake Dawson"	20-Jun-08 01:13 PM	

+="CN94015"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	30-Apr-08	15-May-08	10760.80	="06#199427 DOC"	="Blake Dawson"	20-Jun-08 01:13 PM	

+="CN94017"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	12-May-08	30-Jun-18	12868.35	="06#195748DOC"	="Australian Government Solicitor"	20-Jun-08 01:13 PM	

+="CN94018"	"Staffing"	="Attorney-General's Department"	20-Jun-08	="Temporary production staffing needs"	24-Jan-08	02-Feb-08	45911.85	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:14 PM	

+="CN94019"	"Contract Employment"	="Attorney-General's Department"	20-Jun-08	="Unemployment services"	15-May-08	29-Jun-08	35287.49	="07/17576"	="Evergreen IT Personnel Pty Ltd"	20-Jun-08 01:14 PM	

+="CN94016"	"FIT SPALL KITS TO IMV VECHILES"	="Department of Defence"	20-Jun-08	="Motor vehicles"	23-Nov-07	06-Jun-08	17153.88	="30905"	="THALES AUSTRALIA"	20-Jun-08 01:14 PM	

+="CN94020"	"Rent"	="Attorney-General's Department"	20-Jun-08	="Commercial or industrial facility rental"	06-Dec-07	30-Jun-08	127539.15	=""	="HAMIB Pty Ltd"	20-Jun-08 01:14 PM	

+="CN94021"	"Monitoring Services"	="Attorney-General's Department"	20-Jun-08	="Environmental monitoring"	14-Dec-07	30-Jun-08	87519.73	="04/6094"	="Media Monitors Australia"	20-Jun-08 01:14 PM	

+="CN94022"	"Contract employment"	="Attorney-General's Department"	20-Jun-08	="Temporary personnel services"	21-May-08	30-Jun-08	30840.70	="06/18395"	="Bridge IT Engineering Pty Ltd"	20-Jun-08 01:14 PM	

+="CN94023"	"Freight & Storage"	="Attorney-General's Department"	20-Jun-08	="Shelving and storage"	26-May-08	27-Jun-08	13200.00	=""	="Universal Express"	20-Jun-08 01:15 PM	

+="CN94024"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	13-May-08	30-Jun-18	10329.55	="06#175748DOC"	="Australian Government Solicitor"	20-Jun-08 01:15 PM	

+="CN94025"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Cats"	01-Jun-07	01-Jun-07	132260.70	=""	="Bridge IT Engineering Pty Ltd"	20-Jun-08 01:15 PM	

+="CN94026"	"Market Research"	="Attorney-General's Department"	20-Jun-08	="Market research"	04-Apr-07	04-Apr-07	168960.00	=""	="Dimarzio Research Pty Ltd"	20-Jun-08 01:15 PM	

+="CN94027"	"Contractor services"	="Attorney-General's Department"	20-Jun-08	="Temporary production staffing needs"	30-Jun-07	30-Jun-07	30800.00	=""	="Kaz Group Pty Limited"	20-Jun-08 01:15 PM	

+="CN94029"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	28-May-08	30-Jun-08	99960.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:16 PM	

+="CN94030"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	31-Jan-08	15-May-08	10102.00	="07#8830"	="Commonwealth Director of"	20-Jun-08 01:16 PM	

+="CN94031"	"Services Provided"	="Attorney-General's Department"	20-Jun-08	="General building and office cleaning and maintenance services"	09-Apr-08	09-Apr-08	11539.64	=""	="JOHNS BUILDING SUPPLIES PTY LTD"	20-Jun-08 01:16 PM	

+="CN94028-A1"	"External Training"	="Centrelink"	20-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-09	190000.00	=""	="Dept. of Defence"	20-Jun-08 01:16 PM	

+="CN94032"	"Provision of Paediatric Services"	="Attorney-General's Department"	20-Jun-08	="Individual health assessment"	07-May-08	30-Jun-08	18639.00	="85120000"	="HEALTH CORPORATE NETWORK"	20-Jun-08 01:16 PM	

+="CN94033"	"Electricity Supply"	="Attorney-General's Department"	20-Jun-08	="Power generation"	15-May-08	15-May-08	21587.05	="26130000"	="Christmas Island Adminstration"	20-Jun-08 01:16 PM	

+="CN94034"	"Brochures and Printing Services"	="Attorney-General's Department"	20-Jun-08	="Publication printing"	24-Apr-08	07-May-08	27486.80	=""	="Paragon Printers"	20-Jun-08 01:17 PM	

+="CN94035"	"Legal professional services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	01-May-08	01-May-08	85219.64	=""	="Hon Justice Ian Callinan"	20-Jun-08 01:17 PM	

+="CN94036"	"Provision of Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	01-May-08	30-Jun-08	37500.00	=""	="The Stavridis Discretionary Trust"	20-Jun-08 01:17 PM	

+="CN94037"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	28-Apr-08	19-May-08	13158.50	="06#197548DOC"	="Australian Government Solictor"	20-Jun-08 01:17 PM	

+="CN94038"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	29-Apr-08	19-May-08	34774.65	="06#197548DOC"	="Australian Government Solictor"	20-Jun-08 01:17 PM	

+="CN94039"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	05-May-08	15-May-08	65175.00	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:18 PM	

+="CN94040"	"Reimbursement of Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	16-Apr-08	30-Jun-08	10355.00	=""	="HEALTH CORPORATE NETWORK"	20-Jun-08 01:18 PM	

+="CN94041"	"Legal professional services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	18-Apr-08	18-Apr-08	26504.28	=""	="Robert James Anderson"	20-Jun-08 01:18 PM	

+="CN94042"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	09-Jan-08	25-Apr-08	39014.43	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:18 PM	

+="CN94043"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	11-Apr-08	30-Jun-08	10300.00	="06#195748DOC"	="Australian Government Solicitor"	20-Jun-08 01:19 PM	

+="CN94044"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	10-Apr-08	13-May-18	14388.28	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:19 PM	

+="CN94046"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	11-Oct-07	11-Oct-07	61265.20	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:19 PM	

+="CN94047"	"Consultancy Services"	="Attorney-General's Department"	20-Jun-08	="Organisational structure consultation"	30-Apr-08	30-Jun-08	10443.13	=""	="EXCELERATED CONSULTING PTY LTD"	20-Jun-08 01:19 PM	

+="CN94048"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Legal services"	15-Apr-08	14-May-18	10522.60	="06/195748DOC"	="Australian Government Solictor"	20-Jun-08 01:19 PM	

+="CN94045"	"Provision of market Research Services"	="Office of the Commonwealth Ombudsman"	20-Jun-08	="Market research"	30-May-08	15-Aug-08	104610.00	=""	="Instinct and Reason"	20-Jun-08 01:20 PM	

+="CN94049"	"Reviews For EA and PA Roles"	="Attorney-General's Department"	20-Jun-08	="Business intelligence consulting services"	21-Mar-08	31-Mar-08	12000.00	=""	="Leapfrog Leadership Pty Ltd"	20-Jun-08 01:20 PM	

+="CN94050"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	20-Feb-08	25-Apr-08	105334.90	="06#195748000"	="AUSTRALIAN GOVERNMENT SOLICITOR"	20-Jun-08 01:20 PM	

+="CN94051"	"Legal Services"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	17-Apr-08	17-Apr-08	23844.70	=""	="Australian Government Solicitor"	20-Jun-08 01:20 PM	

+="CN94052"	"Advertising"	="Attorney-General's Department"	20-Jun-08	="Temporary legal staffing needs"	09-May-08	30-Jun-08	24323.66	=""	="HMA BLAZE"	20-Jun-08 01:20 PM	

+="CN94053"	"Forum Accomodation"	="Attorney-General's Department"	20-Jun-08	="Personal accommodation item dispensers"	29-Apr-08	29-Apr-08	17900.00	=""	="Citigate Sebel"	20-Jun-08 01:21 PM	

+="CN94054"	"Production & Printing Folders"	="Attorney-General's Department"	20-Jun-08	="Promotional or advertising printing"	16-May-08	16-May-08	11606.10	=""	="Paragon Printers"	20-Jun-08 01:21 PM	

+="CN94055"	"Goods and serivices"	="Attorney-General's Department"	20-Jun-08	="Computer printout paper"	06-May-08	06-May-08	14135.00	=""	="Canprint Communications Pty Ltd"	20-Jun-08 01:21 PM	

+="CN94056"	"Security Vetting Services"	="Attorney-General's Department"	20-Jun-08	="Reference or background check services"	06-May-08	30-Jun-08	10000.00	=""	="Sara Maree Minehan"	20-Jun-08 01:21 PM	

+="CN94057"	"Installation"	="Attorney-General's Department"	20-Jun-08	="System installation"	07-May-08	30-Jun-08	27478.00	=""	="Dept of Foreign Affairs & Trade"	20-Jun-08 01:21 PM	

+="CN94058"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Printing"	07-May-08	07-May-08	21973.60	=""	="Pirion Pty Limited"	20-Jun-08 01:22 PM	

+="CN94059"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Printing"	07-May-08	07-May-08	10989.00	=""	="Pirion Pty Limited"	20-Jun-08 01:22 PM	

+="CN94060"	"Goods and serivices"	="Attorney-General's Department"	20-Jun-08	="Project management software"	06-May-08	30-Jun-08	33538.21	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 01:22 PM	

+="CN94061-A1"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	06-May-08	31-Oct-08	36480.00	="06/18397"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:22 PM	

+="CN94062-A1"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	06-May-08	30-Jun-08	36960.00	="06/18394"	="Face 2 Face Recruitment Pty Limited"	20-Jun-08 01:22 PM	

+="CN94063"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	06-May-08	30-Jun-08	15000.00	=""	="Hudson Global Resources"	20-Jun-08 01:22 PM	

+="CN94064"	"Fax Software"	="Attorney-General's Department"	20-Jun-08	="Fax software"	06-May-08	30-Dec-08	21598.50	=""	="RICOH Australia"	20-Jun-08 01:23 PM	

+="CN94065"	"Training Services"	="Attorney-General's Department"	20-Jun-08	="Education and Training Services"	06-May-08	31-Mar-09	23416.80	=""	="ABM Systems Australia Pty Ltd"	20-Jun-08 01:23 PM	

+="CN94066"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Printing"	07-May-08	07-May-08	10969.20	=""	="Pirion Pty Limited"	20-Jun-08 01:23 PM	

+="CN94067"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Workshops"	09-May-08	09-May-08	19989.99	=""	="Medina Property Services Pty Ltd"	20-Jun-08 01:23 PM	

+="CN94068"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	09-May-08	30-Jun-08	16500.00	="06/18392"	="FIRSTWATER PTY LTD"	20-Jun-08 01:23 PM	

+="CN94069"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Market research"	09-May-08	30-Apr-09	41069.60	=""	="Gartner Australasia Pty  Limited"	20-Jun-08 01:24 PM	

+="CN94070"	"Contracting services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	09-May-08	31-Aug-08	21648.00	="06/18397"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:24 PM	

+="CN94071"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Software"	09-May-08	09-May-08	35420.00	=""	="INFRA CORPORATION PTY LTD"	20-Jun-08 01:24 PM	

+="CN94072"	"Equipment & Supplies"	="Attorney-General's Department"	20-Jun-08	="Personal communication devices"	08-May-08	08-May-08	87810.24	=""	="DEPARTMENT OF DEFENCE"	20-Jun-08 01:24 PM	

+="CN94073"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Printing"	07-May-08	07-May-08	22000.00	=""	="Pirion Pty Limited"	20-Jun-08 01:24 PM	

+="CN94074"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Computer or network or internet security"	08-May-08	08-May-08	73920.00	=""	="Hyro Australia Pty Ltd"	20-Jun-08 01:24 PM	

+="CN94075"	"Contract services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	08-May-08	08-May-08	19800.00	="06/18414"	="Icon Recruitment Pty Ltd"	20-Jun-08 01:24 PM	

+="CN94076"	"Goods & services"	="Attorney-General's Department"	20-Jun-08	="Internet directory services software"	08-May-08	08-May-08	49104.00	=""	="Optus Billing Services Pty Ltd"	20-Jun-08 01:25 PM	

+="CN94077"	"Equipment & Supplies"	="Attorney-General's Department"	20-Jun-08	="Personal communication devices"	08-May-08	08-May-08	56288.70	=""	="DEPARTMENT OF DEFENCE"	20-Jun-08 01:25 PM	

+="CN94078"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	06-May-08	31-Oct-08	45408.00	="06/18397"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:25 PM	

+="CN94079"	"Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	21-May-08	30-Jun-08	30863.25	="06/18147"	="Face 2 Face Recruitment Pty Limited"	20-Jun-08 01:25 PM	

+="CN94080"	"Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	27-May-08	30-Jun-08	83200.00	="06/18412"	="Verossity Pty Limited"	20-Jun-08 01:25 PM	

+="CN94081"	"Services"	="Attorney-General's Department"	20-Jun-08	="Staff recruiting services"	04-Jun-08	30-Jun-08	13632.00	="08/166978"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:26 PM	

+="CN94082"	"Contracting services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	15-Apr-08	31-Dec-08	12550.00	=""	="Careers Unlimited Pty Ltd"	20-Jun-08 01:26 PM	

+="CN94083"	"Building Works"	="Attorney-General's Department"	20-Jun-08	="Building and Construction and Maintenance Services"	16-May-08	31-May-08	21443.40	=""	="Hytec Carpentry Services"	20-Jun-08 01:26 PM	

+="CN94084"	"Services"	="Attorney-General's Department"	20-Jun-08	="Permanent technical staffing needs"	15-May-08	18-Aug-08	106920.00	="06/18414"	="Icon Recruitment Pty Ltd"	20-Jun-08 01:26 PM	

+="CN94085"	"Contract Employment"	="Attorney-General's Department"	20-Jun-08	="Temporary personnel services"	04-Jun-08	30-Nov-08	89600.01	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:26 PM	

+="CN94086"	"Contract employment"	="Attorney-General's Department"	20-Jun-08	="Temporary personnel services"	10-Jun-08	30-Nov-08	84400.00	="06/18414"	="Icon Recruitment Pty Ltd"	20-Jun-08 01:26 PM	

+="CN94087"	"Contract employment"	="Attorney-General's Department"	20-Jun-08	="Temporary personnel services"	04-Jun-08	30-Nov-08	77000.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:27 PM	

+="CN94089"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Personnel recruitment"	13-Mar-08	30-Jun-08	39600.00	="06/18396"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:27 PM	

+="CN94090"	"Services"	="Attorney-General's Department"	20-Jun-08	="Permanent technical staffing needs"	27-May-08	30-Nov-08	46904.00	="06/18396"	="Verossity Pty Limited"	20-Jun-08 01:27 PM	

+="CN94088"	"Supply and Install FC addition to Electronic Court Listing System"	="Family Court of Australia"	20-Jun-08	="Electronic hardware and component parts and accessories"	01-Jun-07	24-Jun-07	28171.00	=""	="Corporate Initiatives Australia Pty Ltd"	20-Jun-08 01:27 PM	

+="CN94091"	"Funds Transfer"	="Attorney-General's Department"	20-Jun-08	="Funds transfer and clearance and exchange services"	01-May-08	31-Dec-08	11748.03	=""	="Dept of Prime Minister and Cabinet"	20-Jun-08 01:27 PM	

+="CN94092"	"Security and control equipment"	="Attorney-General's Department"	20-Jun-08	="Security and control equipment"	05-May-08	31-May-08	52957.30	=""	="QUEENSLAND POLICE SERVICE"	20-Jun-08 01:28 PM	

+="CN94093"	"Goods and services"	="Attorney-General's Department"	20-Jun-08	="Computer printers"	05-May-08	14-May-08	11643.98	="08/9811"	="Corporate Express"	20-Jun-08 01:28 PM	

+="CN94094"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	05-May-08	30-Dec-08	134000.02	="06/18397"	="Clicks Recruit Pty Ltd"	20-Jun-08 01:28 PM	

+="CN94095"	"Recruitment Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	05-May-08	18-Jul-08	16830.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	20-Jun-08 01:28 PM	

+="CN94096"	"Guard Services"	="Attorney-General's Department"	20-Jun-08	="Guard services"	06-May-08	31-Dec-08	85995.00	=""	="Australian Federal Police"	20-Jun-08 01:28 PM	

+="CN94097-A1"	"Equipment Repair Services"	="Attorney-General's Department"	20-Jun-08	="Manufacturing equipment repair services"	05-May-08	31-Dec-08	11285.34	=""	="Bruker Biosciences Pty Ltd"	20-Jun-08 01:28 PM	

+="CN94098"	"Software support"	="Attorney-General's Department"	20-Jun-08	="Software maintenance and support"	01-May-08	31-Dec-08	16500.00	=""	="Open Systems Australia"	20-Jun-08 01:29 PM	

+="CN94099"	"Training Services"	="Attorney-General's Department"	20-Jun-08	="Education and Training Services"	01-May-08	30-Jun-08	18829.80	=""	="Clifton Operations Pty Ltd"	20-Jun-08 01:29 PM	

+="CN94100"	"Contract Services"	="Attorney-General's Department"	20-Jun-08	="Recruitment services"	02-May-08	30-Jun-08	39979.19	=""	="Purchasing and Business Enterprises"	20-Jun-08 01:29 PM	

+="CN94101"	"Audio Visual Services"	="Attorney-General's Department"	20-Jun-08	="Audio visual services"	05-May-08	31-Dec-08	12040.82	=""	="Impact AV PTY LTD"	20-Jun-08 01:29 PM	

+="CN94102"	"Software License"	="Attorney-General's Department"	20-Jun-08	="License management software"	05-May-08	31-Dec-08	13436.15	=""	="Aurion Corporation Pty Ltd"	20-Jun-08 01:29 PM	

+="CN94103-A1"	"Variation to the provision for a Business Analyst"	="Comsuper"	20-Jun-08	="Human resources services"	01-Oct-07	31-Jul-08	188976.00	=""	="Collective Resources"	20-Jun-08 01:32 PM	

+="CN94104"	"REPAIR TO ARMY BOATS"	="Department of Defence"	20-Jun-08	="Marine craft systems and subassemblies"	02-Jan-08	29-May-08	16920.20	="31257"	="MILO ENGINEERING"	20-Jun-08 01:36 PM	

+="CN94105"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Jun-08	="Business law services"	01-Mar-08	30-Apr-08	11023.40	=""	="TRINDADE FARR & PILL"	20-Jun-08 01:43 PM	

+="CN94106"	"FABRICATION OF TARGET STANDS"	="Department of Defence"	20-Jun-08	="Fabricated structural assemblies"	17-Mar-08	07-Apr-08	27772.03	="31131"	="K.R.A.M FABRICATIONS"	20-Jun-08 01:45 PM	

+="CN94107"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Jun-08	="Business law services"	11-Mar-08	14-Apr-08	10286.12	=""	="BARTIER PERRY"	20-Jun-08 01:49 PM	

+="CN94108"	"REPLACE 9 BUSHMASTER TYRES"	="Department of Defence"	20-Jun-08	="Motor vehicles"	15-May-08	30-May-08	17432.36	="31220"	="MARATHON TYRES"	20-Jun-08 01:52 PM	

+="CN94109"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Jun-08	="Business law services"	18-Feb-08	20-Mar-08	10079.13	=""	="DEACONS"	20-Jun-08 01:58 PM	

+="CN94110"	"VECHICULAR CANOPY VOLVO"	="Department of Defence"	20-Jun-08	="Motor vehicles"	21-Apr-08	17-Jun-08	12215.41	="A1580"	="MACK TRUCKS"	20-Jun-08 02:00 PM	

+="CN94111-A1"	"Provision for System Tester"	="Comsuper"	20-Jun-08	="Human resources services"	10-Jun-08	01-Aug-08	23852.00	=""	="Eurolink Consulting"	20-Jun-08 02:02 PM	

+="CN94114"	"CORROSION PRECENTIVE COMPOUND"	="Defence Materiel Organisation"	20-Jun-08	="Adhesives and sealants"	20-Jun-08	30-Sep-08	10296.00	=""	="AEROSPACE COMPOSITES"	20-Jun-08 02:28 PM	

+="CN94115"	"sealing compound"	="Defence Materiel Organisation"	20-Jun-08	="Adhesives and sealants"	20-Jun-08	28-Aug-08	10434.42	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	20-Jun-08 02:32 PM	

+="CN94116"	"Supply and install of cabling"	="Australian Federal Police"	20-Jun-08	="Computer Equipment and Accessories"	01-Jan-08	31-Dec-08	22267.10	="37-2005"	="Absolute Cabling Systems Pty Ltd"	20-Jun-08 02:36 PM	

+="CN94117"	"Provision of multimedia design services."	="Australian Taxation Office"	20-Jun-08	="Multimedia kits"	10-Jun-08	16-Jun-08	39584.00	=""	="Zoo Communications Pty Ltd"	20-Jun-08 02:38 PM	

+="CN94118"	"Supply and Installation of Computer Cabling"	="Australian Federal Police"	20-Jun-08	="Computer Equipment and Accessories"	17-Jun-08	17-Jul-08	368494.50	=""	="Absolute Cabling Systems Pty Ltd"	20-Jun-08 02:45 PM	

+="CN94121"	"ICT Services"	="Department of Human Services"	20-Jun-08	="Information Technology Broadcasting and Telecommunications"	05-Jun-08	30-Jun-08	14630.00	=""	="ASG Group Limited"	20-Jun-08 03:44 PM	

+="CN94122"	"Legal Services"	="Department of Human Services"	20-Jun-08	="Legal services"	16-Jun-08	18-Jul-08	38000.00	=""	="Blake Dawson Waldron"	20-Jun-08 03:49 PM	

+="CN94124"	"Subscription 1 July 2008 to 30 June 2009"	="Department of Human Services"	20-Jun-08	="Electronic magazines"	17-Jun-08	30-Jun-09	16500.00	=""	="Butler Group t/a Datamonitor Pty Ltd"	20-Jun-08 03:59 PM	

+="CN94125"	"Professional Training"	="Department of Human Services"	20-Jun-08	="Education and Training Services"	17-Jun-08	24-Jun-08	39600.00	=""	="PEP Worldwide t/a D'Arcy Consulting Group"	20-Jun-08 04:06 PM	

+="CN94126"	"Renewal of Software Licence"	="Department of Human Services"	20-Jun-08	="Software"	04-Jun-08	29-Jun-09	29414.00	=""	="SAS Institute Australia Pty Ltd"	20-Jun-08 04:10 PM	

+="CN94127"	"Internetworking Hardware"	="Department of Human Services"	20-Jun-08	="Fixed network equipment and components"	19-Jun-08	30-Jun-08	48566.61	=""	="Dimension Data Australia Pty Ltd"	20-Jun-08 04:17 PM	

+="CN94128"	"Procurement and contracts templates and user manual"	="Australian Electoral Commission"	20-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	01-Aug-08	82500.00	="AEC06/032"	="Blake Dawson Waldron"	20-Jun-08 05:09 PM	

+="CN94130-A1"	"Temporary IT personnel"	="Australian Electoral Commission"	20-Jun-08	="Temporary personnel services"	01-Sep-06	30-Jun-09	227392.00	="AEC06/019"	="MPM Group - Nova IT"	20-Jun-08 05:32 PM	

+="CN94131"	"IT Staffing Apprenticeship"	="Australian Electoral Commission"	20-Jun-08	="Temporary personnel services"	24-Dec-07	31-Dec-10	98031.87	=""	="Excelior Pty Ltd"	20-Jun-08 05:40 PM 

--- a/admin/partialdata/20Dec2007to24Dec2007valto.xls
+++ b/admin/partialdata/20Dec2007to24Dec2007valto.xls
@@ -1,340 +1,340 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN52037"	"Tool Kit Electricians used by RAE Electrical Mechanics to Test Electrical Equipment and Wiring"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	06-Feb-08	55521.84	=""	="Brentool Industrial Supplies Pty Ltd"	20-Dec-07 07:58 AM	
-="CN52038"	"Roll Tools & Accessories Cloth Coated Nylon 2 Pockets 14 Loops, Water Repellant, Mildew Resistant, w/Buckle"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	27-Jan-08	27280.00	=""	="Canvas Contracting"	20-Dec-07 08:04 AM	
-="CN52039"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	19-Nov-08	24531.14	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:18 AM	
-="CN52040"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	28-Jan-08	32256.14	=""	="Symbion Pharmacy Services"	20-Dec-07 08:22 AM	
-="CN52041"	" Purchase of Aircraft Components "	="Defence Materiel Organisation"	20-Dec-07	="Aircraft"	19-Dec-07	15-Feb-08	40259.56	=""	="Kaman Aerospace International Corporation"	20-Dec-07 08:22 AM	
-="CN52042"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	18-Jan-09	11897.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:25 AM	
-="CN52043"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	29-Jan-08	25551.39	=""	="Symbion Pharmacy Services"	20-Dec-07 08:26 AM	
-="CN52044"	" Med Consumables For ADF "	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	25-Dec-07	26000.35	=""	="Clifford Hallam Healthcare"	20-Dec-07 08:43 AM	
-="CN52045"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	20-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Dec-07	18-Jan-08	12302.51	=""	="LAND ROVER AUSTRALIA"	20-Dec-07 08:44 AM	
-="CN52047"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	24-Dec-07	18055.60	=""	="Ansell International Pty Ltd"	20-Dec-07 09:24 AM	
-="CN52049"	"Financial advice for contract"	="Australian Taxation Office"	20-Dec-07	="Financial assistance"	01-Nov-07	21-Dec-07	17578.00	=""	="Freebody Cogent Pty Ltd"	20-Dec-07 10:06 AM	
-="CN52050"	"SOCKS, VARIOUS."	="Defence Materiel Organisation"	20-Dec-07	="Socks"	05-Dec-07	30-Jun-08	267047.00	="J7964"	="TOPS SOCKS"	20-Dec-07 10:33 AM	
-="CN52051"	"Provision of an ecredited competency based program for sutomer service"	="Comsuper"	20-Dec-07	="Computer based training software"	03-Sep-07	30-Jun-08	34170.00	=""	="CIT Solutions Pty Ltd"	20-Dec-07 10:44 AM	
-="CN52061"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	21-Nov-07	05-Dec-07	13673.00	=""	="Union Offset Printers"	20-Dec-07 10:53 AM	
-="CN52065"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	25-May-07	15-Jun-07	17996.00	=""	="Union offset Printers"	20-Dec-07 10:56 AM	
-="CN52067"	" Stationery Contract - final option  Original Contract commenced 21/09/2003 "	="Australian Electoral Commission"	20-Dec-07	="Stationery"	01-Nov-07	29-Feb-08	88000.00	=""	="Corporate Express Australia Ltd"	20-Dec-07 10:57 AM	
-="CN52079"	"Provision for CPI January 2008 Pension Increase"	="Comsuper"	20-Dec-07	="Printing accessories"	14-Dec-07	21-Dec-07	25617.88	=""	="Hermes Precisa P/L"	20-Dec-07 11:09 AM	
-="CN52081"	"ASLAV PARTS - WINDOW, OPTICAL INSTRUMENT"	="Department of Defence"	20-Dec-07	="Armoured fighting vehicles"	19-Dec-07	29-Jul-08	52514.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Dec-07 11:11 AM	
-="CN52090-A1"	"Postal Voting Mailhouse and Print Services"	="Australian Electoral Commission"	20-Dec-07	="Transportation and Storage and Mail Services"	26-Oct-06	30-Jun-11	1291062.28	="S06/07/29"	="Sema Group Pty Ltd"	20-Dec-07 11:24 AM	
-="CN52100"	"Mailing House Services"	="Australian Electoral Commission"	20-Dec-07	="Mailing services"	27-Nov-07	27-Dec-07	69449.60	=""	="B & C Mailing Pty Ltd"	20-Dec-07 11:43 AM	
-="CN52101"	"Printing of Election Booklets"	="Australian Electoral Commission"	20-Dec-07	="Industrial printing services"	08-Nov-07	08-Dec-07	11540.10	=""	="GT Graphics"	20-Dec-07 12:01 PM	
-="CN52103"	" Impact assessment "	="Australian Centre for International Agricultural Research"	20-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78840.00	=""	="Centre for International Economics"	20-Dec-07 12:07 PM	
-="CN52104"	"The provision of services for a professionally conducted presentation workshop for NBA staff development."	="National Blood Authority"	20-Dec-07	="Education and Training Services"	12-Jan-07	12-Jan-07	15445.00	=""	="Maura Fay Workshops"	20-Dec-07 12:13 PM	
-="CN52105"	"Provision of air travel"	="National Blood Authority"	20-Dec-07	="Commercial aeroplane travel"	03-Oct-07	13-Oct-07	37212.32	=""	="Flight Centre"	20-Dec-07 12:18 PM	
-="CN52106"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	01-Nov-07	14-Dec-07	16500.00	=""	="St Pauls Cathedral Parish"	20-Dec-07 12:21 PM	
-="CN52107"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11000.00	=""	="W Herrmann Real Estate Pty Ltd"	20-Dec-07 12:32 PM	
-="CN52108"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	31-Oct-07	14-Dec-07	21862.50	=""	="Kinight Frank Tasmania"	20-Dec-07 12:38 PM	
-="CN52110"	" Advertising monitoring - new ads "	="Australian Taxation Office"	20-Dec-07	="Information services"	04-Feb-08	03-Feb-09	26400.00	=""	="Xtreme Information Services Australia"	20-Dec-07 12:47 PM	
-="CN52111-A2"	"The procurement of Contract services for the development of the Evaluation Framework and Methodology for the Assessment of National Blood Supply Change Proposals."	="National Blood Authority"	20-Dec-07	="Business administration services"	10-Dec-07	30-Jun-09	108845.00	=""	="University of Technology Sydney - Centre for Health Economic Research and Evaluation (CHERE)"	20-Dec-07 12:48 PM	
-="CN52114-A1"	"FOOD CONTAINER, INSULATED"	="Defence Materiel Organisation"	20-Dec-07	="Containers and storage"	19-Dec-07	18-Mar-08	111650.00	="J7855"	="TRIMCAST PTY LTD"	20-Dec-07 01:56 PM	
-="CN52118"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	24060.96	="AEC06/019"	="Peoplebank Australia Ltd"	20-Dec-07 02:21 PM	
-="CN52123"	"Translation of Election Guide"	="Australian Electoral Commission"	20-Dec-07	="Written translation services"	01-Dec-06	30-Nov-09	18212.04	="S06/07/033"	="VITS Language Link"	20-Dec-07 02:28 PM	
-="CN52125"	"Annual meeting at PACOM"	="Department of Defence"	20-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10066.60	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	
-="CN52126"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	20-Dec-07	="Passenger transport"	29-Nov-07	29-Nov-07	12406.22	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	
-="CN52127"	"HMA Blaze Press ads Job vacancies CM07100026,CM07100027,CM07100028,CM07100029"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11596.99	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52128"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100148,CM07100147,CM07100146,CM07100145"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11828.91	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52129"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100150,CM07100149,CM07101146,CM07100363"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	13353.14	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52130"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100143,CM07110004,CM07110369,CM07110370"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	14964.62	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52131"	"HMA Blaze Press ads Recruitment Job vacancies CM07110022,CM07110014,CM07110013,CM07110012"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	29-Nov-07	29-Nov-07	12129.87	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	
-="CN52132"	"Panel transaction fee for Strategic Workforce PlanCIOG HR Services"	="Department of Defence"	20-Dec-07	="Human resources services"	04-Dec-07	04-Dec-07	11501.60	=""	="AUST PUBLIC SVC COMM"	20-Dec-07 02:48 PM	
-="CN52133"	"DSTO Project Furniture"	="Department of Defence"	20-Dec-07	="Office Equipment and Accessories and Supplies"	10-Dec-07	10-Dec-07	26825.00	=""	="CJ OFFICE CHOICE"	20-Dec-07 02:48 PM	
-="CN52134"	"Chairs for SAW"	="Department of Defence"	20-Dec-07	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	11197.40	=""	="STEM TUBULAR INDSTRS   T"	20-Dec-07 02:48 PM	
-="CN52135"	"DMO Advertisement in Career FAQs publication - Transport and Logistics.  (I have paid this via credit card as invoice was well overdue and vendor mgt have still not created vendor after 3 weeks)."	="Defence Materiel Organisation"	20-Dec-07	="Advertising"	07-Nov-07	14-Dec-07	13200.00	=""	="CAREER FAQS"	20-Dec-07 02:49 PM	
-="CN52136"	"MOU between the ABCC and the APSC concerning the program: Diversity Training."	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Dec-07	="Business administration services"	16-Oct-07	20-Nov-07	11201.00	=""	="THE AUSTRALIAN PUBLIC SERVICE COMMISSION"	20-Dec-07 02:55 PM	
-="CN52137"	"Enagement of TFS Migration Specialist"	="Australian Taxation Office"	20-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	29-Feb-08	88800.00	=""	="Microsoft"	20-Dec-07 03:06 PM	
-="CN52138"	"Software maintenance"	="Department of the House of Representatives"	20-Dec-07	="Software maintenance and support"	18-Dec-07	17-Dec-08	13493.70	=""	="Different Solutions"	20-Dec-07 03:07 PM	
-="CN52139"	"Sage Green Coveralls, Shirts and Trousers for RAAF and other Flying Military Personnel raised against Standing Offer 0306-264-26"	="Defence Materiel Organisation"	20-Dec-07	="Clothing"	17-Dec-07	30-May-08	960118.61	="2480010"	="Australian Defence Apparel"	20-Dec-07 03:09 PM	
-="CN52140"	"Flash Media Software"	="Department of the House of Representatives"	20-Dec-07	="Software"	18-Dec-07	17-Dec-08	69187.71	=""	="Different Solutions"	20-Dec-07 03:11 PM	
-="CN52141"	" computers "	="Department of the House of Representatives"	20-Dec-07	="Computers"	11-Dec-07	29-Feb-08	23595.00	=""	="Commander NSW Pty Ltd"	20-Dec-07 03:17 PM	
-="CN52142"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	06-Dec-07	06-Jan-08	14300.00	=""	="Searson Buck Pty Ltd"	20-Dec-07 03:20 PM	
-="CN52143"	"Flash/media Web"	="Department of the House of Representatives"	20-Dec-07	="Web page creation and editing software"	11-Dec-07	10-Dec-08	66308.00	=""	="Different Solutions"	20-Dec-07 03:22 PM	
-="CN52144"	"Laser jet printers"	="Department of the House of Representatives"	20-Dec-07	="Laser printers"	03-Dec-07	31-Dec-07	277374.95	=""	="Hewlett Packard Aust. Pty Ltd"	20-Dec-07 03:29 PM	
-="CN52145"	"Temporary staff for Study in Australia team"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	40000.00	="PRN18000"	="HAYS PERSONNEL SERVICES"	20-Dec-07 03:39 PM	
-="CN52147"	"Contract for professional development for Country"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	20-Nov-07	30-Jun-08	23595.00	="PRN17796"	="VISION AUSTRALIA"	20-Dec-07 03:43 PM	
-="CN52146-A1"	"For the provision for Infrastructure Architect Consultant - variation"	="Comsuper"	20-Dec-07	="Human resources services"	26-Jun-07	30-Jun-08	100000.00	=""	="Red 29 Pty Limited"	20-Dec-07 03:43 PM	
-="CN52148"	"17 Mort Street - Reconfiguration of Level's 1 and 4"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	11-Dec-07	09-Jan-08	24937.68	="PRN17992"	="CONSTRUCTION CONTROL INTERIORS P/L"	20-Dec-07 03:44 PM	
-="CN52149"	"Design document tender and contract manage DEST"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	05-Sep-07	28-Dec-07	10725.00	="PRN16842"	="GECHAWELL PTY LTD"	20-Dec-07 03:44 PM	
-="CN52150"	"Round Tables x35, Stanza chairs x33"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	03-Oct-07	31-Dec-07	19438.10	="PRN17999"	="Schiavello Commercial Interiors"	20-Dec-07 03:44 PM	
-="CN52151"	"Repairs to Staff House Kangaroo Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	02-Jul-07	28-Mar-08	13500.00	="PRN17382"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52152"	"Exec Furniture 71 and 72 Northbourne projects"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	15393.40	="PRN18205"	="CITE OFFICE DESIGN PTY LIMITED"	20-Dec-07 03:44 PM	
-="CN52153"	"Repairs to Staff House 11 Hollings Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	23-Jul-07	31-Mar-08	72400.00	="PRN17132"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52154"	"DEST National Office Accommodation Project"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Apr-10	1092927.00	="PRN12256"	="XACT PROJECT CONSULTANTS PTY LTD"	20-Dec-07 03:44 PM	
-="CN52155"	"School Enrolment Projections to 2020"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	05-Feb-07	11-Jan-08	35057.00	="PRN12446"	="NATSEM"	20-Dec-07 03:46 PM	
-="CN52156"	"Commvault Data Management Software"	="Department of Education, Science and Training"	20-Dec-07	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	47500.00	="PRN18198"	="COMMVAULT SYSTEMS (AUSTRALIA) P/L"	20-Dec-07 03:47 PM	
-="CN52157"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Access Group Training Ltd"	20-Dec-07 03:48 PM	
-="CN52158"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="Applied Training Solutions Pty Ltd"	20-Dec-07 03:48 PM	
-="CN52159"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="ARTISTRY OF MAKE-UP ACADEMY"	20-Dec-07 03:48 PM	
-="CN52160"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="NEW HORIZONS LEARNING CNTR (PERTH)"	20-Dec-07 03:48 PM	
-="CN52161"	"Organisation Review Implementation of NSW/ACT"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	18-Jun-07	20-Jun-08	34386.41	="PRN17996"	="MERCER HUMAN RESOURCE CONSULTING"	20-Dec-07 03:48 PM	
-="CN52162"	"PAD, SCOURING"	="Defence Materiel Organisation"	20-Dec-07	="Scouring pads"	18-Dec-07	21-Dec-07	13068.00	=""	="RICHARDSON WAYNE SALES"	20-Dec-07 03:49 PM	
-="CN52163"	"Kindy/Pre-school Workshop 2007"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	15000.00	="PRN17412"	="HOLIDAY INN BRISBANE"	20-Dec-07 03:49 PM	
-="CN52164"	"International business skills for VET senior managers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	10-Dec-07	30-May-08	59100.00	="PRN17417"	="INTERNATIONAL EDUCATION"	20-Dec-07 03:49 PM	
-="CN52165"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	14-Dec-07	30-Jun-08	49181.29	="PRN18008"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	20-Dec-07 03:50 PM	
-="CN52166"	"Provision of contract cataloguing services"	="Department of Education, Science and Training"	20-Dec-07	="Library"	02-Oct-07	02-Feb-08	13330.00	="PRN17275"	="LYNN FARKAS INFORMATION SERVICES"	20-Dec-07 03:51 PM	
-="CN52167"	"CPO017973 - Satellite phone charges"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	11-Dec-07	11-Dec-07	15084.53	=""	="Electrotech Australia"	20-Dec-07 04:02 PM	
-="CN52168"	"CPO018019 - Recruitment services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	07-Dec-07	07-Dec-07	18693.16	=""	="Recruitment Management Company"	20-Dec-07 04:03 PM	
-="CN52169"	"07/2470 - Executive assistant services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	10-Dec-07	10-Jun-08	60000.00	=""	="Professional Careers Australia"	20-Dec-07 04:03 PM	
-="CN52170"	"06/1493 - Supply and install cabinet x-ray system"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	27-Nov-06	24-Jan-08	63149.41	=""	="American Science and Engineering Ltd"	20-Dec-07 04:03 PM	
-="CN52171"	"CPO018036 - LCD Touch Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	24084.03	=""	="Electroboard Solutions Pty Ltd"	20-Dec-07 04:03 PM	
-="CN52172"	"CPO017981 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	18392.00	=""	="Access Control Engineered Systems Pty Ltd"	20-Dec-07 04:03 PM	
-="CN52173"	"CPO018042 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	14833.50	=""	="Crimetech Security"	20-Dec-07 04:03 PM	
-="CN52174"	"CPO018047 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	10375.20	=""	="Bemac Security"	20-Dec-07 04:03 PM	
-="CN52175"	"CPO018048 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Oct-07	31-Dec-07	11753.03	=""	="Dataline Visual Link"	20-Dec-07 04:03 PM	
-="CN52176"	"07/2343 - Smartgate Modelling -  CPE004329-1"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-09	114500.00	=""	="Airbiz Aviation Strategies Pty Ltd"	20-Dec-07 04:04 PM	
-="CN52177"	"CPO017470 - Communications Upgrade"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	08-Nov-07	08-Dec-07	55814.00	=""	="SatComms Australia"	20-Dec-07 04:04 PM	
-="CN52178"	"07/2482 - Software Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	8490315.00	=""	="SAP"	20-Dec-07 04:04 PM	
-="CN52179"	"07/2477 - Supply/Maintenance of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	3286470.00	=""	="Microster Pty Ltd"	20-Dec-07 04:04 PM	
-="CN52180-A3"	"07/2476 - Supply/Implementation of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	22-Oct-07	30-Jun-11	1883880.00	=""	="SAP"	20-Dec-07 04:04 PM	
-="CN52181"	"CPO018167 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	18098.70	=""	="Trade Import Services"	20-Dec-07 04:04 PM	
-="CN52182"	"CPO018166 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	16291.80	=""	="Trade Import Services"	20-Dec-07 04:04 PM	
-="CN52183"	"07/2349 - Fit-Out/ Construction Services (CPO018142)"	="Australian Customs and Border Protection Service"	20-Dec-07	="General building construction"	01-Dec-07	31-Jan-08	22517.00	=""	="Quadric Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52184"	"CPO018187 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	10642.50	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52185"	"CPO018183 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	10868.00	=""	="Intelligent Surveillance"	20-Dec-07 04:05 PM	
-="CN52186"	"CPO018186 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	16072.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52187"	"CPO018185 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	11023.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	
-="CN52188"	"CPO018179 - Office Refurbishment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	33880.00	=""	="Jupps Floorcoverings"	20-Dec-07 04:05 PM	
-="CN52189"	"CPO015585 - Recruitment Services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	09-Sep-07	15-Nov-07	12980.00	=""	="Hobsons Australia Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52190-A1"	"CPE0013769-1 Supply of Recording Equipment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Components for information technology or broadcasting or telecommunications"	31-Jul-07	04-Dec-07	178692.80	=""	="Tape Products Research Holdings Pty Ltd"	20-Dec-07 04:05 PM	
-="CN52191"	"CPO018304 - Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	20-Dec-07	07-Mar-08	75900.00	=""	="Trade Import Services"	20-Dec-07 04:06 PM	
-="CN52192"	"Conference Catering"	="Australian Electoral Commission"	20-Dec-07	="Catering services"	04-Dec-07	04-Jan-08	13132.50	=""	="Brew Bar"	20-Dec-07 04:12 PM	
-="CN52193"	"Election Advertising"	="Australian Electoral Commission"	20-Dec-07	="Advertising"	07-Dec-07	07-Jan-08	363472.38	=""	="HMA Blaze Pty Ltd"	20-Dec-07 04:21 PM	
-="CN52194"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	20-Dec-07	="Military fixed wing aircraft"	20-Dec-07	20-Mar-08	19573.38	=""	="AIRFLITE PTY LTD"	20-Dec-07 04:23 PM	
-="CN52195-A1"	"07/2309 - Project Coordinator - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	21-Nov-07	30-Jun-09	369000.00	="07/2309"	="CCS Index Pty Ltd"	20-Dec-07 04:26 PM	
-="CN52196"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	05-Nov-07	14-Dec-07	12300.00	=""	="Owain Glyn Dwr Unit Trust"	20-Dec-07 04:26 PM	
-="CN52198-A1"	"07/2365 - Test Analyst - 0717-0895 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	17-Dec-07	30-Jun-09	279000.00	="05/0717"	="Online 89 P/L t/a Profesionals Online"	20-Dec-07 04:35 PM	
-="CN52199"	"Promotional Items"	="Australian Electoral Commission"	20-Dec-07	="Promotional material or annual reports"	24-Jul-07	24-Dec-07	39014.34	=""	="Add Value Concepts"	20-Dec-07 04:36 PM	
-="CN52201"	"07/2387 - Risk Specialist - 1599-1936 - C&B Services Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Business and corporate management consultation services"	21-Nov-07	27-Nov-07	10560.00	="06/1599"	="Booz Allen Hamilton"	20-Dec-07 04:38 PM	
-="CN52202"	"Courier Services"	="Australian Electoral Commission"	20-Dec-07	="Freight loading or unloading"	12-Nov-07	12-Dec-07	14510.63	=""	="TNT Express (Mascot)"	20-Dec-07 04:50 PM	
-="CN52203-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	25652.94	=""	="Gadens Lawyers Melbourne"	20-Dec-07 04:53 PM	
-="CN52204"	" AIRCRAFT SPARES  NSN'S :  3120-66-156-4671 X 10, 3120-66-156-4672 X 10,             3120-66-156-4674 X 6, 3120-66-156-4676 X 4,                     3120-66-156-4677 X 10, 3120-66-156-4679 X 10,                   3120-66-156-4681 X 6, 3120-66-156-4682 X 4 AND                3120-66-156-4683 X 4.  BUSHING, SLEEVES "	="Defence Materiel Organisation"	20-Dec-07	="Military transport helicopters"	20-Dec-07	22-May-08	13266.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 04:55 PM	
-="CN52207-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	74213.28	="07.080"	="Tresscox Lawyers"	20-Dec-07 05:17 PM	
-="CN52208-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	34663.48	=""	="Maddocks"	20-Dec-07 05:20 PM	
-="CN52211"	"TRAILER, CARGO LT/MDM, CARGO, 4 TONNE, MC3, TWIN AXLE, SINGLE WHEELED, PIG TRAILER, ACCESSORY KIT SCES 12280"	="Defence Materiel Organisation"	20-Dec-07	="Container trailers"	20-Dec-07	11-Apr-08	48473.48	=""	="HAULMARK TRAILERS AUSTRALIA"	20-Dec-07 06:03 PM	
-="CN52212"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB,FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 95 MM W BY 104 MM H. QTY 6,000.  MANUFACTURED IN ACCORDANCE WITH DEF(AUST)1000C ON STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	30-Jan-08	12540.00	=""	="EE CARTONS"	20-Dec-07 06:10 PM	
-="CN52213"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 190 MM W BY104 MM H.  QTY 5,000. RAISED AS PER THE CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	28-Jan-08	17050.00	=""	="EE CARTONS"	20-Dec-07 06:18 PM	
-="CN52214"	"BOX, SETUP, SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440MM LG BY 190 MM W BY 104 MM H.  RAISED AS PER THE TERMS AND CONDITIONS OF THE STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	50160.00	=""	="EE CARTONS"	20-Dec-07 06:27 PM	
-="CN52215"	"BOX, SHIPPING, FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 350 MM W BY 393 MM DEEP, INT DIM.  QTY 30,000. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	64350.00	=""	="EE CARTONS"	20-Dec-07 06:33 PM	
-="CN52216"	"BOX, SHIPPING, FIBREBOARD, CORRUGATED, 1064MM LG BY 1064MM W BY 698MM H, INT DIMN,8.5 CU DECIMETRES.  QTY  2,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	16-Jan-08	27500.00	=""	="EE CARTONS"	20-Dec-07 06:40 PM	
-="CN52217"	" ITEM 1 - 8115-66-107-1281 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 122 MM DEEP. QTY 4,000.  ITEM 2 - 8115-66-107-1282 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 245 MM DEEP. QTY 15,000.  ITEM 3 - 8115-66-107-1283 - BOX, FOLDING SINGLE  WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 122 MM DEEP. QTY 2,000.  ITEM 4 - 8115-66-107-1284 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 245 MM DEEP.  QTY 5,000.  ITEM 5 - 8115-66-107-1285 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 265 MM W AND 122 MM DEEP.  QTY 10,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	16456.00	=""	="EE CARTONS"	20-Dec-07 06:52 PM	
-="CN52218"	" ITEM 1 - 8115-66-099-7232 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS   TO AS 2838 HJXAA/B&C 350 MM LG BY 259 MM W BY 393 MM DEEP, INT DIM.  QTY  2,000.  ITEM 2 - 8115-66-099-7233 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL,CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 259 MM W BY 251 MM DEEP, INT DIM.  QTY 5,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110.     "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	10351.00	=""	="EE CARTONS"	20-Dec-07 07:00 PM	
-="CN52219"	"    Purchase of Capillary Electrophoresis System    "	="Therapeutic Goods Administration"	21-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	06-Dec-07	64900.00	=""	="Beckman Coulter Australia Pty Ltd"	21-Dec-07 08:09 AM	
-="CN52220"	"    Purchase of Microscope/Digital Camera system    "	="Therapeutic Goods Administration"	21-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	06-Dec-07	31164.35	=""	="Carl Zeiss Pty Ltd"	21-Dec-07 08:13 AM	
-="CN52221"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Dec-07	17-Jan-08	17986.14	=""	="VOLVO COMMERCIAL VEHICLES"	21-Dec-07 08:45 AM	
-="CN52222"	"Recruitment Services"	="Therapeutic Goods Administration"	21-Dec-07	="Recruitment services"	10-Dec-07	31-Mar-08	28479.11	=""	="Professional Careers Australia Pty Ltd"	21-Dec-07 08:52 AM	
-="CN52223"	"Recruitment Services"	="Therapeutic Goods Administration"	21-Dec-07	="Recruitment services"	17-Nov-07	17-Nov-07	10521.06	=""	="HMA Blaze Pty Ltd"	21-Dec-07 08:57 AM	
-="CN52224"	"Laser jet supplies"	="Family Court of Australia"	21-Dec-07	="Inks"	20-Dec-07	18-Jan-08	24262.00	=""	="Commander Pty Ltd"	21-Dec-07 09:00 AM	
-="CN52225"	" Design of Spreadsheet and Booklet "	="Australian Electoral Commission"	21-Dec-07	="Computer generated design services"	01-Jul-07	30-Nov-07	16153.50	=""	="Perform Information Design Solutions"	21-Dec-07 09:11 AM	
-="CN52227"	"Nuclear Lamps"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	53514.12	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:22 AM	
-="CN52228"	"Promotional Bags"	="Australian Electoral Commission"	21-Dec-07	="Bags"	01-Aug-07	27-Dec-07	34714.35	=""	="Slick Promotions"	21-Dec-07 09:26 AM	
-="CN52229"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0977 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	21-Dec-07	="Aerospace systems and components and equipment"	19-Dec-07	31-Jan-08	10861.29	=""	="Goodrich Control Systems"	21-Dec-07 09:26 AM	
-="CN52230"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0755 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	21-Dec-07	="Aerospace systems and components and equipment"	19-Dec-07	31-Jan-08	20878.45	=""	="Goodrich Control System"	21-Dec-07 09:29 AM	
-="CN52231"	"CELL ASEMBLY"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	19751.76	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:29 AM	
-="CN52233"	"CARRIER DIAL SIGHT SPARES"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	131289.91	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:37 AM	
-="CN52234"	" WHEEL HUB "	="Defence Materiel Organisation"	21-Dec-07	="Axle hubs"	21-Dec-07	12-Feb-08	30492.00	=""	="TEFCO ENGINEERING PTY LTD"	21-Dec-07 09:45 AM	
-="CN52237"	"Med Consumables For ADF"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	07-Jan-08	12158.19	=""	="3M Australia Pty Ltd"	21-Dec-07 10:14 AM	
-="CN52238"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	08-Jan-08	30124.90	=""	="Becton Dickinson Pty Ltd"	21-Dec-07 10:18 AM	
-="CN52239-A1"	"07/2404 - Intelligence Performance Management - 1599-1976 - C&B Services Panel 06/1599 (CPE004342)"	="Australian Customs and Border Protection Service"	21-Dec-07	="Business and corporate management consultation services"	14-Dec-07	31-Jan-08	25000.00	="06/1599"	="Workplace Research Associates Pty Ltd"	21-Dec-07 10:26 AM	
-="CN52242"	"motor vehicle spare parts"	="Department of Defence"	21-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Dec-07	20-Jan-08	18508.80	=""	="LANDROVER"	21-Dec-07 10:40 AM	
-="CN52243"	"ARtwork by Paul Ryan, 'The Garden' 2006."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	19-Dec-07	19-Dec-07	16000.00	=""	="Rex Irwin Art Dealer"	21-Dec-07 10:41 AM	
-="CN52244"	"Artworks by Matthew Sleeth- 8 Digital Prints ('Tokyo'), 2007."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	31790.00	=""	="Josef Lebovic Gallery"	21-Dec-07 10:45 AM	
-="CN52245-A1"	" POWER CABLE ASSEMBLY "	="Defence Materiel Organisation"	21-Dec-07	="Electrical cable and accessories"	21-Dec-07	27-Mar-08	197802.00	="G6614"	="MIDLEC INDUSTRIES"	21-Dec-07 10:47 AM	
-="CN52246"	"Provision of Ainancial Accounting Services"	="Child Support Agency"	21-Dec-07	="Human resources services"	20-Dec-07	30-Apr-08	61952.00	=""	="Cordelta Pty Ltd"	21-Dec-07 10:49 AM	
-="CN52248"	"Artworks by Phillip George, 'Burring worlds (Syria/Iran)', 2007 (two works)."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	12000.00	=""	="Phillip George"	21-Dec-07 10:51 AM	
-="CN52249"	" Artworks by Adam Laerkesen ('Beloved', 2007)  and Robert Moore ('the Much Improved HK Monaro', 2007). "	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	10000.00	=""	="damien minton gallery"	21-Dec-07 10:55 AM	
-="CN52252"	" VIBES CHROMATIC, YAMAHA YV2700G, QUANTITY 2. "	="Defence Materiel Organisation"	21-Dec-07	="Musical Instruments and parts and accessories"	26-Oct-07	23-Mar-08	16851.31	="2580070"	="ENGADINE MUSIC EDUCATION CENTRE"	21-Dec-07 11:12 AM	
-="CN52253"	"Executive facilitation services for Marketing Communications Line"	="Australian Taxation Office"	21-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	24-Dec-07	14780.00	=""	="Fyusion Asia Pacific P/L"	21-Dec-07 11:13 AM	
-="CN52255"	"Provision for System Tester"	="Comsuper"	21-Dec-07	="Human resources services"	22-Dec-07	21-Jun-08	78364.00	=""	="Talent International"	21-Dec-07 11:21 AM	
-="CN52259"	"Aviation Spares Repair of Module 4"	="Defence Materiel Organisation"	21-Dec-07	="Military rotary wing aircraft"	27-Nov-07	31-Mar-08	26009.50	=""	="Turbomeca A/Asia Pty Ltd"	21-Dec-07 11:36 AM	
-="CN52267"	"SUPPLY OF LITTER, FOLDING, RIGID POLE"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	21-Dec-07	31-Mar-08	56540.00	=""	="NOBLE ENGINEERING PTY LTD"	21-Dec-07 12:00 PM	
-="CN52268-A1"	"COVERALLS, NBC, VARIOUS SIZES"	="Defence Materiel Organisation"	21-Dec-07	="Protective coveralls"	21-Dec-07	31-Mar-08	93381.75	=""	="POINT TRADING"	21-Dec-07 12:02 PM	
-="CN52271-A2"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	3005000.00	=""	="Australian Government Solicitor"	21-Dec-07 12:14 PM	
-="CN52270-A2"	"Freight consultants for Emily Kame Kngwarreye travelling exhibition"	="National Museum of Australia"	21-Dec-07	="Freight forwarders services"	03-Dec-07	30-Oct-08	869617.00	=""	="Global Specialised Services Pty Ltd"	21-Dec-07 12:26 PM	
-="CN52272"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	955000.00	=""	="Blake Dawson Waldron"	21-Dec-07 12:33 PM	
-="CN52273-A2"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	1030000.00	=""	="Clayton Utz"	21-Dec-07 12:37 PM	
-="CN52274-A3"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	1905000.00	=""	="Phillips Fox"	21-Dec-07 12:41 PM	
-="CN52275-A2"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	4130000.00	=""	="Australian Government Solicitor"	21-Dec-07 12:51 PM	
-="CN52276"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	500000.00	=""	="Church & Grace"	21-Dec-07 12:56 PM	
-="CN52278"	"Fibre Optic Communications System"	="Australian Electoral Commission"	21-Dec-07	="Fibre optic cable"	06-Dec-07	06-Jan-08	16975.20	=""	="Department of Finance and Administration"	21-Dec-07 01:46 PM	
-="CN52280"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	120000.00	=""	="Wisewoulds Lawyers"	21-Dec-07 01:58 PM	
-="CN52281"	"Production of ballot papers and booklets"	="Australian Electoral Commission"	21-Dec-07	="Digital industrial printing services"	10-Dec-07	10-Jan-08	13575.08	="AEC06/026"	="McMillan Print Group"	21-Dec-07 01:59 PM	
-="CN52282"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	20000.00	=""	="Finlaysons"	21-Dec-07 02:02 PM	
-="CN52283"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	92500.00	=""	="Deacons"	21-Dec-07 02:05 PM	
-="CN52284"	"Delivery of Tradestart Services from Tweed Heads"	="Austrade"	21-Dec-07	="Trade policy and services"	29-Oct-06	30-Jun-08	201666.30	=""	="Australian Business Limited"	21-Dec-07 02:05 PM	
-="CN52285"	"Delivery of Tradestart services from Bega"	="Austrade"	21-Dec-07	="Trade policy and services"	29-Oct-06	30-Jun-08	115500.00	=""	="Australian Business Limited"	21-Dec-07 02:05 PM	
-="CN52286"	"Media Relations advisory services for trade agreements, Business Club Australia and Australian Export Awards"	="Austrade"	21-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-06	22-Dec-06	15675.00	=""	="Caroline James Public Relations"	21-Dec-07 02:05 PM	
-="CN52287"	"Media Relations advisory services for trade agreements, Business Club Australia and Australian Export Awards"	="Austrade"	21-Dec-07	="Human resources services"	06-Aug-07	30-Jun-08	122000.00	=""	="Caroline James Public Relations"	21-Dec-07 02:06 PM	
-="CN52288"	"Development and delivery of Secure Web-based client access system"	="Austrade"	21-Dec-07	="Computer services"	26-Sep-07	26-Sep-08	110000.00	=""	="Australian Business Research Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52289"	"Purchase of Telecommunications services"	="Austrade"	21-Dec-07	="Telecommunications media services"	13-Apr-07	13-Apr-10	500000.00	=""	="Optus Networks Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52290"	"Purchase, installation and upgrade of security systems"	="Austrade"	21-Dec-07	="Computer services"	19-Oct-07	07-Dec-07	104005.00	=""	="Honeywell LTD"	21-Dec-07 02:06 PM	
-="CN52291"	"Administrative reengineering review of HR processess"	="Austrade"	21-Dec-07	="Human resources services"	24-Jul-06	30-Jun-07	85140.00	=""	="Bevington Consulting Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52292"	"Development and delivery of Secure Web-based client access system"	="Austrade"	21-Dec-07	="Alternative educational systems"	01-Oct-07	30-Sep-08	133500.00	=""	="SKillsoft Asia Pacific Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52293"	"Purchase of Card Scan Executive units"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	24-Oct-07	26-Oct-07	25987.50	=""	="Abditech Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52294"	"Preparation and facilitation of senior management workshop"	="Austrade"	21-Dec-07	="Education and Training Services"	22-Jul-07	27-Jul-07	47630.00	=""	="Corteks Company Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52295"	"Printing of 2007 Aust Export Awards magazine"	="Austrade"	21-Dec-07	="Marketing and distribution"	05-Sep-07	31-Dec-07	34925.00	=""	="Loyalty Australasia Pty Ltd"	21-Dec-07 02:06 PM	
-="CN52296"	"Research and advisory services about information technology for leaders"	="Austrade"	21-Dec-07	="Computer services"	01-Nov-07	31-Oct-08	23320.00	=""	="Gartner Australasia Pty Ltd"	21-Dec-07 02:07 PM	
-="CN52297"	"Development and delivery of Turnkey Learning management Solutions"	="Austrade"	21-Dec-07	="Education and Training Services"	01-Aug-07	01-Aug-08	75900.00	=""	="Southrock Corporation Limited"	21-Dec-07 02:07 PM	
-="CN52298"	"Event Management and technological equipment for the Australian Export Awards Gala Dinner"	="Austrade"	21-Dec-07	="Marketing and distribution"	09-Oct-07	22-Nov-07	127729.29	=""	="Great Southern E-vents Pty Ltd"	21-Dec-07 02:07 PM	
-="CN52299-A2"	"Replacement of the current Email Management System"	="Austrade"	21-Dec-07	="Human resources services"	24-Sep-07	23-Sep-10	10835.00	=""	="Returnity Pty Ltd"	21-Dec-07 02:07 PM	
-="CN52300"	"Preperation of online survey, and workshop facilitation"	="Austrade"	21-Dec-07	="Computer services"	03-Aug-07	03-Aug-07	22011.39	=""	="Culture Resource Centre Pty Ltd"	21-Dec-07 02:07 PM	
-="CN52301"	"Marketing support and senior writing services"	="Austrade"	21-Dec-07	="Human resources services"	10-Oct-07	21-Dec-07	30000.00	=""	="TPA (a division of vedior)"	21-Dec-07 02:07 PM	
-="CN52302"	"Marketing support and direct marketing co-ordinator"	="Austrade"	21-Dec-07	="Human resources services"	05-Nov-07	07-Dec-07	10000.00	=""	="TPA (a division of vedior)"	21-Dec-07 02:07 PM	
-="CN52304"	"IT service centre support officer"	="Austrade"	21-Dec-07	="Human resources services"	12-Nov-07	11-Jan-08	13500.00	=""	="Icon Recruitment Pty Ltd"	21-Dec-07 02:08 PM	
-="CN52305"	"Planning and deployment support and advice for IT platforms"	="Austrade"	21-Dec-07	="Human resources services"	22-Oct-07	22-Apr-08	113000.00	=""	="Paxus Australia Pty Ltd"	21-Dec-07 02:08 PM	
-="CN52306"	"Support and analysis of current Microsoft CRM system"	="Austrade"	21-Dec-07	="Management advisory services"	16-Oct-07	03-Dec-07	113200.00	=""	="Accenture Australia Holdings Pty Ltd"	21-Dec-07 02:08 PM	
-="CN52303-A1"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	430000.00	=""	="Craddock Murray Neumann"	21-Dec-07 02:08 PM	
-="CN52307"	"Preparation and facilitation of Senior Management Team Conference 2007"	="Austrade"	21-Dec-07	="Management advisory services"	08-Oct-07	09-Nov-07	19470.00	=""	="Learning Dimensions Network Pty Ltd"	21-Dec-07 02:08 PM	
-="CN52308"	"Tool Box Portable Steel Olive Drab"	="Defence Materiel Organisation"	21-Dec-07	="Workshop machinery and equipment and supplies"	21-Dec-07	20-Mar-08	54891.54	=""	="J Blackwood & Son"	21-Dec-07 02:10 PM	
-="CN52309"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	460000.00	=""	="The Argyle Partnership"	21-Dec-07 02:11 PM	
-="CN52310-A2"	"Translation and mailing services"	="Australian Electoral Commission"	21-Dec-07	="Written translation services"	10-May-07	31-Jan-08	53751.60	="AEC06/028"	="Cultural Perspectives"	21-Dec-07 02:12 PM	
-="CN52311-A1"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	85000.00	=""	="Miller Harris Lawyers"	21-Dec-07 02:14 PM	
-="CN52312"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	570000.00	=""	="Hunt & Hunt of Gateway"	21-Dec-07 02:17 PM	
-="CN52313"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	407500.00	=""	="Gadens Lawyers"	21-Dec-07 02:20 PM	
-="CN52314"	"Purchase of central test lab equipement"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	22-Nov-06	25-Jan-07	74101.62	=""	="Hewlett Packard Australia Pty Ltd"	21-Dec-07 02:21 PM	
-="CN52315"	"Architectural services and project management Hurstville office"	="Austrade"	21-Dec-07	="General building construction"	25-Jun-07	01-Sep-07	44000.00	=""	="Sinclair Knight Merz Pty Ltd"	21-Dec-07 02:21 PM	
-="CN52316"	"Preparation and facilitation of e-business workshops"	="Austrade"	21-Dec-07	="Management advisory services"	01-Jul-07	30-Jun-08	18500.00	=""	="Information Solutions Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52317"	"Publishing and printing of 2007 Australian Export Awards magazine"	="Austrade"	21-Dec-07	="Marketing and distribution"	05-Sep-07	31-Dec-07	15620.00	=""	="Loyalty Australasia Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52318"	"Publishing of full colour BCA ad in the Bulletin"	="Austrade"	21-Dec-07	="Marketing and distribution"	22-Jun-07	31-Jul-07	12853.50	=""	="ACP Magazines"	21-Dec-07 02:22 PM	
-="CN52319"	"Purchase of video hardware and three year maintenance"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	01-Jul-07	01-May-10	158941.20	=""	="Electroboard Solutions Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52320"	"Basis Consultancy advice"	="Austrade"	21-Dec-07	="Management advisory services"	26-Nov-07	30-Apr-09	13200.00	=""	="Southern Cross Computing"	21-Dec-07 02:22 PM	
-="CN52321"	"Workshop and online survey development and facilitation"	="Austrade"	21-Dec-07	="Education and Training Services"	08-Nov-07	23-Nov-08	13097.13	=""	="Culture Resource Centre Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52322"	"Research and analysis of Connect environments and development of wireframes"	="Austrade"	21-Dec-07	="Management advisory services"	03-Dec-07	28-Feb-09	55000.00	=""	="Different Solutions Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52323"	"Customised research for Sensis Business Index"	="Austrade"	21-Dec-07	="Computer services"	27-Jun-07	11-Jul-07	11000.00	=""	="Sensis Pty Ltd"	21-Dec-07 02:22 PM	
-="CN52324"	"Customised research for Sensis Business Index"	="Austrade"	21-Dec-07	="Computer services"	21-Jun-07	05-Jul-07	22000.00	=""	="Sensis Pty Ltd"	21-Dec-07 02:23 PM	
-="CN52325"	"Preparation and facilitation of medical Devices workshops"	="Austrade"	21-Dec-07	="Education and Training Services"	13-Jun-07	20-Jun-07	11550.00	=""	="Innovation Law"	21-Dec-07 02:23 PM	
-="CN52326"	"Assistance with JTE project"	="Austrade"	21-Dec-07	="Human resources services"	01-Nov-07	21-Dec-07	15000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	21-Dec-07 02:23 PM	
-="CN52327"	"Sponsorship of the China Business Summit"	="Austrade"	21-Dec-07	="Marketing and distribution"	01-Feb-08	24-Feb-08	27500.00	=""	="The Council Of  the City of Sydney"	21-Dec-07 02:23 PM	
-="CN52328"	"Analysis, development and maintenance of existing and new application systems"	="Austrade"	21-Dec-07	="Management advisory services"	21-Nov-07	15-Feb-08	54300.00	=""	="GMT Canberra Pty Ltd"	21-Dec-07 02:23 PM	
-="CN52329"	"Hire of Election Premises"	="Australian Electoral Commission"	21-Dec-07	="Lease and rental of property or building"	29-Nov-07	29-Dec-07	56892.36	=""	="NSW Electoral Commission"	21-Dec-07 02:37 PM	
-="CN52334"	"Design and management of security upgrade project"	="Austrade"	21-Dec-07	="Computer services"	17-Sep-07	17-Oct-07	14062.00	=""	="NOVA Commercial Interiors"	21-Dec-07 02:56 PM	
-="CN52335"	"Design and delivery of publishing package in India"	="Austrade"	21-Dec-07	="Marketing and distribution"	08-Jun-07	31-Mar-08	75000.00	=""	="Focus Publishing International"	21-Dec-07 02:56 PM	
-="CN52336"	"Venure hire and accommodation  for conference in Guangzhou China"	="Austrade"	21-Dec-07	="Hotels and lodging and meeting facilities"	06-Dec-07	09-Dec-07	20000.00	=""	="Guangzhou Dongfang Hotel"	21-Dec-07 02:56 PM	
-="CN52338"	"Sponsorship for Australia Week 2008"	="Austrade"	21-Dec-07	="Advertising"	27-Feb-07	03-Jul-07	113527.05	=""	="Australia Week 2008 Committee"	21-Dec-07 02:57 PM	
-="CN52339"	"Rental for Kunming office"	="Austrade"	21-Dec-07	="Real estate services"	01-Dec-07	30-Nov-08	24624.00	=""	="Kunming Hongta Building Co Ltd."	21-Dec-07 02:57 PM	
-="CN52340"	"Design and delivery of Australian Lifestyle Expo 2007"	="Austrade"	21-Dec-07	="Marketing and distribution"	13-May-07	15-May-07	38586.00	=""	="Shengdian Advertisement Planning & Design Co.Pty"	21-Dec-07 02:57 PM	
-="CN52342"	"Recruitment agency services"	="Austrade"	21-Dec-07	="Human resources services"	15-Oct-07	15-Oct-08	17000.00	=""	="Systems Go Corporation"	21-Dec-07 03:02 PM	
-="CN52343"	"Advice on increasing Indo-Australian business and trade investments/opportunities"	="Austrade"	21-Dec-07	="Management advisory services"	01-Nov-07	31-Oct-08	68424.00	=""	="Corporate Voice I Weber Sandwick"	21-Dec-07 03:02 PM	
-="CN52352"	"Design Competition Registrar"	="National Capital Authority"	21-Dec-07	="Business and corporate management consultation services"	27-Nov-07	30-Jun-08	22000.00	=""	="Beaconhill Global Pty Ltd"	21-Dec-07 03:40 PM	
-="CN52354"	"Development of Cancer Australia's website"	="Cancer Australia"	21-Dec-07	="World wide web WWW site design services"	17-Oct-07	11-Feb-08	133947.00	=""	="Next Digital"	21-Dec-07 03:49 PM	
-="CN52355"	"Formatting  and Type-setting  "	="National Capital Authority"	21-Dec-07	="Typesetting"	13-Nov-07	24-Dec-07	13640.00	=""	="Voodoo Creative"	21-Dec-07 04:19 PM	
-="CN52363"	"Airfares"	="Department of the Treasury"	21-Dec-07	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	30-Jun-08	18879.90	=""	="American Express International"	21-Dec-07 05:13 PM	
-="CN52364"	"Printing & Binding costs for ARPC Annual Report 06-07"	="Department of the Treasury"	21-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	06-Dec-07	06-Dec-07	10373.00	=""	="Canprint Communications Pty Ltd"	21-Dec-07 05:14 PM	
-="CN52365"	"Professional fees rendered between 21.05.07 to 23.11.07"	="Department of the Treasury"	21-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	13-Dec-07	41632.65	=""	="Ernst and Young"	21-Dec-07 05:14 PM	
-="CN52410-A1"	"07/2396 - IT Contractor - 0717-0868 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	01-Nov-07	30-Jun-09	432300.00	="05/0717"	="Cordelta Pty Ltd"	24-Dec-07 09:17 AM	
-="CN52412"	"07/2409 - Change Management Plan - 1599-1977 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	12-Nov-07	17-Dec-07	28660.00	="06/1599"	="Tarcus"	24-Dec-07 09:20 AM	
-="CN52409"	"Memorial Restoration"	="National Capital Authority"	24-Dec-07	="Restoration of buildings or landmarks or monuments"	04-Dec-07	10-Apr-08	152581.00	=""	="Pyramid Corporation Pty Ltd"	24-Dec-07 09:22 AM	
-="CN52417-A1"	"07/1916 - Training Services - 1523-1817 - Leading People at the Frontline Panel (CPO013713)"	="Australian Customs and Border Protection Service"	24-Dec-07	="Specialised educational services"	26-Oct-07	15-Nov-07	13310.00	="06/1523"	="Major Training Services Pty Ltd"	24-Dec-07 09:31 AM	
-="CN52420"	"CPE003360-1 - Recruitment services - 1574-2263 - Psychological Services"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Sep-07	30-Sep-07	30214.69	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:38 AM	
-="CN52423"	"Temporary Personnel"	="Australian Electoral Commission"	24-Dec-07	="Temporary personnel services"	01-May-07	30-Nov-07	11660.00	=""	="Jebel Consultant Group"	24-Dec-07 09:43 AM	
-="CN52424-A2"	"07/2451 - IT Systems Technical Services - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	15-Dec-07	30-Jun-09	605385.40	="05/0717"	="Inforail Pty Ltd"	24-Dec-07 09:46 AM	
-="CN52426"	"CPE003360-2 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	01-Oct-07	15-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:50 AM	
-="CN52428"	"CPE003360-3 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Oct-07	31-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:55 AM	
-="CN52431"	"CPE004327-1 - Fitness Testing - 1465-2315 - Fitness Testing Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Comprehensive health services"	09-Jul-07	20-Jul-07	18689.00	="06/1465"	="Work Solutions Australia Pty Ltd"	24-Dec-07 10:04 AM	
-="CN52434-A1"	"07/2327 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	39685.66	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:08 AM	
-="CN52436"	"07/2332 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	25423.75	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:12 AM	
-="CN52439"	"07/2362 - Data Migration Manager - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	17-Dec-07	17-Nov-08	270000.00	="06/1599"	="CCS Index Pty Ltd"	24-Dec-07 10:17 AM	
-="CN52442-A1"	"07/2051 - Information Architect - 0717-0873 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	19-Sep-07	30-Jun-09	648000.00	="05/0717"	="EDS (Australia) Pty Ltd"	24-Dec-07 10:21 AM	
-="CN52441"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	22-Dec-07	21-Jun-08	88088.00	=""	="Talent International"	24-Dec-07 10:21 AM	
-="CN52445-A1"	"07/2368 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Oct-07	31-Mar-08	370000.00	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:27 AM	
-="CN52449-A1"	"07/2367 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Sep-07	31-Mar-08	500000.00	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:30 AM	
-="CN52446-A1"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	19-Dec-07	18-Jun-08	97240.00	=""	="Eurolink Australia"	24-Dec-07 10:36 AM	
-="CN52451"	"Provision for Printing Services"	="Comsuper"	24-Dec-07	="Printing accessories"	20-Nov-07	05-Dec-07	26271.30	=""	="Pirion Pty Ltd"	24-Dec-07 10:40 AM	
-="CN52462"	"WMO - Aust. Contribution to VCP(F) for 2008"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-08	1150668.73	=""	="WORLD METEOROLOGICAL ORGANIZATION"	24-Dec-07 11:34 AM	
-="CN52463"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	10-Dec-07	31-Dec-07	12336.97	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:34 AM	
-="CN52464"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	12-Dec-07	31-Dec-07	18154.63	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	
-="CN52465"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	11-Dec-07	31-Dec-07	13693.91	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	
-="CN52466"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	92822.48	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:35 AM	
-="CN52467"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	31-Dec-07	12774.75	=""	="Telvent Almos"	24-Dec-07 11:35 AM	
-="CN52468"	"Autosonde Upgrade Expenses Learmonth, Kalgoorlie, Charleville & Weipa"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Dec-07	12008.77	=""	="Vaisala Pty Ltd"	24-Dec-07 11:35 AM	
-="CN52469"	"Audit Fees"	="Bureau of Meteorology"	24-Dec-07	="Accounting and auditing"	10-Dec-07	31-Dec-07	14465.00	=""	="Deloitte Touche Tohmatsu"	24-Dec-07 11:35 AM	
-="CN52470"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	03-Dec-07	31-Dec-07	127366.17	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	
-="CN52471"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	12521.99	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	
-="CN52472"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	16071.67	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	
-="CN52473"	"BOC container management fee forDecember 2007"	="Bureau of Meteorology"	24-Dec-07	="Tools and General Machinery"	06-Dec-07	31-Dec-07	12578.13	=""	="Boc Limited"	24-Dec-07 11:35 AM	
-="CN52474"	"Postage A/c"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	07-Dec-07	07-Dec-07	38994.45	=""	="Australia Post"	24-Dec-07 11:36 AM	
-="CN52475"	"Wave Rider Data"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	11000.00	=""	="NSW Department of Commerce"	24-Dec-07 11:36 AM	
-="CN52476"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	11-Dec-07	31-Dec-07	17531.71	=""	="AAPT LIMITED"	24-Dec-07 11:36 AM	
-="CN52477"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	15979.48	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	
-="CN52478"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	13860.00	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	
-="CN52479"	"Project Management Fees June - October 2007"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	36404.79	=""	="Montlaur Project Services Pty Ltd"	24-Dec-07 11:36 AM	
-="CN52480"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	
-="CN52481"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	
-="CN52482"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	88000.00	=""	="KLM GROUP"	24-Dec-07 11:37 AM	
-="CN52483"	"ARGOS Satellite Services Sep & Oct 2007"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	22728.46	=""	="CLS"	24-Dec-07 11:37 AM	
-="CN52484"	"Subscription to Weatherwise 2008"	="Bureau of Meteorology"	24-Dec-07	="Printed media"	14-Dec-07	31-Dec-08	66079.96	=""	="Ebsco Australia"	24-Dec-07 11:37 AM	
-="CN52486"	"Software maintenance for IDL licenses"	="Bureau of Meteorology"	24-Dec-07	="Computer services"	14-Dec-07	31-Dec-08	33176.39	=""	="IT & T VISUAL SYSTEMS"	24-Dec-07 11:37 AM	
-="CN52487"	"MAINTENANCE WILLIS IS DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Building and Construction and Maintenance Services"	18-Dec-07	18-Dec-07	102061.94	=""	="ABSOLUTE MAINTENANCE & TECHNICAL"	24-Dec-07 11:37 AM	
-="CN52488"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-07	43603.59	=""	="Telvent Almos"	24-Dec-07 11:37 AM	
-="CN52489"	"ABARE's Outlook 2008 Conference Partnerships Brochure"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-08	10500.00	=""	="ABARE -(DAFF CPM)"	24-Dec-07 11:37 AM	
-="CN52490"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	24798.83	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	
-="CN52491"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	67859.70	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	
-="CN52492"	"CHARTER AWS/WILLIS IS NOV/DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	24-Dec-07	24-Dec-07	135872.00	=""	="Fodico Pty Ltd"	24-Dec-07 11:38 AM	
-="CN52493"	"5 CANISTERS - 7 ANTENNAS & 1 RECEIVER"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	12-Dec-07	25-Jan-08	15071.10	=""	="Elpro Technologies Pty Ltd"	24-Dec-07 11:38 AM	
-="CN52494"	"Radar Spares"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	14-Dec-07	01-Mar-08	360200.26	=""	="AMS - GEMATRONIK GmbH"	24-Dec-07 11:38 AM	
-="CN52495"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	
-="CN52496"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	
-="CN52497"	"Provision of Telecommunication Links for Weatherne"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	17-Dec-07	01-Jan-11	516000.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:38 AM	
-="CN52498"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	17-Dec-07	17-Dec-07	258349.00	=""	="CSIRO"	24-Dec-07 11:39 AM	
-="CN52499"	"Water Information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	01-Mar-08	426811.00	=""	="CSIRO"	24-Dec-07 11:39 AM	
-="CN52500"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	18-Dec-07	133622.01	=""	="CSIRO"	24-Dec-07 11:39 AM	
-="CN52501"	"Communication link Melbourne to Canberra"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	28-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	
-="CN52502"	"Communication link Melbourne to Sydney"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	31-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	
-="CN52503"	"Overhaul Windsspeed/Direction Detectors Qty 10"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	21-Dec-07	07-Jan-08	11396.00	=""	="Karl Dierken Engineering Service"	24-Dec-07 11:39 AM	
-="CN52504"	"Supermicro Server"	="Bureau of Meteorology"	24-Dec-07	="Computer Equipment and Accessories"	21-Dec-07	28-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	24-Dec-07 11:39 AM	
-="CN52505"	"Radiosonde (Qty 6000)"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	24-Dec-07	31-Jan-08	1144770.00	=""	="Vaisala Pty Ltd"	24-Dec-07 11:39 AM	
-="CN52507"	"Ballot Paper Production for NSW"	="Australian Electoral Commission"	24-Dec-07	="Industrial printing services"	31-May-04	30-May-08	1452440.00	=""	="McMillan Print Group"	24-Dec-07 12:24 PM	
-="CN52509"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	18590.00	="."	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	24-Dec-07 12:50 PM	
-="CN52510"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Aug-08	391800.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:51 PM	
-="CN52511"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	28-Mar-08	34397.00	="0"	="MANPOWER SERVICES (AUST) P/L"	24-Dec-07 12:51 PM	
-="CN52512"	"IT System Development Services"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	130000.00	="FIN05CRP004-31"	="STRATAGEM"	24-Dec-07 12:51 PM	
-="CN52513"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	31-Mar-10	205127.30	="FINANCE05009"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	
-="CN52514"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Nov-09	31884.48	="24871/AUS/PE/S/22/A/1"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	
-="CN52515"	"Additional Construction Works"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	24-Dec-07	31-Jan-08	19800.00	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	24-Dec-07 12:51 PM	
-="CN52516"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	28403.76	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:51 PM	
-="CN52517"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	135000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	
-="CN52518"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	27-Jun-08	172000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:52 PM	
-="CN52519"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	13-Jun-08	97000.00	="FIN 05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	24-Dec-07 12:52 PM	
-="CN52520"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	27-Nov-08	14434.20	="AS070813L1"	="INTEGRATED TECHNICAL MANAGEMENT PTY LTD"	24-Dec-07 12:52 PM	
-="CN52521"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	157030.00	="RFT LSB 01/2005"	="BLAKE DAWSON WALDRON - ACT"	24-Dec-07 12:52 PM	
-="CN52522"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	130000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	24-Dec-07 12:52 PM	
-="CN52523"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	27104.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	24-Dec-07 12:52 PM	
-="CN52524"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	170000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	
-="CN52525"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Jun-08	180380.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:53 PM	
-="CN52526"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	90000.00	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:53 PM	
-="CN52527"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	08-Mar-08	16022.16	="Support Agreement 18400570802313"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:53 PM	
-="CN52528"	"Communication Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Jun-08	96514.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:53 PM	
-="CN52529"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	18-Jan-08	10990.65	="0"	="ANITECH"	24-Dec-07 12:53 PM	
-="CN52530"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Jan-08	35964.50	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:53 PM	
-="CN52531"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Jan-08	11-Jan-09	76370.93	="Quote Q-1838343"	="COGNOS PTY LIMITED"	24-Dec-07 12:53 PM	
-="CN52532"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	160000.00	="FIN 05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	24-Dec-07 12:53 PM	
-="CN52533"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-Jun-08	310322.10	="BCS Client #03200628"	="IBM AUSTRALIA LIMITED"	24-Dec-07 12:54 PM	
-="CN52534"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Nov-09	6654230.00	="Not applicable"	="VOLANTE SYSTEMS PTY LTD"	24-Dec-07 12:54 PM	
-="CN52535"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	180000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	
-="CN52536"	"Advertising & Promotion Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	11060.50	=""	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	24-Dec-07 12:54 PM	
-="CN52537"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	166000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	
-="CN52538"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	16-Jan-08	19141.22	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:54 PM	
-="CN52539"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	195000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:54 PM	
-="CN52540"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	10-Jun-08	30000.00	="fin/CAPSHR"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Dec-07 12:54 PM	
-="CN52541"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	02-Jan-08	31-Mar-08	51920.00	="FIN05CPRP004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:54 PM	
-="CN52542"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	20-Dec-07	29-Feb-08	16016.00	="NA"	="HONEYWELL LTD"	24-Dec-07 12:55 PM	
-="CN52543"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	26-Jan-08	27-Jun-08	255000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	
-="CN52544"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	63177.93	="AIMS"	="QSP ASIA PACIFIC PTY LTD"	24-Dec-07 12:55 PM	
-="CN52545"	"OHS & Medical Costs"	="Department of Finance and Administration"	24-Dec-07	="Medical Equipment and Accessories and Supplies"	21-Dec-07	04-Jan-08	24390.00	=""	="PARASOL EMT PTY LTD"	24-Dec-07 12:55 PM	
-="CN52546"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	38182.10	="n/a"	="EB2BCOM PTY LTD"	24-Dec-07 12:55 PM	
-="CN52547"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	88000.00	="FIN 05CRP 004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:55 PM	
-="CN52548"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	27-Jun-08	86000.00	="FIN05 CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	24-Dec-07 12:55 PM	
-="CN52549"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Dec-07	19-Dec-08	220000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	
-="CN52550"	"Capital Expenditure - IT"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-May-08	277283.61	="0"	="CERULEAN SOLUTIONS LTD"	24-Dec-07 12:56 PM	
-="CN52551"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	31-Jan-08	29099.93	=""	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:56 PM	
-="CN52552"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-Dec-07	30-Apr-08	207099.00	=""	="HONEYWELL LTD"	24-Dec-07 12:56 PM	
-="CN52553"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	02-Feb-08	30-Jan-09	175000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:56 PM	
-="CN52554"	"Project Manager and Superintendency"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	13-Oct-08	750000.00	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	24-Dec-07 12:56 PM	
-="CN52555"	"Architectural Services"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	95249.30	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	24-Dec-07 12:56 PM	
-="CN52556"	"Construction Early Works"	="Department of Finance and Administration"	24-Dec-07	="Environmental Services"	19-Dec-07	30-Jun-08	930000.00	=""	="LAND DEVELOPMENT AGENCY"	24-Dec-07 12:56 PM	
-="CN52557"	"Consultancy Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	11-Jan-08	31900.00	="Unknown"	="RESULTS CONSULTING (AUSTRALIA)"	24-Dec-07 12:56 PM	
-="CN52558"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Mar-08	14305.00	="N/A"	="AUSTRALIAN GOVERNMENT SOLICITOR"	24-Dec-07 12:56 PM	
-="CN52559"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	25-Jan-08	19455.44	="0"	="CLAYTON UTZ - 404917"	24-Dec-07 12:57 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN52037"	"Tool Kit Electricians used by RAE Electrical Mechanics to Test Electrical Equipment and Wiring"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	06-Feb-08	55521.84	=""	="Brentool Industrial Supplies Pty Ltd"	20-Dec-07 07:58 AM	

+="CN52038"	"Roll Tools & Accessories Cloth Coated Nylon 2 Pockets 14 Loops, Water Repellant, Mildew Resistant, w/Buckle"	="Defence Materiel Organisation"	20-Dec-07	="Workshop machinery and equipment and supplies"	18-Dec-07	27-Jan-08	27280.00	=""	="Canvas Contracting"	20-Dec-07 08:04 AM	

+="CN52039"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	19-Nov-08	24531.14	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:18 AM	

+="CN52040"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	28-Jan-08	32256.14	=""	="Symbion Pharmacy Services"	20-Dec-07 08:22 AM	

+="CN52041"	" Purchase of Aircraft Components "	="Defence Materiel Organisation"	20-Dec-07	="Aircraft"	19-Dec-07	15-Feb-08	40259.56	=""	="Kaman Aerospace International Corporation"	20-Dec-07 08:22 AM	

+="CN52042"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	20-Dec-07	="Aircraft spars"	20-Dec-07	18-Jan-09	11897.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 08:25 AM	

+="CN52043"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Drugs and Pharmaceutical Products"	17-Dec-07	29-Jan-08	25551.39	=""	="Symbion Pharmacy Services"	20-Dec-07 08:26 AM	

+="CN52044"	" Med Consumables For ADF "	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	25-Dec-07	26000.35	=""	="Clifford Hallam Healthcare"	20-Dec-07 08:43 AM	

+="CN52045"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	20-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Dec-07	18-Jan-08	12302.51	=""	="LAND ROVER AUSTRALIA"	20-Dec-07 08:44 AM	

+="CN52047"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	20-Dec-07	="Medical Equipment and Accessories and Supplies"	17-Dec-07	24-Dec-07	18055.60	=""	="Ansell International Pty Ltd"	20-Dec-07 09:24 AM	

+="CN52049"	"Financial advice for contract"	="Australian Taxation Office"	20-Dec-07	="Financial assistance"	01-Nov-07	21-Dec-07	17578.00	=""	="Freebody Cogent Pty Ltd"	20-Dec-07 10:06 AM	

+="CN52050"	"SOCKS, VARIOUS."	="Defence Materiel Organisation"	20-Dec-07	="Socks"	05-Dec-07	30-Jun-08	267047.00	="J7964"	="TOPS SOCKS"	20-Dec-07 10:33 AM	

+="CN52051"	"Provision of an ecredited competency based program for sutomer service"	="Comsuper"	20-Dec-07	="Computer based training software"	03-Sep-07	30-Jun-08	34170.00	=""	="CIT Solutions Pty Ltd"	20-Dec-07 10:44 AM	

+="CN52061"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	21-Nov-07	05-Dec-07	13673.00	=""	="Union Offset Printers"	20-Dec-07 10:53 AM	

+="CN52065"	"Provision for CPI Pension Update Mailout"	="Comsuper"	20-Dec-07	="Printing accessories"	25-May-07	15-Jun-07	17996.00	=""	="Union offset Printers"	20-Dec-07 10:56 AM	

+="CN52067"	" Stationery Contract - final option  Original Contract commenced 21/09/2003 "	="Australian Electoral Commission"	20-Dec-07	="Stationery"	01-Nov-07	29-Feb-08	88000.00	=""	="Corporate Express Australia Ltd"	20-Dec-07 10:57 AM	

+="CN52079"	"Provision for CPI January 2008 Pension Increase"	="Comsuper"	20-Dec-07	="Printing accessories"	14-Dec-07	21-Dec-07	25617.88	=""	="Hermes Precisa P/L"	20-Dec-07 11:09 AM	

+="CN52081"	"ASLAV PARTS - WINDOW, OPTICAL INSTRUMENT"	="Department of Defence"	20-Dec-07	="Armoured fighting vehicles"	19-Dec-07	29-Jul-08	52514.00	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-Dec-07 11:11 AM	

+="CN52090-A1"	"Postal Voting Mailhouse and Print Services"	="Australian Electoral Commission"	20-Dec-07	="Transportation and Storage and Mail Services"	26-Oct-06	30-Jun-11	1291062.28	="S06/07/29"	="Sema Group Pty Ltd"	20-Dec-07 11:24 AM	

+="CN52100"	"Mailing House Services"	="Australian Electoral Commission"	20-Dec-07	="Mailing services"	27-Nov-07	27-Dec-07	69449.60	=""	="B & C Mailing Pty Ltd"	20-Dec-07 11:43 AM	

+="CN52101"	"Printing of Election Booklets"	="Australian Electoral Commission"	20-Dec-07	="Industrial printing services"	08-Nov-07	08-Dec-07	11540.10	=""	="GT Graphics"	20-Dec-07 12:01 PM	

+="CN52103"	" Impact assessment "	="Australian Centre for International Agricultural Research"	20-Dec-07	="Agricultural research services"	17-Dec-07	28-Mar-08	78840.00	=""	="Centre for International Economics"	20-Dec-07 12:07 PM	

+="CN52104"	"The provision of services for a professionally conducted presentation workshop for NBA staff development."	="National Blood Authority"	20-Dec-07	="Education and Training Services"	12-Jan-07	12-Jan-07	15445.00	=""	="Maura Fay Workshops"	20-Dec-07 12:13 PM	

+="CN52105"	"Provision of air travel"	="National Blood Authority"	20-Dec-07	="Commercial aeroplane travel"	03-Oct-07	13-Oct-07	37212.32	=""	="Flight Centre"	20-Dec-07 12:18 PM	

+="CN52106"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	01-Nov-07	14-Dec-07	16500.00	=""	="St Pauls Cathedral Parish"	20-Dec-07 12:21 PM	

+="CN52107"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	21-Nov-07	21-Dec-07	11000.00	=""	="W Herrmann Real Estate Pty Ltd"	20-Dec-07 12:32 PM	

+="CN52108"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	31-Oct-07	14-Dec-07	21862.50	=""	="Kinight Frank Tasmania"	20-Dec-07 12:38 PM	

+="CN52110"	" Advertising monitoring - new ads "	="Australian Taxation Office"	20-Dec-07	="Information services"	04-Feb-08	03-Feb-09	26400.00	=""	="Xtreme Information Services Australia"	20-Dec-07 12:47 PM	

+="CN52111-A2"	"The procurement of Contract services for the development of the Evaluation Framework and Methodology for the Assessment of National Blood Supply Change Proposals."	="National Blood Authority"	20-Dec-07	="Business administration services"	10-Dec-07	30-Jun-09	108845.00	=""	="University of Technology Sydney - Centre for Health Economic Research and Evaluation (CHERE)"	20-Dec-07 12:48 PM	

+="CN52114-A1"	"FOOD CONTAINER, INSULATED"	="Defence Materiel Organisation"	20-Dec-07	="Containers and storage"	19-Dec-07	18-Mar-08	111650.00	="J7855"	="TRIMCAST PTY LTD"	20-Dec-07 01:56 PM	

+="CN52118"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	31-Aug-06	30-Jun-09	24060.96	="AEC06/019"	="Peoplebank Australia Ltd"	20-Dec-07 02:21 PM	

+="CN52123"	"Translation of Election Guide"	="Australian Electoral Commission"	20-Dec-07	="Written translation services"	01-Dec-06	30-Nov-09	18212.04	="S06/07/033"	="VITS Language Link"	20-Dec-07 02:28 PM	

+="CN52125"	"Annual meeting at PACOM"	="Department of Defence"	20-Dec-07	="Passenger transport"	07-Oct-07	07-Oct-07	10066.60	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	

+="CN52126"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	20-Dec-07	="Passenger transport"	29-Nov-07	29-Nov-07	12406.22	=""	="QANTAS AIRWAYS LIMITED"	20-Dec-07 02:47 PM	

+="CN52127"	"HMA Blaze Press ads Job vacancies CM07100026,CM07100027,CM07100028,CM07100029"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11596.99	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52128"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100148,CM07100147,CM07100146,CM07100145"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	11828.91	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52129"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100150,CM07100149,CM07101146,CM07100363"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	13353.14	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52130"	"HMA Blaze Press ads Recruitment Job Vacancies CM07100143,CM07110004,CM07110369,CM07110370"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	21-Nov-07	21-Nov-07	14964.62	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52131"	"HMA Blaze Press ads Recruitment Job vacancies CM07110022,CM07110014,CM07110013,CM07110012"	="Department of Defence"	20-Dec-07	="Personnel recruitment"	29-Nov-07	29-Nov-07	12129.87	=""	="HMA BLAZE"	20-Dec-07 02:48 PM	

+="CN52132"	"Panel transaction fee for Strategic Workforce PlanCIOG HR Services"	="Department of Defence"	20-Dec-07	="Human resources services"	04-Dec-07	04-Dec-07	11501.60	=""	="AUST PUBLIC SVC COMM"	20-Dec-07 02:48 PM	

+="CN52133"	"DSTO Project Furniture"	="Department of Defence"	20-Dec-07	="Office Equipment and Accessories and Supplies"	10-Dec-07	10-Dec-07	26825.00	=""	="CJ OFFICE CHOICE"	20-Dec-07 02:48 PM	

+="CN52134"	"Chairs for SAW"	="Department of Defence"	20-Dec-07	="Furniture and Furnishings"	11-Dec-07	11-Dec-07	11197.40	=""	="STEM TUBULAR INDSTRS   T"	20-Dec-07 02:48 PM	

+="CN52135"	"DMO Advertisement in Career FAQs publication - Transport and Logistics.  (I have paid this via credit card as invoice was well overdue and vendor mgt have still not created vendor after 3 weeks)."	="Defence Materiel Organisation"	20-Dec-07	="Advertising"	07-Nov-07	14-Dec-07	13200.00	=""	="CAREER FAQS"	20-Dec-07 02:49 PM	

+="CN52136"	"MOU between the ABCC and the APSC concerning the program: Diversity Training."	="Office of the Australian Building and Construction Commissioner (ABCC)"	20-Dec-07	="Business administration services"	16-Oct-07	20-Nov-07	11201.00	=""	="THE AUSTRALIAN PUBLIC SERVICE COMMISSION"	20-Dec-07 02:55 PM	

+="CN52137"	"Enagement of TFS Migration Specialist"	="Australian Taxation Office"	20-Dec-07	="Engineering and Research and Technology Based Services"	03-Dec-07	29-Feb-08	88800.00	=""	="Microsoft"	20-Dec-07 03:06 PM	

+="CN52138"	"Software maintenance"	="Department of the House of Representatives"	20-Dec-07	="Software maintenance and support"	18-Dec-07	17-Dec-08	13493.70	=""	="Different Solutions"	20-Dec-07 03:07 PM	

+="CN52139"	"Sage Green Coveralls, Shirts and Trousers for RAAF and other Flying Military Personnel raised against Standing Offer 0306-264-26"	="Defence Materiel Organisation"	20-Dec-07	="Clothing"	17-Dec-07	30-May-08	960118.61	="2480010"	="Australian Defence Apparel"	20-Dec-07 03:09 PM	

+="CN52140"	"Flash Media Software"	="Department of the House of Representatives"	20-Dec-07	="Software"	18-Dec-07	17-Dec-08	69187.71	=""	="Different Solutions"	20-Dec-07 03:11 PM	

+="CN52141"	" computers "	="Department of the House of Representatives"	20-Dec-07	="Computers"	11-Dec-07	29-Feb-08	23595.00	=""	="Commander NSW Pty Ltd"	20-Dec-07 03:17 PM	

+="CN52142"	"Temporary Personnel"	="Australian Electoral Commission"	20-Dec-07	="Temporary personnel services"	06-Dec-07	06-Jan-08	14300.00	=""	="Searson Buck Pty Ltd"	20-Dec-07 03:20 PM	

+="CN52143"	"Flash/media Web"	="Department of the House of Representatives"	20-Dec-07	="Web page creation and editing software"	11-Dec-07	10-Dec-08	66308.00	=""	="Different Solutions"	20-Dec-07 03:22 PM	

+="CN52144"	"Laser jet printers"	="Department of the House of Representatives"	20-Dec-07	="Laser printers"	03-Dec-07	31-Dec-07	277374.95	=""	="Hewlett Packard Aust. Pty Ltd"	20-Dec-07 03:29 PM	

+="CN52145"	"Temporary staff for Study in Australia team"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	17-Sep-07	31-Dec-07	40000.00	="PRN18000"	="HAYS PERSONNEL SERVICES"	20-Dec-07 03:39 PM	

+="CN52147"	"Contract for professional development for Country"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	20-Nov-07	30-Jun-08	23595.00	="PRN17796"	="VISION AUSTRALIA"	20-Dec-07 03:43 PM	

+="CN52146-A1"	"For the provision for Infrastructure Architect Consultant - variation"	="Comsuper"	20-Dec-07	="Human resources services"	26-Jun-07	30-Jun-08	100000.00	=""	="Red 29 Pty Limited"	20-Dec-07 03:43 PM	

+="CN52148"	"17 Mort Street - Reconfiguration of Level's 1 and 4"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	11-Dec-07	09-Jan-08	24937.68	="PRN17992"	="CONSTRUCTION CONTROL INTERIORS P/L"	20-Dec-07 03:44 PM	

+="CN52149"	"Design document tender and contract manage DEST"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	05-Sep-07	28-Dec-07	10725.00	="PRN16842"	="GECHAWELL PTY LTD"	20-Dec-07 03:44 PM	

+="CN52150"	"Round Tables x35, Stanza chairs x33"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	03-Oct-07	31-Dec-07	19438.10	="PRN17999"	="Schiavello Commercial Interiors"	20-Dec-07 03:44 PM	

+="CN52151"	"Repairs to Staff House Kangaroo Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	02-Jul-07	28-Mar-08	13500.00	="PRN17382"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52152"	"Exec Furniture 71 and 72 Northbourne projects"	="Department of Education, Science and Training"	20-Dec-07	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	15393.40	="PRN18205"	="CITE OFFICE DESIGN PTY LIMITED"	20-Dec-07 03:44 PM	

+="CN52153"	"Repairs to Staff House 11 Hollings Place"	="Department of Education, Science and Training"	20-Dec-07	="General building construction"	23-Jul-07	31-Mar-08	72400.00	="PRN17132"	="VATHJUNKER CONTRACTORS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52154"	"DEST National Office Accommodation Project"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Apr-10	1092927.00	="PRN12256"	="XACT PROJECT CONSULTANTS PTY LTD"	20-Dec-07 03:44 PM	

+="CN52155"	"School Enrolment Projections to 2020"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	05-Feb-07	11-Jan-08	35057.00	="PRN12446"	="NATSEM"	20-Dec-07 03:46 PM	

+="CN52156"	"Commvault Data Management Software"	="Department of Education, Science and Training"	20-Dec-07	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	47500.00	="PRN18198"	="COMMVAULT SYSTEMS (AUSTRALIA) P/L"	20-Dec-07 03:47 PM	

+="CN52157"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Access Group Training Ltd"	20-Dec-07 03:48 PM	

+="CN52158"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="Applied Training Solutions Pty Ltd"	20-Dec-07 03:48 PM	

+="CN52159"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="ARTISTRY OF MAKE-UP ACADEMY"	20-Dec-07 03:48 PM	

+="CN52160"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education, Science and Training"	20-Dec-07	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="NEW HORIZONS LEARNING CNTR (PERTH)"	20-Dec-07 03:48 PM	

+="CN52161"	"Organisation Review Implementation of NSW/ACT"	="Department of Education, Science and Training"	20-Dec-07	="Human resources services"	18-Jun-07	20-Jun-08	34386.41	="PRN17996"	="MERCER HUMAN RESOURCE CONSULTING"	20-Dec-07 03:48 PM	

+="CN52162"	"PAD, SCOURING"	="Defence Materiel Organisation"	20-Dec-07	="Scouring pads"	18-Dec-07	21-Dec-07	13068.00	=""	="RICHARDSON WAYNE SALES"	20-Dec-07 03:49 PM	

+="CN52163"	"Kindy/Pre-school Workshop 2007"	="Department of Education, Science and Training"	20-Dec-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	15000.00	="PRN17412"	="HOLIDAY INN BRISBANE"	20-Dec-07 03:49 PM	

+="CN52164"	"International business skills for VET senior managers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	10-Dec-07	30-May-08	59100.00	="PRN17417"	="INTERNATIONAL EDUCATION"	20-Dec-07 03:49 PM	

+="CN52165"	"Australian Government Summer Schools for Teachers"	="Department of Education, Science and Training"	20-Dec-07	="Marketing and distribution"	14-Dec-07	30-Jun-08	49181.29	="PRN18008"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	20-Dec-07 03:50 PM	

+="CN52166"	"Provision of contract cataloguing services"	="Department of Education, Science and Training"	20-Dec-07	="Library"	02-Oct-07	02-Feb-08	13330.00	="PRN17275"	="LYNN FARKAS INFORMATION SERVICES"	20-Dec-07 03:51 PM	

+="CN52167"	"CPO017973 - Satellite phone charges"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	11-Dec-07	11-Dec-07	15084.53	=""	="Electrotech Australia"	20-Dec-07 04:02 PM	

+="CN52168"	"CPO018019 - Recruitment services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	07-Dec-07	07-Dec-07	18693.16	=""	="Recruitment Management Company"	20-Dec-07 04:03 PM	

+="CN52169"	"07/2470 - Executive assistant services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Human resources services"	10-Dec-07	10-Jun-08	60000.00	=""	="Professional Careers Australia"	20-Dec-07 04:03 PM	

+="CN52170"	"06/1493 - Supply and install cabinet x-ray system"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	27-Nov-06	24-Jan-08	63149.41	=""	="American Science and Engineering Ltd"	20-Dec-07 04:03 PM	

+="CN52171"	"CPO018036 - LCD Touch Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	24084.03	=""	="Electroboard Solutions Pty Ltd"	20-Dec-07 04:03 PM	

+="CN52172"	"CPO017981 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	18392.00	=""	="Access Control Engineered Systems Pty Ltd"	20-Dec-07 04:03 PM	

+="CN52173"	"CPO018042 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	13-Dec-07	30-Jun-08	14833.50	=""	="Crimetech Security"	20-Dec-07 04:03 PM	

+="CN52174"	"CPO018047 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Dec-07	30-Jun-08	10375.20	=""	="Bemac Security"	20-Dec-07 04:03 PM	

+="CN52175"	"CPO018048 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	31-Oct-07	31-Dec-07	11753.03	=""	="Dataline Visual Link"	20-Dec-07 04:03 PM	

+="CN52176"	"07/2343 - Smartgate Modelling -  CPE004329-1"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-09	114500.00	=""	="Airbiz Aviation Strategies Pty Ltd"	20-Dec-07 04:04 PM	

+="CN52177"	"CPO017470 - Communications Upgrade"	="Australian Customs and Border Protection Service"	20-Dec-07	="Telecommunications media services"	08-Nov-07	08-Dec-07	55814.00	=""	="SatComms Australia"	20-Dec-07 04:04 PM	

+="CN52178"	"07/2482 - Software Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	8490315.00	=""	="SAP"	20-Dec-07 04:04 PM	

+="CN52179"	"07/2477 - Supply/Maintenance of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	30-Oct-07	30-Jun-09	3286470.00	=""	="Microster Pty Ltd"	20-Dec-07 04:04 PM	

+="CN52180-A3"	"07/2476 - Supply/Implementation of Software"	="Australian Customs and Border Protection Service"	20-Dec-07	="Computer services"	22-Oct-07	30-Jun-11	1883880.00	=""	="SAP"	20-Dec-07 04:04 PM	

+="CN52181"	"CPO018167 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	18098.70	=""	="Trade Import Services"	20-Dec-07 04:04 PM	

+="CN52182"	"CPO018166 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	17-Dec-07	12-Mar-08	16291.80	=""	="Trade Import Services"	20-Dec-07 04:04 PM	

+="CN52183"	"07/2349 - Fit-Out/ Construction Services (CPO018142)"	="Australian Customs and Border Protection Service"	20-Dec-07	="General building construction"	01-Dec-07	31-Jan-08	22517.00	=""	="Quadric Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52184"	"CPO018187 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	10642.50	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52185"	"CPO018183 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	30-Jun-08	10868.00	=""	="Intelligent Surveillance"	20-Dec-07 04:05 PM	

+="CN52186"	"CPO018186 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	16072.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52187"	"CPO018185 - CCTV Maintenance"	="Australian Customs and Border Protection Service"	20-Dec-07	="Information Technology Broadcasting and Telecommunications"	18-Dec-07	30-Jun-08	11023.10	=""	="Bemac Security"	20-Dec-07 04:05 PM	

+="CN52188"	"CPO018179 - Office Refurbishment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	33880.00	=""	="Jupps Floorcoverings"	20-Dec-07 04:05 PM	

+="CN52189"	"CPO015585 - Recruitment Services"	="Australian Customs and Border Protection Service"	20-Dec-07	="Management and Business Professionals and Administrative Services"	09-Sep-07	15-Nov-07	12980.00	=""	="Hobsons Australia Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52190-A1"	"CPE0013769-1 Supply of Recording Equipment"	="Australian Customs and Border Protection Service"	20-Dec-07	="Components for information technology or broadcasting or telecommunications"	31-Jul-07	04-Dec-07	178692.80	=""	="Tape Products Research Holdings Pty Ltd"	20-Dec-07 04:05 PM	

+="CN52191"	"CPO018304 - Uniforms"	="Australian Customs and Border Protection Service"	20-Dec-07	="Clothing"	20-Dec-07	07-Mar-08	75900.00	=""	="Trade Import Services"	20-Dec-07 04:06 PM	

+="CN52192"	"Conference Catering"	="Australian Electoral Commission"	20-Dec-07	="Catering services"	04-Dec-07	04-Jan-08	13132.50	=""	="Brew Bar"	20-Dec-07 04:12 PM	

+="CN52193"	"Election Advertising"	="Australian Electoral Commission"	20-Dec-07	="Advertising"	07-Dec-07	07-Jan-08	363472.38	=""	="HMA Blaze Pty Ltd"	20-Dec-07 04:21 PM	

+="CN52194"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	20-Dec-07	="Military fixed wing aircraft"	20-Dec-07	20-Mar-08	19573.38	=""	="AIRFLITE PTY LTD"	20-Dec-07 04:23 PM	

+="CN52195-A1"	"07/2309 - Project Coordinator - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	21-Nov-07	30-Jun-09	369000.00	="07/2309"	="CCS Index Pty Ltd"	20-Dec-07 04:26 PM	

+="CN52196"	"Hire of Election Premises"	="Australian Electoral Commission"	20-Dec-07	="Lease and rental of property or building"	05-Nov-07	14-Dec-07	12300.00	=""	="Owain Glyn Dwr Unit Trust"	20-Dec-07 04:26 PM	

+="CN52198-A1"	"07/2365 - Test Analyst - 0717-0895 - ICT Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Temporary personnel services"	17-Dec-07	30-Jun-09	279000.00	="05/0717"	="Online 89 P/L t/a Profesionals Online"	20-Dec-07 04:35 PM	

+="CN52199"	"Promotional Items"	="Australian Electoral Commission"	20-Dec-07	="Promotional material or annual reports"	24-Jul-07	24-Dec-07	39014.34	=""	="Add Value Concepts"	20-Dec-07 04:36 PM	

+="CN52201"	"07/2387 - Risk Specialist - 1599-1936 - C&B Services Panel"	="Australian Customs and Border Protection Service"	20-Dec-07	="Business and corporate management consultation services"	21-Nov-07	27-Nov-07	10560.00	="06/1599"	="Booz Allen Hamilton"	20-Dec-07 04:38 PM	

+="CN52202"	"Courier Services"	="Australian Electoral Commission"	20-Dec-07	="Freight loading or unloading"	12-Nov-07	12-Dec-07	14510.63	=""	="TNT Express (Mascot)"	20-Dec-07 04:50 PM	

+="CN52203-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	25652.94	=""	="Gadens Lawyers Melbourne"	20-Dec-07 04:53 PM	

+="CN52204"	" AIRCRAFT SPARES  NSN'S :  3120-66-156-4671 X 10, 3120-66-156-4672 X 10,             3120-66-156-4674 X 6, 3120-66-156-4676 X 4,                     3120-66-156-4677 X 10, 3120-66-156-4679 X 10,                   3120-66-156-4681 X 6, 3120-66-156-4682 X 4 AND                3120-66-156-4683 X 4.  BUSHING, SLEEVES "	="Defence Materiel Organisation"	20-Dec-07	="Military transport helicopters"	20-Dec-07	22-May-08	13266.00	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	20-Dec-07 04:55 PM	

+="CN52207-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	74213.28	="07.080"	="Tresscox Lawyers"	20-Dec-07 05:17 PM	

+="CN52208-A1"	"Tax Technical Litigation and Tax Legal Advice Services"	="Australian Taxation Office"	20-Dec-07	="Taxation law"	03-Dec-07	30-Jun-08	34663.48	=""	="Maddocks"	20-Dec-07 05:20 PM	

+="CN52211"	"TRAILER, CARGO LT/MDM, CARGO, 4 TONNE, MC3, TWIN AXLE, SINGLE WHEELED, PIG TRAILER, ACCESSORY KIT SCES 12280"	="Defence Materiel Organisation"	20-Dec-07	="Container trailers"	20-Dec-07	11-Apr-08	48473.48	=""	="HAULMARK TRAILERS AUSTRALIA"	20-Dec-07 06:03 PM	

+="CN52212"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB,FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 95 MM W BY 104 MM H. QTY 6,000.  MANUFACTURED IN ACCORDANCE WITH DEF(AUST)1000C ON STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	30-Jan-08	12540.00	=""	="EE CARTONS"	20-Dec-07 06:10 PM	

+="CN52213"	"BOX, SETUP SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440 MM LG BY 190 MM W BY104 MM H.  QTY 5,000. RAISED AS PER THE CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	28-Jan-08	17050.00	=""	="EE CARTONS"	20-Dec-07 06:18 PM	

+="CN52214"	"BOX, SETUP, SOLID FIBREBOARD, OPEN, WITH PULL-TAB, FOR USE WITH BINPAK, PLASTIC, ONE COMPARTMENT, 440MM LG BY 190 MM W BY 104 MM H.  RAISED AS PER THE TERMS AND CONDITIONS OF THE STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	50160.00	=""	="EE CARTONS"	20-Dec-07 06:27 PM	

+="CN52215"	"BOX, SHIPPING, FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 350 MM W BY 393 MM DEEP, INT DIM.  QTY 30,000. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	64350.00	=""	="EE CARTONS"	20-Dec-07 06:33 PM	

+="CN52216"	"BOX, SHIPPING, FIBREBOARD, CORRUGATED, 1064MM LG BY 1064MM W BY 698MM H, INT DIMN,8.5 CU DECIMETRES.  QTY  2,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110."	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	16-Jan-08	27500.00	=""	="EE CARTONS"	20-Dec-07 06:40 PM	

+="CN52217"	" ITEM 1 - 8115-66-107-1281 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 122 MM DEEP. QTY 4,000.  ITEM 2 - 8115-66-107-1282 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 170 MM LG BY 130 MM W AND 245 MM DEEP. QTY 15,000.  ITEM 3 - 8115-66-107-1283 - BOX, FOLDING SINGLE  WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 122 MM DEEP. QTY 2,000.  ITEM 4 - 8115-66-107-1284 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 130 MM W AND 245 MM DEEP.  QTY 5,000.  ITEM 5 - 8115-66-107-1285 - BOX, FOLDING SINGLE WALL, CORRUGATED FIBREBOARD, 345 MM LG BY 265 MM W AND 122 MM DEEP.  QTY 10,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110. "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	21-Jan-08	16456.00	=""	="EE CARTONS"	20-Dec-07 06:52 PM	

+="CN52218"	" ITEM 1 - 8115-66-099-7232 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL, CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS   TO AS 2838 HJXAA/B&C 350 MM LG BY 259 MM W BY 393 MM DEEP, INT DIM.  QTY  2,000.  ITEM 2 - 8115-66-099-7233 - BOX, SHIPPING FIBREBOARD, DOUBLE WALL,CORRUGATED, REGULAR SLOTTED, MATERIAL CONFORMS TO AS 2838 HJXAA/B&C, 534 MM LG BY 259 MM W BY 251 MM DEEP, INT DIM.  QTY 5,000.  RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550110.     "	="Defence Materiel Organisation"	20-Dec-07	="Packaging boxes"	13-Dec-07	27-Jan-08	10351.00	=""	="EE CARTONS"	20-Dec-07 07:00 PM	

+="CN52219"	"    Purchase of Capillary Electrophoresis System    "	="Therapeutic Goods Administration"	21-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	06-Dec-07	64900.00	=""	="Beckman Coulter Australia Pty Ltd"	21-Dec-07 08:09 AM	

+="CN52220"	"    Purchase of Microscope/Digital Camera system    "	="Therapeutic Goods Administration"	21-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	06-Dec-07	06-Dec-07	31164.35	=""	="Carl Zeiss Pty Ltd"	21-Dec-07 08:13 AM	

+="CN52221"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Dec-07	17-Jan-08	17986.14	=""	="VOLVO COMMERCIAL VEHICLES"	21-Dec-07 08:45 AM	

+="CN52222"	"Recruitment Services"	="Therapeutic Goods Administration"	21-Dec-07	="Recruitment services"	10-Dec-07	31-Mar-08	28479.11	=""	="Professional Careers Australia Pty Ltd"	21-Dec-07 08:52 AM	

+="CN52223"	"Recruitment Services"	="Therapeutic Goods Administration"	21-Dec-07	="Recruitment services"	17-Nov-07	17-Nov-07	10521.06	=""	="HMA Blaze Pty Ltd"	21-Dec-07 08:57 AM	

+="CN52224"	"Laser jet supplies"	="Family Court of Australia"	21-Dec-07	="Inks"	20-Dec-07	18-Jan-08	24262.00	=""	="Commander Pty Ltd"	21-Dec-07 09:00 AM	

+="CN52225"	" Design of Spreadsheet and Booklet "	="Australian Electoral Commission"	21-Dec-07	="Computer generated design services"	01-Jul-07	30-Nov-07	16153.50	=""	="Perform Information Design Solutions"	21-Dec-07 09:11 AM	

+="CN52227"	"Nuclear Lamps"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	53514.12	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:22 AM	

+="CN52228"	"Promotional Bags"	="Australian Electoral Commission"	21-Dec-07	="Bags"	01-Aug-07	27-Dec-07	34714.35	=""	="Slick Promotions"	21-Dec-07 09:26 AM	

+="CN52229"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0977 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	21-Dec-07	="Aerospace systems and components and equipment"	19-Dec-07	31-Jan-08	10861.29	=""	="Goodrich Control Systems"	21-Dec-07 09:26 AM	

+="CN52230"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0755 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	21-Dec-07	="Aerospace systems and components and equipment"	19-Dec-07	31-Jan-08	20878.45	=""	="Goodrich Control System"	21-Dec-07 09:29 AM	

+="CN52231"	"CELL ASEMBLY"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	19751.76	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:29 AM	

+="CN52233"	"CARRIER DIAL SIGHT SPARES"	="Defence Materiel Organisation"	21-Dec-07	="Surveillance and detection equipment"	20-Dec-07	23-May-08	131289.91	=""	="Hall & Watts Australia Pty Ltd"	21-Dec-07 09:37 AM	

+="CN52234"	" WHEEL HUB "	="Defence Materiel Organisation"	21-Dec-07	="Axle hubs"	21-Dec-07	12-Feb-08	30492.00	=""	="TEFCO ENGINEERING PTY LTD"	21-Dec-07 09:45 AM	

+="CN52237"	"Med Consumables For ADF"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	07-Jan-08	12158.19	=""	="3M Australia Pty Ltd"	21-Dec-07 10:14 AM	

+="CN52238"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	18-Dec-07	08-Jan-08	30124.90	=""	="Becton Dickinson Pty Ltd"	21-Dec-07 10:18 AM	

+="CN52239-A1"	"07/2404 - Intelligence Performance Management - 1599-1976 - C&B Services Panel 06/1599 (CPE004342)"	="Australian Customs and Border Protection Service"	21-Dec-07	="Business and corporate management consultation services"	14-Dec-07	31-Jan-08	25000.00	="06/1599"	="Workplace Research Associates Pty Ltd"	21-Dec-07 10:26 AM	

+="CN52242"	"motor vehicle spare parts"	="Department of Defence"	21-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Dec-07	20-Jan-08	18508.80	=""	="LANDROVER"	21-Dec-07 10:40 AM	

+="CN52243"	"ARtwork by Paul Ryan, 'The Garden' 2006."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	19-Dec-07	19-Dec-07	16000.00	=""	="Rex Irwin Art Dealer"	21-Dec-07 10:41 AM	

+="CN52244"	"Artworks by Matthew Sleeth- 8 Digital Prints ('Tokyo'), 2007."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	31790.00	=""	="Josef Lebovic Gallery"	21-Dec-07 10:45 AM	

+="CN52245-A1"	" POWER CABLE ASSEMBLY "	="Defence Materiel Organisation"	21-Dec-07	="Electrical cable and accessories"	21-Dec-07	27-Mar-08	197802.00	="G6614"	="MIDLEC INDUSTRIES"	21-Dec-07 10:47 AM	

+="CN52246"	"Provision of Ainancial Accounting Services"	="Child Support Agency"	21-Dec-07	="Human resources services"	20-Dec-07	30-Apr-08	61952.00	=""	="Cordelta Pty Ltd"	21-Dec-07 10:49 AM	

+="CN52248"	"Artworks by Phillip George, 'Burring worlds (Syria/Iran)', 2007 (two works)."	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	12000.00	=""	="Phillip George"	21-Dec-07 10:51 AM	

+="CN52249"	" Artworks by Adam Laerkesen ('Beloved', 2007)  and Robert Moore ('the Much Improved HK Monaro', 2007). "	="Department of Communications, Information Technology and the Arts"	21-Dec-07	="Socio cultural services"	14-Dec-07	14-Dec-07	10000.00	=""	="damien minton gallery"	21-Dec-07 10:55 AM	

+="CN52252"	" VIBES CHROMATIC, YAMAHA YV2700G, QUANTITY 2. "	="Defence Materiel Organisation"	21-Dec-07	="Musical Instruments and parts and accessories"	26-Oct-07	23-Mar-08	16851.31	="2580070"	="ENGADINE MUSIC EDUCATION CENTRE"	21-Dec-07 11:12 AM	

+="CN52253"	"Executive facilitation services for Marketing Communications Line"	="Australian Taxation Office"	21-Dec-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	24-Dec-07	14780.00	=""	="Fyusion Asia Pacific P/L"	21-Dec-07 11:13 AM	

+="CN52255"	"Provision for System Tester"	="Comsuper"	21-Dec-07	="Human resources services"	22-Dec-07	21-Jun-08	78364.00	=""	="Talent International"	21-Dec-07 11:21 AM	

+="CN52259"	"Aviation Spares Repair of Module 4"	="Defence Materiel Organisation"	21-Dec-07	="Military rotary wing aircraft"	27-Nov-07	31-Mar-08	26009.50	=""	="Turbomeca A/Asia Pty Ltd"	21-Dec-07 11:36 AM	

+="CN52267"	"SUPPLY OF LITTER, FOLDING, RIGID POLE"	="Defence Materiel Organisation"	21-Dec-07	="Medical Equipment and Accessories and Supplies"	21-Dec-07	31-Mar-08	56540.00	=""	="NOBLE ENGINEERING PTY LTD"	21-Dec-07 12:00 PM	

+="CN52268-A1"	"COVERALLS, NBC, VARIOUS SIZES"	="Defence Materiel Organisation"	21-Dec-07	="Protective coveralls"	21-Dec-07	31-Mar-08	93381.75	=""	="POINT TRADING"	21-Dec-07 12:02 PM	

+="CN52271-A2"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	3005000.00	=""	="Australian Government Solicitor"	21-Dec-07 12:14 PM	

+="CN52270-A2"	"Freight consultants for Emily Kame Kngwarreye travelling exhibition"	="National Museum of Australia"	21-Dec-07	="Freight forwarders services"	03-Dec-07	30-Oct-08	869617.00	=""	="Global Specialised Services Pty Ltd"	21-Dec-07 12:26 PM	

+="CN52272"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	955000.00	=""	="Blake Dawson Waldron"	21-Dec-07 12:33 PM	

+="CN52273-A2"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	1030000.00	=""	="Clayton Utz"	21-Dec-07 12:37 PM	

+="CN52274-A3"	"Provision of Commercial & General Law Litigation and Legal Advice Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	1905000.00	=""	="Phillips Fox"	21-Dec-07 12:41 PM	

+="CN52275-A2"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	4130000.00	=""	="Australian Government Solicitor"	21-Dec-07 12:51 PM	

+="CN52276"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	500000.00	=""	="Church & Grace"	21-Dec-07 12:56 PM	

+="CN52278"	"Fibre Optic Communications System"	="Australian Electoral Commission"	21-Dec-07	="Fibre optic cable"	06-Dec-07	06-Jan-08	16975.20	=""	="Department of Finance and Administration"	21-Dec-07 01:46 PM	

+="CN52280"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	120000.00	=""	="Wisewoulds Lawyers"	21-Dec-07 01:58 PM	

+="CN52281"	"Production of ballot papers and booklets"	="Australian Electoral Commission"	21-Dec-07	="Digital industrial printing services"	10-Dec-07	10-Jan-08	13575.08	="AEC06/026"	="McMillan Print Group"	21-Dec-07 01:59 PM	

+="CN52282"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	20000.00	=""	="Finlaysons"	21-Dec-07 02:02 PM	

+="CN52283"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	92500.00	=""	="Deacons"	21-Dec-07 02:05 PM	

+="CN52284"	"Delivery of Tradestart Services from Tweed Heads"	="Austrade"	21-Dec-07	="Trade policy and services"	29-Oct-06	30-Jun-08	201666.30	=""	="Australian Business Limited"	21-Dec-07 02:05 PM	

+="CN52285"	"Delivery of Tradestart services from Bega"	="Austrade"	21-Dec-07	="Trade policy and services"	29-Oct-06	30-Jun-08	115500.00	=""	="Australian Business Limited"	21-Dec-07 02:05 PM	

+="CN52286"	"Media Relations advisory services for trade agreements, Business Club Australia and Australian Export Awards"	="Austrade"	21-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-06	22-Dec-06	15675.00	=""	="Caroline James Public Relations"	21-Dec-07 02:05 PM	

+="CN52287"	"Media Relations advisory services for trade agreements, Business Club Australia and Australian Export Awards"	="Austrade"	21-Dec-07	="Human resources services"	06-Aug-07	30-Jun-08	122000.00	=""	="Caroline James Public Relations"	21-Dec-07 02:06 PM	

+="CN52288"	"Development and delivery of Secure Web-based client access system"	="Austrade"	21-Dec-07	="Computer services"	26-Sep-07	26-Sep-08	110000.00	=""	="Australian Business Research Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52289"	"Purchase of Telecommunications services"	="Austrade"	21-Dec-07	="Telecommunications media services"	13-Apr-07	13-Apr-10	500000.00	=""	="Optus Networks Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52290"	"Purchase, installation and upgrade of security systems"	="Austrade"	21-Dec-07	="Computer services"	19-Oct-07	07-Dec-07	104005.00	=""	="Honeywell LTD"	21-Dec-07 02:06 PM	

+="CN52291"	"Administrative reengineering review of HR processess"	="Austrade"	21-Dec-07	="Human resources services"	24-Jul-06	30-Jun-07	85140.00	=""	="Bevington Consulting Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52292"	"Development and delivery of Secure Web-based client access system"	="Austrade"	21-Dec-07	="Alternative educational systems"	01-Oct-07	30-Sep-08	133500.00	=""	="SKillsoft Asia Pacific Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52293"	"Purchase of Card Scan Executive units"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	24-Oct-07	26-Oct-07	25987.50	=""	="Abditech Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52294"	"Preparation and facilitation of senior management workshop"	="Austrade"	21-Dec-07	="Education and Training Services"	22-Jul-07	27-Jul-07	47630.00	=""	="Corteks Company Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52295"	"Printing of 2007 Aust Export Awards magazine"	="Austrade"	21-Dec-07	="Marketing and distribution"	05-Sep-07	31-Dec-07	34925.00	=""	="Loyalty Australasia Pty Ltd"	21-Dec-07 02:06 PM	

+="CN52296"	"Research and advisory services about information technology for leaders"	="Austrade"	21-Dec-07	="Computer services"	01-Nov-07	31-Oct-08	23320.00	=""	="Gartner Australasia Pty Ltd"	21-Dec-07 02:07 PM	

+="CN52297"	"Development and delivery of Turnkey Learning management Solutions"	="Austrade"	21-Dec-07	="Education and Training Services"	01-Aug-07	01-Aug-08	75900.00	=""	="Southrock Corporation Limited"	21-Dec-07 02:07 PM	

+="CN52298"	"Event Management and technological equipment for the Australian Export Awards Gala Dinner"	="Austrade"	21-Dec-07	="Marketing and distribution"	09-Oct-07	22-Nov-07	127729.29	=""	="Great Southern E-vents Pty Ltd"	21-Dec-07 02:07 PM	

+="CN52299-A2"	"Replacement of the current Email Management System"	="Austrade"	21-Dec-07	="Human resources services"	24-Sep-07	23-Sep-10	10835.00	=""	="Returnity Pty Ltd"	21-Dec-07 02:07 PM	

+="CN52300"	"Preperation of online survey, and workshop facilitation"	="Austrade"	21-Dec-07	="Computer services"	03-Aug-07	03-Aug-07	22011.39	=""	="Culture Resource Centre Pty Ltd"	21-Dec-07 02:07 PM	

+="CN52301"	"Marketing support and senior writing services"	="Austrade"	21-Dec-07	="Human resources services"	10-Oct-07	21-Dec-07	30000.00	=""	="TPA (a division of vedior)"	21-Dec-07 02:07 PM	

+="CN52302"	"Marketing support and direct marketing co-ordinator"	="Austrade"	21-Dec-07	="Human resources services"	05-Nov-07	07-Dec-07	10000.00	=""	="TPA (a division of vedior)"	21-Dec-07 02:07 PM	

+="CN52304"	"IT service centre support officer"	="Austrade"	21-Dec-07	="Human resources services"	12-Nov-07	11-Jan-08	13500.00	=""	="Icon Recruitment Pty Ltd"	21-Dec-07 02:08 PM	

+="CN52305"	"Planning and deployment support and advice for IT platforms"	="Austrade"	21-Dec-07	="Human resources services"	22-Oct-07	22-Apr-08	113000.00	=""	="Paxus Australia Pty Ltd"	21-Dec-07 02:08 PM	

+="CN52306"	"Support and analysis of current Microsoft CRM system"	="Austrade"	21-Dec-07	="Management advisory services"	16-Oct-07	03-Dec-07	113200.00	=""	="Accenture Australia Holdings Pty Ltd"	21-Dec-07 02:08 PM	

+="CN52303-A1"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	430000.00	=""	="Craddock Murray Neumann"	21-Dec-07 02:08 PM	

+="CN52307"	"Preparation and facilitation of Senior Management Team Conference 2007"	="Austrade"	21-Dec-07	="Management advisory services"	08-Oct-07	09-Nov-07	19470.00	=""	="Learning Dimensions Network Pty Ltd"	21-Dec-07 02:08 PM	

+="CN52308"	"Tool Box Portable Steel Olive Drab"	="Defence Materiel Organisation"	21-Dec-07	="Workshop machinery and equipment and supplies"	21-Dec-07	20-Mar-08	54891.54	=""	="J Blackwood & Son"	21-Dec-07 02:10 PM	

+="CN52309"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	460000.00	=""	="The Argyle Partnership"	21-Dec-07 02:11 PM	

+="CN52310-A2"	"Translation and mailing services"	="Australian Electoral Commission"	21-Dec-07	="Written translation services"	10-May-07	31-Jan-08	53751.60	="AEC06/028"	="Cultural Perspectives"	21-Dec-07 02:12 PM	

+="CN52311-A1"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	85000.00	=""	="Miller Harris Lawyers"	21-Dec-07 02:14 PM	

+="CN52312"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	570000.00	=""	="Hunt & Hunt of Gateway"	21-Dec-07 02:17 PM	

+="CN52313"	"Provision of Debt Litigation Services"	="Australian Taxation Office"	21-Dec-07	="Legal services"	01-Jul-07	30-Jun-08	407500.00	=""	="Gadens Lawyers"	21-Dec-07 02:20 PM	

+="CN52314"	"Purchase of central test lab equipement"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	22-Nov-06	25-Jan-07	74101.62	=""	="Hewlett Packard Australia Pty Ltd"	21-Dec-07 02:21 PM	

+="CN52315"	"Architectural services and project management Hurstville office"	="Austrade"	21-Dec-07	="General building construction"	25-Jun-07	01-Sep-07	44000.00	=""	="Sinclair Knight Merz Pty Ltd"	21-Dec-07 02:21 PM	

+="CN52316"	"Preparation and facilitation of e-business workshops"	="Austrade"	21-Dec-07	="Management advisory services"	01-Jul-07	30-Jun-08	18500.00	=""	="Information Solutions Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52317"	"Publishing and printing of 2007 Australian Export Awards magazine"	="Austrade"	21-Dec-07	="Marketing and distribution"	05-Sep-07	31-Dec-07	15620.00	=""	="Loyalty Australasia Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52318"	"Publishing of full colour BCA ad in the Bulletin"	="Austrade"	21-Dec-07	="Marketing and distribution"	22-Jun-07	31-Jul-07	12853.50	=""	="ACP Magazines"	21-Dec-07 02:22 PM	

+="CN52319"	"Purchase of video hardware and three year maintenance"	="Austrade"	21-Dec-07	="Computer Equipment and Accessories"	01-Jul-07	01-May-10	158941.20	=""	="Electroboard Solutions Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52320"	"Basis Consultancy advice"	="Austrade"	21-Dec-07	="Management advisory services"	26-Nov-07	30-Apr-09	13200.00	=""	="Southern Cross Computing"	21-Dec-07 02:22 PM	

+="CN52321"	"Workshop and online survey development and facilitation"	="Austrade"	21-Dec-07	="Education and Training Services"	08-Nov-07	23-Nov-08	13097.13	=""	="Culture Resource Centre Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52322"	"Research and analysis of Connect environments and development of wireframes"	="Austrade"	21-Dec-07	="Management advisory services"	03-Dec-07	28-Feb-09	55000.00	=""	="Different Solutions Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52323"	"Customised research for Sensis Business Index"	="Austrade"	21-Dec-07	="Computer services"	27-Jun-07	11-Jul-07	11000.00	=""	="Sensis Pty Ltd"	21-Dec-07 02:22 PM	

+="CN52324"	"Customised research for Sensis Business Index"	="Austrade"	21-Dec-07	="Computer services"	21-Jun-07	05-Jul-07	22000.00	=""	="Sensis Pty Ltd"	21-Dec-07 02:23 PM	

+="CN52325"	"Preparation and facilitation of medical Devices workshops"	="Austrade"	21-Dec-07	="Education and Training Services"	13-Jun-07	20-Jun-07	11550.00	=""	="Innovation Law"	21-Dec-07 02:23 PM	

+="CN52326"	"Assistance with JTE project"	="Austrade"	21-Dec-07	="Human resources services"	01-Nov-07	21-Dec-07	15000.00	=""	="Vedior Asia Pacific Pty (Previously Select Australasia Pty Ltd)"	21-Dec-07 02:23 PM	

+="CN52327"	"Sponsorship of the China Business Summit"	="Austrade"	21-Dec-07	="Marketing and distribution"	01-Feb-08	24-Feb-08	27500.00	=""	="The Council Of  the City of Sydney"	21-Dec-07 02:23 PM	

+="CN52328"	"Analysis, development and maintenance of existing and new application systems"	="Austrade"	21-Dec-07	="Management advisory services"	21-Nov-07	15-Feb-08	54300.00	=""	="GMT Canberra Pty Ltd"	21-Dec-07 02:23 PM	

+="CN52329"	"Hire of Election Premises"	="Australian Electoral Commission"	21-Dec-07	="Lease and rental of property or building"	29-Nov-07	29-Dec-07	56892.36	=""	="NSW Electoral Commission"	21-Dec-07 02:37 PM	

+="CN52334"	"Design and management of security upgrade project"	="Austrade"	21-Dec-07	="Computer services"	17-Sep-07	17-Oct-07	14062.00	=""	="NOVA Commercial Interiors"	21-Dec-07 02:56 PM	

+="CN52335"	"Design and delivery of publishing package in India"	="Austrade"	21-Dec-07	="Marketing and distribution"	08-Jun-07	31-Mar-08	75000.00	=""	="Focus Publishing International"	21-Dec-07 02:56 PM	

+="CN52336"	"Venure hire and accommodation  for conference in Guangzhou China"	="Austrade"	21-Dec-07	="Hotels and lodging and meeting facilities"	06-Dec-07	09-Dec-07	20000.00	=""	="Guangzhou Dongfang Hotel"	21-Dec-07 02:56 PM	

+="CN52338"	"Sponsorship for Australia Week 2008"	="Austrade"	21-Dec-07	="Advertising"	27-Feb-07	03-Jul-07	113527.05	=""	="Australia Week 2008 Committee"	21-Dec-07 02:57 PM	

+="CN52339"	"Rental for Kunming office"	="Austrade"	21-Dec-07	="Real estate services"	01-Dec-07	30-Nov-08	24624.00	=""	="Kunming Hongta Building Co Ltd."	21-Dec-07 02:57 PM	

+="CN52340"	"Design and delivery of Australian Lifestyle Expo 2007"	="Austrade"	21-Dec-07	="Marketing and distribution"	13-May-07	15-May-07	38586.00	=""	="Shengdian Advertisement Planning & Design Co.Pty"	21-Dec-07 02:57 PM	

+="CN52342"	"Recruitment agency services"	="Austrade"	21-Dec-07	="Human resources services"	15-Oct-07	15-Oct-08	17000.00	=""	="Systems Go Corporation"	21-Dec-07 03:02 PM	

+="CN52343"	"Advice on increasing Indo-Australian business and trade investments/opportunities"	="Austrade"	21-Dec-07	="Management advisory services"	01-Nov-07	31-Oct-08	68424.00	=""	="Corporate Voice I Weber Sandwick"	21-Dec-07 03:02 PM	

+="CN52352"	"Design Competition Registrar"	="National Capital Authority"	21-Dec-07	="Business and corporate management consultation services"	27-Nov-07	30-Jun-08	22000.00	=""	="Beaconhill Global Pty Ltd"	21-Dec-07 03:40 PM	

+="CN52354"	"Development of Cancer Australia's website"	="Cancer Australia"	21-Dec-07	="World wide web WWW site design services"	17-Oct-07	11-Feb-08	133947.00	=""	="Next Digital"	21-Dec-07 03:49 PM	

+="CN52355"	"Formatting  and Type-setting  "	="National Capital Authority"	21-Dec-07	="Typesetting"	13-Nov-07	24-Dec-07	13640.00	=""	="Voodoo Creative"	21-Dec-07 04:19 PM	

+="CN52363"	"Airfares"	="Department of the Treasury"	21-Dec-07	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	30-Jun-08	18879.90	=""	="American Express International"	21-Dec-07 05:13 PM	

+="CN52364"	"Printing & Binding costs for ARPC Annual Report 06-07"	="Department of the Treasury"	21-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	06-Dec-07	06-Dec-07	10373.00	=""	="Canprint Communications Pty Ltd"	21-Dec-07 05:14 PM	

+="CN52365"	"Professional fees rendered between 21.05.07 to 23.11.07"	="Department of the Treasury"	21-Dec-07	="Management and Business Professionals and Administrative Services"	13-Dec-07	13-Dec-07	41632.65	=""	="Ernst and Young"	21-Dec-07 05:14 PM	

+="CN52410-A1"	"07/2396 - IT Contractor - 0717-0868 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	01-Nov-07	30-Jun-09	432300.00	="05/0717"	="Cordelta Pty Ltd"	24-Dec-07 09:17 AM	

+="CN52412"	"07/2409 - Change Management Plan - 1599-1977 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	12-Nov-07	17-Dec-07	28660.00	="06/1599"	="Tarcus"	24-Dec-07 09:20 AM	

+="CN52409"	"Memorial Restoration"	="National Capital Authority"	24-Dec-07	="Restoration of buildings or landmarks or monuments"	04-Dec-07	10-Apr-08	152581.00	=""	="Pyramid Corporation Pty Ltd"	24-Dec-07 09:22 AM	

+="CN52417-A1"	"07/1916 - Training Services - 1523-1817 - Leading People at the Frontline Panel (CPO013713)"	="Australian Customs and Border Protection Service"	24-Dec-07	="Specialised educational services"	26-Oct-07	15-Nov-07	13310.00	="06/1523"	="Major Training Services Pty Ltd"	24-Dec-07 09:31 AM	

+="CN52420"	"CPE003360-1 - Recruitment services - 1574-2263 - Psychological Services"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Sep-07	30-Sep-07	30214.69	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:38 AM	

+="CN52423"	"Temporary Personnel"	="Australian Electoral Commission"	24-Dec-07	="Temporary personnel services"	01-May-07	30-Nov-07	11660.00	=""	="Jebel Consultant Group"	24-Dec-07 09:43 AM	

+="CN52424-A2"	"07/2451 - IT Systems Technical Services - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	15-Dec-07	30-Jun-09	605385.40	="05/0717"	="Inforail Pty Ltd"	24-Dec-07 09:46 AM	

+="CN52426"	"CPE003360-2 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	01-Oct-07	15-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:50 AM	

+="CN52428"	"CPE003360-3 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Oct-07	31-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:55 AM	

+="CN52431"	"CPE004327-1 - Fitness Testing - 1465-2315 - Fitness Testing Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Comprehensive health services"	09-Jul-07	20-Jul-07	18689.00	="06/1465"	="Work Solutions Australia Pty Ltd"	24-Dec-07 10:04 AM	

+="CN52434-A1"	"07/2327 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	39685.66	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:08 AM	

+="CN52436"	"07/2332 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	25423.75	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:12 AM	

+="CN52439"	"07/2362 - Data Migration Manager - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	17-Dec-07	17-Nov-08	270000.00	="06/1599"	="CCS Index Pty Ltd"	24-Dec-07 10:17 AM	

+="CN52442-A1"	"07/2051 - Information Architect - 0717-0873 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	19-Sep-07	30-Jun-09	648000.00	="05/0717"	="EDS (Australia) Pty Ltd"	24-Dec-07 10:21 AM	

+="CN52441"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	22-Dec-07	21-Jun-08	88088.00	=""	="Talent International"	24-Dec-07 10:21 AM	

+="CN52445-A1"	"07/2368 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Oct-07	31-Mar-08	370000.00	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:27 AM	

+="CN52449-A1"	"07/2367 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Sep-07	31-Mar-08	500000.00	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:30 AM	

+="CN52446-A1"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	19-Dec-07	18-Jun-08	97240.00	=""	="Eurolink Australia"	24-Dec-07 10:36 AM	

+="CN52451"	"Provision for Printing Services"	="Comsuper"	24-Dec-07	="Printing accessories"	20-Nov-07	05-Dec-07	26271.30	=""	="Pirion Pty Ltd"	24-Dec-07 10:40 AM	

+="CN52462"	"WMO - Aust. Contribution to VCP(F) for 2008"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-08	1150668.73	=""	="WORLD METEOROLOGICAL ORGANIZATION"	24-Dec-07 11:34 AM	

+="CN52463"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	10-Dec-07	31-Dec-07	12336.97	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:34 AM	

+="CN52464"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	12-Dec-07	31-Dec-07	18154.63	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	

+="CN52465"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	11-Dec-07	31-Dec-07	13693.91	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	

+="CN52466"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	92822.48	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:35 AM	

+="CN52467"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	31-Dec-07	12774.75	=""	="Telvent Almos"	24-Dec-07 11:35 AM	

+="CN52468"	"Autosonde Upgrade Expenses Learmonth, Kalgoorlie, Charleville & Weipa"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Dec-07	12008.77	=""	="Vaisala Pty Ltd"	24-Dec-07 11:35 AM	

+="CN52469"	"Audit Fees"	="Bureau of Meteorology"	24-Dec-07	="Accounting and auditing"	10-Dec-07	31-Dec-07	14465.00	=""	="Deloitte Touche Tohmatsu"	24-Dec-07 11:35 AM	

+="CN52470"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	03-Dec-07	31-Dec-07	127366.17	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52471"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	12521.99	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52472"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	16071.67	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52473"	"BOC container management fee forDecember 2007"	="Bureau of Meteorology"	24-Dec-07	="Tools and General Machinery"	06-Dec-07	31-Dec-07	12578.13	=""	="Boc Limited"	24-Dec-07 11:35 AM	

+="CN52474"	"Postage A/c"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	07-Dec-07	07-Dec-07	38994.45	=""	="Australia Post"	24-Dec-07 11:36 AM	

+="CN52475"	"Wave Rider Data"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	11000.00	=""	="NSW Department of Commerce"	24-Dec-07 11:36 AM	

+="CN52476"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	11-Dec-07	31-Dec-07	17531.71	=""	="AAPT LIMITED"	24-Dec-07 11:36 AM	

+="CN52477"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	15979.48	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	

+="CN52478"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	13860.00	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	

+="CN52479"	"Project Management Fees June - October 2007"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	36404.79	=""	="Montlaur Project Services Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52480"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52481"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52482"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	88000.00	=""	="KLM GROUP"	24-Dec-07 11:37 AM	

+="CN52483"	"ARGOS Satellite Services Sep & Oct 2007"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	22728.46	=""	="CLS"	24-Dec-07 11:37 AM	

+="CN52484"	"Subscription to Weatherwise 2008"	="Bureau of Meteorology"	24-Dec-07	="Printed media"	14-Dec-07	31-Dec-08	66079.96	=""	="Ebsco Australia"	24-Dec-07 11:37 AM	

+="CN52486"	"Software maintenance for IDL licenses"	="Bureau of Meteorology"	24-Dec-07	="Computer services"	14-Dec-07	31-Dec-08	33176.39	=""	="IT & T VISUAL SYSTEMS"	24-Dec-07 11:37 AM	

+="CN52487"	"MAINTENANCE WILLIS IS DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Building and Construction and Maintenance Services"	18-Dec-07	18-Dec-07	102061.94	=""	="ABSOLUTE MAINTENANCE & TECHNICAL"	24-Dec-07 11:37 AM	

+="CN52488"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-07	43603.59	=""	="Telvent Almos"	24-Dec-07 11:37 AM	

+="CN52489"	"ABARE's Outlook 2008 Conference Partnerships Brochure"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-08	10500.00	=""	="ABARE -(DAFF CPM)"	24-Dec-07 11:37 AM	

+="CN52490"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	24798.83	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	

+="CN52491"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	67859.70	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	

+="CN52492"	"CHARTER AWS/WILLIS IS NOV/DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	24-Dec-07	24-Dec-07	135872.00	=""	="Fodico Pty Ltd"	24-Dec-07 11:38 AM	

+="CN52493"	"5 CANISTERS - 7 ANTENNAS & 1 RECEIVER"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	12-Dec-07	25-Jan-08	15071.10	=""	="Elpro Technologies Pty Ltd"	24-Dec-07 11:38 AM	

+="CN52494"	"Radar Spares"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	14-Dec-07	01-Mar-08	360200.26	=""	="AMS - GEMATRONIK GmbH"	24-Dec-07 11:38 AM	

+="CN52495"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	

+="CN52496"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	

+="CN52497"	"Provision of Telecommunication Links for Weatherne"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	17-Dec-07	01-Jan-11	516000.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:38 AM	

+="CN52498"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	17-Dec-07	17-Dec-07	258349.00	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52499"	"Water Information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	01-Mar-08	426811.00	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52500"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	18-Dec-07	133622.01	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52501"	"Communication link Melbourne to Canberra"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	28-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	

+="CN52502"	"Communication link Melbourne to Sydney"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	31-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	

+="CN52503"	"Overhaul Windsspeed/Direction Detectors Qty 10"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	21-Dec-07	07-Jan-08	11396.00	=""	="Karl Dierken Engineering Service"	24-Dec-07 11:39 AM	

+="CN52504"	"Supermicro Server"	="Bureau of Meteorology"	24-Dec-07	="Computer Equipment and Accessories"	21-Dec-07	28-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	24-Dec-07 11:39 AM	

+="CN52505"	"Radiosonde (Qty 6000)"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	24-Dec-07	31-Jan-08	1144770.00	=""	="Vaisala Pty Ltd"	24-Dec-07 11:39 AM	

+="CN52507"	"Ballot Paper Production for NSW"	="Australian Electoral Commission"	24-Dec-07	="Industrial printing services"	31-May-04	30-May-08	1452440.00	=""	="McMillan Print Group"	24-Dec-07 12:24 PM	

+="CN52509"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	18590.00	="."	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	24-Dec-07 12:50 PM	

+="CN52510"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Aug-08	391800.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:51 PM	

+="CN52511"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	28-Mar-08	34397.00	="0"	="MANPOWER SERVICES (AUST) P/L"	24-Dec-07 12:51 PM	

+="CN52512"	"IT System Development Services"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	130000.00	="FIN05CRP004-31"	="STRATAGEM"	24-Dec-07 12:51 PM	

+="CN52513"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	31-Mar-10	205127.30	="FINANCE05009"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	

+="CN52514"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Nov-09	31884.48	="24871/AUS/PE/S/22/A/1"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	

+="CN52515"	"Additional Construction Works"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	24-Dec-07	31-Jan-08	19800.00	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	24-Dec-07 12:51 PM	

+="CN52516"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	28403.76	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:51 PM	

+="CN52517"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	135000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	

+="CN52518"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	27-Jun-08	172000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:52 PM	

+="CN52519"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	13-Jun-08	97000.00	="FIN 05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	24-Dec-07 12:52 PM	

+="CN52520"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	27-Nov-08	14434.20	="AS070813L1"	="INTEGRATED TECHNICAL MANAGEMENT PTY LTD"	24-Dec-07 12:52 PM	

+="CN52521"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	157030.00	="RFT LSB 01/2005"	="BLAKE DAWSON WALDRON - ACT"	24-Dec-07 12:52 PM	

+="CN52522"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	130000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	24-Dec-07 12:52 PM	

+="CN52523"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	27104.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	24-Dec-07 12:52 PM	

+="CN52524"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	170000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	

+="CN52525"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Jun-08	180380.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:53 PM	

+="CN52526"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	90000.00	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:53 PM	

+="CN52527"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	08-Mar-08	16022.16	="Support Agreement 18400570802313"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:53 PM	

+="CN52528"	"Communication Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Jun-08	96514.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:53 PM	

+="CN52529"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	18-Jan-08	10990.65	="0"	="ANITECH"	24-Dec-07 12:53 PM	

+="CN52530"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Jan-08	35964.50	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:53 PM	

+="CN52531"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Jan-08	11-Jan-09	76370.93	="Quote Q-1838343"	="COGNOS PTY LIMITED"	24-Dec-07 12:53 PM	

+="CN52532"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	160000.00	="FIN 05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	24-Dec-07 12:53 PM	

+="CN52533"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-Jun-08	310322.10	="BCS Client #03200628"	="IBM AUSTRALIA LIMITED"	24-Dec-07 12:54 PM	

+="CN52534"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Nov-09	6654230.00	="Not applicable"	="VOLANTE SYSTEMS PTY LTD"	24-Dec-07 12:54 PM	

+="CN52535"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	180000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	

+="CN52536"	"Advertising & Promotion Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	11060.50	=""	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	24-Dec-07 12:54 PM	

+="CN52537"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	166000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	

+="CN52538"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	16-Jan-08	19141.22	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:54 PM	

+="CN52539"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	195000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:54 PM	

+="CN52540"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	10-Jun-08	30000.00	="fin/CAPSHR"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Dec-07 12:54 PM	

+="CN52541"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	02-Jan-08	31-Mar-08	51920.00	="FIN05CPRP004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:54 PM	

+="CN52542"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	20-Dec-07	29-Feb-08	16016.00	="NA"	="HONEYWELL LTD"	24-Dec-07 12:55 PM	

+="CN52543"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	26-Jan-08	27-Jun-08	255000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	

+="CN52544"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	63177.93	="AIMS"	="QSP ASIA PACIFIC PTY LTD"	24-Dec-07 12:55 PM	

+="CN52545"	"OHS & Medical Costs"	="Department of Finance and Administration"	24-Dec-07	="Medical Equipment and Accessories and Supplies"	21-Dec-07	04-Jan-08	24390.00	=""	="PARASOL EMT PTY LTD"	24-Dec-07 12:55 PM	

+="CN52546"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	38182.10	="n/a"	="EB2BCOM PTY LTD"	24-Dec-07 12:55 PM	

+="CN52547"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	88000.00	="FIN 05CRP 004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:55 PM	

+="CN52548"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	27-Jun-08	86000.00	="FIN05 CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	24-Dec-07 12:55 PM	

+="CN52549"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Dec-07	19-Dec-08	220000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	

+="CN52550"	"Capital Expenditure - IT"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-May-08	277283.61	="0"	="CERULEAN SOLUTIONS LTD"	24-Dec-07 12:56 PM	

+="CN52551"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	31-Jan-08	29099.93	=""	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:56 PM	

+="CN52552"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-Dec-07	30-Apr-08	207099.00	=""	="HONEYWELL LTD"	24-Dec-07 12:56 PM	

+="CN52553"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	02-Feb-08	30-Jan-09	175000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:56 PM	

+="CN52554"	"Project Manager and Superintendency"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	13-Oct-08	750000.00	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	24-Dec-07 12:56 PM	

+="CN52555"	"Architectural Services"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	95249.30	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	24-Dec-07 12:56 PM	

+="CN52556"	"Construction Early Works"	="Department of Finance and Administration"	24-Dec-07	="Environmental Services"	19-Dec-07	30-Jun-08	930000.00	=""	="LAND DEVELOPMENT AGENCY"	24-Dec-07 12:56 PM	

+="CN52557"	"Consultancy Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	11-Jan-08	31900.00	="Unknown"	="RESULTS CONSULTING (AUSTRALIA)"	24-Dec-07 12:56 PM	

+="CN52558"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Mar-08	14305.00	="N/A"	="AUSTRALIAN GOVERNMENT SOLICITOR"	24-Dec-07 12:56 PM	

+="CN52559"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	25-Jan-08	19455.44	="0"	="CLAYTON UTZ - 404917"	24-Dec-07 12:57 PM	

 ="CN52561"	"Graphic Design and Production Services"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	24-Dec-07	29-Feb-08	60074.30	=""	="COUCH CREATIVE PTY LTD"	24-Dec-07 12:57 PM 

--- /dev/null
+++ b/admin/partialdata/20May2008to22May2008valto.xls
@@ -1,1 +1,724 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN85086"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	12-May-08	01-Jun-08	11480.91	=""	="sikorsky aircraft australia ltd"	20-May-08 07:48 AM	

+="CN85087"	"Repair Of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	28-May-08	02-Jun-08	11468.71	=""	="sikorsky aircraft australia ltd"	20-May-08 07:52 AM	

+="CN85088"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	20-May-08	="Aircraft"	12-May-08	01-Jun-08	11480.91	=""	="sikorsky aircraft aust ltd"	20-May-08 07:57 AM	

+="CN85090"	"IT Managed Services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Computer services"	21-Apr-08	30-Jun-12	15203955.00	="TRS08/003"	="ASG Group Limited"	20-May-08 09:20 AM	

+="CN85091"	"Legal Services Expenditure 6791"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	09-Apr-08	30-Jun-08	15400.00	="TRS06/175"	="DLA PHILLIPS FOX"	20-May-08 09:20 AM	

+="CN85092"	"Legal Services Expenditure 7140"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	02-Apr-08	30-Jun-08	13981.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	20-May-08 09:20 AM	

+="CN85093"	"Graphic design services for AACA scheme"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Graphic design"	09-May-08	30-Jun-08	100000.00	="TRS06/036"	="THE TRUSTEE FOR THE D & K FAMILY TR"	20-May-08 09:20 AM	

+="CN85095"	"Legal Services Expenditure 3556"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	15918.60	="TRS06/175"	="DLA PHILLIPS FOX"	20-May-08 09:20 AM	

+="CN85096"	"Advice on future fuel and vehicle technologies in Australia"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	25-Mar-08	30-Jun-08	24750.00	=""	="CSIRO"	20-May-08 09:20 AM	

+="CN85097"	"ICT APPRENTICESHIP PROGRAMME"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	01-Feb-08	28-Feb-10	230000.00	="TRS08/120"	="Excelior Pty Ltd"	20-May-08 09:21 AM	

+="CN85098"	"Temporary EL1 for three months"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Human resources services"	02-Apr-08	04-Jul-08	40000.40	=""	="CAREERS UNLIMITED PTY LTD"	20-May-08 09:21 AM	

+="CN85099"	"Service Desk Tool"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Computer services"	19-May-08	18-May-12	358600.00	=""	="FRONTRANGE SOLUTIONS ASIA PACIFIC"	20-May-08 09:21 AM	

+="CN85100"	"ENGAGE A CONSULTANT TO EVALUATE JPTE"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Security and personal safety"	13-May-08	30-Jun-08	59880.00	="TRS08/053"	="COGENT BUSINESS SOLUTIONS PTY LTD"	20-May-08 09:21 AM	

+="CN85101"	"Undertake Risk Workshops"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Business administration services"	01-May-08	30-Jun-08	16000.01	=""	="Deloitte Touche Tohmatsu"	20-May-08 09:21 AM	

+="CN85102"	"SCOT/TACE meeting at Westin Sydney on 20-21 May 08"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Hotels and lodging and meeting facilities"	20-May-08	21-May-08	12777.04	=""	="AUSCO MARTIN PTY LIMITED"	20-May-08 09:21 AM	

+="CN85103"	"Tas Freight Reforms: improved IT & administration of the Tasmanian Freight Subsidy Schemes."	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Public administration and finance services"	16-May-08	30-Jun-11	1232000.00	=""	="Centrelink"	20-May-08 09:21 AM	

+="CN85104"	"Trial of a system of int perf monit"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Specialised educational services"	12-May-08	30-Jun-08	46200.00	=""	="NOETIC SOLUTIONS PTY LTD"	20-May-08 09:21 AM	

+="CN85105"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	08-May-08	30-Jun-09	10530.88	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:22 AM	

+="CN85106"	"provision of scientific services for the air cargo security x-ray trial project"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Measuring and observing and testing instruments"	13-May-08	30-Jun-08	83210.01	=""	="AUSTRALIAN NUCLEAR SCIENCE &"	20-May-08 09:22 AM	

+="CN85107"	"Legal Service Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	09-May-08	30-Jun-09	12260.49	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:22 AM	

+="CN85108"	"Legal Services Expenditure 6995"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	07-May-08	30-Jun-09	10598.50	="TRS06/175"	="Clayton Utz Canberra"	20-May-08 09:22 AM	

+="CN85109"	"contractor services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	13-May-08	13-May-08	11000.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	20-May-08 09:22 AM	

+="CN85110"	"Legal Services Expenditure 6901 Legal Services Expenditure 6901"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	10367.50	="TRS06/175"	="Clayton Utz Canberra"	20-May-08 09:22 AM	

+="CN85111"	"Legal Services Expenditure 6847"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	08-May-08	30-Jun-09	27247.77	="TRS06/175"	="MINTER ELLISON LAWYERS"	20-May-08 09:23 AM	

+="CN85112"	"Contract Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	19-May-08	30-Sep-08	42337.90	="TRS05/251"	="AMBIT GROUP PTY LTD"	20-May-08 09:23 AM	

+="CN85113"	"Legal Services Expenditure 6567"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Legal services"	11-Aug-06	30-Jun-09	10076.81	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	20-May-08 09:23 AM	

+="CN85114"	"Consultant Fees"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Security surveillance and detection"	03-Apr-08	15-Jun-08	78100.00	=""	="Intelligent Outcomes Group"	20-May-08 09:23 AM	

+="CN85115"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Community and social services"	17-Mar-08	31-Dec-08	89965.48	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	20-May-08 09:23 AM	

+="CN85116"	"Prov of design & facilitation services"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Specialised educational services"	09-May-08	30-Jun-08	44004.40	=""	="Thinkplace Pty Ltd"	20-May-08 09:23 AM	

+="CN85117"	"Training Material"	="Department of Infrastructure Transport Regional Development and Local Government"	20-May-08	="Management advisory services"	13-May-08	30-Jun-08	14273.00	="TRS08/117"	="Australian Management Control Pty L"	20-May-08 09:23 AM	

+="CN85118"	" Services in relation to the Third Party Services Portal Management and Governance "	="Centrelink"	20-May-08	="Management advisory services"	21-May-08	30-Jun-08	55000.00	=""	="Smartnet Pty Ltd"	20-May-08 09:30 AM	

+="CN85122"	"Rack, Ammunation Stowage"	="Defence Materiel Organisation"	20-May-08	="Ammunition handling systems"	23-Apr-08	23-Jun-08	54912.00	=""	="Linton Engineering Pty Ltd"	20-May-08 09:49 AM	

+="CN85123"	" Deflector, Blast Attenuation Device "	="Defence Materiel Organisation"	20-May-08	="Attenuators"	23-Apr-08	19-Jun-08	134640.00	=""	="G A Hanrahan Pty Ltd"	20-May-08 10:05 AM	

+="CN85124"	"Video conferencing equipment and plasma TV screens"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	13-Dec-07	10-Jan-08	24186.87	=""	="TELSTRA CORPORATION LIMITED"	20-May-08 10:06 AM	

+="CN85125"	"69 Mobile phone handsets and 30 modems"	="Australian Industrial Registry"	20-May-08	="Mobile phones"	11-Jan-08	08-Feb-08	58957.00	=""	="TELSTRA"	20-May-08 10:06 AM	

+="CN85126"	"Cabling of Brisbane computer room and air-conditioner"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	29-Apr-08	27-May-08	104908.10	=""	="SURE POWER"	20-May-08 10:06 AM	

+="CN85127"	"QED Workstations and pedestal units"	="Australian Industrial Registry"	20-May-08	="Desks"	03-Oct-07	31-Oct-07	23474.00	=""	="SCHIAVELLO (SOUTHBANK)"	20-May-08 10:06 AM	

+="CN85128"	"Building and joinery works for AIR library fit-out"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	03-Oct-07	31-Oct-07	31394.00	=""	="ASSET INTERIORS"	20-May-08 10:06 AM	

+="CN85129"	"Level 8 Melbourne building works and project management"	="Australian Industrial Registry"	20-May-08	="Renovation of buildings or landmarks or monuments"	10-Apr-08	08-May-08	34529.00	=""	="ASSET INTERIORS"	20-May-08 10:06 AM	

+="CN85130"	"Internal audit services"	="Australian Industrial Registry"	20-May-08	="Internal audits"	17-Apr-08	15-May-08	45100.00	=""	="PKF"	20-May-08 10:07 AM	

+="CN85131"	"Suspected breaches of APS - J Nicita Whistleblowing Report - J Nicita"	="Australian Industrial Registry"	20-May-08	="Private investigation services"	21-Feb-08	22-Feb-08	68596.89	=""	="ADEPT ASSOCIATES PTY LTD"	20-May-08 10:07 AM	

+="CN85132"	"Quarterly lease - 15/8/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	13-Aug-07	14-Aug-07	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85133"	"Quarterly Lease: 15/11/07 - 15/02/08"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	09-Nov-07	09-Nov-07	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85134"	"Quarterly Lease: 15/02/08 - 15/05/08"	="Australian Industrial Registry"	20-May-08	="Desktop computers"	14-Feb-08	15-Feb-08	52161.71	=""	="ANZ SPECIALISED ASSET FINANCE"	20-May-08 10:07 AM	

+="CN85135"	"11X Proj Mgt agreed fee adjust Less credit payment $550"	="Australian Industrial Registry"	20-May-08	="Project administration or planning"	14-Aug-07	11-Sep-07	47850.00	=""	="APP CORPORATION PTY LTD"	20-May-08 10:07 AM	

+="CN85136"	"Taxi Fares: 2/02/08 - 7/03/08 Account No: 09305505"	="Australian Industrial Registry"	20-May-08	="Taxicab services"	28-Mar-08	01-Apr-08	13860.07	=""	="CABCHARGE AUSTRALIA"	20-May-08 10:07 AM	

+="CN85137-A1"	"FARES - 28/6/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	01-Aug-07	03-Aug-07	95881.68	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:07 AM	

+="CN85138-A1"	"FARES - 28/7/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Aug-07	31-Aug-07	72177.08	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:07 AM	

+="CN85139-A1"	"FARES - 28/8/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	01-Oct-07	02-Oct-07	96783.40	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85140-A1"	"FARES - 28/9/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Oct-07	31-Oct-07	60485.68	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85141-A1"	"FARES 28/10/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	29-Nov-07	30-Nov-07	90163.90	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85142-A1"	"FARES - 28/11/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	19-Dec-07	19-Dec-07	72868.99	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85143-A1"	"FARES - 28/12/07"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Jan-08	31-Jan-08	60444.05	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85144-A1"	"FARES - 28/1/08"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	21-Feb-08	25-Feb-08	33526.76	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85145-A1"	"Fares for Feb 2008"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	31-Mar-08	09-Apr-08	111537.98	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85146-A1"	"FARES - 28/3/08"	="Australian Industrial Registry"	20-May-08	="Passenger air transportation"	29-Apr-08	30-Apr-08	68290.57	=""	="CARLSON WAGONLIT TRAVEL"	20-May-08 10:08 AM	

+="CN85147"	"Codes: 34150A, 34151A (34062A-not paid) Customer No: 0186080"	="Australian Industrial Registry"	20-May-08	="Periodicals"	07-Sep-07	27-Sep-07	11343.89	=""	="CCH AUSTRALIA"	20-May-08 10:08 AM	

+="CN85148"	"User needs of AIRC - 30% project costs Ref No: 7073879"	="Australian Industrial Registry"	20-May-08	="Internet based market research"	09-Jul-07	31-Jul-07	25135.00	=""	="COLMAR BRUNTON SOCIAL RESEARCH"	20-May-08 10:08 AM	

+="CN85149"	"Level 9 - new carpet, partition and paint"	="Australian Industrial Registry"	20-May-08	="Carpeting"	26-Mar-08	15-Apr-08	24596.00	=""	="COMMERCIAL CIVIC INTERIORS AND PROPERTY"	20-May-08 10:09 AM	

+="CN85150"	"HP Procurve Switch: 5406ZL, 5400ZL, ZL Account No: AUS223"	="Australian Industrial Registry"	20-May-08	="Computer switch boxes"	04-Feb-08	22-Feb-08	15674.95	=""	="COMPUTERCORP"	20-May-08 10:09 AM	

+="CN85151"	"Communications upgrade - per quote 12477 Job No: 15901"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	17-Mar-08	04-Apr-08	18892.23	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85152"	"Computer Rm Relocation - per quote 12739 Job No: 15900"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	17-Mar-08	04-Apr-08	16264.34	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85154"	"Computer Room Relocation project Job No: 15900"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	07-Apr-08	29-Apr-08	13444.62	=""	="DATATEL COMMUNICATIONS"	20-May-08 10:09 AM	

+="CN85155"	"AS PE2950 PowerEdge Rack Mount server Cust No. 14649"	="Australian Industrial Registry"	20-May-08	="Computer servers"	30-Jul-07	20-Aug-07	12896.52	=""	="DELL COMPUTER PTY LTD"	20-May-08 10:09 AM	

+="CN85156"	"Printing for July 2007"	="Australian Industrial Registry"	20-May-08	="Publication printing"	13-Aug-07	23-Aug-07	10651.35	=""	="DOCUMENT PRINTING AUSTRALIA"	20-May-08 10:10 AM	

+="CN85157"	"Various Journals Account No: AU-S-39025-00"	="Australian Industrial Registry"	20-May-08	="Periodicals"	05-Dec-07	24-Dec-07	10469.20	=""	="EBSCO AUSTRALIA"	20-May-08 10:10 AM	

+="CN85158"	"Attend to test and tag - February 2008 Job No: 92008"	="Australian Industrial Registry"	20-May-08	="Electric power systems installation or service"	02-Apr-08	24-Apr-08	14316.50	=""	="ELECRAFT"	20-May-08 10:10 AM	

+="CN85159"	"Carpet Install. on L14, AIR"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	11-Dec-07	03-Jan-08	11850.00	=""	="FRANK ROSS AND ASSOCIATES"	20-May-08 10:10 AM	

+="CN85153"	"repair landrover 6x6 com sec w/o-37050 ed"	="Department of Defence"	20-May-08	="Motor vehicles"	20-May-08	25-Jul-08	24413.40	=""	="MC IMPORTS"	20-May-08 10:10 AM	

+="CN85160"	"AIRC Conference - 3/10/07 Delegate and Beverage Package"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	09-Nov-07	20-Nov-07	11586.40	=""	="HILTON ON THE PARK"	20-May-08 10:10 AM	

+="CN85161"	"AIRC Website Redevelopment Project"	="Australian Industrial Registry"	20-May-08	="Internet browser software"	01-Oct-07	24-Oct-07	85538.00	=""	="THE HISER GROUP"	20-May-08 10:10 AM	

+="CN85162"	"Contract No: 29934/AUS/KLA/S/1/A/1 Period: 1/04/08 - 30/06/08"	="Australian Industrial Registry"	20-May-08	="Photocopiers"	13-Mar-08	01-Apr-08	22598.71	=""	="HP FINANCIAL SERVICES"	20-May-08 10:10 AM	

+="CN85163"	"FUEL - P/E 31/5/"07 CUSTOMER NO. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	16-Jul-07	17-Jul-07	12491.03	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:10 AM	

+="CN85164"	"LEASE - P/E 31/7/"07 CUSTOMER NO. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	16-Jul-07	17-Jul-07	49269.15	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:10 AM	

+="CN85165"	"Lease P/E 31/8/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	09-Aug-07	14-Aug-07	50401.92	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85166"	"Fuel P/E 30/6/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	09-Aug-07	14-Aug-07	11484.60	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85167"	"Lease P/E 30/9/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	02-Oct-07	02-Oct-07	51367.89	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85168"	"Fuel P/E 31/07/2007 Customer no. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	02-Oct-07	03-Oct-07	12148.98	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85169"	"Customer No. 361630 Lease P/E - 31/10/2007"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	11-Oct-07	17-Oct-07	51209.70	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85170"	"Costomer No. 361630 Fuel P/E - 31/8/2007"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	11-Oct-07	16-Oct-07	10604.92	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85171"	"Lease P/E 30/11/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	20-Nov-07	23-Nov-07	30658.83	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85172"	"Fuel P/E 30/9/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	20-Nov-07	23-Nov-07	11896.41	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85173"	"Lease  - P/E 31/12/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	13-Dec-07	18-Dec-07	47629.11	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:11 AM	

+="CN85174"	"Fuel - P/E 31/10/07 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	13-Dec-07	18-Dec-07	11390.89	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85175"	"Lease P/E -31/01/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	10-Jan-08	15-Jan-08	52554.56	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85176"	"Fuel  P/E-31/11/2007 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	10-Jan-08	15-Jan-08	12633.69	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85177"	"Lease P/E - 29/2/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	19-Feb-08	21-Feb-08	49883.04	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85178"	"Fuel P/E - 31/12/07 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	19-Feb-08	22-Feb-08	13964.68	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85179"	"Lease P/E31/3/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	18-Mar-08	20-Mar-08	52281.70	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85180"	"Fuel P/E 31/1/2008 Customer No. 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	18-Mar-08	20-Mar-08	15319.28	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85181"	"Fuel Charges - P/E: 29/02/08 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	09-Apr-08	10-Apr-08	12862.36	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85182"	"Lease Charges - April 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	09-Apr-08	10-Apr-08	52910.20	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:12 AM	

+="CN85183"	"Lease Charges - May 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Vehicle leasing"	30-Apr-08	30-Apr-08	38521.82	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:13 AM	

+="CN85184"	"Fuel Charges - March 2008 Customer No: 361630"	="Australian Industrial Registry"	20-May-08	="Gasoline or Petrol"	30-Apr-08	30-Apr-08	16256.84	=""	="LEASE PLAN AUSTRALIA LIMITED"	20-May-08 10:13 AM	

+="CN85185"	"Transcript: 16/06/07 - 30/06/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jul-07	12-Jul-07	17858.28	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85186"	"Monitoring: 16/06/07 - 30/06/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jul-07	12-Jul-07	17379.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85187"	"Transcript services 1 - 15 July 07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Jul-07	26-Jul-07	18164.76	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85188"	"MPO Period 1/7 - 15/7/07"	="Australian Industrial Registry"	20-May-08	="Court reporting services"	31-Jul-07	02-Aug-07	12102.44	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85189"	"Transcript services 16-31/7/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Aug-07	15-Aug-07	25220.98	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85190"	"Monitoring service 16-31/7/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	14-Aug-07	24-Aug-07	13390.10	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85191"	"Transcript services 1/8 - 15/8"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	20-Aug-07	30-Aug-07	23723.32	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:13 AM	

+="CN85192"	"Monitoring: 1/08/07 - 15/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	31-Aug-07	31-Aug-07	21541.15	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85193"	"Transcript: 16/08/07 - 31/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Sep-07	17-Sep-07	17071.33	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85194"	"Monitoring: 16/08/07 - 31/08/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	07-Sep-07	17-Sep-07	21323.67	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85196"	"Transcript: 1/09/07 - 15/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	01-Oct-07	04-Oct-07	14948.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85198"	"Monitoring: 1/09/07 - 15/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	01-Oct-07	04-Oct-07	13727.65	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85199"	"Transcript: 16/09/07 - 30/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Oct-07	18-Oct-07	34826.77	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:14 AM	

+="CN85200"	"Transcript: 1/10/07 - 15/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	23-Oct-07	24-Oct-07	24296.73	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85197-A1"	"Guy Antenna Element to Stake"	="Defence Materiel Organisation"	20-May-08	="Manufacturing Components and Supplies"	16-May-08	20-Jun-08	20295.00	=""	="B B Engineering Pty Ltd"	20-May-08 10:15 AM	

+="CN85201"	"Monitoring: 16/09/07 - 30/09/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	24-Oct-07	25-Oct-07	16767.33	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85202"	"Monitoring: 1/10/07 - 15/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	24-Oct-07	25-Oct-07	11359.68	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85203"	"Transcript: 16/10/07 - 31/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Nov-07	16-Nov-07	22076.88	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85204"	"Monitoring: 16/10/07 - 31/10/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	09-Nov-07	16-Nov-07	14589.24	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85205"	"Transcript: 1/11/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	27-Nov-07	30-Nov-07	18351.74	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85206"	"Monitoring: 1/11/07 - 15/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	04-Dec-07	07-Dec-07	13511.80	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85207"	"Transcript: 16/11/07 - 30/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Dec-07	21-Dec-07	34589.52	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85208"	"Monitoring: 16/11/07 - 30/11/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	19-Dec-07	21-Dec-07	23128.40	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85209"	"Transcript: 1/12/07 - 15/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	03-Jan-08	03-Jan-08	19917.14	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:15 AM	

+="CN85210"	"Monitoring: 1/12/07 - 15/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	03-Jan-08	03-Jan-08	11000.47	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85211"	"Transcript: 16/12/07 - 31/12/07"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Jan-08	21-Jan-08	15746.78	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85212"	"Transcript: 1/02/08 - 15/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	22-Feb-08	05-Mar-08	23705.62	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85213"	"Transcript: 16/02/08 - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	12-Mar-08	13-Mar-08	17765.58	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85214"	"Monitoring: 1/01/08 - 31/01/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	18-Mar-08	19-Mar-08	13219.90	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85215"	"Monitoring: 1/02/08 - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	18-Mar-08	19-Mar-08	18948.95	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85216"	"Transcript: 1/03/08 - 15/03/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	26-Mar-08	31-Mar-08	17331.97	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85217"	"Transcript: 16/03/08 - 31/03/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	11-Apr-08	18-Apr-08	21872.91	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85218"	"Transcript: 1/04/08 - 15/04/08"	="Australian Industrial Registry"	20-May-08	="Transcribing services"	28-Apr-08	01-May-08	23257.69	=""	="LEGAL TRANSCRIPTS"	20-May-08 10:16 AM	

+="CN85219"	"1st Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	19-Oct-07	07-Nov-07	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85220"	"2nd Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	19-Oct-07	08-Nov-07	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85221"	"3rd Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Jan-08	14-Jan-08	14660.90	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85222"	"4th Quarter Invoice: 1/07/07 - 30/06/08 Account No: 165997"	="Australian Industrial Registry"	20-May-08	="Periodicals"	08-Apr-08	29-Apr-08	26212.00	=""	="LEXIS NEXIS"	20-May-08 10:17 AM	

+="CN85223"	"Contracting - June 2007 Superannuation - June 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	16-Jul-07	28-Jul-07	12193.44	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85224"	"Contracting - September 2007 Superannuation - September 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	05-Oct-07	26-Oct-07	11612.80	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85225"	"Contracting - October 2007 Superannuation - October 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	09-Nov-07	29-Nov-07	13354.72	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85226"	"Contracting - November 2007 Superannuation - November 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	06-Dec-07	31-Dec-07	12774.08	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85227"	"Contracting - January 2008 Superannuation - January 2008"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	08-Feb-08	29-Feb-08	13354.72	=""	="MARINGA"	20-May-08 10:17 AM	

+="CN85228"	"Contracting - March 2008 Superannuation - March 2008"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	07-Apr-08	28-Apr-08	12021.42	=""	="MARINGA"	20-May-08 10:18 AM	

+="CN85229"	"Proto-type 20% of the software"	="Australian Industrial Registry"	20-May-08	="Software coding"	25-Jul-07	21-Aug-07	46237.40	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85230"	"Oracle database-standard edition proceesor and support"	="Australian Industrial Registry"	20-May-08	="Application server software"	20-Aug-07	12-Sep-07	24409.64	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85231"	"CMS Project Management - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	25-Sep-07	16-Oct-07	16993.75	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85232"	"CMS Redevelpment - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	01-Oct-07	24-Oct-07	32657.66	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85233"	"CMS Redevolopment - August 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	16-Oct-07	24-Oct-07	15663.91	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85234"	"CMS Redevelopment - September 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	26-Nov-07	30-Nov-07	39725.32	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85235"	"CMS Redevelopment - October 2007"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	26-Nov-07	30-Nov-07	38625.85	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85236"	"CMS redevelopment project 13/2/08"	="Australian Industrial Registry"	20-May-08	="Software patches or upgrades"	28-Feb-08	26-Mar-08	45793.70	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85237"	"CMS Redevelopment Project - 29/02/08"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	14-Mar-08	31-Mar-08	17160.00	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:18 AM	

+="CN85238"	"CMS Redevelopment Project - Apr 2008 PM.40 Project Management"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	30-Apr-08	30-Apr-08	23492.04	=""	="MCGIRR INFORMATION TECHNOLOGY"	20-May-08 10:19 AM	

+="CN85239"	"Metlink - Zone 1 x 11, Zone 1/2 x 7 Account No: TAIRCC01"	="Australian Industrial Registry"	20-May-08	="Subway transport"	17-Jan-08	17-Jan-08	21906.90	=""	="METLINK VICTORIA PTY LTD"	20-May-08 10:19 AM	

+="CN85240"	"Train Tickets - February 2006 Zone 1 x 9, Zone 1/2 x 4"	="Australian Industrial Registry"	20-May-08	="Subway transport"	20-Feb-08	20-Feb-08	15246.90	=""	="METLINK VICTORIA PTY LTD"	20-May-08 10:19 AM	

+="CN85241"	"SA service and accom fees Apr-Jun 07"	="Australian Industrial Registry"	20-May-08	="Property management"	18-Jul-07	13-Aug-07	151025.05	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85242"	"Property Fee: Jul 2007 - Sep 2007 Other Agreed Items: Jul 2007 - Sep 2007"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Nov-07	06-Dec-07	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85243"	"Property Fee: Oct - Dec 2007 Other Agreed Items: Oct - Dec 2007"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Jan-08	20-Feb-08	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85244"	"Property Fee: Jan 2008- Mar 2008 Other Agreed Items: Jan 2008 - Mar 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	02-May-08	22-May-08	99550.00	=""	="OFFICE OF INDUSTRIAL REGISTRAR (SA)"	20-May-08 10:19 AM	

+="CN85245"	"Secondment: 1/10/07 - 31/12/07 (Russell) Customer No: 1814"	="Australian Industrial Registry"	20-May-08	="Temporary clerical or administrative assistance"	31-Jan-08	21-Feb-08	17294.62	=""	="OFFICE OF SHARED SERVICES (WA STATE LIBR"	20-May-08 10:19 AM	

+="CN85246"	"Secondment: 1/01/08 - 31/03/08 (Russell) Customer No: 1814"	="Australian Industrial Registry"	20-May-08	="Temporary clerical or administrative assistance"	30-Apr-08	21-May-08	17251.12	=""	="OFFICE OF SHARED SERVICES (WA STATE LIBR"	20-May-08 10:19 AM	

+="CN85247"	"Design works to standardise communicatio Job No. AIR12221"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	19-Jul-07	13-Aug-07	14300.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85248"	"Standardise communication materials Job No: AIR12221"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	14-Aug-07	11-Sep-07	12100.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85249"	"Part One - Design Standardisation Customer No: 56073"	="Australian Industrial Registry"	20-May-08	="Branding of product naming services"	15-Feb-08	07-Mar-08	13200.00	=""	="PERKS DESIGN PARTNERS"	20-May-08 10:20 AM	

+="CN85250"	"Financial Statements Prep - June 2007 Client Code: AIRV11/AUC"	="Australian Industrial Registry"	20-May-08	="Accounting software"	21-Sep-07	09-Oct-07	10615.00	=""	="PKF"	20-May-08 10:20 AM	

+="CN85251"	"Postage Charges - September 2007 Account No: 38497"	="Australian Industrial Registry"	20-May-08	="National postal delivery services"	25-Oct-07	25-Oct-07	22496.10	=""	="AUSTRALIA POST (VIC)"	20-May-08 10:20 AM	

+="CN85252"	"AIRC Presentation Skills Program Ref No: M100051FF"	="Australian Industrial Registry"	20-May-08	="Clerical training"	11-Jul-07	06-Aug-07	10991.53	=""	="ROGEN INTERNATIONAL (AUSTRALIA) PTY LTD"	20-May-08 10:20 AM	

+="CN85253"	"Presentation Skills Prog: 27 and 28/08/07 Ref No: MEL103628FF"	="Australian Industrial Registry"	20-May-08	="Clerical training"	16-Oct-07	06-Nov-07	10725.00	=""	="ROGEN INTERNATIONAL (AUSTRALIA) PTY LTD"	20-May-08 10:20 AM	

+="CN85254"	"Counter joinery - Job: AA390739103100 Adelaide"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	14-Aug-07	10-Sep-07	33275.00	=""	="SCHIAVELLO COMM INTERIORS VIC"	20-May-08 10:20 AM	

+="CN85255"	"Counter Joinery Job: AA390739103100 Perth"	="Australian Industrial Registry"	20-May-08	="Finish carpentry or cabinetry"	14-Aug-07	10-Sep-07	37950.00	=""	="SCHIAVELLO COMM INTERIORS VIC"	20-May-08 10:20 AM	

+="CN85256"	"AIRC 2008 Annual Conference- 50% deposit"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	23-Oct-07	23-Oct-07	16520.50	=""	="THE SEBEL KIRKTON PARK"	20-May-08 10:20 AM	

+="CN85257"	"4 day Commission Statuatory Conference 16/2-19/2/08"	="Australian Industrial Registry"	20-May-08	="Meeting or banquet rooms"	07-Mar-08	13-Mar-08	16633.00	=""	="THE SEBEL KIRKTON PARK"	20-May-08 10:21 AM	

+="CN85258"	"Records Management Consultancy Contract: V3 Nov2007"	="Australian Industrial Registry"	20-May-08	="Library software"	18-Apr-08	08-May-08	30495.00	=""	="SILLER SYSTEMS ADMINISTRATION"	20-May-08 10:21 AM	

+="CN85259"	"Annual Reports 2006-2007 x 1100 Customer: AUSTINDU"	="Australian Industrial Registry"	20-May-08	="Publication printing"	03-Jan-08	11-Jan-08	13545.60	=""	="SNAP PRINTING"	20-May-08 10:21 AM	

+="CN85260"	"Works associated with Quote VS01329 Customer No: AUSTIND-VM"	="Australian Industrial Registry"	20-May-08	="Communications server software"	18-Mar-08	08-Apr-08	23910.70	=""	="STOWE AUSTRALIA PTY LTD"	20-May-08 10:21 AM	

+="CN85261"	"Cat 6 Communications Cabling Upgrade Labour and Materials - Variation SC00713"	="Australian Industrial Registry"	20-May-08	="Communications server software"	15-Apr-08	06-May-08	17149.00	=""	="STOWE AUSTRALIA PTY LTD"	20-May-08 10:21 AM	

+="CN85262"	"Support and Maint.: 2/12/07 - 1/12/08 Debtor ID: AIR"	="Australian Industrial Registry"	20-May-08	="Maintenance or support fees"	19-Dec-07	21-Dec-07	29530.96	=""	="TECHNOLOGY ONE"	20-May-08 10:21 AM	

+="CN85263"	"MVS service - June 2007 Acc No. 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	31-Jul-07	11-Aug-07	36162.04	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85264"	"Acc No: 218 1194 300 Bill No: A 131 317 431-7"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	29-Aug-07	10-Sep-07	36162.07	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85265"	"Account No: 226 3120 400 Bill No: A 331 737 341-7"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	21-Sep-07	21-Sep-07	23938.92	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85266"	"MVS Charges - August 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	03-Oct-07	15-Oct-07	36315.86	=""	="TELSTRA (VIC)"	20-May-08 10:21 AM	

+="CN85267"	"MVS Charges - September 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	05-Nov-07	07-Nov-07	35718.39	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85268"	"Account No: 226 3120 400 Bill No: A 183 064 861-2"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	19-Dec-07	19-Dec-07	18433.66	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85269"	"Account No: 174 1614 600 Bill No: A 024 032 561-7"	="Australian Industrial Registry"	20-May-08	="Wide area network WAN maintenance or support"	21-Dec-07	21-Dec-07	83673.59	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85270"	"MVS Charges - November 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	14-Jan-08	14-Jan-08	36121.86	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85271"	"MVS Charges - December 2007 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	05-Feb-08	06-Feb-08	34956.36	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85272"	"MVS charges - January Account No. 2181194300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	04-Mar-08	13-Mar-08	36517.07	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85273"	"Account No: 226 3120 400 Bill No: A 428 214 291-0"	="Australian Industrial Registry"	20-May-08	="Videoconferencing facilities"	19-Mar-08	19-Mar-08	11284.58	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85274"	"Account No: 174 1614 600 Bill No: A 272 931 791-7"	="Australian Industrial Registry"	20-May-08	="Wide area network WAN maintenance or support"	07-Apr-08	07-Apr-08	36022.95	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85275"	"MVS Charges - March 2008 Account No: 218 1194 300"	="Australian Industrial Registry"	20-May-08	="Local telephone service"	30-Apr-08	05-May-08	35111.32	=""	="TELSTRA (VIC)"	20-May-08 10:22 AM	

+="CN85276"	"Annual subscriptions to various law journals."	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Aug-07	11-Sep-07	173984.49	=""	="THOMSON LEGAL and REGULATORY GROUP"	20-May-08 10:22 AM	

+="CN85277"	"Annual subscriptions to various law reports and journals"	="Australian Industrial Registry"	20-May-08	="Periodicals"	14-Aug-07	11-Sep-07	74946.40	=""	="THOMSON LEGAL and REGULATORY GROUP"	20-May-08 10:23 AM	

+="CN85278"	"Property services July 07"	="Australian Industrial Registry"	20-May-08	="Property management"	24-Jul-07	27-Jul-07	970357.50	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85279"	"Property Operating Expenses - AUG 07"	="Australian Industrial Registry"	20-May-08	="Property management"	05-Sep-07	10-Sep-07	975381.76	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85280"	"Property Operating Expenses - OCT 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	25-Sep-07	26-Sep-07	976148.70	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85281"	"Property Operating Expenses - NOV 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	26-Oct-07	30-Oct-07	977611.92	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85282"	"Property Operating Expenses - DEC 2007 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Nov-07	26-Nov-07	1004170.54	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85283"	"Property Operating Expenses - Jan 2008 Ref No: 1054024"	="Australian Industrial Registry"	20-May-08	="Property management"	21-Dec-07	24-Dec-07	1273702.42	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85284"	"Property Operating Expense - FEB 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Jan-08	29-Jan-08	1014512.70	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85285"	"Property Operating Expenses - March 2008 Client No: AIR"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Feb-08	26-Feb-08	1015770.19	=""	="UNITED GROUP"	20-May-08 10:23 AM	

+="CN85286"	"Property Operating Expenses - Apr 2008 Client No: AIR"	="Australian Industrial Registry"	20-May-08	="Property management"	25-Mar-08	27-Mar-08	1007571.43	=""	="UNITED GROUP"	20-May-08 10:24 AM	

+="CN85287"	"Property Operating Expenses - MAY 2008"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Apr-08	24-Apr-08	1007195.21	=""	="UNITED GROUP"	20-May-08 10:24 AM	

+="CN85288"	"Prepayment: Jan 08 - Jun 08 (Hobart) Account No: 1054024"	="Australian Industrial Registry"	20-May-08	="Commercial or industrial facility rental"	12-Dec-07	04-Jan-08	150305.00	=""	="UNITED GROUP (KFPW REAL ESTATE SERVICES)"	20-May-08 10:24 AM	

+="CN85289"	"National Portfolio MGMT - July 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	09-Jul-07	31-Jul-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85290"	"National Portfolio MGMT Aug 07 Acc: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	06-Aug-07	31-Aug-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85291"	"National portfolio MGMT for Sept 07 Acc: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	29-Aug-07	19-Sep-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85292"	"National Portfolio MGMT - October 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	28-Sep-07	22-Oct-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85293"	"National Portfolio MGMT - November 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	23-Oct-07	15-Nov-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85294"	"National Portfolio MGMT - December 2007 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	30-Nov-07	17-Dec-07	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:24 AM	

+="CN85295"	"National Portfolio MGMT - January 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	19-Dec-07	10-Jan-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85296"	"National Portfolio MGMT - February 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	31-Jan-08	21-Feb-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85297"	"National Portfolio MGMT - March 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	22-Feb-08	19-Mar-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85298"	"National Portfolio MGMT - April 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	28-Mar-08	17-Apr-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85299"	"National Portfolio MGMT - May 2008 Account No: 1065718"	="Australian Industrial Registry"	20-May-08	="Property management"	05-May-08	26-May-08	12142.16	=""	="UNITED KFPW PTY LTD"	20-May-08 10:25 AM	

+="CN85300"	"Supply and Install Blinds: Level 7-8 Quote No: 1417-1416"	="Australian Industrial Registry"	20-May-08	="Roll up shades"	19-Mar-08	08-Apr-08	33398.20	=""	="VALTAS ENTERPRISES PTY LTD"	20-May-08 10:25 AM	

+="CN85301"	"Supply of a system to receive, transfer and store non-AMSA AIS data."	="Australian Maritime Safety Authority"	20-May-08	="Information Technology Broadcasting and Telecommunications"	13-May-08	31-May-10	472600.00	="AMSA No.868/37908"	="Australian Maritime Systems Ltd"	20-May-08 10:33 AM	

+="CN85302"	"Legal services"	="National Competition Council"	20-May-08	="Legal services"	30-Apr-08	30-May-08	22657.81	=""	="Australia Government Solocitor"	20-May-08 10:35 AM	

+="CN85303"	"Usability Testing Services"	="Centrelink"	20-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Mar-08	30-Jun-08	39773.25	=""	="ACCESS TESTING"	20-May-08 10:36 AM	

+="CN85304"	"Mail and cargo transport"	="Australian Competition and Consumer Commission"	20-May-08	="Mail and cargo transport"	01-Mar-08	31-Mar-08	14460.41	=""	="National Mail and Marketing Pty Ltd"	20-May-08 10:45 AM	

+="CN85305"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	09-May-08	30-Jun-08	20000.00	=""	="EcoAssist Pty Ltd"	20-May-08 10:45 AM	

+="CN85306"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	11-May-08	15-Aug-08	16944.80	=""	="Palms City Resort"	20-May-08 10:45 AM	

+="CN85307"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	11-May-08	16-Aug-08	14333.01	=""	="M-Power Accommodation Pty Ltd"	20-May-08 10:46 AM	

+="CN85308"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	20-May-08	="Telecommunications media services"	14-Mar-08	14-Apr-08	16079.61	=""	="Telstra"	20-May-08 10:46 AM	

+="CN85309"	"Hotels lodging and meeting facilities"	="Australian Competition and Consumer Commission"	20-May-08	="Hotels and lodging and meeting facilities"	14-May-08	16-Aug-08	10340.00	=""	="Tribeca By Q Resorts"	20-May-08 10:46 AM	

+="CN85310"	"Management Advosiry Services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	14-May-08	26-Sep-08	30000.00	=""	="Rowena Armstrong"	20-May-08 10:46 AM	

+="CN85311"	"Management advisory services"	="Australian Competition and Consumer Commission"	20-May-08	="Management advisory services"	14-May-08	30-Apr-09	64900.00	="RFT 2007- 12"	="Energy and Management Services Pty Ltd"	20-May-08 10:46 AM	

+="CN85312"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	20-May-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	16720.00	=""	="Dell Australia"	20-May-08 10:46 AM	

+="CN85313"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	20-May-08	="Computer Equipment and Accessories"	14-May-08	30-Jun-08	41580.00	=""	="Dell Australia"	20-May-08 10:46 AM	

+="CN85314"	"reproduction services"	="Australian Competition and Consumer Commission"	20-May-08	="Reproduction services"	21-Apr-08	21-May-08	43743.70	=""	="Pirion Pty Ltd"	20-May-08 10:46 AM	

+="CN85315"	"Reproduction services"	="Australian Competition and Consumer Commission"	20-May-08	="Reproduction services"	24-Apr-08	24-May-08	13035.00	=""	="Epimedia"	20-May-08 10:46 AM	

+="CN85316"	"Human resources services"	="Australian Competition and Consumer Commission"	20-May-08	="Human resources services"	28-Feb-08	11-Mar-08	32816.60	=""	="CCH Workflow Solutions"	20-May-08 10:47 AM	

+="CN85317"	"Accounting and auditing"	="Australian Competition and Consumer Commission"	20-May-08	="Accounting and auditing"	31-Mar-08	31-May-08	46200.00	=""	="Acumen Alliance"	20-May-08 10:47 AM	

+="CN85318"	"Security Monitoring"	="Federal Magistrates Court"	20-May-08	="Security surveillance and detection"	01-Apr-08	30-Apr-08	29104.37	=""	="ADT Security"	20-May-08 10:49 AM	

+="CN85319"	" Office Equipment - FMC JMT "	="Federal Magistrates Court"	20-May-08	="Office Equipment and Accessories and Supplies"	01-Apr-08	30-Apr-08	21329.00	=""	="B & H Australia Pty Ltd"	20-May-08 11:00 AM	

+="CN85321"	"Taxi & Cabcharges"	="Federal Magistrates Court"	20-May-08	="Taxicab services"	01-Apr-08	30-Apr-08	32163.94	=""	="Cabcharge Australia Limited"	20-May-08 11:04 AM	

+="CN85323"	"Recover Costs Rental, Outgoings, Car Parking - April 2008"	="Federal Magistrates Court"	20-May-08	="Commercial or industrial facility rental"	01-Apr-08	30-Apr-08	14982.12	=""	="Charter Hall Limited - Savills"	20-May-08 11:08 AM	

+="CN85324"	"Security Monitoring"	="Federal Magistrates Court"	20-May-08	="Security surveillance and detection"	01-Apr-08	30-Apr-08	17763.64	=""	="Chubb Protective Services"	20-May-08 11:12 AM	

+="CN85325"	" Manufacture & fitting of furniture FMC JMT "	="Federal Magistrates Court"	20-May-08	="Carpentry"	01-Apr-08	30-Apr-08	38122.70	=""	="Claremont Joinery"	20-May-08 11:19 AM	

+="CN85326"	"Stationery, Kitchen and Other Office Supplies"	="Federal Magistrates Court"	20-May-08	="Stationery"	01-Apr-08	30-Apr-08	17048.28	=""	="Corporate Express Australia"	20-May-08 11:22 AM	

+="CN85327"	"Temp Staff & Court Officers"	="Federal Magistrates Court"	20-May-08	="Temporary legal staffing needs"	01-Apr-08	30-Apr-08	43229.48	=""	="Drake Australia Pty Ltd"	20-May-08 11:26 AM	

+="CN85328"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	19556.16	=""	="Harvey Consultancy - Report Writer"	20-May-08 11:30 AM	

+="CN85329"	"Temp Staff - Federal Magistrates Court"	="Federal Magistrates Court"	20-May-08	="Temporary clerical or administrative assistance"	01-Apr-08	30-Apr-08	29274.95	=""	="Hays Specialist Recruitment (Aust) Pty Ltd"	20-May-08 11:34 AM	

+="CN85330"	"Leasehold Improvements - FMC Level 9 LBB"	="Federal Magistrates Court"	20-May-08	="Refurbishing services"	01-Apr-08	30-Apr-08	10885.60	=""	="Interior Development Pty Ltd"	20-May-08 11:43 AM	

+="CN85331"	"Motor Vehicle Parts"	="Department of Defence"	20-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	10463.20	=""	="BEAUREPAIRES FOR TYRES"	20-May-08 11:46 AM	

+="CN85332"	"Office Refurbishment - FMC Level 12, Melbourne"	="Federal Magistrates Court"	20-May-08	="Refurbishing services"	01-Apr-08	30-Apr-08	15079.90	=""	="IRM Interiors Pty Ltd"	20-May-08 11:48 AM	

+="CN85334"	"Counselling Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	16170.00	=""	="Joy Slattery Counselling Pty Ltd"	20-May-08 11:54 AM	

+="CN85333"	"qty 700 field manpacks for military radios."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	19-May-08	04-Sep-08	45707.20	="RFQ-C7168"	="GEE YAN INDUSTRY PTY LTD"	20-May-08 11:55 AM	

+="CN85335"	"Various Photocopier Equipment, Accessories & Photocopier Charges"	="Federal Magistrates Court"	20-May-08	="Printer and photocopier and facsimile accessories"	01-Apr-08	30-Apr-08	10918.88	=""	="Kyocera Mita Australia Pty Ltd"	20-May-08 11:59 AM	

+="CN85336"	"Recover Costs Rental, Outgoings, Car Parking - FMC Macquarie St, Sydney, March & April 2008"	="Federal Magistrates Court"	20-May-08	="Commercial or industrial facility rental"	01-Apr-08	30-Apr-08	25140.12	=""	="Law Courts Limited - United Group Services"	20-May-08 12:04 PM	

+="CN85337"	"Vehicle Leases"	="Federal Magistrates Court"	20-May-08	="Vehicle rental"	01-Apr-08	30-Apr-08	84514.82	=""	="Lease Plan"	20-May-08 12:09 PM	

+="CN85339"	"Temp Staff - Payroll"	="Federal Magistrates Court"	20-May-08	="Temporary clerical or administrative assistance"	01-Apr-08	30-Apr-08	14686.05	=""	="Micropay Pty Ltd"	20-May-08 12:13 PM	

+="CN85340"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-May-08	="Transcribing services"	01-Apr-08	30-Apr-08	170916.01	=""	="National Transcription Services Pty Ltd"	20-May-08 12:16 PM	

+="CN85338"	"Motor Vehilce Parts"	="Department of Defence"	20-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	19397.10	=""	="Landrover Australia"	20-May-08 12:17 PM	

+="CN85341"	"Consulting services for Back Office Systems Selection & Preparation of an Infrastructure Request for Proposal"	="Federal Magistrates Court"	20-May-08	="Business and corporate management consultation services"	01-Apr-08	30-Apr-08	92537.20	=""	="Oakton Services Pty Ltd"	20-May-08 12:23 PM	

+="CN85342"	"Interpreting Services"	="Federal Magistrates Court"	20-May-08	="Interpreters"	01-Apr-08	30-Apr-08	17530.15	=""	="On-Call Interpreters & Translators Agency Pty Ltd"	20-May-08 12:26 PM	

+="CN85343"	"Consulting Services - Family Report"	="Federal Magistrates Court"	20-May-08	="Court reporting services"	01-Apr-08	30-Apr-08	15403.98	=""	="Paris Consultancy Pty Ltd"	20-May-08 12:30 PM	

+="CN85344"	"Airfares"	="Federal Magistrates Court"	20-May-08	="Commercial aeroplane travel"	01-Apr-08	30-Apr-08	85627.51	=""	="Qantas - QAEBTA"	20-May-08 12:33 PM	

+="CN85345"	"Transcribing & Court Recording Services"	="Federal Magistrates Court"	20-May-08	="Transcribing services"	01-Apr-08	30-Apr-08	58499.18	=""	="Spark & Cannon Australasia Pty Ltd"	20-May-08 12:36 PM	

+="CN85347"	"Mobile Phones & Telephone Accounts"	="Federal Magistrates Court"	20-May-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	30-Apr-08	24232.16	=""	="Telstra Corporation Limited"	20-May-08 12:39 PM	

+="CN85348"	"Freight Forwarding Service"	="Federal Magistrates Court"	20-May-08	="Freight forwarders services"	01-Apr-08	30-Apr-08	17837.90	=""	="Toll IPEC Pty Ltd"	20-May-08 12:42 PM	

+="CN85353"	"SUPPLY OF TROUSERS, MEN'S, BARATHEA. ORIGINALLY UNDER CN45671 ON 10 NOV 2007, BUT INCORRECT VALUE WAS ENTERED AT THAT TIME."	="Defence Materiel Organisation"	20-May-08	="Military uniforms"	22-Jan-08	22-May-08	838552.00	="DNJO34"	="AUSTRALIAN DEFENCE APPAREL"	20-May-08 01:54 PM	

+="CN85355"	"qty 200 VHF antenna assemblies for use with military radios."	="Defence Materiel Organisation"	20-May-08	="Radio antennas"	20-May-08	19-Aug-08	25740.00	="RFQ-C7169"	="EYLEX PTTY LTD"	20-May-08 02:26 PM	

+="CN85354"	"Information Management and Complicence Framework"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Corporate objectives or policy development"	27-Jun-07	07-Aug-07	223369.00	=""	="Ernst & Young"	20-May-08 02:26 PM	

+="CN85356-A1"	"Provision of Investigation Services"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Private investigation services"	20-Jul-07	30-Sep-07	59754.00	=""	="Australian Forensic services"	20-May-08 02:38 PM	

+="CN85357-A1"	"Advertising"	="Productivity Commission"	20-May-08	="Advertising"	30-Jan-08	15-Feb-08	38852.00	=""	="HMA Blaze P/L"	20-May-08 02:39 PM	

+="CN85358-A2"	"Develop a forecast position for information services at 30 june 08"	="Australian Federal Police"	20-May-08	="Audit services"	01-May-08	30-Jun-08	134904.00	="RFT 01-2005"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	20-May-08 02:49 PM	

+="CN85361"	"External testing against the Child Support Agency's internat system"	="Child Support Agency"	20-May-08	="Business administration services"	20-May-08	30-Jun-08	19250.00	=""	="Pure Hacking Pty Ltd"	20-May-08 02:54 PM	

+="CN85362"	" Provision of office fitout works for the Kununurra unit of CRS Australia. "	="CRS Australia"	20-May-08	="Building and Construction and Maintenance Services"	14-May-08	16-Jun-08	28550.00	=""	="Franmor Constructions Pty Ltd"	20-May-08 03:00 PM	

+="CN85363-A2"	"Provision of Interpreting services."	="CRS Australia"	20-May-08	="Interpreters"	14-May-08	30-Sep-08	223238.97	=""	="New Age Interpreting Services"	20-May-08 03:05 PM	

+="CN85366"	"Review of Implications of Closure of State offices"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Strategic planning consultation services"	11-Jul-07	19-Oct-07	37000.00	=""	="Nicki Vance Consulting"	20-May-08 03:36 PM	

+="CN85367"	"Cleaning Services for CSA Geelong"	="Child Support Agency"	20-May-08	="General building and office cleaning and maintenance services"	20-May-08	31-Dec-08	23000.00	=""	="Etheridge Cleaning and Maintenance Services"	20-May-08 03:37 PM	

+="CN85369"	"Tax Office/Taxpayer relationship research"	="Australian Taxation Office"	20-May-08	="Market research"	30-Apr-08	30-Jun-08	69971.00	=""	="Taylor Nelson Sofres Australia Pty Ltd"	20-May-08 03:45 PM	

+="CN85373"	" 9150 66-068-0440 Engine Lubricating Oil  20X 205L Drums OMD 113 "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	28-Mar-08	04-Apr-08	13483.00	=""	="Castrol"	20-May-08 03:55 PM	

+="CN85371-A1"	"Provision of Internal Audit Services"	="Australian Sports Anti-Doping Authority (ASADA)"	20-May-08	="Audit services"	01-Sep-07	30-Jun-11	250000.00	="RFT0607/006"	="Deloitte Touche Tohmatsu"	20-May-08 03:57 PM	

+="CN85374"	" 9150 66-034-7917  Steam Turbine Lubricating Oil   20X205L Drums OEP-89 (Regal Marine 77)       "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	04-Apr-08	12131.90	=""	="CALTEX"	20-May-08 04:10 PM	

+="CN85376"	"Shock Absorber Kit - ASLAV"	="Department of Defence"	20-May-08	="Armoured fighting vehicles"	20-May-08	19-Dec-08	26441.80	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-May-08 04:12 PM	

+="CN85375"	" CIRCUIT CARD ASSEMBLY; PART No 245-6211-10; MC22373. QUANTITY 10 "	="Defence Materiel Organisation"	20-May-08	="Military rotary wing aircraft"	20-May-08	25-Jan-09	18472.85	=""	="ASSOCIATED AIRCRAFT"	20-May-08 04:13 PM	

+="CN85377"	"Power Drive CGU - ASLAV"	="Department of Defence"	20-May-08	="Armoured fighting vehicles"	20-May-08	14-Nov-08	11926.20	=""	="GENERAL DYNAMICS LAND SYSTEMS"	20-May-08 04:15 PM	

+="CN85378"	"9150 99-458-6311Engine Lubricating Oil 40 x205L Drums Energol HPDX 40 in 205L"	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	04-Apr-08	29121.84	=""	="BP Australia Ltd"	20-May-08 04:20 PM	

+="CN85381"	"Audit Consultant"	="Australian Securities and Investments Commission"	20-May-08	="Audit services"	24-Apr-08	30-Jun-08	30800.00	=""	="Bentleys MRI"	20-May-08 04:32 PM	

+="CN85380"	" 9150 00-261-8317  Petroleum Base Hydraulic Fluid   H-575 Hydranycoil FHG  220xUS 5GGAL "	="Defence Materiel Organisation"	20-May-08	="Lubricants and oils and greases and anti corrosives"	02-Apr-08	09-Apr-08	47707.08	=""	="Interchem"	20-May-08 04:34 PM	

+="CN85382"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	20-May-08	="Legal services"	07-May-08	30-Jun-08	50000.00	=""	="Luchich, Madeline"	20-May-08 04:36 PM	

+="CN85383"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	20-May-08	="Legal services"	12-May-08	30-Jun-08	51000.00	=""	="Robberds, Lionel"	20-May-08 04:47 PM	

+="CN85385"	"Consultant"	="Australian Securities and Investments Commission"	20-May-08	="Temporary research and development services"	25-Mar-08	25-Sep-08	81900.00	=""	="Turton, Allen"	20-May-08 05:01 PM	

+="CN85387"	"Sand Bags, Hessian 33 x 14 Inches, with Vent and Tie String. Qty 80,000."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	20-May-08	13-Jun-08	38139.20	=""	="H POLESY & CO PTY LTD"	20-May-08 05:17 PM	

+="CN85388-A1"	"Sand Bags, Hessian 33 x 14 Inches, with Vent and Tie String. Qty 231,000."	="Defence Materiel Organisation"	20-May-08	="Canvas bags"	20-May-08	23-May-08	118944.21	=""	="H POLESY & CO PTY LTD"	20-May-08 05:40 PM	

+="CN85389"	" VEHICLE REPAIRS "	="Department of Defence"	21-May-08	="Motor vehicles"	16-Apr-08	16-May-08	10020.15	=""	="MACK AUSTRALIA"	21-May-08 07:56 AM	

+="CN85390"	"REPAIR OF MODE SELECT PANEL"	="Defence Materiel Organisation"	21-May-08	="Military rotary wing aircraft"	21-May-08	31-Jul-08	25789.50	=""	="MOOG AUSTRALIA"	21-May-08 08:20 AM	

+="CN85393"	"Repair of Inlet Air Assy"	="Defence Materiel Organisation"	21-May-08	="Aircraft"	20-May-08	20-Jun-08	34497.85	=""	="Sikorsky"	21-May-08 09:44 AM	

+="CN85394"	"Printing of NAT10645 ARL - Landscape corporate folders. Qty: 20,000"	="Australian Taxation Office"	21-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	30-Jun-08	10098.00	=""	="Blue Star Print Group t/a National Capital Printing"	21-May-08 09:44 AM	

+="CN85397"	"Provision of Training Organisation Accreditation Services"	="Department of Immigration and Citizenship"	21-May-08	="Business administration services"	10-Apr-08	30-Jun-09	92875.00	=""	="Wisdom Learning Pty Ltd"	21-May-08 10:13 AM	

+="CN85398"	"Provision of suppling 30 400GB Fibre Channel Drives"	="Australian Federal Police"	21-May-08	="Computer Equipment and Accessories"	30-Aug-07	30-Jul-08	32325.15	="RFT 6-2006"	="Dimension Data Australia Pty Limited"	21-May-08 10:15 AM	

+="CN85399"	" Renewal of maintenance for ASISCase Manager software for period 12/07/2008-11/07/2009.  Renewal of maintenance is essential for ATO operations "	="Australian Taxation Office"	21-May-08	="Software maintenance and support"	12-Jul-08	11-Jul-09	20790.00	=""	="Australian Special Information Systems Pty Ltd"	21-May-08 10:26 AM	

+="CN85400"	"SLIPPING AND LIFTING CHARGES FOR LCM8"	="Department of Defence"	21-May-08	="Utility landing watercraft"	21-May-08	30-May-08	32386.20	=""	="REGIONAL & NORTHERN MAINTENANCE SERVICES"	21-May-08 11:20 AM	

+="CN85401"	"100% BLAST AND PAINT LCM8"	="Department of Defence"	21-May-08	="Utility landing watercraft"	20-May-08	30-May-08	94387.90	=""	="REGIONAL & NORTHERN MAINTENANCE SERVICES"	21-May-08 11:28 AM	

+="CN85402-A2"	"Lease at Tasman Tce, Port Lincoln (includes CN24612)"	="Department of Human Services"	21-May-08	="Lease and rental of property or building"	04-Nov-02	03-Jul-12	1485474.00	=""	="Cabramatta Holdings Pty Ltd"	21-May-08 11:32 AM	

+="CN85403"	"PART A ANNUAL SLIPPING"	="Department of Defence"	21-May-08	="Utility landing watercraft"	20-May-08	30-May-08	40319.30	=""	="REGIONAL & NORTHERN MAINTENANCE SERVICES"	21-May-08 11:33 AM	

+="CN85404-A8"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	80000000.00	=""	="Adult Multicultural Education Services"	21-May-08 11:40 AM	

+="CN85406-A1"	"Provision of Security Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology software developers"	29-Apr-08	14-May-08	19603.00	=""	="Persec Solutions Pty Ltd"	21-May-08 11:41 AM	

+="CN85405"	"PARTS WASHER MAINTENANCE FOR MAY 08"	="Department of Defence"	21-May-08	="Washers"	20-May-08	30-May-08	10645.00	=""	="KWIKLEEN"	21-May-08 11:42 AM	

+="CN85409"	" Recruitment of Payroll Officer "	="Australian Crime Commission"	21-May-08	="Personnel recruitment"	06-May-08	10-Jun-08	27087.50	=""	="Speller International"	21-May-08 11:50 AM	

+="CN85410-A1"	"Provision of  Information Technology Security Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	05-Mar-08	16-Apr-08	26886.00	=""	="Persec Solutions Pty Ltd"	21-May-08 11:51 AM	

+="CN85411-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	15800000.00	=""	="Charles Darwin University"	21-May-08 11:52 AM	

+="CN85412-A1"	"Provision of Information Technology Security Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	26-Mar-08	06-May-08	11484.00	=""	="The Trustee for Prism Enterprises Trust"	21-May-08 11:56 AM	

+="CN85413-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	20100000.00	=""	="Tafe Tasmania"	21-May-08 11:56 AM	

+="CN85414-A1"	"Provision of Information Technology Security Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	26-Mar-08	25-Apr-08	22010.00	=""	="Persec Solutions Pty Ltd"	21-May-08 11:58 AM	

+="CN85415-A6"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	111650000.00	=""	="NSW Department of Education and Training (for the NSW Deparment of Education and Training Adult Migrant English Program Consortium)"	21-May-08 12:01 PM	

+="CN85416-A7"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	62950000.00	=""	="NSW Department of Education and Training (for the NSW Education and Training Adult Migrant English Program Consortium)"	21-May-08 12:05 PM	

+="CN85417-A1"	"Provision of Information Technology Security Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	02-Apr-08	14-May-08	18408.00	=""	="Persec Solutions Pty Ltd"	21-May-08 12:09 PM	

+="CN85418-A5"	"Provision of Adult Migrant English Services"	="Department of Immigration and Citizenship"	21-May-08	="Education and Training Services"	01-Jul-03	30-Jun-11	99050000.00	=""	="NSW Department of Education and Training (for the NSW Department of Education and Training Adult Migrant English Program Consortium)"	21-May-08 12:12 PM	

+="CN85423"	"Provision of Workforce Performance Assessment Services"	="Department of Immigration and Citizenship"	21-May-08	="Human resources services"	19-Mar-08	30-May-08	181170.00	=""	="Yello Edge Pty Ltd"	21-May-08 12:21 PM	

+="CN85424"	" Provision of Information Software Development Services "	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology software developers"	07-Apr-08	30-Jun-08	75900.00	=""	="Total Learn Pty Ltd"	21-May-08 12:26 PM	

+="CN85425"	" Provision of Leadership Program Facilitation Services "	="Department of Immigration and Citizenship"	21-May-08	="Temporary human resources services"	08-Apr-08	30-Jun-08	31960.00	=""	="Yellow Edge Pty Ltd"	21-May-08 12:33 PM	

+="CN85428"	"Provision of Training Design and Development Services"	="Department of Immigration and Citizenship"	21-May-08	="Development"	27-Feb-08	30-May-08	19250.00	=""	="Wisdom Learning Pty Ltd"	21-May-08 12:46 PM	

+="CN85430-A1"	" Provision of Citizenship Test Review Committee Services "	="Department of Immigration and Citizenship"	21-May-08	="Budget preparation or review services"	21-Feb-08	31-Jul-08	75000.00	=""	="Woolcott Associates"	21-May-08 12:56 PM	

+="CN85431-A3"	"Provision of cleaning services to the Launceston and Burnie premises of CRS Australia."	="CRS Australia"	21-May-08	="General building and office cleaning and maintenance services"	13-Mar-08	12-Mar-11	34500.00	=""	="General and Window Cleaning Pty Ltd"	21-May-08 12:58 PM	

+="CN85434"	" Provision for Staff Influenza Vaccination Services "	="Department of Immigration and Citizenship"	21-May-08	="Temporary medical staffing needs"	30-Mar-08	30-Jun-08	45000.00	=""	="Health Services Australia Limited"	21-May-08 01:02 PM	

+="CN84080-A2"	"Provision for Information Technology Analysis Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Limited"	21-May-08 01:20 PM	

+="CN84079-A4"	"Provision for Information Technology Analysis Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	24-Jul-09	207625.00	=""	="Ross Human Directions Limited"	21-May-08 01:24 PM	

+="CN84077-A2"	"Provision for Information Technology Analysis Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	13-Aug-07	30-Jun-08	91025.00	=""	="Ross Human Directions Limited"	21-May-08 01:25 PM	

+="CN84072-A2"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	30-Jun-08	85195.00	=""	="Ross Human Directions Pty Limited"	21-May-08 01:26 PM	

+="CN84071-A2"	"Provision of Information Technology Programming Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology software developers"	03-Jul-07	30-Jun-08	387200.00	=""	="Ross Human Directions Limited"	21-May-08 01:31 PM	

+="CN84069-A3"	"Provision of Information Technology Analysis Services"	="Department of Immigration and Citizenship"	21-May-08	="Temporary information technology systems or database administrators"	10-Sep-07	05-Mar-08	85195.00	=""	="Ross Human Directions Limited"	21-May-08 01:32 PM	

+="CN85438"	"CONNECTOR, PLUG, ELECTRICAL"	="Defence Materiel Organisation"	21-May-08	="Aircraft spars"	10-Apr-08	22-Sep-08	15184.40	=""	="MILSPEC SERVICE PTY LTD"	21-May-08 01:36 PM	

+="CN85441"	"TRAILER RAIL TYPE"	="Defence Materiel Organisation"	21-May-08	="Aircraft spars"	27-Nov-07	05-Feb-08	14520.00	=""	="TETERIN ENGINEERING PTY LTD"	21-May-08 01:59 PM	

+="CN85439-A3"	"20 x Test Director Licenses & 1 years support."	="Australian Taxation Office"	21-May-08	="Software"	01-Jul-08	30-Jun-10	7955020.93	=""	="HP Invent"	21-May-08 02:04 PM	

+="CN85442"	"Cost Assessors"	="Australian Securities and Investments Commission"	21-May-08	="Legal assistance services"	06-May-08	30-Jun-08	20000.00	=""	="Compucost"	21-May-08 02:05 PM	

+="CN85426-A2"	"Lease at Enfield, SA (includes CN25055)"	="Centrelink"	21-May-08	="Lease and rental of property or building"	29-Oct-99	30-Jun-11	3680514.00	=""	="Sixteen Pty Ltd"	21-May-08 02:10 PM	

+="CN85443"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	21-May-08	="Aircraft spars"	21-May-08	24-Mar-09	14168.00	=""	="AEROSPACE COMPOSITES PTY LTD"	21-May-08 02:10 PM	

+="CN85444"	"Legal Services"	="Australian Securities and Investments Commission"	21-May-08	="Legal services"	29-Apr-08	30-Jun-09	150000.00	=""	="Musikanth, Alain"	21-May-08 02:10 PM	

+="CN85445"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	21-May-08	="Legal services"	29-Feb-08	30-Jun-08	15000.00	=""	="Hanks, Peter J"	21-May-08 02:17 PM	

+="CN85446"	" FA18 BOMB AND RACK DISPENSER "	="Defence Materiel Organisation"	21-May-08	="Aircraft spars"	15-Feb-08	02-May-08	49362.50	=""	="TRIMCAST PTY LTD"	21-May-08 02:20 PM	

+="CN85448"	"Contract Project Delivery Manager, Project Managers and Business Analysts"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	54395.00	=""	="Madfish Solutions"	21-May-08 02:37 PM	

+="CN85450"	"Project Manager"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	40205.00	=""	="Kaptiva Pty Ltd"	21-May-08 02:47 PM	

+="CN85451"	"Project Manager"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	47340.00	=""	="Sharewin Pty Ltd"	21-May-08 02:54 PM	

+="CN85452"	"Project Manager"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	28-Apr-08	27-Jun-08	46117.50	=""	="Robana Pty Ltd"	21-May-08 02:59 PM	

+="CN85454"	"Business Analyst"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	34650.00	=""	="Aurec Pty Ltd"	21-May-08 03:03 PM	

+="CN85455"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-May-08	13-Aug-08	11217.39	=""	="Land Rover AUSTRALIA"	21-May-08 03:04 PM	

+="CN85456"	"Business Analyst"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	30745.00	=""	="VC Tradeconsult Pty"	21-May-08 03:07 PM	

+="CN85457-A1"	"Tax Time advertising campaign - Radiowise"	="Australian Taxation Office"	21-May-08	="Radio advertising"	18-Apr-08	30-Oct-08	84700.00	=""	="Radiowise Media Networks Pty Ltd"	21-May-08 03:07 PM	

+="CN85458"	"Business Analyst"	="Australian Securities and Investments Commission"	21-May-08	="Temporary personnel services"	21-Apr-08	20-Jun-08	34056.00	=""	="Wisemate Pty"	21-May-08 03:10 PM	

+="CN85461-A1"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	21-May-08	="Legal services"	20-Apr-08	30-Jun-08	30000.00	=""	="Meagher, Tony"	21-May-08 03:28 PM	

+="CN85462"	"MOTOR VEHICLE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-May-08	20-Jun-08	25930.80	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	21-May-08 03:31 PM	

+="CN85463"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	24971.43	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	21-May-08 03:38 PM	

+="CN85464"	" 6850 66-128-9638   Antifreeze  100 Drums Antifreeze/Antiboil in 20L "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	04-Apr-08	14-Apr-08	17028.00	=""	="CASTROL"	21-May-08 03:43 PM	

+="CN85466"	"MOTOR VEHICLE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-May-08	23-Jun-08	13689.37	=""	="Volvo Commericial Vehicles"	21-May-08 03:48 PM	

+="CN85467"	"SUPPLY OF DEFIBRILLATORS & ACCESSORIES"	="Defence Materiel Organisation"	21-May-08	="Medical Equipment and Accessories and Supplies"	13-May-08	30-May-08	155000.00	=""	="CARDIAC SCIENCE AUSTRALIA PTY LTD"	21-May-08 03:48 PM	

+="CN85469"	"HMA Blaze"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Advertising"	01-Jul-07	30-Jun-08	17800.22	=""	="HMA Blaze Pty Ltd"	21-May-08 03:51 PM	

+="CN85470"	"PSRR Report Preparation and Review"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-Mar-07	31-Dec-07	24386.67	="NA"	="ASIO T4 Protective Security"	21-May-08 03:51 PM	

+="CN85471"	"Diving equipment for detection systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Diving instruments or accessories"	06-Feb-08	06-Feb-08	10021.00	="NA"	="Melbourne Diving Centre"	21-May-08 03:51 PM	

+="CN85468"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-May-08	23-Jun-08	15246.17	=""	="Volvo Commerical Vehicles"	21-May-08 03:51 PM	

+="CN85472"	"NUCLETRON"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Radiation detectors"	28-Mar-08	28-Mar-09	143277.00	="OPEN"	="NUCLETRON P/L"	21-May-08 03:51 PM	

+="CN85473"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Detectors"	03-Oct-07	30-Oct-08	43125.00	="NA"	="Nu Scientific P/L"	21-May-08 03:51 PM	

+="CN85474"	"BUTLER GROUP"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Conference centres"	05-Mar-08	05-Mar-09	16500.00	="OPEN"	="Butler Group"	21-May-08 03:51 PM	

+="CN85475-A1"	" Provision of Electricity Supply "	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	21-May-08	="Electrical services"	01-Jul-07	30-Jun-08	14203.82	=""	="Tru Energy"	21-May-08 03:51 PM	

+="CN85476-A1"	" 6850 66-088-7885  Liquid Antifreeze  135x 20L drums Antifreeze/Antiboil "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	04-Apr-08	11-Apr-08	22987.90	=""	="CASTROL"	21-May-08 03:53 PM	

+="CN85477"	"MOTOR VEHICLE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-May-08	23-Jun-08	14671.71	=""	="Volvo Commerical Vehicles"	21-May-08 03:55 PM	

+="CN85479"	"NSN2915-00-821-4850  PARTS KIT VALVE"	="Defence Materiel Organisation"	21-May-08	="Aerospace systems and components and equipment"	06-Sep-07	12-Jul-08	30120.48	=""	="Milspec Services Pty Ltd"	21-May-08 03:59 PM	

+="CN85480"	"MOTOR VEHICLE PARTS"	="Department of Defence"	21-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-May-08	19-Jun-08	10332.77	=""	="LAND ROVER AUSTRALIA"	21-May-08 04:03 PM	

+="CN85481"	"NSN 1660-00-869-0585 Parts Valve"	="Defence Materiel Organisation"	21-May-08	="Aerospace systems and components and equipment"	21-May-08	12-Mar-09	68072.95	=""	="Milspec Services Pty Ltd"	21-May-08 04:09 PM	

+="CN85482"	" 9150 66-017-1514  Gear Lubricating Oil OEP-220  Hypogear GO-J 80W-90 24DRUMS X205L "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	08-Apr-08	15-Apr-08	19740.34	=""	="BP Australia Ltd"	21-May-08 04:10 PM	

+="CN85483-A1"	"Agency Agreement No 7"	="Productivity Commission"	21-May-08	="Data services"	29-Feb-08	28-Nov-08	40000.00	=""	="ABS"	21-May-08 04:20 PM	

+="CN85484-A1"	" 1. 9150 66-056-7026 Engine Lubricating Oil  OMD 113 Pumping of 16000L bulk into  RAN Vessel  2. 9150 66-127-0274  Petroleum Base Hydraulic Fluid   Grade 68  Hyspin AWS 68 25 Drumsx205L "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	15-Apr-08	16-Apr-08	58249.55	=""	="CASTROL"	21-May-08 04:21 PM	

+="CN85486-A1"	" CommVault storage solution. "	="Productivity Commission"	21-May-08	="Computer Equipment and Accessories"	06-Feb-08	06-May-08	68256.10	=""	="PERFEKT COM PTY LTD"	21-May-08 04:25 PM	

+="CN85487"	"Printing"	="Productivity Commission"	21-May-08	="Printing"	12-Feb-08	12-Feb-08	45000.00	=""	="PIRION PTY LTD"	21-May-08 04:30 PM	

+="CN85488-A1"	" 6850 66-153-6323  Liquid Cooling Corrosion Inhibitor  48x15L Pails "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	17-Apr-08	18-Apr-08	17520.00	=""	="MTU Detroit Diesel"	21-May-08 04:31 PM	

+="CN85491"	" 9150 66-017-1514  Gear Lubricating Oil (OEP-220)  bp Hypogear 80W-90 36 Drums in 205L  "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	24-Apr-08	30-Apr-08	30925.62	=""	="BP Australia Ltd"	21-May-08 04:57 PM	

+="CN85492"	"Light Marker Distress"	="Defence Materiel Organisation"	21-May-08	="Markers"	21-May-08	21-Jun-08	11742.50	=""	="RFD Australia Pty Ltd"	21-May-08 05:05 PM	

+="CN85493"	" 9150 66-093-8337  Diesel Fuel 50x200L Drums       "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	29-Apr-08	05-May-08	22931.70	=""	="BP Australia Ltd"	21-May-08 05:07 PM	

+="CN85494"	" 6850 66-128-9638  Antifreeze/Antiboil 68x20L Drums "	="Defence Materiel Organisation"	21-May-08	="Lubricants and oils and greases and anti corrosives"	22-Apr-08	29-Apr-08	11923.12	=""	="Castrol"	21-May-08 05:12 PM	

+="CN85495"	"Lease at 70 Robert Street Wallsend NSW"	="Department of Human Services"	22-May-08	="Real estate services"	01-Dec-08	30-Nov-15	3953494.89	=""	="The Trustee for Wallsend Offices Unit Trust"	22-May-08 09:40 AM	

+="CN85496"	"AIRCRAFT SPARES::QTY 5::NSN-5985-01-112-8057::ANTENNA"	="Defence Materiel Organisation"	22-May-08	="Military rotary wing aircraft"	22-May-08	08-Aug-08	15546.58	=""	="MILITARY AVIATION SPARES"	22-May-08 09:41 AM	

+="CN85498"	"PARTS AND LABOUR COST TO REPAIR ROBOT"	="Department of Defence"	22-May-08	="Robot components"	03-Mar-08	10-Jun-08	59138.00	=""	="IROBOT CORP"	22-May-08 09:56 AM	

+="CN85499-A1"	"Printing of NAT 3093-5.2008 - Witholding Declaration. Qty: 450,000"	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	30-Jun-08	103268.00	=""	="Canprint Communications"	22-May-08 10:17 AM	

+="CN85501"	"Lease for premises at 38 Townsville Street , Fyshwick ACT"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Jun-06	31-May-08	237402.00	=""	="Vincenzo Callipari"	22-May-08 10:33 AM	

+="CN85503"	"Temporary services - Administration work & registration in the compliance and reporting team."	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	31-Oct-08	36028.25	=""	="VEDIOR ASIA PACIFIC PTY LTD"	22-May-08 10:44 AM	

+="CN85504"	"Web Mgt services: public & password protected website"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	38500.00	=""	="Dept of the Environment, Water, Her"	22-May-08 10:44 AM	

+="CN85506"	"BIO 2008  IA07/00469"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	154000.00	=""	="AUSBIOTECH LTD"	22-May-08 10:57 AM	

+="CN85507"	"Technical Expert Advice  T35450"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	05-May-08	13750.00	=""	="SCOTT MINE CONSULTING SERVICES PTY LTD"	22-May-08 10:57 AM	

+="CN85508"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	14612.40	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:57 AM	

+="CN85509"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	18073.00	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:57 AM	

+="CN85510"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	18920.00	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:58 AM	

+="CN85511"	"cITY sOFTWARE - lt04 bACKUP TAPE DRIVES FOR TIVOLI STORAGE M"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	67837.05	=""	="CITY SOFTWARE"	22-May-08 10:58 AM	

+="CN85512"	"Promotional Advertisements to promote Business.gov.au and it"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	01-May-08	31-Jul-08	55455.75	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85513"	"Government Notices"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	02-May-08	16-May-08	54670.00	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85514"	"iqpc EgOVERNMENT 2008 eXPO PROMOTING bUSINESS.GOV.AU AND van"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	02-May-08	30-Jun-08	11000.00	=""	="INTERNATIONAL QUALITY and PRODUCTIVITY CTR"	22-May-08 10:58 AM	

+="CN85515"	"Promotional Advertisements to promote Business.gov.au and it"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	02-May-08	31-Jul-08	48312.51	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85517"	"Search for Ent Connect Burnie State Manager Innov Div PO Fol"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	24990.00	=""	="EDWARD W KELLEY and PARTNERS P/L"	22-May-08 10:58 AM	

+="CN85519"	"Fraud Risk Assessment Implementation"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	50000.00	=""	="WALTER and TURNBULL"	22-May-08 10:59 AM	

+="CN85520"	"Tesa comparator system with large work table LO10/05/08"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	06-May-08	10-Jun-08	17165.50	=""	="ROSEBANK ENGINEERING PTY LTD"	22-May-08 10:59 AM	

+="CN85521"	"Detector signal meas. syst to automate special irradiance co"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	06-May-08	12-Jun-08	10148.60	=""	="SCIENTIFIC DEVICES AUSTRALIA PTY LTD"	22-May-08 10:59 AM	

+="CN85523"	"rEVIEW OF BUSINESS.GOV.AU iNFORMATION aRCHITECTURE c08/03078"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	06-May-08	30-Jun-08	39864.00	=""	="PTG GLOBAL"	22-May-08 10:59 AM	

+="CN85524"	"Argent Techno - Racking Pty Ltd B Class Security rack C07/10"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	55621.28	=""	="ARGENT TECHNO-RACKING PTY LTD"	22-May-08 11:00 AM	

+="CN85525"	"Venue hire services"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	07-Apr-08	06-May-08	44486.00	=""	="MERCURE HOTEL MELBOURNE"	22-May-08 11:00 AM	

+="CN85526"	"PWC_Internal Audit_Aurion inc ESS C07/04013"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	37500.00	=""	="PRICE WATERHOUSE COOPERS (NSW)"	22-May-08 11:00 AM	

+="CN85527"	"Construction Management Service"	="Department of Innovation Industry Science and Research"	22-May-08	="Management advisory services"	07-Feb-08	30-Jun-08	450494.00	=""	="HANSEN YUNCKEN PTY LTD"	22-May-08 11:00 AM	

+="CN85528"	"Student Research Scheme  Innov Div PO Folder 2008"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	12100.00	=""	="CSIRO"	22-May-08 11:00 AM	

+="CN85529"	"B-GLUCURONIDASE"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	07-May-08	30-May-08	13783.00	=""	="ROCHE DIAGNOSTICS AUST PTY LTD"	22-May-08 11:00 AM	

+="CN85530"	"Water, Sewerage and Electricity (Pymble) JLL Payments (GST E"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	31-May-08	12456.60	=""	="JONES LANG LASALLE (ACT) PTY LTD"	22-May-08 11:00 AM	

+="CN85531"	"dEVELOP and PRODUCE CURRICULUM FOR nANO sCIENCE tEACHERS finre"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	31-Oct-08	74020.00	=""	="BRIDGE8 PTY LTD"	22-May-08 11:00 AM	

+="CN85532"	"Financial Management Training - Science and Research and Que"	="Department of Innovation Industry Science and Research"	22-May-08	="Education and Training Services"	08-May-08	30-Jun-08	10000.00	=""	="MAGICAL ADVENTURES PTY LTD"	22-May-08 11:01 AM	

+="CN85533"	"QA Program"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	08-May-08	30-Jun-08	16000.00	=""	="OPTIMUM BUSINESS CONSULTING PTY LTD"	22-May-08 11:01 AM	

+="CN85534"	"NANOTECH 2008 - VENUE HIRE  IA02/0056"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	08-May-08	31-May-08	13500.00	=""	="NANO SCIENCE and TECHNOLOGY INSTITUTE"	22-May-08 11:01 AM	

+="CN85535"	"Zallcom - Symantac Scan Engine Licences  C05/06800"	="Department of Innovation Industry Science and Research"	22-May-08	="Software"	09-May-08	30-Jun-08	11107.80	=""	="ZALLCOM PTY LTD"	22-May-08 11:01 AM	

+="CN85536"	"Helium 48 Pack  R.K"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	09-May-08	30-Jun-08	45623.60	=""	="SUPAGAS"	22-May-08 11:01 AM	

+="CN85537-A1"	"Mass Spectrometer System"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	09-May-08	30-Jun-08	631400.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	22-May-08 11:01 AM	

+="CN85516"	" Lease at 228 Byrnes St Mareeba QLD "	="Department of Human Services"	22-May-08	="Real estate services"	01-May-09	30-Apr-16	1724800.00	=""	="Sibi Girgenti Holding Pty Ltd"	22-May-08 11:02 AM	

+="CN85538"	"Executive Search Service NSW and QLD State Managers Innov Div"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	12-Jun-07	30-Jun-08	72800.00	=""	="EDWARD W KELLEY and PARTNERS P/L"	22-May-08 11:02 AM	

+="CN85539"	"ACI 148 Bosch"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	12-May-08	30-Jun-08	14012.50	=""	="AUST GOVT SOLICITOR (VIC)"	22-May-08 11:02 AM	

+="CN85540"	"Feb 08 flood - Labour and consumables required for assessment"	="Department of Innovation Industry Science and Research"	22-May-08	="Industrial Cleaning Services"	12-May-08	31-May-08	23643.09	=""	="RESTORX PTY LTD"	22-May-08 11:02 AM	

+="CN85541"	"NMR Spectroscopy Services  N/A"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	13-May-08	30-Jun-08	17116.00	=""	="THE UNIVERSITY OF NEW SOUTH WALES"	22-May-08 11:02 AM	

+="CN85542"	"Purchase of 4 Switches and asscoiated Equipment from Netwrok"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	24959.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:02 AM	

+="CN85543"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	14-Apr-08	31-Oct-08	53222.40	=""	="GREYTHORN PTY LTD"	22-May-08 11:02 AM	

+="CN85544-A1"	"Postgraduate Program Masters of Public Policy"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	14-Jun-07	31-Dec-08	589210.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	22-May-08 11:02 AM	

+="CN85545"	"Gas flow std thermometer, Fluke LO13/5/08"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	14-May-08	20-Jun-08	12301.30	=""	="FLUKE AUSTRALIA"	22-May-08 11:03 AM	

+="CN85546"	"Kit Folders"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	14-May-08	25-May-08	10659.00	=""	="UNION OFFSET CO P/L"	22-May-08 11:03 AM	

+="CN85547"	"Stationery orderand supplies"	="Department of Innovation Industry Science and Research"	22-May-08	="Office Equipment and Accessories and Supplies"	14-May-08	25-May-08	35771.34	="SON26571"	="CORPORATE EXPRESS AUST LTD"	22-May-08 11:03 AM	

+="CN85548"	"Review of Provision for doubtful debts Standard Operating Pr"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	14-May-08	30-Jun-08	10000.00	=""	="DUESBURYS"	22-May-08 11:03 AM	

+="CN85549"	"Review of Administered Accrual Standard Operating Procedures"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	14-May-08	30-Jun-08	11000.00	=""	="PRICE WATERHOUSE COOPERS (ACT)"	22-May-08 11:03 AM	

+="CN85550"	"Repair  R.K"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	14-May-08	31-Dec-08	10604.00	=""	="ROHDE and SCHWARZ (AUSTRALIA) PTY LTD"	22-May-08 11:03 AM	

+="CN85552"	"Advertisements to Promote business.gov.au C07/10871"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	15-Apr-08	30-Jun-08	52800.00	=""	="HMA BLAZE PTY LTD"	22-May-08 11:03 AM	

+="CN85553"	"2006 Census Questionnare for OECD - Doctorates Innov Div PO"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	10570.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	22-May-08 11:04 AM	

+="CN85554"	"Purchase of additional cable  C06/12005"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	15361.50	=""	="INTRAVISION PTY LTD"	22-May-08 11:04 AM	

+="CN85555"	"Supply and Installation of Fibrelink Cables. C06/12005"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	21483.00	=""	="INTRAVISION PTY LTD"	22-May-08 11:04 AM	

+="CN85556"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	16-May-08	31-Aug-08	48640.00	=""	="ONLINE 89 PTY LTD"	22-May-08 11:05 AM	

+="CN85557"	"gOOGLE uPGRADE"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	16-May-08	31-Jul-08	33550.00	=""	="HMA BLAZE PTY LTD"	22-May-08 11:05 AM	

+="CN85558"	"PRODATA 200 X LTO3 Tape Cartridges for Database Backups C05/"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	17-Apr-08	02-May-08	10120.00	=""	="PRODATA PTY LTD"	22-May-08 11:05 AM	

+="CN85551"	"Lease for premises at 5 Tennant Street, Fyshwick"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Sep-07	31-Aug-09	671489.50	=""	="PSB Projects"	22-May-08 11:05 AM	

+="CN85559"	"Fujitsu APC InfraStruXure Central 3.0 Standard Server C05/06"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	17-Apr-08	30-Apr-08	13559.95	=""	="FUJITSU AUSTRALIA LIMITED"	22-May-08 11:05 AM	

+="CN85560"	"Legal Services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	17-Apr-08	30-Jun-08	13214.85	=""	="AUST GOVT SOLICITOR (NSW)"	22-May-08 11:05 AM	

+="CN85561"	"Legal Services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	17-Apr-08	30-Jun-08	35566.10	=""	="AUST GOVT SOLICITOR (NSW)"	22-May-08 11:05 AM	

+="CN85562"	"BioMark Digital Array"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	18-Apr-08	30-Jun-08	12000.00	=""	="FLUIDIGM CORPORATION"	22-May-08 11:05 AM	

+="CN85563"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	18-Apr-08	30-Jun-08	70000.00	=""	="RED WAHOO PTY LTD"	22-May-08 11:05 AM	

+="CN85564"	"Provide assistance with Web Recruitment MOG changes March- A"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	19-Feb-08	12-Jun-08	26400.00	=""	="AURION CORPORATION P/L"	22-May-08 11:06 AM	

+="CN85565"	"Design and Implementation Automation, eRecruit and Award Modul"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	19-Feb-08	31-Dec-08	142300.00	=""	="AURION CORPORATION P/L"	22-May-08 11:06 AM	

+="CN85566"	"Legal Fee Fitout Work Port Melb"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	20-Mar-08	30-Jun-08	11259.60	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85567"	"VCP 1"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	20-May-08	30-Jun-08	14087.70	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85568"	"Legal Issues Guide for Small Business"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	16500.00	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85569"	"BIO 2008 Media Room"	="Department of Innovation Industry Science and Research"	22-May-08	="Business administration services"	20-May-08	31-May-08	10000.00	=""	="DATELINE MEDIA USA"	22-May-08 11:06 AM	

+="CN85570"	"Venue Hire - Skyline Exhibits"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	20-May-08	31-May-08	21000.00	=""	="SKYLINE DISPLAY BAY AREA INC"	22-May-08 11:06 AM	

+="CN85571"	"Waters HPLC Pump  080452"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	21-Apr-08	16-May-08	21270.00	=""	="WATERS AUSTRALIA PTY LTD"	22-May-08 11:06 AM	

+="CN85572"	"VCP1 - IIF1"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	21-Apr-08	30-Jun-08	41368.80	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:07 AM	

+="CN85573"	"Folate Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10467.60	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85574"	"Folate and Cobalamin  Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10507.20	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85575"	"Folate and Cobalamin  Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10718.40	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85576"	"Automatic Tube Sampler"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	21-May-08	11-Jun-08	16800.00	=""	="BERTHOLD TECHNOLOGIES"	22-May-08 11:07 AM	

+="CN85577"	"Power Supply (UPS) units for Enterprise Connect Centres C06/"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	14378.50	=""	="FUJITSU AUSTRALIA LIMITED"	22-May-08 11:07 AM	

+="CN85578"	"External Training Course"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	21-May-08	30-Jun-08	19800.00	=""	="DIMENSIONS DATA LEARNING SOLUTIONS"	22-May-08 11:07 AM	

+="CN85579"	"Netwrok Equipment"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	20423.23	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 11:07 AM	

+="CN85580"	"Workstations and Desks"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-May-08	30-Jun-08	25034.90	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	22-May-08 11:08 AM	

+="CN85581"	"Network Catalyst 3750 Switches"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	59230.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:08 AM	

+="CN85582"	"NETWORK EQUIPMENT"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	61138.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:08 AM	

+="CN85583"	"EMPORE DISK CARTRIDGES"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-May-08	30-Jun-09	25766.40	=""	="VARIAN AUSTRALIA PTY LTD"	22-May-08 11:08 AM	

+="CN85584"	"shimadzu UFLC"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	06-Jun-08	60700.20	=""	="SHIMADZU OCEANIA PTY LTD"	22-May-08 11:08 AM	

+="CN85585"	"Waters GPC Cleanup System"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	17-May-08	65945.00	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:08 AM	

+="CN85586"	"Dynamic Calibrator, Laser Head controller card Lo 220408"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	21-May-08	26067.80	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:08 AM	

+="CN85587"	"Thermo LTQ OrbiTrap"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	24-May-08	10945.00	=""	="PROTEOMASS AUSTRALIA PTY LTD"	22-May-08 11:09 AM	

+="CN85588"	"Impulse voltage generation Measurement system"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Feb-08	10-Jun-08	632900.00	=""	="BHT MECHANICAL ELECTRICAL INST CO LTD"	22-May-08 11:09 AM	

+="CN85589"	"Spector 360 Licence Renewal"	="Department of Innovation Industry Science and Research"	22-May-08	="Software"	23-Apr-08	30-May-08	15832.99	=""	="CIDER HOUSE ICT PTY LTD"	22-May-08 11:09 AM	

+="CN85590"	"Agilent GCMS"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	25-Apr-08	27-Jun-08	274332.93	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:09 AM	

+="CN85591-A2"	"Application Quality Assurance and System Testing Tools."	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	27-Jun-07	27-Jun-10	627821.04	=""	="BORLAND AUSTRALIA PTY LTD"	22-May-08 11:09 AM	

+="CN85593"	"Secuse Wireless Enviromental Monitoring"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	28-Apr-08	09-May-08	32855.90	="NA"	="NVSI"	22-May-08 11:09 AM	

+="CN85594"	"Fraud Awareness Training"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	25000.00	=""	="WALTER and TURNBULL"	22-May-08 11:09 AM	

+="CN85595"	"File Covers (7 types) and document clips  08/00116"	="Department of Innovation Industry Science and Research"	22-May-08	="Office supplies"	29-Apr-08	30-Jun-08	32101.00	=""	="MCDONALD PRINTING GROUP PTY LTD"	22-May-08 11:10 AM	

+="CN85596-A1"	" Gas Chromatograph Mass Spectrometers "	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	30-Apr-08	27-Jun-08	654973.00	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:10 AM	

+="CN85597"	"Legal services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	30-Apr-08	30-Jun-08	13818.20	=""	="DLA PHILLIPS FOX"	22-May-08 11:10 AM	

+="CN85598"	"Eaton Powerware Service Agreement for Data Centre UPS C06/04"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	30-Apr-08	30-Jun-08	14575.00	=""	="EATON POWER QUALITY PTY LTD"	22-May-08 11:10 AM	

+="CN85599"	"Getronics Project - Update of Server SOE"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	30-Apr-08	30-Jun-09	18633.38	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 11:10 AM	

+="CN85600"	"MANAGED FUNDS IN AUSTRALIA BOOKLET  IA02/00056"	="Department of Innovation Industry Science and Research"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	31-May-08	12221.00	=""	="LINDSAY YATES and PARTNERS"	22-May-08 11:10 AM	

+="CN85601"	"Placement fee - Temporary employee"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	30-Apr-08	31-May-08	16136.62	=""	="CANTLIE RECRUITMENT SERVICES PTY LTD"	22-May-08 11:10 AM	

+="CN85602"	"GDP 2008-2009 Training Component  C08/02938"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	31-Dec-06	31-Dec-09	316162.00	=""	="INTERACTION CONSULTING GROUP"	22-May-08 11:10 AM	

+="CN85603"	"Lease for premises at Fairbairn Ave, Piallago"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Dec-06	30-Nov-08	14659.20	=""	="Canberra International Airport"	22-May-08 11:13 AM	

+="CN85605"	" Analyst Notebook license x 40  iBase License x 20  30 days Consultancy. "	="Australian Taxation Office"	22-May-08	="License management software"	23-May-08	22-May-09	600215.00	=""	="Visual Analysis"	22-May-08 11:19 AM	

+="CN85606"	"Lease for premises at Corner Princess Ave & Sharp Street, Cooma NSW"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	03-Jul-00	02-Jul-05	475005.50	=""	="Andrew James Hain"	22-May-08 11:29 AM	

+="CN85608"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-May-08	40590.00	="GAR PANEL"	="UNIVERSITY OF SOUTH AUSTRALIA"	22-May-08 11:34 AM	

+="CN85609"	"Provision of Java Contractors to develop  components of the NHMRC's RIMES Project"	="National Health and Medical Research Council"	22-May-08	="Healthcare Services"	31-Aug-07	30-Jun-08	16896.00	="RFT 334/0607"	="FACE 2 FACE RECRUITMENT  PTY LTD"	22-May-08 11:34 AM	

+="CN85612"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-May-08	40590.00	="GAR PANEL"	="UNIVERSITY OF SOUTH AUSTRALIA"	22-May-08 11:34 AM	

+="CN85613"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Sep-08	10000.00	="GAR PANEL"	="HEALTH TECHNOLOGY ANALYSTS PTY LTD"	22-May-08 11:35 AM	

+="CN85614"	"Tempary Contractors for Research Ideas grant round"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	16-May-08	36000.00	=""	="SOS Recruitment"	22-May-08 11:35 AM	

+="CN85610"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-Dec-03	31-Dec-07	138465.36	=""	="Cisco Systems Capital (Australia) Pty Ltd"	22-May-08 11:35 AM	

+="CN85615-A1"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-Dec-03	31-Dec-07	918329.41	=""	="Cisco Systems Capital (Australia) Pty Ltd"	22-May-08 11:46 AM	

+="CN85617-A2"	"Provision of Security Vetting Services"	="Department of Immigration and Citizenship"	22-May-08	="Management advisory services"	08-May-08	19-Jun-08	15562.00	=""	="Persec Solutions Pty Ltd"	22-May-08 11:51 AM	

+="CN85618-A1"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-May-04	30-Apr-08	612393.54	=""	="Cisco Systems Capital (Australia) Pty Limited"	22-May-08 12:02 PM	

+="CN85621"	"Printing of NAT 1004-05.2008 JS10913."	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	16-Jun-08	23518.00	=""	="Canprint Communications"	22-May-08 12:08 PM	

+="CN85622"	"Provide strategic advice to Compliance Unit on Risk Manageme"	="Department of Resources Energy and Tourism"	22-May-08	="Management advisory services"	02-Aug-07	31-Aug-07	120084.00	=""	="THE ACCORD GROUP"	22-May-08 12:09 PM	

+="CN85623-A1"	" Facilitation services "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Aug-07	74000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	22-May-08 12:09 PM	

+="CN85624-A1"	" Audio Visual Hire for Energy Efficiency Opportunities Workshop "	="Department of Resources Energy and Tourism"	22-May-08	="Audio and visual presentation and composing equipment"	08-Aug-07	07-Sep-07	36128.00	=""	="MICROHIRE"	22-May-08 12:09 PM	

+="CN85625-A1"	" Facilitation support for Energy Efficiency Opportunities Workshop in Sydney and Perth "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Jun-08	13447.50	=""	="MACMAHON TECHNOLOGIES"	22-May-08 12:09 PM	

+="CN85627"	"engage contractor"	="Department of Resources Energy and Tourism"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	08-Aug-07	30-Jun-08	25923.15	=""	="ZOO COMMUNICATIONS PTY LTD"	22-May-08 12:09 PM	

+="CN85628-A1"	" Recruitment of Executive Assistant "	="Department of Resources Energy and Tourism"	22-May-08	="Human resources services"	08-Aug-07	30-Jun-08	27300.00	=""	="HAYS ACCOUNTANCY PERSONNEL"	22-May-08 12:10 PM	

+="CN85629-A1"	"IT Equipment for Cement Task Force Conference"	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	08-Aug-07	30-Nov-07	15353.18	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 12:10 PM	

+="CN85630-A1"	" Membership for IEA Greenhouse Program Administration "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Nov-07	33000.00	=""	="IEA GREENHOUSE GAS R and D PROGRAMME"	22-May-08 12:10 PM	

+="CN85631-A1"	" Energy Regulatory and Market Development Forum "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	31-Aug-07	20090.60	=""	="JOHNSTON and ASSOCIATES INTERNATIONAL P/L"	22-May-08 12:10 PM	

+="CN85632-A1"	"Relocation of National Measurement Institute (NMI) Flow Measurement Facility"	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	31-Aug-07	33754.00	=""	="TRADE AND MANAGEMENT CONSULTANTS AUST"	22-May-08 12:10 PM	

+="CN85633"	"Printing of Encouraging Enterprise"	="Department of Resources Energy and Tourism"	22-May-08	="Management advisory services"	08-Aug-07	31-Aug-07	149710.00	="1010"	="MARSH PTY LTD"	22-May-08 12:11 PM	

+="CN85634-A1"	" Canon DR3080C Scanner and warranty "	="Department of Resources Energy and Tourism"	22-May-08	="Office Equipment and Accessories and Supplies"	08-Aug-07	31-Aug-08	12559.80	=""	="CANON AUSTRALIA PTY LTD"	22-May-08 12:11 PM	

+="CN85635-A1"	" IT Equipment - 10 x Laptops "	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	09-Aug-07	30-Nov-07	22932.80	=""	="DELL AUSTRALIA"	22-May-08 12:11 PM	

+="CN85636-A1"	" 20 x Computers for the department "	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	09-Aug-07	31-Aug-07	29518.80	=""	="DELL AUSTRALIA"	22-May-08 12:11 PM	

+="CN85637-A1"	"Professional Fees and Disbursements Supply of Australian Destinationo Status (ADS) Scheme"	="Department of Resources Energy and Tourism"	22-May-08	="Advertising"	10-Aug-07	23-Aug-07	22830.76	=""	="HMA BLAZE PTY LTD"	22-May-08 12:11 PM	

+="CN85639-A1"	" Review of the Due Diligence report for the department "	="Department of Resources Energy and Tourism"	22-May-08	="Accounting and auditing"	10-Aug-07	31-Aug-07	15550.00	=""	="KPMG (ACT)"	22-May-08 12:11 PM	

+="CN85640-A2"	"Provision of Information Technology Analysis Services (Previously Published as GAPS ID: 1614350)"	="Department of Immigration and Citizenship"	22-May-08	="Temporary information technology systems or database administrators"	07-Aug-06	16-May-08	363660.00	=""	="Ambit Recruitment Pty Ltd"	22-May-08 12:23 PM	

+="CN85641"	"Printing of NAT1005-05.2008 Weekly tax table incorporating Medicare levy with and without leave loading"	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	20-Jun-08	201700.85	=""	="Blue Star Print Group t/a National Capital Printing"	22-May-08 12:55 PM	

+="CN85642"	"Printing of NAT 1006.05-2008 Fortnightly tax table incorporating Medicare levy with and without leave loading."	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	20-Jun-08	191609.00	=""	="Canprint Communications"	22-May-08 01:01 PM	

+="CN85459"	" Property lease in Geraldton, WA "	="Centrelink"	22-May-08	="Real estate services"	15-May-08	16-May-09	24080.00	=""	="Ray White Geraldton"	22-May-08 01:47 PM	

+="CN85645-A1"	"Conduct of a review and provision of a report on the AFPs national security operations"	="Australian Federal Police"	22-May-08	="Management advisory services"	22-Nov-07	26-Feb-08	45100.00	=""	="Martin Brady"	22-May-08 01:58 PM	

+="CN85647"	"Provision of Artworks"	="Department of the Environment Water Heritage and the Arts"	22-May-08	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	19-May-08	03-Aug-08	10000.00	="0708-1509"	="Nicky Ginsberg Art Gallery"	22-May-08 02:11 PM	

+="CN85648"	"Preperation and presentation of a report on internal & digital technologies"	="Australian Federal Police"	22-May-08	="Management advisory services"	07-May-07	18-May-07	19800.00	=""	="Martin Brady"	22-May-08 02:24 PM	

+="CN85649"	"Preperation of a report on internet & digital technologies"	="Australian Federal Police"	22-May-08	="Management advisory services"	07-May-07	18-May-07	35000.00	=""	="Blunn Anthony Stuart"	22-May-08 02:28 PM	

+="CN85654"	"Storage,Archival and Retrieval Services"	="Australian Sports Anti-Doping Authority (ASADA)"	22-May-08	="Document storage services"	10-Dec-07	09-Dec-12	40000.00	=""	="Advance document Systems"	22-May-08 02:47 PM	

+="CN85660"	"Scanners"	="Australian Electoral Commission"	22-May-08	="Computer accessories"	23-Apr-08	25-Apr-08	11913.00	=""	="PHD Sites Pty Ltd"	22-May-08 03:10 PM	

+="CN85661"	"Professional services - Evaluation of Breast Screen Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	10-Nov-08	241120.00	="RFT 060/0708"	="ACCESS ECONOMICS"	22-May-08 03:20 PM	

+="CN85662"	"Professional services - Change Management Services - Pharmbiz"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	94080.00	="122/0607"	="Butlin & Lloyd Pty Ltd"	22-May-08 03:20 PM	

+="CN85663"	"Provision of services - Various Data Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	43033.00	=""	="POST MERIDIAN"	22-May-08 03:20 PM	

+="CN85664"	"Professional services - Review Consultant Services Pharmbiz"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	19-May-08	42000.00	="122/0607"	="KPMG"	22-May-08 03:20 PM	

+="CN85665"	"Paint and repair property in Alice Springs Office"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	01-May-08	20-May-08	17100.00	=""	="Murray Maintenance Services"	22-May-08 03:20 PM	

+="CN85666"	"Provision of printing services -  Audit of Health Workforce"	="Department of Health and Ageing"	22-May-08	="Published Products"	23-Apr-08	16-May-08	12089.00	=""	="Union Offset Co. Pty. Limited"	22-May-08 03:20 PM	

+="CN85667"	"Relocation Telstra services"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	17-Jul-07	16-May-08	11983.13	=""	="TELSTRA"	22-May-08 03:20 PM	

+="CN85668"	"Advertising services - Rural Health program"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-May-08	19568.24	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85669"	"Provision of temp staff - NT Ear Health and Dental Implementation Team (NTEDIT)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	31000.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:21 PM	

+="CN85670"	"Provison of printing services - Residential Aged Care Fees"	="Department of Health and Ageing"	22-May-08	="Published Products"	26-Mar-08	16-May-08	19011.30	=""	="PARAGON PRINTERS"	22-May-08 03:21 PM	

+="CN85671"	"Development and ongoing support of the Aged Care Funding instrument training environment"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	16-May-08	264000.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:21 PM	

+="CN85672"	"Advertising for OATSIH Quality Improvement and Accreditation Facilitaters RFT"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	15-May-08	15203.76	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85673"	"Advertising for National Quality Network Manager RFT"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	15-May-08	14190.18	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85674"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:21 PM	

+="CN85675"	"CND 51st Session - Reimbursement of expenses"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	07-Mar-08	15-May-08	14640.76	=""	="NDARC EDUC TRUST"	22-May-08 03:21 PM	

+="CN85676"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	40000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:22 PM	

+="CN85678"	"Professional services- 'The Way Forward' (NSW STO)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	08-Jun-08	62021.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:22 PM	

+="CN85679"	"The University of Wollongong - Physical Activity Recommendations for Children under 5 years"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	27-Jun-08	26295.00	=""	="THE UNIVERSITY OF WOLLONGONG"	22-May-08 03:22 PM	

+="CN85680"	"Ongoing management of the national organ donation collaborative"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	08-Feb-08	30-Jun-08	536474.00	=""	="DEPT OF HEALTH & AGEING - CPM CENTR"	22-May-08 03:22 PM	

+="CN85681"	"Professional services - Financial Analysis & Economic Modelling OATSIH"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	30-Jun-08	135068.00	=""	="MetaCorp Pty Ltd"	22-May-08 03:22 PM	

+="CN85682"	"Professional services- Careers Unlimited"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	23-May-08	10000.00	=""	="CAREERS UNLIMITED PTY LTD"	22-May-08 03:22 PM	

+="CN85683"	"Provision of printing services - 3 Continence Publications"	="Department of Health and Ageing"	22-May-08	="Published Products"	16-May-08	13-Jun-08	61527.40	=""	="PARAGON PRINTERS"	22-May-08 03:22 PM	

+="CN85684"	"Economics Sub Committee Meeting June 2008"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	11-Jun-08	25000.00	=""	="HILTON MELBOURNE AIRPORT HOTEL"	22-May-08 03:23 PM	

+="CN85685"	"Temporary services - Assessment for recruitment services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	13750.00	=""	="PAPER SHUFFLE PTY LTD"	22-May-08 03:23 PM	

+="CN85686"	"Professional services - Review of National Food Regulatory Systems"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	20-May-08	12000.00	=""	="BETHWAITE, FRANCIS M"	22-May-08 03:23 PM	

+="CN85687"	"Temporary services - research and data alignment for Australian Govt Community Care Programs"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	20-May-08	15750.00	=""	="RESOLUTION CONSULTING SERVICES PTY"	22-May-08 03:23 PM	

+="CN85688"	"Provision of printing services - 2008-09 Portfolio Budget Statements"	="Department of Health and Ageing"	22-May-08	="Published Products"	05-May-08	30-Jun-08	15488.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	22-May-08 03:23 PM	

+="CN85689"	"Pharmaceutical Benefits Advisory Committee Mtg"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	07-Nov-08	12000.00	=""	="STAMFORD GRAND ADELAIDE"	22-May-08 03:23 PM	

+="CN85690"	"Construction services for reconfiguration of office space"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	24-Oct-07	20-May-08	19664.80	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	22-May-08 03:23 PM	

+="CN85691"	"Professional services- Population health market research"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	32225.18	=""	="CARROLL COMMUNICATIONS PTY LTD"	22-May-08 03:23 PM	

+="CN85692"	"Professional services - Feasibility study for predictions of NATSIHS estimates at a regional lvl"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	30-Jun-08	41550.00	=""	="THE ADELAIDE RESEARCH & INNOVATION"	22-May-08 03:24 PM	

+="CN85693"	"Professional services - Clinical Handover Initiatives in high risk scenario"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	28-Feb-09	378675.00	="197/0708"	="GP PARTNERS LIMITED"	22-May-08 03:24 PM	

+="CN85695"	"Professional services- Literature review of clinical handover"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	20-May-08	31350.00	="RFQ 203/0708"	="UNIVERSITY OF TASMANIA"	22-May-08 03:24 PM	

+="CN85696"	"Expert services - development of the Commission's Consumer Engagement Strategy"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	31-Aug-08	22000.00	=""	="Donella Piper Consulting Pty Ltd"	22-May-08 03:24 PM	

+="CN85697"	"Completion of Enhanced Data Reporting System"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	30-May-08	54010.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	22-May-08 03:24 PM	

+="CN85698"	"Pharmaceutical Benefits Advisory Committee meeting"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Mar-08	11-Jul-08	20000.00	=""	="HILTON MELBOURNE AIRPORT HOTEL"	22-May-08 03:24 PM	

+="CN85699"	"Services for the Aged Care Assessment Program - National Data Repository"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Nov-08	109858.00	=""	="LA TROBE UNIVERSITY"	22-May-08 03:24 PM	

+="CN85700"	"Provision of advice on streamlining financial reporting arrangements for Div of General Practise"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	12-Feb-08	09-May-08	13283.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:25 PM	

+="CN85701-A1"	"Management review of Cancer Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	11-May-08	81000.00	=""	="ERNST & YOUNG ACT"	22-May-08 03:25 PM	

+="CN85702"	"Investigation of issues from the Program Management Information Initiative review"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	08-May-08	82353.50	=""	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:25 PM	

+="CN85703"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:25 PM	

+="CN85704"	"Quality Assurance to the toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Aug-08	25740.00	="122/0607"	="VALINTUS PTY LTD"	22-May-08 03:25 PM	

+="CN85705"	"Specialist Advice"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	11027.94	="042/0506"	="MINTER ELLISON"	22-May-08 03:25 PM	

+="CN85706"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	54670.00	="042/0506"	="MINTER ELLISON"	22-May-08 03:25 PM	

+="CN85707"	"Engagement of short term locums at the Mersey Community Hospital"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	210524.60	=""	="JTA INTERNATIONAL PTY LTD"	22-May-08 03:26 PM	

+="CN85708"	"Provision of Electricity Central Office"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	01-Jul-07	30-Jun-08	15600.00	=""	="AURORA ENERGY PTY LTD"	22-May-08 03:26 PM	

+="CN85709"	"Office relocations"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	13915.76	="2290405"	="THOMAS BUILDING CONSTRUCTION"	22-May-08 03:26 PM	

+="CN85710"	"Hardcopy & online updates of Law Reports"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13133.70	=""	="REED INTERNATIONAL BOOKS AUSTRALIA"	22-May-08 03:26 PM	

+="CN85711"	"Fitout Works 11-29 Waymouth Street Adelaide South Australia"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	06-Dec-06	09-May-08	65698.20	=""	="BAULDERSTONE HORNIBROOK PTY LTD"	22-May-08 03:26 PM	

+="CN85712"	"Design and develop publications to reflect the new Australian alcohol guidelines"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	25-Jan-08	14-May-08	56305.70	="181/0708"	="WODONGA INSTITUTE OF TAFE"	22-May-08 03:26 PM	

+="CN85713"	"Promotional booth at the General Practitioner Conference"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	25-May-08	10430.29	=""	="REED BUSINESS INFORMATION PTY LTD"	22-May-08 03:26 PM	

+="CN85714"	"Advertisement for recruitment - Australian Commission on Safety & Quality in Health Care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	14-May-08	22559.12	=""	="HMA BLAZE PTY LTD"	22-May-08 03:26 PM	

+="CN85715"	"System changes to Aged-care payments system"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Jul-07	14-May-08	1630200.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:27 PM	

+="CN85716"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:27 PM	

+="CN85717"	"Aged care payment system - ongoing support for e-business"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	921800.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:27 PM	

+="CN85718"	"Project to improve policy development across the Pharmaceutical Benefits Division"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	23-Jun-08	50000.00	=""	="WEBSTER, DAVID WILLIAM LYLE"	22-May-08 03:27 PM	

+="CN85719-A1"	"Statistical services in aged care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	13-May-08	37511.00	=""	="AUST BUREAU OF STATS VIC"	22-May-08 03:27 PM	

+="CN85720"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:27 PM	

+="CN85721-A1"	"Independant financial services - Zero Real Interest Loans initiatives"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	06-May-08	30-Jun-08	410300.00	="086/0607"	="KPMG"	22-May-08 03:27 PM	

+="CN85722"	"Venue for the Commonwealth Sport Ministers meeting in Beijing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	25-Aug-08	10000.00	=""	="AUSTRADE"	22-May-08 03:28 PM	

+="CN85723"	"Threat risk assessment for the Fourth Community Pharmacy Agreement IT system"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	23-May-08	33000.00	=""	="Stratsec.Net Pty Ltd"	22-May-08 03:28 PM	

+="CN85724"	"Revise and update to the Alcohol Treatment Guidelines"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	67589.00	="186/0708"	="SYDNEY SOUTH WEST AREA HEALTH"	22-May-08 03:28 PM	

+="CN85726"	"Provision of services - printing - In Confidence files"	="Department of Health and Ageing"	22-May-08	="Published Products"	31-Oct-07	30-Apr-08	41475.38	=""	="RAINBOW PRINTING PTY LTD"	22-May-08 03:33 PM	

+="CN85727"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	100000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:34 PM	

+="CN85728"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:34 PM	

+="CN85729"	"Services for electricity  level 6 1 Oxford street Sydney"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-09	28050.00	=""	="ENERGY AUSTRALIA"	22-May-08 03:34 PM	

+="CN85730"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	257972.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85731"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	386958.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85732"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	29-May-08	386958.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85733"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	515944.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:35 PM	

+="CN85734"	"Accomodation for National Link-up Forum"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	05-May-08	09-May-08	17568.00	=""	="THE HOTEL NETWORK GARRS"	22-May-08 03:35 PM	

+="CN85735"	"Provision of services - published promotional products"	="Department of Health and Ageing"	22-May-08	="Published Products"	13-Feb-08	30-May-08	38500.00	=""	="CORPORATE EXPRESS AUSTRALIA LIMITED"	22-May-08 03:35 PM	

+="CN85736"	"Provision of services - Contract Accounting"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	27-Jun-08	25000.00	=""	="Premium Personnel Pty Ltd"	22-May-08 03:35 PM	

+="CN85737"	"Provision and supply of promotional items"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	09-Jan-08	01-May-08	95465.70	=""	="Intandem Evan Evans"	22-May-08 03:35 PM	

+="CN85738"	"Provision of services - SAS Data Integration"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	37664.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:35 PM	

+="CN85739"	"Provision of services - Testing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	25700.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:35 PM	

+="CN85740"	"Professional services - Financial Evaluation"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	20-Mar-08	30-Apr-08	21039.00	="086/0607"	="WALTERTURNBULL PTY LTD"	22-May-08 03:35 PM	

+="CN85741"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	57000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:36 PM	

+="CN85742"	"Facilitator for a National Communications Strategy and charter workshop"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	28-Apr-08	14200.00	="122/0607"	="CARLA CRANNY AND ASSOCIATES PTY."	22-May-08 03:36 PM	

+="CN85743"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	07-May-08	15806.25	=""	="HMA BLAZE PTY LTD"	22-May-08 03:36 PM	

+="CN85744"	"Printing of "Volatile substance misuse" publication"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	30-Apr-08	30-Jun-08	23622.50	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:36 PM	

+="CN85745"	"Professional services - Probity Advisor"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	38625.00	=""	="Deloitte Touche Tohmatsu"	22-May-08 03:36 PM	

+="CN85746"	"Web Portal Performance Assessment Model"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	10-Apr-08	30-Jun-08	22770.00	=""	="National ICT Australia Limited"	22-May-08 03:36 PM	

+="CN85747"	"Provision of services - publications"	="Department of Health and Ageing"	22-May-08	="Published Products"	16-Apr-08	31-May-08	483535.80	=""	="ST. VINCENT'S HOSPITAL SYDNEY LIMIT"	22-May-08 03:36 PM	

+="CN85748"	"Provision of services - facilitation services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Apr-08	30-Apr-09	353000.00	="122/0607"	="SMS Consulting Group Ltd"	22-May-08 03:37 PM	

+="CN85749"	"Professional services - Testing Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	26455.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:37 PM	

+="CN85750"	"Professional services - SAS Data"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	41580.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	22-May-08 03:37 PM	

+="CN85751"	"Provision of accommodation & venue charges"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	03-May-08	30000.00	=""	="AAPC Properties Ltd"	22-May-08 03:37 PM	

+="CN85752"	"Professional Services - Model Estimates"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	29-Apr-08	10000.00	=""	="UMEE LIMITED"	22-May-08 03:37 PM	

+="CN85753"	"Provision of accommodation charges"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	28-Apr-08	28-Jun-08	37170.00	=""	="Bitanic Gardens Apartments"	22-May-08 03:37 PM	

+="CN85754"	"Provision of services - Minor Works"	="Department of Health and Ageing"	22-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Apr-08	20-Jun-08	54890.00	=""	="Caliber Contracting"	22-May-08 03:37 PM	

+="CN85755"	"Provision of services - Test Lead"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	19800.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:37 PM	

+="CN85756"	"Creation of alcohol harm related promotional products"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	269060.00	=""	="GRASSHOPPER PROMOTIONAL AUSTRALIAS"	22-May-08 03:38 PM	

+="CN85757"	"Consultancy services - Communications Officer The Way Forward"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	39600.00	=""	="Hudson Global Resources (Aust) Pty"	22-May-08 03:38 PM	

+="CN85758"	"Provision of services - Expert clinical services to Patient Identification Program"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	24000.00	=""	="SPENCERSMITH AND ASSOCIATES PTY LTD"	22-May-08 03:38 PM	

+="CN85759"	"Provision of services - Capability Toolkit"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-May-08	31838.40	=""	="FLINDERS UNIVERSITY"	22-May-08 03:38 PM	

+="CN85760"	"Engagement of project support services to clincial handover project"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	33000.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:38 PM	

+="CN85761"	"Upgrade HealthInsite search engine"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	20-Mar-08	20-Mar-11	229680.00	=""	="Autonomy Systems Australia Pty Ltd"	22-May-08 03:38 PM	

+="CN85762"	"Delivery of  training courses"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	53266.24	=""	="DELANEY AND ASSOCIATES PTY. LTD."	22-May-08 03:38 PM	

+="CN85763"	"Provision of printing services - Emergency Care Kit"	="Department of Health and Ageing"	22-May-08	="Published Products"	24-Apr-08	12-May-08	11305.80	=""	="PARAGON PRINTERS"	22-May-08 03:38 PM	

+="CN85764"	"Professional services - EL1 Contractor"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	14-May-08	20000.00	=""	="Trek Recruitment Solutions"	22-May-08 03:38 PM	

+="CN85765"	"Printing of Indigenous Lifescripts Resources"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	06-Feb-08	30-Jun-08	48507.28	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:39 PM	

+="CN85766"	"Review of the OATSIH capital works program delivery model"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	45000.00	=""	="LAUGHING MIND PTY. LTD."	22-May-08 03:39 PM	

+="CN85767"	"Clinical review of the Bunurong Health Service and primary care needs of Aboriginals and Islanders"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	48840.00	="257/0708"	="EFFECTIVE CHANGE PTY LTD"	22-May-08 03:39 PM	

+="CN85768"	"Three Branch compliance audits"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	31-Mar-08	07-May-08	71390.00	="086/0607"	="DOBES & ASSOCIATES PROPRIETARY LIMI"	22-May-08 03:39 PM	

+="CN85769"	"Development of a paper on legal issues affecting open disclosure"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	07-May-08	11123.00	=""	="The University of Melbourne"	22-May-08 03:39 PM	

+="CN85770"	"Relocation services - 2008 Graduates Program"	="Department of Health and Ageing"	22-May-08	="Transportation and Storage and Mail Services"	23-Apr-08	30-Jun-08	300000.00	=""	="TOLL TRANSPORT PTY. LIMITED"	22-May-08 03:39 PM	

+="CN85771"	"Professional services - Audit Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	01-May-08	35000.00	=""	="NORTHERN TERRITORY OF AUSTRALIA T/A"	22-May-08 03:39 PM	

+="CN85772"	"Accommodation and conference for Qld state Healthy for Life Workshop"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Feb-08	30-Jun-08	11394.50	=""	="MARQUE HOTELS INTERNATIONAL PTY LTD"	22-May-08 03:39 PM	

+="CN85773"	"Creation of alcohol harm related promotional products - baseball caps"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	100000.00	=""	="GRASSHOPPER PROMOTIONAL AUSTRALIAS"	22-May-08 03:40 PM	

+="CN85774"	"Provision of professional services - Migration trends and movement patterns in Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	18-Sep-07	30-May-08	29040.00	="208/0607"	="ACCESS ECONOMICS"	22-May-08 03:40 PM	

+="CN85775"	"Audit of Risk Assessments in the Business Planning Process"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	14-Apr-08	09-Jun-08	35834.00	="086/0607"	="RSM BIRD CAMERON"	22-May-08 03:40 PM	

+="CN85777"	"Professional services - ICT Benchmarking Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	02-May-08	50000.00	=""	="IT Newcom Pty Ltd"	22-May-08 03:40 PM	

+="CN85778"	"Update the cost recovery costing model, fee structure and Cost Recovery Impact Statement"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	29-Apr-08	31-May-08	28746.50	="086/0607"	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:40 PM	

+="CN85779"	"ICT Benchmarking Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	02-May-08	107500.00	=""	="IT Newcom Pty Ltd"	22-May-08 03:41 PM	

+="CN85780"	"Printing under  the National Continence Management Strategy (NCMS)"	="Department of Health and Ageing"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Apr-08	02-May-08	72255.70	=""	="PIRION PTY LIMITED"	22-May-08 03:41 PM	

+="CN85781"	"Evaluation of the competent authority pathway of assessment for International medical graduates"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	05-Feb-09	155488.00	="208/0607"	="KPMG"	22-May-08 03:41 PM	

+="CN85782"	"Provision of professional services - Economic Evalutation"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	31-Dec-08	170500.00	="177/0708"	="IMS HEALTH AUSTRALIA PTY LTD"	22-May-08 03:41 PM	

+="CN85783"	"Provision of professional services - Review & Assessment services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	02-May-08	34500.00	=""	="PALM CONSULTING GROUP PTY LTD"	22-May-08 03:41 PM	

+="CN85784"	"SAP ABAP programming engagement"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	14000.00	="288/0607"	="Southern Cross Computing Pty Limite"	22-May-08 03:42 PM	

+="CN85785"	"Printing of final report of the National Clinical Taskforce on Organ and Tissue Donation"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	30-Jan-08	05-May-08	41737.61	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:42 PM	

+="CN85786"	"Training and development services"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	22-May-08	25-Jun-08	23056.00	="2005/014"	="RESULTS CONSULTING (AUST) PTY LTD"	22-May-08 03:42 PM	

+="CN85787"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:42 PM	

+="CN85788"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	40000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:42 PM	

+="CN85789"	"Property lease - Flinders Lane Melbourne"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Mar-11	427180.00	=""	="OVERLAND PROPERTIES PTY. LT"	22-May-08 03:42 PM	

+="CN85790"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	240000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:42 PM	

+="CN85791"	"Consultancy services to support the 2008 Departmental Financial Review"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	21-Apr-08	79992.00	=""	="THE TRUSTEE FOR APIS CONSULTING GRO"	22-May-08 03:43 PM	

+="CN85792"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:43 PM	

+="CN85793"	"Consultancy services - SAS data integration serivces"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	02-May-08	14036.00	="288/0607"	="UXC LIMITED"	22-May-08 03:43 PM	

+="CN85794"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="DLA PHILLIPS FOX"	22-May-08 03:43 PM	

+="CN85795-A1"	"Provision of Independant finance advice"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	08-Apr-08	30-Jun-08	120000.00	="086/0607"	="KPMG"	22-May-08 03:43 PM	

+="CN85796"	"Printing of the National Mental Health Report 2007"	="Department of Health and Ageing"	22-May-08	="Published Products"	29-Jan-08	30-Jun-08	26426.00	=""	="CPP INSTANT PRINTING"	22-May-08 03:43 PM	

+="CN85797"	"Review of aged care in Bourke NSW"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	27-Jun-08	37792.00	=""	="WALLACE MACKINNON & ASSOCIATES"	22-May-08 03:43 PM	

+="CN85798"	"Provision of services - Fit out works"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	25-Feb-08	30-Jun-08	149292.00	=""	="GE SHAW & ASSOCIATES (ACT) PTY LIMI"	22-May-08 03:44 PM	

+="CN85799"	"Promotional items"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	02-May-08	11174.40	=""	="PERSONAL CREATIONS"	22-May-08 03:44 PM	

+="CN85800"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14857.52	="042/0506"	="CLAYTON UTZ"	22-May-08 03:44 PM	

+="CN85801"	"Refurbishment work for QLD State Office"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	28-Feb-09	23914.79	=""	="Isis Projects Pty Ltd"	22-May-08 03:44 PM	

+="CN85802"	"Development of External Proficiency Program for POCT Trial"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-05	05-May-08	174350.79	=""	="RCPA QUALITY ASSURANCE PROGRAMS PTY"	22-May-08 03:44 PM	

+="CN85803"	"Payments to Centrelink for Income testing and Asset testing services"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	01-Jul-07	30-Jun-08	1121000.00	=""	="CENTRELINK"	22-May-08 03:44 PM	

+="CN85804"	"Advice relating to the Business Objectives of Primary & Ambulatory Care Division"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	02-Aug-07	31-Dec-07	99822.00	=""	="BANSCOTT HEALTH CONSULTING PTY LTD"	22-May-08 03:44 PM	

+="CN85805"	"To fund the development of resources to support appropriate use of MBS health check items."	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Sep-07	07-May-08	10111.54	=""	="Australian General Practice Limited"	22-May-08 03:44 PM	

+="CN85806"	"Provision for Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	119500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:45 PM	

+="CN85807"	"Provision of Legal services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="Mallesons Stephen Jaques"	22-May-08 03:45 PM	

+="CN85808"	"For Services for the engagement of the CEO, Human Resources Manager & Finance Manager at Mersey"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	18-Oct-07	21-Apr-08	650231.27	=""	="JTA INTERNATIONAL PTY LTD"	22-May-08 03:45 PM	

+="CN85809"	"Production of in-confidence and unclassified file covers"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Oct-07	08-May-08	47530.35	=""	="RAINBOW PRINTING PTY LTD"	22-May-08 03:45 PM	

+="CN85810"	"Management Services for National Data Repository For Home & Community Care Minimum Data Set"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	17-Nov-07	28-Feb-09	210969.00	=""	="FUJITSU AUSTRALIA LTD"	22-May-08 03:45 PM	

+="CN85811"	"Test manager/test lead services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Apr-08	43076.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:45 PM	

+="CN85812"	"Test analyst services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Apr-08	39600.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:45 PM	

+="CN85813"	"Provision of legal services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	30-Jun-08	42400.54	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85814"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15000.00	="042/0506"	="MINTER ELLISON"	22-May-08 03:46 PM	

+="CN85815"	"Engagement of specialist expertise for the production of specialist report"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	08-May-08	15488.00	=""	="PERFORMANCE AND GOVERNANCE"	22-May-08 03:46 PM	

+="CN85816"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85817"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10267.62	="042/0506"	="CLAYTON UTZ"	22-May-08 03:46 PM	

+="CN85818"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13200.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85819"	"ICON Services  Penrhyn House B ground floor"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	30-Jun-08	20000.00	=""	="DEPT OF FINANCE & ADMIN"	22-May-08 03:46 PM	

+="CN85820"	"Audio visual products for the call centre"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	16670.00	=""	="ZENITH CUSTOM INSTALLATION PTY LIMI"	22-May-08 03:46 PM	

+="CN85821"	"Consultancy services - Financial Advisory services"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	18-Mar-08	20-Jun-08	42414.35	="086/0607"	="ENMARK PTY LTD"	22-May-08 03:47 PM	

+="CN85822"	"Consultancy services - Testing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	10560.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:47 PM	

+="CN85823"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	07-Apr-08	24-Apr-08	34601.17	=""	="HMA BLAZE PTY LTD"	22-May-08 03:47 PM	

+="CN85824"	"Provision of professional services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	01-Dec-10	3960000.00	=""	="Austin Health"	22-May-08 03:47 PM	

+="CN85825"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Published Products"	09-Apr-08	30-Jun-08	15588.95	=""	="HMA BLAZE PTY LTD"	22-May-08 03:47 PM	

+="CN85826"	"Supply of items for the National Medical Stockpile"	="Department of Health and Ageing"	22-May-08	="Medical Equipment and Accessories and Supplies"	04-Dec-07	30-Apr-08	1657600.00	=""	="ROCHE PRODUCTS PTY LTD"	22-May-08 03:47 PM	

+="CN85827"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	12000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:47 PM	

+="CN85828"	"Graphic design and printing conference material"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	27-Mar-08	30-Jun-08	17000.00	=""	="ADZU"	22-May-08 03:48 PM	

+="CN85829"	"Printing of six aged care accreditation reports"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	09-Apr-08	23-May-08	41963.70	=""	="PIRION PTY LIMITED"	22-May-08 03:48 PM	

+="CN85830"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	12000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85831"	"Printing and supply of promotional flash drives"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	03-Jan-08	23-Apr-08	15719.00	=""	="The Trustee for PARAGON AUSTRALASIA"	22-May-08 03:48 PM	

+="CN85832"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	231929.40	=""	="Total Learn Pty Ltd"	22-May-08 03:48 PM	

+="CN85833"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	19800.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85834"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	11000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85835"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	341445.50	=""	="CIT SOLUTIONS PTY LIMITED"	22-May-08 03:48 PM	

+="CN85836"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	498609.10	=""	="INTERACTION CONSULTING GROUP PTY LT"	22-May-08 03:49 PM	

+="CN85837"	"Develop a research framework on safety and quality in Health Care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	06-May-08	35970.00	=""	="THE SAX INSTITUTE"	22-May-08 03:49 PM	

+="CN85838"	"Guarding services for Dept of Health Ageing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	387746.00	=""	="CHUBB SECURITY PERSONNEL PTY LTD"	22-May-08 03:49 PM	

+="CN85839"	"Consultancy services -  Dataset services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	17600.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	22-May-08 03:49 PM	

+="CN85840"	"Consultancy services - Specialist services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Jun-08	25080.00	=""	="LITTLE OAK PTY LIMITED"	22-May-08 03:49 PM	

+="CN85841"	"Provision of services - publications reprints"	="Department of Health and Ageing"	22-May-08	="Published Products"	02-Jan-08	15-May-08	11803.00	=""	="PIRION PTY LIMITED"	22-May-08 03:49 PM	

+="CN85842"	"Expert authorship of the accrediataion chapter of Commissions National Report 2008"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	11000.00	=""	="BRAITHWAITE AND ASSOCIATES PTY  LTD"	22-May-08 03:49 PM	

+="CN85843"	"Reprint of "Choose Health: Be Active" booklets"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	08-Apr-08	15-May-08	15577.47	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:49 PM	

+="CN85844"	"Procurement and funding training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	231886.60	=""	="MAJOR TRAINING SERVICES PTY. LTD"	22-May-08 03:49 PM	

+="CN85845"	"Newspaper advertising services for REI 270/0708"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	03-Mar-08	23-Apr-08	11415.65	=""	="HMA BLAZE PTY LTD"	22-May-08 03:50 PM	

+="CN85846-A1"	" Lease at De Grey Place, Karratha. WA "	="Department of Human Services"	22-May-08	="Lease and rental of property or building"	01-Jan-09	26-Sep-17	2079000.00	=""	="Peter William Clark"	22-May-08 04:11 PM	

+="CN85847-A1"	"Preparation of Business Case Documentation"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	28-Feb-08	14-Apr-08	28204.00	=""	="Doll Martin Associates"	22-May-08 04:42 PM	

+="CN85848"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	07-Jan-08	07-Jul-08	64350.00	=""	="Greythorn Pty Limited"	22-May-08 04:50 PM	

+="CN85849"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-May-08	22-Jun-08	16825.69	=""	="LANDROVER"	22-May-08 04:55 PM	

+="CN85850-A2"	"IT Messaging Technology Conversion services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	11-Feb-08	07-Mar-08	116952.00	=""	="IBM Australia Limited"	22-May-08 04:56 PM	

+="CN85852"	"IT Project Management Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	04-Jan-08	29-Feb-08	40000.00	=""	="Software Cybernetics Pty Ltd"	22-May-08 05:01 PM	

+="CN85853"	"Provision of IT Project Management Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	29-Jan-08	29-Feb-08	23760.00	=""	="Freelance Global Limited"	22-May-08 05:06 PM	

+="CN85854"	"Forensic IT Services"	="Australian Securities and Investments Commission"	22-May-08	="Accounting services"	26-May-08	30-Jun-08	30000.00	=""	="McGrath Nicol"	22-May-08 05:16 PM	

+="CN85855"	"Accommodation"	="Office of the Director of Public Prosecutions"	22-May-08	="Hotels and lodging and meeting facilities"	09-Jan-08	17-Jan-08	10632.40	=""	="Aust International Hotel School"	22-May-08 05:18 PM	

+="CN85856"	"Transcripts"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	06-Dec-07	27-Dec-07	38063.00	=""	="Reporting Services Branch"	22-May-08 05:18 PM	

+="CN85857"	"Transcripts"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	12-Dec-07	27-Dec-07	17076.50	=""	="Reporting Services Branch"	22-May-08 05:18 PM	

+="CN85858"	"Upgrade Audio Equip L8"	="Office of the Director of Public Prosecutions"	22-May-08	="Office machines and their supplies and accessories"	23-Jan-08	23-Jan-08	10522.31	=""	="All A.V. Pty Ltd"	22-May-08 05:19 PM	

+="CN85859"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Jan-08	21-Feb-08	12881.69	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85861"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	04-Feb-08	28-Feb-08	13165.88	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85862"	"Security Containers"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	28-Feb-08	15622.20	=""	="Fileguard Pty Ltd"	22-May-08 05:19 PM	

+="CN85863"	"Suppy & Installation CCTV system"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-Apr-08	47213.60	=""	="TAC PACIFIC PTY LTD"	22-May-08 05:19 PM	

+="CN85864"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	18-Feb-08	06-Mar-08	10237.40	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85865"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	22-Feb-08	06-Mar-08	13072.41	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85866"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Feb-08	20-Mar-08	11354.28	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85867"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Feb-08	27-Mar-08	10874.19	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85868"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	17-Mar-08	27-Mar-08	12008.43	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85869"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	20-Mar-08	10-Apr-08	10886.13	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85870"	"Conference Facility"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	24-Apr-08	12217.00	=""	="The Menzies Sydney"	22-May-08 05:20 PM	

+="CN85871"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	02-Apr-08	17-Apr-08	11747.46	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85872"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	02-Apr-08	24-Apr-08	10636.62	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85873"	"Interpreting"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	11-Apr-08	01-May-08	12760.00	=""	="Associated Translators"	22-May-08 05:20 PM	

+="CN85874"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	21-Apr-08	01-May-08	10009.25	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85875"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	21-Apr-08	08-May-08	10412.47	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85876"	"Falepau & ors WE 18/4/08"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	30-Apr-08	30-Apr-08	11064.91	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85877"	"Evidence replay & monitoring system"	="Office of the Director of Public Prosecutions"	22-May-08	="Office machines and their supplies and accessories"	26-Feb-08	30-Jun-08	42391.03	=""	="Auscript"	22-May-08 05:21 PM	

+="CN85878"	"IT Services E-Trial re: Benbrika -6-28/2/08"	="Office of the Director of Public Prosecutions"	22-May-08	="Computer services"	12-Mar-08	23-Apr-08	10700.25	=""	="Potter Farrelly & Associates"	22-May-08 05:21 PM	

+="CN85879"	"Blinds"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	08-May-08	17632.02	=""	="Valtas Enterprises Pty Ltd"	22-May-08 05:21 PM	

+="CN85880"	"Removalist"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Jan-08	13299.44	=""	="Grace Removals Group"	22-May-08 05:21 PM	

+="CN85881"	"Install Billi water appliances - replacement of previous system"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	14245.00	=""	="Com-Ind Electrical Service"	22-May-08 05:21 PM	

+="CN85882"	"Accommodation"	="Office of the Director of Public Prosecutions"	22-May-08	="Hotels and lodging and meeting facilities"	04-Mar-08	16-May-08	10935.00	=""	="Quest On James"	22-May-08 05:22 PM	

+="CN85883"	"Removals"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	22-May-08	11989.69	=""	="Grace Removals Group"	22-May-08 05:22 PM 

--- /dev/null
+++ b/admin/partialdata/21Jan2008to25Jan2008valto.xls
@@ -1,1 +1,966 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN55488-A4"	"Lease level 4,188 Collins st,  Hobart, Tasmania"	="Department of Human Services"	21-Jan-08	="Real estate services"	01-Mar-08	30-Jun-14	2569221.00	=""	="Balsa Rejus Property Trust"	21-Jan-08 09:42 AM	

+="CN55491"	"Australian Cultural Orientation Materials"	="Department of Immigration and Citizenship"	21-Jan-08	="Printed media"	21-Dec-07	31-Jul-08	49511.00	=""	="AMAMOO, DAMIAN EDUAM (trading as Inception Strategies)"	21-Jan-08 10:16 AM	

+="CN55492"	"Assesment for Compliance and Detention Officers"	="Department of Immigration and Citizenship"	21-Jan-08	="Specialised educational services"	01-Nov-07	31-Mar-08	28875.00	=""	="Australian Forensic Services Pty Ltd"	21-Jan-08 10:39 AM	

+="CN55494"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	20-Oct-07	30-Jun-08	48000.00	=""	="Australian Multicultural Foundation Limited"	21-Jan-08 10:49 AM	

+="CN55496"	"IMU Contract Programmer: IMU-ICT101 Official Order: 2007/053"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	21-Jan-08	20-Jan-11	687500.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:51 AM	

+="CN55497"	"IMU Contract Programmer: IMU-ICT102 Official Order: 2007/054"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	21-Jan-08	20-Jan-11	687500.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:51 AM	

+="CN55498"	"Supply and delivery of stone to site"	="Department of Veterans' Affairs"	21-Jan-08	="Earth and stone"	07-Dec-07	07-Dec-08	516423.00	=""	="Rocomat Pierre Naturelle"	21-Jan-08 10:51 AM	

+="CN55499"	"Supply and Install Bronze Elements"	="Department of Veterans' Affairs"	21-Jan-08	="Alloys"	06-Dec-07	30-May-09	438000.00	=""	="DCG Design Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55500"	"IMU Contract Programmer: IMU-ICT043 Official Order IMU2007/073"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	150586.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55495"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	30-Oct-07	30-Jun-08	29000.00	=""	="Muslim Womens National NetworkAustralia Inc"	21-Jan-08 10:52 AM	

+="CN55501"	"IMU Contract Programmer: IMU-ICT020 Official Order IMU2007/071"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Dec-07	30-Nov-08	215600.00	=""	="OASIS Solutions P\L"	21-Jan-08 10:52 AM	

+="CN55502"	"IMU Contract Programmer: IMU-ICT029 Official Order IMU2007/075"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	220290.00	=""	="R&D Professional IT Services Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55503"	"IMU Contract Programmer: IMU-ICT065 Official Order IMU2007/064"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Dec-07	30-Nov-08	160688.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	21-Jan-08 10:52 AM	

+="CN55504"	"IMU Contract Programmer: IMU-ICT110 Official Order IMU2007/082"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	15-Dec-07	04-Apr-08	66000.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55505"	"IMU Contract Programmer: IMU-ICT105 Official Order IMU2007/072"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	10-Dec-07	02-Jun-08	95040.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	21-Jan-08 10:52 AM	

+="CN55506"	"IMU Contract Programmer: IMU-ICT099 Official Order IMU2007/077"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	02-Jan-08	30-Jun-08	123464.00	=""	="Southern Cross Computing Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55507"	"IMU Contract Programmer: IMU-ICT033 Official Order IMU2007/080"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	187686.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:52 AM	

+="CN55508"	"IMU Contract Programmer: IMU-ICT026 Official Order IMU2007/081"	="Department of Veterans' Affairs"	21-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	194234.00	=""	="Black Range Development Pty Ltd"	21-Jan-08 10:53 AM	

+="CN55510"	"The provision of ambulance & patient transport services."	="Department of Veterans' Affairs"	21-Jan-08	="Passenger transport"	01-Jul-04	30-Jun-09	209000.00	=""	="A to Z Medical Services Pty Ltd"	21-Jan-08 10:53 AM	

+="CN55511"	"Aircraft charter"	="Australian Electoral Commission"	21-Jan-08	="Chartered aeroplane travel"	19-Nov-07	19-Jan-08	91007.06	="S07/08/096"	="Chartair Pty Ltd"	21-Jan-08 10:59 AM	

+="CN55512"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	28-Sep-07	30-Jun-08	42295.00	=""	="Multicultural Youth South Australia Incorporated"	21-Jan-08 10:59 AM	

+="CN55514"	"Legal Services"	="Australian Electoral Commission"	21-Jan-08	="Legal services"	01-Aug-07	29-Feb-08	204490.00	="S07/08/121"	="Australian Government Solicitor"	21-Jan-08 11:03 AM	

+="CN55515-A3"	"Strategy Development Research"	="Department of Immigration and Citizenship"	21-Jan-08	="Business administration services"	10-Dec-07	21-Dec-07	18150.00	=""	="SMS Consulting Group Ltd"	21-Jan-08 11:04 AM	

+="CN55517-A5"	"Assisted Passage, Medical and Related Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Humanitarian aid and relief"	03-Dec-07	03-Dec-10	33705000.00	=""	="International Organization for Migration"	21-Jan-08 11:10 AM	

+="CN55520"	"Ballot paper production"	="Australian Electoral Commission"	21-Jan-08	="Industrial printing services"	03-Aug-06	03-Aug-09	1452440.00	=""	="McMillan Print Group"	21-Jan-08 11:18 AM	

+="CN55519"	"Security and Building Alterations to Port Hedland Facility"	="Department of Immigration and Citizenship"	21-Jan-08	="Building construction and support and maintenance and repair services"	23-Nov-07	25-Nov-08	289586.00	=""	="Carr Civil Contracting Pty Ltd"	21-Jan-08 11:19 AM	

+="CN55521-A1"	"Temporary Staffing"	="Australian Electoral Commission"	21-Jan-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	87200.87	="AEC06/019"	="Ross Human Directions"	21-Jan-08 11:23 AM	

+="CN55522-A2"	"Lease at Noosaville, Queensland"	="Department of Human Services"	21-Jan-08	="Lease and rental of property or building"	12-Oct-06	11-Oct-13	2294821.46	=""	="Mirose Pty Ltd"	21-Jan-08 11:24 AM	

+="CN55525"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	19-Nov-07	15-Jun-08	38000.00	=""	="South Western Metro Basketball Inc."	21-Jan-08 11:26 AM	

+="CN55526"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	20-Nov-07	15-Jun-08	48000.00	=""	="Greater Shepparton City Council"	21-Jan-08 11:34 AM	

+="CN55527"	"Fitout of Premises"	="Department of Immigration and Citizenship"	21-Jan-08	="Commercial and industrial furniture"	01-Dec-06	11-Sep-07	5198113.80	=""	="ISIS Projects Pty Limited"	21-Jan-08 11:36 AM	

+="CN55529"	"Transportation Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Passenger transport"	02-Oct-07	31-Dec-07	36600.00	=""	="Dallarooma Pty. Ltd. (tradings as CBD Chauffeured Transport)"	21-Jan-08 11:40 AM	

+="CN55530"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	19-Nov-07	30-Jun-08	48000.00	=""	="Beyond Empathy Limited"	21-Jan-08 11:45 AM	

+="CN55532"	"Community Development Program"	="Department of Immigration and Citizenship"	21-Jan-08	="Community and social services"	17-Oct-07	30-Jun-08	48000.00	=""	="Spectrum Migrant Resource Centre Inc"	21-Jan-08 11:49 AM	

+="CN55533"	"Fitout works for Premises"	="Department of Immigration and Citizenship"	21-Jan-08	="Building construction and support and maintenance and repair services"	05-Sep-07	30-Nov-07	54923.00	=""	="All-Build Commercial Interiors Pty Ltd"	21-Jan-08 11:54 AM	

+="CN55535"	"Overseas ballot paper printing and dispatch"	="Australian Electoral Commission"	21-Jan-08	="International vessel transport services"	10-May-07	30-Sep-08	249605.57	="S06/07/057"	="McMillan Print Group"	21-Jan-08 11:56 AM	

+="CN55536"	"Security costs"	="Department of Human Services"	21-Jan-08	="Security and control equipment"	01-Jan-08	31-Dec-09	65406.00	=""	="Chubb Security Holdings"	21-Jan-08 12:00 PM	

+="CN55538-A1"	"purchase of spare parts for uav"	="Defence Materiel Organisation"	21-Jan-08	="Target or reconnaissance drones"	10-Dec-07	30-May-08	18268.73	=""	="elbit systems ltd"	21-Jan-08 12:03 PM	

+="CN55539"	" Property lease "	="Australian Electoral Commission"	21-Jan-08	="Lease and rental of property or building"	15-Dec-07	14-Dec-11	192000.00	=""	="GPT Management Pty Ltd"	21-Jan-08 12:03 PM	

+="CN55541-A5"	"Employee Assistance Program Services"	="Department of Immigration and Citizenship"	21-Jan-08	="Human resources services"	01-Jul-07	30-Jun-11	795300.00	=""	="Davidson Trahaire Corpsych Pty Limited"	21-Jan-08 12:06 PM	

+="CN55548"	"Property lease"	="Australian Electoral Commission"	21-Jan-08	="Lease and rental of property or building"	08-Dec-07	07-Dec-12	263250.00	=""	="Port Canal Shopping Centre"	21-Jan-08 12:15 PM	

+="CN55554"	"JACK, HYDRAULIC, HAND 20 TON"	="Defence Materiel Organisation"	21-Jan-08	="Jacks"	16-Jan-08	01-Jul-08	154684.20	=""	="SPECIALISED FORCE PTY LTD"	21-Jan-08 01:07 PM	

+="CN55555"	" VEHICLE REPAIRS "	="Department of Defence"	21-Jan-08	="Motor vehicles"	17-Sep-07	17-Oct-07	33053.00	=""	="PREMIER TRUCKS NQ"	21-Jan-08 01:12 PM	

+="CN55553"	" BOW VEHICULAR REQUIRED FOR MERCEDES BENZ UNIMOG  CONTRACT No CONL56 "	="Department of Defence"	21-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Jan-08	06-Feb-08	33604.43	=""	="MERCEDES BENZ"	21-Jan-08 01:15 PM	

+="CN55556"	"VEHICLE REPAIR"	="Department of Defence"	21-Jan-08	="Motor vehicles"	11-Jul-07	11-Aug-07	39727.99	=""	="RGM"	21-Jan-08 01:16 PM	

+="CN54703"	"Recruitment Services."	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	05-Sep-07	05-Sep-07	12567.00	=""	="Dolman Pty Limited"	21-Jan-08 01:40 PM	

+="CN54697"	"Counsel Fees."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	24-Oct-07	20-Dec-07	40000.00	=""	="Mr Cam H Truong"	21-Jan-08 01:43 PM	

+="CN54696"	"ASIC Summer School 2008 Conference Venue."	="Australian Securities and Investments Commission"	21-Jan-08	="Events management"	07-Nov-07	29-Feb-08	270000.00	=""	="Sofitel Melbourne"	21-Jan-08 01:45 PM	

+="CN55559"	" ITEM 1, BOX SHIPPING PLASTIC OLIVE DRAB, 550MM x 550MM x 450MM, C/W PADLOCKABLE CATCHES AND HANDLES, QTY 1200.  ITEM 2, BOX SHIPPING PLASTIC, 1100MM x 550MM x 675MM, C/W PADLOCKABLE CATCHES AND HANDLES, QTY 300 "	="Defence Materiel Organisation"	21-Jan-08	="Moulded boxes"	16-Jan-08	30-Apr-08	212619.00	=""	="TRIMCAST PTY LTD"	21-Jan-08 01:48 PM	

+="CN54692"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	02-Nov-07	15-Nov-07	10000.00	=""	="Ms Katrina Stern"	21-Jan-08 01:48 PM	

+="CN54688"	"Contract for the supply of legal services for the conduct of litigation."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	05-Nov-07	30-Nov-07	90000.00	=""	="Australian Government Solicitor"	21-Jan-08 01:50 PM	

+="CN54685"	"Contract for the provision of Information Technology services. "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	15-Dec-07	31-Mar-08	41272.00	=""	="Pilgrim Programmers Pty Ltd"	21-Jan-08 01:52 PM	

+="CN54681"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Nov-07	30-Nov-08	20000.00	=""	="Mr Gregory McNally SC"	21-Jan-08 01:55 PM	

+="CN54673"	"Counsel Legal Services."	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	18-Dec-07	30-Jun-08	50000.00	=""	="Mr John Halley"	21-Jan-08 01:56 PM	

+="CN55561"	"IP Telephony"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	30-Jun-08	18568.00	=""	="PRECISION METALS QUEANBEYAN PTY LTD"	21-Jan-08 01:58 PM	

+="CN55562"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	03-Feb-09	252648.00	=""	="Paxus Australia Pty Ltd"	21-Jan-08 01:58 PM	

+="CN55564"	"IP Telephony"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Jun-08	59774.00	=""	="NEC AUSTRALIA PTY LTD"	21-Jan-08 01:58 PM	

+="CN54668"	"Provision of reporting software support."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	26-Feb-08	25-Feb-09	41784.31	=""	="Cognos Pty Ltd"	21-Jan-08 01:58 PM	

+="CN55565"	"Scribe Services"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	10402.65	=""	="VEROSSITY PTY LTD"	21-Jan-08 01:58 PM	

+="CN55566"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	16-Jan-08	17-Jul-08	220000.00	=""	="SPECTRUMTECH PTY LTD"	21-Jan-08 01:58 PM	

+="CN55567"	"3 X OFFICE SHREDDERS MODEL 260HS A CLASS"	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	15-Jan-08	15-Jan-08	11385.00	=""	="KOBRA SHREDDERS AUSTRALIA"	21-Jan-08 01:59 PM	

+="CN55568"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	15-Jan-08	20-Jan-09	286000.00	=""	="Omaha IT Services PTY LTD"	21-Jan-08 01:59 PM	

+="CN55563"	"Additional Performance Testing Software"	="Australian Taxation Office"	21-Jan-08	="Software"	21-Jan-08	20-Jan-09	396353.86	=""	="Hewlett Packard Aust. P/L"	21-Jan-08 01:59 PM	

+="CN55569"	"Provision of law enforcement systems support and border & entry systems-Data Exchange Staff."	="Australian Taxation Office"	21-Jan-08	="Politics and Civic Affairs Services"	13-Dec-07	31-Mar-08	33000.00	=""	="DEPARTMENT OF IMMIGRATION AND"	21-Jan-08 01:59 PM	

+="CN55570"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	18-Jan-08	20-Jul-08	116600.00	=""	="Electronic Warfare Associates -"	21-Jan-08 01:59 PM	

+="CN55571"	"Ongoing ADSL line account"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-Jan-08	10381.80	=""	="Telstra"	21-Jan-08 01:59 PM	

+="CN55572"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	17-Apr-08	79061.12	=""	="DIVERSITI PTY LTD"	21-Jan-08 01:59 PM	

+="CN55573"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	14-Jan-08	13-Jul-08	120060.00	="100-2007"	="RFJD Pty Ltd"	21-Jan-08 01:59 PM	

+="CN55574"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	16-Jan-08	29-Jan-08	280800.00	="035-2007"	="Omaha IT Services PTY LTD"	21-Jan-08 01:59 PM	

+="CN55575"	"Provisioning of power circuits"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	17-Jan-08	30-Jun-08	60500.00	=""	="Advanced Building Technologies Grp"	21-Jan-08 01:59 PM	

+="CN54659"	"Counsel - Legal Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	04-Dec-07	30-Jun-08	50000.00	=""	="Mr John Halley"	21-Jan-08 02:00 PM	

+="CN55576"	"AUDIT FEES"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	17-Jan-08	65826.00	=""	="AUSTRALIAN NATIONAL AUDIT OFFICE"	21-Jan-08 02:01 PM	

+="CN55577"	"ADVERTISING"	="Australian Taxation Office"	21-Jan-08	="Paper Materials and Products"	10-Jan-08	16-Jan-08	16225.00	=""	="HOBSONS AUSTRALIA PTY LTD"	21-Jan-08 02:01 PM	

+="CN55578"	"WORKSHOP"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	16-Jan-08	20000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	21-Jan-08 02:01 PM	

+="CN55579"	"RECRUITMENT"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	15-Jan-08	66300.00	=""	="DFP Recruitment Services Pty Ltd"	21-Jan-08 02:01 PM	

+="CN55580"	"RECRUITMENT"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	15-Jan-08	23484.52	=""	="DFP Recruitment Services Pty Ltd"	21-Jan-08 02:02 PM	

+="CN54658"	"Recruitment Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	13-Aug-07	14-Dec-07	11627.65	=""	="DFP Recruitment Services"	21-Jan-08 02:02 PM	

+="CN55581"	"INTERNET"	="Australian Taxation Office"	21-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	15-Jan-08	49460.73	=""	="TELSTRA"	21-Jan-08 02:02 PM	

+="CN55582"	"ONLINE SEARCHES"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	21-Jan-08	10218.16	=""	="ESPREON PROPERTY SERVICES"	21-Jan-08 02:02 PM	

+="CN54657"	"Consultancy services"	="Australian Securities and Investments Commission"	21-Jan-08	="Branding of product naming services"	14-Nov-07	14-May-08	173727.80	=""	="Brand Management Pty Ltd"	21-Jan-08 02:04 PM	

+="CN55583"	"Freight of election materials"	="Australian Electoral Commission"	21-Jan-08	="Freight loading or unloading"	26-Aug-04	26-Aug-10	157100.00	="03/04/027"	="Courier Australia"	21-Jan-08 02:05 PM	

+="CN54654"	"Counsel fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	24-Oct-07	16-Nov-07	25200.00	=""	="Mr Richard A Harris"	21-Jan-08 02:06 PM	

+="CN54611"	"Provision of services of Technical analyst "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	17-Sep-07	31-Jan-08	68799.50	=""	="Oakton"	21-Jan-08 02:10 PM	

+="CN55584-A1"	"Community Education"	="Department of Immigration and Citizenship"	21-Jan-08	="Civic organisations and associations and movements"	14-Sep-07	13-Sep-08	66000.00	=""	="Metropolitan Migrant Resource Centre"	21-Jan-08 02:13 PM	

+="CN54610"	"Consulting for standard messaging Infrastructure Project."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	01-Aug-07	27-Aug-07	23100.00	=""	="IBM Australia"	21-Jan-08 02:13 PM	

+="CN55585"	"Canberra Trip August-Scherr"	="Department of Defence"	21-Jan-08	="Passenger transport"	02-Aug-07	03-Aug-08	13885.80	="no"	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55586"	"AIR FARES"	="Department of Defence"	21-Jan-08	="Passenger transport"	01-Jan-00	01-Jan-00	10369.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55587"	"Airfares to Moscow/London RTN"	="Department of Defence"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	24-Aug-07	24-Aug-07	11127.68	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:14 PM	

+="CN55588"	"Airfares for travel to US/ROK March 07 - note that this transaction appearred to get lost until Sept 07."	="Department of Defence"	21-Jan-08	="Travel facilitation"	05-Sep-07	05-Sep-07	13215.86	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN54608"	"Provision of services of Business analyst "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	24-Sep-07	31-Jan-08	87505.00	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:15 PM	

+="CN55589"	"AIR FARES"	="Department of Defence"	21-Jan-08	="Passenger transport"	01-Jan-00	01-Jan-00	10068.40	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55590"	"OP Catalyst visit - 27 November - 14 December 2007"	="Department of Defence"	21-Jan-08	="Passenger transport"	29-Nov-07	29-Nov-07	12432.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55591"	"OP Catalyst Visit - 27 November - 14 December 2007"	="Department of Defence"	21-Jan-08	="Passenger transport"	29-Nov-07	29-Nov-07	12384.90	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55592"	"OS FARE HARNETT FIL REF: TRN033797 PRN:OP08-020141ACMS-1600790COURSE"	="Department of Defence"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	13-Dec-07	13-Dec-07	10718.80	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:15 PM	

+="CN55593"	"JOPS"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	18-Dec-07	18-Dec-07	20000.00	=""	="ESPLANADE HOTEL FREMANTLE WA"	21-Jan-08 02:15 PM	

+="CN55594"	"Boss Lift to Malaysia"	="Department of Defence"	21-Jan-08	="Travel facilitation"	01-Dec-06	01-Dec-06	11164.38	=""	="MUTIARA JOHOR BAHRU-M"	21-Jan-08 02:15 PM	

+="CN55595"	"Tricon Racking SystemSOLSADM 111."	="Department of Defence"	21-Jan-08	="Fabricated structural assemblies"	05-Nov-07	05-Nov-07	26785.00	=""	="CORAL SEA CONTAINERS"	21-Jan-08 02:16 PM	

+="CN55596"	"Incorrectly billed to DPC instead of bank transfer payment on 13/12/07. Credit against DPC to follow ."	="Department of Defence"	21-Jan-08	="Fibres and textiles and fabric industries"	26-Nov-07	26-Nov-07	10598.50	=""	="3M AUSTRALIA PTY LTD"	21-Jan-08 02:16 PM	

+="CN55598"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	07-Dec-07	23-Dec-07	18316.05	=""	="HOLLYWOOD PRIV HOSP"	21-Jan-08 02:16 PM	

+="CN55599"	"2007 CA Conference Admin.  Chief of Army Conference Venue Hire and Catering - National Convention Centre, Canberra 1-2 November 2007."	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	06-Dec-07	06-Dec-07	35215.50	=""	="NATIONAL CONVENTION"	21-Jan-08 02:16 PM	

+="CN55600"	"322/08 talu accident damage-cabin - spv"	="Department of Defence"	21-Jan-08	="Air transportation support systems and equipment"	04-Dec-07	04-Dec-07	10952.26	=""	="STATIC ENGINEERING"	21-Jan-08 02:16 PM	

+="CN55597"	"Supply and installation of technology materials for the redevelopment of Circa Rotating Theatre"	="National Museum of Australia"	21-Jan-08	="Components for information technology or broadcasting or telecommunications"	13-Dec-07	28-Feb-08	933242.00	="NMAT0708/02"	="Wizard Projects Pty Limited"	21-Jan-08 02:16 PM	

+="CN55601"	"RAN Civil Accreditation Programs*Small ship Navigation*Scoping study for CTSs & CTLsPART PAYMENT"	="Department of Defence"	21-Jan-08	="Education and Training Services"	06-Dec-07	06-Dec-07	21199.00	=""	="CIT SOLUTIONS PTY LT"	21-Jan-08 02:16 PM	

+="CN55602"	"OTS 07.160"	="Department of Defence"	21-Jan-08	="Education and Training Services"	10-Dec-07	10-Dec-07	11531.14	=""	="POWERBOAT TRAINING"	21-Jan-08 02:16 PM	

+="CN55603"	"Vehicle Hire Mobile Phone charges other purchases"	="Department of Defence"	21-Jan-08	="Business administration services"	12-Dec-07	12-Dec-07	15083.68	=""	="BMMI"	21-Jan-08 02:17 PM	

+="CN55604"	"Car Hire, Stationary, Mobile Phones, Stores"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	12-Dec-07	12-Dec-07	27294.26	=""	="BMMI"	21-Jan-08 02:17 PM	

+="CN55605"	"RAN Civil Accreditation Program - MEDASST & DENTASST"	="Department of Defence"	21-Jan-08	="Education and Training Services"	12-Dec-07	12-Dec-07	15510.25	=""	="CIT SOLUTIONS PTY LT"	21-Jan-08 02:17 PM	

+="CN55606"	"CTF158 STAFF"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	13-Dec-07	13-Dec-07	52973.72	=""	="THE DIPLOMAT RADISSON"	21-Jan-08 02:17 PM	

+="CN55607"	"DSTO197543"	="Department of Defence"	21-Jan-08	="Computer services"	05-Jan-08	04-Jan-09	14024.34	=""	="SILICON GRAPHICS P/L"	21-Jan-08 02:17 PM	

+="CN55608"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	19-Dec-07	19-Jan-08	13126.25	=""	="ALLAN WANG PTY LTD"	21-Jan-08 02:17 PM	

+="CN55609"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Orthopaedic and prosthetic and sports medicine products"	20-Dec-07	31-Jan-08	11201.54	=""	="BRISBANE NTH PODIATRY P/L"	21-Jan-08 02:17 PM	

+="CN55610"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	27-Dec-07	26-Jan-08	10642.72	=""	="ST JOHN OF GOD SU"	21-Jan-08 02:17 PM	

+="CN55611"	"Print Production Aust Code for the Transport of Dangerous Goods by Road and Rail Vol 1 & 2 Ed 7 x 450 Copies each"	="Department of Defence"	21-Jan-08	="Published Products"	20-Dec-07	20-Dec-07	14367.39	="GEN 319"	="PUBLICATION PERS"	21-Jan-08 02:17 PM	

+="CN55612"	"LSE-ME ISO ARUNTA PVST Dubai 28Dec-06Jan - Accommodation / Laundry / Business Centre"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	06-Jan-08	06-Jan-08	13908.81	=""	="LE MERIDIEN DUBAI-ROYAL C"	21-Jan-08 02:17 PM	

+="CN55613"	"MSA Bandicoot Accommodation for refit Port Macquarie"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	08-Jan-08	08-Jan-08	11880.00	=""	="RYDGESPORTMACQ"	21-Jan-08 02:18 PM	

+="CN55614"	"CTF158 Staff Respite - Accommodation / Laundry / Internet / A/P Transfers"	="Department of Defence"	21-Jan-08	="Hotels and lodging and meeting facilities"	07-Jan-08	07-Jan-08	17042.87	=""	="THE DIPLOMAT RADISSON"	21-Jan-08 02:18 PM	

+="CN55615"	"Purchase of Media Wall CO-80005 IO 15800"	="Department of Defence"	21-Jan-08	="Information Technology Broadcasting and Telecommunications"	08-Jan-08	13-Jan-08	33250.05	=""	="RGB SPECTRUM"	21-Jan-08 02:18 PM	

+="CN55616"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Medical practice"	09-Jan-08	09-Feb-08	11882.99	=""	="ST ANDREWS HOSPITAL"	21-Jan-08 02:18 PM	

+="CN55617"	"15/01/08 Medical/Dental Procedure/Consulation for individual members"	="Department of Defence"	21-Jan-08	="Medical practice"	10-Jan-08	10-Feb-08	17558.00	=""	="ST ANDREWS HOSPITAL"	21-Jan-08 02:18 PM	

+="CN54605"	"Consulting for E-Business migration Phase 2."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	28-Aug-07	28-Sep-07	163762.50	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:18 PM	

+="CN55618"	"Health Costs"	="Department of Defence"	21-Jan-08	="Patient care and treatment products and supplies"	11-Jan-08	10-Feb-08	15354.05	=""	="ST JOHN OF GOD HOSPIT"	21-Jan-08 02:18 PM	

+="CN54598"	"Consulting for E-business migration."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	06-Jul-07	06-Sep-07	34512.50	=""	="Ajilon Australia Pty Ltd"	21-Jan-08 02:20 PM	

+="CN55621"	"IT Contractor"	="Australian Taxation Office"	21-Jan-08	="Engineering and Research and Technology Based Services"	14-Jan-08	30-Jun-08	145000.00	=""	="M&T Resources (SMS Group)"	21-Jan-08 02:23 PM	

+="CN54510"	"Provision of consultancy services."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	20-Aug-07	24-Aug-07	10307.00	=""	="Software AG australia PTY Ltd."	21-Jan-08 02:23 PM	

+="CN55622"	"AIRFARE"	="Defence Materiel Organisation"	21-Jan-08	="Travel and Food and Lodging and Entertainment Services"	16-Nov-07	16-Nov-07	10810.10	=""	="QANTAS AIRWAYS LIMITED"	21-Jan-08 02:23 PM	

+="CN55623"	"Legal Services & Advice re - 9750 ACC Server Room Project"	="Australian Crime Commission"	21-Jan-08	="Legal services"	02-Jan-08	30-Jan-08	40000.00	=""	="Blake Dawson Waldron"	21-Jan-08 02:25 PM	

+="CN55624"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	62629.99	=""	="SAAL"	21-Jan-08 02:27 PM	

+="CN54498"	"Professional services pertaining to importation of diagrams from Magic Draw to Systems Architect."	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	10-Sep-07	15-Oct-07	17600.00	=""	="Telelogic Australia Pty Ltd"	21-Jan-08 02:28 PM	

+="CN54496"	"Accredited Training"	="Australian Securities and Investments Commission"	21-Jan-08	="Procurement or supply chain training"	05-Nov-07	30-Jun-08	22400.00	=""	="Bayley and Associates P/L"	21-Jan-08 02:29 PM	

+="CN54482-A1"	"Backfill of Information Architect position. "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	26-Nov-07	29-Feb-08	47520.00	=""	="Doll Martin Associates Pty Ltd"	21-Jan-08 02:31 PM	

+="CN54479"	"Provision of IT Services"	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	04-Feb-08	23-May-08	78080.00	=""	="UPI Contracting Pty Ltd"	21-Jan-08 02:32 PM	

+="CN55625"	"Cameras and camera equipment"	="Australian Crime Commission"	21-Jan-08	="Cameras"	07-Dec-07	07-Dec-07	37647.50	=""	="Nikon on Broadway"	21-Jan-08 02:33 PM	

+="CN54473"	"Secondment contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	26-Sep-07	25-Mar-08	65780.00	=""	="Blake Dawson Waldren"	21-Jan-08 02:34 PM	

+="CN54469-A1"	" Develop Software interface from RBA to ASIC Finance "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	01-Dec-07	31-Dec-07	42652.50	=""	="QSP Asia Pacific Pty Ltd"	21-Jan-08 02:37 PM	

+="CN54464"	"Recruitment services"	="Australian Securities and Investments Commission"	21-Jan-08	="Recruitment services"	03-Jan-08	02-Apr-08	19800.00	=""	="Slade Group"	21-Jan-08 02:39 PM	

+="CN54313"	"Transactional Banking."	="Australian Securities and Investments Commission"	21-Jan-08	="Banking and investment"	07-Aug-07	07-Aug-12	6000000.00	=""	="Reserve Bank of Australia"	21-Jan-08 02:44 PM	

+="CN55628"	" Personnel Recruitment "	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	20-Dec-07	30-Jun-08	53570.00	=""	="Hays Personnel Services"	21-Jan-08 02:44 PM	

+="CN54310"	"Fleet Motor Vehicle Lease"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	17-Oct-07	16-Oct-10	22707.00	=""	="LeasePlan Australia Limited"	21-Jan-08 02:46 PM	

+="CN55629"	"Annual Subscription Renewal for Library"	="Office of Parliamentary Counsel"	21-Jan-08	="Library or documentation services"	01-Dec-07	30-Nov-08	36940.92	=""	="LexisNexis"	21-Jan-08 02:46 PM	

+="CN55632"	"Legal Advice"	="Australian Crime Commission"	21-Jan-08	="Legal services"	30-Oct-07	10-Jan-08	10295.00	=""	="Australian Government Solicitor"	21-Jan-08 02:48 PM	

+="CN53820"	"Fleet motor vehicle leasing"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	04-Oct-07	03-Oct-10	25619.00	=""	="LeasePlan Australia Limited"	21-Jan-08 02:49 PM	

+="CN53818"	"Fleet Motor Vehicle Lease"	="Australian Securities and Investments Commission"	21-Jan-08	="Vehicle leasing"	26-Oct-07	25-Oct-10	24544.00	=""	="Leaseplan Australia Limited"	21-Jan-08 02:51 PM	

+="CN55635"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Aircraft"	21-Jan-08	30-Jun-08	62768.51	=""	="SAAL"	21-Jan-08 02:52 PM	

+="CN55636"	" Personnel Recruitment "	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	17-Jan-08	30-Jun-08	96264.23	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 02:53 PM	

+="CN55637"	"Repair and OH of Black Hawk Tail Rotor Blade."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	66231.53	=""	="SAAL"	21-Jan-08 02:57 PM	

+="CN55638-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	26-Dec-07	30-Jun-08	290400.00	=""	="Jakeman Business Solutions"	21-Jan-08 02:57 PM	

+="CN53813"	" Romoval (office furniture) services. "	="Australian Securities and Investments Commission"	21-Jan-08	="Relocation services"	07-Sep-07	07-Dec-07	79066.90	=""	="Movers and Shakers"	21-Jan-08 02:57 PM	

+="CN53806"	"Supply of News papers."	="Australian Securities and Investments Commission"	21-Jan-08	="Newspapers"	01-Jul-07	01-Jul-08	20000.00	=""	="Glasshouse Newsagency"	21-Jan-08 02:59 PM	

+="CN55641"	"Repair and OH of Black Hawk Tail Rotor Servo."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	28749.60	=""	="SAAL"	21-Jan-08 03:01 PM	

+="CN53798"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Nov-07	30-Jun-09	20000.00	=""	="Anthony McINNERNEY"	21-Jan-08 03:01 PM	

+="CN53797"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	05-Nov-07	30-Jun-09	120000.00	=""	="Mathew C.L. Dicker"	21-Jan-08 03:03 PM	

+="CN53794"	"Counsel Fees"	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	12-Nov-07	31-Dec-07	10000.00	=""	="Mr John Griffiths SC"	21-Jan-08 03:04 PM	

+="CN55642"	"Repair and OH of Black Hawk Yaw Servo."	="Defence Materiel Organisation"	21-Jan-08	="Military rotary wing aircraft"	21-Jan-08	30-Jun-08	12781.99	=""	="SAAL"	21-Jan-08 03:05 PM	

+="CN55644"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	14-Jan-08	30-Jun-08	96096.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:05 PM	

+="CN53791"	" Counsel Fees "	="Australian Securities and Investments Commission"	21-Jan-08	="Legal services"	01-Dec-07	30-Jun-09	45000.00	=""	="Mr Clifford L. Pannam QC"	21-Jan-08 03:05 PM	

+="CN52257"	" Provision of IT consulting services "	="Australian Securities and Investments Commission"	21-Jan-08	="Information technology consultation services"	03-Dec-07	06-Jun-08	117425.00	=""	="Avoga Pty Ltd"	21-Jan-08 03:07 PM	

+="CN55645"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	02-Jan-08	30-Jun-08	128960.00	=""	="Verossity Pty Ltd"	21-Jan-08 03:08 PM	

+="CN52247"	"Temporary Staff - Administration Officer"	="Australian Securities and Investments Commission"	21-Jan-08	="Temporary personnel services"	20-Nov-07	28-Feb-08	23100.00	=""	="Julia Ross Human Directions Ltd"	21-Jan-08 03:09 PM	

+="CN52236-A1"	"Development of FIDO promotional pens"	="Australian Securities and Investments Commission"	21-Jan-08	="Stationery"	21-Nov-07	19-Dec-07	29700.00	=""	="Jem Promotional Products"	21-Jan-08 03:11 PM	

+="CN55647-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	02-Jan-08	30-Jun-08	140164.96	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:12 PM	

+="CN52232"	"Renewal if IBIS World Industry Research reports"	="Australian Securities and Investments Commission"	21-Jan-08	="Market research"	12-Nov-07	11-Nov-08	13189.00	=""	="IBIS World Business Information"	21-Jan-08 03:16 PM	

+="CN52226"	"SE3510 Support Contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Software"	01-Nov-07	30-Nov-07	43853.80	=""	="Global360"	21-Jan-08 03:22 PM	

+="CN52205"	"SE3510 support contract"	="Australian Securities and Investments Commission"	21-Jan-08	="Software"	01-Dec-07	30-Nov-08	20768.00	=""	="Global 360"	21-Jan-08 03:24 PM	

+="CN55652-A2"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jul-07	26-Sep-08	222560.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 03:25 PM	

+="CN52098"	"Showbags November 2007 print job."	="Australian Securities and Investments Commission"	21-Jan-08	="Industrial printing services"	12-Oct-07	31-Jan-08	27775.00	=""	="Claytons Australia Pty Ltd"	21-Jan-08 03:26 PM	

+="CN55653"	"16 electronic whiteboards for new tenancy at 414 Latrobe St, Melbourne"	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	10-Jan-08	30-Jan-09	50426.00	=""	="Electroboard Solutions Pty Ltd"	21-Jan-08 03:27 PM	

+="CN52064"	"Calendar of works - painting 1 Martin place"	="Australian Securities and Investments Commission"	21-Jan-08	="Interior painting services"	15-Nov-07	07-Dec-07	26372.50	=""	="Cascade Property Maintenance"	21-Jan-08 03:28 PM	

+="CN55654-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jan-08	30-Jun-08	249146.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 03:28 PM	

+="CN55657-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	01-Jan-08	01-Aug-08	250800.00	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 03:33 PM	

+="CN55659"	"15 photocopiers with fax-enabling for new tenancy at 414 Latrobe St, Melbourne."	="Australian Taxation Office"	21-Jan-08	="Office Equipment and Accessories and Supplies"	10-Jan-08	09-Jan-10	125449.50	=""	="Toshiba Australia"	21-Jan-08 03:41 PM	

+="CN55663-A2"	"Computer Software"	="Australian Crime Commission"	21-Jan-08	="Software"	14-Nov-07	06-Dec-07	158400.00	=""	="BCT Group Pty Ltd"	21-Jan-08 03:46 PM	

+="CN55660"	"Service Management Tool Selection"	="Federal Court of Australia"	21-Jan-08	="Technical support or help desk services"	14-Jan-08	30-Apr-08	39270.00	=""	="LUCID IT PTY LTD"	21-Jan-08 03:50 PM	

+="CN55664"	" Motherboard "	="Australian Crime Commission"	21-Jan-08	="Computer Equipment and Accessories"	04-Dec-07	04-Dec-07	20336.00	=""	="The Microcare CD Group Pty Ltd"	21-Jan-08 03:51 PM	

+="CN55666"	" Taxi fares "	="Australian Crime Commission"	21-Jan-08	="Taxicab services"	09-Oct-07	09-Oct-07	21528.48	=""	="Cabcharge Australia"	21-Jan-08 03:55 PM	

+="CN55667"	"Rental of artworks"	="Office of Parliamentary Counsel"	21-Jan-08	="Paintings"	01-Dec-07	30-Nov-08	14905.00	=""	="Artbank"	21-Jan-08 03:59 PM	

+="CN55670"	"Oracle Software Update License and Support"	="Federal Court of Australia"	21-Jan-08	="Proprietary or licensed systems maintenance or support"	30-Nov-07	29-Nov-08	113253.00	=""	="ORACLE CORPORATION"	21-Jan-08 04:04 PM	

+="CN55671"	"Consulting Services"	="Australian Crime Commission"	21-Jan-08	="Business intelligence consulting services"	05-Nov-07	04-Nov-08	45000.00	=""	="Aub Chapman Consulting Services Pty ltd"	21-Jan-08 04:05 PM	

+="CN55674"	"Large Scale Recruitment Services - Wave 2"	="Australian Taxation Office"	21-Jan-08	="Management and Business Professionals and Administrative Services"	11-Mar-07	31-Oct-07	51885.09	=""	="Australian Public Service Commission"	21-Jan-08 04:08 PM	

+="CN55676"	"Photocopier leases"	="Australian Crime Commission"	21-Jan-08	="Photocopiers"	01-Jul-07	30-Jun-08	13586.40	=""	="Fuji Xerox Australia Pty Ltd"	21-Jan-08 04:09 PM	

+="CN55679"	"Lease vehicles"	="Australian Crime Commission"	21-Jan-08	="Motor vehicles"	07-Dec-07	07-Dec-07	66490.25	=""	="Leaseplan"	21-Jan-08 04:13 PM	

+="CN55677"	"    Online subscription for legislation & guides    "	="Office of Parliamentary Counsel"	21-Jan-08	="Online database information retrieval systems"	01-Dec-07	30-Nov-08	14215.55	=""	="CCH Australia"	21-Jan-08 04:15 PM	

+="CN55681"	"Communications equipment upgrade"	="Australian Crime Commission"	21-Jan-08	="Communications Devices and Accessories"	16-Oct-07	18-Dec-07	88924.00	=""	="Tapes Products Research Pty Ltd"	21-Jan-08 04:18 PM	

+="CN55682"	"Comcar Transport"	="Australian Crime Commission"	21-Jan-08	="Taxicab services"	01-Jul-07	30-Jun-08	17000.00	=""	="Comcar"	21-Jan-08 04:21 PM	

+="CN55683"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	03-Jan-08	04-Apr-08	80883.89	=""	="Icon Recruitment Pty Ltd"	21-Jan-08 04:24 PM	

+="CN55684-A1"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	05-Dec-07	26-Sep-08	112200.00	=""	="Tarakan Consulting Pty Ltd"	21-Jan-08 04:27 PM	

+="CN55686"	"Personnel Recruitment"	="Australian Crime Commission"	21-Jan-08	="Personnel recruitment"	10-Dec-07	30-Jun-08	140000.00	=""	="Matera Consulting Pty Ltd"	21-Jan-08 04:30 PM	

+="CN55673"	"SES leased vehicle"	="Australian Securities and Investments Commission"	21-Jan-08	="Motor vehicles"	11-Jan-08	10-Jan-10	18746.38	=""	="LeasePlan Australia Limited"	21-Jan-08 04:40 PM	

+="CN55700"	"Contractor Services - Stephen Sedgwick"	="Department of Transport and Regional Services"	22-Jan-08	="Management advisory services"	02-Jan-08	27-Jun-08	79200.00	="TRS06/017"	="WIZARD INFORMATION SERVICES P/L"	22-Jan-08 08:27 AM	

+="CN55701"	"Contract Staff"	="Department of Transport and Regional Services"	22-Jan-08	="Community and social services"	16-Jan-08	04-Aug-08	25597.00	="TRS05/251"	="Allstaff Australia P/L"	22-Jan-08 08:27 AM	

+="CN55702"	"Financial Audit Roads to Recovery Progs"	="Department of Transport and Regional Services"	22-Jan-08	="Accounting and auditing"	11-Dec-07	30-Jun-08	200000.00	="SOT2007/0004"	="WALTER & TURNBULL  PTY LTD"	22-Jan-08 08:28 AM	

+="CN55703"	"Consultancy E&Y"	="Department of Transport and Regional Services"	22-Jan-08	="Accounting and auditing"	20-Dec-07	29-Feb-08	39999.70	="TRS06/037"	="ERNST & YOUNG"	22-Jan-08 08:28 AM	

+="CN55704"	"Legal Services Expenditure 6588"	="Department of Transport and Regional Services"	22-Jan-08	="Legal services"	11-Aug-06	30-Jun-09	12995.07	="TRS06/175"	="Clayton Utz Canberra"	22-Jan-08 08:28 AM	

+="CN55705"	"Work on Superannuation Liability"	="Department of Transport and Regional Services"	22-Jan-08	="Accounting and auditing"	08-Oct-07	19-Oct-07	18062.69	="TRS06/037"	="WALTER & TURNBULL  PTY LTD"	22-Jan-08 08:28 AM	

+="CN55706"	"Provision of Accounting Services"	="Department of Transport and Regional Services"	22-Jan-08	="Accounting and auditing"	02-Oct-07	26-Oct-07	17487.60	="TRS06/037"	="WALTER & TURNBULL  PTY LTD"	22-Jan-08 08:28 AM	

+="CN55707"	"Recruitment Services"	="Department of Transport and Regional Services"	22-Jan-08	="Community and social services"	03-Dec-07	29-Feb-08	20000.00	="TRS05/251"	="AMBIT GROUP PTY LTD"	22-Jan-08 08:28 AM	

+="CN55708"	"RWD Infopak Consulting"	="Department of Transport and Regional Services"	22-Jan-08	="Software"	01-Jul-07	30-Jun-08	20000.00	="TRS08/006"	="SAP AUSTRALIA P/L - HEAD OFFICE"	22-Jan-08 08:28 AM	

+="CN55709"	"Best Practice Cost Estimation for Road a"	="Department of Transport and Regional Services"	22-Jan-08	="Management advisory services"	10-Oct-07	20-Mar-08	300000.00	="TRS07/315"	="EVANS & PECK PTY LTD"	22-Jan-08 08:28 AM	

+="CN55710"	"SAP Support 2007-2008"	="Department of Transport and Regional Services"	22-Jan-08	="Software"	01-Jul-07	30-Jun-08	200000.00	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	22-Jan-08 08:29 AM	

+="CN55711"	"Contractor for increase workload"	="Department of Transport and Regional Services"	22-Jan-08	="Community and social services"	21-Jan-08	21-Apr-08	28646.20	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	22-Jan-08 08:29 AM	

+="CN55712"	"Review Calculation of ASA"	="Department of Transport and Regional Services"	22-Jan-08	="Accounting and auditing"	14-Jan-08	08-Feb-08	16500.00	="TRS06/037"	="PRICEWATERHOUSECOOPERS"	22-Jan-08 08:29 AM	

+="CN55713"	"Consultancy"	="Department of Transport and Regional Services"	22-Jan-08	="Management advisory services"	14-Jan-08	18-Jan-08	19505.20	="TRS07/325"	="APIS CONSULTING"	22-Jan-08 08:29 AM	

+="CN55714"	"SAP SQL License SAP SQL Maintenance"	="Department of Transport and Regional Services"	22-Jan-08	="Components for information technology or broadcasting or telecommunications"	11-Jan-08	30-Jun-13	42542.50	="TRS07/150"	="SAP AUSTRALIA P/L - HEAD OFFICE"	22-Jan-08 08:29 AM	

+="CN55715"	"Management of the former Australian National Plan Room and its contents"	="Department of Transport and Regional Services"	22-Jan-08	="Management advisory services"	17-Jan-08	30-Apr-08	28160.00	="TRS07/034"	="Inprotrans Pty Ltd"	22-Jan-08 08:29 AM	

+="CN55716"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	22-Jan-08	="Legal services"	16-Jan-08	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	22-Jan-08 08:29 AM	

+="CN55719"	"REPAIR AND OVERHAUL OF BLACK HAWK LANDING GEAR ASSY."	="Defence Materiel Organisation"	22-Jan-08	="Military rotary wing aircraft"	22-Jan-08	30-Jun-08	15965.25	=""	="SAAL"	22-Jan-08 09:00 AM	

+="CN55720"	"CLEVIS ROD END P/No 206-010-354-003; MC 97499. Quantity 12"	="Defence Materiel Organisation"	22-Jan-08	="Military rotary wing aircraft"	28-May-07	02-Jul-07	13226.66	=""	="HAWKER PACIFIC PTY LTD"	22-Jan-08 09:09 AM	

+="CN55721"	"GST Exempt. Training Services"	="Australian Taxation Office"	22-Jan-08	="Education and Training Services"	24-May-07	29-Feb-08	25620.00	=""	="Box Hill Institute of Tafe"	22-Jan-08 09:55 AM	

+="CN55722"	"Mainframe MIPS Upgrade Charges"	="Australian Taxation Office"	22-Jan-08	="Software"	12-Jan-08	11-Jan-09	184517.64	=""	="Executive Computing Pty Ltd"	22-Jan-08 10:05 AM	

+="CN55723"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	16-Jan-08	31-Jan-08	86530.87	=""	="Sikorsky Aircraft Australia Limited"	22-Jan-08 10:09 AM	

+="CN55724"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	15-Jan-08	30-Jan-08	88605.73	=""	="Sikorsky Aircraft Australia Limited"	22-Jan-08 10:12 AM	

+="CN55726"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	27-Nov-07	03-Dec-07	80125.44	=""	="Sikorsky Aircraft Australia Limited"	22-Jan-08 10:16 AM	

+="CN55728"	"Parachute Parts"	="Defence Materiel Organisation"	22-Jan-08	="Parachute equipment"	18-Dec-07	08-Apr-08	38928.92	="2180033"	="Parachutes Australia"	22-Jan-08 10:17 AM	

+="CN55729"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	02-Jun-06	06-Feb-08	34836.47	=""	="Sikorsky Aircraft Australia Limited"	22-Jan-08 10:29 AM	

+="CN55730"	"Harness"	="Defence Materiel Organisation"	22-Jan-08	="Air transportation support systems and equipment"	13-Dec-07	31-Mar-08	195802.20	=""	="Aero Safety Equipment Pty Ltd"	22-Jan-08 10:29 AM	

+="CN55732-A1"	"Management advisory services"	="Centrelink"	22-Jan-08	="Management advisory services"	24-Jan-08	30-Jun-09	132900.00	=""	="Executive Leadership Australia Pty Ltd"	22-Jan-08 10:45 AM	

+="CN55733-A1"	"Electronic Self Managed Super Fund (SMSF) Audit Tool"	="Australian Taxation Office"	22-Jan-08	="Engineering and Research and Technology Based Services"	07-Jan-08	31-Dec-08	2108508.00	="RFT 07.146"	="Cordelta Pty Ltd acting as trustee for Cordelta Unit Trust"	22-Jan-08 10:49 AM	

+="CN55740"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	25-Sep-07	30-Jun-08	42383.24	=""	="Boeing Australia Limited"	22-Jan-08 11:25 AM	

+="CN55742"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	22-Jan-08	="Aircraft"	18-Dec-07	30-Jun-08	42383.24	=""	="Boeing Australia Limited"	22-Jan-08 11:40 AM	

+="CN55744"	"Tool Kit Metalsmith Generic"	="Defence Materiel Organisation"	22-Jan-08	="Workshop machinery and equipment and supplies"	21-Jan-08	20-Feb-08	20812.00	=""	="Kentool"	22-Jan-08 11:41 AM	

+="CN54849-A1"	"Provision of sampling services for the Separated Families Project"	="Australian Institute of Family Studies"	22-Jan-08	="Sampling surveys"	10-Jan-08	05-Jun-09	65780.00	=""	="University of Wollongong"	22-Jan-08 11:48 AM	

+="CN54803-A1"	"Internal Audit Services"	="Australian Institute of Family Studies"	22-Jan-08	="Internal audits"	10-Jan-08	31-Dec-10	103400.00	=""	="PKF Chartered Accountants & Business Advisors"	22-Jan-08 11:52 AM	

+="CN55748-A2"	"Engagement of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	03-Jul-07	30-Jun-08	187000.00	=""	="Ross Human Directions Limited"	22-Jan-08 11:52 AM	

+="CN55739-A1"	"Personnel Recruitment Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Human resources services"	17-Sep-07	17-Oct-07	101200.00	=""	="Workplace Research Associates Pty Ltd"	22-Jan-08 11:54 AM	

+="CN55752"	"motor vehicle spare parts"	="Department of Defence"	22-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	18-Jan-08	17-Feb-08	12148.74	=""	="LANDROVER"	22-Jan-08 12:05 PM	

+="CN55755-A1"	"Engagement of Specialist Information Technology Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	07-May-07	31-Aug-07	75240.00	=""	="Ross Human Directions Limited"	22-Jan-08 12:10 PM	

+="CN55756-A4"	"Engagement of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	16-Jul-07	30-May-08	209000.00	=""	="Ross Human Directions Limited"	22-Jan-08 12:15 PM	

+="CN55761-A1"	"Engagement of Specialist INformation Technology Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	21-May-07	30-Jun-08	161590.00	=""	="Ross Human Directions Limited"	22-Jan-08 12:21 PM	

+="CN55763"	"Consulting services for BIS RFT."	="Australian Securities and Investments Commission"	22-Jan-08	="Information technology consultation services"	07-Jan-08	31-Aug-08	158400.00	=""	="Ajilon Australia Pty Ltd"	22-Jan-08 12:21 PM	

+="CN55768-A3"	"Engagement of Specialist Information Technology Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	21-May-07	30-Jun-08	161590.00	=""	="Ross Human Directions Limited"	22-Jan-08 12:29 PM	

+="CN55771"	"Laser printing"	="Australian Electoral Commission"	22-Jan-08	="Digital industrial printing services"	01-Jul-03	27-Aug-07	2775932.19	=""	="Salmat Document Management"	22-Jan-08 12:36 PM	

+="CN55774-A1"	"Supply new Challenger Panel"	="National Archives of Australia"	22-Jan-08	="Computer Equipment and Accessories"	11-Jan-08	31-Mar-08	21450.00	=""	="CHUBB ELECTRONIC SECURITY"	22-Jan-08 12:38 PM	

+="CN55775"	"Publication printing"	="National Archives of Australia"	22-Jan-08	="Publication printing"	03-Dec-07	10-Dec-07	13178.00	=""	="Goanna Print"	22-Jan-08 12:38 PM	

+="CN55776"	"Workplace training"	="National Archives of Australia"	22-Jan-08	="Education and Training Services"	11-Jan-08	01-Jun-08	31900.00	=""	="Proactive Resolutions (Aust) Pty Ltd"	22-Jan-08 12:38 PM	

+="CN55777"	"Consultancy for recruitment review"	="National Archives of Australia"	22-Jan-08	="Personnel recruitment"	11-Jan-08	29-Feb-08	22000.00	=""	="KMR Consulting"	22-Jan-08 12:38 PM	

+="CN55778"	"Insurance, waterandsewerage rates"	="National Archives of Australia"	22-Jan-08	="Building support services"	16-Jan-08	03-Sep-10	15219.90	=""	="Gaymark Property Group"	22-Jan-08 12:38 PM	

+="CN55779"	"Supply of Software"	="National Archives of Australia"	22-Jan-08	="Software"	16-Jan-08	30-Jun-08	114180.00	=""	="The Reading Room Australia Pty Ltd"	22-Jan-08 12:38 PM	

+="CN55780"	"Undertake a performance audit and review"	="National Archives of Australia"	22-Jan-08	="Business and corporate management consultation services"	16-Jan-08	31-Jan-08	37642.00	=""	="GHD Pty Ltd"	22-Jan-08 12:38 PM	

+="CN55781"	"Supply of custom frames"	="National Archives of Australia"	22-Jan-08	="Exhibitions"	18-Jan-08	25-Jan-08	10595.00	=""	="Hang Ups"	22-Jan-08 12:38 PM	

+="CN55792"	"Mailing house for the printing and issuing of publications under the Hearing Services Program"	="Department of Health and Ageing"	22-Jan-08	="Transportation and Storage and Mail Services"	01-Dec-07	14-Jan-08	13345.78	="218/0405"	="LEIGH MARDON AUSTRALASIA PTY LTD"	22-Jan-08 12:56 PM	

+="CN55794"	"Mailing house for the printing and issuing of publications under the Hearing Services Program"	="Department of Health and Ageing"	22-Jan-08	="Transportation and Storage and Mail Services"	01-Jan-08	31-Jan-08	16000.00	="218/0405"	="LEIGH MARDON AUSTRALASIA PTY LTD"	22-Jan-08 12:57 PM	

+="CN55796"	"External training services"	="Department of Health and Ageing"	22-Jan-08	="Politics and Civic Affairs Services"	04-Jun-07	14-Jan-08	13145.00	=""	="PINK ELEPHANT INTERNATIONAL PTY LTD"	22-Jan-08 12:57 PM	

+="CN55798"	"External training request for independant assessors training"	="Department of Health and Ageing"	22-Jan-08	="Politics and Civic Affairs Services"	01-Nov-07	14-Jan-08	12815.00	=""	="WORKPLACE RES ASSOC PTY LTD"	22-Jan-08 12:57 PM	

+="CN55800"	"Service fee for non-ongoing staff for Casemeid and Reporting Section"	="Department of Health and Ageing"	22-Jan-08	="Politics and Civic Affairs Services"	19-Nov-07	18-Feb-08	15370.58	=""	="PEOPLEBANK AUSTRALIA LTD"	22-Jan-08 12:57 PM	

+="CN55802"	"Provision of Applied Epidemiology Training"	="Department of Health and Ageing"	22-Jan-08	="Politics and Civic Affairs Services"	24-May-07	30-Nov-09	40700.00	=""	="AUST NAT UNI"	22-Jan-08 12:57 PM	

+="CN55804"	"Consultancy to investigate the implimentation of the Priority Existing Chemical Assessments"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	19800.00	=""	="BROOKE-TAYLOR & CO PTY LTD"	22-Jan-08 12:57 PM	

+="CN55805"	"Workstation installation and maintenance"	="Department of Health and Ageing"	22-Jan-08	="Furniture and Furnishings"	30-Jun-07	30-Jun-08	49995.00	="230/0405"	="RIGHT NOW OFFICE RENOVATION AND"	22-Jan-08 12:57 PM	

+="CN55806"	"Recruitment placement service"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	08-Jan-08	11632.58	=""	="CHEMSKILL"	22-Jan-08 12:57 PM	

+="CN55807"	"Indigenous Network Conference"	="Department of Health and Ageing"	22-Jan-08	="Travel and Food and Lodging and Entertainment Services"	01-Nov-07	16-Jan-08	17239.00	=""	="BRISBANE CONVENTION CENTRE HOTEL (D"	22-Jan-08 12:57 PM	

+="CN55808"	"Database, internal website and software update"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	09-Jan-08	15972.00	=""	="COMPUTER SYSTEMS (AUST) PTY LTD"	22-Jan-08 12:58 PM	

+="CN55809"	"Children's Nutrition and Physical Activity Survey"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	14-Aug-07	16-Jan-08	11880.00	=""	="AUST BUREAU OF STATS ACT"	22-Jan-08 12:58 PM	

+="CN55810"	"Web design and development"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	30-Jun-08	24750.00	=""	="PRODIGI SOLUTIONS PTY LTD"	22-Jan-08 12:58 PM	

+="CN55811"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-Jan-08 12:58 PM	

+="CN55812"	"The participation qualitative research study for Breastscreen Australia"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	24-Mar-08	180000.00	=""	="BLUE MOON UNIT TRUST"	22-Jan-08 12:58 PM	

+="CN55813"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13200.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-Jan-08 12:58 PM	

+="CN55814"	"Provision of legal services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	19-Sep-07	30-Jun-08	35000.00	="042/0506"	="DLA PHILLIPS FOX"	22-Jan-08 12:58 PM	

+="CN55815"	"Provision of legal services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	10-Jan-08	20000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-Jan-08 12:58 PM	

+="CN55816"	"Provision of legal services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	29-Aug-07	01-Jul-08	100000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-Jan-08 12:58 PM	

+="CN55817"	"Project governance - SAP committees and travel enhancements"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	02-Jan-08	30-Jun-08	123600.00	="RFT 086/0607"	="OAKTON AA SERVICES PTY LTD"	22-Jan-08 12:58 PM	

+="CN55818"	"Nursing Workforce Projections project"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	16-Jan-08	37840.00	="208/0607"	="ACCESS ECONOMICS"	22-Jan-08 12:59 PM	

+="CN55819"	"Development and report on the Standard Drinks Guide"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	11-Jan-08	10450.00	=""	="KPMG"	22-Jan-08 12:59 PM	

+="CN55820"	"Review of subsidies and services in Australian government funded community aged care programs"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Mar-08	25000.00	=""	="AVIKO PTY. LIMITED"	22-Jan-08 12:59 PM	

+="CN55821-A1"	"Research into consumer views of Gov funded community aged care program recipients"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	01-Feb-08	49324.00	=""	="OPEN MIND RESEARCH GROUP"	22-Jan-08 12:59 PM	

+="CN55822"	"Call management and reporting tool to enable delivery of human resource telephone help desk"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	12-Oct-07	30-Oct-08	34100.00	=""	="NEC AUSTRALIA PTY LTD"	22-Jan-08 12:59 PM	

+="CN55823"	"Lease of Gio House , level 1"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Jun-09	454123.82	=""	="THE TRUSTEE FOR JUNSTAMP UNIT TRUST"	22-Jan-08 12:59 PM	

+="CN55824"	"Invoice Scanning Feasibility project"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	31-Mar-08	56200.00	="RFQ129/0708"	="OAKTON AA SERVICES PTY LTD"	22-Jan-08 12:59 PM	

+="CN55825"	"Report on the national food regulation system"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	11-Jan-08	48000.00	=""	="BETHWAITE, FRANCIS M"	22-Jan-08 12:59 PM	

+="CN55826"	"Test Analyst Services"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	07-Jan-08	10-Mar-08	65340.00	=""	="DIALOG INFORMATION TECHNOLOGY"	22-Jan-08 01:00 PM	

+="CN55827"	"Supply of pharmaceuticals"	="Department of Health and Ageing"	22-Jan-08	="Drugs and Pharmaceutical Products"	22-Nov-07	30-Apr-08	557039.60	=""	="SANDOZ PTY LTD"	22-Jan-08 01:00 PM	

+="CN55828"	"Supply of pharmaceuticals"	="Department of Health and Ageing"	22-Jan-08	="Drugs and Pharmaceutical Products"	21-Dec-07	31-Mar-08	1538888.00	=""	="BAYER AUSTRALIA LTD"	22-Jan-08 01:00 PM	

+="CN55829"	"Review of the Canterbury Multicultural Ageing and Disability Support Service"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	21-Jan-08	31-Mar-08	75720.00	="086/0607"	="KPMG"	22-Jan-08 01:00 PM	

+="CN55830"	"Provision for Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	60000.00	="042/0506"	="CLAYTON UTZ"	22-Jan-08 01:00 PM	

+="CN55831"	"Financial audit"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	08-Oct-07	18-Jan-08	26099.00	="086/0607"	="WALTERTURNBULL PTY LTD"	22-Jan-08 01:00 PM	

+="CN55832"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	220515.35	="042/0506"	="CLAYTON UTZ"	22-Jan-08 01:00 PM	

+="CN55833"	"Design and publish Australian Statistics on Medicine handbook 2006 edition"	="Department of Health and Ageing"	22-Jan-08	="Published Products"	26-Aug-07	11-Feb-08	13594.90	=""	="LOOKING GLASS PRESS PTY LIMITED"	22-Jan-08 01:00 PM	

+="CN55834"	"Labour hire of a Communications Officer"	="Department of Health and Ageing"	22-Jan-08	="Politics and Civic Affairs Services"	28-Nov-07	28-Feb-08	32940.00	=""	="HUDSON GLOBAL RESOURCES AUST"	22-Jan-08 01:00 PM	

+="CN55835"	"Banking and Related Services"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	30-Jun-06	30-Jun-11	20000.00	="CTOT +B 001/2005"	="RESERVE BANK OF AUSTRALIA ACT"	22-Jan-08 01:01 PM	

+="CN55836"	"Financial assessment of Warley Hospital"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	08-Nov-07	21-Jan-08	41800.00	=""	="WALLACE MACKINNON & ASSOCIATES"	22-Jan-08 01:01 PM	

+="CN55837"	"Supply of pharmaceuticals"	="Department of Health and Ageing"	22-Jan-08	="Drugs and Pharmaceutical Products"	24-Aug-07	23-Aug-11	386467.40	=""	="MAX PHARMA PTY LTD"	22-Jan-08 01:01 PM	

+="CN55838"	"Logistics support and co-ordination services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	1069180.00	=""	="SMS CONSULTING GROUP LTD"	22-Jan-08 01:01 PM	

+="CN55839"	"ArcGIS Application Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	07-May-08	17160.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-Jan-08 01:01 PM	

+="CN55840"	"SAS Data Integration Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	02-Apr-08	74360.00	="288/0607"	="OAKTON SERVICES PTY LTD"	22-Jan-08 01:01 PM	

+="CN55841-A1"	"Development of a Property Manager's toolkit"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	17-Jan-08	71350.00	="RFT111/0607"	="GROSVENOR MANAGEMENT CONSUL"	22-Jan-08 01:01 PM	

+="CN55842-A1"	"Contracting support services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	17-Jan-08	51562.00	="RFT111/0607"	="GROSVENOR MANAGEMENT CONSUL"	22-Jan-08 01:01 PM	

+="CN55843"	"Java development and Oracle reports services"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	377312.36	=""	="PEOPLEBANK AUSTRALIA LTD"	22-Jan-08 01:02 PM	

+="CN55844"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	22-Jan-08 01:02 PM	

+="CN55845"	"Production and distribution of the November 2007 Medicare Benefits Schedule publications"	="Department of Health and Ageing"	22-Jan-08	="Published Products"	20-Sep-07	30-Apr-08	845679.10	="RFT4140607"	="PMP PRINT PTY LTD"	22-Jan-08 01:02 PM	

+="CN55846"	"Research and analysis to support a review of health technology assessment processes"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	21-Mar-08	65442.20	="208/0607"	="ALLEN CONSULTING GROUP PTY LTD"	22-Jan-08 01:02 PM	

+="CN55847"	"Building repairs and maintenance"	="Department of Health and Ageing"	22-Jan-08	="Building and Construction and Maintenance Services"	05-Dec-07	30-Jun-08	49995.00	="229/0405"	="THOMAS BUILDING CONSTRUCTION"	22-Jan-08 01:02 PM	

+="CN55848"	"Installation of ICON service"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jan-08	29-Feb-08	24928.20	=""	="DEPT OF FINANCE & ADMIN"	22-Jan-08 01:02 PM	

+="CN55849"	"Staff placement service"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	18-Jan-08	21801.74	=""	="CANTLIE RECRUITMENT SERVICES PTY LT"	22-Jan-08 01:02 PM	

+="CN55850"	"Design and construction of division's network Information system"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	31-Oct-07	08-Feb-08	61475.00	=""	="LITTLE OAK PTY LIMITED"	22-Jan-08 01:02 PM	

+="CN55851-A2"	"Evaluation of the Dose Administration Aids and Patient Medication Profiling Programs"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	30-Jun-10	502624.00	="RFT423/0708"	="HEALTH OUTCOMES INTERNATIONAL PTY L"	22-Jan-08 01:03 PM	

+="CN55852"	"Investigation and Report on General Practise Data Extraction and Analysis Tools"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	31-Mar-08	159676.00	="RFQ179/0708"	="VALINTUS PTY LTD"	22-Jan-08 01:03 PM	

+="CN55853"	"HR Metric Reporting and Benchmarking Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	17-Dec-10	240000.00	="RFT419/0607"	="INFOHRM PTY LTD"	22-Jan-08 01:03 PM	

+="CN55854"	"ICON network infrastructure support"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	49500.00	=""	="DEPT OF FINANCE & ADMIN"	22-Jan-08 01:03 PM	

+="CN55855"	"Advice relating to Health Technology Assessment"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	55000.00	=""	="BANSCOTT HEALTH CONSULTING PTY LTD"	22-Jan-08 01:03 PM	

+="CN55856"	"Salary for Contractor"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	21-Jan-08	15000.00	=""	="EFFECTIVE PEOPLE PTY LTD"	22-Jan-08 01:03 PM	

+="CN55857"	"Stipend Payments and Rental Assistance for Packer Policy Fellow"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	09-Dec-07	16-Jun-08	40600.23	=""	="Dr MOIRA INKELAS"	22-Jan-08 01:03 PM	

+="CN55858"	"VMware LAB Manager software maintainance"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	24-Dec-08	15272.76	=""	="QIRX PTY LTD"	22-Jan-08 01:03 PM	

+="CN55859"	"VMware LAB Manager software"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	24-Dec-08	54148.89	=""	="QIRX PTY LTD"	22-Jan-08 01:03 PM	

+="CN55860"	"Supply and delivery of desks to Darwin Office for the NT Emergency Response Team (NTER)"	="Department of Health and Ageing"	22-Jan-08	="Furniture and Furnishings"	02-Nov-07	24-Dec-07	18315.00	=""	="SCHIAVELLO (ACT) PTY. LTD."	22-Jan-08 01:04 PM	

+="CN55861"	"Cabling and electrical services for DOHA - Darwin"	="Department of Health and Ageing"	22-Jan-08	="Electronic Components and Supplies"	10-Dec-07	24-Dec-07	30908.00	=""	="POWER MAINTENANCE & CONSTRUCTIONS"	22-Jan-08 01:04 PM	

+="CN55862"	"Removal services in respect of staff relocation"	="Department of Health and Ageing"	22-Jan-08	="Transportation and Storage and Mail Services"	21-Dec-07	21-Dec-07	10001.54	=""	="TOLL TRANSPORT PTY. LIMITED"	22-Jan-08 01:04 PM	

+="CN55863"	"Governance review and financial audit of Headspace"	="Department of Health and Ageing"	22-Jan-08	="Financial and Insurance Services"	07-Jun-07	31-Jan-08	159500.00	="086/0607"	="WALTERTURNBULL PTY LTD"	22-Jan-08 01:04 PM	

+="CN55864"	"Upgrade to the MedicareWIZ Business Intelligence System - classification input file project"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	07-Feb-08	17160.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	22-Jan-08 01:04 PM	

+="CN55865"	"Review of the Program Management Information System project"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	21-Dec-07	75000.00	=""	="OAKTON AA SERVICES PTY LTD"	22-Jan-08 01:04 PM	

+="CN55866"	"Specified Contractor Services - Financial Analysis Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	31-Mar-08	45000.00	=""	="AMAROO ASSOCIATES PTY LTD"	22-Jan-08 01:04 PM	

+="CN55867"	"Training for aged care providers"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	31-Jan-08	90000.00	=""	="TAFE NSW - WESTERN INSTITUTE"	22-Jan-08 01:04 PM	

+="CN55868"	"Engagement of short term locums at the Mersey Community Hospital"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	21-Dec-07	180249.30	=""	="JTA INTERNATIONAL PTY LTD"	22-Jan-08 01:05 PM	

+="CN55869"	"IT contractor services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	30-Jun-08	43560.00	="288/0607"	="OAKTON SERVICES PTY LTD"	22-Jan-08 01:05 PM	

+="CN55870"	"ICON Telecommunication services"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	21-Dec-07	12287.00	=""	="DEPT OF FINANCE & ADMIN"	22-Jan-08 01:05 PM	

+="CN55871-A1"	"Advice on the build, testing & implementation of Community Pharmacy Remuneration Financial  Mode"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	07-Jan-08	11000.00	="357/0506"	="APPLIED ECONOMICS PTY. LIMITED"	22-Jan-08 01:05 PM	

+="CN55872"	"Property fitout at Fishburn House premises"	="Department of Health and Ageing"	22-Jan-08	="Building and Construction and Maintenance Services"	26-Oct-07	20-Dec-07	32274.00	=""	="GE SHAW & ASSOCIATES (ACT)"	22-Jan-08 01:05 PM	

+="CN55873"	"Property fitout at Bowes Pl premises"	="Department of Health and Ageing"	22-Jan-08	="Building and Construction and Maintenance Services"	26-Oct-07	20-Dec-07	748569.55	=""	="GE SHAW & ASSOCIATES (ACT)"	22-Jan-08 01:05 PM	

+="CN55874"	"Advertising Services for the National Skin Cancer Awareness Campaign"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	13-Sep-07	30-Jun-08	40570.68	=""	="BMF ADVERTISING"	22-Jan-08 01:05 PM	

+="CN55875"	"Accomodation for child health check teams"	="Department of Health and Ageing"	22-Jan-08	="Travel and Food and Lodging and Entertainment Services"	11-Nov-07	31-Jan-08	11200.00	=""	="DUGONG BEACH RESORT"	22-Jan-08 01:05 PM	

+="CN55876"	"Reviews of the Quality Reporting, Extended Aged Care at Home & National Respite for Carers Progr"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Apr-08	74368.80	=""	="ALT BEATTY CONSULTING"	22-Jan-08 01:06 PM	

+="CN55877"	"Provision of a national and international literature review"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	17-Feb-08	57530.00	="208/0607"	="NOVA PUBLIC POLICY PTY LTD"	22-Jan-08 01:06 PM	

+="CN55878"	"Printing of 'Sniffing and the Brain' flipchart"	="Department of Health and Ageing"	22-Jan-08	="Published Products"	09-Jan-08	29-Feb-08	11848.00	=""	="FLANERGAN PTY LTD"	22-Jan-08 01:06 PM	

+="CN55879"	"Aboriginal and Torres Strait Islander child health check roadshow"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	228240.00	=""	="PERIS ENTERPRISES PTY LTD"	22-Jan-08 01:06 PM	

+="CN55880"	"Supply of tympanometers for use by child health check teams"	="Department of Health and Ageing"	22-Jan-08	="Medical Equipment and Accessories and Supplies"	01-Dec-07	31-Jan-08	74916.65	=""	="TERRITORY SURGICAL SUPPLIES"	22-Jan-08 01:06 PM	

+="CN55881"	"Provision of Legal Services"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	22-Jan-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-Jan-08 01:06 PM	

+="CN55882"	"Development of the Indigenous health service accreditation framework"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	12-Aug-08	85209.00	=""	="QUALITY IMPROVEMENT COUNCIL LIMITED"	22-Jan-08 01:06 PM	

+="CN55883"	"Conference venue facilities"	="Department of Health and Ageing"	22-Jan-08	="Travel and Food and Lodging and Entertainment Services"	22-Nov-07	20-Dec-07	23778.16	=""	="AMORA JAMISON SYDNEY"	22-Jan-08 01:06 PM	

+="CN55884"	"Secure Gateway service"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	10-Jan-08	226222.87	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	22-Jan-08 01:07 PM	

+="CN55885"	"SAS software installation and configuration"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	07-Feb-07	10-Jan-08	15716.80	=""	="SAS INSTITUTE AUSTRALIA PTY. LIMITE"	22-Jan-08 01:07 PM	

+="CN55886"	"Printing Pain Management kit"	="Department of Health and Ageing"	22-Jan-08	="Published Products"	05-Sep-07	10-Jan-08	42478.00	=""	="RAINBOW PRINTING PTY LTD"	22-Jan-08 01:07 PM	

+="CN55887"	"Development of advertising material for year 12 school leavers program"	="Department of Health and Ageing"	22-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	30-Oct-07	09-Jan-08	19827.50	=""	="EOC GROUP PTY LTD"	22-Jan-08 01:07 PM	

+="CN55888"	"Advertising materials for Petrol Sniffing Program"	="Department of Health and Ageing"	22-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	17-Aug-07	11-Jan-08	26600.00	=""	="The Trustee for PARAGON AUSTRALASIA"	22-Jan-08 01:07 PM	

+="CN55889"	"Services relating to the GP Locator Website"	="Department of Health and Ageing"	22-Jan-08	="Information Technology Broadcasting and Telecommunications"	18-Sep-07	31-Jan-08	33000.00	=""	="ESRI-AUSTRALIA PTY LTD"	22-Jan-08 01:07 PM	

+="CN55890"	"Facilitation of strategic planning workshop"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	07-Jan-08	14890.70	=""	="NOUS GROUP PTY. LTD."	22-Jan-08 01:07 PM	

+="CN55891"	"Grant Promotional Advertising for the More Doctors in Outer Metropolitan Areas measure"	="Department of Health and Ageing"	22-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	31-Aug-07	30-Jun-08	28501.00	=""	="HMA BLAZE PTY LTD"	22-Jan-08 01:07 PM	

+="CN55892"	"Funds administrator to the Gumbi Gumbi Aboriginal and Torres Strait Islanders Corporation"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	12-Mar-08	66126.00	="148/0506"	="BUSINESS MAPPING SOLUTIONS PTY LTD"	22-Jan-08 01:07 PM	

+="CN55893"	"Review and Report on HIV Status in Australia"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	30-Sep-07	08-Jan-08	196860.00	=""	="BLOCKED - MONASH UNI"	22-Jan-08 01:08 PM	

+="CN55894"	"Design, develop and maintain business intelligence and reorting solutions for aged care data"	="Department of Health and Ageing"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	275000.00	=""	="OAKTON AA SERVICES PTY LTD"	22-Jan-08 01:08 PM	

+="CN55895"	"Supply of Coveralls, Safety, Industrial, Blue Cotton, Non-Monogrammed."	="Defence Materiel Organisation"	22-Jan-08	="Protective coveralls"	23-Oct-07	24-Mar-08	90904.00	=""	="CTE PTY LTD"	22-Jan-08 01:10 PM	

+="CN55903-A1"	"Engagement of Specisalist Information Technology Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	20-Mar-07	30-Jun-07	62700.00	=""	="Ross Human Directions limited"	22-Jan-08 02:13 PM	

+="CN55905"	"Cabcharge"	="National Health and Medical Research Council"	22-Jan-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Jun-08	17000.00	=""	="CABCHARGE AUSTRALIA LIMITED"	22-Jan-08 02:17 PM	

+="CN55906"	"Recruitment"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Oct-07	16-Jan-08	70000.00	=""	="RECRUITMENT MANAGEMENT COMPANY"	22-Jan-08 02:17 PM	

+="CN55907"	"Recruitment Advertising"	="National Health and Medical Research Council"	22-Jan-08	="Published Products"	30-Dec-07	30-Jan-08	10751.40	=""	="HMA BLAZE PTY LTD"	22-Jan-08 02:17 PM	

+="CN55908"	"Furniture for SES staff"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Sep-07	30-Jun-08	27745.60	="REQUETS FOR QUOTE"	="INO CONTRACT FURNITURE PTY. LIMITED"	22-Jan-08 02:17 PM	

+="CN55909"	"Recruitment Advertising"	="National Health and Medical Research Council"	22-Jan-08	="Published Products"	08-Dec-07	30-Jan-08	15418.19	=""	="HMA BLAZE PTY LTD"	22-Jan-08 02:18 PM	

+="CN55910"	"Furniture for SES staff"	="National Health and Medical Research Council"	22-Jan-08	="Furniture and Furnishings"	01-Sep-07	30-Jun-08	21589.70	="REQUEST FOR QUOTE"	="INO CONTRACT FURNITURE PTY. LIMITED"	22-Jan-08 02:18 PM	

+="CN55911"	"People Plan"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	28-Feb-08	60500.00	=""	="YELLOW EDGE PTY LTD"	22-Jan-08 02:18 PM	

+="CN55912"	"Draft Alchohol Guidlines"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	31-Mar-08	32000.00	="RFT417/0607"	="AMPERSAND HEALTH SCIENCE WRITING"	22-Jan-08 02:18 PM	

+="CN55913"	"NICS Travel"	="National Health and Medical Research Council"	22-Jan-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	28-Feb-08	32228.64	=""	="FCM TRAVEL SOLUTIONS"	22-Jan-08 02:18 PM	

+="CN55914"	"Recruitment for EL2  Strategic Communications"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	31-Mar-08	20000.00	=""	="PAPER SHUFFLE PTY LTD"	22-Jan-08 02:18 PM	

+="CN55915"	"Camera Kit, Audio Kit Hire. Editing including Del"	="National Health and Medical Research Council"	22-Jan-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	14-Jan-08	10867.60	=""	="CANDLELIGHT PICTURES"	22-Jan-08 02:18 PM	

+="CN55917-A3"	"Specialist Information Technology Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Temporary personnel services"	21-May-07	16-Jan-09	525800.00	=""	="Ross Human Directions Limited"	22-Jan-08 02:19 PM	

+="CN55919"	"Supply of Coat, Cold Weather, Navy, Stanley, Anti-Static, Navy Blue, Poly/Cotton.  PO is linked to CN41390"	="Defence Materiel Organisation"	22-Jan-08	="Clothing"	13-Dec-07	08-Feb-08	369600.00	=""	="Tech Carrycode PTD LTD"	22-Jan-08 02:27 PM	

+="CN49149-A1"	"Building refurbishment work for Wyong CSC"	="Centrelink"	22-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	23-Nov-07	20-Dec-07	286924.00	=""	="David J Smith Building P/L"	22-Jan-08 02:29 PM	

+="CN55922-A1"	"Detention Facility Research"	="Department of Immigration and Citizenship"	22-Jan-08	="Temporary research and development services"	21-Sep-07	15-Dec-07	87570.00	=""	="Australian Survey Research Group Pty Ltd"	22-Jan-08 02:32 PM	

+="CN55924"	"motor vehicle spare parts"	="Department of Defence"	22-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Jan-08	21-Feb-08	24507.70	=""	="LANDROVER"	22-Jan-08 02:35 PM	

+="CN55927"	"Cultural Awareness Training Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Specialised educational services"	04-Jan-08	31-May-08	10930.00	=""	="Beadley Intercultural Pty. Ltd."	22-Jan-08 02:43 PM	

+="CN55930"	"M113 Upgrade parts - Winch Drum"	="Department of Defence"	22-Jan-08	="Armoured fighting vehicles"	22-Jan-08	07-Jul-08	121464.20	=""	="SEPSON (AUST) PTY LTD"	22-Jan-08 02:47 PM	

+="CN55934"	"Provision of strategic remuneration and benefits advice"	="Australian Taxation Office"	22-Jan-08	="Business and corporate management consultation services"	02-Jan-08	30-Jun-08	10000.00	=""	="Realise Performance Pty Ltd"	22-Jan-08 02:52 PM	

+="CN55937-A1"	"Specialist Information Technology Training Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	06-Dec-07	30-Jun-08	570572.00	=""	="CSC Australia Pty. Limited"	22-Jan-08 03:01 PM	

+="CN55941-A4"	"Specialist Information Technology Training Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	13-Dec-07	03-Oct-08	1255870.00	=""	="EDS (Australia) Pty Limited"	22-Jan-08 03:06 PM	

+="CN55945-A3"	" Provision of Information Technology Specialist Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	01-Apr-08	30-Jun-08	242000.00	=""	="Ross Human Directions Limited"	22-Jan-08 03:15 PM	

+="CN55946"	" CONNECTOR ASSEMBLY ELECTRICAL "	="Defence Materiel Organisation"	22-Jan-08	="Connectors"	07-Jan-08	28-Feb-08	18425.00	=""	="ADVANCED POWER MACHINERY"	22-Jan-08 03:17 PM	

+="CN55933-A2"	"Information Technology Project Management"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	26-Mar-07	03-Sep-07	136400.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:20 PM	

+="CN55948-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Management advisory services"	16-Nov-07	28-Dec-07	14039.00	=""	="Persec Solutions Pty Ltd"	22-Jan-08 03:21 PM	

+="CN55936-A3"	" Information Technology Analysis Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	04-Jun-07	30-Jun-08	266200.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:22 PM	

+="CN55929-A5"	"Information Technology Program Building Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	01-Jul-07	30-Jun-09	420200.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:24 PM	

+="CN55926"	"Data Support Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	07-Aug-07	15-Nov-07	136125.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:26 PM	

+="CN55949-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Management advisory services"	22-Aug-07	03-Oct-07	10200.00	=""	="Australian Federal Police"	22-Jan-08 03:26 PM	

+="CN55925-A4"	" Project Management Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	27-Jun-07	31-Oct-08	396000.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:28 PM	

+="CN55921-A3"	"Business Analysis and Risk Management Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	09-Jul-07	09-Jul-08	248600.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:30 PM	

+="CN55920-A4"	"Information Technology Configuration Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	02-Jul-07	30-Jun-09	506426.00	=""	="Ambit Group Pty Limited"	22-Jan-08 03:32 PM	

+="CN55950-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Management advisory services"	30-Aug-07	23-Oct-07	11800.00	=""	="Australian Federal Police"	22-Jan-08 03:32 PM	

+="CN55916-A3"	"Information Technology Testing/Analysis Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	02-Jul-07	30-Jun-09	321200.00	=""	="Greythorn Pty Ltd"	22-Jan-08 03:35 PM	

+="CN55951-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Management advisory services"	29-Nov-07	19-Feb-08	15200.00	=""	="Australian Federal Police"	22-Jan-08 03:36 PM	

+="CN55904-A4"	"Information Technology Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	25-Jun-07	30-Jun-08	445500.00	=""	="Greythorn Pty Ltd"	22-Jan-08 03:36 PM	

+="CN55769-A4"	"Business Analysis and Risk Assessment Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	02-Jul-07	30-Jun-09	387200.00	=""	="Greythorn Pty Ltd"	22-Jan-08 03:38 PM	

+="CN55766-A2"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	04-Apr-07	30-Jun-08	269500.00	=""	="Finite Recruitment Pty. Ltd."	22-Jan-08 03:40 PM	

+="CN55952-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Management advisory services"	08-Jan-08	19-Feb-08	13409.00	=""	="Persec Solutions Pty Ltd"	22-Jan-08 03:41 PM	

+="CN55759-A3"	" Project Administration Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	17-Jul-07	18-Apr-08	264660.00	=""	="Finite Recruitment Pty. Ltd."	22-Jan-08 03:42 PM	

+="CN55757-A6"	" Provision of Information Technology Specialist Service "	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	16-Apr-07	12-Sep-08	303600.00	=""	="Finite Recruitment Pty. Ltd."	22-Jan-08 03:45 PM	

+="CN55754-A1"	"Business Analysis and Risk Assessment Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	18-Jun-07	30-Jun-08	178494.00	=""	="Finite Recruitment Pty. Ltd."	22-Jan-08 03:47 PM	

+="CN55751-A5"	" Data Support Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	26-Jun-07	30-Jun-09	422994.00	=""	="Finite Recruitment Pty. Ltd."	22-Jan-08 03:50 PM	

+="CN55955"	"12 Month Subscription Renewal for Content Keeper for 700 Users"	="Australian Communications and Media Authority (ACMA)"	22-Jan-08	="Software"	06-Mar-08	05-Mar-09	12320.00	=""	="Open Systems Australia"	22-Jan-08 03:51 PM	

+="CN55923-A4"	" Project Management Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	01-Jul-07	30-Jun-09	497200.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 03:57 PM	

+="CN55956-A4"	"Project Management Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	17-Sep-07	30-Jun-09	387845.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 04:02 PM	

+="CN55958"	"BOOTS, COMBAT. ASSULT"	="Defence Materiel Organisation"	22-Jan-08	="Mens boots"	22-Jan-08	14-Mar-08	216031.00	="J8096"	="OAKLEY AUST"	22-Jan-08 04:06 PM	

+="CN55960-A4"	"Project Management Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	27-Jun-07	30-Jun-09	577764.00	=""	="Paxus Australia Pty Limited"	22-Jan-08 04:12 PM	

+="CN55962-A3"	"Project Administration Services"	="Department of Immigration and Citizenship"	22-Jan-08	="Business administration services"	02-Jul-07	30-Jun-08	184800.00	=""	="Ross Human Directions Limited"	22-Jan-08 04:19 PM	

+="CN55963-A1"	"Provision of Office Equipment"	="Department of Immigration and Citizenship"	22-Jan-08	="Office furniture"	12-Feb-07	12-Feb-07	320849.00	=""	="Schiavello Pty Ltd"	22-Jan-08 04:20 PM	

+="CN55965-A3"	" Project Management Services "	="Department of Immigration and Citizenship"	22-Jan-08	="Information technology consultation services"	14-May-07	30-Jun-09	693375.00	=""	="Ross Human Directions Limited"	22-Jan-08 04:25 PM	

+="CN55967"	"Project management of office re-location and fitout"	="Australian Electoral Commission"	22-Jan-08	="Property management services"	17-Jan-08	30-Apr-08	13101.00	=""	="IA Projects Pty Ltd"	22-Jan-08 04:29 PM	

+="CN55968"	"Project management of office re-location and fitout"	="Australian Electoral Commission"	22-Jan-08	="Property management services"	10-Dec-07	31-May-08	12925.00	=""	="IA Projects Pty Ltd"	22-Jan-08 04:37 PM	

+="CN55970"	"Project management of office re-location and fitout"	="Australian Electoral Commission"	22-Jan-08	="Property management services"	10-Dec-07	31-May-08	27060.00	=""	="IA Projects Pty Ltd"	22-Jan-08 04:43 PM	

+="CN55971"	" Movement and storage services "	="Australian Electoral Commission"	22-Jan-08	="Material handling services"	01-Aug-07	01-Feb-08	30630.57	=""	="Aussiemove"	22-Jan-08 04:56 PM	

+="CN55973"	"Helicopter hire"	="Australian Electoral Commission"	22-Jan-08	="Helicopter services"	18-Nov-07	23-Nov-07	14483.72	="07/08/096"	="Jayrow Helicopters"	22-Jan-08 05:03 PM	

+="CN55974"	"Motor Vehicle Parts."	="Department of Defence"	22-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Jan-08	21-Feb-08	10233.65	=""	="Mercedes Benz Aust. Pacific"	22-Jan-08 05:20 PM	

+="CN55976-A3"	" Provision of application development support services "	="Australian Federal Police"	22-Jan-08	="Computer services"	01-Jul-07	30-Jun-09	398560.80	=""	="Cordelta Pty. Ltd."	22-Jan-08 08:32 PM	

+="CN55977-A1"	"IT application development support services"	="Australian Federal Police"	22-Jan-08	="Engineering and Research and Technology Based Services"	04-Jul-05	30-Jun-08	521840.00	=""	="Titan Consulting Pty Ltd"	22-Jan-08 08:55 PM	

+="CN55979"	" Provision of LAN support services "	="Australian Federal Police"	22-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-06	30-Jun-07	136937.00	=""	="Innovative Business Computing Pty Ltd"	22-Jan-08 09:36 PM	

+="CN55980-A1"	"Services relating to high level support and management of IT systems"	="Australian Federal Police"	22-Jan-08	="Engineering and Research and Technology Based Services"	01-May-07	30-Jun-08	249849.60	=""	="Innovative Business Computing Pty Ltd"	22-Jan-08 09:42 PM	

+="CN55981-A1"	"Services relating to implementation of IT security policies, standards and procedures"	="Australian Federal Police"	22-Jan-08	="Engineering and Research and Technology Based Services"	16-Apr-07	30-Jun-08	170016.00	=""	="Innovative Business Computing Pty Ltd"	22-Jan-08 09:53 PM	

+="CN55983"	" 9150 66-034-7917  Steam Turbine Lubricating oil  50 Drums OEP-89 (REGAL MARINE 77) "	="Defence Materiel Organisation"	23-Jan-08	="Lubricants and oils and greases and anti corrosives"	16-Jan-08	25-Jan-08	28300.25	=""	="CALTEX"	23-Jan-08 08:48 AM	

+="CN55984"	" VEHICLE REPAIRS "	="Department of Defence"	23-Jan-08	="Motor vehicles"	20-Sep-07	20-Oct-07	12862.17	=""	="FB AUTOS"	23-Jan-08 08:52 AM	

+="CN55988-A1"	"Banking and Related Services"	="Australian Communications and Media Authority (ACMA)"	23-Jan-08	="Banking and investment"	01-Apr-08	31-Mar-11	303000.00	="07/ACMA019"	="Australia and New Zealand Banking Group Limited"	23-Jan-08 09:38 AM	

+="CN55992-A1"	"Lease at Campsie, NSW"	="Department of Human Services"	23-Jan-08	="Real estate services"	12-Feb-03	11-Feb-13	6230465.00	=""	="Hasran Pty Ltd atf  Comino Family Trust"	23-Jan-08 10:20 AM	

+="CN55995-A4"	"Lease at Hperdome,Shopping Centre, Greenway, ACT"	="Department of Human Services"	23-Jan-08	="Lease and rental of property or building"	01-Mar-07	28-Feb-13	3463012.00	=""	="Tuggeranong Town Centre Pty Ltd"	23-Jan-08 10:41 AM	

+="CN56000"	"Person Centric Search Facility"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	31-May-07	5455776.00	=""	="IBM Australia Limited"	23-Jan-08 11:05 AM	

+="CN56001"	"Change Management Taskforce"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	30-Jun-07	2789952.00	=""	="IBM Australia Limited"	23-Jan-08 11:10 AM	

+="CN56002"	"Compliance Services Portal"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	18-May-07	2888458.91	=""	="IBM Australia Limited"	23-Jan-08 11:14 AM	

+="CN56005"	"Correspondence Service"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	22-Jan-07	162826.00	=""	="IBM Australia Limited"	23-Jan-08 11:21 AM	

+="CN56006"	"Compensation Adjustment"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Compensation or benefits planning"	08-Oct-07	08-Oct-07	31000.00	=""	="COMCARE AUSTRALIA"	23-Jan-08 11:24 AM	

+="CN56008"	"Executive Reporting Portal"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	06-Nov-06	31-Dec-06	345250.00	=""	="IBM Australia Limited"	23-Jan-08 11:24 AM	

+="CN56009"	"Security Model"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	21-May-07	2591772.00	=""	="IBM Australia Limited"	23-Jan-08 11:28 AM	

+="CN56010"	"Portal Presentation Layer Design"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Oct-06	30-Dec-06	110897.00	=""	="IBM Australia Limited"	23-Jan-08 11:32 AM	

+="CN56011"	"Electronic Subscription Services"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Computer services"	01-Jul-07	30-Jun-08	30000.00	=""	="EBSCO AUSTRALIA"	23-Jan-08 11:34 AM	

+="CN56012"	"Project Managers"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	13-Nov-06	30-Jun-07	1010473.00	=""	="IBM Australia Limited"	23-Jan-08 11:38 AM	

+="CN56013"	"Hardware Maintenance"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Computer hardware maintenance or support"	17-Nov-07	02-Feb-09	10800.00	=""	="DELL COMPUTER Pty Ltd"	23-Jan-08 11:41 AM	

+="CN56014"	"Interim Upgrade"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	20-Nov-06	15-Dec-06	84058.00	=""	="IBM Australia Limited"	23-Jan-08 11:42 AM	

+="CN56017"	"Central Movement Alert List"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	13-Nov-06	30-Jun-07	417978.00	=""	="IBM Australia Limited"	23-Jan-08 11:56 AM	

+="CN56019"	"Office Supplies"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Office supplies"	30-Sep-07	30-Sep-07	14000.00	=""	="Corporate Express Australia"	23-Jan-08 11:58 AM	

+="CN56020"	"Enterprise Architecture"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	13-Nov-06	22-Dec-06	160342.00	=""	="IBM Australia Limited"	23-Jan-08 11:59 AM	

+="CN56021"	"Audit"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Audit services"	25-Oct-07	25-Oct-07	21400.00	=""	="ACUMEN ALLIANCE (ACT) Pty Ltd"	23-Jan-08 12:02 PM	

+="CN56022"	" Application Framework "	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Nov-06	29-Jun-07	2379414.00	=""	="IBM Australia Limited"	23-Jan-08 12:03 PM	

+="CN56023"	"Platform Lifecycle"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	30-Jun-07	670407.00	=""	="IBM Australia Limited"	23-Jan-08 12:07 PM	

+="CN56024"	"Implement Services Delivery Team"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	13-Nov-06	31-Mar-07	2305064.00	=""	="IBM Australia Limited"	23-Jan-08 12:11 PM	

+="CN56027"	"Tools and Processes"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	13-Nov-06	13-Feb-07	299921.00	=""	="IBM Australia Limited"	23-Jan-08 12:16 PM	

+="CN56026"	"Accommodation - Official Visit"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Hotels and lodging and meeting facilities"	05-Sep-07	13-Dec-07	12400.00	=""	="SOFITEL WENTWORTHS SYDNEY TAHL Pty Ltd T/AS"	23-Jan-08 12:17 PM	

+="CN56028"	"Visa - WHM and W&H"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Nov-06	15-Jan-07	946433.00	=""	="IBM Australia Limited"	23-Jan-08 12:23 PM	

+="CN56029"	"Programme Management Programme Scheduling"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	22-Dec-06	43847.00	=""	="IBM Australia Limited"	23-Jan-08 12:27 PM	

+="CN56030"	"Central Movement Alert List Change Agent"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	30-Jun-07	340854.00	=""	="IBM Australia Limited"	23-Jan-08 12:30 PM	

+="CN56031"	"Seibel Architect"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	15-Dec-06	29096.00	=""	="IBM Australia Limited"	23-Jan-08 12:34 PM	

+="CN56032"	"CLEVIS, ROD END"	="Defence Materiel Organisation"	23-Jan-08	="Clevis"	04-Sep-07	05-Sep-07	12755.82	=""	="RPC TECHNOLOGIES PTY LTD"	23-Jan-08 12:56 PM	

+="CN56033"	"Provision of banking services"	="Family Court of Australia"	23-Jan-08	="Banking institutions"	16-Jan-08	15-Jan-10	70000.00	=""	="Commonwealth Bank"	23-Jan-08 01:04 PM	

+="CN56034"	"Repair of aircraft parts"	="Defence Materiel Organisation"	23-Jan-08	="Aircraft"	23-Jan-08	02-Feb-08	17808.79	=""	="Sikorsky Aircraft Australia Limited"	23-Jan-08 01:16 PM	

+="CN56036"	"Ruleburst Competency Centre"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	22-Dec-06	110320.00	=""	="IBM Australia Limited"	23-Jan-08 01:22 PM	

+="CN56037"	"Business Analyst"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	08-Dec-06	10080.00	=""	="IBM Australia Limited"	23-Jan-08 01:26 PM	

+="CN56038"	"VISA Sub Program"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	12-Jan-07	54415.45	=""	="IBM Australia Limited"	23-Jan-08 01:29 PM	

+="CN56039"	"Platform Lifecycle"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	06-Dec-06	07-Feb-07	152530.91	=""	="IBM Australia Limited"	23-Jan-08 01:33 PM	

+="CN56040"	"VISA Solution Outline"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	15-Jan-07	227069.00	=""	="IBM Australia Limited"	23-Jan-08 01:37 PM	

+="CN56041"	"Technical Upgrade"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	11-Dec-06	31-Jul-07	1885685.80	=""	="IBM Australia Limited"	23-Jan-08 01:42 PM	

+="CN56035"	"IT Stategic Review"	="National Water Commission"	23-Jan-08	="Management advisory services"	01-Oct-07	15-Apr-08	46294.00	=""	="Grosvenor Management Consulting Pty Ltd"	23-Jan-08 01:43 PM	

+="CN56042"	"VISA Sub Program Macro Design Assistance"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Dec-06	12-Jan-07	41505.00	=""	="IBM Australia Limited"	23-Jan-08 01:46 PM	

+="CN56043"	"Revenue Receipting"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	14-Dec-06	28-Feb-07	20088.00	=""	="IBM Australia Limited"	23-Jan-08 01:49 PM	

+="CN56045"	"Executive Reporting Implementation Startup"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	08-Jan-07	09-Feb-07	302263.00	=""	="IBM Australia Limited"	23-Jan-08 01:53 PM	

+="CN56054"	"Initial Ruleburst Engagement"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Jan-07	31-Mar-07	206080.00	=""	="IBM Australia Limited"	23-Jan-08 01:58 PM	

+="CN56055"	"Audit Advice"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Audit services"	29-Aug-07	29-Aug-07	17600.00	=""	="ACUMEN ALLIANCE (ACT) Pty Ltd"	23-Jan-08 01:58 PM	

+="CN56057"	"Printing of Tax Pack 2001 Qty: 5,000."	="Australian Taxation Office"	23-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Jan-08	28-Feb-08	11435.00	=""	="Pirion Printing"	23-Jan-08 02:02 PM	

+="CN56058"	"Initial Ruleburst Engagement Rule Competency"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Jan-07	31-Jan-07	52560.00	=""	="IBM Australia Limited"	23-Jan-08 02:07 PM	

+="CN56059"	"Methods Training"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	19-Dec-06	31-Mar-07	42882.00	=""	="IBM Australia Limited"	23-Jan-08 02:11 PM	

+="CN56061-A2"	"Siebel Software and Maintenance"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	29-Sep-06	31-Aug-09	2200000.00	=""	="IBM Australia Limited"	23-Jan-08 02:15 PM	

+="CN56062-A1"	"Thunderhead Software and Maintenance"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	29-Sep-06	27-Sep-09	1044200.00	=""	="IBM Australia Limited"	23-Jan-08 02:19 PM	

+="CN56064-A2"	"Ruleburst Software and Maintenance"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	28-Sep-06	27-Sep-09	3404910.43	=""	="IBM Australia Limited"	23-Jan-08 02:23 PM	

+="CN56066"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Computer services"	01-Jul-07	30-Jun-08	16600.00	=""	="ALPHAWEST SERVICES Pty Ltd"	23-Jan-08 02:25 PM	

+="CN56068-A3"	"Software and Maintenance"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	28-Sep-06	27-Sep-09	34823967.58	=""	="IBM Australia Limited"	23-Jan-08 02:26 PM	

+="CN56069"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	28-Aug-07	31-Dec-07	10718.00	=""	="Mental Nutrition"	23-Jan-08 02:28 PM	

+="CN56070"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	13-Nov-07	30-Dec-08	1111000.00	=""	="Yellow Edge Pty Ltd"	23-Jan-08 02:28 PM	

+="CN56071"	"Legal Services"	="Australian Public Service Commission"	23-Jan-08	="Legal services"	13-Dec-07	13-Dec-07	13000.90	=""	="Australian Government Solicitor"	23-Jan-08 02:28 PM	

+="CN56072"	"LAIFA Pacific design and delivery"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Dec-07	31-Dec-07	140344.60	=""	="Australian National University"	23-Jan-08 02:28 PM	

+="CN56073"	"Equipment and Support Services"	="Australian Public Service Commission"	23-Jan-08	="Telecommunications media services"	17-Dec-07	04-May-12	71217.63	=""	="Telstra Business Systems"	23-Jan-08 02:28 PM	

+="CN56074"	"Conference"	="Australian Public Service Commission"	23-Jan-08	="Travel and Food and Lodging and Entertainment Services"	20-Dec-07	08-Feb-08	11880.00	=""	="PHC Operations Pty Ltd"	23-Jan-08 02:28 PM	

+="CN56075"	"Coaching Services"	="Australian Public Service Commission"	23-Jan-08	="Human resources services"	21-Dec-07	24-Dec-07	18572.40	=""	="Dominic Downie & Associates"	23-Jan-08 02:28 PM	

+="CN56076"	"Venue hire"	="Australian Public Service Commission"	23-Jan-08	="Travel and Food and Lodging and Entertainment Services"	21-Dec-07	07-Mar-08	15756.00	=""	="Novotel Brighton Beach"	23-Jan-08 02:28 PM	

+="CN56077"	"FMIS Maintenance"	="Australian Public Service Commission"	23-Jan-08	="Software"	02-Jan-08	31-Dec-08	20365.61	=""	="SAP Australia Pty Ltd"	23-Jan-08 02:28 PM	

+="CN56078"	"Research services"	="Australian Public Service Commission"	23-Jan-08	="Management advisory services"	07-Jan-08	30-Jun-08	83026.41	=""	="Orima Research Pty Ltd"	23-Jan-08 02:29 PM	

+="CN56079"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	13200.00	=""	="PALM Consulting Group Pty Ltd"	23-Jan-08 02:29 PM	

+="CN56080"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	11880.00	=""	="AuStrategies Consulting Network"	23-Jan-08 02:29 PM	

+="CN56081"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	13500.00	=""	="Aspire Learning & Development"	23-Jan-08 02:29 PM	

+="CN56082"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	11418.00	=""	="Chris Adams & Associates"	23-Jan-08 02:29 PM	

+="CN56083"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	15600.00	=""	="Shane Carroll & Associates Pty Ltd"	23-Jan-08 02:29 PM	

+="CN56084"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	14-Jan-08	30-Jun-08	28200.00	=""	="People and Strategy (ACT) Pty Ltd"	23-Jan-08 02:29 PM	

+="CN56085"	"Delivery of Training"	="Australian Public Service Commission"	23-Jan-08	="Education and Training Services"	15-Jan-08	30-Jun-08	61050.00	=""	="Results Consulting (Aust) Pty Ltd"	23-Jan-08 02:29 PM	

+="CN56087"	"Computer Hardware"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Computer services"	01-Jul-07	30-Jun-08	49500.00	=""	="Department of Finance & Administration"	23-Jan-08 02:31 PM	

+="CN56089-A4"	"SFP IBM Programme Office SFP060"	="Department of Immigration and Citizenship"	23-Jan-08	="Project management"	01-Oct-06	17-Dec-10	5947861.60	="PCR 02"	="IBM Australia Limited"	23-Jan-08 02:35 PM	

+="CN56091"	"Annual Report Publication"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Publication printing"	01-Jul-07	05-Nov-07	49500.00	=""	="ZOO COMMUNICATIONS Pty Ltd"	23-Jan-08 02:36 PM	

+="CN56092"	"Scribing Services"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Temporary clerical or administrative assistance"	27-Jul-07	27-Jul-07	16700.00	=""	="MAX NETWORK Pty Ltd"	23-Jan-08 02:42 PM	

+="CN56097"	"repair of skylark system"	="Defence Materiel Organisation"	23-Jan-08	="Target or reconnaissance drones"	31-Aug-07	23-Jan-08	33867.35	=""	="flight data systems pty ltd"	23-Jan-08 02:50 PM	

+="CN56099"	"Scribe Services"	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Temporary clerical or administrative assistance"	27-Jul-07	27-Jul-07	12400.00	=""	="MAX NETWORK Pty Ltd"	23-Jan-08 02:52 PM	

+="CN56102"	" Conference facilities "	="Australian Electoral Commission"	23-Jan-08	="Hotels and lodging and meeting facilities"	07-Feb-08	08-Feb-08	17490.00	=""	="Vines Resort and Country Club"	23-Jan-08 02:59 PM	

+="CN56104"	"ANNUAL SERVICE AND TEST OF QTY 70 EBA"	="Department of Defence"	23-Jan-08	="Respiration air supplying self contained breathing apparatus or accessories"	18-Jan-08	03-Mar-08	22785.83	=""	="SCUBANAUTICS DIVING ACADEMY"	23-Jan-08 03:04 PM	

+="CN56107"	"Paper"	="Department of Human Services"	23-Jan-08	="Printer or copier paper"	01-Jul-07	30-Jun-08	45057.10	=""	="Lyreco Pty Ltd"	23-Jan-08 03:07 PM	

+="CN56114"	"Renewal of Windows and Server Licences"	="National Water Commission"	23-Jan-08	="License management software"	10-May-07	10-May-07	35125.11	=""	="Zallcom Pty Ltd"	23-Jan-08 03:21 PM	

+="CN56116"	"motor vehicle spare parts"	="Department of Defence"	23-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-Sep-07	13-Oct-07	10273.66	=""	="PREMIER AUTOMOTIVE GROUP AUST P/L"	23-Jan-08 03:22 PM	

+="CN56117"	"Relocation costs"	="Department of Human Services"	23-Jan-08	="Relocation services"	19-Nov-07	23-Nov-07	26000.00	=""	="Balfran Removals"	23-Jan-08 03:24 PM	

+="CN56118"	"    IT Support Charges - Computer Room Facilities and Help Desk Support - Arising from Prime Minister and Cabinet MOU    "	="National Water Commission"	23-Jan-08	="Computer support organisation"	01-Jul-06	30-Jun-07	36300.00	=""	="Department of PM & C"	23-Jan-08 03:34 PM	

+="CN40306"	"BUILDING MAINTENANCE"	="Office of the Official Secretary to the Governor-General"	23-Jan-08	="Building construction and support and maintenance and repair services"	14-Aug-07	14-Aug-07	37350.50	=""	="HIGGINS COATINGS PTY LTD"	23-Jan-08 03:56 PM	

+="CN56119"	"Training Services"	="Australian Taxation Office"	23-Jan-08	="Education and Training Services"	21-Jan-08	15-Jul-08	38000.00	=""	="Intelligent Futures Pty Ltd"	23-Jan-08 04:00 PM	

+="CN40299"	" CALL CHARGES AUGUST 2007 "	="Office of the Official Secretary to the Governor-General"	23-Jan-08	="Local and long distance telephone communications"	02-Sep-07	02-Sep-07	11048.14	=""	="TELSTRA"	23-Jan-08 04:02 PM	

+="CN40300"	"CALL CHARGES JULY 2007"	="Office of the Official Secretary to the Governor-General"	23-Jan-08	="Local and long distance telephone communications"	01-Aug-07	01-Aug-07	13994.44	=""	="TELSTRA"	23-Jan-08 04:05 PM	

+="CN56122"	" SCRIBE SERVICES "	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Temporary personnel services"	24-Jul-07	27-Jan-08	15600.00	=""	="MAX NETWORK Pty Ltd"	23-Jan-08 04:06 PM	

+="CN56127"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	23-Jan-08	="Motor vehicles"	23-Jan-08	26-Jan-08	11260.78	=""	="PREMIER AUTO GROUP"	23-Jan-08 04:15 PM	

+="CN38180"	"WORKERS COMPENSATION INSURANCE"	="Office of the Official Secretary to the Governor-General"	23-Jan-08	="Insurance and retirement services"	01-Jul-07	01-Jul-07	258216.00	=""	="COMCARE"	23-Jan-08 04:25 PM	

+="CN56128"	" Consultancy Services "	="Department of the Prime Minister and Cabinet"	23-Jan-08	="Business and corporate management consultation services"	01-Oct-07	31-Oct-07	13800.00	=""	="CORDELTA Pty Ltd as T'EE for CORDELTA UNIT TRUST"	23-Jan-08 04:42 PM	

+="CN56129"	"Services Realisation Review"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	08-Jan-07	19-Jan-07	24118.00	=""	="IBM Australia Limited"	23-Jan-08 04:44 PM	

+="CN56130"	"qty 30 loudspeaker permanent magnets; qty 50 electrical connector receptacle; qty 150 nonmetallic bushing; spares for military radios."	="Defence Materiel Organisation"	23-Jan-08	="Electrical components"	18-Jan-08	13-Jun-08	10255.30	="C7069"	="BAE Systems Australia Ltd"	23-Jan-08 04:47 PM	

+="CN56131"	" Production of Educational Materials "	="Department of Immigration and Citizenship"	23-Jan-08	="Educational stickers and supplies"	17-Apr-07	17-Sep-07	80054.70	=""	="The Trustee for THE MARRON FAMILY TRUST (trading as Kids Media Pty Ltd)"	23-Jan-08 04:47 PM	

+="CN56132"	"Working Holiday Maker Build"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	15-Jan-07	01-Jun-07	2011284.00	=""	="IBM Australia Limited"	23-Jan-08 04:48 PM	

+="CN56016"	" Communication Services "	="Department of Immigration and Citizenship"	23-Jan-08	="Components for information technology or broadcasting or telecommunications"	15-Nov-07	15-May-08	11000.00	=""	="Vodafone Limited"	23-Jan-08 04:51 PM	

+="CN56134"	"Visa Macro Design"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	15-Jan-07	15-Mar-07	1411420.00	=""	="IBM Australia Limited"	23-Jan-08 04:52 PM	

+="CN56135"	"qty 100 radio frequency cable assemblies, spares for use with military radios."	="Defence Materiel Organisation"	23-Jan-08	="Electrical wire and cable and harness"	22-Jan-08	11-Mar-08	18225.90	="C7054"	="Radio Frequency Systems Aust"	23-Jan-08 04:54 PM	

+="CN56136-A1"	"Financial Management Information System Sofeware Implementation"	="National Water Commission"	23-Jan-08	="Software maintenance and support"	12-Jun-07	31-Dec-07	35464.00	=""	="Dynamic Edge Pty Ltd"	23-Jan-08 04:58 PM	

+="CN56137"	" Department of Imigration and Citizenship Testing Review "	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	17-Jan-07	07-Feb-07	40900.00	=""	="IBM Australia Limited"	23-Jan-08 05:00 PM	

+="CN56139"	" Detention/Offshore Data Entry Analysis Services "	="Department of Immigration and Citizenship"	23-Jan-08	="Business administration services"	18-Sep-07	31-Oct-07	42075.00	=""	="SMS Consulting Group Ltd"	23-Jan-08 05:02 PM	

+="CN56140"	"Methods Training"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	04-Jan-07	31-Mar-07	42882.00	=""	="IBM Australia Limited"	23-Jan-08 05:04 PM	

+="CN56141"	"Client Centric Suub Programme Solution Outline"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	18-Dec-06	09-Feb-07	93771.00	=""	="IBM Australia Limited"	23-Jan-08 05:09 PM	

+="CN56142"	"Platform Lifecycle Support"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	22-Jan-07	30-Jun-07	2900934.00	=""	="IBM Australia Limited"	23-Jan-08 05:12 PM	

+="CN56143"	"Common Security Services"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	22-Jan-07	02-Mar-07	254470.00	=""	="IBM Australia Limited"	23-Jan-08 05:16 PM	

+="CN56144"	"Exception Processing Solution Outline"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	11-Dec-06	13-Jan-07	197354.00	=""	="IBM Australia Limited"	23-Jan-08 05:20 PM	

+="CN56145"	"Siebel Method Exponent Analysis"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	21-Feb-07	28-Feb-07	14150.00	=""	="IBM Australia Limited"	23-Jan-08 05:24 PM	

+="CN56146"	"Exception Processing Micro Design"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	12-Feb-07	16-Mar-07	821290.00	=""	="IBM Australia Limited"	23-Jan-08 05:28 PM	

+="CN56147"	"Macro Design"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	12-Feb-07	17-Mar-07	387040.00	=""	="IBM Australia Limited"	23-Jan-08 05:32 PM	

+="CN56148"	"Security Roles Support"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	08-Feb-07	31-Mar-07	168508.00	=""	="IBM Australia Limited"	23-Jan-08 05:38 PM	

+="CN56149"	"Services Delivery - Service Oriented Modelling and Architecture"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	12-Feb-07	30-Jun-07	212455.00	=""	="IBM Australia Limited"	23-Jan-08 05:41 PM	

+="CN56150"	"Exception Processing Macro Design"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	08-Jan-07	10-Feb-07	583116.00	=""	="IBM Australia Limited"	23-Jan-08 05:46 PM	

+="CN56151"	"Sub Programme Implementation Start Up"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	05-Feb-07	02-Mar-07	411718.00	=""	="IBM Australia Limited"	23-Jan-08 05:49 PM	

+="CN56152"	"Services Delivery Extension"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Jan-07	31-Mar-07	84660.00	=""	="IBM Australia Limited"	23-Jan-08 05:53 PM	

+="CN56153"	"Siebel Environment Build for Detention Services"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	29-Jan-07	17-Mar-07	27920.00	=""	="IBM Australia Limited"	23-Jan-08 05:56 PM	

+="CN56154"	"Rule Competency Centre Extension"	="Department of Immigration and Citizenship"	23-Jan-08	="Temporary information technology software developers"	01-Feb-07	31-Mar-07	92880.00	=""	="IBM Australia Limited"	23-Jan-08 05:59 PM	

+="CN56155"	"Crane Floor Portable 1500kg capacity"	="Defence Materiel Organisation"	24-Jan-08	="Lifting equipment and accessories"	23-Jan-08	02-Apr-08	43296.00	=""	="Larzep Australia Pty Ltd"	24-Jan-08 08:37 AM	

+="CN56047"	" Supply and install workstations - 38 Sydney Ave "	="Department of Broadband Communications and the Digital Economy"	24-Jan-08	="Building and Construction and Maintenance Services"	04-Dec-07	30-Jun-08	22293.70	="ATM07/721"	="Schiavello (ACT) Pty Ltd"	24-Jan-08 08:38 AM	

+="CN56156"	"motor vehicle spare parts"	="Department of Defence"	24-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Jan-08	22-Feb-08	24998.05	=""	="Rover Australia"	24-Jan-08 08:39 AM	

+="CN56056-A1"	"International Telecommunication Union Membership 2008"	="Department of Broadband Communications and the Digital Economy"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	4236523.88	="ATM07/718"	="International Telecommunications"	24-Jan-08 08:39 AM	

+="CN56157"	"SODIUM NITRITE INJECTION 3PCT (0.3GM) 10ML, PACK OF 5 AMPOULES"	="Defence Materiel Organisation"	24-Jan-08	="Medical health associations"	11-Jan-08	01-Feb-08	36905.00	=""	="HOSPIRA PTY LTD"	24-Jan-08 08:59 AM	

+="CN56159"	"Purchase off Standing Offer - NCC284/01 for the supply of Various Insignia."	="Defence Materiel Organisation"	24-Jan-08	="Badges"	23-Jan-08	15-Jun-08	366344.00	=""	="Nichol Industries"	24-Jan-08 09:18 AM	

+="CN56160"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	24-Jan-08	="Medical health associations"	22-Jan-08	03-Mar-08	26408.29	=""	="SYMBION PHARMACY SERVICES"	24-Jan-08 09:19 AM	

+="CN56164"	"Audit Services"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Audit services"	25-Oct-07	25-Oct-07	21400.00	=""	="OAKTON AA SERVICES Pty Ltd"	24-Jan-08 09:36 AM	

+="CN54683"	"Motor Vehicle Parts."	="Department of Defence"	24-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	10-Jan-08	09-Feb-08	34583.45	=""	="LandRover Australia"	24-Jan-08 10:07 AM	

+="CN56169"	"Motor Vehicle Parts."	="Department of Defence"	24-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Jan-08	22-Feb-08	29165.61	=""	="Mercedes Benz Aust. Pacific"	24-Jan-08 10:13 AM	

+="CN56172"	"In-house training for programme development"	="CrimTrac"	24-Jan-08	="Labour training or development"	20-Dec-07	18-Jan-08	21450.00	=""	="Tanner James Managment Consultants"	24-Jan-08 10:18 AM	

+="CN56173"	"Computing support"	="CrimTrac"	24-Jan-08	="Network applications software"	20-Dec-07	30-Jun-08	30800.00	=""	="Excelerated Consulting Pty Ltd"	24-Jan-08 10:19 AM	

+="CN56175"	"Contractor"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	136136.00	=""	="Face 2 Face Recruitment Pty Limited"	24-Jan-08 10:19 AM	

+="CN56176"	"Contractor"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	104000.00	=""	="SMS Consulting Group Limited"	24-Jan-08 10:19 AM	

+="CN56177"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	23-Nov-07	30-Jun-08	114400.00	=""	="SMS Consulting Group Limited"	24-Jan-08 10:19 AM	

+="CN56178"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	107536.00	=""	="SMS Consulting Group Limited"	24-Jan-08 10:19 AM	

+="CN56179"	"Consultancy services"	="CrimTrac"	24-Jan-08	="Strategic planning consultation services"	13-Dec-07	30-Jun-08	50000.01	=""	="Yellow Edge Pty Ltd"	24-Jan-08 10:19 AM	

+="CN56180"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	120120.00	=""	="Apis Consulting Group"	24-Jan-08 10:20 AM	

+="CN56181"	"Rent"	="CrimTrac"	24-Jan-08	="Site offices"	20-Nov-07	30-Jun-08	74228.00	=""	="Ray White Commercial"	24-Jan-08 10:20 AM	

+="CN56182"	"Computer equipment"	="CrimTrac"	24-Jan-08	="Computer servers"	21-Nov-07	31-Dec-07	20764.70	=""	="Dataflex Pty Ltd"	24-Jan-08 10:20 AM	

+="CN56183"	"Consultancy work"	="CrimTrac"	24-Jan-08	="Strategic planning consultation services"	10-Dec-07	30-Jun-08	20000.00	=""	="Strategic Directions"	24-Jan-08 10:20 AM	

+="CN56185"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	99100.00	=""	="Finite IT Recruitment Solutions"	24-Jan-08 10:20 AM	

+="CN56186"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	117832.00	=""	="Finite IT Recruitment Solutions"	24-Jan-08 10:20 AM	

+="CN56187"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	112112.00	=""	="Finite IT Recruitment Solutions"	24-Jan-08 10:21 AM	

+="CN56188"	"SQL LIMS Software"	="CrimTrac"	24-Jan-08	="Software"	09-Nov-07	30-Jun-08	61929.56	=""	="Applied Biosystems Pty Ltd"	24-Jan-08 10:21 AM	

+="CN56189"	"Expansion to Tape library"	="CrimTrac"	24-Jan-08	="Computer servers"	20-Nov-07	20-Nov-07	80660.18	=""	="Sun Microsystems"	24-Jan-08 10:21 AM	

+="CN56191"	"Asset purcahses"	="CrimTrac"	24-Jan-08	="Office Equipment and Accessories and Supplies"	06-Dec-07	06-Dec-07	102064.74	=""	="Australian Federal Police"	24-Jan-08 10:21 AM	

+="CN56196"	"Computer equipment"	="CrimTrac"	24-Jan-08	="Desktop computers"	12-Dec-07	12-Dec-07	46804.18	=""	="Infront Systems Pty Ltd"	24-Jan-08 10:22 AM	

+="CN56197"	"Computer equipment"	="CrimTrac"	24-Jan-08	="Desktop computers"	12-Nov-07	27-Nov-07	17538.51	=""	="Infront Systems Pty Ltd"	24-Jan-08 10:22 AM	

+="CN56198"	"Computer equipment"	="CrimTrac"	24-Jan-08	="Desktop computers"	07-Dec-07	12-Dec-07	22009.17	=""	="Infront Systems Pty Ltd"	24-Jan-08 10:22 AM	

+="CN56199"	"Computer equipment"	="CrimTrac"	24-Jan-08	="Desktop computers"	07-Dec-07	12-Dec-07	12465.12	=""	="Infront Systems Pty Ltd"	24-Jan-08 10:22 AM	

+="CN56200"	"Payment for service delivery"	="CrimTrac"	24-Jan-08	="Governmental credit agencies"	17-Dec-07	30-Jun-08	373653.50	=""	="Victoria Police"	24-Jan-08 10:23 AM	

+="CN56203"	"Office fit-out"	="CrimTrac"	24-Jan-08	="Site offices"	09-Nov-07	31-Dec-07	337649.90	=""	="Comsuper"	24-Jan-08 10:23 AM	

+="CN56204"	"Sublease Rent"	="CrimTrac"	24-Jan-08	="Site offices"	21-Nov-07	30-Jun-08	173187.50	=""	="Comsuper"	24-Jan-08 10:23 AM	

+="CN56207"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	20-Dec-07	30-Jun-08	194024.16	=""	="Paxus Australia Pty Ltd"	24-Jan-08 10:23 AM	

+="CN56208"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	143000.00	=""	="Paxus Australia Pty Ltd"	24-Jan-08 10:24 AM	

+="CN56209"	"Computer equipment support, storage management, and accomodation"	="CrimTrac"	24-Jan-08	="Computer hardware maintenance or support"	20-Dec-07	01-Dec-08	579024.87	=""	="Department of Defence"	24-Jan-08 10:24 AM	

+="CN56213"	"Software support"	="CrimTrac"	24-Jan-08	="Software"	20-Dec-07	30-Jun-08	1235947.90	=""	="SAGEM SA Australian Branch"	24-Jan-08 10:24 AM	

+="CN56214"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	84656.00	=""	="Peoplebank Recruitment Pty Ltd"	24-Jan-08 10:24 AM	

+="CN56216"	"Service level agreement"	="CrimTrac"	24-Jan-08	="Software maintenance and support"	10-Dec-07	30-Jun-08	99550.00	=""	="Gartner Australasia Pty Limited"	24-Jan-08 10:25 AM	

+="CN56217"	"Intranet Development"	="CrimTrac"	24-Jan-08	="Network applications software"	08-Nov-07	30-Jun-08	78161.60	=""	="Dimension Data Australia Pty Ltd"	24-Jan-08 10:25 AM	

+="CN56218"	"Telephone support"	="CrimTrac"	24-Jan-08	="Digital telephones"	23-Nov-07	30-Jun-08	11000.00	=""	="Dimension Data Australia Pty Ltd"	24-Jan-08 10:25 AM	

+="CN56219"	"Phones"	="CrimTrac"	24-Jan-08	="Digital telephones"	11-Dec-07	11-Dec-07	21098.75	=""	="Dimension Data Australia Pty Ltd"	24-Jan-08 10:25 AM	

+="CN56220"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	10-Dec-07	30-Jun-08	125840.00	=""	="GMT People"	24-Jan-08 10:25 AM	

+="CN56221"	"QANTAS Airfares"	="CrimTrac"	24-Jan-08	="Passenger transport"	20-Nov-07	31-Dec-08	65157.07	=""	="Qantas AMEX Bus Travel Account"	24-Jan-08 10:26 AM	

+="CN56222"	"Airfares"	="CrimTrac"	24-Jan-08	="Passenger transport"	20-Dec-07	30-Jun-08	83325.10	=""	="Qantas AMEX Bus Travel Account"	24-Jan-08 10:26 AM	

+="CN56223"	"Software presentation"	="CrimTrac"	24-Jan-08	="Network applications software"	18-Dec-07	30-Jun-08	11880.00	=""	="Tier-3 Pty Limited"	24-Jan-08 10:26 AM	

+="CN56226"	"Consultancy services"	="CrimTrac"	24-Jan-08	="Strategic planning consultation services"	17-Dec-07	30-Jun-08	22000.00	=""	="PricewaterhouseCoopers"	24-Jan-08 10:26 AM	

+="CN56227"	"Consultancy"	="CrimTrac"	24-Jan-08	="Strategic planning consultation services"	06-Dec-07	30-Jun-08	33000.00	=""	="PricewaterhouseCoopers"	24-Jan-08 10:26 AM	

+="CN56228"	"Contractor services"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	185440.00	=""	="Consultel ITT Pty Ltd"	24-Jan-08 10:26 AM	

+="CN56230"	"Management assistance"	="CrimTrac"	24-Jan-08	="Temporary personnel services"	18-Dec-07	30-Jun-08	60960.00	=""	="SRA Information Technology Pty Ltd"	24-Jan-08 10:27 AM	

+="CN56231"	"Office stationary"	="CrimTrac"	24-Jan-08	="Office supplies"	12-Dec-07	30-Jun-08	10860.05	=""	="Corporate Express Australia Ltd"	24-Jan-08 10:27 AM	

+="CN56234"	"NEW PO FOLLOWING AAO CHANGES old PO 0675"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-05	30-Jun-08	184335.95	=""	="LYSIANA PTY LTD"	24-Jan-08 10:32 AM	

+="CN56235"	"GC-MS UPGRADE"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	03-Dec-07	11-Jan-08	10969.22	=""	="AGILENT TECHNOLOGIES AUST PTY"	24-Jan-08 10:32 AM	

+="CN56236"	"Light Scattering Detector"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	03-Dec-07	11-Jan-08	32023.20	=""	="WATERS AUSTRALIA PTY LTD"	24-Jan-08 10:32 AM	

+="CN56237"	"Gas chromatograph Flame Ionisation Unit"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	03-Dec-07	25-Jan-08	37305.91	=""	="AGILENT TECHNOLOGIES AUST PTY"	24-Jan-08 10:32 AM	

+="CN56238"	"Contractor - For the Period 3/12/07 to 7/3/08 DI"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer services"	03-Dec-07	31-Mar-08	53592.00	=""	="GREYTHORN PTY LTD"	24-Jan-08 10:32 AM	

+="CN56239"	"Contractor - For the Period 3/12/07 to 7/3/08 D"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer services"	03-Dec-07	31-Mar-08	57120.00	=""	="PEOPLEBANK"	24-Jan-08 10:33 AM	

+="CN56240"	"Creative Development of ads for Japan Buy"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Advertising"	03-Jan-08	03-Jan-08	15195.00	=""	="ADEX NIHON KEIZAI ADVERTISING CO LTD"	24-Jan-08 10:33 AM	

+="CN56241"	"GC WITH PLOT COLUMNS AND TCD VARIAN AUST"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	03-Jan-08	18-Jan-08	41657.00	=""	="VARIAN AUSTRALIA PTY LTD"	24-Jan-08 10:33 AM	

+="CN56242"	"Temp staff  IA02/00056"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Human resources services"	03-Jan-08	30-Apr-08	24524.50	=""	="COMMUNIQUE AUSTRALASIA PTY LIMITED"	24-Jan-08 10:33 AM	

+="CN56243"	"fRAUD iNVESTIGATION cn:10/2007-08 wALTERtURNBULL c07/14094"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	14-Dec-07	10500.00	=""	="WALTER and TURNBULL"	24-Jan-08 10:33 AM	

+="CN56244"	"Develop Business Case for ABN Project  C07/13545"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	29-Feb-08	199190.28	=""	="ERNST and YOUNG (CANBERRA)"	24-Jan-08 10:33 AM	

+="CN56245"	"Provision of financial services  C07/08410"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Accounting and auditing"	07-Jan-07	30-Jun-08	66990.00	=""	="WALTER and TURNBULL"	24-Jan-08 10:34 AM	

+="CN56246"	"BAX Q7 Automated PCR  Applied Biosystems"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	07-Jan-08	29-Feb-08	57750.00	=""	="APPLIED BIOSYSTEMS PTY LTD"	24-Jan-08 10:34 AM	

+="CN56247"	"Copyright and Digital Licence Fees 01/07/06 to 30/06/07 07/100"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	30-Jan-08	44491.20	=""	="COPYRIGHT AGENCY LTD"	24-Jan-08 10:34 AM	

+="CN56248"	"SET OF CURRENT SHUNTS Physikalisch Technischer prufdienst PO"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	08-Dec-07	08-Dec-07	15000.00	=""	="PHYSIKALISCH TECHNISCHER PRUFDIENST"	24-Jan-08 10:34 AM	

+="CN56249"	"Force transducer used a s a tension transfer force std"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	08-Jan-08	23-Jan-08	19500.00	=""	="GASSMAN TESTING AND METROLOGY GMBH"	24-Jan-08 10:34 AM	

+="CN56250"	"Forensic It Assistance Fraud Investigation - #2320 C07/13666"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	28-Mar-08	20000.00	=""	="ERNST and YOUNG (CANBERRA)"	24-Jan-08 10:34 AM	

+="CN56251"	"3rd Qtr CSS/PSS and PPSap fees FY 07/08 ending March 08 C98/"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	31-Jan-08	96339.75	=""	="COMSUPER"	24-Jan-08 10:34 AM	

+="CN56252"	"2008 Flagship Design IA02/00056  IA02/00056"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Marketing and distribution"	09-Jan-08	31-Jan-08	14849.45	=""	="SWELL DESIGN GROUP"	24-Jan-08 10:35 AM	

+="CN56253"	"Efficiency Review of the COMET Program  C07/06497"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management advisory services"	10-Aug-07	28-Sep-07	76725.00	=""	="PROTIVITI PTY LTD"	24-Jan-08 10:35 AM	

+="CN56254"	"Built drawings NMI, Pymble L1"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Building and Construction and Maintenance Services"	10-Jan-08	30-Jun-08	17300.80	=""	="HIROTEC MAINTENANCE P/L"	24-Jan-08 10:35 AM	

+="CN56255"	"Dry Block/Stirred Liquid Bath"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	10-Jan-08	31-Jan-08	14319.80	=""	="TEMPERATURE CONTROLS P/L"	24-Jan-08 10:35 AM	

+="CN56256"	"Dell Latitude D430 (XP) Laptop TP4857 C05/06800"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer Equipment and Accessories"	10-Jan-08	31-Jan-08	20804.67	=""	="DELL AUSTRALIA"	24-Jan-08 10:35 AM	

+="CN56257"	"Project Management"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	31-Jan-08	12654.91	=""	="WILDE AND WOOLLARD"	24-Jan-08 10:35 AM	

+="CN56258"	"NATA Assessment of acoustic, vibration ultrasonic project IN"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	31-Jan-08	16683.03	=""	="NATIONAL ASSOCIATION OF"	24-Jan-08 10:35 AM	

+="CN56259"	"Construction advice - 341 George St NSW  Prop Claims 07/08"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	11138.49	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	24-Jan-08 10:36 AM	

+="CN56260"	"Construction advice - 341 George St NSW  Prop Claims 07/08"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Building and Construction and Maintenance Services"	12-Dec-07	30-Jun-08	24064.49	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	24-Jan-08 10:36 AM	

+="CN56261"	"Architectural and Consultant Services 341 George Street NSW -"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Professional engineering services"	12-Dec-07	30-Jun-08	234146.00	=""	="TANNER ARCHITECTS"	24-Jan-08 10:36 AM	

+="CN56262"	"Chemistry Data base Chemical Abstracts Service 90439542 Req."	="Department of Industry, Tourism and Resources"	24-Jan-08	="Electronic reference material"	12-Dec-07	31-Dec-07	10220.00	=""	="CHEMICAL ABSTRACTS SERVICE"	24-Jan-08 10:36 AM	

+="CN56263"	"Comcare Adjustment  C05/11779"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Jan-08	49264.00	=""	="IP AUSTRALIA"	24-Jan-08 10:36 AM	

+="CN56265"	"Comcare Adjustment  C05/11779"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Jan-08	122663.00	=""	="GEOSCIENCE AUSTRALIA - NAT MAPPING DIV"	24-Jan-08 10:36 AM	

+="CN56267"	"Assessment of Grant Applications -G/O  MEC ADMIN 07/08 PO FO"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management advisory services"	12-Nov-07	23-Nov-07	50000.00	=""	="WALTER and TURNBULL"	24-Jan-08 10:37 AM	

+="CN56268"	"Project Management and Design Development 100 Creek Street Bri"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Professional engineering services"	13-Dec-07	30-Jun-08	43780.00	=""	="INTERIORS AUSTRALIA"	24-Jan-08 10:37 AM	

+="CN56269"	"Legal advice Mallesons Stephen Jaques"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Legal services"	14-Jan-08	01-Jun-08	14850.00	=""	="MALLESONS STEPHEN JAQUES"	24-Jan-08 10:37 AM	

+="CN56270"	"Vehicle leasing, fuel, insurance excess and fuel interest char"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	30-Jun-08	33143.88	=""	="LEASEPLAN"	24-Jan-08 10:37 AM	

+="CN56271"	"Fraud Investigation Case # 15/2007-08 07/00108"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	16500.00	=""	="WALTER and TURNBULL"	24-Jan-08 10:37 AM	

+="CN56272"	"Internal Audit - Fraud Unit Walter Turnbull 07/04013"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	29900.00	=""	="WALTER and TURNBULL"	24-Jan-08 10:37 AM	

+="CN56273"	"National Capital Printing and CMW Storage"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Marketing and distribution"	17-Dec-07	31-Dec-07	17694.22	=""	="COMPLETE MAIL and WAREHOUSING"	24-Jan-08 10:38 AM	

+="CN56274"	"Leadership Across Borders Programme 2008 Registration for Su"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Education and Training Services"	17-Feb-08	30-Sep-08	26800.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	24-Jan-08 10:38 AM	

+="CN56266"	"Supply of Various Insignia - NCC281/01"	="Defence Materiel Organisation"	24-Jan-08	="Badges"	21-Jan-08	15-Jun-08	154912.45	=""	="Nichol Industries"	24-Jan-08 10:38 AM	

+="CN56276"	"Industrial Chasis and DC input ICP Electronics ICPQ2007 6959_1"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory supplies and fixtures"	17-Jan-08	15-Feb-08	10967.00	=""	="ICP ELECTRONICS AUSTRALIA PTY LTD"	24-Jan-08 10:38 AM	

+="CN56277"	"Serial ports,output,antenna and amplifier GlobalPos Qt# 1110 R"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	17-Jan-08	15-Feb-08	24888.60	=""	="GLOBALPOS PTY LTD"	24-Jan-08 10:38 AM	

+="CN56278"	"Hand held analyzer with sound level meter from Bruel and kjaer"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and scientific equipment"	18-Dec-07	18-Dec-07	10180.50	=""	="BRUEL and KJAER AUSTRALIA"	24-Jan-08 10:38 AM	

+="CN56279"	"TWO SUN SPARC COMPUTERS DD 14/11/07 S"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	14-Dec-07	11616.40	=""	="REMORA TECHNOLOGIES PTY LTD"	24-Jan-08 10:38 AM	

+="CN56280"	"Professional dev for teaching of biotechnology Innov Div PO"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	20020.00	=""	="MONASH INSTITUTE OF MEDICAL RESEARCH"	24-Jan-08 10:38 AM	

+="CN56282"	"Staff Relocation Costs C07/87459"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Human resources services"	18-Jan-08	31-Jan-08	12017.87	=""	="TOLL TRANSITIONS"	24-Jan-08 10:38 AM	

+="CN56284"	"JLLasalle Facilities Management Fees for Dec 2007, 210006869"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	11-Jan-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	24-Jan-08 10:39 AM	

+="CN56285"	"Project Management - John Kent Wilde and Woollard"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Jan-08	10070.06	=""	="WILDE AND WOOLLARD"	24-Jan-08 10:39 AM	

+="CN56286"	"Placement fee  C07/08410"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Human resources services"	19-Dec-07	31-Jan-08	16469.64	=""	="CANTLIE RECRUITMENT SERVICES PTY LTD"	24-Jan-08 10:39 AM	

+="CN56287"	"BUSINESS WEEK USA 25/02/08, 24/03/08, 21/04/08 IA07/00287"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Advertising"	19-Nov-07	30-Apr-08	176115.00	=""	="HMA BLAZE PTY LTD"	24-Jan-08 10:39 AM	

+="CN56288"	"BUSINESS WEEK - USA 28/01/08 IA07/00287"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Advertising"	19-Nov-07	31-Jan-08	59881.00	=""	="HMA BLAZE PTY LTD"	24-Jan-08 10:39 AM	

+="CN56289"	"Provision of MS Sharepoint/Infopath 2007 Development Assista"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer services"	20-Dec-07	29-Feb-08	11880.00	=""	="UNIQUE WORLD PTY LTD"	24-Jan-08 10:39 AM	

+="CN56290"	"BUSINESS VOICE 16/10, 16/11, 15/02, 14/03, 15/04, 13/05 IA07"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Advertising"	20-Nov-07	31-May-08	43686.00	=""	="HMA BLAZE PTY LTD"	24-Jan-08 10:39 AM	

+="CN56291"	"FINANCIAL NEWS OCT 07 - MAY 08 IA07/00435"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Advertising"	20-Nov-07	31-May-08	127464.00	=""	="HMA BLAZE PTY LTD"	24-Jan-08 10:39 AM	

+="CN56292"	"AusIndustry National Training Program"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Human resources services"	21-Dec-07	20-Nov-09	70000.00	=""	="DLA PHILLIPS FOX"	24-Jan-08 10:40 AM	

+="CN56293"	"nmr sPECTROSCOPY sERVICES"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	19360.00	=""	="THE UNIVERSITY OF NEW SOUTH WALES"	24-Jan-08 10:40 AM	

+="CN56294"	"pURCHASE OF cISCO 11502 cONTENT sWITCH  c04/01986"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Computer Equipment and Accessories"	21-Dec-07	31-Dec-07	19236.42	=""	="DELL AUSTRALIA"	24-Jan-08 10:40 AM	

+="CN56295"	"Disposable Columns"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory supplies and fixtures"	22-Nov-07	30-Jun-08	12100.00	=""	="FLUID MANAGEMENT SYSTEMS INC"	24-Jan-08 10:40 AM	

+="CN56296"	"4 x Single-sided Panorama Dislay Systems  Q05/01"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Merchandising furniture and accessories"	23-Nov-07	04-Jan-08	11000.00	=""	="TOUCAN DISPLAY SYSTEMS INT P/L"	24-Jan-08 10:40 AM	

+="CN56297"	"New Office Building Works L11 Terrace Towers Adelaide - SA P"	="Department of Industry, Tourism and Resources"	24-Jan-08	="General building construction"	24-Aug-07	24-Oct-07	47971.00	=""	="ALL-BUILD COMMERCIAL INTERIORS P/L"	24-Jan-08 10:40 AM	

+="CN56298"	"FILE CENSUS  C07/13483"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Transportation and Storage and Mail Services"	28-Nov-07	30-Jun-08	10000.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	24-Jan-08 10:40 AM	

+="CN56299"	"INNOVATION IN THE SERVICES SECTOR RESEARCH PROJECT MODULE 1"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	60000.00	=""	="EUROPEAN TOUCH LTD"	24-Jan-08 10:40 AM	

+="CN56300"	"Analysis of Effects of Foreign Ownership on Knowledge Transf"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	20075.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	24-Jan-08 10:41 AM	

+="CN56301"	"Managing Complex Situations Design, delivery and evaluation"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Education and Training Services"	31-Jan-08	31-Jan-08	16286.00	=""	="PERFORMGROUP PTY LTD"	24-Jan-08 10:41 AM	

+="CN56302"	"Kestrel Media (DVD Production)  DIISR/08/00194"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Editorial and Design and Graphic and Fine Art Services"	31-Jan-08	31-Jan-08	12991.33	=""	="KESTREL MEDIA COMPANY PTY LTD"	24-Jan-08 10:41 AM	

+="CN56303"	"CJC PRIVATE BANKING REPORT  IA07/00453"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management advisory services"	31-Oct-07	31-Jan-08	33000.00	=""	="CHIPMAN JAMES and COMPANY PTY LIMITED"	24-Jan-08 10:41 AM	

+="CN56304"	"E2WG,CandI,EEBP,contract number 2159 develop new best prac cas"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Environmental Services"	01-May-07	30-Apr-08	51646.00	=""	="HYDRO TASMANIA"	24-Jan-08 10:47 AM	

+="CN56305"	"EMRWG,CandI,Energy EfficiencyExchange(EEX) Dev.Info Website to"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Environmental Services"	05-Dec-06	30-Apr-08	123600.00	=""	="HYDRO TASMANIA"	24-Jan-08 10:47 AM	

+="CN56306"	"Laptops to replace old ones  180707"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Trade policy and services"	18-Jul-07	20-Jul-07	11440.00	=""	="ENERTECH AUSTRALIA P/L"	24-Jan-08 10:47 AM	

+="CN56307"	"Defibrillators heart machine CSIRO 386036"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	18-Jul-07	27-Jul-07	21587.50	=""	="BRANZ PTY LTD"	24-Jan-08 10:48 AM	

+="CN56308"	"Global Opportunities Workshop Canberra 5 and 6 September 2007"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	28-Sep-07	55000.00	=""	="WARREN CTR FOR ADV ENGINEERING"	24-Jan-08 10:48 AM	

+="CN56310"	"A/V equipment VICSO fitout  Property Claims 07/08"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jul-07	31-Jul-07	17110.00	=""	="SUSTAINABLE SOLUTIONS"	24-Jan-08 10:48 AM	

+="CN56311"	"Professional fees - VICSO Fit out  Property Claims 07/08"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Business administration services"	18-Jul-07	31-Jul-07	20625.84	=""	="SUSTAINABILIITY VICTORIA"	24-Jan-08 10:48 AM	

+="CN56312"	"Cost Benefit Anaylsis of Smart Meters Project 2007-021 C07/0"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	30-Jun-08	156000.00	=""	="KPMG (NSW)"	24-Jan-08 10:48 AM	

+="CN56313"	"Engagement of Consultant as Chair of Gas Market Leaders Gp -"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	30-Jun-08	71000.00	=""	="WOODLEY, TED"	24-Jan-08 10:48 AM	

+="CN56314"	"Stakeholder forum Sept 07 EMRWG c06/11564"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Business administration services"	20-Sep-07	27-Sep-07	17974.00	=""	="NERA AUSTRALIA PTY LTD"	24-Jan-08 10:49 AM	

+="CN56315"	"E2WG,Consumer Implementatn Committee, Energy Bill disclosure"	="Department of Industry, Tourism and Resources"	24-Jan-08	="Environmental Services"	28-Nov-07	31-Dec-07	22500.00	=""	="NETWORK ADVISORY SERVICES PTY LTD"	24-Jan-08 10:49 AM	

+="CN56316"	"Audit Services"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Audit services"	29-Aug-07	29-Aug-07	17600.00	=""	="OAKTON AA SERVICES Pty Ltd"	24-Jan-08 11:01 AM	

+="CN56317"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	24-Jan-08	="Medical health associations"	22-Jan-08	03-Mar-08	62460.45	=""	="SYMBION PHARMACY SERVICES"	24-Jan-08 11:01 AM	

+="CN56319"	"Fitout Furniture"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Accommodation furniture"	01-Jul-07	31-Dec-07	15500.00	=""	="DE DE CE"	24-Jan-08 11:07 AM	

+="CN56320"	" Supply of Assaulter Bags "	="Defence Materiel Organisation"	24-Jan-08	="Bags"	14-Jan-08	29-May-08	297000.00	=""	="Platapus Outdoors Group"	24-Jan-08 11:09 AM	

+="CN56323"	"Fitout - Furniture"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Accommodation furniture"	04-Jun-07	30-Sep-07	25400.00	=""	="DE DE CE"	24-Jan-08 11:14 AM	

+="CN56324"	" AIRCRAFT COMPONENT "	="Defence Materiel Organisation"	24-Jan-08	="Anti submarine helicopters"	24-Jan-08	31-Jul-08	114464.00	=""	="ASSOCIATED AIRCRAFT"	24-Jan-08 11:15 AM	

+="CN56325"	"Manufacture & Supply of Vacuum Insulated Hose Assemblies"	="Defence Materiel Organisation"	24-Jan-08	="Industrial Manufacturing and Processing Machinery and Accessories"	23-Jan-08	31-Mar-08	24750.00	=""	="Cryoquip Australia Pty Ltd"	24-Jan-08 11:17 AM	

+="CN56326"	"Digitisation of Library Material"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Document scanning service"	29-Sep-07	30-Jun-08	69800.00	=""	="HERMES PRECISA Pty Ltd"	24-Jan-08 11:18 AM	

+="CN56328"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	24-Jan-08	="Medical health associations"	22-Jan-08	03-Mar-08	31460.28	=""	="BECTON DICKINSON PTY LTD"	24-Jan-08 11:31 AM	

+="CN56329"	"WEB Content Filtering"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Computer or network or internet security"	31-Dec-07	31-Dec-07	40200.00	=""	="ICE SYSTEMS Pty Ltd"	24-Jan-08 11:31 AM	

+="CN56331"	"Portal Framework"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-Feb-07	31-Mar-07	33534.00	=""	="IBM Australia Limited"	24-Jan-08 11:37 AM	

+="CN56332"	"Systems for People Testing"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	05-Feb-07	13-Apr-07	144858.00	=""	="IBM Australia Limited"	24-Jan-08 11:40 AM	

+="CN56334"	"Media - Official Visit"	="Department of the Prime Minister and Cabinet"	24-Jan-08	="Business administration services"	30-Sep-07	06-Dec-07	13000.00	=""	="BOLGER MEDIA SERVICES"	24-Jan-08 11:48 AM	

+="CN56335"	"Governance"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-Mar-07	12-Apr-07	78081.00	=""	="IBM Australia Limited"	24-Jan-08 11:48 AM	

+="CN56336"	"Access to Global information database"	="Austrade"	24-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	60284.00	=""	="Euromonitor International"	24-Jan-08 11:50 AM	

+="CN56337"	"Supply and installation of security systems for Darwin office"	="Austrade"	24-Jan-08	="General building construction"	24-Aug-07	27-Aug-07	22220.00	=""	="Chubb Electronic Security Pty Ltd"	24-Jan-08 11:50 AM	

+="CN56338"	"Purchase of class B safe"	="Austrade"	24-Jan-08	="Furniture and Furnishings"	09-Aug-07	09-Sep-07	11018.08	=""	="CMI Safe Co"	24-Jan-08 11:50 AM	

+="CN56339-A2"	"Strategic advice and operational support for connect training and migration to MOSS"	="Austrade"	24-Jan-08	="Management advisory services"	17-Dec-07	31-Dec-08	88000.00	=""	="Clicks IT Recruitment (formerly CCS)"	24-Jan-08 11:50 AM	

+="CN56340"	"Maintenance of UPS system"	="Austrade"	24-Jan-08	="Computer services"	22-Nov-07	22-Dec-07	11544.68	=""	="Chloride Power Protection"	24-Jan-08 11:50 AM	

+="CN56341"	"Painting Level 2 of Austrade tenancy"	="Austrade"	24-Jan-08	="General building construction"	18-Jun-07	20-Jun-07	17149.00	=""	="DPR Painting Services"	24-Jan-08 11:50 AM	

+="CN56342"	"Purchase and installation of doors, frames and vision panels"	="Austrade"	24-Jan-08	="General building construction"	24-Oct-07	20-Dec-07	28276.00	=""	="Ballistic Innovations"	24-Jan-08 11:50 AM	

+="CN56344"	"Removal and Storage of Services"	="Austrade"	24-Jan-08	="Transportation and Storage and Mail Services"	17-Oct-07	17-Mar-08	360000.00	=""	="Kent Transport Industries"	24-Jan-08 11:50 AM	

+="CN56345"	"Gala dinner for the Australian Export Awards 2007"	="Austrade"	24-Jan-08	="Hotels and lodging and meeting facilities"	10-May-07	22-Nov-07	39510.00	=""	="Brisbane Convention and Exhibition Centre"	24-Jan-08 11:51 AM	

+="CN56346"	"Student Portal"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	15-Jan-07	02-Mar-07	71159.00	=""	="IBM Australia Limited"	24-Jan-08 11:52 AM	

+="CN56347"	"Central Movement Alert List"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	23-Feb-07	30-Jun-07	132800.00	=""	="IBM Australia Limited"	24-Jan-08 11:56 AM	

+="CN56348"	"Printing of baseline 2005-2006"	="Bureau of Meteorology"	24-Jan-08	="Office supplies"	02-Jan-08	31-Jan-08	19715.00	=""	="Print Centre"	24-Jan-08 11:58 AM	

+="CN56349"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	08-Jan-08	31-Jan-08	71195.27	=""	="Powertel Ltd"	24-Jan-08 11:58 AM	

+="CN56350"	"Journal subs 2008"	="Bureau of Meteorology"	24-Jan-08	="Printed media"	08-Jan-08	31-Dec-08	124226.89	=""	="Ebsco Australia"	24-Jan-08 11:58 AM	

+="CN56351"	"Catchment SIM Cor System"	="Bureau of Meteorology"	24-Jan-08	="Management and Business Professionals and Administrative Services"	03-Jan-08	31-Jan-00	10296.00	=""	="Catchment Simulation Solutions Pty"	24-Jan-08 11:58 AM	

+="CN56352"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	03-Jan-08	31-Jan-08	152888.40	=""	="Telstra  (ID No. 740)"	24-Jan-08 11:58 AM	

+="CN56353"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	04-Jan-08	31-Jan-08	15156.17	=""	="Telstra  (ID No. 740)"	24-Jan-08 11:58 AM	

+="CN56354"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	04-Jan-08	31-Jan-08	13676.30	=""	="Telstra  (ID No. 740)"	24-Jan-08 11:58 AM	

+="CN56355"	"car Lease Costs"	="Bureau of Meteorology"	24-Jan-08	="Motor vehicles"	07-Jan-08	07-Jan-08	10381.76	=""	="Leaseplan Australia"	24-Jan-08 11:58 AM	

+="CN56356"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	07-Jan-08	31-Jan-08	94385.84	=""	="Powertel Ltd"	24-Jan-08 11:59 AM	

+="CN56357"	"PROVISIONS WILLIS IS DEC 07"	="Bureau of Meteorology"	24-Jan-08	="Travel and Food and Lodging and Entertainment Services"	08-Jan-08	31-Jan-08	11366.41	=""	="Woolworths Limited"	24-Jan-08 11:59 AM	

+="CN56358"	"SARO LEASE VEHICLES CHARGES FOR JAN 2008"	="Bureau of Meteorology"	24-Jan-08	="Motor vehicles"	08-Jan-08	08-Jan-08	11807.85	=""	="LEASE PLAN AUSTRALIA LTD"	24-Jan-08 11:59 AM	

+="CN56359"	"BOC container management fee for January 2008"	="Bureau of Meteorology"	24-Jan-08	="Tools and General Machinery"	08-Jan-08	31-Jan-08	12578.13	=""	="Boc Limited"	24-Jan-08 11:59 AM	

+="CN56361"	"Postage Account - December 2007"	="Bureau of Meteorology"	24-Jan-08	="Mail and cargo transport"	08-Jan-08	31-Jan-08	39308.91	=""	="Australia Post"	24-Jan-08 11:59 AM	

+="CN56362"	"Telecommunications Services"	="Bureau of Meteorology"	24-Jan-08	="Telecommunications media services"	09-Jan-08	31-Jan-08	13956.03	=""	="Telstra  (ID No. 740)"	24-Jan-08 11:59 AM	

+="CN56363"	"INSTALL POWER MARYBOROUGH AWS"	="Bureau of Meteorology"	24-Jan-08	="Building and Construction and Maintenance Services"	10-Jan-08	31-Jan-08	11000.00	=""	="Allen Gillespie Electrical Pty Ltd"	24-Jan-08 11:59 AM	

+="CN56360"	"Correspondence Project"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	05-Mar-07	08-Jun-07	431130.00	=""	="IBM Australia Limited"	24-Jan-08 11:59 AM	

+="CN56364"	"Freight"	="Bureau of Meteorology"	24-Jan-08	="Transportation and Storage and Mail Services"	10-Jan-08	31-Jan-08	13128.63	=""	="TNT EXPRESS"	24-Jan-08 11:59 AM	

+="CN56365"	"Machining of RF boxes"	="Bureau of Meteorology"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	31-Jan-08	13596.00	=""	="Production Parts"	24-Jan-08 12:00 PM	

+="CN56366"	"Professional Services"	="Bureau of Meteorology"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	31-Jan-08	14465.00	=""	="Deloitte Touche Tohmatsu"	24-Jan-08 12:00 PM	

+="CN56367"	"Cisco maintenance support"	="Bureau of Meteorology"	24-Jan-08	="Computer services"	07-Jan-08	09-Jan-08	13191.56	=""	="Cisco Systems Australia Ltd"	24-Jan-08 12:00 PM	

+="CN56368"	"Thermo ozone phtometric analyser"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	07-Jan-08	31-Jan-08	12014.20	=""	="LEAR SIEGLER AUSTRALIA PTY LTD"	24-Jan-08 12:00 PM	

+="CN56369"	"Detector Wind Speed (Qty 10)"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	08-Jan-08	22-Feb-08	15488.00	=""	="Mcvan Instruments P/L"	24-Jan-08 12:00 PM	

+="CN56370"	"Float Clamping Mechanism (Qty 10)"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	08-Jan-08	11-Jan-08	21230.00	=""	="Vaisala Pty Ltd"	24-Jan-08 12:00 PM	

+="CN56371"	"HP Colour Laserjet Qty 1"	="Bureau of Meteorology"	24-Jan-08	="Computer Equipment and Accessories"	09-Jan-08	18-Jan-08	12655.00	=""	="City Software Pty Ltd"	24-Jan-08 12:00 PM	

+="CN56372"	"Ceilometers, Visibility & Thunderstorm Sensorss (aisala Compatible)"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	10-Jan-08	18-Feb-08	259919.00	=""	="Vaisala Pty Ltd"	24-Jan-08 12:00 PM	

+="CN56373"	"Ceilometers, Visibility & Thunderstorm Sensorss"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	10-Jan-08	18-Feb-08	111474.00	=""	="Vaisala Pty Ltd"	24-Jan-08 12:00 PM	

+="CN56374"	"Ceilometers, Visibility & Thunderstorm Sensorss"	="Bureau of Meteorology"	24-Jan-08	="Measuring and observing and testing instruments"	10-Jan-08	18-Feb-08	813736.00	=""	="Vaisala Pty Ltd"	24-Jan-08 12:01 PM	

+="CN56375"	"Data Cabling works at Sydney Regional Office"	="Bureau of Meteorology"	24-Jan-08	="Electrical wire and cable and harness"	11-Jan-08	17-Jan-08	27152.40	=""	="Star Electrical Co P/L"	24-Jan-08 12:01 PM	

+="CN56376"	"FORECASTING C CONTRACT PEARCE RAAF BASE 14 JAN - 28 FEB 2008"	="Bureau of Meteorology"	24-Jan-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	28-Feb-08	10743.49	=""	="MR A P REDMOND"	24-Jan-08 12:01 PM	

+="CN56377"	"Correspondence Project"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Mar-07	23-Mar-07	60340.00	=""	="IBM Australia Limited"	24-Jan-08 12:03 PM	

+="CN56378"	"Visa Solution Outline and Macro Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Apr-07	29-Jun-07	1590222.00	=""	="IBM Australia Limited"	24-Jan-08 12:06 PM	

+="CN56380"	"Systems for People Application Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Apr-07	27-Jul-07	623482.00	=""	="IBM Australia Limited"	24-Jan-08 12:09 PM	

+="CN56381"	"Personnel Recruitment"	="Australian Crime Commission"	24-Jan-08	="Personnel recruitment"	24-Jan-08	23-May-08	71874.00	=""	="Icon Recruitment"	24-Jan-08 12:12 PM	

+="CN56384"	" Vehicles lease "	="Australian Crime Commission"	24-Jan-08	="Motor vehicles"	02-Feb-08	01-Feb-09	15724.24	=""	="Leaseplan"	24-Jan-08 12:37 PM	

+="CN56385"	"Vehicle leases"	="Australian Crime Commission"	24-Jan-08	="Motor vehicles"	01-Dec-07	31-Jan-08	39735.56	=""	="Leaseplan"	24-Jan-08 12:44 PM	

+="CN56386"	"Vehicle leases"	="Australian Crime Commission"	24-Jan-08	="Motor vehicles"	01-Dec-07	31-Dec-07	68163.46	=""	="Leaseplan"	24-Jan-08 12:49 PM	

+="CN56387"	"Provision of Art Services"	="Department of Parliamentary Services"	24-Jan-08	="Portraits"	24-Jan-08	03-Mar-08	16802.50	=""	="Jiawei Studio"	24-Jan-08 12:58 PM	

+="CN56388"	"Provision of ICT services"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	23-Jan-08	03-Mar-08	19374.41	=""	="SVS Technologies Pty Ltd"	24-Jan-08 12:58 PM	

+="CN56389"	"Provision of supply on petrol and deisel for Landscape services"	="Department of Parliamentary Services"	24-Jan-08	="Fuels"	21-Jan-08	03-Mar-08	12100.00	=""	="Caltex Australia Petroleum Pty Ltd"	24-Jan-08 12:58 PM	

+="CN56390"	"Supply of  notebook computer (laptops) Contract (DPS05033)"	="Department of Parliamentary Services"	24-Jan-08	="Notebook computers"	21-Jan-08	03-Mar-08	26875.20	=""	="Commander NSW Pty Limited"	24-Jan-08 12:58 PM	

+="CN56391-A1"	"Provision of temporary contract labour"	="Department of Parliamentary Services"	24-Jan-08	="Cable laying"	18-Jan-08	31-Jan-08	22000.00	=""	="Secom Technical Services P/L"	24-Jan-08 12:58 PM	

+="CN56392"	"Supply of Stationary and office products Contract (DPS04197)"	="Department of Parliamentary Services"	24-Jan-08	="Office supplies"	18-Jan-08	03-Mar-08	14182.27	=""	="Corporate Express"	24-Jan-08 12:58 PM	

+="CN56393"	"Provision of supply of Adobe software upgrades"	="Department of Parliamentary Services"	24-Jan-08	="Software patches or upgrades"	18-Jan-08	03-Mar-08	45099.76	=""	="Zallcom Pty Ltd"	24-Jan-08 12:58 PM	

+="CN56394"	"PABX-Supply and Implementation Facilites Mangement Team for 5 years Contract ( DPS04082)"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Jan-08	03-Mar-08	42479.91	=""	="Telstra Corporation Ltd"	24-Jan-08 12:59 PM	

+="CN56395"	"PABX-Supply and Implementation Facilites Mangement Team for 5 years Contract ( DPS04082)"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Jan-08	03-Mar-08	116994.47	=""	="Telstra Corporation Ltd"	24-Jan-08 12:59 PM	

+="CN56396"	"Provision of internal Audit Services"	="Department of Parliamentary Services"	24-Jan-08	="Internal audits"	17-Jan-08	30-Jun-08	11000.00	=""	="WalterTurnbull Pty Ltd"	24-Jan-08 12:59 PM	

+="CN56397"	"Voice Services ( Local,National, International and Internet Services Contract (DPS04114)"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Jan-08	03-Mar-08	160040.91	=""	="Telstra Corporation Ltd"	24-Jan-08 12:59 PM	

+="CN56398-A1"	"Provision of physical security advice as member of tender evaluation committee Contract DPS08015"	="Department of Parliamentary Services"	24-Jan-08	="Business and corporate management consultation services"	17-Jan-08	03-Mar-08	11000.00	=""	="Signet Group International P/L"	24-Jan-08 12:59 PM	

+="CN56399"	"Provision of ICT services"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	23-Jan-08	30-Jun-08	19374.41	=""	="SVS Technologies Pty Ltd"	24-Jan-08 12:59 PM	

+="CN56400"	"Supply of Stationary & Office Equipment"	="Department of Parliamentary Services"	24-Jan-08	="Stationery"	18-Jan-08	22-Mar-08	22000.00	=""	="Corporate Express"	24-Jan-08 12:59 PM	

+="CN56401"	"Provision of  telephone calls"	="Department of Parliamentary Services"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	17-Jan-08	30-Jun-08	32760.44	=""	="Telstra Corporation Ltd"	24-Jan-08 12:59 PM	

+="CN56402"	"ONLINE DATABASE SUBSCRIPTION FACTIVA.COM & iWORKS - 1/1-31/3/08"	="Department of Parliamentary Services"	24-Jan-08	="Online database information retrieval systems"	01-Jan-08	31-Mar-08	20108.52	=""	="DOW JONES REUTERS BUSINESS"	24-Jan-08 01:00 PM	

+="CN56403"	"Standing Offer notice (SON27006); LEASE JAN-08 Fleet management and leasing services."	="Department of Parliamentary Services"	24-Jan-08	="Vehicle leasing"	19-Dec-07	31-Jan-08	15532.88	=""	="LeasePlan"	24-Jan-08 01:00 PM	

+="CN56404"	"Vehicle leases"	="Australian Crime Commission"	24-Jan-08	="Motor vehicles"	01-Jan-08	31-Jan-08	17720.84	=""	="Leaseplan"	24-Jan-08 01:04 PM	

+="CN56405"	"vehicle leases"	="Australian Crime Commission"	24-Jan-08	="Motor vehicles"	01-Dec-07	31-Jan-08	17762.92	=""	="Leaseplan"	24-Jan-08 01:07 PM	

+="CN56406"	"Data Storage Units"	="Australian Crime Commission"	24-Jan-08	="Computer Equipment and Accessories"	12-Dec-07	29-Feb-08	49024.80	=""	="Digicor Pty Ltd"	24-Jan-08 01:12 PM	

+="CN56407-A1"	"Office Air Conditioning Upgrade"	="Australian Crime Commission"	24-Jan-08	="Air conditioning installation or maintenance or repair services"	16-Jan-08	29-Feb-08	26793.80	=""	="Mecair Engineering Pty Ltd"	24-Jan-08 01:18 PM	

+="CN56409"	"Transcription system maintenance agreement"	="Australian Crime Commission"	24-Jan-08	="Transcription or translation systems or kits"	02-Jan-08	22-Jan-08	15724.24	=""	="Laniervoice"	24-Jan-08 01:24 PM	

+="CN56410"	"Settlements Siebel Fit Gap Analysis"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	13-Mar-07	06-Apr-07	136060.00	=""	="IBM Australia Limited"	24-Jan-08 01:25 PM	

+="CN56411"	"Citizenship Testing Portal Siebel Fit Gap Analysis and Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	19-Mar-07	04-May-07	234229.00	=""	="IBM Australia Limited"	24-Jan-08 01:29 PM	

+="CN56412"	"Visa Build"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	05-Mar-07	29-Jun-07	2892343.00	=""	="IBM Australia Limited"	24-Jan-08 01:34 PM	

+="CN56413"	"Client Centric Processing Build-Deploy"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	26-Mar-07	03-Aug-07	2585952.00	=""	="IBM Australia Limited"	24-Jan-08 01:39 PM	

+="CN56414"	"Platform Lifecycle"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	09-Mar-07	30-Jun-07	400884.00	=""	="IBM Australia Limited"	24-Jan-08 01:43 PM	

+="CN56416"	"Compliance Case Management and Detention Portal"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Mar-07	31-Mar-07	803810.00	=""	="IBM Australia Limited"	24-Jan-08 01:52 PM	

+="CN56109"	"Phone Bill for September 2007"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Local and long distance telephone communications"	02-Oct-07	02-Oct-07	13183.43	=""	="Telstra Corporation Limited"	24-Jan-08 01:54 PM	

+="CN56108"	"Phone Bill for October 2007"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Local and long distance telephone communications"	01-Nov-07	01-Nov-07	11954.78	=""	="Telstra Corporation Limited"	24-Jan-08 01:56 PM	

+="CN56418"	"Sub Programme"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Apr-07	31-Dec-07	4796026.00	=""	="IBM Australia Limited"	24-Jan-08 01:56 PM	

+="CN56106"	"Phone Bill for November 2007"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Local and long distance telephone communications"	02-Dec-07	02-Dec-07	10169.00	=""	="Telstra Corporation Limited"	24-Jan-08 01:57 PM	

+="CN56419"	"motor vehicle parts"	="Department of Defence"	24-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	14-Feb-08	10274.00	=""	="BALE DEFENCE INDUSTRIES PTY LTD"	24-Jan-08 01:57 PM	

+="CN56100"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	10759.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 01:58 PM	

+="CN56098"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	14050.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:01 PM	

+="CN56420"	"Services Realisation"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Feb-07	29-Jun-07	2822800.00	=""	="IBM Australia Limited"	24-Jan-08 02:01 PM	

+="CN56096"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	10759.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:02 PM	

+="CN56095"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	10759.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:03 PM	

+="CN56094"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	10759.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:04 PM	

+="CN56090"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	14050.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:04 PM	

+="CN56088"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	14050.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:05 PM	

+="CN56421"	"Release Architect"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Mar-07	30-Jun-07	215172.00	=""	="IBM Australia Limited"	24-Jan-08 02:06 PM	

+="CN56086"	"International Travel"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Commercial aeroplane travel"	26-Sep-07	26-Sep-07	10759.10	=""	="Carlson Wagonlit Travel"	24-Jan-08 02:06 PM	

+="CN56065"	"Risk Assessment and Management advice"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Public administration and finance services"	31-Aug-07	31-Aug-07	15290.91	=""	="Walter Turnbull"	24-Jan-08 02:14 PM	

+="CN56063"	"Mediation of Industrial dispute"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Human resources services"	28-Sep-07	28-Sep-07	23650.00	=""	="Quality Management Solutions"	24-Jan-08 02:15 PM	

+="CN55935"	"IT Policy"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Public administration and finance services"	13-Sep-07	13-Oct-07	21400.50	=""	="Stratsec.Net PTY LTD"	24-Jan-08 02:21 PM	

+="CN56424"	"Common Security Services"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Mar-07	13-Apr-07	360932.00	=""	="IBM Australia Limited"	24-Jan-08 02:22 PM	

+="CN56428"	" Rule Competency Extension "	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Apr-07	30-Jun-07	415800.00	=""	="IBM Australia Limited"	24-Jan-08 02:26 PM	

+="CN56431"	"Sub Programme Bridge"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	05-Mar-07	30-Mar-07	673927.00	=""	="IBM Australia Limited"	24-Jan-08 02:30 PM	

+="CN56425"	"TELECOMMUNICATIONS"	="Department of Human Services"	24-Jan-08	="Communications Devices and Accessories"	12-Dec-07	31-Jul-08	24025.80	=""	="OPTUS BILLING SERVICES PTY LTD"	24-Jan-08 02:32 PM	

+="CN56423-A2"	" INVESTIGATION     FUNDS INCREASE OF $2000.00 APPLIED "	="Department of Human Services"	24-Jan-08	="Management advisory services"	22-Nov-07	14-Jan-08	13000.00	=""	="QUALITY MANAGEMENT SOLUTIONS"	24-Jan-08 02:33 PM	

+="CN56432"	"Build Additional Environments"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	07-May-07	29-Jun-07	209072.73	=""	="IBM Australia Limited"	24-Jan-08 02:34 PM	

+="CN56422"	"TEMPORARY ADMINISTRATIVE SUPPORT"	="Department of Human Services"	24-Jan-08	="Management and Business Professionals and Administrative Services"	14-Dec-07	29-Feb-08	12750.00	=""	="CAREERS UNLIMITED"	24-Jan-08 02:37 PM	

+="CN55785"	" Venetian Blinds Instalation "	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Venetian blinds"	17-Dec-07	17-Jan-08	18485.50	=""	="John Watson Blinds and Awnings"	24-Jan-08 02:38 PM	

+="CN56433"	"Supply of refurbished printers"	="Australian Electoral Commission"	24-Jan-08	="Computer printers"	01-Jul-07	12-Dec-07	28836.50	=""	="Brian Leonard Embury"	24-Jan-08 02:38 PM	

+="CN56434"	"Client Centric Processing Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	10-Apr-07	27-Apr-07	120920.00	=""	="IBM Australia Limited"	24-Jan-08 02:40 PM	

+="CN55717-A1"	" IT Policy "	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Public administration and finance services"	27-Aug-07	27-Sep-07	13200.00	=""	="Stratsec.Net PTY LTD"	24-Jan-08 02:40 PM	

+="CN55698"	"Congratulatory Cards"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Greeting or note or post cards"	22-Nov-07	22-Dec-07	11275.00	=""	="Imago Publishing"	24-Jan-08 02:43 PM	

+="CN55697"	"Renovations"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Renovation of buildings or landmarks or monuments"	28-Sep-07	30-Oct-07	25399.00	=""	="Rowlands Landscapes"	24-Jan-08 02:44 PM	

+="CN56435"	"Product Extension"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	23-Apr-07	15-Jun-07	53690.00	=""	="IBM Australia Limited"	24-Jan-08 02:44 PM	

+="CN55658"	"Medals"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Medals"	21-Nov-07	21-Dec-07	290152.50	=""	="T&S Signcraft Pty Ltd"	24-Jan-08 02:46 PM	

+="CN55656"	"Furniture"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Furniture and Furnishings"	23-Nov-07	23-Dec-07	17052.10	=""	="Casualife Furniture"	24-Jan-08 02:47 PM	

+="CN55650"	"Light Fittings"	="Office of the Official Secretary to the Governor-General"	24-Jan-08	="Interior lighting and fixtures"	19-Oct-07	01-Mar-08	16500.00	=""	="Custom Lighting"	24-Jan-08 02:48 PM	

+="CN56437"	"Correspondence Service Project"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Apr-07	22-May-07	95480.00	=""	="IBM Australia Limited"	24-Jan-08 02:48 PM	

+="CN56438"	"Lease at Parramatta NSW 2000"	="Department of Human Services"	24-Jan-08	="Real estate services"	23-Feb-08	22-Feb-12	2929789.00	=""	="Multiplex Property Funds Management"	24-Jan-08 02:51 PM	

+="CN56439"	"Exception Processing Build, Test and Deploy"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-May-07	31-Aug-07	3741654.00	=""	="IBM Australia Limited"	24-Jan-08 02:52 PM	

+="CN56440"	"Common Security Services"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-May-07	30-Aug-07	924037.81	=""	="IBM Australia Limited"	24-Jan-08 02:57 PM	

+="CN56441"	"Rule Competency Additional Resource"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	08-May-07	30-Jun-07	76800.00	=""	="IBM Australia Limited"	24-Jan-08 03:03 PM	

+="CN56445"	"Systems, Applications, Products Documentation"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	07-May-07	31-Aug-07	156611.00	=""	="IBM Australia Limited"	24-Jan-08 03:14 PM	

+="CN56446"	"Storage and distribution of election materials"	="Australian Electoral Commission"	24-Jan-08	="Material handling services"	12-Nov-07	30-Nov-07	12848.00	=""	="Dalby Removals"	24-Jan-08 03:14 PM	

+="CN56447"	"Settlement Portal"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	23-Apr-07	09-Nov-07	3031350.00	=""	="IBM Australia Limited"	24-Jan-08 03:20 PM	

+="CN56449"	"Call Centre Services"	="Australian Electoral Commission"	24-Jan-08	="Call centre bureau services"	29-Jun-07	15-Dec-07	24433.10	=""	="Centrelink"	24-Jan-08 03:23 PM	

+="CN56450"	"Correspondence Working Holiday Maker"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	12-Feb-07	25-May-07	167360.00	=""	="IBM Australia Limited"	24-Jan-08 03:26 PM	

+="CN56451"	"Identity Intelligence Strategy"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-Jun-07	31-Jul-07	74132.00	=""	="IBM Australia Limited"	24-Jan-08 03:30 PM	

+="CN56452"	"Correspondence Project"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	18-Jun-07	09-Nov-07	513783.64	=""	="IBM Australia Limited"	24-Jan-08 03:38 PM	

+="CN56453"	"Visa Test and Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	04-Jul-07	21-Dec-07	9105495.00	=""	="IBM Australia Limited"	24-Jan-08 03:43 PM	

+="CN56454"	"Lease of Election premises"	="Australian Electoral Commission"	24-Jan-08	="Lease and rental of property or building"	17-Sep-07	16-Dec-07	12431.10	=""	="Salo Pty Ltd"	24-Jan-08 03:45 PM	

+="CN56455-A2"	"Services Realisation - Visa, Alert and Exception Processing"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	23-Jul-07	27-Jun-08	15130129.00	=""	="IBM Australia Limited"	24-Jan-08 03:49 PM	

+="CN56456"	"Supply of 221 Workstations to Terrica Place, Brisbane"	="Australian Taxation Office"	24-Jan-08	="Workstations and office packages"	23-Jan-08	14-Mar-08	804537.00	=""	="Schiavello (VIC) Pty Ltd"	24-Jan-08 03:51 PM	

+="CN56457-A2"	"Change Management Taskforce"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	01-Jul-07	30-Jun-08	2627691.00	=""	="IBM Australia Limited"	24-Jan-08 03:54 PM	

+="CN56458-A3"	"Central Movement Alert List"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	02-Jul-07	31-Jul-09	1651368.00	="PCR 02"	="IBM Australia Limited"	24-Jan-08 04:02 PM	

+="CN56459"	"Overstayers File Data Mining"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	28-Jun-07	19-Jul-07	28200.00	=""	="IBM Australia Limited"	24-Jan-08 04:10 PM	

+="CN56460"	"Lease at 15 Bowes St, Woden"	="Centrelink"	24-Jan-08	="Real estate services"	01-Mar-08	28-Feb-10	4286237.00	=""	="Perpetual trustee Company Ltd"	24-Jan-08 04:12 PM	

+="CN56461"	"Client Centric Macro Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	30-Apr-07	01-Jun-07	621157.00	=""	="IBM Australia Limited"	24-Jan-08 04:14 PM	

+="CN56462"	"Correspondence Service Re-Alignment to Working Holiday Maker Portal Release"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	04-Jun-07	14-Sep-07	285480.00	=""	="IBM Australia Limited"	24-Jan-08 04:21 PM	

+="CN56463"	"Working Holiday Maker Extension"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	14-May-07	25-Aug-07	794092.00	=""	="IBM Australia Limited"	24-Jan-08 04:25 PM	

+="CN56465"	"Exception Processing Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	04-Jun-07	30-Sep-07	2197722.00	=""	="IBM Australia Limited"	24-Jan-08 04:28 PM	

+="CN56464-A1"	"Microsoft Enterprise Agreement for Software Licence and Mainatenance"	="Centrelink"	24-Jan-08	="Software"	01-Oct-07	30-Sep-10	8348150.31	="RFTS07/27772"	="DATA#3"	24-Jan-08 04:29 PM	

+="CN56466"	"Common Security Services Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-Jun-07	29-Jun-07	139724.00	=""	="IBM Australia Limited"	24-Jan-08 04:31 PM	

+="CN56468"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:34 PM	

+="CN56469"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:34 PM	

+="CN56470"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:34 PM	

+="CN56467"	"Rational Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	01-Jun-07	30-Sep-07	12500.00	=""	="IBM Australia Limited"	24-Jan-08 04:34 PM	

+="CN56471"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56472"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56473"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56474"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Mar-08	20000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56475"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56476"	"Freight & Storage Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	123750.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	24-Jan-08 04:35 PM	

+="CN56477"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56478"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Dec-07	21-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:35 PM	

+="CN56479"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	30-Dec-07	29-Jun-08	35000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:36 PM	

+="CN56480"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:36 PM	

+="CN56481"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:36 PM	

+="CN56482"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	30-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:36 PM	

+="CN56483"	"Training & Education Costs"	="Department of Finance and Administration"	24-Jan-08	="Education and Training Services"	22-Jul-08	23-Jul-08	21100.00	="Not Applicable"	="BELLACHARA BOUTIQUE HOTEL"	24-Jan-08 04:36 PM	

+="CN56484"	"Travel - Transportation Costs"	="Department of Finance and Administration"	24-Jan-08	="Transportation and Storage and Mail Services"	30-Nov-07	15-Feb-08	14322.40	="0"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	24-Jan-08 04:36 PM	

+="CN56485"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Administration"	24-Jan-08	="Building and Construction and Maintenance Services"	18-Jan-08	31-Mar-08	211667.56	="FIN07/Cap006"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	24-Jan-08 04:36 PM	

+="CN56486"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Administration"	24-Jan-08	="Office Equipment and Accessories and Supplies"	18-Jan-08	31-Mar-08	45408.00	="FIN07/Cap006"	="NMH COMMERCIAL FLOORING PTY LTD"	24-Jan-08 04:36 PM	

+="CN56487"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	22-Feb-08	14268.12	="PR#4582"	="CORPORATE EXPRESS AUSTRALIA LIMITED"	24-Jan-08 04:36 PM	

+="CN56488"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	22-Feb-08	11886.44	="06/06590"	="ZALLCOM PTY LTD"	24-Jan-08 04:37 PM	

+="CN56489"	"IT Communication Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	29-Feb-08	26662.82	=""	="DEPT OF PARLIAMENTARY SERVICES"	24-Jan-08 04:37 PM	

+="CN56490"	"Fire Services Payment"	="Department of Finance and Administration"	24-Jan-08	="Personal and Domestic Services"	09-Jan-08	30-Jun-08	29671.84	="N/A"	="NSW RURAL FIRE SERVICE"	24-Jan-08 04:37 PM	

+="CN56491"	"Legal Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	11-Sep-06	30-Apr-07	15000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	24-Jan-08 04:37 PM	

+="CN56492"	"Legal Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	75000.00	="FIN07AMG008"	="CLAYTON UTZ - 404925"	24-Jan-08 04:37 PM	

+="CN56493"	"Consultancy Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	04-Jan-08	30-Apr-08	40000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	24-Jan-08 04:37 PM	

+="CN56495"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	31-Jan-08	27555.00	=""	="ORIMA RESEARCH PTY LTD"	24-Jan-08 04:37 PM	

+="CN56496"	"Business Advisory Services"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	24-Dec-08	43000.00	=""	="KROPP, JIM"	24-Jan-08 04:38 PM	

+="CN56497"	"Consultancy Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Apr-08	105050.00	="FIN07/CAPS010"	="ERNST & YOUNG"	24-Jan-08 04:38 PM	

+="CN56494-A1"	"Rule Competency Extension"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	02-Jul-07	30-Jun-08	1564800.00	=""	="IBM Australia Limited"	24-Jan-08 04:38 PM	

+="CN56498"	"motor vehicle parts."	="Department of Defence"	24-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	23-Feb-08	12940.58	=""	="Mercedes Benz Aust. Pacific"	24-Jan-08 04:39 PM	

+="CN56499"	"Java Applications Framework"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Jul-07	28-Sep-07	601681.82	=""	="IBM Australia LImited"	24-Jan-08 04:41 PM	

+="CN56500"	"Client Centirc Build"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	02-Jul-07	30-Nov-07	4363974.00	=""	="IBM Australia Limited"	24-Jan-08 04:44 PM	

+="CN56501"	"Legal Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	408560.00	="RFT LSB 01/2005"	="BLAKE DAWSON WALDRON - NSW"	24-Jan-08 04:49 PM	

+="CN56502"	"Business Advisory Services"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	71500.00	="n/a"	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	24-Jan-08 04:49 PM	

+="CN56503"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	29-Feb-08	28617.00	="FIN 05CRP004-35"	="OAKTON AA SERVICES PTY LTD"	24-Jan-08 04:49 PM	

+="CN56504"	"Rent Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	31-Dec-08	80000.00	="n/a"	="CANON FINANCE AUSTRALIA LIMITED"	24-Jan-08 04:49 PM	

+="CN56505"	"Office Services"	="Department of Finance and Administration"	24-Jan-08	="Office Equipment and Accessories and Supplies"	22-Jan-08	31-Dec-08	300000.00	="Not available"	="CANON AUSTRALIA P/L - ACT"	24-Jan-08 04:49 PM	

+="CN56506"	"Security Costs"	="Department of Finance and Administration"	24-Jan-08	="National Defence and Public Order and Security and Safety Services"	17-Jan-08	01-Jun-08	150000.00	=""	="AUSTRALIAN PROTECTIVE SERVICES"	24-Jan-08 04:49 PM	

+="CN56507"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	30-Jul-07	30-Nov-07	20000.00	="FIN05CRP004-23"	="MANPOWER SERVICES (AUST) P/L"	24-Jan-08 04:49 PM	

+="CN56508"	"IT System Development Services"	="Department of Finance and Administration"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	26-Jun-07	30-Dec-07	209000.00	=""	="NSW DEPARTMENT OF COMMERCE"	24-Jan-08 04:49 PM	

+="CN56509"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	31-Jul-07	30-Jan-08	55000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jan-08 04:50 PM	

+="CN56510"	"Legal Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	30-Jun-08	21230.00	="LSB 01/2005"	="BLAKE DAWSON - ACT"	24-Jan-08 04:50 PM	

+="CN56511"	"Capital Expenditure - Software"	="Department of Finance and Deregulation"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	30-Jun-11	1079650.00	="fin07/fes003"	="SAP AUSTRALIA P/L"	24-Jan-08 04:50 PM	

+="CN56512"	"Security Costs"	="Department of Finance and Administration"	24-Jan-08	="Office Equipment and Accessories and Supplies"	11-Jan-08	30-Jun-08	11946.00	=""	="CIC SECURE"	24-Jan-08 04:50 PM	

+="CN56513"	"Freight & Storage Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	72000.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	24-Jan-08 04:50 PM	

+="CN56514"	"Freight & Storage Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	138000.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	24-Jan-08 04:50 PM	

+="CN56515"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	24-Jan-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	15-Jan-08	31-Mar-08	73179.70	="0"	="THE BUSINESS DOCTOR NSW PTY LTD"	24-Jan-08 04:50 PM	

+="CN56516"	"Memberships & Subscriptions Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	60000.00	=""	="FACTIVA DOW JONES & REUTERS"	24-Jan-08 04:51 PM	

+="CN56517"	"Office Consumables & Stationery Costs"	="Department of Finance and Administration"	24-Jan-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	31-Dec-08	35000.00	=""	="SOUTHSIDE DAIRY"	24-Jan-08 04:51 PM	

+="CN56518"	"IT Contract Management Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	04-Apr-08	18800.00	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	24-Jan-08 04:51 PM	

+="CN56519-A2"	"Release Architect"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	01-Jul-07	30-Jun-08	630422.00	=""	="IBM Australia Limited"	24-Jan-08 04:53 PM	

+="CN56520"	"Printing"	="Australian Electoral Commission"	24-Jan-08	="Industrial printing services"	19-Dec-07	19-Jan-08	14300.00	=""	="Australian Envelopes"	24-Jan-08 04:53 PM	

+="CN56521-A1"	"Siebel Application Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	30-Jul-07	01-Feb-08	603200.00	=""	="IBM Australia Support"	24-Jan-08 04:56 PM	

+="CN56522"	"Legal Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	1350000.00	=""	="FREEHILLS"	24-Jan-08 04:57 PM	

+="CN56523"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	27-Jun-08	120000.00	="FIN  05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	24-Jan-08 04:57 PM	

+="CN56524"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-07	30-Jun-10	3339784.00	="ISEC007584"	="INSIGHT"	24-Jan-08 04:57 PM	

+="CN56525"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:57 PM	

+="CN56526"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:57 PM	

+="CN56527"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	17-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:57 PM	

+="CN56528"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:59 PM	

+="CN56529"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	20-Dec-07	19-Jun-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jan-08 04:59 PM	

+="CN56530"	"Contractor Costs"	="Department of Finance and Administration"	24-Jan-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	04-Apr-08	25000.00	="."	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jan-08 04:59 PM	

+="CN56531"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Jan-08	24-Jan-08	10988.79	="06/06590"	="ZALLCOM PTY LTD"	24-Jan-08 04:59 PM	

+="CN56532-A2"	" Systems for People Enterprise Services Taskforce "	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	23-Jul-07	27-Jun-08	10021768.00	=""	="IBM Australia Limited"	24-Jan-08 05:00 PM	

+="CN56533-A1"	"Technical Release Specialist"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	01-Jul-07	30-Jun-08	369600.00	=""	="IBM Australia Limited"	24-Jan-08 05:03 PM	

+="CN56535-A1"	"Common Security Services Implementation"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	16-Jul-07	02-Nov-07	943882.00	=""	="IBM Australia Limited"	24-Jan-08 05:10 PM	

+="CN56537-A1"	"Information Technology Security Design"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	13-Aug-07	12-Oct-07	314518.00	=""	="IBM Australia Limited"	24-Jan-08 05:13 PM	

+="CN56538"	"Client Centric Macro Design Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	13-Aug-07	28-Sep-07	497071.00	=""	="IBM Australia Limited"	24-Jan-08 05:19 PM	

+="CN56539-A1"	"Project Management Support"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	11-Sep-07	31-Dec-07	111627.27	=""	="IBM Australia Limited"	24-Jan-08 05:23 PM	

+="CN56540-A2"	"Programme Authority"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	15-Oct-07	01-Apr-08	391164.55	=""	="IBM Australia Limited"	24-Jan-08 05:27 PM	

+="CN56541-A2"	" Information Technology Services "	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	03-Sep-07	31-Dec-07	161680.00	=""	="IBM Australia Limited"	24-Jan-08 05:31 PM	

+="CN56542"	"Correspondence Framework - Value Statement Update "	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	17-Sep-07	30-Nov-07	101619.00	=""	="IBM Australia Limited"	24-Jan-08 05:34 PM	

+="CN56543"	"Correspondence Framework - Template Author Training"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	24-Sep-07	16-Nov-07	55200.00	=""	="IBM Australia Limited"	24-Jan-08 05:38 PM	

+="CN56544-A2"	"Exception Processing Portal"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	15-Oct-07	01-Feb-08	4955306.00	=""	="IBM Australia Limited"	24-Jan-08 05:41 PM	

+="CN56545"	"Depth Compliance Project"	="Department of Immigration and Citizenship"	24-Jan-08	="Temporary information technology software developers"	15-Oct-07	23-Nov-07	49920.00	=""	="IBM Australia Limited"	24-Jan-08 05:44 PM	

+="CN56546-A2"	"Information Technology Security"	="Department of Immigration and Citizenship"	24-Jan-08	="Information technology consultation services"	01-Nov-07	30-Apr-08	1125364.37	=""	="IBM Australia Limited"	24-Jan-08 05:48 PM	

+="CN56547"	"Motor Vehicle Parts"	="Department of Defence"	25-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	25-Feb-08	12995.13	=""	="Volvo Commerical Vehicles"	25-Jan-08 08:24 AM	

+="CN56548"	" Survey & Inspection of ECBA  Refurbishment of 40 ECBA "	="Defence Materiel Organisation"	25-Jan-08	="Refurbishing services"	21-Jan-08	28-Jan-08	28321.49	=""	="HELLWEG INTERNATIONAL PTY LTD"	25-Jan-08 08:36 AM	

+="CN55687"	"Irrigation Audit"	="Office of the Official Secretary to the Governor-General"	25-Jan-08	="Water resource management"	07-Jan-08	31-Mar-08	12100.00	=""	="Ausflow Irrigation Pty Ltd"	25-Jan-08 08:54 AM	

+="CN56552-A1"	"Post-election Conference"	="Australian Electoral Commission"	25-Jan-08	="Hotels and lodging and meeting facilities"	10-Jan-08	10-Feb-08	43318.87	=""	="Four Points by Sheraton Geelong"	25-Jan-08 09:46 AM	

+="CN56555"	"Photography and cinematography services"	="Australian Electoral Commission"	25-Jan-08	="Photographers and cinematographers"	24-Oct-07	24-Dec-07	33427.22	=""	="Freeswimmers"	25-Jan-08 10:08 AM	

+="CN56557"	"ANNUAL SERVICE AND REPAIR QTY 10 LAR VI"	="Department of Defence"	25-Jan-08	="Breathing apparatus accessories or supplies"	13-Sep-07	14-Jan-08	21285.44	=""	="DRAGER SAFETY"	25-Jan-08 10:11 AM	

+="CN56558-A2"	" Applications development support services  "	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	01-Jan-08	14-Mar-08	32666.83	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 10:15 AM	

+="CN56559"	"Case Management"	="Department of Immigration and Citizenship"	25-Jan-08	="Temporary information technology software developers"	01-Dec-06	25-May-07	4113949.00	=""	="IBM Australia Limited"	25-Jan-08 10:27 AM	

+="CN56561-A1"	"Provision of SAP HR system funcitonal requirements"	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	20-Mar-06	30-Jun-08	787930.00	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 10:48 AM	

+="CN56563-A1"	"BAND HEADWEAR PUGAREE BLUE"	="Defence Materiel Organisation"	25-Jan-08	="Clothing accessories"	17-Jan-08	15-Oct-08	55411.40	=""	="MOUNTCASTLE PTY LTD"	25-Jan-08 10:54 AM	

+="CN56564"	"Cleaning of Election premises"	="Australian Electoral Commission"	25-Jan-08	="Building cleaning services"	24-Nov-07	24-Nov-07	25354.76	=""	="Department of Education & Children's Services"	25-Jan-08 10:55 AM	

+="CN56568-A1"	"Legal Services"	="Australian Electoral Commission"	25-Jan-08	="Legal services"	23-May-07	31-Jan-08	20000.00	="AEC06/032"	="Australian Government Solicitor"	25-Jan-08 11:04 AM	

+="CN56570-A2"	" Senior analyst /programmer services to support SAP HR "	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	463601.60	="RFT 8-2007"	="Southern Cross Computing Pty Ltd"	25-Jan-08 11:07 AM	

+="CN56571-A2"	"Information technology applications development support services"	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	16-Jul-07	12-Feb-08	86038.08	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 11:15 AM	

+="CN56574-A1"	" Promotion of Affirmation "	="Department of Immigration and Citizenship"	25-Jan-08	="National council services"	24-Jan-08	31-Mar-09	286000.00	=""	="National Australia Day Council"	25-Jan-08 11:40 AM	

+="CN56576"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF. "	="Defence Materiel Organisation"	25-Jan-08	="Helmet parts or accessories"	31-Jan-08	30-Apr-08	31416.00	=""	="FABRICELL INTERNATIONAL"	25-Jan-08 11:46 AM	

+="CN56578"	"Prof J Davis - Honorarium"	="Department of the Senate"	25-Jan-08	="Legal services"	01-Jan-08	31-Dec-08	37395.00	=""	="Prof J. Davis"	25-Jan-08 12:34 PM	

+="CN56579-A1"	"Deloitte - Internal Audit Services"	="Department of the Senate"	25-Jan-08	="Audit services"	01-Oct-07	30-Sep-11	330000.00	=""	="Deloitte"	25-Jan-08 12:34 PM	

+="CN56580"	"Commander - Supply of Laptops"	="Department of the Senate"	25-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	14-Jan-08	12812.80	=""	="Commander NSW Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56581"	"Zalcom - Software Lic, upgrade and maint"	="Department of the Senate"	25-Jan-08	="Software"	18-Jan-08	18-Jan-09	25908.31	=""	="Zallcom Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56582"	"Design Craft - Furniture"	="Department of the Senate"	25-Jan-08	="Commercial and industrial furniture"	21-Dec-07	21-Jun-08	15176.70	=""	="Design Craft Furniture Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56583"	"Recruitment Advertising"	="Australian Electoral Commission"	25-Jan-08	="Advertising"	14-Jan-08	14-Feb-08	110000.00	=""	="HMA Blaze Pty Ltd"	25-Jan-08 12:54 PM	

+="CN56584-A1"	" DELETED "	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	06-Dec-07	01-Feb-08	100000.00	=""	="Polaris Sales Aust & NZ"	25-Jan-08 01:12 PM	

+="CN56585"	" Supply of ballistic cushion cover, 50 qty and ballistic squb cover, 70 qty.  NSN 2540-66-152-8520 and 2540-66-152-8521.     "	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	16-Jan-08	09-Apr-08	77925.70	=""	="LAND ROVER AUSTRALIA"	25-Jan-08 01:18 PM	

+="CN56587"	"Supply of 197 qty x cover filled vehicular, cotton duck, NSN 2540-66-128-4941; 100 qty x cover filled vehicular, camouflage, NSN 2540-66-128-5061; 60 qty x cover filled vehicular, cotton duck, black green, NSN 2540-66-128-5581 and 25 qty x cover filled vehicular corespun cotton duck, NSN 2540-128-5984."	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	30-Nov-07	30-Jun-08	447014.40	=""	="LAND ROVER AUSTRALIA"	25-Jan-08 01:32 PM	

+="CN56588"	"SUNBURN PREVENTIVE PREPARATION LOTION, AT LEAST 97% PROTECTION, BROADSPECTRUM, SUN PROTECTION FACTOR 30 PLUS, 4 HOURS WATER RESISTANT, MILKY CONSISTENCY, 125ML"	="Defence Materiel Organisation"	25-Jan-08	="Medical health associations"	25-Jan-08	03-Mar-08	17278.80	=""	="AUSTRALIAN THERAPEUTIC SUPPLIES"	25-Jan-08 01:41 PM	

+="CN56592"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	26-Oct-07	26-Nov-07	12200.00	=""	="Trim Lawns & Complete Garden Services"	25-Jan-08 02:19 PM	

+="CN56594"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	28-Nov-07	12-Dec-07	12000.00	=""	="Trim Lawns & Complete Gardening Services"	25-Jan-08 02:28 PM	

+="CN56599"	"Contractor Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	31-Jan-08	14000.00	="N/A"	="CENTRELINK"	25-Jan-08 02:39 PM	

+="CN56600"	"Capital Expenditure - Plant & Equipment"	="Department of Finance and Administration"	25-Jan-08	="Office Equipment and Accessories and Supplies"	14-Dec-07	31-Jan-08	20273.00	="N/A"	="GLOBAL TANKS PTY LTD"	25-Jan-08 02:39 PM	

+="CN56601"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	31-Dec-07	27690.71	=""	="ASSA ABLOY AUSTRALIA PTY LTD"	25-Jan-08 02:39 PM	

+="CN56602"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	21-Oct-07	28-Nov-08	95000.00	=""	="THE FEDERAL EXECUTIVE INSTITUTE"	25-Jan-08 02:39 PM	

+="CN56603"	"Contractor Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	67400.00	="n/a"	="HAYS PERSONNEL SERVICES"	25-Jan-08 02:39 PM	

+="CN56604"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Jan-08	24-Jan-08	21523.68	="06/09065-04"	="INFRONT SYSTEMS PTY LTD"	25-Jan-08 02:40 PM	

+="CN56605"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Aug-07	19-Aug-08	14803.80	="FIN06/FES3"	="VERIZON"	25-Jan-08 02:40 PM	

+="CN56606"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	07-Jan-08	29-Feb-08	13145.00	=""	="THE NOUS GROUP"	25-Jan-08 02:40 PM	

+="CN56607"	"Memberships & Subscriptions Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	30138.51	="N/A"	="COPYRIGHT AGENCY LIMITED"	25-Jan-08 02:40 PM	

+="CN56608"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	13-Jan-08	31-Jan-09	71814.87	=""	="HEC PARIS"	25-Jan-08 02:40 PM	

+="CN56597"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	01-Nov-07	30-Nov-07	11900.00	=""	="VIP Home Services"	25-Jan-08 02:41 PM	

+="CN56609"	" TRUNK LOCKERS, PLASTIC,OLIVE "	="Defence Materiel Organisation"	25-Jan-08	="Storage chests and cabinets and trunks"	21-Jan-08	16-Jun-08	1314500.00	="J8102"	="TRIMCAST P/L"	25-Jan-08 02:42 PM	

+="CN56611"	" METAL INSIGNIA "	="Defence Materiel Organisation"	25-Jan-08	="Badges"	25-Jan-08	15-Jun-08	192583.90	=""	="CASH'S (AUSTRALIA) PTY LTD"	25-Jan-08 02:58 PM	

+="CN56614"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Computer servers"	23-Jul-07	30-Jun-08	21230.00	=""	="DELL COMPUTER P/L"	25-Jan-08 03:15 PM	

+="CN56615"	"Inderlec Medical Systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Touch screen monitors"	31-Jul-07	30-Jun-08	11572.00	="NA"	="Inderlec Medical Systems P/L"	25-Jan-08 03:15 PM	

+="CN56616"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Audit services"	26-Jun-07	26-Jun-07	14976.04	=""	="Protiviti Pty Ltd"	25-Jan-08 03:15 PM	

+="CN56617"	"Technology One Ltd"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Software maintenance and support"	01-Dec-07	30-Nov-08	34872.22	=""	="Technology One"	25-Jan-08 03:16 PM	

+="CN56618"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14079.23	=""	="Tru Energy"	25-Jan-08 03:16 PM	

+="CN56619"	"Oxford Scientific"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Film badges"	01-Jul-07	30-Jun-08	54670.00	=""	="OXFORD SCIENTIFIC"	25-Jan-08 03:16 PM	

+="CN56620"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Spectrometers"	03-Oct-07	30-Oct-08	338083.00	="NA"	="Nu Scientific P/L"	25-Jan-08 03:16 PM	

+="CN56622"	"07/2256 - IT Product Installation & Maintenance"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	25-Sep-07	25-Mar-08	55000.00	=""	="CA (Pacific) Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56623"	"CPO018690 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jan-08	30-Jun-08	57762.88	=""	="Dataline Visual Link"	25-Jan-08 03:57 PM	

+="CN56624"	"07/2115 - Construction of Computer System"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	20-Dec-07	04-Feb-08	90750.00	=""	="Stultz Australia Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56625-A1"	"07/2408 - Communication Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	01-Dec-07	30-Jun-08	48598.00	=""	="Allied Technologies Australia Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56626"	"CPO018712 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jan-08	30-Jun-08	30400.17	=""	="Dataline Visual Link"	25-Jan-08 03:58 PM	

+="CN56627-A1"	"07/2405 - Office fit-out"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	21-Dec-07	31-Jan-09	158840.00	=""	="Tagara Builders Pty Ltd"	25-Jan-08 03:58 PM	

+="CN56628"	"07/2285 - Software - Application and Support"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	21-Dec-07	30-Jun-11	202070.00	=""	="Critchlow Ltd"	25-Jan-08 03:58 PM	

+="CN56629"	"07/1741 Project Management Services - (CPO007771)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management advisory services"	06-Mar-07	30-Sep-07	37480.00	=""	="BurnsBridge Australia Pty Ltd"	25-Jan-08 03:58 PM	

+="CN56630"	"CPE003466-3 - Database Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	01-Jan-08	31-Mar-08	22023.60	=""	="Factiva Ltd"	25-Jan-08 03:58 PM	

+="CN56631-A1"	"05/1094 - Develop Specification and Program Management Plan"	="Australian Customs and Border Protection Service"	25-Jan-08	="Human resources services"	24-Sep-07	30-Nov-07	606767.00	=""	="Booz Allen Hamilton (Australia) Ltd"	25-Jan-08 03:58 PM	

+="CN56632"	"CPO018832 - Uniforms"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fabrics and leather materials"	16-Jan-08	15-Apr-08	44220.00	=""	="Trade Import Services"	25-Jan-08 03:58 PM	

+="CN56633"	"CPO018840 - Uniforms"	="Australian Customs and Border Protection Service"	25-Jan-08	="Clothing"	16-Jan-08	13-Feb-08	12826.90	=""	="Elegant Knitting Company"	25-Jan-08 03:58 PM	

+="CN56634"	"CPE004348-1 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Refuse disposal and treatment"	18-Dec-07	19-Dec-07	15135.12	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	25-Jan-08 03:59 PM	

+="CN56635"	"CPE004348-2 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	18-Dec-07	16666.65	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	25-Jan-08 03:59 PM	

+="CN56636"	"07/2258 - Construction services (Initial and variation)"	="Australian Customs and Border Protection Service"	25-Jan-08	="General building construction"	21-Sep-07	24-Dec-07	605869.00	=""	="Tech Knowledges Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56637"	"CPO018909 - Telecomunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	21-Jan-08	21-Jan-08	16719.89	=""	="Geo Science Australia"	25-Jan-08 03:59 PM	

+="CN56638"	"CPO018914 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	23555.40	=""	="LAN 1 Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56639"	"CPO018916 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	22081.40	=""	="Intelligent Surveillance"	25-Jan-08 03:59 PM	

+="CN56640"	"CPO018929 - Auditing Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Accounting and auditing"	21-Jan-08	20-Jun-08	78423.40	=""	="Motorola Australia Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56641"	"CPE003370-3 - Telecommunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	17-Dec-07	17-Dec-07	16136.58	=""	="Electrotech Australia"	25-Jan-08 03:59 PM	

+="CN56647"	"CPE003131-2 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	21-Dec-07	21-Dec-07	13810.40	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:00 PM	

+="CN56648"	"CPE003131-3 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	24-Dec-07	24-Dec-07	14003.52	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:00 PM	

+="CN56650"	"CPE003370-4 - Telecommunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	10-Jan-08	10-Jan-08	14763.06	=""	="Electrotech Australia"	25-Jan-08 04:00 PM	

+="CN56651"	"CPE003131-4 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	29-Dec-07	29-Dec-07	12233.20	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56652"	"CPE003131-5 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	29-Dec-07	29-Dec-07	12233.20	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56653"	"CPO018947 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	28053.30	=""	="LAN 1 Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56654-A1"	"07/2326 - Review Consultancy"	="Australian Customs and Border Protection Service"	25-Jan-08	="Business and corporate management consultation services"	12-Oct-07	19-Oct-07	79000.00	=""	="Apis Consulting Group (ACT) Pty"	25-Jan-08 04:01 PM	

+="CN56655"	"07/2195 - Security System - (CPO014480)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Aug-07	31-Jan-08	79607.00	=""	="Chubb Electronic Security"	25-Jan-08 04:01 PM	

+="CN56656"	"CPE002969-6 - Legislative Instruments"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	02-Dec-07	21-Dec-07	10079.69	=""	="Attorney Generals Department"	25-Jan-08 04:01 PM	

+="CN56657-A1"	"07/1909 - Efficiency Training"	="Australian Customs and Border Protection Service"	25-Jan-08	="Education and Training Services"	22-May-07	07-Jun-07	39649.50	=""	="D'Arcy Consulting Group"	25-Jan-08 04:01 PM	

+="CN56658"	"CPO017517 - Computer Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	29-Nov-07	21-Jan-08	11220.00	=""	="Cabiling Network Solutions"	25-Jan-08 04:01 PM	

+="CN56659"	"08/2556 - Office Refurbishment (CPO017213)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	20-Nov-07	26-Nov-07	38747.83	=""	="Interior Building Solutions"	25-Jan-08 04:01 PM	

+="CN56660"	"07/2557 - Office Refurbishment (CPO017418)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	26-Nov-07	26-Nov-07	22841.50	=""	="Design Farm"	25-Jan-08 04:02 PM	

+="CN56661"	"07/2558 - Office Refurbishment (CPO017222)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	20-Nov-07	26-Nov-07	11816.20	=""	="Dexion"	25-Jan-08 04:02 PM	

+="CN56662"	"08/2559 - Office Refurbishment (CPE004244-1)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	175000.00	=""	="R&L Constructions"	25-Jan-08 04:02 PM	

+="CN56663"	"08/2560 - Office Refurbishment (CPE004145-1)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	16-Nov-07	16-Nov-07	150000.00	=""	="Port City Investments"	25-Jan-08 04:02 PM	

+="CN56664-A1"	"07/2350 - Software licences and maintenance"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	01-Oct-07	31-Aug-09	331132.67	=""	="Novell Pty Ltd"	25-Jan-08 04:02 PM	

+="CN56665"	"07/2218 - Fire and Emergency Training"	="Australian Customs and Border Protection Service"	25-Jan-08	="Education and Training Services"	10-Apr-07	09-Apr-08	22448.14	=""	="Sharman Property Services Pty Ltd"	25-Jan-08 04:02 PM	

+="CN56666"	"CPO018964 - Recruitment Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	17-Jan-08	28564.61	=""	="Recruitment Management Company"	25-Jan-08 04:02 PM	

+="CN56667"	"CPO014192 - Licences"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	19-Jan-07	18-Jan-08	54842.00	=""	="Australian Communciations and Media Authority"	25-Jan-08 04:02 PM	

+="CN56668"	"07/2206 - Radio communications licences"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	19-Jun-07	18-Jun-08	151396.00	=""	="Australian Communciations and Media Authority"	25-Jan-08 04:03 PM	

+="CN56669"	"07/2517 - Call Centre Customer Survey"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	18-Jul-08	38500.00	=""	="callcentres.com. Pty Ltd"	25-Jan-08 04:03 PM	

+="CN56670-A2"	"03/0105 - Maintenance and repair of communications equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	27-Mar-07	28-Mar-12	1474644.00	=""	="Motorola Australia Pty Ltd"	25-Jan-08 04:03 PM 

--- /dev/null
+++ b/admin/partialdata/21Jun2008to23Jun2008valto.xls
@@ -1,1 +1,110 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN94132"	" AIRCRAFT SPARES  NSN: 4925-66-127-9333  QTY: 2 "	="Defence Materiel Organisation"	23-Jun-08	="Military transport helicopters"	20-Jun-08	15-Feb-09	21704.48	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	23-Jun-08 07:57 AM	

+="CN94133"	"Wet Weather Garments"	="Defence Materiel Organisation"	23-Jun-08	="Protective rainwear or wet environment apparel"	17-Jun-08	31-Jul-08	4056602.00	="POE/CLOSPO/08/001"	="Global Safety Solutions Management"	23-Jun-08 08:15 AM	

+="CN94137-A1"	"SAP technical development services"	="Australian Federal Police"	23-Jun-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	110825.00	=""	="SAP Australia Pty Ltd"	23-Jun-08 09:13 AM	

+="CN94142"	"GAGE TIRE PRESSURE"	="Defence Materiel Organisation"	23-Jun-08	="Workshop machinery and equipment and supplies"	20-Jun-08	20-Jul-08	30426.00	=""	="Rema Tip Top Australia Pty Ltd"	23-Jun-08 09:42 AM	

+="CN94146"	" Manager Training and Development &ndash; Healthy Conversations "	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Aug-08	124607.00	=""	="Swinburne University of Technology"	23-Jun-08 10:33 AM	

+="CN94154-A2"	"Provision of application support services"	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	195624.00	=""	="Patriot Alliance Pty Ltd"	23-Jun-08 10:49 AM	

+="CN94155-A1"	"Planningin phase of the USD upgrade- Consultants Fees- Phase 4"	="Australian Taxation Office"	23-Jun-08	="Information technology consultation services"	20-Dec-07	23-Jun-08	1115580.00	=""	="CA( Pacific) Pty Ltd"	23-Jun-08 10:58 AM	

+="CN94156"	"10 x Positive Pressure Ventilating Fans (powered)"	="Defence Materiel Organisation"	23-Jun-08	="Fire fighting equipment"	06-Jun-08	15-Aug-08	24200.00	="FV8030"	="ASSOCIATED AIRCRAFT MANUFACTURING"	23-Jun-08 11:06 AM	

+="CN94157-A2"	"Planning, building and testing software applications."	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	30-Jun-10	380635.20	=""	="Stratagem Computer Contractors Pty. Limited"	23-Jun-08 11:14 AM	

+="CN94160"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	23-Jun-08	="Aircraft spars"	20-Jun-08	20-Feb-09	18883.33	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	23-Jun-08 11:17 AM	

+="CN94161"	"60 x Hydrant, Fire (Matthews Fire Alarm FS3023)"	="Defence Materiel Organisation"	23-Jun-08	="Fire fighting equipment"	23-Jun-08	22-Aug-08	26680.50	="FV8032"	="CADIA PLUMBING EQUIPMENT"	23-Jun-08 11:25 AM	

+="CN94162"	" Services to migrate software to new environment. "	="Australian Taxation Office"	23-Jun-08	="Software maintenance and support"	23-Jun-08	23-Jul-08	11000.00	=""	="SAI Global"	23-Jun-08 11:38 AM	

+="CN94163"	"Purchase of 121 laptops and accessories"	="Centrelink"	23-Jun-08	="Computer Equipment and Accessories"	23-Jun-08	23-Dec-08	230245.70	="2004/52285"	="Hewlett Packard Australia Pty Ltd"	23-Jun-08 11:52 AM	

+="CN94165"	"End to End Software Testing up to 12 Attendees"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	16-Jun-08	17-Jul-08	12600.00	=""	="IV & V Australia"	23-Jun-08 12:31 PM	

+="CN94166"	"Scribe services"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	17-Jun-08	18216.00	=""	="VEROSSITY PTY LTD"	23-Jun-08 12:31 PM	

+="CN94167"	"6 Talon units for Trusted Access & Forensics team."	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-08	22168.20	=""	="ASI Solutions"	23-Jun-08 12:32 PM	

+="CN94168-A3"	" Provision of IT Contractor Services. "	="Australian Taxation Office"	23-Jun-08	="Computer services"	20-Jun-08	22-Jun-12	1007015.00	="RFT 008-2008"	="CORDELTA PTY LTD"	23-Jun-08 12:33 PM	

+="CN94169"	"attendees at training programs"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	20-Jun-08	30-Jun-08	14564.00	=""	="Australian Federal Police"	23-Jun-08 12:33 PM	

+="CN94170"	"Course: Tivoli Omegamon 6.1 Administrators and Imp"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	20-Jun-08	08-Aug-08	29964.00	=""	="SENETAS CORPORATION LIMITED"	23-Jun-08 12:33 PM	

+="CN94171"	"TOLLWAY FEES FY 2008/2009"	="Australian Taxation Office"	23-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Jun-08	20-Jun-08	78000.00	=""	="INTERLINK ROADS PTY LTD"	23-Jun-08 12:33 PM	

+="CN94172"	"training program"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	19-Jun-08	01-Sep-08	10000.00	=""	="WORKPLACE COACHING PTY LTD"	23-Jun-08 12:33 PM	

+="CN94173"	"Course: Rexx Programming Workshop"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	18-Jun-08	25-Jul-08	24750.00	=""	="IBM AUSTRALIA LIMITED"	23-Jun-08 12:34 PM	

+="CN94174"	"Course: MQ20 WebSphere MQ for z/OS System Administ"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	18-Jun-08	03-Jul-08	14080.00	=""	="IBM AUSTRALIA LIMITED"	23-Jun-08 12:34 PM	

+="CN94175"	"x6 Mac Laptops for Forensics & investigations Tm."	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Jun-08	15288.57	=""	="APPLE PTY LTD"	23-Jun-08 12:34 PM	

+="CN94176"	"Digital Ultrakit for Forensics & investigation Tms"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Jun-08	13454.00	=""	="FRONTIER SOLUTIONS & STRATEGIES PTY"	23-Jun-08 12:34 PM	

+="CN94177-A4"	" Development of a communication strategy for the Australian government';s First Home Savers Account   initiative "	="Australian Taxation Office"	23-Jun-08	="Management support services"	01-Jun-08	30-Jun-11	422451.00	="08.092"	="George Patterson Y&R"	23-Jun-08 12:40 PM	

+="CN94179"	"INSTRUCTIONAL DESIGN WORKSHOP"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	13-Jun-08	13000.00	=""	="JEFF CATCHLOVE"	23-Jun-08 12:42 PM	

+="CN94180"	"CONFERENCE"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	17-Jun-08	48160.00	=""	="THE SEBEL PARRAMATTA"	23-Jun-08 12:42 PM	

+="CN94181"	"CONFERENCE"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	28-May-08	33417.20	=""	="NOVOTEL ST KILDA"	23-Jun-08 12:42 PM	

+="CN94182"	"VENUE HIRE"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	17-Jun-08	19-Jun-08	14750.00	=""	="WATERMARK HOTEL & SPA"	23-Jun-08 12:43 PM	

+="CN94183"	"PROMOTIONAL PRODUCTS"	="Australian Taxation Office"	23-Jun-08	="Office Equipment and Accessories and Supplies"	17-Jun-08	17-Jun-08	27701.41	=""	="PROMOTIONS ONLY"	23-Jun-08 12:43 PM	

+="CN94184"	"CONTRACTOR SERV"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	16-Jun-08	28812.70	=""	="Hudson Global Resources (Aust) P/L"	23-Jun-08 12:43 PM	

+="CN94185"	"RECORDS MANAGEMENT"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	23-Jun-08	13392.72	=""	="GRACE INFORMATION MANAGEMENT"	23-Jun-08 12:44 PM	

+="CN94187"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	02-Jul-09	155034.00	=""	="AJQ PTY LIMITED"	23-Jun-08 12:45 PM	

+="CN94188"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	02-Jul-09	165369.60	=""	="Ambit IT&T Recruitment Pty Ltd"	23-Jun-08 12:45 PM	

+="CN94189-A1"	"venue hire & incidentals SPR leadership conference 23 & 24 July 08"	="Australian Taxation Office"	23-Jun-08	="Travel and Food and Lodging and Entertainment Services"	04-Dec-07	30-Jul-08	20118.90	=""	="HYATT CATERING AT THE NATIONAL"	23-Jun-08 12:46 PM	

+="CN94191"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	08-Jul-09	249980.00	="RFT 039-2007"	="HEATHAZE.COM PTY LTD"	23-Jun-08 12:46 PM	

+="CN94192"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	13-Jan-09	120060.00	="RFT 100-2007"	="RFJD Pty Ltd"	23-Jun-08 12:47 PM	

+="CN94193"	"IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	06-Aug-09	216216.00	="RFT 061-2007"	="Icon Recruitment Pty Ltd"	23-Jun-08 12:47 PM	

+="CN94194"	"RFT 011-2007 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	24-Jul-09	248600.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	23-Jun-08 12:47 PM	

+="CN94195"	"RFT 047-2007 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	31-Jan-09	120806.40	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	23-Jun-08 12:47 PM	

+="CN94196"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-09	235950.00	="RFT 041-2007"	="ICON RECRUITMENT"	23-Jun-08 12:48 PM	

+="CN94197"	"IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-08	11616.00	=""	="COMPAS PTY LTD"	23-Jun-08 12:48 PM	

+="CN94200"	"Provision for Mid Year Mailout 2008"	="Comsuper"	23-Jun-08	="Printed publications"	01-May-08	25-May-08	12502.82	=""	="Hermes Precisa P/L"	23-Jun-08 12:55 PM	

+="CN94201"	"PULLY, GROOVE NSN: 3020/006579580"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	15-Apr-08	28-Apr-08	10084.80	=""	="AEROSPACE COMPOSITES PTY LTD"	23-Jun-08 01:01 PM	

+="CN94202-A1"	"Provision for the data Integration/Intelligence Tool"	="Comsuper"	23-Jun-08	="Software"	11-Jun-08	11-Sep-13	1715167.00	=""	="Sas Institute Australia"	23-Jun-08 01:03 PM	

+="CN94203"	"RELAY, PHASE SEQUENC NSN: 5945/006249513"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	12-Jun-08	29-Jun-08	19266.00	=""	="PACIFIC AERODYNE PTY LTD"	23-Jun-08 01:06 PM	

+="CN94205"	"SWITCH, THERMOSTATIC NSN: 5930/0020009326"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	12-Jun-08	18-Dec-08	32670.00	=""	="PACIFIC AERODYNE PTY LTD"	23-Jun-08 01:10 PM	

+="CN94206"	"PLUG, MACHINE THREAD NSN: 5365/014468260"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	19-Jun-08	07-Jul-08	11228.00	=""	="MILITARY AVIATION SPARES PTY LTD"	23-Jun-08 01:15 PM	

+="CN94208"	"Supply of 120 EO Tech Sight Holographic."	="Defence Materiel Organisation"	23-Jun-08	="Personal safety devices or weapons"	23-Jun-08	12-Sep-08	69300.00	=""	="NIOA Trading"	23-Jun-08 02:11 PM	

+="CN94212"	"External window works at Dandenong Registry"	="Family Court of Australia"	23-Jun-08	="Locks and security hardware and accessories"	16-May-08	13-Jun-08	17344.04	=""	="Gecko MMS Pty Ltd"	23-Jun-08 02:12 PM	

+="CN94217"	"Document Writer for e-recruitment software solutions"	="Australian Federal Police"	23-Jun-08	="Software or hardware engineering"	04-Feb-08	21-Mar-08	15000.00	=""	="Southern Cross Computing Pty Limited"	23-Jun-08 02:48 PM	

+="CN94220"	"Computer services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	01-Apr-08	30-Apr-08	13343.00	=""	="Aggmedia Pty Ltd"	23-Jun-08 03:07 PM	

+="CN94221"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	01-Jul-06	30-Jun-09	16186.29	=""	="Verizon"	23-Jun-08 03:07 PM	

+="CN94222"	"Reproduction services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Reproduction services"	01-Jul-08	30-Sep-08	18205.00	=""	="Design Emergency"	23-Jun-08 03:08 PM	

+="CN94223"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Telecommunications media services"	01-Jun-08	30-Jun-08	18885.01	=""	="Telstra"	23-Jun-08 03:08 PM	

+="CN94224"	"Telcommunications media services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Telecommunications media services"	01-May-08	31-May-08	33775.29	=""	="Telstra"	23-Jun-08 03:08 PM	

+="CN94225"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	02-Jun-08	02-Jun-09	38500.00	=""	="Children's Services Support Unit WA Inc"	23-Jun-08 03:08 PM	

+="CN94226"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	04-Jun-08	31-May-09	532800.00	="2005-31"	="Parsons Brinckerhoff Australia Pty Ltd"	23-Jun-08 03:08 PM	

+="CN94227"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	06-Jun-08	11-Jun-08	16500.00	="2005-31"	="ACIL Tasman Pty Ltd"	23-Jun-08 03:08 PM	

+="CN94229"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	06-Jun-08	31-Jul-08	50000.00	="2005-31"	="Frontier Economics Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94230"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	10-Jun-08	30-Jun-10	5135650.00	="RFQ2008-02"	="The Bailey Group Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94231"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	12969.00	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94232"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	13627.63	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94233"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	24529.73	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94234"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	12-Jun-08	30-Jun-08	15600.00	=""	="Dr Greg Walker"	23-Jun-08 03:10 PM	

+="CN94235"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	15-Feb-08	12-Sep-08	140580.00	="RFT2007-2059"	="Cordelta Pty Ltd"	23-Jun-08 03:10 PM	

+="CN94237"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	16-Jun-08	31-Jul-08	507002.10	="RFT2007-2116"	="Getronics Australia"	23-Jun-08 03:10 PM	

+="CN94238"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	17-Jun-08	10-Jun-10	16500.00	="RFQ2008-04"	="Symbio Alliance"	23-Jun-08 03:11 PM	

+="CN94239"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	17-Jun-08	31-Oct-08	55000.00	="RFT2005-31"	="Nuttall Consultancy"	23-Jun-08 03:11 PM	

+="CN94240"	"Hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	23-Jun-08	="Hotels and lodging and meeting facilities"	18-May-08	20-May-08	12464.00	=""	="Rydges Canberra"	23-Jun-08 03:11 PM	

+="CN94241"	"ADVERTISING"	="Australian Competition and Consumer Commission"	23-Jun-08	="Human resources services"	19-Apr-08	19-Apr-08	21708.74	=""	="hma Blaze Pty Ltd"	23-Jun-08 03:11 PM	

+="CN94236"	"Computer services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	18-Apr-08	21-Jun-08	10360.00	=""	="ASG Group Ltd"	23-Jun-08 03:11 PM	

+="CN94243"	"Human resources services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Human resources services"	24-May-08	30-May-08	13199.59	=""	="Jane Devereux Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94244"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	28-May-08	30-Jun-08	47137.70	=""	="Zallcom Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94245"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jul-08	12319.84	=""	="DPI Systems Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94246"	"General building construction"	="Australian Competition and Consumer Commission"	23-Jun-08	="General building construction"	31-May-08	31-May-08	10294.90	=""	="Formula Interiors NSW"	23-Jun-08 03:12 PM	

+="CN94247"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	10450.00	=""	="Dell Australia"	23-Jun-08 03:15 PM	

+="CN94249-A1"	"Computer services"	="National Competition Council"	23-Jun-08	="Computer services"	22-Oct-07	11-Feb-08	66000.00	=""	="Obsidian Consulting Group"	23-Jun-08 03:16 PM	

+="CN94248"	" Accreditation for Certificate IV in Business (Frontline Ma  nagement) "	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Aug-08	26400.00	="2005/014"	="Bayley & Associates Pty Ltd"	23-Jun-08 03:23 PM	

+="CN94251"	"Supply and deliver various Lifting,Recovery, Tiedown ,Equipment (LRTE) items"	="Defence Materiel Organisation"	23-Jun-08	="Lifting equipment and accessories"	28-May-08	11-Nov-08	22934.54	=""	="NOBLE A&SON Ltd"	23-Jun-08 03:26 PM	

+="CN94253-A5"	" Software maintenance payment "	="Department of Human Services"	23-Jun-08	="Software"	11-Feb-97	30-Jun-13	5870281.00	=""	="Levi, Ray, and Shoup Inc"	23-Jun-08 03:37 PM	

+="CN94254-A5"	" Lease at 13 Queen St, Yepoon QLD "	="Department of Human Services"	23-Jun-08	="Lease and rental of property or building"	23-Oct-01	31-Dec-11	1325830.30	=""	="Gabriel Family Trust"	23-Jun-08 03:40 PM	

+="CN94255-A6"	"Provision of services relating to IT architecture"	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	29-Jan-10	395599.88	="RFT 8-2007"	="Clicks Recruit Pty Ltd"	23-Jun-08 03:41 PM	

+="CN94252"	"Moby Poles with CES items"	="Defence Materiel Organisation"	23-Jun-08	="Diving instruments or accessories"	22-May-08	12-Jun-08	43934.00	=""	="BALE DEFENCE INDUSTRIES"	23-Jun-08 03:43 PM	

+="CN94257"	"Lease at 137-153 Crown St, Darlinghurst NSW"	="Centrelink"	23-Jun-08	="Real estate services"	15-Oct-03	14-Oct-08	3498680.91	=""	="Gedshill Pty. Limited"	23-Jun-08 03:46 PM	

+="CN94258-A4"	" Lease at Osbourne Park WA "	="Department of Human Services"	23-Jun-08	="Real estate services"	15-May-02	14-May-14	23163168.22	=""	="Garden Office Park Pty Ltd"	23-Jun-08 03:50 PM	

+="CN94260"	"NSN 3110-00-620-3262, Airframe Roller Bearings"	="Defence Materiel Organisation"	23-Jun-08	="Aerospace systems and components and equipment"	19-Jun-08	22-Jan-09	27172.75	=""	="Milspec Services Pty Ltd"	23-Jun-08 03:50 PM	

+="CN94262-A3"	" Lease at 39 Evans St, Sunbury VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	20-Sep-02	19-Sep-12	3023819.00	=""	="Four Two Nine Trust Pty Ltd"	23-Jun-08 03:53 PM	

+="CN94264"	" AIRCRAFT SPARES  NSN 5340-01-321-7981, CLIP SPRING, TENSION,  QTY 100 "	="Defence Materiel Organisation"	23-Jun-08	="Military transport helicopters"	23-Jun-08	21-Oct-08	15220.70	=""	="AIR'N'SEA SAFETY"	23-Jun-08 03:58 PM	

+="CN94263-A3"	" Lease at Melton, VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	26-Aug-02	25-Aug-12	3280028.04	=""	="The Melton Property Trust"	23-Jun-08 03:58 PM	

+="CN94266"	"TESTER, HYDRAULIC NSN: 4920/015436298"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	21-Jun-08	01-Oct-08	65451.00	=""	="AEROSPACE COMPOSITES PTY LTD"	23-Jun-08 04:00 PM	

+="CN94270-A3"	" Lease at Esperance, WA "	="Department of Human Services"	23-Jun-08	="Real estate services"	01-May-02	30-Apr-12	1433914.16	=""	="Lorndell Nominees Pty Ltd"	23-Jun-08 04:03 PM	

+="CN94271-A4"	"SMFFutil Software maintenance payment"	="Department of Human Services"	23-Jun-08	="Software maintenance and support"	01-Jan-09	31-Dec-20	897062.89	=""	="Ubiquity Pty Ltd"	23-Jun-08 04:03 PM	

+="CN94272"	"Lease at Gungahlin, ACT"	="Centrelink"	23-Jun-08	="Real estate services"	01-Jan-01	31-Dec-08	543428.27	=""	="Tower 720 Pty Ltd"	23-Jun-08 04:05 PM	

+="CN94275"	"Telephone Account"	="Australian Electoral Commission"	23-Jun-08	="Local and long distance telephone communications"	14-Apr-08	13-May-08	81174.12	=""	="Telstra Corporation"	23-Jun-08 04:11 PM	

+="CN94276"	"Software Maintenance"	="Australian Electoral Commission"	23-Jun-08	="Software maintenance and support"	01-May-08	30-Jun-08	20896.70	=""	="Turbosoft Pty Ltd"	23-Jun-08 04:18 PM	

+="CN94277"	"Lease at Cannington, WA"	="Centrelink"	23-Jun-08	="Real estate services"	12-Aug-02	11-Aug-09	3204727.00	=""	="Strive Pty Ltd"	23-Jun-08 04:21 PM	

+="CN94278"	"Lease at Meredith St Bankstown, NSW"	="Centrelink"	23-Jun-08	="Real estate services"	01-Sep-02	31-Aug-09	3683246.53	=""	="Meredith Projects Pty Limited"	23-Jun-08 04:22 PM	

+="CN94279"	"Computer Tapes"	="Australian Electoral Commission"	23-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	22071.50	=""	="Tech Supplies Pty Ltd"	23-Jun-08 04:25 PM	

+="CN94280"	" Lease at Terrica Pl, Brisbane, QLD "	="Centrelink"	23-Jun-08	="Real estate services"	18-Mar-03	17-Mar-10	1993015.00	=""	="ISPT Pty Ltd"	23-Jun-08 04:28 PM	

+="CN94281-A2"	" Lease at Sorell, TAS "	="Department of Human Services"	23-Jun-08	="Real estate services"	08-Jul-02	07-Jul-12	1805230.56	=""	="Julfran Pty Ltd"	23-Jun-08 04:33 PM	

+="CN94282-A1"	"Lease at Campbelltown, NSW"	="Department of Human Services"	23-Jun-08	="Real estate services"	05-Aug-02	04-Aug-17	11243693.19	=""	="Sandran Pty Ltd"	23-Jun-08 04:34 PM	

+="CN94283-A2"	" Lease at Mt Barker, SA "	="Department of Human Services"	23-Jun-08	="Real estate services"	01-May-02	30-Apr-12	2330539.65	=""	="AJ Chappell Admin Pty Ltd 7 Phillis Holdings Pty Ltd"	23-Jun-08 04:38 PM	

+="CN94284"	" Provision of expert advice throughout the process of development and bargining for the new Centrelink Agreement "	="Centrelink"	23-Jun-08	="Management advisory services"	03-Jun-08	31-Mar-09	78000.00	=""	="Fellows Medlock & Associates Pty Ltd"	23-Jun-08 04:39 PM	

+="CN94285-A3"	" Lease at 71 Pound Rd West, Dandenong South, VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	29-Apr-02	28-Apr-14	6794943.55	=""	="Perpetual Trustee Company"	23-Jun-08 04:47 PM	

+="CN94288"	"GST compliance advice - Top up to existing contract notice CN54864 $10824 (FFMA0148) by $3179"	="Future Fund Management Agency"	23-Jun-08	="Accounting and auditing"	20-May-08	20-May-08	14003.00	=""	="Ernst & Young"	23-Jun-08 05:21 PM 

--- /dev/null
+++ b/admin/partialdata/21Mar2008to25Mar2008valto.xls
@@ -1,1 +1,406 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN66601"	"Annual Levy Operational Services"	="Department of the Environment Water Heritage and the Arts"	23-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Oct-07	31-Oct-07	66000.00	="0708-436"	="Department of Finance and Administration"	23-Mar-08 01:44 PM	

+="CN66603"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	15648.42	=""	="SAAL"	25-Mar-08 09:26 AM	

+="CN66604"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	59813.75	=""	="SAAL"	25-Mar-08 09:29 AM	

+="CN66605"	"Telecommunications Consumer Research Data"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Market research"	28-Feb-08	27-Jun-08	61053.30	="07ACMA055"	="Roy Morgan Research Pty Ltd"	25-Mar-08 09:30 AM	

+="CN66606"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	104666.98	=""	="SAAL"	25-Mar-08 09:31 AM	

+="CN66612"	"New GL and Funds Management advisory"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Software"	08-Oct-07	30-Sep-08	35420.00	=""	="SAP AUSTRALIA P/L - HEAD OFFICE"	25-Mar-08 09:55 AM	

+="CN66613"	"Delivery of contract management training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	19184.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66614"	"Delivery of simple procurement training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	14300.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66615"	"Delivery of complex procurement training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	20944.01	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66616"	"Delivery of training in using feedback"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	31660.02	="APS COMMISSION 2005/014"	="JOAN MARGARET WILSON JONES"	25-Mar-08 09:55 AM	

+="CN66617"	"Building Levy Lifts and Scaffolding"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="General building construction"	19-Mar-08	19-Mar-08	45820.89	=""	="ACT PLANNING  & LAND AUTHORITY"	25-Mar-08 09:56 AM	

+="CN66618"	"Recruitment Services - Gen. Manager HR"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Community and social services"	15-Feb-08	15-May-08	59899.90	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	25-Mar-08 09:56 AM	

+="CN66619"	"OLDP drafter for CASA Regulations"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Business administration services"	01-Jan-08	30-Jun-08	46393.75	=""	="ATTORNEY-GENERAL'S DEPARTMENT"	25-Mar-08 09:56 AM	

+="CN66620"	"Review of HCD program"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	17-Mar-08	16-May-08	37000.00	="TRS06/037"	="ERNST & YOUNG"	25-Mar-08 09:56 AM	

+="CN66621"	"Contractor Nora Stewart"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	03-Mar-08	11-Apr-08	35999.70	="TRS06/017"	="Peoplebank Australia Ltd"	25-Mar-08 09:56 AM	

+="CN66622"	"Contractor Steve Fielding"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	25-Feb-08	18-Apr-08	24200.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 09:56 AM	

+="CN66623"	"ACAS study - analyse mandate extension and assess appropriateness of using ACAS to classify airspace"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	07-Mar-08	30-Jun-08	343170.00	="TRS07/333"	="Hyder Consulting Pty Ltd"	25-Mar-08 09:57 AM	

+="CN66624"	"Goods and Services Tax review of Grants"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	12-Mar-08	30-May-08	22000.00	="TRS06/037"	="ERNST & YOUNG"	25-Mar-08 09:57 AM	

+="CN66625"	"Contract Staff -APS 6 - AvSec Training Section"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Community and social services"	03-Mar-08	30-Jun-08	44000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	25-Mar-08 09:57 AM	

+="CN66626"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	17-Mar-08	30-Jun-08	106356.12	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 09:57 AM	

+="CN66627"	"Ad hoc mov't staff to and from o/s posts"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Material packing and handling"	17-Mar-08	30-Jun-08	31300.00	=""	="SIRVA Pty Ltd"	25-Mar-08 09:57 AM	

+="CN66628"	"*TRS07/290 LEASE TS1020 X'MAS ISLAND E'YEE HOUSING FROM  01 OCT 07 TO  13 APRIL 2010"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Real estate services"	24-Sep-07	13-Apr-10	59015.21	="TRS07/290"	="Inger VANDYKE & Richard Baxter"	25-Mar-08 09:57 AM	

+="CN66629"	"*TRS07/289 LEASE TS1016 X'MAS ISLAND E'YEE HOUSING FROM  01 OCT 07 TO 31 JULY 2010"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Real estate services"	24-Sep-07	31-Jul-10	66477.06	="TRS07/289"	="Paul Francis & Rosanna HUSSEY"	25-Mar-08 09:57 AM	

+="CN66630"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	20-Mar-08	30-Jun-08	93555.00	="TRS06/017"	="SME GATEWAY LTD"	25-Mar-08 09:58 AM	

+="CN66631"	"OPTUS DATA OPTUS FEE"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Telecommunications media services"	20-Mar-08	30-Jun-08	659500.00	="TRS07/229"	="OPTUS BILLING SERVICES PTY LTD"	25-Mar-08 09:58 AM	

+="CN66632"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Legal services"	13-Mar-08	30-Jun-09	19853.02	="TRS06/175"	="MINTER ELLISON LAWYERS"	25-Mar-08 09:58 AM	

+="CN66634"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Mar-08	="Aircraft spars"	25-Mar-08	17-Nov-08	24943.60	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Mar-08 10:12 AM	

+="CN65402"	"Provision of Prince 2 training for ACMA ISS staff."	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Education and Training Services"	17-Mar-08	20-Mar-08	10500.00	=""	="Tanner James Management Consultants Pty Ltd"	25-Mar-08 10:13 AM	

+="CN66635"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Mar-08	="Aircraft spars"	25-Mar-08	16-Mar-09	13893.11	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Mar-08 10:17 AM	

+="CN65316"	"Provision of venue, catering and associated services for ACMA Radcom 2008 conference. The conference is funded on a cost recovery basis."	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Conference centres"	30-Apr-08	02-May-08	125000.00	=""	="Sofitel Melbourne"	25-Mar-08 10:18 AM	

+="CN65371"	" Provision of contract staff to provide time and workload management training. "	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	18-Feb-08	25-Feb-08	20000.00	=""	="Priority Management NSW"	25-Mar-08 10:19 AM	

+="CN66636"	"Provision of Islamic Awareness program"	="Australian Federal Police"	25-Mar-08	="Public relations programs or services"	11-Mar-08	14-Mar-08	31801.00	="65/2006"	="Asian Law Group Pty Ltd"	25-Mar-08 10:30 AM	

+="CN66637"	" SUPPLY OF FIRST AID KITS, VEHICLE ACCIDENT "	="Defence Materiel Organisation"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	17-Mar-08	30-May-08	30855.00	=""	="ST JOHNS NATIONAL BUSINESS"	25-Mar-08 10:33 AM	

+="CN66638"	"Oracle Database Renewals"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Software"	26-May-08	25-Mar-09	70131.22	=""	="Oracle Corporation Australia Pty Ltd"	25-Mar-08 10:34 AM	

+="CN66640"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF "	="Defence Materiel Organisation"	25-Mar-08	="Camping and outdoor equipment and accessories"	25-Mar-08	30-Apr-08	14977.50	="J8123"	="MONT ADVENTURE EQUIPMENT"	25-Mar-08 10:39 AM	

+="CN66641"	"Prepaid Hours for Video Conferencing Bridging"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Videoconferencing systems"	01-Jan-08	30-Apr-08	44000.00	=""	="ServicePoint Australia Pty Ltd"	25-Mar-08 10:45 AM	

+="CN66643"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	24-Mar-09	201344.00	=""	="HITECH PERSONNEL"	25-Mar-08 10:45 AM	

+="CN66644"	"IT Hardware"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	30-Jun-08	10726.00	=""	="FRONTIER SOLUTIONS & STRATEGIES PTY"	25-Mar-08 10:45 AM	

+="CN66645"	"IP Telephony Licenses"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	30-Jun-08	13828.82	=""	="NORTEL NETWORKS AUSTRALIA PTY LTD"	25-Mar-08 10:45 AM	

+="CN66646"	"FURNITURE - Tables and Chairs"	="Australian Taxation Office"	25-Mar-08	="Furniture and Furnishings"	19-Mar-08	17-Apr-08	17021.01	=""	="STURDY COMPONENTS PTY LTD"	25-Mar-08 10:45 AM	

+="CN66647"	"4 x CANON L3000 FAX MACHINES"	="Australian Taxation Office"	25-Mar-08	="Office Equipment and Accessories and Supplies"	19-Mar-08	19-Mar-08	11039.60	=""	="CANON AUST PTY LTD"	25-Mar-08 10:45 AM	

+="CN66648"	"FURNITURE - Tables and Chairs"	="Australian Taxation Office"	25-Mar-08	="Furniture and Furnishings"	19-Mar-08	17-Apr-08	12224.08	=""	="STURDY COMPONENTS PTY LTD"	25-Mar-08 10:46 AM	

+="CN66642-A1"	"SUPPLY OF RESUSCITATOR-INHALATORS"	="Defence Materiel Organisation"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-Aug-08	15340.00	=""	="ADD-TECH MEDICAL"	25-Mar-08 10:46 AM	

+="CN66649"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	18-Mar-08	24-Mar-09	198000.00	=""	="FACE2FACE RECRUITMENT PTY LTD"	25-Mar-08 10:46 AM	

+="CN66650-A1"	"provision of services of Server Engineer."	="Family Court of Australia"	25-Mar-08	="Temporary information technology systems or database administrators"	10-Mar-08	10-Mar-09	166438.00	=""	="Hays Recruitment"	25-Mar-08 10:47 AM	

+="CN66651"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	18-Mar-08	20-Sep-08	72420.00	="002-2007"	="COMPAS PTY LTD"	25-Mar-08 10:47 AM	

+="CN66653"	"ATO WOODHEAD GALLERIA DISPLAY"	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	19-Mar-08	33050.82	=""	="XEED PTY LTD"	25-Mar-08 10:50 AM	

+="CN66654"	"RENT"	="Australian Taxation Office"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	07-Mar-08	20-Mar-08	10920.00	=""	="INDEPENDANT PROPERTY GROUP"	25-Mar-08 10:50 AM	

+="CN66655"	"RENT"	="Australian Taxation Office"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	13-Mar-08	20-Mar-08	12774.95	=""	="PURNELL REAL ESTATE PTY LTD"	25-Mar-08 10:50 AM	

+="CN66652"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1865 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Mar-08	="Aerospace systems and components and equipment"	19-Mar-08	30-Apr-08	58858.36	=""	="Goodrich Control Systems"	25-Mar-08 10:50 AM	

+="CN66657"	"CONTRACTORS"	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	19-Mar-08	16204.17	=""	="Hudson Global Resources (Aust) P/L"	25-Mar-08 10:52 AM	

+="CN66658"	"ANNUAL CHARGES ON SOFTWARE"	="Australian Taxation Office"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	29-Feb-08	19-Mar-08	21137.00	=""	="ADVENT ONE PTY LTD"	25-Mar-08 10:52 AM	

+="CN66659"	"AVO PHONE ACCOUNTS FOR ALL OFFICES"	="Australian Taxation Office"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	07-Mar-08	20-Mar-08	45626.78	=""	="TELSTRA"	25-Mar-08 10:52 AM	

+="CN66661"	"6th annula Test mangers Forum 5 Attendees"	="Australian Taxation Office"	25-Mar-08	="Education and Training Services"	17-Mar-08	03-May-08	10000.00	=""	="K J ROSS & ASSOCIATES"	25-Mar-08 10:58 AM	

+="CN66662-A1"	"Procurement Services for panel of Professional Service providers"	="Australian Federal Police"	25-Mar-08	="Technical support or help desk services"	26-Nov-07	01-May-08	22660.00	="22-2005"	="Grosvenor Management Consulting"	25-Mar-08 10:59 AM	

+="CN66664"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1239 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Mar-08	="Aerospace systems and components and equipment"	18-Mar-08	30-Apr-08	59590.20	=""	="Goodrich Control Systems"	25-Mar-08 11:01 AM	

+="CN66666"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	26-Mar-09	183039.85	=""	="TALENT INTERNATIONAL"	25-Mar-08 11:04 AM	

+="CN66668"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	25-Mar-08	="Motor vehicles"	20-Mar-08	20-Apr-08	14649.36	=""	="LAND ROVER AUSTRALIA"	25-Mar-08 11:25 AM	

+="CN66669"	"SUPPLY OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Mar-08	="Motor vehicles"	20-Mar-08	20-Apr-08	11319.73	=""	="LAND ROVER AUSTRALIA"	25-Mar-08 11:34 AM	

+="CN66279"	" Weapon transit cases "	="Defence Materiel Organisation"	25-Mar-08	="Light weapons and ammunition"	25-Jan-08	10-Mar-08	12903.00	=""	="trimcast pty ltd"	25-Mar-08 11:57 AM	

+="CN66672"	"Consultancy services for Consumer Impact Statements"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	20-Feb-08	13640.00	=""	="CONSUMERS HEALTH FORUM OF"	25-Mar-08 12:16 PM	

+="CN66673"	"Chemical guidelines printing and distribution"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jan-08	25-Feb-08	13776.40	=""	="PARAGON PRINTERS"	25-Mar-08 12:16 PM	

+="CN66674"	"Web Content Manager"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	04-Feb-08	27-Jun-08	30000.00	=""	="LYNN FARKAS INFORMATION SERVICES PT"	25-Mar-08 12:16 PM	

+="CN66675"	"Printing and delivery of booklets for the National Bowel Screening Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	17-Jan-08	11-Feb-08	42284.00	=""	="UNION OFFSET CO. PTY. LIMITED"	25-Mar-08 12:16 PM	

+="CN66676"	"Estimation of an under/over identification factor relating to indigenous hospital patients"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	11-Feb-08	70000.00	=""	="DEPT OF HEALTH QLD  -  QLD BRISBANE"	25-Mar-08 12:17 PM	

+="CN66677"	"OATSIH capital works governance and accountability review"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	20-Jan-09	200000.00	=""	="BUCHANAN PRICE PTY LTD"	25-Mar-08 12:17 PM	

+="CN66678"	"Themeing of the 2007 Staff Survey free text comments"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	11-Feb-08	13860.00	=""	="C A MAUK & ASSOCIATES PTY LTD"	25-Mar-08 12:17 PM	

+="CN66679"	"Residential Lease for Santiago"	="Austrade"	25-Mar-08	="Real estate services"	01-Aug-07	31-Aug-09	82751.00	=""	="Sociedad Santa Paula"	25-Mar-08 12:17 PM	

+="CN66680"	"Stategic management advice for the 2009/10 accommodation project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-10	29700.00	=""	="OOSW CONSULTING PTY LIMITED"	25-Mar-08 12:17 PM	

+="CN66681"	"Grants Auditors"	="Austrade"	25-Mar-08	="Human resources services"	23-Jul-07	28-Aug-07	25322.88	=""	="Hays Personnel Services (Australia) Pty Limited"	25-Mar-08 12:17 PM	

+="CN66682"	"Electronic whiteboards supply"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	11-Feb-08	13485.01	="074/0506"	="ELECTROBOARD SOLUTIONS PTY LTD"	25-Mar-08 12:17 PM	

+="CN66683"	"2088 Diaries, Calenders and 2007 Christmas cards"	="Austrade"	25-Mar-08	="Stationery"	14-Feb-08	14-Feb-08	34212.87	=""	="Corporate Express"	25-Mar-08 12:17 PM	

+="CN66684"	"Scarborough House premises after hours air conditioning"	="Department of Health and Ageing"	25-Mar-08	="Distribution and Conditioning Systems and Equipment and Components"	01-Aug-05	30-Jun-08	185755.68	=""	="THE TRUSTEE FOR SCARBOROUGH HOUSE"	25-Mar-08 12:17 PM	

+="CN66685"	"Permanent placement fee"	="Austrade"	25-Mar-08	="Human resources services"	21-Feb-08	06-Mar-08	13434.62	=""	="Icon Recruitment Pty Ltd"	25-Mar-08 12:17 PM	

+="CN66686"	"GENERAL PRACTIONER LOCATOR WEBSITE TECHNICAL SERVICES"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	08-Jul-07	31-Mar-08	97195.20	=""	="MADLIN PROJECTS PTY LIMITED"	25-Mar-08 12:17 PM	

+="CN66687"	"UPS power charges Feb 08"	="Austrade"	25-Mar-08	="Utilities"	01-Feb-08	29-Feb-08	14260.47	=""	="ActewAGL"	25-Mar-08 12:18 PM	

+="CN66688"	"Supply and printing of showbags for the Commonwealth Carelink Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	01-Feb-08	01-Mar-08	14737.25	=""	="INTANDEM EVAN EVANS"	25-Mar-08 12:18 PM	

+="CN66689"	"Advertising for Osaka Japan"	="Austrade"	25-Mar-08	="Marketing and distribution"	10-Feb-08	10-Feb-08	10952.43	=""	="HMA Blaze"	25-Mar-08 12:18 PM	

+="CN66690"	"Sydney office switchboard costs Feb 08"	="Austrade"	25-Mar-08	="Utilities"	01-Mar-08	01-Mar-08	13829.44	=""	="Telstra"	25-Mar-08 12:18 PM	

+="CN66692"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	25-Mar-08	="Computer Equipment and Accessories"	12-Nov-07	12-Nov-07	80337.91	=""	="Hewlett Packard Australia Pty Ltd"	25-Mar-08 12:18 PM	

+="CN66691"	"Evaluation of the Quality Use of Medicines Maximised for ATSI People Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-10	549362.00	="018/0708"	="URBIS PTY LTD"	25-Mar-08 12:18 PM	

+="CN66693"	"Project Officer to support the Way Forward Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	31-Mar-08	31902.25	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	25-Mar-08 12:18 PM	

+="CN66694"	"Design & development of indigenous graphics and "kangaroo dreaming"	="Austrade"	25-Mar-08	="Marketing and distribution"	18-Feb-08	31-Mar-08	14454.00	=""	="Keystone Corporate Positioning Pty Ltd"	25-Mar-08 12:18 PM	

+="CN66695"	"Provision of Diagnostic report re: Torres Strait Home for the Aged Association Inc."	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	28-Feb-08	30000.00	=""	="ROBERT GRIEW PTY LTD"	25-Mar-08 12:18 PM	

+="CN66696"	"CRM Professional Cal"	="Austrade"	25-Mar-08	="Computer services"	18-Feb-08	18-Feb-08	408081.60	=""	="Data#3 Limited"	25-Mar-08 12:18 PM	

+="CN66697"	"Presentation & Dinner - Professor David Olds"	="Department of Health and Ageing"	25-Mar-08	="Food and Beverage Products"	04-Feb-08	16-Feb-08	10035.97	=""	="GINGER CATERING"	25-Mar-08 12:18 PM	

+="CN66698"	"Printing of A guide for general practioniers"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	01-Jan-08	30-Jun-08	10013.00	=""	="RAINBOW PRINTING PTY LTD"	25-Mar-08 12:18 PM	

+="CN66699"	"Planning, preparation, development, support and delivery"	="Austrade"	25-Mar-08	="Computer services"	14-Feb-08	13-Mar-08	26639.04	=""	="Impact Employee Communications Pty Limited"	25-Mar-08 12:18 PM	

+="CN66700"	"Printing of the National Mental Health Report 2007"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	29-Jan-08	30-Jun-08	26321.00	=""	="CPP INSTANT PRINTING"	25-Mar-08 12:18 PM	

+="CN66701"	"The delivery of personal Travel Safety courses in Sydney Feb 2008"	="Austrade"	25-Mar-08	="Education and Training Services"	03-Mar-08	03-Mar-08	14914.48	=""	="Yu ShihTao Kung Fu"	25-Mar-08 12:18 PM	

+="CN66702"	"Advising services - Home & Community Care Information Mgmt System & KPI project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	39600.00	=""	="EWAN MAXWELL MORRISON"	25-Mar-08 12:19 PM	

+="CN66703"	"1000 Engraved Mag-Lites"	="Austrade"	25-Mar-08	="Marketing and distribution"	12-Feb-08	12-Mar-08	11649.00	=""	="Branded Products Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66704"	"Development of commercial & residential guidelines"	="Austrade"	25-Mar-08	="Real estate services"	24-Sep-07	24-Oct-07	21950.94	=""	="Coffey Corporate Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66705"	"AAT Application- Harvey and Australian Community Pharmacy Authority"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	24977.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66706"	"Review, edit  material and draft report"	="Austrade"	25-Mar-08	="Human resources services"	11-Feb-08	25-Feb-08	27555.00	=""	="Zita Antonios Consulting"	25-Mar-08 12:19 PM	

+="CN66707"	"Litigation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	30000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:19 PM	

+="CN66708"	"Preparation of online survey, assessment and workshop"	="Austrade"	25-Mar-08	="Human resources services"	27-Feb-08	14-Apr-08	10534.32	=""	="Culture Resource Centre Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66709"	"AAT Application - Loan Chau v Australian Community Pharmacy Authority"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	23000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66710"	"Reformatting and rewriting the Export Market Development Grants operational procedure manual"	="Austrade"	25-Mar-08	="Human resources services"	11-Feb-08	11-Apr-08	27500.00	=""	="Apis Consulting group Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66711"	"General Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Jun-07	30-Jun-08	20000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66712"	"Analysis of business requirements and implementation of a solution to manage information and interactions relating to clients and allies"	="Austrade"	25-Mar-08	="Human resources services"	18-Feb-08	31-May-08	543918.10	=""	="Accenture Australia Holdings Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66713"	"Specialist Advice: review and revise FOI templates"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-May-07	30-Apr-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66715"	"Maintenance of security equipement in Dubai"	="Austrade"	25-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Mar-08	01-Mar-09	29000.00	=""	="Citytec"	25-Mar-08 12:20 PM	

+="CN66716"	"Design and printing of  Tourism Education Guide"	="Austrade"	25-Mar-08	="Marketing and distribution"	01-Nov-07	31-Jan-08	12298.00	=""	="FP Compania Impresora SA"	25-Mar-08 12:20 PM	

+="CN66717"	"SAS data integration services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	05-Mar-08	25520.00	="288/0607"	="UXC LIMITED"	25-Mar-08 12:20 PM	

+="CN66718"	"Preparation and facilitation of Export Market Development Grants presentation and workshop 2008"	="Austrade"	25-Mar-08	="Human resources services"	12-Feb-08	07-Mar-08	21051.25	=""	="In Corporate Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66719"	"Validation, provision and analysis of data for the State of Our Public Hospitals 2008 Report"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-Jun-08	46203.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:20 PM	

+="CN66720"	"Analyst Programmer"	="Austrade"	25-Mar-08	="Human resources services"	01-Feb-08	30-Jun-08	77000.00	=""	="Collective Resources IT Recruitment Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66721"	"Mainframe software renewal for Control M-Control/ M-Restart software"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	95679.79	=""	="BMC SOFTWARE (AUSTRALIA) PTY LTD"	25-Mar-08 12:20 PM	

+="CN66722"	"Preparation and facilitation of workshop with the Kuala Lumpur and Singapore marketing teams"	="Austrade"	25-Mar-08	="Human resources services"	27-Feb-08	29-Feb-08	11080.30	=""	="The Teleran Group Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66724"	"Premier Support Serives"	="Austrade"	25-Mar-08	="Computer services"	22-Feb-08	21-Feb-11	114724.50	=""	="Microsoft Pty Limited"	25-Mar-08 12:20 PM	

+="CN66725"	"Evaluation of Policy Analysis Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jul-08	225929.00	="375/0607"	="HEATHMORE PTY LTD"	25-Mar-08 12:20 PM	

+="CN66726"	"Sponsorship of NSW Export Awards"	="Austrade"	25-Mar-08	="Marketing and distribution"	22-Feb-08	22-Mar-11	16500.00	=""	="Australian Institute of Export (NSW) Ltd"	25-Mar-08 12:20 PM	

+="CN66727"	"Provision of Minor Fitout Works - Executive Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	14-Dec-07	06-Feb-08	43876.80	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:21 PM	

+="CN66728"	"Provision of Minor Fitout Works"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	27-Oct-07	06-Feb-08	73215.45	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:21 PM	

+="CN66729"	"Recruitment of new CEO for ACSQHC"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	29-Feb-08	25666.65	=""	="PROFILE RAY AND BERNDTSON PTY LTD"	25-Mar-08 12:21 PM	

+="CN66730"	"Purchase of hospital beds for 6 weeks - Northern Territory Emergency Response (NTER)"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	15-Sep-07	06-Feb-08	576000.00	=""	="DEPARTMENT OF HEALTH AND COMMUNITY"	25-Mar-08 12:21 PM	

+="CN66731"	"Communication Officer services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	20-Feb-08	31236.00	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:21 PM	

+="CN66732"	"Renewal of Coldfusion licenses"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	16527.23	=""	="ZALLCOM PTY LIMITED"	25-Mar-08 12:21 PM	

+="CN66733"	"Coldfusion licenses"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	25266.12	=""	="ZALLCOM PTY LIMITED"	25-Mar-08 12:22 PM	

+="CN66734"	"Maintenance of voicemail systems"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	10782.20	=""	="CPS TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:22 PM	

+="CN66735"	"Provision of satellite phones - NT"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	124150.00	=""	="LANDWIDE SATELLITE SOLUTIONS PTY LT"	25-Mar-08 12:22 PM	

+="CN66736"	"To undertake urgent Council of Australian Governments (COAG) tasks"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	175000.00	=""	="IRVING CONSULTING PTY. LTD."	25-Mar-08 12:22 PM	

+="CN66737"	"Data analyst/designer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Feb-08	09-May-08	103675.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:22 PM	

+="CN66738"	"Solve software licence"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Dec-07	15-Dec-09	492800.00	=""	="CA (PACIFIC) PTY LTD"	25-Mar-08 12:22 PM	

+="CN66739"	"Cleaning of the NT State Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	28-Jan-08	30-Jun-08	15200.00	=""	="STERLING PROPERTY SERVICES PTY LTD"	25-Mar-08 12:22 PM	

+="CN66740"	"Specialist technical writing"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	23-Apr-08	40218.75	=""	="EWAN MAXWELL MORRISON"	25-Mar-08 12:23 PM	

+="CN66741"	"Conference support"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	19-Apr-08	16500.00	=""	="Quality In Practice Pty Ltd"	25-Mar-08 12:23 PM	

+="CN66742"	"Consultancy services - Engagement of APS6"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	11-May-08	40000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:23 PM	

+="CN66743"	"Replacement water units"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	08-Feb-08	30-Jun-08	12419.05	=""	="ZIP HEATERS (AUST) PTY LTD"	25-Mar-08 12:23 PM	

+="CN66744"	"Program planning and needs analysis"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	56400.00	=""	="CAESAR, SYBIL CLAIRE"	25-Mar-08 12:23 PM	

+="CN66745"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	08-Feb-08	20000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:23 PM	

+="CN66746"	"Facilitation Services for the National Aboriginal & Torres Strait Islander Sexual Health Forum"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Apr-08	13200.00	=""	="ARABENA, KERRY ANN"	25-Mar-08 12:23 PM	

+="CN66747"	"Consultancy services for Challenging Behaviours Guidelines Project Plan"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Jun-08	95786.00	="RFT 035/0708"	="TURNING POINT ALCOHOL AND DRUG CENT"	25-Mar-08 12:24 PM	

+="CN66748"	"Placement fees - advertising expaned Grants program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	07-Feb-08	20862.53	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:24 PM	

+="CN66749"	"Placement fees - Business Manager"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	07-Feb-08	15113.67	=""	="TANNER MENZIES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66750"	"Consultancy services - Financial Reporting Framework"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	29-Feb-08	11303.00	=""	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66751"	"Project Management Services - IT"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	86768.00	="288/0607"	="SOUTHERN CROSS COMPUTING PTY LIMITE"	25-Mar-08 12:24 PM	

+="CN66752"	"Consultancy services - Financial Reporting Framework"	="Department of Health and Ageing"	25-Mar-08	="Financial and Insurance Services"	11-Feb-08	29-Feb-08	11303.00	="086/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66753"	"Consultancy services - Administration and Stakeholder liasion"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	15-May-08	25000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:24 PM	

+="CN66754"	"Software development - Healthy for Life Program Program"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	28-Nov-07	29-Feb-08	172757.00	=""	="PEN COMPUTER SYSTEMS PTY. LIMITED"	25-Mar-08 12:24 PM	

+="CN66755"	"Provision of design services for minor building works"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	50000.00	=""	="SPACELIFT DESIGN CONSULTANCY"	25-Mar-08 12:25 PM	

+="CN66756"	"Construction services to Penrhyn House Level 2B"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	27-Oct-07	25-Feb-08	68441.45	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:25 PM	

+="CN66757"	"Construction services to Penrhyn House Level 2B"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	17-Sep-07	25-Feb-08	66440.27	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:25 PM	

+="CN66758"	"Consultancy services - Test Manager/Analysts services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	104720.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:25 PM	

+="CN66759"	"Clinical Handover Initiative relating to maternity services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	31-Jan-09	218267.50	="097/0708"	="MATER MISERICORDIAE HEALTH SERVICES"	25-Mar-08 12:25 PM	

+="CN66760"	"Clinical Handover Initiatives - Mental Health Patients"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	14-Dec-08	130702.00	="097/0708"	="ST. JOHN OF GOD HEALTH SERVICES"	25-Mar-08 12:25 PM	

+="CN66761"	"Development of toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-08	249110.00	="122/0607"	="BSR SOLUTIONS"	25-Mar-08 12:25 PM	

+="CN66762"	"Quality Assurance to the toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-08	146770.00	="122/0607"	="VALINTUS PTY LTD"	25-Mar-08 12:25 PM	

+="CN66763"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13200.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:26 PM	

+="CN66764"	"Consultancy services - professional research & writting services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	22896.76	=""	="PROFESSIONAL CAREERS AUSTRALIA"	25-Mar-08 12:26 PM	

+="CN66765"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:26 PM	

+="CN66766"	"Audit of systems and processes within the Treaties and Compliance Team"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	27-Feb-08	11051.97	=""	="NEILL BUCK & ASSOCIATES PTY LIMITED"	25-Mar-08 12:26 PM	

+="CN66767"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	27-Sep-07	30-Jun-08	10000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:26 PM	

+="CN66768"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:26 PM	

+="CN66769"	"Engagement of temporary staff to conduct assets stocktake"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	29-Feb-08	16500.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:27 PM	

+="CN66770"	"Consultancy services - travel expenses"	="Department of Health and Ageing"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	12-Mar-07	29-Feb-08	30549.67	=""	="DELOITTE TOUCHE TOHMATSU"	25-Mar-08 12:27 PM	

+="CN66771"	"Funds administrator and health services advisor at Ampilatwatja Health Centre Aboriginal Corporation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	533792.60	="148/0506"	="INSTITUTE FOR HEALTHY COMMUNITIES"	25-Mar-08 12:27 PM	

+="CN66772"	"Services for electricity -  Level 6, 1 Oxford Street Sydney"	="Department of Health and Ageing"	25-Mar-08	="Public Utilities and Public Sector Related Services"	01-Jul-07	30-Jun-08	21971.34	=""	="ENERGY AUSTRALIA"	25-Mar-08 12:27 PM	

+="CN66773"	"Provision of temporary staff - Probity advice"	="Department of Health and Ageing"	25-Mar-08	="Financial and Insurance Services"	21-Feb-08	30-Jun-08	27000.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:27 PM	

+="CN66774"	"Advertising services  - eCommunities"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Sep-07	26-Feb-08	23397.01	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:27 PM	

+="CN66775"	"Consultancy services - CHCI Electronic Data Collection"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	15-May-08	124540.44	=""	="PEN COMPUTER SYSTEMS PTY. LIMITED"	25-Mar-08 12:27 PM	

+="CN66776"	"Consultancy service to examine options for inpatient critical care-Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	25-Mar-08	145249.00	="218/0708"	="SPENCERSMITH AND ASSOCIATES PTY LTD"	25-Mar-08 12:28 PM	

+="CN66777"	"Provision of contract personnel to Department's Library"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	19-Feb-08	75500.00	=""	="INFORMED SOURCES PTY. LTD."	25-Mar-08 12:28 PM	

+="CN66778"	"SAS Data Integration Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	90000.00	="288/0607"	="ICON RECRUITMENT PTY LTD"	25-Mar-08 12:28 PM	

+="CN66779"	"Development of a National Quality Reporting Framework for Community Care Programs"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	20-Feb-08	171582.00	="134/0405-18"	="AUSTRALIAN HEALTHCARE ASSOCIATES"	25-Mar-08 12:28 PM	

+="CN66780"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	82280.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66781"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66782"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	82280.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66783"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:29 PM	

+="CN66784"	"Transport & storgare of Stockpile item - Zithromax IV injections"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	18-Sep-07	30-Jun-09	3465000.00	="178/0607"	="PFIZER AUSTRALIA PTY LTD"	25-Mar-08 12:29 PM	

+="CN66785"	"Provision of IT Training Services"	="Department of Health and Ageing"	25-Mar-08	="Education and Training Services"	22-Dec-06	31-Jan-10	15400.00	="092/0607"	="TOTAL LEARN PTY LTD"	25-Mar-08 12:29 PM	

+="CN66786"	"Review of the current eHealth Strategy"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	72785.00	=""	="PHILLIP JONES & ASSOCIATES PTY LTD"	25-Mar-08 12:29 PM	

+="CN66787"	"Reprint of the Private Patients Hospital Charter"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	20-Dec-07	15-Feb-08	27539.60	=""	="PARAGON PRINTERS"	25-Mar-08 12:29 PM	

+="CN66788"	"HIV Epidemiology project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	02-Dec-07	28-Feb-08	196860.01	=""	="MONASH UNIVERSITY"	25-Mar-08 12:29 PM	

+="CN66789"	"Advertising Services for the National Skin Cancer Awareness Campaign"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	13-Sep-07	30-Jun-08	20640.68	=""	="BMF ADVERTISING"	25-Mar-08 12:29 PM	

+="CN66790"	"Agency Placement fee - Engagement of staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	10698.22	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:30 PM	

+="CN66791"	"Supply of workstations and furniture"	="Department of Health and Ageing"	25-Mar-08	="Furniture and Furnishings"	17-Aug-07	22-Feb-08	30000.00	=""	="SCHIAVELLO (ACT) PTY. LTD."	25-Mar-08 12:30 PM	

+="CN66792"	"Interior Design services - Central Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	29-Aug-07	22-Feb-08	15000.00	=""	="SPACELIFT DESIGN CONSULTANCY"	25-Mar-08 12:30 PM	

+="CN66793"	"Engagement of temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-May-08	35000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:30 PM	

+="CN66794"	"Consultancy services - Review of Literature on Open Disclosure"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	15-Mar-08	13000.00	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	25-Mar-08 12:30 PM	

+="CN66795"	"Consultancy service - Literature Review"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	31-Mar-08	53425.00	=""	="GSB CONSULTING AND COMMUNICATIONS"	25-Mar-08 12:30 PM	

+="CN66796"	"Printing of Device Brochures - Hearing Services Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	13-Nov-07	21-Feb-08	23540.00	=""	="PATERSON PRESS TRIPART MARK"	25-Mar-08 12:31 PM	

+="CN66797"	"Consultancy services - Health@Home Plus"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	31-Jan-12	1010787.20	=""	="UNIVERSITY PHYSICIANS INCORPORATED"	25-Mar-08 12:31 PM	

+="CN66798"	"Re printing of the emergency triage education kit"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Dec-07	20-Feb-08	30184.00	=""	="UNION OFFSET CO. PTY. LIMITED"	25-Mar-08 12:31 PM	

+="CN66799"	"Specialist Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	30-Jun-08	12198.10	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:31 PM	

+="CN66800"	"Consultancy services - Literature review OATSIH"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	01-May-08	66792.00	="RFT 263/0607"	="ROBERT GRIEW PTY LTD"	25-Mar-08 12:31 PM	

+="CN66801"	"Purchase of Digital handsets (DTERM)"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	29-Feb-08	10098.00	=""	="NEC AUSTRALIA PTY LTD"	25-Mar-08 12:31 PM	

+="CN66802"	"Printing/collation of the Pharamaceutical Benefits Advisory Committee (PBAC) Agenda"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	20-Dec-07	20-Feb-08	15832.67	=""	="BYTES N COLOURS"	25-Mar-08 12:31 PM	

+="CN66803"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	22347.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:31 PM	

+="CN66804"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	22647.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:32 PM	

+="CN66805"	"Additional Work for Clinical Training in the Prevocational Years."	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	18-Jan-08	31-Jan-08	22000.00	=""	="CONFEDERATION OF POSTGRADUATE MEDIC"	25-Mar-08 12:32 PM	

+="CN66806"	"Recruitment services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Oct-07	05-Mar-08	11000.00	="043/0506"	="PAPER SHUFFLE PTY LTD"	25-Mar-08 12:32 PM	

+="CN66807"	"Specialist contracting services for the Australian Commission on Safety and Quality in Health Care"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Mar-08	34760.00	=""	="JOHN RAMSAY & ASSOCIATES"	25-Mar-08 12:32 PM	

+="CN66808"	"Senator McLucas  - Car Transport Cost"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	10016.35	=""	="COMCAR"	25-Mar-08 12:32 PM	

+="CN66809"	"Production of publication "Around Australia in 40 days" booklets and bookmarks"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	18-Sep-07	22-Jan-08	51648.30	=""	="BLUE STAR PRINT"	25-Mar-08 12:32 PM	

+="CN66810"	"Indigenous coaching services"	="Department of Health and Ageing"	25-Mar-08	="Education and Training Services"	15-Oct-07	22-Jan-08	12889.71	=""	="PEOPLE & STRATEGY (ACT) PTY LTD"	25-Mar-08 12:32 PM	

+="CN66811"	"Cabling and electrical services for DOHA - Darwin"	="Department of Health and Ageing"	25-Mar-08	="Electronic Components and Supplies"	10-Dec-07	20-Feb-08	19529.40	=""	="POWER MAINTENANCE & CONSTRUCTIONS"	25-Mar-08 12:33 PM	

+="CN66812"	"Engagement of short term locums at the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	289641.00	=""	="JTA INTERNATIONAL PTY LTD"	25-Mar-08 12:33 PM	

+="CN66813"	"Property Lease- 10 Corrina Street  Woden"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Oct-07	30-Sep-10	174433.00	=""	="GASSON PTY LIMITED"	25-Mar-08 12:33 PM	

+="CN66814"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	18-Apr-08	28135.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	25-Mar-08 12:33 PM	

+="CN66815"	"Recruitment engagement - The Way Forward Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	29-Feb-08	43560.00	="RFT"	="CPT GLOBAL LIMITED"	25-Mar-08 12:33 PM	

+="CN66816"	"Staff placement service"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	25-Jan-08	16500.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	25-Mar-08 12:33 PM	

+="CN66817"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	400000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:33 PM	

+="CN66818"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	60000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:33 PM	

+="CN66819"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	335000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:34 PM	

+="CN66820"	"Project Mgmt services for accommodation project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Apr-08	24200.00	=""	="HBO EMTB INTERIORS (ACT) PTY LIMITE"	25-Mar-08 12:34 PM	

+="CN66821"	"Project management services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	24-Apr-08	30000.00	=""	="COFFEY PROJECTS (AUSTRALIA) PTY LIM"	25-Mar-08 12:34 PM	

+="CN66822"	"Renewal of IBM Australia's Passport Advantage software maintenance"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	119646.24	=""	="IBM AUSTRALIA LTD"	25-Mar-08 12:34 PM	

+="CN66823"	"Renewal of Fujitsu Objectstar software mainframe maintenance license"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	99986.15	=""	="FUJITSU AUSTRALIA LTD"	25-Mar-08 12:34 PM	

+="CN66824"	"Spam firewall 600 software renewal"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Jul-07	12-Jul-08	11783.75	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	25-Mar-08 12:34 PM	

+="CN66826"	"Supply of Ultrasonic Cleaner and Heater for the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	18-Jan-09	23639.00	=""	="MATRIX SURGICAL COMPANY"	25-Mar-08 12:34 PM	

+="CN66827"	"Procurement of a Video Gastroscope for the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	18-Jan-11	38797.00	=""	="OLYMPUS AUSTRALIA PTY LTD"	25-Mar-08 12:35 PM	

+="CN66828"	"Supply of 21,000 Polypropylene folders for the Carer Information and Support Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	26-Nov-07	23-Jan-08	26040.00	=""	="MEGARA (AUSTRALIA) PTY. LTD."	25-Mar-08 12:35 PM	

+="CN66829"	"Supply and production of 20,000 Carers CD's for the Carers Information and Support Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	25-Oct-07	23-Jan-08	10512.00	=""	="ADM SOLUTIONS PTY LTD"	25-Mar-08 12:35 PM	

+="CN66830"	"Redevelopment of the Aged & Community Care Management Information System (ACCMIS)"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	19-Feb-08	712533.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	25-Mar-08 12:35 PM	

+="CN66831-A1"	"NCMS Independent Evaluator Contract"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	24-Jul-07	11-Feb-08	711238.00	="1480607"	="VICTORIA UNIVERSITY"	25-Mar-08 12:35 PM	

+="CN66832"	"Provision of Electricity Central Office 23/8 Change of provider for 3 properties"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	346700.00	=""	="ACTEWAGL RETAIL"	25-Mar-08 12:36 PM	

+="CN66833"	"Office relocations"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	47373.00	="2290405"	="THOMAS BUILDING CONSTRUCTION"	25-Mar-08 12:36 PM	

+="CN66834"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	16500.00	=""	="SAHARA AIR CONDITIONING UNIT TRUST"	25-Mar-08 12:36 PM	

+="CN66825"	"Provision of services in relation to developing and reporting SAS based reporting applications"	="Australian Federal Police"	25-Mar-08	="Data base reporting software"	08-Jan-07	22-Feb-08	221337.60	=""	="Peoplebank Australia Ltd"	25-Mar-08 12:36 PM	

+="CN66835"	"Building maintenance service Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	10450.00	="2150405"	="P & D BUILDING MAINTENANCE PTY LTD"	25-Mar-08 12:36 PM	

+="CN66836"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	32000.00	=""	="HONEYWELL LTD"	25-Mar-08 12:36 PM	

+="CN66837"	"Assess Points - NSW Mapping Project money trans to spec account"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	21-Feb-07	22-Jan-08	31853.00	="RFT"	="BSR SOLUTIONS"	25-Mar-08 12:36 PM	

+="CN66838"	"Consultancy services - Test Analyst Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	57200.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:36 PM	

+="CN66839"	"IT training, strategic direction, co-ordination and development services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	15-Nov-08	70000.00	=""	="REFIRE PTY LTD"	25-Mar-08 12:36 PM	

+="CN66840"	"Business analysis and information architect services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	30-Jun-08	10120.00	="122/0607"	="SMS CONSULTING GROUP LTD"	25-Mar-08 12:37 PM	

+="CN66841"	"Development & maintenance of Oracle/coldfusion  Applications"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Sep-07	30-Jun-08	56320.00	="RFT2880607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	25-Mar-08 12:37 PM	

+="CN66842"	"Supply and maintenance of the 360 degree database"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	43560.00	=""	="LINKED BUSINESS CONCEPTS PTY LTD"	25-Mar-08 12:37 PM	

+="CN66843"	"Probity advice for the review and market testing of the Department's office services arrangemen"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Jun-07	18-Feb-08	13200.00	="086/0607"	="WALTERTURNBULL PTY LTD"	25-Mar-08 12:37 PM	

+="CN66844"	"Provision of program planning and needs analysis t assist with the extension of the NT Emergency res"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	20-Oct-07	15-Feb-08	12600.00	=""	="CAESAR, SYBIL CLAIRE"	25-Mar-08 12:37 PM	

+="CN66845"	"Provision of Legal services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	149292.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:37 PM	

+="CN66846"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	26796.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:37 PM	

+="CN66847"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	70000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:38 PM	

+="CN66848"	"Provision of Review and Process improvement services."	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Oct-07	30-Jun-08	29470.00	=""	="HALLEY, LEANNE MARIE"	25-Mar-08 12:38 PM	

+="CN66849"	"Business Improvement Initiative for Community Programs, A&CC Branch Victoria, DoHA"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	20-Jul-07	08-Feb-08	19360.00	=""	="DYNAMIC WISDOM PTY LTD"	25-Mar-08 12:38 PM	

+="CN66850"	"Temporary policy/project officer"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Apr-08	130000.00	="RFT"	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:38 PM	

+="CN66851"	"Refurbishment work for QLD State Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	16-Jan-08	28-Feb-09	514956.20	=""	="ISIS PROJECTS PTY LIMITED"	25-Mar-08 12:38 PM	

+="CN66852"	"Financial management services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-07	18-Apr-08	119025.00	="RFT"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:38 PM	

+="CN66853"	"Healthy for life bennial conference"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Sep-07	30-Jun-08	82373.50	=""	="HYATT REGENCY ADELAIDE"	25-Mar-08 12:38 PM	

+="CN66854-A1"	"National Provision of Warehousing & Distribution, Pick & Pack & Mailout Services"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	1500000.00	="161/0607"	="National Mailing & Marketing Pty Ltd"	25-Mar-08 12:38 PM	

+="CN66855"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:39 PM	

+="CN66856"	"Legal services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:39 PM	

+="CN66857"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	29500.00	="042/0506"	="MINTER ELLISON"	25-Mar-08 12:39 PM	

+="CN66858"	"Extension of contract for consultancy role for the performance development Scheme project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	134640.00	=""	="REDBACK CONSULTING PTY LTD"	25-Mar-08 12:39 PM	

+="CN66859"	"Supply of E.N.T Operating Microscope for Mersey Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	23-Jan-08	01-Feb-08	67595.00	=""	="CARL ZEISS PTY. LIMITED"	25-Mar-08 12:39 PM	

+="CN66860"	"Supply of a Ophthalmic Operating Microscope for Mersey Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	25-Jan-08	01-Feb-08	103532.00	=""	="CARL ZEISS PTY. LIMITED"	25-Mar-08 12:39 PM	

+="CN66861"	"Printing of a pamphlet to support the National Immunisation Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	23-Jan-08	29-Feb-08	16500.00	=""	="PATERSON PRESS TRIPART MARK"	25-Mar-08 12:40 PM	

+="CN66862"	"Consultancy services for 2009/10 Accommodation Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Aug-07	01-Feb-08	70730.00	=""	="BOSBOUS PTY LIMITED"	25-Mar-08 12:40 PM	

+="CN66863"	"Consultancy services - Communications Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	18-Apr-08	19017.90	=""	="HUDSON GLOBAL RESOURCES AUST"	25-Mar-08 12:40 PM	

+="CN66864"	"Document editing"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	08-Jan-08	28-Feb-08	14712.50	=""	="BIOTEXT PTY LTD"	25-Mar-08 12:40 PM	

+="CN66865"	"Relocation of telephone service"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	31-Jan-08	11748.00	=""	="TELSTRA"	25-Mar-08 12:40 PM	

+="CN66866"	"Office relocation services"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	23-Jan-08	30-Jun-08	49940.00	="229/0405"	="THOMAS BUILDING CONSTRUCTION"	25-Mar-08 12:40 PM	

+="CN66867"	"Communication Adviser for 2009/10 Accommodation Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	67678.00	="RFQ 378/0607"	="MORRIS WALKER PTY. LIMITED"	25-Mar-08 12:40 PM	

+="CN66868"	"Rental payment and bond for acting staff member"	="Department of Health and Ageing"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	31-Jul-08	18720.00	=""	="SUPCLIFFE PTY LTD"	25-Mar-08 12:40 PM	

+="CN66869"	"Advertising Services for the National Skin Cancer Awareness Campaign"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	13-Sep-07	30-Jun-08	17598.63	=""	="BMF ADVERTISING"	25-Mar-08 12:41 PM	

+="CN66870"	"Supply and install security access pass camera and printer - 595 Collins St. Vic"	="Department of Health and Ageing"	25-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	25-Jan-08	07-Mar-08	10533.60	=""	="QUORUM SECURITY SYSTEMS PTY LIMITED"	25-Mar-08 12:41 PM	

+="CN66871"	"Consultancy services - Records Management Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	21-Mar-08	12000.00	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:41 PM	

+="CN66872"	"Consultancy services - Program Management Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	18-Apr-08	21577.50	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:41 PM	

+="CN66873"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	30-Mar-08	30000.00	=""	="CAREERS UNLIMITED PTY LTD"	25-Mar-08 12:41 PM	

+="CN66874"	"Consultancy services -  IT Contractor"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	86020.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:41 PM	

+="CN66875"	"Specialist medical advisory assistance"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	05-Feb-08	25000.00	=""	="HUNTER NEW ENGLAND AREA HLTH SERV"	25-Mar-08 12:41 PM	

+="CN66876"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Apr-08	25000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:41 PM	

+="CN66877"	"Consultancy services - CHCI Electronic Data Collection"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	28-Mar-08	94009.85	=""	="COMMUNICARE SYSTEMS"	25-Mar-08 12:42 PM	

+="CN66879"	"Temporary staff to perform data entry services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	29-Feb-08	15000.00	=""	="SOS Recruitment"	25-Mar-08 12:42 PM	

+="CN66880"	"Temporary staff to perform data entry services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	29-Feb-08	15000.00	=""	="CAREERS UNLIMITED PTY LTD"	25-Mar-08 12:42 PM	

+="CN66881"	"Secure Gateway service"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	04-Feb-08	168803.09	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	25-Mar-08 12:42 PM	

+="CN66882"	"Provision of Round 11 (2006/07) National Hospital Cost Data Collection (NHCDC)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	30-Jun-08	374000.00	=""	="VISASYS PTY. LIMITED"	25-Mar-08 12:42 PM	

+="CN66883"	"Provision and installation of PABX cards"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	15-Mar-08	27214.40	=""	="NEC AUSTRALIA PTY LTD"	25-Mar-08 12:42 PM	

+="CN66884"	"Provision of mentoring and support services to the board of Dharah Gibinj Aboriginal Medical Service"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Dec-07	15-Jun-08	63052.00	="148/0506"	="SHANNON CONSULTING SERVICES TRUST"	25-Mar-08 12:43 PM	

+="CN66885"	"Property lease- 10 Corrina Street - reimbursement to IP Australia"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Jun-08	87663.50	=""	="I P AUSTRALIA"	25-Mar-08 12:43 PM	

+="CN66886"	"Property lease- level 8, 1 Bowes  Place"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Dec-11	899535.60	=""	="RAFHON PTY. LTD."	25-Mar-08 12:43 PM	

+="CN66887"	"Test Analyst Services"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	30-Apr-08	40040.00	=""	="DIALOG INFORMATION TECHNOLOGY"	25-Mar-08 12:43 PM	

+="CN66888"	"Common services to the Indigineous Co-ordination Centres (ICCs)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	404803.94	=""	="DEPARTMENT OF FAMILIES COMMUNITY"	25-Mar-08 12:43 PM	

+="CN66889"	"Temporary staff for Accounts Receivable Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	29903.56	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:43 PM	

+="CN66890"	"Recruitment services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	25-Nov-08	14026.85	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:44 PM	

+="CN66891"	"Business system services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	66000.00	=""	="SMS CONSULTING GROUP LTD"	25-Mar-08 12:44 PM	

+="CN66892-A1"	"Assessing the impact of the collection & recording of PBS under co-payment prescription data"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	06-Jun-08	82500.00	="RFT164/0708"	="HEALTHCARE MANAGEMENT ADVISORS PTY"	25-Mar-08 12:44 PM	

+="CN66893"	"Project management services to refit Brisbane State Office"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jun-08	23760.00	=""	="Inspired Outcomes Pty Ltd"	25-Mar-08 12:44 PM	

+="CN66894"	"Java development and Oracle reports services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	96000.00	="288/0607"	="PEOPLEBANK AUSTRALIA LTD"	25-Mar-08 12:44 PM	

+="CN66895"	"Java application specialist and Oracle web application developer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	103488.00	="288/0607"	="SOUTHERN CROSS COMPUTING PTY LIMITE"	25-Mar-08 12:44 PM	

+="CN66896"	"Portal development and SAS Data Integration Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	63360.00	="288/0607"	="PEOPLEBANK AUSTRALIA LTD"	25-Mar-08 12:44 PM	

+="CN66897"	"Non campaign advertising for Future ICT Industry briefing"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	01-Dec-07	25-Jan-08	31406.30	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:44 PM	

+="CN66898"	"Apprenticeship training program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	03-Aug-08	99015.00	=""	="AUST TRAINING CO LTD"	25-Mar-08 12:45 PM	

+="CN66899"	"Concept,development and design of murals for Waymouth St. Adelaide."	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	06-Feb-08	25-Mar-08	17083.00	=""	="DESIGN TRAIN"	25-Mar-08 12:45 PM	

+="CN66900"	"Financial administration and advisory services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	84662.00	="148/0506"	="BUSINESS MAPPING SOLUTIONS PTY LTD"	25-Mar-08 12:45 PM	

+="CN66901"	"Analysis of the economic costs of patient injury using adminidtrative data"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	31-Jul-08	205860.00	="076/0708"	="UNIQUEST PTY LIMITED"	25-Mar-08 12:45 PM	

+="CN66902"	"Recruitment of Senior Project Officer for the Community Care Review Section (QLD STO)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Dec-07	27-Jun-08	60000.00	=""	="FIRST CHOICE RECRUITMENT QLD P/L"	25-Mar-08 12:45 PM	

+="CN66903"	"Improve the quality and consistency of national data relevant to safety and quality"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-08	330831.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:45 PM	

+="CN66904"	"Identify and develop national indicators to monitor safety and quality in health care"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Mar-09	1080571.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:46 PM	

+="CN66905"	"Workforce Information Policy Officers Evaluation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Apr-08	88046.99	=""	="URBIS PTY LTD"	25-Mar-08 12:46 PM	

+="CN66906"	"A & NZ School of Government (ANZSOG) Executive Master of Publis Administration (EMPA)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	28-Nov-08	36900.00	=""	="The Australia and New Zealand Schoo"	25-Mar-08 12:46 PM	

+="CN66907"	"Eidtorials to promote HealthInsite in Aussie Kids publicaton"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	04-Mar-08	14181.20	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:46 PM	

+="CN66908"	"IT Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:46 PM	

+="CN66910"	"Provision of legal advise"	="Family Court of Australia"	25-Mar-08	="Legal assistance services"	01-Jan-08	28-Feb-08	10230.00	=""	="List A Barristers Pty Ltd"	25-Mar-08 01:13 PM	

+="CN66913"	" VisuaLinks user training "	="Australian Crime Commission"	25-Mar-08	="Computer based training software"	18-Mar-08	31-May-08	38500.00	=""	="BCT Group Pty Ltd"	25-Mar-08 02:20 PM	

+="CN66915"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	18-Mar-08	18-Mar-08	16261.31	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66916"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	16200.95	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66917"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	16457.97	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66918"	"SAP 2008 Maintenance Fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	217647.06	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:31 PM	

+="CN66919"	"SAP 2008 Maintenance fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	23556.95	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:31 PM	

+="CN64793"	"Renewal of Toad licences for Oracle"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Software"	29-Feb-08	28-Feb-09	16524.50	=""	="Quest Software Pty Ltd"	25-Mar-08 02:31 PM	

+="CN66920"	"SAP 2008 Maintenance Fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	13268.02	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:32 PM	

+="CN66921"	"Main Phone Bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	18-Mar-08	18-Mar-08	19626.80	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66922"	"Web Design"	="Bureau of Meteorology"	25-Mar-08	="Management advisory services"	27-Feb-08	29-Feb-08	11000.00	=""	="Stamford Interactive P/L"	25-Mar-08 02:32 PM	

+="CN66923"	"Supply of Stationery"	="Bureau of Meteorology"	25-Mar-08	="Office supplies"	12-Mar-08	31-Mar-08	12837.45	=""	="Corporate Express Australia Limited"	25-Mar-08 02:32 PM	

+="CN66924"	"Telephone A/c"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	20807.53	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66925"	"Professional services for documentation of the data requirements of AWRIS"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Mar-08	25064.33	=""	="SINCLAIR KNIGHT MERZ"	25-Mar-08 02:32 PM	

+="CN66926"	"*Voice service NTRO rental  to 12/3/08 calls to 12/2/08"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	30-Apr-08	12219.83	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66927"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	31-Mar-08	29473.98	=""	="Stratos"	25-Mar-08 02:32 PM	

+="CN66928"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	20-Feb-08	29-Feb-08	17520.47	=""	="AAPT LIMITED"	25-Mar-08 02:33 PM	

+="CN66929"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	21-Feb-08	29-Feb-08	83628.38	=""	="Powertel Ltd"	25-Mar-08 02:33 PM	

+="CN66930"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	13-Mar-08	31-Mar-08	39624.92	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:33 PM	

+="CN66931"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	26-Feb-08	26-Feb-08	12628.99	=""	="Leaseplan Australia"	25-Mar-08 02:33 PM	

+="CN66932"	"Audit Services"	="Bureau of Meteorology"	25-Mar-08	="Accounting and auditing"	28-Feb-08	29-Feb-08	18804.50	=""	="Deloitte Touche Tohmatsu"	25-Mar-08 02:33 PM	

+="CN66933"	"Freight"	="Bureau of Meteorology"	25-Mar-08	="Transportation and Storage and Mail Services"	03-Mar-08	31-Mar-08	15996.20	=""	="TRADE LOGISTICS SERVICES PTY LTD"	25-Mar-08 02:33 PM	

+="CN66934"	"Removals and storage"	="Bureau of Meteorology"	25-Mar-08	="Transportation and Storage and Mail Services"	03-Mar-08	31-Mar-08	51565.98	=""	="TOLL TRANSITIONS"	25-Mar-08 02:33 PM	

+="CN66935"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	03-Mar-08	03-Mar-08	15392.88	=""	="Leaseplan Australia"	25-Mar-08 02:33 PM	

+="CN66936"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	04-Mar-08	31-Mar-08	15851.51	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66937"	"Lease vehicles for March 2008"	="Bureau of Meteorology"	25-Mar-08	="Tools and General Machinery"	04-Mar-08	31-Mar-08	11117.02	=""	="LEASE PLAN AUSTRALIA LTD"	25-Mar-08 02:34 PM	

+="CN66938"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	04-Mar-08	31-Mar-08	128921.20	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66939"	"SA REGION VEHICLE LEASE CHARGES FOR MARCH 08"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	04-Mar-08	04-Mar-08	11071.29	=""	="LEASE PLAN AUSTRALIA LTD"	25-Mar-08 02:34 PM	

+="CN66940"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	31-Mar-08	24920.50	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66941"	"Implement and operate GFE - 7th installment"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	05-Mar-08	31-Mar-08	53931.50	=""	="US DEPT OF COMMERCE"	25-Mar-08 02:34 PM	

+="CN66942"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	05-Mar-08	05-Mar-08	13568.24	=""	="Leaseplan Australia"	25-Mar-08 02:34 PM	

+="CN66943"	"Car Lease Costs"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	05-Mar-08	05-Mar-08	13568.24	=""	="Leaseplan Australia"	25-Mar-08 02:35 PM	

+="CN66944"	"Barometer assembly kits"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	05-Mar-08	31-Mar-08	18700.00	=""	="Snow Engineering Services P/L"	25-Mar-08 02:35 PM	

+="CN66945"	"Legal Services"	="Bureau of Meteorology"	25-Mar-08	="Legal services"	06-Mar-08	31-Mar-08	12359.06	=""	="PHILLIPS ORMONDE & FITZPATRICK"	25-Mar-08 02:35 PM	

+="CN66946"	"BOC container management fee for March 2008"	="Bureau of Meteorology"	25-Mar-08	="Tools and General Machinery"	06-Mar-08	31-Mar-08	12578.13	=""	="Boc Limited"	25-Mar-08 02:35 PM	

+="CN66947"	"EMC 2008 Sponsorship"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	31-Dec-08	13750.00	=""	="High Profile Exhibitions Pty Ltd"	25-Mar-08 02:35 PM	

+="CN66948-A1"	"Contract Staff"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	31-Mar-08	10958.42	=""	="Dfp Recruitment Services"	25-Mar-08 02:35 PM	

+="CN66949"	"Techni works Licence & Web Host 01.03.2008 -30.06.2009"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	11-Mar-08	30-Jun-09	10285.00	=""	="TECHNIWORKS ACTION LEARNING P/L"	25-Mar-08 02:35 PM	

+="CN66950"	"Telephone A/c"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	12-Mar-08	18-Mar-08	18905.26	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:35 PM	

+="CN66951"	"Removal of trees and repairs to room and ceiling Katherine House"	="Bureau of Meteorology"	25-Mar-08	="General building construction"	12-Mar-08	30-Apr-08	13650.00	=""	="Peirce (NT) Pty Ltd"	25-Mar-08 02:36 PM	

+="CN66952"	"Australian Met Magazine"	="Bureau of Meteorology"	25-Mar-08	="Printed media"	12-Mar-08	31-Mar-08	10945.00	=""	="Printmail Australia Pty  Ltd"	25-Mar-08 02:36 PM	

+="CN66953"	"Software 16.03.08 - 15.03.2009"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	14-Mar-08	15-Mar-09	12790.80	=""	="FRONTLINE SYSTEMS AUSTRALIA"	25-Mar-08 02:36 PM	

+="CN66954"	"Fitout works"	="Bureau of Meteorology"	25-Mar-08	="General building construction"	19-Mar-08	31-Mar-08	635211.13	=""	="Eveready Partitions P/L"	25-Mar-08 02:36 PM	

+="CN66955"	"Contribution to Chair of Meteorology"	="Bureau of Meteorology"	25-Mar-08	="Engineering and Research and Technology Based Services"	20-Mar-08	31-Dec-08	94909.44	=""	="Monash University"	25-Mar-08 02:36 PM	

+="CN66956"	"Correction of drawing index & preparation for entr"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	25-Feb-08	27-Jun-08	13200.00	=""	="DOCUMENTCORP (CAD/CAM)"	25-Mar-08 02:36 PM	

+="CN66957"	"Overhaul windsspeed Detectors"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	25-Feb-08	28-Feb-08	11396.00	=""	="Karl Dierken Engineering Service"	25-Mar-08 02:36 PM	

+="CN66958-A1"	"ERRTS - CANISTERS - AERIALS ETC"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	25-Feb-08	31-Mar-08	17594.50	=""	="Elpro Technologies Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66959"	"RIG HIRE - REMOVE PILE - SUPPLY & DRIVE PILE - MOBILISATION & DEMOBILISATION COSTS"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	11-Apr-08	22000.00	=""	="Van Ek Contracting Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66960"	"Rack equipment"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	26-Feb-08	11-Mar-08	15175.24	=""	="Datacom Systems (QLD)"	25-Mar-08 02:37 PM	

+="CN66961"	"AIFS Workstations and Monitors"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	27-Feb-08	06-Mar-08	43256.98	=""	="City Software Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66962-A1"	"Alert Field Station Components"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	27-Feb-08	28-Mar-08	15048.00	=""	="Elpro Technologies Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66963"	"Supply of 30 Aerodrome weather info Broadcast (AWIB) MK3 Systems"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	04-Mar-08	28-Apr-08	41250.00	=""	="Seamist Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66964"	"Refurbish WF100 Radar Magnetron type Sfd373A-R Mat No.100094"	="Bureau of Meteorology"	25-Mar-08	="Electronic hardware and component parts and accessories"	04-Mar-08	19-May-08	37455.00	=""	="Richardson Electronics Pty Limited"	25-Mar-08 02:37 PM	

+="CN66965"	"Repair of Stalos S/n 9431-71 and 0532-14"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	28-Mar-08	10923.00	=""	="Environmental Systems & Services"	25-Mar-08 02:37 PM	

+="CN66966"	"SE08/198198-20 L-band Cavity combine filter type 0011b"	="Bureau of Meteorology"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	04-Mar-08	30-May-08	19734.00	=""	="Em Solutions Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66967-A1"	"500 Radar Targets as per deed of Standing offer No.037/2007"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	04-Mar-08	26-Jun-08	164186.00	=""	="The Total Package"	25-Mar-08 02:38 PM	

+="CN66968-A1"	"ASLOS site Acquisition Services"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	31-Oct-08	66550.00	=""	="United GroupServices Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66969-A1"	"C band WaveGuides"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	11-Mar-08	28-Apr-08	22740.71	=""	="DrawCom Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66970"	"Hardware for the SAP HRMS ERP 6 Upgrade Components o MetESS"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	11-Mar-08	18-Mar-08	101068.55	=""	="FRONTLINE SYSTEMS AUSTRALIA"	25-Mar-08 02:38 PM	

+="CN66971"	"Sippican Deep Blue ZBT Probes for Material No. 500689"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	11-Mar-08	30-May-08	52669.68	=""	="THALES UNDERWATER SYSTEMS PTY LTD"	25-Mar-08 02:38 PM	

+="CN66972"	"HP 6910p note book computer, cases, Cable Lock"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	12-Mar-08	26-Mar-08	58773.00	=""	="Adnet Technology Australia Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66973"	"HP 2510p notebook computer, Case, cable Lock"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	12-Mar-08	26-Mar-08	45188.00	=""	="Adnet Technology Australia Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66974"	"Drifing Buoys Technocean WOCE SVP-B"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	12-Mar-08	30-May-08	16581.48	=""	="Technocean Incorporated"	25-Mar-08 02:39 PM	

+="CN66975"	"PROCESSOR UPGRADE FOR IBM P690 2 PROCESSORS"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	13-Mar-08	31-Mar-08	118773.60	=""	="KAZ TECHNOLOGY SERVICES P/L"	25-Mar-08 02:39 PM	

+="CN66976"	"VHF Radio Marine Weather Survey"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	37870.00	=""	="ANDREWS MARKETING GROUP PTY LTD"	25-Mar-08 02:39 PM	

+="CN66977"	"Drifting Bouys WOCE SVP-B"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	13-Mar-08	30-May-08	22823.25	=""	="Marlin-Yug Ltd"	25-Mar-08 02:39 PM	

+="CN66978"	"Spare Parts for Radar Model (DWSR-2502C"	="Bureau of Meteorology"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	21-Mar-08	142107.90	=""	="Environmental Systems & Services"	25-Mar-08 02:39 PM	

+="CN66979"	"Support of Bureau IT systems 1/4/08 to 31/12/09"	="Bureau of Meteorology"	25-Mar-08	="Engineering and Research and Technology Based Services"	14-Mar-08	26-Mar-08	12808.76	=""	="Sun Microsystems Aust Pty Ltd"	25-Mar-08 02:39 PM	

+="CN66980-A1"	"Consulting services to determine maximum Elecrical Power Supply"	="Bureau of Meteorology"	25-Mar-08	="Business administration services"	14-Mar-08	10-Apr-08	13090.00	=""	="PBJ & Associates Pty Ltd"	25-Mar-08 02:39 PM	

+="CN66981"	"Professional IT Services"	="Bureau of Meteorology"	25-Mar-08	="Business administration services"	17-Mar-08	19-Mar-10	149050.00	=""	="People Bank"	25-Mar-08 02:40 PM	

+="CN66982-A1"	"Advice on Data Provision - Water Act 2007"	="Bureau of Meteorology"	25-Mar-08	="Management advisory services"	17-Mar-08	17-Mar-08	33000.00	=""	="UMEE Ltd"	25-Mar-08 02:40 PM	

+="CN66983-A1"	"AWRIS End User Requirements spec contract No.008-2008"	="Bureau of Meteorology"	25-Mar-08	="Project management"	17-Mar-08	30-Jun-08	30000.00	=""	="SINCLAIR KNIGHT MERZ"	25-Mar-08 02:40 PM	

+="CN66984"	"Viasala PTB 220B pressure sensors"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	18-Mar-08	15-May-08	316387.50	=""	="Vaisala Pty Ltd"	25-Mar-08 02:40 PM	

+="CN66985"	"RBL Curtain Assembly"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	21-Mar-08	10334.50	=""	="Membranes Aust"	25-Mar-08 02:40 PM	

+="CN66986"	"Supply of Solar Panels"	="Bureau of Meteorology"	25-Mar-08	="Power Generation and Distribution Machinery and Accessories"	19-Mar-08	28-Mar-08	19322.60	=""	="Solar Charge Pty Ltd"	25-Mar-08 02:40 PM	

+="CN66987"	"Charter of Vessel MV Phoenix  - Cairns to Willis"	="Bureau of Meteorology"	25-Mar-08	="Components for information technology or broadcasting or telecommunications"	19-Mar-08	24-Apr-08	19636.00	=""	="Bianca Deep SEa & Game Fishing"	25-Mar-08 02:40 PM	

+="CN66988"	"Supply of NG-AWS Agromet Units"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	120440.98	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66989"	"Developement costs associated with the remote Agro met unit,remote wind unit & power supply NG-AWS"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	52827.00	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66990"	"Supply of standard NG-AWS config &power supply"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	110924.99	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66993"	"COURIER SERVICES"	="Department of Human Services"	25-Mar-08	="Domestic air cargo transport"	17-Mar-08	30-Jun-08	17000.01	=""	="STAR TRACK EXPRESS"	25-Mar-08 02:52 PM	

+="CN66994"	"VOICE COMMUNICATIONS"	="Department of Human Services"	25-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Mar-08	02-Apr-08	17185.14	=""	="OPTUS BILLING SERVICES PTY LTD"	25-Mar-08 02:58 PM	

+="CN66999"	"Relocation of  SAN equipment"	="Australian Crime Commission"	25-Mar-08	="Relocation services"	18-Mar-08	31-May-08	30098.20	=""	="EMC Global Holdings Co"	25-Mar-08 03:25 PM	

+="CN65206"	" Temporary Employee "	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	11-Feb-08	09-May-08	22934.34	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	25-Mar-08 03:30 PM	

+="CN66608-A2"	"Temporary Employee"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	13-Mar-08	17-Sep-08	53999.97	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:31 PM	

+="CN66609"	"Temporary Employee - Finance Section"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	11-Mar-08	30-Jun-08	34100.00	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:31 PM	

+="CN67001"	"Video/Audio Devices"	="Australian Crime Commission"	25-Mar-08	="Cameras"	13-Mar-08	30-Apr-08	39314.00	=""	="Geonautics International"	25-Mar-08 03:31 PM	

+="CN64803"	"Contractor for Anti-SPAM team"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	25-Feb-08	25-May-08	38500.00	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:32 PM	

+="CN67003"	"Leaseplan vehicles"	="Australian Crime Commission"	25-Mar-08	="Motor vehicles"	01-Oct-07	07-Dec-07	64768.70	=""	="Leaseplan"	25-Mar-08 03:42 PM	

+="CN67004"	"Provision for Internal Audit and related Services - Budgeting/Management Accounting"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	24750.00	=""	="Oakton Services Pty"	25-Mar-08 03:42 PM	

+="CN67005"	"Provision for Internal Audit Services - Exit Rates"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty Ltd"	25-Mar-08 03:45 PM	

+="CN67006"	"Provision for Internal Audit  Services - Information Privacy"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty"	25-Mar-08 03:49 PM	

+="CN67009"	"Provision for Internal Audit services - Business Change Management"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty"	25-Mar-08 03:51 PM	

+="CN67010-A1"	" TRIM EDRMS & Kofax Services Agreement & Maintanance "	="Comsuper"	25-Mar-08	="Software"	01-Apr-06	31-Mar-11	101166.00	=""	="Alphawest Services Pty Ltd"	25-Mar-08 03:55 PM	

+="CN67011-A1"	"Provision for Project Manager"	="Comsuper"	25-Mar-08	="Human resources services"	30-Mar-08	30-Jun-08	91520.00	=""	="Maximus Solutions"	25-Mar-08 03:57 PM	

+="CN67012"	"TRIM workflow licences"	="Australian Crime Commission"	25-Mar-08	="Business function specific software"	10-Jan-08	25-Feb-08	10523.99	=""	="iCognition Pty Ltd"	25-Mar-08 03:59 PM	

+="CN67015"	"Delivery of Diploma of Government course"	="Australian Crime Commission"	25-Mar-08	="Educational certificates or diplomas"	06-Feb-08	31-Mar-08	32180.00	=""	="McMillan Staff Development Pty Ltd"	25-Mar-08 04:08 PM	

+="CN67016-A1"	"Translation services"	="Australian Crime Commission"	25-Mar-08	="Interpreters"	01-Mar-08	28-Feb-09	10000.00	=""	="Bezabih Barasa"	25-Mar-08 04:12 PM	

+="CN50514"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	17-Nov-06	16-Nov-08	43310.78	=""	="LeasePlan"	25-Mar-08 04:12 PM	

+="CN67017"	" AG Actuary Requirement "	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Apr-08	10000.00	=""	="Australian Government Actuary"	25-Mar-08 04:14 PM	

+="CN50513"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	06-Mar-07	05-Mar-09	44079.02	=""	="LeasePlan"	25-Mar-08 04:15 PM	

+="CN67019"	"Translation services"	="Australian Crime Commission"	25-Mar-08	="Interpreters"	28-Feb-08	24-Mar-09	15000.00	=""	="Francis Sarpong-Sannah"	25-Mar-08 04:16 PM	

+="CN50512"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	22-Oct-07	21-Oct-09	30729.07	=""	="LeasePlan"	25-Mar-08 04:17 PM	

+="CN50511"	"Fleet Management andLeasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	30-Aug-07	29-Aug-09	35077.68	=""	="LeasePlan"	25-Mar-08 04:18 PM	

+="CN50510-A1"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	08-Nov-06	07-Aug-09	64424.51	=""	="LeasePlan"	25-Mar-08 04:20 PM	

+="CN50509"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	05-Apr-07	04-Apr-09	44431.73	=""	="LeasePlan"	25-Mar-08 04:24 PM	

+="CN50508"	"Fleet  Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	13-Oct-06	12-Oct-08	47134.82	=""	="LeasePlan"	25-Mar-08 04:25 PM	

+="CN67022"	"Specialist services for network monitoring"	="Australian Crime Commission"	25-Mar-08	="Network analysers"	06-Feb-08	30-Jun-08	25300.00	=""	="Anixter Australia Pty Ltd"	25-Mar-08 04:26 PM	

+="CN67023"	"Employee Assistance Program - 2008"	="Australian Crime Commission"	25-Mar-08	="Employee assistance programs"	01-Mar-08	31-Dec-08	21450.00	=""	="Davidson Trahaire (ACT)"	25-Mar-08 04:30 PM	

+="CN67024-A2"	"Provision for Business Analyst"	="Comsuper"	25-Mar-08	="Human resources services"	10-Mar-08	30-Jun-08	62656.00	=""	="Encore It Services"	25-Mar-08 04:41 PM 

--- /dev/null
+++ b/admin/partialdata/22Apr2008to26Apr2008valto.xls
@@ -1,1 +1,306 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN72072"	"Purchase of Qty 5 NSN 7035-66-129-7649 Megaplex HS-Q/N Card"	="Defence Materiel Organisation"	22-Apr-08	="Surveillance and detection equipment"	10-Mar-08	22-Apr-08	10690.90	=""	="Paclink Communications Pty Ltd"	22-Apr-08 08:11 AM	

+="CN72074"	"Provision of Cultural Awareness Training Services"	="Australian Federal Police"	22-Apr-08	="Work ethics or attitude training instructional materials"	01-May-08	02-May-08	19635.00	="65-2006"	="Monash University"	22-Apr-08 08:36 AM	

+="CN72075"	"Provision of Islamic Cultural Awareness Training"	="Australian Federal Police"	22-Apr-08	="Work ethics or attitude training instructional materials"	29-Apr-08	30-Apr-08	13981.00	="65-2006"	="Asian Law Group Pty Ltd"	22-Apr-08 08:43 AM	

+="CN72076"	"REP L/R GMV ARN-51929 EDWING W/O-36849/1"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	16516.50	=""	="GRAE,E A. MCLEOD"	22-Apr-08 08:48 AM	

+="CN72077"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	14308.16	=""	="Hays Personnel Services (Australia)"	22-Apr-08 08:54 AM	

+="CN72078"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	26-Jul-07	30-Jun-08	20272.15	=""	="Julia Ross Personnel"	22-Apr-08 08:57 AM	

+="CN72079"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	18797.01	=""	="Hayes Personnel Services (Australia)"	22-Apr-08 09:01 AM	

+="CN72080"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	17670.76	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:03 AM	

+="CN72081"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	50792.36	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:09 AM	

+="CN72082"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	09-Apr-08	11-May-08	26525.54	=""	="SYMBION PHARMACY SERVICES"	22-Apr-08 09:12 AM	

+="CN72084"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	45846.22	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:21 AM	

+="CN72085"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	11052.97	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:23 AM	

+="CN72086"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	14-Aug-07	30-Jun-08	12168.46	=""	="HR Matters"	22-Apr-08 09:25 AM	

+="CN72087"	"MEDICAL CONSUMABLE ASSOCIATED ITEM"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	08-Apr-08	11-May-08	12540.00	=""	="MED-CON P/L"	22-Apr-08 09:27 AM	

+="CN72088"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	10-Aug-07	30-Jun-08	37573.36	=""	="Julia Ross Personnel"	22-Apr-08 09:28 AM	

+="CN72090"	" Recruitment Services "	="Workplace Authority"	22-Apr-08	="Recruitment services"	10-Aug-07	30-Jun-08	40906.27	=""	="Julia Ross Personnel"	22-Apr-08 09:30 AM	

+="CN72091"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	46149.14	=""	="Julia Ross Personnel"	22-Apr-08 09:32 AM	

+="CN72092"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	81081.82	=""	="Dixon Appointments"	22-Apr-08 09:34 AM	

+="CN72093"	" SEALING COMPOUND "	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	13-Mar-08	22-May-08	14054.42	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	22-Apr-08 09:43 AM	

+="CN72094"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	09-Aug-07	30-Jun-08	77845.99	=""	="Hudson Global Resource (Aust) Pty"	22-Apr-08 09:45 AM	

+="CN72096"	"Postage & Freight "	="Workplace Authority"	22-Apr-08	="Postal and small parcel and courier services"	11-Jul-07	30-Jun-08	15635.95	=""	="Australia Post (SA)"	22-Apr-08 09:46 AM	

+="CN72098"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	49505.88	=""	="Greythorn"	22-Apr-08 09:48 AM	

+="CN72097"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	49157.59	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:49 AM	

+="CN72100"	"Photocopier Charges - all states"	="Workplace Authority"	22-Apr-08	="Photocopiers"	30-Jun-08	30-Jun-08	42005.93	=""	="Ricoh Australia Pty Ltd"	22-Apr-08 09:52 AM	

+="CN72101"	" Secure Destruction Services "	="Workplace Authority"	22-Apr-08	="Recycling services"	13-Jul-07	30-Jun-08	14328.56	=""	="Enviro Care Recycling Services Pty Ltd"	22-Apr-08 09:54 AM	

+="CN72102"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	16-Jul-07	30-Jun-08	59409.16	=""	="Hudson Global Resources (Aust) Pty Ltd"	22-Apr-08 09:56 AM	

+="CN72104"	"Translation Costs"	="Workplace Authority"	22-Apr-08	="Writing and translations"	16-Jul-07	30-Jun-08	55000.00	=""	="DIMIA - TIS National Centre"	22-Apr-08 09:59 AM	

+="CN72105"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	49642.03	=""	="Hays Personnel Services (Australia)"	22-Apr-08 09:59 AM	

+="CN72106"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	46136.09	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:02 AM	

+="CN72107"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	15440.81	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:05 AM	

+="CN72108"	"Advertising Services"	="Workplace Authority"	22-Apr-08	="Advertising"	17-Jul-07	30-Jun-08	18000.00	=""	="AAP Information Services Pty Ltd"	22-Apr-08 10:06 AM	

+="CN72110"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	07-Aug-07	30-Jun-08	26815.85	=""	="Hudson Global Resource (Aust) Pty"	22-Apr-08 10:07 AM	

+="CN72112"	" Course - Understanding Legislation "	="Workplace Authority"	22-Apr-08	="Career education or planning or decision making skills instructional materials"	17-Jul-07	30-Jun-08	10000.00	=""	="Australian Government Solicitor (ACT)"	22-Apr-08 10:13 AM	

+="CN72115"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	41907.00	=""	="Australian Public Service Commission"	22-Apr-08 10:14 AM	

+="CN72111"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	25-Jul-07	30-Jun-08	49209.40	=""	="Hays Personnel Services (Australia)"	22-Apr-08 10:14 AM	

+="CN72113"	"Communication Expenses"	="Workplace Authority"	22-Apr-08	="Components for information technology or broadcasting or telecommunications"	11-Mar-08	30-Jun-08	73365.50	=""	="Telstra (VIC)"	22-Apr-08 10:16 AM	

+="CN72116"	"Recruitment Services"	="Workplace Authority"	22-Apr-08	="Recruitment services"	18-Dec-07	30-Jun-08	71496.00	=""	="Australian Public Service Commission"	22-Apr-08 10:18 AM	

+="CN72117"	"Employee Security Checks"	="Workplace Authority"	22-Apr-08	="Securing and protecting supplies"	19-Jul-07	30-Jun-08	14693.52	=""	="Australian Federal Police"	22-Apr-08 10:21 AM	

+="CN72118"	"Catering"	="Workplace Authority"	22-Apr-08	="Catering services"	18-Dec-07	30-Jun-08	12248.00	=""	="Cafe 255"	22-Apr-08 10:21 AM	

+="CN72122"	"Assess ASIC eligibility criteria"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Business administration services"	10-Apr-08	30-Jun-08	75000.00	=""	="BIOMETRIC CONSULTING GROUP"	22-Apr-08 10:50 AM	

+="CN72123"	"Supply and installation of X-ray and explosive trace equipment for phase 3 air cargo X-ray trials"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Security surveillance and detection"	07-Apr-08	30-Jun-08	157300.00	=""	="L-3 COMMUNICATIONS AUSTRALIA"	22-Apr-08 10:50 AM	

+="CN72124"	"Audio visual equipment and installation"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Audio and visual presentation and composing equipment"	18-Apr-08	18-Jun-08	16924.62	=""	="Electroboard Solutions Pty Ltd"	22-Apr-08 10:50 AM	

+="CN72125"	"Legal Services Expenditure 6772"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Legal services"	11-Aug-06	30-Jun-09	13140.27	="TRS06/175"	="MINTER ELLISON LAWYERS"	22-Apr-08 10:51 AM	

+="CN72126"	"Scribing/panel services"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Human resources services"	18-Nov-07	30-Jun-08	15029.00	="SOT2006/001"	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	22-Apr-08 10:51 AM	

+="CN72127"	"Legal Services Expenditure 6860"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Legal services"	11-Aug-06	30-Jun-09	15489.10	="TRS06/175"	="Clayton Utz Canberra"	22-Apr-08 10:51 AM	

+="CN72128"	"Graduates 2008 uplift to ACT"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Human resources services"	01-Apr-08	01-May-08	27500.00	=""	="TOLL TRANSITIONS"	22-Apr-08 10:51 AM	

+="CN72129"	"Renewal of subscription - Factiva"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Electronic reference material"	01-Mar-08	01-Mar-09	49165.80	=""	="Factiva (aUSTRALIA) Pty Ltd"	22-Apr-08 10:51 AM	

+="CN72130"	"Venue and Catering for 8th Transport Colloquium 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Management advisory services"	18-Apr-08	30-Jun-08	44150.00	="TRS08/084"	="HYATT HOTEL CANBERRA"	22-Apr-08 10:51 AM	

+="CN72131"	"3-month contract staff - John Tucker"	="Department of Infrastructure Transport Regional Development and Local Government"	22-Apr-08	="Community and social services"	21-Apr-08	30-Jun-08	29975.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	22-Apr-08 10:51 AM	

+="CN72132"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	10836.21	=""	="LANDROVER"	22-Apr-08 10:56 AM	

+="CN72121"	" COVERALLS, CHEMICAL PROTECTIVE TRELLCHEM SUPER TYPE, TOTALLY ENCAPSULATED, VARIOUS SIZES "	="Defence Materiel Organisation"	22-Apr-08	="Protective coveralls"	17-Apr-08	17-May-08	634690.32	=""	="SAFETY EQUIPMENT AUST PTY LTD"	22-Apr-08 11:00 AM	

+="CN72044"	"CPSU v Commonwealth"	="Workplace Authority"	22-Apr-08	="Personal assistance service unions"	19-Feb-08	25-Feb-08	10000.00	=""	="Community & Public Sector Union"	22-Apr-08 11:00 AM	

+="CN72043-A1"	"Re-Imbursement"	="Workplace Authority"	22-Apr-08	="Recruitment services"	29-Jan-08	30-Jun-08	32391.86	=""	="Comcare"	22-Apr-08 11:06 AM	

+="CN72133"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	21220.54	=""	="LANDROVER"	22-Apr-08 11:09 AM	

+="CN72136"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	11396.00	=""	="LANDROVER"	22-Apr-08 11:48 AM	

+="CN72137"	"Provision of Symantic VRTS Storage Foundation Licences"	="Australian Federal Police"	22-Apr-08	="License management software"	30-Aug-07	30-Jul-08	15217.84	="6/2003"	="Dimension Data Australia Pty Limited"	22-Apr-08 12:07 PM	

+="CN72139"	"Conference venue hire and accommodation"	="Australian Taxation Office"	22-Apr-08	="Hotels and lodging and meeting facilities"	15-May-08	16-May-08	40400.00	=""	="Novotel St Kilda"	22-Apr-08 12:17 PM	

+="CN72140"	"Provision of SAN Storage Modules"	="Australian Federal Police"	22-Apr-08	="Exchange datacom modules"	30-Aug-07	30-Jul-08	18913.05	=""	="Dimension Data Australia Pty Limited"	22-Apr-08 12:21 PM	

+="CN72141"	"supply and deliver 310 ea pneumatic tyres vehicular"	="Defence Materiel Organisation"	22-Apr-08	="Heavy truck tyres"	22-Apr-08	12-May-08	126720.00	=""	="Transport tyre sales pty Ltd"	22-Apr-08 12:29 PM	

+="CN72138"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	26678.87	=""	="LANDROVER"	22-Apr-08 12:42 PM	

+="CN72142"	"S'LINER ARN-51258 WALY WK ORDER-35915"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	50272.99	=""	="RGM MAINTENANCE"	22-Apr-08 12:49 PM	

+="CN72143"	"W/O-35915 REP S'LINER ARN-51258"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	25137.94	=""	="RGM MAINTENANCE"	22-Apr-08 12:54 PM	

+="CN72144"	"S'LINER ARN-51258 W/O-36986 WALLY ENGINE REBUILD"	="Department of Defence"	22-Apr-08	="Motor vehicles"	22-Apr-08	26-Jun-08	14014.32	=""	="RGM MAINTENANCE"	22-Apr-08 12:59 PM	

+="CN72145"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	11203.30	=""	="LANDROVER"	22-Apr-08 01:08 PM	

+="CN72146"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	21971.62	=""	="LANDROVER"	22-Apr-08 01:23 PM	

+="CN72147"	"Review of AFP Functional Management Model"	="Australian Federal Police"	22-Apr-08	="Events management"	14-Jan-08	14-May-08	65000.00	=""	="C & M Associates Limited"	22-Apr-08 01:35 PM	

+="CN72148"	"Workshops, coaching sessions, assessment and development action planning sessions for Coaching Skills for Managers - Facilitator Training Round 2."	="Centrelink"	22-Apr-08	="Specialised educational services"	28-Apr-08	31-Dec-09	152000.00	="2005/014"	="Institute of Executive Coaching"	22-Apr-08 01:36 PM	

+="CN72149"	"motor vehicle spare parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	18257.25	=""	="LAND ROVER AUSTRALIA"	22-Apr-08 01:47 PM	

+="CN71989"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-May-08	23541.65	=""	="LAND ROVER AUSTRALIA"	22-Apr-08 01:49 PM	

+="CN72150"	"Various vehicle parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Apr-08	06-May-08	11971.94	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	22-Apr-08 01:50 PM	

+="CN72135"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	41471.63	=""	="LAND ROVER"	22-Apr-08 01:53 PM	

+="CN72152"	"SEALING COMPOUND"	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	22-Apr-08	13-Jun-08	14696.26	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	22-Apr-08 02:11 PM	

+="CN72156"	"CORROSION RESISTANT COATING"	="Defence Materiel Organisation"	22-Apr-08	="Adhesives and sealants"	22-Apr-08	20-Jun-08	10365.52	=""	="INTERTURBINE ADVANCED COMPOSITES"	22-Apr-08 02:18 PM	

+="CN72159-A1"	"Plan for the Stand up of a new Headquarters in Army by the end of 2009."	="Department of Defence"	22-Apr-08	="Specialised educational services"	04-Apr-07	31-Jan-09	300000.00	="RFSOP013-HQ06"	="Noetic Solutions Pty Ltd"	22-Apr-08 02:32 PM	

+="CN72160"	"Supply and deliver 155 ea of vehicular ,pneumatic tyres"	="Defence Materiel Organisation"	22-Apr-08	="Heavy truck tyres"	22-Apr-08	12-May-08	63360.00	=""	="Transport tyre sales pty Ltd"	22-Apr-08 02:32 PM	

+="CN72161"	"PHARMACEUTICAL ASSOCIATED ITEM"	="Defence Materiel Organisation"	22-Apr-08	="Medical health associations"	05-Apr-08	07-May-08	16500.00	=""	="KEY PHARMACEUTICALS P/L"	22-Apr-08 02:50 PM	

+="CN72165"	"MOtor Vehicle Parts"	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	12378.69	=""	="Volvo Commericial Vehicles"	22-Apr-08 03:23 PM	

+="CN72170-A1"	" PURCHASE OF AIRCRAFT FILTER FLUID ELEMENTS "	="Defence Materiel Organisation"	22-Apr-08	="Military rotary wing aircraft"	09-Apr-08	14-May-08	16866.96	=""	="PALL AUSTRALIA"	22-Apr-08 03:54 PM	

+="CN72178"	"Valuation Update"	="National Capital Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	10000.00	=""	="Preston Rowe Paterson NSW Pty Ltd"	22-Apr-08 04:00 PM	

+="CN72182"	"Vibrating Pinscreen Sculpture"	="Questacon"	22-Apr-08	="Exhibitions"	08-Apr-08	22-Dec-08	31000.00	=""	="Ward Fleming Pinscreens"	22-Apr-08 04:05 PM	

+="CN72185"	" CRS Australia - 85 William Street, Port Macquarie NSW "	="CRS Australia"	22-Apr-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	309038.20	=""	="Armidale First National Real Estate"	22-Apr-08 04:19 PM	

+="CN72186-A2"	"The contractor has been contracted to provide a security administrator for the Access Control Team for CRS Australia."	="CRS Australia"	22-Apr-08	="Information technology consultation services"	21-Apr-08	30-Jun-08	20656.00	=""	="Hays Specialist Recruitment Pty Ltd"	22-Apr-08 04:21 PM	

+="CN72188"	"Stuffed toys"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Fabrics and leather materials"	04-Jul-07	11-Jul-07	46263.36	=""	="KORIMCO TOYS"	22-Apr-08 04:32 PM	

+="CN72189"	"Dell Latitude D430 Laptop"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	05-Jul-07	19-Jul-07	22094.60	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72190"	"Rebuilding of boatshed Low Island"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Building and Construction and Maintenance Services"	09-Jul-07	06-Aug-07	44275.00	=""	="MISSION BEACH CONSTRUCTIONS Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72192"	"Recruitment advertising"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	19-Jul-07	16-Aug-07	50000.00	=""	="HMA BLAZE Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72193"	"Print 5 posters A3 full colour printed"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Adhesives and sealants"	04-Jul-07	01-Aug-07	12479.50	=""	="PENFOLD BUSCOMBE AUSTRALIA Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72194"	"Dell Optiplex 745 desktop & 19" LCD"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	09-Aug-07	12032.42	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:32 PM	

+="CN72195"	"Charter of vessel "Bindi" 1/8/07-7/8/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Transportation and Storage and Mail Services"	31-Jul-07	07-Aug-07	18865.00	=""	="CJA EVETTS"	22-Apr-08 04:32 PM	

+="CN72196"	"RHQ: Elect 31/5-30/6/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jul-07	31-Jul-07	12323.64	=""	="Ergon Energy"	22-Apr-08 04:33 PM	

+="CN72197"	"2006-07 First progress charge"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Accounting and auditing"	04-Jul-07	04-Jul-07	19900.00	=""	="Australian National Audit Office"	22-Apr-08 04:33 PM	

+="CN72198"	"1st Qtr CSS/PSS & PPSap Account"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	25-Jul-07	25-Jul-07	11354.50	=""	="Comsuper"	22-Apr-08 04:33 PM	

+="CN72199"	"2007/08 Worker's Comp Premium"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	26-Jul-07	26-Jul-07	63880.91	=""	="Comcare Australia"	22-Apr-08 04:33 PM	

+="CN72200"	"Internet: Usage charges to 28/5-07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	10-Jul-07	10-Jul-07	11585.66	=""	="Telstra"	22-Apr-08 04:33 PM	

+="CN72201"	"IT: Internet Usage charges to 28/6/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	31-Jul-07	31-Jul-07	11345.89	=""	="Telstra"	22-Apr-08 04:33 PM	

+="CN72202"	"Rates: 3660 half year ending 31/12/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	02-Aug-07	11670.81	=""	="Townsville City Council"	22-Apr-08 04:33 PM	

+="CN72203"	"Cleaning contract of GBRMPA"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Cleaning and janitorial services"	02-Aug-07	15-Oct-08	88319.55	=""	="BINIRIS (AUST) Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72204"	"ArcGIS server enterprise standard"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	02-Aug-07	119713.00	=""	="ESRI AUSTRALIA Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72205"	"Leasing of Toshiba E Studio 3510C"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	14-Aug-09	14855.00	=""	="ALLEASING Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72206"	"Lease of Toyota Prius (CPG Rockhampton)"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	15-Aug-09	95079.60	=""	="LEASE PLAN AUSTRALIA Ltd"	22-Apr-08 04:34 PM	

+="CN72207"	"Dell Latitude D430 laptop w/MS office &"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	06-Aug-07	11514.63	=""	="DELL COMPUTER Pty Ltd"	22-Apr-08 04:34 PM	

+="CN72208"	"Funding for storage & rental for July 07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	06-Aug-07	20000.00	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	22-Apr-08 04:34 PM	

+="CN72209"	"2007 COTS control programme on GBR"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	06-Aug-07	31-Jan-08	330000.00	=""	="ASSN OF MARINE PARK TOURISM OPERATORS"	22-Apr-08 04:34 PM	

+="CN72210"	"Media monitoring - electronic clips"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	07-Aug-07	17000.00	=""	="MEDIA MONITORS"	22-Apr-08 04:34 PM	

+="CN72211"	"Wetlabs ECO-FLNTU-SB combined chlorophyl"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	09-Aug-07	09-Aug-07	308385.00	=""	="IMBROS"	22-Apr-08 04:35 PM	

+="CN72212"	"Accommodation, meals & flights for 31"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	09-Aug-07	09-Aug-07	17351.00	=""	="LADY ELLIOT ISLAND ECO RESORT"	22-Apr-08 04:35 PM	

+="CN72213"	"Comcover premium 2007-08"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	14-Aug-07	30-Jun-08	152755.69	=""	="COMCOVER"	22-Apr-08 04:35 PM	

+="CN72214"	"Investment in CAP Reef community"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	15-Aug-07	31-Aug-07	11000.00	=""	="WILLIAM SAWYNOK"	22-Apr-08 04:35 PM	

+="CN72215"	"Cleaning contract of GBRMPA"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Cleaning and janitorial services"	02-Aug-07	15-Oct-08	85058.51	=""	="BINIRIS (AUST) Pty Ltd"	22-Apr-08 04:35 PM	

+="CN72216"	"Media monitoring - electronic clips"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	07-Aug-07	07-Aug-07	14418.64	=""	="MEDIA MONITORS"	22-Apr-08 04:35 PM	

+="CN72217"	"Employment of TEMP in Admin Officer"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	20-Aug-07	20-Aug-07	44952.60	=""	="SOS RECRUITMENT"	22-Apr-08 04:35 PM	

+="CN72218"	"Provision of sediment & nutrient"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Engineering and Research and Technology Based Services"	21-Aug-07	30-Nov-07	28592.00	=""	="AUSTRALIAN INSTITUTE OF MARINE SCIENCE"	22-Apr-08 04:35 PM	

+="CN72219"	"Funding for PIU temp staff"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	22-Aug-07	22-Aug-07	19175.60	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 04:35 PM	

+="CN72220"	"Lease: 1/8/2007 -31/7/2009"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	21-Aug-07	21-Aug-07	33104.67	=""	="Pat O'Driscoll"	22-Apr-08 04:36 PM	

+="CN72221"	"Internet: Usage charges to 28/7/07"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Telecommunications media services"	21-Aug-07	21-Aug-07	12820.52	=""	="Telstra"	22-Apr-08 04:36 PM	

+="CN72169"	"Motor Vehicle Parts."	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	19-May-08	11929.87	=""	="Mercedes Benz Aust. Pacific"	22-Apr-08 04:51 PM	

+="CN72225"	"5x3 bay DS units 1875mm high"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	03-Sep-07	16369.25	=""	="QUEENSLAND LIBRARY SUPPLIES"	22-Apr-08 04:59 PM	

+="CN72226"	"EMC Data Transition"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management advisory services"	04-Sep-07	31-Oct-07	39600.00	=""	="ACIL TASMAN"	22-Apr-08 04:59 PM	

+="CN72227"	"Leased vehicles"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	31-Aug-07	31-Aug-09	139171.11	=""	="LEASE PLAN AUSTRALIA Ltd"	22-Apr-08 04:59 PM	

+="CN72228"	"Rent for Riverside House Mackay"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	12-Sep-07	31-Jul-09	58300.01	=""	="BAMMACK Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72229"	"Temporary employment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	13-Sep-07	13-Sep-07	30414.10	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72230"	"Temporary employment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Human resources services"	29-Aug-07	29-Aug-07	21361.24	=""	="TP HUMAN CAPITAL Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72231"	"Printing of "Climate Change and the"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Adhesives and sealants"	19-Sep-07	02-Oct-07	46904.00	=""	="PRINTPOINT AUSTRALIA Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72232"	"GBRMPA Zoning TV schedules"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Marketing and distribution"	20-Sep-07	20-Sep-07	12617.00	=""	="HMA BLAZE Pty Ltd"	22-Apr-08 05:00 PM	

+="CN72233"	"Elect: 30/6-31/7/07 Reef HQ"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	04-Sep-07	14112.59	=""	="Ergon Energy"	22-Apr-08 05:00 PM	

+="CN72234"	"Lease: 6 Sept - 5 Oct 2007"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Sep-07	06-Sep-07	46134.43	=""	="Einstand Pty Lt"	22-Apr-08 05:01 PM	

+="CN72236"	"Lease: 1/10/07-31/7/09 Riverside House"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	06-Sep-07	06-Sep-07	48583.35	=""	="Bammack Pty Ltd"	22-Apr-08 05:01 PM	

+="CN72235"	"Motor Vehicle Parts."	="Department of Defence"	22-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	17-Apr-08	17-Apr-08	14729.18	=""	="Mercedes Benz Aust. Pacific"	22-Apr-08 05:01 PM	

+="CN72224"	" Kings Avenue / Parkes Way Bridge - Heritage and Environmental Impact Assessment "	="National Capital Authority"	22-Apr-08	="Cultural heritage preservation or promotion services"	06-Feb-08	15-Mar-08	20000.00	=""	="Architectural Projects Pty Ltd"	22-Apr-08 05:02 PM	

+="CN72237"	"Delivery of statement of Attainment"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	14-Dec-07	12000.00	=""	="KPS & ASSOCIATES Pty Ltd"	22-Apr-08 05:40 PM	

+="CN72240"	"Compilation of information on the interaction of reef sharks with the line fishery in the GBRMP"	="Great Barrier Reef Marine Park Authority"	22-Apr-08	="Professional engineering services"	04-Oct-07	21-Dec-07	28443.80	=""	="JAMES COOK UNIVERSITY"	22-Apr-08 05:40 PM	

+="CN72241"	"Kings Avenue / Parkes Way Bridge - Indigenous and Natural Envirnment Impact Assessment"	="National Capital Authority"	22-Apr-08	="Cultural heritage preservation or promotion services"	08-Feb-08	17-Mar-08	18293.00	="08/11"	="Navin Office Heritage Consultants Pty Ltd"	22-Apr-08 05:55 PM	

+="CN72242"	"PNG Kumul Clothing and Equipment"	="Defence Materiel Organisation"	22-Apr-08	="Military uniforms"	19-Mar-08	31-May-10	1288607.34	="2480038"	="Australian Defence Apparel"	22-Apr-08 07:15 PM	

+="CN72243"	"Cloth, Twill, Grey Proban 290GSM, purchased against standing offer 0310-272-26"	="Defence Materiel Organisation"	23-Apr-08	="Specialty fabrics or cloth"	21-Apr-08	28-Apr-08	12947.00	="2480050"	="Bruck Textiles"	23-Apr-08 08:24 AM	

+="CN72244"	"Translate & Typeset 'Super-What You Need To Know' into * languages"	="Australian Taxation Office"	23-Apr-08	="Written translation services"	29-Oct-07	07-Mar-08	19928.40	=""	="Global Village TRanslations"	23-Apr-08 08:28 AM	

+="CN72245"	"Alpha helmet spares"	="Defence Materiel Organisation"	23-Apr-08	="Helmet parts or accessories"	22-Apr-08	29-Jul-08	10503.54	=""	="SARQUIP INTERNATIONAL"	23-Apr-08 08:32 AM	

+="CN72249-A2"	"2008 APS ICT Apprenticeship Programme"	="Australian Taxation Office"	23-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-09	1141719.00	=""	="Excelior Pty Lyd"	23-Apr-08 09:30 AM	

+="CN72251"	"Hire of the Mechanics Alive Exhibition"	="Questacon"	23-Apr-08	="Exhibitions"	18-Feb-08	30-Jan-09	45500.00	=""	="Cabaret Mechanical Theatre"	23-Apr-08 09:49 AM	

+="CN72253-A1"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	23-Apr-08	="Motor vehicles"	21-Apr-08	05-May-08	11249.60	=""	="VOLVO COMMERCIAL VEHICLES"	23-Apr-08 09:54 AM	

+="CN72255"	" Evaluate project "	="Australian Centre for International Agricultural Research"	23-Apr-08	="Agricultural research services"	19-Nov-07	29-Feb-08	63762.00	=""	="DR PHILIP YOUNG"	23-Apr-08 10:33 AM	

+="CN72258"	"Additional implementation Services for Argus Software"	="Australian Taxation Office"	23-Apr-08	="Software maintenance and support"	21-Apr-08	30-Jun-08	129775.00	=""	="Capital Markets Consulting P/L"	23-Apr-08 10:48 AM	

+="CN72259"	" VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	23-Apr-08	="Medical health associations"	07-Apr-08	11-May-08	11575.63	=""	="SENTRY MEDICAL P/L"	23-Apr-08 10:48 AM	

+="CN72260"	"Torque Wrench Tester Kits. Part No Q1476"	="Defence Materiel Organisation"	23-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	31-Mar-08	31-Oct-08	2090818.95	=""	="Norbar Torque Tools"	23-Apr-08 10:50 AM	

+="CN72257"	" Evaluate project "	="Australian Centre for International Agricultural Research"	23-Apr-08	="Agricultural research services"	19-Nov-07	29-Feb-08	48632.00	=""	="DR DAVID MARSTON"	23-Apr-08 10:51 AM	

+="CN72261"	"Meteorological Parachute"	="Defence Materiel Organisation"	23-Apr-08	="Meteorological instruments"	22-Apr-08	11-Jun-08	17600.00	=""	="A & D International Pty Ltd"	23-Apr-08 10:57 AM	

+="CN72263"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	23-Apr-08	="Medical health associations"	10-Apr-08	11-May-08	42834.00	=""	="LMA PACMED P/L"	23-Apr-08 10:59 AM	

+="CN72264"	"IT Information Subscription Services"	="Australian Taxation Office"	23-Apr-08	="Software"	01-May-08	30-Apr-09	59400.00	=""	="Ovum Ltd."	23-Apr-08 11:16 AM	

+="CN72265"	" Purchase of Aircraft Parts NSN 1650-01-125-7630.  Stabilator Horizontal, Fuselage Section Rear FA/18  Qty 6 "	="Defence Materiel Organisation"	23-Apr-08	="Aircraft horizontal stabilisers"	23-Apr-08	03-Jun-08	85700.00	=""	="Milspec Services Pty Ltd"	23-Apr-08 11:21 AM	

+="CN72266"	"IT Information Subscription Services"	="Australian Taxation Office"	23-Apr-08	="Software"	01-May-08	30-Apr-09	32994.00	=""	="Butler Group P/L"	23-Apr-08 11:22 AM	

+="CN72268"	"Evaluate project"	="Australian Centre for International Agricultural Research"	23-Apr-08	="Agricultural research services"	01-Nov-07	29-Feb-08	11266.00	=""	="PROFESSOR LI XIANDE"	23-Apr-08 11:30 AM	

+="CN72269"	"METHYL ETHYL KETONE"	="Defence Materiel Organisation"	23-Apr-08	="Chemicals including Bio Chemicals and Gas Materials"	11-Apr-08	25-May-08	12210.00	=""	="CHEM-SUPPLY PTY LTD"	23-Apr-08 12:01 PM	

+="CN72271"	"Scientific writing"	="Australian Centre for International Agricultural Research"	23-Apr-08	="Publication printing"	15-Mar-08	30-Jun-08	18700.00	=""	="MA@D COMMUNICATIONS"	23-Apr-08 12:05 PM	

+="CN72275"	"Supply of Motorola Microphones"	="Australian Federal Police"	23-Apr-08	="Microphones"	23-Apr-08	30-Jun-08	39638.00	=""	="Motorola Australia Pty Limited"	23-Apr-08 01:03 PM	

+="CN72276"	"Print 1,600 copies of Native Title Report 2007"	="Australian Human Rights Commission"	23-Apr-08	="Printed publications"	13-Mar-08	14-Apr-08	13494.80	=""	="Paragon Print Australasia"	23-Apr-08 01:17 PM	

+="CN72277-A1"	"Software licence agreement for .XRY with micro systemation AB"	="Australian Federal Police"	23-Apr-08	="Software"	03-May-08	02-May-09	36993.00	=""	="Fulcrum Management Pty. Limited"	23-Apr-08 01:54 PM	

+="CN72278"	"Provision of Tax update seminar"	="Australian Taxation Office"	23-Apr-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	31-May-08	139700.00	=""	="CPA Australia"	23-Apr-08 01:57 PM	

+="CN72279"	" Printing publications "	="Australian Centre for International Agricultural Research"	23-Apr-08	="Publication printing"	18-Mar-08	30-Jun-08	17427.00	=""	="FINSBURY GREEN PTY LTD"	23-Apr-08 02:13 PM	

+="CN72272"	"PACTAM: Placement of Pharmacist in Vanuatu"	="AusAid"	23-Apr-08	="Medical practice"	01-Jun-07	31-May-09	189091.32	=""	="AUSTRALIAN VOLUNTEERS INTERNATIONAL"	23-Apr-08 02:16 PM	

+="CN72280"	"Publication printing"	="Australian Centre for International Agricultural Research"	23-Apr-08	="Publication printing"	18-Mar-08	30-Jun-08	11473.00	=""	="NATIONAL CAPITAL PRINTING"	23-Apr-08 02:23 PM	

+="CN72273"	" CARRIER, INTRENCHING TOOL M1956, GREEN, FOR HINGED STYLE SHOVEL    "	="Defence Materiel Organisation"	23-Apr-08	="Harnesses or its accessories"	22-Apr-08	05-Aug-08	73931.00	="CC1UPT"	="Ancamaraba Pty Ltd"	23-Apr-08 02:35 PM	

+="CN72281-A2"	" Term license for MicroFocus Mainframe Express EE & Revolve EE software licenses. "	="Australian Taxation Office"	23-Apr-08	="Software"	01-May-08	12-Mar-12	2533315.73	=""	="MicroFocus Pty Ltd"	23-Apr-08 02:35 PM	

+="CN72288"	"A23 AIRCRAFT - REPAIRS TO CYLINDER AND PISTON ASSEMBLY, LANDING GEAR"	="Defence Materiel Organisation"	23-Apr-08	="Military fixed wing aircraft"	15-Apr-08	14-Jun-08	13613.64	=""	="AIRFLITE PTY LTD"	23-Apr-08 02:48 PM	

+="CN72287"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	23-Apr-08	="Military fixed wing aircraft"	15-Apr-08	29-Jun-08	19573.38	=""	="AIRFLITE PTY LTD"	23-Apr-08 02:53 PM	

+="CN72286"	"A23 AIRCRAFT - REPAIRS TO PUMP,AXIAL PISTONS"	="Defence Materiel Organisation"	23-Apr-08	="Military fixed wing aircraft"	15-Apr-08	30-May-08	10106.23	=""	="AIRFLITE PTY LTD"	23-Apr-08 02:58 PM	

+="CN72292-A1"	"Supply and deliver quantity 30 EA of multi-purpose tyres "	="Defence Materiel Organisation"	23-Apr-08	="Heavy truck tyres"	23-Apr-08	30-Jun-08	31363.20	=""	="MICHELIN AUSTRALIA PTY LTD"	23-Apr-08 03:01 PM	

+="CN72289-A1"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	23-Apr-08	="Aircraft"	15-Aug-06	31-Oct-08	33158.75	=""	="Sikorsky Aircraft Australia LTD"	23-Apr-08 03:19 PM	

+="CN72294"	"Catering and Venue charges for the Indigenous Health Equality Summit."	="Australian Human Rights Commission"	23-Apr-08	="Catering services"	18-Mar-08	20-Mar-08	33557.40	=""	="Rydges Eagle Hawk Resort Canberra"	23-Apr-08 03:28 PM	

+="CN72293"	" SPORTING ATTAIR - SHORTS GENERAL SPORTS  STANDING OFFER NO; 4170/2/274 "	="Defence Materiel Organisation"	23-Apr-08	="Clothing accessories"	07-Apr-08	20-Jun-08	118175.75	=""	="Walkabout Leisurewear Pty Ltd"	23-Apr-08 03:28 PM	

+="CN72290"	"Documentation Office Fitout 2008"	="National Capital Authority"	23-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	27-Mar-08	10241.00	=""	="GHD Pty Ltd"	23-Apr-08 03:30 PM	

+="CN72274"	" SPORTING ATTIRE TRACKSUITS   STANDING OFFER NO; 4170/2/274 "	="Defence Materiel Organisation"	23-Apr-08	="Clothing accessories"	02-Apr-08	20-Jun-08	141702.00	=""	="Walkabout Leisurewear Pty Ltd"	23-Apr-08 03:32 PM	

+="CN72295"	" Remedial Works Package - Commonwealth Place "	="National Capital Authority"	23-Apr-08	="Building and Construction Machinery and Accessories"	17-Mar-08	01-May-08	131193.70	=""	="Manteena Pty Ltd"	23-Apr-08 03:45 PM	

+="CN72296-A1"	"Independant Membership of Audit Committee"	="Australian Federal Police"	23-Apr-08	="Internal audits"	03-Mar-08	31-Dec-11	88000.00	=""	="Morison Consulting Pty Ltd"	23-Apr-08 03:47 PM	

+="CN72298"	" SPORTING ATTIRE- SPORT SHIRTS & SHIRTS UTILITY PTI  STANDING OFFER NO; 4170/2/274 "	="Defence Materiel Organisation"	23-Apr-08	="Clothing accessories"	07-Apr-08	20-Jun-08	11413.60	=""	="Walkabout Leisurewear Pty Ltd"	23-Apr-08 03:50 PM	

+="CN72301-A1"	"Property Lease ACT"	="Department of the Environment Water Heritage and the Arts"	23-Apr-08	="Real estate services"	17-Sep-07	20-Jun-08	333413.25	="0708-174"	="CSIRO Accounts Receivable"	23-Apr-08 03:53 PM	

+="CN72300"	"Temporary Power Supply"	="National Capital Authority"	23-Apr-08	="Power Generation and Distribution Machinery and Accessories"	11-Feb-08	30-Jun-08	73150.00	=""	="Manteena Pty Ltd"	23-Apr-08 03:53 PM	

+="CN72302"	"Occupational Health and Safety Performance Audit Review"	="Department of the Environment Water Heritage and the Arts"	23-Apr-08	="Human resources services"	18-Jul-07	25-Jul-07	99040.19	="0607-118"	="Echelon Australia Pty Ltd"	23-Apr-08 03:57 PM	

+="CN72303"	" AIRCRAFT SPARES  NSN 1680-01-095-7507 , HANDLE , DOOR  QTY 20 "	="Defence Materiel Organisation"	23-Apr-08	="Military transport helicopters"	23-Apr-08	22-Jul-08	42151.56	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	23-Apr-08 04:26 PM	

+="CN72304"	" Motor Vehicle Parts "	="Department of Defence"	23-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	21-Apr-08	21-May-08	14722.20	=""	="Mercedes Benz Aust"	23-Apr-08 04:37 PM	

+="CN72305-A1"	"Computer System Licence and Softwars support"	="Australian Federal Police"	24-Apr-08	="Software"	20-May-08	19-May-11	21175.00	=""	="CMS Hospitality"	24-Apr-08 08:14 AM	

+="CN72306"	"Hexameine Fuel Tablets"	="Defence Materiel Organisation"	24-Apr-08	="Hexamines"	20-Dec-07	19-Feb-08	134750.00	=""	="Far-Side Marketing Pty Ltd"	24-Apr-08 08:17 AM	

+="CN72308-A1"	"Printing of : NAT14584 - Fuel Tax Credits for Business"	="Australian Taxation Office"	24-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-Apr-08	31-May-08	25836.80	=""	="Paragon Printers"	24-Apr-08 09:08 AM	

+="CN72310-A1"	" Train accredited RESULTS workplace coach trainers. "	="Australian Taxation Office"	24-Apr-08	="Management and Business Professionals and Administrative Services"	16-Dec-08	31-Dec-09	200000.00	=""	="Workplace Coaching Pty Ltd"	24-Apr-08 09:23 AM	

+="CN72312"	"COMPASS, MAGNETIC, UNMOUNTED LIQUID, MILS, 'FRANCIS BARKER' MODEL M73 (AUST) POCKET TYPE, DIAL READING TYPE, GRAD RANGE 0.0 TO 6400.0 MILS, READING FINISH                     "	="Defence Materiel Organisation"	24-Apr-08	="Compasses"	23-Apr-08	11-Jun-08	67082.40	=""	="LUMINOUS PROCESSORS PTY LTD"	24-Apr-08 10:13 AM	

+="CN72315"	"SAFETY SUN GLASSES"	="Department of Defence"	24-Apr-08	="Sunglasses"	16-Apr-08	21-Apr-08	16087.50	=""	="SASSPORT"	24-Apr-08 10:24 AM	

+="CN72320"	"Maintenance extension for TSM Software"	="Australian Taxation Office"	24-Apr-08	="Software maintenance and support"	01-May-08	30-Nov-08	26067.80	=""	="IBM Australia Ltd"	24-Apr-08 10:32 AM	

+="CN72323"	"NORTH PUFFER JACKETS"	="Department of Defence"	24-Apr-08	="Heat resistant clothing"	05-Nov-07	03-Dec-07	10340.00	=""	="MAINPEAK"	24-Apr-08 10:34 AM	

+="CN72324"	"Project development"	="Australian Centre for International Agricultural Research"	24-Apr-08	="Agricultural research services"	20-Mar-08	23-May-08	11000.00	=""	="CSIRO PLANT & INDUSTRY"	24-Apr-08 10:38 AM	

+="CN72326-A1"	"Communication science training"	="Australian Centre for International Agricultural Research"	24-Apr-08	="Agricultural research services"	07-Apr-08	31-Jul-08	45000.00	=""	="BALAI BESAR PENKAJIIAN DAN PENGEMBANGAN TEKNOLOGI  PERTANIAN"	24-Apr-08 10:48 AM	

+="CN72329"	" For the Provision of Financial Acounting Services "	="Child Support Agency"	24-Apr-08	="Human resources services"	23-Apr-08	31-Oct-08	92928.00	=""	="Cordelta Pty Ltd"	24-Apr-08 10:56 AM	

+="CN72332-A1"	" Audit Services "	="Department of Human Services"	24-Apr-08	="Audit services"	23-Apr-08	30-Jun-08	25000.00	=""	="ACUMEN ALLIANCE"	24-Apr-08 11:25 AM	

+="CN72333"	" ASLAV PARTS MULTI LINES "	="Department of Defence"	24-Apr-08	="Armoured fighting vehicles"	23-Apr-08	25-Sep-08	32831.37	=""	="General Dynamics Land Systems"	24-Apr-08 11:28 AM	

+="CN72335"	" CLOTH, LAMINATE - DPDU. WET WEATHER "	="Defence Materiel Organisation"	24-Apr-08	="Camouflage cloth"	23-Apr-08	30-Sep-08	1819125.00	="2470100"	="BRUCK TEXTILES"	24-Apr-08 11:31 AM	

+="CN72336"	"CLOTH LAMINATE - DPCU. WET WEATHER"	="Defence Materiel Organisation"	24-Apr-08	="Camouflage cloth"	23-Apr-08	19-Dec-08	8489250.00	="2470100"	="BRUCK TEXTILES"	24-Apr-08 11:36 AM	

+="CN72337"	" PHARMACEUTICAL ASSOCIATED ITEM "	="Defence Materiel Organisation"	24-Apr-08	="Medical health associations"	21-Apr-08	21-May-08	15844.40	=""	="SYMBION PHARMACY SERVICES"	24-Apr-08 11:41 AM	

+="CN72340"	"PHARMACEUTICALS"	="Defence Materiel Organisation"	24-Apr-08	="Medical health associations"	21-Apr-08	22-May-08	17802.40	=""	="AUSTRALIAN THERAPEUTIC SUPPLIES"	24-Apr-08 11:52 AM	

+="CN72341"	"08/2641 - Accommodation"	="Australian Customs and Border Protection Service"	24-Apr-08	="Hotels and lodging and meeting facilities"	05-Mar-08	04-Mar-11	158584.68	=""	="Department of Foreign Affairs and Trade"	24-Apr-08 11:57 AM	

+="CN72342"	"CPO021058 - Communications Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-May-08	22387.20	=""	="Motorola Australia Pty Ltd"	24-Apr-08 11:57 AM	

+="CN72343"	"07/2421 - Fitout Works/Construction"	="Australian Customs and Border Protection Service"	24-Apr-08	="General building construction"	25-Mar-08	19-Apr-08	191653.00	=""	="ISIS Project Pty Ltd"	24-Apr-08 11:57 AM	

+="CN72344"	"CPE004348-3 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Refuse disposal and treatment"	27-Mar-08	27-Mar-08	11021.01	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	24-Apr-08 11:57 AM	

+="CN72345-A1"	"102440 - Supply Software. Maintenance & Support"	="Australian Customs and Border Protection Service"	24-Apr-08	="Computer services"	20-Mar-08	20-Mar-11	11514.32	=""	="Dataflex Pty Ltd"	24-Apr-08 11:57 AM	

+="CN72346"	"CPO019862 - Provision of Cables and Switches"	="Australian Customs and Border Protection Service"	24-Apr-08	="Electrical wire and cable and harness"	25-Feb-08	25-Apr-08	48304.30	=""	="Unisys Australia Pty Ltd (ACT)"	24-Apr-08 11:57 AM	

+="CN72347"	"08/2600 - Accommodation"	="Australian Customs and Border Protection Service"	24-Apr-08	="Hotels and lodging and meeting facilities"	21-Feb-08	20-Feb-11	145029.59	=""	="Department of Foreign Affairs and Trade"	24-Apr-08 11:58 AM	

+="CN72348"	"CPE004703-1 - Software Installation"	="Australian Customs and Border Protection Service"	24-Apr-08	="Computer services"	08-Apr-08	08-Apr-08	25199.62	=""	="Cognos Pty Ltd"	24-Apr-08 11:58 AM	

+="CN72349"	"CPO020821 - Passenger Review"	="Australian Customs and Border Protection Service"	24-Apr-08	="Human resources services"	01-Dec-07	01-Jan-08	23832.73	=""	="KPMG"	24-Apr-08 11:58 AM	

+="CN72350"	"08/2605 - Charter Services (CPO020082)"	="Australian Customs and Border Protection Service"	24-Apr-08	="Transportation and Storage and Mail Services"	10-Mar-08	11-Mar-08	29290.00	=""	="Independent Aviation"	24-Apr-08 11:58 AM	

+="CN72351"	"CPO020342 - Fork Lift Hire"	="Australian Customs and Border Protection Service"	24-Apr-08	="Building construction and support and maintenance and repair services"	07-Mar-08	10-Apr-08	52438.10	=""	="Toyota Material Handling NSW Pty Ltd"	24-Apr-08 11:58 AM	

+="CN72352"	"CPO020844 - Accommodation"	="Australian Customs and Border Protection Service"	24-Apr-08	="Hotels and lodging and meeting facilities"	20-Jun-08	27-Jun-08	27664.00	=""	="Karratha International Hotel"	24-Apr-08 11:58 AM	

+="CN72353"	"CPO021104 - Assurance Recorder Analogues"	="Australian Customs and Border Protection Service"	24-Apr-08	="Components for information technology or broadcasting or telecommunications"	10-Apr-08	30-May-08	24977.70	=""	="Electrodata Recorders Pty Ltd"	24-Apr-08 11:58 AM	

+="CN72354"	"08/2699 - Truck Body Manufacture"	="Australian Customs and Border Protection Service"	24-Apr-08	="Motor vehicles"	10-Aug-08	20-Oct-08	76200.00	=""	="Elross Caravans"	24-Apr-08 11:58 AM	

+="CN72355"	"CPO021302 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	15-Apr-08	30-Apr-08	16710.01	=""	="Harris Technology"	24-Apr-08 11:58 AM	

+="CN72356"	"CPE004656-1 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	24-Apr-08	="Furniture and Furnishings"	20-Mar-08	05-May-08	24436.50	=""	="Urban Culture"	24-Apr-08 11:59 AM	

+="CN72357"	"CPE004627-1 - Construction Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="General building construction"	14-Mar-08	28-Apr-08	28000.00	=""	="Basic Steel Supplies"	24-Apr-08 11:59 AM	

+="CN72358"	"CPE004759-1 - Installation of Security Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	14-Apr-08	14-Apr-08	16401.00	=""	="Gentec Services Pty Ltd"	24-Apr-08 11:59 AM	

+="CN72359"	"08/2711 - Recruitment Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management advisory services"	02-Apr-08	01-Aug-08	29700.00	=""	="Ford Kelly Executive Connection"	24-Apr-08 11:59 AM	

+="CN72360"	"CPO021347 - Disposal Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Measuring and observing and testing instruments"	31-Mar-08	30-Apr-08	29672.12	=""	="Australian Radiation Services"	24-Apr-08 11:59 AM	

+="CN72361"	"CPE004765-1 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	24-Apr-08	="Furniture and Furnishings"	16-Apr-08	30-Jun-08	17942.10	=""	="Workspace Commercial Furniture Pty Ltd"	24-Apr-08 11:59 AM	

+="CN72371"	"CPE004721-1 - Fuel"	="Australian Customs and Border Protection Service"	24-Apr-08	="Fuels"	20-Mar-08	20-Mar-08	15266.69	=""	="Logicoil Pty Ltd"	24-Apr-08 12:00 PM	

+="CN72372"	"CPE004720-1 - Fuel"	="Australian Customs and Border Protection Service"	24-Apr-08	="Fuels"	10-Apr-08	10-Apr-08	27601.84	=""	="Ability Barge Services"	24-Apr-08 12:01 PM	

+="CN72373"	"CPE004728-1 - Communications Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Telecommunications media services"	18-Mar-08	18-Mar-08	28057.70	=""	="Electrotech Australia"	24-Apr-08 12:01 PM	

+="CN72376-A1"	"08/2571 - Consultancy Service"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-09	40000.00	=""	="Leslie Whittet and Associates"	24-Apr-08 12:01 PM	

+="CN72377"	"CPO021342 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	14613.50	=""	="Intelligent Surveillance"	24-Apr-08 12:01 PM	

+="CN72378"	"CPO021397 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	10-Apr-08	30-Jun-08	26191.00	=""	="Intelligent Surveillance"	24-Apr-08 12:01 PM	

+="CN72379"	"CPO021396 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	10-Apr-08	30-Jun-08	68685.10	=""	="Intelligent Surveillance"	24-Apr-08 12:01 PM	

+="CN72380"	"CPO021375 - Training Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Education and Training Services"	30-Jan-08	27-Feb-08	21024.20	=""	="Centre for Customs and Excise Studies"	24-Apr-08 12:01 PM	

+="CN72381"	"CPO020881 - Supply of Software"	="Australian Customs and Border Protection Service"	24-Apr-08	="Computer services"	15-Apr-08	16-May-08	54890.00	=""	="Market Technology"	24-Apr-08 12:02 PM	

+="CN72382"	"CPE003466-4 - Subscription Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Computer services"	01-Apr-08	30-Jun-08	22023.60	=""	="Factiva, Dow Jones & Reuters"	24-Apr-08 12:02 PM	

+="CN72384"	"CPO021460 - Training Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Education and Training Services"	02-Apr-08	10-Apr-08	28665.17	=""	="Centre for Customs and Excise Studies"	24-Apr-08 12:02 PM	

+="CN72385-A1"	"07/2324 - Security Service (CPE004778-1)"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-10	81532.00	=""	="Webb Australia Group (Qld) Pty Ltd"	24-Apr-08 12:02 PM	

+="CN72386"	"CPE004781-1 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	13106.50	=""	="James & Moore Pty Ltd"	24-Apr-08 12:02 PM	

+="CN72387"	"CPO021487 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	24-Apr-08	="Clothing"	21-Apr-08	21-Jul-08	34500.00	=""	="Trade Import Services"	24-Apr-08 12:02 PM	

+="CN72388"	"CPO018682 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	24-Apr-08	="Clothing"	17-Apr-08	17-Jul-08	50600.00	=""	="Trade Import Services"	24-Apr-08 12:03 PM	

+="CN72389"	"CPO018681 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	24-Apr-08	="Clothing"	17-Apr-08	17-Jul-08	50600.00	=""	="Trade Import Services"	24-Apr-08 12:03 PM	

+="CN72390"	"CPO018684 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	24-Apr-08	="Clothing"	17-Apr-08	17-Jul-08	75900.00	=""	="Trade Import Services"	24-Apr-08 12:03 PM	

+="CN72391"	"CPO021045 - Recruitment Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	31-Mar-08	30548.00	=""	="AusCheck"	24-Apr-08 12:03 PM	

+="CN72392"	"CPE004738 - Supply Workstations and Furniture"	="Australian Customs and Border Protection Service"	24-Apr-08	="Furniture and Furnishings"	11-Apr-08	15-Jun-08	10716.00	=""	="Urban Culture"	24-Apr-08 12:03 PM	

+="CN72393"	"08/2692 - Supply Services and Spare Parts for Surveillance System"	="Australian Customs and Border Protection Service"	24-Apr-08	="Measuring and observing and testing instruments"	06-Mar-08	30-Jun-10	491273.00	=""	="BAE Systems Australia"	24-Apr-08 12:03 PM	

+="CN72394"	"CPO021336 - Reporting Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Human resources services"	01-Mar-08	28-Feb-09	22000.00	=""	="TradeData International"	24-Apr-08 12:03 PM	

+="CN72395-A2"	"06/1675 - Design Consultancy"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business intelligence consulting services"	13-Feb-08	30-Jun-11	60000.00	=""	="Bruce Elson Automotive Consultants Pty Ltd"	24-Apr-08 12:03 PM	

+="CN72396"	"07/2317 - Fitout Works/Construction"	="Australian Customs and Border Protection Service"	24-Apr-08	="General building construction"	19-Mar-08	30-Apr-08	58300.00	=""	="Computer Site Solutions"	24-Apr-08 12:03 PM	

+="CN72397"	"CPE002969-8 - Legislative Instruments"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	16319.49	=""	="Attorney Generals Department"	24-Apr-08 12:04 PM	

+="CN72398"	"CPO021548 - Mobile Phones"	="Australian Customs and Border Protection Service"	24-Apr-08	="Components for information technology or broadcasting or telecommunications"	22-Apr-08	22-May-08	42850.50	=""	="Jim Hendrickson & Associates"	24-Apr-08 12:04 PM	

+="CN72399"	"CPO021564 - Supply and Fit Workstations"	="Australian Customs and Border Protection Service"	24-Apr-08	="Furniture and Furnishings"	23-Apr-08	30-Jun-08	23237.50	=""	="Zenith Interiors Pty Ltd"	24-Apr-08 12:04 PM	

+="CN72400"	"CPO021579 - Medical Services"	="Australian Customs and Border Protection Service"	24-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	03-Apr-08	15487.50	=""	="Anodyne Services Australia"	24-Apr-08 12:04 PM	

+="CN72401-A1"	"07/2446 - Grounds Maintenance"	="Australian Customs and Border Protection Service"	24-Apr-08	="Cleaning and janitorial services"	01-Apr-08	31-Mar-11	21000.00	=""	="Sedepate Pty Ltd T/A FNQ Contract Cleaners"	24-Apr-08 12:04 PM	

+="CN72402-A1"	"08/2608 - X-Ray Units - 0109-1067 - X-Ray Panel 03/0109 (CPO019783)"	="Australian Customs and Border Protection Service"	24-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Feb-07	20-Apr-08	255063.60	=""	="Smiths Detection Australia"	24-Apr-08 12:17 PM	

+="CN72403"	" NSN 1560/01-170-8316  PURCHASE OF INLET, ENGINE AIR  GST INCL "	="Defence Materiel Organisation"	24-Apr-08	="Military transport aircraft"	17-Mar-08	29-Aug-08	1053327.00	=""	="Milspec Services Pty Ltd"	24-Apr-08 12:20 PM	

+="CN72405-A4"	"08/2583 - Building Works Management 0768-1577 - Property Panel New South Wales - 05/0768"	="Australian Customs and Border Protection Service"	24-Apr-08	="Project management"	17-Mar-08	31-Aug-09	116160.00	=""	="Connell Wagner Pty Ltd"	24-Apr-08 12:23 PM	

+="CN72404"	"Qty 15 Tyre Pneumatic for delivery to JLU(N)"	="Defence Materiel Organisation"	24-Apr-08	="Heavy truck tyres"	23-Apr-08	04-Aug-08	15681.60	=""	="Michelin Australia PTY LTD"	24-Apr-08 12:23 PM	

+="CN72406-A1"	" NSN 1680/00-987-0173  PURCHASE OF TUBE ASSY, OIL TANK  Incl GST "	="Defence Materiel Organisation"	24-Apr-08	="Military transport aircraft"	21-Feb-08	13-Nov-08	45925.00	=""	="Flite Path Pty Ltd"	24-Apr-08 12:25 PM	

+="CN72407-A2"	"08/2618 - Project Management - 1599-1944 - C&B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business and corporate management consultation services"	19-Feb-08	30-Aug-08	137000.00	="08/2618"	="Oakton AA Services Pty ltd"	24-Apr-08 12:26 PM	

+="CN72408"	" NSN 2840/00-141-5638  PURCHASE OF HUB, TURBINE, AIRCRAFT GAS TURBINE ENGINE  GST INCL "	="Defence Materiel Organisation"	24-Apr-08	="Military transport aircraft"	25-Mar-08	23-Jun-08	191791.60	=""	="Aviall Australia Pty Ltd"	24-Apr-08 12:29 PM	

+="CN72410"	" NSN 6340/66-151-2417  PURCHASE OF ANNUNCIATOR  GST INCL "	="Defence Materiel Organisation"	24-Apr-08	="Military transport aircraft"	20-Mar-08	24-Jul-08	107750.50	=""	="Aero And Military Products"	24-Apr-08 12:32 PM	

+="CN72411-A1"	"CPE004695-1 On-line Learning Program - 0094-1228 - On-line Learning Panel 05/0994"	="Australian Customs and Border Protection Service"	24-Apr-08	="Specialised educational services"	09-Apr-08	30-Jun-08	59840.00	=""	="Evolve Pty Ltd"	24-Apr-08 12:33 PM	

+="CN72412-A2"	"08/2631 - Review of Information Sources - 1599-1959 - Consultancy and Business Services Panel 06/1599 (CPE004685-1)"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business and corporate management consultation services"	07-Apr-08	30-Jun-08	55000.00	=""	="APIS Consulting Group Pty Ltd"	24-Apr-08 12:37 PM	

+="CN72415"	" NSN 2840/01-509-1985  PURCHASE OF NOZZLE SEGMENT, TURBINE, AIRCRAFT GAS  GST INCL "	="Defence Materiel Organisation"	24-Apr-08	="Military transport aircraft"	15-Apr-08	30-Apr-08	136326.96	=""	="Aviall Australia Pty Ltd"	24-Apr-08 12:40 PM	

+="CN72417-A2"	"08/2592 - Specialist Technical Resources - 0859-1284 - IT Security Services Panel 05/0859"	="Australian Customs and Border Protection Service"	24-Apr-08	="Temporary personnel services"	01-Apr-08	31-Dec-09	1717000.00	=""	="Verizon Business"	24-Apr-08 12:44 PM	

+="CN72418-A1"	"08/2770 - Program Officer 0717-0878 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	24-Apr-08	="Temporary personnel services"	14-Feb-08	14-May-08	54000.00	=""	="Hays"	24-Apr-08 12:48 PM	

+="CN72419-A1"	"08/2652 - Senior Developer - 0717-0866 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	24-Apr-08	="Temporary personnel services"	14-Apr-08	31-Mar-09	322509.00	="05/0717"	="Clicks Recruit Pty Ltd"	24-Apr-08 12:52 PM	

+="CN72420-A3"	"07/2490 - Senior Developer - 0717-0897 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	24-Apr-08	="Temporary personnel services"	07-Mar-08	30-Jun-08	140000.00	=""	="Stratagem Computer Contractors Pty Ltd"	24-Apr-08 12:55 PM	

+="CN72421-A1"	"08/2569 - Assessment Consultancy - 1599-1957 - C & B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business and corporate management consultation services"	26-Mar-08	30-May-08	205840.00	="06/1599"	="Accenture Australia Holdings Pty Ltd"	24-Apr-08 12:59 PM	

+="CN72422-A5"	"08/2542 - Project Management - 1599-1972 - C & B Service Panel 06-1599"	="Australian Customs and Border Protection Service"	24-Apr-08	="Professional procurement services"	01-Jul-08	30-Jun-10	1714110.00	="06/1599"	="Jacobs Australia"	24-Apr-08 01:03 PM	

+="CN72423-A1"	"07/2507 - Training Program - 1599-1947 - C & B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	24-Apr-08	="Business and corporate management consultation services"	11-Apr-08	30-Jun-10	149000.00	="06/1599"	="Centre for Customs and Excise Studies-University of Canberra"	24-Apr-08 01:11 PM	

+="CN72424"	"08/2622 - IT Contractor - 0717-0861 - ICT Panel 05/0717 (CPE004760-1)"	="Australian Customs and Border Protection Service"	24-Apr-08	="Temporary personnel services"	09-Apr-08	08-Apr-09	250000.00	=""	="APIS Consulting Group Pty Ltd"	24-Apr-08 01:15 PM	

+="CN72426"	" Managing agricultural program "	="Australian Centre for International Agricultural Research"	24-Apr-08	="Agricultural research services"	02-Jun-08	30-Jun-08	14630.00	=""	="Dr Douglas Gray"	24-Apr-08 01:47 PM	

+="CN72425"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0949 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	24-Apr-08	="Aerospace systems and components and equipment"	16-Apr-08	30-Apr-08	18433.00	=""	="Goodrich Control Systems PTY LTD"	24-Apr-08 01:47 PM	

+="CN72427"	"Technical Support for Citrix Software"	="Australian Federal Police"	24-Apr-08	="Technical support or help desk services"	18-Apr-08	17-Apr-09	31609.19	=""	="Citrix Systems Asia Pacific Pty Limited"	24-Apr-08 01:50 PM	

+="CN72428"	"Air fares"	="Australian Centre for International Agricultural Research"	24-Apr-08	="Travel agencies"	27-Mar-08	21-Apr-08	15531.72	=""	="AMERICAN EXPRES TRAVEL"	24-Apr-08 01:58 PM	

+="CN72433"	" Training in mangement "	="Australian Centre for International Agricultural Research"	24-Apr-08	="Agricultural research services"	14-Apr-08	18-Jul-08	22000.00	=""	="ASIAN INSTITUTE OF TECHNOLOGY"	24-Apr-08 02:15 PM	

+="CN72434"	"CM/DM Fix Pack 4 Implementation Services"	="Australian Taxation Office"	24-Apr-08	="Software maintenance and support"	01-May-08	30-Jun-08	108900.00	=""	="IBM Australia Ltd"	24-Apr-08 02:18 PM	

+="CN72435"	"Qty 15 Tyre Pneumatic for delivery to JLU - North Qld"	="Defence Materiel Organisation"	24-Apr-08	="Heavy truck tyres"	23-Apr-08	30-Jun-08	15681.60	=""	="Michelin Australia PTY LTD"	24-Apr-08 02:23 PM	

+="CN72436-A1"	"Produce a report on the effectiveness of the Murray-Darling Basin initiative in achieving its objectives and delievering outcomes for customers, communities and Government."	="Centrelink"	24-Apr-08	="Management advisory services"	16-Apr-08	31-Dec-08	79750.00	=""	="Australian Catholic University Ltd"	24-Apr-08 02:31 PM	

+="CN72438"	"VEHICULAR WINDOWS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Apr-08	27-Jul-08	242724.95	=""	="THALES AUSTRALIA"	24-Apr-08 02:39 PM	

+="CN72442"	"Personnel Recruitment"	="Australian Crime Commission"	24-Apr-08	="Recruitment services"	02-Jul-07	25-Feb-08	33199.40	=""	="Ford Kelly Executive Connection P/L"	24-Apr-08 03:12 PM	

+="CN72443-A1"	"Executive coaching program"	="Australian Federal Police"	24-Apr-08	="Human resource development"	15-Apr-08	30-Jun-08	12000.00	="30/2004"	="The Teleran Group"	24-Apr-08 03:13 PM	

+="CN72445-A2"	" Multicultural Translation and Broadcasting Services "	="Centrelink"	24-Apr-08	="Writing and translations"	10-Apr-08	17-Mar-09	270000.00	=""	="Special Broadcasting Services"	24-Apr-08 03:17 PM	

+="CN72446"	"Legal Costs"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	20000.00	="LSB01/2005"	="BLAKE DAWSON - ACT"	24-Apr-08 03:21 PM	

+="CN72447"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	24-Apr-08	="Building and Construction and Maintenance Services"	21-Apr-08	25-Jan-09	325775.09	="Pending project manager"	="KANE CONSTRUCTIONS"	24-Apr-08 03:21 PM	

+="CN72448"	"Insurance Premiums"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	40000.00	="Fin05/AMG002"	="JARDINE LLOYD THOMPSON PTY LTD"	24-Apr-08 03:22 PM	

+="CN72449"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	27-Jun-08	36531.00	="N/A"	="CPT GLOBAL LIMITED"	24-Apr-08 03:22 PM	

+="CN72450"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	18700.00	=""	="DEPT OF PARLIAMENTARY SERVICES"	24-Apr-08 03:22 PM	

+="CN72452"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-May-08	11500.00	="SON167"	="HAYS PERSONNEL SERVICES"	24-Apr-08 03:22 PM	

+="CN72453-A2"	" Training & Education Costs "	="Department of Finance and Deregulation"	24-Apr-08	="Education and Training Services"	26-Mar-08	25-Mar-12	1576650.00	="FIN07/AMG005"	="DELOITTE TOUCHE TOHMATSU - ACT"	24-Apr-08 03:22 PM	

+="CN72454"	"Business Advisory Services"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Apr-08	38500.00	="0000000000"	="PRICEWATERHOUSECOOPERS- 833468126"	24-Apr-08 03:22 PM	

+="CN72455"	"Business Advisory Services"	="Department of Finance and Deregulation"	24-Apr-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	30-Jun-08	66330.00	="00000000000000"	="OAKTON AA SERVICES PTY LTD"	24-Apr-08 03:22 PM	

+="CN72451-A2"	"Business advisor to the Managed Network Services bundle."	="Australian Taxation Office"	24-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	30-Jun-08	227436.00	="07.102"	="ITNewcom Pty Limited"	24-Apr-08 03:25 PM	

+="CN72456"	"Conference Facilitator"	="Australian Crime Commission"	24-Apr-08	="Business intelligence consulting services"	28-Mar-08	30-Jun-08	11990.00	=""	="Energetics P/L"	24-Apr-08 03:35 PM	

+="CN72457"	"motor vehicle spare parts"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	14056.82	=""	="Rover Australia"	24-Apr-08 03:38 PM	

+="CN72458"	"motor vehicle spare parts"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	15839.56	=""	="LANDROVER"	24-Apr-08 03:42 PM	

+="CN72459"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	20597.10	=""	="LAND ROVER AUSTRALIA"	24-Apr-08 03:44 PM	

+="CN72460"	"IT Systems Maintenance"	="Australian Crime Commission"	24-Apr-08	="Business function specific software"	01-Jul-07	30-Jun-08	202400.00	=""	="Aust Federal Police"	24-Apr-08 03:47 PM	

+="CN72461"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	12800.22	=""	="LANDROVER"	24-Apr-08 03:47 PM	

+="CN72462"	"FLAG, SIGNAL"	="Department of Defence"	24-Apr-08	="Flags or accessories"	24-Apr-08	08-Jul-08	22638.00	=""	="KAMS PRODUCTS"	24-Apr-08 03:48 PM	

+="CN72463"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	14632.86	=""	="LAND ROVER AUSTRALIA"	24-Apr-08 03:50 PM	

+="CN72465"	"PILLOWCASES, WHITE COTTON"	="Department of Defence"	24-Apr-08	="Pillow cases"	23-Apr-08	03-May-08	18500.00	=""	="HOSPITALITY TEXTILES"	24-Apr-08 03:52 PM	

+="CN72466"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Apr-08	22-May-08	35351.80	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	24-Apr-08 04:04 PM	

+="CN72467"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	28851.02	=""	="MERCEDES BENZ AUST"	24-Apr-08 04:07 PM	

+="CN72468"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	16218.16	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	24-Apr-08 04:24 PM	

+="CN72469"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	17458.43	=""	="VOLVO COMMERCIAL VEHICLES"	24-Apr-08 04:31 PM	

+="CN72470"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	35293.24	=""	="MERCEDES BENZ AUST"	24-Apr-08 04:37 PM	

+="CN72471"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	18597.70	=""	="MERCEDES BENZ AUST"	24-Apr-08 04:40 PM	

+="CN72472"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	24-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	24-May-08	14221.24	=""	="VOLVO COMMERCIAL VEHICLES"	24-Apr-08 04:44 PM	

+="CN72473"	"Office Equipment Leasing"	="Australian Crime Commission"	24-Apr-08	="Office Equipment and Accessories and Supplies"	01-Oct-07	30-Jun-08	15109.58	=""	="Lanier Australia P/L"	24-Apr-08 04:50 PM	

+="CN72475"	"CARTRIDGE INFLATOR"	="Defence Materiel Organisation"	24-Apr-08	="Lifeboats or liferafts"	24-Apr-08	05-Jun-08	10533.60	=""	="AERO & MILITARY"	24-Apr-08 04:58 PM 

--- a/admin/partialdata/22Aug2007to30Aug2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- /dev/null
+++ b/admin/partialdata/22Feb2008to26Feb2008valto.xls
@@ -1,1 +1,193 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN63202"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	11-Apr-09	14718.07	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 07:55 AM	

+="CN63203"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	11-Apr-09	16140.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 07:59 AM	

+="CN63204"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	29-Sep-08	14571.15	=""	="MILSPEC SERVICES PTY LTD"	22-Feb-08 08:11 AM	

+="CN63205"	"Flammable liquid storage cabinets."	="Department of Defence"	22-Feb-08	="Hazardous materials cabinets"	12-Feb-08	19-Mar-08	12249.60	=""	="FGP Company Pty Ltd"	22-Feb-08 08:22 AM	

+="CN63206"	" PROCUREMENT OF AIRCRAFT SPARES "	="Defence Materiel Organisation"	22-Feb-08	="Aircraft spars"	21-Feb-08	02-Dec-08	24574.92	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	22-Feb-08 08:28 AM	

+="CN63207"	" Motor Vehilce Spare Parts "	="Department of Defence"	22-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	19-Feb-08	19-Mar-08	11679.36	=""	="Volvo Commericial Vehicles"	22-Feb-08 08:35 AM	

+="CN63208"	"BIS/SAP Agency Seperation Training"	="Office of the Australian Building and Construction Commissioner (ABCC)"	22-Feb-08	="Business administration services"	03-Dec-07	03-Dec-07	34000.00	=""	="DEPARTMENT OF EMPLOYMENT AND WORKPLACE RELATIONS"	22-Feb-08 09:41 AM	

+="CN63210-A1"	"skylark operator training in country by civilian contractor"	="Defence Materiel Organisation"	22-Feb-08	="Ground support training systems"	22-Feb-08	28-Mar-08	41306.18	=""	="flight data systems pty ltd"	22-Feb-08 09:56 AM	

+="CN63213-A1"	"Provision for Financial Consulting Services"	="Comsuper"	22-Feb-08	="Business and corporate management consultation services"	18-Feb-08	18-Mar-08	40000.00	=""	="Analyctic Group"	22-Feb-08 10:05 AM	

+="CN63216"	"Furniture Conservation Project"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	20-Dec-07	28-Mar-08	39600.00	="2008/00878"	="Conservation Works Pty Ltd"	22-Feb-08 10:16 AM	

+="CN63218"	"Recruitment Services"	="Australian Taxation Office"	22-Feb-08	="Recruitment services"	07-Feb-08	30-Apr-08	65000.00	="06.042"	="DFP Recruitment Services Pty Ltd"	22-Feb-08 10:19 AM	

+="CN63219"	"Provision for the development of Web Services"	="Comsuper"	22-Feb-08	="Software"	02-Oct-07	30-May-08	19338.00	=""	="Link Web Services"	22-Feb-08 10:22 AM	

+="CN63220-A3"	"Project Management Services, National Aboriginal Islander Skills Development Association Capital Upgrade"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Building construction and support and maintenance and repair services"	13-Dec-07	30-Jun-11	500973.00	="07/484"	="Root Projects Australia Pty Ltd"	22-Feb-08 10:28 AM	

+="CN63221-A1"	"Property Lease - Kingston ACT"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	01-Jun-07	31-May-11	2085066.00	=""	="Intelligent Group Pty Ltd as Trustee for The Intelligent Trust"	22-Feb-08 10:29 AM	

+="CN63223"	" Maintenance and support for software products Jumar links- Allfusion Ervin and Advantage Gen, and Jumar Smartlinker "	="Australian Taxation Office"	22-Feb-08	="Software"	22-Dec-07	21-Jan-08	18950.00	=""	="Jumar Solutions Ltd"	22-Feb-08 10:52 AM	

+="CN63225"	"Provision and Installation of Bike Racks for Staff and Visitor Use"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Building and Construction and Maintenance Services"	06-Dec-07	30-Mar-08	37400.00	=""	="Picasso Builders Pty Ltd"	22-Feb-08 11:15 AM	

+="CN63226"	"motor vehicle spare parts"	="Department of Defence"	22-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-Feb-08	22-Mar-08	10410.60	=""	="Rover Australia"	22-Feb-08 11:16 AM	

+="CN63230"	"Exhibition Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	09-Jan-08	09-Jan-08	60000.01	="2007/00847"	="J.C&M.C Triggs"	22-Feb-08 11:36 AM	

+="CN63232"	"Production of a Replica of a Museum Art Piece"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	11-Jan-08	11-Jan-08	13500.00	="2007/00852"	="The British Museum Great Court Limited"	22-Feb-08 11:42 AM	

+="CN63233"	"Headset-microphone"	="Defence Materiel Organisation"	22-Feb-08	="Air transportation support systems and equipment"	15-Aug-07	25-Sep-07	50228.00	=""	="Anixter Australia Pty Ltd"	22-Feb-08 11:50 AM	

+="CN63236"	"Removal costs"	="Future Fund Management Agency"	22-Feb-08	="Relocation services"	12-Dec-07	05-Feb-08	21875.00	=""	="Crown Relocations"	22-Feb-08 11:51 AM	

+="CN63237"	"Advertising Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	17-Jan-08	30-Jun-08	16846.83	="2007/00858"	="HMA Blaze Pty Ltd"	22-Feb-08 11:53 AM	

+="CN63240"	" Website Exhibition Services "	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	21-Jan-08	22-Feb-08	29205.00	="2007/00861"	="Zoo Communications"	22-Feb-08 01:00 PM	

+="CN63241"	"Advertising Services"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	01-Jan-08	30-Jun-08	44222.93	="2007/00862"	="HMA Blaze Pty Limited"	22-Feb-08 01:06 PM	

+="CN63238"	"Valuation Services"	="Centrelink"	22-Feb-08	="Economic or financial evaluation of projects"	01-Jul-07	30-Jun-08	25000000.00	=""	="Australian Valuation Office"	22-Feb-08 01:09 PM	

+="CN63242"	"Provision of Security Contractor for Building Works"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	17-Jan-08	01-Feb-08	13827.00	="2007/00732"	="Promo Electrical Pty Ltd"	22-Feb-08 01:18 PM	

+="CN63244"	"Chairing Services for Conservation Project"	="Department of the Environment Water Heritage and the Arts"	22-Feb-08	="Public Utilities and Public Sector Related Services"	20-Dec-07	23-May-08	39600.00	="2008/00879"	="Conservation Works Pty Ltd"	22-Feb-08 01:26 PM	

+="CN63247-A1"	"Property Lease Yarralumla ACT"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	28-Jun-03	30-Jun-09	472702.00	=""	="Serif Kaya"	22-Feb-08 01:48 PM	

+="CN63254"	" SUPPLY OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	22-Feb-08	="Motor vehicles"	22-Feb-08	07-Mar-08	12869.34	=""	="LAND ROVER AUSTRALIA"	22-Feb-08 02:37 PM	

+="CN63257"	"Legal Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	50000.00	="N/A"	="CLAYTON UTZ - 404925"	22-Feb-08 02:45 PM	

+="CN63258"	"Contractor Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	67400.00	="n/a"	="HAYS PERSONNEL SERVICES"	22-Feb-08 02:45 PM	

+="CN63259"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Apr-08	12009.20	=""	="RYDGES CANBERRA"	22-Feb-08 02:46 PM	

+="CN63260"	"Finance Services"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	17-Mar-08	250000.00	="FIN07/FMG002"	="MERCER (AUSTRALIA) PTY LTD"	22-Feb-08 02:46 PM	

+="CN63261"	"Publishing & Printing Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Editorial and Design and Graphic and Fine Art Services"	21-Feb-08	31-Mar-08	14500.00	=""	="ZOO"	22-Feb-08 02:46 PM	

+="CN63262"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	28-Mar-08	18250.00	="TBA"	="DEONVALE CONSULTING SERVICES"	22-Feb-08 02:46 PM	

+="CN63263"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	13250.00	="TBA"	="SPHERE CONSULTING PTY LTD"	22-Feb-08 02:46 PM	

+="CN63264"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	28-Mar-08	13500.00	="TBA"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	22-Feb-08 02:46 PM	

+="CN63265"	"Security Costs"	="Department of Finance and Deregulation"	22-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-May-08	143316.88	="N/A"	="OAKTON AA SERVICES PTY LTD"	22-Feb-08 02:47 PM	

+="CN63266-A2"	"Lease at Sunshine, Victoria."	="Department of Human Services"	22-Feb-08	="Lease and rental of property or building"	01-Feb-08	31-Jul-13	2448715.01	=""	="Australia THL Investment Corp Pty Ltd"	22-Feb-08 02:51 PM	

+="CN63267-A3"	"Property lease Perth WA"	="Australian Federal Police"	22-Feb-08	="Lease and rental of property or building"	01-Feb-05	31-Aug-08	310015.00	=""	="Western Australia Police Service"	22-Feb-08 02:54 PM	

+="CN63270"	"qty 300 battery chargers; qty 512 cordless handset; used for military communications."	="Defence Materiel Organisation"	22-Feb-08	="Phone handsets"	22-Feb-08	12-Apr-08	344410.00	=""	="INTEGRATED WIRELESS PTY LTD"	22-Feb-08 03:08 PM	

+="CN63275-A3"	" Software licenses, support and maintenance "	="Office of the Director of Public Prosecutions"	22-Feb-08	="Software"	05-Mar-07	31-Mar-12	76654.74	=""	="WEBSecure"	22-Feb-08 03:19 PM	

+="CN63280"	"GuyReels"	="Defence Materiel Organisation"	22-Feb-08	="Reel"	22-Feb-08	28-Apr-08	31031.00	=""	="Eylex Pty Ltd"	22-Feb-08 03:33 PM	

+="CN63281-A1"	"Provision of executive coaching"	="Australian Federal Police"	22-Feb-08	="Assessment resource books"	22-Feb-08	30-Jun-08	147635.00	="APS Commission 2005/014"	="The Teleran Group"	22-Feb-08 03:42 PM	

+="CN63282"	"NSN 1560-00-949-6066, Duct Assemblies"	="Defence Materiel Organisation"	22-Feb-08	="Aerospace systems and components and equipment"	22-Feb-08	14-Apr-08	13145.68	=""	="Milspec Services Pty Ltd"	22-Feb-08 04:52 PM	

+="CN63283-A3"	"Provision for Security Guarding for DIAC NatO and Regional Offices"	="Department of Immigration and Citizenship"	22-Feb-08	="Security guard services"	15-Mar-05	15-Mar-10	11091771.00	=""	="MSS Security Pty Ltd"	22-Feb-08 04:55 PM	

+="CN63284-A1"	"Flyers Clothing"	="Defence Materiel Organisation"	24-Feb-08	="Clothing"	11-Oct-07	04-Apr-08	17358.33	="2480018"	="Walkabout Leisurewear Pty Ltd"	24-Feb-08 04:05 PM	

+="CN63285"	"Various M113AS Upgrade parts"	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	22-Feb-08	22-May-08	65210.68	=""	="HIAB AUSTRALIA PTY LTD"	25-Feb-08 07:58 AM	

+="CN63286"	" Various M113AS Upgrade Parts "	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	22-Feb-08	16-May-08	12303.70	=""	="HIAB AUSTRALIA PTY LTD"	25-Feb-08 08:04 AM	

+="CN63287"	"Various M113AS Upgrade Parts"	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	22-Feb-08	06-Jun-08	42634.06	=""	="TENIX DEFENCE PTY LTD LAND DIV"	25-Feb-08 08:09 AM	

+="CN63288"	" Windproof Camouflage Cloth "	="Defence Materiel Organisation"	25-Feb-08	="Camouflage cloth"	10-Oct-07	17-Mar-08	585860.00	="2480012"	="WL Gore and Associates"	25-Feb-08 08:15 AM	

+="CN63289"	"Various M113AS Upgrade Parts"	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	22-Feb-08	16-Jun-08	34198.65	=""	="TENIX DEFENCE PTY LTD LAND DIV"	25-Feb-08 08:18 AM	

+="CN63291"	"Connector Recepticale ASLAV"	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	25-Feb-08	29-Jul-08	34155.55	=""	="GENERAL DYNAMICS LAND SYSTEMS"	25-Feb-08 08:50 AM	

+="CN63292"	"Frame Assy Radiator M113 AS Upgrade Parts"	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	25-Feb-08	21-Apr-08	45402.50	=""	="TRIMCAST PTY LTD"	25-Feb-08 09:31 AM	

+="CN63293"	"S21 Gazettal of AAO's"	="Department of the Prime Minister and Cabinet"	25-Feb-08	="Business administration services"	01-Feb-08	02-Mar-08	11400.00	=""	="Attorney Generals Fept Clth CPM"	25-Feb-08 09:34 AM	

+="CN63294"	" Flags Various M113AS Upgrade Parts "	="Department of Defence"	25-Feb-08	="Armoured fighting vehicles"	25-Feb-08	05-May-08	18480.00	=""	="IVOR EVANS FLAGS (AUST) PTY LTD"	25-Feb-08 09:35 AM	

+="CN63295"	"Security Fitout"	="Department of the Prime Minister and Cabinet"	25-Feb-08	="Security systems services"	12-Dec-07	28-Feb-08	29800.00	=""	="MDA Interiors Pty Ltd"	25-Feb-08 09:48 AM	

+="CN63296"	"Supply and install of Cabling"	="Australian Federal Police"	25-Feb-08	="Installation cables"	01-Jan-08	31-Dec-08	16659.50	="37-2005"	="Absolute Cabling Systems Pty Ltd"	25-Feb-08 09:54 AM	

+="CN63297"	" Building Services "	="Department of the Prime Minister and Cabinet"	25-Feb-08	="Building construction and support and maintenance and repair services"	01-Dec-07	29-Feb-08	36200.00	=""	="AVS-ELLI"	25-Feb-08 09:56 AM	

+="CN63298"	"Supply and Install of Computer Cabling"	="Australian Federal Police"	25-Feb-08	="Installation cables"	01-Jan-08	31-Dec-08	57339.70	="37/2005"	="Absolute Cabling Systems Pty Ltd"	25-Feb-08 10:00 AM	

+="CN63299"	"Supply and install of computer cabling"	="Australian Federal Police"	25-Feb-08	="Installation cables"	01-Jan-08	31-Dec-08	19356.04	="37/2005"	="Absolute Cabling Systems Pty Ltd"	25-Feb-08 10:05 AM	

+="CN63300"	"Contract servces for IT Engineering Consultant"	="Family Court of Australia"	25-Feb-08	="Temporary information technology networking specialists"	26-Feb-08	09-May-08	29700.00	=""	="Bridge IT Engineering Pty Ltd"	25-Feb-08 10:26 AM	

+="CN63303"	"IT HARDWARE"	="Department of Human Services"	25-Feb-08	="Communications Devices and Accessories"	27-Jun-08	27-Jun-08	260000.00	=""	="ASG GROUP LIMITED"	25-Feb-08 10:52 AM	

+="CN63302"	"Communications"	="Department of Human Services"	25-Feb-08	="Communications Devices and Accessories"	30-Jun-08	30-Jun-08	50000.00	=""	="OPTUS BILLING SERVICESTY LTD"	25-Feb-08 10:53 AM	

+="CN63304-A1"	" Printing of: NAT71454-11.2007 (JS 9183) - 'How your self managed super fund is regulated'  Qty: 75,000 "	="Australian Taxation Office"	25-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Feb-08	04-Mar-08	21132.10	=""	="Paragon Printers"	25-Feb-08 11:49 AM	

+="CN63306"	"Provision of Funding for the National Action Plan to Build Social Cohesion, Harmony and Security "	="Department of Immigration and Citizenship"	25-Feb-08	="Civic organisations and associations and movements"	14-Dec-07	30-Jun-08	45000.00	=""	="Multicultural Council of the Northern Territory Incorporated"	25-Feb-08 12:11 PM	

+="CN63308"	"Provision for Funding of the National Action Plan to Build on Social Cohesion, Harmony and Security"	="Department of Immigration and Citizenship"	25-Feb-08	="Civic organisations and associations and movements"	11-Dec-07	30-Jun-08	18500.00	=""	="Horn of Africa Relief and Development Agency of Australia"	25-Feb-08 12:17 PM	

+="CN63310"	"Service Contract 2162251Annual Renewal (19/02/2008 to 18/02/2009)"	="Department of Veterans' Affairs"	25-Feb-08	="Computer services"	19-Feb-08	18-Feb-09	54634.00	=""	="Oracle Corporation Australia Pty Ltd"	25-Feb-08 01:19 PM	

+="CN63311"	"IMU Contract Programmer: IMU-ICT113 Official Order IMU2008/003"	="Department of Veterans' Affairs"	25-Feb-08	="Computer services"	04-Feb-08	01-Aug-08	61776.00	=""	="Reitan Holdings Pty Ltd"	25-Feb-08 01:20 PM	

+="CN63312"	"IMU Contract Programmer: IMU-ICT048 Official Order IMU2008/004"	="Department of Veterans' Affairs"	25-Feb-08	="Computer services"	01-Feb-08	30-Jan-09	227656.00	=""	="Ambit Group Pty Ltd (Trading as Ambit IT&T Recruitment Pty Ltd)"	25-Feb-08 01:20 PM	

+="CN63314-A1"	"Security Guarding of Lovett Tower (extension to CaIRO 107296)"	="Department of Veterans' Affairs"	25-Feb-08	="Security surveillance and detection"	31-Aug-05	30-Jun-08	85050.00	=""	="Chubb Security Australia"	25-Feb-08 01:20 PM	

+="CN63316"	"Provision of clinical casework & counselling services for VVCS Newcastle"	="Department of Veterans' Affairs"	25-Feb-08	="Medical practice"	17-Jan-08	28-Apr-08	24750.00	=""	="Entity Solutions Pty Ltd"	25-Feb-08 01:20 PM	

+="CN63317"	"Provision of Community Support Services.  Extension to Agreement No:  206196 to allow for finalisation of Tender Evaluation process and Christmas Shutdown."	="Department of Veterans' Affairs"	25-Feb-08	="Information services"	01-Dec-07	31-Jan-08	11162.00	=""	="Bega Valley Meals on Wheels Coop Inc"	25-Feb-08 01:20 PM	

+="CN63318"	"Provision of Community Support Services."	="Department of Veterans' Affairs"	25-Feb-08	="Information services"	01-Feb-08	31-Jan-10	97812.00	=""	="Bega Valley Meals on Wheels Coop Inc"	25-Feb-08 01:20 PM	

+="CN63320-A1"	"Service contract for scanning Electron Microscope JSM-6480LA"	="Australian Federal Police"	25-Feb-08	="Viewing and observing instruments and accessories"	21-Dec-07	20-Dec-09	862299.00	=""	="JEOL (Australasia) Pty Ltd"	25-Feb-08 01:48 PM	

+="CN63321"	"Licence agreement - annual software update licence and support"	="Family Court of Australia"	25-Feb-08	="Proprietary or licensed systems maintenance or support"	16-Jun-07	15-Jun-08	430091.11	=""	="Oracle Corporation Australia Pty Ltd"	25-Feb-08 02:16 PM	

+="CN63324"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	25-Feb-08	="Aircraft"	11-Feb-08	14-Feb-08	20872.87	=""	="SIKORSKY AIRCRAFT AUST LTD"	25-Feb-08 02:19 PM	

+="CN63322"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Feb-08	25-Mar-08	34314.05	=""	="MERCEDES-BENZ"	25-Feb-08 02:20 PM	

+="CN63326"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Feb-08	25-Mar-08	26261.08	=""	="MERCEDES-BENZ"	25-Feb-08 02:35 PM	

+="CN63328"	"rEPAIR OF aIRCRAFT pARTS"	="Defence Materiel Organisation"	25-Feb-08	="Aircraft"	11-Feb-08	20-Feb-08	15255.17	=""	="sikorsky aircraft aust ltd"	25-Feb-08 02:49 PM	

+="CN63330"	"York Park Oak Plantation - Master Plan & Design Services"	="National Capital Authority"	25-Feb-08	="Land use planning"	12-Oct-07	30-Jun-08	81710.00	=""	="Redbox Design Group Pty Ltd"	25-Feb-08 02:56 PM	

+="CN63332"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	25-Feb-08	="Medical health associations"	20-Feb-08	01-Apr-08	15024.65	=""	="SMITH & NEPHEW AUSTRALIA P/L"	25-Feb-08 03:00 PM	

+="CN63333"	" Repair Of Aircraft parts "	="Defence Materiel Organisation"	25-Feb-08	="Aircraft"	19-Feb-08	10-Mar-08	42697.83	=""	="sikorsky aircraft australia ltd"	25-Feb-08 03:10 PM	

+="CN63331"	"Maintenence renewal - software programs"	="Family Court of Australia"	25-Feb-08	="Proprietary or licensed systems maintenance or support"	01-Sep-07	31-Aug-08	71870.70	=""	="Novell"	25-Feb-08 03:17 PM	

+="CN63334"	"Repair of Aircraft parts"	="Defence Materiel Organisation"	25-Feb-08	="Aircraft"	12-Feb-08	15-Feb-08	26136.00	=""	="sikorsky aircraft australia ltd"	25-Feb-08 03:19 PM	

+="CN63335"	"Fabrication and fit new nylon rubbering strips to vessel"	="Department of Defence"	25-Feb-08	="Vessel docking services"	25-Feb-08	25-Feb-08	21190.19	=""	="Maritine Engineering Services Pty Ltd"	25-Feb-08 03:22 PM	

+="CN63337"	"IRCA accredited lead auditor training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Vocational training"	14-Jan-08	25-Jan-08	48494.11	=""	="Gray Management Systems"	25-Feb-08 04:11 PM	

+="CN63338"	"The development of a model TSP"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Transport operations"	08-Jan-08	31-Jan-08	25740.00	=""	="Intelligent Risks Pty Ltd"	25-Feb-08 04:11 PM	

+="CN63339"	"Reponse and recovery discussion exercises"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Security and personal safety"	20-Nov-07	30-Nov-08	81180.00	=""	="The Trustee for The Jim Truscott Fa"	25-Feb-08 04:11 PM	

+="CN63340"	"Project Manager"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	29-Jan-08	30-Jun-08	106480.00	="TRS06/017"	="DATA#3 LTD"	25-Feb-08 04:11 PM	

+="CN63341"	".Net Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	01-Feb-08	30-Jun-08	70000.00	="T2004/0699"	="Rosslogic Pty Ltd"	25-Feb-08 04:11 PM	

+="CN63342"	"Roads to Recovery Audits"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Accounting and auditing"	11-Dec-07	30-Jun-08	200000.00	="SOT2007/0004"	="WALTER & TURNBULL  PTY LTD"	25-Feb-08 04:11 PM	

+="CN63343"	"Engaged to assist with TSP review"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Community and social services"	02-Jan-08	28-Mar-08	38500.00	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	25-Feb-08 04:12 PM	

+="CN63344"	"ITC Sourcing Strategy"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	04-Feb-08	14-Mar-08	66000.00	=""	="ITNEWCOM PTY LTD"	25-Feb-08 04:12 PM	

+="CN63345"	"Marin Investigation: Support for NTSC"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	31-Aug-07	21-Sep-07	15000.00	=""	="Kit Filor"	25-Feb-08 04:12 PM	

+="CN63336"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	25-Feb-08	25-Mar-08	23063.70	=""	="Rover Australia"	25-Feb-08 04:12 PM	

+="CN63346"	"Temporary Staff Replacement"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Community and social services"	18-Feb-08	30-Sep-08	61600.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	25-Feb-08 04:12 PM	

+="CN63347"	"delivering assessment training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Accounting and auditing"	07-Feb-08	07-Apr-08	60375.00	="TRS06/037"	="McGrath Nicol Advisory Partnership"	25-Feb-08 04:12 PM	

+="CN63348"	"Symantec Software Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Software"	27-Dec-07	30-Jun-09	68688.94	=""	="Zallcom Pty Ltd"	25-Feb-08 04:13 PM	

+="CN63349"	"Council of Australian Government Working Group on Infrastructure Secretariat"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	14-Jan-08	30-Apr-08	75000.00	=""	="OSTACUFF PTY LTD"	25-Feb-08 04:13 PM	

+="CN63350"	"legal services"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Legal services"	09-Jan-08	30-Jun-09	28879.86	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	25-Feb-08 04:13 PM	

+="CN63351"	"Mobile Phones 27/12 to 26/01"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Information services"	31-Jan-08	30-Jun-08	11097.89	="TRS04/019"	="OPTUS BILLING SERVICES PTY LTD"	25-Feb-08 04:13 PM	

+="CN63352"	"Extended Mapping Project - security zones and port"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Marine transport"	04-Feb-08	30-Jun-10	628099.98	=""	="GEOSCIENCE AUSTRALIA"	25-Feb-08 04:14 PM	

+="CN63353"	"APMS Projects User Documentation, Trainining & Manuals"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	18-Nov-07	31-Jan-08	75000.00	="TRS06/017"	="Total Learn Pty Ltd"	25-Feb-08 04:14 PM	

+="CN63354"	"TEAMSITE TRAINING"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	18-Feb-08	29-Feb-08	11000.00	=""	="INTERWOVEN INC"	25-Feb-08 04:14 PM	

+="CN63355"	"Server Engineer"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	18-Feb-08	30-Jun-08	61380.00	="T2004/0699"	="Frontier Group"	25-Feb-08 04:14 PM	

+="CN63356"	"Supply and installation of freight handling conveyor equipment"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Transportation components and systems"	08-Feb-08	08-Aug-08	382951.80	=""	="BCS Conveyor Solutions Pty Ltd"	25-Feb-08 04:14 PM	

+="CN63357"	"Internal audit investigation of credit card usage"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Accounting and auditing"	01-Dec-07	29-Feb-08	45188.00	="SOT2007/0004"	="KPMG AUSTRALIA"	25-Feb-08 04:14 PM	

+="CN63358"	"Software testing - TNIP software"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Computer services"	07-May-07	29-Jun-07	25000.00	=""	="Bryan Beudeker T/as FrontFoot Pty L"	25-Feb-08 04:14 PM	

+="CN63359"	"Additional Storage and Redundancy"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Computer Equipment and Accessories"	13-Feb-08	13-Mar-08	41474.70	="TRS08/034"	="CORPORATE EXPRESS"	25-Feb-08 04:15 PM	

+="CN63360"	"Legal Services Expenditure 6847"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Legal services"	11-Aug-06	30-Jun-09	39006.22	="TRS06/175"	="MINTER ELLISON LAWYERS"	25-Feb-08 04:15 PM	

+="CN63361"	"Temporary staff placement"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Public administration and finance services"	15-Feb-08	20-Mar-08	11880.00	="TRS08/040"	="KOWALSKI RECRUITMENT PTY LTD"	25-Feb-08 04:15 PM	

+="CN63362"	"Qld Council Amalgamation Plebiscites"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Feb-08	="Management advisory services"	25-Jan-08	25-Jan-08	1696073.01	=""	="AUSTRALIAN ELECTORAL COMMISSION (AE"	25-Feb-08 04:15 PM	

+="CN63364"	"Professional Legal Fees"	="Office of the Australian Building and Construction Commissioner (ABCC)"	25-Feb-08	="Business law services"	31-Jul-07	24-Aug-07	24503.08	=""	="MINTER ELLISON LAWYERS"	25-Feb-08 04:57 PM	

+="CN63365"	"Electricity"	="Office of the Australian Building and Construction Commissioner (ABCC)"	25-Feb-08	="Business administration services"	01-Jul-07	31-Oct-07	10482.62	=""	="UNITED GROUP SERVICES PTY LTD"	25-Feb-08 05:03 PM	

+="CN63366"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1752 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Feb-08	="Aerospace systems and components and equipment"	25-Feb-08	31-Mar-08	49670.05	=""	="Goodrich Control Systems PTY LTD"	25-Feb-08 06:03 PM	

+="CN63367"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0694 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Feb-08	="Aerospace systems and components and equipment"	25-Feb-08	31-Mar-08	49713.15	=""	="Goodrich Control Systems PTY LTD"	25-Feb-08 06:07 PM	

+="CN63368"	"The provision of local market entry, channel marketing & export advisory services in Lima"	="Austrade"	26-Feb-08	="Human resources services"	01-Jul-07	30-Jun-08	50000.00	=""	="Carlos Castellanos Lopez"	26-Feb-08 09:04 AM	

+="CN63369"	"2008 National Restaurant Association Show"	="Austrade"	26-Feb-08	="Marketing and distribution"	12-Feb-08	16-May-08	84920.83	=""	="Facet International Marketing"	26-Feb-08 09:04 AM	

+="CN63370"	"Electricity services"	="Austrade"	26-Feb-08	="Electric utilities"	15-Feb-08	30-Jun-08	33000.00	=""	="Energy Australia"	26-Feb-08 09:04 AM	

+="CN63371"	"Domestic calls Feb 08"	="Austrade"	26-Feb-08	="Electric utilities"	24-Feb-08	24-Feb-08	10522.68	=""	="Telstra"	26-Feb-08 09:04 AM	

+="CN63372"	"Advertising in Australian  Anthill Magazine 1/10/07 & 1/12/07"	="Austrade"	26-Feb-08	="Marketing and distribution"	01-Oct-07	01-Dec-07	11000.00	=""	="HMA Blaze"	26-Feb-08 09:04 AM	

+="CN63373"	"Development  and ongoing management of image library"	="Austrade"	26-Feb-08	="Computer services"	04-Feb-08	30-Jun-09	62700.00	=""	="Media Equation"	26-Feb-08 09:04 AM	

+="CN63374"	"Development of user interface prototype for MOSS migration"	="Austrade"	26-Feb-08	="Computer services"	01-Feb-08	31-Mar-08	18480.00	=""	="Different Solutions Pty Ltd"	26-Feb-08 09:05 AM	

+="CN63375"	"Design and Making of the booth of the  Australian Theme Exhibition in Shenzhen"	="Austrade"	26-Feb-08	="Marketing and distribution"	15-May-07	20-May-07	27595.00	=""	="Shengdian Advertisement Planning & Design Co.Pty"	26-Feb-08 09:05 AM	

+="CN63376"	"Breeze training  and share point techincal support"	="Austrade"	26-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	44000.00	=""	="APP Corporation Pty Limited"	26-Feb-08 09:05 AM	

+="CN63377"	"Migration to Moss 2007,  implementation strategies andperformance support"	="Austrade"	26-Feb-08	="Computer services"	22-Jun-07	31-Dec-08	66000.00	=""	="Clicks IT Recruitment"	26-Feb-08 09:05 AM	

+="CN63378"	"Office refurbishement of Bangkok premises"	="Austrade"	26-Feb-08	="General building construction"	05-Jun-07	31-Aug-07	230000.00	=""	="United Group Services Pty Ltd"	26-Feb-08 09:05 AM	

+="CN63379"	"Marketing support services"	="Austrade"	26-Feb-08	="Computer services"	03-Sep-07	24-Nov-07	27500.00	=""	="Hudson Global Resources (Aust) Pty Limited"	26-Feb-08 09:05 AM	

+="CN63380"	"Project management of Connect program"	="Austrade"	26-Feb-08	="Computer services"	01-Jan-08	30-Mar-08	93900.00	=""	="Sebrec Pty Limited"	26-Feb-08 09:05 AM	

+="CN63381"	"Facilitation of strategic planning for the Connect project"	="Austrade"	26-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	13200.00	=""	="Waterfield Consulting"	26-Feb-08 09:05 AM	

+="CN63382"	"Provision of market enty strategies for Australian business with respect to  India"	="Austrade"	26-Feb-08	="Computer services"	01-Aug-07	10-Aug-08	24872.00	=""	="International Market Assessment India Private Limited"	26-Feb-08 09:06 AM	

+="CN63383"	"Licence renewal for Ibisworld Business Information service"	="Austrade"	26-Feb-08	="Computer services"	24-Jun-07	23-Jun-08	95720.00	=""	="Ibisworld Pty Ltd"	26-Feb-08 09:06 AM	

+="CN63384-A1"	" SSA Name- 3 Identity Matching Software License for development, Production and DR hardware configurations. "	="Australian Taxation Office"	26-Feb-08	="License management software"	26-Feb-08	25-Feb-09	124932.50	=""	="Identity Systems"	26-Feb-08 09:16 AM	

+="CN63385"	" Close Reconnaisance clothing  "	="Defence Materiel Organisation"	26-Feb-08	="Clothing"	01-Nov-07	30-Apr-08	360657.00	="2470089"	="Hellweg International"	26-Feb-08 10:11 AM	

+="CN63388"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	26-Feb-08	="Medical health associations"	20-Feb-08	01-Apr-08	64515.31	=""	="SMITH & NEPHEW AUSTRALIA P/L"	26-Feb-08 10:48 AM	

+="CN63389"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	18000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63390"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	26000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63391"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	15000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63392"	"Telephony Hardware"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-08	30-Jun-08	198000.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	26-Feb-08 10:58 AM	

+="CN63393"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	34000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:58 AM	

+="CN63394"	"MQ05BAU 8 attendees"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	05-Feb-08	06-Mar-08	21450.00	=""	="IBM AUSTRALIA LIMITED"	26-Feb-08 10:58 AM	

+="CN63395"	"Career Development Assessment Centre 93 2 Attendees"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	18-Feb-08	02-Mar-08	23650.00	=""	="Australian Public Service"	26-Feb-08 10:58 AM	

+="CN63397"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	26-Feb-08	="Medical staff isolation or surgical masks"	18-Feb-08	29-Feb-08	22550.00	=""	="MidMed"	26-Feb-08 11:06 AM	

+="CN63398"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	26-Feb-08	="Medical health associations"	20-Feb-08	01-Apr-08	21461.33	=""	="TYCO HEATHCARE P/L"	26-Feb-08 11:07 AM	

+="CN63399"	"WORKSHOP"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	17-Feb-08	21-Feb-08	24112.00	=""	="PEIAT CONSULTING PTY LTD"	26-Feb-08 11:09 AM	

+="CN63401"	"OFFICE EQUIP"	="Australian Taxation Office"	26-Feb-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	25-Feb-08	114262.01	=""	="UNITED GROUP  PTY LTD"	26-Feb-08 11:09 AM	

+="CN63403"	"CONFERENCE"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	25-Feb-08	25-Feb-08	27350.00	=""	="RACV CLUB LTD"	26-Feb-08 11:10 AM	

+="CN63400"	"Data Purchase"	="Australian Fair Pay Commission"	26-Feb-08	="Surface data logging units"	21-Jan-08	22-Feb-08	36870.00	=""	="The University of Sydney"	26-Feb-08 11:10 AM	

+="CN63402"	"MC-5 Parachute, NSN 1670-01-367-0304, Qty 90"	="Defence Materiel Organisation"	26-Feb-08	="Parachutes"	26-Feb-08	05-Jan-09	1138995.00	=""	="RFD Australia Pty Ltd"	26-Feb-08 11:10 AM	

+="CN63404"	" Pharmaceuticals For ADF "	="Defence Materiel Organisation"	26-Feb-08	="Drugs and Pharmaceutical Products"	15-Feb-08	28-Mar-08	31048.56	=""	="Symbion Pharmacy Services"	26-Feb-08 11:11 AM	

+="CN63405"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	25-Feb-08	11506.44	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63406"	"SEARCHES"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	25-Feb-08	12829.14	=""	="ESPREON PROPERTY SERVICES"	26-Feb-08 11:13 AM	

+="CN63407"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	25-Feb-08	20002.77	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63408"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	25-Feb-08	11431.20	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63409"	"INTERNET"	="Australian Taxation Office"	26-Feb-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	19-Feb-08	37989.37	=""	="TELSTRA"	26-Feb-08 11:13 AM	

+="CN63410"	"VEHICLE REPAIRS"	="Department of Defence"	26-Feb-08	="Motor vehicles"	26-Feb-08	26-Mar-08	13597.33	=""	="RGM"	26-Feb-08 11:15 AM	

+="CN63411"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	23-Jan-08	29-Jul-08	179150.40	=""	="COLLECTIVE RESOURCES IT RECRUITMENT"	26-Feb-08 11:16 AM	

+="CN63412"	"IT Contractors"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	18-Feb-08	28-Feb-09	337725.52	=""	="TALENT INTERNATIONAL"	26-Feb-08 11:21 AM	

+="CN63413"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	06-Aug-07	05-Feb-08	113340.00	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Feb-08 11:21 AM	

+="CN63414"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	25-Feb-08	31-Mar-08	212256.00	=""	="CANDLE AUSTRALIA PTY LTD"	26-Feb-08 11:22 AM	

+="CN63415"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-08	20-Mar-09	205920.00	=""	="COMPAS PTY LTD"	26-Feb-08 11:22 AM	

+="CN63417"	"150 x Genesys outbound licences"	="Australian Taxation Office"	26-Feb-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	3892976.59	=""	="NEC AUSTRALIA PTY LTD"	26-Feb-08 11:22 AM	

+="CN63418-A1"	"Provision of all base building services for the Musuem's rotating theatre refurbishment project"	="National Museum of Australia"	26-Feb-08	="General building construction"	15-Oct-07	29-Feb-08	996211.00	=""	="Haden Engineering"	26-Feb-08 11:25 AM	

+="CN63419"	"Printing of NAT11032-07.2007 (JS10589) - Roles and responsibilities of trustees.  Qty: 15,000"	="Australian Taxation Office"	26-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Feb-08	04-Mar-08	11961.40	=""	="Paragon Printers"	26-Feb-08 11:32 AM	

+="CN63420-A1"	" VEHICLE REPAIR "	="Department of Defence"	26-Feb-08	="Motor vehicles"	26-Feb-08	26-Mar-08	22146.46	=""	="RGM"	26-Feb-08 11:41 AM	

+="CN63421"	" NSN 1560-00-866-6690, Nacelle Ducts "	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	25-Feb-08	07-Jan-09	15359.29	=""	="Milspec Services Pty Ltd"	26-Feb-08 11:50 AM	

+="CN63424"	"Annual maintenance of iCMS software 14/03/08 - 13/03/09"	="Australian Taxation Office"	26-Feb-08	="Software"	14-Mar-08	13-Mar-09	19184.00	=""	="BIS Expense Management"	26-Feb-08 01:01 PM	

+="CN63427"	" Positions Vacant Advertising "	="Office of the Australian Building and Construction Commissioner (ABCC)"	26-Feb-08	="Business administration services"	11-Jan-08	12-Jan-08	12545.46	=""	="HMA BLAZE PTY LTD"	26-Feb-08 02:45 PM	

+="CN63428"	"motor vehicle spare parts"	="Department of Defence"	26-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Feb-08	26-Mar-08	17938.04	=""	="Rover Australia"	26-Feb-08 03:20 PM	

+="CN63432"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	26-Feb-08	="Motor vehicles"	26-Feb-08	11-Mar-08	10987.06	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	26-Feb-08 03:48 PM	

+="CN63440"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Internet services"	01-Jul-07	30-Jun-08	12527.51	=""	="Telstra"	26-Feb-08 04:06 PM	

+="CN63441"	"TOWER SOFTWARE"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Files"	11-Jan-08	11-Jan-09	11279.54	="NA"	="Tower Software"	26-Feb-08 04:06 PM	

+="CN63442"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computer servers"	23-Jul-07	30-Jun-08	10032.00	=""	="DELL COMPUTER P/L"	26-Feb-08 04:06 PM	

+="CN63443"	"OAKTON SERVICES P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computers"	31-Jan-08	31-Jan-09	18172.00	="DIRECT"	="OAKTON SERVICES P/L"	26-Feb-08 04:06 PM	

+="CN63444"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14559.37	=""	="Tru Energy"	26-Feb-08 04:06 PM	

+="CN63445"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	26-Feb-08 04:07 PM	

+="CN63446"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	26-Feb-08 04:07 PM	

+="CN63447"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	29537.00	=""	="Honeywell"	26-Feb-08 04:07 PM	

+="CN63448"	"Dr S A Harbison"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Business intelligence consulting services"	10-Aug-07	10-Aug-07	10907.50	=""	="S A Harbison CB"	26-Feb-08 04:07 PM	

+="CN63449"	"RJB CONSTRUCTION"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	11-Jan-09	15157.49	="OPEN"	="RJB CONSTRUCTION"	26-Feb-08 04:07 PM	

+="CN63450"	"Australasian Jet"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Chartered aeroplane travel"	20-Nov-07	21-Nov-07	15235.00	=""	="Australasian Jet"	26-Feb-08 04:07 PM	

+="CN63451"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Meteorology"	24-Aug-07	24-Aug-08	46819.97	="NA"	="Bureau of Meteorology"	26-Feb-08 04:07 PM	

+="CN63452"	"CORPORATE NETWORK INTEGRATION"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computer servers"	31-Jan-08	31-Jan-09	30625.00	="DIRECT"	="CORPORATE NETWORK INTEGRATION"	26-Feb-08 04:07 PM	

+="CN63453"	"Product supplied under a contingent arrangement"	="National Blood Authority"	26-Feb-08	="Healthcare Services"	07-Nov-07	07-Nov-07	299228.00	=""	="Octapharma Australia Pty Ltd"	26-Feb-08 04:14 PM	

+="CN63454"	"Recruitment Services"	="Australian Taxation Office"	26-Feb-08	="Recruitment services"	05-Dec-07	31-Jan-08	12000.00	="06.042"	="Hays Specialist Recruitment (Australia) Pty Limited"	26-Feb-08 04:24 PM	

+="CN63455"	"Recruitment Services"	="Australian Taxation Office"	26-Feb-08	="Recruitment services"	11-Jan-08	03-Mar-08	14000.00	="06.042"	="Hays Specialist Recruitment (Australia) Pty Limited"	26-Feb-08 04:41 PM	

+="CN63456"	"DA 63 - Environmental Study"	="National Capital Authority"	26-Feb-08	="Land use planning"	11-Feb-08	07-Mar-08	25465.00	=""	="NGH Environmental"	26-Feb-08 04:57 PM	

+="CN63457"	"NSN 5330-00-245-2741, Nonmetallic Special Shaped Section Seals"	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	26-Feb-08	10-Dec-08	17899.20	=""	="Milspec Services Pty Ltd"	26-Feb-08 06:58 PM	

+="CN63458"	"NSN 1560-00-808-0165 Flap Bolt Assemblies"	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	26-Feb-08	10-Dec-08	34834.80	=""	="Milspec Services Pty Ltd"	26-Feb-08 07:28 PM 

--- /dev/null
+++ b/admin/partialdata/22May2008to24May2008valto.xls
@@ -1,1 +1,436 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN85495"	"Lease at 70 Robert Street Wallsend NSW"	="Department of Human Services"	22-May-08	="Real estate services"	01-Dec-08	30-Nov-15	3953494.89	=""	="The Trustee for Wallsend Offices Unit Trust"	22-May-08 09:40 AM	

+="CN85496"	"AIRCRAFT SPARES::QTY 5::NSN-5985-01-112-8057::ANTENNA"	="Defence Materiel Organisation"	22-May-08	="Military rotary wing aircraft"	22-May-08	08-Aug-08	15546.58	=""	="MILITARY AVIATION SPARES"	22-May-08 09:41 AM	

+="CN85498"	"PARTS AND LABOUR COST TO REPAIR ROBOT"	="Department of Defence"	22-May-08	="Robot components"	03-Mar-08	10-Jun-08	59138.00	=""	="IROBOT CORP"	22-May-08 09:56 AM	

+="CN85499-A1"	"Printing of NAT 3093-5.2008 - Witholding Declaration. Qty: 450,000"	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	15-May-08	30-Jun-08	103268.00	=""	="Canprint Communications"	22-May-08 10:17 AM	

+="CN85501"	"Lease for premises at 38 Townsville Street , Fyshwick ACT"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Jun-06	31-May-08	237402.00	=""	="Vincenzo Callipari"	22-May-08 10:33 AM	

+="CN85503"	"Temporary services - Administration work & registration in the compliance and reporting team."	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	31-Oct-08	36028.25	=""	="VEDIOR ASIA PACIFIC PTY LTD"	22-May-08 10:44 AM	

+="CN85504"	"Web Mgt services: public & password protected website"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	38500.00	=""	="Dept of the Environment, Water, Her"	22-May-08 10:44 AM	

+="CN85506"	"BIO 2008  IA07/00469"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	154000.00	=""	="AUSBIOTECH LTD"	22-May-08 10:57 AM	

+="CN85507"	"Technical Expert Advice  T35450"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	05-May-08	13750.00	=""	="SCOTT MINE CONSULTING SERVICES PTY LTD"	22-May-08 10:57 AM	

+="CN85508"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	14612.40	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:57 AM	

+="CN85509"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	18073.00	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:57 AM	

+="CN85510"	"AIR CONDITIONING UNIT LEVEL 3  NA"	="Department of Innovation Industry Science and Research"	22-May-08	="Distribution and Conditioning Systems and Equipment and Components"	01-May-08	09-May-08	18920.00	=""	="HIROTEC MAINTENANCE PTY LTD"	22-May-08 10:58 AM	

+="CN85511"	"cITY sOFTWARE - lt04 bACKUP TAPE DRIVES FOR TIVOLI STORAGE M"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	01-May-08	30-Jun-08	67837.05	=""	="CITY SOFTWARE"	22-May-08 10:58 AM	

+="CN85512"	"Promotional Advertisements to promote Business.gov.au and it"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	01-May-08	31-Jul-08	55455.75	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85513"	"Government Notices"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	02-May-08	16-May-08	54670.00	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85514"	"iqpc EgOVERNMENT 2008 eXPO PROMOTING bUSINESS.GOV.AU AND van"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	02-May-08	30-Jun-08	11000.00	=""	="INTERNATIONAL QUALITY and PRODUCTIVITY CTR"	22-May-08 10:58 AM	

+="CN85515"	"Promotional Advertisements to promote Business.gov.au and it"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	02-May-08	31-Jul-08	48312.51	=""	="HMA BLAZE PTY LTD"	22-May-08 10:58 AM	

+="CN85517"	"Search for Ent Connect Burnie State Manager Innov Div PO Fol"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	24990.00	=""	="EDWARD W KELLEY and PARTNERS P/L"	22-May-08 10:58 AM	

+="CN85519"	"Fraud Risk Assessment Implementation"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	50000.00	=""	="WALTER and TURNBULL"	22-May-08 10:59 AM	

+="CN85520"	"Tesa comparator system with large work table LO10/05/08"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	06-May-08	10-Jun-08	17165.50	=""	="ROSEBANK ENGINEERING PTY LTD"	22-May-08 10:59 AM	

+="CN85521"	"Detector signal meas. syst to automate special irradiance co"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	06-May-08	12-Jun-08	10148.60	=""	="SCIENTIFIC DEVICES AUSTRALIA PTY LTD"	22-May-08 10:59 AM	

+="CN85523"	"rEVIEW OF BUSINESS.GOV.AU iNFORMATION aRCHITECTURE c08/03078"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	06-May-08	30-Jun-08	39864.00	=""	="PTG GLOBAL"	22-May-08 10:59 AM	

+="CN85524"	"Argent Techno - Racking Pty Ltd B Class Security rack C07/10"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	06-May-08	30-Jun-08	55621.28	=""	="ARGENT TECHNO-RACKING PTY LTD"	22-May-08 11:00 AM	

+="CN85525"	"Venue hire services"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	07-Apr-08	06-May-08	44486.00	=""	="MERCURE HOTEL MELBOURNE"	22-May-08 11:00 AM	

+="CN85526"	"PWC_Internal Audit_Aurion inc ESS C07/04013"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	37500.00	=""	="PRICE WATERHOUSE COOPERS (NSW)"	22-May-08 11:00 AM	

+="CN85527"	"Construction Management Service"	="Department of Innovation Industry Science and Research"	22-May-08	="Management advisory services"	07-Feb-08	30-Jun-08	450494.00	=""	="HANSEN YUNCKEN PTY LTD"	22-May-08 11:00 AM	

+="CN85528"	"Student Research Scheme  Innov Div PO Folder 2008"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	30-Jun-08	12100.00	=""	="CSIRO"	22-May-08 11:00 AM	

+="CN85529"	"B-GLUCURONIDASE"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	07-May-08	30-May-08	13783.00	=""	="ROCHE DIAGNOSTICS AUST PTY LTD"	22-May-08 11:00 AM	

+="CN85530"	"Water, Sewerage and Electricity (Pymble) JLL Payments (GST E"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	31-May-08	12456.60	=""	="JONES LANG LASALLE (ACT) PTY LTD"	22-May-08 11:00 AM	

+="CN85531"	"dEVELOP and PRODUCE CURRICULUM FOR nANO sCIENCE tEACHERS finre"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	31-Oct-08	74020.00	=""	="BRIDGE8 PTY LTD"	22-May-08 11:00 AM	

+="CN85532"	"Financial Management Training - Science and Research and Que"	="Department of Innovation Industry Science and Research"	22-May-08	="Education and Training Services"	08-May-08	30-Jun-08	10000.00	=""	="MAGICAL ADVENTURES PTY LTD"	22-May-08 11:01 AM	

+="CN85533"	"QA Program"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	08-May-08	30-Jun-08	16000.00	=""	="OPTIMUM BUSINESS CONSULTING PTY LTD"	22-May-08 11:01 AM	

+="CN85534"	"NANOTECH 2008 - VENUE HIRE  IA02/0056"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	08-May-08	31-May-08	13500.00	=""	="NANO SCIENCE and TECHNOLOGY INSTITUTE"	22-May-08 11:01 AM	

+="CN85535"	"Zallcom - Symantac Scan Engine Licences  C05/06800"	="Department of Innovation Industry Science and Research"	22-May-08	="Software"	09-May-08	30-Jun-08	11107.80	=""	="ZALLCOM PTY LTD"	22-May-08 11:01 AM	

+="CN85536"	"Helium 48 Pack  R.K"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	09-May-08	30-Jun-08	45623.60	=""	="SUPAGAS"	22-May-08 11:01 AM	

+="CN85537-A1"	"Mass Spectrometer System"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	09-May-08	30-Jun-08	631400.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	22-May-08 11:01 AM	

+="CN85516"	" Lease at 228 Byrnes St Mareeba QLD "	="Department of Human Services"	22-May-08	="Real estate services"	01-May-09	30-Apr-16	1724800.00	=""	="Sibi Girgenti Holding Pty Ltd"	22-May-08 11:02 AM	

+="CN85538"	"Executive Search Service NSW and QLD State Managers Innov Div"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	12-Jun-07	30-Jun-08	72800.00	=""	="EDWARD W KELLEY and PARTNERS P/L"	22-May-08 11:02 AM	

+="CN85539"	"ACI 148 Bosch"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	12-May-08	30-Jun-08	14012.50	=""	="AUST GOVT SOLICITOR (VIC)"	22-May-08 11:02 AM	

+="CN85540"	"Feb 08 flood - Labour and consumables required for assessment"	="Department of Innovation Industry Science and Research"	22-May-08	="Industrial Cleaning Services"	12-May-08	31-May-08	23643.09	=""	="RESTORX PTY LTD"	22-May-08 11:02 AM	

+="CN85541"	"NMR Spectroscopy Services  N/A"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	13-May-08	30-Jun-08	17116.00	=""	="THE UNIVERSITY OF NEW SOUTH WALES"	22-May-08 11:02 AM	

+="CN85542"	"Purchase of 4 Switches and asscoiated Equipment from Netwrok"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	13-May-08	30-Jun-08	24959.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:02 AM	

+="CN85543"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	14-Apr-08	31-Oct-08	53222.40	=""	="GREYTHORN PTY LTD"	22-May-08 11:02 AM	

+="CN85544-A1"	"Postgraduate Program Masters of Public Policy"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	14-Jun-07	31-Dec-08	589210.00	=""	="AUSTRALIAN NATIONAL UNIVERSITY"	22-May-08 11:02 AM	

+="CN85545"	"Gas flow std thermometer, Fluke LO13/5/08"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	14-May-08	20-Jun-08	12301.30	=""	="FLUKE AUSTRALIA"	22-May-08 11:03 AM	

+="CN85546"	"Kit Folders"	="Department of Innovation Industry Science and Research"	22-May-08	="Marketing and distribution"	14-May-08	25-May-08	10659.00	=""	="UNION OFFSET CO P/L"	22-May-08 11:03 AM	

+="CN85547"	"Stationery orderand supplies"	="Department of Innovation Industry Science and Research"	22-May-08	="Office Equipment and Accessories and Supplies"	14-May-08	25-May-08	35771.34	="SON26571"	="CORPORATE EXPRESS AUST LTD"	22-May-08 11:03 AM	

+="CN85548"	"Review of Provision for doubtful debts Standard Operating Pr"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	14-May-08	30-Jun-08	10000.00	=""	="DUESBURYS"	22-May-08 11:03 AM	

+="CN85549"	"Review of Administered Accrual Standard Operating Procedures"	="Department of Innovation Industry Science and Research"	22-May-08	="Accounting and auditing"	14-May-08	30-Jun-08	11000.00	=""	="PRICE WATERHOUSE COOPERS (ACT)"	22-May-08 11:03 AM	

+="CN85550"	"Repair  R.K"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	14-May-08	31-Dec-08	10604.00	=""	="ROHDE and SCHWARZ (AUSTRALIA) PTY LTD"	22-May-08 11:03 AM	

+="CN85552"	"Advertisements to Promote business.gov.au C07/10871"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	15-Apr-08	30-Jun-08	52800.00	=""	="HMA BLAZE PTY LTD"	22-May-08 11:03 AM	

+="CN85553"	"2006 Census Questionnare for OECD - Doctorates Innov Div PO"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	10570.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	22-May-08 11:04 AM	

+="CN85554"	"Purchase of additional cable  C06/12005"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	15361.50	=""	="INTRAVISION PTY LTD"	22-May-08 11:04 AM	

+="CN85555"	"Supply and Installation of Fibrelink Cables. C06/12005"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	16-May-08	30-Jun-08	21483.00	=""	="INTRAVISION PTY LTD"	22-May-08 11:04 AM	

+="CN85556"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	16-May-08	31-Aug-08	48640.00	=""	="ONLINE 89 PTY LTD"	22-May-08 11:05 AM	

+="CN85557"	"gOOGLE uPGRADE"	="Department of Innovation Industry Science and Research"	22-May-08	="Advertising"	16-May-08	31-Jul-08	33550.00	=""	="HMA BLAZE PTY LTD"	22-May-08 11:05 AM	

+="CN85558"	"PRODATA 200 X LTO3 Tape Cartridges for Database Backups C05/"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	17-Apr-08	02-May-08	10120.00	=""	="PRODATA PTY LTD"	22-May-08 11:05 AM	

+="CN85551"	"Lease for premises at 5 Tennant Street, Fyshwick"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Sep-07	31-Aug-09	671489.50	=""	="PSB Projects"	22-May-08 11:05 AM	

+="CN85559"	"Fujitsu APC InfraStruXure Central 3.0 Standard Server C05/06"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	17-Apr-08	30-Apr-08	13559.95	=""	="FUJITSU AUSTRALIA LIMITED"	22-May-08 11:05 AM	

+="CN85560"	"Legal Services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	17-Apr-08	30-Jun-08	13214.85	=""	="AUST GOVT SOLICITOR (NSW)"	22-May-08 11:05 AM	

+="CN85561"	"Legal Services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	17-Apr-08	30-Jun-08	35566.10	=""	="AUST GOVT SOLICITOR (NSW)"	22-May-08 11:05 AM	

+="CN85562"	"BioMark Digital Array"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	18-Apr-08	30-Jun-08	12000.00	=""	="FLUIDIGM CORPORATION"	22-May-08 11:05 AM	

+="CN85563"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	18-Apr-08	30-Jun-08	70000.00	=""	="RED WAHOO PTY LTD"	22-May-08 11:05 AM	

+="CN85564"	"Provide assistance with Web Recruitment MOG changes March- A"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	19-Feb-08	12-Jun-08	26400.00	=""	="AURION CORPORATION P/L"	22-May-08 11:06 AM	

+="CN85565"	"Design and Implementation Automation, eRecruit and Award Modul"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	19-Feb-08	31-Dec-08	142300.00	=""	="AURION CORPORATION P/L"	22-May-08 11:06 AM	

+="CN85566"	"Legal Fee Fitout Work Port Melb"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	20-Mar-08	30-Jun-08	11259.60	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85567"	"VCP 1"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	20-May-08	30-Jun-08	14087.70	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85568"	"Legal Issues Guide for Small Business"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	16500.00	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:06 AM	

+="CN85569"	"BIO 2008 Media Room"	="Department of Innovation Industry Science and Research"	22-May-08	="Business administration services"	20-May-08	31-May-08	10000.00	=""	="DATELINE MEDIA USA"	22-May-08 11:06 AM	

+="CN85570"	"Venue Hire - Skyline Exhibits"	="Department of Innovation Industry Science and Research"	22-May-08	="Hotels and lodging and meeting facilities"	20-May-08	31-May-08	21000.00	=""	="SKYLINE DISPLAY BAY AREA INC"	22-May-08 11:06 AM	

+="CN85571"	"Waters HPLC Pump  080452"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	21-Apr-08	16-May-08	21270.00	=""	="WATERS AUSTRALIA PTY LTD"	22-May-08 11:06 AM	

+="CN85572"	"VCP1 - IIF1"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	21-Apr-08	30-Jun-08	41368.80	=""	="MALLESONS STEPHEN JAQUES"	22-May-08 11:07 AM	

+="CN85573"	"Folate Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10467.60	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85574"	"Folate and Cobalamin  Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10507.20	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85575"	"Folate and Cobalamin  Testing"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-Apr-08	31-May-08	10718.40	=""	="HEALTH CORPORATE NETWORK"	22-May-08 11:07 AM	

+="CN85576"	"Automatic Tube Sampler"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	21-May-08	11-Jun-08	16800.00	=""	="BERTHOLD TECHNOLOGIES"	22-May-08 11:07 AM	

+="CN85577"	"Power Supply (UPS) units for Enterprise Connect Centres C06/"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	14378.50	=""	="FUJITSU AUSTRALIA LIMITED"	22-May-08 11:07 AM	

+="CN85578"	"External Training Course"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	21-May-08	30-Jun-08	19800.00	=""	="DIMENSIONS DATA LEARNING SOLUTIONS"	22-May-08 11:07 AM	

+="CN85579"	"Netwrok Equipment"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	20423.23	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 11:07 AM	

+="CN85580"	"Workstations and Desks"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-May-08	30-Jun-08	25034.90	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	22-May-08 11:08 AM	

+="CN85581"	"Network Catalyst 3750 Switches"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	59230.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:08 AM	

+="CN85582"	"NETWORK EQUIPMENT"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	61138.00	=""	="NETWORK BROKERS PTY LTD"	22-May-08 11:08 AM	

+="CN85583"	"EMPORE DISK CARTRIDGES"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory supplies and fixtures"	21-May-08	30-Jun-09	25766.40	=""	="VARIAN AUSTRALIA PTY LTD"	22-May-08 11:08 AM	

+="CN85584"	"shimadzu UFLC"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	06-Jun-08	60700.20	=""	="SHIMADZU OCEANIA PTY LTD"	22-May-08 11:08 AM	

+="CN85585"	"Waters GPC Cleanup System"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	17-May-08	65945.00	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:08 AM	

+="CN85586"	"Dynamic Calibrator, Laser Head controller card Lo 220408"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	21-May-08	26067.80	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:08 AM	

+="CN85587"	"Thermo LTQ OrbiTrap"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Apr-08	24-May-08	10945.00	=""	="PROTEOMASS AUSTRALIA PTY LTD"	22-May-08 11:09 AM	

+="CN85588"	"Impulse voltage generation Measurement system"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	22-Feb-08	10-Jun-08	632900.00	=""	="BHT MECHANICAL ELECTRICAL INST CO LTD"	22-May-08 11:09 AM	

+="CN85589"	"Spector 360 Licence Renewal"	="Department of Innovation Industry Science and Research"	22-May-08	="Software"	23-Apr-08	30-May-08	15832.99	=""	="CIDER HOUSE ICT PTY LTD"	22-May-08 11:09 AM	

+="CN85590"	"Agilent GCMS"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	25-Apr-08	27-Jun-08	274332.93	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:09 AM	

+="CN85591-A2"	"Application Quality Assurance and System Testing Tools."	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	27-Jun-07	27-Jun-10	627821.04	=""	="BORLAND AUSTRALIA PTY LTD"	22-May-08 11:09 AM	

+="CN85593"	"Secuse Wireless Enviromental Monitoring"	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	28-Apr-08	09-May-08	32855.90	="NA"	="NVSI"	22-May-08 11:09 AM	

+="CN85594"	"Fraud Awareness Training"	="Department of Innovation Industry Science and Research"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	25000.00	=""	="WALTER and TURNBULL"	22-May-08 11:09 AM	

+="CN85595"	"File Covers (7 types) and document clips  08/00116"	="Department of Innovation Industry Science and Research"	22-May-08	="Office supplies"	29-Apr-08	30-Jun-08	32101.00	=""	="MCDONALD PRINTING GROUP PTY LTD"	22-May-08 11:10 AM	

+="CN85596-A1"	" Gas Chromatograph Mass Spectrometers "	="Department of Innovation Industry Science and Research"	22-May-08	="Laboratory and scientific equipment"	30-Apr-08	27-Jun-08	654973.00	=""	="AGILENT TECHNOLOGIES AUST PTY"	22-May-08 11:10 AM	

+="CN85597"	"Legal services"	="Department of Innovation Industry Science and Research"	22-May-08	="Legal services"	30-Apr-08	30-Jun-08	13818.20	=""	="DLA PHILLIPS FOX"	22-May-08 11:10 AM	

+="CN85598"	"Eaton Powerware Service Agreement for Data Centre UPS C06/04"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	30-Apr-08	30-Jun-08	14575.00	=""	="EATON POWER QUALITY PTY LTD"	22-May-08 11:10 AM	

+="CN85599"	"Getronics Project - Update of Server SOE"	="Department of Innovation Industry Science and Research"	22-May-08	="Computer services"	30-Apr-08	30-Jun-09	18633.38	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 11:10 AM	

+="CN85600"	"MANAGED FUNDS IN AUSTRALIA BOOKLET  IA02/00056"	="Department of Innovation Industry Science and Research"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	31-May-08	12221.00	=""	="LINDSAY YATES and PARTNERS"	22-May-08 11:10 AM	

+="CN85601"	"Placement fee - Temporary employee"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	30-Apr-08	31-May-08	16136.62	=""	="CANTLIE RECRUITMENT SERVICES PTY LTD"	22-May-08 11:10 AM	

+="CN85602"	"GDP 2008-2009 Training Component  C08/02938"	="Department of Innovation Industry Science and Research"	22-May-08	="Human resources services"	31-Dec-06	31-Dec-09	316162.00	=""	="INTERACTION CONSULTING GROUP"	22-May-08 11:10 AM	

+="CN85603"	"Lease for premises at Fairbairn Ave, Piallago"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	01-Dec-06	30-Nov-08	14659.20	=""	="Canberra International Airport"	22-May-08 11:13 AM	

+="CN85605"	" Analyst Notebook license x 40  iBase License x 20  30 days Consultancy. "	="Australian Taxation Office"	22-May-08	="License management software"	23-May-08	22-May-09	600215.00	=""	="Visual Analysis"	22-May-08 11:19 AM	

+="CN85606"	"Lease for premises at Corner Princess Ave & Sharp Street, Cooma NSW"	="Department of Defence"	22-May-08	="Lease and rental of property or building"	03-Jul-00	02-Jul-05	475005.50	=""	="Andrew James Hain"	22-May-08 11:29 AM	

+="CN85608"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-May-08	40590.00	="GAR PANEL"	="UNIVERSITY OF SOUTH AUSTRALIA"	22-May-08 11:34 AM	

+="CN85609"	"Provision of Java Contractors to develop  components of the NHMRC's RIMES Project"	="National Health and Medical Research Council"	22-May-08	="Healthcare Services"	31-Aug-07	30-Jun-08	16896.00	="RFT 334/0607"	="FACE 2 FACE RECRUITMENT  PTY LTD"	22-May-08 11:34 AM	

+="CN85612"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-May-08	40590.00	="GAR PANEL"	="UNIVERSITY OF SOUTH AUSTRALIA"	22-May-08 11:34 AM	

+="CN85613"	"GAR consultancy Services"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-Sep-08	10000.00	="GAR PANEL"	="HEALTH TECHNOLOGY ANALYSTS PTY LTD"	22-May-08 11:35 AM	

+="CN85614"	"Tempary Contractors for Research Ideas grant round"	="National Health and Medical Research Council"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	16-May-08	36000.00	=""	="SOS Recruitment"	22-May-08 11:35 AM	

+="CN85610"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-Dec-03	31-Dec-07	138465.36	=""	="Cisco Systems Capital (Australia) Pty Ltd"	22-May-08 11:35 AM	

+="CN85615-A1"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-Dec-03	31-Dec-07	918329.41	=""	="Cisco Systems Capital (Australia) Pty Ltd"	22-May-08 11:46 AM	

+="CN85617-A2"	"Provision of Security Vetting Services"	="Department of Immigration and Citizenship"	22-May-08	="Management advisory services"	08-May-08	19-Jun-08	15562.00	=""	="Persec Solutions Pty Ltd"	22-May-08 11:51 AM	

+="CN85618-A1"	"Computer hardware lease"	="Australian Federal Police"	22-May-08	="Computer Equipment and Accessories"	01-May-04	30-Apr-08	612393.54	=""	="Cisco Systems Capital (Australia) Pty Limited"	22-May-08 12:02 PM	

+="CN85621"	"Printing of NAT 1004-05.2008 JS10913."	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	16-Jun-08	23518.00	=""	="Canprint Communications"	22-May-08 12:08 PM	

+="CN85622"	"Provide strategic advice to Compliance Unit on Risk Manageme"	="Department of Resources Energy and Tourism"	22-May-08	="Management advisory services"	02-Aug-07	31-Aug-07	120084.00	=""	="THE ACCORD GROUP"	22-May-08 12:09 PM	

+="CN85623-A1"	" Facilitation services "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Aug-07	74000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	22-May-08 12:09 PM	

+="CN85624-A1"	" Audio Visual Hire for Energy Efficiency Opportunities Workshop "	="Department of Resources Energy and Tourism"	22-May-08	="Audio and visual presentation and composing equipment"	08-Aug-07	07-Sep-07	36128.00	=""	="MICROHIRE"	22-May-08 12:09 PM	

+="CN85625-A1"	" Facilitation support for Energy Efficiency Opportunities Workshop in Sydney and Perth "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Jun-08	13447.50	=""	="MACMAHON TECHNOLOGIES"	22-May-08 12:09 PM	

+="CN85627"	"engage contractor"	="Department of Resources Energy and Tourism"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	08-Aug-07	30-Jun-08	25923.15	=""	="ZOO COMMUNICATIONS PTY LTD"	22-May-08 12:09 PM	

+="CN85628-A1"	" Recruitment of Executive Assistant "	="Department of Resources Energy and Tourism"	22-May-08	="Human resources services"	08-Aug-07	30-Jun-08	27300.00	=""	="HAYS ACCOUNTANCY PERSONNEL"	22-May-08 12:10 PM	

+="CN85629-A1"	"IT Equipment for Cement Task Force Conference"	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	08-Aug-07	30-Nov-07	15353.18	=""	="GETRONICS (AUSTRALIA) PTY LTD"	22-May-08 12:10 PM	

+="CN85630-A1"	" Membership for IEA Greenhouse Program Administration "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Nov-07	33000.00	=""	="IEA GREENHOUSE GAS R and D PROGRAMME"	22-May-08 12:10 PM	

+="CN85631-A1"	" Energy Regulatory and Market Development Forum "	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	31-Aug-07	20090.60	=""	="JOHNSTON and ASSOCIATES INTERNATIONAL P/L"	22-May-08 12:10 PM	

+="CN85632-A1"	"Relocation of National Measurement Institute (NMI) Flow Measurement Facility"	="Department of Resources Energy and Tourism"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	31-Aug-07	33754.00	=""	="TRADE AND MANAGEMENT CONSULTANTS AUST"	22-May-08 12:10 PM	

+="CN85633"	"Printing of Encouraging Enterprise"	="Department of Resources Energy and Tourism"	22-May-08	="Management advisory services"	08-Aug-07	31-Aug-07	149710.00	="1010"	="MARSH PTY LTD"	22-May-08 12:11 PM	

+="CN85634-A1"	" Canon DR3080C Scanner and warranty "	="Department of Resources Energy and Tourism"	22-May-08	="Office Equipment and Accessories and Supplies"	08-Aug-07	31-Aug-08	12559.80	=""	="CANON AUSTRALIA PTY LTD"	22-May-08 12:11 PM	

+="CN85635-A1"	" IT Equipment - 10 x Laptops "	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	09-Aug-07	30-Nov-07	22932.80	=""	="DELL AUSTRALIA"	22-May-08 12:11 PM	

+="CN85636-A1"	" 20 x Computers for the department "	="Department of Resources Energy and Tourism"	22-May-08	="Computer Equipment and Accessories"	09-Aug-07	31-Aug-07	29518.80	=""	="DELL AUSTRALIA"	22-May-08 12:11 PM	

+="CN85637-A1"	"Professional Fees and Disbursements Supply of Australian Destinationo Status (ADS) Scheme"	="Department of Resources Energy and Tourism"	22-May-08	="Advertising"	10-Aug-07	23-Aug-07	22830.76	=""	="HMA BLAZE PTY LTD"	22-May-08 12:11 PM	

+="CN85639-A1"	" Review of the Due Diligence report for the department "	="Department of Resources Energy and Tourism"	22-May-08	="Accounting and auditing"	10-Aug-07	31-Aug-07	15550.00	=""	="KPMG (ACT)"	22-May-08 12:11 PM	

+="CN85640-A2"	"Provision of Information Technology Analysis Services (Previously Published as GAPS ID: 1614350)"	="Department of Immigration and Citizenship"	22-May-08	="Temporary information technology systems or database administrators"	07-Aug-06	16-May-08	363660.00	=""	="Ambit Recruitment Pty Ltd"	22-May-08 12:23 PM	

+="CN85641"	"Printing of NAT1005-05.2008 Weekly tax table incorporating Medicare levy with and without leave loading"	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	20-Jun-08	201700.85	=""	="Blue Star Print Group t/a National Capital Printing"	22-May-08 12:55 PM	

+="CN85642"	"Printing of NAT 1006.05-2008 Fortnightly tax table incorporating Medicare levy with and without leave loading."	="Australian Taxation Office"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-May-08	20-Jun-08	191609.00	=""	="Canprint Communications"	22-May-08 01:01 PM	

+="CN85459"	" Property lease in Geraldton, WA "	="Centrelink"	22-May-08	="Real estate services"	15-May-08	16-May-09	24080.00	=""	="Ray White Geraldton"	22-May-08 01:47 PM	

+="CN85645-A1"	"Conduct of a review and provision of a report on the AFPs national security operations"	="Australian Federal Police"	22-May-08	="Management advisory services"	22-Nov-07	26-Feb-08	45100.00	=""	="Martin Brady"	22-May-08 01:58 PM	

+="CN85647"	"Provision of Artworks"	="Department of the Environment Water Heritage and the Arts"	22-May-08	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	19-May-08	03-Aug-08	10000.00	="0708-1509"	="Nicky Ginsberg Art Gallery"	22-May-08 02:11 PM	

+="CN85648"	"Preperation and presentation of a report on internal & digital technologies"	="Australian Federal Police"	22-May-08	="Management advisory services"	07-May-07	18-May-07	19800.00	=""	="Martin Brady"	22-May-08 02:24 PM	

+="CN85649"	"Preperation of a report on internet & digital technologies"	="Australian Federal Police"	22-May-08	="Management advisory services"	07-May-07	18-May-07	35000.00	=""	="Blunn Anthony Stuart"	22-May-08 02:28 PM	

+="CN85654"	"Storage,Archival and Retrieval Services"	="Australian Sports Anti-Doping Authority (ASADA)"	22-May-08	="Document storage services"	10-Dec-07	09-Dec-12	40000.00	=""	="Advance document Systems"	22-May-08 02:47 PM	

+="CN85660"	"Scanners"	="Australian Electoral Commission"	22-May-08	="Computer accessories"	23-Apr-08	25-Apr-08	11913.00	=""	="PHD Sites Pty Ltd"	22-May-08 03:10 PM	

+="CN85661"	"Professional services - Evaluation of Breast Screen Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	10-Nov-08	241120.00	="RFT 060/0708"	="ACCESS ECONOMICS"	22-May-08 03:20 PM	

+="CN85662"	"Professional services - Change Management Services - Pharmbiz"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	94080.00	="122/0607"	="Butlin & Lloyd Pty Ltd"	22-May-08 03:20 PM	

+="CN85663"	"Provision of services - Various Data Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	43033.00	=""	="POST MERIDIAN"	22-May-08 03:20 PM	

+="CN85664"	"Professional services - Review Consultant Services Pharmbiz"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	19-May-08	42000.00	="122/0607"	="KPMG"	22-May-08 03:20 PM	

+="CN85665"	"Paint and repair property in Alice Springs Office"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	01-May-08	20-May-08	17100.00	=""	="Murray Maintenance Services"	22-May-08 03:20 PM	

+="CN85666"	"Provision of printing services -  Audit of Health Workforce"	="Department of Health and Ageing"	22-May-08	="Published Products"	23-Apr-08	16-May-08	12089.00	=""	="Union Offset Co. Pty. Limited"	22-May-08 03:20 PM	

+="CN85667"	"Relocation Telstra services"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	17-Jul-07	16-May-08	11983.13	=""	="TELSTRA"	22-May-08 03:20 PM	

+="CN85668"	"Advertising services - Rural Health program"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-May-08	19568.24	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85669"	"Provision of temp staff - NT Ear Health and Dental Implementation Team (NTEDIT)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	31000.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:21 PM	

+="CN85670"	"Provison of printing services - Residential Aged Care Fees"	="Department of Health and Ageing"	22-May-08	="Published Products"	26-Mar-08	16-May-08	19011.30	=""	="PARAGON PRINTERS"	22-May-08 03:21 PM	

+="CN85671"	"Development and ongoing support of the Aged Care Funding instrument training environment"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	16-May-08	264000.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:21 PM	

+="CN85672"	"Advertising for OATSIH Quality Improvement and Accreditation Facilitaters RFT"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	15-May-08	15203.76	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85673"	"Advertising for National Quality Network Manager RFT"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	15-May-08	14190.18	=""	="HMA BLAZE PTY LTD"	22-May-08 03:21 PM	

+="CN85674"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:21 PM	

+="CN85675"	"CND 51st Session - Reimbursement of expenses"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	07-Mar-08	15-May-08	14640.76	=""	="NDARC EDUC TRUST"	22-May-08 03:21 PM	

+="CN85676"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	40000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:22 PM	

+="CN85678"	"Professional services- 'The Way Forward' (NSW STO)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	08-Jun-08	62021.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:22 PM	

+="CN85679"	"The University of Wollongong - Physical Activity Recommendations for Children under 5 years"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	27-Jun-08	26295.00	=""	="THE UNIVERSITY OF WOLLONGONG"	22-May-08 03:22 PM	

+="CN85680"	"Ongoing management of the national organ donation collaborative"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	08-Feb-08	30-Jun-08	536474.00	=""	="DEPT OF HEALTH & AGEING - CPM CENTR"	22-May-08 03:22 PM	

+="CN85681"	"Professional services - Financial Analysis & Economic Modelling OATSIH"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	30-Jun-08	135068.00	=""	="MetaCorp Pty Ltd"	22-May-08 03:22 PM	

+="CN85682"	"Professional services- Careers Unlimited"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	23-May-08	10000.00	=""	="CAREERS UNLIMITED PTY LTD"	22-May-08 03:22 PM	

+="CN85683"	"Provision of printing services - 3 Continence Publications"	="Department of Health and Ageing"	22-May-08	="Published Products"	16-May-08	13-Jun-08	61527.40	=""	="PARAGON PRINTERS"	22-May-08 03:22 PM	

+="CN85684"	"Economics Sub Committee Meeting June 2008"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	11-Jun-08	25000.00	=""	="HILTON MELBOURNE AIRPORT HOTEL"	22-May-08 03:23 PM	

+="CN85685"	"Temporary services - Assessment for recruitment services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	13750.00	=""	="PAPER SHUFFLE PTY LTD"	22-May-08 03:23 PM	

+="CN85686"	"Professional services - Review of National Food Regulatory Systems"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	20-May-08	12000.00	=""	="BETHWAITE, FRANCIS M"	22-May-08 03:23 PM	

+="CN85687"	"Temporary services - research and data alignment for Australian Govt Community Care Programs"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	20-May-08	15750.00	=""	="RESOLUTION CONSULTING SERVICES PTY"	22-May-08 03:23 PM	

+="CN85688"	"Provision of printing services - 2008-09 Portfolio Budget Statements"	="Department of Health and Ageing"	22-May-08	="Published Products"	05-May-08	30-Jun-08	15488.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	22-May-08 03:23 PM	

+="CN85689"	"Pharmaceutical Benefits Advisory Committee Mtg"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	07-Nov-08	12000.00	=""	="STAMFORD GRAND ADELAIDE"	22-May-08 03:23 PM	

+="CN85690"	"Construction services for reconfiguration of office space"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	24-Oct-07	20-May-08	19664.80	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	22-May-08 03:23 PM	

+="CN85691"	"Professional services- Population health market research"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	32225.18	=""	="CARROLL COMMUNICATIONS PTY LTD"	22-May-08 03:23 PM	

+="CN85692"	"Professional services - Feasibility study for predictions of NATSIHS estimates at a regional lvl"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	30-Jun-08	41550.00	=""	="THE ADELAIDE RESEARCH & INNOVATION"	22-May-08 03:24 PM	

+="CN85693"	"Professional services - Clinical Handover Initiatives in high risk scenario"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	28-Feb-09	378675.00	="197/0708"	="GP PARTNERS LIMITED"	22-May-08 03:24 PM	

+="CN85695"	"Professional services- Literature review of clinical handover"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	20-May-08	31350.00	="RFQ 203/0708"	="UNIVERSITY OF TASMANIA"	22-May-08 03:24 PM	

+="CN85696"	"Expert services - development of the Commission's Consumer Engagement Strategy"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	31-Aug-08	22000.00	=""	="Donella Piper Consulting Pty Ltd"	22-May-08 03:24 PM	

+="CN85697"	"Completion of Enhanced Data Reporting System"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	30-May-08	54010.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	22-May-08 03:24 PM	

+="CN85698"	"Pharmaceutical Benefits Advisory Committee meeting"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Mar-08	11-Jul-08	20000.00	=""	="HILTON MELBOURNE AIRPORT HOTEL"	22-May-08 03:24 PM	

+="CN85699"	"Services for the Aged Care Assessment Program - National Data Repository"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Nov-08	109858.00	=""	="LA TROBE UNIVERSITY"	22-May-08 03:24 PM	

+="CN85700"	"Provision of advice on streamlining financial reporting arrangements for Div of General Practise"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	12-Feb-08	09-May-08	13283.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:25 PM	

+="CN85701-A1"	"Management review of Cancer Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	11-May-08	81000.00	=""	="ERNST & YOUNG ACT"	22-May-08 03:25 PM	

+="CN85702"	"Investigation of issues from the Program Management Information Initiative review"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	08-May-08	82353.50	=""	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:25 PM	

+="CN85703"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:25 PM	

+="CN85704"	"Quality Assurance to the toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Aug-08	25740.00	="122/0607"	="VALINTUS PTY LTD"	22-May-08 03:25 PM	

+="CN85705"	"Specialist Advice"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	11027.94	="042/0506"	="MINTER ELLISON"	22-May-08 03:25 PM	

+="CN85706"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	54670.00	="042/0506"	="MINTER ELLISON"	22-May-08 03:25 PM	

+="CN85707"	"Engagement of short term locums at the Mersey Community Hospital"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	210524.60	=""	="JTA INTERNATIONAL PTY LTD"	22-May-08 03:26 PM	

+="CN85708"	"Provision of Electricity Central Office"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	01-Jul-07	30-Jun-08	15600.00	=""	="AURORA ENERGY PTY LTD"	22-May-08 03:26 PM	

+="CN85709"	"Office relocations"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	13915.76	="2290405"	="THOMAS BUILDING CONSTRUCTION"	22-May-08 03:26 PM	

+="CN85710"	"Hardcopy & online updates of Law Reports"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13133.70	=""	="REED INTERNATIONAL BOOKS AUSTRALIA"	22-May-08 03:26 PM	

+="CN85711"	"Fitout Works 11-29 Waymouth Street Adelaide South Australia"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	06-Dec-06	09-May-08	65698.20	=""	="BAULDERSTONE HORNIBROOK PTY LTD"	22-May-08 03:26 PM	

+="CN85712"	"Design and develop publications to reflect the new Australian alcohol guidelines"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	25-Jan-08	14-May-08	56305.70	="181/0708"	="WODONGA INSTITUTE OF TAFE"	22-May-08 03:26 PM	

+="CN85713"	"Promotional booth at the General Practitioner Conference"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	25-May-08	10430.29	=""	="REED BUSINESS INFORMATION PTY LTD"	22-May-08 03:26 PM	

+="CN85714"	"Advertisement for recruitment - Australian Commission on Safety & Quality in Health Care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	14-May-08	22559.12	=""	="HMA BLAZE PTY LTD"	22-May-08 03:26 PM	

+="CN85715"	"System changes to Aged-care payments system"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Jul-07	14-May-08	1630200.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:27 PM	

+="CN85716"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:27 PM	

+="CN85717"	"Aged care payment system - ongoing support for e-business"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	921800.00	=""	="MEDICARE AUSTRALIA"	22-May-08 03:27 PM	

+="CN85718"	"Project to improve policy development across the Pharmaceutical Benefits Division"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	23-Jun-08	50000.00	=""	="WEBSTER, DAVID WILLIAM LYLE"	22-May-08 03:27 PM	

+="CN85719-A1"	"Statistical services in aged care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	13-May-08	37511.00	=""	="AUST BUREAU OF STATS VIC"	22-May-08 03:27 PM	

+="CN85720"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:27 PM	

+="CN85721-A1"	"Independant financial services - Zero Real Interest Loans initiatives"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	06-May-08	30-Jun-08	410300.00	="086/0607"	="KPMG"	22-May-08 03:27 PM	

+="CN85722"	"Venue for the Commonwealth Sport Ministers meeting in Beijing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	25-Aug-08	10000.00	=""	="AUSTRADE"	22-May-08 03:28 PM	

+="CN85723"	"Threat risk assessment for the Fourth Community Pharmacy Agreement IT system"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	23-May-08	33000.00	=""	="Stratsec.Net Pty Ltd"	22-May-08 03:28 PM	

+="CN85724"	"Revise and update to the Alcohol Treatment Guidelines"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	67589.00	="186/0708"	="SYDNEY SOUTH WEST AREA HEALTH"	22-May-08 03:28 PM	

+="CN85726"	"Provision of services - printing - In Confidence files"	="Department of Health and Ageing"	22-May-08	="Published Products"	31-Oct-07	30-Apr-08	41475.38	=""	="RAINBOW PRINTING PTY LTD"	22-May-08 03:33 PM	

+="CN85727"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	100000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:34 PM	

+="CN85728"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:34 PM	

+="CN85729"	"Services for electricity  level 6 1 Oxford street Sydney"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-09	28050.00	=""	="ENERGY AUSTRALIA"	22-May-08 03:34 PM	

+="CN85730"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	257972.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85731"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	386958.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85732"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	29-May-08	386958.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:34 PM	

+="CN85733"	"Development of an IT strategy to guide the future ICT sourcing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Apr-08	515944.00	=""	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	22-May-08 03:35 PM	

+="CN85734"	"Accomodation for National Link-up Forum"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	05-May-08	09-May-08	17568.00	=""	="THE HOTEL NETWORK GARRS"	22-May-08 03:35 PM	

+="CN85735"	"Provision of services - published promotional products"	="Department of Health and Ageing"	22-May-08	="Published Products"	13-Feb-08	30-May-08	38500.00	=""	="CORPORATE EXPRESS AUSTRALIA LIMITED"	22-May-08 03:35 PM	

+="CN85736"	"Provision of services - Contract Accounting"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	27-Jun-08	25000.00	=""	="Premium Personnel Pty Ltd"	22-May-08 03:35 PM	

+="CN85737"	"Provision and supply of promotional items"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	09-Jan-08	01-May-08	95465.70	=""	="Intandem Evan Evans"	22-May-08 03:35 PM	

+="CN85738"	"Provision of services - SAS Data Integration"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	37664.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:35 PM	

+="CN85739"	"Provision of services - Testing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	25700.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:35 PM	

+="CN85740"	"Professional services - Financial Evaluation"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	20-Mar-08	30-Apr-08	21039.00	="086/0607"	="WALTERTURNBULL PTY LTD"	22-May-08 03:35 PM	

+="CN85741"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	57000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:36 PM	

+="CN85742"	"Facilitator for a National Communications Strategy and charter workshop"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	28-Apr-08	14200.00	="122/0607"	="CARLA CRANNY AND ASSOCIATES PTY."	22-May-08 03:36 PM	

+="CN85743"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	07-May-08	15806.25	=""	="HMA BLAZE PTY LTD"	22-May-08 03:36 PM	

+="CN85744"	"Printing of "Volatile substance misuse" publication"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	30-Apr-08	30-Jun-08	23622.50	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:36 PM	

+="CN85745"	"Professional services - Probity Advisor"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	38625.00	=""	="Deloitte Touche Tohmatsu"	22-May-08 03:36 PM	

+="CN85746"	"Web Portal Performance Assessment Model"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	10-Apr-08	30-Jun-08	22770.00	=""	="National ICT Australia Limited"	22-May-08 03:36 PM	

+="CN85747"	"Provision of services - publications"	="Department of Health and Ageing"	22-May-08	="Published Products"	16-Apr-08	31-May-08	483535.80	=""	="ST. VINCENT'S HOSPITAL SYDNEY LIMIT"	22-May-08 03:36 PM	

+="CN85748"	"Provision of services - facilitation services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Apr-08	30-Apr-09	353000.00	="122/0607"	="SMS Consulting Group Ltd"	22-May-08 03:37 PM	

+="CN85749"	"Professional services - Testing Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	26455.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:37 PM	

+="CN85750"	"Professional services - SAS Data"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	30-Jun-08	41580.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	22-May-08 03:37 PM	

+="CN85751"	"Provision of accommodation & venue charges"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	20-Mar-08	03-May-08	30000.00	=""	="AAPC Properties Ltd"	22-May-08 03:37 PM	

+="CN85752"	"Professional Services - Model Estimates"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	29-Apr-08	10000.00	=""	="UMEE LIMITED"	22-May-08 03:37 PM	

+="CN85753"	"Provision of accommodation charges"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	28-Apr-08	28-Jun-08	37170.00	=""	="Bitanic Gardens Apartments"	22-May-08 03:37 PM	

+="CN85754"	"Provision of services - Minor Works"	="Department of Health and Ageing"	22-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Apr-08	20-Jun-08	54890.00	=""	="Caliber Contracting"	22-May-08 03:37 PM	

+="CN85755"	"Provision of services - Test Lead"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	19800.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:37 PM	

+="CN85756"	"Creation of alcohol harm related promotional products"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	269060.00	=""	="GRASSHOPPER PROMOTIONAL AUSTRALIAS"	22-May-08 03:38 PM	

+="CN85757"	"Consultancy services - Communications Officer The Way Forward"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	39600.00	=""	="Hudson Global Resources (Aust) Pty"	22-May-08 03:38 PM	

+="CN85758"	"Provision of services - Expert clinical services to Patient Identification Program"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	24000.00	=""	="SPENCERSMITH AND ASSOCIATES PTY LTD"	22-May-08 03:38 PM	

+="CN85759"	"Provision of services - Capability Toolkit"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-May-08	31838.40	=""	="FLINDERS UNIVERSITY"	22-May-08 03:38 PM	

+="CN85760"	"Engagement of project support services to clincial handover project"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Jun-08	33000.00	=""	="HAYS PERSONNEL SERVICES"	22-May-08 03:38 PM	

+="CN85761"	"Upgrade HealthInsite search engine"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	20-Mar-08	20-Mar-11	229680.00	=""	="Autonomy Systems Australia Pty Ltd"	22-May-08 03:38 PM	

+="CN85762"	"Delivery of  training courses"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	53266.24	=""	="DELANEY AND ASSOCIATES PTY. LTD."	22-May-08 03:38 PM	

+="CN85763"	"Provision of printing services - Emergency Care Kit"	="Department of Health and Ageing"	22-May-08	="Published Products"	24-Apr-08	12-May-08	11305.80	=""	="PARAGON PRINTERS"	22-May-08 03:38 PM	

+="CN85764"	"Professional services - EL1 Contractor"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	14-May-08	20000.00	=""	="Trek Recruitment Solutions"	22-May-08 03:38 PM	

+="CN85765"	"Printing of Indigenous Lifescripts Resources"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	06-Feb-08	30-Jun-08	48507.28	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:39 PM	

+="CN85766"	"Review of the OATSIH capital works program delivery model"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	45000.00	=""	="LAUGHING MIND PTY. LTD."	22-May-08 03:39 PM	

+="CN85767"	"Clinical review of the Bunurong Health Service and primary care needs of Aboriginals and Islanders"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	48840.00	="257/0708"	="EFFECTIVE CHANGE PTY LTD"	22-May-08 03:39 PM	

+="CN85768"	"Three Branch compliance audits"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	31-Mar-08	07-May-08	71390.00	="086/0607"	="DOBES & ASSOCIATES PROPRIETARY LIMI"	22-May-08 03:39 PM	

+="CN85769"	"Development of a paper on legal issues affecting open disclosure"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	07-May-08	11123.00	=""	="The University of Melbourne"	22-May-08 03:39 PM	

+="CN85770"	"Relocation services - 2008 Graduates Program"	="Department of Health and Ageing"	22-May-08	="Transportation and Storage and Mail Services"	23-Apr-08	30-Jun-08	300000.00	=""	="TOLL TRANSPORT PTY. LIMITED"	22-May-08 03:39 PM	

+="CN85771"	"Professional services - Audit Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	01-May-08	35000.00	=""	="NORTHERN TERRITORY OF AUSTRALIA T/A"	22-May-08 03:39 PM	

+="CN85772"	"Accommodation and conference for Qld state Healthy for Life Workshop"	="Department of Health and Ageing"	22-May-08	="Travel and Food and Lodging and Entertainment Services"	27-Feb-08	30-Jun-08	11394.50	=""	="MARQUE HOTELS INTERNATIONAL PTY LTD"	22-May-08 03:39 PM	

+="CN85773"	"Creation of alcohol harm related promotional products - baseball caps"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	100000.00	=""	="GRASSHOPPER PROMOTIONAL AUSTRALIAS"	22-May-08 03:40 PM	

+="CN85774"	"Provision of professional services - Migration trends and movement patterns in Australia"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	18-Sep-07	30-May-08	29040.00	="208/0607"	="ACCESS ECONOMICS"	22-May-08 03:40 PM	

+="CN85775"	"Audit of Risk Assessments in the Business Planning Process"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	14-Apr-08	09-Jun-08	35834.00	="086/0607"	="RSM BIRD CAMERON"	22-May-08 03:40 PM	

+="CN85777"	"Professional services - ICT Benchmarking Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	02-May-08	50000.00	=""	="IT Newcom Pty Ltd"	22-May-08 03:40 PM	

+="CN85778"	"Update the cost recovery costing model, fee structure and Cost Recovery Impact Statement"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	29-Apr-08	31-May-08	28746.50	="086/0607"	="OAKTON AA SERVICES PTY LTD"	22-May-08 03:40 PM	

+="CN85779"	"ICT Benchmarking Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	02-May-08	107500.00	=""	="IT Newcom Pty Ltd"	22-May-08 03:41 PM	

+="CN85780"	"Printing under  the National Continence Management Strategy (NCMS)"	="Department of Health and Ageing"	22-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Apr-08	02-May-08	72255.70	=""	="PIRION PTY LIMITED"	22-May-08 03:41 PM	

+="CN85781"	"Evaluation of the competent authority pathway of assessment for International medical graduates"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	05-Feb-09	155488.00	="208/0607"	="KPMG"	22-May-08 03:41 PM	

+="CN85782"	"Provision of professional services - Economic Evalutation"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	31-Dec-08	170500.00	="177/0708"	="IMS HEALTH AUSTRALIA PTY LTD"	22-May-08 03:41 PM	

+="CN85783"	"Provision of professional services - Review & Assessment services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	02-May-08	34500.00	=""	="PALM CONSULTING GROUP PTY LTD"	22-May-08 03:41 PM	

+="CN85784"	"SAP ABAP programming engagement"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	30-Jun-08	14000.00	="288/0607"	="Southern Cross Computing Pty Limite"	22-May-08 03:42 PM	

+="CN85785"	"Printing of final report of the National Clinical Taskforce on Organ and Tissue Donation"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	30-Jan-08	05-May-08	41737.61	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:42 PM	

+="CN85786"	"Training and development services"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	22-May-08	25-Jun-08	23056.00	="2005/014"	="RESULTS CONSULTING (AUST) PTY LTD"	22-May-08 03:42 PM	

+="CN85787"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:42 PM	

+="CN85788"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	40000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:42 PM	

+="CN85789"	"Property lease - Flinders Lane Melbourne"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Mar-11	427180.00	=""	="OVERLAND PROPERTIES PTY. LT"	22-May-08 03:42 PM	

+="CN85790"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	240000.00	="042/0506"	="CLAYTON UTZ"	22-May-08 03:42 PM	

+="CN85791"	"Consultancy services to support the 2008 Departmental Financial Review"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	21-Apr-08	79992.00	=""	="THE TRUSTEE FOR APIS CONSULTING GRO"	22-May-08 03:43 PM	

+="CN85792"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:43 PM	

+="CN85793"	"Consultancy services - SAS data integration serivces"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	02-May-08	14036.00	="288/0607"	="UXC LIMITED"	22-May-08 03:43 PM	

+="CN85794"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="DLA PHILLIPS FOX"	22-May-08 03:43 PM	

+="CN85795-A1"	"Provision of Independant finance advice"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	08-Apr-08	30-Jun-08	120000.00	="086/0607"	="KPMG"	22-May-08 03:43 PM	

+="CN85796"	"Printing of the National Mental Health Report 2007"	="Department of Health and Ageing"	22-May-08	="Published Products"	29-Jan-08	30-Jun-08	26426.00	=""	="CPP INSTANT PRINTING"	22-May-08 03:43 PM	

+="CN85797"	"Review of aged care in Bourke NSW"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	27-Jun-08	37792.00	=""	="WALLACE MACKINNON & ASSOCIATES"	22-May-08 03:43 PM	

+="CN85798"	"Provision of services - Fit out works"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	25-Feb-08	30-Jun-08	149292.00	=""	="GE SHAW & ASSOCIATES (ACT) PTY LIMI"	22-May-08 03:44 PM	

+="CN85799"	"Promotional items"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	02-May-08	11174.40	=""	="PERSONAL CREATIONS"	22-May-08 03:44 PM	

+="CN85800"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14857.52	="042/0506"	="CLAYTON UTZ"	22-May-08 03:44 PM	

+="CN85801"	"Refurbishment work for QLD State Office"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	16-Jan-08	28-Feb-09	23914.79	=""	="Isis Projects Pty Ltd"	22-May-08 03:44 PM	

+="CN85802"	"Development of External Proficiency Program for POCT Trial"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-05	05-May-08	174350.79	=""	="RCPA QUALITY ASSURANCE PROGRAMS PTY"	22-May-08 03:44 PM	

+="CN85803"	"Payments to Centrelink for Income testing and Asset testing services"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	01-Jul-07	30-Jun-08	1121000.00	=""	="CENTRELINK"	22-May-08 03:44 PM	

+="CN85804"	"Advice relating to the Business Objectives of Primary & Ambulatory Care Division"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	02-Aug-07	31-Dec-07	99822.00	=""	="BANSCOTT HEALTH CONSULTING PTY LTD"	22-May-08 03:44 PM	

+="CN85805"	"To fund the development of resources to support appropriate use of MBS health check items."	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	14-Sep-07	07-May-08	10111.54	=""	="Australian General Practice Limited"	22-May-08 03:44 PM	

+="CN85806"	"Provision for Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	119500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:45 PM	

+="CN85807"	"Provision of Legal services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="Mallesons Stephen Jaques"	22-May-08 03:45 PM	

+="CN85808"	"For Services for the engagement of the CEO, Human Resources Manager & Finance Manager at Mersey"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	18-Oct-07	21-Apr-08	650231.27	=""	="JTA INTERNATIONAL PTY LTD"	22-May-08 03:45 PM	

+="CN85809"	"Production of in-confidence and unclassified file covers"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Oct-07	08-May-08	47530.35	=""	="RAINBOW PRINTING PTY LTD"	22-May-08 03:45 PM	

+="CN85810"	"Management Services for National Data Repository For Home & Community Care Minimum Data Set"	="Department of Health and Ageing"	22-May-08	="Healthcare Services"	17-Nov-07	28-Feb-09	210969.00	=""	="FUJITSU AUSTRALIA LTD"	22-May-08 03:45 PM	

+="CN85811"	"Test manager/test lead services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Apr-08	43076.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:45 PM	

+="CN85812"	"Test analyst services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Apr-08	39600.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	22-May-08 03:45 PM	

+="CN85813"	"Provision of legal services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	30-Jun-08	42400.54	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85814"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15000.00	="042/0506"	="MINTER ELLISON"	22-May-08 03:46 PM	

+="CN85815"	"Engagement of specialist expertise for the production of specialist report"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	08-May-08	15488.00	=""	="PERFORMANCE AND GOVERNANCE"	22-May-08 03:46 PM	

+="CN85816"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85817"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10267.62	="042/0506"	="CLAYTON UTZ"	22-May-08 03:46 PM	

+="CN85818"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13200.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:46 PM	

+="CN85819"	"ICON Services  Penrhyn House B ground floor"	="Department of Health and Ageing"	22-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	30-Jun-08	20000.00	=""	="DEPT OF FINANCE & ADMIN"	22-May-08 03:46 PM	

+="CN85820"	"Audio visual products for the call centre"	="Department of Health and Ageing"	22-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	16670.00	=""	="ZENITH CUSTOM INSTALLATION PTY LIMI"	22-May-08 03:46 PM	

+="CN85821"	"Consultancy services - Financial Advisory services"	="Department of Health and Ageing"	22-May-08	="Financial and Insurance Services"	18-Mar-08	20-Jun-08	42414.35	="086/0607"	="ENMARK PTY LTD"	22-May-08 03:47 PM	

+="CN85822"	"Consultancy services - Testing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	10560.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	22-May-08 03:47 PM	

+="CN85823"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	07-Apr-08	24-Apr-08	34601.17	=""	="HMA BLAZE PTY LTD"	22-May-08 03:47 PM	

+="CN85824"	"Provision of professional services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	01-Dec-10	3960000.00	=""	="Austin Health"	22-May-08 03:47 PM	

+="CN85825"	"Provision of advertising services"	="Department of Health and Ageing"	22-May-08	="Published Products"	09-Apr-08	30-Jun-08	15588.95	=""	="HMA BLAZE PTY LTD"	22-May-08 03:47 PM	

+="CN85826"	"Supply of items for the National Medical Stockpile"	="Department of Health and Ageing"	22-May-08	="Medical Equipment and Accessories and Supplies"	04-Dec-07	30-Apr-08	1657600.00	=""	="ROCHE PRODUCTS PTY LTD"	22-May-08 03:47 PM	

+="CN85827"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	12000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:47 PM	

+="CN85828"	"Graphic design and printing conference material"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	27-Mar-08	30-Jun-08	17000.00	=""	="ADZU"	22-May-08 03:48 PM	

+="CN85829"	"Printing of six aged care accreditation reports"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	09-Apr-08	23-May-08	41963.70	=""	="PIRION PTY LIMITED"	22-May-08 03:48 PM	

+="CN85830"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	12000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85831"	"Printing and supply of promotional flash drives"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	03-Jan-08	23-Apr-08	15719.00	=""	="The Trustee for PARAGON AUSTRALASIA"	22-May-08 03:48 PM	

+="CN85832"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	231929.40	=""	="Total Learn Pty Ltd"	22-May-08 03:48 PM	

+="CN85833"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	19800.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85834"	"Provision of  Legal Services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	11000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	22-May-08 03:48 PM	

+="CN85835"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	341445.50	=""	="CIT SOLUTIONS PTY LIMITED"	22-May-08 03:48 PM	

+="CN85836"	"Provision of training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	498609.10	=""	="INTERACTION CONSULTING GROUP PTY LT"	22-May-08 03:49 PM	

+="CN85837"	"Develop a research framework on safety and quality in Health Care"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	06-May-08	35970.00	=""	="THE SAX INSTITUTE"	22-May-08 03:49 PM	

+="CN85838"	"Guarding services for Dept of Health Ageing"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	387746.00	=""	="CHUBB SECURITY PERSONNEL PTY LTD"	22-May-08 03:49 PM	

+="CN85839"	"Consultancy services -  Dataset services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	30-Jun-08	17600.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	22-May-08 03:49 PM	

+="CN85840"	"Consultancy services - Specialist services"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	18-Apr-08	30-Jun-08	25080.00	=""	="LITTLE OAK PTY LIMITED"	22-May-08 03:49 PM	

+="CN85841"	"Provision of services - publications reprints"	="Department of Health and Ageing"	22-May-08	="Published Products"	02-Jan-08	15-May-08	11803.00	=""	="PIRION PTY LIMITED"	22-May-08 03:49 PM	

+="CN85842"	"Expert authorship of the accrediataion chapter of Commissions National Report 2008"	="Department of Health and Ageing"	22-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	30-Jun-08	11000.00	=""	="BRAITHWAITE AND ASSOCIATES PTY  LTD"	22-May-08 03:49 PM	

+="CN85843"	"Reprint of "Choose Health: Be Active" booklets"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	08-Apr-08	15-May-08	15577.47	=""	="NATIONAL CAPITAL PRINTING"	22-May-08 03:49 PM	

+="CN85844"	"Procurement and funding training programs"	="Department of Health and Ageing"	22-May-08	="Education and Training Services"	01-Jan-08	30-Jun-08	231886.60	=""	="MAJOR TRAINING SERVICES PTY. LTD"	22-May-08 03:49 PM	

+="CN85845"	"Newspaper advertising services for REI 270/0708"	="Department of Health and Ageing"	22-May-08	="Editorial and Design and Graphic and Fine Art Services"	03-Mar-08	23-Apr-08	11415.65	=""	="HMA BLAZE PTY LTD"	22-May-08 03:50 PM	

+="CN85846-A1"	" Lease at De Grey Place, Karratha. WA "	="Department of Human Services"	22-May-08	="Lease and rental of property or building"	01-Jan-09	26-Sep-17	2079000.00	=""	="Peter William Clark"	22-May-08 04:11 PM	

+="CN85847-A1"	"Preparation of Business Case Documentation"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	28-Feb-08	14-Apr-08	28204.00	=""	="Doll Martin Associates"	22-May-08 04:42 PM	

+="CN85848"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	07-Jan-08	07-Jul-08	64350.00	=""	="Greythorn Pty Limited"	22-May-08 04:50 PM	

+="CN85849"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	22-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-May-08	22-Jun-08	16825.69	=""	="LANDROVER"	22-May-08 04:55 PM	

+="CN85850-A2"	"IT Messaging Technology Conversion services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	11-Feb-08	07-Mar-08	116952.00	=""	="IBM Australia Limited"	22-May-08 04:56 PM	

+="CN85852"	"IT Project Management Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	04-Jan-08	29-Feb-08	40000.00	=""	="Software Cybernetics Pty Ltd"	22-May-08 05:01 PM	

+="CN85853"	"Provision of IT Project Management Services"	="Australian Securities and Investments Commission"	22-May-08	="Information technology consultation services"	29-Jan-08	29-Feb-08	23760.00	=""	="Freelance Global Limited"	22-May-08 05:06 PM	

+="CN85854"	"Forensic IT Services"	="Australian Securities and Investments Commission"	22-May-08	="Accounting services"	26-May-08	30-Jun-08	30000.00	=""	="McGrath Nicol"	22-May-08 05:16 PM	

+="CN85855"	"Accommodation"	="Office of the Director of Public Prosecutions"	22-May-08	="Hotels and lodging and meeting facilities"	09-Jan-08	17-Jan-08	10632.40	=""	="Aust International Hotel School"	22-May-08 05:18 PM	

+="CN85856"	"Transcripts"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	06-Dec-07	27-Dec-07	38063.00	=""	="Reporting Services Branch"	22-May-08 05:18 PM	

+="CN85857"	"Transcripts"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	12-Dec-07	27-Dec-07	17076.50	=""	="Reporting Services Branch"	22-May-08 05:18 PM	

+="CN85858"	"Upgrade Audio Equip L8"	="Office of the Director of Public Prosecutions"	22-May-08	="Office machines and their supplies and accessories"	23-Jan-08	23-Jan-08	10522.31	=""	="All A.V. Pty Ltd"	22-May-08 05:19 PM	

+="CN85859"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Jan-08	21-Feb-08	12881.69	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85861"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	04-Feb-08	28-Feb-08	13165.88	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85862"	"Security Containers"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	28-Feb-08	15622.20	=""	="Fileguard Pty Ltd"	22-May-08 05:19 PM	

+="CN85863"	"Suppy & Installation CCTV system"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-Apr-08	47213.60	=""	="TAC PACIFIC PTY LTD"	22-May-08 05:19 PM	

+="CN85864"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	18-Feb-08	06-Mar-08	10237.40	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85865"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	22-Feb-08	06-Mar-08	13072.41	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:19 PM	

+="CN85866"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Feb-08	20-Mar-08	11354.28	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85867"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	29-Feb-08	27-Mar-08	10874.19	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85868"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	17-Mar-08	27-Mar-08	12008.43	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85869"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	20-Mar-08	10-Apr-08	10886.13	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85870"	"Conference Facility"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	24-Apr-08	12217.00	=""	="The Menzies Sydney"	22-May-08 05:20 PM	

+="CN85871"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	02-Apr-08	17-Apr-08	11747.46	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85872"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	02-Apr-08	24-Apr-08	10636.62	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:20 PM	

+="CN85873"	"Interpreting"	="Office of the Director of Public Prosecutions"	22-May-08	="Community and social services"	11-Apr-08	01-May-08	12760.00	=""	="Associated Translators"	22-May-08 05:20 PM	

+="CN85874"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	21-Apr-08	01-May-08	10009.25	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85875"	"Contract Staff"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	21-Apr-08	08-May-08	10412.47	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85876"	"Falepau & ors WE 18/4/08"	="Office of the Director of Public Prosecutions"	22-May-08	="Human resources services"	30-Apr-08	30-Apr-08	11064.91	=""	="Law Staff Australia Pty Ltd"	22-May-08 05:21 PM	

+="CN85877"	"Evidence replay & monitoring system"	="Office of the Director of Public Prosecutions"	22-May-08	="Office machines and their supplies and accessories"	26-Feb-08	30-Jun-08	42391.03	=""	="Auscript"	22-May-08 05:21 PM	

+="CN85878"	"IT Services E-Trial re: Benbrika -6-28/2/08"	="Office of the Director of Public Prosecutions"	22-May-08	="Computer services"	12-Mar-08	23-Apr-08	10700.25	=""	="Potter Farrelly & Associates"	22-May-08 05:21 PM	

+="CN85879"	"Blinds"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	02-May-08	08-May-08	17632.02	=""	="Valtas Enterprises Pty Ltd"	22-May-08 05:21 PM	

+="CN85880"	"Removalist"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	31-Jan-08	13299.44	=""	="Grace Removals Group"	22-May-08 05:21 PM	

+="CN85881"	"Install Billi water appliances - replacement of previous system"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	16-Jan-08	14245.00	=""	="Com-Ind Electrical Service"	22-May-08 05:21 PM	

+="CN85882"	"Accommodation"	="Office of the Director of Public Prosecutions"	22-May-08	="Hotels and lodging and meeting facilities"	04-Mar-08	16-May-08	10935.00	=""	="Quest On James"	22-May-08 05:22 PM	

+="CN85883"	"Removals"	="Office of the Director of Public Prosecutions"	22-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	22-May-08	11989.69	=""	="Grace Removals Group"	22-May-08 05:22 PM	

+="CN85884"	"POLARIS BIKE PARTS"	="Department of Defence"	23-May-08	="Motorcycles"	22-May-08	03-Jul-08	12755.48	=""	="POLARIS SALES AUSTRALIA"	23-May-08 08:17 AM	

+="CN85885-A1"	"Profiling the Micro Business Segment"	="Australian Taxation Office"	23-May-08	="Market research"	23-May-08	30-Jul-08	119210.00	=""	="Blue Moon Research & Planning Pty Ltd"	23-May-08 08:53 AM	

+="CN85886-A1"	" Lease at 16-20 Grimshaw Street, Greensborough, VIC "	="Department of Human Services"	23-May-08	="Lease and rental of property or building"	24-Dec-10	23-Dec-19	12540543.10	=""	="Salta Properties Pty Ltd"	23-May-08 09:00 AM	

+="CN85887"	" F18 HORNET MECHANICAL TRANSMISSION REPAIR "	="Defence Materiel Organisation"	23-May-08	="Military fixed wing aircraft"	23-May-08	20-Feb-09	85975.00	=""	="MOOG"	23-May-08 09:26 AM	

+="CN85888"	"Proprty lease Vanuatu"	="Australian Federal Police"	23-May-08	="Lease and rental of property or building"	01-Jul-08	30-Jun-10	63884.00	=""	="Ritas Holdings"	23-May-08 09:32 AM	

+="CN85890"	"F18 HORNET MECHANICAL TRANSMISSION REPAIR"	="Defence Materiel Organisation"	23-May-08	="Military fixed wing aircraft"	23-May-08	20-Feb-09	85975.00	=""	="MOOG"	23-May-08 09:47 AM	

+="CN85891"	"F18 HORNET MECHANICAL TRANSMISSION REPAIR"	="Defence Materiel Organisation"	23-May-08	="Military fixed wing aircraft"	23-May-08	20-Feb-09	85975.00	=""	="MOOG"	23-May-08 09:53 AM	

+="CN85892"	"ISO 9001:200 Pre-certification audits"	="IP Australia"	23-May-08	="Business administration services"	01-May-08	01-May-08	107285.00	="IPAC2007/13395"	="NCS INTERNATIONAL PTY LIMITED"	23-May-08 10:02 AM	

+="CN85893"	"File Sentencing Services"	="IP Australia"	23-May-08	="Computer services"	02-May-08	30-Jun-08	25000.00	="IPAC2008/10202"	="Iron Mountain Australia Pty Ltd"	23-May-08 10:02 AM	

+="CN85894"	"Fixed asset policy and procedures review"	="IP Australia"	23-May-08	="Business administration services"	06-May-08	20-Jun-08	62902.50	="IPAC2008/11088"	="WALTER & TURNBULL"	23-May-08 10:02 AM	

+="CN85895"	"Provision of a Senior Business Analysis/Strategic Advisor"	="IP Australia"	23-May-08	="Temporary personnel services"	07-May-08	30-May-09	264000.00	="IPAC2008/11755"	="PEOPLEBANK AUSTRALIA PTY LTD"	23-May-08 10:03 AM	

+="CN85896"	"Sun SPARC Hardware & Maintenance Services"	="IP Australia"	23-May-08	="Computer Equipment and Accessories"	09-May-08	30-Jun-08	573259.14	="IPAC2008/11823"	="Dimension Data Australia Pty Ltd"	23-May-08 10:03 AM	

+="CN85897"	"Principles of Admin Law Training Programs"	="IP Australia"	23-May-08	="Human resources services"	12-May-08	15-Dec-09	52262.00	="IPAC2008/11837"	="Australian Law in Practice"	23-May-08 10:03 AM	

+="CN85898"	"Facilitation of planning day for FMG"	="IP Australia"	23-May-08	="Human resources services"	12-May-08	30-May-08	10000.00	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	23-May-08 10:03 AM	

+="CN85899"	"Reveiw of Competency Training Modules in CSN"	="IP Australia"	23-May-08	="Human resources services"	14-May-08	30-Aug-08	27500.00	="IPA05/14475-06"	="Wisdom Learning Pty Ltd"	23-May-08 10:03 AM	

+="CN85900"	"IP Australia Cleaning Services"	="IP Australia"	23-May-08	="Property management services"	14-May-08	10-Apr-09	278396.81	="IPAC2007/15285"	="COMPLETE CLEANING SERVICE"	23-May-08 10:03 AM	

+="CN85901"	"Provision of a Senior Business Analysis"	="IP Australia"	23-May-08	="Temporary personnel services"	14-May-08	30-May-09	224400.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	23-May-08 10:03 AM	

+="CN85902"	"Renewal of SAP Basis Administrator Change Order 5 C2006/10216"	="IP Australia"	23-May-08	="Temporary personnel services"	16-May-08	30-Nov-08	239250.00	="IPAC2006/11050"	="SOUTHERN CROSS COMPUTING PTY LTD"	23-May-08 10:04 AM	

+="CN85903"	"Auditing and Certification Services May 2008"	="IP Australia"	23-May-08	="Audit services"	16-May-08	30-Jun-08	18420.00	="IPAC2007/13395"	="NCS INTERNATIONAL PTY LIMITED"	23-May-08 10:04 AM	

+="CN85904"	"Mystery Shopping Research"	="IP Australia"	23-May-08	="Marketing and distribution"	20-May-08	27-Jun-08	24915.00	="IPA05/14406-03"	="NEW FOCUS PTY LTD"	23-May-08 10:04 AM	

+="CN85905"	"Business Continuity Planning"	="IP Australia"	23-May-08	="Business administration services"	20-May-08	30-Jun-08	73260.00	="IPAC2008/11686"	="OpsCentre Pty Ltd"	23-May-08 10:04 AM	

+="CN85906"	"Series of Small training Groups Programs"	="IP Australia"	23-May-08	="Human resource development"	20-May-08	15-Dec-09	40000.00	="IPAC2008/11987"	="AUSTRALIAN INSTITUTE OF MANAGEMENT"	23-May-08 10:04 AM	

+="CN85907"	"Finance Officer"	="IP Australia"	23-May-08	="Temporary personnel services"	20-May-08	18-Jul-08	17696.00	="IPAC2008/11924"	="FrontierIT Recruitment Consulting P"	23-May-08 10:04 AM	

+="CN85908"	"Provision of a J2EE Tech Lead C2008/11154"	="IP Australia"	23-May-08	="Temporary personnel services"	20-May-08	30-Oct-09	106700.00	="IPAC2008/11154"	="ICON RECRUITMENT PTY LTD"	23-May-08 10:04 AM	

+="CN85909"	"Holocentric Support Work Order 2"	="IP Australia"	23-May-08	="Software maintenance and support"	12-May-08	30-Jun-08	41250.00	="IPAC2007/11213"	="HOLOCENTRIC PTY LTD"	23-May-08 10:05 AM	

+="CN85910"	"Sherman v Merck & Co."	="IP Australia"	23-May-08	="Legal services"	02-May-08	10-Nov-08	25000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	23-May-08 10:05 AM	

+="CN85911"	"Policy Implementation course"	="IP Australia"	23-May-08	="Human resource development"	14-Jan-08	06-May-08	19530.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	23-May-08 10:05 AM	

+="CN85912"	"Small Business multimedia advert Package"	="IP Australia"	23-May-08	="Marketing and distribution"	02-May-08	30-Jun-09	11000.00	=""	="SWITZER COMMUNICATIONS PTY LTD"	23-May-08 10:05 AM	

+="CN85913"	"Print & Delivery of 5000 "Fashion Rules"brouchures"	="IP Australia"	23-May-08	="Printed publications"	05-May-08	05-May-08	19717.50	=""	="ASCENDER DESIGN PTY LTD"	23-May-08 10:05 AM	

+="CN85914"	"SUN Maintenance for Production Servers"	="IP Australia"	23-May-08	="Computer services"	07-May-08	30-Nov-08	44577.05	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	23-May-08 10:05 AM	

+="CN85915"	"Newspaper Adverts. recruitment campaign"	="IP Australia"	23-May-08	="Personnel recruitment"	09-May-08	09-May-08	12195.67	=""	="HMA Blaze Pty Ltd"	23-May-08 10:05 AM	

+="CN85916"	""A Frame" Signage for IPA Cafe"	="IP Australia"	23-May-08	="Building and Construction and Maintenance Services"	14-May-08	28-May-08	15488.00	=""	="Sign Design"	23-May-08 10:05 AM	

+="CN85917"	"Software  Licence Professional, Limited Profession ERP Employee with Maintenance"	="IP Australia"	23-May-08	="Software"	02-May-08	19-Jun-13	297297.00	="IPAC2005/11500"	="SAP AUSTRALIA PTY LTD"	23-May-08 10:05 AM	

+="CN85918"	"Internal Audit Services"	="IP Australia"	23-May-08	="Business administration services"	07-May-08	07-Sep-08	87977.00	="IPAC2005/13177"	="KPMG"	23-May-08 10:06 AM	

+="CN85919"	"USPTO Search and Examination System Project"	="IP Australia"	23-May-08	="Computer services"	29-Apr-08	30-Apr-09	108492.50	=""	="OBJECTIVE CORPORATION"	23-May-08 10:06 AM	

+="CN85920"	"J2EE Developer 2nd extension C2007/11005"	="IP Australia"	23-May-08	="Temporary personnel services"	30-Apr-08	30-Oct-08	95370.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	23-May-08 10:06 AM	

+="CN85921"	"2 x Projectors"	="IP Australia"	23-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	09-Apr-08	11-May-10	13337.70	="IPAC2007/10155"	="SOUND ADVICE"	23-May-08 10:06 AM	

+="CN85922"	"Process Consultant C2007/13007 Extension 26 JUN 08 to 30 NOV 2009"	="IP Australia"	23-May-08	="Temporary personnel services"	01-Nov-07	30-Nov-09	356400.00	="IPAC2007/13007"	="PEOPLEBANK AUSTRALIA PTY LTD"	23-May-08 10:06 AM	

+="CN85923"	"Removal, Travel & Accommodation Arrangment"	="IP Australia"	23-May-08	="Transportation and Storage and Mail Services"	29-Oct-07	10-Oct-08	60000.00	="IPAC2005/11251"	="TOLL TRANSITIONS PTY LTD"	23-May-08 10:06 AM	

+="CN85924"	"Job Application and Interview Skills Pograms"	="IP Australia"	23-May-08	="Human resources services"	03-Dec-07	15-Dec-08	26600.00	="IPAC2007/"	="Ann Villiers"	23-May-08 10:06 AM	

+="CN85925"	"Legal Services Panel AGS039"	="IP Australia"	23-May-08	="Legal services"	01-May-08	30-Jun-08	10000.00	="IPAC2007/15392"	="AUSTRALIAN GOVERNMENT SOLICITOR"	23-May-08 10:06 AM	

+="CN85926"	"Extension 1 28.05.2008-30.06.2008 APT methodology Specialist"	="IP Australia"	23-May-08	="Computer programmers"	07-May-08	30-Jun-08	46246.75	="IPAC2007/15297"	="PEOPLEBANK AUSTRALIA PTY LTD"	23-May-08 10:07 AM	

+="CN85928-A4"	"BP 07355 Tax tables 2008 printing and mail out services"	="Australian Taxation Office"	23-May-08	="Printing"	21-May-08	20-May-11	506987.31	=""	="SEMA Group Pty Limited"	23-May-08 10:18 AM	

+="CN85936"	"IT capital expenditure and ICT support (Top up to FFMA0102, Contract ID 1681764)"	="Future Fund Management Agency"	23-May-08	="Information technology consultation services"	19-Feb-08	30-Jun-08	125217.00	=""	="ASG Pty Ltd"	23-May-08 10:35 AM	

+="CN85944"	" AIRCRAFT SPARES  NSN: 1670-66-156-2045  QTY: 18 "	="Defence Materiel Organisation"	23-May-08	="Military transport helicopters"	21-May-08	23-Nov-08	42164.10	=""	="AIR SAFETY SOLUTIONS PTY LTD"	23-May-08 11:17 AM	

+="CN57617"	" AIRCRAFT SPARES  NSN: 1560-01-326-2369  QTY: 4       "	="Defence Materiel Organisation"	23-May-08	="Military transport helicopters"	04-Feb-08	26-Sep-08	14863.07	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	23-May-08 11:21 AM	

+="CN85947-A1"	"Placement Fee"	="Australian Securities and Investments Commission"	23-May-08	="Recruitment services"	14-Feb-08	14-Feb-08	34261.43	=""	="Bluefin Resources"	23-May-08 12:09 PM	

+="CN85948"	"Fitout of Roma Customer Service Centre QLD"	="Centrelink"	23-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	18-Jun-08	30-Jul-08	104790.00	=""	="Signature Projects"	23-May-08 12:40 PM	

+="CN85946"	" Maintenance and technical support to maintain the Interpreter Management System (IMS) "	="Centrelink"	23-May-08	="Software"	01-Mar-06	30-Jun-09	70064.00	=""	="ARI Systems Pty Ltd"	23-May-08 12:47 PM	

+="CN85950-A1"	"Warranty renewal, maintenance and support for Dell server"	="Comsuper"	23-May-08	="Hardware"	30-May-08	30-Sep-08	77071.00	=""	="Vectra Corporation"	23-May-08 01:46 PM	

+="CN85951"	"Provision for Statement Of Requirement  for upgrade of PABX"	="Comsuper"	23-May-08	="Information technology consultation services"	12-May-08	30-Jun-08	33800.00	=""	="Housley Consulting"	23-May-08 01:50 PM	

+="CN85952"	"Provision for Business Analyst"	="Comsuper"	23-May-08	="Human resources services"	01-Jul-08	30-Jun-09	218240.00	=""	="Encore It Services"	23-May-08 01:52 PM	

+="CN85953"	"Request Submissions Designer SW"	="Australian Taxation Office"	23-May-08	="Software"	26-May-08	26-Oct-08	76862.50	=""	="EMC Infra Pty Ltd"	23-May-08 01:55 PM	

+="CN85954"	"Provision for CPI Advices July 2008"	="Comsuper"	23-May-08	="Stationery"	31-Mar-08	11-Nov-08	44508.60	=""	="Hermes Precisa P/L"	23-May-08 01:56 PM	

+="CN85955"	"Provision for Application Developer"	="Comsuper"	23-May-08	="Human resources services"	01-Jul-08	30-Jun-09	209995.00	=""	="Talent International"	23-May-08 01:58 PM	

+="CN85956"	"Provision for Business Analyst"	="Comsuper"	23-May-08	="Human resources services"	27-May-08	26-Nov-08	106964.00	=""	="Icon Recruitment"	23-May-08 02:01 PM	

+="CN85957-A1"	"Provision for Analyst/Programmer"	="Comsuper"	23-May-08	="Human resources services"	10-Jun-08	24-Apr-09	238515.20	=""	="Southern Cross Computing"	23-May-08 02:06 PM	

+="CN85959-A3"	" Lease at Port Pirie SA "	="Department of Human Services"	23-May-08	="Real estate services"	01-Jul-02	30-Jun-12	2074463.00	=""	="Oscar & Eleanor Guglielmin C/- The Guglielmin Family Trust"	23-May-08 02:33 PM	

+="CN85960"	"Motor Vehicle Parts"	="Department of Defence"	23-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	22-May-08	23-Jun-08	105661.11	=""	="Volvo Commericial Vehicles"	23-May-08 02:41 PM	

+="CN85962"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	23-May-08	="Information technology consultation services"	02-Jun-08	05-Sep-08	74192.32	=""	="Genesis IT&T Pty Ltd"	23-May-08 02:45 PM	

+="CN85963-A1"	" Legal Services "	="Australian Securities and Investments Commission"	23-May-08	="Legal services"	09-May-08	30-Jun-08	59000.00	=""	="Halley, John"	23-May-08 02:50 PM	

+="CN85969"	"Printing of NAT10709 Carrying on a business at or from your home."	="Australian Taxation Office"	23-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	23-May-08	30-Jun-08	12254.00	=""	="Paragon Printers"	23-May-08 03:10 PM	

+="CN85970-A1"	"Annual maintenance for the SpinifexIT Reconciliation Suite. 01/06/2009-31/05/2010."	="Australian Taxation Office"	23-May-08	="Software maintenance and support"	01-Jun-08	31-May-10	36189.55	=""	="SpinifexIT Pty Ltd"	23-May-08 03:13 PM	

+="CN85974"	"National Renewal for electronic access to LawOne Commonwealth & all States Legislation, Cases & Bills; and Corporations Law Point in Time service"	="Australian Securities and Investments Commission"	23-May-08	="Electronic publications and music"	01-Jul-08	30-Jun-09	34500.00	=""	="TimeBase Pty Ltd"	23-May-08 03:18 PM	

+="CN85976"	"qty 75 antenna elements, dipole, for use with military radios."	="Defence Materiel Organisation"	23-May-08	="Radio antennas"	22-May-08	09-Jul-08	31108.27	="RFQ-C7194"	="Radio Frequency Systems Aust"	23-May-08 03:27 PM	

+="CN85972"	"XPert Rule Annual SW Maintenance"	="Australian Taxation Office"	23-May-08	="Software maintenance and support"	21-Apr-08	22-Apr-09	24531.86	=""	="Venturi Ltd"	23-May-08 03:37 PM	

+="CN85982"	" Fuel Tanks "	="Defence Materiel Organisation"	23-May-08	="Fuel storage tanks"	23-May-08	20-Jun-08	23561.25	=""	="Advanced Power"	23-May-08 03:49 PM	

+="CN85987"	"Extension/Variation:Facilitate and coordinate ASIC's risk identification and assessment process"	="Australian Securities and Investments Commission"	23-May-08	="Information technology consultation services"	30-Sep-07	30-Mar-08	15000.00	=""	="WyagdonEnterprises Pty Ltd"	23-May-08 04:19 PM	

+="CN85985-A1"	"Extension/Variation: Enhancement of Methodware database, development of risk models and associated training"	="Australian Securities and Investments Commission"	23-May-08	="Information technology consultation services"	30-Jul-08	30-Oct-08	15000.00	=""	="Methodware Ltd"	23-May-08 04:27 PM	

+="CN85988"	"IT service upgrade"	="Productivity Commission"	23-May-08	="Software patches or upgrades"	19-Mar-08	19-May-08	16000.00	=""	="DIMENSION DATA AUSTRALIA P/L"	23-May-08 04:28 PM	

+="CN85989"	" Office Relocation "	="Productivity Commission"	23-May-08	="Relocation services"	19-Mar-08	19-May-08	23000.00	=""	="MOVERS & SHAKERS BUSINESS RELOCATION"	23-May-08 04:32 PM	

+="CN85990-A1"	"Telecommunication Services"	="Productivity Commission"	23-May-08	="Telecommunication equipment installation or modification kits"	04-Mar-08	04-Mar-08	21000.00	=""	="OPTUS"	23-May-08 04:36 PM	

+="CN85991"	"Recording / Transcription"	="Productivity Commission"	23-May-08	="Transcribing services"	12-Mar-08	12-Mar-08	15000.00	=""	="SPARK & CANON AUSTRALASIA P/L"	23-May-08 04:40 PM	

+="CN85992"	"Purchase of 2 MFDs"	="Australian Securities and Investments Commission"	23-May-08	="Office Equipment and Accessories and Supplies"	19-May-08	19-May-08	44069.00	=""	="RICOH Australia Pty Ltd"	23-May-08 04:47 PM	

+="CN85995"	"Lease of carparking bay 233 Adelaide Terrace Perth."	="Australian Competition and Consumer Commission"	24-May-08	="Real estate services"	01-Apr-08	31-Mar-18	66411.27	=""	="Macquarie Office Management Limited"	24-May-08 02:37 PM	

+="CN85997"	"Lease of premises and carparking at L2, 11-19 Grenfell Street Adelaide."	="Australian Competition and Consumer Commission"	24-May-08	="Real estate services"	01-Jul-08	30-Jun-18	3137866.12	=""	="Grenfell Street Nominees Pty Ltd"	24-May-08 02:50 PM 

--- a/admin/partialdata/22Nov2007to26Nov2007valto.xls
+++ b/admin/partialdata/22Nov2007to26Nov2007valto.xls
@@ -1,818 +1,818 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN47803"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:08 AM	
-="CN47804"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:14 AM	
-="CN47805"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	04-Dec-06	03-Dec-07	35318.10	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:19 AM	
-="CN47806"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	58557.77	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:29 AM	
-="CN47807"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	61901.91	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:33 AM	
-="CN47808"	"Test Set Sychro"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	12-Oct-07	15-Feb-08	27500.00	=""	="Unitronix"	22-Nov-07 07:41 AM	
-="CN47809"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft spars"	20-Nov-07	03-Dec-07	11693.00	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 07:56 AM	
-="CN47744"	" 1. 9150 66-093-5653 Gear Lubricating Oil OX-46 IN 205LT BP AUTRAN TO-410 Qty 28 drums  2. 9150 66-093-5658 Automotive Brake Fluid H542- OX-8 IN 500ML  Bottle Qty 1200    "	="Defence Materiel Organisation"	22-Nov-07	="Lubricants and oils and greases and anti corrosives"	04-Oct-07	11-Oct-07	25319.71	=""	="BP AUSTRALIA PTY LTD"	22-Nov-07 08:03 AM	
-="CN47810-A1"	"TPS for Stabilator Amplifier"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	31-Oct-07	30-Nov-07	16340.00	=""	="Partech Systems"	22-Nov-07 08:04 AM	
-="CN47811"	"Ceremonial Shoulder Boards and Gorgets"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	23-Oct-07	30-Nov-07	75314.80	="ACC023/0708"	="P Blashki and Sons"	22-Nov-07 08:11 AM	
-="CN47815"	"Embroidered Insignia for Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	69067.35	="ACC025/0708"	="Babylon Industries"	22-Nov-07 08:39 AM	
-="CN47814"	"Embroidered Insignia for Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	71372.53	="ACC026/0708"	="Babylon Industries"	22-Nov-07 08:58 AM	
-="CN47813-A1"	"Embroidered Insignia, Tri Service"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	09-Oct-07	20-Jun-08	328590.68	="ACC009/0708"	="Babylon Industries"	22-Nov-07 09:17 AM	
-="CN47818"	"Lease at Echuca, Victoria"	="Centrelink"	22-Nov-07	="Real estate services"	01-Jan-08	31-Dec-09	225156.80	=""	="The Trustee for the Barker Family Trust"	22-Nov-07 09:22 AM	
-="CN47816"	"Supply of Tester, Switch, Hydrostatic, Qty 25, Cage: 36452 & PN: 108595."	="Defence Materiel Organisation"	22-Nov-07	="Battery testers"	10-Sep-07	09-Dec-07	14852.75	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 09:27 AM	
-="CN47823-A1"	"Aiguillettes, Gorgets and Bullion Embroidered Badges"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	13-Nov-07	30-Mar-08	131019.57	="ACC027/0708"	="P Blashki and Sons"	22-Nov-07 09:48 AM	
-="CN47825"	"Supply of Helmet Fireman's, White."	="Defence Materiel Organisation"	22-Nov-07	="Safety helmets"	20-Nov-07	31-Mar-08	68227.50	=""	="MSA (Aust) Pty Ltd"	22-Nov-07 10:02 AM	
-="CN47828-A3"	" Provision of services relating to Oracle database applications development support services "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-09	405091.60	=""	="Tarakan Consulting Pty Ltd"	22-Nov-07 10:27 AM	
-="CN47831"	"Embroidered Badges ,Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	23-Oct-07	30-Jan-08	18260.68	="ACC024/0708"	="Arcade Badge Embroidery Co"	22-Nov-07 10:36 AM	
-="CN47832"	"INSECTICIDE, D-PHENOTHRIN"	="Defence Materiel Organisation"	22-Nov-07	="Insecticides"	21-Nov-07	26-Nov-07	11830.51	=""	="CALLINGTON HAVEN PTY LTD"	22-Nov-07 10:42 AM	
-="CN47834-A1"	" Licencing of MS Office Products  "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-10	8515777.62	=""	="Dimension Data Australia Pty Ltd"	22-Nov-07 10:48 AM	
-="CN47802"	"Office Rental - Sydney, NSW"	="Australian Public Service Commission"	22-Nov-07	="Real estate services"	01-Aug-07	31-Jul-17	4185000.00	=""	="GPT Funds Management 2 Pty Ltd"	22-Nov-07 11:01 AM	
-="CN47835"	"Metal Insignia and Badges"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	07-Sep-07	15-Feb-08	35809.40	="ACC020/0708"	="Nichol Industries Pty Ltd"	22-Nov-07 11:47 AM	
-="CN47838"	"National Office supplies for workstation set up"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	01-Aug-07	28-Sep-07	34250.00	="PRN16270"	="Schiavello Commercial Interiors"	22-Nov-07 11:49 AM	
-="CN47839"	"Introduction to the Financial Management Framework"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	20-Sep-07	30-Jun-08	18000.00	="PRN16725"	="KPR FAMILY TRUST"	22-Nov-07 11:49 AM	
-="CN47840"	"SAP Australia - Funds Management Course - IPS910"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	29-Aug-07	30-Jun-08	32725.00	="PRN16671"	="SAP Australia Pty Ltd"	22-Nov-07 11:49 AM	
-="CN47841"	"Architectural Services - Function/Conference Room"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	04-Sep-07	30-Jun-08	10000.00	="PRN16680"	="PECKVONHARTEL"	22-Nov-07 11:50 AM	
-="CN47842"	"Air Conditioning Upgrade LG 14 Mort"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	30-Aug-07	30-Nov-07	53928.00	="PRN13164"	="DALKIA TECHNICAL SERVICES PTY LTD"	22-Nov-07 11:50 AM	
-="CN47843"	"16 Mort St - Level 1 Function and Conference Room Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	21-Sep-07	01-Nov-07	52729.60	="PRN16932"	="CONSTRUCTION CONTROL INTERIORS P/L"	22-Nov-07 11:50 AM	
-="CN47844"	"Executive Furniture 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="Building and Construction and Maintenance Services"	27-Sep-07	30-Jun-08	28773.00	="PRN17137"	="CITE OFFICE DESIGN PTY LIMITED"	22-Nov-07 11:50 AM	
-="CN47845"	"Placement Fee  for temporary staff"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	02-Jul-07	15-Oct-07	14000.00	="PRN16691"	="HAMILTON JAMES and BRUCE PTY LTD"	22-Nov-07 11:50 AM	
-="CN47846"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	14-Sep-07	21-Dec-07	41484.00	="PRN16938"	="CANBERRA PROFESSIONAL EQUIPMENT"	22-Nov-07 11:50 AM	
-="CN47847"	"Contractor for Incoming Government Brief"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	17-Sep-07	28-Sep-07	18000.00	="PRN16983"	="JOAN CORBETT"	22-Nov-07 11:50 AM	
-="CN47848"	"Electrical Mechanical documentation 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	06-Aug-07	28-Dec-07	31790.00	="PRN17142"	="BASSETT CONSULTING ENGINEERS"	22-Nov-07 11:50 AM	
-="CN47849"	"SES Recruitment Services"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	06-Sep-07	30-Nov-07	22000.00	="PRN16853"	="HANSEN and SEARSON MANAGEMENT SERVICE"	22-Nov-07 11:50 AM	
-="CN47851"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	14-Feb-07	25-Jan-08	66000.00	=""	="Cordelta Pty Ltd"	22-Nov-07 12:02 PM	
-="CN47853-A1"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	17-Nov-07	17-Apr-08	140000.00	=""	="Candle Australia"	22-Nov-07 12:05 PM	
-="CN47854"	"Code of Conduct Related Services"	="Department of Human Services"	22-Nov-07	="Business and corporate management consultation services"	22-Nov-07	30-Nov-07	11000.00	=""	="Quality Management Solutions Pty Ltd"	22-Nov-07 12:08 PM	
-="CN47856-A1"	"Provision for Procedures Writer"	="Comsuper"	22-Nov-07	="Human resources services"	23-Aug-07	22-Feb-08	116500.00	=""	="Face2Face Recruitment"	22-Nov-07 12:12 PM	
-="CN47860"	"Supply & Implement Software"	="National Archives of Australia"	22-Nov-07	="Software"	24-Oct-07	30-Jun-08	76615.00	=""	="The Reading Room Australia P/L"	22-Nov-07 12:19 PM	
-="CN47863-A2"	"Lease of printers, photocopiers, scanners and facsimilie equipment"	="Department of Human Services"	22-Nov-07	="Office machines and their supplies and accessories"	21-May-04	31-Aug-11	45300000.00	=""	="Fuji Xerox Australia Pty Ltd"	22-Nov-07 12:25 PM	
-="CN47866"	"Provision for Maintenance of Bizhub Colour laser printer"	="Comsuper"	22-Nov-07	="Laser printers"	20-Nov-07	20-Nov-12	40347.00	=""	="Konica Minolta Business Solutions"	22-Nov-07 12:30 PM	
-="CN47870"	"Communication services"	="Australian Crime Commission"	22-Nov-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	08-Nov-07	82040.65	=""	="ASIO"	22-Nov-07 12:51 PM	
-="CN47868"	" Research and Advisory Service Online Subscription "	="Australian Crime Commission"	22-Nov-07	="Internet based market research"	18-Oct-07	18-Oct-07	39490.00	=""	="Gartner Australia"	22-Nov-07 12:53 PM	
-="CN47867"	" Network performance monitoring equipment "	="Australian Crime Commission"	22-Nov-07	="Network analysers"	29-Oct-07	29-Oct-07	74258.00	=""	="Network General"	22-Nov-07 12:57 PM	
-="CN47864"	"Investigation into ACC internal matter"	="Australian Crime Commission"	22-Nov-07	="Private investigation services"	10-Oct-07	10-Oct-07	20000.00	=""	="HBA Consulting"	22-Nov-07 12:58 PM	
-="CN47859"	"Job advertisements"	="Australian Crime Commission"	22-Nov-07	="Advertising"	04-Aug-07	25-Aug-07	26828.00	=""	="HMA Blaze"	22-Nov-07 01:00 PM	
-="CN47855"	"International Policing Towards 2020 Conference"	="Australian Crime Commission"	22-Nov-07	="Conference centres"	19-Nov-07	21-Nov-07	11748.00	=""	="DPM Conferencing"	22-Nov-07 01:01 PM	
-="CN47852"	"Facilitation of Teamwork Project"	="Australian Crime Commission"	22-Nov-07	="Workshops"	21-Aug-07	31-Aug-07	16522.00	=""	="Mascot Solutions"	22-Nov-07 01:02 PM	
-="CN47830"	"Job advertisments"	="Australian Crime Commission"	22-Nov-07	="Advertising"	21-Jul-07	21-Jul-07	31752.78	=""	="Adcorp"	22-Nov-07 01:03 PM	
-="CN47833"	"SES Recruitment"	="Australian Crime Commission"	22-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	16170.00	=""	="Ford Kelly Executive Connection"	22-Nov-07 01:04 PM	
-="CN47829"	"Accommodation for ACC staff"	="Australian Crime Commission"	22-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Aug-07	20-Aug-07	30789.00	=""	="Bentley Suites"	22-Nov-07 01:05 PM	
-="CN47827"	" Accommodation & Venue for Conference "	="Australian Crime Commission"	22-Nov-07	="Conference centres"	30-Aug-07	08-Nov-07	20000.00	=""	="Aitken Hill Conference and Event Venue"	22-Nov-07 01:06 PM	
-="CN47873"	"Hunter RIMS Software Maintenance"	="Australian Taxation Office"	22-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	381894.27	=""	="Experian Asia Pacific Pty Ltd"	22-Nov-07 01:17 PM	
-="CN47872-A2"	"Provision of services relating to applications development"	="Australian Federal Police"	22-Nov-07	="Computer services"	20-Aug-07	30-Sep-08	229055.20	=""	="Cordelta Pty ltd"	22-Nov-07 01:18 PM	
-="CN47862"	"Adjustments for 06/07 Land Tax for Mitchell"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	32453.02	=""	="Jones Lang LaSalle (ACT) P/L"	22-Nov-07 01:33 PM	
-="CN47874"	"Adjustment of 06/07 for Land Tax - Chester Hill"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	15127.80	=""	="Jones Lang LaSalle (NSW) P/L"	22-Nov-07 01:40 PM	
-="CN47875"	"ICON Annual Levy"	="National Archives of Australia"	22-Nov-07	="Data services"	26-Oct-07	30-Jun-08	16500.00	=""	="Department of Finance"	22-Nov-07 01:44 PM	
-="CN47876"	"Fleet management and leasing services (Ref standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	30-Oct-07	29-Oct-09	19572.00	=""	="LeasePlan"	22-Nov-07 01:50 PM	
-="CN47877"	"The mailout consists of an A4 letter in a DL envelope to approx 700,000 clients."	="Australian Taxation Office"	22-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Nov-07	30-Jun-08	58608.00	="118.05"	="Hermes Precisa Pty Ltd"	22-Nov-07 01:52 PM	
-="CN47878"	"Supply of Laptops"	="National Archives of Australia"	22-Nov-07	="Notebook computers"	01-Nov-07	15-Nov-07	23945.00	=""	="Harris Technology"	22-Nov-07 01:55 PM	
-="CN47879"	" to undertake the production of 'The People of Australia' series of publication "	="Department of Immigration and Citizenship"	22-Nov-07	="Printed publications"	10-Sep-07	30-Jun-08	55350.00	="RFT07/51"	="the Trustee for EPD unit trust"	22-Nov-07 01:58 PM	
-="CN47880"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	28-Jul-06	27-Jul-08	39628.00	=""	="LeasePlan"	22-Nov-07 02:03 PM	
-="CN47881"	"Provision of Legal Services"	="Department of Education, Science and Training"	22-Nov-07	="Legal services"	29-Aug-07	31-Dec-07	11510.00	="PRN16769"	="Tom Brennan"	22-Nov-07 02:03 PM	
-="CN47883"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	09-Nov-07	08-Nov-09	40682.00	=""	="LeasePlan"	22-Nov-07 02:16 PM	
-="CN40684"	" Computer Replacement Program - Alice Springs "	="Family Court of Australia"	22-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	20-Nov-09	13970.00	=""	="Dell Australia Pty Ltd"	22-Nov-07 02:21 PM	
-="CN47882-A1"	"Contract for the provision of electronic voting services for the National Staff Consultative."	="Department of Immigration and Citizenship"	22-Nov-07	="Communications Devices and Accessories"	06-Sep-07	31-Oct-07	13556.00	=""	="Registries Limited"	22-Nov-07 02:28 PM	
-="CN47884"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	15-May-07	15-May-08	10688.00	=""	="SPSS Australasia Pty Ltd"	22-Nov-07 02:43 PM	
-="CN47885"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	73668.37	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 02:44 PM	
-="CN47886"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	22-May-07	22-May-08	12100.00	=""	="Leximancer Pty Ltd"	22-Nov-07 02:51 PM	
-="CN47557"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	21-Nov-07	03-Dec-07	11932.51	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	22-Nov-07 02:52 PM	
-="CN47887"	"Construction works for Darwin"	="Department of Immigration and Citizenship"	22-Nov-07	="Building and Construction Machinery and Accessories"	06-Sep-07	15-May-08	4059136.00	=""	="Sitzler Pty Ltd"	22-Nov-07 03:02 PM	
-="CN47889"	"Provision of software and support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	23-Jul-07	23-Jul-07	95000.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:10 PM	
-="CN47891"	"Design Facilitation - HOCOLEA Capability project"	="Australian Taxation Office"	22-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	21-Dec-07	10768.20	="05.164"	="ThinkPlace Pty Ltd as trustee for the ThinkPlace Trust"	22-Nov-07 03:14 PM	
-="CN47892"	"Provision of software and software support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	01-Jul-07	30-Jun-08	750285.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:15 PM	
-="CN47890-A1"	"CRS Alice Springs, 1/8 Gregory Terrace, NT"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	166990.00	=""	="AGEO Pty Ltd"	22-Nov-07 03:17 PM	
-="CN47893"	"Information services - Brio report developer services"	="Australian Federal Police"	22-Nov-07	="Computer services"	31-Jul-06	30-Jun-08	341000.00	=""	="Forge Data Solutions Pty Ltd"	22-Nov-07 03:17 PM	
-="CN47894"	"Provision of Caddy Units, Australia Wide"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	342201.00	=""	="Planex Sales Pty Ltd"	22-Nov-07 03:27 PM	
-="CN47888"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	72366.32	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 03:31 PM	
-="CN47897"	"FRENCH HORN, INCLUDES CASE, LYRE AND MOUTHPIECE, QUANTITY 6."	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	01-May-08	51599.99	=""	="PRO AUDIO SUPPLIES PTY LTD"	22-Nov-07 03:33 PM	
-="CN47900"	"Provision of Heigh Adjustable Desks & workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	13-Feb-07	13-Feb-07	208163.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:35 PM	
-="CN47901"	"Level1, 16 Mort St Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	02-Oct-07	31-Oct-07	11372.90	="PRN17104"	="Construction Control Interiors P/L"	22-Nov-07 03:35 PM	
-="CN47898"	"Night Vision Goggle Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	11-Sep-07	06-Jan-08	1866569.10	=""	="Point Trading"	22-Nov-07 03:36 PM	
-="CN47902"	"Provision of Height Adjustable Desks & Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	23-Mar-07	23-Mar-07	70657.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:38 PM	
-="CN47904-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	30-Nov-07	11050.00	=""	="Australian Federal Police"	22-Nov-07 03:40 PM	
-="CN47899-A1"	"Security vetting Services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	12727.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:42 PM	
-="CN47905"	"Height Adjustable Desks and Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	25164.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:42 PM	
-="CN47896-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	22-Nov-07	11300.00	=""	="Australian Federal Police"	22-Nov-07 03:43 PM	
-="CN47907"	" Cleaning Costs "	="Department of Finance and Administration"	22-Nov-07	="Cleaning and janitorial services"	12-Nov-07	11-Nov-09	1301004.40	="RFT01/MPS/2007"	="Glad Group Pty Ltd"	22-Nov-07 03:45 PM	
-="CN47908"	"Provision of height adjustable desks & workstation spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	16359.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:45 PM	
-="CN47909-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	11380.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:46 PM	
-="CN47906"	"Night Weapon Sight (F7000A) Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Surveillance and detection equipment"	18-Oct-07	18-Apr-08	230087.00	=""	="Qioptiq P/L"	22-Nov-07 03:47 PM	
-="CN47910"	"Mitchell restrooms upgrade"	="National Archives of Australia"	22-Nov-07	="Building construction and support and maintenance and repair services"	02-Nov-07	30-Jun-08	45584.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:00 PM	
-="CN47911-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	16-Nov-07	28-Dec-07	19860.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 04:02 PM	
-="CN47913"	"Changeover for Cabinet release Interactive"	="National Archives of Australia"	22-Nov-07	="Video production services"	09-Nov-07	01-Jan-08	14949.00	=""	="Lightwell P/L"	22-Nov-07 04:05 PM	
-="CN47914"	"Research - Margaret George Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	10000.00	=""	="Craig Stockings"	22-Nov-07 04:14 PM	
-="CN47915"	"Cable Assembly for Infra-red lluminators"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	17-Dec-07	99300.00	=""	="Owen International Pty Ltd"	22-Nov-07 04:16 PM	
-="CN47916"	"Research - Frederick Watson Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	15000.00	=""	="Mickey Dewar"	22-Nov-07 04:18 PM	
-="CN47917"	"Contractor Services"	="National Archives of Australia"	22-Nov-07	="Personnel recruitment"	15-Nov-07	31-Dec-07	50000.00	=""	="DFP Recruitment Services"	22-Nov-07 04:31 PM	
-="CN47920"	"Replacement of Humidifiers - Parkes"	="National Archives of Australia"	22-Nov-07	="Building support services"	15-Nov-07	30-Jun-08	20328.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:36 PM	
-="CN47921"	"CRS Australia Bankstown Suite 3, 402-410 Chapel Road Bankstown"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jul-05	30-Jun-09	480330.00	=""	="MP Delmege & AC Veale"	22-Nov-07 04:38 PM	
-="CN47923"	"Helmet Mount Frame Assembly"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	30-Nov-07	1176960.40	=""	="Point Trading"	22-Nov-07 04:42 PM	
-="CN47924"	"CRS Australia Bankstown - Sub Unit, 29 Kitchener Parade, Bankstown, NSW"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jun-07	31-May-09	26000.00	=""	="Chris Mognham"	22-Nov-07 04:43 PM	
-="CN47912"	" TROMBONE TENOR, C/W CASE, LYRE, MOUTHPIECE AND STAND, QUANTITY 11 "	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	14-Nov-08	49571.71	="RFQ 257227"	="ELTHAM WOODWIND & BRASS CENTRE"	22-Nov-07 05:02 PM	
-="CN47497"	"Purchase of coveralls, utility, grey, combat NAVY"	="Defence Materiel Organisation"	22-Nov-07	="Overalls and coveralls"	02-Nov-07	11-Feb-08	418000.00	=""	="Tuffa Workwear Pty Ltd"	22-Nov-07 05:04 PM	
-="CN47925"	" PANEL AND PAINT LANDROVER "	="Department of Defence"	22-Nov-07	="Motor vehicles"	18-Jun-07	02-Aug-07	14508.27	=""	="PETES PANEL AND PAINT"	22-Nov-07 05:23 PM	
-="CN47926"	"Ribbon for Service Cap, Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Synthetic ribbons"	02-Nov-07	06-Dec-07	14414.40	="ACC030/0708"	="Cash's Australia Pty Ltd"	22-Nov-07 05:56 PM	
-="CN47927"	" Ceremonial Sashs, Sword Knots and, Shoulder Boards and Ornamental Lace "	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	15-Nov-07	25-Mar-08	173633.13	="ACC027A/0708"	="P Blashki and Sons"	22-Nov-07 06:04 PM	
-="CN47928"	"Production of a short video on international policing"	="Australian Federal Police"	23-Nov-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	30-Jul-08	30756.00	=""	="Cre8ive Australasia Pty Ltd T/a Neon Productions"	23-Nov-07 07:03 AM	
-="CN47929-A3"	"Cleaning Service for AFP offices in Perth"	="Australian Federal Police"	23-Nov-07	="Cleaning and janitorial services"	01-Mar-06	30-Jun-11	163915.00	="6/2005"	="Delron Cleaning Pty Ltd"	23-Nov-07 07:27 AM	
-="CN47930"	"Night Aiming Device (NAD) Spares"	="Defence Materiel Organisation"	23-Nov-07	="Surveillance and detection equipment"	18-Oct-07	17-Jan-08	485082.34	=""	="BAE Systems Australia Ltd"	23-Nov-07 07:59 AM	
-="CN47931-A1"	" 9150 66-068-0440 Engine Lubricating oil  OMD 113 in 205L drum (I/C 116114)  18 EA "	="Defence Materiel Organisation"	23-Nov-07	="Lubricants and oils and greases and anti corrosives"	15-Nov-07	22-Nov-07	13069.11	=""	="CASTROL AUST PTY LTD"	23-Nov-07 08:06 AM	
-="CN47932"	"CADET SHIRT, WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	21-Nov-07	02-Jul-08	63394.37	=""	="AUSTRALIAN DEFENCE APPAREL"	23-Nov-07 08:11 AM	
-="CN47933"	"Night Vision Goggle Spares"	="Defence Materiel Organisation"	23-Nov-07	="Surveillance and detection equipment"	24-Oct-05	22-Jan-08	51920.00	=""	="Point Trading"	23-Nov-07 08:13 AM	
-="CN47934"	" 6850 66-153-6323 Liquid Cooling Corrosion Inhibitor  Nalcool Maximum C-15 in 15L pail  80  drums       "	="Defence Materiel Organisation"	23-Nov-07	="Lubricants and oils and greases and anti corrosives"	08-Oct-07	15-Oct-07	27104.00	=""	="MTU Detroit Diesel"	23-Nov-07 08:16 AM	
-="CN47936"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	08-Feb-08	19573.38	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:34 AM	
-="CN47937"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	08-Feb-08	19573.38	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:41 AM	
-="CN47938"	"A23 AIRCRAFT - REPAIRS TO CYLINDER AND PISTON ASSEMBLY,LANDING GEAR"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	19-Jan-08	28457.21	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:46 AM	
-="CN47939"	" Procurement services - review of records management procurement strategy "	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	07-May-07	15-Jun-07	46556.00	="RFT 22-2005"	="Grosvenor Management Consulting Pty Ltd"	23-Nov-07 09:07 AM	
-="CN47940"	"Provision of procurement support services"	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	02-Oct-07	01-Jun-08	80906.00	="RFT 22-2005"	="Grosvenor Management Consultants Pty Ltd"	23-Nov-07 09:37 AM	
-="CN47942"	"Life Raft, Inflatable"	="Defence Materiel Organisation"	23-Nov-07	="Lifeboats or liferafts"	10-Oct-07	09-Dec-07	26274.60	=""	="RFD AUSTRALIA"	23-Nov-07 09:52 AM	
-="CN47941"	"Procurement assistance for a workforce total time management system."	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	19-Nov-07	31-Dec-07	50000.00	="RFT 22-2005"	="Grosvenor Management Consulting Pty Ltd"	23-Nov-07 09:58 AM	
-="CN47944"	"Life Presever Vest"	="Defence Materiel Organisation"	23-Nov-07	="Life vests or preservers"	16-Oct-07	08-Jan-08	32749.20	=""	="RFD AUSTRALIA P/L"	23-Nov-07 10:04 AM	
-="CN47945"	" CRS Australia - Bega, 50 Parker Street NSW - lease term 3 years "	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	06-Jun-07	05-Jun-10	55096.64	=""	="Clifford Robert Kilner"	23-Nov-07 10:07 AM	
-="CN47946"	" CRS Australia - Belconnen, Unit 115, Level 1, Northpoint Plaza, 8 Chandler Street, ACT - 3 year term "	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Aug-07	31-Jul-10	225326.61	=""	="Belpark Pty Ltd"	23-Nov-07 10:12 AM	
-="CN47943"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	16323.59	=""	="Sikorsky Aircraft Australia LTD"	23-Nov-07 10:17 AM	
-="CN47949"	"CRS Australia - Browns Plains, 40 Browns Plains Road, Browns Plains, QLD - Lease term 3 years - Lease Value #117,454.20 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-09	117454.20	=""	="Blaszak Just Holdings Pty Ltd"	23-Nov-07 10:24 AM	
-="CN47948"	"SUPPLY OF PULSE OXIMETERS"	="Defence Materiel Organisation"	23-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	31-Dec-07	14520.00	=""	="DATEX-OHMEDA PTY LTD"	23-Nov-07 10:28 AM	
-="CN47951"	"Life Presever Vest mk15w"	="Defence Materiel Organisation"	23-Nov-07	="Life vests or preservers"	16-Oct-07	08-Jan-08	32749.20	=""	="RFD AUSTRALIA"	23-Nov-07 10:32 AM	
-="CN47953"	"CRS Australia - Coffs Harbour, Suite 1, 1 Duke Street, Coffs Harbour, NSW - Lease Term 3 year"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Feb-07	31-Jan-10	249478.27	=""	="HS, HS & MS Hayer"	23-Nov-07 10:33 AM	
-="CN47954"	"CRS Australia - Echuca, 284 Hare Street, Echuca, VIC - lease term 5 years - lease value $100,331.73 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Aug-07	31-Jul-11	100331.73	=""	="Fyne Bilt Homes Pty Ltd"	23-Nov-07 10:37 AM	
-="CN47955"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	25-Jan-09	23883.13	="Pending project manager"	="KANE CONSTRUCTIONS"	23-Nov-07 10:37 AM	
-="CN47956"	"Contractor Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Dec-07	11000.00	="."	="MANPOWER SERVICES (AUST) P/L"	23-Nov-07 10:37 AM	
-="CN47957"	"Contractor Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Apr-08	75075.00	="."	="CULTURAL PERSPECTIVES PTY LTD"	23-Nov-07 10:37 AM	
-="CN47958"	"Construction Early Works"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	697620.00	="FIN07-AMG003"	="COX HUMPHRIES MOSS"	23-Nov-07 10:37 AM	
-="CN47959-A1"	"Divestment Expenses"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	19-Oct-07	19-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	23-Nov-07 10:38 AM	
-="CN47960"	"Additional Construction Works"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	19-Nov-07	31-Jan-08	134174.48	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	23-Nov-07 10:38 AM	
-="CN47961"	"Travel - Transportation Costs"	="Department of Finance and Administration"	23-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Nov-07	21-Dec-07	13050.06	="-"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	23-Nov-07 10:38 AM	
-="CN47962"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	31-Dec-09	79395.20	="Fin05/AMG010"	="APP CORPORATION PTY LTD"	23-Nov-07 10:38 AM	
-="CN47963"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	29-Feb-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	23-Nov-07 10:38 AM	
-="CN47964"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Dec-07	60000.00	="."	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	23-Nov-07 10:38 AM	
-="CN47965"	"Peer Review"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	12-Dec-07	59297.00	="0000000"	="CSIRO (ACT)"	23-Nov-07 10:38 AM	
-="CN47966"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	23-Nov-07	10500.00	="RFTLSB01/2005"	="BLAKE DAWSON WALDRON - ACT"	23-Nov-07 10:38 AM	
-="CN47967"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	07-Dec-07	13250.00	="o"	="RISK & PROJECT MANAGEMENT PTY LTD"	23-Nov-07 10:39 AM	
-="CN47968"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	07-Dec-07	13000.00	="o"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	23-Nov-07 10:39 AM	
-="CN47971"	"CRS Australia - Epping, Suite 1, Level 1, 240 Beecroft Road, Epping, NSW - lease term 3 years - lease value $281,829.18 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Feb-06	31-Jan-09	281829.18	=""	="IOOF Australia Trustees NSW Ltd"	23-Nov-07 10:45 AM	
-="CN47975"	"CRS Australia - Geelong 183 Little Malop Street, Geelong, VIC - lease term 3 years - total lease $230,250.00 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	230250.00	=""	="JI & M Bethune"	23-Nov-07 10:51 AM	
-="CN47972"	"Purchase of Coats and Trousers, Camouflage Pattern, DPCU, Various Sizes"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	22-Aug-07	24-May-08	3119488.20	=""	="Can't Tear Em Pty Ltd"	23-Nov-07 10:51 AM	
-="CN47979"	"CRS Australia - Horsham 50D Pynsent Street, Horsham, VIC - lease term 5 years - lease Value $72,312.00 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Sep-06	31-Aug-11	72312.00	=""	="TS & SMM Leong"	23-Nov-07 10:55 AM	
-="CN47977"	" RING, DEE "	="Defence Materiel Organisation"	23-Nov-07	="Restraint straps or buckles or accessories or supplies"	16-Oct-07	15-Apr-08	55522.50	=""	="RFD AUSTRALIA"	23-Nov-07 10:57 AM	
-="CN47981"	"Supply of 15 x Cut-Off Saws, Circular, Portable, Gasoline (Husqvarna K950/16)"	="Defence Materiel Organisation"	23-Nov-07	="Power saws"	21-Nov-07	20-Dec-07	28875.00	="FV7026"	="Sydney Tools Pty Ltd"	23-Nov-07 11:11 AM	
-="CN47982"	" Supply and deliver quantity 30ea Cylinder assembly actuating  "	="Defence Materiel Organisation"	23-Nov-07	="Kinetic power transmission"	22-Nov-07	03-Jan-08	26466.00	=""	="Daimler Chrysler Australia Pacific P/L"	23-Nov-07 11:12 AM	
-="CN47983"	"Shipborne Rescue Strops"	="Defence Materiel Organisation"	23-Nov-07	="Fall protection and rescue equipment"	16-Oct-07	11-Dec-07	43340.00	=""	="SOS MARINE"	23-Nov-07 11:20 AM	
-="CN47980"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	23-Nov-07	="Medical Equipment and Accessories and Supplies"	13-Nov-07	10-Dec-07	13366.10	=""	="Becton Dickinson Pty Ltd"	23-Nov-07 11:24 AM	
-="CN47984"	"CRS Australia - Inala Shops 2 & 3, Cnr. Wirraway Parade & Partridge Street, Inala, QLD"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Dec-07	30-Nov-09	545737.87	=""	="Queensland Truck Rental Pty Ltd"	23-Nov-07 11:33 AM	
-="CN47985-A1"	"Recruitment - Software Achitect"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	26-Sep-07	30-Jun-08	282700.00	=""	="Tarakan Consulting Pty Ltd"	23-Nov-07 11:33 AM	
-="CN47986"	"Battery Assembly"	="Defence Materiel Organisation"	23-Nov-07	="Product specific battery packs"	10-Oct-07	09-Dec-07	14018.40	=""	="RFD AUSTRALIA P/L"	23-Nov-07 11:40 AM	
-="CN47989-A1"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	11-Oct-07	01-Aug-08	129040.34	=""	="Eurolink Consulting Australia P/L"	23-Nov-07 11:46 AM	
-="CN47991-A1"	"Provision for System tester"	="Comsuper"	23-Nov-07	="Human resources services"	17-Nov-07	30-Jun-08	141680.00	=""	="Fujitsu Australia Limted"	23-Nov-07 11:51 AM	
-="CN47993-A1"	"Provision of Project Manager"	="Comsuper"	23-Nov-07	="Human resources services"	01-Dec-07	30-Nov-08	286000.00	=""	="Oakton AA Services"	23-Nov-07 11:54 AM	
-="CN47990-A1"	"Services for the removal and destruction of sensitive paper waste."	="Centrelink"	23-Nov-07	="Document destruction services"	02-May-07	30-Sep-09	109156.00	=""	="Recall Information Management Pty Ltd"	23-Nov-07 11:57 AM	
-="CN47996"	"Permanenet Guard Service for ACC Sydney Office for 8 months"	="Australian Crime Commission"	23-Nov-07	="Guard services"	01-Aug-07	31-Mar-08	258057.12	=""	="Chubb Protective Services NSW"	23-Nov-07 11:58 AM	
-="CN47997"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	10-Oct-07	10-Jan-08	28872.00	=""	="Hays Personnel Service"	23-Nov-07 12:02 PM	
-="CN47987"	"SUPPRESSOR FLAS"	="Defence Materiel Organisation"	23-Nov-07	="Light weapons and ammunition"	20-Apr-07	15-May-08	53614.00	=""	="THALES PTY LDS"	23-Nov-07 12:09 PM	
-="CN47999"	"Suspension kit equipment for Toyota Landcruisers"	="Australian Crime Commission"	23-Nov-07	="Automobile suspension systems"	10-Oct-07	10-Oct-07	12854.00	=""	="Ateco Automotive Pty Ltd"	23-Nov-07 12:10 PM	
-="CN47998"	"Foam, Aqueous Film Forming, Fire Fighting x 50 200L drums"	="Defence Materiel Organisation"	23-Nov-07	="Foaming agents"	01-Nov-07	30-Nov-07	72050.00	=""	="Ansul Distribution Warehouse"	23-Nov-07 12:11 PM	
-="CN48000"	"HEEDS"	="Defence Materiel Organisation"	23-Nov-07	="Breathing apparatus accessories or supplies"	10-Oct-07	20-Nov-07	15112.02	=""	="RFD TECHNOLOGIES"	23-Nov-07 12:15 PM	
-="CN48002"	"Vehicle Compliance Inspections"	="Australian Crime Commission"	23-Nov-07	="Vehicle inspection services"	10-Oct-07	10-Oct-07	11538.00	=""	="KC Williams Consulting Pty Ltd"	23-Nov-07 12:18 PM	
-="CN48003-A1"	"CRS Australia - Lismore Suite 11, Level 1, Conway Plaza, Lismore, NSW - 2 year lease term - total lease value $104,240.50 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Oct-07	30-Sep-09	104240.50	=""	="Conway Plaza Pty Ltd"	23-Nov-07 12:20 PM	
-="CN48001"	"Purchase of Coats & Trousers, Camouflage Pattern, DPDU, Various Sizes"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	22-Aug-07	24-May-08	1783160.50	=""	="Can't Tear Em Pty Ltd"	23-Nov-07 12:21 PM	
-="CN48004"	"Computer services and equipment"	="Australian Crime Commission"	23-Nov-07	="Computer Equipment and Accessories"	10-Oct-07	10-Oct-07	51818.78	=""	="Network General"	23-Nov-07 12:23 PM	
-="CN48008"	"Recruitment - Project Manager"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	09-Oct-07	08-Jul-08	12980.26	=""	="Patriot Alliance"	23-Nov-07 12:27 PM	
-="CN48006"	"Billy Pugh Rescue Helicopter Net"	="Defence Materiel Organisation"	23-Nov-07	="Fall protection and rescue equipment"	10-Oct-07	19-Dec-07	29947.50	=""	="RFD AUSTRALIA"	23-Nov-07 12:27 PM	
-="CN48009"	"Accommodation & Venue for Leadership Program"	="Australian Crime Commission"	23-Nov-07	="Conference centres"	04-Dec-07	06-Dec-07	12200.00	=""	="Novotel Canberra"	23-Nov-07 12:31 PM	
-="CN48012"	" RAAF Ensign Flags "	="Defence Materiel Organisation"	23-Nov-07	="Flags or accessories"	23-Nov-07	15-Mar-08	18703.30	="ACC003/0708"	="Carrol and Richardson Flagworld"	23-Nov-07 12:52 PM	
-="CN47857"	"Omniscope software - Microsoft Outlook Plug-In for E-Mail & Project Management."	="Administrative Appeals Tribunal"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	31-Oct-08	15000.00	=""	="Think Software Solutions Pty Ltd"	23-Nov-07 12:54 PM	
-="CN48014"	"Provision of Height Adjustable desks and workstation spines"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	30-Nov-06	30-Nov-06	21896.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:11 PM	
-="CN48013"	"Legal Advice and Representation"	="Australian Crime Commission"	23-Nov-07	="Legal services"	09-May-07	09-Aug-07	14274.50	=""	="Tim Game SC Barrister"	23-Nov-07 01:11 PM	
-="CN48015-A1"	" Provision of Caddy unit Australia wide "	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	49775.00	=""	="Planex Sales Pty Ltd"	23-Nov-07 01:15 PM	
-="CN48016"	"Provision of height adjustable desks and workstations"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	03-Oct-06	03-Oct-06	45951.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:18 PM	
-="CN48017"	"Printer cartridges"	="Australian Crime Commission"	23-Nov-07	="Inks"	19-Oct-07	19-Oct-07	12720.71	=""	="Cornerstone TSS Pty Ltd"	23-Nov-07 01:18 PM	
-="CN48018"	"Provision of height adjustable desks and workstations"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	22-May-07	22-May-07	75768.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:21 PM	
-="CN48019"	"Security System Installation ACC Darwin"	="Australian Crime Commission"	23-Nov-07	="Security and control equipment"	23-Oct-07	23-Oct-07	137731.00	=""	="Honeywell Ltd"	23-Nov-07 01:23 PM	
-="CN48021-A5"	" Provision of Information Technology Specialist Services "	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	15-Nov-07	03-Oct-08	387035.00	=""	="CSC Australia"	23-Nov-07 01:28 PM	
-="CN48022-A1"	"Value Focusing Workshop"	="Australian Crime Commission"	23-Nov-07	="Workshops"	23-Oct-07	24-Nov-07	17967.37	=""	="The Value Creation Group"	23-Nov-07 01:29 PM	
-="CN48023"	"Systems for People Release 2 - CCMD"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	04-Jun-07	06-Aug-07	410163.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:32 PM	
-="CN48024-A1"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	17-Oct-07	29-Feb-08	113632.00	=""	="Eurolink Consulting Australia P/L"	23-Nov-07 01:32 PM	
-="CN47869"	"Legal Services in relation to tender/contract"	="Australian Crime Commission"	23-Nov-07	="Legal services"	29-Oct-07	29-Nov-07	50000.00	=""	="Blake Dawson Waldron"	23-Nov-07 01:34 PM	
-="CN48025"	"Official visit"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Business administration services"	30-Jul-07	16-Sep-07	12900.00	=""	="NINA FUDALA"	23-Nov-07 01:36 PM	
-="CN48026-A5"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	20-Mar-07	17-Jul-09	442750.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 01:36 PM	
-="CN47861"	"Legal Advice"	="Australian Crime Commission"	23-Nov-07	="Legal services"	12-Sep-07	12-Sep-07	11514.00	=""	="Australian Government Solicitor"	23-Nov-07 01:36 PM	
-="CN47416"	"IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	23-Jul-07	23-Jul-07	106964.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 01:39 PM	
-="CN48027"	"Monitoring Officer Training Programme - Sanctions Regime"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	01-Jul-07	28-Sep-07	132000.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:39 PM	
-="CN47439"	"Software Maintenance"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	26-Jul-07	22-Mar-08	19810.70	=""	="Planwell Technology Pty Ltd"	23-Nov-07 01:41 PM	
-="CN48029"	" 457 Monitoring Officer Training Programme "	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	04-Jun-07	30-Jun-07	16500.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:43 PM	
-="CN47442-A2"	"Software Development - Recruitment"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	27-Jul-07	30-Jun-08	173307.50	=""	="Tarakan Consulting Pty Ltd"	23-Nov-07 01:43 PM	
-="CN47455"	"Vidcon maintenance"	="Australian Crime Commission"	23-Nov-07	="Videoconferencing systems"	30-Jul-07	30-Apr-08	10560.00	=""	="Vantage Systems Pty Ltd"	23-Nov-07 01:44 PM	
-="CN48028"	"Provision of executive recruitment services"	="Australian Federal Police"	23-Nov-07	="Recruitment services"	21-May-07	20-May-08	29700.00	=""	="Ford Kelly Executive Connection Pty Ltd"	23-Nov-07 01:44 PM	
-="CN48030"	"Interpreter - official hospitality"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Writing and translations"	11-Sep-07	11-Sep-07	11000.00	=""	="CONGRESS RENTAL"	23-Nov-07 01:46 PM	
-="CN48031"	"provision of executive recruitment services"	="Australian Federal Police"	23-Nov-07	="Recruitment services"	21-May-07	20-May-08	90200.00	=""	="Ford Kelly Executive Connection"	23-Nov-07 01:50 PM	
-="CN48032"	"Interpreter - official hospitalityi"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Writing and translations"	02-Sep-07	09-Sep-07	24000.00	=""	="CONGRESS RENTAL"	23-Nov-07 01:52 PM	
-="CN48033-A2"	"457 Monitoring Officer Training Program"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	01-Jul-07	30-Sep-07	119630.00	=""	="Wisdom Learning Pty Ltd"	23-Nov-07 01:55 PM	
-="CN48036-A1"	"Driver training course"	="Australian Federal Police"	23-Nov-07	="Vocational training"	01-Mar-08	30-Jun-08	18750.00	="May-05"	="Transport Industry Skills Centre Inc"	23-Nov-07 02:00 PM	
-="CN48020"	"SLING, SMALL ARMS"	="Defence Materiel Organisation"	23-Nov-07	="Light weapons and ammunition"	19-Nov-07	27-Feb-08	78144.00	=""	="THALES PTY LTD"	23-Nov-07 02:02 PM	
-="CN48037"	"motor vehicle spare parts"	="Department of Defence"	23-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Nov-07	30-Nov-07	21320.16	=""	="ALBURY SPEED & PERFORMANCE CENTRE"	23-Nov-07 02:05 PM	
-="CN47429"	"SAP Standard Maintenance Service"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	25-Jul-07	25-Jul-07	36932.00	=""	="SAP Australia Pty Ltd"	23-Nov-07 02:07 PM	
-="CN48038"	"POCKET RADIO SURVIVAL"	="Defence Materiel Organisation"	23-Nov-07	="Aircraft spars"	22-Aug-07	25-Oct-07	56460.00	=""	="Light Aircraft"	23-Nov-07 02:07 PM	
-="CN48040"	"Monitoring Officer Training Programme"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	28-May-07	30-Jun-07	33000.00	=""	="Wisdom Learning Pty Ltd"	23-Nov-07 02:08 PM	
-="CN48039"	"Flammable liquid storage cabinets"	="Department of Defence"	23-Nov-07	="Hazardous materials cabinets"	22-Nov-07	07-Dec-07	24100.00	=""	="Protector Alsafe Pty Ltd"	23-Nov-07 02:09 PM	
-="CN45515"	"ANTI-VIRUS SOFTWARE LICENCES"	="Department of Human Services"	23-Nov-07	="License management software"	15-Oct-07	29-Oct-07	12276.00	=""	="DATAFLEX PTY LTD"	23-Nov-07 02:10 PM	
-="CN48041-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	06-Jul-07	30-Jun-09	418990.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 02:11 PM	
-="CN45511"	" CUSTOMER SATISFACTION RESEARCH FOR THE HUMAN SERVICES AGENCIES. "	="Department of Human Services"	23-Nov-07	="Telecommunications media services"	26-Oct-07	30-Dec-08	15532.00	=""	="Taylor Nelson Sofres Australia P/L"	23-Nov-07 02:12 PM	
-="CN47410"	"Change Management Solutions"	="Australian Crime Commission"	23-Nov-07	="Business and corporate management consultation services"	18-Jul-07	12-Dec-07	350000.00	=""	="Cogent Business Solutions"	23-Nov-07 02:17 PM	
-="CN47413"	"Server"	="Australian Crime Commission"	23-Nov-07	="Computer servers"	20-Jul-07	20-Jul-07	79912.00	=""	="One Planet"	23-Nov-07 02:18 PM	
-="CN47431"	"ERP Project Preparation"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	25-Jul-07	25-Jul-07	586315.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:19 PM	
-="CN47604"	"ERP Project Realization Activities"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	21-Aug-07	21-Aug-07	711568.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:21 PM	
-="CN47638"	"ERP Project Preparation"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	24-Aug-07	24-Aug-07	185181.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:22 PM	
-="CN48042-A1"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Permanent information technology networking specialists"	02-Jul-07	30-Jun-08	99000.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 02:23 PM	
-="CN47407"	"HP Communication Switches"	="Australian Crime Commission"	23-Nov-07	="Communications Devices and Accessories"	16-Jul-07	16-Jul-07	161582.00	=""	="Commander"	23-Nov-07 02:24 PM	
-="CN47464"	"Legal fees"	="Australian Crime Commission"	23-Nov-07	="Legal services"	02-Aug-07	02-Sep-07	11023.55	=""	="Australian Government Solicitor"	23-Nov-07 02:25 PM	
-="CN47469-A1"	"Media Monitoring Service"	="Australian Crime Commission"	23-Nov-07	="News and publicity services"	06-Aug-07	06-Aug-07	17248.36	=""	="Media Monitors Pty Ltd"	23-Nov-07 02:26 PM	
-="CN47470"	" Photocopier Impress Charges "	="Australian Crime Commission"	23-Nov-07	="Printer and facsimile and photocopier supplies"	06-Aug-07	06-Aug-07	21000.00	=""	="Fuji"	23-Nov-07 02:26 PM	
-="CN47472"	"Supply and Installation of Loose Furniture"	="Australian Crime Commission"	23-Nov-07	="Office furniture"	06-Aug-07	20-Sep-07	11774.00	=""	="CITE Office Furniture"	23-Nov-07 02:27 PM	
-="CN48043-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	07-Jun-07	29-Aug-08	147840.00	=""	="Ambit Group Pty Ltd"	23-Nov-07 02:28 PM	
-="CN47478"	"Analyst Notebook V6 User Course"	="Australian Crime Commission"	23-Nov-07	="Computer based training software"	08-Jul-07	08-Jul-07	47272.72	=""	="Visual Analysis"	23-Nov-07 02:28 PM	
-="CN48035"	" DETECTOR KIT, EXPLOSIVES VAPOURTRACER PORTABLE  "	="Defence Materiel Organisation"	23-Nov-07	="Chemical evaluation instruments and supplies"	23-Nov-07	10-Dec-07	140195.00	=""	="GE SECURITY PTY LTD"	23-Nov-07 02:29 PM	
-="CN47480"	"Software licence"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	09-Aug-07	09-Aug-07	10046.00	=""	="Cybertrust Australia"	23-Nov-07 02:31 PM	
-="CN48046"	"Monitoring Officer Training Programme"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	23-Aug-07	05-Jun-08	49875.00	=""	="Intelligence Dynamics Pty Ltd"	23-Nov-07 02:31 PM	
-="CN48044"	"Design Services for implementation of the AFP Brand"	="Australian Federal Police"	23-Nov-07	="Branding of product naming services"	22-Jun-07	31-Jul-07	70000.00	=""	="Adcorp Australia Ltd"	23-Nov-07 02:32 PM	
-="CN48045"	" Airfares "	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Passenger transport"	30-Aug-07	30-Nov-07	33900.00	=""	="CARLSON WAGONLIT TRVEL NAVIGANT AUSTRALIA Pty Ltd"	23-Nov-07 02:33 PM	
-="CN47482"	"Novell Yearly Maintenance"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	09-Aug-07	09-Aug-07	60078.00	=""	="Novell"	23-Nov-07 02:33 PM	
-="CN47483"	"PABX Installation"	="Australian Crime Commission"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	10-Aug-07	10-Aug-07	19551.00	=""	="NEC Business Solutions"	23-Nov-07 02:35 PM	
-="CN48047"	"Assessment Officer for Complinace Portfolios"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology software developers"	01-Jul-07	31-Oct-07	94875.00	=""	="Australian Forensic Services"	23-Nov-07 02:35 PM	
-="CN47486"	" Backup Software "	="Australian Crime Commission"	23-Nov-07	="Backup or archival software"	13-Aug-07	13-Aug-07	19689.00	=""	="Alphawest"	23-Nov-07 02:37 PM	
-="CN47487"	"Computer Hardware"	="Australian Crime Commission"	23-Nov-07	="Computer Equipment and Accessories"	15-Aug-07	15-Aug-07	23238.00	=""	="Cerulean Solutions"	23-Nov-07 02:38 PM	
-="CN47492"	"Project Management & Implementation"	="Australian Crime Commission"	23-Nov-07	="Application implementation services"	15-Aug-07	15-Aug-07	19943.00	=""	="Cerulean Solutions"	23-Nov-07 02:39 PM	
-="CN47556-A1"	"Training Course"	="Australian Crime Commission"	23-Nov-07	="Computer based training software"	16-Aug-07	24-Aug-07	16406.62	=""	="SAP Australia Pty Ltd"	23-Nov-07 02:40 PM	
-="CN48050-A1"	"Supply and Installation of Electronic Key Safes"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Security systems services"	01-Aug-07	31-Jul-10	290574.64	=""	="CIC Secure Pty Ltd"	23-Nov-07 02:40 PM	
-="CN48049"	" Compliance Officer Training "	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	25-Jul-07	26-Oct-07	32400.00	=""	="Australian Forensic Services"	23-Nov-07 02:40 PM	
-="CN47577"	"Media Monitoring Service"	="Australian Crime Commission"	23-Nov-07	="News and publicity services"	17-Aug-07	17-Aug-07	10664.00	=""	="Media Monitors"	23-Nov-07 02:41 PM	
-="CN47616"	"Engineering Services for Acoommodation Project"	="Australian Crime Commission"	23-Nov-07	="Professional engineering services"	21-Aug-07	21-Aug-07	20000.00	=""	="B Armstrong and Co"	23-Nov-07 02:42 PM	
-="CN48051"	"Official visit"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	28000.00	=""	="ESS SUPPORT SERVICES WORLDWIDE"	23-Nov-07 02:42 PM	
-="CN48053"	"Monitoring Officer Training"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	03-Jul-07	07-Sep-07	24000.00	=""	="Intelligence Dynamics"	23-Nov-07 02:46 PM	
-="CN48052"	"EXTINGUISHER, FIRE WATER, AIR PRESSURE TYPE, 10 LITRE, C/W WALL BRACKET"	="Defence Materiel Organisation"	23-Nov-07	="Fire extinguishers"	28-Aug-07	14-Dec-07	65092.50	=""	="CHUBB FIRE SAFETY LTD"	23-Nov-07 02:47 PM	
-="CN47626"	"Security Services"	="Australian Crime Commission"	23-Nov-07	="Guard services"	21-Aug-07	21-Aug-07	22028.00	=""	="Scope Protective Services"	23-Nov-07 02:49 PM	
-="CN48054"	"delivery of a professional development delivery framework"	="Australian Federal Police"	23-Nov-07	="Vocational training"	12-Sep-07	12-Mar-08	64350.00	=""	="Tanner James Management Consultants Pty Ltd"	23-Nov-07 02:49 PM	
-="CN47631"	" Graduate Recruitment Services "	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	23-Aug-07	23-Aug-07	39430.00	=""	="Value Edge"	23-Nov-07 02:50 PM	
-="CN47630"	" Autocapture DVD/Video "	="Australian Crime Commission"	23-Nov-07	="Motion pictures on digital video disk DVD"	23-Aug-07	23-Aug-07	54203.00	=""	="The Microcare CD Group"	23-Nov-07 02:51 PM	
-="CN47552-A3"	" Recruitment IT Specialist "	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	19-Sep-07	26-Sep-08	402115.40	=""	="ICON Recruitment Pty ltd"	23-Nov-07 02:52 PM	
-="CN48055"	"UXC Limited"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology software developers"	15-Oct-07	30-Jun-08	265980.00	=""	="UXC Limited"	23-Nov-07 02:52 PM	
-="CN47745"	" Secure Storage "	="Australian Crime Commission"	23-Nov-07	="File archive storage"	31-Aug-07	30-Nov-07	18926.00	=""	="Recall Information Management"	23-Nov-07 02:54 PM	
-="CN47826"	"Household removal and storage costs"	="Australian Crime Commission"	23-Nov-07	="Personnel relocation"	11-Jul-07	11-Jul-07	23943.00	=""	="Toll Transitions"	23-Nov-07 02:55 PM	
-="CN47824"	"Recovery of agency contributions in respect of NT"	="Australian Crime Commission"	23-Nov-07	="Economic cooperation services"	17-Jul-07	17-Jul-07	10444.00	=""	="ASIO"	23-Nov-07 02:56 PM	
-="CN48056-A3"	"Development and Implementation of Creative Advertising Strategy"	="Department of Immigration and Citizenship"	23-Nov-07	="Brand marketing or advertising instructional materials"	24-Sep-07	30-Jun-08	1091595.00	=""	="Newd Corp Pty Ltd"	23-Nov-07 02:56 PM	
-="CN47822"	"Participation in the APS Remuneration Survey"	="Australian Crime Commission"	23-Nov-07	="Sampling surveys"	09-Jul-07	09-Jul-07	10000.00	=""	="DEWR"	23-Nov-07 02:57 PM	
-="CN47821"	"IBM Annual Software Maintenance"	="Australian Crime Commission"	23-Nov-07	="Software maintenance and support"	01-Jul-07	30-Jun-08	20275.00	=""	="IBM Australia"	23-Nov-07 02:57 PM	
-="CN47797"	"Guarding Jul07"	="Australian Crime Commission"	23-Nov-07	="Guard services"	30-Jul-07	31-Jul-07	32257.14	=""	="Chubb Protective Services NSW"	23-Nov-07 02:58 PM	
-="CN47801"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	01-Jul-07	08-Mar-08	174528.00	=""	="Hurtile Pty Ltd"	23-Nov-07 02:59 PM	
-="CN48010-A2"	" Strategic Business Case Development "	="Department of Immigration and Citizenship"	23-Nov-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	31-May-08	320000.00	=""	="APP Corportation Pty Limited"	23-Nov-07 02:59 PM	
-="CN47800"	"Voice/Data Network Services"	="Australian Crime Commission"	23-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Jul-07	30-Jun-08	108000.00	=""	="PowerTel Pty ltd"	23-Nov-07 03:00 PM	
-="CN47799"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	26-Aug-07	08-Mar-08	102515.00	=""	="Hurtile"	23-Nov-07 03:01 PM	
-="CN47794"	"Window Film/Glazing"	="Australian Crime Commission"	23-Nov-07	="Window film"	08-Oct-07	08-Jan-08	11141.46	=""	="3M Australia Pty Ltd"	23-Nov-07 03:02 PM	
-="CN48057"	"supply of radio equipment"	="Australian Federal Police"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Mar-07	31-Dec-07	1063156.00	=""	="Motorola Australia Pty Limited"	23-Nov-07 03:03 PM	
-="CN47792-A1"	"PABX usage charges (all states)"	="Australian Crime Commission"	23-Nov-07	="Fixed phones"	05-Oct-07	30-Jun-08	257716.00	=""	="Powertel Ltd"	23-Nov-07 03:03 PM	
-="CN47790-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	21-Sep-07	01-Aug-08	162790.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:04 PM	
-="CN47788"	"Legal Services"	="Australian Crime Commission"	23-Nov-07	="Legal services"	12-Sep-07	12-Dec-07	40000.00	=""	="Australian Government Solicitor"	23-Nov-07 03:05 PM	
-="CN47748"	" Drives for Tape Library "	="Australian Crime Commission"	23-Nov-07	="Tape drives"	04-Sep-07	04-Sep-07	58922.54	=""	="Sun Microsystems"	23-Nov-07 03:06 PM	
-="CN47747"	"Engagement of QC General Counsel"	="Australian Crime Commission"	23-Nov-07	="Legal services"	31-Aug-07	30-Jun-08	208330.00	=""	="Sashi Maharaj"	23-Nov-07 03:07 PM	
-="CN47743-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	30-Aug-07	01-Aug-08	114224.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:08 PM	
-="CN47738"	"Transact cost recovery"	="Australian Crime Commission"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	28-Aug-07	28-Nov-07	22309.74	=""	="ASIO"	23-Nov-07 03:10 PM	
-="CN48058"	" supply of communications services and equipment "	="Australian Federal Police"	23-Nov-07	="Components for information technology or broadcasting or telecommunications"	23-Mar-07	31-Dec-07	1052403.00	=""	="Motorola Australia Pty Limited"	23-Nov-07 03:11 PM	
-="CN47736-A6"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	24-Sep-07	30-Jun-08	367983.20	=""	="Jakeman Business Solutions"	23-Nov-07 03:11 PM	
-="CN47735"	"Trim Context and Diem maintenance"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	25-Sep-07	30-Jun-08	75659.36	=""	="iCognition Pty Ltd"	23-Nov-07 03:12 PM	
-="CN47730"	"Values Focusing Workshops"	="Australian Crime Commission"	23-Nov-07	="Workshops"	25-Sep-07	25-Sep-07	60935.97	=""	="The Value Creation Group"	23-Nov-07 03:13 PM	
-="CN47727"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	19-Sep-07	19-Mar-08	93600.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:14 PM	
-="CN47723-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	20-Sep-07	26-Sep-08	161585.32	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:15 PM	
-="CN47657"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	12-Sep-07	12-Sep-07	92534.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:16 PM	
-="CN48059-A1"	"Supplementry panel for audit, risk management and fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Apr-08	52688.90	=""	="Protiviti Pty Limited"	23-Nov-07 03:17 PM	
-="CN47655-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	29-Sep-07	31-Dec-08	291099.38	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:17 PM	
-="CN47654"	"Certificate IV training"	="Australian Crime Commission"	23-Nov-07	="Human resource development"	04-Sep-07	04-Sep-07	32200.00	=""	="McMillan Staff Development"	23-Nov-07 03:18 PM	
-="CN47650"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	44704.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:19 PM	
-="CN47648"	"HR Course"	="Australian Crime Commission"	23-Nov-07	="Human resources services"	31-Aug-07	31-Aug-07	10000.00	=""	="Victoria Police"	23-Nov-07 03:21 PM	
-="CN48060"	"Supplementary panel for audit, risk management and fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	29-Feb-08	174000.00	=""	="KPMG"	23-Nov-07 03:22 PM	
-="CN47643"	" Chair "	="Australian Crime Commission"	23-Nov-07	="Furniture"	30-Aug-07	30-Aug-07	25579.00	=""	="Formway Furniture"	23-Nov-07 03:22 PM	
-="CN47641"	"Photocopier"	="Australian Crime Commission"	23-Nov-07	="Photocopiers"	27-Aug-07	27-Aug-07	22636.00	=""	="Ricoh"	23-Nov-07 03:23 PM	
-="CN47640"	"Photocopiers"	="Australian Crime Commission"	23-Nov-07	="Photocopiers"	27-Aug-07	27-Aug-07	57307.00	=""	="Ricoh"	23-Nov-07 03:24 PM	
-="CN47639-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	28-Aug-07	26-Sep-08	219040.00	=""	="Matera"	23-Nov-07 03:25 PM	
-="CN47633"	"Recruitment fee"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	24-Aug-07	24-Aug-07	12986.00	=""	="Hays Personnel"	23-Nov-07 03:26 PM	
-="CN48061-A2"	" Development of an online debriefing service "	="Australian Federal Police"	23-Nov-07	="Software"	01-Jul-08	30-Jun-09	105000.00	=""	="Measured Insights Pty Ltd"	23-Nov-07 03:27 PM	
-="CN48064"	"Review of ACC Legal Services - Consultancy"	="Australian Crime Commission"	23-Nov-07	="Business and corporate management consultation services"	20-Aug-07	07-Sep-07	23760.00	=""	="Herne Gray and Associates Pty Ltd"	23-Nov-07 03:38 PM	
-="CN48062"	" CHAINSAW, AIRCOOLED, TWO STROKE, SINGLE CYLINDER "	="Defence Materiel Organisation"	23-Nov-07	="Power saws"	23-Nov-07	27-Nov-07	18715.40	="G5805"	="HUSQVARNA PTY LTD"	23-Nov-07 03:40 PM	
-="CN48065-A1"	"Audit assistance for the management of Credit Cards Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Aug-07	30-Apr-08	18386.00	=""	="Allanson Consulting Pty Ltd"	23-Nov-07 03:41 PM	
-="CN48066-A1"	"IT Refresh Program - Centrelink"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Jan-07	31-Dec-07	78848.62	=""	="Resolution Consulting Services"	23-Nov-07 03:42 PM	
-="CN48067-A1"	"Assistance with TM1 & maintenance of the Audit Management System & Time Allocations."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Jul-04	30-Jun-08	20000.00	=""	="Excelerated Consulting Pty Ltd"	23-Nov-07 03:42 PM	
-="CN48068-A1"	"2007-08 Data Cards for the ANAO"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Enhanced telecommunications services"	01-Jul-04	30-Jun-08	30000.00	=""	="Telstra Corporation"	23-Nov-07 03:42 PM	
-="CN48069-A1"	"Support materials for ANAO Officers taking part in the CA Program."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Adult education"	01-Jul-04	30-Jun-08	47000.00	=""	="Kaplan Education Pty Ltd"	23-Nov-07 03:42 PM	
-="CN48070-A1"	" ANAO - ICON Annual Levy "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Fibre telecommunications services"	01-Jul-07	30-Jun-08	16500.00	=""	="Dept of Finance and Administration - Dept"	23-Nov-07 03:42 PM	
-="CN48071-A1"	"Evaluation Panel Member for Business Partnership Agreement Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Jul-07	30-Jun-08	18375.00	=""	="Christopher Conybeare and Associates"	23-Nov-07 03:42 PM	
-="CN48072-A1"	" Pointsec Software Support and Renewal "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	10282.80	=""	="McEvoy Thomas Pty Ltd"	23-Nov-07 03:42 PM	
-="CN48073-A1"	"06-07 DFACSIA Triple Bottom Line Report"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Sep-07	01-Jul-08	45000.00	=""	="Pricewaterhouse Coopers"	23-Nov-07 03:42 PM	
-="CN48074-A1"	" Notes and Collaboration Software Maintenance and Renewal "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Sep-07	31-Jul-09	20134.60	=""	="KAZ Technology Services Pty Ltd"	23-Nov-07 03:42 PM	
-="CN48075-A1"	"Design and Print Better Practice Guide on Internal Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Printing"	02-Aug-07	30-Sep-07	35266.00	=""	="Cre8ive"	23-Nov-07 03:43 PM	
-="CN48076-A1"	"Annual maintenance fee - Assure products 02-12-2007 to 01-12-2009"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	02-Dec-07	01-Dec-09	55000.00	=""	="Protiviti Pty Ltd"	23-Nov-07 03:43 PM	
-="CN48077-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	02-Nov-07	30-Sep-08	479638.00	=""	="Axiom Associates Pty Ltd"	23-Nov-07 03:43 PM	
-="CN48078-A1"	"Assessment of Customs Performance Audit on the Management of Illegal, Unreported & Unregulated Fishing in Southern Ocean"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	03-Aug-07	28-Feb-08	18750.00	=""	="Meryl Annette Stanton"	23-Nov-07 03:43 PM	
-="CN48079-A1"	"Undertake audit work in relation to the Building Certification of Aged Care Homes Performance Audit."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	06-Aug-07	16-Nov-07	128550.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:43 PM	
-="CN48080-A1"	"Design and Print Better Practice Guide Fairness and Transparency in Purchasing Decisions"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Printing"	07-Aug-07	07-Sep-07	22276.17	=""	="Comcom Pty Ltd T/A Zoo"	23-Nov-07 03:43 PM	
-="CN48081-A1"	"Assist with development of policy and guidance material for PASG."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	07-May-07	31-Oct-07	30000.00	=""	="Ann Thurley"	23-Nov-07 03:43 PM	
-="CN48082-A1"	"PASG Audit Advisory Panel Member for the Management of Recruitment Audit."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	07-Sep-07	20-Dec-07	24100.00	=""	="AH Revelations Pty Ltd"	23-Nov-07 03:43 PM	
-="CN48083-A1"	"Intruder-resistant requirements for Ground Floor North."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Locks and security hardware and accessories"	10-Oct-07	31-Dec-07	22086.63	=""	="Australian Security Industries Pty Ltd"	23-Nov-07 03:44 PM	
-="CN48084-A1"	"Intruder-resistant requirements for Ground Floor North."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Locks and security hardware and accessories"	10-Oct-07	31-Dec-07	26812.50	=""	="Territory Glass and Alluminium"	23-Nov-07 03:44 PM	
-="CN48085-A1"	"PASG Audit Advisory Panel Member for Australian Government Agencies Management of their Websites."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	10-Sep-07	30-Jun-08	12000.00	=""	="Sigma Management Science Pty Ltd"	23-Nov-07 03:44 PM	
-="CN48086-A1"	"Provision of advice on development & analysis of survey for Australian Government Agencies Management of their Websites"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	10-Sep-07	30-Jun-08	13710.00	=""	="Protiviti Pty Ltd"	23-Nov-07 03:44 PM	
-="CN48087-A1"	" Engagement of temporary administrative staff "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Personnel recruitment"	10-Sep-07	30-Nov-07	25000.00	=""	="The Green and Green Group Pty Ltd"	23-Nov-07 03:44 PM	
-="CN48088-A1"	" Develop a revised ANAO Style Manual "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Editorial and support services"	11-Sep-07	30-Oct-07	10000.00	=""	="Kathryn Dahlenburg"	23-Nov-07 03:44 PM	
-="CN48089-A1"	" Engagement of temporary audit staff "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	13-Aug-07	31-Dec-07	19440.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	23-Nov-07 03:44 PM	
-="CN48090-A1"	"Expert advice for the Managing Parliamentary Workflow Better Practice Guide"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	13-Jun-07	30-Apr-08	40000.00	=""	="Christopher Conybeare and Associates"	23-Nov-07 03:45 PM	
-="CN48091-A1"	" Construct SES Office Level 2 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Workstations and office packages"	13-Sep-07	28-Sep-07	15895.00	=""	="SMI Fitout Pty Limited"	23-Nov-07 03:45 PM	
-="CN48092-A1"	" Purchase of tables and chairs for meeting room "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Office furniture"	17-Aug-07	17-Sep-07	19210.00	=""	="Dexion Canberra"	23-Nov-07 03:45 PM	
-="CN48093-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Jul-07	17-Aug-07	20000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	23-Nov-07 03:45 PM	
-="CN48095-A1"	"Actuarial Services in relation to DFRDB Review of Unfunded Superannuation Liabilities."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Jul-07	31-Aug-07	16500.00	=""	="Russell Employee Benefits"	23-Nov-07 03:45 PM	
-="CN48096-A6"	" Financial Statement Audit of the Australian National University from 2007 to 2010.  Includes two Option Years taken up. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Sep-07	01-Jan-12	1301981.00	=""	="RSM Bird Cameron"	23-Nov-07 03:45 PM	
-="CN48097-A1"	" Senior Executive Service Conference November 2007 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Adult education"	19-Nov-07	20-Nov-07	15000.00	=""	="Milton Park Country House Hotel"	23-Nov-07 03:45 PM	
-="CN48098-A1"	"Provision of Audit Services for Audit of Initiation of Business System Projects"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	20-Aug-07	12-Oct-07	31500.00	=""	="Pitt Group Pty Ltd"	23-Nov-07 03:46 PM	
-="CN48099-A1"	" Finance One Support and Maintenance for 2007-08 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	23-Oct-08	29-Oct-08	59765.97	=""	="Technology One Ltd"	23-Nov-07 03:46 PM	
-="CN48101-A1"	"Provision of original audit services for the Management of Recruitment Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	24-Aug-07	20-Dec-07	12251.00	=""	="Allanson Consulting Pty Ltd"	23-Nov-07 03:46 PM	
-="CN48102-A1"	"Employment advertisement in the Financial Review"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Print advertising"	24-Aug-07	24-Aug-07	10478.60	=""	="hma Blaze Pty Limited"	23-Nov-07 03:46 PM	
-="CN48103-A1"	" Integration of Security Systems "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Security and control equipment"	25-Aug-07	07-Sep-07	17607.95	=""	="Domestic Security Services Pty Ltd"	23-Nov-07 03:46 PM	
-="CN48104-A1"	"Develop, undertake and report on on-line survey for Australian Government Agencies Management of their Websites."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	25-Sep-07	30-Jun-08	14850.00	=""	="ORIMA Research"	23-Nov-07 03:46 PM	
-="CN48105-A1"	" Overhall chiller at 19 National Circuit "	="Australian National Audit Office (ANAO)"	23-Nov-07	="General building and office cleaning and maintenance services"	27-Aug-07	27-Oct-07	18810.00	=""	="Honeywell Ltd"	23-Nov-07 03:46 PM	
-="CN48106-A1"	"Undertake further detailed analysis of PASG responses to 2007 ANAO Staff Survey"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Business and corporate management consultation services"	27-Sep-07	30-Nov-07	20240.00	=""	="ORIMA Research"	23-Nov-07 03:47 PM	
-="CN48107-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	29-Oct-07	30-Jun-08	147620.00	="ANAOAM2007/294"	="Audit and Assurance Consulting Services"	23-Nov-07 03:47 PM	
-="CN48109-A1"	"TM1 upgrade to v9 & implement Base TM1 Web Functionality."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	30-Jul-07	31-Jul-07	22704.00	=""	="Excelerated Consulting Pty Ltd"	23-Nov-07 03:47 PM	
-="CN48112-A1"	"50 Leaders Licenses for the period 01-09-2007 to 31-08-2008."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Network applications software"	30-Sep-07	29-Sep-08	35871.00	=""	="80-20 Software Pty Ltd"	23-Nov-07 03:47 PM	
-="CN48114-A1"	" Software upgrade and support Oct 07 - Sept 08 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	30-Sep-07	29-Sep-08	36256.00	=""	="Oracle Corporation Australia Pty Limited"	23-Nov-07 03:47 PM	
-="CN48110"	"Supplementary panel for Audit, Risk Management and Fraud Control Services."	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	28-Feb-08	50600.00	=""	="KPMG"	23-Nov-07 03:48 PM	
-="CN48115-A1"	" Software Licence and Maintenance "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	31-Aug-07	31-Aug-08	23691.27	=""	="KAZ Technology Services Pty Ltd"	23-Nov-07 03:48 PM	
-="CN48116-A1"	" Conduct 2006-07 Client Survey "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Business and corporate management consultation services"	31-Dec-07	31-Mar-08	31350.00	=""	="ORIMA Research"	23-Nov-07 03:48 PM	
-="CN48117-A1"	"Review of unfunded super liabilities"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	31-Jul-07	31-Aug-07	40800.00	=""	="Deloitte Touche Tohmatsu"	23-Nov-07 03:48 PM	
-="CN48113"	"Data extraction, preparation and reconciliation"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	29-Oct-07	29-Oct-07	16500.00	=""	="Longley Stapleton"	23-Nov-07 03:48 PM	
-="CN48118"	"supplementary panel for audit, risk management & fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Jun-08	93000.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:53 PM	
-="CN48121"	"TRIM Software Maintenance Coverage"	="Australian Crime Commission"	23-Nov-07	="Software maintenance and support"	01-Jul-07	30-Jun-08	15716.75	=""	="Alphawest Pty Ltd"	23-Nov-07 03:57 PM	
-="CN48122"	"Supplementary panel for Audit, Risk Management & Fraud Control Services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Dec-07	77000.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:58 PM	
-="CN48123"	"Supplementary panel for audit, risk management & fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Dec-07	55000.00	=""	="Protiviti Pty Limited"	23-Nov-07 04:04 PM	
-="CN48125"	"STO funding model evaluation"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	20-Feb-06	20-Feb-09	20000.00	=""	="Protiviti Pty Limited"	23-Nov-07 04:11 PM	
-="CN48126"	" Aviation Spares. Additional Repairable Items for the AS350BA Squirrel Helicopter Fleet.  Qty: 1 x 'Canopy Assembly',  NSN: 1560-66-112-3170. "	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	23-Nov-07	12-Jan-08	47966.36	=""	="AUSTRALIAN AEROSPACE, LTD"	23-Nov-07 04:18 PM	
-="CN48124"	"Provision of forensic research and advice"	="Australian Federal Police"	23-Nov-07	="Medical science and research"	30-Oct-06	31-Dec-09	114000.00	=""	="University of Canberra"	23-Nov-07 04:24 PM	
-="CN48127-A1"	" Aviation Spares, additional Repairable Item for the AS350BA Squirrel Helicopter Fleet. Qty: 1 x 'Beam, Aircraft, Tail Boom Assembly', NSN: 14-559-2209. "	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	13-Nov-07	20-Jul-08	39029.20	=""	="AUSTRALIAN AEROSPACE, LTD"	23-Nov-07 04:24 PM	
-="CN48129"	" Traffic control - tyre deflation devices "	="Australian Federal Police"	23-Nov-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	06-Aug-07	05-Aug-10	37631.00	=""	="Stop Stick International Ltd"	23-Nov-07 04:32 PM	
-="CN48130-A2"	"Commercial Property Lease"	="National Native Title Tribunal"	23-Nov-07	="Real estate services"	01-Jul-07	30-Jun-14	7275391.00	=""	="Perpetual Nominees Ltd"	23-Nov-07 04:36 PM	
-="CN48134"	"Cleaning services commercial office space"	="National Native Title Tribunal"	23-Nov-07	="Building cleaning services"	01-Jul-07	30-Jun-08	22616.88	=""	="OCS Services"	23-Nov-07 04:53 PM	
-="CN48135"	"Conference co-ordination and management services"	="Australian Federal Police"	23-Nov-07	="Management and Business Professionals and Administrative Services"	14-May-07	05-Dec-07	48300.00	=""	="DPM Conferencing Pty Ltd T/A The Communication Link"	23-Nov-07 05:03 PM	
-="CN48132"	" Cleaning Services for Christmas Island police station "	="Australian Federal Police"	23-Nov-07	="Cleaning and janitorial services"	13-Sep-07	12-Sep-09	34944.00	="RFQ 76-2006"	="Full Moon International Pty Ltd"	23-Nov-07 05:04 PM	
-="CN48136"	"Plant Hire"	="National Native Title Tribunal"	23-Nov-07	="Live Plant and Animal Material and Accessories and Supplies"	01-Oct-07	30-Sep-09	14270.40	=""	="Rentokil Tropical Plants"	23-Nov-07 05:06 PM	
-="CN48137-A1"	"Rental Plant Hire"	="National Native Title Tribunal"	23-Nov-07	="Live Plant and Animal Material and Accessories and Supplies"	01-Nov-07	30-Oct-09	15756.96	=""	="Ambius"	23-Nov-07 05:11 PM	
-="CN48138-A1"	" Proprty lease Guadalcanal Solomon Islands "	="Australian Federal Police"	23-Nov-07	="Lease and rental of property or building"	01-Aug-05	31-Jul-09	1882650.00	=""	="Pacific Properties Development Ltd"	23-Nov-07 05:14 PM	
-="CN48140"	"F88 SARES PURCHASED UNDER STANDING OFFER PD 5860018."	="Defence Materiel Organisation"	25-Nov-07	="Light weapons and ammunition"	24-Oct-07	13-Aug-08	100707.20	=""	="THALES AUSTRALIA"	25-Nov-07 11:54 AM	
-="CN48141"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	21-Feb-08	17619.80	=""	="A AND D INTERNATIONAL PTY LTD"	26-Nov-07 07:47 AM	
-="CN48142"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	15-Mar-08	31295.00	=""	="LOPAC PTY LTD"	26-Nov-07 07:52 AM	
-="CN45690"	"Supply of Power Steering Boxes, NSN 2530-66-155-0739 and qty 93."	="Defence Materiel Organisation"	26-Nov-07	="War vehicles"	09-Nov-07	04-Feb-08	143590.33	=""	="Land Rover Australia"	26-Nov-07 09:18 AM	
-="CN48143"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	64694.31	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:26 AM	
-="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	
-="CN48144"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	26-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	11-Dec-07	19991.86	=""	="Symbion Pharmacy Services"	26-Nov-07 09:30 AM	
-="CN48146"	"REPAIR OF BLACKHAWK MAIN ROTOR FLUTTER DAMPENER"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	10798.01	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:45 AM	
-="CN48147-A1"	"Lease at Perth, WA"	="Department of Human Services"	26-Nov-07	="Lease and rental of property or building"	01-Mar-03	31-Aug-11	980422.19	=""	="Centro MCS Manager Limited"	26-Nov-07 09:51 AM	
-="CN48148-A2"	"Provision of landscaping services to the AFP in the ACT"	="Australian Federal Police"	26-Nov-07	="Landscaping services"	17-Jan-05	16-Jan-08	141857.00	="RFT 2004-09"	="Ropolo Services Pty Ltd trading as Landscape Direct"	26-Nov-07 09:58 AM	
-="CN48151"	" Software purchase "	="Future Fund Management Agency"	26-Nov-07	="Software"	19-Nov-07	19-Dec-07	15070.00	=""	="The Mathworks Australia Pty Ltd"	26-Nov-07 10:40 AM	
-="CN48153-A1"	"VP 176- email archiving solution"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	64039.39	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48154-A1"	"VP 175- Electorate Briefs Automation"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	12441.59	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48155"	"HMA Blaze - Advertising and Promotion of BIA Telecommuncation program"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	30-Jun-08	18649.16	="ATM07/541"	="HMA BLAZE"	26-Nov-07 11:31 AM	
-="CN48156-A1"	"APS Jobs Subscription 07-08"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17773.97	="ATM 07/638"	="Australian Public"	26-Nov-07 11:31 AM	
-="CN48157-A1"	"VP 181- Election Project Manager"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	38800.00	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48158"	"SW Wing Upper Floor Refurbishment Project Management Fees"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	01-Jul-07	31-Dec-07	100000.00	="ATM2007/00634"	="MANTEENA"	26-Nov-07 11:32 AM	
-="CN48159"	"Bulk Order for Books for DCITA Library"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Published Products"	15-Nov-07	30-Nov-07	14173.60	="ATM2007/00640"	="DA INFORMATION SERVICES PTY LT"	26-Nov-07 11:32 AM	
-="CN48160"	"Strengthening SPAM legislation, enforcement & cooperation regimes in Niue,Samoa & Vanuatu"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	20-Feb-08	88594.00	="CCR/07/3042"	="Galexia"	26-Nov-07 11:32 AM	
-="CN48161"	"PAFO: Provision of external audit advice to contracted PC filters vendors"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	11403.00	="ATM07/630"	="Grosvenor Management Consulting"	26-Nov-07 11:32 AM	
-="CN48162"	"Administrative Support for Bookings Officer"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	20-Nov-07	28-Mar-08	11950.88	=""	="THE GREEN AND GREEN GROUP PTY LTD"	26-Nov-07 11:32 AM	
-="CN48163-A1"	"Analysis of Travel Costs"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	21177.13	="DCON/05/53"	="ACUMEN ALLIANCE"	26-Nov-07 11:32 AM	
-="CN48164-A1"	"Career Development Assessment for staff member"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	28-Nov-07	11430.00	="ATM 07/672"	="Australian Public"	26-Nov-07 11:32 AM	
-="CN48165-A1"	"Career Development Assessment individual staff"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Nov-07	11825.00	="ATM07/671"	="Australian Public"	26-Nov-07 11:32 AM	
-="CN48166"	"Spotless monthly maintenance november 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13072.14	="ATM2007/00679"	="Spotless P&F Pty Ltd"	26-Nov-07 11:32 AM	
-="CN48167"	"Elecrticity Supply for November 2007 for OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	22-Nov-07	22-Dec-07	59400.00	="2007/00677"	="ActewAGL"	26-Nov-07 11:33 AM	
-="CN48168"	"OPH Gas Supply - November 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13595.93	="ATM2007/00678"	="ACTEWAGL"	26-Nov-07 11:33 AM	
-="CN48169"	"Convergent Consulting Indigenous Community Radio Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	59840.00	="ATM07/241"	="CONVERGENT CONSULTING"	26-Nov-07 11:33 AM	
-="CN48170-A1"	"Brandis Comcar Account"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Transportation and Storage and Mail Services"	01-Feb-07	03-Dec-07	27205.59	="ATM 07/625"	="COMCAR (DOFA)"	26-Nov-07 11:33 AM	
-="CN48171-A1"	"Market Research for the Telecommunications Consumer Community Information Campaign"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	12-Dec-06	29-Jun-08	374434.76	="2007/00578"	="QUANTUM MARKET RESEARCH"	26-Nov-07 11:33 AM	
-="CN48172"	"Lift Package- New Lift in Members Dining Rooms Project Management & Associated Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	15950.00	="CCR2007/00528"	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-Nov-07 11:33 AM	
-="CN48173"	"Building Works including mechanical, hydraulic, fire services, joinery & finishes PMs' cent"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Jun-08	12202.65	=""	="SPS STRATEGIC PROPERTY SERVICES"	26-Nov-07 11:33 AM	
-="CN48174-A2"	"Graphic Design Annual Report"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Aug-07	30-Jun-08	19999.00	="DCON/05/105"	="MA@D COMMUNICATION"	26-Nov-07 11:33 AM	
-="CN48175-A1"	"Telstra License Conditions"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	23-Aug-07	13-May-08	70000.00	="DCON/06/45"	="DLA  Phillips Fox"	26-Nov-07 11:34 AM	
-="CN48176"	"Courtyard Refurbishment - OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Oct-07	77539.00	="ATM2007/147"	="Picasso Building Pty Ltd"	26-Nov-07 11:34 AM	
-="CN48177-A1"	"10x servers ITFB"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	24-Sep-07	29-Nov-07	12232.00	="ATM07/331"	="DATAFLEX PTY LTD"	26-Nov-07 11:34 AM	
-="CN48179-A1"	"Nyaarla Projects: Backing Indigenous Ability Funding for Kalgoorlie, Sth Hedland & Geraldton"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="ATM07/468"	="Nyaarla Projects Pty Ltd"	26-Nov-07 11:34 AM	
-="CN48180"	"Griffiths Skills Training Centre: Backing Indigenous Ability Funding Wagga and Bourke"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/470"	="Griffith Skills Training Centre Inc"	26-Nov-07 11:34 AM	
-="CN48181-A1"	"Uptuyu Adventures - Backing Indigenous Ability Funding for Kununurra, Derby & Broome"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="CCR/07/1572"	="Uptuyu Adventures"	26-Nov-07 11:34 AM	
-="CN48183"	"Centre for Appropriate Technology - Backing Indigenous Ability Funding Mt Isa"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/475"	="Centre for Appropriate Technology"	26-Nov-07 11:35 AM	
-="CN48185-A1"	"Ethos Global Foundation Ltd: Backing Indigenous Ability Darwin, Katherine and Nhulunbuy"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	16-Oct-07	30-Jun-10	100000.01	="ATM07/497"	="Ethos Global Foundation Ltd"	26-Nov-07 11:35 AM	
-="CN48186"	"The Trustee for the King Family Trust (Techlink) Funding for BIA Port Augusta and Ceduna"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	30-Oct-07	30-Jun-10	72950.00	="ATM07/561"	="The Trustee for the King Family Tru"	26-Nov-07 11:35 AM	
-="CN48187"	"Actuarial & Associated cost for CSS and PSS"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11600.00	="ATM2007/00621"	="DEPT OF FINANCE & ADMINISTRATION"	26-Nov-07 11:35 AM	
-="CN48188"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	26-Nov-07	="Environmental security control services"	22-Nov-07	28-Dec-07	20026.05	=""	="Honeywell Limited"	26-Nov-07 11:44 AM	
-="CN48189"	"ICT Service panel Information  & Communication Services (DPS05048"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	28-Dec-07	48510.00	=""	="Adept KM Pty Ltd"	26-Nov-07 11:44 AM	
-="CN48190"	"PABX Supply and Implementation Failties Managemet Team Contract (DPS04082)"	="Department of Parliamentary Services"	26-Nov-07	="Telecommunications planning services"	21-Nov-07	28-Dec-07	143961.09	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48191"	"ICT Service panel Information  & Communication Contract (DPS05048 )"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	28-Dec-07	19140.00	=""	="Greythorn Pty Ltd"	26-Nov-07 11:45 AM	
-="CN48192"	"Voices services(local,national & moblie calls Contract (DPS04114)"	="Department of Parliamentary Services"	26-Nov-07	="Phone and video conference equipment and hardware and controllers"	21-Nov-07	28-Dec-07	17722.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48193"	"Duct work  maintenace & Rehabilition Services Contract (JH00057M )"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	21-Nov-07	28-Dec-07	628724.25	=""	="Chubb Fire Safety Limited"	26-Nov-07 11:45 AM	
-="CN48194"	"Provision  of  Audit services"	="Department of Parliamentary Services"	26-Nov-07	="Audit services"	20-Nov-07	30-Nov-07	22000.00	=""	="KPMG"	26-Nov-07 11:45 AM	
-="CN48195"	"Provision  of  Temporary contract labour Contract (DPS041980"	="Department of Parliamentary Services"	26-Nov-07	="Temporary manual labour"	19-Nov-07	23-Dec-07	22000.00	=""	="Jewell & Buckley P/L"	26-Nov-07 11:45 AM	
-="CN48196"	"Provision  of software upgrade to Alcaltel PABX Systems"	="Department of Parliamentary Services"	26-Nov-07	="Software patches or upgrades"	16-Nov-07	30-Dec-07	31847.20	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48197"	"Supply of Waste Bin Tipping Machines"	="Department of Parliamentary Services"	26-Nov-07	="Material handling machinery and equipment"	16-Nov-07	30-Nov-07	19646.00	=""	="Wrightway Products"	26-Nov-07 11:45 AM	
-="CN48198"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	26-Nov-07	="Carpeting"	16-Nov-07	30-Nov-07	10389.50	=""	="Chesta's Floors"	26-Nov-07 11:46 AM	
-="CN48199"	"Provision of  uniterruptible power supply"	="Department of Parliamentary Services"	26-Nov-07	="Power generation control equipment"	15-Nov-07	30-Dec-07	38885.00	=""	="Honeywell Limited"	26-Nov-07 11:46 AM	
-="CN48200"	"Supply of  Computer Server"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	14-Nov-07	31-Dec-07	28600.00	=""	="Frontline Systems Australia Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48201"	"Licensing for MySAP ERP includes software support & Maintenace Contract (DPS05084)"	="Department of Parliamentary Services"	26-Nov-07	="Software maintenance and support"	14-Nov-07	30-Jun-08	77623.87	=""	="SAP Australia Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48202"	"Supply of  Computer Servers"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	13-Nov-07	30-Nov-07	96382.66	=""	="Dell Australia P/L"	26-Nov-07 11:46 AM	
-="CN48203"	"Provision of  Purchase of Sissor Lift"	="Department of Parliamentary Services"	26-Nov-07	="Scissor lift"	13-Nov-07	30-Nov-07	25190.00	=""	="Force Access Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48204"	"Provision of actuarial and associated services"	="Department of Parliamentary Services"	26-Nov-07	="Public enterprises management or financial services"	09-Nov-07	30-Nov-07	11600.00	=""	="Department of Finance &"	26-Nov-07 11:46 AM	
-="CN48205"	"Ceramic and Quarry Tile Maintenance"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	08-Nov-07	31-Dec-07	14126.37	=""	="PDA Marble & Granite"	26-Nov-07 11:47 AM	
-="CN48206"	"Provision of Professional Recruitment Services"	="Department of Parliamentary Services"	26-Nov-07	="Temporary personnel services"	13-Nov-07	30-Nov-07	21920.80	=""	="Kowalski Recruitment P/L"	26-Nov-07 11:47 AM	
-="CN48207"	"Provision of Internet Services"	="Department of Parliamentary Services"	26-Nov-07	="Internet services"	21-Nov-07	30-Nov-07	164242.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:47 AM	
-="CN48208"	"Services of Electro Group Trainees (Contract DPS04030)"	="Department of Parliamentary Services"	26-Nov-07	="Contractors all risks insurance"	12-Nov-07	30-Nov-07	22000.00	=""	="The Electrotechnology Industry"	26-Nov-07 11:47 AM	
-="CN48209"	"Advice on pest control service requirements at Parliament House"	="Department of Parliamentary Services"	26-Nov-07	="Pest control"	12-Nov-07	30-Nov-07	15477.00	="DPS07089"	="accessUTS Pty Ltd"	26-Nov-07 11:47 AM	
-="CN48210"	"Provision of Project Management Services"	="Department of Parliamentary Services"	26-Nov-07	="Project management"	12-Nov-07	31-Dec-07	199100.00	=""	="Manteena Pty Ltd"	26-Nov-07 11:48 AM	
-="CN48211"	"Lease at Benalla, Victoria."	="Centrelink"	26-Nov-07	="Real estate services"	01-Jul-07	30-Jun-09	31574.40	=""	="North East Support and Action for Youth Incorporated"	26-Nov-07 11:53 AM	
-="CN48212"	"B  CLASS CABINETS"	="Australian Taxation Office"	26-Nov-07	="Furniture and Furnishings"	15-Nov-07	15-Nov-07	10474.97	=""	="PLANEX SALES PTY LTD"	26-Nov-07 11:56 AM	
-="CN48213"	"Personal Efficency Program course 8 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	15-Nov-07	05-Feb-08	26400.00	=""	="D'ARCY CONSULTING GROUP PTY"	26-Nov-07 11:56 AM	
-="CN48214"	"ELG Facilitation"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	13860.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	26-Nov-07 11:56 AM	
-="CN48215"	"Payment Summaries"	="Australian Taxation Office"	26-Nov-07	="Financial and Insurance Services"	19-Nov-07	30-Nov-07	20815.91	=""	="CITEC"	26-Nov-07 11:56 AM	
-="CN48216"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	20-Nov-07	25-Jun-08	267960.00	=""	="SPECTRUMTECH PTY LTD"	26-Nov-07 11:56 AM	
-="CN48218"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	12-May-08	125840.00	=""	="CORDELTA PTY LTD"	26-Nov-07 11:57 AM	
-="CN48219"	"6 X POLYCOM VTX1000 WIDEBAND CONFERENCE PHONES"	="Australian Taxation Office"	26-Nov-07	="Office Equipment and Accessories and Supplies"	13-Nov-07	13-Nov-07	11939.40	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	26-Nov-07 11:57 AM	
-="CN48220"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	13-Nov-07	13-Nov-07	154000.00	=""	="CTIUM CONSULTING PTY.LTD"	26-Nov-07 11:57 AM	
-="CN48221"	"Seibel Essentials course 6 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	19-Nov-07	25465.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 11:57 AM	
-="CN48222"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	191343.80	=""	="TECHPOINT CONSULTING"	26-Nov-07 12:18 PM	
-="CN48223"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	798405.54	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:18 PM	
-="CN48224"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	525286.83	=""	="INFO RAIL PTY LTD"	26-Nov-07 12:18 PM	
-="CN48225"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	864020.71	="ITC"	="EUROLINK CONSULTING AUST P/L"	26-Nov-07 12:19 PM	
-="CN48226"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	323123.90	=""	="HITECH PERSONNEL"	26-Nov-07 12:19 PM	
-="CN48227"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	24-Jul-07	30-Jun-08	8523059.82	="ITC"	="COMPAS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48228"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jul-07	30-Jun-08	17874.48	=""	="OPEN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48229"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	26-Jul-07	30-Jun-08	182275.83	="ITC"	="SATURN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48230"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	30-Jul-07	30-Jun-08	1633500.00	="ITC"	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:19 PM	
-="CN48231"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	93447.13	=""	="RADIUS SOLUTIONS GROUP PTY LTD"	26-Nov-07 12:19 PM	
-="CN48232"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	369509.94	="ITC"	="INTERPRO AUSTRALIA PTY LTD"	26-Nov-07 12:19 PM	
-="CN48233"	"Scribe services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	03-Aug-07	30-Jun-08	12000.00	=""	="RECRUITMENT MANAGEMENT"	26-Nov-07 12:20 PM	
-="CN48234"	"Enhancement to DM to Support Jaws & Dragon"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	06-Aug-07	30-Jun-08	28049.74	=""	="80-20 SOFTWARE PTY LTD"	26-Nov-07 12:20 PM	
-="CN48235"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	462243.14	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Nov-07 12:20 PM	
-="CN48236"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	291837.69	=""	="PALADIN SYSTEMS PTY LTD"	26-Nov-07 12:20 PM	
-="CN48237"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	1499523.66	="ITC"	="IPP TECHNOLOGIES PTY LTD"	26-Nov-07 12:20 PM	
-="CN48238"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Aug-07	30-Jun-08	724534.47	=""	="AMBIT IT & T"	26-Nov-07 12:20 PM	
-="CN48239"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	92719.09	=""	="OOSW CONSULTING PTY LTD"	26-Nov-07 12:20 PM	
-="CN48241"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	79140.00	=""	="AFFINITY IT RECRUITMENT"	26-Nov-07 12:20 PM	
-="CN48242"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	08-Aug-07	30-Jun-08	170655.24	=""	="EMTOR PTY LTD"	26-Nov-07 12:21 PM	
-="CN48243"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	55328.87	=""	="ITRAC RESOURCES PTY LTD"	26-Nov-07 12:21 PM	
-="CN48244"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	592043.88	=""	="PAXUS AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	
-="CN48245"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	253125.40	=""	="ENCORE IT SERVICES PTY LTD"	26-Nov-07 12:21 PM	
-="CN48246"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	423594.29	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	
-="CN48247"	"Freight Services for ITSG 07/08 FY"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	06-Jul-07	30-Jun-08	34966.50	=""	="COPE TRANSPORT (SA) PTY LTD"	26-Nov-07 12:21 PM	
-="CN48248"	"Relocations / Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation services equipment"	06-Jul-07	30-Jun-08	10000.00	=""	="NEWAY"	26-Nov-07 12:21 PM	
-="CN48249"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	22614.90	="ITC"	="AURORA INVESTMENTS & SYSTEMS PTY LT"	26-Nov-07 12:22 PM	
-="CN48250"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	41030.00	=""	="OXYGEN BUSINESS SOLUTIONS PTY LTD"	26-Nov-07 12:22 PM	
-="CN48251"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	154000.00	=""	="READIFY PTY LTD"	26-Nov-07 12:22 PM	
-="CN48252"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Jul-07	30-Jun-08	74915.50	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:22 PM	
-="CN48253"	"Pre-employment & OHS checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	09-Jul-07	09-Jul-07	10000.00	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:22 PM	
-="CN48254"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	10-Jul-07	30-Jun-08	20250.80	=""	="TELSTRA (VIC)"	26-Nov-07 12:22 PM	
-="CN48255"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	11-Jul-07	30-Jun-08	823764.49	=""	="AUREC PTY LTD"	26-Nov-07 12:22 PM	
-="CN48256"	"Security clearances - vetting"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	11-Jul-07	11-Jul-07	53000.00	=""	="KVS KEY VETTING SERVICES"	26-Nov-07 12:23 PM	
-="CN48257"	"Handling and Storage"	="Department of Employment and Workplace Relations"	26-Nov-07	="Storage"	12-Jul-07	12-Jul-07	41000.00	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	26-Nov-07 12:23 PM	
-="CN48258"	"Freight overnight bag"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	13-Jul-07	21-Dec-07	10000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:23 PM	
-="CN48259"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	17623.10	=""	="LINK RECRUITMENT PTY"	26-Nov-07 12:23 PM	
-="CN48260"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	1431088.13	=""	="FACE2FACE RECRUITMENT"	26-Nov-07 12:23 PM	
-="CN48261"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	401194.88	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	26-Nov-07 12:23 PM	
-="CN48262"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	435642.90	=""	="M & T RESOURCES"	26-Nov-07 12:23 PM	
-="CN48263"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	92400.00	="ITC"	="SKILLSEARCH CONTRACTING PTY LTD"	26-Nov-07 12:24 PM	
-="CN48264"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	201635.78	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:24 PM	
-="CN48265"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	1138361.20	=""	="TARAKAN CONSULTING PTY LTD"	26-Nov-07 12:24 PM	
-="CN48266"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	523380.00	=""	="ISG"	26-Nov-07 12:24 PM	
-="CN48267"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	244642.36	=""	="GLENDAR CONSULTING"	26-Nov-07 12:24 PM	
-="CN48268"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	457929.38	=""	="MANPOWER SERVICES"	26-Nov-07 12:24 PM	
-="CN48269"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	425098.00	=""	="GREYTHORN PTY LTD"	26-Nov-07 12:24 PM	
-="CN48270"	"Sponsorship of Australian Human Resources Summit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	04-Sep-07	12-Sep-07	11000.00	=""	="Association & Communications"	26-Nov-07 12:24 PM	
-="CN48271"	"Online OH&S Induction Training Module"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-Sep-07	30-Jun-08	18000.00	=""	="NOEL ARNOLD & ASSOCIATES"	26-Nov-07 12:24 PM	
-="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	
-="CN48273"	"48 Port Serial Consoles"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	04-Sep-07	30-Jun-08	40027.12	=""	="ALPHAWEST SERVICE PTY LTD"	26-Nov-07 12:25 PM	
-="CN48274"	"Entitlement"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-Sep-07	05-Sep-07	13611.07	="ITC"	="JUST LAW - TRUST ACCOUNT"	26-Nov-07 12:25 PM	
-="CN48275"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	05-Sep-07	30-Sep-08	43043.27	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:25 PM	
-="CN48276"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Sep-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	26-Nov-07 12:25 PM	
-="CN48277"	"EMS-Development and Implementation"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	23601.60	=""	="UNITED GROUP SERVICES - BUSINESS AC"	26-Nov-07 12:25 PM	
-="CN48278"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	06-Sep-07	30-Jun-08	157080.00	="ICT"	="IT MATTERS"	26-Nov-07 12:25 PM	
-="CN48279"	"LSL & Rec Transfers - Interagency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	06-Sep-07	13682.59	=""	="CENTRELINK FST SHARED SERVICES - NS"	26-Nov-07 12:25 PM	
-="CN48280"	"Accommodation for staff  for National Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	09-Sep-08	15642.84	="DEPT"	="COLLIERS INTERNATIONAL (NT) PTY LTD"	26-Nov-07 12:26 PM	
-="CN48281"	"Long term leasing of vehicles to lift Remote Area"	="Department of Employment and Workplace Relations"	26-Nov-07	="Motor vehicles"	06-Sep-07	21-Dec-07	90000.00	="Centrelink RFT F06/0124"	="THRIFTY CAR RENTAL"	26-Nov-07 12:26 PM	
-="CN48282"	"Staff rental property for National  Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	05-Sep-08	21280.00	="DEWR RFQ 2007/Sep"	="ELDERS TERRITORY REAL ESTATE"	26-Nov-07 12:26 PM	
-="CN48283"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Sep-07	30-Jun-08	162360.00	="TBA"	="HITACHI DATA SYSTEMS"	26-Nov-07 12:26 PM	
-="CN48284"	"Promotion of Job Placement Services and"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	30-Jun-09	99000.00	=""	="RECRUITMENT & CONSULTING"	26-Nov-07 12:26 PM	
-="CN48285"	"Benchmarking of Airborne Exposures"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	14-Dec-07	38500.00	=""	="UNIVERSITY OF WESTERN SYDNEY"	26-Nov-07 12:26 PM	
-="CN48286"	"Provide CEB's with driver training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	15000.00	=""	="DIRECT 4WD AWARENESS"	26-Nov-07 12:26 PM	
-="CN48287"	"Photcopiers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office machines and their supplies and accessories"	07-Sep-07	30-Jan-12	10608.40	=""	="RICOH AUSTRALIA (ROA)"	26-Nov-07 12:26 PM	
-="CN48288"	"removal   storage costs"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	13000.00	=""	="ALLIED PICKFORDS PTY LTD"	26-Nov-07 12:27 PM	
-="CN48289"	"36 Todd Mall, Mezzanine Level"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	07-Sep-07	30-Jun-08	1946243.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:27 PM	
-="CN48290"	"Contract services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	10-Sep-07	21-Sep-07	15000.00	="."	="OAKTON AA SERVICES PTY LTD"	26-Nov-07 12:27 PM	
-="CN48291"	"Software"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	10-Sep-07	30-Jun-08	18525.00	=""	="MICROWAY P/L"	26-Nov-07 12:27 PM	
-="CN48292"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	10-Sep-07	30-Jun-08	21659.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	
-="CN48293"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	13222.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	
-="CN48294"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	199084.20	=""	="VEROSSITY"	26-Nov-07 12:27 PM	
-="CN48295"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	386779.12	=""	="AVIKO PTY LTD"	26-Nov-07 12:27 PM	
-="CN48296"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	84230.27	=""	="TELSTRA (VIC)"	26-Nov-07 12:27 PM	
-="CN48297"	"Archiving Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Aug-07	27-Sep-08	12999.73	=""	="MANAGEMENT SOLUTIONS"	26-Nov-07 12:27 PM	
-="CN48298"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1256314.47	=""	="MOSAIC RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	
-="CN48299"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	21-Aug-07	30-Jun-08	1925000.00	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	
-="CN48300"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1066506.88	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	
-="CN48301"	"Licenses"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	23-Aug-07	30-Jun-08	1897673.13	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	
-="CN48302"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	23-Aug-07	30-Jun-08	21401.05	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	
-="CN48303"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	72600.00	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:28 PM	
-="CN48304"	"Computers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Aug-07	28-Aug-07	19690.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	
-="CN48305"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	30-Aug-07	30-Jun-08	20585.08	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:28 PM	
-="CN48306"	"IT Software Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	18446.00	=""	="QUANTUM TECHNOLOGY"	26-Nov-07 12:29 PM	
-="CN48307"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	57043.25	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:29 PM	
-="CN48308"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	31-Aug-07	127567.89	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	26-Nov-07 12:29 PM	
-="CN48309"	"Delivery of SAC training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Vocational training"	31-Aug-07	31-Dec-07	18906.00	=""	="AUSTRALIAN PUBLIC SERVICE"	26-Nov-07 12:29 PM	
-="CN48310"	"Fitouts"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	30-Jun-08	94684.23	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	
-="CN48311"	"Archival Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	60000.00	=""	="IRON MOUNTAIN PTY LTD"	26-Nov-07 12:29 PM	
-="CN48312"	"IT Equipment maintenance support"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	175282.80	=""	="TECHFLEX PTY LTD"	26-Nov-07 12:29 PM	
-="CN48313"	"Fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	03-Sep-07	30-Jun-08	57085.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	
-="CN48314"	"DEWR LVL12 BLD Perth - Tenancy Refit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	10068.30	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	
-="CN48315"	"Alice Springs - Fitout 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	53757.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	
-="CN48316"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	03-Sep-07	30-Nov-10	16200.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:30 PM	
-="CN48317"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	1214883.90	=""	="CANDLE AUSTRALIA LTD"	26-Nov-07 12:30 PM	
-="CN48318"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	04-Aug-06	30-Jun-07	550000.00	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	
-="CN48319"	"Postage Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	04-Aug-06	30-Jun-07	10030.54	=""	="AUSTRALIA POST (PERTH 6164555)"	26-Nov-07 12:30 PM	
-="CN48320"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	08-Aug-06	30-Jun-07	86615.45	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	
-="CN48321"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	14-Nov-07	18-Nov-07	303177.60	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	
-="CN48322"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	08-Aug-06	30-Jun-07	12485.32	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	
-="CN48323"	"Temporary Employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-Aug-06	09-Aug-06	11767.57	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:31 PM	
-="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	
-="CN48325"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	21-Aug-06	30-Jun-07	15714.60	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:31 PM	
-="CN48326"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	24-Aug-06	30-Jun-07	443900.83	=""	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:31 PM	
-="CN48327"	"Collateral - Market/Display Material"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	25-Aug-06	30-Jun-07	12407.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	26-Nov-07 12:31 PM	
-="CN48328"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Aug-06	30-Jun-08	42443.97	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:31 PM	
-="CN48329"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	437530.67	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	
-="CN48330"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	12464.31	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	
-="CN48331"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	19-Sep-06	30-Nov-10	400000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	26-Nov-07 12:31 PM	
-="CN48332"	"Health Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	13-Oct-06	30-Jun-07	11517.00	=""	="MLCOA - (Canberra)"	26-Nov-07 12:32 PM	
-="CN48333"	"OHS Induction Training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	13-Oct-06	30-Jun-07	19500.00	=""	="WSP ENVIRONMENTAL PTY LTD"	26-Nov-07 12:32 PM	
-="CN48334"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	42095.45	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48335"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	214888.35	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48336"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	190542.36	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48337"	"PropNSWOrange 21-29WilliamsSt (level 1)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	10-Nov-06	31-Aug-11	1192920.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48338"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Nov-06	01-Jun-10	279118.47	=""	="SALMAT  LIMITED"	26-Nov-07 12:32 PM	
-="CN48339"	"Contract Management training services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	17-Nov-06	30-Apr-07	350000.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	26-Nov-07 12:32 PM	
-="CN48340"	"Rehabilitation Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Nov-06	30-Jun-07	19000.00	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:33 PM	
-="CN48341"	"Temporary employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Nov-06	30-Jun-07	19296.54	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:33 PM	
-="CN48342"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	03-Aug-06	30-Jun-07	22970.33	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:33 PM	
-="CN48343"	"MAINTENANCE UPGRADE TO IT DATA STORAGE EQUIPMENTS."	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Sep-06	30-Jun-07	79376.28	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48344"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	19134.75	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48345"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	29578.38	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48346"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	31-Jul-07	31-Jul-07	66171.33	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48347"	"Provide advice on complex sample design for longitudinal survey of income support recipients"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	01-Feb-07	01-Feb-07	18281.25	=""	="ROBERT V BREUNIG"	26-Nov-07 12:33 PM	
-="CN48348"	"1ST QUARTER IT SERVICE CHARGES"	="Department of Employment and Workplace Relations"	26-Nov-07	="Professional engineering services"	31-Jul-07	30-Sep-07	83105.00	=""	="Dept of Employment & Workplace"	26-Nov-07 12:34 PM	
-="CN48349"	"Develop&deliver Middle Management Prog Skills not available in APS"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-May-06	31-Jan-09	900000.00	=""	="GLOBAL LEARNING"	26-Nov-07 12:34 PM	
-="CN48350"	"Health checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	05-Jul-06	30-Jun-07	14000.00	=""	="HEALTH SERVICES AUSTRALIA LTD"	26-Nov-07 12:34 PM	
-="CN48351"	"Stationary/Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	07-Jul-06	30-Jun-07	10651.08	=""	="CORPORATE EXPRESS AUSTRALIA"	26-Nov-07 12:34 PM	
-="CN48352"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	11-Jul-06	30-Jun-08	835000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:34 PM	
-="CN48354"	"Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	11-Jul-06	30-Jun-07	10300.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	26-Nov-07 12:34 PM	
-="CN48355"	"Medical Assesments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	12-Jul-06	12-Jul-06	1972021.48	=""	="HEALTH FOR INDUSTRY"	26-Nov-07 12:34 PM	
-="CN48356"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	20-Jul-06	30-Jun-08	100000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:35 PM	
-="CN48357"	"Freight services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	27-Jul-06	19762.86	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:35 PM	
-="CN48358"	"Electronic press clips"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	20-Jul-06	30-Jul-06	310424.99	=""	="MEDIA MONITORS AUST P/L"	26-Nov-07 12:35 PM	
-="CN48359"	"Bus Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	30-Jun-07	22579.60	=""	="DEANES BUSLINES PTY LTD"	26-Nov-07 12:35 PM	
-="CN48360"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	20-Jul-06	30-Jun-07	50638.77	=""	="MICROSOFT P/L"	26-Nov-07 12:35 PM	
-="CN48361"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jul-06	30-Nov-10	45000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:35 PM	
-="CN48362"	"Software Mainframe Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	26-Jul-06	30-Jun-07	234001.90	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:35 PM	
-="CN48363"	"Postage and Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	26-Jul-06	30-Jun-10	65000.00	=""	="AUST POST (ACT 131316)"	26-Nov-07 12:35 PM	
-="CN48364"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	27-Jul-06	30-Jun-07	510587.03	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:36 PM	
-="CN48365"	"Pre-Employment & OH&S Exams"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	27-Jul-06	30-Jun-08	10094.70	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:36 PM	
-="CN48366"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Jul-06	30-Aug-08	10535.20	=""	="MINTER ELLISON"	26-Nov-07 12:36 PM	
-="CN48367"	"Navigation tools"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation components and systems"	05-Jun-07	30-Jun-07	21472.00	=""	="HYPERION SOLUTIONS AUSTRALIA"	26-Nov-07 12:36 PM	
-="CN48368"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Jun-07	30-Jun-07	10000.00	=""	="MOORE CONSULTING"	26-Nov-07 12:36 PM	
-="CN48369"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Graphic design"	12-Jun-07	30-Jun-07	10175.00	=""	="BOOMERANG INTEGRATED MARKETING"	26-Nov-07 12:36 PM	
-="CN48370"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Electronic hardware and component parts and accessories"	14-Jun-07	30-Jun-07	17867.91	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:36 PM	
-="CN48371"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	15-Jun-07	30-Jun-07	20064.00	=""	="SELECT APPOINTMENTS"	26-Nov-07 12:37 PM	
-="CN48372"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	36736.56	=""	="GREYTHORN"	26-Nov-07 12:37 PM	
-="CN48373"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	17735.00	=""	="HAYS OFFICE SUPPORT"	26-Nov-07 12:37 PM	
-="CN48374"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	20-Jun-07	30-Jun-07	10561.10	=""	="CANPRINT COMMUNICATIONS PTY LTD"	26-Nov-07 12:37 PM	
-="CN48375"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	39072.00	=""	="GREYTHORN"	26-Nov-07 12:37 PM	
-="CN48376"	"Auslan for employment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Paper products"	21-Jun-07	30-Jun-07	27700.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	
-="CN48353-A2"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	21-Mar-05	31-Aug-06	1151878.94	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 12:37 PM	
-="CN48377"	"WPA Amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	22-Jun-07	30-Jun-07	55000.00	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:37 PM	
-="CN48378"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Jun-07	30-Jun-07	75999.00	=""	="PRIME FOCUS CONSULTING"	26-Nov-07 12:37 PM	
-="CN48379"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	2674801.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	
-="CN48380"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	77000.00	=""	="SPACE-TIME RESEARCH PTY LTD"	26-Nov-07 12:38 PM	
-="CN48381"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jun-07	30-Jun-08	78625.00	=""	="VISION AUSTRALIA"	26-Nov-07 12:38 PM	
-="CN48382"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jun-07	30-Jun-07	19800.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:38 PM	
-="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	
-="CN48384"	"Nursing care services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Domestic and personal assistance"	28-Jun-07	30-Jun-07	16712.20	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:38 PM	
-="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	
-="CN48386"	"Extension of Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	29-Jun-07	30-Jun-07	27500.00	=""	="COMMERCE QUEENSLAND"	26-Nov-07 12:38 PM	
-="CN48387"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	751968.45	=""	="AMOR CONSULTING PTY LTD"	26-Nov-07 12:38 PM	
-="CN48388"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	879752.01	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 12:39 PM	
-="CN48389"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	05-Jul-07	30-Jun-08	344596.18	="ITC"	="ECONNECT SOLUTIONS PTY LTD"	26-Nov-07 12:39 PM	
-="CN48390"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Jun-07	30-Jun-07	245461.31	=""	="AMBIT IT & T"	26-Nov-07 12:39 PM	
-="CN48391"	"Job Seeker Omnibus Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	29-Nov-06	26-Oct-07	55310.00	=""	="TNS"	26-Nov-07 12:39 PM	
-="CN48392"	"Supply of Mobile Phones and PDA handsets"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	30-Nov-06	30-Jun-07	10278.75	=""	="OPTUS Communications Pty Ltd"	26-Nov-07 12:39 PM	
-="CN48393"	"Office fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	08-Dec-06	30-Jun-07	1056886.69	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:39 PM	
-="CN48394"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	11-Dec-06	30-Sep-07	4066000.00	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:39 PM	
-="CN48395"	"File storage, archival destruction"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	12-Dec-06	23-Dec-07	37185.36	=""	="RECALL INFORMATION MANAGEMENT"	26-Nov-07 12:39 PM	
-="CN48396"	"Longitudinal Pathways Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	15-Dec-06	30-Jul-08	637958.00	=""	="THE SOCIAL RESEARCH CENTRE"	26-Nov-07 12:40 PM	
-="CN48397"	"General Audit Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accounting and auditing"	03-Jan-07	30-Jun-10	26160.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	26-Nov-07 12:40 PM	
-="CN48398"	"Research for safe design"	="Department of Employment and Workplace Relations"	26-Nov-07	="Security and personal safety"	22-Jan-07	30-Apr-07	10394.26	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:40 PM	
-="CN48399"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Feb-07	30-Nov-10	15625.50	=""	="DRAKE"	26-Nov-07 12:40 PM	
-="CN48400"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Feb-07	19-Dec-11	32649.64	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:40 PM	
-="CN48401"	"WorkChoices Employer Advisor Programme 2 Experience of Private Sector/Industry Required"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	09-Feb-07	09-Feb-07	274350.00	=""	="AUSTRALIAN NEWSAGENTS' FEDERATION"	26-Nov-07 12:40 PM	
-="CN48402"	"Courier and Freight charges"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Feb-07	30-Jun-07	12200.00	=""	="TNT DOMESTIC & INTERNATIONAL"	26-Nov-07 12:40 PM	
-="CN48403"	"Transport Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	07-Mar-07	30-Jun-07	10032.00	=""	="KNIGHT FRANK"	26-Nov-07 12:41 PM	
-="CN48404"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-May-07	30-Jun-07	29000.00	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:41 PM	
-="CN48405"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-May-07	30-Jun-07	40700.48	=""	="THE ONE UMBRELLA"	26-Nov-07 12:41 PM	
-="CN48406"	"Filming of  Work for the Dole Awards"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	10-May-07	30-Jun-07	11234.00	=""	="VIVAVISION"	26-Nov-07 12:41 PM	
-="CN48407"	"Filming"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	16-May-07	30-Jun-07	12833.70	=""	="IMAGES ONLINE"	26-Nov-07 12:41 PM	
-="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	
-="CN48409"	"Media Placement Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	28-May-07	30-Sep-07	4000000.05	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:41 PM	
-="CN48410"	"Research Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	28-May-07	30-Jun-07	700000.00	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:41 PM	
-="CN48411"	"Public Relations Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	28-May-07	30-Jun-07	525000.00	=""	="GAVIN ANDERSON & COMPANY (AUSTRALIA"	26-Nov-07 12:41 PM	
-="CN48412"	"Catering, venue Hire and security"	="Department of Employment and Workplace Relations"	26-Nov-07	="Food and nutrition services"	31-May-07	30-Sep-07	12550.00	=""	="GINGER CATERING"	26-Nov-07 12:42 PM	
-="CN48413"	"WPA amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	01-Jun-07	30-Jun-07	22500.00	=""	="FOX BADGER FERRET PTY LTD"	26-Nov-07 12:42 PM	
-="CN48414"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:38 PM	
-="CN48415"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-05	31-Dec-06	340696.59	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:44 PM	
-="CN48417"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:50 PM	
-="CN48416"	"    NRMA House - Detailed Design, Documentation & Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	21-Oct-05	129789.18	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:51 PM	
-="CN48419"	"IMU Contract Programmer: IMU-ICT010 Official Order IMU2007/068"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	24-Nov-07	23-Nov-08	193450.00	=""	="Reitan Holdings Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48420"	"IMU Contract Programmer: IMU-ICT104 Official Order: IMU2007/063"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	12-Nov-07	09-May-08	90090.00	=""	="GMT Canberra Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48421"	"IMU Contract Programmer: IMU-ICT012 Official Order: IMU2007/061"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	01-Nov-07	31-Oct-08	165000.00	=""	="Icon Recruitment Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48422"	"Conduct and overview benchmark to assess how DVA's current IT spending on application and infrastructure services compares to the Australian market. Identify areas for DVA to focus IT spend and perfor"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	30-Aug-07	31-Dec-07	89100.00	=""	="IT Newcom Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48423-A1"	"In-house delivery of 2 workshops of Managing Dispersed teams by international expert."	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	20-Sep-07	28-Sep-07	25555.00	=""	="Performance Improvement Conferences & Seminars Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48424-A1"	"Under APSC Panel of Providers for L&D Faciliated team program and follow-up coaching"	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	23-Aug-07	30-Nov-07	11000.00	=""	="Professional Facilitators International Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48425"	"Provision of Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	26-Nov-07	="Comprehensive health services"	19-Nov-07	30-Sep-09	45000.00	=""	="Rebecca King Speech Pathology Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48418"	"        Alinga and Mort St - Detailed Design, Documentation $ Construction        "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	31-Dec-06	585180.42	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:02 PM	
-="CN48427"	"    Additional Projects Alinga and Mort St - Detailed Design and Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	28-Feb-07	609065.34	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:22 PM	
-="CN48428"	"CPO016720 - Supply of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	02-Nov-07	02-Feb-08	14025.00	=""	="Haworth"	26-Nov-07 02:23 PM	
-="CN48429"	"CPO017177 - Mooring Unit"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	18478.90	=""	="Arafura Sea Charters"	26-Nov-07 02:23 PM	
-="CN48430"	"CPO017175 - Accommodation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Hotels and lodging and meeting facilities"	20-Nov-07	20-Dec-07	13179.00	=""	="Broadwater"	26-Nov-07 02:23 PM	
-="CN48431"	"CPO017172 - Boat trailer"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	31900.00	=""	="Voyager Trailers"	26-Nov-07 02:23 PM	
-="CN48432"	"07/2356 - Construction services (connected to 07/2335 business case)"	="Australian Customs and Border Protection Service"	26-Nov-07	="General building construction"	20-Nov-07	14-Dec-07	291591.30	=""	="Semrau Constructions"	26-Nov-07 02:23 PM	
-="CN48433-A1"	"06/1553 - Supply of remotely operated underwater vehicles"	="Australian Customs and Border Protection Service"	26-Nov-07	="Marine craft systems and subassemblies"	21-Nov-07	21-Nov-10	1185000.00	=""	="Ocean Modules"	26-Nov-07 02:23 PM	
-="CN48434-A2"	"07/2307 - Project Manager"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	25-Sep-07	30-Jun-08	243551.20	=""	="Apis Consulting Group (ACT) Pty"	26-Nov-07 02:23 PM	
-="CN48435"	"CPO017311 - Supply of fabric"	="Australian Customs and Border Protection Service"	26-Nov-07	="Fibres and threads and yarns"	22-Nov-07	31-Jan-08	18288.00	=""	="Bruck Textiles Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48436"	"CPO017349 - IT Software"	="Australian Customs and Border Protection Service"	26-Nov-07	="Computer services"	26-Sep-07	22-Nov-07	13200.00	=""	="D'Arcy Consulting Group"	26-Nov-07 02:24 PM	
-="CN48437"	"CPO017250 - Supply and Installation of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	22-Nov-07	22-Nov-07	11300.30	=""	="Schiavello (WA) Pty"	26-Nov-07 02:24 PM	
-="CN48438"	"CPO016466 - CCTV Relocation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	11-May-08	29768.00	=""	="Chubb Electronic Security"	26-Nov-07 02:24 PM	
-="CN48439"	"CPO017116 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	11-Nov-07	11-Nov-07	13200.00	=""	="DFP Recruitment Services Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48440"	"CPO017258 - CCTV equipment"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	30-Jun-08	53442.40	=""	="LAN 1 Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48442"	"Lease at Weipa, Queensland."	="Department of Human Services"	26-Nov-07	="Real estate services"	01-Feb-08	31-Jan-15	718452.15	=""	="L.J. McDonald & M.A. McDonald"	26-Nov-07 02:27 PM	
-="CN48443-A1"	"    111 Alinga Base Building Upgrade by Multiplex    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	31-Dec-07	1042107.00	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:28 PM	
-="CN48444"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-06	31-Dec-07	231170.28	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:35 PM	
-="CN48446"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	20-Nov-07	13282.50	=""	="WORK SOLUTIONS GROUP PTY LTD"	26-Nov-07 02:41 PM	
-="CN48447"	"CORPORATE HPM CONFERENCE OCT07"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	22-Nov-07	14550.00	=""	="JASPER HOTEL"	26-Nov-07 02:41 PM	
-="CN48448"	"ISAC RECRUITMENT SELECTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	22-Nov-07	11865.00	=""	="Australian Public Service"	26-Nov-07 02:41 PM	
-="CN48449"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	22-Nov-07	15361.50	=""	="BLUE PROPERTY MARKETING"	26-Nov-07 02:41 PM	
-="CN48450"	"COURSE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	27720.00	=""	="TERADATA AUSTRALIA PTY LTD"	26-Nov-07 02:42 PM	
-="CN48451"	"PRESENTATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	16-Nov-07	16500.00	=""	="YOUNG ACHIEVEMENT AUSTRALIA"	26-Nov-07 02:42 PM	
-="CN48452"	"SUBSCRIPTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Oct-07	13-Nov-07	94944.28	=""	="Australian Public Service"	26-Nov-07 02:42 PM	
-="CN48453"	"COMMITTE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	13-Nov-07	31059.00	=""	="Australian Public Service"	26-Nov-07 02:42 PM	
-="CN48454"	"PROFESSIONAL SERVICES"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	14-Nov-07	10645.00	=""	="LEO A. TSAKNIS"	26-Nov-07 02:42 PM	
-="CN48455"	"VENUE HIRE NOVOTEL NCG CONFERENCE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	15-Nov-07	31305.66	=""	="NOVOTEL ST KILDA"	26-Nov-07 02:42 PM	
-="CN48456"	"REGISTRATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	15-Nov-07	10115.60	=""	="TONKIN CORPORATION PTY LTD"	26-Nov-07 02:42 PM	
-="CN48457"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-May-07	30-Sep-08	1695248.72	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:48 PM	
-="CN48459"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	19-Oct-07	19-Oct-07	66880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	26-Nov-07 02:55 PM	
-="CN48460"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	22-Oct-07	30-Jun-08	49999.62	=""	="S.E.M. AUSTRALIA PTY LIMITED"	26-Nov-07 02:55 PM	
-="CN48461"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	40902.40	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 02:56 PM	
-="CN48462"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	48185.28	=""	="Frontier Group Australia"	26-Nov-07 02:56 PM	
-="CN48463"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	57200.00	=""	="ANATAS"	26-Nov-07 02:56 PM	
-="CN48464"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	57200.00	=""	="BLUELINE SOFTWARE PTY LTD"	26-Nov-07 02:56 PM	
-="CN48465"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Oct-07	31-Dec-07	18231.31	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 02:56 PM	
-="CN48466"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	12020.18	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	
-="CN48467"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	11190.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	
-="CN48468"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Communications Devices and Accessories"	23-Oct-07	23-Oct-07	179456.44	=""	="OPTUS BILLING SERVICES"	26-Nov-07 02:56 PM	
-="CN48469"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	50310.48	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	
-="CN48470"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	21507.75	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	
-="CN48471"	"Provision of Funding for Internal Project"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	31-Dec-07	104999.97	=""	="GP PARTNERS LTD"	26-Nov-07 02:57 PM	
-="CN48472"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	46981.00	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	
-="CN48473"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	66774.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	
-="CN48474"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	16-Oct-07	16-Oct-07	12584.71	=""	="Curran & Associates"	26-Nov-07 02:57 PM	
-="CN48475"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	42599.99	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:57 PM	
-="CN48476"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	17-Oct-07	14410.00	=""	="SAVILLS PTY LTD"	26-Nov-07 02:57 PM	
-="CN48477"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	320804.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:58 PM	
-="CN48478"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	30590.61	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48479"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	17-Oct-07	17-Oct-07	12320.00	=""	="IPA PERSONNEL PTY LTD"	26-Nov-07 02:58 PM	
-="CN48480"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	17-Oct-07	17-Oct-07	368198.60	=""	="INTERIORS AUSTRALIA"	26-Nov-07 02:58 PM	
-="CN48482"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	17852.72	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48483"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	14433.01	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48484"	"Provision of Network Services"	="Medicare Australia"	26-Nov-07	="Electrical wire and cable and harness"	17-Oct-07	26-Oct-07	13275.72	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 02:58 PM	
-="CN48485"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	17-Oct-07	31-Dec-07	84938.43	=""	="AUSTRALIA POST"	26-Nov-07 02:58 PM	
-="CN48486"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Components for information technology or broadcasting or telecommunications"	17-Oct-07	17-Oct-07	61207.28	=""	="EMC GLOBAL HOLDINGS COMPANY"	26-Nov-07 02:59 PM	
-="CN48487"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	18-Oct-07	18-Oct-07	45154.50	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	
-="CN48488"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	18-Oct-07	18-Oct-07	33235.71	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	
-="CN48489"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Paper products"	19-Oct-07	30-Dec-07	71069.90	=""	="PARAGON PRINTERS"	26-Nov-07 02:59 PM	
-="CN48490"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	25-Oct-07	25-Oct-07	18858.12	=""	="ACUMEN ALLIANCE"	26-Nov-07 02:59 PM	
-="CN48491"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48492"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48493"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48494"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48495"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	26-Oct-07	19-Nov-07	171333.80	=""	="WA Partitioning Pty Ltd"	26-Nov-07 03:00 PM	
-="CN48496"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	11226.39	=""	="DUSAN KEBER"	26-Nov-07 03:00 PM	
-="CN48497"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	26-Oct-07	26-Oct-07	13567.40	=""	="Watermark Search International"	26-Nov-07 03:00 PM	
-="CN48498"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	29-Oct-07	29-Oct-07	242000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:00 PM	
-="CN48499"	"Property Rental"	="Medicare Australia"	26-Nov-07	="Business administration services"	29-Oct-07	29-Oct-07	3644787.22	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:00 PM	
-="CN48500"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	26-Nov-07	="Paper products"	29-Oct-07	29-Oct-07	11041.80	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	26-Nov-07 03:00 PM	
-="CN48501"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	53367.60	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:00 PM	
-="CN48502"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	25795.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	26-Nov-07 03:00 PM	
-="CN48503"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	30-Oct-07	30-Oct-07	59787.20	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48504"	"Provision of Training Courses"	="Medicare Australia"	26-Nov-07	="Specialised educational services"	30-Oct-07	30-Oct-07	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	26-Nov-07 03:01 PM	
-="CN48505"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Graphic design"	31-Oct-07	30-Dec-07	13482.70	=""	="SPECTRUM GRAPHICS"	26-Nov-07 03:01 PM	
-="CN48506"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	66455.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48507"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	72612.10	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48508"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	42586.50	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48509"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	12403.02	=""	="James Richardson Corporation"	26-Nov-07 03:01 PM	
-="CN48510"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	25-Oct-07	25-Oct-07	16831.34	=""	="QM Technologies Pty Limited"	26-Nov-07 03:01 PM	
-="CN48511"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Paper products"	25-Oct-07	25-Oct-07	165000.00	=""	="AUSTRALIA POST"	26-Nov-07 03:02 PM	
-="CN48512"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	25-Oct-07	30-Oct-07	88000.00	=""	="MasterSoft Systems Pty Ltd"	26-Nov-07 03:02 PM	
-="CN48513"	"Provision of Educational Services"	="Medicare Australia"	26-Nov-07	="Vocational training"	25-Oct-07	25-Oct-07	23760.00	=""	="PLANPOWER PTY LTD"	26-Nov-07 03:02 PM	
-="CN48514"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Paper materials"	25-Oct-07	25-Oct-07	23100.00	=""	="QM Technologies Pty Limited"	26-Nov-07 03:02 PM	
-="CN48515"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	394151.32	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:02 PM	
-="CN48516"	"Provision of Property Management services"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	112216.22	=""	="UNITED GROUP SERVICES PTY LTD"	26-Nov-07 03:02 PM	
-="CN48517"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Oct-07	29-Oct-07	79194.96	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:02 PM	
-="CN48518"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	67562.00	=""	="IBEX INTERIORS PTY LTD"	26-Nov-07 03:02 PM	
-="CN48519"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12513.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	
-="CN48520"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12293.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	
-="CN48521"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Graphic design"	03-Oct-07	03-Oct-07	17430.60	=""	="PARAGON PRINTERS"	26-Nov-07 03:03 PM	
-="CN48522"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	26-Nov-07	12786.32	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	
-="CN48523"	"Provision of Telephony services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	15048.00	=""	="OPTUS BILLING SERVICES"	26-Nov-07 03:03 PM	
-="CN48524"	"ELECTRONIC SERVICES"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	09-Nov-07	26-Nov-07	15062.19	=""	="ESPREON PROPERTY SERVICES"	26-Nov-07 03:03 PM	
-="CN48525"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	52800.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:03 PM	
-="CN48526"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Nov-07	35654.79	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	
-="CN48527"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	11533.50	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 03:03 PM	
-="CN48528"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	15-Nov-07	12599.00	=""	="COLLIERS INTERNATIONAL (HK) LTD"	26-Nov-07 03:03 PM	
-="CN48529"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	03-Oct-07	03-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:03 PM	
-="CN48530"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	15-Nov-07	19745.00	=""	="COLLIERS INTERNATIONAL HOLDINGS"	26-Nov-07 03:03 PM	
-="CN48531"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	03-Oct-07	03-Oct-07	276853.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:03 PM	
-="CN48532"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Nov-07	10391.81	=""	="ALLARD & SHELTON PTY LTD"	26-Nov-07 03:03 PM	
-="CN48533"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	04-Oct-07	04-Oct-07	10540.11	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:04 PM	
-="CN48534"	"PHONE ACCOUNT"	="Australian Taxation Office"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	15-Nov-07	36642.63	=""	="TELSTRA"	26-Nov-07 03:04 PM	
-="CN48535"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	04-Oct-07	04-Oct-07	93060.00	=""	="David Jess & Associates Pty Ltd"	26-Nov-07 03:04 PM	
-="CN48536"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	13-Nov-07	19375.59	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:04 PM	
-="CN48537"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	04-Oct-07	04-Oct-07	13513.50	=""	="APIS CONSULTING GROUP"	26-Nov-07 03:04 PM	
-="CN48538"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Doors and windows and glass"	05-Oct-07	05-Oct-07	21386.20	=""	="Hufcor Pty Ltd"	26-Nov-07 03:04 PM	
-="CN48539"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	08-Oct-07	08-Oct-07	275000.00	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:04 PM	
-="CN48540"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	08-Oct-07	08-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:04 PM	
-="CN48541"	"Supply of 2008 Diaries"	="Medicare Australia"	26-Nov-07	="Office and desk accessories"	16-Oct-07	16-Oct-07	19929.21	=""	="Corporate Impressions"	26-Nov-07 03:04 PM	
-="CN48542"	"Provision of Storage/File Destruction services"	="Medicare Australia"	26-Nov-07	="Storage"	09-Oct-07	30-Jun-08	23324.78	=""	="RECALL TOTAL INFORMATION"	26-Nov-07 03:04 PM	
-="CN48543"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	09-Oct-07	09-Oct-07	12310.15	=""	="KAROLINA KALANJ"	26-Nov-07 03:05 PM	
-="CN48544"	"CABCHRG 1808-140907"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	17-Sep-07	11-Oct-07	39831.18	=""	="CABCHARGE AUSTRALIA LIMITED"	26-Nov-07 03:05 PM	
-="CN48545"	"NSW ARMAGUARD SEP07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	98647.80	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48546"	"QLD ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	62936.01	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48547"	"SA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	12441.82	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48548"	"VIC ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	81663.19	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48549"	"WA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	28487.64	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48550"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	49975.98	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:05 PM	
-="CN48551"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	16307.51	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48552"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	35759.20	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48553"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	23-Oct-07	46351.17	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48554"	"AMEX TRAVEL SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	24-Oct-07	227233.33	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48555"	"Provision of Project Management services"	="Medicare Australia"	26-Nov-07	="General building construction"	02-Oct-07	02-Oct-07	185460.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:06 PM	
-="CN48556"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	03-Oct-07	03-Oct-07	12161.69	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:06 PM	
-="CN48557"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	03-Oct-07	03-Oct-07	28417.31	=""	="SKILLED GROUP LIMITED"	26-Nov-07 03:06 PM	
-="CN48558"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	03-Oct-07	14-Feb-08	1998858.84	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:06 PM	
-="CN48559"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	138656.91	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48560"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	18072.46	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48561"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	212427.49	=""	="CROTTY & CO PTY LTD"	26-Nov-07 03:07 PM	
-="CN48562"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	12705.00	=""	="James Richardson Corporation"	26-Nov-07 03:07 PM	
-="CN48563"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	12-Oct-07	12-Oct-07	33872.83	=""	="Iron Mountain Australia Pty Ltd"	26-Nov-07 03:07 PM	
-="CN48564"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	20152.00	=""	="LINDA VAN TINTEREN"	26-Nov-07 03:07 PM	
-="CN48565"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	30-Nov-07	11719.42	=""	="DRAKE AUSTRALIA PTY LTD"	26-Nov-07 03:07 PM	
-="CN48566"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	13278.18	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48567"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Oct-07	12-Oct-07	161387.50	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:08 PM	
-="CN48568"	"MANAGEMENT SERVICE FEES"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	15-Oct-07	92730.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48569"	"Provision of Storage/Distribution services"	="Medicare Australia"	26-Nov-07	="Information services"	15-Oct-07	15-Oct-07	206957.66	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	26-Nov-07 03:08 PM	
-="CN48570"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	15-Oct-07	15-Oct-07	81939.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48571"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	15-Oct-07	30-Oct-07	42174.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 03:08 PM	
-="CN48572"	"Provision of Archiving Equipment"	="Medicare Australia"	26-Nov-07	="Paper products"	15-Oct-07	01-Dec-09	27500.00	=""	="ROLLS FILING SYSTEMS"	26-Nov-07 03:08 PM	
-="CN48573"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Heating and ventilation and air circulation"	15-Oct-07	15-Oct-07	12294.99	=""	="PETERS REFRIGERATION & AIR CON"	26-Nov-07 03:08 PM	
-="CN48574"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	16-Oct-07	43301.50	=""	="SCHIAVELLO SYSTEMS (NSW) PTY LTD"	26-Nov-07 03:08 PM	
-="CN48575"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	34120.61	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48576"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Computer services"	09-Oct-07	09-Oct-07	41580.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 03:09 PM	
-="CN48577"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	21692.00	=""	="DIVERSITI PTY LTD"	26-Nov-07 03:09 PM	
-="CN48578"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	29-Feb-08	91784.00	=""	="CCS Technology recruiter"	26-Nov-07 03:09 PM	
-="CN48579"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	11-Oct-07	20874.09	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:09 PM	
-="CN48580"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	11-Oct-07	11-Oct-07	13219.21	=""	="KAROLINA KALANJ"	26-Nov-07 03:09 PM	
-="CN48581"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	30343.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:09 PM	
-="CN48582"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	92268.00	=""	="Superior Shopfitters"	26-Nov-07 03:09 PM	
-="CN48583"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Computer services"	11-Oct-07	30-Oct-07	54862.50	=""	="TIBCO SOFTWARE AUSTRALIA PTY LTD"	26-Nov-07 03:09 PM	
-="CN48584"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	12687.40	=""	="CANBERRA CURTAINS & BLINDS PTY LTD"	26-Nov-07 03:10 PM	
-="CN48585"	"Provision of Employee Assistance"	="Medicare Australia"	26-Nov-07	="Human resources services"	11-Oct-07	11-Oct-07	12997.51	=""	="OSA GROUP PTY LTD"	26-Nov-07 03:10 PM	
-="CN48586"	"Provision of Advertising Services"	="Medicare Australia"	26-Nov-07	="Advertising"	11-Oct-07	11-Oct-07	22286.00	=""	="CRE8IVE AUSTRALASIA PTY LTD"	26-Nov-07 03:10 PM	
-="CN48587"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	10450.00	=""	="CMB"	26-Nov-07 03:10 PM	
-="CN48588"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	13715.08	=""	="James Richardson Corporation"	26-Nov-07 03:10 PM	
-="CN48589"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	13381.50	=""	="FUTURE FLOOR SERVICES"	26-Nov-07 03:10 PM	
-="CN48481"	" Medical Consumables For ADF "	="Defence Materiel Organisation"	26-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	05-Dec-07	10450.00	=""	="Markforce Pty Ltd"	26-Nov-07 03:13 PM	
-="CN35554-A2"	"Radio advertisements for the Murray-Darling Basin and Drought Assistance campaigns."	="Department of Human Services"	26-Nov-07	="Radio advertising"	01-Jul-07	30-Jun-08	132000.00	=""	="Eardrum Pty Ltd"	26-Nov-07 03:15 PM	
-="CN48592"	"Supply of Trousers, Men's, Metallic Blue, Drivers."	="Defence Materiel Organisation"	26-Nov-07	="Clothing"	26-Nov-07	29-Feb-08	18920.00	=""	="Joseph Dahdah & Co Pty Ltd"	26-Nov-07 03:39 PM	
-="CN48594"	"IDM 2455 Sun Java System Identity 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	08-Nov-07	06-Dec-07	12144.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	26-Nov-07 03:52 PM	
-="CN48595"	"ICON Levy's for 07/08"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	07-Nov-07	30-Jun-08	82500.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 03:53 PM	
-="CN48596"	"Adhoc document Translations FY 07/08"	="Australian Taxation Office"	26-Nov-07	="Editorial and Design and Graphic and Fine Art Services"	25-Sep-07	30-Jun-08	10000.00	=""	="VITS LANGUAGE LINK"	26-Nov-07 03:53 PM	
-="CN48597"	"ITContractors"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	20-Feb-08	63360.00	=""	="VALUE SOURCING"	26-Nov-07 03:53 PM	
-="CN48598"	"DM47AU Introduction to DB2 Doc manger V8 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	22-Nov-07	10560.00	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:53 PM	
-="CN48600"	" Supply of mail services: Study of Sexual Assault "	="Australian Institute of Family Studies"	26-Nov-07	="Addressing or mailing labels"	24-Sep-07	24-Sep-07	11911.45	=""	="Mailcare Systems Pty Ltd"	26-Nov-07 04:06 PM	
-="CN48601-A1"	"Provision of Certificate IV in Business (frontline management) to the AFP"	="Australian Federal Police"	26-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	94996.00	="APS Commission 2005/014"	="Global Training Institute"	26-Nov-07 04:16 PM	
-="CN48602"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	16-Nov-07	21-Jan-08	208208.00	=""	="InfoRail Pty Ltd"	26-Nov-07 04:32 PM	
-="CN48603"	"IT Contractor services"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	21-Nov-07	31-Mar-08	105600.00	=""	="FOCUS STRATEGIES & SOLUTIONS"	26-Nov-07 04:32 PM	
-="CN48606"	"Lease at Noarlunga, SA"	="Centrelink"	26-Nov-07	="Real estate services"	05-Nov-07	04-May-08	1272734.00	=""	="CPT Manager Limited"	26-Nov-07 04:36 PM	
-="CN48607"	" NSN 1560-66-050-5351  PURCHASE OF BRACKET ASSEMBLY, EN  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	20-Nov-07	29-Jan-08	52006.40	=""	="Milspec Services Pty Ltd"	26-Nov-07 04:40 PM	
-="CN48608"	"07/2379 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	26-Nov-07	="Temporary personnel services"	05-Nov-07	31-Dec-07	43400.00	="05/0717"	="CCS Index Pty Ltd"	26-Nov-07 04:42 PM	
-="CN48609-A1"	"Printing AEC publications"	="Australian Electoral Commission"	26-Nov-07	="Industrial printing services"	07-Nov-07	07-Dec-07	10384.00	="AEC06/026"	="Union Offset Printers"	26-Nov-07 04:47 PM	
-="CN48614"	" NSN 2995-00-985-1355  REPAIR/OVERHAUL OF STARTER, ENGINE, AIR TURBINE  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	15-Feb-07	31-Jan-08	10200.70	=""	="Honeywell Ltd"	26-Nov-07 04:52 PM	
-="CN48615"	"Hire of Electoral Premises"	="Australian Electoral Commission"	26-Nov-07	="Lease and rental of property or building"	12-Nov-07	24-Nov-07	33600.00	=""	="Princess Theatre Pty Ltd"	26-Nov-07 04:53 PM	
-="CN48616"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 04:56 PM	
-="CN48617"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 05:00 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN47803"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:08 AM	

+="CN47804"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	25-Sep-07	22-Feb-08	14723.45	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:14 AM	

+="CN47805"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	04-Dec-06	03-Dec-07	35318.10	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:19 AM	

+="CN47806"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	58557.77	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:29 AM	

+="CN47807"	"Repair of aircraft parts"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	21-Nov-07	06-Dec-07	61901.91	=""	="Sikorsky Aircraft Australia Limited"	22-Nov-07 07:33 AM	

+="CN47808"	"Test Set Sychro"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	12-Oct-07	15-Feb-08	27500.00	=""	="Unitronix"	22-Nov-07 07:41 AM	

+="CN47809"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft spars"	20-Nov-07	03-Dec-07	11693.00	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 07:56 AM	

+="CN47744"	" 1. 9150 66-093-5653 Gear Lubricating Oil OX-46 IN 205LT BP AUTRAN TO-410 Qty 28 drums  2. 9150 66-093-5658 Automotive Brake Fluid H542- OX-8 IN 500ML  Bottle Qty 1200    "	="Defence Materiel Organisation"	22-Nov-07	="Lubricants and oils and greases and anti corrosives"	04-Oct-07	11-Oct-07	25319.71	=""	="BP AUSTRALIA PTY LTD"	22-Nov-07 08:03 AM	

+="CN47810-A1"	"TPS for Stabilator Amplifier"	="Defence Materiel Organisation"	22-Nov-07	="Aircraft"	31-Oct-07	30-Nov-07	16340.00	=""	="Partech Systems"	22-Nov-07 08:04 AM	

+="CN47811"	"Ceremonial Shoulder Boards and Gorgets"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	23-Oct-07	30-Nov-07	75314.80	="ACC023/0708"	="P Blashki and Sons"	22-Nov-07 08:11 AM	

+="CN47815"	"Embroidered Insignia for Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	69067.35	="ACC025/0708"	="Babylon Industries"	22-Nov-07 08:39 AM	

+="CN47814"	"Embroidered Insignia for Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	15-Nov-07	20-Jun-08	71372.53	="ACC026/0708"	="Babylon Industries"	22-Nov-07 08:58 AM	

+="CN47813-A1"	"Embroidered Insignia, Tri Service"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	09-Oct-07	20-Jun-08	328590.68	="ACC009/0708"	="Babylon Industries"	22-Nov-07 09:17 AM	

+="CN47818"	"Lease at Echuca, Victoria"	="Centrelink"	22-Nov-07	="Real estate services"	01-Jan-08	31-Dec-09	225156.80	=""	="The Trustee for the Barker Family Trust"	22-Nov-07 09:22 AM	

+="CN47816"	"Supply of Tester, Switch, Hydrostatic, Qty 25, Cage: 36452 & PN: 108595."	="Defence Materiel Organisation"	22-Nov-07	="Battery testers"	10-Sep-07	09-Dec-07	14852.75	=""	="MILSPEC SERVICES PTY LTD"	22-Nov-07 09:27 AM	

+="CN47823-A1"	"Aiguillettes, Gorgets and Bullion Embroidered Badges"	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	13-Nov-07	30-Mar-08	131019.57	="ACC027/0708"	="P Blashki and Sons"	22-Nov-07 09:48 AM	

+="CN47825"	"Supply of Helmet Fireman's, White."	="Defence Materiel Organisation"	22-Nov-07	="Safety helmets"	20-Nov-07	31-Mar-08	68227.50	=""	="MSA (Aust) Pty Ltd"	22-Nov-07 10:02 AM	

+="CN47828-A3"	" Provision of services relating to Oracle database applications development support services "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-09	405091.60	=""	="Tarakan Consulting Pty Ltd"	22-Nov-07 10:27 AM	

+="CN47831"	"Embroidered Badges ,Army, Navy and RAAF"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	23-Oct-07	30-Jan-08	18260.68	="ACC024/0708"	="Arcade Badge Embroidery Co"	22-Nov-07 10:36 AM	

+="CN47832"	"INSECTICIDE, D-PHENOTHRIN"	="Defence Materiel Organisation"	22-Nov-07	="Insecticides"	21-Nov-07	26-Nov-07	11830.51	=""	="CALLINGTON HAVEN PTY LTD"	22-Nov-07 10:42 AM	

+="CN47834-A1"	" Licencing of MS Office Products  "	="Australian Federal Police"	22-Nov-07	="Software"	01-Jul-07	30-Jun-10	8515777.62	=""	="Dimension Data Australia Pty Ltd"	22-Nov-07 10:48 AM	

+="CN47802"	"Office Rental - Sydney, NSW"	="Australian Public Service Commission"	22-Nov-07	="Real estate services"	01-Aug-07	31-Jul-17	4185000.00	=""	="GPT Funds Management 2 Pty Ltd"	22-Nov-07 11:01 AM	

+="CN47835"	"Metal Insignia and Badges"	="Defence Materiel Organisation"	22-Nov-07	="Badges"	07-Sep-07	15-Feb-08	35809.40	="ACC020/0708"	="Nichol Industries Pty Ltd"	22-Nov-07 11:47 AM	

+="CN47838"	"National Office supplies for workstation set up"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	01-Aug-07	28-Sep-07	34250.00	="PRN16270"	="Schiavello Commercial Interiors"	22-Nov-07 11:49 AM	

+="CN47839"	"Introduction to the Financial Management Framework"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	20-Sep-07	30-Jun-08	18000.00	="PRN16725"	="KPR FAMILY TRUST"	22-Nov-07 11:49 AM	

+="CN47840"	"SAP Australia - Funds Management Course - IPS910"	="Department of Education, Science and Training"	22-Nov-07	="Education and Training Services"	29-Aug-07	30-Jun-08	32725.00	="PRN16671"	="SAP Australia Pty Ltd"	22-Nov-07 11:49 AM	

+="CN47841"	"Architectural Services - Function/Conference Room"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	04-Sep-07	30-Jun-08	10000.00	="PRN16680"	="PECKVONHARTEL"	22-Nov-07 11:50 AM	

+="CN47842"	"Air Conditioning Upgrade LG 14 Mort"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	30-Aug-07	30-Nov-07	53928.00	="PRN13164"	="DALKIA TECHNICAL SERVICES PTY LTD"	22-Nov-07 11:50 AM	

+="CN47843"	"16 Mort St - Level 1 Function and Conference Room Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	21-Sep-07	01-Nov-07	52729.60	="PRN16932"	="CONSTRUCTION CONTROL INTERIORS P/L"	22-Nov-07 11:50 AM	

+="CN47844"	"Executive Furniture 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="Building and Construction and Maintenance Services"	27-Sep-07	30-Jun-08	28773.00	="PRN17137"	="CITE OFFICE DESIGN PTY LIMITED"	22-Nov-07 11:50 AM	

+="CN47845"	"Placement Fee  for temporary staff"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	02-Jul-07	15-Oct-07	14000.00	="PRN16691"	="HAMILTON JAMES and BRUCE PTY LTD"	22-Nov-07 11:50 AM	

+="CN47846"	"16 Mort Street - Function and Conference Room Refu"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	14-Sep-07	21-Dec-07	41484.00	="PRN16938"	="CANBERRA PROFESSIONAL EQUIPMENT"	22-Nov-07 11:50 AM	

+="CN47847"	"Contractor for Incoming Government Brief"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	17-Sep-07	28-Sep-07	18000.00	="PRN16983"	="JOAN CORBETT"	22-Nov-07 11:50 AM	

+="CN47848"	"Electrical Mechanical documentation 71 Northbourne"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	06-Aug-07	28-Dec-07	31790.00	="PRN17142"	="BASSETT CONSULTING ENGINEERS"	22-Nov-07 11:50 AM	

+="CN47849"	"SES Recruitment Services"	="Department of Education, Science and Training"	22-Nov-07	="Human resources services"	06-Sep-07	30-Nov-07	22000.00	="PRN16853"	="HANSEN and SEARSON MANAGEMENT SERVICE"	22-Nov-07 11:50 AM	

+="CN47851"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	14-Feb-07	25-Jan-08	66000.00	=""	="Cordelta Pty Ltd"	22-Nov-07 12:02 PM	

+="CN47853-A1"	"Provision for Project Manager"	="Comsuper"	22-Nov-07	="Human resources services"	17-Nov-07	17-Apr-08	140000.00	=""	="Candle Australia"	22-Nov-07 12:05 PM	

+="CN47854"	"Code of Conduct Related Services"	="Department of Human Services"	22-Nov-07	="Business and corporate management consultation services"	22-Nov-07	30-Nov-07	11000.00	=""	="Quality Management Solutions Pty Ltd"	22-Nov-07 12:08 PM	

+="CN47856-A1"	"Provision for Procedures Writer"	="Comsuper"	22-Nov-07	="Human resources services"	23-Aug-07	22-Feb-08	116500.00	=""	="Face2Face Recruitment"	22-Nov-07 12:12 PM	

+="CN47860"	"Supply & Implement Software"	="National Archives of Australia"	22-Nov-07	="Software"	24-Oct-07	30-Jun-08	76615.00	=""	="The Reading Room Australia P/L"	22-Nov-07 12:19 PM	

+="CN47863-A2"	"Lease of printers, photocopiers, scanners and facsimilie equipment"	="Department of Human Services"	22-Nov-07	="Office machines and their supplies and accessories"	21-May-04	31-Aug-11	45300000.00	=""	="Fuji Xerox Australia Pty Ltd"	22-Nov-07 12:25 PM	

+="CN47866"	"Provision for Maintenance of Bizhub Colour laser printer"	="Comsuper"	22-Nov-07	="Laser printers"	20-Nov-07	20-Nov-12	40347.00	=""	="Konica Minolta Business Solutions"	22-Nov-07 12:30 PM	

+="CN47870"	"Communication services"	="Australian Crime Commission"	22-Nov-07	="Information Technology Broadcasting and Telecommunications"	08-Nov-07	08-Nov-07	82040.65	=""	="ASIO"	22-Nov-07 12:51 PM	

+="CN47868"	" Research and Advisory Service Online Subscription "	="Australian Crime Commission"	22-Nov-07	="Internet based market research"	18-Oct-07	18-Oct-07	39490.00	=""	="Gartner Australia"	22-Nov-07 12:53 PM	

+="CN47867"	" Network performance monitoring equipment "	="Australian Crime Commission"	22-Nov-07	="Network analysers"	29-Oct-07	29-Oct-07	74258.00	=""	="Network General"	22-Nov-07 12:57 PM	

+="CN47864"	"Investigation into ACC internal matter"	="Australian Crime Commission"	22-Nov-07	="Private investigation services"	10-Oct-07	10-Oct-07	20000.00	=""	="HBA Consulting"	22-Nov-07 12:58 PM	

+="CN47859"	"Job advertisements"	="Australian Crime Commission"	22-Nov-07	="Advertising"	04-Aug-07	25-Aug-07	26828.00	=""	="HMA Blaze"	22-Nov-07 01:00 PM	

+="CN47855"	"International Policing Towards 2020 Conference"	="Australian Crime Commission"	22-Nov-07	="Conference centres"	19-Nov-07	21-Nov-07	11748.00	=""	="DPM Conferencing"	22-Nov-07 01:01 PM	

+="CN47852"	"Facilitation of Teamwork Project"	="Australian Crime Commission"	22-Nov-07	="Workshops"	21-Aug-07	31-Aug-07	16522.00	=""	="Mascot Solutions"	22-Nov-07 01:02 PM	

+="CN47830"	"Job advertisments"	="Australian Crime Commission"	22-Nov-07	="Advertising"	21-Jul-07	21-Jul-07	31752.78	=""	="Adcorp"	22-Nov-07 01:03 PM	

+="CN47833"	"SES Recruitment"	="Australian Crime Commission"	22-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	16170.00	=""	="Ford Kelly Executive Connection"	22-Nov-07 01:04 PM	

+="CN47829"	"Accommodation for ACC staff"	="Australian Crime Commission"	22-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Aug-07	20-Aug-07	30789.00	=""	="Bentley Suites"	22-Nov-07 01:05 PM	

+="CN47827"	" Accommodation & Venue for Conference "	="Australian Crime Commission"	22-Nov-07	="Conference centres"	30-Aug-07	08-Nov-07	20000.00	=""	="Aitken Hill Conference and Event Venue"	22-Nov-07 01:06 PM	

+="CN47873"	"Hunter RIMS Software Maintenance"	="Australian Taxation Office"	22-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	381894.27	=""	="Experian Asia Pacific Pty Ltd"	22-Nov-07 01:17 PM	

+="CN47872-A2"	"Provision of services relating to applications development"	="Australian Federal Police"	22-Nov-07	="Computer services"	20-Aug-07	30-Sep-08	229055.20	=""	="Cordelta Pty ltd"	22-Nov-07 01:18 PM	

+="CN47862"	"Adjustments for 06/07 Land Tax for Mitchell"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	32453.02	=""	="Jones Lang LaSalle (ACT) P/L"	22-Nov-07 01:33 PM	

+="CN47874"	"Adjustment of 06/07 for Land Tax - Chester Hill"	="National Archives of Australia"	22-Nov-07	="Land tax"	25-Oct-07	31-Oct-07	15127.80	=""	="Jones Lang LaSalle (NSW) P/L"	22-Nov-07 01:40 PM	

+="CN47875"	"ICON Annual Levy"	="National Archives of Australia"	22-Nov-07	="Data services"	26-Oct-07	30-Jun-08	16500.00	=""	="Department of Finance"	22-Nov-07 01:44 PM	

+="CN47876"	"Fleet management and leasing services (Ref standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	30-Oct-07	29-Oct-09	19572.00	=""	="LeasePlan"	22-Nov-07 01:50 PM	

+="CN47877"	"The mailout consists of an A4 letter in a DL envelope to approx 700,000 clients."	="Australian Taxation Office"	22-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Nov-07	30-Jun-08	58608.00	="118.05"	="Hermes Precisa Pty Ltd"	22-Nov-07 01:52 PM	

+="CN47878"	"Supply of Laptops"	="National Archives of Australia"	22-Nov-07	="Notebook computers"	01-Nov-07	15-Nov-07	23945.00	=""	="Harris Technology"	22-Nov-07 01:55 PM	

+="CN47879"	" to undertake the production of 'The People of Australia' series of publication "	="Department of Immigration and Citizenship"	22-Nov-07	="Printed publications"	10-Sep-07	30-Jun-08	55350.00	="RFT07/51"	="the Trustee for EPD unit trust"	22-Nov-07 01:58 PM	

+="CN47880"	"Fleet management and leasing services (Ref standing offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	28-Jul-06	27-Jul-08	39628.00	=""	="LeasePlan"	22-Nov-07 02:03 PM	

+="CN47881"	"Provision of Legal Services"	="Department of Education, Science and Training"	22-Nov-07	="Legal services"	29-Aug-07	31-Dec-07	11510.00	="PRN16769"	="Tom Brennan"	22-Nov-07 02:03 PM	

+="CN47883"	"Fleet management and leasing services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	22-Nov-07	="Vehicle leasing"	09-Nov-07	08-Nov-09	40682.00	=""	="LeasePlan"	22-Nov-07 02:16 PM	

+="CN40684"	" Computer Replacement Program - Alice Springs "	="Family Court of Australia"	22-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	20-Nov-09	13970.00	=""	="Dell Australia Pty Ltd"	22-Nov-07 02:21 PM	

+="CN47882-A1"	"Contract for the provision of electronic voting services for the National Staff Consultative."	="Department of Immigration and Citizenship"	22-Nov-07	="Communications Devices and Accessories"	06-Sep-07	31-Oct-07	13556.00	=""	="Registries Limited"	22-Nov-07 02:28 PM	

+="CN47884"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	15-May-07	15-May-08	10688.00	=""	="SPSS Australasia Pty Ltd"	22-Nov-07 02:43 PM	

+="CN47885"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	73668.37	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 02:44 PM	

+="CN47886"	"Software master licence agreement"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	22-May-07	22-May-08	12100.00	=""	="Leximancer Pty Ltd"	22-Nov-07 02:51 PM	

+="CN47557"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	21-Nov-07	03-Dec-07	11932.51	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	22-Nov-07 02:52 PM	

+="CN47887"	"Construction works for Darwin"	="Department of Immigration and Citizenship"	22-Nov-07	="Building and Construction Machinery and Accessories"	06-Sep-07	15-May-08	4059136.00	=""	="Sitzler Pty Ltd"	22-Nov-07 03:02 PM	

+="CN47889"	"Provision of software and support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	23-Jul-07	23-Jul-07	95000.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:10 PM	

+="CN47891"	"Design Facilitation - HOCOLEA Capability project"	="Australian Taxation Office"	22-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	21-Dec-07	10768.20	="05.164"	="ThinkPlace Pty Ltd as trustee for the ThinkPlace Trust"	22-Nov-07 03:14 PM	

+="CN47892"	"Provision of software and software support services"	="Department of Immigration and Citizenship"	22-Nov-07	="Software"	01-Jul-07	30-Jun-08	750285.00	=""	="Hewlett-Packard Australia Pty Ltd"	22-Nov-07 03:15 PM	

+="CN47890-A1"	"CRS Alice Springs, 1/8 Gregory Terrace, NT"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Sep-07	31-Aug-10	166990.00	=""	="AGEO Pty Ltd"	22-Nov-07 03:17 PM	

+="CN47893"	"Information services - Brio report developer services"	="Australian Federal Police"	22-Nov-07	="Computer services"	31-Jul-06	30-Jun-08	341000.00	=""	="Forge Data Solutions Pty Ltd"	22-Nov-07 03:17 PM	

+="CN47894"	"Provision of Caddy Units, Australia Wide"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	342201.00	=""	="Planex Sales Pty Ltd"	22-Nov-07 03:27 PM	

+="CN47888"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	22-Nov-07	="Military rotary wing aircraft"	22-Nov-07	03-Dec-07	72366.32	=""	="Sikorsky Aircraft Australia Ltd"	22-Nov-07 03:31 PM	

+="CN47897"	"FRENCH HORN, INCLUDES CASE, LYRE AND MOUTHPIECE, QUANTITY 6."	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	01-May-08	51599.99	=""	="PRO AUDIO SUPPLIES PTY LTD"	22-Nov-07 03:33 PM	

+="CN47900"	"Provision of Heigh Adjustable Desks & workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	13-Feb-07	13-Feb-07	208163.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:35 PM	

+="CN47901"	"Level1, 16 Mort St Refurbishment"	="Department of Education, Science and Training"	22-Nov-07	="General building construction"	02-Oct-07	31-Oct-07	11372.90	="PRN17104"	="Construction Control Interiors P/L"	22-Nov-07 03:35 PM	

+="CN47898"	"Night Vision Goggle Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	11-Sep-07	06-Jan-08	1866569.10	=""	="Point Trading"	22-Nov-07 03:36 PM	

+="CN47902"	"Provision of Height Adjustable Desks & Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	23-Mar-07	23-Mar-07	70657.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:38 PM	

+="CN47904-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	30-Nov-07	11050.00	=""	="Australian Federal Police"	22-Nov-07 03:40 PM	

+="CN47899-A1"	"Security vetting Services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	12727.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:42 PM	

+="CN47905"	"Height Adjustable Desks and Workstation Spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	25164.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:42 PM	

+="CN47896-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	30-Aug-07	22-Nov-07	11300.00	=""	="Australian Federal Police"	22-Nov-07 03:43 PM	

+="CN47907"	" Cleaning Costs "	="Department of Finance and Administration"	22-Nov-07	="Cleaning and janitorial services"	12-Nov-07	11-Nov-09	1301004.40	="RFT01/MPS/2007"	="Glad Group Pty Ltd"	22-Nov-07 03:45 PM	

+="CN47908"	"Provision of height adjustable desks & workstation spines"	="Department of Immigration and Citizenship"	22-Nov-07	="Office furniture"	05-Apr-07	05-Apr-07	16359.00	=""	="Schiavello Pty Ltd"	22-Nov-07 03:45 PM	

+="CN47909-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	19-Nov-07	31-Dec-07	11380.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 03:46 PM	

+="CN47906"	"Night Weapon Sight (F7000A) Spare Parts"	="Defence Materiel Organisation"	22-Nov-07	="Surveillance and detection equipment"	18-Oct-07	18-Apr-08	230087.00	=""	="Qioptiq P/L"	22-Nov-07 03:47 PM	

+="CN47910"	"Mitchell restrooms upgrade"	="National Archives of Australia"	22-Nov-07	="Building construction and support and maintenance and repair services"	02-Nov-07	30-Jun-08	45584.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:00 PM	

+="CN47911-A1"	"Security vetting services"	="Department of Immigration and Citizenship"	22-Nov-07	="Security and personal safety"	16-Nov-07	28-Dec-07	19860.00	=""	="Persec Solutions Pty Ltd"	22-Nov-07 04:02 PM	

+="CN47913"	"Changeover for Cabinet release Interactive"	="National Archives of Australia"	22-Nov-07	="Video production services"	09-Nov-07	01-Jan-08	14949.00	=""	="Lightwell P/L"	22-Nov-07 04:05 PM	

+="CN47914"	"Research - Margaret George Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	10000.00	=""	="Craig Stockings"	22-Nov-07 04:14 PM	

+="CN47915"	"Cable Assembly for Infra-red lluminators"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	17-Dec-07	99300.00	=""	="Owen International Pty Ltd"	22-Nov-07 04:16 PM	

+="CN47916"	"Research - Frederick Watson Fellowship"	="National Archives of Australia"	22-Nov-07	="Awards"	09-Nov-07	30-Jun-08	15000.00	=""	="Mickey Dewar"	22-Nov-07 04:18 PM	

+="CN47917"	"Contractor Services"	="National Archives of Australia"	22-Nov-07	="Personnel recruitment"	15-Nov-07	31-Dec-07	50000.00	=""	="DFP Recruitment Services"	22-Nov-07 04:31 PM	

+="CN47920"	"Replacement of Humidifiers - Parkes"	="National Archives of Australia"	22-Nov-07	="Building support services"	15-Nov-07	30-Jun-08	20328.00	=""	="Multiplex Facilities Management"	22-Nov-07 04:36 PM	

+="CN47921"	"CRS Australia Bankstown Suite 3, 402-410 Chapel Road Bankstown"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jul-05	30-Jun-09	480330.00	=""	="MP Delmege & AC Veale"	22-Nov-07 04:38 PM	

+="CN47923"	"Helmet Mount Frame Assembly"	="Defence Materiel Organisation"	22-Nov-07	="Infrared imagers"	16-Aug-07	30-Nov-07	1176960.40	=""	="Point Trading"	22-Nov-07 04:42 PM	

+="CN47924"	"CRS Australia Bankstown - Sub Unit, 29 Kitchener Parade, Bankstown, NSW"	="CRS Australia"	22-Nov-07	="Lease and rental of property or building"	01-Jun-07	31-May-09	26000.00	=""	="Chris Mognham"	22-Nov-07 04:43 PM	

+="CN47912"	" TROMBONE TENOR, C/W CASE, LYRE, MOUTHPIECE AND STAND, QUANTITY 11 "	="Defence Materiel Organisation"	22-Nov-07	="Musical Instruments and Games and Toys and Arts and Crafts and Educational Equipment and Materials and Accessories and Supplies"	26-Oct-07	14-Nov-08	49571.71	="RFQ 257227"	="ELTHAM WOODWIND & BRASS CENTRE"	22-Nov-07 05:02 PM	

+="CN47497"	"Purchase of coveralls, utility, grey, combat NAVY"	="Defence Materiel Organisation"	22-Nov-07	="Overalls and coveralls"	02-Nov-07	11-Feb-08	418000.00	=""	="Tuffa Workwear Pty Ltd"	22-Nov-07 05:04 PM	

+="CN47925"	" PANEL AND PAINT LANDROVER "	="Department of Defence"	22-Nov-07	="Motor vehicles"	18-Jun-07	02-Aug-07	14508.27	=""	="PETES PANEL AND PAINT"	22-Nov-07 05:23 PM	

+="CN47926"	"Ribbon for Service Cap, Royal Australian Navy"	="Defence Materiel Organisation"	22-Nov-07	="Synthetic ribbons"	02-Nov-07	06-Dec-07	14414.40	="ACC030/0708"	="Cash's Australia Pty Ltd"	22-Nov-07 05:56 PM	

+="CN47927"	" Ceremonial Sashs, Sword Knots and, Shoulder Boards and Ornamental Lace "	="Defence Materiel Organisation"	22-Nov-07	="Military uniforms"	15-Nov-07	25-Mar-08	173633.13	="ACC027A/0708"	="P Blashki and Sons"	22-Nov-07 06:04 PM	

+="CN47928"	"Production of a short video on international policing"	="Australian Federal Police"	23-Nov-07	="Management and Business Professionals and Administrative Services"	22-Aug-07	30-Jul-08	30756.00	=""	="Cre8ive Australasia Pty Ltd T/a Neon Productions"	23-Nov-07 07:03 AM	

+="CN47929-A3"	"Cleaning Service for AFP offices in Perth"	="Australian Federal Police"	23-Nov-07	="Cleaning and janitorial services"	01-Mar-06	30-Jun-11	163915.00	="6/2005"	="Delron Cleaning Pty Ltd"	23-Nov-07 07:27 AM	

+="CN47930"	"Night Aiming Device (NAD) Spares"	="Defence Materiel Organisation"	23-Nov-07	="Surveillance and detection equipment"	18-Oct-07	17-Jan-08	485082.34	=""	="BAE Systems Australia Ltd"	23-Nov-07 07:59 AM	

+="CN47931-A1"	" 9150 66-068-0440 Engine Lubricating oil  OMD 113 in 205L drum (I/C 116114)  18 EA "	="Defence Materiel Organisation"	23-Nov-07	="Lubricants and oils and greases and anti corrosives"	15-Nov-07	22-Nov-07	13069.11	=""	="CASTROL AUST PTY LTD"	23-Nov-07 08:06 AM	

+="CN47932"	"CADET SHIRT, WOMAN'S BLUE/WHITE"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	21-Nov-07	02-Jul-08	63394.37	=""	="AUSTRALIAN DEFENCE APPAREL"	23-Nov-07 08:11 AM	

+="CN47933"	"Night Vision Goggle Spares"	="Defence Materiel Organisation"	23-Nov-07	="Surveillance and detection equipment"	24-Oct-05	22-Jan-08	51920.00	=""	="Point Trading"	23-Nov-07 08:13 AM	

+="CN47934"	" 6850 66-153-6323 Liquid Cooling Corrosion Inhibitor  Nalcool Maximum C-15 in 15L pail  80  drums       "	="Defence Materiel Organisation"	23-Nov-07	="Lubricants and oils and greases and anti corrosives"	08-Oct-07	15-Oct-07	27104.00	=""	="MTU Detroit Diesel"	23-Nov-07 08:16 AM	

+="CN47936"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	08-Feb-08	19573.38	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:34 AM	

+="CN47937"	"A23 AIRCRAFT - REPAIRS TO TURBINE,AIRCRAFT COOLING"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	08-Feb-08	19573.38	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:41 AM	

+="CN47938"	"A23 AIRCRAFT - REPAIRS TO CYLINDER AND PISTON ASSEMBLY,LANDING GEAR"	="Defence Materiel Organisation"	23-Nov-07	="Military fixed wing aircraft"	20-Nov-07	19-Jan-08	28457.21	=""	="AIRFLITE PTY LTD"	23-Nov-07 08:46 AM	

+="CN47939"	" Procurement services - review of records management procurement strategy "	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	07-May-07	15-Jun-07	46556.00	="RFT 22-2005"	="Grosvenor Management Consulting Pty Ltd"	23-Nov-07 09:07 AM	

+="CN47940"	"Provision of procurement support services"	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	02-Oct-07	01-Jun-08	80906.00	="RFT 22-2005"	="Grosvenor Management Consultants Pty Ltd"	23-Nov-07 09:37 AM	

+="CN47942"	"Life Raft, Inflatable"	="Defence Materiel Organisation"	23-Nov-07	="Lifeboats or liferafts"	10-Oct-07	09-Dec-07	26274.60	=""	="RFD AUSTRALIA"	23-Nov-07 09:52 AM	

+="CN47941"	"Procurement assistance for a workforce total time management system."	="Australian Federal Police"	23-Nov-07	="Professional procurement services"	19-Nov-07	31-Dec-07	50000.00	="RFT 22-2005"	="Grosvenor Management Consulting Pty Ltd"	23-Nov-07 09:58 AM	

+="CN47944"	"Life Presever Vest"	="Defence Materiel Organisation"	23-Nov-07	="Life vests or preservers"	16-Oct-07	08-Jan-08	32749.20	=""	="RFD AUSTRALIA P/L"	23-Nov-07 10:04 AM	

+="CN47945"	" CRS Australia - Bega, 50 Parker Street NSW - lease term 3 years "	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	06-Jun-07	05-Jun-10	55096.64	=""	="Clifford Robert Kilner"	23-Nov-07 10:07 AM	

+="CN47946"	" CRS Australia - Belconnen, Unit 115, Level 1, Northpoint Plaza, 8 Chandler Street, ACT - 3 year term "	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Aug-07	31-Jul-10	225326.61	=""	="Belpark Pty Ltd"	23-Nov-07 10:12 AM	

+="CN47943"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	16323.59	=""	="Sikorsky Aircraft Australia LTD"	23-Nov-07 10:17 AM	

+="CN47949"	"CRS Australia - Browns Plains, 40 Browns Plains Road, Browns Plains, QLD - Lease term 3 years - Lease Value #117,454.20 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-09	117454.20	=""	="Blaszak Just Holdings Pty Ltd"	23-Nov-07 10:24 AM	

+="CN47948"	"SUPPLY OF PULSE OXIMETERS"	="Defence Materiel Organisation"	23-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	31-Dec-07	14520.00	=""	="DATEX-OHMEDA PTY LTD"	23-Nov-07 10:28 AM	

+="CN47951"	"Life Presever Vest mk15w"	="Defence Materiel Organisation"	23-Nov-07	="Life vests or preservers"	16-Oct-07	08-Jan-08	32749.20	=""	="RFD AUSTRALIA"	23-Nov-07 10:32 AM	

+="CN47953"	"CRS Australia - Coffs Harbour, Suite 1, 1 Duke Street, Coffs Harbour, NSW - Lease Term 3 year"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Feb-07	31-Jan-10	249478.27	=""	="HS, HS & MS Hayer"	23-Nov-07 10:33 AM	

+="CN47954"	"CRS Australia - Echuca, 284 Hare Street, Echuca, VIC - lease term 5 years - lease value $100,331.73 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Aug-07	31-Jul-11	100331.73	=""	="Fyne Bilt Homes Pty Ltd"	23-Nov-07 10:37 AM	

+="CN47955"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	25-Jan-09	23883.13	="Pending project manager"	="KANE CONSTRUCTIONS"	23-Nov-07 10:37 AM	

+="CN47956"	"Contractor Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Dec-07	11000.00	="."	="MANPOWER SERVICES (AUST) P/L"	23-Nov-07 10:37 AM	

+="CN47957"	"Contractor Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Apr-08	75075.00	="."	="CULTURAL PERSPECTIVES PTY LTD"	23-Nov-07 10:37 AM	

+="CN47958"	"Construction Early Works"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Jun-08	697620.00	="FIN07-AMG003"	="COX HUMPHRIES MOSS"	23-Nov-07 10:37 AM	

+="CN47959-A1"	"Divestment Expenses"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	19-Oct-07	19-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	23-Nov-07 10:38 AM	

+="CN47960"	"Additional Construction Works"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	19-Nov-07	31-Jan-08	134174.48	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	23-Nov-07 10:38 AM	

+="CN47961"	"Travel - Transportation Costs"	="Department of Finance and Administration"	23-Nov-07	="Travel and Food and Lodging and Entertainment Services"	20-Nov-07	21-Dec-07	13050.06	="-"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	23-Nov-07 10:38 AM	

+="CN47962"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	23-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	31-Dec-09	79395.20	="Fin05/AMG010"	="APP CORPORATION PTY LTD"	23-Nov-07 10:38 AM	

+="CN47963"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	29-Feb-08	30000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	23-Nov-07 10:38 AM	

+="CN47964"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Dec-07	60000.00	="."	="AUSTRALIAN GOVERNMENT SOLICITOR - BARTON"	23-Nov-07 10:38 AM	

+="CN47965"	"Peer Review"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	12-Dec-07	59297.00	="0000000"	="CSIRO (ACT)"	23-Nov-07 10:38 AM	

+="CN47966"	"Legal Costs"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	23-Nov-07	10500.00	="RFTLSB01/2005"	="BLAKE DAWSON WALDRON - ACT"	23-Nov-07 10:38 AM	

+="CN47967"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	07-Dec-07	13250.00	="o"	="RISK & PROJECT MANAGEMENT PTY LTD"	23-Nov-07 10:39 AM	

+="CN47968"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	23-Nov-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	07-Dec-07	13000.00	="o"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	23-Nov-07 10:39 AM	

+="CN47971"	"CRS Australia - Epping, Suite 1, Level 1, 240 Beecroft Road, Epping, NSW - lease term 3 years - lease value $281,829.18 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Feb-06	31-Jan-09	281829.18	=""	="IOOF Australia Trustees NSW Ltd"	23-Nov-07 10:45 AM	

+="CN47975"	"CRS Australia - Geelong 183 Little Malop Street, Geelong, VIC - lease term 3 years - total lease $230,250.00 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	230250.00	=""	="JI & M Bethune"	23-Nov-07 10:51 AM	

+="CN47972"	"Purchase of Coats and Trousers, Camouflage Pattern, DPCU, Various Sizes"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	22-Aug-07	24-May-08	3119488.20	=""	="Can't Tear Em Pty Ltd"	23-Nov-07 10:51 AM	

+="CN47979"	"CRS Australia - Horsham 50D Pynsent Street, Horsham, VIC - lease term 5 years - lease Value $72,312.00 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Sep-06	31-Aug-11	72312.00	=""	="TS & SMM Leong"	23-Nov-07 10:55 AM	

+="CN47977"	" RING, DEE "	="Defence Materiel Organisation"	23-Nov-07	="Restraint straps or buckles or accessories or supplies"	16-Oct-07	15-Apr-08	55522.50	=""	="RFD AUSTRALIA"	23-Nov-07 10:57 AM	

+="CN47981"	"Supply of 15 x Cut-Off Saws, Circular, Portable, Gasoline (Husqvarna K950/16)"	="Defence Materiel Organisation"	23-Nov-07	="Power saws"	21-Nov-07	20-Dec-07	28875.00	="FV7026"	="Sydney Tools Pty Ltd"	23-Nov-07 11:11 AM	

+="CN47982"	" Supply and deliver quantity 30ea Cylinder assembly actuating  "	="Defence Materiel Organisation"	23-Nov-07	="Kinetic power transmission"	22-Nov-07	03-Jan-08	26466.00	=""	="Daimler Chrysler Australia Pacific P/L"	23-Nov-07 11:12 AM	

+="CN47983"	"Shipborne Rescue Strops"	="Defence Materiel Organisation"	23-Nov-07	="Fall protection and rescue equipment"	16-Oct-07	11-Dec-07	43340.00	=""	="SOS MARINE"	23-Nov-07 11:20 AM	

+="CN47980"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	23-Nov-07	="Medical Equipment and Accessories and Supplies"	13-Nov-07	10-Dec-07	13366.10	=""	="Becton Dickinson Pty Ltd"	23-Nov-07 11:24 AM	

+="CN47984"	"CRS Australia - Inala Shops 2 & 3, Cnr. Wirraway Parade & Partridge Street, Inala, QLD"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Dec-07	30-Nov-09	545737.87	=""	="Queensland Truck Rental Pty Ltd"	23-Nov-07 11:33 AM	

+="CN47985-A1"	"Recruitment - Software Achitect"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	26-Sep-07	30-Jun-08	282700.00	=""	="Tarakan Consulting Pty Ltd"	23-Nov-07 11:33 AM	

+="CN47986"	"Battery Assembly"	="Defence Materiel Organisation"	23-Nov-07	="Product specific battery packs"	10-Oct-07	09-Dec-07	14018.40	=""	="RFD AUSTRALIA P/L"	23-Nov-07 11:40 AM	

+="CN47989-A1"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	11-Oct-07	01-Aug-08	129040.34	=""	="Eurolink Consulting Australia P/L"	23-Nov-07 11:46 AM	

+="CN47991-A1"	"Provision for System tester"	="Comsuper"	23-Nov-07	="Human resources services"	17-Nov-07	30-Jun-08	141680.00	=""	="Fujitsu Australia Limted"	23-Nov-07 11:51 AM	

+="CN47993-A1"	"Provision of Project Manager"	="Comsuper"	23-Nov-07	="Human resources services"	01-Dec-07	30-Nov-08	286000.00	=""	="Oakton AA Services"	23-Nov-07 11:54 AM	

+="CN47990-A1"	"Services for the removal and destruction of sensitive paper waste."	="Centrelink"	23-Nov-07	="Document destruction services"	02-May-07	30-Sep-09	109156.00	=""	="Recall Information Management Pty Ltd"	23-Nov-07 11:57 AM	

+="CN47996"	"Permanenet Guard Service for ACC Sydney Office for 8 months"	="Australian Crime Commission"	23-Nov-07	="Guard services"	01-Aug-07	31-Mar-08	258057.12	=""	="Chubb Protective Services NSW"	23-Nov-07 11:58 AM	

+="CN47997"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	10-Oct-07	10-Jan-08	28872.00	=""	="Hays Personnel Service"	23-Nov-07 12:02 PM	

+="CN47987"	"SUPPRESSOR FLAS"	="Defence Materiel Organisation"	23-Nov-07	="Light weapons and ammunition"	20-Apr-07	15-May-08	53614.00	=""	="THALES PTY LDS"	23-Nov-07 12:09 PM	

+="CN47999"	"Suspension kit equipment for Toyota Landcruisers"	="Australian Crime Commission"	23-Nov-07	="Automobile suspension systems"	10-Oct-07	10-Oct-07	12854.00	=""	="Ateco Automotive Pty Ltd"	23-Nov-07 12:10 PM	

+="CN47998"	"Foam, Aqueous Film Forming, Fire Fighting x 50 200L drums"	="Defence Materiel Organisation"	23-Nov-07	="Foaming agents"	01-Nov-07	30-Nov-07	72050.00	=""	="Ansul Distribution Warehouse"	23-Nov-07 12:11 PM	

+="CN48000"	"HEEDS"	="Defence Materiel Organisation"	23-Nov-07	="Breathing apparatus accessories or supplies"	10-Oct-07	20-Nov-07	15112.02	=""	="RFD TECHNOLOGIES"	23-Nov-07 12:15 PM	

+="CN48002"	"Vehicle Compliance Inspections"	="Australian Crime Commission"	23-Nov-07	="Vehicle inspection services"	10-Oct-07	10-Oct-07	11538.00	=""	="KC Williams Consulting Pty Ltd"	23-Nov-07 12:18 PM	

+="CN48003-A1"	"CRS Australia - Lismore Suite 11, Level 1, Conway Plaza, Lismore, NSW - 2 year lease term - total lease value $104,240.50 plus GST"	="CRS Australia"	23-Nov-07	="Lease and rental of property or building"	01-Oct-07	30-Sep-09	104240.50	=""	="Conway Plaza Pty Ltd"	23-Nov-07 12:20 PM	

+="CN48001"	"Purchase of Coats & Trousers, Camouflage Pattern, DPDU, Various Sizes"	="Defence Materiel Organisation"	23-Nov-07	="Military uniforms"	22-Aug-07	24-May-08	1783160.50	=""	="Can't Tear Em Pty Ltd"	23-Nov-07 12:21 PM	

+="CN48004"	"Computer services and equipment"	="Australian Crime Commission"	23-Nov-07	="Computer Equipment and Accessories"	10-Oct-07	10-Oct-07	51818.78	=""	="Network General"	23-Nov-07 12:23 PM	

+="CN48008"	"Recruitment - Project Manager"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	09-Oct-07	08-Jul-08	12980.26	=""	="Patriot Alliance"	23-Nov-07 12:27 PM	

+="CN48006"	"Billy Pugh Rescue Helicopter Net"	="Defence Materiel Organisation"	23-Nov-07	="Fall protection and rescue equipment"	10-Oct-07	19-Dec-07	29947.50	=""	="RFD AUSTRALIA"	23-Nov-07 12:27 PM	

+="CN48009"	"Accommodation & Venue for Leadership Program"	="Australian Crime Commission"	23-Nov-07	="Conference centres"	04-Dec-07	06-Dec-07	12200.00	=""	="Novotel Canberra"	23-Nov-07 12:31 PM	

+="CN48012"	" RAAF Ensign Flags "	="Defence Materiel Organisation"	23-Nov-07	="Flags or accessories"	23-Nov-07	15-Mar-08	18703.30	="ACC003/0708"	="Carrol and Richardson Flagworld"	23-Nov-07 12:52 PM	

+="CN47857"	"Omniscope software - Microsoft Outlook Plug-In for E-Mail & Project Management."	="Administrative Appeals Tribunal"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	31-Oct-08	15000.00	=""	="Think Software Solutions Pty Ltd"	23-Nov-07 12:54 PM	

+="CN48014"	"Provision of Height Adjustable desks and workstation spines"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	30-Nov-06	30-Nov-06	21896.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:11 PM	

+="CN48013"	"Legal Advice and Representation"	="Australian Crime Commission"	23-Nov-07	="Legal services"	09-May-07	09-Aug-07	14274.50	=""	="Tim Game SC Barrister"	23-Nov-07 01:11 PM	

+="CN48015-A1"	" Provision of Caddy unit Australia wide "	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	14-Nov-06	14-Nov-06	49775.00	=""	="Planex Sales Pty Ltd"	23-Nov-07 01:15 PM	

+="CN48016"	"Provision of height adjustable desks and workstations"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	03-Oct-06	03-Oct-06	45951.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:18 PM	

+="CN48017"	"Printer cartridges"	="Australian Crime Commission"	23-Nov-07	="Inks"	19-Oct-07	19-Oct-07	12720.71	=""	="Cornerstone TSS Pty Ltd"	23-Nov-07 01:18 PM	

+="CN48018"	"Provision of height adjustable desks and workstations"	="Department of Immigration and Citizenship"	23-Nov-07	="Office furniture"	22-May-07	22-May-07	75768.00	=""	="Schiavello Pty Ltd"	23-Nov-07 01:21 PM	

+="CN48019"	"Security System Installation ACC Darwin"	="Australian Crime Commission"	23-Nov-07	="Security and control equipment"	23-Oct-07	23-Oct-07	137731.00	=""	="Honeywell Ltd"	23-Nov-07 01:23 PM	

+="CN48021-A5"	" Provision of Information Technology Specialist Services "	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	15-Nov-07	03-Oct-08	387035.00	=""	="CSC Australia"	23-Nov-07 01:28 PM	

+="CN48022-A1"	"Value Focusing Workshop"	="Australian Crime Commission"	23-Nov-07	="Workshops"	23-Oct-07	24-Nov-07	17967.37	=""	="The Value Creation Group"	23-Nov-07 01:29 PM	

+="CN48023"	"Systems for People Release 2 - CCMD"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	04-Jun-07	06-Aug-07	410163.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:32 PM	

+="CN48024-A1"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	17-Oct-07	29-Feb-08	113632.00	=""	="Eurolink Consulting Australia P/L"	23-Nov-07 01:32 PM	

+="CN47869"	"Legal Services in relation to tender/contract"	="Australian Crime Commission"	23-Nov-07	="Legal services"	29-Oct-07	29-Nov-07	50000.00	=""	="Blake Dawson Waldron"	23-Nov-07 01:34 PM	

+="CN48025"	"Official visit"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Business administration services"	30-Jul-07	16-Sep-07	12900.00	=""	="NINA FUDALA"	23-Nov-07 01:36 PM	

+="CN48026-A5"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	20-Mar-07	17-Jul-09	442750.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 01:36 PM	

+="CN47861"	"Legal Advice"	="Australian Crime Commission"	23-Nov-07	="Legal services"	12-Sep-07	12-Sep-07	11514.00	=""	="Australian Government Solicitor"	23-Nov-07 01:36 PM	

+="CN47416"	"IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	23-Jul-07	23-Jul-07	106964.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 01:39 PM	

+="CN48027"	"Monitoring Officer Training Programme - Sanctions Regime"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	01-Jul-07	28-Sep-07	132000.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:39 PM	

+="CN47439"	"Software Maintenance"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	26-Jul-07	22-Mar-08	19810.70	=""	="Planwell Technology Pty Ltd"	23-Nov-07 01:41 PM	

+="CN48029"	" 457 Monitoring Officer Training Programme "	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	04-Jun-07	30-Jun-07	16500.00	=""	="Total Learn Pty Ltd"	23-Nov-07 01:43 PM	

+="CN47442-A2"	"Software Development - Recruitment"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	27-Jul-07	30-Jun-08	173307.50	=""	="Tarakan Consulting Pty Ltd"	23-Nov-07 01:43 PM	

+="CN47455"	"Vidcon maintenance"	="Australian Crime Commission"	23-Nov-07	="Videoconferencing systems"	30-Jul-07	30-Apr-08	10560.00	=""	="Vantage Systems Pty Ltd"	23-Nov-07 01:44 PM	

+="CN48028"	"Provision of executive recruitment services"	="Australian Federal Police"	23-Nov-07	="Recruitment services"	21-May-07	20-May-08	29700.00	=""	="Ford Kelly Executive Connection Pty Ltd"	23-Nov-07 01:44 PM	

+="CN48030"	"Interpreter - official hospitality"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Writing and translations"	11-Sep-07	11-Sep-07	11000.00	=""	="CONGRESS RENTAL"	23-Nov-07 01:46 PM	

+="CN48031"	"provision of executive recruitment services"	="Australian Federal Police"	23-Nov-07	="Recruitment services"	21-May-07	20-May-08	90200.00	=""	="Ford Kelly Executive Connection"	23-Nov-07 01:50 PM	

+="CN48032"	"Interpreter - official hospitalityi"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Writing and translations"	02-Sep-07	09-Sep-07	24000.00	=""	="CONGRESS RENTAL"	23-Nov-07 01:52 PM	

+="CN48033-A2"	"457 Monitoring Officer Training Program"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	01-Jul-07	30-Sep-07	119630.00	=""	="Wisdom Learning Pty Ltd"	23-Nov-07 01:55 PM	

+="CN48036-A1"	"Driver training course"	="Australian Federal Police"	23-Nov-07	="Vocational training"	01-Mar-08	30-Jun-08	18750.00	="May-05"	="Transport Industry Skills Centre Inc"	23-Nov-07 02:00 PM	

+="CN48020"	"SLING, SMALL ARMS"	="Defence Materiel Organisation"	23-Nov-07	="Light weapons and ammunition"	19-Nov-07	27-Feb-08	78144.00	=""	="THALES PTY LTD"	23-Nov-07 02:02 PM	

+="CN48037"	"motor vehicle spare parts"	="Department of Defence"	23-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Nov-07	30-Nov-07	21320.16	=""	="ALBURY SPEED & PERFORMANCE CENTRE"	23-Nov-07 02:05 PM	

+="CN47429"	"SAP Standard Maintenance Service"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	25-Jul-07	25-Jul-07	36932.00	=""	="SAP Australia Pty Ltd"	23-Nov-07 02:07 PM	

+="CN48038"	"POCKET RADIO SURVIVAL"	="Defence Materiel Organisation"	23-Nov-07	="Aircraft spars"	22-Aug-07	25-Oct-07	56460.00	=""	="Light Aircraft"	23-Nov-07 02:07 PM	

+="CN48040"	"Monitoring Officer Training Programme"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	28-May-07	30-Jun-07	33000.00	=""	="Wisdom Learning Pty Ltd"	23-Nov-07 02:08 PM	

+="CN48039"	"Flammable liquid storage cabinets"	="Department of Defence"	23-Nov-07	="Hazardous materials cabinets"	22-Nov-07	07-Dec-07	24100.00	=""	="Protector Alsafe Pty Ltd"	23-Nov-07 02:09 PM	

+="CN45515"	"ANTI-VIRUS SOFTWARE LICENCES"	="Department of Human Services"	23-Nov-07	="License management software"	15-Oct-07	29-Oct-07	12276.00	=""	="DATAFLEX PTY LTD"	23-Nov-07 02:10 PM	

+="CN48041-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Information technology consultation services"	06-Jul-07	30-Jun-09	418990.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 02:11 PM	

+="CN45511"	" CUSTOMER SATISFACTION RESEARCH FOR THE HUMAN SERVICES AGENCIES. "	="Department of Human Services"	23-Nov-07	="Telecommunications media services"	26-Oct-07	30-Dec-08	15532.00	=""	="Taylor Nelson Sofres Australia P/L"	23-Nov-07 02:12 PM	

+="CN47410"	"Change Management Solutions"	="Australian Crime Commission"	23-Nov-07	="Business and corporate management consultation services"	18-Jul-07	12-Dec-07	350000.00	=""	="Cogent Business Solutions"	23-Nov-07 02:17 PM	

+="CN47413"	"Server"	="Australian Crime Commission"	23-Nov-07	="Computer servers"	20-Jul-07	20-Jul-07	79912.00	=""	="One Planet"	23-Nov-07 02:18 PM	

+="CN47431"	"ERP Project Preparation"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	25-Jul-07	25-Jul-07	586315.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:19 PM	

+="CN47604"	"ERP Project Realization Activities"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	21-Aug-07	21-Aug-07	711568.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:21 PM	

+="CN47638"	"ERP Project Preparation"	="Australian Crime Commission"	23-Nov-07	="Materials requirements planning logistics and supply chain software"	24-Aug-07	24-Aug-07	185181.00	="RFT TAC 13"	="Oxygen Business Solutions"	23-Nov-07 02:22 PM	

+="CN48042-A1"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Permanent information technology networking specialists"	02-Jul-07	30-Jun-08	99000.00	=""	="Paxus Australia Pty Limited"	23-Nov-07 02:23 PM	

+="CN47407"	"HP Communication Switches"	="Australian Crime Commission"	23-Nov-07	="Communications Devices and Accessories"	16-Jul-07	16-Jul-07	161582.00	=""	="Commander"	23-Nov-07 02:24 PM	

+="CN47464"	"Legal fees"	="Australian Crime Commission"	23-Nov-07	="Legal services"	02-Aug-07	02-Sep-07	11023.55	=""	="Australian Government Solicitor"	23-Nov-07 02:25 PM	

+="CN47469-A1"	"Media Monitoring Service"	="Australian Crime Commission"	23-Nov-07	="News and publicity services"	06-Aug-07	06-Aug-07	17248.36	=""	="Media Monitors Pty Ltd"	23-Nov-07 02:26 PM	

+="CN47470"	" Photocopier Impress Charges "	="Australian Crime Commission"	23-Nov-07	="Printer and facsimile and photocopier supplies"	06-Aug-07	06-Aug-07	21000.00	=""	="Fuji"	23-Nov-07 02:26 PM	

+="CN47472"	"Supply and Installation of Loose Furniture"	="Australian Crime Commission"	23-Nov-07	="Office furniture"	06-Aug-07	20-Sep-07	11774.00	=""	="CITE Office Furniture"	23-Nov-07 02:27 PM	

+="CN48043-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology systems or database administrators"	07-Jun-07	29-Aug-08	147840.00	=""	="Ambit Group Pty Ltd"	23-Nov-07 02:28 PM	

+="CN47478"	"Analyst Notebook V6 User Course"	="Australian Crime Commission"	23-Nov-07	="Computer based training software"	08-Jul-07	08-Jul-07	47272.72	=""	="Visual Analysis"	23-Nov-07 02:28 PM	

+="CN48035"	" DETECTOR KIT, EXPLOSIVES VAPOURTRACER PORTABLE  "	="Defence Materiel Organisation"	23-Nov-07	="Chemical evaluation instruments and supplies"	23-Nov-07	10-Dec-07	140195.00	=""	="GE SECURITY PTY LTD"	23-Nov-07 02:29 PM	

+="CN47480"	"Software licence"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	09-Aug-07	09-Aug-07	10046.00	=""	="Cybertrust Australia"	23-Nov-07 02:31 PM	

+="CN48046"	"Monitoring Officer Training Programme"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	23-Aug-07	05-Jun-08	49875.00	=""	="Intelligence Dynamics Pty Ltd"	23-Nov-07 02:31 PM	

+="CN48044"	"Design Services for implementation of the AFP Brand"	="Australian Federal Police"	23-Nov-07	="Branding of product naming services"	22-Jun-07	31-Jul-07	70000.00	=""	="Adcorp Australia Ltd"	23-Nov-07 02:32 PM	

+="CN48045"	" Airfares "	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Passenger transport"	30-Aug-07	30-Nov-07	33900.00	=""	="CARLSON WAGONLIT TRVEL NAVIGANT AUSTRALIA Pty Ltd"	23-Nov-07 02:33 PM	

+="CN47482"	"Novell Yearly Maintenance"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	09-Aug-07	09-Aug-07	60078.00	=""	="Novell"	23-Nov-07 02:33 PM	

+="CN47483"	"PABX Installation"	="Australian Crime Commission"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	10-Aug-07	10-Aug-07	19551.00	=""	="NEC Business Solutions"	23-Nov-07 02:35 PM	

+="CN48047"	"Assessment Officer for Complinace Portfolios"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology software developers"	01-Jul-07	31-Oct-07	94875.00	=""	="Australian Forensic Services"	23-Nov-07 02:35 PM	

+="CN47486"	" Backup Software "	="Australian Crime Commission"	23-Nov-07	="Backup or archival software"	13-Aug-07	13-Aug-07	19689.00	=""	="Alphawest"	23-Nov-07 02:37 PM	

+="CN47487"	"Computer Hardware"	="Australian Crime Commission"	23-Nov-07	="Computer Equipment and Accessories"	15-Aug-07	15-Aug-07	23238.00	=""	="Cerulean Solutions"	23-Nov-07 02:38 PM	

+="CN47492"	"Project Management & Implementation"	="Australian Crime Commission"	23-Nov-07	="Application implementation services"	15-Aug-07	15-Aug-07	19943.00	=""	="Cerulean Solutions"	23-Nov-07 02:39 PM	

+="CN47556-A1"	"Training Course"	="Australian Crime Commission"	23-Nov-07	="Computer based training software"	16-Aug-07	24-Aug-07	16406.62	=""	="SAP Australia Pty Ltd"	23-Nov-07 02:40 PM	

+="CN48050-A1"	"Supply and Installation of Electronic Key Safes"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Security systems services"	01-Aug-07	31-Jul-10	290574.64	=""	="CIC Secure Pty Ltd"	23-Nov-07 02:40 PM	

+="CN48049"	" Compliance Officer Training "	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	25-Jul-07	26-Oct-07	32400.00	=""	="Australian Forensic Services"	23-Nov-07 02:40 PM	

+="CN47577"	"Media Monitoring Service"	="Australian Crime Commission"	23-Nov-07	="News and publicity services"	17-Aug-07	17-Aug-07	10664.00	=""	="Media Monitors"	23-Nov-07 02:41 PM	

+="CN47616"	"Engineering Services for Acoommodation Project"	="Australian Crime Commission"	23-Nov-07	="Professional engineering services"	21-Aug-07	21-Aug-07	20000.00	=""	="B Armstrong and Co"	23-Nov-07 02:42 PM	

+="CN48051"	"Official visit"	="Department of the Prime Minister and Cabinet"	23-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	28000.00	=""	="ESS SUPPORT SERVICES WORLDWIDE"	23-Nov-07 02:42 PM	

+="CN48053"	"Monitoring Officer Training"	="Department of Immigration and Citizenship"	23-Nov-07	="Computer based training software"	03-Jul-07	07-Sep-07	24000.00	=""	="Intelligence Dynamics"	23-Nov-07 02:46 PM	

+="CN48052"	"EXTINGUISHER, FIRE WATER, AIR PRESSURE TYPE, 10 LITRE, C/W WALL BRACKET"	="Defence Materiel Organisation"	23-Nov-07	="Fire extinguishers"	28-Aug-07	14-Dec-07	65092.50	=""	="CHUBB FIRE SAFETY LTD"	23-Nov-07 02:47 PM	

+="CN47626"	"Security Services"	="Australian Crime Commission"	23-Nov-07	="Guard services"	21-Aug-07	21-Aug-07	22028.00	=""	="Scope Protective Services"	23-Nov-07 02:49 PM	

+="CN48054"	"delivery of a professional development delivery framework"	="Australian Federal Police"	23-Nov-07	="Vocational training"	12-Sep-07	12-Mar-08	64350.00	=""	="Tanner James Management Consultants Pty Ltd"	23-Nov-07 02:49 PM	

+="CN47631"	" Graduate Recruitment Services "	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	23-Aug-07	23-Aug-07	39430.00	=""	="Value Edge"	23-Nov-07 02:50 PM	

+="CN47630"	" Autocapture DVD/Video "	="Australian Crime Commission"	23-Nov-07	="Motion pictures on digital video disk DVD"	23-Aug-07	23-Aug-07	54203.00	=""	="The Microcare CD Group"	23-Nov-07 02:51 PM	

+="CN47552-A3"	" Recruitment IT Specialist "	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	19-Sep-07	26-Sep-08	402115.40	=""	="ICON Recruitment Pty ltd"	23-Nov-07 02:52 PM	

+="CN48055"	"UXC Limited"	="Department of Immigration and Citizenship"	23-Nov-07	="Temporary information technology software developers"	15-Oct-07	30-Jun-08	265980.00	=""	="UXC Limited"	23-Nov-07 02:52 PM	

+="CN47745"	" Secure Storage "	="Australian Crime Commission"	23-Nov-07	="File archive storage"	31-Aug-07	30-Nov-07	18926.00	=""	="Recall Information Management"	23-Nov-07 02:54 PM	

+="CN47826"	"Household removal and storage costs"	="Australian Crime Commission"	23-Nov-07	="Personnel relocation"	11-Jul-07	11-Jul-07	23943.00	=""	="Toll Transitions"	23-Nov-07 02:55 PM	

+="CN47824"	"Recovery of agency contributions in respect of NT"	="Australian Crime Commission"	23-Nov-07	="Economic cooperation services"	17-Jul-07	17-Jul-07	10444.00	=""	="ASIO"	23-Nov-07 02:56 PM	

+="CN48056-A3"	"Development and Implementation of Creative Advertising Strategy"	="Department of Immigration and Citizenship"	23-Nov-07	="Brand marketing or advertising instructional materials"	24-Sep-07	30-Jun-08	1091595.00	=""	="Newd Corp Pty Ltd"	23-Nov-07 02:56 PM	

+="CN47822"	"Participation in the APS Remuneration Survey"	="Australian Crime Commission"	23-Nov-07	="Sampling surveys"	09-Jul-07	09-Jul-07	10000.00	=""	="DEWR"	23-Nov-07 02:57 PM	

+="CN47821"	"IBM Annual Software Maintenance"	="Australian Crime Commission"	23-Nov-07	="Software maintenance and support"	01-Jul-07	30-Jun-08	20275.00	=""	="IBM Australia"	23-Nov-07 02:57 PM	

+="CN47797"	"Guarding Jul07"	="Australian Crime Commission"	23-Nov-07	="Guard services"	30-Jul-07	31-Jul-07	32257.14	=""	="Chubb Protective Services NSW"	23-Nov-07 02:58 PM	

+="CN47801"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	01-Jul-07	08-Mar-08	174528.00	=""	="Hurtile Pty Ltd"	23-Nov-07 02:59 PM	

+="CN48010-A2"	" Strategic Business Case Development "	="Department of Immigration and Citizenship"	23-Nov-07	="Management and Business Professionals and Administrative Services"	30-Jul-07	31-May-08	320000.00	=""	="APP Corportation Pty Limited"	23-Nov-07 02:59 PM	

+="CN47800"	"Voice/Data Network Services"	="Australian Crime Commission"	23-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	01-Jul-07	30-Jun-08	108000.00	=""	="PowerTel Pty ltd"	23-Nov-07 03:00 PM	

+="CN47799"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	26-Aug-07	08-Mar-08	102515.00	=""	="Hurtile"	23-Nov-07 03:01 PM	

+="CN47794"	"Window Film/Glazing"	="Australian Crime Commission"	23-Nov-07	="Window film"	08-Oct-07	08-Jan-08	11141.46	=""	="3M Australia Pty Ltd"	23-Nov-07 03:02 PM	

+="CN48057"	"supply of radio equipment"	="Australian Federal Police"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Mar-07	31-Dec-07	1063156.00	=""	="Motorola Australia Pty Limited"	23-Nov-07 03:03 PM	

+="CN47792-A1"	"PABX usage charges (all states)"	="Australian Crime Commission"	23-Nov-07	="Fixed phones"	05-Oct-07	30-Jun-08	257716.00	=""	="Powertel Ltd"	23-Nov-07 03:03 PM	

+="CN47790-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	21-Sep-07	01-Aug-08	162790.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:04 PM	

+="CN47788"	"Legal Services"	="Australian Crime Commission"	23-Nov-07	="Legal services"	12-Sep-07	12-Dec-07	40000.00	=""	="Australian Government Solicitor"	23-Nov-07 03:05 PM	

+="CN47748"	" Drives for Tape Library "	="Australian Crime Commission"	23-Nov-07	="Tape drives"	04-Sep-07	04-Sep-07	58922.54	=""	="Sun Microsystems"	23-Nov-07 03:06 PM	

+="CN47747"	"Engagement of QC General Counsel"	="Australian Crime Commission"	23-Nov-07	="Legal services"	31-Aug-07	30-Jun-08	208330.00	=""	="Sashi Maharaj"	23-Nov-07 03:07 PM	

+="CN47743-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	30-Aug-07	01-Aug-08	114224.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:08 PM	

+="CN47738"	"Transact cost recovery"	="Australian Crime Commission"	23-Nov-07	="Information Technology Broadcasting and Telecommunications"	28-Aug-07	28-Nov-07	22309.74	=""	="ASIO"	23-Nov-07 03:10 PM	

+="CN48058"	" supply of communications services and equipment "	="Australian Federal Police"	23-Nov-07	="Components for information technology or broadcasting or telecommunications"	23-Mar-07	31-Dec-07	1052403.00	=""	="Motorola Australia Pty Limited"	23-Nov-07 03:11 PM	

+="CN47736-A6"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	24-Sep-07	30-Jun-08	367983.20	=""	="Jakeman Business Solutions"	23-Nov-07 03:11 PM	

+="CN47735"	"Trim Context and Diem maintenance"	="Australian Crime Commission"	23-Nov-07	="Proprietary or licensed systems maintenance or support"	25-Sep-07	30-Jun-08	75659.36	=""	="iCognition Pty Ltd"	23-Nov-07 03:12 PM	

+="CN47730"	"Values Focusing Workshops"	="Australian Crime Commission"	23-Nov-07	="Workshops"	25-Sep-07	25-Sep-07	60935.97	=""	="The Value Creation Group"	23-Nov-07 03:13 PM	

+="CN47727"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	19-Sep-07	19-Mar-08	93600.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:14 PM	

+="CN47723-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	20-Sep-07	26-Sep-08	161585.32	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:15 PM	

+="CN47657"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	12-Sep-07	12-Sep-07	92534.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:16 PM	

+="CN48059-A1"	"Supplementry panel for audit, risk management and fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Apr-08	52688.90	=""	="Protiviti Pty Limited"	23-Nov-07 03:17 PM	

+="CN47655-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Temporary personnel services"	29-Sep-07	31-Dec-08	291099.38	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:17 PM	

+="CN47654"	"Certificate IV training"	="Australian Crime Commission"	23-Nov-07	="Human resource development"	04-Sep-07	04-Sep-07	32200.00	=""	="McMillan Staff Development"	23-Nov-07 03:18 PM	

+="CN47650"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	03-Sep-07	03-Sep-07	44704.00	=""	="ICON Recruitment Pty ltd"	23-Nov-07 03:19 PM	

+="CN47648"	"HR Course"	="Australian Crime Commission"	23-Nov-07	="Human resources services"	31-Aug-07	31-Aug-07	10000.00	=""	="Victoria Police"	23-Nov-07 03:21 PM	

+="CN48060"	"Supplementary panel for audit, risk management and fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	29-Feb-08	174000.00	=""	="KPMG"	23-Nov-07 03:22 PM	

+="CN47643"	" Chair "	="Australian Crime Commission"	23-Nov-07	="Furniture"	30-Aug-07	30-Aug-07	25579.00	=""	="Formway Furniture"	23-Nov-07 03:22 PM	

+="CN47641"	"Photocopier"	="Australian Crime Commission"	23-Nov-07	="Photocopiers"	27-Aug-07	27-Aug-07	22636.00	=""	="Ricoh"	23-Nov-07 03:23 PM	

+="CN47640"	"Photocopiers"	="Australian Crime Commission"	23-Nov-07	="Photocopiers"	27-Aug-07	27-Aug-07	57307.00	=""	="Ricoh"	23-Nov-07 03:24 PM	

+="CN47639-A2"	"Recruitment - IT Contractor"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	28-Aug-07	26-Sep-08	219040.00	=""	="Matera"	23-Nov-07 03:25 PM	

+="CN47633"	"Recruitment fee"	="Australian Crime Commission"	23-Nov-07	="Personnel recruitment"	24-Aug-07	24-Aug-07	12986.00	=""	="Hays Personnel"	23-Nov-07 03:26 PM	

+="CN48061-A2"	" Development of an online debriefing service "	="Australian Federal Police"	23-Nov-07	="Software"	01-Jul-08	30-Jun-09	105000.00	=""	="Measured Insights Pty Ltd"	23-Nov-07 03:27 PM	

+="CN48064"	"Review of ACC Legal Services - Consultancy"	="Australian Crime Commission"	23-Nov-07	="Business and corporate management consultation services"	20-Aug-07	07-Sep-07	23760.00	=""	="Herne Gray and Associates Pty Ltd"	23-Nov-07 03:38 PM	

+="CN48062"	" CHAINSAW, AIRCOOLED, TWO STROKE, SINGLE CYLINDER "	="Defence Materiel Organisation"	23-Nov-07	="Power saws"	23-Nov-07	27-Nov-07	18715.40	="G5805"	="HUSQVARNA PTY LTD"	23-Nov-07 03:40 PM	

+="CN48065-A1"	"Audit assistance for the management of Credit Cards Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Aug-07	30-Apr-08	18386.00	=""	="Allanson Consulting Pty Ltd"	23-Nov-07 03:41 PM	

+="CN48066-A1"	"IT Refresh Program - Centrelink"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Jan-07	31-Dec-07	78848.62	=""	="Resolution Consulting Services"	23-Nov-07 03:42 PM	

+="CN48067-A1"	"Assistance with TM1 & maintenance of the Audit Management System & Time Allocations."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Jul-04	30-Jun-08	20000.00	=""	="Excelerated Consulting Pty Ltd"	23-Nov-07 03:42 PM	

+="CN48068-A1"	"2007-08 Data Cards for the ANAO"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Enhanced telecommunications services"	01-Jul-04	30-Jun-08	30000.00	=""	="Telstra Corporation"	23-Nov-07 03:42 PM	

+="CN48069-A1"	"Support materials for ANAO Officers taking part in the CA Program."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Adult education"	01-Jul-04	30-Jun-08	47000.00	=""	="Kaplan Education Pty Ltd"	23-Nov-07 03:42 PM	

+="CN48070-A1"	" ANAO - ICON Annual Levy "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Fibre telecommunications services"	01-Jul-07	30-Jun-08	16500.00	=""	="Dept of Finance and Administration - Dept"	23-Nov-07 03:42 PM	

+="CN48071-A1"	"Evaluation Panel Member for Business Partnership Agreement Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Jul-07	30-Jun-08	18375.00	=""	="Christopher Conybeare and Associates"	23-Nov-07 03:42 PM	

+="CN48072-A1"	" Pointsec Software Support and Renewal "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Oct-07	30-Sep-08	10282.80	=""	="McEvoy Thomas Pty Ltd"	23-Nov-07 03:42 PM	

+="CN48073-A1"	"06-07 DFACSIA Triple Bottom Line Report"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	01-Sep-07	01-Jul-08	45000.00	=""	="Pricewaterhouse Coopers"	23-Nov-07 03:42 PM	

+="CN48074-A1"	" Notes and Collaboration Software Maintenance and Renewal "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	01-Sep-07	31-Jul-09	20134.60	=""	="KAZ Technology Services Pty Ltd"	23-Nov-07 03:42 PM	

+="CN48075-A1"	"Design and Print Better Practice Guide on Internal Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Printing"	02-Aug-07	30-Sep-07	35266.00	=""	="Cre8ive"	23-Nov-07 03:43 PM	

+="CN48076-A1"	"Annual maintenance fee - Assure products 02-12-2007 to 01-12-2009"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	02-Dec-07	01-Dec-09	55000.00	=""	="Protiviti Pty Ltd"	23-Nov-07 03:43 PM	

+="CN48077-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	02-Nov-07	30-Sep-08	479638.00	=""	="Axiom Associates Pty Ltd"	23-Nov-07 03:43 PM	

+="CN48078-A1"	"Assessment of Customs Performance Audit on the Management of Illegal, Unreported & Unregulated Fishing in Southern Ocean"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	03-Aug-07	28-Feb-08	18750.00	=""	="Meryl Annette Stanton"	23-Nov-07 03:43 PM	

+="CN48079-A1"	"Undertake audit work in relation to the Building Certification of Aged Care Homes Performance Audit."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	06-Aug-07	16-Nov-07	128550.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:43 PM	

+="CN48080-A1"	"Design and Print Better Practice Guide Fairness and Transparency in Purchasing Decisions"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Printing"	07-Aug-07	07-Sep-07	22276.17	=""	="Comcom Pty Ltd T/A Zoo"	23-Nov-07 03:43 PM	

+="CN48081-A1"	"Assist with development of policy and guidance material for PASG."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	07-May-07	31-Oct-07	30000.00	=""	="Ann Thurley"	23-Nov-07 03:43 PM	

+="CN48082-A1"	"PASG Audit Advisory Panel Member for the Management of Recruitment Audit."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	07-Sep-07	20-Dec-07	24100.00	=""	="AH Revelations Pty Ltd"	23-Nov-07 03:43 PM	

+="CN48083-A1"	"Intruder-resistant requirements for Ground Floor North."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Locks and security hardware and accessories"	10-Oct-07	31-Dec-07	22086.63	=""	="Australian Security Industries Pty Ltd"	23-Nov-07 03:44 PM	

+="CN48084-A1"	"Intruder-resistant requirements for Ground Floor North."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Locks and security hardware and accessories"	10-Oct-07	31-Dec-07	26812.50	=""	="Territory Glass and Alluminium"	23-Nov-07 03:44 PM	

+="CN48085-A1"	"PASG Audit Advisory Panel Member for Australian Government Agencies Management of their Websites."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	10-Sep-07	30-Jun-08	12000.00	=""	="Sigma Management Science Pty Ltd"	23-Nov-07 03:44 PM	

+="CN48086-A1"	"Provision of advice on development & analysis of survey for Australian Government Agencies Management of their Websites"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	10-Sep-07	30-Jun-08	13710.00	=""	="Protiviti Pty Ltd"	23-Nov-07 03:44 PM	

+="CN48087-A1"	" Engagement of temporary administrative staff "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Personnel recruitment"	10-Sep-07	30-Nov-07	25000.00	=""	="The Green and Green Group Pty Ltd"	23-Nov-07 03:44 PM	

+="CN48088-A1"	" Develop a revised ANAO Style Manual "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Editorial and support services"	11-Sep-07	30-Oct-07	10000.00	=""	="Kathryn Dahlenburg"	23-Nov-07 03:44 PM	

+="CN48089-A1"	" Engagement of temporary audit staff "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	13-Aug-07	31-Dec-07	19440.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	23-Nov-07 03:44 PM	

+="CN48090-A1"	"Expert advice for the Managing Parliamentary Workflow Better Practice Guide"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	13-Jun-07	30-Apr-08	40000.00	=""	="Christopher Conybeare and Associates"	23-Nov-07 03:45 PM	

+="CN48091-A1"	" Construct SES Office Level 2 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Workstations and office packages"	13-Sep-07	28-Sep-07	15895.00	=""	="SMI Fitout Pty Limited"	23-Nov-07 03:45 PM	

+="CN48092-A1"	" Purchase of tables and chairs for meeting room "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Office furniture"	17-Aug-07	17-Sep-07	19210.00	=""	="Dexion Canberra"	23-Nov-07 03:45 PM	

+="CN48093-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Jul-07	17-Aug-07	20000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	23-Nov-07 03:45 PM	

+="CN48095-A1"	"Actuarial Services in relation to DFRDB Review of Unfunded Superannuation Liabilities."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Jul-07	31-Aug-07	16500.00	=""	="Russell Employee Benefits"	23-Nov-07 03:45 PM	

+="CN48096-A6"	" Financial Statement Audit of the Australian National University from 2007 to 2010.  Includes two Option Years taken up. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	18-Sep-07	01-Jan-12	1301981.00	=""	="RSM Bird Cameron"	23-Nov-07 03:45 PM	

+="CN48097-A1"	" Senior Executive Service Conference November 2007 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Adult education"	19-Nov-07	20-Nov-07	15000.00	=""	="Milton Park Country House Hotel"	23-Nov-07 03:45 PM	

+="CN48098-A1"	"Provision of Audit Services for Audit of Initiation of Business System Projects"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	20-Aug-07	12-Oct-07	31500.00	=""	="Pitt Group Pty Ltd"	23-Nov-07 03:46 PM	

+="CN48099-A1"	" Finance One Support and Maintenance for 2007-08 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	23-Oct-08	29-Oct-08	59765.97	=""	="Technology One Ltd"	23-Nov-07 03:46 PM	

+="CN48101-A1"	"Provision of original audit services for the Management of Recruitment Audit"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	24-Aug-07	20-Dec-07	12251.00	=""	="Allanson Consulting Pty Ltd"	23-Nov-07 03:46 PM	

+="CN48102-A1"	"Employment advertisement in the Financial Review"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Print advertising"	24-Aug-07	24-Aug-07	10478.60	=""	="hma Blaze Pty Limited"	23-Nov-07 03:46 PM	

+="CN48103-A1"	" Integration of Security Systems "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Security and control equipment"	25-Aug-07	07-Sep-07	17607.95	=""	="Domestic Security Services Pty Ltd"	23-Nov-07 03:46 PM	

+="CN48104-A1"	"Develop, undertake and report on on-line survey for Australian Government Agencies Management of their Websites."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	25-Sep-07	30-Jun-08	14850.00	=""	="ORIMA Research"	23-Nov-07 03:46 PM	

+="CN48105-A1"	" Overhall chiller at 19 National Circuit "	="Australian National Audit Office (ANAO)"	23-Nov-07	="General building and office cleaning and maintenance services"	27-Aug-07	27-Oct-07	18810.00	=""	="Honeywell Ltd"	23-Nov-07 03:46 PM	

+="CN48106-A1"	"Undertake further detailed analysis of PASG responses to 2007 ANAO Staff Survey"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Business and corporate management consultation services"	27-Sep-07	30-Nov-07	20240.00	=""	="ORIMA Research"	23-Nov-07 03:47 PM	

+="CN48107-A1"	" Staff to assist with various IT audits. "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	29-Oct-07	30-Jun-08	147620.00	="ANAOAM2007/294"	="Audit and Assurance Consulting Services"	23-Nov-07 03:47 PM	

+="CN48109-A1"	"TM1 upgrade to v9 & implement Base TM1 Web Functionality."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	30-Jul-07	31-Jul-07	22704.00	=""	="Excelerated Consulting Pty Ltd"	23-Nov-07 03:47 PM	

+="CN48112-A1"	"50 Leaders Licenses for the period 01-09-2007 to 31-08-2008."	="Australian National Audit Office (ANAO)"	23-Nov-07	="Network applications software"	30-Sep-07	29-Sep-08	35871.00	=""	="80-20 Software Pty Ltd"	23-Nov-07 03:47 PM	

+="CN48114-A1"	" Software upgrade and support Oct 07 - Sept 08 "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	30-Sep-07	29-Sep-08	36256.00	=""	="Oracle Corporation Australia Pty Limited"	23-Nov-07 03:47 PM	

+="CN48110"	"Supplementary panel for Audit, Risk Management and Fraud Control Services."	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	28-Feb-08	50600.00	=""	="KPMG"	23-Nov-07 03:48 PM	

+="CN48115-A1"	" Software Licence and Maintenance "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Software maintenance and support"	31-Aug-07	31-Aug-08	23691.27	=""	="KAZ Technology Services Pty Ltd"	23-Nov-07 03:48 PM	

+="CN48116-A1"	" Conduct 2006-07 Client Survey "	="Australian National Audit Office (ANAO)"	23-Nov-07	="Business and corporate management consultation services"	31-Dec-07	31-Mar-08	31350.00	=""	="ORIMA Research"	23-Nov-07 03:48 PM	

+="CN48117-A1"	"Review of unfunded super liabilities"	="Australian National Audit Office (ANAO)"	23-Nov-07	="Audit services"	31-Jul-07	31-Aug-07	40800.00	=""	="Deloitte Touche Tohmatsu"	23-Nov-07 03:48 PM	

+="CN48113"	"Data extraction, preparation and reconciliation"	="Australian Crime Commission"	23-Nov-07	="Finance accounting and enterprise resource planning ERP software"	29-Oct-07	29-Oct-07	16500.00	=""	="Longley Stapleton"	23-Nov-07 03:48 PM	

+="CN48118"	"supplementary panel for audit, risk management & fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Jun-08	93000.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:53 PM	

+="CN48121"	"TRIM Software Maintenance Coverage"	="Australian Crime Commission"	23-Nov-07	="Software maintenance and support"	01-Jul-07	30-Jun-08	15716.75	=""	="Alphawest Pty Ltd"	23-Nov-07 03:57 PM	

+="CN48122"	"Supplementary panel for Audit, Risk Management & Fraud Control Services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Dec-07	77000.00	=""	="WalterTurnbull Pty Ltd"	23-Nov-07 03:58 PM	

+="CN48123"	"Supplementary panel for audit, risk management & fraud control services"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	05-Sep-07	30-Dec-07	55000.00	=""	="Protiviti Pty Limited"	23-Nov-07 04:04 PM	

+="CN48125"	"STO funding model evaluation"	="Department of Immigration and Citizenship"	23-Nov-07	="Audit services"	20-Feb-06	20-Feb-09	20000.00	=""	="Protiviti Pty Limited"	23-Nov-07 04:11 PM	

+="CN48126"	" Aviation Spares. Additional Repairable Items for the AS350BA Squirrel Helicopter Fleet.  Qty: 1 x 'Canopy Assembly',  NSN: 1560-66-112-3170. "	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	23-Nov-07	12-Jan-08	47966.36	=""	="AUSTRALIAN AEROSPACE, LTD"	23-Nov-07 04:18 PM	

+="CN48124"	"Provision of forensic research and advice"	="Australian Federal Police"	23-Nov-07	="Medical science and research"	30-Oct-06	31-Dec-09	114000.00	=""	="University of Canberra"	23-Nov-07 04:24 PM	

+="CN48127-A1"	" Aviation Spares, additional Repairable Item for the AS350BA Squirrel Helicopter Fleet. Qty: 1 x 'Beam, Aircraft, Tail Boom Assembly', NSN: 14-559-2209. "	="Defence Materiel Organisation"	23-Nov-07	="Military rotary wing aircraft"	13-Nov-07	20-Jul-08	39029.20	=""	="AUSTRALIAN AEROSPACE, LTD"	23-Nov-07 04:24 PM	

+="CN48129"	" Traffic control - tyre deflation devices "	="Australian Federal Police"	23-Nov-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	06-Aug-07	05-Aug-10	37631.00	=""	="Stop Stick International Ltd"	23-Nov-07 04:32 PM	

+="CN48130-A2"	"Commercial Property Lease"	="National Native Title Tribunal"	23-Nov-07	="Real estate services"	01-Jul-07	30-Jun-14	7275391.00	=""	="Perpetual Nominees Ltd"	23-Nov-07 04:36 PM	

+="CN48134"	"Cleaning services commercial office space"	="National Native Title Tribunal"	23-Nov-07	="Building cleaning services"	01-Jul-07	30-Jun-08	22616.88	=""	="OCS Services"	23-Nov-07 04:53 PM	

+="CN48135"	"Conference co-ordination and management services"	="Australian Federal Police"	23-Nov-07	="Management and Business Professionals and Administrative Services"	14-May-07	05-Dec-07	48300.00	=""	="DPM Conferencing Pty Ltd T/A The Communication Link"	23-Nov-07 05:03 PM	

+="CN48132"	" Cleaning Services for Christmas Island police station "	="Australian Federal Police"	23-Nov-07	="Cleaning and janitorial services"	13-Sep-07	12-Sep-09	34944.00	="RFQ 76-2006"	="Full Moon International Pty Ltd"	23-Nov-07 05:04 PM	

+="CN48136"	"Plant Hire"	="National Native Title Tribunal"	23-Nov-07	="Live Plant and Animal Material and Accessories and Supplies"	01-Oct-07	30-Sep-09	14270.40	=""	="Rentokil Tropical Plants"	23-Nov-07 05:06 PM	

+="CN48137-A1"	"Rental Plant Hire"	="National Native Title Tribunal"	23-Nov-07	="Live Plant and Animal Material and Accessories and Supplies"	01-Nov-07	30-Oct-09	15756.96	=""	="Ambius"	23-Nov-07 05:11 PM	

+="CN48138-A1"	" Proprty lease Guadalcanal Solomon Islands "	="Australian Federal Police"	23-Nov-07	="Lease and rental of property or building"	01-Aug-05	31-Jul-09	1882650.00	=""	="Pacific Properties Development Ltd"	23-Nov-07 05:14 PM	

+="CN48140"	"F88 SARES PURCHASED UNDER STANDING OFFER PD 5860018."	="Defence Materiel Organisation"	25-Nov-07	="Light weapons and ammunition"	24-Oct-07	13-Aug-08	100707.20	=""	="THALES AUSTRALIA"	25-Nov-07 11:54 AM	

+="CN48141"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	21-Feb-08	17619.80	=""	="A AND D INTERNATIONAL PTY LTD"	26-Nov-07 07:47 AM	

+="CN48142"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	15-Mar-08	31295.00	=""	="LOPAC PTY LTD"	26-Nov-07 07:52 AM	

+="CN45690"	"Supply of Power Steering Boxes, NSN 2530-66-155-0739 and qty 93."	="Defence Materiel Organisation"	26-Nov-07	="War vehicles"	09-Nov-07	04-Feb-08	143590.33	=""	="Land Rover Australia"	26-Nov-07 09:18 AM	

+="CN48143"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	64694.31	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:26 AM	

+="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	

+="CN48144"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	26-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	11-Dec-07	19991.86	=""	="Symbion Pharmacy Services"	26-Nov-07 09:30 AM	

+="CN48146"	"REPAIR OF BLACKHAWK MAIN ROTOR FLUTTER DAMPENER"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	10798.01	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:45 AM	

+="CN48147-A1"	"Lease at Perth, WA"	="Department of Human Services"	26-Nov-07	="Lease and rental of property or building"	01-Mar-03	31-Aug-11	980422.19	=""	="Centro MCS Manager Limited"	26-Nov-07 09:51 AM	

+="CN48148-A2"	"Provision of landscaping services to the AFP in the ACT"	="Australian Federal Police"	26-Nov-07	="Landscaping services"	17-Jan-05	16-Jan-08	141857.00	="RFT 2004-09"	="Ropolo Services Pty Ltd trading as Landscape Direct"	26-Nov-07 09:58 AM	

+="CN48151"	" Software purchase "	="Future Fund Management Agency"	26-Nov-07	="Software"	19-Nov-07	19-Dec-07	15070.00	=""	="The Mathworks Australia Pty Ltd"	26-Nov-07 10:40 AM	

+="CN48153-A1"	"VP 176- email archiving solution"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	64039.39	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48154-A1"	"VP 175- Electorate Briefs Automation"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	12441.59	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48155"	"HMA Blaze - Advertising and Promotion of BIA Telecommuncation program"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	30-Jun-08	18649.16	="ATM07/541"	="HMA BLAZE"	26-Nov-07 11:31 AM	

+="CN48156-A1"	"APS Jobs Subscription 07-08"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17773.97	="ATM 07/638"	="Australian Public"	26-Nov-07 11:31 AM	

+="CN48157-A1"	"VP 181- Election Project Manager"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	38800.00	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48158"	"SW Wing Upper Floor Refurbishment Project Management Fees"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	01-Jul-07	31-Dec-07	100000.00	="ATM2007/00634"	="MANTEENA"	26-Nov-07 11:32 AM	

+="CN48159"	"Bulk Order for Books for DCITA Library"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Published Products"	15-Nov-07	30-Nov-07	14173.60	="ATM2007/00640"	="DA INFORMATION SERVICES PTY LT"	26-Nov-07 11:32 AM	

+="CN48160"	"Strengthening SPAM legislation, enforcement & cooperation regimes in Niue,Samoa & Vanuatu"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	20-Feb-08	88594.00	="CCR/07/3042"	="Galexia"	26-Nov-07 11:32 AM	

+="CN48161"	"PAFO: Provision of external audit advice to contracted PC filters vendors"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	11403.00	="ATM07/630"	="Grosvenor Management Consulting"	26-Nov-07 11:32 AM	

+="CN48162"	"Administrative Support for Bookings Officer"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	20-Nov-07	28-Mar-08	11950.88	=""	="THE GREEN AND GREEN GROUP PTY LTD"	26-Nov-07 11:32 AM	

+="CN48163-A1"	"Analysis of Travel Costs"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	21177.13	="DCON/05/53"	="ACUMEN ALLIANCE"	26-Nov-07 11:32 AM	

+="CN48164-A1"	"Career Development Assessment for staff member"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	28-Nov-07	11430.00	="ATM 07/672"	="Australian Public"	26-Nov-07 11:32 AM	

+="CN48165-A1"	"Career Development Assessment individual staff"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Nov-07	11825.00	="ATM07/671"	="Australian Public"	26-Nov-07 11:32 AM	

+="CN48166"	"Spotless monthly maintenance november 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13072.14	="ATM2007/00679"	="Spotless P&F Pty Ltd"	26-Nov-07 11:32 AM	

+="CN48167"	"Elecrticity Supply for November 2007 for OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	22-Nov-07	22-Dec-07	59400.00	="2007/00677"	="ActewAGL"	26-Nov-07 11:33 AM	

+="CN48168"	"OPH Gas Supply - November 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13595.93	="ATM2007/00678"	="ACTEWAGL"	26-Nov-07 11:33 AM	

+="CN48169"	"Convergent Consulting Indigenous Community Radio Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	59840.00	="ATM07/241"	="CONVERGENT CONSULTING"	26-Nov-07 11:33 AM	

+="CN48170-A1"	"Brandis Comcar Account"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Transportation and Storage and Mail Services"	01-Feb-07	03-Dec-07	27205.59	="ATM 07/625"	="COMCAR (DOFA)"	26-Nov-07 11:33 AM	

+="CN48171-A1"	"Market Research for the Telecommunications Consumer Community Information Campaign"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	12-Dec-06	29-Jun-08	374434.76	="2007/00578"	="QUANTUM MARKET RESEARCH"	26-Nov-07 11:33 AM	

+="CN48172"	"Lift Package- New Lift in Members Dining Rooms Project Management & Associated Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	15950.00	="CCR2007/00528"	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-Nov-07 11:33 AM	

+="CN48173"	"Building Works including mechanical, hydraulic, fire services, joinery & finishes PMs' cent"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Jun-08	12202.65	=""	="SPS STRATEGIC PROPERTY SERVICES"	26-Nov-07 11:33 AM	

+="CN48174-A2"	"Graphic Design Annual Report"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Aug-07	30-Jun-08	19999.00	="DCON/05/105"	="MA@D COMMUNICATION"	26-Nov-07 11:33 AM	

+="CN48175-A1"	"Telstra License Conditions"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	23-Aug-07	13-May-08	70000.00	="DCON/06/45"	="DLA  Phillips Fox"	26-Nov-07 11:34 AM	

+="CN48176"	"Courtyard Refurbishment - OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Oct-07	77539.00	="ATM2007/147"	="Picasso Building Pty Ltd"	26-Nov-07 11:34 AM	

+="CN48177-A1"	"10x servers ITFB"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	24-Sep-07	29-Nov-07	12232.00	="ATM07/331"	="DATAFLEX PTY LTD"	26-Nov-07 11:34 AM	

+="CN48179-A1"	"Nyaarla Projects: Backing Indigenous Ability Funding for Kalgoorlie, Sth Hedland & Geraldton"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="ATM07/468"	="Nyaarla Projects Pty Ltd"	26-Nov-07 11:34 AM	

+="CN48180"	"Griffiths Skills Training Centre: Backing Indigenous Ability Funding Wagga and Bourke"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/470"	="Griffith Skills Training Centre Inc"	26-Nov-07 11:34 AM	

+="CN48181-A1"	"Uptuyu Adventures - Backing Indigenous Ability Funding for Kununurra, Derby & Broome"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="CCR/07/1572"	="Uptuyu Adventures"	26-Nov-07 11:34 AM	

+="CN48183"	"Centre for Appropriate Technology - Backing Indigenous Ability Funding Mt Isa"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/475"	="Centre for Appropriate Technology"	26-Nov-07 11:35 AM	

+="CN48185-A1"	"Ethos Global Foundation Ltd: Backing Indigenous Ability Darwin, Katherine and Nhulunbuy"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	16-Oct-07	30-Jun-10	100000.01	="ATM07/497"	="Ethos Global Foundation Ltd"	26-Nov-07 11:35 AM	

+="CN48186"	"The Trustee for the King Family Trust (Techlink) Funding for BIA Port Augusta and Ceduna"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	30-Oct-07	30-Jun-10	72950.00	="ATM07/561"	="The Trustee for the King Family Tru"	26-Nov-07 11:35 AM	

+="CN48187"	"Actuarial & Associated cost for CSS and PSS"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11600.00	="ATM2007/00621"	="DEPT OF FINANCE & ADMINISTRATION"	26-Nov-07 11:35 AM	

+="CN48188"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	26-Nov-07	="Environmental security control services"	22-Nov-07	28-Dec-07	20026.05	=""	="Honeywell Limited"	26-Nov-07 11:44 AM	

+="CN48189"	"ICT Service panel Information  & Communication Services (DPS05048"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	28-Dec-07	48510.00	=""	="Adept KM Pty Ltd"	26-Nov-07 11:44 AM	

+="CN48190"	"PABX Supply and Implementation Failties Managemet Team Contract (DPS04082)"	="Department of Parliamentary Services"	26-Nov-07	="Telecommunications planning services"	21-Nov-07	28-Dec-07	143961.09	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48191"	"ICT Service panel Information  & Communication Contract (DPS05048 )"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	28-Dec-07	19140.00	=""	="Greythorn Pty Ltd"	26-Nov-07 11:45 AM	

+="CN48192"	"Voices services(local,national & moblie calls Contract (DPS04114)"	="Department of Parliamentary Services"	26-Nov-07	="Phone and video conference equipment and hardware and controllers"	21-Nov-07	28-Dec-07	17722.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48193"	"Duct work  maintenace & Rehabilition Services Contract (JH00057M )"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	21-Nov-07	28-Dec-07	628724.25	=""	="Chubb Fire Safety Limited"	26-Nov-07 11:45 AM	

+="CN48194"	"Provision  of  Audit services"	="Department of Parliamentary Services"	26-Nov-07	="Audit services"	20-Nov-07	30-Nov-07	22000.00	=""	="KPMG"	26-Nov-07 11:45 AM	

+="CN48195"	"Provision  of  Temporary contract labour Contract (DPS041980"	="Department of Parliamentary Services"	26-Nov-07	="Temporary manual labour"	19-Nov-07	23-Dec-07	22000.00	=""	="Jewell & Buckley P/L"	26-Nov-07 11:45 AM	

+="CN48196"	"Provision  of software upgrade to Alcaltel PABX Systems"	="Department of Parliamentary Services"	26-Nov-07	="Software patches or upgrades"	16-Nov-07	30-Dec-07	31847.20	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48197"	"Supply of Waste Bin Tipping Machines"	="Department of Parliamentary Services"	26-Nov-07	="Material handling machinery and equipment"	16-Nov-07	30-Nov-07	19646.00	=""	="Wrightway Products"	26-Nov-07 11:45 AM	

+="CN48198"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	26-Nov-07	="Carpeting"	16-Nov-07	30-Nov-07	10389.50	=""	="Chesta's Floors"	26-Nov-07 11:46 AM	

+="CN48199"	"Provision of  uniterruptible power supply"	="Department of Parliamentary Services"	26-Nov-07	="Power generation control equipment"	15-Nov-07	30-Dec-07	38885.00	=""	="Honeywell Limited"	26-Nov-07 11:46 AM	

+="CN48200"	"Supply of  Computer Server"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	14-Nov-07	31-Dec-07	28600.00	=""	="Frontline Systems Australia Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48201"	"Licensing for MySAP ERP includes software support & Maintenace Contract (DPS05084)"	="Department of Parliamentary Services"	26-Nov-07	="Software maintenance and support"	14-Nov-07	30-Jun-08	77623.87	=""	="SAP Australia Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48202"	"Supply of  Computer Servers"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	13-Nov-07	30-Nov-07	96382.66	=""	="Dell Australia P/L"	26-Nov-07 11:46 AM	

+="CN48203"	"Provision of  Purchase of Sissor Lift"	="Department of Parliamentary Services"	26-Nov-07	="Scissor lift"	13-Nov-07	30-Nov-07	25190.00	=""	="Force Access Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48204"	"Provision of actuarial and associated services"	="Department of Parliamentary Services"	26-Nov-07	="Public enterprises management or financial services"	09-Nov-07	30-Nov-07	11600.00	=""	="Department of Finance &"	26-Nov-07 11:46 AM	

+="CN48205"	"Ceramic and Quarry Tile Maintenance"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	08-Nov-07	31-Dec-07	14126.37	=""	="PDA Marble & Granite"	26-Nov-07 11:47 AM	

+="CN48206"	"Provision of Professional Recruitment Services"	="Department of Parliamentary Services"	26-Nov-07	="Temporary personnel services"	13-Nov-07	30-Nov-07	21920.80	=""	="Kowalski Recruitment P/L"	26-Nov-07 11:47 AM	

+="CN48207"	"Provision of Internet Services"	="Department of Parliamentary Services"	26-Nov-07	="Internet services"	21-Nov-07	30-Nov-07	164242.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:47 AM	

+="CN48208"	"Services of Electro Group Trainees (Contract DPS04030)"	="Department of Parliamentary Services"	26-Nov-07	="Contractors all risks insurance"	12-Nov-07	30-Nov-07	22000.00	=""	="The Electrotechnology Industry"	26-Nov-07 11:47 AM	

+="CN48209"	"Advice on pest control service requirements at Parliament House"	="Department of Parliamentary Services"	26-Nov-07	="Pest control"	12-Nov-07	30-Nov-07	15477.00	="DPS07089"	="accessUTS Pty Ltd"	26-Nov-07 11:47 AM	

+="CN48210"	"Provision of Project Management Services"	="Department of Parliamentary Services"	26-Nov-07	="Project management"	12-Nov-07	31-Dec-07	199100.00	=""	="Manteena Pty Ltd"	26-Nov-07 11:48 AM	

+="CN48211"	"Lease at Benalla, Victoria."	="Centrelink"	26-Nov-07	="Real estate services"	01-Jul-07	30-Jun-09	31574.40	=""	="North East Support and Action for Youth Incorporated"	26-Nov-07 11:53 AM	

+="CN48212"	"B  CLASS CABINETS"	="Australian Taxation Office"	26-Nov-07	="Furniture and Furnishings"	15-Nov-07	15-Nov-07	10474.97	=""	="PLANEX SALES PTY LTD"	26-Nov-07 11:56 AM	

+="CN48213"	"Personal Efficency Program course 8 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	15-Nov-07	05-Feb-08	26400.00	=""	="D'ARCY CONSULTING GROUP PTY"	26-Nov-07 11:56 AM	

+="CN48214"	"ELG Facilitation"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	13860.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	26-Nov-07 11:56 AM	

+="CN48215"	"Payment Summaries"	="Australian Taxation Office"	26-Nov-07	="Financial and Insurance Services"	19-Nov-07	30-Nov-07	20815.91	=""	="CITEC"	26-Nov-07 11:56 AM	

+="CN48216"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	20-Nov-07	25-Jun-08	267960.00	=""	="SPECTRUMTECH PTY LTD"	26-Nov-07 11:56 AM	

+="CN48218"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	12-May-08	125840.00	=""	="CORDELTA PTY LTD"	26-Nov-07 11:57 AM	

+="CN48219"	"6 X POLYCOM VTX1000 WIDEBAND CONFERENCE PHONES"	="Australian Taxation Office"	26-Nov-07	="Office Equipment and Accessories and Supplies"	13-Nov-07	13-Nov-07	11939.40	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	26-Nov-07 11:57 AM	

+="CN48220"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	13-Nov-07	13-Nov-07	154000.00	=""	="CTIUM CONSULTING PTY.LTD"	26-Nov-07 11:57 AM	

+="CN48221"	"Seibel Essentials course 6 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	19-Nov-07	25465.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 11:57 AM	

+="CN48222"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	191343.80	=""	="TECHPOINT CONSULTING"	26-Nov-07 12:18 PM	

+="CN48223"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	798405.54	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:18 PM	

+="CN48224"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	525286.83	=""	="INFO RAIL PTY LTD"	26-Nov-07 12:18 PM	

+="CN48225"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	864020.71	="ITC"	="EUROLINK CONSULTING AUST P/L"	26-Nov-07 12:19 PM	

+="CN48226"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	323123.90	=""	="HITECH PERSONNEL"	26-Nov-07 12:19 PM	

+="CN48227"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	24-Jul-07	30-Jun-08	8523059.82	="ITC"	="COMPAS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48228"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jul-07	30-Jun-08	17874.48	=""	="OPEN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48229"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	26-Jul-07	30-Jun-08	182275.83	="ITC"	="SATURN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48230"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	30-Jul-07	30-Jun-08	1633500.00	="ITC"	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:19 PM	

+="CN48231"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	93447.13	=""	="RADIUS SOLUTIONS GROUP PTY LTD"	26-Nov-07 12:19 PM	

+="CN48232"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	369509.94	="ITC"	="INTERPRO AUSTRALIA PTY LTD"	26-Nov-07 12:19 PM	

+="CN48233"	"Scribe services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	03-Aug-07	30-Jun-08	12000.00	=""	="RECRUITMENT MANAGEMENT"	26-Nov-07 12:20 PM	

+="CN48234"	"Enhancement to DM to Support Jaws & Dragon"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	06-Aug-07	30-Jun-08	28049.74	=""	="80-20 SOFTWARE PTY LTD"	26-Nov-07 12:20 PM	

+="CN48235"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	462243.14	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Nov-07 12:20 PM	

+="CN48236"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	291837.69	=""	="PALADIN SYSTEMS PTY LTD"	26-Nov-07 12:20 PM	

+="CN48237"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	1499523.66	="ITC"	="IPP TECHNOLOGIES PTY LTD"	26-Nov-07 12:20 PM	

+="CN48238"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Aug-07	30-Jun-08	724534.47	=""	="AMBIT IT & T"	26-Nov-07 12:20 PM	

+="CN48239"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	92719.09	=""	="OOSW CONSULTING PTY LTD"	26-Nov-07 12:20 PM	

+="CN48241"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	79140.00	=""	="AFFINITY IT RECRUITMENT"	26-Nov-07 12:20 PM	

+="CN48242"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	08-Aug-07	30-Jun-08	170655.24	=""	="EMTOR PTY LTD"	26-Nov-07 12:21 PM	

+="CN48243"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	55328.87	=""	="ITRAC RESOURCES PTY LTD"	26-Nov-07 12:21 PM	

+="CN48244"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	592043.88	=""	="PAXUS AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	

+="CN48245"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	253125.40	=""	="ENCORE IT SERVICES PTY LTD"	26-Nov-07 12:21 PM	

+="CN48246"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	423594.29	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	

+="CN48247"	"Freight Services for ITSG 07/08 FY"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	06-Jul-07	30-Jun-08	34966.50	=""	="COPE TRANSPORT (SA) PTY LTD"	26-Nov-07 12:21 PM	

+="CN48248"	"Relocations / Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation services equipment"	06-Jul-07	30-Jun-08	10000.00	=""	="NEWAY"	26-Nov-07 12:21 PM	

+="CN48249"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	22614.90	="ITC"	="AURORA INVESTMENTS & SYSTEMS PTY LT"	26-Nov-07 12:22 PM	

+="CN48250"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	41030.00	=""	="OXYGEN BUSINESS SOLUTIONS PTY LTD"	26-Nov-07 12:22 PM	

+="CN48251"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	154000.00	=""	="READIFY PTY LTD"	26-Nov-07 12:22 PM	

+="CN48252"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Jul-07	30-Jun-08	74915.50	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:22 PM	

+="CN48253"	"Pre-employment & OHS checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	09-Jul-07	09-Jul-07	10000.00	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:22 PM	

+="CN48254"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	10-Jul-07	30-Jun-08	20250.80	=""	="TELSTRA (VIC)"	26-Nov-07 12:22 PM	

+="CN48255"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	11-Jul-07	30-Jun-08	823764.49	=""	="AUREC PTY LTD"	26-Nov-07 12:22 PM	

+="CN48256"	"Security clearances - vetting"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	11-Jul-07	11-Jul-07	53000.00	=""	="KVS KEY VETTING SERVICES"	26-Nov-07 12:23 PM	

+="CN48257"	"Handling and Storage"	="Department of Employment and Workplace Relations"	26-Nov-07	="Storage"	12-Jul-07	12-Jul-07	41000.00	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	26-Nov-07 12:23 PM	

+="CN48258"	"Freight overnight bag"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	13-Jul-07	21-Dec-07	10000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:23 PM	

+="CN48259"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	17623.10	=""	="LINK RECRUITMENT PTY"	26-Nov-07 12:23 PM	

+="CN48260"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	1431088.13	=""	="FACE2FACE RECRUITMENT"	26-Nov-07 12:23 PM	

+="CN48261"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	401194.88	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	26-Nov-07 12:23 PM	

+="CN48262"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	435642.90	=""	="M & T RESOURCES"	26-Nov-07 12:23 PM	

+="CN48263"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	92400.00	="ITC"	="SKILLSEARCH CONTRACTING PTY LTD"	26-Nov-07 12:24 PM	

+="CN48264"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	201635.78	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:24 PM	

+="CN48265"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	1138361.20	=""	="TARAKAN CONSULTING PTY LTD"	26-Nov-07 12:24 PM	

+="CN48266"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	523380.00	=""	="ISG"	26-Nov-07 12:24 PM	

+="CN48267"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	244642.36	=""	="GLENDAR CONSULTING"	26-Nov-07 12:24 PM	

+="CN48268"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	457929.38	=""	="MANPOWER SERVICES"	26-Nov-07 12:24 PM	

+="CN48269"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	425098.00	=""	="GREYTHORN PTY LTD"	26-Nov-07 12:24 PM	

+="CN48270"	"Sponsorship of Australian Human Resources Summit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	04-Sep-07	12-Sep-07	11000.00	=""	="Association & Communications"	26-Nov-07 12:24 PM	

+="CN48271"	"Online OH&S Induction Training Module"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-Sep-07	30-Jun-08	18000.00	=""	="NOEL ARNOLD & ASSOCIATES"	26-Nov-07 12:24 PM	

+="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	

+="CN48273"	"48 Port Serial Consoles"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	04-Sep-07	30-Jun-08	40027.12	=""	="ALPHAWEST SERVICE PTY LTD"	26-Nov-07 12:25 PM	

+="CN48274"	"Entitlement"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-Sep-07	05-Sep-07	13611.07	="ITC"	="JUST LAW - TRUST ACCOUNT"	26-Nov-07 12:25 PM	

+="CN48275"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	05-Sep-07	30-Sep-08	43043.27	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:25 PM	

+="CN48276"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Sep-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	26-Nov-07 12:25 PM	

+="CN48277"	"EMS-Development and Implementation"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	23601.60	=""	="UNITED GROUP SERVICES - BUSINESS AC"	26-Nov-07 12:25 PM	

+="CN48278"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	06-Sep-07	30-Jun-08	157080.00	="ICT"	="IT MATTERS"	26-Nov-07 12:25 PM	

+="CN48279"	"LSL & Rec Transfers - Interagency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	06-Sep-07	13682.59	=""	="CENTRELINK FST SHARED SERVICES - NS"	26-Nov-07 12:25 PM	

+="CN48280"	"Accommodation for staff  for National Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	09-Sep-08	15642.84	="DEPT"	="COLLIERS INTERNATIONAL (NT) PTY LTD"	26-Nov-07 12:26 PM	

+="CN48281"	"Long term leasing of vehicles to lift Remote Area"	="Department of Employment and Workplace Relations"	26-Nov-07	="Motor vehicles"	06-Sep-07	21-Dec-07	90000.00	="Centrelink RFT F06/0124"	="THRIFTY CAR RENTAL"	26-Nov-07 12:26 PM	

+="CN48282"	"Staff rental property for National  Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	05-Sep-08	21280.00	="DEWR RFQ 2007/Sep"	="ELDERS TERRITORY REAL ESTATE"	26-Nov-07 12:26 PM	

+="CN48283"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Sep-07	30-Jun-08	162360.00	="TBA"	="HITACHI DATA SYSTEMS"	26-Nov-07 12:26 PM	

+="CN48284"	"Promotion of Job Placement Services and"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	30-Jun-09	99000.00	=""	="RECRUITMENT & CONSULTING"	26-Nov-07 12:26 PM	

+="CN48285"	"Benchmarking of Airborne Exposures"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	14-Dec-07	38500.00	=""	="UNIVERSITY OF WESTERN SYDNEY"	26-Nov-07 12:26 PM	

+="CN48286"	"Provide CEB's with driver training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	15000.00	=""	="DIRECT 4WD AWARENESS"	26-Nov-07 12:26 PM	

+="CN48287"	"Photcopiers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office machines and their supplies and accessories"	07-Sep-07	30-Jan-12	10608.40	=""	="RICOH AUSTRALIA (ROA)"	26-Nov-07 12:26 PM	

+="CN48288"	"removal   storage costs"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	13000.00	=""	="ALLIED PICKFORDS PTY LTD"	26-Nov-07 12:27 PM	

+="CN48289"	"36 Todd Mall, Mezzanine Level"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	07-Sep-07	30-Jun-08	1946243.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:27 PM	

+="CN48290"	"Contract services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	10-Sep-07	21-Sep-07	15000.00	="."	="OAKTON AA SERVICES PTY LTD"	26-Nov-07 12:27 PM	

+="CN48291"	"Software"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	10-Sep-07	30-Jun-08	18525.00	=""	="MICROWAY P/L"	26-Nov-07 12:27 PM	

+="CN48292"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	10-Sep-07	30-Jun-08	21659.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	

+="CN48293"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	13222.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	

+="CN48294"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	199084.20	=""	="VEROSSITY"	26-Nov-07 12:27 PM	

+="CN48295"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	386779.12	=""	="AVIKO PTY LTD"	26-Nov-07 12:27 PM	

+="CN48296"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	84230.27	=""	="TELSTRA (VIC)"	26-Nov-07 12:27 PM	

+="CN48297"	"Archiving Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Aug-07	27-Sep-08	12999.73	=""	="MANAGEMENT SOLUTIONS"	26-Nov-07 12:27 PM	

+="CN48298"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1256314.47	=""	="MOSAIC RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	

+="CN48299"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	21-Aug-07	30-Jun-08	1925000.00	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	

+="CN48300"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1066506.88	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	

+="CN48301"	"Licenses"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	23-Aug-07	30-Jun-08	1897673.13	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	

+="CN48302"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	23-Aug-07	30-Jun-08	21401.05	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	

+="CN48303"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	72600.00	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:28 PM	

+="CN48304"	"Computers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Aug-07	28-Aug-07	19690.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	

+="CN48305"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	30-Aug-07	30-Jun-08	20585.08	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:28 PM	

+="CN48306"	"IT Software Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	18446.00	=""	="QUANTUM TECHNOLOGY"	26-Nov-07 12:29 PM	

+="CN48307"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	57043.25	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:29 PM	

+="CN48308"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	31-Aug-07	127567.89	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	26-Nov-07 12:29 PM	

+="CN48309"	"Delivery of SAC training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Vocational training"	31-Aug-07	31-Dec-07	18906.00	=""	="AUSTRALIAN PUBLIC SERVICE"	26-Nov-07 12:29 PM	

+="CN48310"	"Fitouts"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	30-Jun-08	94684.23	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	

+="CN48311"	"Archival Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	60000.00	=""	="IRON MOUNTAIN PTY LTD"	26-Nov-07 12:29 PM	

+="CN48312"	"IT Equipment maintenance support"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	175282.80	=""	="TECHFLEX PTY LTD"	26-Nov-07 12:29 PM	

+="CN48313"	"Fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	03-Sep-07	30-Jun-08	57085.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	

+="CN48314"	"DEWR LVL12 BLD Perth - Tenancy Refit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	10068.30	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	

+="CN48315"	"Alice Springs - Fitout 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	53757.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	

+="CN48316"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	03-Sep-07	30-Nov-10	16200.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:30 PM	

+="CN48317"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	1214883.90	=""	="CANDLE AUSTRALIA LTD"	26-Nov-07 12:30 PM	

+="CN48318"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	04-Aug-06	30-Jun-07	550000.00	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	

+="CN48319"	"Postage Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	04-Aug-06	30-Jun-07	10030.54	=""	="AUSTRALIA POST (PERTH 6164555)"	26-Nov-07 12:30 PM	

+="CN48320"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	08-Aug-06	30-Jun-07	86615.45	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	

+="CN48321"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	14-Nov-07	18-Nov-07	303177.60	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	

+="CN48322"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	08-Aug-06	30-Jun-07	12485.32	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	

+="CN48323"	"Temporary Employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-Aug-06	09-Aug-06	11767.57	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:31 PM	

+="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	

+="CN48325"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	21-Aug-06	30-Jun-07	15714.60	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:31 PM	

+="CN48326"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	24-Aug-06	30-Jun-07	443900.83	=""	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:31 PM	

+="CN48327"	"Collateral - Market/Display Material"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	25-Aug-06	30-Jun-07	12407.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	26-Nov-07 12:31 PM	

+="CN48328"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Aug-06	30-Jun-08	42443.97	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:31 PM	

+="CN48329"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	437530.67	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	

+="CN48330"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	12464.31	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	

+="CN48331"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	19-Sep-06	30-Nov-10	400000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	26-Nov-07 12:31 PM	

+="CN48332"	"Health Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	13-Oct-06	30-Jun-07	11517.00	=""	="MLCOA - (Canberra)"	26-Nov-07 12:32 PM	

+="CN48333"	"OHS Induction Training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	13-Oct-06	30-Jun-07	19500.00	=""	="WSP ENVIRONMENTAL PTY LTD"	26-Nov-07 12:32 PM	

+="CN48334"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	42095.45	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48335"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	214888.35	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48336"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	190542.36	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48337"	"PropNSWOrange 21-29WilliamsSt (level 1)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	10-Nov-06	31-Aug-11	1192920.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48338"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Nov-06	01-Jun-10	279118.47	=""	="SALMAT  LIMITED"	26-Nov-07 12:32 PM	

+="CN48339"	"Contract Management training services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	17-Nov-06	30-Apr-07	350000.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	26-Nov-07 12:32 PM	

+="CN48340"	"Rehabilitation Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Nov-06	30-Jun-07	19000.00	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:33 PM	

+="CN48341"	"Temporary employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Nov-06	30-Jun-07	19296.54	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:33 PM	

+="CN48342"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	03-Aug-06	30-Jun-07	22970.33	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:33 PM	

+="CN48343"	"MAINTENANCE UPGRADE TO IT DATA STORAGE EQUIPMENTS."	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Sep-06	30-Jun-07	79376.28	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48344"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	19134.75	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48345"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	29578.38	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48346"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	31-Jul-07	31-Jul-07	66171.33	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48347"	"Provide advice on complex sample design for longitudinal survey of income support recipients"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	01-Feb-07	01-Feb-07	18281.25	=""	="ROBERT V BREUNIG"	26-Nov-07 12:33 PM	

+="CN48348"	"1ST QUARTER IT SERVICE CHARGES"	="Department of Employment and Workplace Relations"	26-Nov-07	="Professional engineering services"	31-Jul-07	30-Sep-07	83105.00	=""	="Dept of Employment & Workplace"	26-Nov-07 12:34 PM	

+="CN48349"	"Develop&deliver Middle Management Prog Skills not available in APS"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-May-06	31-Jan-09	900000.00	=""	="GLOBAL LEARNING"	26-Nov-07 12:34 PM	

+="CN48350"	"Health checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	05-Jul-06	30-Jun-07	14000.00	=""	="HEALTH SERVICES AUSTRALIA LTD"	26-Nov-07 12:34 PM	

+="CN48351"	"Stationary/Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	07-Jul-06	30-Jun-07	10651.08	=""	="CORPORATE EXPRESS AUSTRALIA"	26-Nov-07 12:34 PM	

+="CN48352"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	11-Jul-06	30-Jun-08	835000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:34 PM	

+="CN48354"	"Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	11-Jul-06	30-Jun-07	10300.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	26-Nov-07 12:34 PM	

+="CN48355"	"Medical Assesments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	12-Jul-06	12-Jul-06	1972021.48	=""	="HEALTH FOR INDUSTRY"	26-Nov-07 12:34 PM	

+="CN48356"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	20-Jul-06	30-Jun-08	100000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:35 PM	

+="CN48357"	"Freight services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	27-Jul-06	19762.86	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:35 PM	

+="CN48358"	"Electronic press clips"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	20-Jul-06	30-Jul-06	310424.99	=""	="MEDIA MONITORS AUST P/L"	26-Nov-07 12:35 PM	

+="CN48359"	"Bus Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	30-Jun-07	22579.60	=""	="DEANES BUSLINES PTY LTD"	26-Nov-07 12:35 PM	

+="CN48360"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	20-Jul-06	30-Jun-07	50638.77	=""	="MICROSOFT P/L"	26-Nov-07 12:35 PM	

+="CN48361"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jul-06	30-Nov-10	45000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:35 PM	

+="CN48362"	"Software Mainframe Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	26-Jul-06	30-Jun-07	234001.90	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:35 PM	

+="CN48363"	"Postage and Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	26-Jul-06	30-Jun-10	65000.00	=""	="AUST POST (ACT 131316)"	26-Nov-07 12:35 PM	

+="CN48364"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	27-Jul-06	30-Jun-07	510587.03	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:36 PM	

+="CN48365"	"Pre-Employment & OH&S Exams"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	27-Jul-06	30-Jun-08	10094.70	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:36 PM	

+="CN48366"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Jul-06	30-Aug-08	10535.20	=""	="MINTER ELLISON"	26-Nov-07 12:36 PM	

+="CN48367"	"Navigation tools"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation components and systems"	05-Jun-07	30-Jun-07	21472.00	=""	="HYPERION SOLUTIONS AUSTRALIA"	26-Nov-07 12:36 PM	

+="CN48368"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Jun-07	30-Jun-07	10000.00	=""	="MOORE CONSULTING"	26-Nov-07 12:36 PM	

+="CN48369"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Graphic design"	12-Jun-07	30-Jun-07	10175.00	=""	="BOOMERANG INTEGRATED MARKETING"	26-Nov-07 12:36 PM	

+="CN48370"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Electronic hardware and component parts and accessories"	14-Jun-07	30-Jun-07	17867.91	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:36 PM	

+="CN48371"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	15-Jun-07	30-Jun-07	20064.00	=""	="SELECT APPOINTMENTS"	26-Nov-07 12:37 PM	

+="CN48372"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	36736.56	=""	="GREYTHORN"	26-Nov-07 12:37 PM	

+="CN48373"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	17735.00	=""	="HAYS OFFICE SUPPORT"	26-Nov-07 12:37 PM	

+="CN48374"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	20-Jun-07	30-Jun-07	10561.10	=""	="CANPRINT COMMUNICATIONS PTY LTD"	26-Nov-07 12:37 PM	

+="CN48375"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	39072.00	=""	="GREYTHORN"	26-Nov-07 12:37 PM	

+="CN48376"	"Auslan for employment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Paper products"	21-Jun-07	30-Jun-07	27700.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	

+="CN48353-A2"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	21-Mar-05	31-Aug-06	1151878.94	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 12:37 PM	

+="CN48377"	"WPA Amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	22-Jun-07	30-Jun-07	55000.00	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:37 PM	

+="CN48378"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Jun-07	30-Jun-07	75999.00	=""	="PRIME FOCUS CONSULTING"	26-Nov-07 12:37 PM	

+="CN48379"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	2674801.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	

+="CN48380"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	77000.00	=""	="SPACE-TIME RESEARCH PTY LTD"	26-Nov-07 12:38 PM	

+="CN48381"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jun-07	30-Jun-08	78625.00	=""	="VISION AUSTRALIA"	26-Nov-07 12:38 PM	

+="CN48382"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jun-07	30-Jun-07	19800.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:38 PM	

+="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	

+="CN48384"	"Nursing care services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Domestic and personal assistance"	28-Jun-07	30-Jun-07	16712.20	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:38 PM	

+="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	

+="CN48386"	"Extension of Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	29-Jun-07	30-Jun-07	27500.00	=""	="COMMERCE QUEENSLAND"	26-Nov-07 12:38 PM	

+="CN48387"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	751968.45	=""	="AMOR CONSULTING PTY LTD"	26-Nov-07 12:38 PM	

+="CN48388"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	879752.01	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 12:39 PM	

+="CN48389"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	05-Jul-07	30-Jun-08	344596.18	="ITC"	="ECONNECT SOLUTIONS PTY LTD"	26-Nov-07 12:39 PM	

+="CN48390"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Jun-07	30-Jun-07	245461.31	=""	="AMBIT IT & T"	26-Nov-07 12:39 PM	

+="CN48391"	"Job Seeker Omnibus Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	29-Nov-06	26-Oct-07	55310.00	=""	="TNS"	26-Nov-07 12:39 PM	

+="CN48392"	"Supply of Mobile Phones and PDA handsets"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	30-Nov-06	30-Jun-07	10278.75	=""	="OPTUS Communications Pty Ltd"	26-Nov-07 12:39 PM	

+="CN48393"	"Office fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	08-Dec-06	30-Jun-07	1056886.69	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:39 PM	

+="CN48394"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	11-Dec-06	30-Sep-07	4066000.00	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:39 PM	

+="CN48395"	"File storage, archival destruction"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	12-Dec-06	23-Dec-07	37185.36	=""	="RECALL INFORMATION MANAGEMENT"	26-Nov-07 12:39 PM	

+="CN48396"	"Longitudinal Pathways Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	15-Dec-06	30-Jul-08	637958.00	=""	="THE SOCIAL RESEARCH CENTRE"	26-Nov-07 12:40 PM	

+="CN48397"	"General Audit Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accounting and auditing"	03-Jan-07	30-Jun-10	26160.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	26-Nov-07 12:40 PM	

+="CN48398"	"Research for safe design"	="Department of Employment and Workplace Relations"	26-Nov-07	="Security and personal safety"	22-Jan-07	30-Apr-07	10394.26	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:40 PM	

+="CN48399"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Feb-07	30-Nov-10	15625.50	=""	="DRAKE"	26-Nov-07 12:40 PM	

+="CN48400"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Feb-07	19-Dec-11	32649.64	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:40 PM	

+="CN48401"	"WorkChoices Employer Advisor Programme 2 Experience of Private Sector/Industry Required"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	09-Feb-07	09-Feb-07	274350.00	=""	="AUSTRALIAN NEWSAGENTS' FEDERATION"	26-Nov-07 12:40 PM	

+="CN48402"	"Courier and Freight charges"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Feb-07	30-Jun-07	12200.00	=""	="TNT DOMESTIC & INTERNATIONAL"	26-Nov-07 12:40 PM	

+="CN48403"	"Transport Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	07-Mar-07	30-Jun-07	10032.00	=""	="KNIGHT FRANK"	26-Nov-07 12:41 PM	

+="CN48404"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-May-07	30-Jun-07	29000.00	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:41 PM	

+="CN48405"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-May-07	30-Jun-07	40700.48	=""	="THE ONE UMBRELLA"	26-Nov-07 12:41 PM	

+="CN48406"	"Filming of  Work for the Dole Awards"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	10-May-07	30-Jun-07	11234.00	=""	="VIVAVISION"	26-Nov-07 12:41 PM	

+="CN48407"	"Filming"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	16-May-07	30-Jun-07	12833.70	=""	="IMAGES ONLINE"	26-Nov-07 12:41 PM	

+="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	

+="CN48409"	"Media Placement Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	28-May-07	30-Sep-07	4000000.05	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:41 PM	

+="CN48410"	"Research Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	28-May-07	30-Jun-07	700000.00	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:41 PM	

+="CN48411"	"Public Relations Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	28-May-07	30-Jun-07	525000.00	=""	="GAVIN ANDERSON & COMPANY (AUSTRALIA"	26-Nov-07 12:41 PM	

+="CN48412"	"Catering, venue Hire and security"	="Department of Employment and Workplace Relations"	26-Nov-07	="Food and nutrition services"	31-May-07	30-Sep-07	12550.00	=""	="GINGER CATERING"	26-Nov-07 12:42 PM	

+="CN48413"	"WPA amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	01-Jun-07	30-Jun-07	22500.00	=""	="FOX BADGER FERRET PTY LTD"	26-Nov-07 12:42 PM	

+="CN48414"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:38 PM	

+="CN48415"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-05	31-Dec-06	340696.59	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:44 PM	

+="CN48417"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:50 PM	

+="CN48416"	"    NRMA House - Detailed Design, Documentation & Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	21-Oct-05	129789.18	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:51 PM	

+="CN48419"	"IMU Contract Programmer: IMU-ICT010 Official Order IMU2007/068"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	24-Nov-07	23-Nov-08	193450.00	=""	="Reitan Holdings Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48420"	"IMU Contract Programmer: IMU-ICT104 Official Order: IMU2007/063"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	12-Nov-07	09-May-08	90090.00	=""	="GMT Canberra Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48421"	"IMU Contract Programmer: IMU-ICT012 Official Order: IMU2007/061"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	01-Nov-07	31-Oct-08	165000.00	=""	="Icon Recruitment Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48422"	"Conduct and overview benchmark to assess how DVA's current IT spending on application and infrastructure services compares to the Australian market. Identify areas for DVA to focus IT spend and perfor"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	30-Aug-07	31-Dec-07	89100.00	=""	="IT Newcom Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48423-A1"	"In-house delivery of 2 workshops of Managing Dispersed teams by international expert."	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	20-Sep-07	28-Sep-07	25555.00	=""	="Performance Improvement Conferences & Seminars Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48424-A1"	"Under APSC Panel of Providers for L&D Faciliated team program and follow-up coaching"	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	23-Aug-07	30-Nov-07	11000.00	=""	="Professional Facilitators International Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48425"	"Provision of Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	26-Nov-07	="Comprehensive health services"	19-Nov-07	30-Sep-09	45000.00	=""	="Rebecca King Speech Pathology Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48418"	"        Alinga and Mort St - Detailed Design, Documentation $ Construction        "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	31-Dec-06	585180.42	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:02 PM	

+="CN48427"	"    Additional Projects Alinga and Mort St - Detailed Design and Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	28-Feb-07	609065.34	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:22 PM	

+="CN48428"	"CPO016720 - Supply of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	02-Nov-07	02-Feb-08	14025.00	=""	="Haworth"	26-Nov-07 02:23 PM	

+="CN48429"	"CPO017177 - Mooring Unit"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	18478.90	=""	="Arafura Sea Charters"	26-Nov-07 02:23 PM	

+="CN48430"	"CPO017175 - Accommodation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Hotels and lodging and meeting facilities"	20-Nov-07	20-Dec-07	13179.00	=""	="Broadwater"	26-Nov-07 02:23 PM	

+="CN48431"	"CPO017172 - Boat trailer"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	31900.00	=""	="Voyager Trailers"	26-Nov-07 02:23 PM	

+="CN48432"	"07/2356 - Construction services (connected to 07/2335 business case)"	="Australian Customs and Border Protection Service"	26-Nov-07	="General building construction"	20-Nov-07	14-Dec-07	291591.30	=""	="Semrau Constructions"	26-Nov-07 02:23 PM	

+="CN48433-A1"	"06/1553 - Supply of remotely operated underwater vehicles"	="Australian Customs and Border Protection Service"	26-Nov-07	="Marine craft systems and subassemblies"	21-Nov-07	21-Nov-10	1185000.00	=""	="Ocean Modules"	26-Nov-07 02:23 PM	

+="CN48434-A2"	"07/2307 - Project Manager"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	25-Sep-07	30-Jun-08	243551.20	=""	="Apis Consulting Group (ACT) Pty"	26-Nov-07 02:23 PM	

+="CN48435"	"CPO017311 - Supply of fabric"	="Australian Customs and Border Protection Service"	26-Nov-07	="Fibres and threads and yarns"	22-Nov-07	31-Jan-08	18288.00	=""	="Bruck Textiles Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48436"	"CPO017349 - IT Software"	="Australian Customs and Border Protection Service"	26-Nov-07	="Computer services"	26-Sep-07	22-Nov-07	13200.00	=""	="D'Arcy Consulting Group"	26-Nov-07 02:24 PM	

+="CN48437"	"CPO017250 - Supply and Installation of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	22-Nov-07	22-Nov-07	11300.30	=""	="Schiavello (WA) Pty"	26-Nov-07 02:24 PM	

+="CN48438"	"CPO016466 - CCTV Relocation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	11-May-08	29768.00	=""	="Chubb Electronic Security"	26-Nov-07 02:24 PM	

+="CN48439"	"CPO017116 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	11-Nov-07	11-Nov-07	13200.00	=""	="DFP Recruitment Services Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48440"	"CPO017258 - CCTV equipment"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	30-Jun-08	53442.40	=""	="LAN 1 Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48442"	"Lease at Weipa, Queensland."	="Department of Human Services"	26-Nov-07	="Real estate services"	01-Feb-08	31-Jan-15	718452.15	=""	="L.J. McDonald & M.A. McDonald"	26-Nov-07 02:27 PM	

+="CN48443-A1"	"    111 Alinga Base Building Upgrade by Multiplex    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	31-Dec-07	1042107.00	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:28 PM	

+="CN48444"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-06	31-Dec-07	231170.28	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:35 PM	

+="CN48446"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	20-Nov-07	13282.50	=""	="WORK SOLUTIONS GROUP PTY LTD"	26-Nov-07 02:41 PM	

+="CN48447"	"CORPORATE HPM CONFERENCE OCT07"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	22-Nov-07	14550.00	=""	="JASPER HOTEL"	26-Nov-07 02:41 PM	

+="CN48448"	"ISAC RECRUITMENT SELECTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	22-Nov-07	11865.00	=""	="Australian Public Service"	26-Nov-07 02:41 PM	

+="CN48449"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	22-Nov-07	15361.50	=""	="BLUE PROPERTY MARKETING"	26-Nov-07 02:41 PM	

+="CN48450"	"COURSE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	27720.00	=""	="TERADATA AUSTRALIA PTY LTD"	26-Nov-07 02:42 PM	

+="CN48451"	"PRESENTATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	16-Nov-07	16500.00	=""	="YOUNG ACHIEVEMENT AUSTRALIA"	26-Nov-07 02:42 PM	

+="CN48452"	"SUBSCRIPTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Oct-07	13-Nov-07	94944.28	=""	="Australian Public Service"	26-Nov-07 02:42 PM	

+="CN48453"	"COMMITTE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	13-Nov-07	31059.00	=""	="Australian Public Service"	26-Nov-07 02:42 PM	

+="CN48454"	"PROFESSIONAL SERVICES"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	14-Nov-07	10645.00	=""	="LEO A. TSAKNIS"	26-Nov-07 02:42 PM	

+="CN48455"	"VENUE HIRE NOVOTEL NCG CONFERENCE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	15-Nov-07	31305.66	=""	="NOVOTEL ST KILDA"	26-Nov-07 02:42 PM	

+="CN48456"	"REGISTRATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	15-Nov-07	10115.60	=""	="TONKIN CORPORATION PTY LTD"	26-Nov-07 02:42 PM	

+="CN48457"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-May-07	30-Sep-08	1695248.72	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:48 PM	

+="CN48459"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	19-Oct-07	19-Oct-07	66880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	26-Nov-07 02:55 PM	

+="CN48460"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	22-Oct-07	30-Jun-08	49999.62	=""	="S.E.M. AUSTRALIA PTY LIMITED"	26-Nov-07 02:55 PM	

+="CN48461"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	40902.40	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 02:56 PM	

+="CN48462"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	48185.28	=""	="Frontier Group Australia"	26-Nov-07 02:56 PM	

+="CN48463"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	57200.00	=""	="ANATAS"	26-Nov-07 02:56 PM	

+="CN48464"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	57200.00	=""	="BLUELINE SOFTWARE PTY LTD"	26-Nov-07 02:56 PM	

+="CN48465"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Oct-07	31-Dec-07	18231.31	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 02:56 PM	

+="CN48466"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	12020.18	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	

+="CN48467"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	11190.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	

+="CN48468"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Communications Devices and Accessories"	23-Oct-07	23-Oct-07	179456.44	=""	="OPTUS BILLING SERVICES"	26-Nov-07 02:56 PM	

+="CN48469"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	50310.48	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	

+="CN48470"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	21507.75	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	

+="CN48471"	"Provision of Funding for Internal Project"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	31-Dec-07	104999.97	=""	="GP PARTNERS LTD"	26-Nov-07 02:57 PM	

+="CN48472"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	46981.00	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	

+="CN48473"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	66774.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	

+="CN48474"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	16-Oct-07	16-Oct-07	12584.71	=""	="Curran & Associates"	26-Nov-07 02:57 PM	

+="CN48475"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	42599.99	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:57 PM	

+="CN48476"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	17-Oct-07	14410.00	=""	="SAVILLS PTY LTD"	26-Nov-07 02:57 PM	

+="CN48477"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	320804.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:58 PM	

+="CN48478"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	30590.61	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48479"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	17-Oct-07	17-Oct-07	12320.00	=""	="IPA PERSONNEL PTY LTD"	26-Nov-07 02:58 PM	

+="CN48480"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	17-Oct-07	17-Oct-07	368198.60	=""	="INTERIORS AUSTRALIA"	26-Nov-07 02:58 PM	

+="CN48482"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	17852.72	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48483"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	14433.01	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48484"	"Provision of Network Services"	="Medicare Australia"	26-Nov-07	="Electrical wire and cable and harness"	17-Oct-07	26-Oct-07	13275.72	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 02:58 PM	

+="CN48485"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	17-Oct-07	31-Dec-07	84938.43	=""	="AUSTRALIA POST"	26-Nov-07 02:58 PM	

+="CN48486"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Components for information technology or broadcasting or telecommunications"	17-Oct-07	17-Oct-07	61207.28	=""	="EMC GLOBAL HOLDINGS COMPANY"	26-Nov-07 02:59 PM	

+="CN48487"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	18-Oct-07	18-Oct-07	45154.50	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	

+="CN48488"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	18-Oct-07	18-Oct-07	33235.71	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	

+="CN48489"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Paper products"	19-Oct-07	30-Dec-07	71069.90	=""	="PARAGON PRINTERS"	26-Nov-07 02:59 PM	

+="CN48490"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	25-Oct-07	25-Oct-07	18858.12	=""	="ACUMEN ALLIANCE"	26-Nov-07 02:59 PM	

+="CN48491"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48492"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48493"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48494"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48495"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	26-Oct-07	19-Nov-07	171333.80	=""	="WA Partitioning Pty Ltd"	26-Nov-07 03:00 PM	

+="CN48496"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	11226.39	=""	="DUSAN KEBER"	26-Nov-07 03:00 PM	

+="CN48497"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	26-Oct-07	26-Oct-07	13567.40	=""	="Watermark Search International"	26-Nov-07 03:00 PM	

+="CN48498"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	29-Oct-07	29-Oct-07	242000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:00 PM	

+="CN48499"	"Property Rental"	="Medicare Australia"	26-Nov-07	="Business administration services"	29-Oct-07	29-Oct-07	3644787.22	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:00 PM	

+="CN48500"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	26-Nov-07	="Paper products"	29-Oct-07	29-Oct-07	11041.80	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	26-Nov-07 03:00 PM	

+="CN48501"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	53367.60	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:00 PM	

+="CN48502"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	25795.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	26-Nov-07 03:00 PM	

+="CN48503"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	30-Oct-07	30-Oct-07	59787.20	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48504"	"Provision of Training Courses"	="Medicare Australia"	26-Nov-07	="Specialised educational services"	30-Oct-07	30-Oct-07	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	26-Nov-07 03:01 PM	

+="CN48505"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Graphic design"	31-Oct-07	30-Dec-07	13482.70	=""	="SPECTRUM GRAPHICS"	26-Nov-07 03:01 PM	

+="CN48506"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	66455.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48507"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	72612.10	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48508"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	42586.50	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48509"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	12403.02	=""	="James Richardson Corporation"	26-Nov-07 03:01 PM	

+="CN48510"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	25-Oct-07	25-Oct-07	16831.34	=""	="QM Technologies Pty Limited"	26-Nov-07 03:01 PM	

+="CN48511"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Paper products"	25-Oct-07	25-Oct-07	165000.00	=""	="AUSTRALIA POST"	26-Nov-07 03:02 PM	

+="CN48512"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	25-Oct-07	30-Oct-07	88000.00	=""	="MasterSoft Systems Pty Ltd"	26-Nov-07 03:02 PM	

+="CN48513"	"Provision of Educational Services"	="Medicare Australia"	26-Nov-07	="Vocational training"	25-Oct-07	25-Oct-07	23760.00	=""	="PLANPOWER PTY LTD"	26-Nov-07 03:02 PM	

+="CN48514"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Paper materials"	25-Oct-07	25-Oct-07	23100.00	=""	="QM Technologies Pty Limited"	26-Nov-07 03:02 PM	

+="CN48515"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	394151.32	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:02 PM	

+="CN48516"	"Provision of Property Management services"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	112216.22	=""	="UNITED GROUP SERVICES PTY LTD"	26-Nov-07 03:02 PM	

+="CN48517"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Oct-07	29-Oct-07	79194.96	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:02 PM	

+="CN48518"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	67562.00	=""	="IBEX INTERIORS PTY LTD"	26-Nov-07 03:02 PM	

+="CN48519"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12513.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	

+="CN48520"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12293.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	

+="CN48521"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Graphic design"	03-Oct-07	03-Oct-07	17430.60	=""	="PARAGON PRINTERS"	26-Nov-07 03:03 PM	

+="CN48522"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	26-Nov-07	12786.32	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	

+="CN48523"	"Provision of Telephony services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	15048.00	=""	="OPTUS BILLING SERVICES"	26-Nov-07 03:03 PM	

+="CN48524"	"ELECTRONIC SERVICES"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	09-Nov-07	26-Nov-07	15062.19	=""	="ESPREON PROPERTY SERVICES"	26-Nov-07 03:03 PM	

+="CN48525"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	52800.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:03 PM	

+="CN48526"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Nov-07	35654.79	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	

+="CN48527"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	11533.50	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 03:03 PM	

+="CN48528"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	15-Nov-07	12599.00	=""	="COLLIERS INTERNATIONAL (HK) LTD"	26-Nov-07 03:03 PM	

+="CN48529"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	03-Oct-07	03-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:03 PM	

+="CN48530"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	15-Nov-07	19745.00	=""	="COLLIERS INTERNATIONAL HOLDINGS"	26-Nov-07 03:03 PM	

+="CN48531"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	03-Oct-07	03-Oct-07	276853.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:03 PM	

+="CN48532"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Nov-07	10391.81	=""	="ALLARD & SHELTON PTY LTD"	26-Nov-07 03:03 PM	

+="CN48533"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	04-Oct-07	04-Oct-07	10540.11	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:04 PM	

+="CN48534"	"PHONE ACCOUNT"	="Australian Taxation Office"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	15-Nov-07	36642.63	=""	="TELSTRA"	26-Nov-07 03:04 PM	

+="CN48535"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	04-Oct-07	04-Oct-07	93060.00	=""	="David Jess & Associates Pty Ltd"	26-Nov-07 03:04 PM	

+="CN48536"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	13-Nov-07	19375.59	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:04 PM	

+="CN48537"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	04-Oct-07	04-Oct-07	13513.50	=""	="APIS CONSULTING GROUP"	26-Nov-07 03:04 PM	

+="CN48538"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Doors and windows and glass"	05-Oct-07	05-Oct-07	21386.20	=""	="Hufcor Pty Ltd"	26-Nov-07 03:04 PM	

+="CN48539"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	08-Oct-07	08-Oct-07	275000.00	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:04 PM	

+="CN48540"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	08-Oct-07	08-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:04 PM	

+="CN48541"	"Supply of 2008 Diaries"	="Medicare Australia"	26-Nov-07	="Office and desk accessories"	16-Oct-07	16-Oct-07	19929.21	=""	="Corporate Impressions"	26-Nov-07 03:04 PM	

+="CN48542"	"Provision of Storage/File Destruction services"	="Medicare Australia"	26-Nov-07	="Storage"	09-Oct-07	30-Jun-08	23324.78	=""	="RECALL TOTAL INFORMATION"	26-Nov-07 03:04 PM	

+="CN48543"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	09-Oct-07	09-Oct-07	12310.15	=""	="KAROLINA KALANJ"	26-Nov-07 03:05 PM	

+="CN48544"	"CABCHRG 1808-140907"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	17-Sep-07	11-Oct-07	39831.18	=""	="CABCHARGE AUSTRALIA LIMITED"	26-Nov-07 03:05 PM	

+="CN48545"	"NSW ARMAGUARD SEP07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	98647.80	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48546"	"QLD ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	62936.01	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48547"	"SA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	12441.82	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48548"	"VIC ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	81663.19	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48549"	"WA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	28487.64	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48550"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	49975.98	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:05 PM	

+="CN48551"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	16307.51	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48552"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	35759.20	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48553"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	23-Oct-07	46351.17	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48554"	"AMEX TRAVEL SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	24-Oct-07	227233.33	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48555"	"Provision of Project Management services"	="Medicare Australia"	26-Nov-07	="General building construction"	02-Oct-07	02-Oct-07	185460.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:06 PM	

+="CN48556"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	03-Oct-07	03-Oct-07	12161.69	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:06 PM	

+="CN48557"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	03-Oct-07	03-Oct-07	28417.31	=""	="SKILLED GROUP LIMITED"	26-Nov-07 03:06 PM	

+="CN48558"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	03-Oct-07	14-Feb-08	1998858.84	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:06 PM	

+="CN48559"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	138656.91	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48560"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	18072.46	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48561"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	212427.49	=""	="CROTTY & CO PTY LTD"	26-Nov-07 03:07 PM	

+="CN48562"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	12705.00	=""	="James Richardson Corporation"	26-Nov-07 03:07 PM	

+="CN48563"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	12-Oct-07	12-Oct-07	33872.83	=""	="Iron Mountain Australia Pty Ltd"	26-Nov-07 03:07 PM	

+="CN48564"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	20152.00	=""	="LINDA VAN TINTEREN"	26-Nov-07 03:07 PM	

+="CN48565"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	30-Nov-07	11719.42	=""	="DRAKE AUSTRALIA PTY LTD"	26-Nov-07 03:07 PM	

+="CN48566"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	13278.18	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48567"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Oct-07	12-Oct-07	161387.50	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:08 PM	

+="CN48568"	"MANAGEMENT SERVICE FEES"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	15-Oct-07	92730.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48569"	"Provision of Storage/Distribution services"	="Medicare Australia"	26-Nov-07	="Information services"	15-Oct-07	15-Oct-07	206957.66	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	26-Nov-07 03:08 PM	

+="CN48570"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	15-Oct-07	15-Oct-07	81939.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48571"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	15-Oct-07	30-Oct-07	42174.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 03:08 PM	

+="CN48572"	"Provision of Archiving Equipment"	="Medicare Australia"	26-Nov-07	="Paper products"	15-Oct-07	01-Dec-09	27500.00	=""	="ROLLS FILING SYSTEMS"	26-Nov-07 03:08 PM	

+="CN48573"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Heating and ventilation and air circulation"	15-Oct-07	15-Oct-07	12294.99	=""	="PETERS REFRIGERATION & AIR CON"	26-Nov-07 03:08 PM	

+="CN48574"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	16-Oct-07	43301.50	=""	="SCHIAVELLO SYSTEMS (NSW) PTY LTD"	26-Nov-07 03:08 PM	

+="CN48575"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	34120.61	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48576"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Computer services"	09-Oct-07	09-Oct-07	41580.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 03:09 PM	

+="CN48577"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	21692.00	=""	="DIVERSITI PTY LTD"	26-Nov-07 03:09 PM	

+="CN48578"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	29-Feb-08	91784.00	=""	="CCS Technology recruiter"	26-Nov-07 03:09 PM	

+="CN48579"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	11-Oct-07	20874.09	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:09 PM	

+="CN48580"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	11-Oct-07	11-Oct-07	13219.21	=""	="KAROLINA KALANJ"	26-Nov-07 03:09 PM	

+="CN48581"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	30343.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:09 PM	

+="CN48582"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	92268.00	=""	="Superior Shopfitters"	26-Nov-07 03:09 PM	

+="CN48583"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Computer services"	11-Oct-07	30-Oct-07	54862.50	=""	="TIBCO SOFTWARE AUSTRALIA PTY LTD"	26-Nov-07 03:09 PM	

+="CN48584"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	12687.40	=""	="CANBERRA CURTAINS & BLINDS PTY LTD"	26-Nov-07 03:10 PM	

+="CN48585"	"Provision of Employee Assistance"	="Medicare Australia"	26-Nov-07	="Human resources services"	11-Oct-07	11-Oct-07	12997.51	=""	="OSA GROUP PTY LTD"	26-Nov-07 03:10 PM	

+="CN48586"	"Provision of Advertising Services"	="Medicare Australia"	26-Nov-07	="Advertising"	11-Oct-07	11-Oct-07	22286.00	=""	="CRE8IVE AUSTRALASIA PTY LTD"	26-Nov-07 03:10 PM	

+="CN48587"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	10450.00	=""	="CMB"	26-Nov-07 03:10 PM	

+="CN48588"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	13715.08	=""	="James Richardson Corporation"	26-Nov-07 03:10 PM	

+="CN48589"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	13381.50	=""	="FUTURE FLOOR SERVICES"	26-Nov-07 03:10 PM	

+="CN48481"	" Medical Consumables For ADF "	="Defence Materiel Organisation"	26-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	05-Dec-07	10450.00	=""	="Markforce Pty Ltd"	26-Nov-07 03:13 PM	

+="CN35554-A2"	"Radio advertisements for the Murray-Darling Basin and Drought Assistance campaigns."	="Department of Human Services"	26-Nov-07	="Radio advertising"	01-Jul-07	30-Jun-08	132000.00	=""	="Eardrum Pty Ltd"	26-Nov-07 03:15 PM	

+="CN48592"	"Supply of Trousers, Men's, Metallic Blue, Drivers."	="Defence Materiel Organisation"	26-Nov-07	="Clothing"	26-Nov-07	29-Feb-08	18920.00	=""	="Joseph Dahdah & Co Pty Ltd"	26-Nov-07 03:39 PM	

+="CN48594"	"IDM 2455 Sun Java System Identity 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	08-Nov-07	06-Dec-07	12144.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	26-Nov-07 03:52 PM	

+="CN48595"	"ICON Levy's for 07/08"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	07-Nov-07	30-Jun-08	82500.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 03:53 PM	

+="CN48596"	"Adhoc document Translations FY 07/08"	="Australian Taxation Office"	26-Nov-07	="Editorial and Design and Graphic and Fine Art Services"	25-Sep-07	30-Jun-08	10000.00	=""	="VITS LANGUAGE LINK"	26-Nov-07 03:53 PM	

+="CN48597"	"ITContractors"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	20-Feb-08	63360.00	=""	="VALUE SOURCING"	26-Nov-07 03:53 PM	

+="CN48598"	"DM47AU Introduction to DB2 Doc manger V8 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	22-Nov-07	10560.00	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:53 PM	

+="CN48600"	" Supply of mail services: Study of Sexual Assault "	="Australian Institute of Family Studies"	26-Nov-07	="Addressing or mailing labels"	24-Sep-07	24-Sep-07	11911.45	=""	="Mailcare Systems Pty Ltd"	26-Nov-07 04:06 PM	

+="CN48601-A1"	"Provision of Certificate IV in Business (frontline management) to the AFP"	="Australian Federal Police"	26-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	94996.00	="APS Commission 2005/014"	="Global Training Institute"	26-Nov-07 04:16 PM	

+="CN48602"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	16-Nov-07	21-Jan-08	208208.00	=""	="InfoRail Pty Ltd"	26-Nov-07 04:32 PM	

+="CN48603"	"IT Contractor services"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	21-Nov-07	31-Mar-08	105600.00	=""	="FOCUS STRATEGIES & SOLUTIONS"	26-Nov-07 04:32 PM	

+="CN48606"	"Lease at Noarlunga, SA"	="Centrelink"	26-Nov-07	="Real estate services"	05-Nov-07	04-May-08	1272734.00	=""	="CPT Manager Limited"	26-Nov-07 04:36 PM	

+="CN48607"	" NSN 1560-66-050-5351  PURCHASE OF BRACKET ASSEMBLY, EN  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	20-Nov-07	29-Jan-08	52006.40	=""	="Milspec Services Pty Ltd"	26-Nov-07 04:40 PM	

+="CN48608"	"07/2379 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	26-Nov-07	="Temporary personnel services"	05-Nov-07	31-Dec-07	43400.00	="05/0717"	="CCS Index Pty Ltd"	26-Nov-07 04:42 PM	

+="CN48609-A1"	"Printing AEC publications"	="Australian Electoral Commission"	26-Nov-07	="Industrial printing services"	07-Nov-07	07-Dec-07	10384.00	="AEC06/026"	="Union Offset Printers"	26-Nov-07 04:47 PM	

+="CN48614"	" NSN 2995-00-985-1355  REPAIR/OVERHAUL OF STARTER, ENGINE, AIR TURBINE  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	15-Feb-07	31-Jan-08	10200.70	=""	="Honeywell Ltd"	26-Nov-07 04:52 PM	

+="CN48615"	"Hire of Electoral Premises"	="Australian Electoral Commission"	26-Nov-07	="Lease and rental of property or building"	12-Nov-07	24-Nov-07	33600.00	=""	="Princess Theatre Pty Ltd"	26-Nov-07 04:53 PM	

+="CN48616"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 04:56 PM	

+="CN48617"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 05:00 PM	

 ="CN48618"	"Design of Election Publication"	="Australian Electoral Commission"	26-Nov-07	="Computer generated design services"	19-Sep-07	31-Oct-07	13002.00	=""	="Zoo Communications Pty Ltd"	26-Nov-07 05:00 PM 

--- /dev/null
+++ b/admin/partialdata/23Jun2008to25Jun2008valto.xls
@@ -1,1 +1,536 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN94132"	" AIRCRAFT SPARES  NSN: 4925-66-127-9333  QTY: 2 "	="Defence Materiel Organisation"	23-Jun-08	="Military transport helicopters"	20-Jun-08	15-Feb-09	21704.48	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	23-Jun-08 07:57 AM	

+="CN94133"	"Wet Weather Garments"	="Defence Materiel Organisation"	23-Jun-08	="Protective rainwear or wet environment apparel"	17-Jun-08	31-Jul-08	4056602.00	="POE/CLOSPO/08/001"	="Global Safety Solutions Management"	23-Jun-08 08:15 AM	

+="CN94137-A1"	"SAP technical development services"	="Australian Federal Police"	23-Jun-08	="Engineering and Research and Technology Based Services"	04-Apr-08	30-Jun-08	110825.00	=""	="SAP Australia Pty Ltd"	23-Jun-08 09:13 AM	

+="CN94142"	"GAGE TIRE PRESSURE"	="Defence Materiel Organisation"	23-Jun-08	="Workshop machinery and equipment and supplies"	20-Jun-08	20-Jul-08	30426.00	=""	="Rema Tip Top Australia Pty Ltd"	23-Jun-08 09:42 AM	

+="CN94146"	" Manager Training and Development &ndash; Healthy Conversations "	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Aug-08	124607.00	=""	="Swinburne University of Technology"	23-Jun-08 10:33 AM	

+="CN94154-A2"	"Provision of application support services"	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	195624.00	=""	="Patriot Alliance Pty Ltd"	23-Jun-08 10:49 AM	

+="CN94155-A1"	"Planningin phase of the USD upgrade- Consultants Fees- Phase 4"	="Australian Taxation Office"	23-Jun-08	="Information technology consultation services"	20-Dec-07	23-Jun-08	1115580.00	=""	="CA( Pacific) Pty Ltd"	23-Jun-08 10:58 AM	

+="CN94156"	"10 x Positive Pressure Ventilating Fans (powered)"	="Defence Materiel Organisation"	23-Jun-08	="Fire fighting equipment"	06-Jun-08	15-Aug-08	24200.00	="FV8030"	="ASSOCIATED AIRCRAFT MANUFACTURING"	23-Jun-08 11:06 AM	

+="CN94157-A2"	"Planning, building and testing software applications."	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	30-Jun-10	380635.20	=""	="Stratagem Computer Contractors Pty. Limited"	23-Jun-08 11:14 AM	

+="CN94160"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	23-Jun-08	="Aircraft spars"	20-Jun-08	20-Feb-09	18883.33	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	23-Jun-08 11:17 AM	

+="CN94161"	"60 x Hydrant, Fire (Matthews Fire Alarm FS3023)"	="Defence Materiel Organisation"	23-Jun-08	="Fire fighting equipment"	23-Jun-08	22-Aug-08	26680.50	="FV8032"	="CADIA PLUMBING EQUIPMENT"	23-Jun-08 11:25 AM	

+="CN94162"	" Services to migrate software to new environment. "	="Australian Taxation Office"	23-Jun-08	="Software maintenance and support"	23-Jun-08	23-Jul-08	11000.00	=""	="SAI Global"	23-Jun-08 11:38 AM	

+="CN94163"	"Purchase of 121 laptops and accessories"	="Centrelink"	23-Jun-08	="Computer Equipment and Accessories"	23-Jun-08	23-Dec-08	230245.70	="2004/52285"	="Hewlett Packard Australia Pty Ltd"	23-Jun-08 11:52 AM	

+="CN94165"	"End to End Software Testing up to 12 Attendees"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	16-Jun-08	17-Jul-08	12600.00	=""	="IV & V Australia"	23-Jun-08 12:31 PM	

+="CN94166"	"Scribe services"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	17-Jun-08	18216.00	=""	="VEROSSITY PTY LTD"	23-Jun-08 12:31 PM	

+="CN94167"	"6 Talon units for Trusted Access & Forensics team."	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-08	22168.20	=""	="ASI Solutions"	23-Jun-08 12:32 PM	

+="CN94168-A3"	" Provision of IT Contractor Services. "	="Australian Taxation Office"	23-Jun-08	="Computer services"	20-Jun-08	22-Jun-12	1007015.00	="RFT 008-2008"	="CORDELTA PTY LTD"	23-Jun-08 12:33 PM	

+="CN94169"	"attendees at training programs"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	20-Jun-08	30-Jun-08	14564.00	=""	="Australian Federal Police"	23-Jun-08 12:33 PM	

+="CN94170"	"Course: Tivoli Omegamon 6.1 Administrators and Imp"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	20-Jun-08	08-Aug-08	29964.00	=""	="SENETAS CORPORATION LIMITED"	23-Jun-08 12:33 PM	

+="CN94171"	"TOLLWAY FEES FY 2008/2009"	="Australian Taxation Office"	23-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	20-Jun-08	20-Jun-08	78000.00	=""	="INTERLINK ROADS PTY LTD"	23-Jun-08 12:33 PM	

+="CN94172"	"training program"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	19-Jun-08	01-Sep-08	10000.00	=""	="WORKPLACE COACHING PTY LTD"	23-Jun-08 12:33 PM	

+="CN94173"	"Course: Rexx Programming Workshop"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	18-Jun-08	25-Jul-08	24750.00	=""	="IBM AUSTRALIA LIMITED"	23-Jun-08 12:34 PM	

+="CN94174"	"Course: MQ20 WebSphere MQ for z/OS System Administ"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	18-Jun-08	03-Jul-08	14080.00	=""	="IBM AUSTRALIA LIMITED"	23-Jun-08 12:34 PM	

+="CN94175"	"x6 Mac Laptops for Forensics & investigations Tm."	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Jun-08	15288.57	=""	="APPLE PTY LTD"	23-Jun-08 12:34 PM	

+="CN94176"	"Digital Ultrakit for Forensics & investigation Tms"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	30-Jun-08	13454.00	=""	="FRONTIER SOLUTIONS & STRATEGIES PTY"	23-Jun-08 12:34 PM	

+="CN94177-A4"	" Development of a communication strategy for the Australian government';s First Home Savers Account   initiative "	="Australian Taxation Office"	23-Jun-08	="Management support services"	01-Jun-08	30-Jun-11	422451.00	="08.092"	="George Patterson Y&R"	23-Jun-08 12:40 PM	

+="CN94179"	"INSTRUCTIONAL DESIGN WORKSHOP"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	13-Jun-08	13000.00	=""	="JEFF CATCHLOVE"	23-Jun-08 12:42 PM	

+="CN94180"	"CONFERENCE"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	17-Jun-08	48160.00	=""	="THE SEBEL PARRAMATTA"	23-Jun-08 12:42 PM	

+="CN94181"	"CONFERENCE"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	28-May-08	33417.20	=""	="NOVOTEL ST KILDA"	23-Jun-08 12:42 PM	

+="CN94182"	"VENUE HIRE"	="Australian Taxation Office"	23-Jun-08	="Education and Training Services"	17-Jun-08	19-Jun-08	14750.00	=""	="WATERMARK HOTEL & SPA"	23-Jun-08 12:43 PM	

+="CN94183"	"PROMOTIONAL PRODUCTS"	="Australian Taxation Office"	23-Jun-08	="Office Equipment and Accessories and Supplies"	17-Jun-08	17-Jun-08	27701.41	=""	="PROMOTIONS ONLY"	23-Jun-08 12:43 PM	

+="CN94184"	"CONTRACTOR SERV"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-08	16-Jun-08	28812.70	=""	="Hudson Global Resources (Aust) P/L"	23-Jun-08 12:43 PM	

+="CN94185"	"RECORDS MANAGEMENT"	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	30-May-08	23-Jun-08	13392.72	=""	="GRACE INFORMATION MANAGEMENT"	23-Jun-08 12:44 PM	

+="CN94187"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	02-Jul-09	155034.00	=""	="AJQ PTY LIMITED"	23-Jun-08 12:45 PM	

+="CN94188"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	02-Jul-09	165369.60	=""	="Ambit IT&T Recruitment Pty Ltd"	23-Jun-08 12:45 PM	

+="CN94189-A1"	"venue hire & incidentals SPR leadership conference 23 & 24 July 08"	="Australian Taxation Office"	23-Jun-08	="Travel and Food and Lodging and Entertainment Services"	04-Dec-07	30-Jul-08	20118.90	=""	="HYATT CATERING AT THE NATIONAL"	23-Jun-08 12:46 PM	

+="CN94191"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	08-Jul-09	249980.00	="RFT 039-2007"	="HEATHAZE.COM PTY LTD"	23-Jun-08 12:46 PM	

+="CN94192"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	17-Jun-08	13-Jan-09	120060.00	="RFT 100-2007"	="RFJD Pty Ltd"	23-Jun-08 12:47 PM	

+="CN94193"	"IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	06-Aug-09	216216.00	="RFT 061-2007"	="Icon Recruitment Pty Ltd"	23-Jun-08 12:47 PM	

+="CN94194"	"RFT 011-2007 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	24-Jul-09	248600.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	23-Jun-08 12:47 PM	

+="CN94195"	"RFT 047-2007 IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	23-Jun-08	31-Jan-09	120806.40	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	23-Jun-08 12:47 PM	

+="CN94196"	"IT Contractor Extension"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-09	235950.00	="RFT 041-2007"	="ICON RECRUITMENT"	23-Jun-08 12:48 PM	

+="CN94197"	"IT Contractor"	="Australian Taxation Office"	23-Jun-08	="Engineering and Research and Technology Based Services"	16-Jun-08	30-Jun-08	11616.00	=""	="COMPAS PTY LTD"	23-Jun-08 12:48 PM	

+="CN94200"	"Provision for Mid Year Mailout 2008"	="Comsuper"	23-Jun-08	="Printed publications"	01-May-08	25-May-08	12502.82	=""	="Hermes Precisa P/L"	23-Jun-08 12:55 PM	

+="CN94201"	"PULLY, GROOVE NSN: 3020/006579580"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	15-Apr-08	28-Apr-08	10084.80	=""	="AEROSPACE COMPOSITES PTY LTD"	23-Jun-08 01:01 PM	

+="CN94202-A1"	"Provision for the data Integration/Intelligence Tool"	="Comsuper"	23-Jun-08	="Software"	11-Jun-08	11-Sep-13	1715167.00	=""	="Sas Institute Australia"	23-Jun-08 01:03 PM	

+="CN94203"	"RELAY, PHASE SEQUENC NSN: 5945/006249513"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	12-Jun-08	29-Jun-08	19266.00	=""	="PACIFIC AERODYNE PTY LTD"	23-Jun-08 01:06 PM	

+="CN94205"	"SWITCH, THERMOSTATIC NSN: 5930/0020009326"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	12-Jun-08	18-Dec-08	32670.00	=""	="PACIFIC AERODYNE PTY LTD"	23-Jun-08 01:10 PM	

+="CN94206"	"PLUG, MACHINE THREAD NSN: 5365/014468260"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	19-Jun-08	07-Jul-08	11228.00	=""	="MILITARY AVIATION SPARES PTY LTD"	23-Jun-08 01:15 PM	

+="CN94208"	"Supply of 120 EO Tech Sight Holographic."	="Defence Materiel Organisation"	23-Jun-08	="Personal safety devices or weapons"	23-Jun-08	12-Sep-08	69300.00	=""	="NIOA Trading"	23-Jun-08 02:11 PM	

+="CN94212"	"External window works at Dandenong Registry"	="Family Court of Australia"	23-Jun-08	="Locks and security hardware and accessories"	16-May-08	13-Jun-08	17344.04	=""	="Gecko MMS Pty Ltd"	23-Jun-08 02:12 PM	

+="CN94217"	"Document Writer for e-recruitment software solutions"	="Australian Federal Police"	23-Jun-08	="Software or hardware engineering"	04-Feb-08	21-Mar-08	15000.00	=""	="Southern Cross Computing Pty Limited"	23-Jun-08 02:48 PM	

+="CN94220"	"Computer services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	01-Apr-08	30-Apr-08	13343.00	=""	="Aggmedia Pty Ltd"	23-Jun-08 03:07 PM	

+="CN94221"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	01-Jul-06	30-Jun-09	16186.29	=""	="Verizon"	23-Jun-08 03:07 PM	

+="CN94222"	"Reproduction services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Reproduction services"	01-Jul-08	30-Sep-08	18205.00	=""	="Design Emergency"	23-Jun-08 03:08 PM	

+="CN94223"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Telecommunications media services"	01-Jun-08	30-Jun-08	18885.01	=""	="Telstra"	23-Jun-08 03:08 PM	

+="CN94224"	"Telcommunications media services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Telecommunications media services"	01-May-08	31-May-08	33775.29	=""	="Telstra"	23-Jun-08 03:08 PM	

+="CN94225"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	02-Jun-08	02-Jun-09	38500.00	=""	="Children's Services Support Unit WA Inc"	23-Jun-08 03:08 PM	

+="CN94226"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	04-Jun-08	31-May-09	532800.00	="2005-31"	="Parsons Brinckerhoff Australia Pty Ltd"	23-Jun-08 03:08 PM	

+="CN94227"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	06-Jun-08	11-Jun-08	16500.00	="2005-31"	="ACIL Tasman Pty Ltd"	23-Jun-08 03:08 PM	

+="CN94229"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	06-Jun-08	31-Jul-08	50000.00	="2005-31"	="Frontier Economics Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94230"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	10-Jun-08	30-Jun-10	5135650.00	="RFQ2008-02"	="The Bailey Group Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94231"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	12969.00	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94232"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	13627.63	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94233"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	11-Jun-08	31-Jul-08	24529.73	=""	="Zallcom Pty Ltd"	23-Jun-08 03:09 PM	

+="CN94234"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	12-Jun-08	30-Jun-08	15600.00	=""	="Dr Greg Walker"	23-Jun-08 03:10 PM	

+="CN94235"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	15-Feb-08	12-Sep-08	140580.00	="RFT2007-2059"	="Cordelta Pty Ltd"	23-Jun-08 03:10 PM	

+="CN94237"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	16-Jun-08	31-Jul-08	507002.10	="RFT2007-2116"	="Getronics Australia"	23-Jun-08 03:10 PM	

+="CN94238"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	17-Jun-08	10-Jun-10	16500.00	="RFQ2008-04"	="Symbio Alliance"	23-Jun-08 03:11 PM	

+="CN94239"	"Management advisory services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Management advisory services"	17-Jun-08	31-Oct-08	55000.00	="RFT2005-31"	="Nuttall Consultancy"	23-Jun-08 03:11 PM	

+="CN94240"	"Hotel lodging and meeting facilities"	="Australian Competition and Consumer Commission"	23-Jun-08	="Hotels and lodging and meeting facilities"	18-May-08	20-May-08	12464.00	=""	="Rydges Canberra"	23-Jun-08 03:11 PM	

+="CN94241"	"ADVERTISING"	="Australian Competition and Consumer Commission"	23-Jun-08	="Human resources services"	19-Apr-08	19-Apr-08	21708.74	=""	="hma Blaze Pty Ltd"	23-Jun-08 03:11 PM	

+="CN94236"	"Computer services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	18-Apr-08	21-Jun-08	10360.00	=""	="ASG Group Ltd"	23-Jun-08 03:11 PM	

+="CN94243"	"Human resources services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Human resources services"	24-May-08	30-May-08	13199.59	=""	="Jane Devereux Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94244"	"Computer Services"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer services"	28-May-08	30-Jun-08	47137.70	=""	="Zallcom Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94245"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	29-May-08	30-Jul-08	12319.84	=""	="DPI Systems Pty Ltd"	23-Jun-08 03:12 PM	

+="CN94246"	"General building construction"	="Australian Competition and Consumer Commission"	23-Jun-08	="General building construction"	31-May-08	31-May-08	10294.90	=""	="Formula Interiors NSW"	23-Jun-08 03:12 PM	

+="CN94247"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	23-Jun-08	="Computer Equipment and Accessories"	21-May-08	30-Jun-08	10450.00	=""	="Dell Australia"	23-Jun-08 03:15 PM	

+="CN94249-A1"	"Computer services"	="National Competition Council"	23-Jun-08	="Computer services"	22-Oct-07	11-Feb-08	66000.00	=""	="Obsidian Consulting Group"	23-Jun-08 03:16 PM	

+="CN94248"	" Accreditation for Certificate IV in Business (Frontline Ma  nagement) "	="Australian Taxation Office"	23-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Aug-08	26400.00	="2005/014"	="Bayley & Associates Pty Ltd"	23-Jun-08 03:23 PM	

+="CN94251"	"Supply and deliver various Lifting,Recovery, Tiedown ,Equipment (LRTE) items"	="Defence Materiel Organisation"	23-Jun-08	="Lifting equipment and accessories"	28-May-08	11-Nov-08	22934.54	=""	="NOBLE A&SON Ltd"	23-Jun-08 03:26 PM	

+="CN94253-A5"	" Software maintenance payment "	="Department of Human Services"	23-Jun-08	="Software"	11-Feb-97	30-Jun-13	5870281.00	=""	="Levi, Ray, and Shoup Inc"	23-Jun-08 03:37 PM	

+="CN94254-A5"	" Lease at 13 Queen St, Yepoon QLD "	="Department of Human Services"	23-Jun-08	="Lease and rental of property or building"	23-Oct-01	31-Dec-11	1325830.30	=""	="Gabriel Family Trust"	23-Jun-08 03:40 PM	

+="CN94255-A6"	"Provision of services relating to IT architecture"	="Australian Federal Police"	23-Jun-08	="Computer services"	01-Jul-08	29-Jan-10	395599.88	="RFT 8-2007"	="Clicks Recruit Pty Ltd"	23-Jun-08 03:41 PM	

+="CN94252"	"Moby Poles with CES items"	="Defence Materiel Organisation"	23-Jun-08	="Diving instruments or accessories"	22-May-08	12-Jun-08	43934.00	=""	="BALE DEFENCE INDUSTRIES"	23-Jun-08 03:43 PM	

+="CN94257"	"Lease at 137-153 Crown St, Darlinghurst NSW"	="Centrelink"	23-Jun-08	="Real estate services"	15-Oct-03	14-Oct-08	3498680.91	=""	="Gedshill Pty. Limited"	23-Jun-08 03:46 PM	

+="CN94258-A4"	" Lease at Osbourne Park WA "	="Department of Human Services"	23-Jun-08	="Real estate services"	15-May-02	14-May-14	23163168.22	=""	="Garden Office Park Pty Ltd"	23-Jun-08 03:50 PM	

+="CN94260"	"NSN 3110-00-620-3262, Airframe Roller Bearings"	="Defence Materiel Organisation"	23-Jun-08	="Aerospace systems and components and equipment"	19-Jun-08	22-Jan-09	27172.75	=""	="Milspec Services Pty Ltd"	23-Jun-08 03:50 PM	

+="CN94262-A3"	" Lease at 39 Evans St, Sunbury VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	20-Sep-02	19-Sep-12	3023819.00	=""	="Four Two Nine Trust Pty Ltd"	23-Jun-08 03:53 PM	

+="CN94264"	" AIRCRAFT SPARES  NSN 5340-01-321-7981, CLIP SPRING, TENSION,  QTY 100 "	="Defence Materiel Organisation"	23-Jun-08	="Military transport helicopters"	23-Jun-08	21-Oct-08	15220.70	=""	="AIR'N'SEA SAFETY"	23-Jun-08 03:58 PM	

+="CN94263-A3"	" Lease at Melton, VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	26-Aug-02	25-Aug-12	3280028.04	=""	="The Melton Property Trust"	23-Jun-08 03:58 PM	

+="CN94266"	"TESTER, HYDRAULIC NSN: 4920/015436298"	="Defence Materiel Organisation"	23-Jun-08	="Military transport aircraft"	21-Jun-08	01-Oct-08	65451.00	=""	="AEROSPACE COMPOSITES PTY LTD"	23-Jun-08 04:00 PM	

+="CN94270-A3"	" Lease at Esperance, WA "	="Department of Human Services"	23-Jun-08	="Real estate services"	01-May-02	30-Apr-12	1433914.16	=""	="Lorndell Nominees Pty Ltd"	23-Jun-08 04:03 PM	

+="CN94271-A4"	"SMFFutil Software maintenance payment"	="Department of Human Services"	23-Jun-08	="Software maintenance and support"	01-Jan-09	31-Dec-20	897062.89	=""	="Ubiquity Pty Ltd"	23-Jun-08 04:03 PM	

+="CN94272"	"Lease at Gungahlin, ACT"	="Centrelink"	23-Jun-08	="Real estate services"	01-Jan-01	31-Dec-08	543428.27	=""	="Tower 720 Pty Ltd"	23-Jun-08 04:05 PM	

+="CN94275"	"Telephone Account"	="Australian Electoral Commission"	23-Jun-08	="Local and long distance telephone communications"	14-Apr-08	13-May-08	81174.12	=""	="Telstra Corporation"	23-Jun-08 04:11 PM	

+="CN94276"	"Software Maintenance"	="Australian Electoral Commission"	23-Jun-08	="Software maintenance and support"	01-May-08	30-Jun-08	20896.70	=""	="Turbosoft Pty Ltd"	23-Jun-08 04:18 PM	

+="CN94277"	"Lease at Cannington, WA"	="Centrelink"	23-Jun-08	="Real estate services"	12-Aug-02	11-Aug-09	3204727.00	=""	="Strive Pty Ltd"	23-Jun-08 04:21 PM	

+="CN94278"	"Lease at Meredith St Bankstown, NSW"	="Centrelink"	23-Jun-08	="Real estate services"	01-Sep-02	31-Aug-09	3683246.53	=""	="Meredith Projects Pty Limited"	23-Jun-08 04:22 PM	

+="CN94279"	"Computer Tapes"	="Australian Electoral Commission"	23-Jun-08	="Computer Equipment and Accessories"	28-May-08	30-Jun-08	22071.50	=""	="Tech Supplies Pty Ltd"	23-Jun-08 04:25 PM	

+="CN94280"	" Lease at Terrica Pl, Brisbane, QLD "	="Centrelink"	23-Jun-08	="Real estate services"	18-Mar-03	17-Mar-10	1993015.00	=""	="ISPT Pty Ltd"	23-Jun-08 04:28 PM	

+="CN94281-A2"	" Lease at Sorell, TAS "	="Department of Human Services"	23-Jun-08	="Real estate services"	08-Jul-02	07-Jul-12	1805230.56	=""	="Julfran Pty Ltd"	23-Jun-08 04:33 PM	

+="CN94282-A1"	"Lease at Campbelltown, NSW"	="Department of Human Services"	23-Jun-08	="Real estate services"	05-Aug-02	04-Aug-17	11243693.19	=""	="Sandran Pty Ltd"	23-Jun-08 04:34 PM	

+="CN94283-A2"	" Lease at Mt Barker, SA "	="Department of Human Services"	23-Jun-08	="Real estate services"	01-May-02	30-Apr-12	2330539.65	=""	="AJ Chappell Admin Pty Ltd 7 Phillis Holdings Pty Ltd"	23-Jun-08 04:38 PM	

+="CN94284"	" Provision of expert advice throughout the process of development and bargining for the new Centrelink Agreement "	="Centrelink"	23-Jun-08	="Management advisory services"	03-Jun-08	31-Mar-09	78000.00	=""	="Fellows Medlock & Associates Pty Ltd"	23-Jun-08 04:39 PM	

+="CN94285-A3"	" Lease at 71 Pound Rd West, Dandenong South, VIC "	="Department of Human Services"	23-Jun-08	="Real estate services"	29-Apr-02	28-Apr-14	6794943.55	=""	="Perpetual Trustee Company"	23-Jun-08 04:47 PM	

+="CN94288"	"GST compliance advice - Top up to existing contract notice CN54864 $10824 (FFMA0148) by $3179"	="Future Fund Management Agency"	23-Jun-08	="Accounting and auditing"	20-May-08	20-May-08	14003.00	=""	="Ernst & Young"	23-Jun-08 05:21 PM	

+="CN94291"	"Tie Down Cargo Vehicle and Sling Eye"	="Defence Materiel Organisation"	24-Jun-08	="Lifting equipment and accessories"	27-May-08	22-Oct-08	135452.90	=""	="Beaver Engineering Pty Ltd"	24-Jun-08 07:36 AM	

+="CN91165"	"Rental of office space, cleaning and carparking"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	01-Apr-05	31-Jul-10	12298500.00	="2005/7300"	="Doma Group T/A Colliers"	24-Jun-08 07:56 AM	

+="CN94293-A1"	"Various Truck Parts"	="Defence Materiel Organisation"	24-Jun-08	="Lifting equipment and accessories"	21-Apr-08	09-Jul-08	191827.82	=""	="Bullivants Pty Ltd"	24-Jun-08 08:02 AM	

+="CN94295"	"Rental of office space"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	26-Mar-07	31-Oct-10	1157128.40	="CCR/07/1747"	="Investa Asset Management Pty Ltd"	24-Jun-08 08:36 AM	

+="CN94296"	"Software Licences and maintenance"	="Australian Federal Police"	24-Jun-08	="Computer Equipment and Accessories"	01-Jul-08	30-Jun-09	637552.30	=""	="Hewlett - Packard Australia Pty Ltd"	24-Jun-08 08:36 AM	

+="CN94297"	"Rudder Dynamic Test Act. Assy Model 505A"	="Defence Materiel Organisation"	24-Jun-08	="Fixturing and test equipment"	08-Apr-04	01-Oct-09	77831.36	=""	="Rosebank Engineering"	24-Jun-08 08:38 AM	

+="CN94298"	"Provision of indoor plants to Departmental premises"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Live Plant and Animal Material and Accessories and Supplies"	27-May-03	26-May-08	163500.00	=""	="Living Simply"	24-Jun-08 08:42 AM	

+="CN94300"	"Menningococcal Vaccine"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	31-May-08	28-Jun-08	151250.00	=""	="GLAXOSMITHKLINE AUSTRALIA"	24-Jun-08 08:47 AM	

+="CN94299"	"UPS Upgrade - Computer Room 38 Sydney Avenue"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	15-May-07	29-Jun-07	117942.00	="CCR/07/2194"	="Eaton Powerware"	24-Jun-08 08:49 AM	

+="CN94301"	"Purchase of 925 desktop machines"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	30-Jun-05	31-Oct-05	1525370.00	="CCR/05/1299"	="IBM Global Services"	24-Jun-08 08:54 AM	

+="CN94302-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	24-Jun-08	="Project management"	23-Jun-08	04-Jul-08	17331.60	=""	="Manteena Pty Ltd"	24-Jun-08 08:56 AM	

+="CN94303"	"CEI compliance review Qtr 3 and 4"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Accounting and auditing"	07-Aug-07	30-Jun-08	24090.00	="SOT2007/0004"	="KPMG"	24-Jun-08 09:14 AM	

+="CN94304"	"PEP training for OTS staff Mar-Jun08 PEP training for OTS staff Mar-Jun08"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Community and social services"	07-Mar-08	30-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	24-Jun-08 09:14 AM	

+="CN94305"	"DITR-0801 DITR-0802"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Statistics"	21-May-08	30-Jun-08	54986.80	=""	="SCIMATRIX CONSULTING GROUP"	24-Jun-08 09:15 AM	

+="CN94306"	"Contract services for the est. Infrastructure Aust"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Public administration and finance services"	15-May-08	30-Jul-08	100000.00	=""	="Price Waterhouse Coopers"	24-Jun-08 09:15 AM	

+="CN94307"	"Contract staff at EL 1 level for 3 month"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Community and social services"	23-Jun-08	08-Aug-08	27500.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	24-Jun-08 09:15 AM	

+="CN94308"	"Contract Staff Member"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Community and social services"	24-Jun-08	31-Jul-08	11500.01	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	24-Jun-08 09:15 AM	

+="CN94309"	"Remaining Expenditure 4535"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Legal services"	23-Jun-08	31-Aug-08	13200.00	="TRS06/175"	="Clayton Utz Canberra"	24-Jun-08 09:15 AM	

+="CN94310"	"Noise Levy Collection - Sydney"	="Department of Infrastructure Transport Regional Development and Local Government"	24-Jun-08	="Management advisory services"	01-Jun-08	30-Jun-08	164658.18	=""	="AIRSERVICES AUSTRALIA"	24-Jun-08 09:16 AM	

+="CN94311-A1"	"Developing a major histrocial component on Kokoda. Enhancing the website by developing multimedia-rich content, including Virtual Tour animations; and developing an education resource on Kokoda"	="Department of Veterans' Affairs"	24-Jun-08	="Electronic reference material"	11-Jun-08	30-Jun-11	594000.00	=""	="Office of the Board of Studies (NSW)"	24-Jun-08 09:21 AM	

+="CN94312"	"Microsoft Enterprise Agreement- Year 3 Products."	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	16-Jun-08	30-Jun-08	533259.00	=""	="Kaz Group Pty Ltd"	24-Jun-08 09:21 AM	

+="CN94313"	"RSA Software Maintenance 22/05/2008-21/05/2009"	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	22-May-08	21-May-09	11030.00	=""	="Commander Intergrated Networks Pty Ltd"	24-Jun-08 09:21 AM	

+="CN94314"	"Provision of Occupational Health & Safety Services"	="Department of Veterans' Affairs"	24-Jun-08	="Management advisory services"	17-Mar-08	16-Mar-09	16700.00	=""	="Oakton Services Pty Ltd"	24-Jun-08 09:21 AM	

+="CN94315"	"Provision of Procurement Support Services"	="Department of Veterans' Affairs"	24-Jun-08	="Management advisory services"	06-Mar-08	31-Dec-08	13000.00	=""	="Perocin Pty Ltd (t/a Lange Consulting & Software)"	24-Jun-08 09:22 AM	

+="CN94316"	"Centrelink Panel IMU Contract Programmer IMU-ICT120 Work Order DVAIMU2008/018"	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	10-Jun-08	08-Aug-08	35640.00	=""	="Talent International (ACT) Pty Ltd"	24-Jun-08 09:22 AM	

+="CN94317"	"ContentKeeper Licence Renewal with 12 months support and maintenance- 01/06/2008- 31/05/2009."	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	01-Jun-08	31-May-09	30800.00	=""	="Riley Family Trust & Dirrawan Family Trust & Elimatta Family Trust"	24-Jun-08 09:22 AM	

+="CN94318"	"Provision of an audio guide service at Hellfire Pass Memorial Museum Thailand."	="Department of Veterans' Affairs"	24-Jun-08	="Communications Devices and Accessories"	20-Aug-04	31-Dec-09	29000.00	=""	="Narrowcasters Pty Ltd"	24-Jun-08 09:22 AM	

+="CN94320"	"-IntelligenceCenter Framework for 1 Device-IntelligenceCenter FrameWork upgrade additional 2 devices x 2-Premium Packeteer Software Subscription-PacketShaper 7500; Up to 200 Mbps of shaping; 102"	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	16-Jun-08	15-Jun-09	59683.00	=""	="Verizon Business Group"	24-Jun-08 09:22 AM	

+="CN94323"	"Supply of Interpretive Panels for the redevelopment of Memorial Park, Le Hamel."	="Department of Veterans' Affairs"	24-Jun-08	="Prefabricated structures"	29-May-08	01-Sep-08	34647.00	=""	="DigiGlass Australasia Pty Ltd"	24-Jun-08 09:23 AM	

+="CN94324"	"Provision of Custom ICE development"	="Department of Veterans' Affairs"	24-Jun-08	="Computer services"	21-Apr-08	31-Jul-08	41100.00	=""	="Kapish Pty Ltd"	24-Jun-08 09:23 AM	

+="CN94321-A1"	"Project Management of Capital Works - Canberra ACT"	="Australian Federal Police"	24-Jun-08	="Computer Equipment and Accessories"	08-May-08	22-Sep-08	302643.00	=""	="Manteena Pty Ltd"	24-Jun-08 09:24 AM	

+="CN94325"	" REBUILD QTY 11 PMV WHEEL ASSYS AND TYRES "	="Department of Defence"	24-Jun-08	="Vehicle maintenance and repair services"	17-Jun-08	24-Jun-08	24204.84	="31281"	="MARATHON TYRES"	24-Jun-08 09:29 AM	

+="CN94326"	" Secure internet connection for Tax Office Local Area Network "	="Australian Taxation Office"	24-Jun-08	="Professional engineering services"	24-Jun-08	23-Jun-10	37500.00	=""	="Internode Sytems Pty Ltd"	24-Jun-08 09:40 AM	

+="CN94327"	" Repair and modification of S70B Main Gearbox "	="Defence Materiel Organisation"	24-Jun-08	="Aircraft"	24-Jun-08	24-Jul-08	284431.20	=""	="Sikorsky Aircraft Australia"	24-Jun-08 09:41 AM	

+="CN94330"	"Sterilization Test Pack"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	28-Jun-08	10560.00	=""	="GKE AUSTRALIA PTY LTD"	24-Jun-08 09:59 AM	

+="CN94332-A1"	"Recruitment Services"	="Centrelink"	24-Jun-08	="Human resources services"	25-Jun-08	30-Sep-08	23400.00	="RFT07/0021"	="Regent Recruitment"	24-Jun-08 10:05 AM	

+="CN94333-A1"	"Various Pharmaceuticals"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Jun-08	11-Jul-08	17813.24	=""	="Symbion"	24-Jun-08 10:10 AM	

+="CN94334-A1"	"Recruitment Services"	="Centrelink"	24-Jun-08	="Human resources services"	01-Jul-08	30-Sep-08	46800.00	="RFT07/0021"	="Regent Recruitment"	24-Jun-08 10:13 AM	

+="CN94336"	" REPAIR FUEL TANK 2 "	="Defence Materiel Organisation"	24-Jun-08	="Aircraft"	22-Apr-08	30-Aug-08	10534.26	=""	="Australian Fuel Cells Pty Ltd"	24-Jun-08 10:23 AM	

+="CN94338"	"Sensor, Fuel Tank; Upper Level, Cable No. 44, 16KV Gen Set "	="Defence Materiel Organisation"	24-Jun-08	="Flow sensors"	23-Jun-08	06-Aug-08	13927.98	=""	="ADVANCED POWER (NSW) PTY LTD"	24-Jun-08 10:32 AM	

+="CN94340"	"Various Pharmaceuticals"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	10-Jun-08	10-Jul-08	24368.30	=""	="Symbion"	24-Jun-08 10:37 AM	

+="CN94341"	"Legal Services"	="Department of Human Services"	24-Jun-08	="Legal services"	19-Jun-08	20-Jun-08	12000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	24-Jun-08 10:41 AM	

+="CN94342"	"Rent Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-09	23745.57	="n.a"	="CANBERRA INTERNATIONAL AIRPORT PTY LTD"	24-Jun-08 10:56 AM	

+="CN94343"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	30-Jun-08	333400.00	="0"	="VOLANTE SYSTEMS PTY LTD"	24-Jun-08 10:56 AM	

+="CN94344"	"Legal Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	30-Jun-08	100000.00	="N/A"	="CLAYTON UTZ - 404925"	24-Jun-08 10:56 AM	

+="CN94345"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	01-Oct-08	3141000.00	="FIN/07/FES003"	="SAP AUSTRALIA P/L"	24-Jun-08 10:57 AM	

+="CN94346"	"Advertising & Promotion Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	4244260.90	="CN1192"	="MCCANN WORLDGROUP PTY LTD"	24-Jun-08 10:57 AM	

+="CN94347"	"Communication Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	04-Mar-08	30-Jun-11	284169.00	="RMS08/02027"	="COMMANDER AUSTRALIA LTD"	24-Jun-08 10:57 AM	

+="CN94348"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	19-May-08	18-Jun-08	40267.22	="po5181"	="INFRONT SYSTEMS PTY LTD"	24-Jun-08 10:57 AM	

+="CN94349"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	20-May-08	20-Jun-08	53212.50	="PO5131"	="INFRA CORPORATION PTY LTD"	24-Jun-08 10:57 AM	

+="CN94350"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	21-May-08	31-Jul-08	34463.00	="0"	="ZALLCOM PTY LTD"	24-Jun-08 10:57 AM	

+="CN94351"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jul-08	02-Jul-09	21749.20	="Renewal of maintenance"	="BUSINESS INFORMATION SERVICES"	24-Jun-08 10:58 AM	

+="CN94352"	"IT Communication Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	21-May-08	31-Jul-08	66175.16	="0"	="ARGENT TECHNO-RACKING PTY LTD"	24-Jun-08 10:58 AM	

+="CN94353"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:58 AM	

+="CN94354"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:58 AM	

+="CN94355"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:58 AM	

+="CN94356"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:59 AM	

+="CN94357"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:59 AM	

+="CN94358"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:59 AM	

+="CN94359"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:59 AM	

+="CN94360"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 10:59 AM	

+="CN94361"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	29-May-08	31-Jul-08	27500.00	="HP Load Runner Product Specialist"	="RPM SOLUTIONS PTY LTD"	24-Jun-08 11:00 AM	

+="CN94362"	"Office Consumables & Stationery Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Office Equipment and Accessories and Supplies"	26-May-08	20-Jun-08	10755.97	="po5228"	="CORPORATE EXPRESS AUSTRALIA LIMITED"	24-Jun-08 11:00 AM	

+="CN94363"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	20-Jun-08	10714.33	="PO5178"	="ZALLCOM PTY LTD"	24-Jun-08 11:00 AM	

+="CN94364"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-May-08	16000.00	="N/A"	="ORIGIN CONSULTING (ACT)"	24-Jun-08 11:00 AM	

+="CN94365"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	20-Jun-08	46510.20	="po5081"	="ZALLCOM PTY LTD"	24-Jun-08 11:00 AM	

+="CN94366"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	03-Apr-09	194413.70	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Jun-08 11:01 AM	

+="CN94367"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	27-May-08	30-Jul-08	25542.43	="0"	="GETRONICS AUSTRALIA PTY LTD"	24-Jun-08 11:01 AM	

+="CN94368"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Oct-08	137129.00	="FIN05CRP004-04"	="CLICKS RECUIT PTY LTD"	24-Jun-08 11:01 AM	

+="CN94369"	"Business Advisory Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	31-Jul-08	27000.00	="N/A"	="OAKTON AA SERVICES PTY LTD"	24-Jun-08 11:01 AM	

+="CN94370"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	28-May-08	30-Jun-08	35488.75	="0"	="ECOWISE SERVICES (AUSTRALIA) P/L"	24-Jun-08 11:02 AM	

+="CN94371"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	28-May-08	30-Jun-08	21601.65	="0"	="ECOWISE SERVICES (AUSTRALIA) P/L"	24-Jun-08 11:02 AM	

+="CN94372"	"Additional Construction Works"	="Department of Finance and Deregulation"	24-Jun-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	28-May-08	30-Jun-08	140000.00	="0"	="MRB COMMUNICATIONS PTY LTD"	24-Jun-08 11:02 AM	

+="CN94373"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	31-Jul-08	34375.00	="0"	="CORDWELL CONSULTING GROUP PTY LTD"	24-Jun-08 11:02 AM	

+="CN94374"	"IT Communication Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-08	30-Jun-09	165000.00	="041230 DOFA Data Transmission SOR Final Draft"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Jun-08 11:02 AM	

+="CN94375"	" IT System Development Services "	="Department of Finance and Deregulation"	24-Jun-08	="Software"	10-Jun-08	30-Jun-11	27499987.00	="FIN08AGI002"	="EDS (AUSTRALIA) PTY LTD"	24-Jun-08 11:02 AM	

+="CN94376"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	21-May-08	21-May-08	12586.75	="Kylie Gent"	="QSP ASIA PACIFIC PTY LTD"	24-Jun-08 11:03 AM	

+="CN94377"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	30-Oct-08	57440.00	=""	="ESC TECHNOLOGY"	24-Jun-08 11:03 AM	

+="CN94378"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	31-Jul-08	75000.00	=""	="ECOWISE SERVICES (AUSTRALIA) P/L"	24-Jun-08 11:03 AM	

+="CN94379"	"IT Communication Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	02-Jun-08	16-Jul-08	29605.10	="0"	="DEPT OF THE PRIME MINISTER & CABINET"	24-Jun-08 11:03 AM	

+="CN94380"	"Security Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-Jul-08	31-Dec-11	365475.00	="RFT FIN06/CORP003"	="CHUBB PROTECTIVE SERVICES"	24-Jun-08 11:03 AM	

+="CN94381"	"Security Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	01-Jul-08	31-Dec-11	384525.00	="RFT FIN06/CORP003"	="CHUBB PROTECTIVE SERVICES"	24-Jun-08 11:04 AM	

+="CN94382-A1"	"Cleaning Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Cleaning and janitorial services"	01-Jul-08	30-Jun-09	22862.00	="FIN08/CAPS007"	="COMPLETE CLEANING SERVICE"	24-Jun-08 11:04 AM	

+="CN94383"	"Cleaning Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Cleaning Equipment and Supplies"	01-Jul-08	30-Jun-09	10500.00	="0"	="COMPLETE CLEANING SERVICE"	24-Jun-08 11:04 AM	

+="CN94384"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	27-Jun-08	11000.00	="FIN05 CRP004-35"	="OAKTON AA SERVICES PTY LTD"	24-Jun-08 11:04 AM	

+="CN94386"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	14-Nov-08	157410.00	="N/A"	="ACUMEN CONTRACTING & RECRUITMENT PTY LTD"	24-Jun-08 11:04 AM	

+="CN94387"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Aug-08	34632.00	="n/a"	="HAYS PERSONNEL SERVICES"	24-Jun-08 11:05 AM	

+="CN94388"	"Legal Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	31-Dec-08	29523.00	="n/a"	="BLAKE DAWSON - ACT"	24-Jun-08 11:05 AM	

+="CN94389"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	77000.00	="CSB98/00067"	="MICROSOFT PTY LIMITED"	24-Jun-08 11:05 AM	

+="CN94390"	"OHS & Medical Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Healthcare Services"	01-Apr-08	27-Jun-08	10348.50	=""	="CORPORATE MEDICAL OPTIONS"	24-Jun-08 11:06 AM	

+="CN94391"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	29-Aug-08	49663.00	="n/a"	="HAYS PERSONNEL SERVICES"	24-Jun-08 11:06 AM	

+="CN94392"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	26-Dec-08	75801.60	="n/a"	="HAYS PERSONNEL SERVICES"	24-Jun-08 11:06 AM	

+="CN94393"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	12-Dec-08	72864.00	="n/a"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Jun-08 11:06 AM	

+="CN94394"	"Peer Review"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	31-Jul-08	46920.00	="n/a"	="STAMFORD INTERACTIVE PTY LTD"	24-Jun-08 11:07 AM	

+="CN94395"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	05-May-08	05-Aug-08	27456.00	="N/A"	="PCA PEOPLE PTY LTD"	24-Jun-08 11:07 AM	

+="CN94396"	"Business Advisory Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	11-Aug-08	62700.00	="0000000000000000000"	="SMS CONSULTING"	24-Jun-08 11:07 AM	

+="CN94397"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Apr-09	60000.00	="N/A"	="OPC IT PTY LTD"	24-Jun-08 11:07 AM	

+="CN94398"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	07-Jun-08	31-Dec-08	221000.00	="FIN 05 CRP 004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Jun-08 11:07 AM	

+="CN94399"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Sep-08	14202.00	="n/a"	="HAYS PERSONNEL SERVICES"	24-Jun-08 11:07 AM	

+="CN94400"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Sep-08	40939.00	="n/a"	="HAYS PERSONNEL SERVICES"	24-Jun-08 11:08 AM	

+="CN94401"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	10-Jun-08	10-Jul-08	11583.00	="PR5214"	="DELL COMPUTER PTY LIMITED"	24-Jun-08 11:08 AM	

+="CN94402"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	18-Jul-08	16000.00	="SON167"	="CORDELTA PTY LTD"	24-Jun-08 11:08 AM	

+="CN94403"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	11-Jun-08	31-Jul-08	42570.72	="0"	="GETRONICS AUSTRALIA PTY LTD"	24-Jun-08 11:08 AM	

+="CN94404"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	11-Jun-08	30-Jun-08	13168.68	="FIN 06 FES 002"	="ZALLCOM PTY LTD"	24-Jun-08 11:08 AM	

+="CN94405"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	11-Jun-08	30-Jun-08	18013.71	="FIN 06 FES 002"	="ZALLCOM PTY LTD"	24-Jun-08 11:09 AM	

+="CN94406"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-08	79107.78	="FIN 06 FES 002"	="KAZ GROUP PTY LTD"	24-Jun-08 11:09 AM	

+="CN94408"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-08	441806.68	="0"	="KAZ GROUP PTY LTD"	24-Jun-08 11:09 AM	

+="CN94409"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Sep-08	42137.89	="N/A"	="CENTRELINK"	24-Jun-08 11:09 AM	

+="CN94410"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	06-Aug-08	27456.00	="APSC Panel"	="PCA PEOPLE PTY LTD"	24-Jun-08 11:10 AM	

+="CN94411"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	24-Dec-08	86000.00	="FIN 05CRP004-21"	="KOBOLD GROUP LTD"	24-Jun-08 11:10 AM	

+="CN94412"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	19100.00	=""	="CORDWELL CONSULTING GROUP PTY LTD"	24-Jun-08 11:10 AM	

+="CN94413"	"Communication Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	39644.00	="0"	="ECOWISE SERVICES (AUSTRALIA) P/L"	24-Jun-08 11:10 AM	

+="CN94407"	"Centrelink Agent - Ivanhoe, NSW "	="Centrelink"	24-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	19905.07	=""	="Murdi Paaki Regional Enterprise LTD"	24-Jun-08 11:10 AM	

+="CN94414"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	31-Jan-09	60924.00	="n/a"	="WIZARD PERSONNEL & OFFICE SERVICES"	24-Jun-08 11:10 AM	

+="CN94415"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	05-Dec-08	50000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jun-08 11:10 AM	

+="CN94416"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	26-Jun-09	182000.00	="FIN05CRP004-37"	="CLARIUS GROUP LIMITED"	24-Jun-08 11:11 AM	

+="CN94417"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	19-Dec-08	143060.00	="0000000000000"	="COLLECTIVE RESOURCES IT RECRUITMENT"	24-Jun-08 11:11 AM	

+="CN94418"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Sep-08	18700.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jun-08 11:11 AM	

+="CN94419"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Sep-08	18700.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jun-08 11:11 AM	

+="CN94420"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Sep-08	18700.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	24-Jun-08 11:11 AM	

+="CN94421"	"IT System Development Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	31-Jul-08	79500.00	="n/a"	="OAKTON AA SERVICES PTY LTD"	24-Jun-08 11:11 AM	

+="CN94423"	"Property Management Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	110652.10	="0"	="UNITED GROUP SERVICES - 559472295"	24-Jun-08 11:11 AM	

+="CN94424"	"IT Contract Management Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	20-Jun-08	30-Jun-08	10989.00	="FESG"	="PRICEWATERHOUSECOOPERS- 833468126"	24-Jun-08 11:12 AM	

+="CN94426"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	16-Dec-08	45000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 11:12 AM	

+="CN94427"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	16-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 11:12 AM	

+="CN94428"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	16-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 11:12 AM	

+="CN94429"	"Contractor Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Dec-08	45000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Jun-08 11:12 AM	

+="CN94430"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Feb-05	18-Feb-05	12945.00	=""	="FLIGHT CENTRE (MILTON)"	24-Jun-08 11:13 AM	

+="CN94431"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Feb-05	18-Feb-05	12945.00	=""	="FLIGHT CENTRE (MILTON)"	24-Jun-08 11:13 AM	

+="CN94432"	"Training & Education Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Education and Training Services"	01-Mar-05	28-Feb-08	15326.49	="n/a"	="THE NOUS GROUP"	24-Jun-08 11:13 AM	

+="CN94433"	"Travel - Accommodation Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	27-May-05	01-Jun-05	13227.88	=""	="PNG INCENTIVE FUND & ADVISORY SUPPORT FA"	24-Jun-08 11:13 AM	

+="CN94434"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Jun-08	18000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	24-Jun-08 11:13 AM	

+="CN94435"	"Probity Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	31-Dec-08	33609.65	="NA because pre-1/1/05"	="DELOITTE TOUCHE TOHMATSU - ACT"	24-Jun-08 11:13 AM	

+="CN94436"	"Valuation Services"	="Department of Finance and Deregulation"	24-Jun-08	="Financial and Insurance Services"	27-Feb-08	30-Jun-08	11000.00	=""	="HERRON TODD WHITE (SYDNEY/ACT &SE NSW) P"	24-Jun-08 11:14 AM	

+="CN94437"	"Probity Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	47500.00	="SON144"	="BLAKE DAWSON - ACT"	24-Jun-08 11:14 AM	

+="CN94438"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	60150.00	="FIN 05CRP004-09"	="CPT GLOBAL LIMITED"	24-Jun-08 11:14 AM	

+="CN94439"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Education and Training Services"	02-Jun-08	30-Jun-08	79250.00	=""	="CENTRE FOR INTERNATIONAL ECONOMICS"	24-Jun-08 11:14 AM	

+="CN94440"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	13-Jun-08	13250.00	="N/A"	="SPHERE CONSULTING PTY LTD"	24-Jun-08 11:14 AM	

+="CN94441"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	30-Jun-08	79500.00	=""	="LATERAL ECONOMICS"	24-Jun-08 11:15 AM	

+="CN94442"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	30000.00	="FIN07/FeSG010"	="DELOITTE TOUCHE TOHMATSU - ACT"	24-Jun-08 11:15 AM	

+="CN94443"	"Probity Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	31-Jan-09	14650.00	="N/A"	="PSI CONSULTING PTY LTD"	24-Jun-08 11:15 AM	

+="CN94444"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	27-Jun-08	24000.00	="N/A"	="ADVISE CONSULTING PTY LTD"	24-Jun-08 11:15 AM	

+="CN94445"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	31-Jul-08	30200.00	="n/a"	="UNIVERSITY OF NEW SOUTH WALES"	24-Jun-08 11:15 AM	

+="CN94446"	"Market Research Advisory Services"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	01-Aug-08	77712.00	="000000000"	="COLMAR BRUNTON SOCIAL RESEARCH"	24-Jun-08 11:16 AM	

+="CN94447"	"Legal Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Jun-08	63000.00	="SON144"	="BLAKE DAWSON - ACT"	24-Jun-08 11:16 AM	

+="CN94448"	"Consultancy Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	31122.87	="LSB01/2005"	="DLA PHILLIPS FOX LAWYERS"	24-Jun-08 11:16 AM	

+="CN94449"	"Legal Costs"	="Department of Finance and Deregulation"	24-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	31-Dec-08	48000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	24-Jun-08 11:16 AM	

+="CN94450"	" REMOVE, REBUILD AND REFIT ENGINE IN INTERNATIONAL FUEL TRUCK "	="Department of Defence"	24-Jun-08	="Tankers"	24-Jun-08	27-Jun-08	24638.68	=""	="FIA INDUSTRIES"	24-Jun-08 11:24 AM	

+="CN94451"	"Ear Plugs"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	03-Jun-08	03-Jul-08	16016.00	=""	="PROTECTOR ALSAFE"	24-Jun-08 11:32 AM	

+="CN94452"	"Supply of Scanners and ancillary products"	="Australian Securities and Investments Commission"	24-Jun-08	="Office machines and their supplies and accessories"	21-Jan-08	21-Jan-08	15858.80	=""	="Global 360 Australia Pty Ltd"	24-Jun-08 11:38 AM	

+="CN94454"	"M113 UPGRADE PARTS"	="Department of Defence"	24-Jun-08	="Armoured fighting vehicles"	24-Apr-08	23-Aug-08	21515.40	=""	="TENIX ADELAIDE"	24-Jun-08 11:46 AM	

+="CN94455"	"Supply of printer and ancillary products"	="Australian Securities and Investments Commission"	24-Jun-08	="Computer printers"	15-Nov-07	15-Nov-07	14005.06	=""	="Commander Integrated Networks Ltd"	24-Jun-08 11:46 AM	

+="CN94457"	"Provision of IT security management services"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	10-Sep-07	30-Nov-07	52272.00	=""	="Shearwater Solutions"	24-Jun-08 11:59 AM	

+="CN94458"	"Provision of IT Security Management Services"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	01-May-08	30-Jun-08	36300.00	=""	="Shearwater Solutions Pty Ltd"	24-Jun-08 12:04 PM	

+="CN94459"	"Supply of Cisco Catalyst equipment"	="Australian Federal Police"	24-Jun-08	="Computer Equipment and Accessories"	16-Jun-08	30-Jun-08	100564.99	="RFT 56-2007"	="Dimension Data Australia Pty Limited"	24-Jun-08 12:05 PM	

+="CN94460"	"Legal Services - advice re: possible litigation"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	28-Sep-07	10-Apr-08	87400.00	=""	="O'Bryan, Norman"	24-Jun-08 12:08 PM	

+="CN94461"	"Legal Services - Counsel"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	01-Aug-07	31-Dec-07	87400.00	=""	="O'Bryan, Norman J."	24-Jun-08 12:12 PM	

+="CN94462"	"Software Licences and maintenance"	="Australian Federal Police"	24-Jun-08	="Computer Equipment and Accessories"	01-Dec-07	28-Feb-09	18362.98	=""	="Hewlett - Packard Australia Pty Ltd"	24-Jun-08 12:24 PM	

+="CN94463"	"Provision of System Support Officer"	="Family Court of Australia"	24-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	54912.00	=""	="Verossity Pty Ltd"	24-Jun-08 12:26 PM	

+="CN94464"	"Veritas Netbackup 6.5 Licenses and Installation"	="Australian Securities and Investments Commission"	24-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-May-08	45412.73	=""	="Sun Microsystems Australia Pty Ltd"	24-Jun-08 12:38 PM	

+="CN94465"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	25-Aug-07	26-Feb-08	82613.00	=""	="Dragon House Consultants Pty Ltd"	24-Jun-08 12:42 PM	

+="CN94467"	"Contract for the provision of Information Technology Services - Analyst Programmer"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	29-Sep-07	28-Mar-08	68500.00	=""	="Bosphorous Enterprises Pty Ltd"	24-Jun-08 12:46 PM	

+="CN94469"	"External Training"	="Centrelink"	24-Jun-08	="Specialised educational services"	16-Jun-08	19-Jun-08	15600.00	=""	="Software Education Aust Pty Ltd"	24-Jun-08 01:01 PM	

+="CN94470"	" M113 UPGRADE PROJECT "	="Department of Defence"	24-Jun-08	="Armoured fighting vehicles"	21-Jun-08	20-Sep-08	15395.60	=""	="A AND D INTERNATIONAL PTY LTD"	24-Jun-08 01:13 PM	

+="CN94475"	"Managed Services"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-09	721130.10	="DCON/03/63"	="Kaz Group Pty Ltd"	24-Jun-08 01:38 PM	

+="CN94476"	"Contract for the provision of Information Technology Services - Project Analyst programmer"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	20-Oct-07	09-May-08	74000.00	=""	="Millenium Consulting Company Pty Ltd"	24-Jun-08 01:41 PM	

+="CN94478"	"Legal Services - Counsel Fees"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	24-Jan-08	30-Jun-08	63400.00	=""	="McNally, Gregory"	24-Jun-08 01:47 PM	

+="CN94480"	"Medical consumables"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	18-Apr-08	21-May-08	18136.99	=""	="AAXIS PACIFIC"	24-Jun-08 01:55 PM	

+="CN94481"	"As per quote:165385 provide to the Bureau a reprint job for the State of the Forests Report."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	16-Jun-08	30-Jun-08	18601.00	=""	="National Capital Printing"	24-Jun-08 01:56 PM	

+="CN94482"	"Legal Advice - USA Apples"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Legal services"	28-May-08	30-Jun-09	40000.00	=""	="Minter Ellison Lawyers"	24-Jun-08 01:56 PM	

+="CN94483-A1"	"Legal Advice - Indian Mangoes"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Legal services"	28-May-08	30-Jun-09	15000.00	=""	="Minter Ellison Lawyers"	24-Jun-08 01:56 PM	

+="CN94484"	"Design and facilitation of PIAPH Staff Planning Day on 9 May 2008. Includes preliminary work and post planning day debrief and development of charts and templates."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	16-Apr-08	16-May-08	15582.00	=""	="Now for Future Pty Ltd"	24-Jun-08 01:57 PM	

+="CN94485"	"Business Planning Conference-Venue Hire & Accommodation"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	05-Jun-08	11087.00	=""	="Coolangatta Estate"	24-Jun-08 01:57 PM	

+="CN94486"	"Contract for Lauren Aynsley"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	02-Jun-08	02-Sep-08	22250.00	=""	="Careers Unlimited"	24-Jun-08 01:57 PM	

+="CN94487"	"Development of contingency plans for species of fruit flies (Tephritidae)of economic importance."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	28-Jun-08	18000.00	=""	="Kalang Consultancy Services"	24-Jun-08 01:57 PM	

+="CN94488"	"Furniture and fittings for Compliance"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Furniture and Furnishings"	04-Jun-08	31-Jul-08	10174.00	=""	="EMPIRE BUSINESS FURNITURE"	24-Jun-08 01:57 PM	

+="CN94489"	"Production of a diagnostic protocol for Western X phytoplasma including an informative photo gallery."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	31-Mar-08	31-Dec-08	13200.00	=""	="Agriculture Victoria Services"	24-Jun-08 01:57 PM	

+="CN94490"	"Validation and Verification of five diagnostic standards for application within Australia in accordance with SPHDS reference standard No. 3"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-May-08	30-Jun-08	11000.00	=""	="South Australian Research and Development Institute"	24-Jun-08 01:58 PM	

+="CN94491-A1"	"Undertake research into the generation of surface material - soil attribute maps based on the data from the Honeysuckle Creek airborne geophysics (electromagnetic & radiometric) surveys."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	12-Nov-07	30-Jun-08	129800.00	=""	="Commonwealth Scientific & Industrial Research Organisation"	24-Jun-08 01:58 PM	

+="CN94492"	"Production of a diagnostic protocol for detecting Candidatus phytoplasma prunorum including an informative photo gallery."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	31-Mar-08	31-Dec-08	13200.00	=""	="Agriculture Victoria Services"	24-Jun-08 01:58 PM	

+="CN94493"	"Technical Services for Adelaide National Conf"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	13-Jun-08	15000.00	=""	="Adelaide Convention Centre"	24-Jun-08 01:58 PM	

+="CN94494"	"Validation of a diagnostic protocol for detecting Candidatus phytoplasma prunorum."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	31-Mar-08	31-Dec-08	13200.00	=""	="Agriculture Victoria Services"	24-Jun-08 01:58 PM	

+="CN94495"	"Supply to the Bureau FME Server Edition and FME ESRI Edition software for spatial data processing, together with maintenance support."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	29-May-08	30-Jun-08	50317.30	=""	="Pitney Bowes MapInfo Australia Pty Ltd"	24-Jun-08 01:58 PM	

+="CN94496"	"Adaptive Capacity Project - Provision of ABS Data."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	09-May-08	30-Jun-08	53571.35	=""	="Australian Bureau of Statistics"	24-Jun-08 01:59 PM	

+="CN94499"	"Consolidation of diagnostic tools, protocols and processes used in Australia and some other countries to identify and diagnose fruit fly species."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	06-May-08	15-Jun-08	17700.00	=""	="Paul Ferrar"	24-Jun-08 01:59 PM	

+="CN94497"	"Temporary Recruitment"	="Australian Securities and Investments Commission"	24-Jun-08	="Temporary personnel services"	08-May-08	30-Jun-08	26363.82	=""	="Robert Walters"	24-Jun-08 01:59 PM	

+="CN94500"	"Catalyst Consulting, in conjunction with state farming organisations and grain industry representative bodies will organise and coordinate the development of wheat marketing information workshops in WA, SA, NSW, QLD and Victoria"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	02-Jun-08	28-Jul-08	22000.00	=""	="Catalyst Consulting"	24-Jun-08 01:59 PM	

+="CN94501"	"Patricks Port Botany and P&O Port Botany contract staff"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	01-Apr-08	30-Jun-08	199000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	24-Jun-08 02:00 PM	

+="CN94502"	"Levies Support May 2008"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	01-May-08	31-May-08	13650.00	=""	="Aladn System Solutions Pty Ltd"	24-Jun-08 02:00 PM	

+="CN94503"	"Develop for the Bureau an excel model to estimate the potential environmental & economic impacts of various greenhouse gas mitigation stratgies for Australian farmers"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	30-Jun-08	53900.00	=""	="Access Economics Pty Ltd"	24-Jun-08 02:00 PM	

+="CN94504"	"Supply of office furniture"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Building and Construction and Maintenance Services"	11-Jun-08	31-Jul-08	10174.00	=""	="Empire Business Furniture"	24-Jun-08 02:00 PM	

+="CN94505"	"Extension to BDL Modification QQ200559"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	01-Feb-08	29-Feb-08	14355.00	=""	="QSP Asia Pacific Pty Ltd"	24-Jun-08 02:00 PM	

+="CN94506"	"Advertising in Public Notices & Early General News in various newspapers"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Marketing and distribution"	10-Jun-08	30-Jun-08	24555.78	=""	="hma Blaze"	24-Jun-08 02:00 PM	

+="CN94507"	"Gel Documentation System"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Office machines and their supplies and accessories"	13-Jun-08	31-Jul-08	14850.00	=""	="Bio-Rad Laboratories"	24-Jun-08 02:01 PM	

+="CN94508"	"Establishment of a nationally agreed standard for fruit fly diagnostics"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-Jun-08	19-Jun-08	40700.00	=""	="Plant Health Australia"	24-Jun-08 02:01 PM	

+="CN94509-A1"	"Purchase media for Quarantine Matters campaign."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Marketing and distribution"	01-Jul-08	28-Jun-09	958357.46	=""	="Universal McCann"	24-Jun-08 02:01 PM	

+="CN94510"	"Detector Dog Courier Service for month of May 2008"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	31-May-08	10137.00	=""	="It's a Dogs Life Boarding & Breeding Kennels"	24-Jun-08 02:01 PM	

+="CN94511"	"Civic building electrical chgs"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Furniture and Furnishings"	01-Jan-08	30-Jun-08	16500.00	=""	="Webb Australia"	24-Jun-08 02:01 PM	

+="CN94512"	"Providing Conference Venue for SPRFMO"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Dec-08	30187.50	=""	="Rydges Lakeside"	24-Jun-08 02:01 PM	

+="CN94513-A1"	"Provide to the Bureau a Computer Assisted Phone Interview (CATI) survey and dataset statistical pack for social sciences."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	17-Jun-08	30-Jun-08	33000.00	=""	="Ekas Marketing and Research Services"	24-Jun-08 02:02 PM	

+="CN94514"	"CDM SharePoint"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	09-Jun-08	17-Jul-08	38400.00	=""	="Communication Design & Management Pty Ltd"	24-Jun-08 02:02 PM	

+="CN94516"	"DAFF-ICON Annual Levy Operational"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	16-Oct-07	17-Oct-08	22000.00	=""	="Department of Finance and Administration"	24-Jun-08 02:02 PM	

+="CN94517-A1"	"Provide input into project 'Testing the feasibility of creating an Adaptive Capacity Index using ABS data'"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-Apr-08	31-Aug-08	60000.00	=""	="CSIRO Sustainable Ecosystems"	24-Jun-08 02:02 PM	

+="CN94518"	"Helicopter charter for varroa mite surveillance actvity"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Transportation and Storage and Mail Services"	17-Jun-08	19-Jun-08	12654.00	=""	="Australian Helicopters"	24-Jun-08 02:02 PM	

+="CN94519"	"NRAC Tour charter Stanthorp to Sydney"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Passenger transport"	01-Jun-08	30-Jun-08	10989.00	=""	="Hawker Pacific Aircraft cCarter"	24-Jun-08 02:03 PM	

+="CN94520"	"Consultancy services in relation to furthering the AAWS."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-May-08	31-Aug-08	39600.00	=""	="LDHT Pty Ltd"	24-Jun-08 02:03 PM	

+="CN94515"	"Centrelink Agent - Burringurrah, WA"	="Centrelink"	24-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Burringurrah Community Aboriginal Corporation"	24-Jun-08 02:03 PM	

+="CN94521"	"Contract staff Sydney Gateway Facility Clyde May-June 2008"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	25-May-08	30-Jun-08	140000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	24-Jun-08 02:03 PM	

+="CN94522-A1"	"Provide a workplan for the assessment of the impact of climate change on the nature and frequency of exceptional climatic events."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	30-May-08	31-Jul-08	149414.10	=""	="Bureau of Meteorology"	24-Jun-08 02:03 PM	

+="CN94523-A1"	"Provide to the Bureau model-data synthesis and the interpretation of remotely sourced data for the assessment of future vulnerability to climate change."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	15-Jun-08	01-Jun-09	165000.00	=""	="Commonwealth Scientific & Industrial Research Organisation"	24-Jun-08 02:03 PM	

+="CN94524"	"Undertaking the review of the Livestock Export Standards Advisory Committee."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	19-May-08	30-Jun-08	19800.00	=""	="Bruce Gemmell"	24-Jun-08 02:03 PM	

+="CN94525"	"Development of a manual of systems, procedures and protocols required for remote microscopy."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	15-Jun-08	30-Jun-08	19250.00	=""	="Cooperative Research Centre for National Plant Biosecurity"	24-Jun-08 02:04 PM	

+="CN94526"	"For the provision of fumigator accreditation assessments and treatment provider registration assessments in Papua New Guinea from June 3-12, 2008."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	13-Jun-08	50000.00	=""	="Pest Australia Pty Ltd"	24-Jun-08 02:04 PM	

+="CN94527"	"Purchase of Quarantine Top Watch! caps for Northern Australian Quarantine Strategy ."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	19-Mar-08	31-Aug-08	19800.00	=""	="National Promotions"	24-Jun-08 02:04 PM	

+="CN94529"	"Production of a diagnostic protocol for Sugarcane whiteleaf phytoplasma including an informative photo gallery."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	31-Mar-08	31-Dec-08	13200.00	=""	="Agriculture Victoria Services"	24-Jun-08 02:04 PM	

+="CN94531"	"Staff Housing- 16 Langley Gardens, Pt. Hedland, WA 6721."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Personal and Domestic Services"	01-Jul-08	30-Jun-09	66300.00	=""	="Department of Agriculture and Food"	24-Jun-08 02:05 PM	

+="CN94532"	"ID card printer"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="General building construction"	01-Jan-08	30-Jun-08	10901.00	=""	="id Warehouse"	24-Jun-08 02:05 PM	

+="CN94533"	"Civic building costs"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Furniture and Furnishings"	01-Jan-08	30-Jun-08	16794.80	=""	="Woods Bagot"	24-Jun-08 02:05 PM	

+="CN94534"	"Legal Advice and assistance"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Legal services"	07-Jan-08	16-Jun-08	55000.00	=""	="Mallesons Stephen Jaques"	24-Jun-08 02:05 PM	

+="CN94536"	"Delivery and Supply of 3000 Reams Australian Recyled paper to the Copy Centre"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Paper materials"	18-Jun-08	25-Jun-08	14355.00	=""	="Corporate Express Australia"	24-Jun-08 02:06 PM	

+="CN94528"	"Contract for the provision of research services into consumer and investor experiences with internal dispute by financial services providers."	="Australian Securities and Investments Commission"	24-Jun-08	="Temporary research and development services"	13-Jun-08	30-Jun-08	12220.00	=""	="Cudex Pty Ltd (T/A Newspoll Market Research)"	24-Jun-08 02:06 PM	

+="CN94537"	"Provide to the Bureau Hummingbird Exceed upgrade from v10 to exceed v13, including 12 months maintenance."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	19-Jun-08	30-Jun-08	30747.55	=""	="Open Systems Australia"	24-Jun-08 02:06 PM	

+="CN94538"	"messaging system for marcus clarke and london circuit building"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	13-May-08	30-Jun-08	35292.40	=""	="GPT Designs"	24-Jun-08 02:06 PM	

+="CN94539-A1"	"Delivery of River Murray Corridor products and integrated report addressing salinity and land management issues."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	09-Jun-08	30-Jun-08	100100.00	=""	="Geoscience Australia"	24-Jun-08 02:06 PM	

+="CN94540"	"The Bureau to provide sponsorship of "Hot Innovation" and "Resilience Event" towards the 2008 Science Festival"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	29-Aug-08	33000.00	=""	="Australian Science Festival"	24-Jun-08 02:06 PM	

+="CN94541"	"Provide services relating to provision of a Microsoft Word template and User Guide Development and Maintenance for the Bureau's reporting tool template."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	20-Jun-08	30-Jun-08	14850.00	=""	="Calamia Enterprises Pty Ltd"	24-Jun-08 02:06 PM	

+="CN94542"	"Australian engagement on the Bureau for the eighth session of the United Nations Forum on Forests"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	30-Jan-08	30-Jun-09	70000.00	=""	="Dr Glen Ashley Kile"	24-Jun-08 02:07 PM	

+="CN94543"	"Legal Advice- China Apples"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Legal services"	28-May-08	30-Jun-09	40000.00	=""	="Minter Ellison Lawyers"	24-Jun-08 02:07 PM	

+="CN94544"	"TRIM Context Software Annual Maintenance to 31/12/08"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	01-Jul-08	31-Dec-08	12051.39	=""	="Icognition Pty Ltd"	24-Jun-08 02:07 PM	

+="CN94545"	"AQIS Quarantine Matters caps"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	03-Jun-08	30-Jun-08	14025.00	=""	="Wompro"	24-Jun-08 02:07 PM	

+="CN94547"	"Production of diagnostic images of exotic plant pests from the priority  list  - project  2"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	05-Jun-08	25-Jun-08	49000.00	=""	="Museums Board of Victoria"	24-Jun-08 02:08 PM	

+="CN94548-A1"	"Closed - Provision of contract staff for Import Clearance at Fish Island"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	06-Jun-08	31-Mar-09	500000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	24-Jun-08 02:08 PM	

+="CN94549"	"AAPT call costs for May 08"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	01-May-08	31-May-08	21385.28	=""	="AAPT"	24-Jun-08 02:08 PM	

+="CN94550"	"AQIS airport quarantine bins tip for July 08 to June 09."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Building and Construction and Maintenance Services"	01-Jul-08	30-Jun-09	24000.00	=""	="CLEANAWAY"	24-Jun-08 02:08 PM	

+="CN94551-A1"	"Contribute to plan and develop sugar region typology communication materials with integrated assessment of the research data and production of the updates for the evaluation of Sugar Industry Reform Package."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	31-Oct-08	120000.00	=""	="River Consulting"	24-Jun-08 02:08 PM	

+="CN94552"	"System administration services"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	01-May-08	30-Sep-08	55000.00	=""	="Dialog Information technology"	24-Jun-08 02:08 PM	

+="CN94553-A1"	"Anual Maintenance and rental for mobilex Government"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	01-Jul-08	30-Jun-09	11880.00	=""	="Random Computing Services Pty Ltd"	24-Jun-08 02:09 PM	

+="CN94554"	"Rent for Office & Lab Space"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="General building construction"	28-Jun-08	31-Dec-08	34808.13	=""	="James Cook University"	24-Jun-08 02:09 PM	

+="CN94555"	"Provide to the Bureau IBM Rational Policy Tester Accessibility Edition Resource Value Unit licence together with subscription and support"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	16-Jun-08	30-Jun-08	14403.71	=""	="Hyro Limited"	24-Jun-08 02:09 PM	

+="CN94556"	"Testing for the effective use of fixative treatments on the viability and integrity of selected bacterial and fungal patterns."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	03-Jun-08	30-Jun-08	45000.00	=""	="Department of Primary Industries and Fisheries Queensland"	24-Jun-08 02:09 PM	

+="CN94557"	"Handheld Radios with Antenna & Repeater"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Furniture and Furnishings"	19-Jun-08	31-Jul-08	17112.26	=""	="Commex Communications Corporation Pty Ltd"	24-Jun-08 02:09 PM	

+="CN94558-A1"	"Writing and editing web content for the AAWS website."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	16-Apr-08	30-Jun-08	43060.00	=""	="Parisfirst Partners Pty Ltd"	24-Jun-08 02:10 PM	

+="CN94560"	"Logistical arrangements and delivery of Standard Pest and Weed Risk Analysis Workshop (Brunei Darussalam, 26-31 May 2008)."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-May-08	30-Jun-08	70982.50	=""	="ASEANET, The South East Asian LOOP of BioNET International"	24-Jun-08 02:10 PM	

+="CN94561"	"Contractor Michael Young 19/5/08 - 30/5/08"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	19-May-08	30-May-08	11973.50	=""	="Transformed Pty Ltd"	24-Jun-08 02:10 PM	

+="CN94562"	"Provision of workstation assessments for MS and CPD staff."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Comprehensive health services"	01-Apr-08	30-Jun-08	30000.00	=""	="Konekt"	24-Jun-08 02:10 PM	

+="CN94564"	"Printing od Australian Food Statistics 2007"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	30-May-08	30-Jun-08	22037.40	=""	="New Millenium Printing"	24-Jun-08 02:10 PM	

+="CN94566"	"Rental of office space for State Landcare Coordinator NT"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	01-Jul-07	30-Jun-08	17600.23	=""	="NT Cattlemens Association Inc"	24-Jun-08 02:11 PM	

+="CN94567"	"Aircraft charter for Papua New Guinea"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Transportation and Storage and Mail Services"	16-Jun-08	01-Jul-08	40000.00	=""	="Cape York Airlines Pty Ltd"	24-Jun-08 02:11 PM	

+="CN94568"	"Dairy Development May 2008"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	01-May-08	31-May-08	29700.00	=""	="Aladn System Solutions Pty Ltd"	24-Jun-08 02:11 PM	

+="CN94569"	"Supply to the Bureau Jboss Enterprise Application platform & 3 year standard subscription together with Application Service for Administrators training"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	02-Jun-08	30-Jun-08	46156.00	=""	="Red Hat Asia Pacific Pty Ltd"	24-Jun-08 02:12 PM	

+="CN94570"	"Contract Baggage Handler for July 08 to June 09."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	01-Jul-08	30-Jun-09	48000.00	=""	="WORKFORCE INTERNATIONAL PTY LTD"	24-Jun-08 02:12 PM	

+="CN94571-A1"	"Participation in the Datasets and Data Infrastructure to Support National Water Quality Statistical Analysis and Reporting Tool Project through: Provision of information on regional and State water quality guideline targets; Provision of example data"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	10-Jun-08	30-Jun-08	60000.00	=""	="Victorian Department of Sustainability and Environment"	24-Jun-08 02:12 PM	

+="CN94563"	"Various Pharmaceuticals"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Jun-08	09-Jul-08	15604.71	=""	="Symbion"	24-Jun-08 02:12 PM	

+="CN94572"	"Provide to the Bureau services to identify key national stakeholders and consult them about biosecurity outcomes and horticultural landholders' biosecurity attitudes and practices concerned with the surveillance and control of exotic pests."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	30-Jun-08	33000.00	=""	="Rural Development Services"	24-Jun-08 02:12 PM	

+="CN94573"	"Printing Costs for updated Incoming Passenger Cards for Didymo specific questions"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	01-Jun-08	10-Jun-08	27017.96	=""	="Department of Immigration and Citizenship"	24-Jun-08 02:13 PM	

+="CN94574"	"NAQS caps - additional 7000 order"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	11-Jun-08	31-Aug-08	23668.99	=""	="National Promotions"	24-Jun-08 02:13 PM	

+="CN94575"	"Quarantine Waste Collection Service."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	38199.02	=""	="Fremantle Ports"	24-Jun-08 02:13 PM	

+="CN94576-A1"	"To assisst NRS staff to prepare NRS Annual Report and Brochure for 2007-2008 and undertake annual review of NRS website."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	10-Jun-08	31-Dec-08	64000.00	=""	="Sally Berridge Communication Consultancy"	24-Jun-08 02:13 PM	

+="CN94577-A1"	"Provision of an active web client to present results of the WFS queries from AWDI."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	23-May-08	30-Jun-08	25000.00	=""	="SA Department of Water, Land and Biodiversity Conservation"	24-Jun-08 02:13 PM	

+="CN94578-A2"	"IT Security Audit"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-May-08	30-Jun-08	33000.00	=""	="Oakton Services Pty Limited"	24-Jun-08 02:13 PM	

+="CN94579"	"DAFF-ICON annual levy administered"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Telecommunications media services"	17-Oct-07	17-Oct-08	11000.00	=""	="Department of Finance and Administration"	24-Jun-08 02:14 PM	

+="CN94581"	"Ranking of Humaneness of vertebrate pest control techniques."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	02-Jun-08	27-Jun-08	10491.90	=""	="NSW Department of Primary Industries"	24-Jun-08 02:14 PM	

+="CN94582"	"Annual Panel Access Membership"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	10-Jun-08	30-Jun-09	15000.00	=""	="Australian Public Service commission"	24-Jun-08 02:14 PM	

+="CN94583"	"switchboard operators for May 08"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	01-May-08	31-May-08	23841.28	=""	="Sirius Corporation Limited"	24-Jun-08 02:14 PM	

+="CN94580"	"Recruitment at ASIC - Implementation"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	12-Oct-07	31-Mar-08	68640.00	=""	="Tripoint Corporation"	24-Jun-08 02:14 PM	

+="CN94585"	"Development of a national microscopy network for fruitfly diagnostics."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	15-Jun-08	30-Jun-08	79200.00	=""	="Cooperative Research Centre for National Plant Biosecurity"	24-Jun-08 02:15 PM	

+="CN94586"	"Charter Flight for NRAC to Tour EC areas"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	01-Jun-08	30-Jun-08	11000.00	=""	="Hawker Pacific Aircraft Charter"	24-Jun-08 02:15 PM	

+="CN94587"	"Hosted search service for AgPortal website"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	29-May-07	28-May-09	12402.50	=""	="FunnelBack Pty Ltd"	24-Jun-08 02:15 PM	

+="CN94588"	"Polymerase Chain Reaction (PCR) Machine, Centrifuge & Water Bath"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Office machines and their supplies and accessories"	13-Jun-08	31-Jul-08	21002.78	=""	="Crown Scientific"	24-Jun-08 02:15 PM	

+="CN94589-A1"	"Project: Provide input to ABARE project ' Impacts of reduced water availability on irrigated agricultural production in the Victorian Murray- Darling Basin'"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	10-Jan-08	30-Jun-08	22000.00	=""	="University of Queensland"	24-Jun-08 02:15 PM	

+="CN94590"	"Marcus Clarke call costs"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Insurance and retirement services"	18-Jun-08	18-Aug-08	45000.00	=""	="AAPT"	24-Jun-08 02:16 PM	

+="CN94591"	"Development of additional codes of practice and standard operating procedures for the humane capture, handling or culling of pest aniamls in Australia"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	15-Feb-08	15-Jun-09	35904.00	=""	="NSW Department of Primary Industries"	24-Jun-08 02:16 PM	

+="CN94592"	"Development and implementation of Customs ICS system changes as a result of AQIS Service Requests in FY07/08"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	01-Jul-07	30-Jun-08	136239.84	=""	="Australian Customs Service"	24-Jun-08 02:16 PM	

+="CN94593"	"audiovisual system"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Office machines and their supplies and accessories"	19-Jun-08	25-Jun-08	14392.00	=""	="nova multimedia"	24-Jun-08 02:16 PM	

+="CN94594"	"Production of Forests at a Glance publication for the Bureau (includes text prints, folding, collating, binding etc)production run on approx 5000."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Printed media"	20-Jun-08	30-Jun-08	10571.00	=""	="Union Offset Printers"	24-Jun-08 02:16 PM	

+="CN94595"	"Provide to the Bureau: print,data processing and mail out survey services as specified as part of the Climate Change and risk adaptation survey of farmers."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Human resources services"	20-Jun-08	22-Jul-08	35582.00	=""	="National Mailing & Marketing"	24-Jun-08 02:16 PM	

+="CN94596"	"Reimbursable Expenditure:  To undertake field surveillance and testing of Bats in Papua New Guinea (PNG) and Indonesdia to test for Nipah Virus in 2008"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Passenger transport"	10-Jun-08	31-Aug-08	10038.12	=""	="Andrew Breed"	24-Jun-08 02:17 PM	

+="CN94597"	"Provision of leasing premises at Geoscience Australia for the Bureau's Integrated Water Science function (includes power, laboratory gases, cleaning etc)."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Personal and Domestic Services"	01-Jul-08	28-Jun-13	55000.00	=""	="Geoscience Australia"	24-Jun-08 02:17 PM	

+="CN94599"	"Provide to the Bureau StreetPro Australia 2-5 user licence"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	19-Jun-08	30-Jun-08	55000.00	=""	="Pitney Bowes Mapinfo Australia Pty Ltd"	24-Jun-08 02:17 PM	

+="CN94600"	"Provide to the Bureau CadastralPlus Australia 5-user license, G-NAF Australia 10-user licence."	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Computer services"	19-Jun-08	30-Jun-08	50966.50	=""	="Pitney Bowes Mapinfo Australia Pty Ltd"	24-Jun-08 02:17 PM	

+="CN94603-A1"	"Co-sponsorship of ACIAR project FIS/2006/142 - Developing New Assessment and Policy Frameworks for Indonesia's Marine Fisheries, Including the Control and Management of IUU Fishing"	="Department of Agriculture Fisheries and Forestry"	24-Jun-08	="Management advisory services"	12-May-08	30-Jun-10	120000.00	=""	="Australian Centre for International Agricultural Research"	24-Jun-08 02:18 PM	

+="CN94604"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	24-Jun-08	="Information technology consultation services"	01-Dec-07	29-Feb-08	55000.00	=""	="Madfish Solution Pty Ltd"	24-Jun-08 02:20 PM	

+="CN94605-A2"	"Continuing Backfill of Information Architecture Role"	="Australian Securities and Investments Commission"	24-Jun-08	="Personnel recruitment"	01-Mar-08	30-Jun-08	126280.00	=""	="Doll Martin Associates Pty Ltd"	24-Jun-08 02:24 PM	

+="CN94473"	"Short term vehicle hire - ATO Cluster"	="Australian Electoral Commission"	24-Jun-08	="Vehicle rental"	01-Nov-07	28-Feb-10	216000.00	=""	="WTH Pty Ltd T/a AVIS Australia"	24-Jun-08 02:25 PM	

+="CN94606"	"Various Pharmaceuticals"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	29-May-08	28-Jun-08	15812.50	=""	="Phebra"	24-Jun-08 02:30 PM	

+="CN94607-A1"	"Solution Architect for SOA"	="Australian Securities and Investments Commission"	24-Jun-08	="Personnel recruitment"	01-Mar-08	01-May-08	79200.00	=""	="Oakton Limited"	24-Jun-08 02:47 PM	

+="CN94609"	"Legal Services"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	01-Dec-07	30-Jun-08	15000.00	=""	="Castle, Timothy D."	24-Jun-08 02:52 PM	

+="CN94610"	"Purchase of 500,000 DLX window and 50,000 C4 window envelopes"	="Australian Securities and Investments Commission"	24-Jun-08	="Window envelopes"	16-Jan-08	07-Mar-08	15235.00	=""	="Australian Envelopes"	24-Jun-08 02:58 PM	

+="CN94611"	"Legal services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	08-Oct-07	24-Dec-07	60000.00	=""	="Sofroniou, Rena"	24-Jun-08 03:03 PM	

+="CN94612"	"Legal services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	05-Oct-07	24-Dec-07	30000.00	=""	="Moon, Edward"	24-Jun-08 03:07 PM	

+="CN94614"	"Legal services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	09-Oct-07	24-Dec-07	42281.00	=""	="Castelan, Justin"	24-Jun-08 03:12 PM	

+="CN94613"	"Strapping Adhesive Tape"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	10-Jun-08	08-Jul-08	24024.00	=""	="ORTHOTIC&PROSTHETIC CENTRE PTY LTD"	24-Jun-08 03:12 PM	

+="CN94616"	"SEALING COMPOUND"	="Defence Materiel Organisation"	24-Jun-08	="Adhesives and sealants"	24-Jun-08	29-Aug-08	22265.45	=""	="PPG INDUSTRIES AUST P/L"	24-Jun-08 03:14 PM	

+="CN94615"	"qty 5 headset microphone; qty 10 headset microphone helmet medium; qty 10 headset microphone helmet small; for use with military radios"	="Defence Materiel Organisation"	24-Jun-08	="Electronic Components and Supplies"	24-Jun-08	06-Jan-09	63129.00	="RFQ-C7179"	="OWEN INTERNATIONAL"	24-Jun-08 03:14 PM	

+="CN94608"	"Purchase of 4 x Exon servers"	="Department of Broadband Communications and the Digital Economy"	24-Jun-08	="Public Utilities and Public Sector Related Services"	23-May-07	29-Jun-07	102942.00	="CCR/07/2347"	="IBM Global ervices Australia Ltd"	24-Jun-08 03:17 PM	

+="CN94617"	"Legal services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	12-Oct-07	24-Dec-07	77900.00	=""	="Barry, Robert"	24-Jun-08 03:18 PM	

+="CN94618"	"Test Kits, Multi-drug"	="Defence Materiel Organisation"	24-Jun-08	="Medical Equipment and Accessories and Supplies"	06-Jun-08	03-Jul-08	64900.00	=""	="Active Healthcare"	24-Jun-08 03:28 PM	

+="CN94619"	"Legal Services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	09-Oct-07	24-Dec-07	40000.00	=""	="Lewis, Anthony"	24-Jun-08 03:42 PM	

+="CN94620"	"Corporate Stationery"	="Australian Electoral Commission"	24-Jun-08	="Stationery"	01-Nov-07	18-Sep-08	238000.00	=""	="Corporate Express Australia Ltd"	24-Jun-08 03:45 PM	

+="CN94621"	"Legal services - assistance with ASIC Act examinations"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	16-Oct-07	24-Dec-07	40000.00	=""	="Brereton, Justin"	24-Jun-08 03:54 PM	

+="CN94622"	"Legal services - advice re: possible litigation"	="Australian Securities and Investments Commission"	24-Jun-08	="Legal services"	28-Sep-07	10-Apr-08	60000.00	=""	="Hanak, Andrew"	24-Jun-08 04:03 PM	

+="CN94623"	" Rural Agent - Centrelink Agent Services "	="Centrelink"	24-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	19907.34	=""	="Cutting Edge Youth Services - Unitingcare"	24-Jun-08 04:05 PM	

+="CN94625"	"online component of the Community Perceptions Survey"	="Australian Taxation Office"	24-Jun-08	="Market research"	26-May-08	29-Aug-08	47500.00	=""	="Research International Australia Pty Ltd"	24-Jun-08 04:16 PM	

+="CN94633"	"Removals and Storage"	="Australian Crime Commission"	24-Jun-08	="Storage sheds"	03-Feb-08	30-May-08	17648.05	=""	="Toll Transitions"	24-Jun-08 04:39 PM	

+="CN94634"	"Involuntary Restraints"	="Defence Materiel Organisation"	24-Jun-08	="Restraints"	24-Jun-08	18-Jul-08	13475.00	="RFQ J8468"	="Armament Systems and Procedures"	24-Jun-08 04:40 PM	

+="CN94636-A1"	"Recruitment - Web Manager"	="Australian Crime Commission"	24-Jun-08	="Personnel recruitment"	29-May-08	31-Oct-08	67760.00	=""	="Greythorn Pty Ltd"	24-Jun-08 04:43 PM	

+="CN94641"	"Medical Consumables"	="Defence Materiel Organisation"	25-Jun-08	="Medical Equipment and Accessories and Supplies"	18-Jun-08	16-Jul-08	13338.32	=""	="ADEC AUSTRALIA"	25-Jun-08 08:06 AM	

+="CN94642"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Jun-08	14-Jul-10	13470.82	=""	="VOLVO COMMERCIAL VEHICLES"	25-Jun-08 08:30 AM	

+="CN94644"	"provision of Information Communication and Security advisory Services.  Extension of arrangements as reported in gazzetal notice 1577178"	="Family Court of Australia"	25-Jun-08	="Information technology consultation services"	01-May-08	30-Apr-09	40000.00	=""	="Stratsec. net Pty Ltd"	25-Jun-08 08:48 AM	

+="CN94643"	"Camouflage face paint"	="Defence Materiel Organisation"	25-Jun-08	="Makeup kits"	24-Jun-08	25-Jul-08	82280.00	=""	="Defence Procurement Pty Ltd"	25-Jun-08 08:52 AM	

+="CN94645"	" PAINT "	="Department of Defence"	25-Jun-08	="Paints and primers"	24-Jun-08	09-Jul-08	22715.00	=""	="PROTEC PTY LTD"	25-Jun-08 08:56 AM	

+="CN94647"	" ASLAV Parts Speedometer "	="Department of Defence"	25-Jun-08	="Armoured fighting vehicles"	24-Jun-08	03-Jan-09	27400.45	=""	="GENERAL DYNAMICS LAND SYSTEMS"	25-Jun-08 08:58 AM	

+="CN94648"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	09-Jul-08	18092.16	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	25-Jun-08 09:04 AM	

+="CN94650"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	14-Jul-08	14855.41	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:09 AM	

+="CN94646"	"Pneumatic Pillows"	="Defence Materiel Organisation"	25-Jun-08	="Pillows"	24-Jun-08	08-Sep-08	33825.00	=""	="So-Fon Australia"	25-Jun-08 09:14 AM	

+="CN94652"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	08-Jul-08	35400.04	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:15 AM	

+="CN94653"	"M113 UPGRADE PARTS SPACER RING"	="Department of Defence"	25-Jun-08	="Armoured fighting vehicles"	18-Jun-08	14-Dec-08	71171.32	=""	="TENIX DEFENCE"	25-Jun-08 09:18 AM	

+="CN94651"	"Repair of Black hawk L/H Stabilator"	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	31-Jul-08	23032.91	=""	="Sikorsky Aircraft Austalia Limited"	25-Jun-08 09:19 AM	

+="CN94654"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	08-Jul-08	17332.34	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:19 AM	

+="CN94655"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Jun-08	07-Jul-08	13563.56	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:24 AM	

+="CN94656-A2"	" Online publication service including software for: Jane's Military and Security Assessments Intelligence Centre Online "	="Australian Federal Police"	25-Jun-08	="Computer services"	29-Jun-08	28-Jun-09	98845.73	=""	="IHS Australia Pty Limited"	25-Jun-08 09:25 AM	

+="CN94657"	"Prininting of NAT1908-06.2008 Tax basics for small business."	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jun-08	30-Jun-08	59900.50	=""	="Paragon Printers"	25-Jun-08 09:25 AM	

+="CN94658"	"Recruitment - IT Personnel"	="Australian Crime Commission"	25-Jun-08	="Personnel recruitment"	02-Jun-08	28-Nov-08	110968.00	=""	="Icon Recruitment Pty Ltd"	25-Jun-08 09:38 AM	

+="CN94660-A1"	" Performance Audit Advisory Group Member for Expert comment on Audit Methodology, Findings and Reporting. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	17120.00	=""	="Reddate Pty Ltd ta Distaff Associates"	25-Jun-08 09:43 AM	

+="CN94661-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	01-Jul-04	30-Jun-08	25000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:43 AM	

+="CN94662-A1"	"Advice on the ATO's use of Data Matching in the Tax Administration Audit"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	01-Jul-07	31-Mar-08	11251.63	=""	="Christopher Conybeare and Associates"	25-Jun-08 09:43 AM	

+="CN94663-A1"	"40 Safeboot Secure USB Devices"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Miscellaneous hardware"	02-Jun-08	30-Jun-08	21303.70	=""	="Dimension Data Australia Pty Ltd"	25-Jun-08 09:44 AM	

+="CN94665-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	05-Jun-08	27-Aug-08	15000.00	="ANAOAM2007/592"	="KNJ Professional Services Pty Ltd"	25-Jun-08 09:44 AM	

+="CN94666-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	12000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94667-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	22000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94668-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	30000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94664"	"Internet gateway/secure services"	="Australian Crime Commission"	25-Jun-08	="Computer or network or internet security"	01-May-08	30-Apr-09	564000.00	=""	="Verizon Business (Cybertrust)"	25-Jun-08 09:45 AM	

+="CN94669-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	05-Sep-08	35000.00	=""	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:45 AM	

+="CN94670-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	01-Aug-08	17000.00	="ANAOAM2007/592"	="UHY Haines Norton (Canberra) Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94671-A1"	" Engagement of of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	15-Aug-08	25000.00	="ANAOAM2007/592"	="The Trustee for Birdanco Practice Trust ta RSM Bird Cameron"	25-Jun-08 09:45 AM	

+="CN94672-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	22-Aug-08	25000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94673-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	29-Aug-08	42000.00	="ANAOAM2007/592"	="UHY Haines Norton (Canberra) Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94674-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	31-Oct-08	95000.00	="ANAOAM2007/592"	="Hays Personnel Services (Aust) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94675-A1"	"Advice given on ATO Strategies to Address Tax Haven Compliance Risks."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	11-Dec-07	30-May-08	12873.63	=""	="Peter Simpson Consulting"	25-Jun-08 09:46 AM	

+="CN94676-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	05-Sep-08	42000.00	="ANAOAM2007/592"	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94677-A1"	" Engagement of staff to assist with Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	31-Oct-08	115000.00	="ANAOAM2007/592"	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94678-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	15-Aug-08	15000.00	="ANAOAM2007/592"	="Wandella (ACT) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94679-A1"	"4 Dell Notebooks Ruggered"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Computers"	12-Jun-08	30-Jun-08	10744.80	=""	="Dell Australia Pty Limited"	25-Jun-08 09:46 AM	

+="CN94680-A1"	"Australian Government Accounting and Accountability Framework Courses"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Adult education"	13-Nov-07	30-Nov-08	22000.00	=""	="Australian Capital Training Group P/L"	25-Jun-08 09:46 AM	

+="CN94681-A1"	"Reprint the Better Practice Guide on Developing and Managing Contracts"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Printing"	14-May-08	30-Jun-08	30702.38	=""	="Comcom Pty Ltd T/A Zoo"	25-Jun-08 09:46 AM	

+="CN94682-A1"	"EziScan Software Licences"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Network management software"	19-Jun-08	30-Jun-08	23760.00	=""	="Fuji Xerox Australia Pty Ltd - ACT"	25-Jun-08 09:47 AM	

+="CN94683-A1"	"Audit Assistance with Specific Purpose payments - General Recurrent Grants for Government Schools."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	19-Sep-07	30-Jun-08	12201.68	=""	="PG Policy Consulting"	25-Jun-08 09:47 AM	

+="CN94684-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	20-Aug-08	30000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94685-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	22-Aug-08	45000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94686-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	27-Aug-08	50000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94687-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	29-Aug-08	55440.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94688-A1"	" Case Ware IDEA Software annual Maintenance 1 July 2008-30 June 2009 "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Software maintenance and support"	23-Jun-08	30-Jun-09	25500.00	=""	="Deloitte Growth Solutions Pty Limited"	25-Jun-08 09:47 AM	

+="CN94689-A1"	" Engagement of staff to assist with various Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	23-May-08	31-Oct-08	67100.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:48 AM	

+="CN94690-A1"	" Focus Content Management Systems Licence and Support "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Software maintenance and support"	24-Jan-08	01-Jul-10	18700.00	=""	="Reading Room Australia Pty Limited"	25-Jun-08 09:48 AM	

+="CN94691-A1"	" Access fee for Consultancy Panel for Professional Development "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Adult education"	26-May-08	25-May-09	10500.00	=""	="Aust Public Service Commission"	25-Jun-08 09:48 AM	

+="CN94693-A1"	"Assistance with Survey and Report on Green Office Procurement Audit."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	27-May-08	03-Nov-08	35000.00	=""	="The Hedging Company Pty Ltd"	25-Jun-08 09:48 AM	

+="CN94694-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	27-May-08	05-Sep-08	50000.00	="ANAOAM2007/592"	="Roberts and Morrow"	25-Jun-08 09:48 AM	

+="CN94695-A1"	" Legal services "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Business law services"	29-Apr-08	30-Jun-08	40000.00	=""	="Mallesons Stephen Jaques"	25-Jun-08 09:49 AM	

+="CN94696-A1"	"Development of a Draft Survey for Pilot Testing for the Health Workforce Audit."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	30-May-08	25-Jul-08	40000.00	=""	="Allanson Consulting Pty Ltd"	25-Jun-08 09:49 AM	

+="CN94697-A2"	" Financial Statement Audits of the Australian Reinsurance Pool Corporation. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	30-May-08	30-Oct-10	467605.00	="ANAOAM2007/876"	="KPMG Peat Marwick - ACT"	25-Jun-08 09:49 AM	

+="CN94692-A1"	" Online publication service including software for: Jane's Terrorism and Insurgency Centre Online "	="Australian Federal Police"	25-Jun-08	="Computer services"	03-Jun-08	02-Jun-09	34769.00	=""	="IHS Australia Pty Limited"	25-Jun-08 09:49 AM	

+="CN94699-A7"	" Panel arrangement for the provision of ICT Contractor Services - Centrelink Deed of Standing Offer. All Work Orders combined. up to date "	="CRS Australia"	25-Jun-08	="Information technology consultation services"	01-Jul-08	31-Oct-10	1701249.74	=""	="Southern Cross Computing Pty Ltd"	25-Jun-08 10:16 AM	

+="CN94700"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Jun-08	="Aircraft spars"	25-Jun-08	24-Jul-09	18927.65	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Jun-08 10:20 AM	

+="CN94702-A1"	"Supply of half height cabinets at Dandenong"	="Australian Taxation Office"	25-Jun-08	="Storage chests and cabinets and trunks"	13-Jun-08	30-Jun-08	64718.94	=""	="Planex Sales Pty Ltd"	25-Jun-08 10:35 AM	

+="CN94703"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	11345.24	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 10:40 AM	

+="CN94701"	"Repair and Overhaul of PC9 Landing Gear Cylinder and Piston Assy - S/No 1009"	="Defence Materiel Organisation"	25-Jun-08	="Military fixed wing aircraft"	12-Jun-08	21-Aug-08	13264.07	=""	="Airflite Pty Ltd"	25-Jun-08 10:47 AM	

+="CN94705"	"Consultancy Services for ICT Options"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	50000.01	="DCON/05/53"	="Walter Turnbull"	25-Jun-08 10:53 AM	

+="CN94709"	"Delivery of Strategic Management Program 4"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Education and Training Services"	12-Feb-08	30-Jun-08	54417.44	="ATM08/896"	="Upton Martin Consulting"	25-Jun-08 11:04 AM	

+="CN94708-A1"	"Menningococcal Vaccine"	="Defence Materiel Organisation"	25-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	28-Jun-08	122430.00	=""	="Commonwealth Serum Laboratories"	25-Jun-08 11:04 AM	

+="CN94710"	"Technical Support for Message manager"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-09	10000.50	="ATM08/894"	="System Solutions Australia Pty Ltd"	25-Jun-08 11:08 AM	

+="CN94711"	"Printing of JS8164 - Tax Agent Newsletter Issue 5"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jun-08	30-Jun-08	19721.90	=""	="Blue Star Print Group t/a National Capital Printing"	25-Jun-08 11:21 AM	

+="CN94712"	"Leasing of network printers"	="Australian Federal Police"	25-Jun-08	="Office Equipment and Accessories and Supplies"	01-Apr-08	31-Mar-11	35924.64	="RFT 5-2006"	="Lexmark International (Australia)Pty Limited"	25-Jun-08 11:21 AM	

+="CN94713-A1"	"Relocation of Graduates for 2008 Program"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Transportation and Storage and Mail Services"	05-Dec-07	15-Dec-10	55650.00	="DCON/06/95"	="Grace Removals Group"	25-Jun-08 11:23 AM	

+="CN94715"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	13109.83	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 11:28 AM	

+="CN94718-A1"	"Provision of fitout services for the Woy Woy premises of CRS Australia "	="CRS Australia"	25-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	33737.00	=""	="Latin Interiors Pty Ltd"	25-Jun-08 11:40 AM	

+="CN94717"	"Ground Support Equipment Spare parts"	="Defence Materiel Organisation"	25-Jun-08	="Mechanised ground support system spare parts or accessories"	12-Jun-08	31-Aug-08	27500.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 11:41 AM	

+="CN94719"	"Computer Servers"	="Australian Electoral Commission"	25-Jun-08	="Computer servers"	28-May-08	30-Jun-08	24229.87	=""	="Datacom Systems (QLD) Pty Ltd"	25-Jun-08 11:42 AM	

+="CN94720"	"Artbank artworks for Broadband Division"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Office Equipment and Accessories and Supplies"	19-Feb-08	19-Feb-08	12705.00	="ATM08/921"	="Artbank"	25-Jun-08 11:43 AM	

+="CN94721"	"Support for KR Emu software"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Office Equipment and Accessories and Supplies"	20-Feb-08	01-Mar-09	17883.80	="ATM07/424"	="KE Software Australia Pty Ltd"	25-Jun-08 11:45 AM	

+="CN94722"	"Audio Visual Fitout"	="Australian Electoral Commission"	25-Jun-08	="Audio visual services"	28-May-08	30-Jun-08	55943.49	=""	="Elecroboard Solutions Pty Ltd"	25-Jun-08 11:47 AM	

+="CN94723"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	10045.10	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 11:47 AM	

+="CN94726"	"Postage Meter and Scale"	="Australian Electoral Commission"	25-Jun-08	="Franking or postage machines"	23-May-08	23-May-09	15310.50	=""	="Pitney Bowes"	25-Jun-08 11:53 AM	

+="CN94727"	"Printing of NAT71043-04.2008 ETP Guide"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jun-08	10-Jul-08	26903.60	=""	="Paragon Printers"	25-Jun-08 11:55 AM	

+="CN94730"	"Aerial Towed Target"	="Defence Materiel Organisation"	25-Jun-08	="Target or reconnaissance drones"	06-Jun-08	20-Jun-08	55825.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 12:07 PM	

+="CN94733-A1"	" Rental agreement - Cairns office  (GAPS no. - 990476) "	="Office of the Director of Public Prosecutions"	25-Jun-08	="Lease and rental of property or building"	01-Sep-03	30-Sep-14	753405.56	=""	="Opus Capital Limited"	25-Jun-08 12:33 PM	

+="CN94735"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Jun-08	="Aircraft spars"	25-Jun-08	24-Aug-09	14777.88	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Jun-08 12:39 PM	

+="CN94736"	"Printing NAT7967-03.2007 Income tax guide for non-profit organisations"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Jun-08	08-Jul-08	23906.30	=""	="Paragon Printers"	25-Jun-08 12:53 PM	

+="CN94737-A4"	"Provision of Aviation client satisfaction survey"	="Australian Federal Police"	25-Jun-08	="Management advisory services"	23-Jun-08	11-Jul-08	155349.00	="RFT 29-2006"	="University of Queensland"	25-Jun-08 01:30 PM	

+="CN94739"	" Taxation of Trusts & Principles of Taxation of                     Superannuation Entities "	="Australian Taxation Office"	25-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	29-Aug-08	94232.00	="132.04-14"	="University of New South Wales"	25-Jun-08 01:38 PM	

+="CN94741"	"Software purchase"	="Future Fund Management Agency"	25-Jun-08	="Software"	18-Jun-08	18-Jun-08	10972.50	=""	="The Mathworks Australia Pty Ltd"	25-Jun-08 01:50 PM	

+="CN94740"	" INDICATOR TORQUEMETER QUANTITY 5. PART No 4308-1009;   MC 34641 "	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	03-Sep-08	12236.95	=""	="MILSPEC SERVICES"	25-Jun-08 01:51 PM	

+="CN94742"	" Cover Assembly "	="Defence Materiel Organisation"	25-Jun-08	="Electronic Components and Supplies"	25-Jun-08	23-Jul-08	38720.00	=""	="NAECO PTY LTD"	25-Jun-08 01:53 PM	

+="CN94743-A1"	"Development and implementation of enhancements of Full Time Equivalent (FTE) reporting and budgeting in the Budget Management Reporting System (BMRS)"	="Australian Federal Police"	25-Jun-08	="Accounting and auditing"	23-Apr-08	30-Jun-08	115050.00	="06-16740"	="Analytics Group Pty Ltd"	25-Jun-08 02:02 PM	

+="CN94744"	"TAN FLYING SHIRTS AND TROUSERS"	="Defence Materiel Organisation"	25-Jun-08	="Clothing"	25-Jun-08	25-Sep-08	45874.24	=""	="AUSTRALIAN DEFENCE APPAREL"	25-Jun-08 02:08 PM	

+="CN94747"	"Linkage visit R&D"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	22-Apr-08	23-May-08	11200.00	=""	="Beef Cattle Research Station"	25-Jun-08 02:08 PM	

+="CN94749"	"Research into the non-English speaking background community needs & awareness on tax & compliance issues."	="Australian Taxation Office"	25-Jun-08	="Market research"	02-Jun-08	31-Jul-08	100000.00	=""	="Newton Wayman Chong Research"	25-Jun-08 02:13 PM	

+="CN94750"	"Project Review"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	30-May-08	09-Jun-08	15000.00	=""	="Dr William Thorpe"	25-Jun-08 02:17 PM	

+="CN94751"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	06-Aug-07	06-Mar-11	179597.56	="AEC06/062"	="QM Technologies Pty Ltd"	25-Jun-08 02:19 PM	

+="CN94756"	" Impact assessment "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	17-Jun-08	31-Mar-09	79500.00	=""	="IDA Economics"	25-Jun-08 02:34 PM	

+="CN94757"	"External Training"	="Centrelink"	25-Jun-08	="Specialised educational services"	23-Jun-08	26-Jun-08	19390.01	=""	="Object Consultin"	25-Jun-08 02:39 PM	

+="CN94761"	"Courier Services"	="Centrelink"	25-Jun-08	="Mail and cargo transport"	01-Jul-07	30-Jun-08	143000.00	=""	="Toll Transport Pty Ltd"	25-Jun-08 02:46 PM	

+="CN94763-A3"	"Provision of searching facilities via Electronic White Pages (EWP); Number Enquiry Directory (NED) services"	="Australian Taxation Office"	25-Jun-08	="Telecommunications media services"	01-Jul-08	30-Jun-11	661755.00	=""	="Sensis Pty Ltd"	25-Jun-08 02:50 PM	

+="CN94765"	"ORACLE LICENCVE AND SERVICE AGREEMENT"	="Family Court of Australia"	25-Jun-08	="Proprietary or licensed systems maintenance or support"	19-Oct-07	18-Oct-08	52727.25	=""	="ORACLE CORPORATION AUSTRALIA PTY LIMITED"	25-Jun-08 02:54 PM	

+="CN94754"	"magazine pouches"	="Defence Materiel Organisation"	25-Jun-08	="Packaging boxes and bags and pouches"	12-May-08	31-May-08	23100.00	=""	="Hunters Edge"	25-Jun-08 02:55 PM	

+="CN94768"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	02-Aug-07	02-Mar-11	54377.86	="AEC06/062"	="Snap Printing t/a Kimal"	25-Jun-08 02:59 PM	

+="CN94769"	"IT Services"	="Australian Human Rights Commission"	25-Jun-08	="Information technology consultation services"	01-Jun-08	31-Aug-08	13200.00	=""	="Powernet Services Pty Ltd"	25-Jun-08 03:01 PM	

+="CN94771"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	25-Jun-08	="Anti submarine helicopters"	13-Jun-07	18-Jun-08	33971.45	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	25-Jun-08 03:04 PM	

+="CN94772"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	02-Aug-07	02-Aug-11	97873.68	="AEC06/062"	="McPherson's Printing Group"	25-Jun-08 03:06 PM	

+="CN94777-A1"	" Provision of cleaning services to the Geraldton premises of CRS Australia "	="CRS Australia"	25-Jun-08	="General building and office cleaning and maintenance services"	26-May-08	25-May-11	21582.00	=""	="Redframe Pty Ltd t/a Delron Cleaning Geraldton"	25-Jun-08 03:22 PM	

+="CN94778"	"Airfares"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Travel agents"	29-May-08	23-Jun-08	28181.06	=""	="AMERICAN EXPRESS TRAVEL"	25-Jun-08 03:36 PM	

+="CN94780"	"Systems maintenance"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Integrated maintenance information systems"	31-May-08	23-Jun-08	32877.90	=""	="Systems Union Pty Ltd"	25-Jun-08 03:43 PM	

+="CN94781"	" Publication editing/production "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Publication printing"	29-May-08	16-Jun-08	33385.20	=""	="Coretext"	25-Jun-08 03:49 PM	

+="CN94782"	"Publication printing"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Publication printing"	30-May-08	17-Jun-08	10186.00	=""	="Goanna Print Pty Ltd"	25-Jun-08 03:54 PM	

+="CN94783"	"Repair of Black Hawk Main Rotor blade"	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	31-Jul-08	52742.17	=""	="Sikorsky Aircraft Australia Limited"	25-Jun-08 03:58 PM	

+="CN94784"	"Cable, tow lines"	="Defence Materiel Organisation"	25-Jun-08	="Aerial cable"	11-Jun-08	20-Jun-08	59125.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 04:02 PM	

+="CN94785"	" Rent costs July 2008 "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Lease and rental of property or building"	12-Jun-08	16-Jun-08	46782.13	=""	="GDA Diversified Property Trust"	25-Jun-08 04:03 PM	

+="CN94787"	"Cable, tow line"	="Defence Materiel Organisation"	25-Jun-08	="Aerial cable"	11-Jun-08	20-Jun-08	42900.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 04:07 PM	

+="CN94789"	" Publication distribution "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Distribution"	27-May-08	16-Jun-08	14238.69	=""	="National Mailing & Marketing"	25-Jun-08 04:11 PM	

+="CN94790"	"ICT services required for Super Simplification Project."	="Australian Taxation Office"	25-Jun-08	="Engineering and Research and Technology Based Services"	09-Nov-07	09-Nov-08	1000000.00	="059-2007"	="Accenture Australia Holdings Pty Ltd"	25-Jun-08 04:19 PM	

+="CN94792"	"Registration of 17 NNTT staff and Executives at the AIATSIS Conference"	="National Native Title Tribunal"	25-Jun-08	="Conference centres"	21-May-08	22-May-08	10640.00	=""	="AIATSIS Conference"	25-Jun-08 04:28 PM	

+="CN94795"	"NSN 1560-00-807-9586, Spring Assemblies"	="Defence Materiel Organisation"	25-Jun-08	="Aerospace systems and components and equipment"	23-Oct-07	19-Jun-08	20634.24	=""	="Milspec Services Pty Ltd"	25-Jun-08 04:55 PM	

+="CN94796"	"APVMA COMPLETE LABEL DATABASE"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Internet related services"	04-Dec-07	30-Jun-08	20000.00	=""	="Qld Dept of Primary Industries & Fisheries"	25-Jun-08 04:56 PM	

+="CN94791"	"LISTING IN WHITE PAGES ACROSS AUSTRALIA"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Trade or service directory or yellow page advertising"	21-Aug-07	29-Jan-09	38550.00	=""	="White Pages Directories"	25-Jun-08 04:57 PM	

+="CN94797"	"Additional building fitout cots"	="Future Fund Management Agency"	25-Jun-08	="Wall fixtures"	01-Apr-08	01-Jun-08	14253.80	=""	="ISIS Projects Pty Ltd"	25-Jun-08 04:57 PM	

+="CN94798"	"LIBRARY MANAGEMENT SYSTEM"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Libraries and related materials"	31-Dec-07	31-Dec-08	17320.00	=""	="Softlink Australia"	25-Jun-08 05:01 PM	

+="CN94799"	"COMPARISON OF FORMULATION COMPOSITION WITH REGISTERED FORMULA"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	12-Jun-08	31-Dec-08	44396.00	=""	="Advance Analytical Australia Pty Ltd"	25-Jun-08 05:06 PM 

--- /dev/null
+++ b/admin/partialdata/24Dec2007to28Dec2007valto.xls
@@ -1,1 +1,126 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN52410-A1"	"07/2396 - IT Contractor - 0717-0868 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	01-Nov-07	30-Jun-09	432300.00	="05/0717"	="Cordelta Pty Ltd"	24-Dec-07 09:17 AM	

+="CN52412"	"07/2409 - Change Management Plan - 1599-1977 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	12-Nov-07	17-Dec-07	28660.00	="06/1599"	="Tarcus"	24-Dec-07 09:20 AM	

+="CN52409"	"Memorial Restoration"	="National Capital Authority"	24-Dec-07	="Restoration of buildings or landmarks or monuments"	04-Dec-07	10-Apr-08	152581.00	=""	="Pyramid Corporation Pty Ltd"	24-Dec-07 09:22 AM	

+="CN52417-A1"	"07/1916 - Training Services - 1523-1817 - Leading People at the Frontline Panel (CPO013713)"	="Australian Customs and Border Protection Service"	24-Dec-07	="Specialised educational services"	26-Oct-07	15-Nov-07	13310.00	="06/1523"	="Major Training Services Pty Ltd"	24-Dec-07 09:31 AM	

+="CN52420"	"CPE003360-1 - Recruitment services - 1574-2263 - Psychological Services"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Sep-07	30-Sep-07	30214.69	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:38 AM	

+="CN52423"	"Temporary Personnel"	="Australian Electoral Commission"	24-Dec-07	="Temporary personnel services"	01-May-07	30-Nov-07	11660.00	=""	="Jebel Consultant Group"	24-Dec-07 09:43 AM	

+="CN52424-A2"	"07/2451 - IT Systems Technical Services - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	15-Dec-07	30-Jun-09	605385.40	="05/0717"	="Inforail Pty Ltd"	24-Dec-07 09:46 AM	

+="CN52426"	"CPE003360-2 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	01-Oct-07	15-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:50 AM	

+="CN52428"	"CPE003360-3 - Recruitment Services - 1574-2263 - Psychological Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Medical doctors specialist services"	16-Oct-07	31-Oct-07	32585.30	="06/1465"	="Australian Institute of Forensic Psychologists P/L"	24-Dec-07 09:55 AM	

+="CN52431"	"CPE004327-1 - Fitness Testing - 1465-2315 - Fitness Testing Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Comprehensive health services"	09-Jul-07	20-Jul-07	18689.00	="06/1465"	="Work Solutions Australia Pty Ltd"	24-Dec-07 10:04 AM	

+="CN52434-A1"	"07/2327 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	39685.66	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:08 AM	

+="CN52436"	"07/2332 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	17-Sep-07	19-Oct-07	25423.75	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:12 AM	

+="CN52439"	"07/2362 - Data Migration Manager - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	17-Dec-07	17-Nov-08	270000.00	="06/1599"	="CCS Index Pty Ltd"	24-Dec-07 10:17 AM	

+="CN52442-A1"	"07/2051 - Information Architect - 0717-0873 - ICT Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Temporary personnel services"	19-Sep-07	30-Jun-09	648000.00	="05/0717"	="EDS (Australia) Pty Ltd"	24-Dec-07 10:21 AM	

+="CN52441"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	22-Dec-07	21-Jun-08	88088.00	=""	="Talent International"	24-Dec-07 10:21 AM	

+="CN52445-A1"	"07/2368 - Project Management Services - 1599-1984 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Oct-07	31-Mar-08	370000.00	="06/1599"	="ThinkPlace Pty Ltd"	24-Dec-07 10:27 AM	

+="CN52449-A1"	"07/2367 - Design Services - 1599-2004 - C&B Services Panel"	="Australian Customs and Border Protection Service"	24-Dec-07	="Business and corporate management consultation services"	20-Sep-07	31-Mar-08	500000.00	="06/1599"	="2nd Road Pty Ltd"	24-Dec-07 10:30 AM	

+="CN52446-A1"	"Provision for System Tester"	="Comsuper"	24-Dec-07	="Human resources services"	19-Dec-07	18-Jun-08	97240.00	=""	="Eurolink Australia"	24-Dec-07 10:36 AM	

+="CN52451"	"Provision for Printing Services"	="Comsuper"	24-Dec-07	="Printing accessories"	20-Nov-07	05-Dec-07	26271.30	=""	="Pirion Pty Ltd"	24-Dec-07 10:40 AM	

+="CN52462"	"WMO - Aust. Contribution to VCP(F) for 2008"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	31-Dec-08	1150668.73	=""	="WORLD METEOROLOGICAL ORGANIZATION"	24-Dec-07 11:34 AM	

+="CN52463"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	10-Dec-07	31-Dec-07	12336.97	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:34 AM	

+="CN52464"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	12-Dec-07	31-Dec-07	18154.63	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	

+="CN52465"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	11-Dec-07	31-Dec-07	13693.91	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:34 AM	

+="CN52466"	"Airfares"	="Bureau of Meteorology"	24-Dec-07	="Passenger transport"	04-Dec-07	31-Dec-07	92822.48	=""	="Carlson Wagonlit Travel"	24-Dec-07 11:35 AM	

+="CN52467"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	05-Dec-07	31-Dec-07	12774.75	=""	="Telvent Almos"	24-Dec-07 11:35 AM	

+="CN52468"	"Autosonde Upgrade Expenses Learmonth, Kalgoorlie, Charleville & Weipa"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Dec-07	12008.77	=""	="Vaisala Pty Ltd"	24-Dec-07 11:35 AM	

+="CN52469"	"Audit Fees"	="Bureau of Meteorology"	24-Dec-07	="Accounting and auditing"	10-Dec-07	31-Dec-07	14465.00	=""	="Deloitte Touche Tohmatsu"	24-Dec-07 11:35 AM	

+="CN52470"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	03-Dec-07	31-Dec-07	127366.17	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52471"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	12521.99	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52472"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	05-Dec-07	31-Dec-07	16071.67	=""	="Telstra  (ID No. 740)"	24-Dec-07 11:35 AM	

+="CN52473"	"BOC container management fee forDecember 2007"	="Bureau of Meteorology"	24-Dec-07	="Tools and General Machinery"	06-Dec-07	31-Dec-07	12578.13	=""	="Boc Limited"	24-Dec-07 11:35 AM	

+="CN52474"	"Postage A/c"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	07-Dec-07	07-Dec-07	38994.45	=""	="Australia Post"	24-Dec-07 11:36 AM	

+="CN52475"	"Wave Rider Data"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	10-Dec-07	11000.00	=""	="NSW Department of Commerce"	24-Dec-07 11:36 AM	

+="CN52476"	"Telecommunication Services"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	11-Dec-07	31-Dec-07	17531.71	=""	="AAPT LIMITED"	24-Dec-07 11:36 AM	

+="CN52477"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	15979.48	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	

+="CN52478"	"Professional Engineering Services"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	13860.00	=""	="Signal Processing Know-How P/L"	24-Dec-07 11:36 AM	

+="CN52479"	"Project Management Fees June - October 2007"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	36404.79	=""	="Montlaur Project Services Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52480"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52481"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	10450.00	=""	="Woods Bagot Pty Ltd"	24-Dec-07 11:36 AM	

+="CN52482"	"Construction Works"	="Bureau of Meteorology"	24-Dec-07	="General building construction"	12-Dec-07	31-Dec-07	88000.00	=""	="KLM GROUP"	24-Dec-07 11:37 AM	

+="CN52483"	"ARGOS Satellite Services Sep & Oct 2007"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Dec-07	31-Dec-07	22728.46	=""	="CLS"	24-Dec-07 11:37 AM	

+="CN52484"	"Subscription to Weatherwise 2008"	="Bureau of Meteorology"	24-Dec-07	="Printed media"	14-Dec-07	31-Dec-08	66079.96	=""	="Ebsco Australia"	24-Dec-07 11:37 AM	

+="CN52486"	"Software maintenance for IDL licenses"	="Bureau of Meteorology"	24-Dec-07	="Computer services"	14-Dec-07	31-Dec-08	33176.39	=""	="IT & T VISUAL SYSTEMS"	24-Dec-07 11:37 AM	

+="CN52487"	"MAINTENANCE WILLIS IS DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Building and Construction and Maintenance Services"	18-Dec-07	18-Dec-07	102061.94	=""	="ABSOLUTE MAINTENANCE & TECHNICAL"	24-Dec-07 11:37 AM	

+="CN52488"	"Packing & Shipping Prototype ASLOS"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-07	43603.59	=""	="Telvent Almos"	24-Dec-07 11:37 AM	

+="CN52489"	"ABARE's Outlook 2008 Conference Partnerships Brochure"	="Bureau of Meteorology"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	31-Dec-08	10500.00	=""	="ABARE -(DAFF CPM)"	24-Dec-07 11:37 AM	

+="CN52490"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	24798.83	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	

+="CN52491"	"Removals and storage"	="Bureau of Meteorology"	24-Dec-07	="Transportation and Storage and Mail Services"	19-Dec-07	31-Dec-07	67859.70	=""	="TOLL TRANSITIONS"	24-Dec-07 11:38 AM	

+="CN52492"	"CHARTER AWS/WILLIS IS NOV/DEC 07"	="Bureau of Meteorology"	24-Dec-07	="Mail and cargo transport"	24-Dec-07	24-Dec-07	135872.00	=""	="Fodico Pty Ltd"	24-Dec-07 11:38 AM	

+="CN52493"	"5 CANISTERS - 7 ANTENNAS & 1 RECEIVER"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	12-Dec-07	25-Jan-08	15071.10	=""	="Elpro Technologies Pty Ltd"	24-Dec-07 11:38 AM	

+="CN52494"	"Radar Spares"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	14-Dec-07	01-Mar-08	360200.26	=""	="AMS - GEMATRONIK GmbH"	24-Dec-07 11:38 AM	

+="CN52495"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	

+="CN52496"	"Radar (Receiver/Transmitter/Antenna)"	="Bureau of Meteorology"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	17-Dec-07	02-Feb-15	723859.94	=""	="Environmental Systems & Services"	24-Dec-07 11:38 AM	

+="CN52497"	"Provision of Telecommunication Links for Weatherne"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	17-Dec-07	01-Jan-11	516000.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:38 AM	

+="CN52498"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	17-Dec-07	17-Dec-07	258349.00	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52499"	"Water Information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	01-Mar-08	426811.00	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52500"	"Water information Wiranda Science Planning Project"	="Bureau of Meteorology"	24-Dec-07	="Engineering and Research and Technology Based Services"	18-Dec-07	18-Dec-07	133622.01	=""	="CSIRO"	24-Dec-07 11:39 AM	

+="CN52501"	"Communication link Melbourne to Canberra"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	28-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	

+="CN52502"	"Communication link Melbourne to Sydney"	="Bureau of Meteorology"	24-Dec-07	="Telecommunications media services"	20-Dec-07	31-Dec-11	72468.00	=""	="Nextgen Networks P/L"	24-Dec-07 11:39 AM	

+="CN52503"	"Overhaul Windsspeed/Direction Detectors Qty 10"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	21-Dec-07	07-Jan-08	11396.00	=""	="Karl Dierken Engineering Service"	24-Dec-07 11:39 AM	

+="CN52504"	"Supermicro Server"	="Bureau of Meteorology"	24-Dec-07	="Computer Equipment and Accessories"	21-Dec-07	28-Dec-07	10824.00	=""	="DIGICOR PTY LTD"	24-Dec-07 11:39 AM	

+="CN52505"	"Radiosonde (Qty 6000)"	="Bureau of Meteorology"	24-Dec-07	="Measuring and observing and testing instruments"	24-Dec-07	31-Jan-08	1144770.00	=""	="Vaisala Pty Ltd"	24-Dec-07 11:39 AM	

+="CN52507"	"Ballot Paper Production for NSW"	="Australian Electoral Commission"	24-Dec-07	="Industrial printing services"	31-May-04	30-May-08	1452440.00	=""	="McMillan Print Group"	24-Dec-07 12:24 PM	

+="CN52509"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	17-Dec-07	30-Jun-08	18590.00	="."	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	24-Dec-07 12:50 PM	

+="CN52510"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	31-Aug-08	391800.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:51 PM	

+="CN52511"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	28-Mar-08	34397.00	="0"	="MANPOWER SERVICES (AUST) P/L"	24-Dec-07 12:51 PM	

+="CN52512"	"IT System Development Services"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	130000.00	="FIN05CRP004-31"	="STRATAGEM"	24-Dec-07 12:51 PM	

+="CN52513"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	31-Mar-10	205127.30	="FINANCE05009"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	

+="CN52514"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Nov-09	31884.48	="24871/AUS/PE/S/22/A/1"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:51 PM	

+="CN52515"	"Additional Construction Works"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	24-Dec-07	31-Jan-08	19800.00	="NA"	="BOSS CONSTRUCTIONS (ACT) PTY LIMITED"	24-Dec-07 12:51 PM	

+="CN52516"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	29-Feb-08	28403.76	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:51 PM	

+="CN52517"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	135000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	

+="CN52518"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	27-Jun-08	172000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:52 PM	

+="CN52519"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	13-Jun-08	97000.00	="FIN 05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	24-Dec-07 12:52 PM	

+="CN52520"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	27-Nov-08	14434.20	="AS070813L1"	="INTEGRATED TECHNICAL MANAGEMENT PTY LTD"	24-Dec-07 12:52 PM	

+="CN52521"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	157030.00	="RFT LSB 01/2005"	="BLAKE DAWSON WALDRON - ACT"	24-Dec-07 12:52 PM	

+="CN52522"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	30-Jun-08	130000.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR - ACT"	24-Dec-07 12:52 PM	

+="CN52523"	"Recruitment Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	07-Jan-08	28-Mar-08	27104.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	24-Dec-07 12:52 PM	

+="CN52524"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	170000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:52 PM	

+="CN52525"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Jun-08	180380.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	24-Dec-07 12:53 PM	

+="CN52526"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	90000.00	="FIN05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:53 PM	

+="CN52527"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	08-Mar-08	16022.16	="Support Agreement 18400570802313"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	24-Dec-07 12:53 PM	

+="CN52528"	"Communication Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Dec-07	30-Jun-08	96514.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:53 PM	

+="CN52529"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	18-Jan-08	10990.65	="0"	="ANITECH"	24-Dec-07 12:53 PM	

+="CN52530"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Jan-08	35964.50	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:53 PM	

+="CN52531"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	12-Jan-08	11-Jan-09	76370.93	="Quote Q-1838343"	="COGNOS PTY LIMITED"	24-Dec-07 12:53 PM	

+="CN52532"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	160000.00	="FIN 05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	24-Dec-07 12:53 PM	

+="CN52533"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-Jun-08	310322.10	="BCS Client #03200628"	="IBM AUSTRALIA LIMITED"	24-Dec-07 12:54 PM	

+="CN52534"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	10-Nov-09	6654230.00	="Not applicable"	="VOLANTE SYSTEMS PTY LTD"	24-Dec-07 12:54 PM	

+="CN52535"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	180000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	

+="CN52536"	"Advertising & Promotion Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	17-Dec-07	31-Jan-08	11060.50	=""	="GIRAFFE VISUAL COMMUNICATION MANAGEMENT"	24-Dec-07 12:54 PM	

+="CN52537"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	12-Jan-08	09-Jan-09	166000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:54 PM	

+="CN52538"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	16-Jan-08	19141.22	="06/06590"	="ZALLCOM PTY LTD"	24-Dec-07 12:54 PM	

+="CN52539"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	22-Dec-07	19-Dec-08	195000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	24-Dec-07 12:54 PM	

+="CN52540"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	20-Dec-07	10-Jun-08	30000.00	="fin/CAPSHR"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	24-Dec-07 12:54 PM	

+="CN52541"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	02-Jan-08	31-Mar-08	51920.00	="FIN05CPRP004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:54 PM	

+="CN52542"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Building and Construction and Maintenance Services"	20-Dec-07	29-Feb-08	16016.00	="NA"	="HONEYWELL LTD"	24-Dec-07 12:55 PM	

+="CN52543"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	26-Jan-08	27-Jun-08	255000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	

+="CN52544"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	63177.93	="AIMS"	="QSP ASIA PACIFIC PTY LTD"	24-Dec-07 12:55 PM	

+="CN52545"	"OHS & Medical Costs"	="Department of Finance and Administration"	24-Dec-07	="Medical Equipment and Accessories and Supplies"	21-Dec-07	04-Jan-08	24390.00	=""	="PARASOL EMT PTY LTD"	24-Dec-07 12:55 PM	

+="CN52546"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	38182.10	="n/a"	="EB2BCOM PTY LTD"	24-Dec-07 12:55 PM	

+="CN52547"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	88000.00	="FIN 05CRP 004-41"	="ICON RECRUITMENT PTY LTD"	24-Dec-07 12:55 PM	

+="CN52548"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jan-08	27-Jun-08	86000.00	="FIN05 CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	24-Dec-07 12:55 PM	

+="CN52549"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Dec-07	19-Dec-08	220000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:55 PM	

+="CN52550"	"Capital Expenditure - IT"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	30-May-08	277283.61	="0"	="CERULEAN SOLUTIONS LTD"	24-Dec-07 12:56 PM	

+="CN52551"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	24-Dec-07	="Information Technology Broadcasting and Telecommunications"	21-Dec-07	31-Jan-08	29099.93	=""	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	24-Dec-07 12:56 PM	

+="CN52552"	"Security Costs"	="Department of Finance and Administration"	24-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	21-Dec-07	30-Apr-08	207099.00	=""	="HONEYWELL LTD"	24-Dec-07 12:56 PM	

+="CN52553"	"Contractor Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	02-Feb-08	30-Jan-09	175000.00	="FIN05 CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	24-Dec-07 12:56 PM	

+="CN52554"	"Project Manager and Superintendency"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	13-Oct-08	750000.00	="Pre Austender arrangements"	="THINC PROJECTS AUSTRALIA PTY LTD"	24-Dec-07 12:56 PM	

+="CN52555"	"Architectural Services"	="Department of Finance and Administration"	24-Dec-07	="Engineering and Research and Technology Based Services"	19-Dec-07	31-Jan-08	95249.30	=""	="PHILLIPS SMITH CONWELL ARCHITECTS PTY LT"	24-Dec-07 12:56 PM	

+="CN52556"	"Construction Early Works"	="Department of Finance and Administration"	24-Dec-07	="Environmental Services"	19-Dec-07	30-Jun-08	930000.00	=""	="LAND DEVELOPMENT AGENCY"	24-Dec-07 12:56 PM	

+="CN52557"	"Consultancy Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	19-Dec-07	11-Jan-08	31900.00	="Unknown"	="RESULTS CONSULTING (AUSTRALIA)"	24-Dec-07 12:56 PM	

+="CN52558"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	18-Dec-07	31-Mar-08	14305.00	="N/A"	="AUSTRALIAN GOVERNMENT SOLICITOR"	24-Dec-07 12:56 PM	

+="CN52559"	"Legal Costs"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jan-08	25-Jan-08	19455.44	="0"	="CLAYTON UTZ - 404917"	24-Dec-07 12:57 PM	

+="CN52561"	"Graphic Design and Production Services"	="Department of Finance and Administration"	24-Dec-07	="Management and Business Professionals and Administrative Services"	24-Dec-07	29-Feb-08	60074.30	=""	="COUCH CREATIVE PTY LTD"	24-Dec-07 12:57 PM	

+="CN52594"	"Legal services"	="Australian Competition and Consumer Commission"	27-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	10859.00	=""	="Australian Government Solicitor"	27-Dec-07 03:04 PM	

+="CN52598"	"Legal Services"	="Australian Competition and Consumer Commission"	27-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	16362.00	=""	="Australian Government Solicitor"	27-Dec-07 03:27 PM	

+="CN52601"	"Legal Services"	="Australian Competition and Consumer Commission"	27-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	21162.00	=""	="Australian Government Solicitor"	27-Dec-07 03:57 PM	

+="CN52602"	"Legal Services"	="Australian Competition and Consumer Commission"	27-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	21988.00	=""	="Australian Government Solicitor"	27-Dec-07 04:01 PM	

+="CN52603"	"Legal Services"	="Australian Competition and Consumer Commission"	27-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	22487.00	=""	="Australian Government Solicitor"	27-Dec-07 04:04 PM	

+="CN52619"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	58809.00	=""	="Australian Government Solicitor"	28-Dec-07 11:13 AM	

+="CN52627"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	233069.00	=""	="Australian Government Solicitor"	28-Dec-07 04:37 PM	

+="CN52630"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	402333.00	=""	="Australian Government Solicitor"	28-Dec-07 04:49 PM 

--- /dev/null
+++ b/admin/partialdata/24May2008to26May2008valto.xls
@@ -1,1 +1,153 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN85995"	"Lease of carparking bay 233 Adelaide Terrace Perth."	="Australian Competition and Consumer Commission"	24-May-08	="Real estate services"	01-Apr-08	31-Mar-18	66411.27	=""	="Macquarie Office Management Limited"	24-May-08 02:37 PM	

+="CN85997"	"Lease of premises and carparking at L2, 11-19 Grenfell Street Adelaide."	="Australian Competition and Consumer Commission"	24-May-08	="Real estate services"	01-Jul-08	30-Jun-18	3137866.12	=""	="Grenfell Street Nominees Pty Ltd"	24-May-08 02:50 PM	

+="CN85998"	"PROVISION OF ENGINEER PLANT REPAIR PARTS"	="Defence Materiel Organisation"	26-May-08	="Heavy construction machinery and equipment"	26-May-08	25-Jun-08	16355.16	=""	="THALES AUSTRALIA"	26-May-08 08:26 AM	

+="CN85999"	"Provision of services in relation to high level Project Management services"	="Australian Federal Police"	26-May-08	="Project management"	01-Jul-08	30-Jun-09	256484.80	=""	="Stratagem Computer Contractors Pty Limited"	26-May-08 09:06 AM	

+="CN86000-A1"	" Facilitate the ATO People SES/EL2 annual conference "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Sep-08	20800.00	="06.028-59"	="Hoffman Donohue P/L"	26-May-08 09:07 AM	

+="CN86001"	"Procurement of Records Mangement Stationery Supplies"	="Australian Securities and Investments Commission"	26-May-08	="Stationery"	01-Oct-07	31-Oct-07	21376.14	=""	="Codafile"	26-May-08 09:24 AM	

+="CN86002"	" Corporate merchandise for AFP forensics "	="Australian Federal Police"	26-May-08	="Security and control equipment"	01-May-08	30-Jun-08	17168.75	=""	="Corporate Eepress"	26-May-08 09:26 AM	

+="CN86004-A1"	"Provision of Project Management Services"	="Australian Securities and Investments Commission"	26-May-08	="Project management"	02-Jan-08	24-Apr-08	93307.50	=""	="Ajilon Australia PtyLtd"	26-May-08 09:40 AM	

+="CN86006-A2"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	02-Jan-08	24-Apr-08	59015.00	=""	="Ajilon Australia Pty Ltd"	26-May-08 09:46 AM	

+="CN86007-A1"	" Lease at 430 Wilson St, Albury, VIC "	="Department of Human Services"	26-May-08	="Lease and rental of property or building"	01-Sep-09	28-Oct-16	8759485.42	=""	="Regional Holding Pty Ltd"	26-May-08 09:54 AM	

+="CN86008"	"Supply of Plain Weave Khaki Cloth"	="Defence Materiel Organisation"	26-May-08	="Plain weave cotton fabrics"	11-Apr-08	18-May-08	19790.32	=""	="Australian Defence Apparel"	26-May-08 09:59 AM	

+="CN86012"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	26-May-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	109156.30	="."	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-May-08 10:15 AM	

+="CN86013"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	13-Jul-07	25-Sep-07	20760.00	=""	="HYATT HOTEL CANBERRA"	26-May-08 10:16 AM	

+="CN86014"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="fin/CAPSHR"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86015"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86016"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86017"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	20250.00	="N/A"	="GREYTHORN PTY LTD"	26-May-08 10:16 AM	

+="CN86018"	"Recruitment Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	28-Nov-08	123874.00	=""	="CLICKS RECUIT PTY LTD"	26-May-08 10:16 AM	

+="CN86019"	"Documentation Services"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	33000.00	="n/a"	="UNITED FOCUS PTY LTD"	26-May-08 10:16 AM	

+="CN86020"	"Fire Services Payment"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-10	26600000.00	=""	="ACT EMERGENCY SERVICE BUREAU - 10000173"	26-May-08 10:16 AM	

+="CN86021"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	41250.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	26-May-08 10:17 AM	

+="CN86022"	"Market Research Advisory Services"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	28-Nov-08	248424.00	="exercise of contract extension"	="ROY MORGAN RESEARCH PTY LTD"	26-May-08 10:17 AM	

+="CN86023"	"Services of Capital Works Assistant"	="Questacon"	26-May-08	="Temporary clerical or administrative assistance"	01-May-08	23-Oct-08	44000.00	=""	="Vedior Asia Pacific P/L"	26-May-08 10:21 AM	

+="CN86027"	"2xLCD Television purchased and installation and accessories.11/03/2008 was date that invoice was signed.  Goods were delivered within 2 weeks of signing."	="Department of Veterans' Affairs"	26-May-08	="Consumer electronics"	11-Mar-08	11-Mar-08	41676.00	=""	="GPT Designs Pty Ltd"	26-May-08 11:05 AM	

+="CN86028"	"Property Lease - Memorandum of Understanding (MOU) for 120 Miller Rd Villawood NSW 2163"	="Department of Veterans' Affairs"	26-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	66900.00	=""	="National Archives of Australia"	26-May-08 11:05 AM	

+="CN86029"	" Rent for VVCS Townsville, "	="Department of Veterans' Affairs"	26-May-08	="Real estate services"	01-Dec-04	09-Nov-14	1107546.00	=""	="Elders Real Estate"	26-May-08 11:05 AM	

+="CN86030"	"Provisions for Professional Development Programme"	="Department of Immigration and Citizenship"	26-May-08	="Productivity or efficiency studies or implementation"	12-May-08	26-Jun-08	13200.00	=""	="D'Arcy Consulting Group Pty Limited"	26-May-08 11:21 AM	

+="CN86003"	"Provision of Financial Management Training Modules 2008-2011"	="Department of Broadband Communications and the Digital Economy"	26-May-08	="Public Utilities and Public Sector Related Services"	23-Jan-08	23-Jan-11	444640.00	="CCR/06/2478"	="Australian Capital Training Group"	26-May-08 11:26 AM	

+="CN86032"	"Provision of IT contracting services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	30-Apr-08	42407.00	=""	="Allegro Recruitment Consulting Ltd"	26-May-08 11:42 AM	

+="CN86033"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	13-May-08	11-Jul-08	35060.00	=""	="Greythorn Pty Ltd"	26-May-08 11:48 AM	

+="CN86035"	"CPE002796-12 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15203.65	=""	="CRIMTRAC"	26-May-08 11:53 AM	

+="CN86036"	"CPO021905 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Information Technology Broadcasting and Telecommunications"	30-Apr-08	30-Jun-08	49659.50	=""	="KW McCulloch Pty Ltd"	26-May-08 11:53 AM	

+="CN86037"	"CPO021920 - Provision of Reporting Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	10-Apr-08	14889.60	=""	="Ebisprint"	26-May-08 11:54 AM	

+="CN86038"	"CPE003920-5 - Supply of Stationery"	="Australian Customs and Border Protection Service"	26-May-08	="Office supplies"	23-Apr-08	06-May-08	13487.94	=""	="Corporate Express Australia Ltd"	26-May-08 11:54 AM	

+="CN86039"	"08/2764 - Data Entry Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	16800.00	=""	="Patriot Allianace"	26-May-08 11:54 AM	

+="CN86040"	"CPE004792-1 - Construction Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	24-May-08	17600.00	=""	="ATIR Design Pty Ltd"	26-May-08 11:54 AM	

+="CN86041"	"CPO021136 - Supply & Install Solar Panels"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	05-Jun-08	48380.28	=""	="Motorola Australia Pty Ltd"	26-May-08 11:54 AM	

+="CN86042"	"CPO021985 - Supply & Install Solar Panels"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	05-Jun-08	31016.55	=""	="Motorola Australia Pty Ltd"	26-May-08 11:54 AM	

+="CN86043"	"07/2196 - Cleaning and Associated Services"	="Australian Customs and Border Protection Service"	26-May-08	="Cleaning and janitorial services"	01-Feb-08	31-Jan-11	43200.00	=""	="EJ & KP Dick Contractors T/A Broome Industrial Rag"	26-May-08 11:54 AM	

+="CN86044"	"07/2461 - Executive Search Services (CPE004830-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Human resources services"	05-Nov-07	30-Mar-08	60000.00	=""	="Watermark Search International"	26-May-08 11:55 AM	

+="CN86045"	"CPO021963 -Commercial Grade Furniture"	="Australian Customs and Border Protection Service"	26-May-08	="Furniture and Furnishings"	01-May-08	31-May-08	17391.00	=""	="The Living Edge Group Pty Ltd"	26-May-08 11:55 AM	

+="CN86046"	"CPE004892-1 - Construction Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Building and Construction and Maintenance Services"	13-May-08	25-Jun-08	10105.22	=""	="ATIR Design Pty Ltd"	26-May-08 11:55 AM	

+="CN86047"	"08/2563 - Management System (CPE004891-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	250000.00	=""	="Keywatch Systems Queensland"	26-May-08 11:55 AM	

+="CN86048"	"CPO022126 - Supply and Installation of Radio Communnications Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	21799.80	=""	="Omnitronics Pty Ltd"	26-May-08 11:55 AM	

+="CN86050"	"CPE004776-1  - Annual Conference"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	12-Jun-08	25000.00	=""	="The Sands Torquay"	26-May-08 11:55 AM	

+="CN86051"	"CPO022108 - Interview Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	13758.60	=""	="TPR Systems"	26-May-08 11:56 AM	

+="CN86069"	"CPE004880-1 - Fuel"	="Australian Customs and Border Protection Service"	26-May-08	="Fuels"	01-Apr-08	01-Apr-08	18094.54	=""	="Port Kembla Marine Fuels"	26-May-08 11:58 AM	

+="CN86071"	"08/2555 - Research & Development"	="Australian Customs and Border Protection Service"	26-May-08	="Professional engineering services"	10-Apr-08	30-Sep-09	1066000.00	=""	="QRSciences Pty Ltd"	26-May-08 11:59 AM	

+="CN86072-A1"	"08/2573 - Apprecticeship Program"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	01-Mar-08	30-Jun-11	437000.00	=""	="Excelior"	26-May-08 11:59 AM	

+="CN86073"	"CPO022120 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	12581.25	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86074"	"CPO022119 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	37213.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86075"	"CPO022118 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	24310.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86076"	"CPO022117 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	10846.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86077"	"CPO021662 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	08-May-08	11261.25	=""	="ID Supplies"	26-May-08 11:59 AM	

+="CN86079"	"08/2722 - Project Management Training"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	14-May-08	30-Jun-08	16000.00	=""	="Codarra Advanced Systems Pty Ltd"	26-May-08 12:00 PM	

+="CN86080"	"CPE002796-13 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13809.95	=""	="CRIMTRAC"	26-May-08 12:00 PM	

+="CN86081"	"07/2182 - Suplly and Installation of Software (CPE004774-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Computer services"	01-Aug-07	30-Jun-08	404129.00	=""	="Eden Technology Pty Ltd"	26-May-08 12:00 PM	

+="CN86082"	"CPO022210 - Software Upgrade"	="Australian Customs and Border Protection Service"	26-May-08	="Computer services"	15-May-08	15-May-08	12870.00	=""	="Southern Cross Computing Pty Ltd"	26-May-08 12:00 PM	

+="CN86083"	"08/2810 - Supply Chairs"	="Australian Customs and Border Protection Service"	26-May-08	="Furniture and Furnishings"	02-May-08	01-May-09	84122.50	=""	="The Living Edge Group Pty Ltd"	26-May-08 12:00 PM	

+="CN86084-A2"	"06/1676 - Consultancy Services"	="Australian Customs and Border Protection Service"	26-May-08	="Business and corporate management consultation services"	03-Mar-08	30-Jun-10	60000.00	=""	="Adelaide Research & Innovation"	26-May-08 12:00 PM	

+="CN86085"	"CPO022282 - Motor vehicle hazard equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Motor vehicles"	20-May-08	20-May-08	11414.15	=""	="Hazard Systems"	26-May-08 12:00 PM	

+="CN86086"	"CPE004525-1 - Survey Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	13-May-08	23320.00	=""	="McKinlay Morgan & Associates Pty Ltd"	26-May-08 12:01 PM	

+="CN86087"	"08/2613 - IT Contractor"	="Australian Customs and Border Protection Service"	26-May-08	="Human resources services"	13-Feb-08	29-Feb-08	33880.00	=""	="Microsoft"	26-May-08 12:01 PM	

+="CN86088"	"CPE003920 - Stationery and Office Consumables"	="Australian Customs and Border Protection Service"	26-May-08	="Office supplies"	07-May-08	20-May-08	13041.24	=""	="Corporate Express Australia Ltd"	26-May-08 12:01 PM	

+="CN86089"	"CPO022083 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	40394.00	=""	="AusCheck"	26-May-08 12:01 PM	

+="CN86090"	"CPO022139 - Training Services"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	21-May-08	22-May-08	29370.00	=""	="Work Solutions Australia"	26-May-08 12:01 PM	

+="CN86091"	"CPO022187 - Supply of Brochures"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	22-May-08	24970.00	=""	="National Capital Printing and CMW"	26-May-08 12:01 PM	

+="CN86092"	"CPO015061 - Supply and Installation of Conference Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	16-Sep-07	06-Dec-07	17297.00	=""	="Electroboard Solutions Pty Ltd"	26-May-08 12:01 PM	

+="CN86093"	"CPO015060 - Supply and Installation of Conference Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	16-Sep-07	06-Dec-07	15030.80	=""	="Electroboard Solutions Pty Ltd"	26-May-08 12:01 PM	

+="CN86094"	"CPO022394 - Training Services"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	21-May-08	31-May-08	13993.76	=""	="Tanner James Management Consultants Pty Ltd"	26-May-08 12:02 PM	

+="CN86095"	" Recriutment of Finance Officer "	="Australian Crime Commission"	26-May-08	="Personnel recruitment"	25-Feb-08	02-May-08	30195.00	=""	="Hays Personnel Services"	26-May-08 12:06 PM	

+="CN86096"	"Printing of NAT15249 Tax practitioner seminar. Qty: 25,000"	="Australian Taxation Office"	26-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-May-08	22-Jul-08	50022.30	=""	="Blue Star Print Group t/a National Capital Printing"	26-May-08 12:13 PM	

+="CN86097"	"Hardware Acquisition and Maintenance Contract for Supply and installation of Server and Disk Hardware only"	="Australian Securities and Investments Commission"	26-May-08	="Computer servers"	01-May-08	30-Jun-08	134178.00	=""	="Frontline Systems Australia Pty Ltd"	26-May-08 12:16 PM	

+="CN86098-A1"	"Recruitment of Finance personnel"	="Australian Crime Commission"	26-May-08	="Personnel recruitment"	12-Mar-08	09-May-08	16853.98	=""	="Hudson Global Resources"	26-May-08 12:18 PM	

+="CN86024"	"Adelaide removals - library amd 'ad hoc' removals during the Adelaide refurbishment"	="Australian Securities and Investments Commission"	26-May-08	="Transportation and Storage and Mail Services"	12-May-08	30-Oct-08	20354.40	=""	="Allied Pickfords"	26-May-08 12:19 PM	

+="CN86104"	"AIRCRAFT SPARES:QTY 200:NSN_5365-01-092-7491:COUPLING: ITEM IS F.E.P( FLIGHT ESSENTIAL PART) AND PROCURRED FROM OEM ONLY."	="Defence Materiel Organisation"	26-May-08	="Military rotary wing aircraft"	26-May-08	13-Apr-09	64354.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-May-08 01:16 PM	

+="CN86105-A1"	"AIRCRAFT SPARES:QTY 40:NSN_5365-01-223-3629:SPACER:ITEM IS F.E.P(FLIGHT ESSENTIAL PART) AND PROCURRED FROM OEM ONLY."	="Defence Materiel Organisation"	26-May-08	="Military rotary wing aircraft"	26-May-08	03-Jan-09	17179.36	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-May-08 01:32 PM	

+="CN86106"	" 360 Degree Multi Source Feedback (MSF) Process "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-May-08	50225.00	="06.028"	="Fyusion Asia Pacific P/L"	26-May-08 01:35 PM	

+="CN86108"	"Media and Promotions consultancy extention"	="Australian Institute of Family Studies"	26-May-08	="Public relation services"	21-Feb-08	02-May-08	21000.00	=""	="Hadsel Grace and Associates Pty Ltd"	26-May-08 01:54 PM	

+="CN86109"	"SUPPLY OF VARIOUS MEDICAL CONSUMABLE PRODUCTS."	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	08-May-08	09-May-08	19452.40	="N/A"	="OPC"	26-May-08 02:03 PM	

+="CN86111-A1"	"Development of 2009-2011 Strategic Plan"	="Australian Institute of Family Studies"	26-May-08	="Strategic planning consultation services"	26-May-08	31-Aug-08	42500.00	=""	="Jarratt Enterprises Pty Ltd"	26-May-08 02:16 PM	

+="CN86114"	"SUPPLY OF VARIOUS PHARMACEUTICAL PRODUCTS."	="Defence Materiel Organisation"	26-May-08	="Drugs and Pharmaceutical Products"	08-May-08	09-Jun-08	46484.24	="N/A"	="Symbion Pharmacy"	26-May-08 02:32 PM	

+="CN86115"	"Phone bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	15-May-08	15-May-08	17911.56	=""	="Telstra  (ID No. 740)"	26-May-08 02:32 PM	

+="CN86116"	"Phone bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	15-May-08	15-May-08	16056.28	=""	="Telstra  (ID No. 740)"	26-May-08 02:32 PM	

+="CN86117"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	09-May-08	31-May-08	28851.19	=""	="Stratos"	26-May-08 02:33 PM	

+="CN86118"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	12-May-08	31-May-08	23377.20	=""	="URSYS"	26-May-08 02:33 PM	

+="CN86119"	"Telecommunications Serv ices"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	97784.19	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86120"	"AMDAR Data"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	38579.31	=""	="Qantas Airways Ltd"	26-May-08 02:33 PM	

+="CN86121"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	15011.11	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86122"	"Relocation of Comms Building & Tower"	="Bureau of Meteorology"	26-May-08	="General building construction"	07-May-08	31-May-08	90178.00	=""	="Cumner Contracting Pty Ltd"	26-May-08 02:33 PM	

+="CN86123"	"Main Phone Bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	13-May-08	13-May-08	23978.54	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86124"	"Removals & Storage"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	13-May-08	31-May-08	59274.39	=""	="TOLL TRANSITIONS"	26-May-08 02:33 PM	

+="CN86125"	"Freight - week 15"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	13-May-08	31-May-08	24060.55	=""	="TNT EXPRESS"	26-May-08 02:33 PM	

+="CN86127"	"Global model products - hi-res products"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	31-May-08	135194.45	=""	="British Meteorological Office, UK"	26-May-08 02:34 PM	

+="CN86128"	"Public User Surveys"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	41774.70	=""	="I-View P/L"	26-May-08 02:34 PM	

+="CN86129"	"Removals and storage"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	16-May-08	31-May-08	23722.73	=""	="TOLL TRANSITIONS"	26-May-08 02:34 PM	

+="CN86130"	"P'ship Fee- Aust Climate Future Event April 2008"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	16-May-08	31-May-08	12000.00	=""	="Ipaa"	26-May-08 02:34 PM	

+="CN86131"	"Telecommunications Serv ices"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	19-May-08	31-May-08	17501.00	=""	="AAPT LIMITED"	26-May-08 02:34 PM	

+="CN86132"	"Job Ads - Hydrology campaign"	="Bureau of Meteorology"	26-May-08	="Marketing and distribution"	21-May-08	31-May-08	12177.00	=""	="HMA BLAZE PTY LTD"	26-May-08 02:34 PM	

+="CN86133"	"Handheld Cable tester"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	13-May-08	06-Jun-08	11488.49	=""	="TRIO Smartcal Pty Ltd"	26-May-08 02:34 PM	

+="CN86134"	"Imitation 9940 Data Cartridges Qty 750"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	03-May-09	84966.75	=""	="Officemax Australia Ltd"	26-May-08 02:34 PM	

+="CN86135"	"HP workstation (Qty 4 and 30 monitors"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	30-Jun-08	23855.00	=""	="City Software Pty Ltd"	26-May-08 02:35 PM	

+="CN86136"	"Satellte tracking antenna (spare parts)"	="Bureau of Meteorology"	26-May-08	="Electronic hardware and component parts and accessories"	13-May-08	27-Jun-08	59301.00	=""	="Environmental Systems & Services"	26-May-08 02:35 PM	

+="CN86137"	"Oscilloscope"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	13-May-08	12-Jun-08	14018.40	=""	="Measurement Innovation Pty Ltd"	26-May-08 02:35 PM	

+="CN86138"	"Data Cartridges Qty 300"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	16-May-08	27720.00	=""	="Prodata Pty Ltd"	26-May-08 02:35 PM	

+="CN86139"	"Del D630 Notebook Qty 93"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	13-May-08	23-May-08	109972.50	=""	="Dell Australia  Pty Ltd"	26-May-08 02:35 PM	

+="CN86140"	"CompactDaq including software/accessories"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	13-May-08	15-May-08	15301.00	=""	="National Instruments"	26-May-08 02:35 PM	

+="CN86141"	"ManageSoft Suite - 8 x 5 support 1 July 2008 - 30 June 2009"	="Bureau of Meteorology"	26-May-08	="Computer services"	15-May-08	16-May-08	36424.96	=""	="MANAGESOFT CORPORATION LTD"	26-May-08 02:35 PM	

+="CN86142"	"Data Tape Cartridges Qty 460 & Cleaning Cartidge Qty 5"	="Bureau of Meteorology"	26-May-08	="Computer services"	15-May-08	16-May-08	70009.50	=""	="Prodata Pty Ltd"	26-May-08 02:36 PM	

+="CN86143"	"Focus Group Testing-Tsunami Warning"	="Bureau of Meteorology"	26-May-08	="Business administration services"	15-May-08	16-May-08	46201.00	=""	="Colmar Brunton"	26-May-08 02:36 PM	

+="CN86144"	"Apple Mac Pro Qty 1 mONITORS 2 GB DDR Memory Qty 8"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	19-May-08	20-May-08	11472.91	=""	="Next Byte Pty Ltd"	26-May-08 02:36 PM	

+="CN86145"	"2-D Video Distrometer"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	20-May-08	27-May-08	107540.70	=""	="Joanneum Research"	26-May-08 02:36 PM	

+="CN86146"	"site works essendon airport"	="Bureau of Meteorology"	26-May-08	="Building and Construction and Maintenance Services"	20-May-08	20-Jun-08	50402.00	=""	="Active Utilities Pty Ltd"	26-May-08 02:36 PM	

+="CN86147"	"OFFICE FURNITURE AND FITTINGS"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	12-Jun-08	28638.45	=""	="Brownbuilt Pty Ltd"	26-May-08 02:36 PM	

+="CN86148"	"Meteorological services re. Tsunami Assessments"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-May-08	14368.96	=""	="Meteorological Service of NZ"	26-May-08 02:36 PM	

+="CN86149"	"Personnel Serviices"	="Bureau of Meteorology"	26-May-08	="Human resources services"	21-May-08	27-May-08	69999.60	=""	="Hays Specialist Recruitment"	26-May-08 02:36 PM	

+="CN86150"	"REFURBISH WARO MAINTENANCE CENTRE BELMONT"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	13352.90	=""	="Davro Interiors Pty Ltd"	26-May-08 02:36 PM	

+="CN86151"	"Printing of Bureau of Meteorology Review Booklet"	="Bureau of Meteorology"	26-May-08	="Printed media"	22-May-08	23-May-08	11550.00	=""	="Vega Colour Group Pty Ltd"	26-May-08 02:37 PM	

+="CN86152"	"ML910 Laptop 80 GB Hard Drive 1 GB DDR Ram"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	22-May-08	30-May-08	12100.00	=""	="Tough Corp"	26-May-08 02:37 PM	

+="CN86153"	"Solomon Is and PNG Weather Service AUSAID Project"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	22-May-08	30-Jun-08	19896.25	=""	="Wharington International Pty Ltd"	26-May-08 02:37 PM	

+="CN86154"	"Dell PowerEdge 2900 Server (Qty 2)"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	23-May-08	30-May-08	22880.00	=""	="Dell Australia  Pty Ltd"	26-May-08 02:37 PM	

+="CN86155"	"Vaisalal Electronic Barometers Qty 10"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	23-May-08	20-Jun-08	42570.00	=""	="Vaisala Pty Ltd"	26-May-08 02:37 PM	

+="CN86156-A1"	"Radiosondes"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	23-May-08	20-Jun-08	355322.00	=""	="Vaisala Pty Ltd"	26-May-08 02:37 PM	

+="CN86157"	"Large Scale Data Storage System"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	23-May-08	20-Jun-08	1670246.56	=""	="Sun Microsystem Australia P/L"	26-May-08 02:37 PM	

+="CN86126"	"Training Course"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	29-May-08	38720.00	=""	="IBM AUSTRALIA LIMITED"	26-May-08 02:38 PM	

+="CN86159"	" extended warranty for printers "	="Australian Crime Commission"	26-May-08	="Guarantee agreements"	14-Apr-08	13-Apr-10	77748.00	=""	="Cornerstone TSS Pty Ltd"	26-May-08 02:44 PM	

+="CN86160"	"Exhibits for Questacon Wonderworks Exhibition"	="Questacon"	26-May-08	="Auto shows or other exhibits"	22-May-08	23-Oct-08	62825.00	=""	="Techniquest"	26-May-08 02:44 PM	

+="CN86161"	"VEHICLE REPAIRS"	="Department of Defence"	26-May-08	="Motor vehicles"	28-Apr-08	28-May-08	10266.88	=""	="RGM"	26-May-08 02:45 PM	

+="CN86162"	"Training Services"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	27-Jun-08	37500.00	=""	="IBM AUSTRALIA LIMITED"	26-May-08 02:45 PM	

+="CN86163"	"Class A shedders"	="Australian Crime Commission"	26-May-08	="Office machines and their supplies and accessories"	18-Apr-08	24-Apr-08	38940.00	=""	="GBC Fordigraph"	26-May-08 02:58 PM	

+="CN86158"	"BESS Business Analyst Training"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	151800.00	="08.090"	="SMS Consulting Group Ltd"	26-May-08 03:01 PM	

+="CN86166"	"VEHICLE REPAIRS"	="Department of Defence"	26-May-08	="Motor vehicles"	21-Apr-08	21-May-08	33447.78	=""	="MICKS AUTOS"	26-May-08 03:07 PM	

+="CN86164"	" SUPPLY OF VARIOUS MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	08-May-08	08-Jun-08	17044.50	="N/A"	="OPC"	26-May-08 03:08 PM	

+="CN86169"	" SUPPLY OF VARIOUS MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	06-May-08	30-May-08	17609.90	="N/A"	="SMITH & NEPHEW (AUSTRALIA )P/L"	26-May-08 03:31 PM	

+="CN86100-A2"	" Perform Due Dilligence activities with initial focus on MNS bundle. "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	15-Aug-08	135872.00	="07.102"	="ITNewcom Pty Limited"	26-May-08 03:34 PM	

+="CN86172"	"Supply of Voice Over Internet Protocal (VOIP) phone equipment"	="Australian Federal Police"	26-May-08	="Communications Devices and Accessories"	08-Dec-05	07-Dec-08	37594.15	=""	="Avaya Australia Pty Ltd"	26-May-08 03:44 PM	

+="CN86173"	" SUPPLY OF MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	05-May-08	05-Jun-08	14300.00	="N/A"	="LMA PACMED"	26-May-08 04:00 PM	

+="CN86174"	"Legal services"	="National Competition Council"	26-May-08	="Legal services"	02-May-08	31-May-08	25258.16	=""	="Clayton Utz"	26-May-08 04:08 PM	

+="CN86175"	"Legal services"	="National Competition Council"	26-May-08	="Legal services"	29-Apr-08	30-May-08	15747.05	=""	="Clayton Utz"	26-May-08 04:08 PM	

+="CN86176"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	07-May-08	06-Jun-08	11061.60	="N/A"	="3M AUSTRALIA PTY LTD"	26-May-08 04:14 PM	

+="CN86177"	"Provision of Project Management Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	12-May-08	11-Nov-08	203775.00	=""	="Ajilon Australia Pty Ltd"	26-May-08 04:20 PM	

+="CN86178"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	16-May-08	16-Jun-08	15358.64	="N/A"	="CARESTREAM HEALTH AUSTRALIA PTY LTD"	26-May-08 04:25 PM	

+="CN86179"	"Management advisory services"	="Australian Competition and Consumer Commission"	26-May-08	="Management advisory services"	21-May-08	31-Dec-08	60000.00	=""	="Economists incorporated"	26-May-08 04:26 PM	

+="CN86180"	"Provision of Solution Architectural Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	25-Apr-08	86130.00	=""	="Oakton Services Pty Ltd"	26-May-08 04:27 PM	

+="CN86181"	"Provision of Project Management services"	="Australian Securities and Investments Commission"	26-May-08	="Project management"	12-May-08	21-Jul-08	301400.00	=""	="Oakton Services Pty Ltd"	26-May-08 04:30 PM	

+="CN86183-A1"	"Provision of IT contracting services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	25-Apr-08	43894.40	=""	="Oakton Services Pty Ltd"	26-May-08 04:35 PM	

+="CN86191-A2"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	26-May-08	="Legal services"	28-Apr-08	30-Jun-09	280000.00	=""	="Boston, Tomo R. O."	26-May-08 05:03 PM	

+="CN86192-A1"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	26-May-08	="Legal services"	16-May-08	30-Jun-08	38000.00	=""	="Halley, John"	26-May-08 05:07 PM	

+="CN86193"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1238 IAW Standing offer PN8875."	="Defence Materiel Organisation"	26-May-08	="Aerospace systems and components and equipment"	19-May-08	30-Jun-08	54589.38	=""	="Goodrich Control Systems"	26-May-08 05:23 PM	

+="CN86194"	"Repair/Modification of F/A-18 GEnerator Converter Unit S/No 1801 IAW Standing Offer PN8875."	="Defence Materiel Organisation"	26-May-08	="Aerospace systems and components and equipment"	19-May-08	30-Jun-08	55149.61	=""	="Goodrich Control Systems"	26-May-08 05:28 PM 

--- /dev/null
+++ b/admin/partialdata/25Jan2008to29Jan2008valto.xls
@@ -1,1 +1,231 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN56547"	"Motor Vehicle Parts"	="Department of Defence"	25-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jan-08	25-Feb-08	12995.13	=""	="Volvo Commerical Vehicles"	25-Jan-08 08:24 AM	

+="CN56548"	" Survey & Inspection of ECBA  Refurbishment of 40 ECBA "	="Defence Materiel Organisation"	25-Jan-08	="Refurbishing services"	21-Jan-08	28-Jan-08	28321.49	=""	="HELLWEG INTERNATIONAL PTY LTD"	25-Jan-08 08:36 AM	

+="CN55687"	"Irrigation Audit"	="Office of the Official Secretary to the Governor-General"	25-Jan-08	="Water resource management"	07-Jan-08	31-Mar-08	12100.00	=""	="Ausflow Irrigation Pty Ltd"	25-Jan-08 08:54 AM	

+="CN56552-A1"	"Post-election Conference"	="Australian Electoral Commission"	25-Jan-08	="Hotels and lodging and meeting facilities"	10-Jan-08	10-Feb-08	43318.87	=""	="Four Points by Sheraton Geelong"	25-Jan-08 09:46 AM	

+="CN56555"	"Photography and cinematography services"	="Australian Electoral Commission"	25-Jan-08	="Photographers and cinematographers"	24-Oct-07	24-Dec-07	33427.22	=""	="Freeswimmers"	25-Jan-08 10:08 AM	

+="CN56557"	"ANNUAL SERVICE AND REPAIR QTY 10 LAR VI"	="Department of Defence"	25-Jan-08	="Breathing apparatus accessories or supplies"	13-Sep-07	14-Jan-08	21285.44	=""	="DRAGER SAFETY"	25-Jan-08 10:11 AM	

+="CN56558-A2"	" Applications development support services  "	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	01-Jan-08	14-Mar-08	32666.83	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 10:15 AM	

+="CN56559"	"Case Management"	="Department of Immigration and Citizenship"	25-Jan-08	="Temporary information technology software developers"	01-Dec-06	25-May-07	4113949.00	=""	="IBM Australia Limited"	25-Jan-08 10:27 AM	

+="CN56561-A1"	"Provision of SAP HR system funcitonal requirements"	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	20-Mar-06	30-Jun-08	787930.00	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 10:48 AM	

+="CN56563-A1"	"BAND HEADWEAR PUGAREE BLUE"	="Defence Materiel Organisation"	25-Jan-08	="Clothing accessories"	17-Jan-08	15-Oct-08	55411.40	=""	="MOUNTCASTLE PTY LTD"	25-Jan-08 10:54 AM	

+="CN56564"	"Cleaning of Election premises"	="Australian Electoral Commission"	25-Jan-08	="Building cleaning services"	24-Nov-07	24-Nov-07	25354.76	=""	="Department of Education & Children's Services"	25-Jan-08 10:55 AM	

+="CN56568-A1"	"Legal Services"	="Australian Electoral Commission"	25-Jan-08	="Legal services"	23-May-07	31-Jan-08	20000.00	="AEC06/032"	="Australian Government Solicitor"	25-Jan-08 11:04 AM	

+="CN56570-A2"	" Senior analyst /programmer services to support SAP HR "	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	463601.60	="RFT 8-2007"	="Southern Cross Computing Pty Ltd"	25-Jan-08 11:07 AM	

+="CN56571-A2"	"Information technology applications development support services"	="Australian Federal Police"	25-Jan-08	="Engineering and Research and Technology Based Services"	16-Jul-07	12-Feb-08	86038.08	=""	="Southern Cross Computing Pty Ltd"	25-Jan-08 11:15 AM	

+="CN56574-A1"	" Promotion of Affirmation "	="Department of Immigration and Citizenship"	25-Jan-08	="National council services"	24-Jan-08	31-Mar-09	286000.00	=""	="National Australia Day Council"	25-Jan-08 11:40 AM	

+="CN56576"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF. "	="Defence Materiel Organisation"	25-Jan-08	="Helmet parts or accessories"	31-Jan-08	30-Apr-08	31416.00	=""	="FABRICELL INTERNATIONAL"	25-Jan-08 11:46 AM	

+="CN56578"	"Prof J Davis - Honorarium"	="Department of the Senate"	25-Jan-08	="Legal services"	01-Jan-08	31-Dec-08	37395.00	=""	="Prof J. Davis"	25-Jan-08 12:34 PM	

+="CN56579-A1"	"Deloitte - Internal Audit Services"	="Department of the Senate"	25-Jan-08	="Audit services"	01-Oct-07	30-Sep-11	330000.00	=""	="Deloitte"	25-Jan-08 12:34 PM	

+="CN56580"	"Commander - Supply of Laptops"	="Department of the Senate"	25-Jan-08	="Computer Equipment and Accessories"	14-Dec-07	14-Jan-08	12812.80	=""	="Commander NSW Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56581"	"Zalcom - Software Lic, upgrade and maint"	="Department of the Senate"	25-Jan-08	="Software"	18-Jan-08	18-Jan-09	25908.31	=""	="Zallcom Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56582"	"Design Craft - Furniture"	="Department of the Senate"	25-Jan-08	="Commercial and industrial furniture"	21-Dec-07	21-Jun-08	15176.70	=""	="Design Craft Furniture Pty Ltd"	25-Jan-08 12:34 PM	

+="CN56583"	"Recruitment Advertising"	="Australian Electoral Commission"	25-Jan-08	="Advertising"	14-Jan-08	14-Feb-08	110000.00	=""	="HMA Blaze Pty Ltd"	25-Jan-08 12:54 PM	

+="CN56584-A1"	" DELETED "	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	06-Dec-07	01-Feb-08	100000.00	=""	="Polaris Sales Aust & NZ"	25-Jan-08 01:12 PM	

+="CN56585"	" Supply of ballistic cushion cover, 50 qty and ballistic squb cover, 70 qty.  NSN 2540-66-152-8520 and 2540-66-152-8521.     "	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	16-Jan-08	09-Apr-08	77925.70	=""	="LAND ROVER AUSTRALIA"	25-Jan-08 01:18 PM	

+="CN56587"	"Supply of 197 qty x cover filled vehicular, cotton duck, NSN 2540-66-128-4941; 100 qty x cover filled vehicular, camouflage, NSN 2540-66-128-5061; 60 qty x cover filled vehicular, cotton duck, black green, NSN 2540-66-128-5581 and 25 qty x cover filled vehicular corespun cotton duck, NSN 2540-128-5984."	="Defence Materiel Organisation"	25-Jan-08	="War vehicles"	30-Nov-07	30-Jun-08	447014.40	=""	="LAND ROVER AUSTRALIA"	25-Jan-08 01:32 PM	

+="CN56588"	"SUNBURN PREVENTIVE PREPARATION LOTION, AT LEAST 97% PROTECTION, BROADSPECTRUM, SUN PROTECTION FACTOR 30 PLUS, 4 HOURS WATER RESISTANT, MILKY CONSISTENCY, 125ML"	="Defence Materiel Organisation"	25-Jan-08	="Medical health associations"	25-Jan-08	03-Mar-08	17278.80	=""	="AUSTRALIAN THERAPEUTIC SUPPLIES"	25-Jan-08 01:41 PM	

+="CN56592"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	26-Oct-07	26-Nov-07	12200.00	=""	="Trim Lawns & Complete Garden Services"	25-Jan-08 02:19 PM	

+="CN56594"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	28-Nov-07	12-Dec-07	12000.00	=""	="Trim Lawns & Complete Gardening Services"	25-Jan-08 02:28 PM	

+="CN56599"	"Contractor Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	15-Jan-08	31-Jan-08	14000.00	="N/A"	="CENTRELINK"	25-Jan-08 02:39 PM	

+="CN56600"	"Capital Expenditure - Plant & Equipment"	="Department of Finance and Administration"	25-Jan-08	="Office Equipment and Accessories and Supplies"	14-Dec-07	31-Jan-08	20273.00	="N/A"	="GLOBAL TANKS PTY LTD"	25-Jan-08 02:39 PM	

+="CN56601"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	31-Dec-07	27690.71	=""	="ASSA ABLOY AUSTRALIA PTY LTD"	25-Jan-08 02:39 PM	

+="CN56602"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	21-Oct-07	28-Nov-08	95000.00	=""	="THE FEDERAL EXECUTIVE INSTITUTE"	25-Jan-08 02:39 PM	

+="CN56603"	"Contractor Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	67400.00	="n/a"	="HAYS PERSONNEL SERVICES"	25-Jan-08 02:39 PM	

+="CN56604"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	03-Jan-08	24-Jan-08	21523.68	="06/09065-04"	="INFRONT SYSTEMS PTY LTD"	25-Jan-08 02:40 PM	

+="CN56605"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Aug-07	19-Aug-08	14803.80	="FIN06/FES3"	="VERIZON"	25-Jan-08 02:40 PM	

+="CN56606"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	07-Jan-08	29-Feb-08	13145.00	=""	="THE NOUS GROUP"	25-Jan-08 02:40 PM	

+="CN56607"	"Memberships & Subscriptions Costs"	="Department of Finance and Administration"	25-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	30138.51	="N/A"	="COPYRIGHT AGENCY LIMITED"	25-Jan-08 02:40 PM	

+="CN56608"	"Training & Education Costs"	="Department of Finance and Administration"	25-Jan-08	="Education and Training Services"	13-Jan-08	31-Jan-09	71814.87	=""	="HEC PARIS"	25-Jan-08 02:40 PM	

+="CN56597"	"Gardening Services"	="Department of the Prime Minister and Cabinet"	25-Jan-08	="Grounds maintenance services"	01-Nov-07	30-Nov-07	11900.00	=""	="VIP Home Services"	25-Jan-08 02:41 PM	

+="CN56609"	" TRUNK LOCKERS, PLASTIC,OLIVE "	="Defence Materiel Organisation"	25-Jan-08	="Storage chests and cabinets and trunks"	21-Jan-08	16-Jun-08	1314500.00	="J8102"	="TRIMCAST P/L"	25-Jan-08 02:42 PM	

+="CN56611"	" METAL INSIGNIA "	="Defence Materiel Organisation"	25-Jan-08	="Badges"	25-Jan-08	15-Jun-08	192583.90	=""	="CASH'S (AUSTRALIA) PTY LTD"	25-Jan-08 02:58 PM	

+="CN56614"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Computer servers"	23-Jul-07	30-Jun-08	21230.00	=""	="DELL COMPUTER P/L"	25-Jan-08 03:15 PM	

+="CN56615"	"Inderlec Medical Systems"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Touch screen monitors"	31-Jul-07	30-Jun-08	11572.00	="NA"	="Inderlec Medical Systems P/L"	25-Jan-08 03:15 PM	

+="CN56616"	"Protiviti"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Audit services"	26-Jun-07	26-Jun-07	14976.04	=""	="Protiviti Pty Ltd"	25-Jan-08 03:15 PM	

+="CN56617"	"Technology One Ltd"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Software maintenance and support"	01-Dec-07	30-Nov-08	34872.22	=""	="Technology One"	25-Jan-08 03:16 PM	

+="CN56618"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14079.23	=""	="Tru Energy"	25-Jan-08 03:16 PM	

+="CN56619"	"Oxford Scientific"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Film badges"	01-Jul-07	30-Jun-08	54670.00	=""	="OXFORD SCIENTIFIC"	25-Jan-08 03:16 PM	

+="CN56620"	"NUSCIENTIFIC P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	25-Jan-08	="Spectrometers"	03-Oct-07	30-Oct-08	338083.00	="NA"	="Nu Scientific P/L"	25-Jan-08 03:16 PM	

+="CN56622"	"07/2256 - IT Product Installation & Maintenance"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	25-Sep-07	25-Mar-08	55000.00	=""	="CA (Pacific) Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56623"	"CPO018690 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jan-08	30-Jun-08	57762.88	=""	="Dataline Visual Link"	25-Jan-08 03:57 PM	

+="CN56624"	"07/2115 - Construction of Computer System"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	20-Dec-07	04-Feb-08	90750.00	=""	="Stultz Australia Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56625-A1"	"07/2408 - Communication Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	01-Dec-07	30-Jun-08	48598.00	=""	="Allied Technologies Australia Pty Ltd"	25-Jan-08 03:57 PM	

+="CN56626"	"CPO018712 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	10-Jan-08	30-Jun-08	30400.17	=""	="Dataline Visual Link"	25-Jan-08 03:58 PM	

+="CN56627-A1"	"07/2405 - Office fit-out"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	21-Dec-07	31-Jan-09	158840.00	=""	="Tagara Builders Pty Ltd"	25-Jan-08 03:58 PM	

+="CN56628"	"07/2285 - Software - Application and Support"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	21-Dec-07	30-Jun-11	202070.00	=""	="Critchlow Ltd"	25-Jan-08 03:58 PM	

+="CN56629"	"07/1741 Project Management Services - (CPO007771)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management advisory services"	06-Mar-07	30-Sep-07	37480.00	=""	="BurnsBridge Australia Pty Ltd"	25-Jan-08 03:58 PM	

+="CN56630"	"CPE003466-3 - Database Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	01-Jan-08	31-Mar-08	22023.60	=""	="Factiva Ltd"	25-Jan-08 03:58 PM	

+="CN56631-A1"	"05/1094 - Develop Specification and Program Management Plan"	="Australian Customs and Border Protection Service"	25-Jan-08	="Human resources services"	24-Sep-07	30-Nov-07	606767.00	=""	="Booz Allen Hamilton (Australia) Ltd"	25-Jan-08 03:58 PM	

+="CN56632"	"CPO018832 - Uniforms"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fabrics and leather materials"	16-Jan-08	15-Apr-08	44220.00	=""	="Trade Import Services"	25-Jan-08 03:58 PM	

+="CN56633"	"CPO018840 - Uniforms"	="Australian Customs and Border Protection Service"	25-Jan-08	="Clothing"	16-Jan-08	13-Feb-08	12826.90	=""	="Elegant Knitting Company"	25-Jan-08 03:58 PM	

+="CN56634"	"CPE004348-1 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Refuse disposal and treatment"	18-Dec-07	19-Dec-07	15135.12	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	25-Jan-08 03:59 PM	

+="CN56635"	"CPE004348-2 - Autoclaving Treatment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	18-Dec-07	16666.65	=""	="Transpacific Industries Pty Ltd T/A Dumpex"	25-Jan-08 03:59 PM	

+="CN56636"	"07/2258 - Construction services (Initial and variation)"	="Australian Customs and Border Protection Service"	25-Jan-08	="General building construction"	21-Sep-07	24-Dec-07	605869.00	=""	="Tech Knowledges Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56637"	"CPO018909 - Telecomunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	21-Jan-08	21-Jan-08	16719.89	=""	="Geo Science Australia"	25-Jan-08 03:59 PM	

+="CN56638"	"CPO018914 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	23555.40	=""	="LAN 1 Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56639"	"CPO018916 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	22081.40	=""	="Intelligent Surveillance"	25-Jan-08 03:59 PM	

+="CN56640"	"CPO018929 - Auditing Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Accounting and auditing"	21-Jan-08	20-Jun-08	78423.40	=""	="Motorola Australia Pty Ltd"	25-Jan-08 03:59 PM	

+="CN56641"	"CPE003370-3 - Telecommunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	17-Dec-07	17-Dec-07	16136.58	=""	="Electrotech Australia"	25-Jan-08 03:59 PM	

+="CN56647"	"CPE003131-2 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	21-Dec-07	21-Dec-07	13810.40	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:00 PM	

+="CN56648"	"CPE003131-3 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	24-Dec-07	24-Dec-07	14003.52	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:00 PM	

+="CN56650"	"CPE003370-4 - Telecommunications Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	10-Jan-08	10-Jan-08	14763.06	=""	="Electrotech Australia"	25-Jan-08 04:00 PM	

+="CN56651"	"CPE003131-4 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	29-Dec-07	29-Dec-07	12233.20	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56652"	"CPE003131-5 - Fuel"	="Australian Customs and Border Protection Service"	25-Jan-08	="Fuels"	29-Dec-07	29-Dec-07	12233.20	=""	="Sea Swift Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56653"	"CPO018947 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	21-Jan-08	30-Jun-08	28053.30	=""	="LAN 1 Pty Ltd"	25-Jan-08 04:01 PM	

+="CN56654-A1"	"07/2326 - Review Consultancy"	="Australian Customs and Border Protection Service"	25-Jan-08	="Business and corporate management consultation services"	12-Oct-07	19-Oct-07	79000.00	=""	="Apis Consulting Group (ACT) Pty"	25-Jan-08 04:01 PM	

+="CN56655"	"07/2195 - Security System - (CPO014480)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Information Technology Broadcasting and Telecommunications"	20-Aug-07	31-Jan-08	79607.00	=""	="Chubb Electronic Security"	25-Jan-08 04:01 PM	

+="CN56656"	"CPE002969-6 - Legislative Instruments"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	02-Dec-07	21-Dec-07	10079.69	=""	="Attorney Generals Department"	25-Jan-08 04:01 PM	

+="CN56657-A1"	"07/1909 - Efficiency Training"	="Australian Customs and Border Protection Service"	25-Jan-08	="Education and Training Services"	22-May-07	07-Jun-07	39649.50	=""	="D'Arcy Consulting Group"	25-Jan-08 04:01 PM	

+="CN56658"	"CPO017517 - Computer Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	29-Nov-07	21-Jan-08	11220.00	=""	="Cabiling Network Solutions"	25-Jan-08 04:01 PM	

+="CN56659"	"08/2556 - Office Refurbishment (CPO017213)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	20-Nov-07	26-Nov-07	38747.83	=""	="Interior Building Solutions"	25-Jan-08 04:01 PM	

+="CN56660"	"07/2557 - Office Refurbishment (CPO017418)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	26-Nov-07	26-Nov-07	22841.50	=""	="Design Farm"	25-Jan-08 04:02 PM	

+="CN56661"	"07/2558 - Office Refurbishment (CPO017222)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	20-Nov-07	26-Nov-07	11816.20	=""	="Dexion"	25-Jan-08 04:02 PM	

+="CN56662"	"08/2559 - Office Refurbishment (CPE004244-1)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	175000.00	=""	="R&L Constructions"	25-Jan-08 04:02 PM	

+="CN56663"	"08/2560 - Office Refurbishment (CPE004145-1)"	="Australian Customs and Border Protection Service"	25-Jan-08	="Building and Construction and Maintenance Services"	16-Nov-07	16-Nov-07	150000.00	=""	="Port City Investments"	25-Jan-08 04:02 PM	

+="CN56664-A1"	"07/2350 - Software licences and maintenance"	="Australian Customs and Border Protection Service"	25-Jan-08	="Computer services"	01-Oct-07	31-Aug-09	331132.67	=""	="Novell Pty Ltd"	25-Jan-08 04:02 PM	

+="CN56665"	"07/2218 - Fire and Emergency Training"	="Australian Customs and Border Protection Service"	25-Jan-08	="Education and Training Services"	10-Apr-07	09-Apr-08	22448.14	=""	="Sharman Property Services Pty Ltd"	25-Jan-08 04:02 PM	

+="CN56666"	"CPO018964 - Recruitment Services"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	17-Jan-08	28564.61	=""	="Recruitment Management Company"	25-Jan-08 04:02 PM	

+="CN56667"	"CPO014192 - Licences"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	19-Jan-07	18-Jan-08	54842.00	=""	="Australian Communciations and Media Authority"	25-Jan-08 04:02 PM	

+="CN56668"	"07/2206 - Radio communications licences"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	19-Jun-07	18-Jun-08	151396.00	=""	="Australian Communciations and Media Authority"	25-Jan-08 04:03 PM	

+="CN56669"	"07/2517 - Call Centre Customer Survey"	="Australian Customs and Border Protection Service"	25-Jan-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	18-Jul-08	38500.00	=""	="callcentres.com. Pty Ltd"	25-Jan-08 04:03 PM	

+="CN56670-A2"	"03/0105 - Maintenance and repair of communications equipment"	="Australian Customs and Border Protection Service"	25-Jan-08	="Telecommunications media services"	27-Mar-07	28-Mar-12	1474644.00	=""	="Motorola Australia Pty Ltd"	25-Jan-08 04:03 PM	

+="CN56673-A2"	"Services relating to day to day maintenance of the AFP's SAP financial system"	="Australian Federal Police"	26-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-06	30-Jun-08	597212.00	=""	="Southern Cross Computing Pty Ltd"	26-Jan-08 09:29 PM	

+="CN56676-A1"	"Provision of services relating to high level hands on support and management of telephony systems (GaPS Reference 1648219)"	="Australian Federal Police"	26-Jan-08	="Engineering and Research and Technology Based Services"	08-Jan-07	30-Sep-07	131155.00	=""	="Candle Australia Limited"	26-Jan-08 09:56 PM	

+="CN56679-A3"	"Services in relation to the day to day maintenance of SAP Financials"	="Australian Federal Police"	26-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	623172.00	=""	="Southern Cross Computing Pty Ltd"	26-Jan-08 10:31 PM	

+="CN56683"	"Information Technology application development support services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	196416.00	=""	="Application Development Support Services Pty Ltd"	28-Jan-08 12:17 PM	

+="CN56684-A2"	" Services relating to voice and data communication facilities (GaPS ID 1636184) "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	03-Jun-06	30-Jun-08	339540.00	=""	="Clarius Group Limited"	28-Jan-08 12:28 PM	

+="CN56686-A1"	" Information Technology applications development support services (GaPS 1648067) "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	11-Sep-06	30-Jun-08	389664.00	=""	="Candle Australia Limited"	28-Jan-08 12:51 PM	

+="CN56688-A1"	" Project Management services for major IT projects (GaPS IDs 1408032 1517592 & 1607171) "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-04	30-Jun-08	1212992.00	=""	="Candle Australia Limited"	28-Jan-08 01:07 PM	

+="CN56690"	" IT security achitecture services "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	05-Nov-07	30-Apr-08	140025.00	=""	="Icon Recruitment Pty Ltd"	28-Jan-08 01:28 PM	

+="CN56691-A2"	"Information Technology applications development services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	27-Aug-07	22-Feb-08	81404.40	=""	="Icon Recruitment Pty Ltd"	28-Jan-08 01:39 PM	

+="CN56694-A2"	"Provision of IT applications developmen support services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	17-Sep-07	22-Feb-08	75665.04	=""	="Compas Pty Ltd"	28-Jan-08 03:48 PM	

+="CN56698-A1"	" Provision of internet protocol communications technical support "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	08-Oct-07	30-Jun-08	125312.00	=""	="Aurec Pty Ltd"	28-Jan-08 04:16 PM	

+="CN56700-A1"	"Usability analysis services for all stages of a software development lifecycle"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	27-Aug-07	30-Jun-08	164736.00	=""	="Aurec Pty Ltd"	28-Jan-08 04:32 PM	

+="CN56702-A1"	"Information technology applications support services (GaPs 1658668)"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	22-Jan-07	30-Jun-08	254496.00	=""	="Compas Pty Ltd"	28-Jan-08 04:55 PM	

+="CN56704-A2"	" Services relating to testing of new and existing AFP software applications "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	08-Oct-07	22-Feb-08	62332.35	=""	="CCS Index Pty Ltd"	28-Jan-08 05:39 PM	

+="CN56705-A2"	"Sharepoint, K2 (workflow) and InfoPath environment services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	03-Oct-06	30-Jun-08	456385.60	=""	="Clicks Recruit Pty Ltd"	28-Jan-08 05:55 PM	

+="CN56707-A2"	"Services relating to prepartation of a SECRET network certification"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	06-Mar-07	30-Jun-08	302148.00	=""	="Clicks Recruit Pty Ltd"	28-Jan-08 06:21 PM	

+="CN56709-A3"	" Project management services relating to development, implementation and monitoring of integrated IT business applications and infrastructure projects "	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	15-Oct-07	31-Jan-09	270952.00	="RFT 8-2007"	="Innovative Business Computing Pty Limited"	28-Jan-08 06:34 PM	

+="CN56711-A2"	"High level technical support and management of the AFP's UNIX environment"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	29-Oct-07	30-Sep-08	185196.00	=""	="Innovative Business Computing Pty Ltd"	28-Jan-08 07:05 PM	

+="CN56713-A1"	"Information technology business analysis services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	14-Mar-08	127791.12	=""	="Icon Recruitment Pty Ltd"	28-Jan-08 07:19 PM	

+="CN56714-A1"	"review of the AFP's Enterprise Architecture and development of a future Enterprise wide architectural roadmap"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	15-Oct-07	30-Apr-08	54740.00	=""	="SMS Consulting Group Ltd"	28-Jan-08 07:39 PM	

+="CN56715"	"Information technology CMIS software maintenance and support"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	202963.00	=""	="Ross Human Directions Limited"	28-Jan-08 08:00 PM	

+="CN56716-A1"	"Provision of Internet Protocol communications technical support"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	08-Oct-07	30-Sep-08	166320.00	=""	="Peoplebank Australia Ltd"	28-Jan-08 09:00 PM	

+="CN56717-A2"	"Services relating to technical desktop server support"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	24-Sep-07	30-Sep-08	170544.00	=""	="Paxus Australia Pty Ltd"	28-Jan-08 09:12 PM	

+="CN56719-A1"	"Provision of contract management and project management for Information Services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	02-Jul-07	30-Mar-08	107855.00	=""	="Frontier Group Australia Pty Ltd"	28-Jan-08 10:13 PM	

+="CN56721-A1"	"Provison of project management services for Information Services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	08-Oct-07	31-Mar-08	121440.00	=""	="Frontier Group Australia Pty Ltd"	28-Jan-08 10:29 PM	

+="CN56723-A1"	"Information Technology security architecture services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	24-Sep-07	30-Jun-08	210936.00	=""	="Frontier Group Australia Pty Ltd"	28-Jan-08 10:39 PM	

+="CN56725-A2"	"My SAP ERP implementation and systems analysis Services"	="Australian Federal Police"	28-Jan-08	="Engineering and Research and Technology Based Services"	02-Oct-07	31-Dec-08	402784.80	=""	="Greythorn Pty Ltd"	28-Jan-08 10:57 PM	

+="CN56726"	"Lanside vehicle parking - Brisbane"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	155993.20	="TRS06/423"	="BRISBANE AIRPORT CORPORATION"	29-Jan-08 08:44 AM	

+="CN56727"	"Lanside vehicle parking - Melbourne"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	23-Oct-07	30-Jun-08	157831.70	="TRS06/419"	="Australia Pacific Airports"	29-Jan-08 08:44 AM	

+="CN56728"	"Landside vehicle parking - Sydney"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	390094.10	="TRS06/422"	="SYDNEY AIRPORT CORPORATION"	29-Jan-08 08:44 AM	

+="CN56729"	"Landside vehicle parking - Coolangatta"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	17129.42	="TRS06/421"	="Gold Coast Airport Limited"	29-Jan-08 08:44 AM	

+="CN56730"	"Landside vehicle parking - Perth"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	90061.40	="TRS06/425"	="Westralia Airports Corp P/L"	29-Jan-08 08:44 AM	

+="CN56731"	"Legal Services Expenditure 6887"	="Department of Transport and Regional Services"	29-Jan-08	="Legal services"	22-Jan-08	30-Jun-09	15444.00	="TRS06/175"	="PHILLIPS FOX"	29-Jan-08 08:45 AM	

+="CN56732"	"Legal Services Expenditure 6550 Legal Services Expenditure"	="Department of Transport and Regional Services"	29-Jan-08	="Legal services"	11-Aug-06	30-Jun-08	11349.80	="TRS06/175"	="Clayton Utz Canberra"	29-Jan-08 08:45 AM	

+="CN56733"	"Contractor for peak workloads"	="Department of Transport and Regional Services"	29-Jan-08	="Community and social services"	25-Jan-08	25-Apr-08	34570.20	="TRS05/251"	="FIRSTWATER PTY LTD"	29-Jan-08 08:45 AM	

+="CN56734"	"Presentation Skills for department staff"	="Department of Transport and Regional Services"	29-Jan-08	="Specialised educational services"	01-Jan-08	30-Jun-08	11000.00	="APS COMMISSION 2005/014"	="ETHOS CRS CONSULTING PTY LTD"	29-Jan-08 08:45 AM	

+="CN56735"	"Ethical and values training for staff"	="Department of Transport and Regional Services"	29-Jan-08	="Specialised educational services"	01-Jan-08	30-Jun-08	11000.00	="APS COMMISSION 2005/014"	="INTERACTION CONSULTING GROUP PTY LI"	29-Jan-08 08:45 AM	

+="CN56736"	"Relocations costs for 2008 graduate programme"	="Department of Transport and Regional Services"	29-Jan-08	="Human resources services"	07-Jan-08	07-Jan-09	139999.99	="WOT08/0005"	="TOLL TRANSITIONS"	29-Jan-08 08:45 AM	

+="CN56737"	"motor vehicle spare parts"	="Department of Defence"	29-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Jan-08	27-Feb-08	15305.00	=""	="LANDROVER"	29-Jan-08 09:03 AM	

+="CN56738"	"Senior Medical Adviser"	="Department of Veterans' Affairs"	29-Jan-08	="Healthcare Services"	07-Nov-05	03-Mar-08	100000.00	=""	="Odcopro Unit Trust"	29-Jan-08 09:10 AM	

+="CN56739"	"Project Management"	="Department of Veterans' Affairs"	29-Jan-08	="Management advisory services"	20-Dec-07	30-Jun-08	156000.00	=""	="Connell Wagner Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56740"	"VAN Community Adviser services (Tweed Heads)  29 hours/week"	="Department of Veterans' Affairs"	29-Jan-08	="Information services"	01-Sep-05	30-Jun-09	125000.00	=""	="Entity Solutions Services Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56741"	"VAN Community Adviser services - Townsville  29 hours/week"	="Department of Veterans' Affairs"	29-Jan-08	="Information services"	01-Sep-05	30-Jun-09	125000.00	=""	="Entity Solutions Services Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56742"	"Provision of Tender Preparation Services."	="Department of Veterans' Affairs"	29-Jan-08	="Business administration services"	28-Nov-07	29-Feb-08	22687.00	=""	="Perocin Pty Ltd (t/a Lange Consulting & Software)"	29-Jan-08 09:10 AM	

+="CN56743"	"Develop a Whole-of-Veterans Communications Strategy"	="Department of Veterans' Affairs"	29-Jan-08	="Marketing and distribution"	02-May-07	01-Dec-07	76000.00	=""	="Morris Walker Pty Limited"	29-Jan-08 09:10 AM	

+="CN56744-A1"	"Market Research Services to measure Client Satisfaction"	="Department of Veterans' Affairs"	29-Jan-08	="Statistics"	04-Sep-07	30-Aug-10	308000.00	=""	="Ipsos Public Affairs Pty Ltd"	29-Jan-08 09:11 AM	

+="CN56745"	"Provision of "Community Advisor" duties for VAN Warrnambool."	="Department of Veterans' Affairs"	29-Jan-08	="Business administration services"	01-Oct-07	30-Sep-09	107078.00	=""	="Keith McKenzie Pty Ltd"	29-Jan-08 09:11 AM	

+="CN56753-A4"	"Secretariat and liaison services to the AQIS / Industry Cargo Consultative Committee (AICCC)."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Jan-08	31-Jan-11	1422640.00	=""	="Customs Brokers and Forwarders Council of Australia Inc"	29-Jan-08 10:24 AM	

+="CN56754"	"Temporary contract services"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	04-Feb-08	30-Jun-08	22000.00	=""	="Careers Unlimited"	29-Jan-08 10:24 AM	

+="CN56755"	"Provide input into AusAid 'Water governance in China' project"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	26-Nov-07	31-Dec-07	50000.00	=""	="Scott Rozelle"	29-Jan-08 10:24 AM	

+="CN56756"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:24 AM	

+="CN56757"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:24 AM	

+="CN56758"	"2008 Graduate Program residential"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Passenger transport"	10-Feb-08	20-Feb-08	38521.00	=""	="Thredbo Alpine Hotel"	29-Jan-08 10:24 AM	

+="CN56759"	"Equine Influenza Radio Campaign"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Marketing and distribution"	19-Dec-07	05-Jan-08	498847.80	=""	="HMA Blaze"	29-Jan-08 10:24 AM	

+="CN56760"	"review of Revised draft Chicken IRA Report and draft report to ESG"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	20-Dec-07	29-Feb-08	19800.00	=""	="Minter Ellison"	29-Jan-08 10:24 AM	

+="CN56761"	"Maintenance and Support for MySource Matrix CMS"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	09-Jan-08	08-Jan-09	16500.00	=""	="Squiz Pty Ltd"	29-Jan-08 10:25 AM	

+="CN56762"	"Development of AQUAVETPLAN Disease Strategy Manual for Abalone Viral Ganglioneuritis"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	22-Jan-08	30-May-08	38487.00	=""	="Panaquatic Health Solutions Pty Ltd"	29-Jan-08 10:25 AM	

+="CN56763"	"Funds for temp services B Anderson"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	01-Dec-07	30-Jun-08	15000.00	=""	="Hays Specialist Recruitment"	29-Jan-08 10:25 AM	

+="CN56764"	"Quarterly Rental/Service payments for DAFF Copy Centre Copiers"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Tools and General Machinery"	01-Oct-07	31-Dec-07	16430.86	=""	="Sharp Direct"	29-Jan-08 10:25 AM	

+="CN56765"	"Development of a diagnostic testing protocol for sudden oak death agent in nursery stock"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	14-Jan-08	30-Mar-08	41500.00	=""	="Cooperative Research Centre for National Plant Biosecurity"	29-Jan-08 10:25 AM	

+="CN56766"	"Temporary Contractor at ASO 5 level (B2 Level 5)"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	14-Jan-08	30-Jun-08	48400.00	=""	="Careers Unlimited"	29-Jan-08 10:25 AM	

+="CN56767"	"Assist with RFT drafting"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	24-Jan-08	24-Feb-08	22000.00	=""	="RPV Consultants"	29-Jan-08 10:25 AM	

+="CN56768"	"ABARE Registrations at the 2008 AARES conference."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Education and Training Services"	21-Jan-08	29-Feb-08	16140.00	=""	="All Occasions Group - AARES"	29-Jan-08 10:25 AM	

+="CN56769-A1"	"Provide Convenor for Band2 L5 bulk recruitment ISAC selection process"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Education and Training Services"	13-Sep-07	30-Nov-07	52864.00	=""	="Australian Public Service Commission"	29-Jan-08 10:25 AM	

+="CN56770"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:26 AM	

+="CN56772"	"AARES conference"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	29-Feb-08	11000.00	=""	="All Occasions Management"	29-Jan-08 10:26 AM	

+="CN56773-A1"	"Renewal of Software Licence fees for period 1 January to 31 December 2008"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	81785.00	=""	="Space-Time Research Pty Ltd"	29-Jan-08 10:26 AM	

+="CN56774"	"Toners for BA machines Dec - Jan 08"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Jan-08	12359.05	=""	="Toner Express"	29-Jan-08 10:26 AM	

+="CN56775"	"Urgent Legal Advise sought relating to a pressing Equine Influenza issue."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	18-Jan-08	18-Jan-08	11500.00	=""	="Australian Government Solicitor"	29-Jan-08 10:26 AM	

+="CN56776"	"Conference calls July 07 and Oct 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Jul-07	31-Oct-07	27955.40	=""	="Genesys Conferencing"	29-Jan-08 10:26 AM	

+="CN56777"	"Private Voice Network access 1/7/07 to 14/1/08"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Jul-07	14-Jan-08	59573.80	=""	="Commander Australia Ltd"	29-Jan-08 10:26 AM	

+="CN56778"	"PABX call costs for Dec 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Dec-07	31-Dec-07	15251.25	=""	="AAPT Telecommunications"	29-Jan-08 10:27 AM	

+="CN56779-A4"	"Provision of storage and destruction of inactive Departmental records"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Information services"	20-Dec-07	20-Dec-13	1105000.00	="DAFF109/07"	="Grace Records management Australia Pty Ltd"	29-Jan-08 10:27 AM	

+="CN56780"	"Provision Of Software Licence Fees and Maintenance, 12 months."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	19-Feb-08	18-Feb-09	19492.00	=""	="ESRI AUSTRALIA PTY LTD"	29-Jan-08 10:27 AM	

+="CN56781"	"Project management services for the Sustainable Industry Initative - Industry Forum"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	12-Dec-07	30-May-08	68497.00	=""	="Porter Novelli SA Pty Ltd"	29-Jan-08 10:27 AM	

+="CN56782"	"Contract Staff-John Pannemann"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	01-Dec-07	31-Jan-08	12221.30	=""	="The Public Affairs Recruitment Company"	29-Jan-08 10:27 AM	

+="CN56783-A1"	"Provision of legal services"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	21-Jan-08	30-Jun-10	121000.00	=""	="Australian Government Solicitor"	29-Jan-08 10:27 AM	

+="CN56784"	"Data capture and validation activities."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Sep-07	30-Jun-08	41250.00	=""	="University of Adelaide"	29-Jan-08 10:27 AM	

+="CN56785"	"Provision of audio visual equipment and technical support for the 16th Session of the Codex Committee on Food Import and Export Inspection and Certification Systems"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	25-Nov-07	30-Nov-07	12489.51	=""	="Staging Connections"	29-Jan-08 10:27 AM	

+="CN56786"	"Call costs for 18 Mc and 7 LC 15/11/07 - 14/12/07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	15-Nov-07	14-Dec-07	14542.44	=""	="AAPT Ltd"	29-Jan-08 10:28 AM	

+="CN56787"	"Technical advice on River Murray Corridor"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Nov-07	30-Jun-08	18877.27	=""	="Resource and Environment Management Pty Ltd"	29-Jan-08 10:28 AM	

+="CN56788"	"PABX maintenance and on-site Tech for Dec 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	01-Dec-07	31-Dec-07	18642.88	=""	="Telstra Business Systems"	29-Jan-08 10:28 AM	

+="CN56789-A1"	"IT consultant - Sandy Hayman"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	23-Jan-08	30-Jun-08	33000.00	=""	="Pegasus IT Consulting"	29-Jan-08 10:28 AM	

+="CN56790-A1"	"07/2275 - Management Consultant - 1599-1942 - C & B Services Panel 06/1599 (CPO018189 & CPO018396)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	01-Sep-07	31-Dec-07	29488.00	="06/1599"	="Grosvenor Management Consulting"	29-Jan-08 10:39 AM	

+="CN56791"	" NSN 2840/66-110-6346  REPAIR/OVERHAUL OF PARTS KIT, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	05-Dec-07	04-Mar-08	34751.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 11:19 AM	

+="CN56792"	" NSN 2840/66-110-6346  REPAIR/OVERHAUL OF PARTS KIT, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	05-Dec-07	04-Mar-08	34751.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 11:22 AM	

+="CN56793"	" NSN 1680/66-102-2026  REPAIR/OVERHAUL OF AMPLIFIER, COMPUTER  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	10-May-07	01-Dec-07	14332.00	=""	="John Holland Aviation Services"	29-Jan-08 11:28 AM	

+="CN56794"	" Accommodation and meeting facilities "	="Australian Electoral Commission"	29-Jan-08	="Hotels and lodging and meeting facilities"	05-Feb-08	06-Feb-08	11500.50	=""	="Vines Resort and Country Club"	29-Jan-08 11:30 AM	

+="CN56795"	"07/2360 - IT Contractor - 0717-0866 - ICT Panel 05/0717 (CPE004390) "	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	03-Jan-08	02-Jan-09	312576.00	="05/0717"	="Clicks Recruit Pty Ltd"	29-Jan-08 11:34 AM	

+="CN56796"	"Election-related Air Charter"	="Australian Electoral Commission"	29-Jan-08	="Chartered aeroplane travel"	18-Sep-07	19-Jan-08	47000.00	="S07/08/102"	="Goldfields Air Services"	29-Jan-08 11:40 AM	

+="CN56798"	"06/1430 - IT Contractor - 0717-0892 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	156000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	29-Jan-08 12:06 PM	

+="CN56799-A1"	"07/1926 - Security Analyst - 0717-0877 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	02-Jan-08	30-Jun-08	147800.00	="05/0717"	="Greythorn Pty Ltd"	29-Jan-08 12:11 PM	

+="CN56800-A1"	"Cheltenham construction management works 1st floor"	="Centrelink"	29-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	08-Feb-08	16-Feb-08	14058.00	=""	="Bronts Commercial Interiors Pty Ltd"	29-Jan-08 12:23 PM	

+="CN56806"	" NSN 2840/66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	21-Jan-08	21-Mar-08	20119.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 12:46 PM	

+="CN56807"	" NSN 1560/01-446-1142  PURCHASE OF CARRIER; FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 12:55 PM	

+="CN56808"	" NSN 1560/01-446-1141  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 12:59 PM	

+="CN56810"	" NSN 1560/01-446-1139  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 01:02 PM	

+="CN56811"	" NSN 1560/01-446-1140  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 01:09 PM	

+="CN56812"	"Annual support and Maintenanace fee. Technology One Business inteligence, Financials, Supply chain."	="National Native Title Tribunal"	29-Jan-08	="Temporary information technology systems or database administrators"	18-Feb-08	17-Feb-09	26577.41	=""	="Technology One Ltd"	29-Jan-08 01:29 PM	

+="CN56813"	"07/2290 - Senior Project Manager - 0717-0881 - ICT Panel - (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Feb-08	31-Jan-09	211000.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 01:37 PM	

+="CN56814-A2"	"07/2030 - Business Analyst - 0717-0898 - ICT Panel - (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	14-Jan-08	30-Jun-09	292000.00	="05/0717"	="Tarakan Consulting Pty Ltd"	29-Jan-08 01:41 PM	

+="CN56815-A1"	" 07/2443 - Assessment of Training Services - 1599-1997 - Consultancy and Business Service Panel (06/1599) (CPE004412-1) "	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	07-Jan-08	30-Mar-08	75240.00	="06/1599"	="Yellow Edge Pty Ltd"	29-Jan-08 01:45 PM	

+="CN56816-A1"	"07/2284 - Accommodation Consultancy Services - 0770-1591 - Property Panel Victoria - (05/0770) - (CPO016451)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Project management"	05-Nov-07	25-Jan-08	24457.40	="05/0770"	="GHD Pty Ltd"	29-Jan-08 01:52 PM	

+="CN56817"	"07/2316 - Project Management Services - 1599-1954 - C&B Panel (06/1599)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	08-Oct-07	30-Jun-08	199584.00	="06/1599"	="Walter Turnball"	29-Jan-08 01:56 PM	

+="CN56818-A1"	"07/2293 - Project Management Services - 1599-1954 - C&B Panel (06/1599)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	01-Oct-07	30-Jun-08	293040.00	="06/1599"	="Walter Turnball"	29-Jan-08 02:07 PM	

+="CN56821"	"Jack Leveling Support"	="Defence Materiel Organisation"	29-Jan-08	="Workshop machinery and equipment and supplies"	25-Jan-08	14-Apr-08	16500.00	=""	="Varley Group"	29-Jan-08 02:08 PM	

+="CN56820"	"Aviation Spares, overhaul of FCU S/N A117B"	="Defence Materiel Organisation"	29-Jan-08	="Military rotary wing aircraft"	05-Dec-07	31-Mar-08	42742.70	=""	="Turbomeca A/Asia Pty Ltd"	29-Jan-08 02:08 PM	

+="CN56822"	"07/2013 - IT Contractor - 0717-0882 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	33000.00	="05/0717"	="Innovative Business Computing Pty Ltd"	29-Jan-08 02:10 PM	

+="CN56823"	"Purchase HP Designjet Printer"	="National Native Title Tribunal"	29-Jan-08	="Laser printers"	20-Dec-07	20-Dec-07	11358.07	=""	="Corporate Express"	29-Jan-08 02:11 PM	

+="CN56825-A1"	"Sirsi Software Maintenance"	="Federal Court of Australia"	29-Jan-08	="Library software"	01-Jan-08	31-Dec-08	39964.72	=""	="SirsiDynix"	29-Jan-08 02:13 PM	

+="CN56826"	"07/2023 - IT Contractor - 0717-0875 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	275000.00	="05/0717"	="Frontier Group Australia Pty Ltd"	29-Jan-08 02:15 PM	

+="CN56828"	"07/2176 - Recruitment Services - 1063-2076 - Recruitment Services Panel 05/1063"	="Australian Customs and Border Protection Service"	29-Jan-08	="Recruitment services"	01-Aug-07	30-Jun-08	461790.00	="07/2176"	="DFP Recruitment Services"	29-Jan-08 02:24 PM	

+="CN56830-A1"	"07/2026 - IT Contractor - 0717-0881 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	195360.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 02:29 PM	

+="CN56831-A1"	"07/2502 - System Analyst - 0717-0881 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	10-Jan-08	30-Jun-09	385000.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 02:32 PM	

+="CN56829"	"Nationa Native Title Tribunal Annual Report - Printing 06/07"	="National Native Title Tribunal"	29-Jan-08	="Publication printing"	16-Oct-07	16-Oct-07	15950.00	=""	="LAMB Print"	29-Jan-08 02:33 PM	

+="CN56835"	"Essential Presenting Services"	="National Native Title Tribunal"	29-Jan-08	="Video and combination video and audio presentation equipment and hardware and controllers"	22-Nov-07	23-Nov-07	15158.00	=""	="Total Inter Action"	29-Jan-08 02:39 PM	

+="CN56834"	"07/1874 - Training Services  - 1523-1816 - Leading People at the Frontline Panel 06/1523 (CPO012363)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	21-May-07	25-May-07	10224.05	="06/1523"	="McMillan Staff Development"	29-Jan-08 02:42 PM	

+="CN56836"	"Helmet Welders Auto Darkening Double Shell W/Sidevents Silver/Black UV/IR Protection"	="Defence Materiel Organisation"	29-Jan-08	="Face and head protection"	25-Jan-08	24-Feb-08	28008.75	=""	="Express Industrial Supplies"	29-Jan-08 02:50 PM	

+="CN56837"	"07/1892 - Training Services - 1523-1815 - Leading People at the Frontline Panel 06/1523 (CPO012785)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	21-May-07	25-May-07	10175.00	="06/1523"	="Humanagement"	29-Jan-08 02:52 PM	

+="CN56838"	"07/1915 - Training Services - 1523-1815 - Leading People at the Frontline Panel 06/1523 (CPO013184)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	18-Jun-07	22-Jun-07	12291.39	="06/1523"	="Humanagement"	29-Jan-08 02:56 PM	

+="CN56839"	"Cannon Multifunction Photocopier"	="National Native Title Tribunal"	29-Jan-08	="Photocopiers"	14-Nov-07	14-Nov-07	16115.00	=""	="Cannon Australia Pty Ltd"	29-Jan-08 02:58 PM	

+="CN56840"	"2007/08 Workers Compensation Premium"	="National Native Title Tribunal"	29-Jan-08	="Financial and Insurance Services"	01-Jul-07	30-Jun-08	176223.00	=""	="Comcare Australia"	29-Jan-08 03:10 PM	

+="CN56841"	"CPO012786 - Training Services - 1523-1819 - Leading People at the Frontline Panel 06/1523 (CPO012786)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	14-May-07	18-May-07	13673.00	="06/1523"	="Vivien Twyford Consulting"	29-Jan-08 03:13 PM	

+="CN56843-A1"	"30 Minute Broadvast Production to recognise the anniversary of 15 years of National Native Title in Australia"	="National Native Title Tribunal"	29-Jan-08	="Motion pictures on digital video disk DVD"	29-Oct-07	02-Jan-08	65415.90	=""	="Bearcage Productions"	29-Jan-08 03:20 PM	

+="CN56845"	"07/1873 - Training Services - 1523-1818 - Leading People at the Frontline Panel - 06/1523 (CPO012788)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	14-May-07	18-May-07	13489.39	="06/1523"	="OZTrain"	29-Jan-08 03:22 PM	

+="CN56846"	"07/2410 - Training Services - 1523-1817 - Leading People at the Frontline Panel 06/1523 (CPO017846)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	23-Jun-08	22-Sep-08	16940.00	="06/1523"	="Major Training Services Pty Ltd"	29-Jan-08 03:26 PM	

+="CN56847"	"07/2431 - Training Services - 1523-1813 - Leading People at the Frontline Panel - 06/1523 (CPO017843)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	31-Mar-08	30-Jun-08	19380.00	="06/1523"	="Bayley and Associates Pty Ltd"	29-Jan-08 03:30 PM	

+="CN56849"	"Geospatial software and Maintenance 07/08"	="National Native Title Tribunal"	29-Jan-08	="Software"	10-Aug-07	31-Dec-08	22000.00	=""	="DMS"	29-Jan-08 03:37 PM	

+="CN56851-A1"	"Map Info Professional V9 and Maintenance 07/08"	="National Native Title Tribunal"	29-Jan-08	="Integrated maintenance information systems"	19-Jul-07	19-Oct-08	47398.45	=""	="DMS"	29-Jan-08 03:45 PM	

+="CN56850-A3"	"07/2255 - Risk Management Services - 0299-1002 - IT Business Advisory Panel 04/0299"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	31-Aug-07	30-Jun-08	140000.00	="04/0299"	="Broadleaf Capital International Pty Ltd"	29-Jan-08 03:49 PM	

+="CN56853"	"Prepayment of Rent and Outgoings for 07/08. MOU 1 Victoria Avenue Perth. Principal Registry"	="National Native Title Tribunal"	29-Jan-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	1777288.00	=""	="United Group Services Pty Ltd"	29-Jan-08 03:55 PM	

+="CN56855"	"Initial Licensing fee - Geospatial Geodata"	="National Native Title Tribunal"	29-Jan-08	="Proprietary or licensed systems maintenance or support"	11-Sep-07	11-Sep-07	17222.62	=""	="North Territory Government"	29-Jan-08 04:02 PM	

+="CN56857"	"Butts Direct Online Services and Hard copy Publication Supply 2007/08"	="National Native Title Tribunal"	29-Jan-08	="Printed publications"	01-Sep-07	31-Aug-08	57214.38	=""	="LexisNexis"	29-Jan-08 04:11 PM	

+="CN56858-A1"	"Various Qantas Airfares - Centerlink Main contract Holder"	="National Native Title Tribunal"	29-Jan-08	="Commercial aeroplane travel"	01-Jul-07	29-Jan-08	567783.94	=""	="Qantas"	29-Jan-08 04:19 PM	

+="CN56860"	"Provision of Visual Basic Programming services 07/08"	="National Native Title Tribunal"	29-Jan-08	="Programming for Visual Basic"	01-Jul-07	29-Jan-08	74279.70	=""	="Dialog Information Technology"	29-Jan-08 04:28 PM	

+="CN56861-A1"	"Provision of Recruitment and Selection Services"	="National Native Title Tribunal"	29-Jan-08	="Recruitment services"	01-Jul-07	26-Jun-08	82058.89	=""	="Hudson Global Resources"	29-Jan-08 04:35 PM	

+="CN56862"	"Software update License and Support 07/08"	="National Native Title Tribunal"	29-Jan-08	="Business function specific software"	15-Jan-08	14-Jan-09	11050.68	=""	="Oracle"	29-Jan-08 04:42 PM 

--- /dev/null
+++ b/admin/partialdata/25Jun2008to27Jun2008valto.xls
@@ -1,1 +1,593 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN94641"	"Medical Consumables"	="Defence Materiel Organisation"	25-Jun-08	="Medical Equipment and Accessories and Supplies"	18-Jun-08	16-Jul-08	13338.32	=""	="ADEC AUSTRALIA"	25-Jun-08 08:06 AM	

+="CN94642"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Jun-08	14-Jul-10	13470.82	=""	="VOLVO COMMERCIAL VEHICLES"	25-Jun-08 08:30 AM	

+="CN94644"	"provision of Information Communication and Security advisory Services.  Extension of arrangements as reported in gazzetal notice 1577178"	="Family Court of Australia"	25-Jun-08	="Information technology consultation services"	01-May-08	30-Apr-09	40000.00	=""	="Stratsec. net Pty Ltd"	25-Jun-08 08:48 AM	

+="CN94643"	"Camouflage face paint"	="Defence Materiel Organisation"	25-Jun-08	="Makeup kits"	24-Jun-08	25-Jul-08	82280.00	=""	="Defence Procurement Pty Ltd"	25-Jun-08 08:52 AM	

+="CN94645"	" PAINT "	="Department of Defence"	25-Jun-08	="Paints and primers"	24-Jun-08	09-Jul-08	22715.00	=""	="PROTEC PTY LTD"	25-Jun-08 08:56 AM	

+="CN94647"	" ASLAV Parts Speedometer "	="Department of Defence"	25-Jun-08	="Armoured fighting vehicles"	24-Jun-08	03-Jan-09	27400.45	=""	="GENERAL DYNAMICS LAND SYSTEMS"	25-Jun-08 08:58 AM	

+="CN94648"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	09-Jul-08	18092.16	=""	="MERCEDES-BENZ AUSTRALIA/ PACIFIC"	25-Jun-08 09:04 AM	

+="CN94650"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	14-Jul-08	14855.41	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:09 AM	

+="CN94646"	"Pneumatic Pillows"	="Defence Materiel Organisation"	25-Jun-08	="Pillows"	24-Jun-08	08-Sep-08	33825.00	=""	="So-Fon Australia"	25-Jun-08 09:14 AM	

+="CN94652"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	08-Jul-08	35400.04	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:15 AM	

+="CN94653"	"M113 UPGRADE PARTS SPACER RING"	="Department of Defence"	25-Jun-08	="Armoured fighting vehicles"	18-Jun-08	14-Dec-08	71171.32	=""	="TENIX DEFENCE"	25-Jun-08 09:18 AM	

+="CN94651"	"Repair of Black hawk L/H Stabilator"	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	31-Jul-08	23032.91	=""	="Sikorsky Aircraft Austalia Limited"	25-Jun-08 09:19 AM	

+="CN94654"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Jun-08	08-Jul-08	17332.34	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:19 AM	

+="CN94655"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	25-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-Jun-08	07-Jul-08	13563.56	=""	="MERCEDES BENZ AUST"	25-Jun-08 09:24 AM	

+="CN94656-A2"	" Online publication service including software for: Jane's Military and Security Assessments Intelligence Centre Online "	="Australian Federal Police"	25-Jun-08	="Computer services"	29-Jun-08	28-Jun-09	98845.73	=""	="IHS Australia Pty Limited"	25-Jun-08 09:25 AM	

+="CN94657"	"Prininting of NAT1908-06.2008 Tax basics for small business."	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jun-08	30-Jun-08	59900.50	=""	="Paragon Printers"	25-Jun-08 09:25 AM	

+="CN94658"	"Recruitment - IT Personnel"	="Australian Crime Commission"	25-Jun-08	="Personnel recruitment"	02-Jun-08	28-Nov-08	110968.00	=""	="Icon Recruitment Pty Ltd"	25-Jun-08 09:38 AM	

+="CN94660-A1"	" Performance Audit Advisory Group Member for Expert comment on Audit Methodology, Findings and Reporting. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Business and corporate management consultation services"	01-Jul-04	30-Jun-08	17120.00	=""	="Reddate Pty Ltd ta Distaff Associates"	25-Jun-08 09:43 AM	

+="CN94661-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	01-Jul-04	30-Jun-08	25000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:43 AM	

+="CN94662-A1"	"Advice on the ATO's use of Data Matching in the Tax Administration Audit"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	01-Jul-07	31-Mar-08	11251.63	=""	="Christopher Conybeare and Associates"	25-Jun-08 09:43 AM	

+="CN94663-A1"	"40 Safeboot Secure USB Devices"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Miscellaneous hardware"	02-Jun-08	30-Jun-08	21303.70	=""	="Dimension Data Australia Pty Ltd"	25-Jun-08 09:44 AM	

+="CN94665-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	05-Jun-08	27-Aug-08	15000.00	="ANAOAM2007/592"	="KNJ Professional Services Pty Ltd"	25-Jun-08 09:44 AM	

+="CN94666-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	12000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94667-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	22000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94668-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	03-Sep-08	30000.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:44 AM	

+="CN94664"	"Internet gateway/secure services"	="Australian Crime Commission"	25-Jun-08	="Computer or network or internet security"	01-May-08	30-Apr-09	564000.00	=""	="Verizon Business (Cybertrust)"	25-Jun-08 09:45 AM	

+="CN94669-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	09-Jun-08	05-Sep-08	35000.00	=""	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:45 AM	

+="CN94670-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	01-Aug-08	17000.00	="ANAOAM2007/592"	="UHY Haines Norton (Canberra) Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94671-A1"	" Engagement of of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	15-Aug-08	25000.00	="ANAOAM2007/592"	="The Trustee for Birdanco Practice Trust ta RSM Bird Cameron"	25-Jun-08 09:45 AM	

+="CN94672-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	22-Aug-08	25000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94673-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	29-Aug-08	42000.00	="ANAOAM2007/592"	="UHY Haines Norton (Canberra) Pty Ltd"	25-Jun-08 09:45 AM	

+="CN94674-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	10-Jun-08	31-Oct-08	95000.00	="ANAOAM2007/592"	="Hays Personnel Services (Aust) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94675-A1"	"Advice given on ATO Strategies to Address Tax Haven Compliance Risks."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	11-Dec-07	30-May-08	12873.63	=""	="Peter Simpson Consulting"	25-Jun-08 09:46 AM	

+="CN94676-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	05-Sep-08	42000.00	="ANAOAM2007/592"	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94677-A1"	" Engagement of staff to assist with Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	31-Oct-08	115000.00	="ANAOAM2007/592"	="Synergy Business Solutions (Int) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94678-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	12-Jun-08	15-Aug-08	15000.00	="ANAOAM2007/592"	="Wandella (ACT) Pty Ltd"	25-Jun-08 09:46 AM	

+="CN94679-A1"	"4 Dell Notebooks Ruggered"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Computers"	12-Jun-08	30-Jun-08	10744.80	=""	="Dell Australia Pty Limited"	25-Jun-08 09:46 AM	

+="CN94680-A1"	"Australian Government Accounting and Accountability Framework Courses"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Adult education"	13-Nov-07	30-Nov-08	22000.00	=""	="Australian Capital Training Group P/L"	25-Jun-08 09:46 AM	

+="CN94681-A1"	"Reprint the Better Practice Guide on Developing and Managing Contracts"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Printing"	14-May-08	30-Jun-08	30702.38	=""	="Comcom Pty Ltd T/A Zoo"	25-Jun-08 09:46 AM	

+="CN94682-A1"	"EziScan Software Licences"	="Australian National Audit Office (ANAO)"	25-Jun-08	="Network management software"	19-Jun-08	30-Jun-08	23760.00	=""	="Fuji Xerox Australia Pty Ltd - ACT"	25-Jun-08 09:47 AM	

+="CN94683-A1"	"Audit Assistance with Specific Purpose payments - General Recurrent Grants for Government Schools."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	19-Sep-07	30-Jun-08	12201.68	=""	="PG Policy Consulting"	25-Jun-08 09:47 AM	

+="CN94684-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	20-Aug-08	30000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94685-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	22-Aug-08	45000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94686-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	27-Aug-08	50000.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94687-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	21-May-08	29-Aug-08	55440.00	="ANAOAM2007/592"	="Oakton Services Pty Ltd"	25-Jun-08 09:47 AM	

+="CN94688-A1"	" Case Ware IDEA Software annual Maintenance 1 July 2008-30 June 2009 "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Software maintenance and support"	23-Jun-08	30-Jun-09	25500.00	=""	="Deloitte Growth Solutions Pty Limited"	25-Jun-08 09:47 AM	

+="CN94689-A1"	" Engagement of staff to assist with various Financial Statement Audits. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	23-May-08	31-Oct-08	67100.00	="ANAOAM2007/592"	="WHK Cressey Lynch Audit Partnership"	25-Jun-08 09:48 AM	

+="CN94690-A1"	" Focus Content Management Systems Licence and Support "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Software maintenance and support"	24-Jan-08	01-Jul-10	18700.00	=""	="Reading Room Australia Pty Limited"	25-Jun-08 09:48 AM	

+="CN94691-A1"	" Access fee for Consultancy Panel for Professional Development "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Adult education"	26-May-08	25-May-09	10500.00	=""	="Aust Public Service Commission"	25-Jun-08 09:48 AM	

+="CN94693-A1"	"Assistance with Survey and Report on Green Office Procurement Audit."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	27-May-08	03-Nov-08	35000.00	=""	="The Hedging Company Pty Ltd"	25-Jun-08 09:48 AM	

+="CN94694-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	27-May-08	05-Sep-08	50000.00	="ANAOAM2007/592"	="Roberts and Morrow"	25-Jun-08 09:48 AM	

+="CN94695-A1"	" Legal services "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Business law services"	29-Apr-08	30-Jun-08	40000.00	=""	="Mallesons Stephen Jaques"	25-Jun-08 09:49 AM	

+="CN94696-A1"	"Development of a Draft Survey for Pilot Testing for the Health Workforce Audit."	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	30-May-08	25-Jul-08	40000.00	=""	="Allanson Consulting Pty Ltd"	25-Jun-08 09:49 AM	

+="CN94697-A2"	" Financial Statement Audits of the Australian Reinsurance Pool Corporation. "	="Australian National Audit Office (ANAO)"	25-Jun-08	="Audit services"	30-May-08	30-Oct-10	467605.00	="ANAOAM2007/876"	="KPMG Peat Marwick - ACT"	25-Jun-08 09:49 AM	

+="CN94692-A1"	" Online publication service including software for: Jane's Terrorism and Insurgency Centre Online "	="Australian Federal Police"	25-Jun-08	="Computer services"	03-Jun-08	02-Jun-09	34769.00	=""	="IHS Australia Pty Limited"	25-Jun-08 09:49 AM	

+="CN94699-A7"	" Panel arrangement for the provision of ICT Contractor Services - Centrelink Deed of Standing Offer. All Work Orders combined. up to date "	="CRS Australia"	25-Jun-08	="Information technology consultation services"	01-Jul-08	31-Oct-10	1701249.74	=""	="Southern Cross Computing Pty Ltd"	25-Jun-08 10:16 AM	

+="CN94700"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Jun-08	="Aircraft spars"	25-Jun-08	24-Jul-09	18927.65	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Jun-08 10:20 AM	

+="CN94702-A1"	"Supply of half height cabinets at Dandenong"	="Australian Taxation Office"	25-Jun-08	="Storage chests and cabinets and trunks"	13-Jun-08	30-Jun-08	64718.94	=""	="Planex Sales Pty Ltd"	25-Jun-08 10:35 AM	

+="CN94703"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	11345.24	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 10:40 AM	

+="CN94701"	"Repair and Overhaul of PC9 Landing Gear Cylinder and Piston Assy - S/No 1009"	="Defence Materiel Organisation"	25-Jun-08	="Military fixed wing aircraft"	12-Jun-08	21-Aug-08	13264.07	=""	="Airflite Pty Ltd"	25-Jun-08 10:47 AM	

+="CN94705"	"Consultancy Services for ICT Options"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Management and Business Professionals and Administrative Services"	04-Dec-07	30-Jun-08	50000.01	="DCON/05/53"	="Walter Turnbull"	25-Jun-08 10:53 AM	

+="CN94709"	"Delivery of Strategic Management Program 4"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Education and Training Services"	12-Feb-08	30-Jun-08	54417.44	="ATM08/896"	="Upton Martin Consulting"	25-Jun-08 11:04 AM	

+="CN94708-A1"	"Menningococcal Vaccine"	="Defence Materiel Organisation"	25-Jun-08	="Medical Equipment and Accessories and Supplies"	02-Jun-08	28-Jun-08	122430.00	=""	="Commonwealth Serum Laboratories"	25-Jun-08 11:04 AM	

+="CN94710"	"Technical Support for Message manager"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Management and Business Professionals and Administrative Services"	14-Jan-08	14-Jan-09	10000.50	="ATM08/894"	="System Solutions Australia Pty Ltd"	25-Jun-08 11:08 AM	

+="CN94711"	"Printing of JS8164 - Tax Agent Newsletter Issue 5"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Jun-08	30-Jun-08	19721.90	=""	="Blue Star Print Group t/a National Capital Printing"	25-Jun-08 11:21 AM	

+="CN94712"	"Leasing of network printers"	="Australian Federal Police"	25-Jun-08	="Office Equipment and Accessories and Supplies"	01-Apr-08	31-Mar-11	35924.64	="RFT 5-2006"	="Lexmark International (Australia)Pty Limited"	25-Jun-08 11:21 AM	

+="CN94713-A1"	"Relocation of Graduates for 2008 Program"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Transportation and Storage and Mail Services"	05-Dec-07	15-Dec-10	55650.00	="DCON/06/95"	="Grace Removals Group"	25-Jun-08 11:23 AM	

+="CN94715"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	13109.83	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 11:28 AM	

+="CN94718-A1"	"Provision of fitout services for the Woy Woy premises of CRS Australia "	="CRS Australia"	25-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	33737.00	=""	="Latin Interiors Pty Ltd"	25-Jun-08 11:40 AM	

+="CN94717"	"Ground Support Equipment Spare parts"	="Defence Materiel Organisation"	25-Jun-08	="Mechanised ground support system spare parts or accessories"	12-Jun-08	31-Aug-08	27500.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 11:41 AM	

+="CN94719"	"Computer Servers"	="Australian Electoral Commission"	25-Jun-08	="Computer servers"	28-May-08	30-Jun-08	24229.87	=""	="Datacom Systems (QLD) Pty Ltd"	25-Jun-08 11:42 AM	

+="CN94720"	"Artbank artworks for Broadband Division"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Office Equipment and Accessories and Supplies"	19-Feb-08	19-Feb-08	12705.00	="ATM08/921"	="Artbank"	25-Jun-08 11:43 AM	

+="CN94721"	"Support for KR Emu software"	="Department of Broadband Communications and the Digital Economy"	25-Jun-08	="Office Equipment and Accessories and Supplies"	20-Feb-08	01-Mar-09	17883.80	="ATM07/424"	="KE Software Australia Pty Ltd"	25-Jun-08 11:45 AM	

+="CN94722"	"Audio Visual Fitout"	="Australian Electoral Commission"	25-Jun-08	="Audio visual services"	28-May-08	30-Jun-08	55943.49	=""	="Elecroboard Solutions Pty Ltd"	25-Jun-08 11:47 AM	

+="CN94723"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Jun-08	="Motor vehicles"	25-Jun-08	09-Jul-08	10045.10	=""	="LAND ROVER AUSTRALIA"	25-Jun-08 11:47 AM	

+="CN94726"	"Postage Meter and Scale"	="Australian Electoral Commission"	25-Jun-08	="Franking or postage machines"	23-May-08	23-May-09	15310.50	=""	="Pitney Bowes"	25-Jun-08 11:53 AM	

+="CN94727"	"Printing of NAT71043-04.2008 ETP Guide"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jun-08	10-Jul-08	26903.60	=""	="Paragon Printers"	25-Jun-08 11:55 AM	

+="CN94730"	"Aerial Towed Target"	="Defence Materiel Organisation"	25-Jun-08	="Target or reconnaissance drones"	06-Jun-08	20-Jun-08	55825.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 12:07 PM	

+="CN94733-A1"	" Rental agreement - Cairns office  (GAPS no. - 990476) "	="Office of the Director of Public Prosecutions"	25-Jun-08	="Lease and rental of property or building"	01-Sep-03	30-Sep-14	753405.56	=""	="Opus Capital Limited"	25-Jun-08 12:33 PM	

+="CN94735"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Jun-08	="Aircraft spars"	25-Jun-08	24-Aug-09	14777.88	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Jun-08 12:39 PM	

+="CN94736"	"Printing NAT7967-03.2007 Income tax guide for non-profit organisations"	="Australian Taxation Office"	25-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	25-Jun-08	08-Jul-08	23906.30	=""	="Paragon Printers"	25-Jun-08 12:53 PM	

+="CN94737-A4"	"Provision of Aviation client satisfaction survey"	="Australian Federal Police"	25-Jun-08	="Management advisory services"	23-Jun-08	11-Jul-08	155349.00	="RFT 29-2006"	="University of Queensland"	25-Jun-08 01:30 PM	

+="CN94739"	" Taxation of Trusts & Principles of Taxation of                     Superannuation Entities "	="Australian Taxation Office"	25-Jun-08	="Management and Business Professionals and Administrative Services"	19-May-08	29-Aug-08	94232.00	="132.04-14"	="University of New South Wales"	25-Jun-08 01:38 PM	

+="CN94741"	"Software purchase"	="Future Fund Management Agency"	25-Jun-08	="Software"	18-Jun-08	18-Jun-08	10972.50	=""	="The Mathworks Australia Pty Ltd"	25-Jun-08 01:50 PM	

+="CN94740"	" INDICATOR TORQUEMETER QUANTITY 5. PART No 4308-1009;   MC 34641 "	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	03-Sep-08	12236.95	=""	="MILSPEC SERVICES"	25-Jun-08 01:51 PM	

+="CN94742"	" Cover Assembly "	="Defence Materiel Organisation"	25-Jun-08	="Electronic Components and Supplies"	25-Jun-08	23-Jul-08	38720.00	=""	="NAECO PTY LTD"	25-Jun-08 01:53 PM	

+="CN94743-A1"	"Development and implementation of enhancements of Full Time Equivalent (FTE) reporting and budgeting in the Budget Management Reporting System (BMRS)"	="Australian Federal Police"	25-Jun-08	="Accounting and auditing"	23-Apr-08	30-Jun-08	115050.00	="06-16740"	="Analytics Group Pty Ltd"	25-Jun-08 02:02 PM	

+="CN94744"	"TAN FLYING SHIRTS AND TROUSERS"	="Defence Materiel Organisation"	25-Jun-08	="Clothing"	25-Jun-08	25-Sep-08	45874.24	=""	="AUSTRALIAN DEFENCE APPAREL"	25-Jun-08 02:08 PM	

+="CN94747"	"Linkage visit R&D"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	22-Apr-08	23-May-08	11200.00	=""	="Beef Cattle Research Station"	25-Jun-08 02:08 PM	

+="CN94749"	"Research into the non-English speaking background community needs & awareness on tax & compliance issues."	="Australian Taxation Office"	25-Jun-08	="Market research"	02-Jun-08	31-Jul-08	100000.00	=""	="Newton Wayman Chong Research"	25-Jun-08 02:13 PM	

+="CN94750"	"Project Review"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	30-May-08	09-Jun-08	15000.00	=""	="Dr William Thorpe"	25-Jun-08 02:17 PM	

+="CN94751"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	06-Aug-07	06-Mar-11	179597.56	="AEC06/062"	="QM Technologies Pty Ltd"	25-Jun-08 02:19 PM	

+="CN94756"	" Impact assessment "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Agricultural research services"	17-Jun-08	31-Mar-09	79500.00	=""	="IDA Economics"	25-Jun-08 02:34 PM	

+="CN94757"	"External Training"	="Centrelink"	25-Jun-08	="Specialised educational services"	23-Jun-08	26-Jun-08	19390.01	=""	="Object Consultin"	25-Jun-08 02:39 PM	

+="CN94761"	"Courier Services"	="Centrelink"	25-Jun-08	="Mail and cargo transport"	01-Jul-07	30-Jun-08	143000.00	=""	="Toll Transport Pty Ltd"	25-Jun-08 02:46 PM	

+="CN94763-A3"	"Provision of searching facilities via Electronic White Pages (EWP); Number Enquiry Directory (NED) services"	="Australian Taxation Office"	25-Jun-08	="Telecommunications media services"	01-Jul-08	30-Jun-11	661755.00	=""	="Sensis Pty Ltd"	25-Jun-08 02:50 PM	

+="CN94765"	"ORACLE LICENCVE AND SERVICE AGREEMENT"	="Family Court of Australia"	25-Jun-08	="Proprietary or licensed systems maintenance or support"	19-Oct-07	18-Oct-08	52727.25	=""	="ORACLE CORPORATION AUSTRALIA PTY LIMITED"	25-Jun-08 02:54 PM	

+="CN94754"	"magazine pouches"	="Defence Materiel Organisation"	25-Jun-08	="Packaging boxes and bags and pouches"	12-May-08	31-May-08	23100.00	=""	="Hunters Edge"	25-Jun-08 02:55 PM	

+="CN94768"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	02-Aug-07	02-Mar-11	54377.86	="AEC06/062"	="Snap Printing t/a Kimal"	25-Jun-08 02:59 PM	

+="CN94769"	"IT Services"	="Australian Human Rights Commission"	25-Jun-08	="Information technology consultation services"	01-Jun-08	31-Aug-08	13200.00	=""	="Powernet Services Pty Ltd"	25-Jun-08 03:01 PM	

+="CN94771"	"AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	25-Jun-08	="Anti submarine helicopters"	13-Jun-07	18-Jun-08	33971.45	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	25-Jun-08 03:04 PM	

+="CN94772"	"Printing of Certified Lists"	="Australian Electoral Commission"	25-Jun-08	="Industrial printing services"	02-Aug-07	02-Aug-11	97873.68	="AEC06/062"	="McPherson's Printing Group"	25-Jun-08 03:06 PM	

+="CN94777-A1"	" Provision of cleaning services to the Geraldton premises of CRS Australia "	="CRS Australia"	25-Jun-08	="General building and office cleaning and maintenance services"	26-May-08	25-May-11	21582.00	=""	="Redframe Pty Ltd t/a Delron Cleaning Geraldton"	25-Jun-08 03:22 PM	

+="CN94778"	"Airfares"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Travel agents"	29-May-08	23-Jun-08	28181.06	=""	="AMERICAN EXPRESS TRAVEL"	25-Jun-08 03:36 PM	

+="CN94780"	"Systems maintenance"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Integrated maintenance information systems"	31-May-08	23-Jun-08	32877.90	=""	="Systems Union Pty Ltd"	25-Jun-08 03:43 PM	

+="CN94781"	" Publication editing/production "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Publication printing"	29-May-08	16-Jun-08	33385.20	=""	="Coretext"	25-Jun-08 03:49 PM	

+="CN94782"	"Publication printing"	="Australian Centre for International Agricultural Research"	25-Jun-08	="Publication printing"	30-May-08	17-Jun-08	10186.00	=""	="Goanna Print Pty Ltd"	25-Jun-08 03:54 PM	

+="CN94783"	"Repair of Black Hawk Main Rotor blade"	="Defence Materiel Organisation"	25-Jun-08	="Military rotary wing aircraft"	25-Jun-08	31-Jul-08	52742.17	=""	="Sikorsky Aircraft Australia Limited"	25-Jun-08 03:58 PM	

+="CN94784"	"Cable, tow lines"	="Defence Materiel Organisation"	25-Jun-08	="Aerial cable"	11-Jun-08	20-Jun-08	59125.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 04:02 PM	

+="CN94785"	" Rent costs July 2008 "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Lease and rental of property or building"	12-Jun-08	16-Jun-08	46782.13	=""	="GDA Diversified Property Trust"	25-Jun-08 04:03 PM	

+="CN94787"	"Cable, tow line"	="Defence Materiel Organisation"	25-Jun-08	="Aerial cable"	11-Jun-08	20-Jun-08	42900.00	=""	="AIR AFFAIRS AUSTRALIA PTY LTD"	25-Jun-08 04:07 PM	

+="CN94789"	" Publication distribution "	="Australian Centre for International Agricultural Research"	25-Jun-08	="Distribution"	27-May-08	16-Jun-08	14238.69	=""	="National Mailing & Marketing"	25-Jun-08 04:11 PM	

+="CN94790"	"ICT services required for Super Simplification Project."	="Australian Taxation Office"	25-Jun-08	="Engineering and Research and Technology Based Services"	09-Nov-07	09-Nov-08	1000000.00	="059-2007"	="Accenture Australia Holdings Pty Ltd"	25-Jun-08 04:19 PM	

+="CN94792"	"Registration of 17 NNTT staff and Executives at the AIATSIS Conference"	="National Native Title Tribunal"	25-Jun-08	="Conference centres"	21-May-08	22-May-08	10640.00	=""	="AIATSIS Conference"	25-Jun-08 04:28 PM	

+="CN94795"	"NSN 1560-00-807-9586, Spring Assemblies"	="Defence Materiel Organisation"	25-Jun-08	="Aerospace systems and components and equipment"	23-Oct-07	19-Jun-08	20634.24	=""	="Milspec Services Pty Ltd"	25-Jun-08 04:55 PM	

+="CN94796"	"APVMA COMPLETE LABEL DATABASE"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Internet related services"	04-Dec-07	30-Jun-08	20000.00	=""	="Qld Dept of Primary Industries & Fisheries"	25-Jun-08 04:56 PM	

+="CN94791"	"LISTING IN WHITE PAGES ACROSS AUSTRALIA"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Trade or service directory or yellow page advertising"	21-Aug-07	29-Jan-09	38550.00	=""	="White Pages Directories"	25-Jun-08 04:57 PM	

+="CN94797"	"Additional building fitout cots"	="Future Fund Management Agency"	25-Jun-08	="Wall fixtures"	01-Apr-08	01-Jun-08	14253.80	=""	="ISIS Projects Pty Ltd"	25-Jun-08 04:57 PM	

+="CN94798"	"LIBRARY MANAGEMENT SYSTEM"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Libraries and related materials"	31-Dec-07	31-Dec-08	17320.00	=""	="Softlink Australia"	25-Jun-08 05:01 PM	

+="CN94799"	"COMPARISON OF FORMULATION COMPOSITION WITH REGISTERED FORMULA"	="Australian Pesticides and Veterinary Medicines Authority"	25-Jun-08	="Chemicals including Bio Chemicals and Gas Materials"	12-Jun-08	31-Dec-08	44396.00	=""	="Advance Analytical Australia Pty Ltd"	25-Jun-08 05:06 PM	

+="CN94801"	"  ES48AU - ISPF Panel using Dialogue Manager training   courses  "	="Australian Taxation Office"	26-Jun-08	="Management and Business Professionals and Administrative Services"	07-Jul-08	08-Aug-08	69300.00	="08.124"	="IBM Australia Pty Ltd"	26-Jun-08 07:13 AM	

+="CN94802"	"Provision of Research services for information services"	="Australian Federal Police"	26-Jun-08	="Engineering and Research and Technology Based Services"	01-Jul-08	30-Jun-09	60500.00	=""	="Gartner Australasia Pty Limited"	26-Jun-08 08:29 AM	

+="CN94803"	" VEHICLE REPAIRS "	="Department of Defence"	26-Jun-08	="Motor vehicles"	25-Jun-08	25-Jul-08	20374.20	=""	="MICKS AUTOS"	26-Jun-08 08:34 AM	

+="CN94804"	"TRACTOR PARTS"	="Department of Defence"	26-Jun-08	="Truck tractors"	25-Jun-08	23-Jul-08	16585.25	=""	="HITACHI CONSTRUCTION"	26-Jun-08 08:34 AM	

+="CN94805"	"VEHICLE REPAIRS"	="Department of Defence"	26-Jun-08	="Motor vehicles"	13-May-08	13-Jun-08	19065.05	=""	="MACK AUSTRALIA"	26-Jun-08 08:38 AM	

+="CN94807"	"Bur, Bone Surgery"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	18-Jun-08	30-Jul-08	18793.54	=""	="Stryker"	26-Jun-08 09:02 AM	

+="CN94809"	" Supply of 200 Straight Headed Pins for Swing Mounts "	="Defence Materiel Organisation"	26-Jun-08	="Pins or tacks"	14-Apr-08	11-Oct-08	12122.00	=""	="W & E Platts"	26-Jun-08 09:41 AM	

+="CN94810"	" VEHICLE REPAIRS "	="Department of Defence"	26-Jun-08	="Motor vehicles"	13-Jun-08	13-Jul-08	11281.30	=""	="TRACPOWER"	26-Jun-08 10:00 AM	

+="CN94806-A1"	"Provision of Uninterruptible Power Supply (UPS) equipment"	="Australian Federal Police"	26-Jun-08	="Power supply units"	22-Jun-08	31-Dec-08	56935.14	=""	="Dimension Data Australia Pty Limited"	26-Jun-08 10:16 AM	

+="CN94812"	"PROCURE PARTS FOR ASLAV"	="Department of Defence"	26-Jun-08	="Armoured fighting vehicles"	25-Jun-08	26-Oct-09	42145.72	=""	="GENERAL DYNAMICS LAND SYSTEMS"	26-Jun-08 10:22 AM	

+="CN94813"	"Medical Consumables"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	18-Jun-08	16-Jul-08	11662.70	=""	="Tyco Healthcare"	26-Jun-08 10:25 AM	

+="CN94819"	"Central Advertising System Dept of Finance and Deregulation. CAS cosolidates government advertising expenditure and secures optimal media discounts C'Wealth wide neg media rates."	="National Native Title Tribunal"	26-Jun-08	="Advertising"	01-Jul-07	26-Jun-08	403022.15	=""	="HMA Blaze"	26-Jun-08 11:30 AM	

+="CN94827"	"Purchase of Veriton 1000 Pcs"	="Centrelink"	26-Jun-08	="Personal computers"	26-Jun-08	26-Dec-08	493900.00	=""	="Acer Computers Australia Pty Ltd"	26-Jun-08 12:02 PM	

+="CN94829"	" Consultancy to migrate electronic records from the SharePoint 2001 platform to the Microsoft Office SharePoint Server 2007 platform.    "	="Office of the Australian Information Commissioner"	26-Jun-08	="Information technology consultation services"	09-May-08	30-Jun-08	65095.00	=""	="Sharepoint Gurus Pty Ltd"	26-Jun-08 12:05 PM	

+="CN94831"	" Supply of Booths, Audiometric Examination "	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	12-Jun-08	30-Sep-08	30525.00	=""	="ACOUSTICAL DESIGN PTY LTD"	26-Jun-08 12:10 PM	

+="CN94833"	"Provision of Business Analysis Training Services"	="Department of Immigration and Citizenship"	26-Jun-08	="Business administration services"	08-May-08	05-Jun-08	20460.00	=""	="Project Management Partnerts Pty Ltd"	26-Jun-08 12:24 PM	

+="CN94835"	" SUPPLY OF SPLINT KITS, VACUUM SYSTEM "	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	16-Jun-08	30-Sep-08	60584.70	=""	="MEDICAL KINETICS PTY LTD"	26-Jun-08 12:26 PM	

+="CN94839"	" SUPPLY OF OTOSCOPE & OPHTHALMOSCOPE SETS "	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	16-May-08	30-Jun-08	19301.04	=""	="WELCH ALLYN AUSTRALIA PTY LTD"	26-Jun-08 12:44 PM	

+="CN94840-A1"	"Machine Gun Mounts"	="Defence Materiel Organisation"	26-Jun-08	="Machine mounts or vibration isolators"	26-Jun-08	09-Sep-08	50450.40	=""	="W & E Platt"	26-Jun-08 12:44 PM	

+="CN94842-A2"	"Provision of Web Publishing Services (Previously Published as GAPS ID: 1644519)"	="Department of Immigration and Citizenship"	26-Jun-08	="Temporary information technology software developers"	27-Jan-06	30-Sep-08	539938.00	=""	="InfoFocus Pty Ltd"	26-Jun-08 01:05 PM	

+="CN94841"	"SUPPLY OF MANIKINS, RESUSCITATION TRAINING"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	16-Jun-08	30-Jun-08	14800.50	=""	="LAERDAL PTY LTD"	26-Jun-08 01:05 PM	

+="CN94825-A3"	"Provision of MapInfo Cadestral Plus software licences, maintenance and support"	="Australian Federal Police"	26-Jun-08	="Software"	23-Jun-08	22-Jun-11	233953.50	=""	="Pitney Bowes MapInfo Australia Pty Ltd"	26-Jun-08 01:22 PM	

+="CN94843-A1"	"CLC Building Management control the PABX for the building and NNTT forms part of this contract as per the MOU. Includes Internet."	="National Native Title Tribunal"	26-Jun-08	="Telephone call accounting systems"	01-Jul-07	26-Jun-08	447480.73	=""	="Telstra Corporation Limited"	26-Jun-08 01:26 PM	

+="CN94845"	"SUPPLY OF MONITORS, HEAT STRESS"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	23-Jun-08	30-Jun-08	74580.00	=""	="AIR-MET SCIENTIFIC PTY LTD"	26-Jun-08 01:40 PM	

+="CN94847-A3"	"Provision of services relating to software development for AFP specialised applications"	="Australian Federal Police"	26-Jun-08	="Software"	01-Jul-08	30-Sep-09	279787.10	="RFT 8-2007"	="Peoplebank Australia Ltd"	26-Jun-08 02:04 PM	

+="CN94846"	"Repair of Shaft Assy"	="Defence Materiel Organisation"	26-Jun-08	="Aircraft"	26-Jun-08	26-Jul-08	13179.79	=""	="Sikorsky Aircraft Australia"	26-Jun-08 02:06 PM	

+="CN94848"	"Centrelink Agent - Narromine, NSW"	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	55355.92	=""	="Narromine Local Aboriginal Land Council"	26-Jun-08 02:10 PM	

+="CN94849-A1"	"Commonwealth government contract for Leasing Vehicles"	="National Native Title Tribunal"	26-Jun-08	="Motor vehicles"	01-Jul-07	30-Jun-08	130273.88	=""	="Leaseplan"	26-Jun-08 02:19 PM	

+="CN94850"	"Centrelink Agent - Wreck Bay, NSW"	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Wreck Bay Aboriginal Community Council"	26-Jun-08 02:20 PM	

+="CN94851"	" Review of Induction Training Program Services "	="Department of Immigration and Citizenship"	26-Jun-08	="Human resources services"	05-Jun-08	08-Jul-08	41800.00	=""	="Jenny Oates Associates Pty Ltd"	26-Jun-08 02:25 PM	

+="CN94854"	"Centrelink Agent - Point Pearce, SA"	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	19905.07	=""	="District Council of Yorke Peninsula"	26-Jun-08 02:30 PM	

+="CN94856"	"Training course"	="Australian Office of Financial Management"	26-Jun-08	="Education and Training Services"	27-May-08	02-Jun-08	14400.00	=""	="AFMA Services"	26-Jun-08 02:33 PM	

+="CN94858"	" Centrelink Agent - Woorabinda, QLD "	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	55355.92	=""	="Gail Susan Challacombe"	26-Jun-08 02:46 PM	

+="CN94859"	"Centrelink Agent - Mount Morgan, QLD"	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	26151.36	=""	="Mount Morgan Community Support Centre Inc"	26-Jun-08 02:58 PM	

+="CN94860"	"Human Papilloma Virus"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	10-Jun-08	10-Jul-08	10120.00	=""	="GLAXOSMITHKLINE AUSTRALIA"	26-Jun-08 03:00 PM	

+="CN94861"	"Centrelink Agent - Yarrabah, QLD"	="Centrelink"	26-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	26151.36	=""	="Juyuga Ministries Aboriginal Company PTY LTD"	26-Jun-08 03:10 PM	

+="CN94863"	"Pharmaceuticals"	="Defence Materiel Organisation"	26-Jun-08	="Medical Equipment and Accessories and Supplies"	20-Jun-08	18-Jul-08	21354.85	=""	="BIOLAB"	26-Jun-08 03:39 PM	

+="CN94865-A2"	"Provision for software licence and maintenance agreement for Autosys"	="Comsuper"	26-Jun-08	="Software maintenance and support"	26-Jun-08	26-Jun-11	249239.32	=""	="Dataflex"	26-Jun-08 03:40 PM	

+="CN94866-A1"	"Provision for Hardware Acquisition and maintenance"	="Comsuper"	26-Jun-08	="Hardware"	17-Jun-08	17-Jun-13	856155.00	=""	="CDM Pty Ltd"	26-Jun-08 03:44 PM	

+="CN94868"	"Services to Implement Omnifinf Pilot"	="Australian Taxation Office"	26-Jun-08	="Software maintenance and support"	01-Jul-08	20-Jul-08	51150.00	=""	="IBM Australia Ltd"	26-Jun-08 03:56 PM	

+="CN94870-A1"	"Provision for construction work on ComSuper computer room air conditioning"	="Comsuper"	26-Jun-08	="Air conditioning installation or maintenance or repair services"	10-Jan-08	11-Feb-08	305877.00	=""	="Electaire Pty Ltd"	26-Jun-08 04:03 PM	

+="CN94872-A1"	"Provision for Comsuper access to Gartner resources"	="Comsuper"	26-Jun-08	="Software"	01-Jul-07	30-Jun-09	113900.00	=""	="Gartner Australasia"	26-Jun-08 04:09 PM	

+="CN94873"	"Provision for System Tester"	="Comsuper"	26-Jun-08	="Human resources services"	23-Jun-08	22-Sep-08	41184.00	=""	="Talent International"	26-Jun-08 04:14 PM	

+="CN94874"	"Financial assessment and Financial fundamentals training"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Education and Training Services"	01-Jul-05	30-Jun-08	20000.00	=""	="DAVID HEY-CUNNINGHAM and ASSOCIATES P/L"	26-Jun-08 04:15 PM	

+="CN94875"	"Provision of Software Maintenace and Support"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	01-Jul-06	30-Jun-09	58446.86	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	26-Jun-08 04:16 PM	

+="CN94876"	"Membership Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	01-Jul-08	30-Jun-09	19720.00	=""	="NATIONAL ASSOCIATION OF"	26-Jun-08 04:16 PM	

+="CN94877"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	22011.00	=""	="ZERIDIAN PTY LTD"	26-Jun-08 04:16 PM	

+="CN94879"	"Provision of ML Microsoft Premier Support"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	100925.00	=""	="MICROSOFT PTY LTD"	26-Jun-08 04:17 PM	

+="CN94880"	"Compactus 12th floor, Industry House"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Office Equipment and Accessories and Supplies"	02-Jun-08	02-Jul-08	19303.90	=""	="SHELVMASTER PTY LTD"	26-Jun-08 04:17 PM	

+="CN94881"	"Relocation of Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	02-Jun-08	30-Jun-08	18502.00	=""	="JCP SERVICES PTY LTD"	26-Jun-08 04:17 PM	

+="CN94882"	"Provision of Applications Development Expertise"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	02-Jun-08	30-Jun-08	79750.00	=""	="UNIQUE WORLD PTY LTD"	26-Jun-08 04:17 PM	

+="CN94878"	"Provision for System Tester"	="Comsuper"	26-Jun-08	="Human resources services"	23-Jun-08	20-Sep-08	44044.00	=""	="Human Touch Resources"	26-Jun-08 04:18 PM	

+="CN94883"	"Length measurement and assessment of face for flatness and par"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Measuring and observing and testing instruments"	03-Jun-08	30-Jun-08	10000.00	=""	="NATIONAL PHYSICAL LABORATORY"	26-Jun-08 04:18 PM	

+="CN94884"	"Facilities Management for April 2008"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	30-Jun-08	19764.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	26-Jun-08 04:18 PM	

+="CN94885"	"Konica Photocopier"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Office machines and their supplies and accessories"	04-Jun-08	12-Jun-08	13978.80	=""	="KONICA MINOLTA BUSINESS SOLUTIONS AUST"	26-Jun-08 04:18 PM	

+="CN94886"	"BioMark Digital Array"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	04-Jun-08	30-Jun-08	12000.00	=""	="FLUIDIGM CORPORATION"	26-Jun-08 04:18 PM	

+="CN94887"	"Provision of Professional Services"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	04-Jun-08	30-Jun-08	23100.00	=""	="UNIQUE WORLD PTY LTD"	26-Jun-08 04:18 PM	

+="CN94888"	"LAN Network Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	04-Jun-08	30-Jun-08	30690.00	=""	="NETWORK BROKERS PTY LTD"	26-Jun-08 04:18 PM	

+="CN94890"	"Maintenance Contract"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	04-Jun-08	30-Jun-09	22858.00	=""	="WATERS AUSTRALIA PTY LTD"	26-Jun-08 04:19 PM	

+="CN94891"	"Laboratory Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	04-Jun-08	31-Jul-08	40347.30	=""	="AGILENT TECHNOLOGIES AUST PTY"	26-Jun-08 04:19 PM	

+="CN94892"	"Design and Delivery of MAP Calendar year 2008"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	04-Oct-06	30-Jun-10	228168.00	=""	="YELLOW EDGE PTY LTD"	26-Jun-08 04:19 PM	

+="CN94893"	"Change Management Workshops Workshop design and facilitation c"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	05-Jun-08	30-Jun-08	12428.90	=""	="GLOBAL LEARNING"	26-Jun-08 04:19 PM	

+="CN94894"	"file sentencing and destruction program innovation"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Transportation and Storage and Mail Services"	05-Jun-08	30-Jun-08	24500.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	26-Jun-08 04:19 PM	

+="CN94895"	"Purchase of Three Hardware Security Modules"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	05-Jun-08	30-Jun-08	56678.58	=""	="LIGHTSOURCE TECHNOLOGIES AUSTRALIA"	26-Jun-08 04:19 PM	

+="CN94896"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	05-Jun-08	31-Aug-08	47467.20	=""	="GREYTHORN PTY LTD"	26-Jun-08 04:19 PM	

+="CN94897"	"AusIndustry' printed sticky note pads to be used as promotio"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	05-Jun-08	31-Jul-08	63360.00	=""	="STIKKI PRODUCTS PTY LTD"	26-Jun-08 04:19 PM	

+="CN94898"	"Google search engine optimisation"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	05-Jun-08	31-Jul-08	100000.00	=""	="HMA BLAZE PTY LTD"	26-Jun-08 04:19 PM	

+="CN94899"	"Install IPS - Brisbane Fit out 100 Creek Street Prop Claims"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	06-Jun-08	30-Jun-08	18735.20	=""	="NEC AUSTRALIA PTY LTD"	26-Jun-08 04:20 PM	

+="CN94900"	"Purchase of a Licence to use Avoka Product Centre"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	06-Jun-08	30-Jun-08	76450.00	=""	="AVOKA TECHNOLOGIES"	26-Jun-08 04:20 PM	

+="CN94901"	"Purchase of Hitwise Licence"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	06-Jun-08	30-Jun-09	30000.00	=""	="HITWISE PTY LTD"	26-Jun-08 04:20 PM	

+="CN94902"	"Tasmanian Manufacturing Business Survey"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	31-Aug-08	27500.00	=""	="CRADLE COAST AUTHORITY"	26-Jun-08 04:20 PM	

+="CN94903"	"Engagement of supplier to undertake thermal, capacity"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	06-Jun-08	31-Jul-08	20363.20	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Jun-08 04:20 PM	

+="CN94904"	"S4000 chilled mirror"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	07-Apr-08	25-Jun-08	26695.90	=""	="LEAR SIEGLER AUSTRALASIA P/L"	26-Jun-08 04:20 PM	

+="CN94905"	"Segregation Of Duties Review AusIndustry"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	07-Apr-08	30-Jun-09	61000.00	=""	="WALTER and TURNBULL"	26-Jun-08 04:20 PM	

+="CN94906"	"Port Melbourne Construction"	="Department of Innovation Industry Science and Research"	26-Jun-08	="General building construction"	07-Feb-08	23-Jun-08	3633299.50	=""	="HANSEN YUNCKEN PTY LTD"	26-Jun-08 04:21 PM	

+="CN94907"	"Fraud Investigation"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	09-May-08	30-Jun-08	20000.00	=""	="AUSTRALIAN FORENSIC SERVICES"	26-Jun-08 04:21 PM	

+="CN94908"	"Legal advice for Port Melbourne fitout legal services"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	10-Jun-08	10-Jun-08	11568.70	=""	="MALLESONS STEPHEN JAQUES"	26-Jun-08 04:21 PM	

+="CN94909"	"Managing Writing for the Australian Public Sector"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	11-Jul-08	18000.00	=""	="RUSHWORTH CONSULTANCY PTY LTD"	26-Jun-08 04:21 PM	

+="CN94910"	"Marketing activities to support Business Advisers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	11000.00	=""	="COASTAL BUSINESS CENTRE"	26-Jun-08 04:21 PM	

+="CN94911"	"Marketing activities to support Business Advisers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-08	16500.00	=""	="THE IMPROVE GROUP"	26-Jun-08 04:21 PM	

+="CN94912"	"Laboratory Gases"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	10-Jun-08	31-Dec-08	15281.20	=""	="SUPAGAS NSW and QLD"	26-Jun-08 04:21 PM	

+="CN94913"	"Milestone MultiPREP 41 Rotar"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	11-Apr-08	30-Jun-08	28505.03	=""	="JOHN MORRIS SCIENTIFIC P/L"	26-Jun-08 04:22 PM	

+="CN94914"	"Agilent 3458A Digital multimeter replace HP6456A"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	11-Jun-08	09-Jul-08	11250.64	=""	="TRIO SMARTCAL P/L"	26-Jun-08 04:22 PM	

+="CN94915"	"VOC Air Sampling Consumables"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	11-Jun-08	16-Jun-08	54314.70	=""	="CHROMALYTIC TECHNOLOGY"	26-Jun-08 04:22 PM	

+="CN94916"	"Laboratory and scientific equipment Motorized metalwigical m"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	11-Jun-08	23-Jun-08	69520.00	=""	="LEICA MICROSYSTEMS PTY LTD"	26-Jun-08 04:22 PM	

+="CN94917"	"Fluorescence Detector"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	11-Jun-08	30-Jun-08	10769.00	=""	="SHIMADZU OCEANIA PTY LTD"	26-Jun-08 04:22 PM	

+="CN94918"	"Corp Exec Board"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	30-Jun-08	24000.00	=""	="CORPORATE EXECUTIVE BOARD"	26-Jun-08 04:22 PM	

+="CN94919"	"Plate Pourer Stacker"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	11-Jun-08	30-Jun-08	28710.00	=""	="A I SCIENTIFIC P/L"	26-Jun-08 04:22 PM	

+="CN94920"	"Laboratory Washers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	11-Jun-08	30-Jun-08	52472.06	=""	="MIELE AUSTRALIA PTY LTD"	26-Jun-08 04:22 PM	

+="CN94921"	"USB Storage keys"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	12-Jun-08	30-Jun-08	48653.00	=""	="ASI SOLUTIONS"	26-Jun-08 04:22 PM	

+="CN94922"	"Temp placement - Assistant Manager - Management Accounting"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Accounting and auditing"	12-May-08	31-Dec-08	65000.00	=""	="WALTER and TURNBULL"	26-Jun-08 04:22 PM	

+="CN94923"	"File Sentencing and Destruction Resources Energy and Tourism"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Transportation and Storage and Mail Services"	13-Jun-08	30-Jun-08	24000.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	26-Jun-08 04:23 PM	

+="CN94924"	"Software Purchase"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	13-Jun-08	31-Dec-08	44550.00	=""	="THERMO INFORMATICS ASIA PACIFIC PTY LTD"	26-Jun-08 04:23 PM	

+="CN94925"	"Stationery order and supplies"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Office Equipment and Accessories and Supplies"	14-May-08	25-May-08	35261.27	=""	="CORPORATE EXPRESS AUST LTD"	26-Jun-08 04:23 PM	

+="CN94926"	"To supply and implement the ValueFinancials software package"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	15-Feb-08	30-Jun-08	34980.00	=""	="PRICE WATERHOUSE COOPERS (ACT)"	26-Jun-08 04:23 PM	

+="CN94927"	"Legal Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	16-Jun-08	30-Jun-08	10998.90	=""	="MALLESONS STEPHEN JAQUES"	26-Jun-08 04:23 PM	

+="CN94928"	"Legal Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	16-Jun-08	30-Jun-08	14945.57	=""	="AUST GOVT SOLICITOR (VIC)"	26-Jun-08 04:23 PM	

+="CN94929"	"Legal Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	16-Jun-08	30-Jun-08	23293.60	=""	="MALLESONS STEPHEN JAQUES"	26-Jun-08 04:23 PM	

+="CN94930"	"Marketing activities to support Business Advisers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	77000.00	=""	="THE AUSTRALIAN  INDUSTRY GROUP"	26-Jun-08 04:24 PM	

+="CN94931"	"Marketing activities to support Business Advisers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	110000.00	=""	="AUSTRALIAN CHAMBER ALLIANCE PTY LTD"	26-Jun-08 04:24 PM	

+="CN94932"	"Fees for  Workshop Strategy and Facilitation"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	27-Jun-08	10076.45	=""	="CORPORATE CONTEXT PTY LTD"	26-Jun-08 04:24 PM	

+="CN94933"	"Legal Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	17-Jun-08	30-Jun-08	13048.75	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	26-Jun-08 04:24 PM	

+="CN94934"	"Purchase of Dell Computer Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	14235.28	=""	="DELL AUSTRALIA"	26-Jun-08 04:24 PM	

+="CN94935"	"Australian Business Research Reports"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	79200.00	=""	="IBIS BUSINESS INFORMATION PTY LTD"	26-Jun-08 04:24 PM	

+="CN94936"	"Purchase of Dell Computer Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	17-Jun-08	30-Jun-08	79325.03	=""	="DELL AUSTRALIA"	26-Jun-08 04:24 PM	

+="CN94937"	"Provision of Core Impact Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	17-Jun-08	30-Jun-09	29425.00	=""	="ZALLCOM PTY LTD"	26-Jun-08 04:25 PM	

+="CN94938"	"Modules and SILK development"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	17-Nov-07	30-Jun-08	29430.00	=""	="AURION CORPORATION P/L"	26-Jun-08 04:25 PM	

+="CN94939"	"Purchase of SAN expansion units, disc and ancillaries."	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	18-Jun-08	29-Aug-08	40150.00	=""	="CITY SOFTWARE"	26-Jun-08 04:25 PM	

+="CN94940"	"Conference for TCF Review"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Hotels and lodging and meeting facilities"	18-Jun-08	30-Jun-08	14799.02	=""	="FOUR POINTS BY SHERATON"	26-Jun-08 04:25 PM	

+="CN94941"	"Legal Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	18-Jun-08	30-Jun-08	14922.57	=""	="PHILLIPS FOX SOLICITORS"	26-Jun-08 04:25 PM	

+="CN94942"	"Provision of ProtectDrive Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	18-Jun-08	30-Jun-09	10600.59	=""	="ZALLCOM PTY LTD"	26-Jun-08 04:25 PM	

+="CN94943"	"Provision of MIMEsweeper Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	18-Jun-08	30-Jun-09	22220.00	=""	="ZALLCOM PTY LTD"	26-Jun-08 04:25 PM	

+="CN94944"	"Provision of Symantec Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	18-Jun-08	30-Jun-09	26774.71	=""	="ZALLCOM PTY LTD"	26-Jun-08 04:26 PM	

+="CN94945"	"Provision of vKernal Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	18-Jun-08	30-Jun-09	58275.80	=""	="QIRX PTY LTD"	26-Jun-08 04:26 PM	

+="CN94947"	"Port Melbourne Accom Wilde Woollard"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management advisory services"	19-Jun-08	20-Jun-08	13747.29	=""	="WILDE AND WOOLLARD"	26-Jun-08 04:26 PM	

+="CN94948"	"Purchase of APC Hardware and Licences"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	19-Jun-08	29-Aug-08	36303.30	=""	="FRONTLINE SYSTEMS AUSTRALIA"	26-Jun-08 04:27 PM	

+="CN94946"	"Purchase of 230 Acer Veriton S661 PC's"	="National Native Title Tribunal"	26-Jun-08	="Computers"	05-May-08	05-May-08	305963.00	=""	="Open Systems Australia"	26-Jun-08 04:27 PM	

+="CN94949"	"Advertising and Recruitment Chief Scientist"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	19-Jun-08	30-Jun-08	38640.80	=""	="HMA BLAZE PTY LTD"	26-Jun-08 04:27 PM	

+="CN94950"	"Provision of IBM TSM Software Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	19-Jun-08	30-Jun-09	89502.08	=""	="IBM AUST LTD"	26-Jun-08 04:28 PM	

+="CN94951"	"Membership Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Jun-08	31-Dec-08	11680.00	=""	="NATIONAL ASSOCIATION OF"	26-Jun-08 04:28 PM	

+="CN94952"	"Membership Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	19-Jun-08	31-Dec-08	43680.00	=""	="NATIONAL ASSOCIATION OF"	26-Jun-08 04:28 PM	

+="CN94953"	"Cost Benefit Analysis"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	31-Jul-08	13200.00	=""	="GARRY WALL"	26-Jun-08 04:28 PM	

+="CN94954"	"Advertising  -AusIndustry  branding"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	19-Jun-08	31-Jul-08	67580.17	=""	="HMA BLAZE PTY LTD"	26-Jun-08 04:28 PM	

+="CN94955"	"Purchase of IBM LT04 Tape Drives"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	19-Jun-08	31-Jul-08	67837.08	=""	="CITY SOFTWARE"	26-Jun-08 04:29 PM	

+="CN94956"	"Business Advisers and State officers Conf and Launch of Enterpri"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Hotels and lodging and meeting facilities"	19-May-08	30-Jun-08	80500.00	=""	="BAYVIEW EDEN MELBOURNE"	26-Jun-08 04:29 PM	

+="CN94957"	"LE NOUVEL Econmistic Cancellation Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	20-Jun-08	30-Jun-08	14126.00	=""	="HMA BLAZE PTY LTD"	26-Jun-08 04:29 PM	

+="CN94958"	"IT Services for NEW SO Fitout"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	20-Jun-08	30-Jun-08	15829.00	=""	="NEC AUSTRALIA PTY LTD"	26-Jun-08 04:29 PM	

+="CN94959"	"Advertising and Recruitment Graduate Development Program"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	20-Jun-08	30-Jun-08	38874.35	=""	="HMA BLAZE PTY LTD"	26-Jun-08 04:29 PM	

+="CN94961"	"Provision of ZENworks Patch Management Subscription"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	20-Jun-08	30-Jun-08	39937.60	=""	="OPC CANBERRA PTY LTD"	26-Jun-08 04:30 PM	

+="CN94962"	"Provision of MapInfo Licence Renewal for 2008/2009"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	20-Jun-08	30-Jun-08	60280.89	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Jun-08 04:30 PM	

+="CN94960"	"Software Licences"	="Department of Human Services"	26-Jun-08	="Software"	25-Jun-08	29-Jun-08	13836.60	=""	="DATA # 3 LIMITED"	26-Jun-08 04:30 PM	

+="CN94963"	"Branded Marketing Items Sticky Note Booklets"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	20-Jun-08	31-Aug-08	59961.00	=""	="WOMPRO PTY LTD"	26-Jun-08 04:30 PM	

+="CN94964"	"Merchandise -30cm plastic rulers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	20-Jun-08	31-Jul-08	14850.00	=""	="WOMPRO PTY LTD"	26-Jun-08 04:31 PM	

+="CN94965"	"Merchandise -Business card holders"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	20-Jun-08	31-Jul-08	36300.00	=""	="WOMPRO PTY LTD"	26-Jun-08 04:31 PM	

+="CN94966"	"Merchandise -AusIndustry pens"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	20-Jun-08	31-Jul-08	59961.00	=""	="WOMPRO PTY LTD"	26-Jun-08 04:31 PM	

+="CN94967"	"AusIndustry National Training Program"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	21-Dec-07	20-Nov-09	32380.00	=""	="DLA PHILLIPS FOX"	26-Jun-08 04:31 PM	

+="CN94968"	"In house 2 day contract mgmnt course Presenter fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Education and Training Services"	21-Mar-08	31-Dec-08	32100.00	=""	="CARROLL AND ASSOCIATES LEGAL CONSULTANTS"	26-Jun-08 04:31 PM	

+="CN94969"	"Automatic Tube Sampler"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	21-May-08	11-Jun-08	28152.48	=""	="BERTHOLD TECHNOLOGIES"	26-Jun-08 04:31 PM	

+="CN94970"	"Support and Maintenance for F5 Load Balancers and Applicatio"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	21-May-08	30-Jun-08	23408.10	=""	="CERULEAN SOLUTIONS LIMITED"	26-Jun-08 04:31 PM	

+="CN94971"	"VANguard Demonstration Package"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	21-May-08	30-Jun-08	35145.00	=""	="ZOO COMMUNICATIONS PTY LTD"	26-Jun-08 04:31 PM	

+="CN94972"	"Maintenance of the Program Costing Model"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	21-May-08	31-Dec-08	29920.00	=""	="OAKTON AA SERVICES PTY LTD"	26-Jun-08 04:32 PM	

+="CN94973"	"=SAN Firmware Upgrade"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	22-Apr-04	30-Jun-08	32608.42	=""	="GETRONICS (AUSTRALIA) PTY LTD"	26-Jun-08 04:32 PM	

+="CN94974"	"Transition to the New Managed Services Delivery Model"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	22-Apr-04	30-Jun-08	320393.49	=""	="GETRONICS (AUSTRALIA) PTY LTD"	26-Jun-08 04:32 PM	

+="CN94975"	"Implementation of the VOIP Solution"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	22-Apr-04	30-Jun-08	401658.40	=""	="GETRONICS (AUSTRALIA) PTY LTD"	26-Jun-08 04:32 PM	

+="CN94976"	"Host Small Business Forum Council of Small Business of Austr"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	14199.00	=""	="COSBOA"	26-Jun-08 04:32 PM	

+="CN94977"	"Five tonne wire rope hoist trolley w/ manual chain block"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	22-May-08	30-Jun-08	28226.00	=""	="MORRIS POWERLEC PTY LTD"	26-Jun-08 04:32 PM	

+="CN94978"	"Office Furniture"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Furniture and Furnishings"	22-May-08	30-Jun-08	73928.80	=""	="WORKSPACE COMMERCIAL FURNITURE PTY LTD"	26-Jun-08 04:32 PM	

+="CN94979"	"Provision of Implementation Services for Symantec End Point"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	23-Jan-08	29-Feb-08	10384.00	=""	="ZALLCOM PTY LTD"	26-Jun-08 04:32 PM	

+="CN94980"	"Licence Renenwal of MapInfo MAPXTREME Java"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	23-Jun-08	01-Jun-09	13772.50	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Jun-08 04:32 PM	

+="CN94981"	"Innovation Centres marketing collateral"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	11-Jul-08	42490.00	=""	="GREEN FROG PROMOTIONS"	26-Jun-08 04:33 PM	

+="CN94982"	"Purchase of Syntergy Replicator"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	23-Jun-08	30-Jul-08	46970.00	=""	="UNIQUE WORLD PTY LTD"	26-Jun-08 04:33 PM	

+="CN94983"	"Folate Testing"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	23-Jun-08	30-Jun-08	10692.00	=""	="HEALTH CORPORATE NETWORK"	26-Jun-08 04:33 PM	

+="CN94984"	"Merchandise AusIndustry Gen DL Brochure"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	23-Jun-08	30-Jun-08	10976.00	=""	="GRASSHOPPER PROMOTIONAL"	26-Jun-08 04:33 PM	

+="CN94985"	"Produce Innovation Centres marketing kits"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	30-Jun-08	12525.00	=""	="HAYSTAC PUBLIC AFFAIRS"	26-Jun-08 04:33 PM	

+="CN94986"	"SAIIF Legal  Advice"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	23-Jun-08	30-Jun-08	12916.20	=""	="MALLESONS STEPHEN JAQUES"	26-Jun-08 04:33 PM	

+="CN94987"	"AFMA Operations Survey 2008"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	30-Jun-08	16500.00	=""	="AUSTRALIAN FINANCIAL MARKETS"	26-Jun-08 04:33 PM	

+="CN94988"	"Produce signage panels for Enterprise Connect"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	30-Jun-08	17700.00	=""	="PORTABLE CREATIONS ACT"	26-Jun-08 04:33 PM	

+="CN94989"	"Merchandise Buisness Card Holder"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	23-Jun-08	30-Jun-08	18480.00	=""	="GRASSHOPPER PROMOTIONAL"	26-Jun-08 04:34 PM	

+="CN94990"	"Purchase of Foundstone Vulnerability Management Hardware"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	23-Jun-08	30-Jun-08	21838.88	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	26-Jun-08 04:34 PM	

+="CN94991"	"Purchase of Verisign Digital SSL Certificates"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	23-Jun-08	30-Jun-08	33132.00	=""	="VERISIGN AUSTRALIA PTY LTD"	26-Jun-08 04:34 PM	

+="CN94992"	"Upgrade of Perimeter Security Location"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Building and Construction and Maintenance Services"	23-Jun-08	30-Jun-08	33308.00	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	26-Jun-08 04:34 PM	

+="CN94993"	"Purchase of SSL Certificates"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	23-Jun-08	30-Jun-08	37206.40	=""	="VERISIGN AUSTRALIA PTY LTD"	26-Jun-08 04:34 PM	

+="CN94994"	"Professional Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	23-Jun-08	31-Dec-08	19285.20	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	26-Jun-08 04:34 PM	

+="CN94995"	"Facilities Management Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Dec-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	26-Jun-08 04:34 PM	

+="CN94996"	"High Voltage lab maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	23-Jun-08	31-Dec-08	23650.00	=""	="HANSOM TRANSFORMERS"	26-Jun-08 04:35 PM	

+="CN94997"	"Automatic Manifolds"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	23-Jun-08	31-Jul-08	34650.00	=""	="MED and ENG PTY LTD"	26-Jun-08 04:35 PM	

+="CN94998"	"Quantitative Market Research"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	31-Jul-08	41390.80	=""	="ORIMA RESEARCH PTY LTD"	26-Jun-08 04:35 PM	

+="CN94999"	"Merchandise - Ausindustry Kit folders"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	23-Jun-08	31-Jul-08	56155.00	=""	="UNION OFFSET CO P/L"	26-Jun-08 04:35 PM	

+="CN95000"	"Calico bags for event kits"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	23-Jun-08	31-Jul-08	64812.00	=""	="CLAYTONS AUSTRALIA"	26-Jun-08 04:35 PM	

+="CN95001"	"Fixed Outgoings expenses"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-09	69811.26	=""	="JONES LANG LASALLE (ACT) PTY LTD"	26-Jun-08 04:35 PM	

+="CN95002"	"Rent"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-09	372188.56	=""	="JONES LANG LASALLE (ACT) PTY LTD"	26-Jun-08 04:35 PM	

+="CN95003"	"Facilities Management for May 2008"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-08	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	26-Jun-08 04:35 PM	

+="CN95005"	"Provision of Security Consulting Services"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	23-May-08	30-Jun-08	23735.00	=""	="CYBERTRUST AUSTRALIA PTY LTD"	26-Jun-08 04:35 PM	

+="CN95006"	"Relocation of Equipment"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	23-May-08	30-Jun-08	41800.00	=""	="AGILENT TECHNOLOGIES AUST PTY"	26-Jun-08 04:36 PM	

+="CN95007"	"Environmental Analysis"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Earth science services"	23-May-08	30-Jun-08	160000.00	=""	="CSIRO ACCOUNTS PAYABLE"	26-Jun-08 04:36 PM	

+="CN95004"	"Software purchases"	="Department of Human Services"	26-Jun-08	="Software"	25-Jun-08	30-Jun-08	44000.00	=""	="LEX AUSTRALIA PTY LTD"	26-Jun-08 04:36 PM	

+="CN95008"	"Simulation, training and support"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Business administration services"	23-May-08	30-Jun-09	57200.00	=""	="SIMCON SERVICES PTY LTD"	26-Jun-08 04:36 PM	

+="CN95009"	"Hardware Purchase for VANguard Target Gateway"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	23-May-08	30-Jun-09	1530308.91	=""	="IBM AUST LTD"	26-Jun-08 04:36 PM	

+="CN95010"	"Legal Advice - ACL Funding Agreement"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	23-May-08	30-May-08	14205.40	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	26-Jun-08 04:36 PM	

+="CN95011"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	24-Apr-08	30-Jun-08	42099.20	=""	="GREYTHORN PTY LTD"	26-Jun-08 04:37 PM	

+="CN95012"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	24-Jun-08	01-Aug-08	16000.05	=""	="PEOPLEBANK"	26-Jun-08 04:37 PM	

+="CN95013"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	24-Jun-08	01-Aug-08	16000.05	=""	="PEOPLEBANK"	26-Jun-08 04:37 PM	

+="CN95014"	"Marketing items for Manufacturing Centres-Enterprise Connect"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	24-Jun-08	11-Jul-08	42490.00	=""	="GREEN FROG PROMOTIONS"	26-Jun-08 04:37 PM	

+="CN95015"	"Editing services for frameworks for program design and impleme"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	24-Jun-08	28-Nov-08	15960.00	=""	="WORDWALLAH"	26-Jun-08 04:37 PM	

+="CN95016"	"Management Consultancy Fees"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management advisory services"	24-Jun-08	30-Jun-08	22500.00	=""	="SMS MANAGEMENT and TECHNOLOGY LTD"	26-Jun-08 04:37 PM	

+="CN95017"	"TRIM Software Maintenance - NMI"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	24-Jun-08	30-Jun-08	46042.70	=""	="ALPHAWEST SERVICES PTY LTD"	26-Jun-08 04:37 PM	

+="CN95018"	"Provision of Hardware Maintenance"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	24-Jun-08	30-Jun-09	77329.99	=""	="IBM AUST LTD"	26-Jun-08 04:38 PM	

+="CN95019"	"Brochure - DL size Can AusIndustry Help Your Business"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Marketing and distribution"	24-Jun-08	31-Jul-08	12073.60	=""	="GOANNA PRINT PTY LTD"	26-Jun-08 04:38 PM	

+="CN95020"	"Graphic design for Frameworks for Program Design and Implmen"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	24-Jun-08	31-Oct-08	13002.00	=""	="WILD DIGITAL"	26-Jun-08 04:38 PM	

+="CN95021"	"Produce Manufacturing Centres marketing kits"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Advertising"	25-Jun-08	30-Jun-08	12525.00	=""	="HAYSTAC PUBLIC AFFAIRS"	26-Jun-08 04:38 PM	

+="CN95022"	"Annual Membership Fee"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	25-Jun-08	30-Jun-09	10675.00	=""	="NATA"	26-Jun-08 04:38 PM	

+="CN95023"	"Purchase of 2 HP Blade Servers"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer Equipment and Accessories"	26-May-08	30-Jun-08	16230.84	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Jun-08 04:38 PM	

+="CN95024"	"Rios and Milli Q gradient water purification syst"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory and scientific equipment"	26-May-08	30-Jun-08	17340.40	=""	="MILLIPORE AUSTRALIA PTY LTD"	26-Jun-08 04:38 PM	

+="CN95025"	"Engage Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	26-May-08	30-Jun-08	29700.00	=""	="CASTELAIN PTY LTD"	26-Jun-08 04:38 PM	

+="CN95026"	"Legal Advice - Copyright Issues"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Legal services"	26-May-08	30-May-08	16500.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	26-Jun-08 04:38 PM	

+="CN95028"	"Engagement of Contractor"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	26-May-08	31-Dec-08	78249.60	=""	="FACE2FACE RECRUITMENT PTY LTD"	26-Jun-08 04:39 PM	

+="CN95029"	"Innovation Branch, AusIndustry HBDI"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Human resources services"	27-May-08	30-Jun-08	16000.00	=""	="YELLOW EDGE PTY LTD"	26-Jun-08 04:39 PM	

+="CN95030"	"Furnitures and Fixtures"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Laboratory supplies and fixtures"	27-May-08	31-Dec-08	13255.00	=""	="KPD PTY LTD"	26-Jun-08 04:39 PM	

+="CN95027"	"Temporary administrative support"	="Department of Human Services"	26-Jun-08	="Temporary clerical or administrative assistance"	25-Jun-08	01-Aug-08	16000.00	=""	="CAREERS UNLIMITED"	26-Jun-08 04:40 PM	

+="CN95031"	"Provision of Consultancy Services"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	27-May-08	31-Jul-08	18000.00	=""	="TOUCHPAPER AUSTRALASIA PTY LTD"	26-Jun-08 04:40 PM	

+="CN95032"	"Planning, Development and Delivery of cois Travel Costs"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Education and Training Services"	28-Apr-08	30-Jul-08	35000.00	=""	="WALTER and TURNBULL"	26-Jun-08 04:40 PM	

+="CN95033"	"Provision of Professional Services"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	28-May-08	30-Jun-08	24499.20	=""	="AVANADE AUSTRALIA PTY LTD"	26-Jun-08 04:40 PM	

+="CN95034"	"Advanced Deposit Leg. Merology Meeting"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Hotels and lodging and meeting facilities"	28-May-08	31-Dec-08	15000.00	=""	="STAR CITY PTY LIMITED"	26-Jun-08 04:40 PM	

+="CN95035"	"To undertake analysis of governance arrangements for Enterpr"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Management and Business Professionals and Administrative Services"	29-May-08	30-Jun-08	11550.00	=""	="GEMTIL PTY LTD"	26-Jun-08 04:40 PM	

+="CN95036"	"Purchase of Shavlik Software"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Software"	29-May-08	30-Jun-08	16354.80	=""	="UNIXPAC PTY LTD"	26-Jun-08 04:41 PM	

+="CN95037"	"Security Foundation Work"	="Department of Innovation Industry Science and Research"	26-Jun-08	="Computer services"	29-May-08	30-Jun-08	29854.00	=""	="OUROBOROS PTY LTD"	26-Jun-08 04:41 PM	

+="CN95038"	"Optical Surveilance."	="Centrelink"	26-Jun-08	="Security and personal safety"	01-Jul-07	30-Jun-08	279489.10	=""	="Kingswood Investigations"	26-Jun-08 04:46 PM	

+="CN95041"	"Procurement of:  POWER SUPPLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	02-Jun-08	02-Jun-09	765504.00	=""	="THALES TRAINING & SIMULATION Pty Ltd"	26-Jun-08 05:32 PM	

+="CN95042"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC,FIRE FIGHTING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	11-Sep-08	81570.00	=""	="FIRE RESPONSE Pty Ltd"	26-Jun-08 05:32 PM	

+="CN95043"	"Procurement of:  BLADDER KIT,OIL SER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	01-Sep-08	43306.20	=""	="BAKER & PROVAN Pty Ltd"	26-Jun-08 05:32 PM	

+="CN95044"	"Procurement of:  GASKET"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	23-Jul-08	132120.00	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:32 PM	

+="CN95045"	"Procurement of:  FILTER ELEMENT,FLUID,PRESSURE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	01-Oct-08	105350.00	=""	="PARKER HANNIFIN AUST Pty Ltd"	26-Jun-08 05:32 PM	

+="CN95046"	"Procurement of:  VALVE,WATER MIXING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	18-Aug-08	20520.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	26-Jun-08 05:33 PM	

+="CN95047"	"Procurement of:  CABLE,POWER,ELECTRICAL;  CABLE,POWER,ELECTRICAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	22-Sep-08	15140.10	=""	="PRYSMIAN POWER CABLES & SYSTEMS"	26-Jun-08 05:33 PM	

+="CN95048"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	01-Oct-08	46269.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	26-Jun-08 05:33 PM	

+="CN95049"	"Procurement of:  PUMP SET,CENTRIFUGAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	25-Feb-09	97300.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	26-Jun-08 05:33 PM	

+="CN95050"	"Procurement of:  SWITCH ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	11-Nov-08	39111.00	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	26-Jun-08 05:33 PM	

+="CN95051"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	02-Sep-08	21362.00	=""	="SONARTECH ATLAS"	26-Jun-08 05:33 PM	

+="CN95052"	"Procurement of:  TRANSFORMER,POWER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	10-Jun-08	02-Sep-08	14371.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:33 PM	

+="CN95053"	"Procurement of:  SHAFT,PUMP"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	26-Aug-08	22070.00	=""	="WEIR SERVICES AUSTRALIA Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95054"	"Procurement of:  HOSE,NONMETALLIC;  HOSE,NONMETALLIC;  HOSE,NONMETALLIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	30-Dec-08	14629.16	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95055"	"Procurement of:  TANK,HYDROPHOR"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	02-Jun-08	25-Sep-08	155200.00	=""	="EDSON Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95056"	"Procurement of:  BRAKE,ELECTRIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	02-Jun-08	03-Nov-08	235325.86	=""	="H I FRASER Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95057"	"Procurement of:  PANEL,CONTROL,ELECT"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	13-Feb-09	256809.99	=""	="ROLLS ROYCE MARINE AUST Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95058"	"Procurement of:  CHARGER,BATTERY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	04-Oct-09	32010.00	=""	="ELECTROTECH AUSTRALIA Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95059"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	23-Sep-08	17801.70	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:34 PM	

+="CN95060"	"Procurement of:  WINDOW,OBSERVATION"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	23-Sep-08	42059.10	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:34 PM	

+="CN95061"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC; + MORE..."	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	15-Jul-08	42825.96	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:35 PM	

+="CN95062"	"Procurement of:  DOOR,MARINE;  DOOR,MARINE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	16-Sep-08	27157.00	=""	="THYSSENKRUPP MARINE SYSTEMS"	26-Jun-08 05:35 PM	

+="CN95063"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	15-May-09	45993.36	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:35 PM	

+="CN95064"	"Procurement of:  PUMP,HYDRAULIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	18-Jul-09	184674.96	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:35 PM	

+="CN95065"	"Procurement of:  HOOK,PELICAN"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	17-Jul-08	52686.75	=""	="BAKER & PROVAN Pty Ltd"	26-Jun-08 05:35 PM	

+="CN95066"	"Procurement of:  CAMERA,TELEVISION"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	21-Dec-08	52410.00	=""	="SITEP AUSTRALIA Pty Ltd"	26-Jun-08 05:35 PM	

+="CN95067"	"Procurement of:  FILTER,DIRECT CURRENT POWER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	04-Sep-08	38380.00	=""	="SONARTECH ATLAS"	26-Jun-08 05:36 PM	

+="CN95068"	"Procurement of:  FILTER ELEMENT,FLUID"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	04-Jun-08	14-Jul-08	63445.00	=""	="PALL AUSTRALIA"	26-Jun-08 05:36 PM	

+="CN95069"	"Procurement of:  SAFETY CAN"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	10-Aug-08	20400.00	=""	="ACME FLUID HANDLING Pty Ltd"	26-Jun-08 05:36 PM	

+="CN95070"	"Procurement of:  GAGE,COMPOUND PRESSURE-VACUUM,DIAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	24-Sep-08	18600.00	=""	="AUSTRAL-POWERFLO SOLUTIONS"	26-Jun-08 05:36 PM	

+="CN95071"	"Procurement of:  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	06-Oct-08	15993.93	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:36 PM	

+="CN95072"	"Procurement of:  VALVE,SOLENOID"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	24-Sep-08	50382.36	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:36 PM	

+="CN95073"	"Procurement of:  TOOL KIT,GENERAL MECHANIC'S"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	24-Sep-08	16384.68	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:36 PM	

+="CN95074"	"Procurement of:  HOOK,RELEASE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	05-Aug-08	63750.00	=""	="RFD TECHNOLOGIES Pty Ltd"	26-Jun-08 05:36 PM	

+="CN95075"	"Procurement of:  CHAIR,PEDESTAL,MCR"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	22-Jul-08	65820.00	=""	="BALE ENGINEERING CO Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95076"	"Procurement of:  SCUPPER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	26-Aug-08	35045.85	=""	="THYSSENKRUPP MARINE SYSTEMS"	26-Jun-08 05:37 PM	

+="CN95077"	"Procurement of:  PACKING MATERIAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	30-Jun-08	22022.10	=""	="KLINGER Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95078"	"Procurement of:  CONDUIT,NONMETALLIC,FLEXIBLE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	11-Mar-09	10723.42	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95079"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	17-Mar-09	48896.28	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95080"	"Procurement of:  GAGE,PRESSURE,DIAL INDICATING;  FILTER,LIGHT,TELESCOPIC INSTRUMENT"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	16-Feb-09	33141.89	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95081"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	19-May-09	134704.80	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95082"	"Procurement of:  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY;  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	19-May-09	120990.01	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95083"	"Procurement of:  MARKER STRIP,TERMINAL BOARD"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	03-Dec-08	10510.70	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:37 PM	

+="CN95084"	"Procurement of:  FAN,VENTILATING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	30-Sep-08	18390.47	=""	="MARINE PLANT SYSTEMS Pty Ltd"	26-Jun-08 05:38 PM	

+="CN95085"	"Procurement of:  MOTOR,HYDRAULIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	18-Jun-08	12-Aug-09	59912.31	=""	="BEAK RAST ENGINEERING"	26-Jun-08 05:38 PM	

+="CN95086"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	05-Jun-08	26-Sep-08	11500.72	=""	="THALES AUSTRALIA"	26-Jun-08 05:38 PM	

+="CN95087"	"Procurement of:  DETECTOR,GAS"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	06-Jun-08	26-Jul-08	18834.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	26-Jun-08 05:38 PM	

+="CN95088"	"Procurement of:  FLAP AIR EMERGENCY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	10-Jun-08	08-Sep-08	75024.00	=""	="AIR CARE TECHNOLOGY Ltd"	26-Jun-08 05:38 PM	

+="CN95089"	"Procurement of:  BATTERY,NONRECHARGEABLE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	01-Jul-08	11700.00	=""	="J BLACKWOOD & SON Ltd"	26-Jun-08 05:38 PM	

+="CN95090"	"Procurement of:  SHIELD,ELECTRONIC COMPONENTS"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	03-Nov-08	19636.60	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:38 PM	

+="CN95091"	"Procurement of:  COUPLING,SHAFT,FLEXIBLE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	10-Jun-08	09-Jun-09	58695.41	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:39 PM	

+="CN95092"	"Procurement of:  CHAIR,PEDESTAL,SHIPBOARD BRIDGE WING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	12-Jul-08	16908.00	=""	="BALE DEFENCE INDUSTRIES Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95093"	"Procurement of:  FOAM LIQUID,FIRE EXTINGUISHING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	02-Oct-08	26852.00	=""	="SOLBERG ASIA PACIFIC Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95094"	"Procurement of:  TEST SET,ELECTRICAL POWER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	17-Nov-08	259031.58	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95095"	"Procurement of:  SEAL,NONMETALLIC SPECIAL SHAPED SECTION"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	14-Sep-08	11880.00	=""	="COLPRO ENGINEERING (AUST) Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95096"	"Procurement of:  PARTS KIT,ENGINE GENERATOR"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	10-Oct-08	88303.27	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:39 PM	

+="CN95097"	"Procurement of:  ADAPTER,STATIC TUBE TO CASE SECTION"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	10-Jun-08	28-Aug-08	10527.60	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95098"	"Procurement of:  VALVE,GLOBE;  VALVE,GLOBE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	13-Nov-08	137232.74	=""	="IKAD ENGINEERING"	26-Jun-08 05:39 PM	

+="CN95099"	"Procurement of:  REACTOR"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	14-Nov-08	31310.20	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:39 PM	

+="CN95100"	"Procurement of:  COVER,BEDDING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	30-Sep-08	38270.00	=""	="JBM AGENCIES Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95101"	"Procurement of:  PILLOW,BED"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	26-Aug-08	22780.00	=""	="JBM AGENCIES Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95102"	"Procurement of:  PANEL,CONTROL,ELECTRICAL-ELECTRONIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	16-Sep-08	14260.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95103"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	16-Sep-08	26050.74	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:40 PM	

+="CN95104"	"Procurement of:  TUNING UNIT,RADIO FREQUENCY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	20-Nov-08	40320.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95105"	"Procurement of:  VALVE,REGULATING,FLUID PRESSURE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	20-Sep-08	30218.00	=""	="NOSKE-KAESER NZ Ltd"	26-Jun-08 05:40 PM	

+="CN95106"	"Procurement of:  SPACER,FLEXIBLE,PIPELINE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	14-Nov-08	112490.88	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95107"	"Procurement of:  INHIBITOR,CORROSION,LIQUID COOLING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	10-Sep-08	17438.40	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:40 PM	

+="CN95108"	"Procurement of:  ROTOR,PUMP"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	01-Aug-08	16424.50	=""	="MARINE PLANT SYSTEMS Pty Ltd"	26-Jun-08 05:40 PM	

+="CN95109"	"Procurement of:  BATTERY,NONRECHARGEABLE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	23-Jul-08	14250.00	=""	="BATTERY SPECIALTIES (NSW) Pty LT"	26-Jun-08 05:41 PM	

+="CN95110"	"Procurement of:  TELEPHONE SET"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	22-Sep-08	11693.61	=""	="THALES AUSTRALIA"	26-Jun-08 05:41 PM	

+="CN95111"	"Procurement of:  TURNING GEAR DRIVE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	04-Mar-09	156502.62	=""	="RFD TECHNOLOGIES Pty Ltd"	26-Jun-08 05:41 PM	

+="CN95112"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	14-Apr-09	36043.92	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:41 PM	

+="CN95113"	"Procurement of:  CAP,SOUNDING TUBE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	21-Jul-08	10350.00	=""	="WALKERS Ltd"	26-Jun-08 05:41 PM	

+="CN95114"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	14-Oct-08	14747.10	=""	="THALES AUSTRALIA"	26-Jun-08 05:41 PM	

+="CN95115"	"Procurement of:  GEAR,SPUR;  PARTS KIT,BEARING REPLACEMENT,MECHANICAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	26-Aug-08	49650.00	=""	="A & G PRICE Ltd"	26-Jun-08 05:41 PM	

+="CN95116"	"Procurement of:  PUMP,ROTARY;  PUMP,ROTARY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	21-Oct-08	77722.00	=""	="WATMARINE ENGINEERING SERVICES *"	26-Jun-08 05:41 PM	

+="CN95117"	"Procurement of:  PULLER,MECHANICAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	26-Jul-08	23683.30	=""	="ALFA LAVAL AUSTRALIA Pty Ltd"	26-Jun-08 05:41 PM	

+="CN95118"	"Procurement of:  CONNECTOR,RECEPTACLE,ELECTRICAL;  CONNECTOR,PLUG,ELECTRICAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	04-Oct-08	77166.00	=""	="ELECTROPAR Ltd"	26-Jun-08 05:42 PM	

+="CN95119"	"Procurement of:  WATER,DISTILLED-DEI"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	13-Jul-08	22000.00	=""	="GLENDALE PACKAGING Pty Ltd"	26-Jun-08 05:42 PM	

+="CN95120"	"Procurement of:  CARTRIDGE,SHUT-OFF VALVE;  VALVE,SAFETY RELIEF"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	03-Nov-08	17832.00	=""	="STRACHAN & HENSHAW AUSTRALIA"	26-Jun-08 05:42 PM	

+="CN95121"	"Procurement of:  VALVE,GLOBE;  VALVE,GLOBE;  VALVE,CROSS"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	24-Aug-08	123312.00	=""	="PROMET VALVES AUSTRALIA Pty Ltd"	26-Jun-08 05:42 PM	

+="CN95122"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	25-Jul-08	10681.20	=""	="RFD TECHNOLOGIES Pty Ltd"	26-Jun-08 05:42 PM	

+="CN95123"	"Procurement of:  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC;  HOSE ASSEMBLY,NONMETALLIC"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	11-Jul-08	13400.00	=""	="LAMINAR FLOW Pty Ltd"	26-Jun-08 05:42 PM	

+="CN95124"	"Procurement of:  SWITCH,ROTARY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	21-Jul-08	13300.00	=""	="M&D MARINE PARTS SERVICE Pty *"	26-Jun-08 05:42 PM	

+="CN95125"	"Procurement of:  BEARING HALF SET,SLEEVE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	19-Jun-08	23-Oct-08	43609.80	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:43 PM	

+="CN95126"	"Procurement of:  CIRCUIT CARD ASSEMB"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	30-Sep-08	22006.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	26-Jun-08 05:43 PM	

+="CN95127"	"Procurement of:  SWITCH,PRESSURE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	18-Jun-08	03-Dec-08	55698.40	=""	="MTU DETROIT DIESEL AUSTRALIA"	26-Jun-08 05:43 PM	

+="CN95128"	"Procurement of:  LEVER ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	14-Sep-08	49930.72	=""	="BEAK RAST ENGINEERING"	26-Jun-08 05:43 PM	

+="CN95129"	"Procurement of:  FENDER,MARINE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	14-Sep-08	17740.50	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:43 PM	

+="CN95130"	"Procurement of:  GAGE,FILTER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	11-Aug-08	26284.00	=""	="AERO & MILITARY PRODUCTS"	26-Jun-08 05:43 PM	

+="CN95131"	"Procurement of:  FRAME ASSEMBLY,ROLL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	24-Mar-09	735175.04	=""	="BEAK RAST ENGINEERING"	26-Jun-08 05:43 PM	

+="CN95132"	"Procurement of:  COMFORTER,BED"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	01-Aug-08	27800.00	=""	="SPECIALTY QUILTS"	26-Jun-08 05:43 PM	

+="CN95133"	"Procurement of:  FREQUENCY CONTROL GROUP"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	18-Jun-08	06-Sep-08	12720.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	26-Jun-08 05:43 PM	

+="CN95134"	"Procurement of:  FRAME,TRANSPORT"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	19-Jun-08	07-Sep-08	60612.00	=""	="ROLLS-ROYCE MARINE AUSTRALIA"	26-Jun-08 05:44 PM	

+="CN95135"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	19-Jun-08	20-Jun-09	124760.16	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:44 PM	

+="CN95136"	"Procurement of:  VALVE,RELIEF,PRESSURE AND"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	20-Jun-08	04-Aug-08	10320.00	=""	="EDSON Pty Ltd"	26-Jun-08 05:44 PM	

+="CN95137"	"Procurement of:  TEST SET,RADAR"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	20-Jun-08	25-Jul-08	135000.00	=""	="BELLINGER INSTRUMENTS Pty Ltd"	26-Jun-08 05:44 PM	

+="CN95138"	"Procurement of:  RESISTOR,THERMAL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	05-Feb-09	84940.04	=""	="SAAB SYSTEMS Pty Ltd"	26-Jun-08 05:44 PM	

+="CN95139"	"Procurement of:  RECEIVER-TRANSMITTER SUBASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	10-Sep-08	33760.00	=""	="SYSTECH CONSULTANTS Pty Ltd"	26-Jun-08 05:44 PM	

+="CN95140"	"Procurement of:  REELING MACHINE,CABLE,HAND"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	03-Jun-08	02-Oct-08	20713.40	=""	="THALES AUSTRALIA"	26-Jun-08 05:44 PM	

+="CN95141"	"Procurement of:  BEARING UNIT,BALL"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	04-Jun-08	23-Aug-08	10591.61	=""	="HEDEMORA DIESEL AUSTRALIA"	26-Jun-08 05:44 PM	

+="CN95142"	"Procurement of:  PARTS KIT,ROTARY PUMP"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	06-Jun-08	05-Aug-08	86265.48	=""	="PALL AUSTRALIA"	26-Jun-08 05:45 PM	

+="CN95143"	"Procurement of:  VALVE,CHECK"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	11-Jun-08	23-Jul-08	38303.60	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95144"	"Procurement of:  CIRCUIT CARD ASSEMBLY"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	20-Nov-08	45692.48	=""	="THALES AUSTRALIA"	26-Jun-08 05:45 PM	

+="CN95145"	"Procurement of:  LOUDSPEAKER,PERMANENT MAGNET"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	22-Sep-08	41000.00	=""	="ALLIED TECHNOLOGY INTERNATIONAL"	26-Jun-08 05:45 PM	

+="CN95146"	"Procurement of:  VALVE,GLOBE"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	12-Jun-08	09-Dec-08	152712.36	=""	="TENIX DEFENCE Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95147"	"Procurement of:  CLOCK,MASTER REGULATING"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	13-Jun-08	14-Jul-08	23515.00	=""	="INGRAMS CLOCKS Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95148"	"Procurement of:  MANIFOLD,FLUID COOLER"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	16-Jun-08	30-Jun-08	11816.16	=""	="MTU DETROIT DIESEL AUST Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95149"	"Procurement of:  DETECTOR KIT,CHEMICAL AGENT"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	08-Jul-08	19625.00	=""	="DRAEGER SAFETY PACIFIC Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95150"	"Procurement of:  SCREW,CAP,SOCKET HEAD"	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	17-Jun-08	28-Feb-09	27532.40	=""	="ASC Pty Ltd"	26-Jun-08 05:45 PM	

+="CN95151"	"Procurement of:  SAFETY NET ASSEMBLY;  SAFETY NET ASSEMBLY;  SAFETY NET ASSEMBLY;  SAFETY NET ASSEMBLY;  SAFETY NET ASSEMBLY;  SAFETY NET ASSEMBLY; + MORE..."	="Defence Materiel Organisation"	26-Jun-08	="Marine transport"	18-Jun-08	18-Jul-08	10900.00	=""	="FREMANTLE FOUNDRY &"	26-Jun-08 05:46 PM	

+="CN95158"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	17-Jul-08	16269.33	=""	="Land Rover AUSTRALIA"	27-Jun-08 09:16 AM	

+="CN95159"	"Provision of 6 4WD Driver training Courses"	="Australian Federal Police"	27-Jun-08	="Vehicle driving schools services"	01-Jul-08	31-Dec-08	225000.00	="May-05"	="Transport Industries Skills Centre INC"	27-Jun-08 09:37 AM	

+="CN95161"	" 5 Laptops "	="Office of the Australian Information Commissioner"	27-Jun-08	="Notebook computers"	03-Apr-08	03-Apr-08	14492.50	=""	="JEAS Solutions Pty Ltd"	27-Jun-08 09:51 AM	

+="CN95162"	"PROJECT SINGLELEAP PHASE 1 (ACCOMMODATION)"	="Department of Defence"	27-Jun-08	="Building construction and support and maintenance and repair services"	12-Jun-08	31-Mar-39	680150264.00	="AZ3210"	="PLENARY GROUP PTY LTD"	27-Jun-08 10:02 AM	

+="CN95163"	" SEALING COMPOUND "	="Defence Materiel Organisation"	27-Jun-08	="Adhesives and sealants"	16-Apr-08	30-Jun-08	20811.44	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	27-Jun-08 10:10 AM	

+="CN95174-A2"	" Software licenses "	="Department of Human Services"	27-Jun-08	="Software"	14-Sep-00	14-Sep-20	502765.67	=""	="Open Text Australia Pty Ltd"	27-Jun-08 11:35 AM	

+="CN95176"	"Purchase of laptops and accessories"	="Centrelink"	27-Jun-08	="Computer Equipment and Accessories"	27-Jun-08	27-Dec-08	47571.43	="2004/52285"	="Hewlett packard"	27-Jun-08 11:39 AM	

+="CN95177"	"Office Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jul-09	28989.86	="RFT 2002"	="INSTYLE INDOOR PLANT HIRE"	27-Jun-08 11:41 AM	

+="CN95178"	"Rent Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-09	132796.68	="05/006"	="SYDNEY AIRPORTS CORPORATION LTD"	27-Jun-08 11:41 AM	

+="CN95179"	"Rent Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Oct-09	42540.04	="N/A"	="UGS-AUSTRALIAN PACIFIC AIRPORTS (MELB)"	27-Jun-08 11:41 AM	

+="CN95180"	"Property Management Services"	="Department of Finance and Deregulation"	27-Jun-08	="National Defence and Public Order and Security and Safety Services"	25-Jun-08	30-Jun-09	29513.02	="N/A"	="SITA AUSTRALIA"	27-Jun-08 11:41 AM	

+="CN95181"	"Security Costs"	="Department of Finance and Deregulation"	27-Jun-08	="National Defence and Public Order and Security and Safety Services"	27-Jun-08	30-Jun-08	223394.58	="FIN/06/CORP003"	="CHUBB PROTECTIVE SERVICES"	27-Jun-08 11:41 AM	

+="CN95182"	"Legal Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	45000.00	="RFT LSB 01/2005"	="BLAKE DAWSON - ACT"	27-Jun-08 11:41 AM	

+="CN95183"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	29-Aug-08	161700.00	="N/A"	="RED WAHOO PTY LTD"	27-Jun-08 11:42 AM	

+="CN95184"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95185"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95186"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95187"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	01-Mar-08	30-Jun-08	146250.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95188"	"IT System Development Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-08	14458.40	="N/A"	="VISION AUSTRALIA"	27-Jun-08 11:42 AM	

+="CN95189"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-09	27800.00	="n/a"	="ORIJEN PTY LTD"	27-Jun-08 11:42 AM	

+="CN95190"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	26-Sep-08	154440.00	="n/a"	="APIS CONSULTING GROUP"	27-Jun-08 11:42 AM	

+="CN95191"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	30-May-08	12345.00	="n/a"	="PEOPLE & STRATEGY (ACT) PTY"	27-Jun-08 11:43 AM	

+="CN95193"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Travel and Food and Lodging and Entertainment Services"	26-Jun-08	31-Jul-08	38860.41	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	27-Jun-08 11:43 AM	

+="CN95195"	"IT System Development Services"	="Department of Finance and Deregulation"	27-Jun-08	="Information Technology Broadcasting and Telecommunications"	25-Jun-08	27-Feb-09	2203257.00	="00000000000000000"	="CENTRELINK"	27-Jun-08 11:43 AM	

+="CN95198"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jun-08	20-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:43 AM	

+="CN95194"	"Re Imbursement of expenses for the Strathgordon & Yalanji/Wajal Wujal Determinations"	="National Native Title Tribunal"	27-Jun-08	="Meeting facilities"	20-Jul-07	18-Dec-07	43068.14	=""	="Cape York Land Council"	27-Jun-08 11:44 AM	

+="CN95199"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	27-Jun-08 11:44 AM	

+="CN95200"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	27-Jun-08 11:44 AM	

+="CN95201"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:44 AM	

+="CN95197-A1"	"Provision of fit out services for the Gosford premises of CRS Australia."	="CRS Australia"	27-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	85690.00	=""	="Latin Interiors Pty Ltd"	27-Jun-08 11:44 AM	

+="CN95202"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:44 AM	

+="CN95203"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95204"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95205"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jun-08	20-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95206"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95207"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95208"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95209"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	30-Jun-08	15090.00	=""	="HYATT HOTEL CANBERRA"	27-Jun-08 11:45 AM	

+="CN95210"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	40000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	27-Jun-08 11:46 AM	

+="CN95211"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95212"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95213"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	03-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95196-A1"	"Provision of fit out services for the Gosford premises of CRS Australia."	="CRS Australia"	27-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	89243.00	=""	="Latin Interiors Pty Ltd"	27-Jun-08 11:46 AM	

+="CN95214"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	03-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95215"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	08-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95216"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	27-Jun-08	="Building and Construction and Maintenance Services"	01-Mar-08	31-Jul-08	57750.00	="N/A"	="UNITED PROCESS SOLUTIONS PTY LTD"	27-Jun-08 11:47 AM	

+="CN95217"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	27-Jun-08	="Building and Construction and Maintenance Services"	26-Jun-08	30-Jun-08	1458052.60	="Pre austender register"	="ST HILLIERS CONTRACTING PTY LTD"	27-Jun-08 11:47 AM	

+="CN95218"	"Divestment Expenses"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Jun-08	13750.00	="n/a"	="KPMG"	27-Jun-08 11:47 AM	

+="CN95219"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	18-Jun-08	21750.00	="N/A"	="PROTIVITI PTY LTD"	27-Jun-08 11:47 AM	

+="CN95220-A1"	"Consultant to Provide Advice on the Consolidated Financial Statement Audit Committee"	="Department of Finance and Deregulation"	27-Jun-08	="Management advisory services"	26-Jun-08	31-Dec-10	33000.00	=""	="OLIVER WINDER PTY LTD"	27-Jun-08 11:47 AM	

+="CN95221"	"Consultancy Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Mar-09	79999.00	="."	="ANNE MARKIEWICZ & ASSOCIATES PTY LTD"	27-Jun-08 11:47 AM	

+="CN95222"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	05-Aug-08	31-Oct-08	23593.00	="Legal Panel"	="MINTER ELLISON - ACT"	27-Jun-08 11:47 AM	

+="CN95223"	"Insurance and Risk Management Advisory Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	01-Oct-08	30-Sep-09	41360.00	="RFT Fin05/AMG005"	="COLMAR BRUNTON SOCIAL RESEARCH"	27-Jun-08 11:48 AM	

+="CN95225"	"Copy Charges, Maintenance and Repair of Canon photocopiers and faxes in 2008-2009 financial year"	="Australian Taxation Office"	27-Jun-08	="Photocopiers"	01-Jul-08	30-Jun-09	30000.00	=""	="Canon Australia"	27-Jun-08 11:54 AM	

+="CN95226"	"Consultancy services re organisation structure"	="Department of the Prime Minister and Cabinet"	27-Jun-08	="Business and corporate management consultation services"	17-Mar-08	30-Apr-08	52800.00	=""	="Ronald McLeod"	27-Jun-08 12:00 PM	

+="CN95227"	"Annual Subscription Managed Service Desk + Enterprise Edition - Perpetual"	="National Native Title Tribunal"	27-Jun-08	="Application programming services"	01-Apr-08	31-Mar-09	23272.00	=""	="Bellridge Pty Ltd"	27-Jun-08 12:20 PM	

+="CN95228"	"Informit Index Set 2 User - Annual subscription"	="National Native Title Tribunal"	27-Jun-08	="Publishing"	28-Feb-08	27-Feb-09	10552.00	=""	="RMIT Publishing"	27-Jun-08 12:35 PM	

+="CN95231"	"Purchase on computer equipments"	="Future Fund Management Agency"	27-Jun-08	="Computer Equipment and Accessories"	15-May-08	25-Jun-08	26152.83	=""	="ASG Group Limited"	27-Jun-08 12:39 PM	

+="CN95233-A1"	"Provide strategic direction to Centralised Computing bundle."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	04-Jul-08	192579.20	="07.102"	="The Boston Consulting Group Pty Ltd"	27-Jun-08 12:58 PM	

+="CN95232"	"Client Satisfaction Survey"	="National Native Title Tribunal"	27-Jun-08	="Market research"	17-Mar-08	04-Jun-08	41360.00	=""	="Mark Dignam & Assoc Pty Ltd"	27-Jun-08 12:59 PM	

+="CN95234"	"SEALING COMPOUND"	="Defence Materiel Organisation"	27-Jun-08	="Adhesives and sealants"	27-Jun-08	29-Aug-08	14527.50	=""	="HENKEL AUSTRALIA PTY LTD"	27-Jun-08 01:28 PM	

+="CN95235"	"Printing of NAT15397-06.2008 JS11603 Fuel tax credits get money back for your business"	="Australian Taxation Office"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Jun-08	07-Jul-08	13665.30	=""	="Paragon Printers"	27-Jun-08 01:32 PM	

+="CN95236-A3"	"Facilitator for End User Computing Vendor workshops."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jul-08	19-Sep-08	90604.80	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 01:35 PM	

+="CN95237"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:38 PM	

+="CN95238"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:42 PM	

+="CN95240"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:51 PM	

+="CN95243"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:01 PM	

+="CN95244"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:05 PM	

+="CN95246"	" MARINE QUALIFED LABOUR HIRE "	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:08 PM	

+="CN95247"	" MARINE QUALIFED SLIPWAY SUPERVISOR LABOUR HIRE "	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	34535.16	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:12 PM	

+="CN95252-A2"	"ICT Monitoring Operations Team"	="Australian Taxation Office"	27-Jun-08	="Temporary personnel services"	01-Jul-08	30-Jun-12	1329735.00	="015-2008"	="Epicon IT Solutions PL as the Trustee for Epicon Unit Trust"	27-Jun-08 02:28 PM	

+="CN95248-A7"	" Perform Project Director role within IT Outsourcing Management & perform financial analysis, advice & assistance Project - Mainframe/Midrange. "	="Australian Taxation Office"	27-Jun-08	="Information technology consultation services"	01-Jul-08	31-Dec-10	1989375.52	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 02:36 PM	

+="CN95255-A1"	"Accommodation Management Services"	="Australian Electoral Commission"	27-Jun-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-04	30-Jun-09	2239786.70	=""	="Lido Group Pty Ltd - Diners Club International"	27-Jun-08 02:50 PM	

+="CN95257-A5"	"Provide strategic sourcing advice & support to Centralised Computing & End User Computing bundle projects."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-09	2106139.20	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 02:54 PM	

+="CN95258-A1"	" Two one year license's for 'Gartner' subsciption "	="Australian Taxation Office"	27-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	115170.00	=""	="Gartner Australasia Pty Limited"	27-Jun-08 02:55 PM	

+="CN95259"	" Noise Genenrator "	="Defence Materiel Organisation"	27-Jun-08	="Radar and sonar systems and components"	27-Jun-08	22-Aug-08	12320.00	=""	="A & D International Pty Ltd"	27-Jun-08 02:59 PM	

+="CN95242"	"Provision of Training Revision Services"	="Department of Immigration and Citizenship"	27-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	33000.00	=""	="Alliance Consulting Group Pty Ltd"	27-Jun-08 03:03 PM	

+="CN95260"	"Legal Services"	="Australian Human Rights Commission"	27-Jun-08	="Legal services"	04-Feb-08	04-Jun-08	10937.50	=""	="Craig Lenehan"	27-Jun-08 03:03 PM	

+="CN95261"	"ProtectDrive/ProtectPack Annual Support and Maintenance"	="Australian Securities and Investments Commission"	27-Jun-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	30-Jun-08	10342.75	=""	="SafeNet Australia Pty Ltd"	27-Jun-08 03:06 PM	

+="CN95262"	"Connector, Plug Electrical"	="Defence Materiel Organisation"	27-Jun-08	="Radar and sonar systems and components"	27-Jun-08	14-Nov-08	39572.28	=""	="Amphenol Australia Pty Ltd"	27-Jun-08 03:06 PM	

+="CN95263"	"IT security audit"	="Australian Human Rights Commission"	27-Jun-08	="Audit services"	14-May-08	19-Jun-08	17792.50	=""	="Key Trust Consulting"	27-Jun-08 03:08 PM	

+="CN95267"	"ProtectDrive/ProtectPack Licences"	="Australian Securities and Investments Commission"	27-Jun-08	="Components for information technology or broadcasting or telecommunications"	19-May-08	19-May-08	17214.12	=""	="SafeNet Australia Pty Ltd"	27-Jun-08 03:24 PM	

+="CN95268"	" Promotion materials for 2008 National Community Legal Centres Conference. "	="Australian Human Rights Commission"	27-Jun-08	="Promotional material or annual reports"	30-May-08	25-Jun-08	11000.00	=""	="National Association of Community Legal Centres"	27-Jun-08 03:26 PM	

+="CN95269"	" Centerlink Agent - North Stradbroke Island, QLD  "	="Centrelink"	27-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	55355.92	=""	="North Stradbroke Island Aboriginal & Islander Housing"	27-Jun-08 03:27 PM	

+="CN95271"	"OILCODE DRA"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	31-Aug-07	34400.00	=""	="ASIAN CONNECTIONS INTERNATIONAL PTY LIMITED"	27-Jun-08 03:27 PM	

+="CN95273"	"ABARE management review"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-May-08	30-May-08	33645.00	=""	="TRADE AND MANAGEMENT CONSULTANTS AUST"	27-Jun-08 03:28 PM	

+="CN95274"	"Facilitation services"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Aug-07	74000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	27-Jun-08 03:28 PM	

+="CN95275"	"45 x Optiplex 755SF PCs/22" Monitors Specs"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	06-Aug-07	30-Jun-08	65765.70	=""	="DELL AUSTRALIA"	27-Jun-08 03:28 PM	

+="CN95276"	"Workshop Facilitation in Brisbane and Adelaide"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Nov-07	19624.00	=""	="INNOVATION DYNAMICS"	27-Jun-08 03:28 PM	

+="CN95277"	"Workshop Facilitation in Melbourne and Sydney"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Aug-07	20686.43	=""	="JVPIE"	27-Jun-08 03:28 PM	

+="CN95272"	"motor vehicle spare parts"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Jun-08	27-Jul-08	19723.30	=""	="Southern Cross Industrial"	27-Jun-08 03:28 PM	

+="CN95278"	"Development and delivery of database for APP Program"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	30-Jun-08	79200.00	=""	="LIGHTSOURCE TECHNOLOGIES AUSTRALIA"	27-Jun-08 03:28 PM	

+="CN95279"	"EMRWG,Smart Meters,consumer focus group study for SM Natnl.c"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	07-Dec-07	31-Jul-08	86988.00	=""	="NERA AUSTRALIA PTY LTD"	27-Jun-08 03:29 PM	

+="CN95280"	"EEO Workshops Audio Visual Hire"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Audio and visual presentation and composing equipment"	08-Aug-07	07-Sep-07	47700.01	=""	="MICROHIRE"	27-Jun-08 03:29 PM	

+="CN95281"	"EEO Workshop Facilitation Support in Sydney and Perth"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Jun-08	13447.50	=""	="MACMAHON TECHNOLOGIES"	27-Jun-08 03:29 PM	

+="CN95282"	"Simulation Exercise Catalyst 2008"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	08-Aug-07	31-Aug-07	149710.00	="1010"	="MARSH PTY LTD"	27-Jun-08 03:29 PM	

+="CN95283"	"Dell Laptops - 3 x D430 Laptops and 7 x D630 Laptops."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	09-Aug-07	30-Nov-07	22932.80	=""	="DELL AUSTRALIA"	27-Jun-08 03:29 PM	

+="CN95284"	"Dell PC's - 20 x 755 PC's"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	09-Aug-07	31-Aug-07	29518.80	=""	="DELL AUSTRALIA"	27-Jun-08 03:29 PM	

+="CN95285"	"Tenders - Aust Destination Status (ADS)"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Advertising"	10-Aug-07	23-Aug-07	22830.76	=""	="HMA BLAZE PTY LTD"	27-Jun-08 03:29 PM	

+="CN95286"	"AdvisoryServices"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	10-Aug-07	28-Sep-07	86120.00	=""	="ROAM CONSULTING PTY LTD"	27-Jun-08 03:30 PM	

+="CN95287"	"Career Dev Assessment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Education and Training Services"	10-Aug-07	30-Nov-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	27-Jun-08 03:30 PM	

+="CN95289"	"RTA Household removals - O/S Counsellor"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	25732.82	=""	="TOLL TRANSITIONS"	27-Jun-08 03:30 PM	

+="CN95290"	"Class B 2D and 4D Security Containers"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Office Equipment and Accessories and Supplies"	14-Aug-07	01-Feb-08	11987.80	=""	="FILEGUARD CO. (MFG.) PTY LTD"	27-Jun-08 03:30 PM	

+="CN95291"	"NGERAC analytical services and emergency simulation exercise"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	14-Aug-07	30-Jun-08	150000.00	=""	="VENCORP"	27-Jun-08 03:30 PM	

+="CN95292"	"Develop and Deliver new policies and procedures for the TSDA"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	14-Aug-07	30-Nov-07	30000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	27-Jun-08 03:30 PM	

+="CN95293"	"EECAR - Legal review of the draft EEO Internal Operating Procedures"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	14-Aug-07	31-Aug-07	23284.80	=""	="MINTER ELLISON LAWYERS"	27-Jun-08 03:31 PM	

+="CN95294"	"Engage APP Secretariat Employment of officer"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Business administration services"	14-Aug-07	31-Oct-07	18000.00	=""	="SOS RECRUITMENT"	27-Jun-08 03:31 PM	

+="CN95295"	"Destinations Adaptation project"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Engineering and Research and Technology Based Services"	16-Aug-07	11-Sep-07	44000.00	=""	="CRC FOR SUSTAINABLE TOURISM PTY LTD"	27-Jun-08 03:31 PM	

+="CN95296"	"APP TASKFORCE MEETING VENUE HIRE FOR APP TASKFORCE ADMIN"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Audio and visual presentation and composing equipment"	16-Aug-07	30-Sep-07	11365.50	=""	="STAGING CONNECTIONS PTY LTD"	27-Jun-08 03:31 PM	

+="CN95297"	"Research, development and drafting for the Australian Hydrogen Activity report"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	16-Aug-07	30-Sep-07	15470.40	=""	="UNIVERSITY OF QUEENSLAND SCHOOL OF"	27-Jun-08 03:31 PM	

+="CN95298"	"Reaimbursement expenses in relation to CRWMF Project - Muckaty station"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Human resources services"	16-Aug-07	30-Sep-07	23001.79	=""	="NORTHERN LAND COUNCIL"	27-Jun-08 03:31 PM	

+="CN95299"	"APP Project Leading Practice Sustainable Development"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-08	10897.18	=""	="ADVENT ASIA PACIFIC P/L"	27-Jun-08 03:31 PM	

+="CN95300"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	14546.40	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95301"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	16516.50	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95302"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	17017.00	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95303"	"EEO - Reprint of the Energy Savings Measurement Guide V1"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	18-Jun-08	30-Jun-08	27364.27	=""	="ZOO COMMUNICATIONS PTY LTD"	27-Jun-08 03:32 PM	

+="CN95304"	"APEC ENERGY TRADE AND INVESTMENT ROUND TABLE: 23-26 SEPT 2008, CAIRNS"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	19-Jul-07	26-Jul-07	51497.65	=""	="SHANGRI-LA HOTEL"	27-Jun-08 03:32 PM	

+="CN95305"	"Expert Review of National Gas Rules"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	31-Aug-07	15098.88	=""	="ALLEN CONSULTING GROUP PTY LTD"	27-Jun-08 03:33 PM	

+="CN95307"	"Advertising - Govt Exec Appts"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Advertising"	19-Jun-08	30-Jun-08	29206.30	=""	="HMA BLAZE PTY LTD"	27-Jun-08 03:33 PM	

+="CN95308"	"EEO - Development of a low hanging fruit guide for the mobil"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	17449.15	=""	="ALBERFIELD PTY LTD"	27-Jun-08 03:33 PM	

+="CN95309"	"EMRWG,RPWG,Drafting of the Retail Rules"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	19-Jun-08	30-Jun-10	250000.00	=""	="NSW PREMIERS DEPARTMENT"	27-Jun-08 03:33 PM	

+="CN95310"	"E2WG,CSIRO, Research,Development of NATHERS"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	23100.00	=""	="CSIRO"	27-Jun-08 03:33 PM	

+="CN95311"	"e2wg,branz,inv001721,manditory res, space heatingandwater heat"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	24750.00	=""	="BRANZ PTY LTD"	27-Jun-08 03:34 PM	

+="CN95306"	"motor vehicle spare parts"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	11549.53	=""	="MERCEDES BENZ AUST"	27-Jun-08 03:34 PM	

+="CN95312"	"e2wg,university sa,inv086708,study temp settings on cooling"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	24750.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	27-Jun-08 03:34 PM	

+="CN95313"	"APP Project Facilitate sharing of information"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	31-Jul-07	40000.00	=""	="MAESTRO COMMUNICATION"	27-Jun-08 03:34 PM	

+="CN95314"	"secondment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-08	28406.25	=""	="MINTER ELLISON LAWYERS"	27-Jun-08 03:34 PM	

+="CN95315"	"EMRWG,establishment of AEMO,legal advice on remuneration"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	23-Jun-08	30-Jun-09	11550.00	=""	="MERCER HUMAN RESOURCE CONS P/L"	27-Jun-08 03:34 PM	

+="CN95316"	"36mth Rental of 2xCanon MFD/accessories"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Office machines and their supplies and accessories"	23-Jun-08	31-Mar-11	37114.67	=""	="CANON FINANCE AUSTRALIA LTD"	27-Jun-08 03:34 PM	

+="CN95317"	"Legal Consultants for the Retail Policy Group"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	24-Jul-07	30-Jun-08	210000.00	=""	="ALLENS ARTHUR ROBINSON"	27-Jun-08 03:35 PM	

+="CN95318"	"APP Project Energy Regulatory and Market Dev Forum."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	25-Jun-08	30-Jun-08	31833.91	=""	="STAGING CONNECTIONS PTY LTD"	27-Jun-08 03:35 PM	

+="CN95319"	"EMRWG,RPWG,develop nat.policy framework for ROLR scheme"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	28-Apr-08	30-Jun-09	128375.50	=""	="ALLENS ARTHUR ROBINSON"	27-Jun-08 03:35 PM	

+="CN95320"	"EMRWG,RPWG,develop nat.policy framework for ROLR scheme"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	28-Apr-08	30-Jun-09	235431.63	=""	="NERA AUSTRALIA PTY LTD"	27-Jun-08 03:35 PM	

+="CN95321"	"APP Project Energy Regulatory and Market Development Forum"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	23405.25	=""	="ZOO COMMUNICATIONS PTY LTD"	27-Jun-08 03:35 PM	

+="CN95322"	"APP Project Energy Regulatory and Market Devel Forum - Print"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	28-May-08	31-Dec-08	26290.77	=""	="UNION OFFSET PRINTERS"	27-Jun-08 03:36 PM	

+="CN95323"	"Rehabilitation Assessment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	30-Apr-08	30-Jun-08	23320.00	=""	="QS SERVICES"	27-Jun-08 03:36 PM	

+="CN95325"	"EEO - Venue hire for May/June 08 Workshops"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	30-Jul-07	31-Aug-07	14770.00	=""	="MERCURE HOTEL PERTH"	27-Jun-08 03:36 PM	

+="CN95324"	"MOTOR EVHICLE SPARE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	16162.29	=""	="MERCEDES BENZ AUST"	27-Jun-08 03:37 PM	

+="CN95326-A1"	"Financial Planning Analysis"	="Australian Securities and Investments Commission"	27-Jun-08	="Public administration and finance services"	05-Feb-08	03-Apr-08	18975.00	=""	="Endeavour Stratetgic Financial"	27-Jun-08 03:39 PM	

+="CN95327"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	12992.32	=""	="LAND ROVER AUSTRALIA"	27-Jun-08 03:42 PM	

+="CN95328"	"Provision of Temporary Staff Resources"	="Australian Securities and Investments Commission"	27-Jun-08	="Temporary personnel services"	27-Nov-07	13-Jan-08	11253.00	=""	="KR Consulting Group Pty Ltd"	27-Jun-08 03:42 PM	

+="CN95331"	"Chris, HR21, MS SQL Programmes, configuration, General ledger interface & training"	="National Native Title Tribunal"	27-Jun-08	="Human resources software"	01-Jul-07	01-May-09	44418.00	=""	="Frontier software"	27-Jun-08 04:03 PM	

+="CN95332"	" Provision of Course Design and Developement Services "	="Department of Immigration and Citizenship"	27-Jun-08	="Government departments services"	09-Apr-08	30-Jun-08	95196.00	=""	="Deakin University"	27-Jun-08 04:08 PM	

+="CN95333"	"ARC Project (Constructing regionally appropriate anti-racism strategies for Australia)."	="Australian Human Rights Commission"	27-Jun-08	="Research or testing facilities"	21-May-08	30-Dec-10	33000.00	=""	="University of Western Sydney"	27-Jun-08 04:10 PM	

+="CN95334-A1"	" Legal Services - Counsel "	="Australian Securities and Investments Commission"	27-Jun-08	="Legal services"	23-Jun-08	30-Jun-08	20000.00	=""	="Merzabegian, Sera"	27-Jun-08 04:12 PM	

+="CN95335"	"Consultancy Fees for CRM/Sharepoint Project"	="National Native Title Tribunal"	27-Jun-08	="Computer programmers"	31-Dec-07	19-Feb-08	10016.88	=""	="DSC-IT"	27-Jun-08 04:33 PM	

+="CN95337"	"Professional Fees- Wiri People / Gubbi gubbi"	="National Native Title Tribunal"	27-Jun-08	="Legal services"	04-Sep-07	19-Jun-08	71021.22	=""	="Holding Redlich"	27-Jun-08 04:47 PM	

+="CN95338"	"Accommodation for delegates attending Indigenous Health Equality Summit."	="Australian Human Rights Commission"	27-Jun-08	="Hotel rooms"	15-Mar-08	20-Mar-08	33043.00	=""	="Rydges Eagle Hawk Resort Canberra"	27-Jun-08 04:52 PM	

+="CN95339"	"Development and delivery of performance and compliance audit training"	="Office of the Commonwealth Ombudsman"	27-Jun-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	16500.00	=""	="Courage Partners pty Ltd"	27-Jun-08 06:02 PM	

+="CN95340-A1"	"Centrelink Agent services at Denham (Shark Bay), WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="Shark Bay Community Resource Centre Inc"	27-Jun-08 06:06 PM	

+="CN95341"	"Centrelink Agent services at Boddington, WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="Boddington Old School Inc"	27-Jun-08 06:47 PM	

+="CN95342"	"Centrelink agent services at Ravensthorpe, WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="The Ravensthorpe and District Rural Communities Program Inc"	27-Jun-08 06:52 PM 

--- /dev/null
+++ b/admin/partialdata/25Mar2008to29Mar2008valto.xls
@@ -1,1 +1,581 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN66603"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	15648.42	=""	="SAAL"	25-Mar-08 09:26 AM	

+="CN66604"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	59813.75	=""	="SAAL"	25-Mar-08 09:29 AM	

+="CN66605"	"Telecommunications Consumer Research Data"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Market research"	28-Feb-08	27-Jun-08	61053.30	="07ACMA055"	="Roy Morgan Research Pty Ltd"	25-Mar-08 09:30 AM	

+="CN66606"	"REPAIR AND OVERHAUL OF BLACK HAWK MAIN ROTOR BLADE."	="Defence Materiel Organisation"	25-Mar-08	="Military rotary wing aircraft"	25-Mar-08	30-Jun-08	104666.98	=""	="SAAL"	25-Mar-08 09:31 AM	

+="CN66612"	"New GL and Funds Management advisory"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Software"	08-Oct-07	30-Sep-08	35420.00	=""	="SAP AUSTRALIA P/L - HEAD OFFICE"	25-Mar-08 09:55 AM	

+="CN66613"	"Delivery of contract management training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	19184.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66614"	"Delivery of simple procurement training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	14300.00	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66615"	"Delivery of complex procurement training"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	20944.01	="APS COMMISSION 2005/014"	="Bayley Family Trust"	25-Mar-08 09:55 AM	

+="CN66616"	"Delivery of training in using feedback"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Specialised educational services"	01-Jan-08	30-Jun-08	31660.02	="APS COMMISSION 2005/014"	="JOAN MARGARET WILSON JONES"	25-Mar-08 09:55 AM	

+="CN66617"	"Building Levy Lifts and Scaffolding"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="General building construction"	19-Mar-08	19-Mar-08	45820.89	=""	="ACT PLANNING  & LAND AUTHORITY"	25-Mar-08 09:56 AM	

+="CN66618"	"Recruitment Services - Gen. Manager HR"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Community and social services"	15-Feb-08	15-May-08	59899.90	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	25-Mar-08 09:56 AM	

+="CN66619"	"OLDP drafter for CASA Regulations"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Business administration services"	01-Jan-08	30-Jun-08	46393.75	=""	="ATTORNEY-GENERAL'S DEPARTMENT"	25-Mar-08 09:56 AM	

+="CN66620"	"Review of HCD program"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	17-Mar-08	16-May-08	37000.00	="TRS06/037"	="ERNST & YOUNG"	25-Mar-08 09:56 AM	

+="CN66621"	"Contractor Nora Stewart"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	03-Mar-08	11-Apr-08	35999.70	="TRS06/017"	="Peoplebank Australia Ltd"	25-Mar-08 09:56 AM	

+="CN66622"	"Contractor Steve Fielding"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	25-Feb-08	18-Apr-08	24200.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 09:56 AM	

+="CN66623"	"ACAS study - analyse mandate extension and assess appropriateness of using ACAS to classify airspace"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	07-Mar-08	30-Jun-08	343170.00	="TRS07/333"	="Hyder Consulting Pty Ltd"	25-Mar-08 09:57 AM	

+="CN66624"	"Goods and Services Tax review of Grants"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Accounting and auditing"	12-Mar-08	30-May-08	22000.00	="TRS06/037"	="ERNST & YOUNG"	25-Mar-08 09:57 AM	

+="CN66625"	"Contract Staff -APS 6 - AvSec Training Section"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Community and social services"	03-Mar-08	30-Jun-08	44000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	25-Mar-08 09:57 AM	

+="CN66626"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	17-Mar-08	30-Jun-08	106356.12	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 09:57 AM	

+="CN66627"	"Ad hoc mov't staff to and from o/s posts"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Material packing and handling"	17-Mar-08	30-Jun-08	31300.00	=""	="SIRVA Pty Ltd"	25-Mar-08 09:57 AM	

+="CN66628"	"*TRS07/290 LEASE TS1020 X'MAS ISLAND E'YEE HOUSING FROM  01 OCT 07 TO  13 APRIL 2010"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Real estate services"	24-Sep-07	13-Apr-10	59015.21	="TRS07/290"	="Inger VANDYKE & Richard Baxter"	25-Mar-08 09:57 AM	

+="CN66629"	"*TRS07/289 LEASE TS1016 X'MAS ISLAND E'YEE HOUSING FROM  01 OCT 07 TO 31 JULY 2010"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Real estate services"	24-Sep-07	31-Jul-10	66477.06	="TRS07/289"	="Paul Francis & Rosanna HUSSEY"	25-Mar-08 09:57 AM	

+="CN66630"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Management advisory services"	20-Mar-08	30-Jun-08	93555.00	="TRS06/017"	="SME GATEWAY LTD"	25-Mar-08 09:58 AM	

+="CN66631"	"OPTUS DATA OPTUS FEE"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Telecommunications media services"	20-Mar-08	30-Jun-08	659500.00	="TRS07/229"	="OPTUS BILLING SERVICES PTY LTD"	25-Mar-08 09:58 AM	

+="CN66632"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	25-Mar-08	="Legal services"	13-Mar-08	30-Jun-09	19853.02	="TRS06/175"	="MINTER ELLISON LAWYERS"	25-Mar-08 09:58 AM	

+="CN66634"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Mar-08	="Aircraft spars"	25-Mar-08	17-Nov-08	24943.60	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Mar-08 10:12 AM	

+="CN65402"	"Provision of Prince 2 training for ACMA ISS staff."	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Education and Training Services"	17-Mar-08	20-Mar-08	10500.00	=""	="Tanner James Management Consultants Pty Ltd"	25-Mar-08 10:13 AM	

+="CN66635"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	25-Mar-08	="Aircraft spars"	25-Mar-08	16-Mar-09	13893.11	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	25-Mar-08 10:17 AM	

+="CN65316"	"Provision of venue, catering and associated services for ACMA Radcom 2008 conference. The conference is funded on a cost recovery basis."	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Conference centres"	30-Apr-08	02-May-08	125000.00	=""	="Sofitel Melbourne"	25-Mar-08 10:18 AM	

+="CN65371"	" Provision of contract staff to provide time and workload management training. "	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	18-Feb-08	25-Feb-08	20000.00	=""	="Priority Management NSW"	25-Mar-08 10:19 AM	

+="CN66636"	"Provision of Islamic Awareness program"	="Australian Federal Police"	25-Mar-08	="Public relations programs or services"	11-Mar-08	14-Mar-08	31801.00	="65/2006"	="Asian Law Group Pty Ltd"	25-Mar-08 10:30 AM	

+="CN66637"	" SUPPLY OF FIRST AID KITS, VEHICLE ACCIDENT "	="Defence Materiel Organisation"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	17-Mar-08	30-May-08	30855.00	=""	="ST JOHNS NATIONAL BUSINESS"	25-Mar-08 10:33 AM	

+="CN66638"	"Oracle Database Renewals"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Software"	26-May-08	25-Mar-09	70131.22	=""	="Oracle Corporation Australia Pty Ltd"	25-Mar-08 10:34 AM	

+="CN66640"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF "	="Defence Materiel Organisation"	25-Mar-08	="Camping and outdoor equipment and accessories"	25-Mar-08	30-Apr-08	14977.50	="J8123"	="MONT ADVENTURE EQUIPMENT"	25-Mar-08 10:39 AM	

+="CN66641"	"Prepaid Hours for Video Conferencing Bridging"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Videoconferencing systems"	01-Jan-08	30-Apr-08	44000.00	=""	="ServicePoint Australia Pty Ltd"	25-Mar-08 10:45 AM	

+="CN66643"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	24-Mar-09	201344.00	=""	="HITECH PERSONNEL"	25-Mar-08 10:45 AM	

+="CN66644"	"IT Hardware"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	30-Jun-08	10726.00	=""	="FRONTIER SOLUTIONS & STRATEGIES PTY"	25-Mar-08 10:45 AM	

+="CN66645"	"IP Telephony Licenses"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	30-Jun-08	13828.82	=""	="NORTEL NETWORKS AUSTRALIA PTY LTD"	25-Mar-08 10:45 AM	

+="CN66646"	"FURNITURE - Tables and Chairs"	="Australian Taxation Office"	25-Mar-08	="Furniture and Furnishings"	19-Mar-08	17-Apr-08	17021.01	=""	="STURDY COMPONENTS PTY LTD"	25-Mar-08 10:45 AM	

+="CN66647"	"4 x CANON L3000 FAX MACHINES"	="Australian Taxation Office"	25-Mar-08	="Office Equipment and Accessories and Supplies"	19-Mar-08	19-Mar-08	11039.60	=""	="CANON AUST PTY LTD"	25-Mar-08 10:45 AM	

+="CN66648"	"FURNITURE - Tables and Chairs"	="Australian Taxation Office"	25-Mar-08	="Furniture and Furnishings"	19-Mar-08	17-Apr-08	12224.08	=""	="STURDY COMPONENTS PTY LTD"	25-Mar-08 10:46 AM	

+="CN66642-A1"	"SUPPLY OF RESUSCITATOR-INHALATORS"	="Defence Materiel Organisation"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	22-Apr-08	30-Aug-08	15340.00	=""	="ADD-TECH MEDICAL"	25-Mar-08 10:46 AM	

+="CN66649"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	18-Mar-08	24-Mar-09	198000.00	=""	="FACE2FACE RECRUITMENT PTY LTD"	25-Mar-08 10:46 AM	

+="CN66650-A1"	"provision of services of Server Engineer."	="Family Court of Australia"	25-Mar-08	="Temporary information technology systems or database administrators"	10-Mar-08	10-Mar-09	166438.00	=""	="Hays Recruitment"	25-Mar-08 10:47 AM	

+="CN66651"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	18-Mar-08	20-Sep-08	72420.00	="002-2007"	="COMPAS PTY LTD"	25-Mar-08 10:47 AM	

+="CN66653"	"ATO WOODHEAD GALLERIA DISPLAY"	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	19-Mar-08	33050.82	=""	="XEED PTY LTD"	25-Mar-08 10:50 AM	

+="CN66654"	"RENT"	="Australian Taxation Office"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	07-Mar-08	20-Mar-08	10920.00	=""	="INDEPENDANT PROPERTY GROUP"	25-Mar-08 10:50 AM	

+="CN66655"	"RENT"	="Australian Taxation Office"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	13-Mar-08	20-Mar-08	12774.95	=""	="PURNELL REAL ESTATE PTY LTD"	25-Mar-08 10:50 AM	

+="CN66652"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1865 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Mar-08	="Aerospace systems and components and equipment"	19-Mar-08	30-Apr-08	58858.36	=""	="Goodrich Control Systems"	25-Mar-08 10:50 AM	

+="CN66657"	"CONTRACTORS"	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	19-Mar-08	16204.17	=""	="Hudson Global Resources (Aust) P/L"	25-Mar-08 10:52 AM	

+="CN66658"	"ANNUAL CHARGES ON SOFTWARE"	="Australian Taxation Office"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	29-Feb-08	19-Mar-08	21137.00	=""	="ADVENT ONE PTY LTD"	25-Mar-08 10:52 AM	

+="CN66659"	"AVO PHONE ACCOUNTS FOR ALL OFFICES"	="Australian Taxation Office"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	07-Mar-08	20-Mar-08	45626.78	=""	="TELSTRA"	25-Mar-08 10:52 AM	

+="CN66661"	"6th annula Test mangers Forum 5 Attendees"	="Australian Taxation Office"	25-Mar-08	="Education and Training Services"	17-Mar-08	03-May-08	10000.00	=""	="K J ROSS & ASSOCIATES"	25-Mar-08 10:58 AM	

+="CN66662-A1"	"Procurement Services for panel of Professional Service providers"	="Australian Federal Police"	25-Mar-08	="Technical support or help desk services"	26-Nov-07	01-May-08	22660.00	="22-2005"	="Grosvenor Management Consulting"	25-Mar-08 10:59 AM	

+="CN66664"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1239 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	25-Mar-08	="Aerospace systems and components and equipment"	18-Mar-08	30-Apr-08	59590.20	=""	="Goodrich Control Systems"	25-Mar-08 11:01 AM	

+="CN66666"	"IT Contractor"	="Australian Taxation Office"	25-Mar-08	="Engineering and Research and Technology Based Services"	19-Mar-08	26-Mar-09	183039.85	=""	="TALENT INTERNATIONAL"	25-Mar-08 11:04 AM	

+="CN66668"	"SUPPLY OF REPAIR VEHICLE PARTS"	="Defence Materiel Organisation"	25-Mar-08	="Motor vehicles"	20-Mar-08	20-Apr-08	14649.36	=""	="LAND ROVER AUSTRALIA"	25-Mar-08 11:25 AM	

+="CN66669"	"SUPPLY OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	25-Mar-08	="Motor vehicles"	20-Mar-08	20-Apr-08	11319.73	=""	="LAND ROVER AUSTRALIA"	25-Mar-08 11:34 AM	

+="CN66279"	" Weapon transit cases "	="Defence Materiel Organisation"	25-Mar-08	="Light weapons and ammunition"	25-Jan-08	10-Mar-08	12903.00	=""	="trimcast pty ltd"	25-Mar-08 11:57 AM	

+="CN66672"	"Consultancy services for Consumer Impact Statements"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	20-Feb-08	13640.00	=""	="CONSUMERS HEALTH FORUM OF"	25-Mar-08 12:16 PM	

+="CN66673"	"Chemical guidelines printing and distribution"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Jan-08	25-Feb-08	13776.40	=""	="PARAGON PRINTERS"	25-Mar-08 12:16 PM	

+="CN66674"	"Web Content Manager"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	04-Feb-08	27-Jun-08	30000.00	=""	="LYNN FARKAS INFORMATION SERVICES PT"	25-Mar-08 12:16 PM	

+="CN66675"	"Printing and delivery of booklets for the National Bowel Screening Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	17-Jan-08	11-Feb-08	42284.00	=""	="UNION OFFSET CO. PTY. LIMITED"	25-Mar-08 12:16 PM	

+="CN66676"	"Estimation of an under/over identification factor relating to indigenous hospital patients"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	11-Feb-08	70000.00	=""	="DEPT OF HEALTH QLD  -  QLD BRISBANE"	25-Mar-08 12:17 PM	

+="CN66677"	"OATSIH capital works governance and accountability review"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	20-Jan-09	200000.00	=""	="BUCHANAN PRICE PTY LTD"	25-Mar-08 12:17 PM	

+="CN66678"	"Themeing of the 2007 Staff Survey free text comments"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	11-Feb-08	13860.00	=""	="C A MAUK & ASSOCIATES PTY LTD"	25-Mar-08 12:17 PM	

+="CN66679"	"Residential Lease for Santiago"	="Austrade"	25-Mar-08	="Real estate services"	01-Aug-07	31-Aug-09	82751.00	=""	="Sociedad Santa Paula"	25-Mar-08 12:17 PM	

+="CN66680"	"Stategic management advice for the 2009/10 accommodation project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-10	29700.00	=""	="OOSW CONSULTING PTY LIMITED"	25-Mar-08 12:17 PM	

+="CN66681"	"Grants Auditors"	="Austrade"	25-Mar-08	="Human resources services"	23-Jul-07	28-Aug-07	25322.88	=""	="Hays Personnel Services (Australia) Pty Limited"	25-Mar-08 12:17 PM	

+="CN66682"	"Electronic whiteboards supply"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	11-Feb-08	13485.01	="074/0506"	="ELECTROBOARD SOLUTIONS PTY LTD"	25-Mar-08 12:17 PM	

+="CN66683"	"2088 Diaries, Calenders and 2007 Christmas cards"	="Austrade"	25-Mar-08	="Stationery"	14-Feb-08	14-Feb-08	34212.87	=""	="Corporate Express"	25-Mar-08 12:17 PM	

+="CN66684"	"Scarborough House premises after hours air conditioning"	="Department of Health and Ageing"	25-Mar-08	="Distribution and Conditioning Systems and Equipment and Components"	01-Aug-05	30-Jun-08	185755.68	=""	="THE TRUSTEE FOR SCARBOROUGH HOUSE"	25-Mar-08 12:17 PM	

+="CN66685"	"Permanent placement fee"	="Austrade"	25-Mar-08	="Human resources services"	21-Feb-08	06-Mar-08	13434.62	=""	="Icon Recruitment Pty Ltd"	25-Mar-08 12:17 PM	

+="CN66686"	"GENERAL PRACTIONER LOCATOR WEBSITE TECHNICAL SERVICES"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	08-Jul-07	31-Mar-08	97195.20	=""	="MADLIN PROJECTS PTY LIMITED"	25-Mar-08 12:17 PM	

+="CN66687"	"UPS power charges Feb 08"	="Austrade"	25-Mar-08	="Utilities"	01-Feb-08	29-Feb-08	14260.47	=""	="ActewAGL"	25-Mar-08 12:18 PM	

+="CN66688"	"Supply and printing of showbags for the Commonwealth Carelink Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	01-Feb-08	01-Mar-08	14737.25	=""	="INTANDEM EVAN EVANS"	25-Mar-08 12:18 PM	

+="CN66689"	"Advertising for Osaka Japan"	="Austrade"	25-Mar-08	="Marketing and distribution"	10-Feb-08	10-Feb-08	10952.43	=""	="HMA Blaze"	25-Mar-08 12:18 PM	

+="CN66690"	"Sydney office switchboard costs Feb 08"	="Austrade"	25-Mar-08	="Utilities"	01-Mar-08	01-Mar-08	13829.44	=""	="Telstra"	25-Mar-08 12:18 PM	

+="CN66692"	"Leasing of desktop computers and laptops.  Acquisition of computer equipment and accessories and associated service"	="Austrade"	25-Mar-08	="Computer Equipment and Accessories"	12-Nov-07	12-Nov-07	80337.91	=""	="Hewlett Packard Australia Pty Ltd"	25-Mar-08 12:18 PM	

+="CN66691"	"Evaluation of the Quality Use of Medicines Maximised for ATSI People Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-10	549362.00	="018/0708"	="URBIS PTY LTD"	25-Mar-08 12:18 PM	

+="CN66693"	"Project Officer to support the Way Forward Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Feb-08	31-Mar-08	31902.25	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	25-Mar-08 12:18 PM	

+="CN66694"	"Design & development of indigenous graphics and "kangaroo dreaming"	="Austrade"	25-Mar-08	="Marketing and distribution"	18-Feb-08	31-Mar-08	14454.00	=""	="Keystone Corporate Positioning Pty Ltd"	25-Mar-08 12:18 PM	

+="CN66695"	"Provision of Diagnostic report re: Torres Strait Home for the Aged Association Inc."	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	28-Feb-08	30000.00	=""	="ROBERT GRIEW PTY LTD"	25-Mar-08 12:18 PM	

+="CN66696"	"CRM Professional Cal"	="Austrade"	25-Mar-08	="Computer services"	18-Feb-08	18-Feb-08	408081.60	=""	="Data#3 Limited"	25-Mar-08 12:18 PM	

+="CN66697"	"Presentation & Dinner - Professor David Olds"	="Department of Health and Ageing"	25-Mar-08	="Food and Beverage Products"	04-Feb-08	16-Feb-08	10035.97	=""	="GINGER CATERING"	25-Mar-08 12:18 PM	

+="CN66698"	"Printing of A guide for general practioniers"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	01-Jan-08	30-Jun-08	10013.00	=""	="RAINBOW PRINTING PTY LTD"	25-Mar-08 12:18 PM	

+="CN66699"	"Planning, preparation, development, support and delivery"	="Austrade"	25-Mar-08	="Computer services"	14-Feb-08	13-Mar-08	26639.04	=""	="Impact Employee Communications Pty Limited"	25-Mar-08 12:18 PM	

+="CN66700"	"Printing of the National Mental Health Report 2007"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	29-Jan-08	30-Jun-08	26321.00	=""	="CPP INSTANT PRINTING"	25-Mar-08 12:18 PM	

+="CN66701"	"The delivery of personal Travel Safety courses in Sydney Feb 2008"	="Austrade"	25-Mar-08	="Education and Training Services"	03-Mar-08	03-Mar-08	14914.48	=""	="Yu ShihTao Kung Fu"	25-Mar-08 12:18 PM	

+="CN66702"	"Advising services - Home & Community Care Information Mgmt System & KPI project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Jun-08	39600.00	=""	="EWAN MAXWELL MORRISON"	25-Mar-08 12:19 PM	

+="CN66703"	"1000 Engraved Mag-Lites"	="Austrade"	25-Mar-08	="Marketing and distribution"	12-Feb-08	12-Mar-08	11649.00	=""	="Branded Products Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66704"	"Development of commercial & residential guidelines"	="Austrade"	25-Mar-08	="Real estate services"	24-Sep-07	24-Oct-07	21950.94	=""	="Coffey Corporate Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66705"	"AAT Application- Harvey and Australian Community Pharmacy Authority"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	30-Jun-08	24977.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66706"	"Review, edit  material and draft report"	="Austrade"	25-Mar-08	="Human resources services"	11-Feb-08	25-Feb-08	27555.00	=""	="Zita Antonios Consulting"	25-Mar-08 12:19 PM	

+="CN66707"	"Litigation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	30000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:19 PM	

+="CN66708"	"Preparation of online survey, assessment and workshop"	="Austrade"	25-Mar-08	="Human resources services"	27-Feb-08	14-Apr-08	10534.32	=""	="Culture Resource Centre Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66709"	"AAT Application - Loan Chau v Australian Community Pharmacy Authority"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	23000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66710"	"Reformatting and rewriting the Export Market Development Grants operational procedure manual"	="Austrade"	25-Mar-08	="Human resources services"	11-Feb-08	11-Apr-08	27500.00	=""	="Apis Consulting group Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66711"	"General Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Jun-07	30-Jun-08	20000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66712"	"Analysis of business requirements and implementation of a solution to manage information and interactions relating to clients and allies"	="Austrade"	25-Mar-08	="Human resources services"	18-Feb-08	31-May-08	543918.10	=""	="Accenture Australia Holdings Pty Ltd"	25-Mar-08 12:19 PM	

+="CN66713"	"Specialist Advice: review and revise FOI templates"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-May-07	30-Apr-08	30000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:19 PM	

+="CN66715"	"Maintenance of security equipement in Dubai"	="Austrade"	25-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Mar-08	01-Mar-09	29000.00	=""	="Citytec"	25-Mar-08 12:20 PM	

+="CN66716"	"Design and printing of  Tourism Education Guide"	="Austrade"	25-Mar-08	="Marketing and distribution"	01-Nov-07	31-Jan-08	12298.00	=""	="FP Compania Impresora SA"	25-Mar-08 12:20 PM	

+="CN66717"	"SAS data integration services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	05-Mar-08	25520.00	="288/0607"	="UXC LIMITED"	25-Mar-08 12:20 PM	

+="CN66718"	"Preparation and facilitation of Export Market Development Grants presentation and workshop 2008"	="Austrade"	25-Mar-08	="Human resources services"	12-Feb-08	07-Mar-08	21051.25	=""	="In Corporate Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66719"	"Validation, provision and analysis of data for the State of Our Public Hospitals 2008 Report"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	30-Jun-08	46203.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:20 PM	

+="CN66720"	"Analyst Programmer"	="Austrade"	25-Mar-08	="Human resources services"	01-Feb-08	30-Jun-08	77000.00	=""	="Collective Resources IT Recruitment Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66721"	"Mainframe software renewal for Control M-Control/ M-Restart software"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	95679.79	=""	="BMC SOFTWARE (AUSTRALIA) PTY LTD"	25-Mar-08 12:20 PM	

+="CN66722"	"Preparation and facilitation of workshop with the Kuala Lumpur and Singapore marketing teams"	="Austrade"	25-Mar-08	="Human resources services"	27-Feb-08	29-Feb-08	11080.30	=""	="The Teleran Group Pty Ltd"	25-Mar-08 12:20 PM	

+="CN66724"	"Premier Support Serives"	="Austrade"	25-Mar-08	="Computer services"	22-Feb-08	21-Feb-11	114724.50	=""	="Microsoft Pty Limited"	25-Mar-08 12:20 PM	

+="CN66725"	"Evaluation of Policy Analysis Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jul-08	225929.00	="375/0607"	="HEATHMORE PTY LTD"	25-Mar-08 12:20 PM	

+="CN66726"	"Sponsorship of NSW Export Awards"	="Austrade"	25-Mar-08	="Marketing and distribution"	22-Feb-08	22-Mar-11	16500.00	=""	="Australian Institute of Export (NSW) Ltd"	25-Mar-08 12:20 PM	

+="CN66727"	"Provision of Minor Fitout Works - Executive Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	14-Dec-07	06-Feb-08	43876.80	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:21 PM	

+="CN66728"	"Provision of Minor Fitout Works"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	27-Oct-07	06-Feb-08	73215.45	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:21 PM	

+="CN66729"	"Recruitment of new CEO for ACSQHC"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Sep-07	29-Feb-08	25666.65	=""	="PROFILE RAY AND BERNDTSON PTY LTD"	25-Mar-08 12:21 PM	

+="CN66730"	"Purchase of hospital beds for 6 weeks - Northern Territory Emergency Response (NTER)"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	15-Sep-07	06-Feb-08	576000.00	=""	="DEPARTMENT OF HEALTH AND COMMUNITY"	25-Mar-08 12:21 PM	

+="CN66731"	"Communication Officer services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	20-Feb-08	31236.00	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:21 PM	

+="CN66732"	"Renewal of Coldfusion licenses"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	16527.23	=""	="ZALLCOM PTY LIMITED"	25-Mar-08 12:21 PM	

+="CN66733"	"Coldfusion licenses"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	25266.12	=""	="ZALLCOM PTY LIMITED"	25-Mar-08 12:22 PM	

+="CN66734"	"Maintenance of voicemail systems"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	10782.20	=""	="CPS TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:22 PM	

+="CN66735"	"Provision of satellite phones - NT"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	124150.00	=""	="LANDWIDE SATELLITE SOLUTIONS PTY LT"	25-Mar-08 12:22 PM	

+="CN66736"	"To undertake urgent Council of Australian Governments (COAG) tasks"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	175000.00	=""	="IRVING CONSULTING PTY. LTD."	25-Mar-08 12:22 PM	

+="CN66737"	"Data analyst/designer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Feb-08	09-May-08	103675.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:22 PM	

+="CN66738"	"Solve software licence"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	15-Dec-07	15-Dec-09	492800.00	=""	="CA (PACIFIC) PTY LTD"	25-Mar-08 12:22 PM	

+="CN66739"	"Cleaning of the NT State Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	28-Jan-08	30-Jun-08	15200.00	=""	="STERLING PROPERTY SERVICES PTY LTD"	25-Mar-08 12:22 PM	

+="CN66740"	"Specialist technical writing"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	23-Apr-08	40218.75	=""	="EWAN MAXWELL MORRISON"	25-Mar-08 12:23 PM	

+="CN66741"	"Conference support"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	19-Apr-08	16500.00	=""	="Quality In Practice Pty Ltd"	25-Mar-08 12:23 PM	

+="CN66742"	"Consultancy services - Engagement of APS6"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	11-May-08	40000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:23 PM	

+="CN66743"	"Replacement water units"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	08-Feb-08	30-Jun-08	12419.05	=""	="ZIP HEATERS (AUST) PTY LTD"	25-Mar-08 12:23 PM	

+="CN66744"	"Program planning and needs analysis"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	56400.00	=""	="CAESAR, SYBIL CLAIRE"	25-Mar-08 12:23 PM	

+="CN66745"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	08-Feb-08	20000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:23 PM	

+="CN66746"	"Facilitation Services for the National Aboriginal & Torres Strait Islander Sexual Health Forum"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Apr-08	13200.00	=""	="ARABENA, KERRY ANN"	25-Mar-08 12:23 PM	

+="CN66747"	"Consultancy services for Challenging Behaviours Guidelines Project Plan"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Jun-08	95786.00	="RFT 035/0708"	="TURNING POINT ALCOHOL AND DRUG CENT"	25-Mar-08 12:24 PM	

+="CN66748"	"Placement fees - advertising expaned Grants program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	07-Feb-08	20862.53	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:24 PM	

+="CN66749"	"Placement fees - Business Manager"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	07-Feb-08	15113.67	=""	="TANNER MENZIES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66750"	"Consultancy services - Financial Reporting Framework"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	29-Feb-08	11303.00	=""	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66751"	"Project Management Services - IT"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	86768.00	="288/0607"	="SOUTHERN CROSS COMPUTING PTY LIMITE"	25-Mar-08 12:24 PM	

+="CN66752"	"Consultancy services - Financial Reporting Framework"	="Department of Health and Ageing"	25-Mar-08	="Financial and Insurance Services"	11-Feb-08	29-Feb-08	11303.00	="086/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:24 PM	

+="CN66753"	"Consultancy services - Administration and Stakeholder liasion"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	15-May-08	25000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:24 PM	

+="CN66754"	"Software development - Healthy for Life Program Program"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	28-Nov-07	29-Feb-08	172757.00	=""	="PEN COMPUTER SYSTEMS PTY. LIMITED"	25-Mar-08 12:24 PM	

+="CN66755"	"Provision of design services for minor building works"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	50000.00	=""	="SPACELIFT DESIGN CONSULTANCY"	25-Mar-08 12:25 PM	

+="CN66756"	"Construction services to Penrhyn House Level 2B"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	27-Oct-07	25-Feb-08	68441.45	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:25 PM	

+="CN66757"	"Construction services to Penrhyn House Level 2B"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction Machinery and Accessories"	17-Sep-07	25-Feb-08	66440.27	=""	="BOSS CONSTRUCTIONS (ACT) PTY LIMITE"	25-Mar-08 12:25 PM	

+="CN66758"	"Consultancy services - Test Manager/Analysts services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	30-Jun-08	104720.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:25 PM	

+="CN66759"	"Clinical Handover Initiative relating to maternity services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	31-Jan-09	218267.50	="097/0708"	="MATER MISERICORDIAE HEALTH SERVICES"	25-Mar-08 12:25 PM	

+="CN66760"	"Clinical Handover Initiatives - Mental Health Patients"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	14-Dec-08	130702.00	="097/0708"	="ST. JOHN OF GOD HEALTH SERVICES"	25-Mar-08 12:25 PM	

+="CN66761"	"Development of toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-08	249110.00	="122/0607"	="BSR SOLUTIONS"	25-Mar-08 12:25 PM	

+="CN66762"	"Quality Assurance to the toolkit elements for the Information Management Maturity Framework (IMMF)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	30-Jun-08	146770.00	="122/0607"	="VALINTUS PTY LTD"	25-Mar-08 12:25 PM	

+="CN66763"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13200.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:26 PM	

+="CN66764"	"Consultancy services - professional research & writting services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	22896.76	=""	="PROFESSIONAL CAREERS AUSTRALIA"	25-Mar-08 12:26 PM	

+="CN66765"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:26 PM	

+="CN66766"	"Audit of systems and processes within the Treaties and Compliance Team"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	27-Feb-08	11051.97	=""	="NEILL BUCK & ASSOCIATES PTY LIMITED"	25-Mar-08 12:26 PM	

+="CN66767"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	27-Sep-07	30-Jun-08	10000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:26 PM	

+="CN66768"	"Specialist Legal Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:26 PM	

+="CN66769"	"Engagement of temporary staff to conduct assets stocktake"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	29-Feb-08	16500.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:27 PM	

+="CN66770"	"Consultancy services - travel expenses"	="Department of Health and Ageing"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	12-Mar-07	29-Feb-08	30549.67	=""	="DELOITTE TOUCHE TOHMATSU"	25-Mar-08 12:27 PM	

+="CN66771"	"Funds administrator and health services advisor at Ampilatwatja Health Centre Aboriginal Corporation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	30-Jun-08	533792.60	="148/0506"	="INSTITUTE FOR HEALTHY COMMUNITIES"	25-Mar-08 12:27 PM	

+="CN66772"	"Services for electricity -  Level 6, 1 Oxford Street Sydney"	="Department of Health and Ageing"	25-Mar-08	="Public Utilities and Public Sector Related Services"	01-Jul-07	30-Jun-08	21971.34	=""	="ENERGY AUSTRALIA"	25-Mar-08 12:27 PM	

+="CN66773"	"Provision of temporary staff - Probity advice"	="Department of Health and Ageing"	25-Mar-08	="Financial and Insurance Services"	21-Feb-08	30-Jun-08	27000.00	="086/0607"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:27 PM	

+="CN66774"	"Advertising services  - eCommunities"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Sep-07	26-Feb-08	23397.01	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:27 PM	

+="CN66775"	"Consultancy services - CHCI Electronic Data Collection"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	15-May-08	124540.44	=""	="PEN COMPUTER SYSTEMS PTY. LIMITED"	25-Mar-08 12:27 PM	

+="CN66776"	"Consultancy service to examine options for inpatient critical care-Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	25-Mar-08	145249.00	="218/0708"	="SPENCERSMITH AND ASSOCIATES PTY LTD"	25-Mar-08 12:28 PM	

+="CN66777"	"Provision of contract personnel to Department's Library"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	19-Feb-08	75500.00	=""	="INFORMED SOURCES PTY. LTD."	25-Mar-08 12:28 PM	

+="CN66778"	"SAS Data Integration Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	90000.00	="288/0607"	="ICON RECRUITMENT PTY LTD"	25-Mar-08 12:28 PM	

+="CN66779"	"Development of a National Quality Reporting Framework for Community Care Programs"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	20-Feb-08	171582.00	="134/0405-18"	="AUSTRALIAN HEALTHCARE ASSOCIATES"	25-Mar-08 12:28 PM	

+="CN66780"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	82280.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66781"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66782"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	82280.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:28 PM	

+="CN66783"	"Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:29 PM	

+="CN66784"	"Transport & storgare of Stockpile item - Zithromax IV injections"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	18-Sep-07	30-Jun-09	3465000.00	="178/0607"	="PFIZER AUSTRALIA PTY LTD"	25-Mar-08 12:29 PM	

+="CN66785"	"Provision of IT Training Services"	="Department of Health and Ageing"	25-Mar-08	="Education and Training Services"	22-Dec-06	31-Jan-10	15400.00	="092/0607"	="TOTAL LEARN PTY LTD"	25-Mar-08 12:29 PM	

+="CN66786"	"Review of the current eHealth Strategy"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	30-Jun-08	72785.00	=""	="PHILLIP JONES & ASSOCIATES PTY LTD"	25-Mar-08 12:29 PM	

+="CN66787"	"Reprint of the Private Patients Hospital Charter"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	20-Dec-07	15-Feb-08	27539.60	=""	="PARAGON PRINTERS"	25-Mar-08 12:29 PM	

+="CN66788"	"HIV Epidemiology project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	02-Dec-07	28-Feb-08	196860.01	=""	="MONASH UNIVERSITY"	25-Mar-08 12:29 PM	

+="CN66789"	"Advertising Services for the National Skin Cancer Awareness Campaign"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	13-Sep-07	30-Jun-08	20640.68	=""	="BMF ADVERTISING"	25-Mar-08 12:29 PM	

+="CN66790"	"Agency Placement fee - Engagement of staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	10698.22	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:30 PM	

+="CN66791"	"Supply of workstations and furniture"	="Department of Health and Ageing"	25-Mar-08	="Furniture and Furnishings"	17-Aug-07	22-Feb-08	30000.00	=""	="SCHIAVELLO (ACT) PTY. LTD."	25-Mar-08 12:30 PM	

+="CN66792"	"Interior Design services - Central Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	29-Aug-07	22-Feb-08	15000.00	=""	="SPACELIFT DESIGN CONSULTANCY"	25-Mar-08 12:30 PM	

+="CN66793"	"Engagement of temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	30-May-08	35000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:30 PM	

+="CN66794"	"Consultancy services - Review of Literature on Open Disclosure"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	15-Mar-08	13000.00	=""	="UNIVERSITY OF TECHNOLOGY SYDNEY"	25-Mar-08 12:30 PM	

+="CN66795"	"Consultancy service - Literature Review"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Feb-08	31-Mar-08	53425.00	=""	="GSB CONSULTING AND COMMUNICATIONS"	25-Mar-08 12:30 PM	

+="CN66796"	"Printing of Device Brochures - Hearing Services Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	13-Nov-07	21-Feb-08	23540.00	=""	="PATERSON PRESS TRIPART MARK"	25-Mar-08 12:31 PM	

+="CN66797"	"Consultancy services - Health@Home Plus"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Jan-08	31-Jan-12	1010787.20	=""	="UNIVERSITY PHYSICIANS INCORPORATED"	25-Mar-08 12:31 PM	

+="CN66798"	"Re printing of the emergency triage education kit"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Dec-07	20-Feb-08	30184.00	=""	="UNION OFFSET CO. PTY. LIMITED"	25-Mar-08 12:31 PM	

+="CN66799"	"Specialist Advice"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	30-Jun-08	12198.10	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:31 PM	

+="CN66800"	"Consultancy services - Literature review OATSIH"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	01-May-08	66792.00	="RFT 263/0607"	="ROBERT GRIEW PTY LTD"	25-Mar-08 12:31 PM	

+="CN66801"	"Purchase of Digital handsets (DTERM)"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	19-Feb-08	29-Feb-08	10098.00	=""	="NEC AUSTRALIA PTY LTD"	25-Mar-08 12:31 PM	

+="CN66802"	"Printing/collation of the Pharamaceutical Benefits Advisory Committee (PBAC) Agenda"	="Department of Health and Ageing"	25-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	20-Dec-07	20-Feb-08	15832.67	=""	="BYTES N COLOURS"	25-Mar-08 12:31 PM	

+="CN66803"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	22347.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:31 PM	

+="CN66804"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	22647.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:32 PM	

+="CN66805"	"Additional Work for Clinical Training in the Prevocational Years."	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	18-Jan-08	31-Jan-08	22000.00	=""	="CONFEDERATION OF POSTGRADUATE MEDIC"	25-Mar-08 12:32 PM	

+="CN66806"	"Recruitment services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Oct-07	05-Mar-08	11000.00	="043/0506"	="PAPER SHUFFLE PTY LTD"	25-Mar-08 12:32 PM	

+="CN66807"	"Specialist contracting services for the Australian Commission on Safety and Quality in Health Care"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Mar-08	34760.00	=""	="JOHN RAMSAY & ASSOCIATES"	25-Mar-08 12:32 PM	

+="CN66808"	"Senator McLucas  - Car Transport Cost"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	10016.35	=""	="COMCAR"	25-Mar-08 12:32 PM	

+="CN66809"	"Production of publication "Around Australia in 40 days" booklets and bookmarks"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	18-Sep-07	22-Jan-08	51648.30	=""	="BLUE STAR PRINT"	25-Mar-08 12:32 PM	

+="CN66810"	"Indigenous coaching services"	="Department of Health and Ageing"	25-Mar-08	="Education and Training Services"	15-Oct-07	22-Jan-08	12889.71	=""	="PEOPLE & STRATEGY (ACT) PTY LTD"	25-Mar-08 12:32 PM	

+="CN66811"	"Cabling and electrical services for DOHA - Darwin"	="Department of Health and Ageing"	25-Mar-08	="Electronic Components and Supplies"	10-Dec-07	20-Feb-08	19529.40	=""	="POWER MAINTENANCE & CONSTRUCTIONS"	25-Mar-08 12:33 PM	

+="CN66812"	"Engagement of short term locums at the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	289641.00	=""	="JTA INTERNATIONAL PTY LTD"	25-Mar-08 12:33 PM	

+="CN66813"	"Property Lease- 10 Corrina Street  Woden"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Oct-07	30-Sep-10	174433.00	=""	="GASSON PTY LIMITED"	25-Mar-08 12:33 PM	

+="CN66814"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	08-Oct-07	18-Apr-08	28135.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	25-Mar-08 12:33 PM	

+="CN66815"	"Recruitment engagement - The Way Forward Program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	29-Feb-08	43560.00	="RFT"	="CPT GLOBAL LIMITED"	25-Mar-08 12:33 PM	

+="CN66816"	"Staff placement service"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	25-Jan-08	16500.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	25-Mar-08 12:33 PM	

+="CN66817"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	400000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:33 PM	

+="CN66818"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	60000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	25-Mar-08 12:33 PM	

+="CN66819"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	335000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:34 PM	

+="CN66820"	"Project Mgmt services for accommodation project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Nov-07	30-Apr-08	24200.00	=""	="HBO EMTB INTERIORS (ACT) PTY LIMITE"	25-Mar-08 12:34 PM	

+="CN66821"	"Project management services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	24-Apr-08	30000.00	=""	="COFFEY PROJECTS (AUSTRALIA) PTY LIM"	25-Mar-08 12:34 PM	

+="CN66822"	"Renewal of IBM Australia's Passport Advantage software maintenance"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	119646.24	=""	="IBM AUSTRALIA LTD"	25-Mar-08 12:34 PM	

+="CN66823"	"Renewal of Fujitsu Objectstar software mainframe maintenance license"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	99986.15	=""	="FUJITSU AUSTRALIA LTD"	25-Mar-08 12:34 PM	

+="CN66824"	"Spam firewall 600 software renewal"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Jul-07	12-Jul-08	11783.75	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	25-Mar-08 12:34 PM	

+="CN66826"	"Supply of Ultrasonic Cleaner and Heater for the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	18-Jan-09	23639.00	=""	="MATRIX SURGICAL COMPANY"	25-Mar-08 12:34 PM	

+="CN66827"	"Procurement of a Video Gastroscope for the Mersey Community Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	18-Jan-08	18-Jan-11	38797.00	=""	="OLYMPUS AUSTRALIA PTY LTD"	25-Mar-08 12:35 PM	

+="CN66828"	"Supply of 21,000 Polypropylene folders for the Carer Information and Support Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	26-Nov-07	23-Jan-08	26040.00	=""	="MEGARA (AUSTRALIA) PTY. LTD."	25-Mar-08 12:35 PM	

+="CN66829"	"Supply and production of 20,000 Carers CD's for the Carers Information and Support Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	25-Oct-07	23-Jan-08	10512.00	=""	="ADM SOLUTIONS PTY LTD"	25-Mar-08 12:35 PM	

+="CN66830"	"Redevelopment of the Aged & Community Care Management Information System (ACCMIS)"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	19-Feb-08	712533.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	25-Mar-08 12:35 PM	

+="CN66831-A1"	"NCMS Independent Evaluator Contract"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	24-Jul-07	11-Feb-08	711238.00	="1480607"	="VICTORIA UNIVERSITY"	25-Mar-08 12:35 PM	

+="CN66832"	"Provision of Electricity Central Office 23/8 Change of provider for 3 properties"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	346700.00	=""	="ACTEWAGL RETAIL"	25-Mar-08 12:36 PM	

+="CN66833"	"Office relocations"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	47373.00	="2290405"	="THOMAS BUILDING CONSTRUCTION"	25-Mar-08 12:36 PM	

+="CN66834"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	16500.00	=""	="SAHARA AIR CONDITIONING UNIT TRUST"	25-Mar-08 12:36 PM	

+="CN66825"	"Provision of services in relation to developing and reporting SAS based reporting applications"	="Australian Federal Police"	25-Mar-08	="Data base reporting software"	08-Jan-07	22-Feb-08	221337.60	=""	="Peoplebank Australia Ltd"	25-Mar-08 12:36 PM	

+="CN66835"	"Building maintenance service Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	10450.00	="2150405"	="P & D BUILDING MAINTENANCE PTY LTD"	25-Mar-08 12:36 PM	

+="CN66836"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	32000.00	=""	="HONEYWELL LTD"	25-Mar-08 12:36 PM	

+="CN66837"	"Assess Points - NSW Mapping Project money trans to spec account"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	21-Feb-07	22-Jan-08	31853.00	="RFT"	="BSR SOLUTIONS"	25-Mar-08 12:36 PM	

+="CN66838"	"Consultancy services - Test Analyst Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	57200.00	="288/0607"	="OAKTON SERVICES PTY LTD"	25-Mar-08 12:36 PM	

+="CN66839"	"IT training, strategic direction, co-ordination and development services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	15-Nov-08	70000.00	=""	="REFIRE PTY LTD"	25-Mar-08 12:36 PM	

+="CN66840"	"Business analysis and information architect services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	02-Jul-07	30-Jun-08	10120.00	="122/0607"	="SMS CONSULTING GROUP LTD"	25-Mar-08 12:37 PM	

+="CN66841"	"Development & maintenance of Oracle/coldfusion  Applications"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Sep-07	30-Jun-08	56320.00	="RFT2880607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	25-Mar-08 12:37 PM	

+="CN66842"	"Supply and maintenance of the 360 degree database"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Jun-08	43560.00	=""	="LINKED BUSINESS CONCEPTS PTY LTD"	25-Mar-08 12:37 PM	

+="CN66843"	"Probity advice for the review and market testing of the Department's office services arrangemen"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Jun-07	18-Feb-08	13200.00	="086/0607"	="WALTERTURNBULL PTY LTD"	25-Mar-08 12:37 PM	

+="CN66844"	"Provision of program planning and needs analysis t assist with the extension of the NT Emergency res"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	20-Oct-07	15-Feb-08	12600.00	=""	="CAESAR, SYBIL CLAIRE"	25-Mar-08 12:37 PM	

+="CN66845"	"Provision of Legal services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	149292.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:37 PM	

+="CN66846"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Jun-08	26796.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:37 PM	

+="CN66847"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	70000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:38 PM	

+="CN66848"	"Provision of Review and Process improvement services."	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Oct-07	30-Jun-08	29470.00	=""	="HALLEY, LEANNE MARIE"	25-Mar-08 12:38 PM	

+="CN66849"	"Business Improvement Initiative for Community Programs, A&CC Branch Victoria, DoHA"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	20-Jul-07	08-Feb-08	19360.00	=""	="DYNAMIC WISDOM PTY LTD"	25-Mar-08 12:38 PM	

+="CN66850"	"Temporary policy/project officer"	="Department of Health and Ageing"	25-Mar-08	="Healthcare Services"	01-Jul-07	30-Apr-08	130000.00	="RFT"	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:38 PM	

+="CN66851"	"Refurbishment work for QLD State Office"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	16-Jan-08	28-Feb-09	514956.20	=""	="ISIS PROJECTS PTY LIMITED"	25-Mar-08 12:38 PM	

+="CN66852"	"Financial management services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	12-Feb-07	18-Apr-08	119025.00	="RFT"	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:38 PM	

+="CN66853"	"Healthy for life bennial conference"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Sep-07	30-Jun-08	82373.50	=""	="HYATT REGENCY ADELAIDE"	25-Mar-08 12:38 PM	

+="CN66854-A1"	"National Provision of Warehousing & Distribution, Pick & Pack & Mailout Services"	="Department of Health and Ageing"	25-Mar-08	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	1500000.00	="161/0607"	="National Mailing & Marketing Pty Ltd"	25-Mar-08 12:38 PM	

+="CN66855"	"Provision for Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	25-Mar-08 12:39 PM	

+="CN66856"	"Legal services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	25-Mar-08 12:39 PM	

+="CN66857"	"Provision of  Legal Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	29500.00	="042/0506"	="MINTER ELLISON"	25-Mar-08 12:39 PM	

+="CN66858"	"Extension of contract for consultancy role for the performance development Scheme project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	30-Jun-08	134640.00	=""	="REDBACK CONSULTING PTY LTD"	25-Mar-08 12:39 PM	

+="CN66859"	"Supply of E.N.T Operating Microscope for Mersey Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	23-Jan-08	01-Feb-08	67595.00	=""	="CARL ZEISS PTY. LIMITED"	25-Mar-08 12:39 PM	

+="CN66860"	"Supply of a Ophthalmic Operating Microscope for Mersey Hospital"	="Department of Health and Ageing"	25-Mar-08	="Medical Equipment and Accessories and Supplies"	25-Jan-08	01-Feb-08	103532.00	=""	="CARL ZEISS PTY. LIMITED"	25-Mar-08 12:39 PM	

+="CN66861"	"Printing of a pamphlet to support the National Immunisation Program"	="Department of Health and Ageing"	25-Mar-08	="Published Products"	23-Jan-08	29-Feb-08	16500.00	=""	="PATERSON PRESS TRIPART MARK"	25-Mar-08 12:40 PM	

+="CN66862"	"Consultancy services for 2009/10 Accommodation Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Aug-07	01-Feb-08	70730.00	=""	="BOSBOUS PTY LIMITED"	25-Mar-08 12:40 PM	

+="CN66863"	"Consultancy services - Communications Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	18-Apr-08	19017.90	=""	="HUDSON GLOBAL RESOURCES AUST"	25-Mar-08 12:40 PM	

+="CN66864"	"Document editing"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	08-Jan-08	28-Feb-08	14712.50	=""	="BIOTEXT PTY LTD"	25-Mar-08 12:40 PM	

+="CN66865"	"Relocation of telephone service"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	31-Jan-08	11748.00	=""	="TELSTRA"	25-Mar-08 12:40 PM	

+="CN66866"	"Office relocation services"	="Department of Health and Ageing"	25-Mar-08	="Building and Construction and Maintenance Services"	23-Jan-08	30-Jun-08	49940.00	="229/0405"	="THOMAS BUILDING CONSTRUCTION"	25-Mar-08 12:40 PM	

+="CN66867"	"Communication Adviser for 2009/10 Accommodation Project"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	67678.00	="RFQ 378/0607"	="MORRIS WALKER PTY. LIMITED"	25-Mar-08 12:40 PM	

+="CN66868"	"Rental payment and bond for acting staff member"	="Department of Health and Ageing"	25-Mar-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	31-Jul-08	18720.00	=""	="SUPCLIFFE PTY LTD"	25-Mar-08 12:40 PM	

+="CN66869"	"Advertising Services for the National Skin Cancer Awareness Campaign"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	13-Sep-07	30-Jun-08	17598.63	=""	="BMF ADVERTISING"	25-Mar-08 12:41 PM	

+="CN66870"	"Supply and install security access pass camera and printer - 595 Collins St. Vic"	="Department of Health and Ageing"	25-Mar-08	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	25-Jan-08	07-Mar-08	10533.60	=""	="QUORUM SECURITY SYSTEMS PTY LIMITED"	25-Mar-08 12:41 PM	

+="CN66871"	"Consultancy services - Records Management Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Feb-08	21-Mar-08	12000.00	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:41 PM	

+="CN66872"	"Consultancy services - Program Management Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	18-Apr-08	21577.50	=""	="OAKTON AA SERVICES PTY LTD"	25-Mar-08 12:41 PM	

+="CN66873"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Jan-08	30-Mar-08	30000.00	=""	="CAREERS UNLIMITED PTY LTD"	25-Mar-08 12:41 PM	

+="CN66874"	"Consultancy services -  IT Contractor"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	86020.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:41 PM	

+="CN66875"	"Specialist medical advisory assistance"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Aug-07	05-Feb-08	25000.00	=""	="HUNTER NEW ENGLAND AREA HLTH SERV"	25-Mar-08 12:41 PM	

+="CN66876"	"Temporary staff"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	06-Apr-08	25000.00	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:41 PM	

+="CN66877"	"Consultancy services - CHCI Electronic Data Collection"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	28-Mar-08	94009.85	=""	="COMMUNICARE SYSTEMS"	25-Mar-08 12:42 PM	

+="CN66879"	"Temporary staff to perform data entry services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Jan-08	29-Feb-08	15000.00	=""	="SOS Recruitment"	25-Mar-08 12:42 PM	

+="CN66880"	"Temporary staff to perform data entry services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	29-Feb-08	15000.00	=""	="CAREERS UNLIMITED PTY LTD"	25-Mar-08 12:42 PM	

+="CN66881"	"Secure Gateway service"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	04-Feb-08	168803.09	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	25-Mar-08 12:42 PM	

+="CN66882"	"Provision of Round 11 (2006/07) National Hospital Cost Data Collection (NHCDC)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	30-Jun-08	374000.00	=""	="VISASYS PTY. LIMITED"	25-Mar-08 12:42 PM	

+="CN66883"	"Provision and installation of PABX cards"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-Feb-08	15-Mar-08	27214.40	=""	="NEC AUSTRALIA PTY LTD"	25-Mar-08 12:42 PM	

+="CN66884"	"Provision of mentoring and support services to the board of Dharah Gibinj Aboriginal Medical Service"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	15-Dec-07	15-Jun-08	63052.00	="148/0506"	="SHANNON CONSULTING SERVICES TRUST"	25-Mar-08 12:43 PM	

+="CN66885"	"Property lease- 10 Corrina Street - reimbursement to IP Australia"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	10-Oct-07	30-Jun-08	87663.50	=""	="I P AUSTRALIA"	25-Mar-08 12:43 PM	

+="CN66886"	"Property lease- level 8, 1 Bowes  Place"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Dec-11	899535.60	=""	="RAFHON PTY. LTD."	25-Mar-08 12:43 PM	

+="CN66887"	"Test Analyst Services"	="Department of Health and Ageing"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	30-Apr-08	40040.00	=""	="DIALOG INFORMATION TECHNOLOGY"	25-Mar-08 12:43 PM	

+="CN66888"	"Common services to the Indigineous Co-ordination Centres (ICCs)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	404803.94	=""	="DEPARTMENT OF FAMILIES COMMUNITY"	25-Mar-08 12:43 PM	

+="CN66889"	"Temporary staff for Accounts Receivable Officer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	30-Jun-08	29903.56	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:43 PM	

+="CN66890"	"Recruitment services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Nov-07	25-Nov-08	14026.85	=""	="HAYS PERSONNEL SERVICES"	25-Mar-08 12:44 PM	

+="CN66891"	"Business system services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	30-Jun-08	66000.00	=""	="SMS CONSULTING GROUP LTD"	25-Mar-08 12:44 PM	

+="CN66892-A1"	"Assessing the impact of the collection & recording of PBS under co-payment prescription data"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	06-Jun-08	82500.00	="RFT164/0708"	="HEALTHCARE MANAGEMENT ADVISORS PTY"	25-Mar-08 12:44 PM	

+="CN66893"	"Project management services to refit Brisbane State Office"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jun-08	23760.00	=""	="Inspired Outcomes Pty Ltd"	25-Mar-08 12:44 PM	

+="CN66894"	"Java development and Oracle reports services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	96000.00	="288/0607"	="PEOPLEBANK AUSTRALIA LTD"	25-Mar-08 12:44 PM	

+="CN66895"	"Java application specialist and Oracle web application developer"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	103488.00	="288/0607"	="SOUTHERN CROSS COMPUTING PTY LIMITE"	25-Mar-08 12:44 PM	

+="CN66896"	"Portal development and SAS Data Integration Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	63360.00	="288/0607"	="PEOPLEBANK AUSTRALIA LTD"	25-Mar-08 12:44 PM	

+="CN66897"	"Non campaign advertising for Future ICT Industry briefing"	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	01-Dec-07	25-Jan-08	31406.30	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:44 PM	

+="CN66898"	"Apprenticeship training program"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	03-Aug-08	99015.00	=""	="AUST TRAINING CO LTD"	25-Mar-08 12:45 PM	

+="CN66899"	"Concept,development and design of murals for Waymouth St. Adelaide."	="Department of Health and Ageing"	25-Mar-08	="Editorial and Design and Graphic and Fine Art Services"	06-Feb-08	25-Mar-08	17083.00	=""	="DESIGN TRAIN"	25-Mar-08 12:45 PM	

+="CN66900"	"Financial administration and advisory services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	30-Jun-08	84662.00	="148/0506"	="BUSINESS MAPPING SOLUTIONS PTY LTD"	25-Mar-08 12:45 PM	

+="CN66901"	"Analysis of the economic costs of patient injury using adminidtrative data"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	31-Jul-08	205860.00	="076/0708"	="UNIQUEST PTY LIMITED"	25-Mar-08 12:45 PM	

+="CN66902"	"Recruitment of Senior Project Officer for the Community Care Review Section (QLD STO)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	25-Dec-07	27-Jun-08	60000.00	=""	="FIRST CHOICE RECRUITMENT QLD P/L"	25-Mar-08 12:45 PM	

+="CN66903"	"Improve the quality and consistency of national data relevant to safety and quality"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-08	330831.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:45 PM	

+="CN66904"	"Identify and develop national indicators to monitor safety and quality in health care"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	31-Mar-09	1080571.00	=""	="AUSTRALIAN INSTITUTE OF HEALTH AND"	25-Mar-08 12:46 PM	

+="CN66905"	"Workforce Information Policy Officers Evaluation"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	30-Apr-08	88046.99	=""	="URBIS PTY LTD"	25-Mar-08 12:46 PM	

+="CN66906"	"A & NZ School of Government (ANZSOG) Executive Master of Publis Administration (EMPA)"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Sep-07	28-Nov-08	36900.00	=""	="The Australia and New Zealand Schoo"	25-Mar-08 12:46 PM	

+="CN66907"	"Eidtorials to promote HealthInsite in Aussie Kids publicaton"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	04-Mar-08	14181.20	=""	="HMA BLAZE PTY LTD"	25-Mar-08 12:46 PM	

+="CN66908"	"IT Project Management Services"	="Department of Health and Ageing"	25-Mar-08	="Management and Business Professionals and Administrative Services"	29-Feb-08	30-Jun-08	89760.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	25-Mar-08 12:46 PM	

+="CN66910"	"Provision of legal advise"	="Family Court of Australia"	25-Mar-08	="Legal assistance services"	01-Jan-08	28-Feb-08	10230.00	=""	="List A Barristers Pty Ltd"	25-Mar-08 01:13 PM	

+="CN66913"	" VisuaLinks user training "	="Australian Crime Commission"	25-Mar-08	="Computer based training software"	18-Mar-08	31-May-08	38500.00	=""	="BCT Group Pty Ltd"	25-Mar-08 02:20 PM	

+="CN66915"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	18-Mar-08	18-Mar-08	16261.31	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66916"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	16200.95	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66917"	"main phone bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	16457.97	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:31 PM	

+="CN66918"	"SAP 2008 Maintenance Fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	217647.06	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:31 PM	

+="CN66919"	"SAP 2008 Maintenance fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	23556.95	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:31 PM	

+="CN64793"	"Renewal of Toad licences for Oracle"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Software"	29-Feb-08	28-Feb-09	16524.50	=""	="Quest Software Pty Ltd"	25-Mar-08 02:31 PM	

+="CN66920"	"SAP 2008 Maintenance Fee"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	27-Feb-08	31-Dec-08	13268.02	=""	="Sap Australia Pty Ltd."	25-Mar-08 02:32 PM	

+="CN66921"	"Main Phone Bill"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	18-Mar-08	18-Mar-08	19626.80	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66922"	"Web Design"	="Bureau of Meteorology"	25-Mar-08	="Management advisory services"	27-Feb-08	29-Feb-08	11000.00	=""	="Stamford Interactive P/L"	25-Mar-08 02:32 PM	

+="CN66923"	"Supply of Stationery"	="Bureau of Meteorology"	25-Mar-08	="Office supplies"	12-Mar-08	31-Mar-08	12837.45	=""	="Corporate Express Australia Limited"	25-Mar-08 02:32 PM	

+="CN66924"	"Telephone A/c"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	19-Mar-08	19-Mar-08	20807.53	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66925"	"Professional services for documentation of the data requirements of AWRIS"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Mar-08	25064.33	=""	="SINCLAIR KNIGHT MERZ"	25-Mar-08 02:32 PM	

+="CN66926"	"*Voice service NTRO rental  to 12/3/08 calls to 12/2/08"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	30-Apr-08	12219.83	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:32 PM	

+="CN66927"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	31-Mar-08	29473.98	=""	="Stratos"	25-Mar-08 02:32 PM	

+="CN66928"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	20-Feb-08	29-Feb-08	17520.47	=""	="AAPT LIMITED"	25-Mar-08 02:33 PM	

+="CN66929"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	21-Feb-08	29-Feb-08	83628.38	=""	="Powertel Ltd"	25-Mar-08 02:33 PM	

+="CN66930"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	13-Mar-08	31-Mar-08	39624.92	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:33 PM	

+="CN66931"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	26-Feb-08	26-Feb-08	12628.99	=""	="Leaseplan Australia"	25-Mar-08 02:33 PM	

+="CN66932"	"Audit Services"	="Bureau of Meteorology"	25-Mar-08	="Accounting and auditing"	28-Feb-08	29-Feb-08	18804.50	=""	="Deloitte Touche Tohmatsu"	25-Mar-08 02:33 PM	

+="CN66933"	"Freight"	="Bureau of Meteorology"	25-Mar-08	="Transportation and Storage and Mail Services"	03-Mar-08	31-Mar-08	15996.20	=""	="TRADE LOGISTICS SERVICES PTY LTD"	25-Mar-08 02:33 PM	

+="CN66934"	"Removals and storage"	="Bureau of Meteorology"	25-Mar-08	="Transportation and Storage and Mail Services"	03-Mar-08	31-Mar-08	51565.98	=""	="TOLL TRANSITIONS"	25-Mar-08 02:33 PM	

+="CN66935"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	03-Mar-08	03-Mar-08	15392.88	=""	="Leaseplan Australia"	25-Mar-08 02:33 PM	

+="CN66936"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	04-Mar-08	31-Mar-08	15851.51	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66937"	"Lease vehicles for March 2008"	="Bureau of Meteorology"	25-Mar-08	="Tools and General Machinery"	04-Mar-08	31-Mar-08	11117.02	=""	="LEASE PLAN AUSTRALIA LTD"	25-Mar-08 02:34 PM	

+="CN66938"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	04-Mar-08	31-Mar-08	128921.20	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66939"	"SA REGION VEHICLE LEASE CHARGES FOR MARCH 08"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	04-Mar-08	04-Mar-08	11071.29	=""	="LEASE PLAN AUSTRALIA LTD"	25-Mar-08 02:34 PM	

+="CN66940"	"Telecommunications Services"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	05-Mar-08	31-Mar-08	24920.50	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:34 PM	

+="CN66941"	"Implement and operate GFE - 7th installment"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	05-Mar-08	31-Mar-08	53931.50	=""	="US DEPT OF COMMERCE"	25-Mar-08 02:34 PM	

+="CN66942"	"Vehicle Lease"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	05-Mar-08	05-Mar-08	13568.24	=""	="Leaseplan Australia"	25-Mar-08 02:34 PM	

+="CN66943"	"Car Lease Costs"	="Bureau of Meteorology"	25-Mar-08	="Motor vehicles"	05-Mar-08	05-Mar-08	13568.24	=""	="Leaseplan Australia"	25-Mar-08 02:35 PM	

+="CN66944"	"Barometer assembly kits"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	05-Mar-08	31-Mar-08	18700.00	=""	="Snow Engineering Services P/L"	25-Mar-08 02:35 PM	

+="CN66945"	"Legal Services"	="Bureau of Meteorology"	25-Mar-08	="Legal services"	06-Mar-08	31-Mar-08	12359.06	=""	="PHILLIPS ORMONDE & FITZPATRICK"	25-Mar-08 02:35 PM	

+="CN66946"	"BOC container management fee for March 2008"	="Bureau of Meteorology"	25-Mar-08	="Tools and General Machinery"	06-Mar-08	31-Mar-08	12578.13	=""	="Boc Limited"	25-Mar-08 02:35 PM	

+="CN66947"	"EMC 2008 Sponsorship"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	31-Dec-08	13750.00	=""	="High Profile Exhibitions Pty Ltd"	25-Mar-08 02:35 PM	

+="CN66948-A1"	"Contract Staff"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	31-Mar-08	10958.42	=""	="Dfp Recruitment Services"	25-Mar-08 02:35 PM	

+="CN66949"	"Techni works Licence & Web Host 01.03.2008 -30.06.2009"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	11-Mar-08	30-Jun-09	10285.00	=""	="TECHNIWORKS ACTION LEARNING P/L"	25-Mar-08 02:35 PM	

+="CN66950"	"Telephone A/c"	="Bureau of Meteorology"	25-Mar-08	="Telecommunications media services"	12-Mar-08	18-Mar-08	18905.26	=""	="Telstra  (ID No. 740)"	25-Mar-08 02:35 PM	

+="CN66951"	"Removal of trees and repairs to room and ceiling Katherine House"	="Bureau of Meteorology"	25-Mar-08	="General building construction"	12-Mar-08	30-Apr-08	13650.00	=""	="Peirce (NT) Pty Ltd"	25-Mar-08 02:36 PM	

+="CN66952"	"Australian Met Magazine"	="Bureau of Meteorology"	25-Mar-08	="Printed media"	12-Mar-08	31-Mar-08	10945.00	=""	="Printmail Australia Pty  Ltd"	25-Mar-08 02:36 PM	

+="CN66953"	"Software 16.03.08 - 15.03.2009"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	14-Mar-08	15-Mar-09	12790.80	=""	="FRONTLINE SYSTEMS AUSTRALIA"	25-Mar-08 02:36 PM	

+="CN66954"	"Fitout works"	="Bureau of Meteorology"	25-Mar-08	="General building construction"	19-Mar-08	31-Mar-08	635211.13	=""	="Eveready Partitions P/L"	25-Mar-08 02:36 PM	

+="CN66955"	"Contribution to Chair of Meteorology"	="Bureau of Meteorology"	25-Mar-08	="Engineering and Research and Technology Based Services"	20-Mar-08	31-Dec-08	94909.44	=""	="Monash University"	25-Mar-08 02:36 PM	

+="CN66956"	"Correction of drawing index & preparation for entr"	="Bureau of Meteorology"	25-Mar-08	="Computer services"	25-Feb-08	27-Jun-08	13200.00	=""	="DOCUMENTCORP (CAD/CAM)"	25-Mar-08 02:36 PM	

+="CN66957"	"Overhaul windsspeed Detectors"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	25-Feb-08	28-Feb-08	11396.00	=""	="Karl Dierken Engineering Service"	25-Mar-08 02:36 PM	

+="CN66958-A1"	"ERRTS - CANISTERS - AERIALS ETC"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	25-Feb-08	31-Mar-08	17594.50	=""	="Elpro Technologies Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66959"	"RIG HIRE - REMOVE PILE - SUPPLY & DRIVE PILE - MOBILISATION & DEMOBILISATION COSTS"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	11-Apr-08	22000.00	=""	="Van Ek Contracting Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66960"	"Rack equipment"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	26-Feb-08	11-Mar-08	15175.24	=""	="Datacom Systems (QLD)"	25-Mar-08 02:37 PM	

+="CN66961"	"AIFS Workstations and Monitors"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	27-Feb-08	06-Mar-08	43256.98	=""	="City Software Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66962-A1"	"Alert Field Station Components"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	27-Feb-08	28-Mar-08	15048.00	=""	="Elpro Technologies Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66963"	"Supply of 30 Aerodrome weather info Broadcast (AWIB) MK3 Systems"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	04-Mar-08	28-Apr-08	41250.00	=""	="Seamist Pty Ltd"	25-Mar-08 02:37 PM	

+="CN66964"	"Refurbish WF100 Radar Magnetron type Sfd373A-R Mat No.100094"	="Bureau of Meteorology"	25-Mar-08	="Electronic hardware and component parts and accessories"	04-Mar-08	19-May-08	37455.00	=""	="Richardson Electronics Pty Limited"	25-Mar-08 02:37 PM	

+="CN66965"	"Repair of Stalos S/n 9431-71 and 0532-14"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	28-Mar-08	10923.00	=""	="Environmental Systems & Services"	25-Mar-08 02:37 PM	

+="CN66966"	"SE08/198198-20 L-band Cavity combine filter type 0011b"	="Bureau of Meteorology"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	04-Mar-08	30-May-08	19734.00	=""	="Em Solutions Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66967-A1"	"500 Radar Targets as per deed of Standing offer No.037/2007"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	04-Mar-08	26-Jun-08	164186.00	=""	="The Total Package"	25-Mar-08 02:38 PM	

+="CN66968-A1"	"ASLOS site Acquisition Services"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	31-Oct-08	66550.00	=""	="United GroupServices Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66969-A1"	"C band WaveGuides"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	11-Mar-08	28-Apr-08	22740.71	=""	="DrawCom Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66970"	"Hardware for the SAP HRMS ERP 6 Upgrade Components o MetESS"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	11-Mar-08	18-Mar-08	101068.55	=""	="FRONTLINE SYSTEMS AUSTRALIA"	25-Mar-08 02:38 PM	

+="CN66971"	"Sippican Deep Blue ZBT Probes for Material No. 500689"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	11-Mar-08	30-May-08	52669.68	=""	="THALES UNDERWATER SYSTEMS PTY LTD"	25-Mar-08 02:38 PM	

+="CN66972"	"HP 6910p note book computer, cases, Cable Lock"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	12-Mar-08	26-Mar-08	58773.00	=""	="Adnet Technology Australia Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66973"	"HP 2510p notebook computer, Case, cable Lock"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	12-Mar-08	26-Mar-08	45188.00	=""	="Adnet Technology Australia Pty Ltd"	25-Mar-08 02:38 PM	

+="CN66974"	"Drifing Buoys Technocean WOCE SVP-B"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	12-Mar-08	30-May-08	16581.48	=""	="Technocean Incorporated"	25-Mar-08 02:39 PM	

+="CN66975"	"PROCESSOR UPGRADE FOR IBM P690 2 PROCESSORS"	="Bureau of Meteorology"	25-Mar-08	="Computer Equipment and Accessories"	13-Mar-08	31-Mar-08	118773.60	=""	="KAZ TECHNOLOGY SERVICES P/L"	25-Mar-08 02:39 PM	

+="CN66976"	"VHF Radio Marine Weather Survey"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	37870.00	=""	="ANDREWS MARKETING GROUP PTY LTD"	25-Mar-08 02:39 PM	

+="CN66977"	"Drifting Bouys WOCE SVP-B"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	13-Mar-08	30-May-08	22823.25	=""	="Marlin-Yug Ltd"	25-Mar-08 02:39 PM	

+="CN66978"	"Spare Parts for Radar Model (DWSR-2502C"	="Bureau of Meteorology"	25-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	21-Mar-08	142107.90	=""	="Environmental Systems & Services"	25-Mar-08 02:39 PM	

+="CN66979"	"Support of Bureau IT systems 1/4/08 to 31/12/09"	="Bureau of Meteorology"	25-Mar-08	="Engineering and Research and Technology Based Services"	14-Mar-08	26-Mar-08	12808.76	=""	="Sun Microsystems Aust Pty Ltd"	25-Mar-08 02:39 PM	

+="CN66980-A1"	"Consulting services to determine maximum Elecrical Power Supply"	="Bureau of Meteorology"	25-Mar-08	="Business administration services"	14-Mar-08	10-Apr-08	13090.00	=""	="PBJ & Associates Pty Ltd"	25-Mar-08 02:39 PM	

+="CN66981"	"Professional IT Services"	="Bureau of Meteorology"	25-Mar-08	="Business administration services"	17-Mar-08	19-Mar-10	149050.00	=""	="People Bank"	25-Mar-08 02:40 PM	

+="CN66982-A1"	"Advice on Data Provision - Water Act 2007"	="Bureau of Meteorology"	25-Mar-08	="Management advisory services"	17-Mar-08	17-Mar-08	33000.00	=""	="UMEE Ltd"	25-Mar-08 02:40 PM	

+="CN66983-A1"	"AWRIS End User Requirements spec contract No.008-2008"	="Bureau of Meteorology"	25-Mar-08	="Project management"	17-Mar-08	30-Jun-08	30000.00	=""	="SINCLAIR KNIGHT MERZ"	25-Mar-08 02:40 PM	

+="CN66984"	"Viasala PTB 220B pressure sensors"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	18-Mar-08	15-May-08	316387.50	=""	="Vaisala Pty Ltd"	25-Mar-08 02:40 PM	

+="CN66985"	"RBL Curtain Assembly"	="Bureau of Meteorology"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	21-Mar-08	10334.50	=""	="Membranes Aust"	25-Mar-08 02:40 PM	

+="CN66986"	"Supply of Solar Panels"	="Bureau of Meteorology"	25-Mar-08	="Power Generation and Distribution Machinery and Accessories"	19-Mar-08	28-Mar-08	19322.60	=""	="Solar Charge Pty Ltd"	25-Mar-08 02:40 PM	

+="CN66987"	"Charter of Vessel MV Phoenix  - Cairns to Willis"	="Bureau of Meteorology"	25-Mar-08	="Components for information technology or broadcasting or telecommunications"	19-Mar-08	24-Apr-08	19636.00	=""	="Bianca Deep SEa & Game Fishing"	25-Mar-08 02:40 PM	

+="CN66988"	"Supply of NG-AWS Agromet Units"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	120440.98	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66989"	"Developement costs associated with the remote Agro met unit,remote wind unit & power supply NG-AWS"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	52827.00	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66990"	"Supply of standard NG-AWS config &power supply"	="Bureau of Meteorology"	25-Mar-08	="Measuring and observing and testing instruments"	20-Mar-08	01-May-08	110924.99	=""	="Telvent Almos"	25-Mar-08 02:41 PM	

+="CN66993"	"COURIER SERVICES"	="Department of Human Services"	25-Mar-08	="Domestic air cargo transport"	17-Mar-08	30-Jun-08	17000.01	=""	="STAR TRACK EXPRESS"	25-Mar-08 02:52 PM	

+="CN66994"	"VOICE COMMUNICATIONS"	="Department of Human Services"	25-Mar-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	17-Mar-08	02-Apr-08	17185.14	=""	="OPTUS BILLING SERVICES PTY LTD"	25-Mar-08 02:58 PM	

+="CN66999"	"Relocation of  SAN equipment"	="Australian Crime Commission"	25-Mar-08	="Relocation services"	18-Mar-08	31-May-08	30098.20	=""	="EMC Global Holdings Co"	25-Mar-08 03:25 PM	

+="CN65206"	" Temporary Employee "	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	11-Feb-08	09-May-08	22934.34	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	25-Mar-08 03:30 PM	

+="CN66608-A2"	"Temporary Employee"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	13-Mar-08	17-Sep-08	53999.97	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:31 PM	

+="CN66609"	"Temporary Employee - Finance Section"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	11-Mar-08	30-Jun-08	34100.00	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:31 PM	

+="CN67001"	"Video/Audio Devices"	="Australian Crime Commission"	25-Mar-08	="Cameras"	13-Mar-08	30-Apr-08	39314.00	=""	="Geonautics International"	25-Mar-08 03:31 PM	

+="CN64803"	"Contractor for Anti-SPAM team"	="Australian Communications and Media Authority (ACMA)"	25-Mar-08	="Temporary personnel services"	25-Feb-08	25-May-08	38500.00	="05ACMA013"	="Hays Personnel Services (Aust) Pty Ltd"	25-Mar-08 03:32 PM	

+="CN67003"	"Leaseplan vehicles"	="Australian Crime Commission"	25-Mar-08	="Motor vehicles"	01-Oct-07	07-Dec-07	64768.70	=""	="Leaseplan"	25-Mar-08 03:42 PM	

+="CN67004"	"Provision for Internal Audit and related Services - Budgeting/Management Accounting"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	24750.00	=""	="Oakton Services Pty"	25-Mar-08 03:42 PM	

+="CN67005"	"Provision for Internal Audit Services - Exit Rates"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty Ltd"	25-Mar-08 03:45 PM	

+="CN67006"	"Provision for Internal Audit  Services - Information Privacy"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty"	25-Mar-08 03:49 PM	

+="CN67009"	"Provision for Internal Audit services - Business Change Management"	="Comsuper"	25-Mar-08	="Audit services"	03-Mar-08	31-May-08	18563.00	=""	="Oakton Services Pty"	25-Mar-08 03:51 PM	

+="CN67010-A1"	" TRIM EDRMS & Kofax Services Agreement & Maintanance "	="Comsuper"	25-Mar-08	="Software"	01-Apr-06	31-Mar-11	101166.00	=""	="Alphawest Services Pty Ltd"	25-Mar-08 03:55 PM	

+="CN67011-A1"	"Provision for Project Manager"	="Comsuper"	25-Mar-08	="Human resources services"	30-Mar-08	30-Jun-08	91520.00	=""	="Maximus Solutions"	25-Mar-08 03:57 PM	

+="CN67012"	"TRIM workflow licences"	="Australian Crime Commission"	25-Mar-08	="Business function specific software"	10-Jan-08	25-Feb-08	10523.99	=""	="iCognition Pty Ltd"	25-Mar-08 03:59 PM	

+="CN67015"	"Delivery of Diploma of Government course"	="Australian Crime Commission"	25-Mar-08	="Educational certificates or diplomas"	06-Feb-08	31-Mar-08	32180.00	=""	="McMillan Staff Development Pty Ltd"	25-Mar-08 04:08 PM	

+="CN67016-A1"	"Translation services"	="Australian Crime Commission"	25-Mar-08	="Interpreters"	01-Mar-08	28-Feb-09	10000.00	=""	="Bezabih Barasa"	25-Mar-08 04:12 PM	

+="CN50514"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	17-Nov-06	16-Nov-08	43310.78	=""	="LeasePlan"	25-Mar-08 04:12 PM	

+="CN67017"	" AG Actuary Requirement "	="Australian Taxation Office"	25-Mar-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	30-Apr-08	10000.00	=""	="Australian Government Actuary"	25-Mar-08 04:14 PM	

+="CN50513"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	06-Mar-07	05-Mar-09	44079.02	=""	="LeasePlan"	25-Mar-08 04:15 PM	

+="CN67019"	"Translation services"	="Australian Crime Commission"	25-Mar-08	="Interpreters"	28-Feb-08	24-Mar-09	15000.00	=""	="Francis Sarpong-Sannah"	25-Mar-08 04:16 PM	

+="CN50512"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	22-Oct-07	21-Oct-09	30729.07	=""	="LeasePlan"	25-Mar-08 04:17 PM	

+="CN50511"	"Fleet Management andLeasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	30-Aug-07	29-Aug-09	35077.68	=""	="LeasePlan"	25-Mar-08 04:18 PM	

+="CN50510-A1"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	08-Nov-06	07-Aug-09	64424.51	=""	="LeasePlan"	25-Mar-08 04:20 PM	

+="CN50509"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	05-Apr-07	04-Apr-09	44431.73	=""	="LeasePlan"	25-Mar-08 04:24 PM	

+="CN50508"	"Fleet  Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	25-Mar-08	="Vehicle leasing"	13-Oct-06	12-Oct-08	47134.82	=""	="LeasePlan"	25-Mar-08 04:25 PM	

+="CN67022"	"Specialist services for network monitoring"	="Australian Crime Commission"	25-Mar-08	="Network analysers"	06-Feb-08	30-Jun-08	25300.00	=""	="Anixter Australia Pty Ltd"	25-Mar-08 04:26 PM	

+="CN67023"	"Employee Assistance Program - 2008"	="Australian Crime Commission"	25-Mar-08	="Employee assistance programs"	01-Mar-08	31-Dec-08	21450.00	=""	="Davidson Trahaire (ACT)"	25-Mar-08 04:30 PM	

+="CN67024-A2"	"Provision for Business Analyst"	="Comsuper"	25-Mar-08	="Human resources services"	10-Mar-08	30-Jun-08	62656.00	=""	="Encore It Services"	25-Mar-08 04:41 PM	

+="CN50507"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	26-Mar-08	="Vehicle leasing"	24-Nov-06	23-May-08	44076.38	=""	="LeasePlan"	26-Mar-08 07:32 AM	

+="CN50506"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	26-Mar-08	="Vehicle leasing"	17-Nov-05	13-Mar-08	51047.17	=""	="LeasePlan"	26-Mar-08 07:43 AM	

+="CN67025"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	26-Mar-08	="Aircraft spars"	17-Mar-08	16-Sep-08	17111.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	26-Mar-08 08:39 AM	

+="CN67026"	"parts cost repair"	="Department of Defence"	26-Mar-08	="Mortars"	26-Mar-08	03-Jul-08	49000.00	=""	="EYELEX PTY LTD"	26-Mar-08 08:44 AM	

+="CN67028"	"Fleet Management and Leasing Services ( REF Standing Offer ID12383)"	="Family Court of Australia"	26-Mar-08	="Vehicle leasing"	13-Mar-08	12-Mar-10	33612.48	=""	="LeasePlan"	26-Mar-08 09:47 AM	

+="CN67029-A1"	"Financial Accounting and Business Services"	="Australian Taxation Office"	26-Mar-08	="Accounting and auditing"	26-Mar-08	30-Apr-09	97048.00	="123.02"	="KPMG"	26-Mar-08 09:58 AM	

+="CN67035-A1"	" VEHICLE REPAIRS "	="Department of Defence"	26-Mar-08	="Motor vehicles"	10-Mar-08	10-Apr-08	30329.37	=""	="FB AUTOS"	26-Mar-08 10:14 AM	

+="CN67036-A2"	"To provide Cleaning services to the Tweed heads CRS Australia"	="CRS Australia"	26-Mar-08	="General building and office cleaning and maintenance services"	03-Mar-08	28-Feb-11	33330.00	=""	="Goldfinger Cleaning Services"	26-Mar-08 10:18 AM	

+="CN67040-A1"	"VEHICLE REPAIRS"	="Department of Defence"	26-Mar-08	="Motor vehicles"	26-Mar-08	26-Apr-08	24991.87	=""	="MICKS AUTOS"	26-Mar-08 10:30 AM	

+="CN67046"	" VEHICLE PARTS"	="Defence Materiel Organisation"	26-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	03-Mar-08	02-Apr-08	10108.57	=""	="MERCEDES-BENZ AUSTRALIA PACIFIC"	26-Mar-08 10:51 AM	

+="CN50505"	"Fleet Management and Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	26-Mar-08	="Vehicle leasing"	06-Jun-07	05-Jun-09	43028.83	=""	="LeasePlan"	26-Mar-08 10:53 AM	

+="CN67047"	" VEHICLE PARTS "	="Defence Materiel Organisation"	26-Mar-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	04-Mar-08	23-Mar-08	12768.91	=""	="LAND ROVER AUSTRALIA"	26-Mar-08 11:01 AM	

+="CN67050"	"Modification to Contract previously posted.  ID 1684655.  Quantity on original 6.  Quantity increased to 7 x Air Conditioning Compressors."	="Defence Materiel Organisation"	26-Mar-08	="Refrigerant compressors"	29-Jun-07	31-Aug-07	17440.50	="FV7008"	="Pacific Aerodyne Pty Ltd"	26-Mar-08 11:21 AM	

+="CN67059"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	26-Mar-08	="Community and social services"	01-Jul-07	30-Jun-08	25941.85	=""	="Pitjantatjara Homelands Council Inc"	26-Mar-08 12:18 PM	

+="CN67060"	" AIRCRAFT SPARES  NSN 1680-66-138-2147 , PAD ASSY , QTY 20 "	="Defence Materiel Organisation"	26-Mar-08	="Military transport helicopters"	26-Mar-08	11-Apr-08	14557.40	=""	="MILSPEC SERVICES"	26-Mar-08 12:35 PM	

+="CN67061"	"repair aircraft component"	="Defence Materiel Organisation"	26-Mar-08	="Anti submarine aircraft"	28-Feb-08	30-Jun-08	10746.40	=""	="Bellinger Instruments"	26-Mar-08 12:59 PM	

+="CN67063"	"Capital Works to mailroom/ Car wash erea Weston"	="Australian Federal Police"	26-Mar-08	="Project management"	27-Nov-07	20-Dec-07	20119.80	=""	="Freshford Contracting Pty Ltd"	26-Mar-08 01:29 PM	

+="CN67064"	"Cleaner Gold Coast Airport"	="Australian Federal Police"	26-Mar-08	="Janitorial equipment"	01-Mar-07	31-Dec-07	20790.00	=""	="Hidden Valley Enterprises"	26-Mar-08 01:45 PM	

+="CN67065"	"Supply and install close circuit TV cabling"	="Australian Federal Police"	26-Mar-08	="Power cable installation and supply"	01-Dec-07	20-Dec-07	16665.00	=""	="Airport Data & Electrical Pty Ltd"	26-Mar-08 01:59 PM	

+="CN67067"	"Temporary staff for Study in Australia team"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Human resources services"	17-Sep-07	31-Dec-07	40000.00	="PRN18000"	="HAYS PERSONNEL SERVICES"	26-Mar-08 02:36 PM	

+="CN67068"	"Contract for professional development for Country"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Marketing and distribution"	20-Nov-07	30-Jun-08	23595.00	="PRN17796"	="VISION AUSTRALIA"	26-Mar-08 02:36 PM	

+="CN67069"	"17 Mort Street - Reconfiguration of Level's 1 and 4"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="General building construction"	11-Dec-07	09-Jan-08	24937.68	="PRN17992"	="CONSTRUCTION CONTROL INTERIORS P/L"	26-Mar-08 02:37 PM	

+="CN67070-A1"	"Design document tender and contract manage DEST Griffith fit out"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="General building construction"	05-Sep-07	28-Dec-07	10725.00	="PRN16842"	="GECHAWELL PTY LTD"	26-Mar-08 02:37 PM	

+="CN67071"	"Round Tables x35, Stanza chairs x33"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Building and Construction and Maintenance Services"	03-Oct-07	31-Dec-07	19438.10	="PRN17999"	="Schiavello Commercial Interiors"	26-Mar-08 02:37 PM	

+="CN67072-A1"	"Repairs to Staff House Kangaroo Place"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="General building construction"	02-Jul-07	28-Mar-08	27647.00	="PRN17382"	="VATHJUNKER CONTRACTORS PTY LTD"	26-Mar-08 02:37 PM	

+="CN67073"	"Exec Furniture 71 and 72 Northbourne projects"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Building and Construction and Maintenance Services"	19-Dec-07	30-Jun-08	15393.40	="PRN18205"	="CITE OFFICE DESIGN PTY LIMITED"	26-Mar-08 02:38 PM	

+="CN67075-A1"	"Repairs to Staff House 11 Hollings Place"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="General building construction"	23-Jul-07	30-May-08	100558.90	="PRN17132"	="VATHJUNKER CONTRACTORS PTY LTD"	26-Mar-08 02:38 PM	

+="CN67076-A2"	"School Enrolment Projections to 2020"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Marketing and distribution"	05-Feb-07	11-Jan-08	35057.00	="PRN12446"	="NATSEM"	26-Mar-08 02:39 PM	

+="CN67077"	"Commvault Data Management Software"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Computer Equipment and Accessories"	20-Dec-07	30-Jun-08	47500.00	="PRN18198"	="COMMVAULT SYSTEMS (AUSTRALIA) P/L"	26-Mar-08 02:43 PM	

+="CN67078"	"Fleet Management and Vehicle Leasing Services (Ref Standing Offer ID 12383)"	="Family Court of Australia"	26-Mar-08	="Vehicle leasing"	17-Mar-08	16-Mar-10	34039.37	=""	="LeasePlan"	26-Mar-08 02:51 PM	

+="CN67080"	"MRH90 FOCFT Meeting and conduct PAT&E"	="Defence Materiel Organisation"	26-Mar-08	="Travel facilitation"	06-Feb-08	06-Feb-08	13302.37	=""	="QANTAS AIRWAYS LIMITED"	26-Mar-08 03:01 PM	

+="CN67081"	"29 Feb - 15 Mar 08"	="Defence Materiel Organisation"	26-Mar-08	="Travel facilitation"	29-Feb-08	15-Mar-08	13024.70	=""	="QANTAS AIRWAYS LIMITED"	26-Mar-08 03:01 PM	

+="CN67082"	"Freight"	="Defence Materiel Organisation"	26-Mar-08	="Military rotary wing aircraft"	13-Feb-08	13-Feb-08	10087.64	=""	="TNT AUSTRALIA PTY LTD"	26-Mar-08 03:01 PM	

+="CN67083"	"MATIS Management Conference Venue - Bid 6238 - Phillip Davis"	="Defence Materiel Organisation"	26-Mar-08	="Hotels and lodging and meeting facilities"	27-Feb-08	18-Mar-08	12040.00	=""	="BELLINZONA GRANGE"	26-Mar-08 03:01 PM	

+="CN67084"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10340.00	="PRN12579"	="Access Group Training Ltd"	26-Mar-08 03:02 PM	

+="CN67085"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Education and Training Services"	01-Jan-07	22-Feb-10	12100.00	="PRN12579"	="Applied Training Solutions Pty Ltd"	26-Mar-08 03:02 PM	

+="CN67086"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10230.00	="PRN12579"	="ARTISTRY OF MAKE-UP ACADEMY"	26-Mar-08 03:03 PM	

+="CN67087"	"Australian Skills Vouchers Programme Assessment Fees"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Education and Training Services"	01-Jan-07	22-Feb-10	10010.00	="PRN12579"	="NEW HORIZONS LEARNING CNTR (PERTH)"	26-Mar-08 03:03 PM	

+="CN67088-A1"	"Organisation Review Implementation of NSW/ACT Stat"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Human resources services"	18-Jun-07	20-Jun-08	34386.41	="PRN17996"	="MERCER HUMAN RESOURCE CONSULTING"	26-Mar-08 03:03 PM	

+="CN67079"	"repair Qty 7 aircraft components"	="Defence Materiel Organisation"	26-Mar-08	="Anti submarine aircraft"	25-Mar-08	30-Jun-08	23135.00	=""	="Bellinger Instruments"	26-Mar-08 03:03 PM	

+="CN67090"	"Kindy/Pre-school Workshop 2007"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	14-Dec-07	15000.00	="PRN17412"	="HOLIDAY INN BRISBANE"	26-Mar-08 03:03 PM	

+="CN67091"	"International business skills for VET senior managers"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Marketing and distribution"	10-Dec-07	30-May-08	59100.00	="PRN17417"	="INTERNATIONAL EDUCATION"	26-Mar-08 03:04 PM	

+="CN67089"	" Market rental assessments at Australian Airports "	="Australian Federal Police"	26-Mar-08	="Lease and rental of property or building"	01-Jul-07	30-Dec-07	18150.00	=""	="Charter Keck Cramer"	26-Mar-08 03:04 PM	

+="CN67092"	"Australian Government Summer Schools for Teachers"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Marketing and distribution"	14-Dec-07	30-Jun-08	49181.29	="PRN18008"	="NATIONAL PROMOTIONS AUSTRALIA P/L"	26-Mar-08 03:04 PM	

+="CN67093"	"Provision of contract cataloguing services"	="Department of Education Employment and Workplace Relations"	26-Mar-08	="Library"	02-Oct-07	02-Feb-08	13330.00	="PRN17275"	="LYNN FARKAS INFORMATION SERVICES"	26-Mar-08 03:05 PM	

+="CN67094"	"Due Dillgence reports on Anzac Park West"	="Australian Federal Police"	26-Mar-08	="Promotional material or annual reports"	01-Oct-07	30-Nov-07	37237.75	=""	="Rider Levett Bucknell"	26-Mar-08 03:16 PM	

+="CN67095"	" SHIPPING CONTAINERS "	="Department of Defence"	26-Mar-08	="Containers and storage"	10-Mar-08	17-Mar-08	11110.00	=""	="ROYAL WOLF CONTAINER SALES HIRE"	26-Mar-08 03:21 PM	

+="CN67096"	" Personnel Rercuitment "	="Australian Crime Commission"	26-Mar-08	="Personnel recruitment"	25-Feb-08	30-Jun-08	82280.00	=""	="Matera Consulting Pty Ltd"	26-Mar-08 03:41 PM	

+="CN67097"	"Glass columns, Melb Central Tower"	="CRS Australia"	26-Mar-08	="Renovation of buildings or landmarks or monuments"	20-Feb-08	29-Feb-08	11200.00	=""	="CA PROPERTY GROUP Pty Ltd"	26-Mar-08 03:41 PM	

+="CN67098"	"Professional Fees Energy Report 7 sites"	="CRS Australia"	26-Mar-08	="Energy work"	07-Feb-08	29-Feb-08	11363.64	=""	="KEY GROUP, THE"	26-Mar-08 03:41 PM	

+="CN67099"	" Computer switches and power supply "	="Australian Crime Commission"	26-Mar-08	="Computer Equipment and Accessories"	13-Mar-08	30-Apr-08	10936.93	=""	="Commander Integrated Networks Pty Limited"	26-Mar-08 03:47 PM	

+="CN67101"	" AIRCRAFT SPARES  NSN 1680-66-141-3551 , PAD CUSHIONING , QTY 20. "	="Defence Materiel Organisation"	26-Mar-08	="Military transport helicopters"	26-Mar-08	17-Apr-08	17348.76	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	26-Mar-08 04:02 PM	

+="CN67102"	"Annual Renewal of ContentKeeper License"	="Australian Taxation Office"	26-Mar-08	="Software"	29-Mar-08	28-Mar-09	174240.00	=""	="Open Systems Australia P/L"	26-Mar-08 04:03 PM	

+="CN67105"	"Coaching for SES members"	="Australian Crime Commission"	26-Mar-08	="Organisational structure consultation"	01-Mar-08	30-Apr-08	12236.40	=""	="Palm Consulting Group Pty Ltd"	26-Mar-08 04:08 PM	

+="CN67104-A4"	"Evidence Management software installation & support Agreement"	="Australian Federal Police"	26-Mar-08	="Software"	27-Dec-01	30-Sep-12	2045541.04	=""	="Siemens IT Solutions and Services Pty Ltd"	26-Mar-08 04:13 PM	

+="CN67107-A3"	"Personnel Recruitment"	="Australian Crime Commission"	26-Mar-08	="Personnel recruitment"	10-Mar-08	26-Sep-08	104632.00	=""	="Tarakan Consulting Pty Ltd"	26-Mar-08 04:15 PM	

+="CN67106"	"DETECTING SET, MINE C/W HEADSET, BATTERY PACK AND CABLE"	="Defence Materiel Organisation"	26-Mar-08	="Detectors"	26-Mar-08	22-Apr-08	65225.60	=""	="MINELAB ELECTRONICS PTY LTD"	26-Mar-08 04:19 PM	

+="CN67109"	"Personnel Recruitment"	="Australian Crime Commission"	26-Mar-08	="Personnel recruitment"	10-Mar-08	30-Jun-08	54912.00	=""	="Icon Recruitment Pty Ltd"	26-Mar-08 04:22 PM	

+="CN67113"	"BP 07233 Escalated Debt Reminder Letters"	="Australian Taxation Office"	26-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Mar-08	31-Mar-08	10295.00	=""	="Hermes Precisa Pty Ltd"	26-Mar-08 04:39 PM	

+="CN67117"	"Security upgrade"	="Australian Crime Commission"	26-Mar-08	="Security surveillance and detection"	13-Mar-08	30-Jun-08	86000.00	=""	="Honeywell Ltd"	26-Mar-08 05:05 PM	

+="CN67118"	"Provision of software licence and support services"	="Department of Parliamentary Services"	27-Mar-08	="Computer aided design CAD software"	25-Feb-08	31-Mar-09	12259.50	=""	="Bentley Systems Pty Ltd"	27-Mar-08 07:47 AM	

+="CN67119"	"Provision of Project Management Training Services"	="Department of Parliamentary Services"	27-Mar-08	="Education and Training Services"	25-Feb-08	31-Mar-08	30580.00	=""	="DWS Advanced Business Solutions"	27-Mar-08 07:47 AM	

+="CN67120"	"Purchase of software licences"	="Department of Parliamentary Services"	27-Mar-08	="Software"	25-Feb-08	03-Mar-08	20677.80	=""	="Zallcom Pty Ltd"	27-Mar-08 07:47 AM	

+="CN67121"	"ICT Panel Services Information and communication Technology services contract (DPS05048)"	="Department of Parliamentary Services"	27-Mar-08	="Information Technology Broadcasting and Telecommunications"	26-Feb-08	03-Mar-08	45100.00	=""	="Int Education & Employment Links PL"	27-Mar-08 07:47 AM	

+="CN67122"	"Provision of Project Mangement Training Services Contract (DPS07049 )"	="Department of Parliamentary Services"	27-Mar-08	="Education and Training Services"	27-Feb-08	03-Mar-08	50077.28	=""	="Tanner James Management"	27-Mar-08 07:47 AM	

+="CN67123"	"Purchase of photographic pass printer"	="Department of Parliamentary Services"	27-Mar-08	="Printer or copier paper"	27-Feb-08	03-Mar-08	10978.00	=""	="Honeywell Limited"	27-Mar-08 07:48 AM	

+="CN67124"	"Upgrade for Electronic Media Moritoring System"	="Department of Parliamentary Services"	27-Mar-08	="Software"	28-Feb-08	03-Mar-08	21450.00	=""	="Visionbytes Pty Ltd"	27-Mar-08 07:48 AM	

+="CN67125"	"Supply for server equipment Supply,warranty and maintenace Contract DPS05054"	="Department of Parliamentary Services"	27-Mar-08	="Computer servers"	03-Mar-08	30-Sep-08	12369.50	=""	="Dell Australia P/L"	27-Mar-08 07:48 AM	

+="CN67126"	"Provision of internal Audit Services"	="Department of Parliamentary Services"	27-Mar-08	="Internal audits"	05-Mar-08	30-Jun-08	10560.00	=""	="WalterTurnbull Pty Ltd"	27-Mar-08 07:48 AM	

+="CN67127"	"Provision of Legal Services"	="Department of Parliamentary Services"	27-Mar-08	="Legal services"	07-Mar-08	30-Jun-08	11000.00	=""	="Blake Dawson"	27-Mar-08 07:48 AM	

+="CN67128"	"Supply of server equipment. Supply,warranty and maintenace Contract DPS05054"	="Department of Parliamentary Services"	27-Mar-08	="Computer servers"	11-Mar-08	05-May-08	14029.40	=""	="Dell Australia P/L"	27-Mar-08 07:48 AM	

+="CN67129"	"Supply of computer printers"	="Department of Parliamentary Services"	27-Mar-08	="Computer printers"	11-Mar-08	31-Mar-08	143655.66	=""	="Hewlett Packard Australia Pty Ltd"	27-Mar-08 07:48 AM	

+="CN67130"	"Provision of security system upgrade services"	="Department of Parliamentary Services"	27-Mar-08	="Safety or security systems installation"	14-Mar-08	31-Mar-08	16637.50	=""	="Honeywell Limited"	27-Mar-08 07:49 AM	

+="CN67131"	"Supply of Servers and peripherals -"	="Department of Parliamentary Services"	27-Mar-08	="Computer servers"	18-Mar-08	05-May-08	223872.00	=""	="Frontline Systems Australia Pty Ltd"	27-Mar-08 07:49 AM	

+="CN67132"	"Supply and maintenace of printers Contract (DPS07004)"	="Department of Parliamentary Services"	27-Mar-08	="Computer printers"	18-Mar-08	05-May-08	12756.98	=""	="Hewlett Packard Australia Pty Ltd"	27-Mar-08 07:49 AM	

+="CN67133"	"Supply of racks and peripherals"	="Department of Parliamentary Services"	27-Mar-08	="Rack systems for rack mount electronic equipment"	20-Mar-08	05-May-08	23597.79	=""	="Frontline Systems Australia Pty Ltd"	27-Mar-08 07:49 AM	

+="CN67134"	"LEASE Feb-08 Fleet management and leasing services."	="Department of Parliamentary Services"	27-Mar-08	="Vehicle leasing"	21-Jan-08	29-Feb-08	16392.63	=""	="LeasePlan"	27-Mar-08 07:49 AM	

+="CN67135"	"Motor vehicles lease March 2008"	="Department of Parliamentary Services"	27-Mar-08	="Motor vehicles"	01-Mar-08	30-Jun-08	14938.59	=""	="LeasePlan"	27-Mar-08 07:49 AM	

+="CN67136"	"Provision of  telephone calls"	="Department of Parliamentary Services"	27-Mar-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	30-Jun-08	186656.80	=""	="Telstra Corporation Ltd"	27-Mar-08 07:50 AM	

+="CN67137"	"Provision of Project Management Services (DPS08029)"	="Department of Parliamentary Services"	27-Mar-08	="Project management"	22-Feb-08	30-Jun-08	77000.00	=""	="Clement Consulting Services P/L"	27-Mar-08 07:50 AM	

+="CN67138"	"Provision of Internet access services"	="Department of Parliamentary Services"	27-Mar-08	="Internet services"	28-Feb-08	27-Feb-11	63360.00	="DPS06088"	="Optus Billing Services Pty Ltd"	27-Mar-08 07:50 AM	

+="CN67139"	"Provision of investigation services (DPS08036)"	="Department of Parliamentary Services"	27-Mar-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	15-May-08	16500.00	=""	="Kamira Stacey Consulting P/L"	27-Mar-08 07:50 AM	

+="CN67140"	"Manufacture and repair of Australian flags"	="Department of Parliamentary Services"	27-Mar-08	="Flags or accessories"	18-Mar-08	13-Mar-11	73480.00	="DPS07053"	="Carroll & Richardson Flags"	27-Mar-08 07:50 AM	

+="CN67141"	"Influenza vaccination program 2008"	="Department of Parliamentary Services"	27-Mar-08	="Vaccination services"	19-Mar-08	24-Mar-08	17600.00	="DPS08020"	="Health Services Australia"	27-Mar-08 07:50 AM	

+="CN67142"	"Building works package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	27-Mar-08	="Building and Construction and Maintenance Services"	11-Mar-08	05-May-08	17583.61	=""	="Manteena Pty Ltd"	27-Mar-08 07:50 AM	

+="CN67143"	"Building works package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	27-Mar-08	="Building and Construction and Maintenance Services"	11-Mar-08	05-May-08	17423.72	=""	="Manteena Pty Ltd"	27-Mar-08 07:51 AM	

+="CN67144"	"Services of Electro Group Trainees"	="Department of Parliamentary Services"	27-Mar-08	="Contractors all risks insurance"	07-Mar-08	31-Mar-08	22000.00	=""	="The Electrotechnology Industry"	27-Mar-08 07:51 AM	

+="CN67145"	"Supply of Gas product to Parliament House"	="Department of Parliamentary Services"	27-Mar-08	="Industrial use gases"	17-Mar-08	05-May-08	12100.00	=""	="BOC Limited"	27-Mar-08 07:51 AM	

+="CN67146"	"Provision of security system software maintenance services"	="Department of Parliamentary Services"	27-Mar-08	="Environmental security control services"	12-Mar-08	31-Mar-08	20900.00	=""	="Honeywell Limited"	27-Mar-08 07:51 AM	

+="CN67147"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	27-Mar-08	="Printing"	26-Feb-08	30-Jun-08	112200.00	=""	="Canprint Communications Pty Ltd"	27-Mar-08 07:51 AM	

+="CN67148"	"Provision Of building works package 2005-2007 Contract (JH00007  52)"	="Department of Parliamentary Services"	27-Mar-08	="Building construction management"	27-Feb-08	30-Jul-08	13777.50	=""	="Manteena Pty Ltd"	27-Mar-08 07:51 AM	

+="CN67149"	"Building works package 2005-2007 Contract (JH00007 (52)"	="Department of Parliamentary Services"	27-Mar-08	="Building and Construction and Maintenance Services"	19-Mar-08	05-May-08	13448.16	=""	="Manteena Pty Ltd"	27-Mar-08 07:51 AM	

+="CN63598"	"Annual Maintenanceof 30 FBI licenses for period 1/1/2008-31/12/2008"	="Australian Taxation Office"	27-Mar-08	="License management software"	01-Jan-08	31-Dec-08	42157.50	=""	="Nuix Pty Ltd"	27-Mar-08 08:39 AM	

+="CN58707-A2"	"Annual license of Encase Software"	="Australian Taxation Office"	27-Mar-08	="Software maintenance and support"	01-Jan-07	18-Dec-11	294919.18	=""	="Dimension Data Australia Pty Ltd"	27-Mar-08 08:44 AM	

+="CN67153"	"data multiplex/de-multiplex systems supply and maintenance"	="Australian Federal Police"	27-Mar-08	="Components for information technology or broadcasting or telecommunications"	12-Nov-07	01-Apr-08	92766.70	="48/2006"	="Vertical Telecoms"	27-Mar-08 09:21 AM	

+="CN67155"	"supply and maintenance of data multiplex/de-multiplex systems"	="Australian Federal Police"	27-Mar-08	="Components for information technology or broadcasting or telecommunications"	30-Jul-07	30-Oct-08	40233.91	="49/2006"	="Vertical Telecoms"	27-Mar-08 09:42 AM	

+="CN67156-A1"	"Valuation Services related to a Tax Client"	="Australian Taxation Office"	27-Mar-08	="Management advisory services"	25-Mar-08	30-Jun-08	205093.00	=""	="Capital Value Pty Ltd"	27-Mar-08 09:52 AM	

+="CN67157"	"Supply, Delivery and maintenance of 2 radio frequency data link transceivers"	="Australian Federal Police"	27-Mar-08	="Components for information technology or broadcasting or telecommunications"	02-Apr-07	01-Apr-08	14864.00	="48/2006"	="Vertical Telecoms"	27-Mar-08 09:54 AM	

+="CN67158"	"Facilitation - Leadership Conference 2008"	="Australian Taxation Office"	27-Mar-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	13-Mar-08	11000.00	=""	="Engaging People Pty Ltd"	27-Mar-08 10:11 AM	

+="CN67163"	" Conduct a high level review of the Strategic Costing Framework "	="Australian Taxation Office"	27-Mar-08	="Accounting and auditing"	06-Mar-08	31-Mar-08	21600.00	="123.02"	="FreebodyCogent Pty Ltd"	27-Mar-08 11:23 AM	

+="CN67166"	"Provide online & paper based staff survey"	="Australian Federal Police"	27-Mar-08	="Market research paper surveys"	04-Feb-08	30-May-08	12650.00	=""	="Measured Insights Pty Ltd"	27-Mar-08 11:39 AM	

+="CN67167"	"Mentoring services to the IDG"	="Australian Federal Police"	27-Mar-08	="Human resource development"	01-Jan-08	30-Jun-08	21000.00	=""	="M & L Management Pty Ltd"	27-Mar-08 11:58 AM	

+="CN67169"	"RoeView Member Subscription Renewal"	="Australian Taxation Office"	27-Mar-08	="Computer services"	01-Apr-08	31-Mar-09	29700.00	=""	="Forrester Research P'L"	27-Mar-08 12:14 PM	

+="CN67170"	"6 Interconnects for the installation of 10 blade servers into existing chassis"	="Australian Federal Police"	27-Mar-08	="High end computer servers"	01-Jan-08	31-Dec-08	14331.63	="06/3330"	="Absolute Cabling Systems Pty Ltd"	27-Mar-08 12:19 PM	

+="CN67172"	"Production & Installation of precast concrete fence rails at Lae War Cememtery. Extension to original contract"	="Department of Veterans' Affairs"	27-Mar-08	="General building construction"	06-Dec-07	05-May-08	20482.00	=""	="Morobe Concrete Products"	27-Mar-08 01:40 PM	

+="CN67173"	"Provision of sessional counselling & intake duties"	="Department of Veterans' Affairs"	27-Mar-08	="Medical practice"	03-Mar-08	03-Mar-09	75075.00	=""	="Keryn Stirling"	27-Mar-08 01:40 PM	

+="CN67174"	"Provision of clinical supervision for VVCS counsellors"	="Department of Veterans' Affairs"	27-Mar-08	="Medical practice"	01-Mar-08	01-Mar-09	16000.00	=""	="Alison Marsh"	27-Mar-08 01:40 PM	

+="CN67175"	"Jointer Woodworking Floor Mounted Hand Feed"	="Defence Materiel Organisation"	27-Mar-08	="Machinery for working wood and stone and ceramic and the like"	14-Mar-08	12-Sep-08	13392.50	=""	="Gabbett Machinery"	27-Mar-08 02:21 PM	

+="CN67178"	"Agriculture Research Services"	="Australian Centre for International Agricultural Research"	27-Mar-08	="Agricultural research services"	14-Feb-08	13-Oct-11	484160.00	=""	="Mr John Oakshott"	27-Mar-08 02:51 PM	

+="CN67184"	" Scoping Study "	="Australian Centre for International Agricultural Research"	27-Mar-08	="Feasibility studies or screening of project ideas"	25-Jan-08	31-May-08	40000.00	=""	="S.E. ASIAN FISHERIES DEVELOP CENTRE"	27-Mar-08 03:09 PM	

+="CN67185"	"Printing services"	="Australian Centre for International Agricultural Research"	27-Mar-08	="Printed publications"	16-Mar-08	30-Jun-08	31789.00	=""	="Goanna Print"	27-Mar-08 03:19 PM	

+="CN67187"	" Scoping study "	="Australian Centre for International Agricultural Research"	27-Mar-08	="Feasibility studies or screening of project ideas"	01-Mar-08	31-Dec-08	50211.00	=""	="Mr Richard Bevan"	27-Mar-08 03:38 PM	

+="CN67189"	" Airfares "	="Australian Centre for International Agricultural Research"	27-Mar-08	="Travel agencies"	29-Feb-08	24-Mar-08	60879.31	=""	="American Express Travel"	27-Mar-08 03:58 PM	

+="CN67190"	" Rent "	="Australian Centre for International Agricultural Research"	27-Mar-08	="Lease and rental of property or building"	22-Feb-08	25-Feb-08	46762.13	=""	="GDA Diversified Property Trust"	27-Mar-08 04:08 PM	

+="CN67193"	"Airfares"	="Australian Centre for International Agricultural Research"	27-Mar-08	="Travel agents"	28-Jan-08	25-Feb-08	22491.57	=""	="American Express Travel"	27-Mar-08 04:13 PM	

+="CN67192"	"TAPE, HI8 METAL PARTICLE"	="Defence Materiel Organisation"	27-Mar-08	="Aircraft equipment"	19-Mar-08	05-May-08	42262.00	=""	="GMC AUSTRALIA"	27-Mar-08 04:16 PM	

+="CN67194"	"Rent"	="Australian Centre for International Agricultural Research"	27-Mar-08	="Lease and rental of property or building"	12-Mar-08	17-Mar-08	46782.13	=""	="GDA Diversified Property Trust"	27-Mar-08 04:18 PM	

+="CN67195"	"Use of force database development"	="Australian Federal Police"	27-Mar-08	="Computer services"	24-Aug-07	24-Jan-08	22000.00	="Jan - 05"	="Oakton AA Services Pty Ltd (trading as Acumen Alliance)"	27-Mar-08 04:21 PM	

+="CN67196"	" Water tanks "	="Australian Centre for International Agricultural Research"	27-Mar-08	="Water storage tanks"	29-Oct-07	10-Mar-08	14607.45	=""	="GDA Diversified Property Trust"	27-Mar-08 04:26 PM	

+="CN67201"	" AIRCRAFT SPARES  NSN 1680-66-138-2548 , PAD ASSY , QTY 15 "	="Defence Materiel Organisation"	27-Mar-08	="Military transport helicopters"	27-Mar-08	01-Aug-08	14025.00	=""	="ASIA PACIFIC AEROSPACE"	27-Mar-08 05:09 PM	

+="CN67202-A1"	"Temporary IT Staffing"	="Australian Electoral Commission"	27-Mar-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	69141.60	="AEC06/019"	="Tarakan Consulting Pty Ltd"	27-Mar-08 05:14 PM	

+="CN67203"	"Purchase of VMWare licences for Federal Court Enlodgement sstem"	="Family Court of Australia"	28-Mar-08	="Computer Equipment and Accessories"	24-Dec-07	23-Jan-08	13417.80	=""	="IBM"	28-Mar-08 07:43 AM	

+="CN67204-A1"	" VEHICLE REPAIRS "	="Department of Defence"	28-Mar-08	="Motor vehicles"	14-Mar-08	14-Apr-08	16612.55	=""	="MACK AUSTRALIA"	28-Mar-08 09:27 AM	

+="CN67205"	"Earcushion,Platform Assembly"	="Defence Materiel Organisation"	28-Mar-08	="Phone headset ear or speaker cushions"	20-Mar-08	19-Jun-08	170857.50	=""	="Eylex Pty Ltd"	28-Mar-08 09:40 AM	

+="CN67207"	"PAD, SCOURING"	="Defence Materiel Organisation"	28-Mar-08	="Scouring pads"	27-Mar-08	30-Mar-08	13068.00	=""	="RICHARDSON WAYNE SALES"	28-Mar-08 09:47 AM	

+="CN67209"	"Property Lease - Division of Hume"	="Australian Electoral Commission"	28-Mar-08	="Lease and rental of property or building"	01-Jun-08	31-May-11	170500.00	=""	="PM & JA O'Rourke"	28-Mar-08 09:47 AM	

+="CN67211"	"Property Lease - Division of Stirling"	="Australian Electoral Commission"	28-Mar-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	255200.00	=""	="AMP Capital Shopping Centre"	28-Mar-08 09:53 AM	

+="CN67212"	"Property Lease - Lease of ACT Store"	="Australian Electoral Commission"	28-Mar-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-09	99500.00	=""	="Lance Jay Holdings Pty Ltd"	28-Mar-08 10:15 AM	

+="CN67213"	"Property Lease - Division of Cowper"	="Australian Electoral Commission"	28-Mar-08	="Lease and rental of property or building"	01-May-08	30-Apr-09	29700.00	=""	="Ranaton Pty Ltd"	28-Mar-08 10:25 AM	

+="CN67214"	"Repair of F/A-18 Generator Converter Unit S/No 0622 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	28-Mar-08	="Aerospace systems and components and equipment"	28-Mar-08	30-Apr-08	47948.84	=""	="Goodrich Control Systems"	28-Mar-08 10:29 AM	

+="CN67215"	"REPAIR AND OH OF BLACK HAWK WING ASSY LH"	="Defence Materiel Organisation"	28-Mar-08	="Military rotary wing aircraft"	28-Mar-08	30-Jun-08	38500.00	=""	="SAAL"	28-Mar-08 10:31 AM	

+="CN67216-A1"	" VEHICLE REPAIRS "	="Department of Defence"	28-Mar-08	="Motor vehicles"	28-Mar-08	28-Apr-08	26605.21	=""	="MICKS AUTOS"	28-Mar-08 10:34 AM	

+="CN67217"	"REPAIR AND OH OF BLACK HAWK WING ASSY RH"	="Defence Materiel Organisation"	28-Mar-08	="Military rotary wing aircraft"	28-Mar-08	30-Jun-08	38500.00	=""	="SAAL"	28-Mar-08 10:34 AM	

+="CN67219"	"Property Lease - Division of Watson"	="Australian Electoral Commission"	28-Mar-08	="Lease and rental of property or building"	01-May-08	30-Apr-11	121000.00	=""	="Stonybridge Holdings Pty Ltd"	28-Mar-08 10:40 AM	

+="CN67221"	"CLEANING COMPOUND, SOLVENT"	="Defence Materiel Organisation"	28-Mar-08	="Compounds and mixtures"	27-Mar-08	19-Jun-08	55629.09	=""	="SOLVENTS AUSTRALIA P/L"	28-Mar-08 11:13 AM	

+="CN67225"	"Community representative for technical quality review."	="Australian Taxation Office"	28-Mar-08	="Business and corporate management consultation services"	03-Mar-08	14-Mar-08	10560.00	=""	="KPMG Tax"	28-Mar-08 11:39 AM	

+="CN67227"	"Annual Maintenance of Database Software"	="Australian Taxation Office"	28-Mar-08	="Software maintenance and support"	01-Jun-08	31-May-09	60761.13	=""	="Oracle Corp. Aust. P/L"	28-Mar-08 11:46 AM	

+="CN67232"	" AIRCRAFT SPARES  NSN: 4920-66-156-7341  QTY: 20 "	="Defence Materiel Organisation"	28-Mar-08	="Military transport helicopters"	28-Mar-08	26-Nov-08	82964.80	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	28-Mar-08 11:59 AM	

+="CN67241"	" PROVISION OF MARINE AND VEHICULAR BATTERIES "	="Defence Materiel Organisation"	28-Mar-08	="Batteries and generators and kinetic power transmission"	28-Mar-08	11-Apr-08	12290.85	=""	="CENTURY YUASA BATTERIES (NQ)"	28-Mar-08 12:47 PM	

+="CN67242"	"Qty 3,000 dynamic H-F500 handsets, for use with military communications."	="Defence Materiel Organisation"	28-Mar-08	="Communications Devices and Accessories"	26-Mar-08	08-Jul-08	564300.00	="RFQ-C7080"	="EYLEX PTTY LTD"	28-Mar-08 12:59 PM	

+="CN67243"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-07	29-Feb-08	17050.00	="FIN 05CRP004-35"	="OAKTON AA SERVICES PTY LTD"	28-Mar-08 01:53 PM	

+="CN67244"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	28-Mar-08	="Building and Construction and Maintenance Services"	26-Mar-08	25-Jan-09	60670.52	="Pending project manager"	="KANE CONSTRUCTIONS"	28-Mar-08 01:53 PM	

+="CN67245"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	28-Mar-08	19000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	28-Mar-08 01:53 PM	

+="CN67246"	"Business Advisory Services"	="Department of Finance and Deregulation"	28-Mar-08	="Building and Construction and Maintenance Services"	21-Feb-08	30-May-08	76065.00	="N/A"	="HIROTEC MAINTENANCE"	28-Mar-08 01:53 PM	

+="CN67247"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Information Technology Broadcasting and Telecommunications"	03-Mar-08	24-Mar-08	33256.30	="06/06590"	="ZALLCOM PTY LTD"	28-Mar-08 01:53 PM	

+="CN67248"	"Recruitment Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	28-Feb-09	12164.65	="rft"	="HAYS PERSONNEL SERVICES"	28-Mar-08 01:54 PM	

+="CN67249"	"Recruitment Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	27-Feb-09	12164.65	="rft"	="HAYS PERSONNEL SERVICES"	28-Mar-08 01:54 PM	

+="CN67250"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Travel and Food and Lodging and Entertainment Services"	29-Jan-08	20-Feb-08	12446.57	="NA"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	28-Mar-08 01:54 PM	

+="CN67251"	"IT System Development Services"	="Department of Finance and Deregulation"	28-Mar-08	="Information Technology Broadcasting and Telecommunications"	06-Mar-08	03-Apr-08	14675.10	="po#4647"	="DATA#3"	28-Mar-08 01:54 PM	

+="CN67252"	"Communication Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	150000.00	=""	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	28-Mar-08 01:54 PM	

+="CN67253"	"Communication Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	50000.00	=""	="JIM HENDRICKSON AND ASSOCIATES"	28-Mar-08 01:54 PM	

+="CN67254"	"Communication Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	50000.00	=""	="DARONMONT TECHNOLOGIES PTY LTD"	28-Mar-08 01:54 PM	

+="CN67255"	"Recruitment Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	30492.00	="rft"	="HUDSON"	28-Mar-08 01:55 PM	

+="CN67256"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	28-Mar-08 01:55 PM	

+="CN67257"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	28-Mar-08 01:55 PM	

+="CN67258"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	28-Mar-08 01:55 PM	

+="CN67259"	"Contractor Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	28-Mar-08 01:55 PM	

+="CN67260"	"Graphic Design and Production Services"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	30-Jun-08	31000.00	="FIN/CAPSHR"	="EFFECTIVE PEOPLE PTY LIMITED"	28-Mar-08 01:55 PM	

+="CN67261"	"IT Communication Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	12-Jun-08	37300.97	="0"	="HP FINANCIAL SERVICES (AUSTRALIA) PTY LT"	28-Mar-08 01:55 PM	

+="CN67262"	"Training & Education Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Mar-08	12300.00	=""	="DEPARTMENT OF THE SENATE - 113415"	28-Mar-08 01:55 PM	

+="CN67263"	"Memberships & Subscriptions Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	31-Jan-09	43000.00	=""	="CORPORATE EXECUTIVE BOARD"	28-Mar-08 01:56 PM	

+="CN67264"	"Training & Education Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Education and Training Services"	01-Mar-05	28-Feb-08	38465.00	="n/a"	="THE NOUS GROUP"	28-Mar-08 01:56 PM	

+="CN67265"	"Divestment Expenses"	="Department of Finance and Deregulation"	28-Mar-08	="Engineering and Research and Technology Based Services"	14-Mar-08	30-Jun-08	10175.00	="RFT LSB 01/2005"	="JONES LANG LASALLE (NSW) PTY LTD"	28-Mar-08 01:56 PM	

+="CN67266"	"Legal Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	30-Jun-08	23600.00	="N/A"	="BLAKE DAWSON - ACT"	28-Mar-08 01:56 PM	

+="CN67267"	"HR Services"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	27-Jun-08	37197.00	=""	="MERCER (AUSTRALIA) PTY LTD"	28-Mar-08 01:56 PM	

+="CN67268"	"Legal Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Mar-08	35126.17	="LSB01/2005"	="DLA PHILLIPS FOX LAWYERS"	28-Mar-08 01:56 PM	

+="CN67269"	"IT System Development Services"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	30-Jun-09	880000.00	="FIN07AGI002"	="STRATSEC.NET PTY LTD"	28-Mar-08 01:56 PM	

+="CN67271"	"Consultancy Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	31-Jan-08	33000.00	="FIN 05CRP004-09"	="CPT GLOBAL LIMITED"	28-Mar-08 01:56 PM	

+="CN67272"	"Finance Services"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	31-Jul-08	11060.00	="rft"	="KPMG AUSTRALIA"	28-Mar-08 01:57 PM	

+="CN67273"	"Consultancy Costs"	="Department of Finance and Deregulation"	28-Mar-08	="Information Technology Broadcasting and Telecommunications"	13-Mar-08	30-Apr-08	10650.00	=""	="KPMG AUSTRALIA"	28-Mar-08 01:57 PM	

+="CN67274"	"HR Services"	="Department of Finance and Deregulation"	28-Mar-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	11000.00	=""	="INFOHRM PTY LTD"	28-Mar-08 01:57 PM	

+="CN67270"	"PARTS KIT, BRACKET, VEHICULAR COMPONENTS BOOM SAFETY MODIFICATION"	="Defence Materiel Organisation"	28-Mar-08	="Forklift or elevator accessories or supplies"	06-Feb-08	14-Mar-08	29462.40	=""	="MERLO GROUP AUSTRALIA"	28-Mar-08 01:57 PM	

+="CN67278-A1"	"Provision of Cleaning services at CRS Australia Mildura premises"	="CRS Australia"	28-Mar-08	="Cleaning and janitorial services"	21-Feb-06	20-Feb-09	17856.44	=""	="Good as New Carpet Cleaning"	28-Mar-08 02:55 PM	

+="CN67283-A6"	" The Video Production services of five Tax Practitioner Bulletins    "	="Australian Taxation Office"	28-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Jan-08	30-Jul-09	264137.76	=""	="Great Southern Communication (Australia) Pty"	28-Mar-08 03:59 PM	

+="CN67284"	"labour cost and repair"	="Department of Defence"	28-Mar-08	="Satellites"	26-Mar-08	05-Jul-08	11063.00	=""	="NOVAMARINE INSTRUMENTS"	28-Mar-08 04:08 PM	

+="CN67285"	" Pool vehicle - lease arrangements for 30 months "	="Department of the Prime Minister and Cabinet"	28-Mar-08	="Motor vehicles"	01-Jan-08	30-Jun-09	22300.00	=""	="Leaseplan"	28-Mar-08 04:34 PM 

--- /dev/null
+++ b/admin/partialdata/26Apr2008to30Apr2008valto.xls
@@ -1,1 +1,361 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN72476"	"Discharger, Lithium Battery"	="Defence Materiel Organisation"	28-Apr-08	="Lithium batteries"	24-Apr-08	20-Jun-08	13640.00	=""	="International Technologies Pty Ltd"	28-Apr-08 07:06 AM	

+="CN72477"	"wrist watches"	="Department of Defence"	28-Apr-08	="Wrist watches"	24-Apr-08	01-May-08	11339.90	=""	="shriro australia pty ltd"	28-Apr-08 07:55 AM	

+="CN72478"	"timber"	="Department of Defence"	28-Apr-08	="Soft timber"	23-Apr-08	14-May-08	24948.00	=""	="harper timber pty ltd"	28-Apr-08 07:58 AM	

+="CN72479"	"REPAIR AND OH OF BLACK HAWK REGULATOR VALVE."	="Defence Materiel Organisation"	28-Apr-08	="Military rotary wing aircraft"	28-Apr-08	30-Jun-08	12752.78	=""	="SAAL"	28-Apr-08 08:20 AM	

+="CN72480"	"Circuit Card Assembly"	="Defence Materiel Organisation"	28-Apr-08	="Printed circuits and integrated circuits and microassemblies"	24-Apr-08	03-Jul-08	18436.00	=""	="Labtam Australia Pty Ltd"	28-Apr-08 08:46 AM	

+="CN72481-A1"	"08/2622 - IT Contractor - 0717-0861 - ICT Panel - 05/0717 - (CPE004760-1)"	="Australian Customs and Border Protection Service"	28-Apr-08	="Temporary personnel services"	09-Apr-08	08-Apr-09	250000.00	="05/0717"	="APIS Consulting Group Pty Ltd"	28-Apr-08 08:56 AM	

+="CN72482-A1"	"08/2649 - Consultancy Services - 1599-1938 - C & B Services Panel - 06/1599"	="Australian Customs and Border Protection Service"	28-Apr-08	="Business and corporate management consultation services"	23-Mar-08	03-May-08	65000.00	="06/1599"	="Booz Allen Hamilton"	28-Apr-08 09:02 AM	

+="CN72483"	"Setset & Halyard Antenna"	="Defence Materiel Organisation"	28-Apr-08	="Set screws"	24-Apr-08	17-Jul-08	17160.00	=""	="Benfield Marketing Limited"	28-Apr-08 09:04 AM	

+="CN72484-A1"	"08/2740 - Procurement and Evaluation Support Services - 1599-1960 - C&B Services Panel 06/1599 (CPE004751)"	="Australian Customs and Border Protection Service"	28-Apr-08	="Business and corporate management consultation services"	14-Apr-08	16-May-08	22880.00	="06/1599"	="Richardson O'Rourke Consulting Pty Ltd"	28-Apr-08 09:07 AM	

+="CN72485-A1"	"08/2619 - Strategy Review - 1599-1959 - C&B Services Panel 06/1599 - (CPE004763)"	="Australian Customs and Border Protection Service"	28-Apr-08	="Business and corporate management consultation services"	14-Apr-08	28-Jun-08	115072.00	="06/1599"	="Apis Group Pty Ltd"	28-Apr-08 09:13 AM	

+="CN72486-A5"	"08/2554 - Training Consultant - 1599-1947 - C&B Services Panel - 06/1599 (CPE004657, CPE006373) (2008/008250-05/138)"	="Australian Customs and Border Protection Service"	28-Apr-08	="Business and corporate management consultation services"	17-Mar-08	30-Apr-09	80000.00	="06/1599"	="Centre for Customs and Excise Studies - University of Canberra"	28-Apr-08 09:18 AM	

+="CN72487"	"Supply of 10 Portable Tranceivers and a Tranceiver control station"	="Australian Federal Police"	28-Apr-08	="Transceivers and media converters"	24-Apr-08	01-Jul-08	213424.20	=""	="Motorola Australia Pty Limited"	28-Apr-08 09:36 AM	

+="CN72489"	"Portable Spectrum Analyzer"	="Defence Materiel Organisation"	28-Apr-08	="Laboratory and Measuring and Observing and Testing Equipment"	28-Apr-08	16-Jun-08	27112.05	=""	="ANRITSU"	28-Apr-08 09:38 AM	

+="CN72492-A1"	"07/2338 - Application Maintenance and Support - 1071-2117 - Application Maintenance and Support Panel 05/1071"	="Australian Customs and Border Protection Service"	28-Apr-08	="Software maintenance and support"	01-Feb-08	30-Jun-09	23000000.00	="05/1071"	="KAZ Group Pty Ltd"	28-Apr-08 09:52 AM	

+="CN72493"	"Head contract - Fitout project Sydney Office"	="Office of the Director of Public Prosecutions"	28-Apr-08	="Building construction and support and maintenance and repair services"	28-Apr-08	08-Aug-09	995061.37	=""	="Intrec Management"	28-Apr-08 09:55 AM	

+="CN72494-A1"	"08/2694 - Review Consultancy - 1599-1944 - C&B Services Panel 06/1599"	="Australian Customs and Border Protection Service"	28-Apr-08	="Business and corporate management consultation services"	30-Apr-08	30-Jun-08	94000.00	="06/1599"	="Oakton AA Services Pty Ltd"	28-Apr-08 09:55 AM	

+="CN72495-A1"	"08/2709 - Business Analyst - 0717-0862 - ICT Panel 05/0717"	="Australian Customs and Border Protection Service"	28-Apr-08	="Temporary personnel services"	28-Apr-08	29-Sep-08	140000.00	="05/0717"	="Aurec Pty Ltd"	28-Apr-08 09:58 AM	

+="CN72496"	"Qty 75 Tyre Pneumatic for delivery to Bandiana"	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	23-Apr-08	03-Jul-08	78408.00	=""	="Michelin Australia"	28-Apr-08 10:02 AM	

+="CN72500"	"Security at Port Moresby (Bomana) War Cemetery, Papua New Guinea"	="Department of Veterans' Affairs"	28-Apr-08	="Security and personal safety"	20-Mar-08	19-Mar-09	99435.00	=""	="Prosec Security & Communications"	28-Apr-08 10:17 AM	

+="CN72501-A1"	"Provision of event provider services for Anzac Day Event in France"	="Department of Veterans' Affairs"	28-Apr-08	="Business administration services"	11-Apr-08	30-Apr-08	232333.00	=""	="SagaCom"	28-Apr-08 10:17 AM	

+="CN72502"	"RFT 013-2008 IT Contractor"	="Australian Taxation Office"	28-Apr-08	="Engineering and Research and Technology Based Services"	24-Apr-08	30-Apr-09	217360.00	=""	="COMPAS PTY LTD"	28-Apr-08 10:19 AM	

+="CN72503-A4"	" Provision of IT Contractor Services.  "	="Australian Taxation Office"	28-Apr-08	="Computer programmers"	23-Apr-08	23-Dec-10	844112.50	="RFT 099-2007"	="Paxus Australia Pty Ltd"	28-Apr-08 10:19 AM	

+="CN72504"	"Rent Payments 18/06/08-17/06/09"	="Australian Taxation Office"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	23-Apr-08	17-Jun-09	28800.00	=""	="MARK HIGGINS"	28-Apr-08 10:19 AM	

+="CN72505"	"3 X 1.5 DEVON TABLE OUTDOOR SETTINGS & CHAIRS 3 X UMBRELLA SHADES & BASES"	="Australian Taxation Office"	28-Apr-08	="Furniture and Furnishings"	22-Apr-08	22-Apr-08	10984.00	=""	="THE OUTDOOR FURNITURE"	28-Apr-08 10:19 AM	

+="CN72507"	"RFT 013-2008 IT Contractor"	="Australian Taxation Office"	28-Apr-08	="Engineering and Research and Technology Based Services"	21-Apr-08	29-Apr-09	205920.00	=""	="ICON RECRUITMENT"	28-Apr-08 10:19 AM	

+="CN72508"	"ASFA WORKSHOP"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	11-Apr-08	21-Apr-08	21600.00	=""	="ASFA  Events Department"	28-Apr-08 10:20 AM	

+="CN72509"	"WORKSHOP"	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	21-Apr-08	24000.00	=""	="ASFA  Events Department"	28-Apr-08 10:20 AM	

+="CN72510"	"TRAINING PROGRAM"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	17-Apr-08	22-Apr-08	27500.00	=""	="AUSTRALIAN POLYGRAPH SERVICES"	28-Apr-08 10:20 AM	

+="CN72512"	"RECRUITMENT"	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	21-Apr-08	12799.84	=""	="Hudson Global Resources (Aust) P/L"	28-Apr-08 10:21 AM	

+="CN72513"	"RECRUITMENT"	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	21-Apr-08	14246.31	=""	="Hudson Global Resources (Aust) P/L"	28-Apr-08 10:21 AM	

+="CN72514"	"ONLINE SERVICES"	="Australian Taxation Office"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	10-Apr-08	21-Apr-08	27396.45	=""	="RP DATA LTD"	28-Apr-08 10:21 AM	

+="CN72515"	"CF84AAU DB2 6 attendees"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	17-Apr-08	30-May-08	26400.00	=""	="IBM AUSTRALIA LIMITED"	28-Apr-08 10:23 AM	

+="CN72516"	"Fram management to leadership 3 Attendees"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	07-Apr-08	13-Jun-08	12450.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	28-Apr-08 10:24 AM	

+="CN72517"	"RFT 078-2007 IT Contractor Option"	="Australian Taxation Office"	28-Apr-08	="Engineering and Research and Technology Based Services"	22-Apr-08	12-May-09	93412.00	=""	="CORDELTA PTY LTD"	28-Apr-08 10:24 AM	

+="CN72518"	"Computer training"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	28-Sep-07	28-Sep-07	14050.00	=""	="LUCID IT PTY LTD"	28-Apr-08 10:24 AM	

+="CN72519"	"ITIL Fundamentals fixing PO"	="Australian Taxation Office"	28-Apr-08	="Education and Training Services"	08-Jun-07	06-Aug-07	11932.80	=""	="ITILICS PTY LTD"	28-Apr-08 10:24 AM	

+="CN72531-A1"	"Sniper Rifle spares"	="Defence Materiel Organisation"	28-Apr-08	="Light weapons and ammunition"	14-Jan-08	20-Jun-08	168934.55	=""	="XTEK Pty Ltd"	28-Apr-08 11:40 AM	

+="CN72246-A2"	"Develop a pricing model for the Managed Network Services (MNS) Request For Tender (RFT) & participate in the contract negotiation phase."	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-09	505720.00	=""	="Evans And Peck"	28-Apr-08 11:45 AM	

+="CN72533"	" PURCHASE OF QTY 6 DRAG BRACE LANDING GEAR ASSY'S  PN: 70250-12105-043  CAGE: 78286 "	="Defence Materiel Organisation"	28-Apr-08	="Military rotary wing aircraft"	28-Apr-08	30-Jun-08	160310.50	=""	="SAAL"	28-Apr-08 11:48 AM	

+="CN72534"	"Printing of NAT 15397 - 'Fuel tax credits - get money back for your business'. Qty: 750,000."	="Australian Taxation Office"	28-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Apr-08	31-May-08	19781.00	=""	="Canprint Communications"	28-Apr-08 11:50 AM	

+="CN72535"	" Qty 15 Tyre Pneumatic for delivery to JLU-SQ Brisbane. "	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	15681.60	=""	="Michelin Australia"	28-Apr-08 12:01 PM	

+="CN72536"	" REPAIR UNIMOG ARN-39271 WALLY W/O-36248/1 "	="Department of Defence"	28-Apr-08	="Motor vehicles"	28-Apr-08	30-Jun-08	18609.12	=""	="MC IMPORTS"	28-Apr-08 12:43 PM	

+="CN72537"	" Evaluation of Training Services "	="Department of Immigration and Citizenship"	28-Apr-08	="Economic or financial evaluation of projects"	01-Apr-08	30-Jun-08	48906.00	=""	="Evolve Studios Pty Ltd"	28-Apr-08 01:00 PM	

+="CN72538-A4"	"Provision of Cleaning Services"	="Department of Immigration and Citizenship"	28-Apr-08	="Industrial Cleaning Services"	08-Jan-07	07-Jan-10	863477.00	=""	="Mastercare Property Services (NSW) Pty Ltd"	28-Apr-08 01:08 PM	

+="CN72539"	"Provision of Cleaning Services"	="Department of Immigration and Citizenship"	28-Apr-08	="Industrial Cleaning Services"	04-Dec-06	03-Dec-09	25997.00	=""	="Sharman Property Services Pty Ltd"	28-Apr-08 01:12 PM	

+="CN72540"	"Qty 30 Tyre Pneumatic for delivery to Joint Unit - South Queensland (Brisbane)."	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	11220.00	=""	="Michelin Australia"	28-Apr-08 01:21 PM	

+="CN72542"	"Qty 125 of Tyre Pnuematic for delivery to Joint Unit - South Queensland(Brisbane)"	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	52140.00	=""	="Michelin Australia"	28-Apr-08 01:38 PM	

+="CN72543"	"Sniper Rifle Spares"	="Defence Materiel Organisation"	28-Apr-08	="Light weapons and ammunition"	14-Jan-08	20-Jun-08	450769.71	=""	="XTEK Pty Ltd"	28-Apr-08 01:39 PM	

+="CN72544-A1"	"Furniture for Newcaslte Registry"	="Family Court of Australia"	28-Apr-08	="Furniture"	28-Apr-08	11-Aug-08	19800.00	=""	="Corporate Culture Australia Pty Ltd"	28-Apr-08 01:47 PM	

+="CN72545"	"Provision of Cleaning Services"	="Department of Immigration and Citizenship"	28-Apr-08	="Industrial Cleaning Services"	13-Nov-06	12-Nov-09	66417.00	=""	="C & KK Enterprise Pty Ltd"	28-Apr-08 01:58 PM	

+="CN72546"	" Valuation/Stocktake of fixed assets "	="Family Court of Australia"	28-Apr-08	="Financial accounting"	28-Feb-08	04-Apr-08	20929.70	=""	="RGIS Australia Pty Ltd"	28-Apr-08 02:01 PM	

+="CN72547-A1"	"Qty 130 Tyre Pneumatic for delivery to Joint Unit - Army Compnt"	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	52140.00	=""	="Michelin Australia"	28-Apr-08 02:16 PM	

+="CN72552-A3"	" Provision of legal advice through Deed of Offer arranged by the Attorney-General's Department "	="Office of Parliamentary Counsel"	28-Apr-08	="Legal services"	01-Jul-06	30-Jun-11	160000.00	="06/231"	="Australian Government Solicitor"	28-Apr-08 02:26 PM	

+="CN72556"	" Economic Modelling Study "	="Department of Foreign Affairs and Trade"	28-Apr-08	="Business administration services"	19-Feb-08	24-Apr-08	130130.00	="DFAT07-SED-003"	="INTERNATIONAL ECONOMICS UNIT TRUST"	28-Apr-08 02:31 PM	

+="CN72558"	" Accommodation for delegates of the Youth Interfaith Forum "	="Department of Foreign Affairs and Trade"	28-Apr-08	="Hotels and lodging and meeting facilities"	04-Dec-07	06-Dec-07	54854.70	=""	="SHERATON PERTH HOTEL"	28-Apr-08 02:36 PM	

+="CN72559-A1"	"Provision of Financial Advisory Services"	="Department of Immigration and Citizenship"	28-Apr-08	="Economic or financial evaluation of projects"	01-Feb-08	30-Jun-08	50000.00	=""	="Cogent Business Solutions Pty. Ltd."	28-Apr-08 02:36 PM	

+="CN72560"	"Qty 25 Tyre Pneumatic for delivery to Joint Unit - Army Compnt"	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	11220.00	=""	="Michelin Australia"	28-Apr-08 02:37 PM	

+="CN72561"	"Expert advice regarding implementation of the Expanded Settings for Specialist Training Program."	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	27-Sep-07	29-Feb-08	202000.00	=""	="FIANIAN PTY LTD"	28-Apr-08 02:38 PM	

+="CN72563"	"Australian Hospital Nursing Schools Initiative"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	03-Oct-07	31-Dec-07	65958.45	=""	="HMA BLAZE PTY LTD"	28-Apr-08 02:38 PM	

+="CN72564"	"Focus Strategies and Solutions will complete an initial health check report for DOHA"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	22-Oct-07	15-Dec-07	30000.00	=""	="FOCUS STRATEGIES & SOLUTIONS PTY LI"	28-Apr-08 02:38 PM	

+="CN72565"	"Design of a Monitoring and evaluation Framework for the Australian Better Health Initiative"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	31-Oct-07	11-Dec-07	60397.00	=""	="LA TROBE UNIVERSITY"	28-Apr-08 02:38 PM	

+="CN72567"	"Develop a draft evaluation framework to assess the efficacy of the NHCCN (the Network)"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	16-May-08	86680.00	="134/0405"	="HEALTH OUTCOMES INTERNATIONAL PTY L"	28-Apr-08 02:38 PM	

+="CN72568"	"Develop an evaluation framework for the National Health Call Centre Network"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	16-May-08	83050.00	="134/0405"	="SUCCESS WORKS PTY. LTD"	28-Apr-08 02:39 PM	

+="CN72566"	"Purchase of painting"	="Future Fund Management Agency"	28-Apr-08	="Paintings"	11-Apr-08	11-Apr-08	15000.00	=""	="Coo-ee Gallery"	28-Apr-08 02:39 PM	

+="CN72569"	"Security advice for the National Register of Security Sensitive Biological Agents (SSBA)"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	31-Jan-08	21780.00	="270/0506"	="OAKTON SERVICES PTY LTD"	28-Apr-08 02:39 PM	

+="CN72570"	"Temp Employment Services for NICNAS Scientific Research Officer"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	13-Dec-07	14576.40	=""	="CHEMSKILL"	28-Apr-08 02:39 PM	

+="CN72571"	"Repair and refit lifts to the Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Building and Construction and Maintenance Services"	30-Nov-07	31-Dec-07	238343.00	=""	="OTIS ELEVATOR COMPANY P/L"	28-Apr-08 02:39 PM	

+="CN72572"	"Contract for IT support services"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Aug-06	31-Mar-08	16578.00	=""	="ASG GROUP LIMITED"	28-Apr-08 02:39 PM	

+="CN72573"	"Supply of two Soluscope for the Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Medical Equipment and Accessories and Supplies"	30-Nov-07	31-Dec-07	78171.50	=""	="GALLAY MEDICAL & SCIENTIFIC P/L"	28-Apr-08 02:39 PM	

+="CN72574"	"Printing"	="Department of Health and Ageing"	28-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	24-Oct-07	12-Dec-07	13772.00	=""	="THE PRODUCTION CENTRE"	28-Apr-08 02:39 PM	

+="CN72575"	"Printing of pads for the NT Child Health Checks"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Nov-07	30-Dec-07	18796.12	=""	="B.H.B. PRINTING PTY LTD"	28-Apr-08 02:39 PM	

+="CN72576"	"DoHA - IT&T charges May to Jun 07"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	04-Dec-07	05-Dec-07	54367.50	=""	="DEPT OF HEALTH & AGEING - CPM CENTR"	28-Apr-08 02:39 PM	

+="CN72577"	"Portectdrive software licenses"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	30-Jun-08	91817.94	=""	="LIGHTSOURCE TECHNOLOGIES AUSTRALIA"	28-Apr-08 02:39 PM	

+="CN72578"	"NCP - printing of Risk Analysis Book"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	05-Dec-07	30-Dec-07	12633.50	=""	="NATIONAL CAPITAL PRINTING"	28-Apr-08 02:39 PM	

+="CN72579"	"Sponsorhsip of 21st Annual Australian Winter School Conference from 12-14 May 2008"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	07-Dec-07	30-Jun-08	11000.00	=""	="ALCOHOL AND DRUG FOUNDATION QUEENSL"	28-Apr-08 02:40 PM	

+="CN72580"	"HMA Blaze - Advert DIR 074/2007"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	05-Dec-07	30-Dec-07	17135.69	=""	="HMA BLAZE PTY LTD"	28-Apr-08 02:40 PM	

+="CN72581"	"National Excellence Award winner"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Dec-07	30-Jun-08	50000.00	=""	="Mr MATTHEW COOKE"	28-Apr-08 02:40 PM	

+="CN72582"	"National Excellence Award winner"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Dec-07	30-Jun-08	50000.00	=""	="Ms MARY MARTIN"	28-Apr-08 02:40 PM	

+="CN72583"	"National Excellence Award winner"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Dec-07	30-Jun-08	50000.00	=""	="Ms BERNADETTE SHIELDS"	28-Apr-08 02:40 PM	

+="CN72584"	"Clinical Handover Initiative: Bedside Nursing Handover"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	30-Jun-08	266450.00	="RFT 376/0607"	="GRIFFITH UNIVERSITY"	28-Apr-08 02:40 PM	

+="CN72585"	"Australian Rotavirus Surveillance Program for National rotavirus surveillance"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	01-Oct-08	44000.00	=""	="MURDOCH CHILDRENS RESEARCH INST"	28-Apr-08 02:40 PM	

+="CN72586"	"Supply of laparoscopic/endoscopic imaging equipment to the Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Medical Equipment and Accessories and Supplies"	30-Nov-07	31-Dec-07	199680.80	=""	="CONMED LINVATEC AUSTRALIA PTY LTD"	28-Apr-08 02:40 PM	

+="CN72587"	"Supply of electrosurgical generators to the Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Medical Equipment and Accessories and Supplies"	30-Nov-07	31-Dec-07	72820.00	=""	="CONMED LINVATEC AUSTRALIA PTY LTD"	28-Apr-08 02:41 PM	

+="CN72588"	"Accommodation for Pinlangimpi Deployment"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Sep-07	31-Dec-07	13329.80	=""	="MUNUPI WILDNERNESS LODGE"	28-Apr-08 02:41 PM	

+="CN72589"	"Provision of due diligence process in respect of Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	11-Oct-07	30-Jun-08	330000.00	="161/0506"	="KPMG"	28-Apr-08 02:41 PM	

+="CN72592"	"Review of the quality use of Diagnostic Imaging Program"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	26-Dec-07	14-Mar-08	80300.00	="134/0405"	="HEALTH OUTCOMES INTERNATIONAL PTY L"	28-Apr-08 02:42 PM	

+="CN72593"	"Develop the Australian Health Pandemic Influenza Communication Strategy"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	28-Mar-08	34329.95	="361/0506"	="ORIGIN COMMUNICATIONS PTY LTD"	28-Apr-08 02:42 PM	

+="CN72594"	"Omnibus research"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	23-Nov-07	09-Jan-08	14643.20	=""	="WOOLCOTT RESEARCH PTY LTD"	28-Apr-08 02:42 PM	

+="CN72595"	"Review of the National Hospital Cost Data Collection"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Mar-08	131024.00	="357/0506"	="KPMG"	28-Apr-08 02:42 PM	

+="CN72596"	"Accomodation for the NT Medical Child Health Check Teams"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-07	30-Jun-08	10994.00	=""	="BORROLOOLA/HOSTEL/GUESTHOUSE"	28-Apr-08 02:42 PM	

+="CN72562-A1"	" Fixtures and fittings "	="Future Fund Management Agency"	28-Apr-08	="Wall fixtures"	11-Apr-08	11-Apr-08	15000.00	=""	="Coo-ee Gallery"	28-Apr-08 02:42 PM	

+="CN72597"	"Review of distribution and handling processes of the National Bowel Cancer Screening Program"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	15000.00	=""	="PHILLIP JONES & ASSOCIATES PTY LTD"	28-Apr-08 02:42 PM	

+="CN72598"	"Project Management Services for ICT projects"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	30-Jun-08	134200.00	="288/0607"	="RAPID TECHNOLOGY GROUP PTY LTD"	28-Apr-08 02:42 PM	

+="CN72599"	"Review of future IT sourcing options"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	12-Sep-07	18-Dec-07	438900.00	="RFT192/0607"	="BOOZ ALLEN HAMILTON (AUSTRALIA) LTD"	28-Apr-08 02:43 PM	

+="CN72600"	"Publish and distribute the National Youth Participation Strategy report and factsheets"	="Department of Health and Ageing"	28-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Dec-07	31-May-08	82000.00	=""	="AUST INFANT CHILD ADOLESCENT &"	28-Apr-08 02:43 PM	

+="CN72601-A1"	"Functional analysis of departmental procurement processes"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	08-Nov-07	31-Mar-08	79200.00	=""	="ZED BUSINESS MANAGEMENT"	28-Apr-08 02:43 PM	

+="CN72602"	"Tender advertising"	="Department of Health and Ageing"	28-Apr-08	="Editorial and Design and Graphic and Fine Art Services"	10-Nov-07	31-Dec-07	16246.33	="GOVERNMENT-WIDE"	="HMA BLAZE PTY LTD"	28-Apr-08 02:43 PM	

+="CN72603"	"Cleaning of Adelaide Office"	="Department of Health and Ageing"	28-Apr-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	10454.40	=""	="ISS FACILITY SERVICES AUSTRALIA LTD"	28-Apr-08 02:43 PM	

+="CN72604"	"Reimbursement of rent paid by Centrelink"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Jun-08	75262.28	="130/0708"	="JONES LANG LASALLE (ACT) PTY LIMITE"	28-Apr-08 02:43 PM	

+="CN72606"	"Lease for levels 5 & 6 1 Bowes Pl Woden"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	15-Oct-07	31-Dec-11	1950973.03	="130/0708"	="THE TRUSTEE FOR MAGPIE INVESTMENT"	28-Apr-08 02:43 PM	

+="CN72607"	"APS Code of Conduct investigation"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jan-08	30000.00	=""	="PERFORMANCE AND GOVERNANCE"	28-Apr-08 02:43 PM	

+="CN72608"	"Review of the National Bowel Cancer Screening Program Service Arrangement with Medicare Aust."	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	05-Sep-07	30-Jun-08	11550.00	=""	="COURAGE PARTNERS PTY LTD"	28-Apr-08 02:44 PM	

+="CN72609"	"Printing/supply of Information booklets for the National Bowel Cancer  Screening Program"	="Department of Health and Ageing"	28-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-Nov-07	30-Jun-08	26370.00	=""	="UNION OFFSET CO. PTY. LIMITED"	28-Apr-08 02:44 PM	

+="CN72610"	"Purchase of a Getinge Steriliser for the Mersey Community Hospital"	="Department of Health and Ageing"	28-Apr-08	="Medical Equipment and Accessories and Supplies"	07-Dec-07	30-Jun-08	100386.00	=""	="GETINGE AUSTRALIA PTY LTD"	28-Apr-08 02:44 PM	

+="CN72611"	"Oracle software maintenance"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	30-Jun-08	15628.57	=""	="ORACLE CORPORATION AUSTRALIA PTY LI"	28-Apr-08 02:44 PM	

+="CN72612"	"Clinical Handover Initiative DHHS Tasmania"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	12-Dec-07	12-Dec-08	366300.00	="RFT 376/0607"	="DEPT OF HEALTH & HUMAN SERVICES"	28-Apr-08 02:44 PM	

+="CN72613"	"Engage ACCMIS Redevelopment Test Lead to develop a Test Strategy"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	14-Dec-07	31-Jan-08	29040.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	28-Apr-08 02:44 PM	

+="CN72614"	"Sensis white pages listing"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	12-Sep-07	14-Dec-07	79456.30	=""	="TELSTRA"	28-Apr-08 02:44 PM	

+="CN72615"	"Clinical Handover Initiative: Identification and Development Standard Clinical Handover Initiatives"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	22-Nov-07	30-Jun-08	234534.00	="RFT 376/0607"	="DEPARTMENT OF HEALTH OF WA"	28-Apr-08 02:44 PM	

+="CN72616"	"OATSIH Temp Staff"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	09-Oct-07	30-Jun-08	30000.00	=""	="WESTAFF (AUSTRALIA) PTY LTD"	28-Apr-08 02:45 PM	

+="CN72617"	"IT contractors services for analyst/programmer services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	18-Jun-07	14-Dec-07	17000.00	="RFT2880607"	="PEOPLEBANK AUSTRALIA LTD"	28-Apr-08 02:45 PM	

+="CN72618"	"Agency Placements for Aged Care"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Jul-07	30-Jun-08	20000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	28-Apr-08 02:45 PM	

+="CN72619"	"Provision of legal services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	28-Apr-08 02:45 PM	

+="CN72620"	"Provision of Legal Services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-07	21-Dec-07	86441.89	="042/0506"	="DLA PHILLIPS FOX"	28-Apr-08 02:45 PM	

+="CN72621"	"Advice for Information Management (ICT/IM)"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	31-Mar-08	51600.00	=""	="DH4 PTY LTD"	28-Apr-08 02:45 PM	

+="CN72622"	"Departmental travel"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	19-Dec-07	13580.18	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	28-Apr-08 02:45 PM	

+="CN72623"	"Departmental travel"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	09-Jan-08	09-Jan-08	16381.50	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	28-Apr-08 02:45 PM	

+="CN72624"	"Conference management for the Excellence in Aboriginal & Torres Strait Islander Conference"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	29-Feb-08	15000.00	="RFT 411/0607"	="CARILLON CONFERENCE MANAGEMENT"	28-Apr-08 02:46 PM	

+="CN72625"	"Services in relation to Project on Clinical Training requirements for Medical Students."	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	29-Jun-07	30-Jun-08	17413.00	=""	="MEDICAL DEANS AUSTRALIA AND"	28-Apr-08 02:46 PM	

+="CN72626"	"Training"	="Department of Health and Ageing"	28-Apr-08	="Education and Training Services"	01-Jul-07	21-Jan-08	26021.88	="092/0607"	="Total Learn Pty Ltd"	28-Apr-08 02:46 PM	

+="CN72627"	"Temporary staff"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Jun-08	25000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	28-Apr-08 02:46 PM	

+="CN72628"	"Provision of Electricity Central Office 23/8 Change of provider for 3 properties"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Jul-07	30-Jun-08	16140.00	=""	="ActewAGL"	28-Apr-08 02:46 PM	

+="CN72629"	"Office relocations"	="Department of Health and Ageing"	28-Apr-08	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	15010.00	="2290405"	="THOMAS BUILDING CONSTRUCTION"	28-Apr-08 02:46 PM	

+="CN72630"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Jul-07	30-Jun-08	11020.00	=""	="HONEYWELL LTD"	28-Apr-08 02:46 PM	

+="CN72631"	"Service level agreement with ATO for 30% rebate"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Mar-05	30-Jun-08	385000.00	=""	="AUST TAXATION OFF CANBERRA"	28-Apr-08 02:46 PM	

+="CN72632"	"Stage One Access Points QLD Mapping Project money trans to spec account"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Jun-07	14-Jan-08	15785.00	="RFT"	="Australian Healthcare Associates"	28-Apr-08 02:46 PM	

+="CN72633"	"Provision of Legal services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-May-07	30-Jun-08	11200.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	28-Apr-08 02:47 PM	

+="CN72634"	"Mobile Telephone Accounts"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	01-Jul-07	30-Jun-08	10500.00	=""	="TELSTRA"	28-Apr-08 02:47 PM	

+="CN72635"	"Provision for Legal Services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	18000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	28-Apr-08 02:47 PM	

+="CN72636"	"Public relations in respect of the private health insurance communications campaign"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	09-Feb-07	06-Dec-07	73161.84	=""	="MARY DICKIE ISSUES MANAGEMENT PTY L"	28-Apr-08 02:47 PM	

+="CN72637"	"SAS software licence"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	31-Dec-07	30-Jun-08	18051.00	=""	="SAS INSTITUTE AUSTRALIA PTY. LIMITE"	28-Apr-08 02:47 PM	

+="CN72638"	"Departmental travel"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	05-Dec-07	05-Dec-07	19490.98	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	28-Apr-08 02:47 PM	

+="CN72639"	"Departmental travel"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	19-Dec-07	10215.89	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	28-Apr-08 02:47 PM	

+="CN72640"	"Management Services for National Data Repository For Home & Community Care Minimum Data Set"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	17-Nov-07	28-Feb-09	1034268.40	=""	="FUJITSU AUSTRALIA LTD"	28-Apr-08 02:47 PM	

+="CN72641"	"Departmental travel"	="Department of Health and Ageing"	28-Apr-08	="Travel and Food and Lodging and Entertainment Services"	19-Dec-07	19-Dec-07	10065.65	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	28-Apr-08 02:47 PM	

+="CN72642"	"CALD Lifescripts Resources Kit x 4 Items"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	31-Oct-07	04-Dec-07	22251.20	=""	="RAINBOW PRINTING PTY LTD"	28-Apr-08 02:48 PM	

+="CN72643"	"Research on MBS & PBS stats for Indigenous people"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	04-Apr-06	30-Jun-08	20359.00	=""	="DEEBLE, JOHN STEWART"	28-Apr-08 02:48 PM	

+="CN72644"	"Software licences"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Aug-07	30-Jun-08	13033.36	=""	="COMPUWARE ASIA-PACIFIC PTY LTD"	28-Apr-08 02:48 PM	

+="CN72645"	"Health Temporary Staff"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	21-Nov-07	30-Jun-08	28500.00	=""	="HENDER CONSULTING"	28-Apr-08 02:48 PM	

+="CN72646"	"More Doctors for Outer Metropolitan Areas"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	20-Aug-07	31-Dec-07	22814.00	=""	="HMA BLAZE PTY LTD"	28-Apr-08 02:48 PM	

+="CN72648"	"Provision of Legal services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="DLA PHILLIPS FOX"	28-Apr-08 02:48 PM	

+="CN72649"	"Redevelopment of the Aged & Community Care Management Information System (ACCMIS)"	="Department of Health and Ageing"	28-Apr-08	="Information Technology Broadcasting and Telecommunications"	02-Oct-07	14-Jan-08	299000.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	28-Apr-08 02:49 PM	

+="CN72650"	"Fees Framework for Community Care"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	30-Oct-06	05-Dec-07	15070.00	="RFT"	="URBIS PTY LTD"	28-Apr-08 02:49 PM	

+="CN72651"	"Provision of Legal Services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	18-Jan-08	40000.00	="042/0506"	="DLA PHILLIPS FOX"	28-Apr-08 02:49 PM	

+="CN72652"	"Temporary FAS EA for a period of 8 weeks (pending permanent filling)"	="Department of Health and Ageing"	28-Apr-08	="Healthcare Services"	29-Oct-07	25-Jan-08	11000.00	=""	="CAREERS UNLIMITED PTY LTD"	28-Apr-08 02:49 PM	

+="CN72653"	"Provision of Legal services"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	185000.00	="042/0506"	="CLAYTON UTZ VIC"	28-Apr-08 02:49 PM	

+="CN72654"	"Tempory staff placement"	="Department of Health and Ageing"	28-Apr-08	="Management and Business Professionals and Administrative Services"	11-Sep-07	18-Jan-08	19080.01	=""	="THE GREEN & GREEN GROUP PTY LIMITED"	28-Apr-08 02:49 PM	

+="CN72655"	"Provision of print on demand services for Pharmaceutical Benefits Schedule"	="Department of Health and Ageing"	28-Apr-08	="Published Products"	15-Jun-07	30-Jan-08	35000.00	=""	="CANPRINT COMMUNICATIONS PTY LIMITED"	28-Apr-08 02:49 PM	

+="CN72647-A1"	"TEMPORARY ADMINISTRATIVE SUPPORT"	="Department of Human Services"	28-Apr-08	="Temporary clerical or administrative assistance"	23-Apr-08	30-May-08	16000.00	=""	="CAREERS UNLIMITED"	28-Apr-08 02:53 PM	

+="CN72658"	" Qty 500 Tyre Pneumatic for delivery to Bandiana. "	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	204600.00	=""	="Michelin Australia"	28-Apr-08 02:55 PM	

+="CN72659"	" Gartner Annual Subscription Licences "	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Apr-09	73700.00	=""	="Gartner Australasia Pty Ltd"	28-Apr-08 03:01 PM	

+="CN72660"	" Internal Audit services 2008 "	="Future Fund Management Agency"	28-Apr-08	="Audit services"	04-Apr-08	31-Jul-08	167750.00	=""	="PricewaterhouseCoopers"	28-Apr-08 03:03 PM	

+="CN72662"	"Qty 150 Tyre Pneumatic for delivery to Bandiana"	="Defence Materiel Organisation"	28-Apr-08	="Heavy truck tyres"	28-Apr-08	30-Jun-08	112200.00	=""	="Michelin Australia"	28-Apr-08 03:11 PM	

+="CN72663"	" Recruitment services "	="Future Fund Management Agency"	28-Apr-08	="Recruitment services"	15-Apr-08	30-Apr-08	11550.00	=""	="Link Recruitment"	28-Apr-08 03:13 PM	

+="CN72667"	"Provision of Printing and Posting Services"	="Department of Immigration and Citizenship"	28-Apr-08	="Business administration services"	21-Feb-08	20-Feb-11	32000.00	=""	="Hermes Precisa Pty. Limited"	28-Apr-08 03:31 PM	

+="CN72668"	" Recruitment fee "	="Future Fund Management Agency"	28-Apr-08	="Recruitment services"	01-Apr-08	30-Apr-08	46200.00	=""	="BarberBunton"	28-Apr-08 03:33 PM	

+="CN72670"	"Legal Services"	="Department of Human Services"	28-Apr-08	="Legal services"	28-Apr-08	30-May-08	10000.00	=""	="AUSTRALIAN GOVT SOLICITOR"	28-Apr-08 03:40 PM	

+="CN72671"	"Recruitment fee - top up to existing CN50516 (FFMA0141) by $3,300.00.  $77,000+$3300=$80300"	="Future Fund Management Agency"	28-Apr-08	="Recruitment services"	07-Apr-08	07-Apr-08	80300.00	=""	="Spencer Stuart"	28-Apr-08 03:44 PM	

+="CN72672"	"CONSULTANCY"	="Department of Human Services"	28-Apr-08	="Legal services"	01-Nov-07	30-Apr-08	20000.00	=""	="AUSTRALIAN GOVT SOLICITOR"	28-Apr-08 03:53 PM	

+="CN72676"	"Support for Continuous Improvement Framework refinement and implementation"	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	79200.00	=""	="Lucid IT Pty Ltd"	28-Apr-08 05:17 PM	

+="CN72677"	"Facilitation of Super Simplification workshops"	="Australian Taxation Office"	28-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	31-May-08	25000.00	=""	="Olivia Sainsbury Consulting Pty Ltd"	28-Apr-08 05:22 PM	

+="CN72678"	"Enhancements to i-Delegate"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Computer services"	31-Mar-08	30-Jun-08	19360.00	=""	="THETA TECHNOLOGIES PTY LTD"	29-Apr-08 07:48 AM	

+="CN72679"	"Temporary staff"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Community and social services"	11-Mar-08	10-Apr-08	17058.97	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	29-Apr-08 07:48 AM	

+="CN72680"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Community and social services"	23-Aug-07	28-May-08	81876.50	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	29-Apr-08 07:48 AM	

+="CN72681"	"Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Community and social services"	16-Jan-08	30-Jun-08	83043.46	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	29-Apr-08 07:48 AM	

+="CN72682"	"Annual subscription for open source info"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Electronic reference material"	01-Apr-08	01-Apr-09	145278.32	=""	="JANE'S INFORMATION GROUP, AUSTRALIA"	29-Apr-08 07:48 AM	

+="CN72683"	"Archival Services"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Business administration services"	01-Jan-07	31-Dec-07	12054.28	=""	="AUSTRALIAN ARCHIVES"	29-Apr-08 07:48 AM	

+="CN72684"	"Project Manager"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Management advisory services"	21-Apr-08	30-Jun-08	55000.00	="TRS06/017"	="DATA#3 LTD"	29-Apr-08 07:49 AM	

+="CN72685"	"Enlisting services of Brett Peppler"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Human resources services"	21-Apr-08	30-Jun-08	14300.00	=""	="Intelligence Futures Pty Ltd"	29-Apr-08 07:49 AM	

+="CN72686"	"Engagement of Dr Delbridge under contract with Hudson Global Resources (Aust.) Pty Ltd"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Community and social services"	28-Apr-08	31-Oct-08	68000.00	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	29-Apr-08 07:49 AM	

+="CN72687"	"FI Payroll Disbursement and Support"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Software"	17-Apr-08	30-Jun-08	47335.20	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	29-Apr-08 07:49 AM	

+="CN72688"	"R Blandon - .Net Developer - S&M"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Management advisory services"	19-Apr-08	30-Jun-08	55000.00	="TRS06/017"	="Peoplebank Australia Ltd"	29-Apr-08 07:49 AM	

+="CN72689"	"Server Engineer"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Management advisory services"	19-Apr-08	30-Jun-08	39600.00	="T2004/0699"	="Digital Digest Data Design Pty Ltd"	29-Apr-08 07:49 AM	

+="CN72690"	"Scoping of requirements for a Learning"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Management advisory services"	28-Apr-08	31-May-08	26400.00	="T2004/0699"	="SMS Management & Technology"	29-Apr-08 07:49 AM	

+="CN72691"	"Temporary Staff - Aps 4 Payment relating to G Lansdown - 11/4/08"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Community and social services"	18-Feb-08	28-Apr-08	10926.70	="TRS05/251"	="Hudson Global Resources (Aust) P/L"	29-Apr-08 07:50 AM	

+="CN72692"	"Supply and installation of freight handling conveyor equipment"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Transportation components and systems"	18-Apr-08	08-Aug-08	365395.80	=""	="BCS Conveyor Solutions Pty Ltd"	29-Apr-08 07:50 AM	

+="CN72693"	"Legal Services - Green Review"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Legal services"	29-Mar-08	29-Mar-08	24406.80	=""	="MINTER ELLISON LAWYERS"	29-Apr-08 07:50 AM	

+="CN72694"	"Expenditure of Legal Services"	="Department of Infrastructure Transport Regional Development and Local Government"	29-Apr-08	="Legal services"	28-Apr-08	30-Jun-09	15246.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	29-Apr-08 07:50 AM	

+="CN72695"	"Purchase of various NSN's of Rigging equipment"	="Defence Materiel Organisation"	29-Apr-08	="Surveillance and detection equipment"	29-Apr-08	02-Jun-08	209700.37	=""	="J Blackwoods & Son Ltd"	29-Apr-08 08:10 AM	

+="CN72702"	"Harness, Mountain Climbing - Rescue Adjustable Waist & Leg Loops, NSN 4240-66-155-1776, Qty 200"	="Defence Materiel Organisation"	29-Apr-08	="Harness goods"	29-Apr-08	09-Jun-08	20240.00	=""	="Ferno Australia Pty Ltd"	29-Apr-08 09:46 AM	

+="CN72704"	"Handle, Manual Control Prussiker (Right/Left), NSN 8465-14-527-2989/ 8465-14-527-2988, Qty 600"	="Defence Materiel Organisation"	29-Apr-08	="Tool handles"	29-Apr-08	23-Jun-08	32430.55	=""	="Bogong Equipment P/L"	29-Apr-08 10:03 AM	

+="CN72709"	"Priming Pump for Fire Fighting Truck"	="Defence Materiel Organisation"	29-Apr-08	="Fire fighting equipment"	16-Apr-08	30-Jun-08	25242.00	="FV8024"	="Sasgar Pty Ltd"	29-Apr-08 10:39 AM	

+="CN72710"	"IBM X61 T7250 Thinkpad"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Information Technology Broadcasting and Telecommunications"	18-Apr-08	20-May-08	24092.46	="ATM/08/987"	="DATAFLEX PTY LTD"	29-Apr-08 10:46 AM	

+="CN72711"	"Study of the Technical Implications of the Digital Dividend"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	13-Jun-08	146850.00	="DCON/07/1"	="Kordia Solutions Pty Ltd"	29-Apr-08 10:46 AM	

+="CN72712"	"Advertising costs for AS Broadcasting Industries GCUADV2002-03"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	30-Jun-08	16427.82	="ATM08/985"	="HMA BLAZE PTY LTD"	29-Apr-08 10:46 AM	

+="CN72713"	"Advice OPEL funding"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Public Utilities and Public Sector Related Services"	15-Apr-08	30-Jun-08	50000.01	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-Apr-08 10:46 AM	

+="CN72714"	"Intranet Re-Development - Stage one: Business Analysis and functional specification"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Public Utilities and Public Sector Related Services"	18-Mar-08	30-Aug-08	20680.00	="DCON/07/65"	="Squiz Pty Ltd"	29-Apr-08 10:46 AM	

+="CN72715"	"Security System Work"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Building and Construction and Maintenance Services"	20-Dec-07	14-Apr-08	11583.00	="ATM08/972"	="Ray Jewell - Secom Technical Servic"	29-Apr-08 10:46 AM	

+="CN72716"	"New SES Office Level 3"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Building and Construction and Maintenance Services"	06-Mar-08	14-Apr-08	31824.10	="DCON/05/255"	="GE SHAW  & ASSOCIATES (ACT) PTY LTD"	29-Apr-08 10:46 AM	

+="CN72717-A2"	"Contractor services"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	10-Oct-08	48750.29	="DCON/04/162"	="Hudson Global Resources (Aust) P/L"	29-Apr-08 10:46 AM	

+="CN72718"	"Print media advertisement  (GCUADV2002/03) Tender Request National E-Sec Alert Service"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Apr-08	11756.40	="ATM08/969"	="HMA BLAZE PTY LTD"	29-Apr-08 10:47 AM	

+="CN72719"	"APT Contribution 2008"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	31-Dec-08	45400.00	="ATM08/967"	="ASIA PACIFIC TELECOMMUNITY"	29-Apr-08 10:47 AM	

+="CN72720-A1"	"SRP002-08 Communcations Consultancy Stage One"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	11-Aug-08	26749.97	="DCON/05/105"	="ZOO Communications"	29-Apr-08 10:47 AM	

+="CN72721"	"Electrical & data Installations & Services"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Building and Construction and Maintenance Services"	27-Feb-08	17-Apr-08	17840.43	="ATM/08/965"	="Stowe Australia Pty Ltd"	29-Apr-08 10:47 AM	

+="CN72722-A1"	"Provision of Cleaning, sanitary & recycling services to the Department"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Cleaning Equipment and Supplies"	17-Mar-08	16-Mar-10	812602.00	="ATM07/253"	="COMPLETE CLEANING SERVICE"	29-Apr-08 10:47 AM	

+="CN72723"	"Placement fee for contractor"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	09-Apr-08	16-Apr-08	17050.00	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	29-Apr-08 10:47 AM	

+="CN72724"	"GCUADV2002-03 Advertising for EL2 Positions Digital Broadcasting and Content Regulation"	="Department of Broadband Communications and the Digital Economy"	29-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-08	10446.57	="ATM08/964"	="HMA BLAZE PTY LTD"	29-Apr-08 10:47 AM	

+="CN72732"	"Training Courses"	="Australian Taxation Office"	29-Apr-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	16-May-08	73150.00	=""	="IBM Australia Pty Ltd"	29-Apr-08 11:56 AM	

+="CN72734"	"vehicle parts"	="Department of Defence"	29-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	24-Apr-08	21-Jul-08	10007.21	=""	="Land Rover Australiua"	29-Apr-08 12:25 PM	

+="CN72740"	"Provision for Project Manager"	="Comsuper"	29-Apr-08	="Human resources services"	17-Apr-08	30-Jun-08	198080.00	=""	="Candle Australia Limited"	29-Apr-08 01:24 PM	

+="CN72741"	"Variation to the contract for Business Analyst"	="Comsuper"	29-Apr-08	="Human resources services"	18-Oct-07	30-Jun-08	33660.00	=""	="face2face Recruitment Pty Ltd"	29-Apr-08 01:26 PM	

+="CN72742"	"Provision for Business Analyst"	="Comsuper"	29-Apr-08	="Human resources services"	24-Apr-08	24-Oct-08	198000.00	=""	="Face2face Recruitment"	29-Apr-08 01:32 PM	

+="CN72743-A1"	"Provision for a Business Analyst"	="Comsuper"	29-Apr-08	="Human resources services"	10-Apr-08	22-Aug-08	25872.00	=""	="Icon Recruitment"	29-Apr-08 01:38 PM	

+="CN72744"	"Provision for Business Analyst"	="Comsuper"	29-Apr-08	="Human resources services"	09-May-08	07-Nov-08	102960.00	=""	="Southern cross Computing"	29-Apr-08 01:43 PM	

+="CN72747"	"Stabilator assembly L/H, 70200-27001-046, 01-297-7635, A217-00465.  Repair IAW S/O: 9702-026-105"	="Defence Materiel Organisation"	29-Apr-08	="Military rotary wing aircraft"	22-Apr-08	30-Apr-08	23336.16	=""	="Sikorsky Aircraft Austalia Limited"	29-Apr-08 02:07 PM	

+="CN72749"	" Envelope, Packing Note AE24, Department of Defence, 88mm min w, 125mm min lg, w/gum reinforced eyelets, box of 250. Qty 800 boxes. "	="Defence Materiel Organisation"	29-Apr-08	="Specialty envelopes"	18-Apr-08	27-Jun-08	29040.00	="RFQ 2680141"	="DESIGN HOMES AUSTRALIA PTY LTD"	29-Apr-08 02:40 PM	

+="CN72751"	"Vehicle lease for 218JAL"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	24-Oct-08	33397.12	=""	="Q FLEET"	29-Apr-08 03:27 PM	

+="CN72752"	"Lease of vehicle 297KKY"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	10-Aug-09	39608.88	=""	="LEASE PLAN AUSTRALIA Ltd"	29-Apr-08 03:27 PM	

+="CN72753"	"3 year rental of Commander system at"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Telecommunications media services"	01-Nov-07	01-Nov-10	13227.84	=""	="COMMANDER AUSTRALIA Ltd"	29-Apr-08 03:27 PM	

+="CN72754"	"Delivery of diploma of Government Fraud"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	21-Nov-07	23400.00	=""	="KPS & ASSOCIATES Pty Ltd"	29-Apr-08 03:27 PM	

+="CN72755"	"Community monitoring of GBR coral reefs"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	08-Nov-07	30-Jun-08	110000.00	=""	="REEF CHECK AUSTRALIA"	29-Apr-08 03:27 PM	

+="CN72756"	"Climate Change workshop 10/12/07"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	10-Dec-07	30806.00	=""	="LADY ELLIOT ISLAND ECO RESORT"	29-Apr-08 03:27 PM	

+="CN72757"	"5 year lease Cairns Accommodation"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	12-Nov-07	12-Nov-12	431250.00	=""	="TENGOLD Pty Ltd"	29-Apr-08 03:27 PM	

+="CN72758"	"Reprint Reef Managers Guide to Coral"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Adhesives and sealants"	12-Nov-07	14-Jan-08	13970.00	=""	="CRAFT INPRINT BRISBANE"	29-Apr-08 03:27 PM	

+="CN72759"	"Investment in CAP Reef community"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	12-Nov-07	31-Jan-08	11000.00	=""	="WILLIAM SAWYNOK"	29-Apr-08 03:27 PM	

+="CN72760"	"6 x Titanium Heat Exchanges"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	16-Nov-07	07-Apr-08	33352.00	=""	="TERALBA INDUSTRIES Pty Ltd"	29-Apr-08 03:28 PM	

+="CN72761-A1"	"ReefHQ 1st floor Concrete slab waterproofing"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Building and Construction and Maintenance Services"	26-Nov-07	20-Mar-08	353080.90	=""	="Q TECH WATERPROOFING Pty Ltd"	29-Apr-08 03:28 PM	

+="CN72762"	"Finance One upgrade to v11.4 from v10.2"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Accounting and auditing"	28-Nov-07	07-Apr-08	42768.00	=""	="TECHNOLOGY ONE"	29-Apr-08 03:28 PM	

+="CN72763"	"Additional modules - XL One connector"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Accounting and auditing"	03-Dec-07	07-Apr-08	27561.99	=""	="TECHNOLOGY ONE"	29-Apr-08 03:28 PM	

+="CN72764"	"GBRMPA Zoning adverts for various"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Marketing and distribution"	03-Dec-07	31-Mar-08	11694.14	=""	="HMA BLAZE Pty Ltd"	29-Apr-08 03:28 PM	

+="CN72765"	"ReefHQ Fire stair remedial works project mangmnt"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Building and Construction and Maintenance Services"	10-Dec-07	30-May-08	18920.00	=""	="MAUNSELL AUSTRALIA Pty Ltd"	29-Apr-08 03:28 PM	

+="CN72766"	"Rental of KM-C252SE MFD Photocopier/"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	08-Nov-10	11728.08	=""	="CIT GROUP AUSTRALIA"	29-Apr-08 03:28 PM	

+="CN72767"	"Produce Economic Valuation of GBR industries report 06-07"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	11-Dec-07	30-Jan-08	56075.00	=""	="ACCESS ECONOMICS Pty Ltd"	29-Apr-08 03:28 PM	

+="CN72768"	"Toyota Landcruiser GXL wagon, LC70"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	16-Jan-10	52810.08	=""	="LEASE PLAN AUSTRALIA Ltd"	29-Apr-08 03:28 PM	

+="CN72769"	"Lease of Nissan Navara D40 STX"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	20-Dec-09	40910.88	=""	="LEASE PLAN AUSTRALIA Ltd"	29-Apr-08 03:28 PM	

+="CN72770"	"Survey work for the investigation on Hicks Island"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	19-Dec-07	10-Jan-08	11176.00	=""	="TONY AYLING"	29-Apr-08 03:29 PM	

+="CN72771"	"GBRMPA zoning TV schedules for Dec 07"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	24-Dec-07	01-Apr-08	12063.70	=""	="HMA BLAZE Pty Ltd"	29-Apr-08 03:29 PM	

+="CN72772"	"Qld Boating & Fishing Patrols 07/08"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	02-Jan-08	30-Jun-08	744970.00	=""	="DEPARTMENT OF PRIMARY INDUSTRIES"	29-Apr-08 03:29 PM	

+="CN72773"	"Lease Costs Cairns Office"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Building and Construction and Maintenance Services"	10-Jan-08	01-Jan-13	47437.50	=""	="OMEGA PROPERTY GROUP"	29-Apr-08 03:29 PM	

+="CN72774"	"Reef HQ theatre audio visual upgrade"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	31-May-08	23426.70	=""	="NORTH QUEENSLAND AUDIO VISUAL"	29-Apr-08 03:29 PM	

+="CN72775"	"Hire of vessel"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	14-Jan-08	30-Jun-09	90760.90	=""	="BARRIER REEF SERVICES"	29-Apr-08 03:29 PM	

+="CN72776-A1"	"Hire of vessel"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	15-Jan-08	30-Jun-09	144282.45	=""	="LAMETT Pty Ltd"	29-Apr-08 03:29 PM	

+="CN72777"	"Monitoring marine turtle nesting"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	21-Jan-08	15-Jan-09	33000.00	=""	="ENVIRONMENTAL PROTECTION AGENCY"	29-Apr-08 03:29 PM	

+="CN72778"	"Trainee provision"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Human resources services"	31-Jan-08	31-Jan-09	23213.52	=""	="TORGAS"	29-Apr-08 03:29 PM	

+="CN72779"	"Scope of works to new Cairns office in"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Building and Construction and Maintenance Services"	31-Jan-08	06-Mar-08	60057.25	=""	="KRO PANELS"	29-Apr-08 03:30 PM	

+="CN72780"	"Toshiba e-studio 2500c colour MFP"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	31-Jan-08	06-Mar-08	29873.88	=""	="DELTA OFFICE SOLUTIONS"	29-Apr-08 03:30 PM	

+="CN72781"	"Marine monitoring services WQ & coral monitoring"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	31-Jan-08	01-Aug-08	1122283.00	=""	="AUSTRALIAN INSTITUTE OF MARINE SCIENCE"	29-Apr-08 03:30 PM	

+="CN72782"	"Smart State Fellowship"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	05-Feb-08	30-Jun-10	22000.00	=""	="JAMES COOK UNIVERSITY"	29-Apr-08 03:30 PM	

+="CN72783"	"Business analysis contract"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	05-Feb-08	10-Mar-08	27270.00	=""	="ICS MULTIMEDIA Pty Ltd"	29-Apr-08 03:30 PM	

+="CN72784-A1"	"Eye on the Reef Database modification"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	05-Feb-08	28-Feb-09	35860.00	=""	="DONOVAN MEDIA GROUP Pty Ltd"	29-Apr-08 03:30 PM	

+="CN72785"	"Hire of vessel "Kalinda"  for"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="NEIL R DALLMAN"	29-Apr-08 03:30 PM	

+="CN72786"	"Hire of vessel "Sea Baby" for compliance"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="ROD MATHIESEN"	29-Apr-08 03:30 PM	

+="CN72787"	"Hire of vessel "Shearwater II""	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="DAVID KILLEN"	29-Apr-08 03:30 PM	

+="CN72788"	"Hire of vessel "Moana III""	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="DANIEL MCCARTHY"	29-Apr-08 03:31 PM	

+="CN72789"	"Hire of vessel "turning Point""	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="TRACEY BOWEN"	29-Apr-08 03:31 PM	

+="CN72790"	"Hire of aircraft for compliance"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	20000.00	=""	="TUDES CHOPPERS Pty Ltd"	29-Apr-08 03:31 PM	

+="CN72791"	"Hire of aircraft for compliance"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	06-Feb-08	30-Jun-09	10000.00	=""	="BRAZAKKA Pty Ltd"	29-Apr-08 03:31 PM	

+="CN72792"	"Lease of Ford Ranger TDXLT crew cab"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	01-Jan-10	25493.52	=""	="LEASE PLAN AUSTRALIA Ltd"	29-Apr-08 03:31 PM	

+="CN72793"	"Print 6 editions of SeaRead newsletter"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Adhesives and sealants"	18-Feb-08	24-Apr-08	16962.00	=""	="PLATYPUS GRAPHICS"	29-Apr-08 03:31 PM	

+="CN72794"	"Dell Latitude D430 laptops"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	19-Feb-08	09-Apr-08	11321.72	=""	="DELL COMPUTER Pty Ltd"	29-Apr-08 03:31 PM	

+="CN72795"	"Oracle License & subscription renewal"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	25-Feb-08	30-Mar-09	39994.53	=""	="ORACLE CORPORATION AUSTRALIA Pty Ltd"	29-Apr-08 03:31 PM	

+="CN72796"	"Internal Audit Seminars"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Accounting and auditing"	27-Feb-08	30-Jun-08	36960.00	=""	="PACIFIC BRIDGE Pty Ltd"	29-Apr-08 03:31 PM	

+="CN72797"	"3 year Tenancy of premises"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	24-Jun-10	89100.00	=""	="COLIN'S VEHICLE SERVICES"	29-Apr-08 03:32 PM	

+="CN72798"	"2007 Dwarf Minke Whale Tourism monitoring program"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Professional engineering services"	05-Mar-08	30-Jun-08	25300.00	=""	="JAMES COOK UNIVERSITY"	29-Apr-08 03:32 PM	

+="CN72799"	"Honda TRX 420 four wheel drive ATV"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	09-Apr-08	19980.00	=""	="CAIRNS HONDA"	29-Apr-08 03:32 PM	

+="CN72800"	"Refit of compliance unit office area"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Building and Construction and Maintenance Services"	06-Mar-08	31-May-08	43439.00	=""	="KRO PANELS"	29-Apr-08 03:32 PM	

+="CN72801"	"Hire of commercial charter aircraft for"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Transportation and Storage and Mail Services"	10-Mar-08	30-Jun-09	10000.00	=""	="HELI BIZ Pty Ltd"	29-Apr-08 03:32 PM	

+="CN72802"	"new suzuki engines"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	31-May-08	32390.00	=""	="BOAT SCENE Pty Ltd"	29-Apr-08 03:32 PM	

+="CN72803"	"Refit of Bimbi Eungie"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	05-May-08	38746.89	=""	="CAIRNS SLIPWAYS"	29-Apr-08 03:32 PM	

+="CN72804"	"New artwork for GBRMPA billboards"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Adhesives and sealants"	20-Mar-08	31-Mar-08	10560.00	=""	="HMA BLAZE Pty Ltd"	29-Apr-08 03:32 PM	

+="CN72805"	"Sophos endpoint security license"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-10	14420.87	=""	="DATA#3 BUSINESS SYSTEMS Pty Ltd"	29-Apr-08 03:32 PM	

+="CN72806"	"monitoring system"	="Great Barrier Reef Marine Park Authority"	29-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	30-Jun-08	12365.93	=""	="MARCON AGENCIES Pty Ltd"	29-Apr-08 03:33 PM	

+="CN72807"	"Repair of 01-279-9126, Main Gearbox Module, A525-00019, for Black Hawk Helicopter."	="Defence Materiel Organisation"	29-Apr-08	="Military rotary wing aircraft"	29-Apr-08	31-May-08	290320.17	=""	="Sikorsky Aircraft Australia Limited"	29-Apr-08 03:57 PM	

+="CN72810"	"Printing of Tax Pack 2000. Qty: 5,000"	="Australian Taxation Office"	29-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	31-May-08	13442.00	=""	="Pirion Printing"	29-Apr-08 04:34 PM	

+="CN72811-A3"	" Provision of short term vehicle hire "	="Australian Federal Police"	30-Apr-08	="Motor vehicles"	01-Jul-07	30-Jun-12	1931701.00	="CONS06/0124"	="Kingmill Pty Ltd trading as Thrifty Car Rental"	30-Apr-08 08:59 AM	

+="CN72812"	" 9150-66-086-8598   Lubricating Oil, Gear  QTY: 38 "	="Defence Materiel Organisation"	30-Apr-08	="Lubricants and oils and greases and anti corrosives"	29-Apr-08	07-May-08	31878.35	=""	="BP"	30-Apr-08 09:08 AM	

+="CN72815"	" LABOUR COST AND REPAIR "	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:27 AM	

+="CN72816"	"LABOUR COST REPAIR"	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:30 AM	

+="CN72817"	"LABOUR AND REPAIR COST"	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:35 AM	

+="CN72708"	"Scoping report regarding possible physical and biomarkers module(s) for LSAC project"	="Australian Institute of Family Studies"	30-Apr-08	="Research programs"	01-Dec-07	15-Feb-08	23988.80	=""	="Murdoch Children's Research Institute"	30-Apr-08 10:05 AM	

+="CN72822-A1"	"Market Research Opt-Out Project"	="Australian Institute of Family Studies"	30-Apr-08	="Market research"	19-Mar-08	19-Mar-08	11000.00	=""	="Australian Government Child Support Agency"	30-Apr-08 10:11 AM	

+="CN72821-A1"	"SAP ERP 6.0 Upgrade Safeguarding 2008"	="Australian Federal Police"	30-Apr-08	="Engineering and Research and Technology Based Services"	25-Mar-08	31-Dec-08	210485.00	=""	="SAP Australia Pty Ltd"	30-Apr-08 10:16 AM	

+="CN72825"	"Video productions for Dialogue Day"	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Mar-08	02-Apr-08	13994.20	=""	="Bearcage Media Services"	30-Apr-08 10:33 AM	

+="CN72826"	"Recruitment fee"	="Future Fund Management Agency"	30-Apr-08	="Recruitment services"	14-Apr-08	31-May-08	39600.00	=""	="Mahlab Recruitment (VIC) Pty Ltd"	30-Apr-08 10:34 AM	

+="CN72827"	"Recruitment fee"	="Future Fund Management Agency"	30-Apr-08	="Recruitment services"	15-Apr-08	30-Apr-08	10780.00	=""	="Lloyd Morgan"	30-Apr-08 10:48 AM	

+="CN72828-A1"	"Construction of Royal Thai Police Finger print Forensic Laboratory"	="Australian Federal Police"	30-Apr-08	="Building and Construction Machinery and Accessories"	25-Mar-08	31-Dec-10	41657.55	=""	="Choice Interiors Co Ltd"	30-Apr-08 11:00 AM	

+="CN72831"	"F/A-18 Canopy Transportation Boxes"	="Defence Materiel Organisation"	30-Apr-08	="Transportation related equipment and instruments"	30-Apr-08	23-May-08	10560.00	=""	="Hawker de Havilland"	30-Apr-08 11:49 AM	

+="CN72832-A1"	" McAfee Antivirus Licence 4 May 2008 - 3 May 2009 "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Software maintenance and support"	01-Apr-08	03-May-09	10688.46	=""	="KAZ Group Pty Limited"	30-Apr-08 11:56 AM	

+="CN72833-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	01-Apr-08	05-Sep-08	54000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72834-A1"	"Conduct Survey of Green Office Procurement and Sustainable Office Management Audit."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	01-Apr-08	30-Jun-08	10100.00	=""	="ORIMA Research"	30-Apr-08 11:56 AM	

+="CN72835-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	02-Apr-08	30-Jun-08	64000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72836-A1"	" IT analysis for the Performance Audit on Securing Our Fishing Future. "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	08-Apr-08	30-Nov-08	56726.00	=""	="Allanson Consulting Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72837-A1"	"Provide professional support on Quality and Integrity of DVA Income Support Records Audit."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	09-Jan-08	30-Jun-08	15000.00	=""	="Mike Goldstein and Associates Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72838-A1"	" Quality Assurance Review on Performance Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	10-Apr-08	30-Jun-08	11990.00	=""	="Lindsay Roe"	30-Apr-08 11:57 AM	

+="CN72839-A1"	" 2008 PASG Graduates - Storage and Removal Costs "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	10-Dec-07	31-Jan-08	14453.11	=""	="Toll Transitions"	30-Apr-08 11:57 AM	

+="CN72840-A1"	" Recruitment - Placement Fee "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	11-Feb-08	11-Mar-08	13429.37	=""	="Firstwater Pty Ltd"	30-Apr-08 11:57 AM	

+="CN72842-A1"	"Provide advisory panel services to the Movement Alert List Performance Audit of DIAC."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	14-Apr-08	30-Jan-09	21450.00	=""	="Christopher Conybeare and Associates"	30-Apr-08 11:57 AM	

+="CN72843"	"hma Blaze Pty Limited"	="Australian National Audit Office (ANAO)"	30-Apr-08	="Print advertising"	15-Feb-08	15-Jun-08	10324.55	=""	="hma Blaze Pty Limited"	30-Apr-08 11:57 AM	

+="CN72844-A2"	" Manage and carry out the Performance Audit 'Business Continuity Management in the Australian Taxation Office' "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	15-Jan-08	31-Oct-08	368507.00	=""	="SMS Consulting Group Ltd"	30-Apr-08 11:57 AM	

+="CN72845-A1"	" E-Hive Training "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	18-Feb-08	25-Apr-08	40000.00	=""	="Ambit Recruitment Group Pty Ltd"	30-Apr-08 11:57 AM	

+="CN72846-A1"	" PASG Public Sector Entity Survey 2007-08 "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Business and corporate management consultation services"	18-Mar-08	31-Dec-08	40645.00	=""	="ORIMA Research"	30-Apr-08 11:58 AM	

+="CN72847-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	23-Mar-08	15-Aug-08	80080.00	="ANAOAM2007/592"	="Analytics Group Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72848-A1"	"Provision of audit services for the Better Practice Guide for the Initiation of Business Systems Projects"	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	24-Jan-08	30-May-08	52500.00	=""	="Pitt Group Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72849-A1"	" Conduct audit on DEEWRS Administration of Job Network Outcome Payments. "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	25-Feb-08	31-Dec-08	330000.00	=""	="KNJ Professional Services Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72850-A1"	" Review and test IT environment application and data supporting Administration of DVA Income Support System "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	26-Mar-08	09-May-08	25200.00	=""	="Axiom Associates Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72851-A1"	" Reams of photocopy paper "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Printing and writing paper"	26-Mar-08	10-Apr-08	18975.00	=""	="OfficeMax Australia Ltd"	30-Apr-08 11:58 AM	

+="CN72852-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	28-Feb-08	28-Mar-08	10000.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72853"	"Financial System Software Fee"	="Department of the Environment Water Heritage and the Arts"	30-Apr-08	="Software"	12-Jan-07	27-Oct-11	2382849.50	="0607-045"	="SAP Australia"	30-Apr-08 12:09 PM	

+="CN72854-A1"	"Fitout of Centrelink Customer Service Centre at Palm Beach QLD"	="Centrelink"	30-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-May-08	30-Dec-08	361900.00	=""	="Quadric Pty Ltd"	30-Apr-08 12:17 PM	

+="CN72859"	" Carry out R3 service including repair and modifications. "	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	18-Apr-08	30-Jun-08	300000.00	=""	="BAE Systems Aust Military Air Support"	30-Apr-08 12:34 PM	

+="CN72862-A1"	"Provision of Cleaning Services for the Greater Westernport Region of CRS Australia"	="CRS Australia"	30-Apr-08	="General building and office cleaning and maintenance services"	01-Apr-08	30-Nov-09	32092.05	=""	="Ambassador Property Services"	30-Apr-08 01:38 PM	

+="CN72869-A4"	" Review and modify existing modules for the LB&I Program "	="Australian Taxation Office"	30-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-10	395272.00	="40.05.024"	="CPA Australia"	30-Apr-08 02:26 PM	

+="CN72870"	"Information technology security advisory services"	="Future Fund Management Agency"	30-Apr-08	="Information technology consultation services"	01-Apr-08	31-Dec-08	25363.80	=""	="ASG Group Limited"	30-Apr-08 02:30 PM	

+="CN72339"	"PHARMACEUTICALS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	21-Apr-08	22-May-08	17802.40	=""	="AUSTRALIAN THERAPEUTIC SUPPLIES"	30-Apr-08 02:34 PM	

+="CN72871"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	01-Apr-08	30-May-08	42471.19	=""	="SMITH & NEPHEW AUSTRALIA P/L"	30-Apr-08 02:40 PM	

+="CN72873"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	14-Apr-08	14-May-08	55361.03	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 02:45 PM	

+="CN72876"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	22-Apr-08	24-May-08	24387.52	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 02:52 PM	

+="CN72879"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	22-Apr-08	24-May-08	42276.43	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 03:00 PM	

+="CN72882"	" Printing of: NAT2053-07.2004  Qty: 1000000 "	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	25-May-08	24050.00	=""	="The Camerons Group"	30-Apr-08 03:03 PM	

+="CN72884"	"Provision of Legal Secretarial Services"	="Family Court of Australia"	30-Apr-08	="Office administration or secretarial services"	02-Jul-07	30-Jun-09	19213.20	=""	="Raneri Enterprises Trust"	30-Apr-08 03:08 PM	

+="CN72868"	"Aviation Spares - Overhaul of Tail Rotor Gearbox"	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	26-Nov-07	31-Jul-08	14401.17	=""	="Australian Aerospace"	30-Apr-08 03:39 PM	

+="CN72898"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-Apr-08	01-Apr-09	24077.81	=""	="Zallcom Pty Ltd"	30-Apr-08 03:52 PM	

+="CN72899"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-Apr-08	01-Apr-09	24849.00	=""	="NGA.NET Pty Ltd"	30-Apr-08 03:52 PM	

+="CN72900"	"Office machines and there supplies and asscessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Office machines and their supplies and accessories"	01-Apr-08	01-Apr-13	14448.50	=""	="Canon Australia"	30-Apr-08 03:52 PM	

+="CN72901"	"Office machines and there supplies and asscessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Office machines and their supplies and accessories"	01-Apr-08	01-Apr-13	25203.20	=""	="Canon Australia"	30-Apr-08 03:52 PM	

+="CN72902"	"Business administration services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Business administration services"	01-Feb-08	29-Feb-08	16334.19	=""	="CCH Australia"	30-Apr-08 03:53 PM	

+="CN72903"	"Passenger transport"	="Australian Competition and Consumer Commission"	30-Apr-08	="Passenger transport"	01-Jan-08	31-Jan-08	42449.50	=""	="Qantas American Express Business"	30-Apr-08 03:53 PM	

+="CN72904"	"Electronic reference material"	="Australian Competition and Consumer Commission"	30-Apr-08	="Electronic reference material"	01-Mar-08	31-Mar-08	10374.60	=""	="Media Monitors Australia Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72894"	"Aviation spares - Repair of Canopy"	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	10-Sep-07	30-May-08	24461.29	=""	="Australian Aerospace"	30-Apr-08 03:53 PM	

+="CN72905"	"Marketing and distribution"	="Australian Competition and Consumer Commission"	30-Apr-08	="Marketing and distribution"	01-Mar-08	31-Mar-08	16500.00	=""	="Roy Morgan Research"	30-Apr-08 03:53 PM	

+="CN72906"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	01-Mar-08	31-Mar-08	21071.72	=""	="Telstra"	30-Apr-08 03:53 PM	

+="CN72907"	"Software"	="Australian Competition and Consumer Commission"	30-Apr-08	="Software"	01-May-08	30-Apr-09	17568.98	=""	="CoreSight Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72908"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-May-08	30-Apr-09	93576.49	=""	="Tower Software Engineering"	30-Apr-08 03:53 PM	

+="CN72909"	"Reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	04-Mar-08	30-Apr-08	23708.30	=""	="Paragon Printers Australasia Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72910"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	08-Apr-08	02-May-08	43890.00	=""	="National Field Services Millward Brown"	30-Apr-08 03:54 PM	

+="CN72911"	"Software"	="Australian Competition and Consumer Commission"	30-Apr-08	="Software"	10-Apr-08	09-Apr-09	17600.00	=""	="QAS Systems Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72912"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	10-Apr-08	30-Jun-08	50000.00	=""	="EcoAssist Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72913"	"Reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	10-Apr-08	30-Sep-08	69575.00	=""	="True Characters Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72914"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	12-Mar-08	30-Jun-08	20000.00	=""	="Portland Group Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72915"	"reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	12-May-08	25-Aug-08	20229.00	=""	="Biotext Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72916"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	13-Jan-08	13-Feb-08	12051.56	=""	="Telstra"	30-Apr-08 03:54 PM	

+="CN72917"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	14-Feb-08	13-Mar-08	17902.55	=""	="Telstra"	30-Apr-08 03:54 PM	

+="CN72918"	"Photographic services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Photographic services"	14-Sep-07	30-Jun-08	40140.00	=""	="Bearcage Productions"	30-Apr-08 03:54 PM	

+="CN72919"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	16-Sep-07	30-Jun-08	32681.55	="RFT2007-2116"	="Cogent Business Solutions Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72920"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	18-Apr-08	21-Jun-08	12764.86	=""	="ASG Group Ltd"	30-Apr-08 03:55 PM	

+="CN72921"	"Data Voice or Multimedia equipment"	="Australian Competition and Consumer Commission"	30-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Apr-08	30-Jun-08	24113.22	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72922"	"Data Voice or Multimedia equipment"	="Australian Competition and Consumer Commission"	30-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Apr-08	30-Jun-08	32168.26	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72923"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	19-Mar-08	19-Mar-08	17050.00	=""	="Sirsi Dynix Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72924"	"Communications devices and accessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Communications Devices and Accessories"	19-Mar-08	30-Jun-08	15565.21	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72925"	"lodging and meeting facilities"	="Australian Competition and Consumer Commission"	30-Apr-08	="Hotels and lodging and meeting facilities"	24-Jul-08	25-Jul-08	49480.00	=""	="Your Next Event"	30-Apr-08 03:55 PM	

+="CN72926"	"Printed media"	="Australian Competition and Consumer Commission"	30-Apr-08	="Printed media"	25-Feb-08	26-Feb-08	25989.60	=""	="Thomson Legal and Regulatory Ltd"	30-Apr-08 03:55 PM	

+="CN72927"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	25-Mar-08	01-May-09	327800.00	="RFT2007-13"	="Worley Parsons Services Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72928"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	26-Feb-08	09-May-08	61248.00	="RFT2007-2058"	="Commander Intergated Networks Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72929"	"advertising"	="Australian Competition and Consumer Commission"	30-Apr-08	="Advertising"	29-Feb-08	01-Mar-08	11869.57	=""	="hma Blaze Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72930"	"advertising"	="Australian Competition and Consumer Commission"	30-Apr-08	="Advertising"	29-Feb-08	01-Mar-08	19473.86	=""	="hma Blaze Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72934"	"Provision of team leader services"	="Family Court of Australia"	30-Apr-08	="Information technology consultation services"	14-Apr-08	13-Oct-08	112112.00	=""	="Talent International"	30-Apr-08 04:00 PM	

+="CN72935-A2"	"Supply, Instalation & Maintenance of Horiba XGT 7000 X-Ray Analytical Microscopy System"	="Australian Federal Police"	30-Apr-08	="Medical Equipment and Accessories and Supplies"	28-Apr-08	19-Nov-12	505583.10	=""	="DKSH Australia Pty Ltd"	30-Apr-08 04:01 PM	

+="CN72936"	"motor vehicle spare parts"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	18566.02	=""	="LANDROVER"	30-Apr-08 04:03 PM	

+="CN72938"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	17010.95	=""	="LAND ROVER AUSTRALIA"	30-Apr-08 04:06 PM	

+="CN72940"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	13161.26	=""	="LANDROVER"	30-Apr-08 04:09 PM	

+="CN72942"	" CORD FIBROUS "	="Department of Defence"	30-Apr-08	="Ropes"	30-Apr-08	30-May-08	29500.00	=""	="JOBECK PTY LTD"	30-Apr-08 04:12 PM	

+="CN72944"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	10144.46	=""	="LANDROVER"	30-Apr-08 04:12 PM	

+="CN72945"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	26162.17	=""	="LANDROVER"	30-Apr-08 04:15 PM	

+="CN72948"	"BRAS"	="Department of Defence"	30-Apr-08	="Brassieres"	30-Apr-08	30-May-08	11440.00	=""	="THE BERLEI GROUP"	30-Apr-08 04:18 PM	

+="CN72949"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	14637.59	=""	="LANDROVER"	30-Apr-08 04:19 PM	

+="CN72952"	"MAT GYMNASIUM"	="Department of Defence"	30-Apr-08	="Gymnastics equipment"	29-Apr-08	29-May-08	19516.00	=""	="ACROMAT PTY LTD"	30-Apr-08 04:22 PM	

+="CN72955"	"Printing of NAT4446 - ATO Letterhead. Qty: 3,000,000"	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	20-May-08	43564.40	=""	="Paragon Printers"	30-Apr-08 05:17 PM	

+="CN72957"	"Carpark rental - Sydney"	="Future Fund Management Agency"	30-Apr-08	="Parking lot"	01-Jun-08	31-May-10	25520.00	=""	="CB Richard Ellis"	30-Apr-08 06:33 PM 

--- /dev/null
+++ b/admin/partialdata/26Feb2008to01Mar2008valto.xls
@@ -1,1 +1,346 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN63368"	"The provision of local market entry, channel marketing & export advisory services in Lima"	="Austrade"	26-Feb-08	="Human resources services"	01-Jul-07	30-Jun-08	50000.00	=""	="Carlos Castellanos Lopez"	26-Feb-08 09:04 AM	

+="CN63369"	"2008 National Restaurant Association Show"	="Austrade"	26-Feb-08	="Marketing and distribution"	12-Feb-08	16-May-08	84920.83	=""	="Facet International Marketing"	26-Feb-08 09:04 AM	

+="CN63370"	"Electricity services"	="Austrade"	26-Feb-08	="Electric utilities"	15-Feb-08	30-Jun-08	33000.00	=""	="Energy Australia"	26-Feb-08 09:04 AM	

+="CN63371"	"Domestic calls Feb 08"	="Austrade"	26-Feb-08	="Electric utilities"	24-Feb-08	24-Feb-08	10522.68	=""	="Telstra"	26-Feb-08 09:04 AM	

+="CN63372"	"Advertising in Australian  Anthill Magazine 1/10/07 & 1/12/07"	="Austrade"	26-Feb-08	="Marketing and distribution"	01-Oct-07	01-Dec-07	11000.00	=""	="HMA Blaze"	26-Feb-08 09:04 AM	

+="CN63373"	"Development  and ongoing management of image library"	="Austrade"	26-Feb-08	="Computer services"	04-Feb-08	30-Jun-09	62700.00	=""	="Media Equation"	26-Feb-08 09:04 AM	

+="CN63374"	"Development of user interface prototype for MOSS migration"	="Austrade"	26-Feb-08	="Computer services"	01-Feb-08	31-Mar-08	18480.00	=""	="Different Solutions Pty Ltd"	26-Feb-08 09:05 AM	

+="CN63375"	"Design and Making of the booth of the  Australian Theme Exhibition in Shenzhen"	="Austrade"	26-Feb-08	="Marketing and distribution"	15-May-07	20-May-07	27595.00	=""	="Shengdian Advertisement Planning & Design Co.Pty"	26-Feb-08 09:05 AM	

+="CN63376"	"Breeze training  and share point techincal support"	="Austrade"	26-Feb-08	="Computer services"	01-Jul-07	30-Jun-08	44000.00	=""	="APP Corporation Pty Limited"	26-Feb-08 09:05 AM	

+="CN63377"	"Migration to Moss 2007,  implementation strategies andperformance support"	="Austrade"	26-Feb-08	="Computer services"	22-Jun-07	31-Dec-08	66000.00	=""	="Clicks IT Recruitment"	26-Feb-08 09:05 AM	

+="CN63378"	"Office refurbishement of Bangkok premises"	="Austrade"	26-Feb-08	="General building construction"	05-Jun-07	31-Aug-07	230000.00	=""	="United Group Services Pty Ltd"	26-Feb-08 09:05 AM	

+="CN63379"	"Marketing support services"	="Austrade"	26-Feb-08	="Computer services"	03-Sep-07	24-Nov-07	27500.00	=""	="Hudson Global Resources (Aust) Pty Limited"	26-Feb-08 09:05 AM	

+="CN63380"	"Project management of Connect program"	="Austrade"	26-Feb-08	="Computer services"	01-Jan-08	30-Mar-08	93900.00	=""	="Sebrec Pty Limited"	26-Feb-08 09:05 AM	

+="CN63381"	"Facilitation of strategic planning for the Connect project"	="Austrade"	26-Feb-08	="Computer services"	16-Jul-07	30-Jun-08	13200.00	=""	="Waterfield Consulting"	26-Feb-08 09:05 AM	

+="CN63382"	"Provision of market enty strategies for Australian business with respect to  India"	="Austrade"	26-Feb-08	="Computer services"	01-Aug-07	10-Aug-08	24872.00	=""	="International Market Assessment India Private Limited"	26-Feb-08 09:06 AM	

+="CN63383"	"Licence renewal for Ibisworld Business Information service"	="Austrade"	26-Feb-08	="Computer services"	24-Jun-07	23-Jun-08	95720.00	=""	="Ibisworld Pty Ltd"	26-Feb-08 09:06 AM	

+="CN63384-A1"	" SSA Name- 3 Identity Matching Software License for development, Production and DR hardware configurations. "	="Australian Taxation Office"	26-Feb-08	="License management software"	26-Feb-08	25-Feb-09	124932.50	=""	="Identity Systems"	26-Feb-08 09:16 AM	

+="CN63385"	" Close Reconnaisance clothing  "	="Defence Materiel Organisation"	26-Feb-08	="Clothing"	01-Nov-07	30-Apr-08	360657.00	="2470089"	="Hellweg International"	26-Feb-08 10:11 AM	

+="CN63388"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	26-Feb-08	="Medical health associations"	20-Feb-08	01-Apr-08	64515.31	=""	="SMITH & NEPHEW AUSTRALIA P/L"	26-Feb-08 10:48 AM	

+="CN63389"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	18000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63390"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	26000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63391"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	15000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:57 AM	

+="CN63392"	"Telephony Hardware"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-08	30-Jun-08	198000.00	=""	="POLARIS COMMUNICATIONS PTY LTD"	26-Feb-08 10:58 AM	

+="CN63393"	"Legal Services"	="Australian Taxation Office"	26-Feb-08	="Financial and Insurance Services"	20-Feb-08	30-Jun-08	34000.00	=""	="STATEWIDE MERCANTILE SERVICES"	26-Feb-08 10:58 AM	

+="CN63394"	"MQ05BAU 8 attendees"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	05-Feb-08	06-Mar-08	21450.00	=""	="IBM AUSTRALIA LIMITED"	26-Feb-08 10:58 AM	

+="CN63395"	"Career Development Assessment Centre 93 2 Attendees"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	18-Feb-08	02-Mar-08	23650.00	=""	="Australian Public Service"	26-Feb-08 10:58 AM	

+="CN63397"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	26-Feb-08	="Medical staff isolation or surgical masks"	18-Feb-08	29-Feb-08	22550.00	=""	="MidMed"	26-Feb-08 11:06 AM	

+="CN63398"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	26-Feb-08	="Medical health associations"	20-Feb-08	01-Apr-08	21461.33	=""	="TYCO HEATHCARE P/L"	26-Feb-08 11:07 AM	

+="CN63399"	"WORKSHOP"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	17-Feb-08	21-Feb-08	24112.00	=""	="PEIAT CONSULTING PTY LTD"	26-Feb-08 11:09 AM	

+="CN63401"	"OFFICE EQUIP"	="Australian Taxation Office"	26-Feb-08	="Office Equipment and Accessories and Supplies"	25-Feb-08	25-Feb-08	114262.01	=""	="UNITED GROUP  PTY LTD"	26-Feb-08 11:09 AM	

+="CN63403"	"CONFERENCE"	="Australian Taxation Office"	26-Feb-08	="Education and Training Services"	25-Feb-08	25-Feb-08	27350.00	=""	="RACV CLUB LTD"	26-Feb-08 11:10 AM	

+="CN63400"	"Data Purchase"	="Australian Fair Pay Commission"	26-Feb-08	="Surface data logging units"	21-Jan-08	22-Feb-08	36870.00	=""	="The University of Sydney"	26-Feb-08 11:10 AM	

+="CN63402"	"MC-5 Parachute, NSN 1670-01-367-0304, Qty 90"	="Defence Materiel Organisation"	26-Feb-08	="Parachutes"	26-Feb-08	05-Jan-09	1138995.00	=""	="RFD Australia Pty Ltd"	26-Feb-08 11:10 AM	

+="CN63404"	" Pharmaceuticals For ADF "	="Defence Materiel Organisation"	26-Feb-08	="Drugs and Pharmaceutical Products"	15-Feb-08	28-Mar-08	31048.56	=""	="Symbion Pharmacy Services"	26-Feb-08 11:11 AM	

+="CN63405"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	25-Feb-08	11506.44	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63406"	"SEARCHES"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	25-Feb-08	12829.14	=""	="ESPREON PROPERTY SERVICES"	26-Feb-08 11:13 AM	

+="CN63407"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	25-Feb-08	20002.77	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63408"	"LABOUR"	="Australian Taxation Office"	26-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	25-Feb-08	11431.20	=""	="Hudson Global Resources (Aust) P/L"	26-Feb-08 11:13 AM	

+="CN63409"	"INTERNET"	="Australian Taxation Office"	26-Feb-08	="Information Technology Broadcasting and Telecommunications"	06-Feb-08	19-Feb-08	37989.37	=""	="TELSTRA"	26-Feb-08 11:13 AM	

+="CN63410"	"VEHICLE REPAIRS"	="Department of Defence"	26-Feb-08	="Motor vehicles"	26-Feb-08	26-Mar-08	13597.33	=""	="RGM"	26-Feb-08 11:15 AM	

+="CN63411"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	23-Jan-08	29-Jul-08	179150.40	=""	="COLLECTIVE RESOURCES IT RECRUITMENT"	26-Feb-08 11:16 AM	

+="CN63412"	"IT Contractors"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	18-Feb-08	28-Feb-09	337725.52	=""	="TALENT INTERNATIONAL"	26-Feb-08 11:21 AM	

+="CN63413"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	06-Aug-07	05-Feb-08	113340.00	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Feb-08 11:21 AM	

+="CN63414"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	25-Feb-08	31-Mar-08	212256.00	=""	="CANDLE AUSTRALIA PTY LTD"	26-Feb-08 11:22 AM	

+="CN63415"	"IT Contractor"	="Australian Taxation Office"	26-Feb-08	="Engineering and Research and Technology Based Services"	20-Feb-08	20-Mar-09	205920.00	=""	="COMPAS PTY LTD"	26-Feb-08 11:22 AM	

+="CN63417"	"150 x Genesys outbound licences"	="Australian Taxation Office"	26-Feb-08	="Information Technology Broadcasting and Telecommunications"	15-Jan-08	30-Jun-08	3892976.59	=""	="NEC AUSTRALIA PTY LTD"	26-Feb-08 11:22 AM	

+="CN63418-A1"	"Provision of all base building services for the Musuem's rotating theatre refurbishment project"	="National Museum of Australia"	26-Feb-08	="General building construction"	15-Oct-07	29-Feb-08	996211.00	=""	="Haden Engineering"	26-Feb-08 11:25 AM	

+="CN63419"	"Printing of NAT11032-07.2007 (JS10589) - Roles and responsibilities of trustees.  Qty: 15,000"	="Australian Taxation Office"	26-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Feb-08	04-Mar-08	11961.40	=""	="Paragon Printers"	26-Feb-08 11:32 AM	

+="CN63420-A1"	" VEHICLE REPAIR "	="Department of Defence"	26-Feb-08	="Motor vehicles"	26-Feb-08	26-Mar-08	22146.46	=""	="RGM"	26-Feb-08 11:41 AM	

+="CN63421"	" NSN 1560-00-866-6690, Nacelle Ducts "	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	25-Feb-08	07-Jan-09	15359.29	=""	="Milspec Services Pty Ltd"	26-Feb-08 11:50 AM	

+="CN63424"	"Annual maintenance of iCMS software 14/03/08 - 13/03/09"	="Australian Taxation Office"	26-Feb-08	="Software"	14-Mar-08	13-Mar-09	19184.00	=""	="BIS Expense Management"	26-Feb-08 01:01 PM	

+="CN63427"	" Positions Vacant Advertising "	="Office of the Australian Building and Construction Commissioner (ABCC)"	26-Feb-08	="Business administration services"	11-Jan-08	12-Jan-08	12545.46	=""	="HMA BLAZE PTY LTD"	26-Feb-08 02:45 PM	

+="CN63428"	"motor vehicle spare parts"	="Department of Defence"	26-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Feb-08	26-Mar-08	17938.04	=""	="Rover Australia"	26-Feb-08 03:20 PM	

+="CN63432"	" VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	26-Feb-08	="Motor vehicles"	26-Feb-08	11-Mar-08	10987.06	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	26-Feb-08 03:48 PM	

+="CN63440"	"Telstra"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Internet services"	01-Jul-07	30-Jun-08	12527.51	=""	="Telstra"	26-Feb-08 04:06 PM	

+="CN63441"	"TOWER SOFTWARE"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Files"	11-Jan-08	11-Jan-09	11279.54	="NA"	="Tower Software"	26-Feb-08 04:06 PM	

+="CN63442"	"DELL AUSTRALIA"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computer servers"	23-Jul-07	30-Jun-08	10032.00	=""	="DELL COMPUTER P/L"	26-Feb-08 04:06 PM	

+="CN63443"	"OAKTON SERVICES P/L"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computers"	31-Jan-08	31-Jan-09	18172.00	="DIRECT"	="OAKTON SERVICES P/L"	26-Feb-08 04:06 PM	

+="CN63444"	"TRU Energy"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Supply of single phase electricity"	01-Jul-07	30-Jun-08	14559.37	=""	="Tru Energy"	26-Feb-08 04:06 PM	

+="CN63445"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	26-Feb-08 04:07 PM	

+="CN63446"	"L J Hooker"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	28875.00	=""	="L J Hooker"	26-Feb-08 04:07 PM	

+="CN63447"	"Honeywell, Maintenance services"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	30-Jun-08	29537.00	=""	="Honeywell"	26-Feb-08 04:07 PM	

+="CN63448"	"Dr S A Harbison"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Business intelligence consulting services"	10-Aug-07	10-Aug-07	10907.50	=""	="S A Harbison CB"	26-Feb-08 04:07 PM	

+="CN63449"	"RJB CONSTRUCTION"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	11-Jan-08	11-Jan-09	15157.49	="OPEN"	="RJB CONSTRUCTION"	26-Feb-08 04:07 PM	

+="CN63450"	"Australasian Jet"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Chartered aeroplane travel"	20-Nov-07	21-Nov-07	15235.00	=""	="Australasian Jet"	26-Feb-08 04:07 PM	

+="CN63451"	"BUREAU OF METEOROLOGY"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Meteorology"	24-Aug-07	24-Aug-08	46819.97	="NA"	="Bureau of Meteorology"	26-Feb-08 04:07 PM	

+="CN63452"	"CORPORATE NETWORK INTEGRATION"	="Australian Radiation Protection and Nuclear Safety Agency (ARPANSA)"	26-Feb-08	="Computer servers"	31-Jan-08	31-Jan-09	30625.00	="DIRECT"	="CORPORATE NETWORK INTEGRATION"	26-Feb-08 04:07 PM	

+="CN63453"	"Product supplied under a contingent arrangement"	="National Blood Authority"	26-Feb-08	="Healthcare Services"	07-Nov-07	07-Nov-07	299228.00	=""	="Octapharma Australia Pty Ltd"	26-Feb-08 04:14 PM	

+="CN63454"	"Recruitment Services"	="Australian Taxation Office"	26-Feb-08	="Recruitment services"	05-Dec-07	31-Jan-08	12000.00	="06.042"	="Hays Specialist Recruitment (Australia) Pty Limited"	26-Feb-08 04:24 PM	

+="CN63455"	"Recruitment Services"	="Australian Taxation Office"	26-Feb-08	="Recruitment services"	11-Jan-08	03-Mar-08	14000.00	="06.042"	="Hays Specialist Recruitment (Australia) Pty Limited"	26-Feb-08 04:41 PM	

+="CN63456"	"DA 63 - Environmental Study"	="National Capital Authority"	26-Feb-08	="Land use planning"	11-Feb-08	07-Mar-08	25465.00	=""	="NGH Environmental"	26-Feb-08 04:57 PM	

+="CN63457"	"NSN 5330-00-245-2741, Nonmetallic Special Shaped Section Seals"	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	26-Feb-08	10-Dec-08	17899.20	=""	="Milspec Services Pty Ltd"	26-Feb-08 06:58 PM	

+="CN63458"	"NSN 1560-00-808-0165 Flap Bolt Assemblies"	="Defence Materiel Organisation"	26-Feb-08	="Aerospace systems and components and equipment"	26-Feb-08	10-Dec-08	34834.80	=""	="Milspec Services Pty Ltd"	26-Feb-08 07:28 PM	

+="CN63460"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	27-Feb-08	="Aircraft"	26-Feb-08	17-Mar-08	28016.50	=""	="sikorsky aircraft australia ltd"	27-Feb-08 07:05 AM	

+="CN63463"	"Temporary Personnel"	="Australian Electoral Commission"	27-Feb-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	16368.00	="AEC06/019"	="Peoplebank Recruitment Pty Ltd"	27-Feb-08 09:24 AM	

+="CN63464"	"Australian Met Magazine"	="Bureau of Meteorology"	27-Feb-08	="Printed media"	15-Feb-08	29-Feb-08	13194.50	=""	="Printmail Australia Pty  Ltd"	27-Feb-08 09:26 AM	

+="CN63465"	"Telecommunication Services"	="Bureau of Meteorology"	27-Feb-08	="Telecommunications media services"	20-Feb-08	20-Feb-08	15648.41	=""	="Telstra  (ID No. 740)"	27-Feb-08 09:26 AM	

+="CN63466"	"Telecommunications Services"	="Bureau of Meteorology"	27-Feb-08	="Telecommunications media services"	12-Feb-08	29-Feb-08	10969.84	=""	="Telstra  (ID No. 740)"	27-Feb-08 09:26 AM	

+="CN63467"	"Audit Services"	="Bureau of Meteorology"	27-Feb-08	="Accounting and auditing"	06-Feb-08	29-Feb-08	43395.00	=""	="Deloitte Touche Tohmatsu"	27-Feb-08 09:26 AM	

+="CN63468-A1"	"Contract Staff"	="Bureau of Meteorology"	27-Feb-08	="Management and Business Professionals and Administrative Services"	11-Feb-08	29-Feb-08	12065.54	=""	="Dfp Recruitment Services"	27-Feb-08 09:26 AM	

+="CN63469"	"Relocation of VRO & BMTC to 1010 Latrobe Street"	="Bureau of Meteorology"	27-Feb-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	29-Feb-08	14327.50	=""	="Relocations Alliance Group Pty Ltd"	27-Feb-08 09:26 AM	

+="CN63470-A1"	"Heritage Values Assessment"	="Bureau of Meteorology"	27-Feb-08	="Management advisory services"	12-Feb-08	29-Feb-08	20642.60	=""	="Godden Mackay Logan"	27-Feb-08 09:26 AM	

+="CN63471"	"SA VOICE A/C RENT TO 9/3/08"	="Bureau of Meteorology"	27-Feb-08	="Telecommunications media services"	18-Feb-08	22-Feb-08	10670.64	=""	="Telstra  (ID No. 740)"	27-Feb-08 09:26 AM	

+="CN63472"	"solid state hard drives and mount brackets"	="Bureau of Meteorology"	27-Feb-08	="Computer services"	21-Feb-08	21-Feb-08	14261.00	=""	="Tecs Imports P/L"	27-Feb-08 09:27 AM	

+="CN63473"	"SS HD HD mount bracket"	="Bureau of Meteorology"	27-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	21-Feb-08	10931.00	=""	="Lasertecs Pty Ltd"	27-Feb-08 09:27 AM	

+="CN63474"	"UPS Firmware Upgrade"	="Bureau of Meteorology"	27-Feb-08	="Computer services"	11-Feb-08	14-Feb-08	11525.16	=""	="CHLORIDE POWER PROTECTION"	27-Feb-08 09:27 AM	

+="CN63475"	"Rack Equipment (Water Division, canberra)"	="Bureau of Meteorology"	27-Feb-08	="Computer Equipment and Accessories"	12-Feb-08	12-Feb-08	27095.20	=""	="UPS Solutions Pty Ltd"	27-Feb-08 09:27 AM	

+="CN63476"	"Repairs to Driveway & Paving More M.O."	="Bureau of Meteorology"	27-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-Feb-08	31-Mar-08	26822.00	=""	="Moree Plains Shire Council"	27-Feb-08 09:27 AM	

+="CN63477"	"Development of a Protected Network Enclave"	="Bureau of Meteorology"	27-Feb-08	="Business administration services"	13-Feb-08	30-Jun-08	122100.00	=""	="Stratsec Net Pty Ltd"	27-Feb-08 09:27 AM	

+="CN63478"	"Accoustic Transceiver Deck Qty 1"	="Bureau of Meteorology"	27-Feb-08	="Measuring and observing and testing instruments"	14-Feb-08	28-Mar-08	20892.30	=""	="Underwater Video Systems P/L"	27-Feb-08 09:27 AM	

+="CN63479"	"JanusSeal Maintenance & Support MimeSweeper Maintenance and Support"	="Bureau of Meteorology"	27-Feb-08	="Computer services"	14-Feb-08	14-Feb-08	14279.10	=""	="Loop Technology"	27-Feb-08 09:27 AM	

+="CN63480"	"Construction of Esperance Met Office"	="Bureau of Meteorology"	27-Feb-08	="General building construction"	14-Feb-08	01-Jul-08	1890570.00	=""	="Sime Building & Construction"	27-Feb-08 09:27 AM	

+="CN63481"	"Construction of Broome Met Office"	="Bureau of Meteorology"	27-Feb-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	14-Feb-08	30-Jun-08	2738807.50	=""	="Norbuilt Pty Ltd"	27-Feb-08 09:27 AM	

+="CN63482"	"Magnetic Tapes x 200"	="Bureau of Meteorology"	27-Feb-08	="Computer services"	14-Feb-08	29-Feb-08	17182.00	=""	="Instant IT Pty Ltd"	27-Feb-08 09:27 AM	

+="CN63483"	"1 x HP Laserjet printer M5035 1 x HP Laserjet 5550DTN"	="Bureau of Meteorology"	27-Feb-08	="Computer Equipment and Accessories"	14-Feb-08	21-Feb-08	11088.00	=""	="Leading Solutions Pty Ltd"	27-Feb-08 09:28 AM	

+="CN63484"	"AIX System Support Officer"	="Bureau of Meteorology"	27-Feb-08	="Computer services"	14-Feb-08	21-Jul-08	110000.00	=""	="Total Risc Technology Pty Ltd"	27-Feb-08 09:28 AM	

+="CN63485"	"High Volume Air Sampler"	="Bureau of Meteorology"	27-Feb-08	="Measuring and observing and testing instruments"	20-Feb-08	06-Mar-08	11891.00	=""	="Ecotech Pty Ltd"	27-Feb-08 09:28 AM	

+="CN63486"	"AWS site works"	="Bureau of Meteorology"	27-Feb-08	="Engineering and Research and Technology Based Services"	19-Feb-08	19-Feb-08	10750.00	=""	="John Hinton"	27-Feb-08 09:28 AM	

+="CN63487-A1"	"Review and Prepare for Publication AFH"	="Bureau of Meteorology"	27-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	30-Jun-08	11000.00	=""	="Graeme Tepper"	27-Feb-08 09:28 AM	

+="CN63488"	"Cloud Condensation Nuclei Counter"	="Bureau of Meteorology"	27-Feb-08	="Measuring and observing and testing instruments"	21-Feb-08	07-May-08	68172.44	=""	="Droplet Measurement Technologies"	27-Feb-08 09:28 AM	

+="CN63489"	"34L Stainless Steel Tanks, 4.5L Sampling Cannister"	="Bureau of Meteorology"	27-Feb-08	="Measuring and observing and testing instruments"	21-Feb-08	14-May-08	98296.96	=""	="Essex Cryogenics of Missouri Inc"	27-Feb-08 09:28 AM	

+="CN63490"	"ALTERATIONS TO AIRCON TO USE AS BACKUP FOR COMPUTER ROOM"	="Bureau of Meteorology"	27-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	31-Mar-08	10516.00	=""	="Concept Air Conditioning"	27-Feb-08 09:28 AM	

+="CN63491"	"Hydrogen gas flashback arrester(qty 24)"	="Bureau of Meteorology"	27-Feb-08	="Industrial Manufacturing and Processing Machinery and Accessories"	22-Feb-08	14-Mar-08	10164.00	=""	="GASCON SYSTEMS PTY LTD"	27-Feb-08 09:28 AM	

+="CN63492"	" In conjunction with GAPS ID 1418504  EAP Services "	="Australian Taxation Office"	27-Feb-08	="Management and Business Professionals and Administrative Services"	01-Feb-08	29-Feb-08	100000.00	="42.04"	="IPS Worldwide"	27-Feb-08 09:48 AM	

+="CN63493-A1"	"Telephone Interpreter Services"	="Australian Electoral Commission"	27-Feb-08	="Interpreters"	01-Dec-06	30-Nov-09	63133.38	="AEC06/043"	="VITS Language Link"	27-Feb-08 09:50 AM	

+="CN63494"	" SUPPLY OF DEFIBRILLATORS & ACCESSORIES "	="Defence Materiel Organisation"	27-Feb-08	="Medical Equipment and Accessories and Supplies"	25-Jan-08	31-Mar-08	468850.00	=""	="CARDIAC SCIENCE AUSTRALIA PTY LTD"	27-Feb-08 09:58 AM	

+="CN63495"	"Repair of Aircraft Parts. Note originally gazetted with Austender under Contract 1676143 for $15,000.00. System has changed over so Increased amount Gazettaled under new Contract."	="Defence Materiel Organisation"	27-Feb-08	="Aircraft"	26-Feb-08	06-May-08	81170.99	=""	="sikorsky aircraft australia ltd"	27-Feb-08 10:17 AM	

+="CN63158-A2"	"Cisco PABX"	="Productivity Commission"	27-Feb-08	="Telecommunication equipment installation or modification kits"	01-May-07	30-Jun-08	288127.00	=""	="Dimension Data Australia"	27-Feb-08 10:39 AM	

+="CN63496"	"31 Chairs"	="Productivity Commission"	27-Feb-08	="Chairs"	18-Oct-07	13-Nov-07	12487.20	=""	="Gregory Australia"	27-Feb-08 10:48 AM	

+="CN63497-A2"	"Advertising"	="Productivity Commission"	27-Feb-08	="Newspaper advertising"	31-Aug-07	24-Jan-08	94323.00	=""	="HMA Blaze"	27-Feb-08 10:51 AM	

+="CN63498-A1"	" Facilitate appraisals. "	="Productivity Commission"	27-Feb-08	="Management and Business Professionals and Administrative Services"	19-Sep-07	02-Nov-07	22390.00	=""	="Hugh Watson Consulting P/L"	27-Feb-08 10:54 AM	

+="CN63499"	"OBPR Conference"	="Productivity Commission"	27-Feb-08	="Conference centres"	11-Nov-07	11-Nov-07	15242.00	=""	="Hyatt Hotel Canberra"	27-Feb-08 10:57 AM	

+="CN63500"	"Re cover 53 Ergonomic Chairs"	="Productivity Commission"	27-Feb-08	="Chairs"	06-Dec-07	12-Feb-08	12000.00	=""	="McNallys Furniture and Upholstery"	27-Feb-08 11:02 AM	

+="CN63503"	"Modelling NRa"	="Productivity Commission"	27-Feb-08	="Productivity or efficiency studies or implementation"	13-Feb-08	13-Feb-08	69300.00	=""	="Monash Uni"	27-Feb-08 11:30 AM	

+="CN63504"	"supply & fit depth sounder"	="Department of Defence"	27-Feb-08	="Commercial marine craft"	21-Feb-08	30-Mar-08	16258.00	=""	="SEABOURNE ELECTRONICS PTY LTD"	27-Feb-08 11:57 AM	

+="CN63505"	"SUPPLY DEPTH SOUNDER"	="Department of Defence"	27-Feb-08	="Commercial marine craft"	21-Feb-08	30-Mar-08	16258.00	=""	="SEABOURNE ELECTRONICS PTY LTD"	27-Feb-08 12:04 PM	

+="CN63507-A1"	"Fit out"	="Productivity Commission"	27-Feb-08	="General building construction"	15-Oct-07	14-Jan-08	2622918.15	=""	="Trinity Quality Interiors Pty Ltd"	27-Feb-08 02:37 PM	

+="CN63510"	"Internal FMG Development Work"	="IP Australia"	27-Feb-08	="Development software"	22-Jan-08	30-Jun-08	120000.00	="IPAC2006/11050"	="SOUTHERN CROSS COMPUTING PTY LTD"	27-Feb-08 03:03 PM	

+="CN63511"	"Legal Services Panel AGS036"	="IP Australia"	27-Feb-08	="Legal services"	21-Jan-08	29-Feb-08	40000.00	="IPA2005/11274-2"	="AUSTRALIAN GOVERNMENT SOLICITOR"	27-Feb-08 03:03 PM	

+="CN63512"	"Coaching & Consultancy Services"	="IP Australia"	27-Feb-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	30-Dec-08	25000.00	="IPA05/14475-38"	="KMR Consulting Pty Ltd"	27-Feb-08 03:03 PM	

+="CN63513"	"APT Methodology Integration Specialist (BD)"	="IP Australia"	27-Feb-08	="Computer programmers"	14-Jan-08	27-Apr-08	66264.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	27-Feb-08 03:03 PM	

+="CN63514"	"HR Management Services Panel -Scribing Services"	="IP Australia"	27-Feb-08	="Personnel recruitment"	14-Jan-08	30-Jun-08	40000.00	="IPA05/14475-18"	="EFFECTIVE PEOPLE PTY LTD"	27-Feb-08 03:04 PM	

+="CN63515"	"J2EE Analyst/Developer (RO)"	="IP Australia"	27-Feb-08	="Computer programmers"	14-Jan-08	30-Nov-08	209088.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	27-Feb-08 03:04 PM	

+="CN63516"	"Brisbane State office Fit Out ( New Building)"	="IP Australia"	27-Feb-08	="Building and Construction and Maintenance Services"	28-Nov-07	28-Nov-07	56169.30	="IPAC2007/14855"	="TDA Interiors Australia (QLD) Pty L"	27-Feb-08 03:04 PM	

+="CN63517"	"XML Developer C2007/14336"	="IP Australia"	27-Feb-08	="Temporary personnel services"	12-Feb-08	15-Feb-08	15523.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	27-Feb-08 03:04 PM	

+="CN63518"	"Controls Specialist-Scheduler C2007/13306"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	28-Feb-08	52780.00	="IPA2006/11854-3"	="Ambit Group Pty LTd"	27-Feb-08 03:04 PM	

+="CN63520"	"Senior Technical Advisor C2007/12493"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	30-Nov-09	490000.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	27-Feb-08 03:04 PM	

+="CN63521"	"Gem Fate Pty Ltd Drafting of Private Ruling to ATO"	="IP Australia"	27-Feb-08	="Business administration services"	31-Jul-07	10-Aug-07	13200.00	="IPAC2007/13355"	="GEMFATE PTY LIMITED"	27-Feb-08 03:04 PM	

+="CN63522"	"J2EE Developer C2007/12434"	="IP Australia"	27-Feb-08	="Personnel recruitment"	22-Jan-08	08-Feb-08	28424.00	="IPA2006/11854-3"	="Ambit Group Pty LTd"	27-Feb-08 03:05 PM	

+="CN63523"	"ABC Contrator Support January 2008"	="IP Australia"	27-Feb-08	="Accounting and auditing"	12-Feb-08	30-Jun-08	145750.00	="IPAC2008/10452"	="Cogent Business Solutions Pty Ltd"	27-Feb-08 03:05 PM	

+="CN63524"	"Implementation of an ABC System Jan 2008"	="IP Australia"	27-Feb-08	="Accounting and auditing"	12-Feb-08	30-Jun-08	65450.00	="IPAC2008/10384"	="Cogent Business Solutions Pty Ltd"	27-Feb-08 03:05 PM	

+="CN63525"	"How to Chair and conduct Meeting Training and how to breif Senior Mgt"	="IP Australia"	27-Feb-08	="Human resources services"	07-Feb-08	30-Jun-08	17650.00	="IPAC2008/10476"	="ROGER FRY & CO"	27-Feb-08 03:05 PM	

+="CN63526"	"Use, Implement, Intergate of the Borland StarTeam and Borland Caliber"	="IP Australia"	27-Feb-08	="Computer services"	06-Feb-08	15-Feb-08	27000.00	="IPAC2008/10324"	="Borland Australia Pty Ltd"	27-Feb-08 03:05 PM	

+="CN63527"	"Citrix Hardware, Software and Maintenance"	="IP Australia"	27-Feb-08	="Computer services"	06-Feb-08	04-Feb-09	56762.67	="IPAC2008/10450"	="Dimension Data Australia Pty Ltd"	27-Feb-08 03:05 PM	

+="CN63528"	"Software Tester C2007/15360"	="IP Australia"	27-Feb-08	="Temporary personnel services"	06-Feb-08	04-Aug-08	91200.00	="IPA06/11854-10"	="Greythorn Pty Ltd"	27-Feb-08 03:05 PM	

+="CN63529"	"Technical Support of the ABC model using SAS ABM"	="IP Australia"	27-Feb-08	="Temporary personnel services"	01-Feb-08	30-Jun-08	19800.00	="IPAC2008/10353"	="S.E.M. AUSTRALIA PTY LTD"	27-Feb-08 03:06 PM	

+="CN63530"	"Drafting of 10 fact sheets re Japanese IP systems"	="IP Australia"	27-Feb-08	="Marketing and distribution"	31-Jan-08	17-Mar-08	17500.00	="IPAC2008/10363"	="Hodgkinson Mclnnes Patents"	27-Feb-08 03:06 PM	

+="CN63531"	"Autometed Test Script Designer  C2008/10082"	="IP Australia"	27-Feb-08	="Temporary personnel services"	25-Jan-08	31-Jan-09	132480.00	="IPAC2008/10082"	="CORDELTA PTY LTD"	27-Feb-08 03:06 PM	

+="CN63532"	"Cultural Awareness Training until January 2010"	="IP Australia"	27-Feb-08	="Human resources services"	24-Jan-08	14-Jan-10	58650.00	="IPAC2008/10311"	="Culture Resource Centre Pty.Ltd"	27-Feb-08 03:06 PM	

+="CN63533"	"Conducting Short term Study on attrition and reten"	="IP Australia"	27-Feb-08	="Human resources services"	24-Jan-08	30-Jun-08	50000.00	="IPAC2008/10309"	="HR Asset Management Pty Ltd"	27-Feb-08 03:06 PM	

+="CN63534"	"Commonwealth Health & Safety Rep Training"	="IP Australia"	27-Feb-08	="Human resources services"	23-Jan-08	31-Mar-08	15950.00	="IPA05/14475-32"	="NSCA National Safety Council"	27-Feb-08 03:06 PM	

+="CN63535"	"MS Access, VB & Crystal Reports Developer C2007/12263-01"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	30-Jun-08	80300.00	="IPA06/11854-13"	="MPM GROUP PTY LTD"	27-Feb-08 03:06 PM	

+="CN63536"	"Citrix Hardware and Software"	="IP Australia"	27-Feb-08	="Computer services"	04-Feb-08	04-Feb-08	56762.67	=""	="Dimension Data Australia Pty Ltd"	27-Feb-08 03:06 PM	

+="CN63537"	"Big Faceless PDF Library Extended Editio"	="IP Australia"	27-Feb-08	="Software"	31-Jan-08	01-Feb-08	20863.78	=""	="KENSINGTON SOFTWARE MANAGEMENT LTD"	27-Feb-08 03:06 PM	

+="CN63538"	"Sirsi Maintenance"	="IP Australia"	27-Feb-08	="Software maintenance and support"	24-Jan-08	31-Dec-08	14399.35	=""	="SIRSIDYNIX PTY LTD"	27-Feb-08 03:07 PM	

+="CN63539"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Sirigorn Koatnon"	27-Feb-08 03:07 PM	

+="CN63540"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Dharam Singh"	27-Feb-08 03:07 PM	

+="CN63541"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Cristy Escobedo"	27-Feb-08 03:07 PM	

+="CN63542"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Lam Le Ngoc"	27-Feb-08 03:07 PM	

+="CN63543"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Santun Siregar"	27-Feb-08 03:07 PM	

+="CN63544"	"Individual Living Allowance"	="IP Australia"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	21-Jan-08	30-Jun-08	10322.55	=""	="Shujiang Zhou"	27-Feb-08 03:07 PM	

+="CN63545"	"Secure destruction of microfilm & records"	="IP Australia"	27-Feb-08	="Business administration services"	15-Jan-08	15-Jan-08	15094.20	=""	="Recall Information Management Pty L"	27-Feb-08 03:07 PM	

+="CN63546"	"ACS Legacy Archive - Journal subscriptions"	="IP Australia"	27-Feb-08	="Printed publications"	14-Jan-08	30-Jun-08	24840.00	=""	="American Chemical Society"	27-Feb-08 03:07 PM	

+="CN63547"	"Interrnal Audit Fees for IP Australia"	="IP Australia"	27-Feb-08	="Internal audits"	18-Jan-08	07-Sep-08	27500.00	="IPAC2005/13177"	="KPMG"	27-Feb-08 03:07 PM	

+="CN63548"	"Technical Lead J2EE C2007/12343"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	30-Nov-08	217800.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	27-Feb-08 03:08 PM	

+="CN63549"	"Business Analyst C2007/11828"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	28-Feb-09	237500.00	="IPA06/11854-11"	="ICON RECRUITMENT PTY LTD"	27-Feb-08 03:08 PM	

+="CN63550"	"Video & Audio Conferencing for Discovery House"	="IP Australia"	27-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	16-Nov-07	11-May-10	13486.00	="IPAC2007/10155"	="SOUND ADVICE"	27-Feb-08 03:08 PM	

+="CN63551-A1"	"Work Order 2007-01 Adabas Natural Developer"	="IP Australia"	27-Feb-08	="System administrators"	08-Feb-08	31-Mar-08	30225.00	="IPAC2003/11686"	="Fujitsu Australia"	27-Feb-08 03:08 PM	

+="CN63552"	"Extension Oracle DBA Administrator C2006/14657"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	28-Feb-09	236934.00	="IPA06/11854-14"	="PEOPLEBANK AUSTRALIA PTY LTD"	27-Feb-08 03:08 PM	

+="CN63553"	"Variation Project Manager C2006/14440"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	28-Feb-09	331430.00	="IPA2006/11854-7"	="FACE2FACE RECRUITMENT"	27-Feb-08 03:08 PM	

+="CN63554"	"Project Manager C2006/14685"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	28-Feb-09	355555.00	="IPA2006/11854-5"	="CLICKS RECRUIT PTY LTD"	27-Feb-08 03:08 PM	

+="CN63555"	"J2EE Developer C2006/14113"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	30-Nov-08	176000.00	="IPA2006/11854-7"	="FACE2FACE RECRUITMENT"	27-Feb-08 03:08 PM	

+="CN63556"	"Senior Network Engineer C2006/13851"	="IP Australia"	27-Feb-08	="Temporary personnel services"	22-Jan-08	30-Nov-08	190193.60	="IPA2006/11854-5"	="CLICKS RECRUIT PTY LTD"	27-Feb-08 03:09 PM	

+="CN63557"	"Workforce Planning Partnership Program"	="IP Australia"	27-Feb-08	="Human resource development"	01-Feb-08	31-May-08	44000.00	="IPAC2005/14475-02"	="INFOHRM PTY LTD"	27-Feb-08 03:09 PM	

+="CN63558"	"2008 Journal Subscriptions"	="IP Australia"	27-Feb-08	="Published Products"	05-Feb-08	30-Jun-08	53000.00	=""	="LEXISNEXIS BUTTERWORTHS"	27-Feb-08 03:09 PM	

+="CN63562-A1"	"Staff Relocation Management Services"	="Centrelink"	27-Feb-08	="Transport operations"	01-Mar-08	28-Feb-11	5890908.00	="RFTS07/0127"	="Sirva Pty Ltd"	27-Feb-08 03:33 PM	

+="CN63565"	"State of the Service Surveys 2008"	="Australian Public Service Commission"	27-Feb-08	="Information services"	26-Feb-08	31-Dec-08	109077.00	=""	="Orima Research Pty Ltd"	27-Feb-08 03:44 PM	

+="CN63566"	"Reimbursement of salary costs"	="Australian Public Service Commission"	27-Feb-08	="Human resources services"	25-Feb-08	30-Sep-08	16500.00	=""	="Australian Customs Service"	27-Feb-08 03:44 PM	

+="CN63567"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Human resources services"	21-Feb-08	30-Jun-08	15400.00	="APS COMMISSION 2005/014"	="Talkforce Consultants & Trainers"	27-Feb-08 03:44 PM	

+="CN63568"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	20-Feb-08	30-Mar-08	11302.50	=""	="Ginger Catering"	27-Feb-08 03:44 PM	

+="CN63569"	"Furniture"	="Australian Public Service Commission"	27-Feb-08	="Furniture and Furnishings"	18-Feb-08	18-Feb-08	21725.00	=""	="Schiavello (ACT) Pty Ltd"	27-Feb-08 03:44 PM	

+="CN63570"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	14-Feb-08	14-Feb-08	18480.00	="APS COMMISSION 2005/014"	="Delaney & Associates"	27-Feb-08 03:44 PM	

+="CN63571"	"SAS Licence renewal"	="Australian Public Service Commission"	27-Feb-08	="Computer services"	13-Feb-08	28-Feb-09	14454.00	=""	="SAS Institute Australia Pty Ltd"	27-Feb-08 03:44 PM	

+="CN63572"	"Venue hire and catering International Womens Day - Mebourne"	="Australian Public Service Commission"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	08-Feb-08	07-Mar-08	14280.05	=""	="Princess Theatre Pty Ltd"	27-Feb-08 03:44 PM	

+="CN63573"	"Venue Hire and Incidentials"	="Australian Public Service Commission"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	08-Feb-08	08-Feb-08	27080.00	=""	="Mirvac Hotel Investment Pty Ltd"	27-Feb-08 03:45 PM	

+="CN63574"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	06-Feb-08	06-Feb-08	43319.81	="APS COMMISSION 2005/014"	="Timmins Stewart Pty Ltd"	27-Feb-08 03:45 PM	

+="CN63575"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	06-Feb-08	06-Feb-08	46200.00	="APS COMMISSION 2005/014"	="Anne Jenkin & Associates Pty Ltd"	27-Feb-08 03:45 PM	

+="CN63576"	"Short term accomodation"	="Australian Public Service Commission"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	31-Jan-08	30-Jun-08	14784.00	=""	="Manuka Park Serviced Apartments"	27-Feb-08 03:45 PM	

+="CN63577"	"System redevelopment ICT Multilist"	="Australian Public Service Commission"	27-Feb-08	="Computer services"	25-Jan-08	30-Jun-08	163300.01	=""	="Crystal Approach pty Ltd"	27-Feb-08 03:45 PM	

+="CN63578"	"Executive Master of Public Administration course"	="Australian Public Service Commission"	27-Feb-08	="Human resources services"	24-Jan-08	30-Jun-08	37273.50	=""	="The Australian and New Zealand"	27-Feb-08 03:45 PM	

+="CN63580"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	24-Jan-08	30-Jun-08	14520.00	="APS COMMISSION 2005/014"	="JWJ Consulting"	27-Feb-08 03:45 PM	

+="CN63581"	"Delivery of Training"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	24-Jan-08	30-Jun-08	13200.00	="APS COMMISSION 2005/014"	="Results Consulting (Aust) Pty Ltd"	27-Feb-08 03:46 PM	

+="CN63582"	"PSM Assessments"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	14-Jan-08	14-Jan-08	17600.00	=""	="Macquarie Graduate School of"	27-Feb-08 03:46 PM	

+="CN63579-A4"	"Provision of Telemarketing services"	="CRS Australia"	27-Feb-08	="Marketing and distribution"	21-Nov-07	31-Jul-10	515135.06	=""	="Careerlink Business Services Pty Ltd"	27-Feb-08 03:46 PM	

+="CN63583"	"Relocation Costs"	="Australian Public Service Commission"	27-Feb-08	="Human resources services"	03-Jan-08	17-Jan-08	10157.49	=""	="Kent Removals"	27-Feb-08 03:46 PM	

+="CN63584"	"Venue hire"	="Australian Public Service Commission"	27-Feb-08	="Travel and Food and Lodging and Entertainment Services"	19-Feb-08	19-Feb-08	11518.47	=""	="PHC Operations Pty Ltd"	27-Feb-08 03:46 PM	

+="CN63585"	"Stationery"	="Australian Public Service Commission"	27-Feb-08	="Office supplies"	07-Aug-07	30-Jun-08	16610.00	=""	="Corporate Express"	27-Feb-08 03:46 PM	

+="CN63586"	"Supply & Installation of Security"	="Australian Public Service Commission"	27-Feb-08	="Security and personal safety"	02-Aug-07	21-Feb-08	14363.80	=""	="Chubb Electronic Security"	27-Feb-08 03:47 PM	

+="CN63587"	"Development of Training Package"	="Australian Public Service Commission"	27-Feb-08	="Education and Training Services"	24-Jan-08	30-Jun-08	10890.00	="APS COMMISSION 2005/014"	="The Australian and New Zealand"	27-Feb-08 03:47 PM	

+="CN63588"	"Fit out Minor Works"	="Australian Public Service Commission"	27-Feb-08	="Building construction and support and maintenance and repair services"	14-Dec-07	24-Jan-08	99437.80	=""	="HBO+EMTB"	27-Feb-08 03:47 PM	

+="CN63591"	"Maintenance Agreement"	="Family Court of Australia"	27-Feb-08	="Proprietary or licensed systems maintenance or support"	01-Nov-07	31-Oct-08	70700.00	=""	="Kaz Technology Services Pty Ltd"	27-Feb-08 04:01 PM	

+="CN63595"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	27-Feb-08	="Drugs and Pharmaceutical Products"	22-Feb-08	14-Mar-08	30735.58	=""	="Symbion Pharmacy Services"	27-Feb-08 04:07 PM	

+="CN63597"	"motor vehicle spare parts"	="Department of Defence"	27-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Feb-08	27-Mar-08	31999.72	=""	="Rover Australia"	27-Feb-08 04:10 PM	

+="CN63599"	"Annual Maintenanceof 30 FBI licenses for period 1/1/2008-31/12/2008"	="Australian Taxation Office"	27-Feb-08	="License management software"	01-Jan-08	31-Dec-08	42157.50	=""	="Nuix Pty Ltd"	27-Feb-08 04:14 PM	

+="CN63600"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	27-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Feb-08	27-Mar-08	19805.28	=""	="MILSPEC MANUFACTURING PTY LTD"	27-Feb-08 04:16 PM	

+="CN63602-A2"	"Senior Notes Administrator - contract Staff"	="Family Court of Australia"	27-Feb-08	="Temporary information technology systems or database administrators"	18-Feb-08	27-Feb-09	202884.00	=""	="Tallent International Pty Ltd"	27-Feb-08 04:17 PM	

+="CN63603"	"Supply of servers"	="National Archives of Australia"	27-Feb-08	="Computer servers"	05-Feb-08	14-Feb-08	14873.88	=""	="DELL COMPUTERS PTY LTD"	27-Feb-08 04:41 PM	

+="CN63604"	"Recruitment Service"	="National Archives of Australia"	27-Feb-08	="Personnel recruitment"	08-Feb-08	24-Feb-09	14063.61	=""	="Tanner Menzies Pty Ltd"	27-Feb-08 04:41 PM	

+="CN63605"	"Content to update website"	="National Archives of Australia"	27-Feb-08	="Business and corporate management consultation services"	12-Feb-08	29-Feb-08	15620.00	=""	="LENORE COLTHEART"	27-Feb-08 04:41 PM	

+="CN63606"	"AARNet network services"	="National Archives of Australia"	27-Feb-08	="Internet service providers ISP"	14-Feb-08	31-Dec-10	72000.00	=""	="AARNET"	27-Feb-08 04:41 PM	

+="CN63607"	"Review of Proceedures"	="National Archives of Australia"	27-Feb-08	="Business and corporate management consultation services"	19-Feb-08	29-Feb-08	21631.50	=""	="MCLEOD RN"	27-Feb-08 04:41 PM	

+="CN63608"	"Printing of Memento 34"	="National Archives of Australia"	27-Feb-08	="Publication printing"	20-Feb-08	29-Feb-08	14350.60	=""	="Pirion Pty Ltd"	27-Feb-08 04:41 PM	

+="CN63609"	"Panorama adverts for Feb to June"	="National Archives of Australia"	27-Feb-08	="Print advertising"	24-Jan-08	30-Jun-08	11429.93	=""	="HMA Blaze Pty Ltd"	27-Feb-08 04:41 PM	

+="CN63610"	"Supply of Computer Equipment"	="National Archives of Australia"	27-Feb-08	="Computer Equipment and Accessories"	26-Feb-08	29-Mar-08	37230.60	=""	="DELL COMPUTERS PTY LTD"	27-Feb-08 04:42 PM	

+="CN63611"	"Mitchell Repairs and Maintenance"	="National Archives of Australia"	27-Feb-08	="Building construction and support and maintenance and repair services"	26-Feb-08	30-Jun-08	28979.50	=""	="Multiplex Facilities Management"	27-Feb-08 04:42 PM	

+="CN63612"	"Hume Rent 1/2/08 to 31/1/11"	="National Archives of Australia"	27-Feb-08	="Lease and rental of property or building"	29-Jan-08	31-Jan-11	175358.85	=""	="Mirko Jurjevic"	27-Feb-08 04:42 PM	

+="CN63613"	"Mechancial Services upgrade"	="National Archives of Australia"	27-Feb-08	="Building construction and support and maintenance and repair services"	29-Jan-08	31-Mar-08	176806.00	=""	="HADEN ENGINEERING PTY LTD"	27-Feb-08 04:42 PM	

+="CN63614"	"VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	27-Feb-08	="Motor vehicles"	27-Feb-08	12-Mar-08	15769.84	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	27-Feb-08 05:05 PM	

+="CN63615"	"Training Services"	="Australian Taxation Office"	27-Feb-08	="Management and Business Professionals and Administrative Services"	04-Feb-08	29-Feb-08	44640.00	="06.205"	="KPS and Associates Pty Ltd"	27-Feb-08 05:16 PM	

+="CN63618"	"I'm An Australian Soldier Medallions"	="Defence Materiel Organisation"	28-Feb-08	="Medals"	27-Feb-08	15-Jun-08	612810.00	=""	="Cashs Australia"	28-Feb-08 08:35 AM	

+="CN63619"	"labour and parts cost"	="Department of Defence"	28-Feb-08	="Power supply transformers"	26-Feb-08	04-Jun-08	15700.00	=""	="SWITCHMODE POWER SUPPLIES"	28-Feb-08 09:09 AM	

+="CN63621"	"NOZZLE, FIRE HOSE ALUMINIUM ALLOY, SELECT-O-MATIC NOZZLE, AUTOMATIC TYPE W/BALL VALVE SHUTOFF, 225.0 TO 757.0 L/MIN, C/W BIC MALE ADAPTER"	="Defence Materiel Organisation"	28-Feb-08	="Fire hoses or nozzles"	26-Feb-08	30-Apr-08	14632.20	="G7944"	="FIRE RESPONSE PTY LIMITED"	28-Feb-08 09:33 AM	

+="CN63622"	"Provision of Secure Web based client access system"	="Austrade"	28-Feb-08	="Computer services"	07-Sep-06	07-Sep-07	100000.00	=""	="Australian Business Research Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63623"	"Analysis, development and maintenance of existing/new application systems"	="Austrade"	28-Feb-08	="Human resources services"	18-Feb-08	30-Jun-08	101310.00	=""	="GMT Canberra Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63624-A2"	"Design and development of an electronic Documents and Records Management system solution"	="Austrade"	28-Feb-08	="Human resources services"	12-Feb-08	26-Oct-08	164010.00	=""	="Unique World Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63625"	"Planning, development and implementation of a corporate directory and advanced search functionality within Connect environnment"	="Austrade"	28-Feb-08	="Human resources services"	14-Feb-08	19-May-08	189376.00	=""	="Unique World Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63626-A1"	"Migration of Connect to the SharePoint server 2007 platform"	="Austrade"	28-Feb-08	="Human resources services"	24-Jan-08	26-Oct-08	533324.00	=""	="Unique World Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63627"	"Promotional and advisory services for the Business Club Australia Beijing 2008 program"	="Austrade"	28-Feb-08	="Human resources services"	30-Oct-07	30-Aug-08	30000.00	=""	="Xiao Hailiang"	28-Feb-08 09:33 AM	

+="CN63628"	"Preparation and facilitation of international communications workshop for Network managers"	="Austrade"	28-Feb-08	="Human resources services"	01-Nov-07	31-Jan-08	11000.00	=""	="Impact Employee Communications Pty Ltd"	28-Feb-08 09:33 AM	

+="CN63629"	"Austrade National Hotline bill for Dec 07"	="Austrade"	28-Feb-08	="Telecommunications media services"	01-Dec-07	31-Dec-07	11216.42	=""	="Telstra"	28-Feb-08 09:33 AM	

+="CN63630"	"Advertising for TC Santiago"	="Austrade"	28-Feb-08	="Published Products"	15-Feb-08	15-Feb-08	10952.43	=""	="HMA Blaze"	28-Feb-08 09:34 AM	

+="CN63631"	"Vietnamese Luncheon for APEC 07"	="Austrade"	28-Feb-08	="Hotels and lodging and meeting facilities"	07-Sep-07	27-Sep-07	15905.78	=""	="The Westin Sydney"	28-Feb-08 09:34 AM	

+="CN63632"	"China Marketing Conference Jan 07 NanSha China"	="Austrade"	28-Feb-08	="Human resources services"	03-Jan-08	29-Jan-08	12200.00	=""	="Macquarie Marketing Group"	28-Feb-08 09:34 AM	

+="CN63634-A2"	"Provision of Cleaning Services at the Mirrabooka premises of CRS Australia."	="CRS Australia"	28-Feb-08	="General building and office cleaning and maintenance services"	30-Oct-07	31-Oct-10	41251.24	=""	="Airlite Cleaning"	28-Feb-08 09:50 AM	

+="CN63635"	"Professional services between 24.11.7 to 31.12.7  Fraud Risk Assessment & Fraud Control Plan"	="Department of the Treasury"	28-Feb-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	21-Feb-08	21745.35	=""	="Ernst and Young"	28-Feb-08 09:54 AM	

+="CN63636"	"Final bill for the financial statement audit ended 30/6/07"	="Department of the Treasury"	28-Feb-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	06-Feb-08	77000.00	=""	="Australian National Audit Office"	28-Feb-08 09:54 AM	

+="CN63637"	"RISe System"	="Department of the Treasury"	28-Feb-08	="Office Equipment and Accessories and Supplies"	23-Jan-08	31-Jan-08	14500.75	=""	="Axe Group Pty Ltd"	28-Feb-08 09:54 AM	

+="CN63638"	"RISe System"	="Department of the Treasury"	28-Feb-08	="Office Equipment and Accessories and Supplies"	16-Jan-08	18-Jan-08	53084.80	=""	="Axe Group Pty Ltd"	28-Feb-08 09:54 AM	

+="CN63639"	"Office rent"	="Department of the Treasury"	28-Feb-08	="Building and Construction and Maintenance Services"	21-Feb-08	30-Jun-08	23761.50	=""	="Inspector General of Taxation (IGT)"	28-Feb-08 09:54 AM	

+="CN63640"	"Airfares"	="Department of the Treasury"	28-Feb-08	="Travel and Food and Lodging and Entertainment Services"	02-Jan-08	30-Jun-08	17135.71	=""	="American Express International"	28-Feb-08 09:54 AM	

+="CN63641"	"Provision of Advertising and Materials Under Sponsorship"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Advertising"	10-Oct-07	03-Mar-08	100000.00	="0708-0308"	="2nd International Salinity Forum"	28-Feb-08 10:00 AM	

+="CN63642"	"Prepare Architectual Plans and Documents Infrastructure Upgrade"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Professional engineering services"	19-Oct-07	28-Mar-08	385000.00	="0708-0258"	="Bill Szydlik Architects Pty Ltd"	28-Feb-08 10:04 AM	

+="CN63643"	" Provision of Third Party Abatement Services "	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	26-Oct-07	30-Jun-08	139700.00	="0607-133"	="COMMONWEALTH BANK OF AUSTRALIA"	28-Feb-08 10:12 AM	

+="CN63644-A3"	"Stage One: Irrigation Infrastructure Hotspots Annual Report Editing Services"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Water resources development and oversight"	16-Oct-07	30-Jun-08	1654000.00	="0708-114"	="CSIRO Accounts Receivable"	28-Feb-08 10:18 AM	

+="CN63652-A1"	"Evaluation of the Health Impacts of Ethanol Blend Petrol"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	23-Apr-07	29-Jun-07	2312179.16	="156/2006DEH"	="CSIRO Exploration & Mining"	28-Feb-08 10:30 AM	

+="CN63653-A2"	"Incorporate Review Comments by Managers of the World Heritage Properties"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Earth science services"	21-Dec-07	15-Jul-08	209000.00	="0708-418"	="CSIRO Sustainable Ecosystems"	28-Feb-08 10:36 AM	

+="CN63654"	"An Economic Survey of Irrigation Farms in the Cost of Water Efficiency Infrastructure Investment"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Water resources development and oversight"	16-Oct-07	30-Jun-08	1272786.00	="0708-387"	="Deptartment Agriculture, Fisheries & Forestry (DAFF)"	28-Feb-08 10:51 AM	

+="CN63657"	"Printing"	="Productivity Commission"	28-Feb-08	="Printing"	30-Jan-08	12-Feb-08	45289.20	=""	="Pirion Pty Ltd"	28-Feb-08 11:03 AM	

+="CN63658"	"Business/Systems Analysis Provide Financial Advice on Proposals"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Computer services"	10-Oct-07	31-May-08	122700.00	="0708-329"	="Dialog Information Technology"	28-Feb-08 11:04 AM	

+="CN63645"	" Project Management Services for Biometrics and Identity Management Project "	="Department of Immigration and Citizenship"	28-Feb-08	="Business function specific software"	14-Jan-08	30-Jun-08	2429509.00	=""	="Unisys Australia Pty Limited"	28-Feb-08 11:10 AM	

+="CN63660"	"Prepare Architectural Plans and Documents"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="General building construction"	18-Oct-07	28-Mar-08	385000.00	="0708-116"	="Hindmarsh"	28-Feb-08 11:15 AM	

+="CN63662-A2"	"Project Management Services for Citizenship and Identity Management Project"	="Department of Immigration and Citizenship"	28-Feb-08	="Business function specific software"	14-Jan-08	30-Jun-08	1412804.00	=""	="Unisys Australia Pty Limited"	28-Feb-08 11:16 AM	

+="CN63666"	"Enterprise Computing Renewal"	="Productivity Commission"	28-Feb-08	="Software"	27-Nov-07	27-Nov-07	55000.00	=""	="SAS Institute Australia P/L"	28-Feb-08 11:23 AM	

+="CN63667-A1"	"Provision of E-Recruitment Services for Training and Technical Writing"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Software"	10-Oct-07	26-Aug-09	130000.00	="0607-188"	="Nga.net Pty Ltd"	28-Feb-08 11:27 AM	

+="CN63668"	"Variation - Scrivener Dam Electrical Upgrade Works (refer Gaps reference 1561294)"	="National Capital Authority"	28-Feb-08	="Dam maintenance or management services"	01-Feb-08	30-Jun-08	34840.02	=""	="Ecowise Environmental"	28-Feb-08 11:32 AM	

+="CN63670-A1"	"Supply and Installation of Moorings in WA"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	02-Nov-07	28-Jan-08	294920.00	="0708-065"	="Pacific Marine Group Pty Ltd"	28-Feb-08 11:32 AM	

+="CN63671-A3"	"Provision of Enterprise Portfolio Management System"	="Comsuper"	28-Feb-08	="Software"	13-Feb-08	13-Feb-10	307009.95	=""	="Compuware"	28-Feb-08 11:32 AM	

+="CN63675"	"Conference"	="Productivity Commission"	28-Feb-08	="Conference centres"	08-Aug-07	08-Aug-07	22892.00	=""	="Sofitel Melbourne"	28-Feb-08 11:45 AM	

+="CN63676"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	28-Feb-08	="Medical Equipment and Accessories and Supplies"	19-Feb-08	18-Apr-08	66652.06	=""	="Smith & Nephew (Australia) Pty Ltd"	28-Feb-08 11:46 AM	

+="CN63677"	"Upgrade and Reporting of Information Technology Syarc Linkage Project - Related to Provision of Data"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Information services"	25-Oct-07	30-Oct-07	364210.00	="0708-499"	="SAP Australia"	28-Feb-08 11:47 AM	

+="CN63678-A3"	"Accommodation Rental Developmental Services for On-Line Reporting"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Real estate services"	12-Oct-07	30-Apr-08	342735.19	="0708-430"	="SERVCORP"	28-Feb-08 11:51 AM	

+="CN63679"	"Stocktake of Australia's Non-Urban Water Matering Accreditation"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Water resources development and oversight"	31-Oct-07	31-Jan-08	381794.00	="0607-533"	="Sinclair Knight Merz"	28-Feb-08 11:55 AM	

+="CN63680"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	28-Feb-08	="Medical Equipment and Accessories and Supplies"	20-Feb-08	28-Feb-08	10082.59	=""	="Hastings Data Loggers"	28-Feb-08 11:59 AM	

+="CN63682"	"SL3 Development Days"	="Productivity Commission"	28-Feb-08	="Conference centres"	03-Dec-07	04-Feb-08	12154.00	=""	="Sofitel Mansion & Spa"	28-Feb-08 12:01 PM	

+="CN63681-A1"	"Development System Testing and Deployment Conference Management"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management advisory services"	31-Oct-07	28-Mar-08	180000.00	="0708-509"	="SRA Information Technology"	28-Feb-08 12:03 PM	

+="CN63683-A2"	"Advice Provided for Equipment Energy Efficiency Risk Assessment"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	30-Jun-08	278120.31	="0708-432"	="Steven Beletich Associates"	28-Feb-08 12:09 PM	

+="CN63684"	"Folder Contents & Collation"	="Productivity Commission"	28-Feb-08	="Printing"	04-Sep-07	04-Feb-08	16305.30	=""	="Spectrum Graphics"	28-Feb-08 12:10 PM	

+="CN63688"	"National Land Leasing & Licencing"	="National Capital Authority"	28-Feb-08	="Land leases"	07-Jan-08	31-May-08	38500.00	=""	="David Wright"	28-Feb-08 12:26 PM	

+="CN63689"	"MySource Matrix Pack and Support"	="Productivity Commission"	28-Feb-08	="Internet services"	24-Oct-07	20-Dec-07	66000.00	=""	="Squiz.net"	28-Feb-08 12:28 PM	

+="CN63690-A2"	"Provision for Project Manager"	="Comsuper"	28-Feb-08	="Human resources services"	16-Feb-08	24-Oct-08	170400.00	=""	="Clicks Recruit"	28-Feb-08 01:04 PM	

+="CN63691-A1"	"Developmental Services for On-Line Reporting and Provision of Accounting and Financial Services"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	200000.00	="0708-448"	="Strategic Data Management PTY LTD"	28-Feb-08 01:04 PM	

+="CN63692-A1"	" Variation of Provision for System Tester "	="Comsuper"	28-Feb-08	="Human resources services"	23-Aug-07	23-May-08	33000.00	=""	="M&T Resources"	28-Feb-08 01:07 PM	

+="CN63694-A2"	" Develop and Implement Abatement Changes and Cleaning Services in the Norhtern Territory "	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Management and Business Professionals and Administrative Services"	24-Oct-07	31-Jan-08	363000.00	="0708-469"	="Strategic Data Management PTY LTD"	28-Feb-08 01:09 PM	

+="CN63695-A1"	" Variation to Provision of Senior Business Analyst "	="Comsuper"	28-Feb-08	="Human resources services"	21-Feb-08	22-Feb-08	108680.00	=""	="Stratagem"	28-Feb-08 01:10 PM	

+="CN63696-A1"	"Provision for Senior Business Analyst"	="Comsuper"	28-Feb-08	="Human resources services"	25-Feb-08	27-Feb-09	220880.00	=""	="Stratagem"	28-Feb-08 01:13 PM	

+="CN63697-A1"	"Design, Implementation and Testing of the National Supply and Installation of moorings in Western Australia"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Water resources development and oversight"	02-Nov-07	22-Jun-09	272855.00	="0708-431"	="Tanner James Management Consultants Pty Ltd"	28-Feb-08 01:27 PM	

+="CN63698"	"Production of DVD on Indigenous Protected Area Business/Systems Analysis"	="Department of the Environment Water Heritage and the Arts"	28-Feb-08	="Audio and visual presentation and composing equipment"	10-Oct-07	30-Jun-08	165000.00	="0708-360"	="The Production Hub"	28-Feb-08 01:34 PM	

+="CN63699"	"Provision of help-desk Analyst"	="Family Court of Australia"	28-Feb-08	="Technical support or help desk services"	03-Mar-08	05-Sep-08	52976.00	=""	="Clicks Recruit Pty Ltd"	28-Feb-08 01:46 PM	

+="CN63700-A1"	" SAN and Fibre Upgrade "	="Productivity Commission"	28-Feb-08	="Computer Equipment and Accessories"	27-Nov-07	06-Feb-08	45165.98	=""	="Thomas Duryea Consulting P/L"	28-Feb-08 01:52 PM	

+="CN63701-A2"	" Email classification software. "	="Productivity Commission"	28-Feb-08	="Software"	01-Feb-08	01-Feb-08	18597.00	=""	="Titus  Labs Inc"	28-Feb-08 01:55 PM	

+="CN63704"	"Removals"	="Productivity Commission"	28-Feb-08	="Relocation services"	21-Jan-08	22-Jan-08	31421.00	=""	="Toll Transitions"	28-Feb-08 01:59 PM	

+="CN63703"	"Review of Gynaecological Cancers Workforce"	="Cancer Australia"	28-Feb-08	="Health administration services"	18-Feb-08	30-Jun-08	303158.00	=""	="National Institute of Labour Studies Inc"	28-Feb-08 02:00 PM	

+="CN63710"	"qty 30 cable assemblies for use with military communications."	="Defence Materiel Organisation"	28-Feb-08	="Electrical wire and cable and harness"	26-Feb-08	08-Jul-08	30327.00	="RFQ-C7102"	="EYLEX PTTY LTD"	28-Feb-08 03:44 PM	

+="CN63713-A1"	" PC9/A RI DEEPER MAINTENANCE CONTRACT FOR A23 AIRCRAFT.  INCREASE IN CONTRACT VALUE FROM $17,685,000.00.  ORIGINALLY 'GAZETTED' IN AUG 2004 AS CONTRACT ID 1396038 "	="Defence Materiel Organisation"	28-Feb-08	="Military fixed wing aircraft"	12-Aug-04	14-Nov-12	50939000.00	=""	="AIRFLITE PTY LTD"	28-Feb-08 03:54 PM	

+="CN63714"	"AIRCRAFT SPARES:QTY 70:NSN-5310-01-143-7373:NUT,SELF-LOCKING,BARREL"	="Defence Materiel Organisation"	28-Feb-08	="Military rotary wing aircraft"	28-Feb-08	20-Mar-08	10509.50	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	28-Feb-08 03:56 PM	

+="CN63716"	" NOZZLE FUEL INJECTION ATOMISER  PUMP FUEL METERING AND DISTRIBUTION "	="Defence Materiel Organisation"	28-Feb-08	="Fuels and Fuel Additives and Lubricants and Anti corrosive Materials"	28-Feb-08	14-Apr-08	13259.09	=""	="ALLIGHT PTY LTD"	28-Feb-08 04:04 PM	

+="CN63717"	"Agricultural training"	="Australian Centre for International Agricultural Research"	28-Feb-08	="Agricultural research services"	15-Jan-08	15-Feb-08	18865.00	=""	="Four Scenes Pty Ltd"	28-Feb-08 04:12 PM	

+="CN63720"	"METAL SHEET "	="Defence Materiel Organisation"	28-Feb-08	="Aerospace systems and components and equipment"	26-Feb-08	27-Mar-08	39213.35	=""	="AIRPORT METALS (AUSTRALIA) P/L"	28-Feb-08 04:16 PM	

+="CN63723"	"Project review"	="Australian Centre for International Agricultural Research"	28-Feb-08	="Agricultural research services"	19-Nov-07	04-Jan-08	10600.00	=""	="Landcare Research Ltd"	28-Feb-08 04:24 PM	

+="CN63728"	"Specialist services required to review the design of the CICS to support the CP R3 FDF facility."	="Australian Taxation Office"	28-Feb-08	="Information technology consultation services"	03-Mar-08	07-Mar-08	11550.00	=""	="IBM Australia Ltd"	28-Feb-08 04:35 PM	

+="CN63734"	"Project development"	="Australian Centre for International Agricultural Research"	28-Feb-08	="Water resources development and oversight"	14-Feb-08	26-Feb-08	18150.00	=""	="CSIRO LAND & WATER"	28-Feb-08 04:41 PM	

+="CN63737-A2"	"Provision for Project Management Fundamentals Training"	="Department of Immigration and Citizenship"	28-Feb-08	="Employee education"	14-Jan-08	30-Jun-08	179626.00	=""	="Richardson O'Rourke Consulting Pty Ltd"	28-Feb-08 04:52 PM	

+="CN63741-A1"	"Services to assist process development"	="Australian Crime Commission"	28-Feb-08	="Business and corporate management consultation services"	18-May-07	18-May-10	487940.00	="RFT ACC/2006/13,"	="Oxygen Business Solutions"	28-Feb-08 05:03 PM	

+="CN63743"	"Wiring Harness Assy ASLAV"	="Department of Defence"	29-Feb-08	="Armoured fighting vehicles"	29-Feb-08	11-Oct-08	37922.50	=""	="GENERAL DYNAMICS LAND SYSTEMS"	29-Feb-08 08:27 AM	

+="CN63744"	"s/stn rep mog cgo arn-46071"	="Department of Defence"	29-Feb-08	="Motor vehicles"	29-Feb-08	28-Mar-08	14101.10	=""	="RGM MAINTENANCE"	29-Feb-08 08:35 AM	

+="CN63745"	"motor vehicle spare parts"	="Department of Defence"	29-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	17073.85	=""	="Rover Australia"	29-Feb-08 09:17 AM	

+="CN63746"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0621 IAW standing Offer Pn7785"	="Defence Materiel Organisation"	29-Feb-08	="Aerospace systems and components and equipment"	28-Feb-08	31-Mar-08	60136.12	=""	="Goodrich Control Systems PTY LTD"	29-Feb-08 09:18 AM	

+="CN63747"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	21501.48	=""	="VOLVO COMMERCIAL VEHICLES"	29-Feb-08 09:22 AM	

+="CN63749"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Feb-08	28-Mar-08	12563.45	=""	="Rover Australia"	29-Feb-08 09:26 AM	

+="CN63751-A1"	"Recruitment EL1 - Property Officer"	="Family Court of Australia"	29-Feb-08	="Personnel recruitment"	04-Feb-08	03-Aug-08	13734.44	=""	="Hays Personnel Service (Australia) Pty Ltd"	29-Feb-08 09:34 AM	

+="CN63753-A1"	"Architectural/Mechanical/Electrical/Fire Protection to alterations to office space for Legal Associates Brisbane Registry"	="Family Court of Australia"	29-Feb-08	="Project management"	28-Feb-08	27-May-08	12364.00	=""	="Cocoon Design Pty Ltd"	29-Feb-08 09:56 AM	

+="CN63755"	"FASTERNER, QUICK RELEASE"	="Defence Materiel Organisation"	29-Feb-08	="Snap fastener"	03-Sep-07	02-May-08	51040.00	=""	="RFD AUSTRALIA P/L"	29-Feb-08 09:59 AM	

+="CN63756"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	29-Feb-08	="Aircraft spars"	29-Feb-08	20-Nov-08	27171.45	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	29-Feb-08 10:05 AM	

+="CN63757"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	29-Feb-08	="Aircraft spars"	29-Feb-08	22-Sep-08	10996.37	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	29-Feb-08 10:10 AM	

+="CN63758"	"Disposal of Batteries at Moorebank NSW"	="Defence Materiel Organisation"	29-Feb-08	="Lithium batteries"	14-Nov-07	28-Dec-07	132715.78	=""	="THEISS SERVICES"	29-Feb-08 10:17 AM	

+="CN63759-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	29-Feb-08	="Management advisory services"	26-Feb-08	08-Apr-08	10689.00	=""	="Persec Solutions Pty Ltd"	29-Feb-08 10:19 AM	

+="CN63760"	"HARNESS AIR SEA RECUE"	="Defence Materiel Organisation"	29-Feb-08	="Aircraft harness restraints"	31-Aug-07	31-Aug-08	84810.00	=""	="RFD AUSTRALIA P/L"	29-Feb-08 10:20 AM	

+="CN63761"	"Tractor parts"	="Department of Defence"	29-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Feb-08	10-Mar-08	38785.76	=""	="National Equipment"	29-Feb-08 10:40 AM	

+="CN63768-A2"	"Lease at Hume, ACT"	="Centrelink"	29-Feb-08	="Lease and rental of property or building"	01-Mar-08	30-Jun-10	101361.00	=""	="Butler and Scougall Rental Partnership"	29-Feb-08 11:26 AM	

+="CN63769-A1"	"Performance management"	="Australian Taxation Office"	29-Feb-08	="Human resource development"	25-Feb-08	15-Mar-08	11685.80	=""	="Fyusion Asia Pacific Pty Ltd"	29-Feb-08 11:34 AM	

+="CN63771"	"Provision of Oracle Applications Development Services"	="Family Court of Australia"	29-Feb-08	="Temporary information technology systems or database administrators"	13-Feb-08	12-Aug-08	100320.00	=""	="I.T. Matters Recruitment Services Pty Ltd"	29-Feb-08 11:45 AM	

+="CN63770"	"Cable 2 Rolls and Connectors"	="Defence Materiel Organisation"	29-Feb-08	="Air transportation support systems and equipment"	11-Feb-08	29-Feb-08	11513.70	=""	="Hawker Pacific Pty Ltd"	29-Feb-08 11:46 AM	

+="CN63772"	"Provision of Consultancy services - Review of Family Law Courts Board"	="Family Court of Australia"	29-Feb-08	="Organisational structure consultation"	24-Jan-07	15-Mar-07	16100.00	=""	="Professor,Faculty of Law, Monash University"	29-Feb-08 11:54 AM	

+="CN63775-A1"	"IT Consulting and Support Services"	="Federal Court of Australia"	29-Feb-08	="Information technology consultation services"	20-Feb-08	18-Apr-08	27200.00	=""	="IMAGINE IT SOULTIONS"	29-Feb-08 12:35 PM	

+="CN38192"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	13492.20	=""	="CARLSON WAGONLIT TRAVEL"	29-Feb-08 12:41 PM	

+="CN38196"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	10301.20	=""	="CARLSON WAGONLIT TRAVEL"	29-Feb-08 12:50 PM	

+="CN40257"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	10301.20	=""	="CARSLON WAGONLIT TRAVEL"	29-Feb-08 12:53 PM	

+="CN38202"	" INTERNATIONAL TRAVEL "	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	10301.20	=""	="CARLSON WAGONLIT TRAVEL"	29-Feb-08 01:01 PM	

+="CN38188"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	10301.20	=""	="CARLSON WAGONLIT TRAVEL"	29-Feb-08 01:07 PM	

+="CN40259"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	10301.20	=""	="CARLSON WAGONLIT TRAVEL"	29-Feb-08 01:12 PM	

+="CN63778"	"Provision of IT service contractor"	="Civil Aviation Safety Authority"	29-Feb-08	="Temporary information technology systems or database administrators"	15-Feb-08	30-Jun-08	73603.00	="06/063-02"	="Freelance Global Limited"	29-Feb-08 01:13 PM	

+="CN40258"	"INTERNATIONAL TRAVEL"	="Office of the Official Secretary to the Governor-General"	29-Feb-08	="Commercial aeroplane travel"	05-Jul-07	05-Jul-07	13492.20	=""	="CARSLON WAGONLIT TRAVEL"	29-Feb-08 01:18 PM	

+="CN63781"	"repair mack gs arn-36378 wally s/stn"	="Department of Defence"	29-Feb-08	="Motor vehicles"	29-Feb-08	28-Mar-08	15400.00	=""	="VOLVO AUSTRALIA"	29-Feb-08 01:26 PM	

+="CN63783"	"Implementation of TRIM software upgrade - additional Workflow requirements"	="Civil Aviation Safety Authority"	29-Feb-08	="Software"	30-Jan-08	30-Jun-08	34155.00	="06/169-02"	="Alphawest Pty Ltd"	29-Feb-08 01:31 PM	

+="CN63785"	" VEHICLE REPAIRS "	="Department of Defence"	29-Feb-08	="Motor vehicles"	27-Mar-07	26-Apr-07	15458.36	=""	="FB AUTOS"	29-Feb-08 01:46 PM	

+="CN63786"	"Provision of IT Business Analyst Services"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	02-Mar-08	30-Jun-08	67584.00	="07/047-01"	="Ross HUman Directions Group"	29-Feb-08 01:56 PM	

+="CN63787"	"Provision of IT Business Analyst Services"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	02-Mar-08	30-Jun-08	81100.00	="07/050-01"	="Hudson Global Resources (Aust) Pty Ltd"	29-Feb-08 01:59 PM	

+="CN63788"	"Professional services of a Siebal architect"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	11-Feb-08	31-Jul-08	182688.00	="07/085-01"	="Ross Human Directions Group"	29-Feb-08 02:03 PM	

+="CN63789"	"MS Project Server Installation & Support"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	04-Feb-08	31-Jul-08	150000.00	="07/107-00"	="Pcubed Australia"	29-Feb-08 02:18 PM	

+="CN63790"	"Technical Writer for ISG"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	18-Feb-08	30-Jun-08	91238.00	="07/123-00"	="GMT People Pty Ltd"	29-Feb-08 02:22 PM	

+="CN63791"	"Senior Business Analyst"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	29-Jan-08	30-Jun-08	108768.00	="07/162-00"	="Ross Human Directions Group"	29-Feb-08 02:26 PM	

+="CN63792"	"Development of NVG Operations Manual"	="Civil Aviation Safety Authority"	29-Feb-08	="Business and corporate management consultation services"	22-Jan-08	16-Apr-08	43560.00	="07/176-00"	="Aero Support Group Pty Ltd"	29-Feb-08 02:37 PM	

+="CN63793"	"Parachutist Smock"	="Defence Materiel Organisation"	29-Feb-08	="Clothing"	29-Feb-08	16-May-08	31233.73	="2480024"	="Tuffa Workwear Pty Ltd"	29-Feb-08 02:52 PM	

+="CN63794"	"Provision of Lead Auditor Training Courses"	="Civil Aviation Safety Authority"	29-Feb-08	="Business and corporate management consultation services"	03-Feb-08	05-Dec-08	154000.00	="07/193-00"	="Gray Management Systems Pty Ltd"	29-Feb-08 02:54 PM	

+="CN830"	"Removal services for staff temporarily transferred to the DPC in Melbourne (GAPS ID: 1688573)"	="Australian Bureau of Statistics"	29-Feb-08	="Transportation and Storage and Mail Services"	21-Jun-07	31-Dec-07	55000.00	=""	="TOLL TRANSITIONS"	29-Feb-08 02:54 PM	

+="CN63795"	"Provision for the Development and Delivery of a Range of Reference and Learning Materials"	="Department of Immigration and Citizenship"	29-Feb-08	="Employee education"	14-Feb-08	30-May-08	41600.00	=""	="Jenny Oates & Associates Pty Ltd"	29-Feb-08 02:57 PM	

+="CN63796"	"Establishment Assistance for the CASA Contribution to the Indonesian Training Safety Assistance Package (ITSAP)"	="Civil Aviation Safety Authority"	29-Feb-08	="Business and corporate management consultation services"	04-Feb-08	11-Apr-08	40000.00	="07/195-00"	="Goodrick & Associates Pty Ltd"	29-Feb-08 03:02 PM	

+="CN63797"	"Team Leader - Internal Budgeting and Reporting"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	25-Feb-08	23-May-08	75000.00	="07/212-00"	="Total Decision Support Pty Ltd"	29-Feb-08 03:08 PM	

+="CN63798"	"Financial Consultant - External Budget Model"	="Civil Aviation Safety Authority"	29-Feb-08	="Financial accounting"	18-Feb-08	02-May-08	25000.00	="07/214-00"	="Ascent Governance Pty Ltd"	29-Feb-08 03:13 PM	

+="CN63799"	"Project Manager - DCU Print transition"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	25-Feb-08	30-Jun-08	88000.00	="07/215-00"	="Hays Personnel Services"	29-Feb-08 03:16 PM	

+="CN63800"	"Legal Costs"	="Department of Finance and Administration"	29-Feb-08	="Building and Construction and Maintenance Services"	01-Jul-07	31-Jul-07	10081.61	=""	="FEDERAL COURT OF AUSTRALIA"	29-Feb-08 03:20 PM	

+="CN63801"	"Training & Education Costs"	="Department of Finance and Administration"	29-Feb-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Nov-07	49008.13	="N/A"	="THE NOUS GROUP"	29-Feb-08 03:20 PM	

+="CN63803"	"Contractor Costs"	="Department of Finance and Deregulation"	29-Feb-08	="Management and Business Professionals and Administrative Services"	25-Jan-07	25-Jan-08	11110.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	29-Feb-08 03:21 PM	

+="CN63804"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	29-Feb-08	="Building and Construction and Maintenance Services"	27-Feb-08	25-Jan-09	457862.02	="Pending project manager"	="KANE CONSTRUCTIONS"	29-Feb-08 03:21 PM	

+="CN63805"	"Legal Costs"	="Department of Finance and Deregulation"	29-Feb-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	30-Jun-08	60000.00	="RFT LSB 01/2005"	="BLAKE DAWSON - ACT"	29-Feb-08 03:21 PM	

+="CN63806"	"Recruitment Costs"	="Department of Finance and Deregulation"	29-Feb-08	="Information Technology Broadcasting and Telecommunications"	22-Feb-08	21-Feb-09	46178.00	="n/a"	="NGA.NET PTY LTD"	29-Feb-08 03:21 PM	

+="CN63807"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	29-Feb-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	28-Feb-09	15600.00	="N/A"	="GARTNER AUSTRALASIA-010040284"	29-Feb-08 03:21 PM	

+="CN63808"	"Project Manager and Superintendency"	="Department of Finance and Deregulation"	29-Feb-08	="Engineering and Research and Technology Based Services"	27-Feb-08	30-Jun-08	206360.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	29-Feb-08 03:21 PM	

+="CN63802"	"Electronic Whiteboard"	="Civil Aviation Safety Authority"	29-Feb-08	="Interactive whiteboards or accessories"	04-Feb-08	04-Mar-08	40973.00	="07/217-00"	="Electroboard"	29-Feb-08 03:23 PM	

+="CN63809"	"Provision of Workstation and Office Furniture"	="Civil Aviation Safety Authority"	29-Feb-08	="Office furniture"	08-Feb-08	06-Feb-09	1366512.00	="07/221-00"	="925 Interiors Canberra Contract Furniture"	29-Feb-08 03:30 PM	

+="CN63810"	"Telephony Swith, associated ancilaries and installation services"	="Civil Aviation Safety Authority"	29-Feb-08	="Telecommunications cable"	01-Apr-08	31-Mar-09	52004.00	="Telstra"	="Telstra"	29-Feb-08 03:35 PM	

+="CN63812"	"Temporary Staff - CASR 131,103,105 & 149 projects"	="Civil Aviation Safety Authority"	29-Feb-08	="Recruitment services"	11-Feb-08	30-Jun-08	37456.00	="07/223-00"	="Green and Green Recruitment"	29-Feb-08 03:38 PM	

+="CN63813"	"ELP Project Mail Out"	="Civil Aviation Safety Authority"	29-Feb-08	="Postal and small parcel and courier services"	01-Jan-08	31-Jan-08	10076.00	="07/224-00"	="Canberra Mailing & Envelopes"	29-Feb-08 03:48 PM 

--- /dev/null
+++ b/admin/partialdata/26May2008to28May2008valto.xls
@@ -1,1 +1,398 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN85998"	"PROVISION OF ENGINEER PLANT REPAIR PARTS"	="Defence Materiel Organisation"	26-May-08	="Heavy construction machinery and equipment"	26-May-08	25-Jun-08	16355.16	=""	="THALES AUSTRALIA"	26-May-08 08:26 AM	

+="CN85999"	"Provision of services in relation to high level Project Management services"	="Australian Federal Police"	26-May-08	="Project management"	01-Jul-08	30-Jun-09	256484.80	=""	="Stratagem Computer Contractors Pty Limited"	26-May-08 09:06 AM	

+="CN86000-A1"	" Facilitate the ATO People SES/EL2 annual conference "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Sep-08	20800.00	="06.028-59"	="Hoffman Donohue P/L"	26-May-08 09:07 AM	

+="CN86001"	"Procurement of Records Mangement Stationery Supplies"	="Australian Securities and Investments Commission"	26-May-08	="Stationery"	01-Oct-07	31-Oct-07	21376.14	=""	="Codafile"	26-May-08 09:24 AM	

+="CN86002"	" Corporate merchandise for AFP forensics "	="Australian Federal Police"	26-May-08	="Security and control equipment"	01-May-08	30-Jun-08	17168.75	=""	="Corporate Eepress"	26-May-08 09:26 AM	

+="CN86004-A1"	"Provision of Project Management Services"	="Australian Securities and Investments Commission"	26-May-08	="Project management"	02-Jan-08	24-Apr-08	93307.50	=""	="Ajilon Australia PtyLtd"	26-May-08 09:40 AM	

+="CN86006-A2"	"Provision of IT Contracting Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	02-Jan-08	24-Apr-08	59015.00	=""	="Ajilon Australia Pty Ltd"	26-May-08 09:46 AM	

+="CN86007-A1"	" Lease at 430 Wilson St, Albury, VIC "	="Department of Human Services"	26-May-08	="Lease and rental of property or building"	01-Sep-09	28-Oct-16	8759485.42	=""	="Regional Holding Pty Ltd"	26-May-08 09:54 AM	

+="CN86008"	"Supply of Plain Weave Khaki Cloth"	="Defence Materiel Organisation"	26-May-08	="Plain weave cotton fabrics"	11-Apr-08	18-May-08	19790.32	=""	="Australian Defence Apparel"	26-May-08 09:59 AM	

+="CN86012"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	26-May-08	="Building and Construction and Maintenance Services"	20-May-08	30-Jun-08	109156.30	="."	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-May-08 10:15 AM	

+="CN86013"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	13-Jul-07	25-Sep-07	20760.00	=""	="HYATT HOTEL CANBERRA"	26-May-08 10:16 AM	

+="CN86014"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="fin/CAPSHR"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86015"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86016"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	15000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	26-May-08 10:16 AM	

+="CN86017"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	27-Jun-08	20250.00	="N/A"	="GREYTHORN PTY LTD"	26-May-08 10:16 AM	

+="CN86018"	"Recruitment Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	28-Nov-08	123874.00	=""	="CLICKS RECUIT PTY LTD"	26-May-08 10:16 AM	

+="CN86019"	"Documentation Services"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	30-Jun-08	33000.00	="n/a"	="UNITED FOCUS PTY LTD"	26-May-08 10:16 AM	

+="CN86020"	"Fire Services Payment"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-10	26600000.00	=""	="ACT EMERGENCY SERVICE BUREAU - 10000173"	26-May-08 10:16 AM	

+="CN86021"	"Contractor Costs"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	41250.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	26-May-08 10:17 AM	

+="CN86022"	"Market Research Advisory Services"	="Department of Finance and Deregulation"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	28-Nov-08	248424.00	="exercise of contract extension"	="ROY MORGAN RESEARCH PTY LTD"	26-May-08 10:17 AM	

+="CN86023"	"Services of Capital Works Assistant"	="Questacon"	26-May-08	="Temporary clerical or administrative assistance"	01-May-08	23-Oct-08	44000.00	=""	="Vedior Asia Pacific P/L"	26-May-08 10:21 AM	

+="CN86027"	"2xLCD Television purchased and installation and accessories.11/03/2008 was date that invoice was signed.  Goods were delivered within 2 weeks of signing."	="Department of Veterans' Affairs"	26-May-08	="Consumer electronics"	11-Mar-08	11-Mar-08	41676.00	=""	="GPT Designs Pty Ltd"	26-May-08 11:05 AM	

+="CN86028"	"Property Lease - Memorandum of Understanding (MOU) for 120 Miller Rd Villawood NSW 2163"	="Department of Veterans' Affairs"	26-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-10	66900.00	=""	="National Archives of Australia"	26-May-08 11:05 AM	

+="CN86029"	" Rent for VVCS Townsville, "	="Department of Veterans' Affairs"	26-May-08	="Real estate services"	01-Dec-04	09-Nov-14	1107546.00	=""	="Elders Real Estate"	26-May-08 11:05 AM	

+="CN86030"	"Provisions for Professional Development Programme"	="Department of Immigration and Citizenship"	26-May-08	="Productivity or efficiency studies or implementation"	12-May-08	26-Jun-08	13200.00	=""	="D'Arcy Consulting Group Pty Limited"	26-May-08 11:21 AM	

+="CN86003"	"Provision of Financial Management Training Modules 2008-2011"	="Department of Broadband Communications and the Digital Economy"	26-May-08	="Public Utilities and Public Sector Related Services"	23-Jan-08	23-Jan-11	444640.00	="CCR/06/2478"	="Australian Capital Training Group"	26-May-08 11:26 AM	

+="CN86032"	"Provision of IT contracting services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	30-Apr-08	42407.00	=""	="Allegro Recruitment Consulting Ltd"	26-May-08 11:42 AM	

+="CN86033"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	13-May-08	11-Jul-08	35060.00	=""	="Greythorn Pty Ltd"	26-May-08 11:48 AM	

+="CN86035"	"CPE002796-12 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15203.65	=""	="CRIMTRAC"	26-May-08 11:53 AM	

+="CN86036"	"CPO021905 - Supply of CCTV Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Information Technology Broadcasting and Telecommunications"	30-Apr-08	30-Jun-08	49659.50	=""	="KW McCulloch Pty Ltd"	26-May-08 11:53 AM	

+="CN86037"	"CPO021920 - Provision of Reporting Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	10-Apr-08	14889.60	=""	="Ebisprint"	26-May-08 11:54 AM	

+="CN86038"	"CPE003920-5 - Supply of Stationery"	="Australian Customs and Border Protection Service"	26-May-08	="Office supplies"	23-Apr-08	06-May-08	13487.94	=""	="Corporate Express Australia Ltd"	26-May-08 11:54 AM	

+="CN86039"	"08/2764 - Data Entry Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	16800.00	=""	="Patriot Allianace"	26-May-08 11:54 AM	

+="CN86040"	"CPE004792-1 - Construction Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Building and Construction and Maintenance Services"	24-Apr-08	24-May-08	17600.00	=""	="ATIR Design Pty Ltd"	26-May-08 11:54 AM	

+="CN86041"	"CPO021136 - Supply & Install Solar Panels"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	08-Apr-08	05-Jun-08	48380.28	=""	="Motorola Australia Pty Ltd"	26-May-08 11:54 AM	

+="CN86042"	"CPO021985 - Supply & Install Solar Panels"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	05-Jun-08	31016.55	=""	="Motorola Australia Pty Ltd"	26-May-08 11:54 AM	

+="CN86043"	"07/2196 - Cleaning and Associated Services"	="Australian Customs and Border Protection Service"	26-May-08	="Cleaning and janitorial services"	01-Feb-08	31-Jan-11	43200.00	=""	="EJ & KP Dick Contractors T/A Broome Industrial Rag"	26-May-08 11:54 AM	

+="CN86044"	"07/2461 - Executive Search Services (CPE004830-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Human resources services"	05-Nov-07	30-Mar-08	60000.00	=""	="Watermark Search International"	26-May-08 11:55 AM	

+="CN86045"	"CPO021963 -Commercial Grade Furniture"	="Australian Customs and Border Protection Service"	26-May-08	="Furniture and Furnishings"	01-May-08	31-May-08	17391.00	=""	="The Living Edge Group Pty Ltd"	26-May-08 11:55 AM	

+="CN86046"	"CPE004892-1 - Construction Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Building and Construction and Maintenance Services"	13-May-08	25-Jun-08	10105.22	=""	="ATIR Design Pty Ltd"	26-May-08 11:55 AM	

+="CN86047"	"08/2563 - Management System (CPE004891-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	250000.00	=""	="Keywatch Systems Queensland"	26-May-08 11:55 AM	

+="CN86048"	"CPO022126 - Supply and Installation of Radio Communnications Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Information Technology Broadcasting and Telecommunications"	14-May-08	30-Jun-08	21799.80	=""	="Omnitronics Pty Ltd"	26-May-08 11:55 AM	

+="CN86050"	"CPE004776-1  - Annual Conference"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	12-Jun-08	25000.00	=""	="The Sands Torquay"	26-May-08 11:55 AM	

+="CN86051"	"CPO022108 - Interview Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	13758.60	=""	="TPR Systems"	26-May-08 11:56 AM	

+="CN86069"	"CPE004880-1 - Fuel"	="Australian Customs and Border Protection Service"	26-May-08	="Fuels"	01-Apr-08	01-Apr-08	18094.54	=""	="Port Kembla Marine Fuels"	26-May-08 11:58 AM	

+="CN86071"	"08/2555 - Research & Development"	="Australian Customs and Border Protection Service"	26-May-08	="Professional engineering services"	10-Apr-08	30-Sep-09	1066000.00	=""	="QRSciences Pty Ltd"	26-May-08 11:59 AM	

+="CN86072-A1"	"08/2573 - Apprecticeship Program"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	01-Mar-08	30-Jun-11	437000.00	=""	="Excelior"	26-May-08 11:59 AM	

+="CN86073"	"CPO022120 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	12581.25	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86074"	"CPO022119 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	37213.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86075"	"CPO022118 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	24310.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86076"	"CPO022117 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	26-May-08	="Clothing"	14-May-08	11-Aug-08	10846.00	=""	="Trade Import Services"	26-May-08 11:59 AM	

+="CN86077"	"CPO021662 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	08-May-08	11261.25	=""	="ID Supplies"	26-May-08 11:59 AM	

+="CN86079"	"08/2722 - Project Management Training"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	14-May-08	30-Jun-08	16000.00	=""	="Codarra Advanced Systems Pty Ltd"	26-May-08 12:00 PM	

+="CN86080"	"CPE002796-13 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13809.95	=""	="CRIMTRAC"	26-May-08 12:00 PM	

+="CN86081"	"07/2182 - Suplly and Installation of Software (CPE004774-1)"	="Australian Customs and Border Protection Service"	26-May-08	="Computer services"	01-Aug-07	30-Jun-08	404129.00	=""	="Eden Technology Pty Ltd"	26-May-08 12:00 PM	

+="CN86082"	"CPO022210 - Software Upgrade"	="Australian Customs and Border Protection Service"	26-May-08	="Computer services"	15-May-08	15-May-08	12870.00	=""	="Southern Cross Computing Pty Ltd"	26-May-08 12:00 PM	

+="CN86083"	"08/2810 - Supply Chairs"	="Australian Customs and Border Protection Service"	26-May-08	="Furniture and Furnishings"	02-May-08	01-May-09	84122.50	=""	="The Living Edge Group Pty Ltd"	26-May-08 12:00 PM	

+="CN86084-A2"	"06/1676 - Consultancy Services"	="Australian Customs and Border Protection Service"	26-May-08	="Business and corporate management consultation services"	03-Mar-08	30-Jun-10	60000.00	=""	="Adelaide Research & Innovation"	26-May-08 12:00 PM	

+="CN86085"	"CPO022282 - Motor vehicle hazard equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Motor vehicles"	20-May-08	20-May-08	11414.15	=""	="Hazard Systems"	26-May-08 12:00 PM	

+="CN86086"	"CPE004525-1 - Survey Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	13-May-08	23320.00	=""	="McKinlay Morgan & Associates Pty Ltd"	26-May-08 12:01 PM	

+="CN86087"	"08/2613 - IT Contractor"	="Australian Customs and Border Protection Service"	26-May-08	="Human resources services"	13-Feb-08	29-Feb-08	33880.00	=""	="Microsoft"	26-May-08 12:01 PM	

+="CN86088"	"CPE003920 - Stationery and Office Consumables"	="Australian Customs and Border Protection Service"	26-May-08	="Office supplies"	07-May-08	20-May-08	13041.24	=""	="Corporate Express Australia Ltd"	26-May-08 12:01 PM	

+="CN86089"	"CPO022083 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Apr-08	40394.00	=""	="AusCheck"	26-May-08 12:01 PM	

+="CN86090"	"CPO022139 - Training Services"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	21-May-08	22-May-08	29370.00	=""	="Work Solutions Australia"	26-May-08 12:01 PM	

+="CN86091"	"CPO022187 - Supply of Brochures"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	22-May-08	24970.00	=""	="National Capital Printing and CMW"	26-May-08 12:01 PM	

+="CN86092"	"CPO015061 - Supply and Installation of Conference Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	16-Sep-07	06-Dec-07	17297.00	=""	="Electroboard Solutions Pty Ltd"	26-May-08 12:01 PM	

+="CN86093"	"CPO015060 - Supply and Installation of Conference Equipment"	="Australian Customs and Border Protection Service"	26-May-08	="Management and Business Professionals and Administrative Services"	16-Sep-07	06-Dec-07	15030.80	=""	="Electroboard Solutions Pty Ltd"	26-May-08 12:01 PM	

+="CN86094"	"CPO022394 - Training Services"	="Australian Customs and Border Protection Service"	26-May-08	="Education and Training Services"	21-May-08	31-May-08	13993.76	=""	="Tanner James Management Consultants Pty Ltd"	26-May-08 12:02 PM	

+="CN86095"	" Recriutment of Finance Officer "	="Australian Crime Commission"	26-May-08	="Personnel recruitment"	25-Feb-08	02-May-08	30195.00	=""	="Hays Personnel Services"	26-May-08 12:06 PM	

+="CN86096"	"Printing of NAT15249 Tax practitioner seminar. Qty: 25,000"	="Australian Taxation Office"	26-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-May-08	22-Jul-08	50022.30	=""	="Blue Star Print Group t/a National Capital Printing"	26-May-08 12:13 PM	

+="CN86097"	"Hardware Acquisition and Maintenance Contract for Supply and installation of Server and Disk Hardware only"	="Australian Securities and Investments Commission"	26-May-08	="Computer servers"	01-May-08	30-Jun-08	134178.00	=""	="Frontline Systems Australia Pty Ltd"	26-May-08 12:16 PM	

+="CN86098-A1"	"Recruitment of Finance personnel"	="Australian Crime Commission"	26-May-08	="Personnel recruitment"	12-Mar-08	09-May-08	16853.98	=""	="Hudson Global Resources"	26-May-08 12:18 PM	

+="CN86024"	"Adelaide removals - library amd 'ad hoc' removals during the Adelaide refurbishment"	="Australian Securities and Investments Commission"	26-May-08	="Transportation and Storage and Mail Services"	12-May-08	30-Oct-08	20354.40	=""	="Allied Pickfords"	26-May-08 12:19 PM	

+="CN86104"	"AIRCRAFT SPARES:QTY 200:NSN_5365-01-092-7491:COUPLING: ITEM IS F.E.P( FLIGHT ESSENTIAL PART) AND PROCURRED FROM OEM ONLY."	="Defence Materiel Organisation"	26-May-08	="Military rotary wing aircraft"	26-May-08	13-Apr-09	64354.40	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-May-08 01:16 PM	

+="CN86105-A1"	"AIRCRAFT SPARES:QTY 40:NSN_5365-01-223-3629:SPACER:ITEM IS F.E.P(FLIGHT ESSENTIAL PART) AND PROCURRED FROM OEM ONLY."	="Defence Materiel Organisation"	26-May-08	="Military rotary wing aircraft"	26-May-08	03-Jan-09	17179.36	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-May-08 01:32 PM	

+="CN86106"	" 360 Degree Multi Source Feedback (MSF) Process "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	30-May-08	50225.00	="06.028"	="Fyusion Asia Pacific P/L"	26-May-08 01:35 PM	

+="CN86108"	"Media and Promotions consultancy extention"	="Australian Institute of Family Studies"	26-May-08	="Public relation services"	21-Feb-08	02-May-08	21000.00	=""	="Hadsel Grace and Associates Pty Ltd"	26-May-08 01:54 PM	

+="CN86109"	"SUPPLY OF VARIOUS MEDICAL CONSUMABLE PRODUCTS."	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	08-May-08	09-May-08	19452.40	="N/A"	="OPC"	26-May-08 02:03 PM	

+="CN86111-A1"	"Development of 2009-2011 Strategic Plan"	="Australian Institute of Family Studies"	26-May-08	="Strategic planning consultation services"	26-May-08	31-Aug-08	42500.00	=""	="Jarratt Enterprises Pty Ltd"	26-May-08 02:16 PM	

+="CN86114"	"SUPPLY OF VARIOUS PHARMACEUTICAL PRODUCTS."	="Defence Materiel Organisation"	26-May-08	="Drugs and Pharmaceutical Products"	08-May-08	09-Jun-08	46484.24	="N/A"	="Symbion Pharmacy"	26-May-08 02:32 PM	

+="CN86115"	"Phone bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	15-May-08	15-May-08	17911.56	=""	="Telstra  (ID No. 740)"	26-May-08 02:32 PM	

+="CN86116"	"Phone bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	15-May-08	15-May-08	16056.28	=""	="Telstra  (ID No. 740)"	26-May-08 02:32 PM	

+="CN86117"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	09-May-08	31-May-08	28851.19	=""	="Stratos"	26-May-08 02:33 PM	

+="CN86118"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	12-May-08	31-May-08	23377.20	=""	="URSYS"	26-May-08 02:33 PM	

+="CN86119"	"Telecommunications Serv ices"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	97784.19	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86120"	"AMDAR Data"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	38579.31	=""	="Qantas Airways Ltd"	26-May-08 02:33 PM	

+="CN86121"	"Telecommunications Services"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	06-May-08	31-May-08	15011.11	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86122"	"Relocation of Comms Building & Tower"	="Bureau of Meteorology"	26-May-08	="General building construction"	07-May-08	31-May-08	90178.00	=""	="Cumner Contracting Pty Ltd"	26-May-08 02:33 PM	

+="CN86123"	"Main Phone Bill"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	13-May-08	13-May-08	23978.54	=""	="Telstra  (ID No. 740)"	26-May-08 02:33 PM	

+="CN86124"	"Removals & Storage"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	13-May-08	31-May-08	59274.39	=""	="TOLL TRANSITIONS"	26-May-08 02:33 PM	

+="CN86125"	"Freight - week 15"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	13-May-08	31-May-08	24060.55	=""	="TNT EXPRESS"	26-May-08 02:33 PM	

+="CN86127"	"Global model products - hi-res products"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	31-May-08	135194.45	=""	="British Meteorological Office, UK"	26-May-08 02:34 PM	

+="CN86128"	"Public User Surveys"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	41774.70	=""	="I-View P/L"	26-May-08 02:34 PM	

+="CN86129"	"Removals and storage"	="Bureau of Meteorology"	26-May-08	="Transportation and Storage and Mail Services"	16-May-08	31-May-08	23722.73	=""	="TOLL TRANSITIONS"	26-May-08 02:34 PM	

+="CN86130"	"P'ship Fee- Aust Climate Future Event April 2008"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	16-May-08	31-May-08	12000.00	=""	="Ipaa"	26-May-08 02:34 PM	

+="CN86131"	"Telecommunications Serv ices"	="Bureau of Meteorology"	26-May-08	="Telecommunications media services"	19-May-08	31-May-08	17501.00	=""	="AAPT LIMITED"	26-May-08 02:34 PM	

+="CN86132"	"Job Ads - Hydrology campaign"	="Bureau of Meteorology"	26-May-08	="Marketing and distribution"	21-May-08	31-May-08	12177.00	=""	="HMA BLAZE PTY LTD"	26-May-08 02:34 PM	

+="CN86133"	"Handheld Cable tester"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	13-May-08	06-Jun-08	11488.49	=""	="TRIO Smartcal Pty Ltd"	26-May-08 02:34 PM	

+="CN86134"	"Imitation 9940 Data Cartridges Qty 750"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	03-May-09	84966.75	=""	="Officemax Australia Ltd"	26-May-08 02:34 PM	

+="CN86135"	"HP workstation (Qty 4 and 30 monitors"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	30-Jun-08	23855.00	=""	="City Software Pty Ltd"	26-May-08 02:35 PM	

+="CN86136"	"Satellte tracking antenna (spare parts)"	="Bureau of Meteorology"	26-May-08	="Electronic hardware and component parts and accessories"	13-May-08	27-Jun-08	59301.00	=""	="Environmental Systems & Services"	26-May-08 02:35 PM	

+="CN86137"	"Oscilloscope"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	13-May-08	12-Jun-08	14018.40	=""	="Measurement Innovation Pty Ltd"	26-May-08 02:35 PM	

+="CN86138"	"Data Cartridges Qty 300"	="Bureau of Meteorology"	26-May-08	="Computer services"	13-May-08	16-May-08	27720.00	=""	="Prodata Pty Ltd"	26-May-08 02:35 PM	

+="CN86139"	"Del D630 Notebook Qty 93"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	13-May-08	23-May-08	109972.50	=""	="Dell Australia  Pty Ltd"	26-May-08 02:35 PM	

+="CN86140"	"CompactDaq including software/accessories"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	13-May-08	15-May-08	15301.00	=""	="National Instruments"	26-May-08 02:35 PM	

+="CN86141"	"ManageSoft Suite - 8 x 5 support 1 July 2008 - 30 June 2009"	="Bureau of Meteorology"	26-May-08	="Computer services"	15-May-08	16-May-08	36424.96	=""	="MANAGESOFT CORPORATION LTD"	26-May-08 02:35 PM	

+="CN86142"	"Data Tape Cartridges Qty 460 & Cleaning Cartidge Qty 5"	="Bureau of Meteorology"	26-May-08	="Computer services"	15-May-08	16-May-08	70009.50	=""	="Prodata Pty Ltd"	26-May-08 02:36 PM	

+="CN86143"	"Focus Group Testing-Tsunami Warning"	="Bureau of Meteorology"	26-May-08	="Business administration services"	15-May-08	16-May-08	46201.00	=""	="Colmar Brunton"	26-May-08 02:36 PM	

+="CN86144"	"Apple Mac Pro Qty 1 mONITORS 2 GB DDR Memory Qty 8"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	19-May-08	20-May-08	11472.91	=""	="Next Byte Pty Ltd"	26-May-08 02:36 PM	

+="CN86145"	"2-D Video Distrometer"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	20-May-08	27-May-08	107540.70	=""	="Joanneum Research"	26-May-08 02:36 PM	

+="CN86146"	"site works essendon airport"	="Bureau of Meteorology"	26-May-08	="Building and Construction and Maintenance Services"	20-May-08	20-Jun-08	50402.00	=""	="Active Utilities Pty Ltd"	26-May-08 02:36 PM	

+="CN86147"	"OFFICE FURNITURE AND FITTINGS"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	12-Jun-08	28638.45	=""	="Brownbuilt Pty Ltd"	26-May-08 02:36 PM	

+="CN86148"	"Meteorological services re. Tsunami Assessments"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	20-May-08	14368.96	=""	="Meteorological Service of NZ"	26-May-08 02:36 PM	

+="CN86149"	"Personnel Serviices"	="Bureau of Meteorology"	26-May-08	="Human resources services"	21-May-08	27-May-08	69999.60	=""	="Hays Specialist Recruitment"	26-May-08 02:36 PM	

+="CN86150"	"REFURBISH WARO MAINTENANCE CENTRE BELMONT"	="Bureau of Meteorology"	26-May-08	="Management and Business Professionals and Administrative Services"	22-May-08	30-Jun-08	13352.90	=""	="Davro Interiors Pty Ltd"	26-May-08 02:36 PM	

+="CN86151"	"Printing of Bureau of Meteorology Review Booklet"	="Bureau of Meteorology"	26-May-08	="Printed media"	22-May-08	23-May-08	11550.00	=""	="Vega Colour Group Pty Ltd"	26-May-08 02:37 PM	

+="CN86152"	"ML910 Laptop 80 GB Hard Drive 1 GB DDR Ram"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	22-May-08	30-May-08	12100.00	=""	="Tough Corp"	26-May-08 02:37 PM	

+="CN86153"	"Solomon Is and PNG Weather Service AUSAID Project"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	22-May-08	30-Jun-08	19896.25	=""	="Wharington International Pty Ltd"	26-May-08 02:37 PM	

+="CN86154"	"Dell PowerEdge 2900 Server (Qty 2)"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	23-May-08	30-May-08	22880.00	=""	="Dell Australia  Pty Ltd"	26-May-08 02:37 PM	

+="CN86155"	"Vaisalal Electronic Barometers Qty 10"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	23-May-08	20-Jun-08	42570.00	=""	="Vaisala Pty Ltd"	26-May-08 02:37 PM	

+="CN86156-A1"	"Radiosondes"	="Bureau of Meteorology"	26-May-08	="Measuring and observing and testing instruments"	23-May-08	20-Jun-08	355322.00	=""	="Vaisala Pty Ltd"	26-May-08 02:37 PM	

+="CN86157"	"Large Scale Data Storage System"	="Bureau of Meteorology"	26-May-08	="Computer Equipment and Accessories"	23-May-08	20-Jun-08	1670246.56	=""	="Sun Microsystem Australia P/L"	26-May-08 02:37 PM	

+="CN86126"	"Training Course"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	26-May-08	29-May-08	38720.00	=""	="IBM AUSTRALIA LIMITED"	26-May-08 02:38 PM	

+="CN86159"	" extended warranty for printers "	="Australian Crime Commission"	26-May-08	="Guarantee agreements"	14-Apr-08	13-Apr-10	77748.00	=""	="Cornerstone TSS Pty Ltd"	26-May-08 02:44 PM	

+="CN86160"	"Exhibits for Questacon Wonderworks Exhibition"	="Questacon"	26-May-08	="Auto shows or other exhibits"	22-May-08	23-Oct-08	62825.00	=""	="Techniquest"	26-May-08 02:44 PM	

+="CN86161"	"VEHICLE REPAIRS"	="Department of Defence"	26-May-08	="Motor vehicles"	28-Apr-08	28-May-08	10266.88	=""	="RGM"	26-May-08 02:45 PM	

+="CN86162"	"Training Services"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	27-Jun-08	37500.00	=""	="IBM AUSTRALIA LIMITED"	26-May-08 02:45 PM	

+="CN86163"	"Class A shedders"	="Australian Crime Commission"	26-May-08	="Office machines and their supplies and accessories"	18-Apr-08	24-Apr-08	38940.00	=""	="GBC Fordigraph"	26-May-08 02:58 PM	

+="CN86158"	"BESS Business Analyst Training"	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	30-Jun-08	151800.00	="08.090"	="SMS Consulting Group Ltd"	26-May-08 03:01 PM	

+="CN86166"	"VEHICLE REPAIRS"	="Department of Defence"	26-May-08	="Motor vehicles"	21-Apr-08	21-May-08	33447.78	=""	="MICKS AUTOS"	26-May-08 03:07 PM	

+="CN86164"	" SUPPLY OF VARIOUS MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	08-May-08	08-Jun-08	17044.50	="N/A"	="OPC"	26-May-08 03:08 PM	

+="CN86169"	" SUPPLY OF VARIOUS MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	06-May-08	30-May-08	17609.90	="N/A"	="SMITH & NEPHEW (AUSTRALIA )P/L"	26-May-08 03:31 PM	

+="CN86100-A2"	" Perform Due Dilligence activities with initial focus on MNS bundle. "	="Australian Taxation Office"	26-May-08	="Management and Business Professionals and Administrative Services"	19-May-08	15-Aug-08	135872.00	="07.102"	="ITNewcom Pty Limited"	26-May-08 03:34 PM	

+="CN86172"	"Supply of Voice Over Internet Protocal (VOIP) phone equipment"	="Australian Federal Police"	26-May-08	="Communications Devices and Accessories"	08-Dec-05	07-Dec-08	37594.15	=""	="Avaya Australia Pty Ltd"	26-May-08 03:44 PM	

+="CN86173"	" SUPPLY OF MEDICAL CONSUMABLES "	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	05-May-08	05-Jun-08	14300.00	="N/A"	="LMA PACMED"	26-May-08 04:00 PM	

+="CN86174"	"Legal services"	="National Competition Council"	26-May-08	="Legal services"	02-May-08	31-May-08	25258.16	=""	="Clayton Utz"	26-May-08 04:08 PM	

+="CN86175"	"Legal services"	="National Competition Council"	26-May-08	="Legal services"	29-Apr-08	30-May-08	15747.05	=""	="Clayton Utz"	26-May-08 04:08 PM	

+="CN86176"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	07-May-08	06-Jun-08	11061.60	="N/A"	="3M AUSTRALIA PTY LTD"	26-May-08 04:14 PM	

+="CN86177"	"Provision of Project Management Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	12-May-08	11-Nov-08	203775.00	=""	="Ajilon Australia Pty Ltd"	26-May-08 04:20 PM	

+="CN86178"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	26-May-08	="Medical Equipment and Accessories and Supplies"	16-May-08	16-Jun-08	15358.64	="N/A"	="CARESTREAM HEALTH AUSTRALIA PTY LTD"	26-May-08 04:25 PM	

+="CN86179"	"Management advisory services"	="Australian Competition and Consumer Commission"	26-May-08	="Management advisory services"	21-May-08	31-Dec-08	60000.00	=""	="Economists incorporated"	26-May-08 04:26 PM	

+="CN86180"	"Provision of Solution Architectural Services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	25-Apr-08	86130.00	=""	="Oakton Services Pty Ltd"	26-May-08 04:27 PM	

+="CN86181"	"Provision of Project Management services"	="Australian Securities and Investments Commission"	26-May-08	="Project management"	12-May-08	21-Jul-08	301400.00	=""	="Oakton Services Pty Ltd"	26-May-08 04:30 PM	

+="CN86183-A1"	"Provision of IT contracting services"	="Australian Securities and Investments Commission"	26-May-08	="Information technology consultation services"	01-Feb-08	25-Apr-08	43894.40	=""	="Oakton Services Pty Ltd"	26-May-08 04:35 PM	

+="CN86191-A2"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	26-May-08	="Legal services"	28-Apr-08	30-Jun-09	280000.00	=""	="Boston, Tomo R. O."	26-May-08 05:03 PM	

+="CN86192-A1"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	26-May-08	="Legal services"	16-May-08	30-Jun-08	38000.00	=""	="Halley, John"	26-May-08 05:07 PM	

+="CN86193"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1238 IAW Standing offer PN8875."	="Defence Materiel Organisation"	26-May-08	="Aerospace systems and components and equipment"	19-May-08	30-Jun-08	54589.38	=""	="Goodrich Control Systems"	26-May-08 05:23 PM	

+="CN86194"	"Repair/Modification of F/A-18 GEnerator Converter Unit S/No 1801 IAW Standing Offer PN8875."	="Defence Materiel Organisation"	26-May-08	="Aerospace systems and components and equipment"	19-May-08	30-Jun-08	55149.61	=""	="Goodrich Control Systems"	26-May-08 05:28 PM	

+="CN86196"	" Infants at risk of abuse and neglect: Specialist Practice Guide.  Development of two publications based on a review of the literature relevant to children at risk of abuse and neglect.  "	="Australian Institute of Family Studies"	27-May-08	="Educational and research structures"	07-May-08	30-Oct-08	15000.00	=""	="Murdoch Children's Research Institute"	27-May-08 08:44 AM	

+="CN86198"	"Black Hawk A25-110 R3 service to be carried out with rectifications IAW Suppliers Acceptance certificate. "	="Defence Materiel Organisation"	27-May-08	="Military rotary wing aircraft"	26-May-08	27-Jul-08	350000.00	=""	="BAE Systems Aust Military Air Support"	27-May-08 08:57 AM	

+="CN86200"	"Supply & installation of data cabling services"	="Australian Federal Police"	27-May-08	="Computer Equipment and Accessories"	30-May-08	30-Jun-08	71657.30	="37-2005"	="Absolute Cabling Systems Pty Ltd"	27-May-08 09:08 AM	

+="CN86201"	"Provision of Cultural Awareness Training"	="Australian Federal Police"	27-May-08	="Education and Training Services"	24-Jun-08	25-Jun-08	14654.20	="65-2006"	="Asian Law Group Pty Ltd"	27-May-08 09:18 AM	

+="CN86203"	" AIRCRAFT SPARES  NSN 1680-01-322-1941, CUSHION ASSEMBLY SEAT, QTY 50 "	="Defence Materiel Organisation"	27-May-08	="Military transport helicopters"	27-May-08	07-Oct-08	27955.40	=""	="AIR'N'SEA SAFETY"	27-May-08 09:25 AM	

+="CN86204"	"Legal Services Expenditure 7044"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Legal services"	11-Aug-06	30-Jun-09	18150.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	27-May-08 09:26 AM	

+="CN86205"	"Purchase of Telstra Next G mobile phones Purchase of Telstra Next G mobile phones"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Communications Devices and Accessories"	10-Apr-08	09-Jun-08	30719.59	=""	="TELSTRA"	27-May-08 09:26 AM	

+="CN86206"	"Public Relations"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Graphic design"	19-May-08	19-Oct-08	379995.00	="TRS06/036"	="Reputation Pty Ltd"	27-May-08 09:27 AM	

+="CN86207"	"5 week contract - Michelle Grant"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Community and social services"	26-May-08	30-Jun-08	15000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	27-May-08 09:27 AM	

+="CN86208-A2"	"Leaseplan for YGB24F "	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Travel facilitation"	15-Apr-08	14-Apr-10	34955.80	="FINANCE04001"	="LeasePlan Australia Ltd"	27-May-08 09:27 AM	

+="CN86209"	"Provision of an Industry Impact Study of installing X-Ray equipment in air cargo facilities"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Statistics"	17-Oct-07	30-Jun-08	313500.00	=""	="DEAKIN UNIVERSITY"	27-May-08 09:27 AM	

+="CN86210"	"Scientific Services"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Laboratory and scientific equipment"	18-Jan-08	30-Jun-08	624681.00	=""	="Department of Defence"	27-May-08 09:27 AM	

+="CN86211"	"Perceptive Interviewing Training"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Vocational training"	29-Apr-08	21-May-08	27346.00	=""	="BEHAVIOURAL TRAINING GROUP"	27-May-08 09:27 AM	

+="CN86212"	"Temporary Staff Temporary Staff"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Community and social services"	26-Mar-07	14-Mar-08	75028.53	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	27-May-08 09:28 AM	

+="CN86213"	"Explosive Detection Technologies (lease)"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Security and personal safety"	15-May-08	30-Aug-08	69053.60	=""	="XTEK LIMITED"	27-May-08 09:28 AM	

+="CN86214"	"Media Training"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Graphic design"	14-May-08	31-Aug-08	45001.00	="TRS06/036"	="Porter Novelli Australia P/L"	27-May-08 09:28 AM	

+="CN86215"	"Health Week Services 2008"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Comprehensive health services"	06-May-08	30-Sep-08	55000.00	="TRS08/054"	="PROFIT CORPORATE HEALTH"	27-May-08 09:28 AM	

+="CN86216"	"Recuitment Services - Deputy Secretary"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Human resources services"	01-Feb-08	30-Jun-08	36300.00	="TRS06/001"	="HANSEN & SEARSON"	27-May-08 09:28 AM	

+="CN86217"	"Personal Efficiency and Outlook Program"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Vocational training"	16-May-08	11-Jul-08	13200.00	=""	="D'ARCY CONSULTING GROUP PTY LTD"	27-May-08 09:28 AM	

+="CN86218"	"Use of marine salvage ROV"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Marine transport"	21-May-08	30-May-08	13530.00	=""	="Land & Marine Consultants Pty Ltd"	27-May-08 09:29 AM	

+="CN86219"	"Legal Services Expenditure - 7040 Remaining 7040"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Legal services"	11-Aug-06	26-May-08	11550.00	="TRS06/175"	="Clayton Utz Canberra"	27-May-08 09:29 AM	

+="CN86220"	"Temporary Staff Placement"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Community and social services"	22-May-08	30-Jun-08	22000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	27-May-08 09:29 AM	

+="CN86221"	"Legal Service Expenditure Camilla Webste"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Legal services"	23-May-08	30-Jun-09	10560.00	=""	="CAMILLA WEBSTER"	27-May-08 09:29 AM	

+="CN86222"	"Legal Services Expenditure 5444"	="Department of Infrastructure Transport Regional Development and Local Government"	27-May-08	="Legal services"	15-May-08	30-Jun-09	27355.13	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	27-May-08 09:29 AM	

+="CN86225"	"Telephone Account"	="Australian Electoral Commission"	27-May-08	="Local and long distance telephone communications"	26-Mar-08	13-Apr-08	18247.44	=""	="Telstra Corporation"	27-May-08 09:36 AM	

+="CN86226"	"RFT 005-2008 IT Contractor"	="Australian Taxation Office"	27-May-08	="Engineering and Research and Technology Based Services"	19-May-08	15-Jun-09	183744.00	=""	="Encore IT Services Pty Ltd"	27-May-08 09:38 AM	

+="CN86227"	"RFT 014-2008 IT Contractor"	="Australian Taxation Office"	27-May-08	="Engineering and Research and Technology Based Services"	19-May-08	19-May-09	194480.00	=""	="Tarakan Consulting Pty Ltd"	27-May-08 09:38 AM	

+="CN86228"	"Scribe servies"	="Australian Taxation Office"	27-May-08	="Education and Training Services"	19-May-08	19-May-08	11022.00	=""	="VEROSSITY PTY LTD"	27-May-08 09:38 AM	

+="CN86229"	"Course: DB2 UDB for z/OS Application Performance a"	="Australian Taxation Office"	27-May-08	="Education and Training Services"	20-May-08	20-Jun-08	22000.00	=""	="IBM AUSTRALIA LIMITED"	27-May-08 09:39 AM	

+="CN86233"	"CONSULTANCY FEE"	="Australian Taxation Office"	27-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	20-May-08	14107.50	=""	="PM BUSINESS CONSULTING PTY LTD"	27-May-08 09:41 AM	

+="CN86234"	"VALUATION SERVICES FOR MARCH08 TRAVEL SERVICES FOR FEB-MAR08"	="Australian Taxation Office"	27-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	20-May-08	38451.95	=""	="AUSTRALIAN VALUATION OFFICE"	27-May-08 09:42 AM	

+="CN86235"	"DEPOSIT FOR LEADERSHIP CONFERENCE"	="Australian Taxation Office"	27-May-08	="Management and Business Professionals and Administrative Services"	16-May-08	21-May-08	50000.00	=""	="HOTEL REALM"	27-May-08 09:42 AM	

+="CN86236"	"BUSINESS MODELLING & IT ACHITECTURE ABN BUSINESS NAMES PROJECT"	="Australian Taxation Office"	27-May-08	="Engineering and Research and Technology Based Services"	08-May-08	22-May-08	106518.91	=""	="DEPARTMENT OF INNOVATION, INDUSTRY,"	27-May-08 09:42 AM	

+="CN86232"	"Computing machinery"	="Australian Electoral Commission"	27-May-08	="Computers"	30-Apr-08	30-May-08	72407.50	=""	="Data #3"	27-May-08 09:42 AM	

+="CN86237"	"AVO CORPORATE CREDIT CARDS"	="Australian Taxation Office"	27-May-08	="Financial and Insurance Services"	15-May-08	23-May-08	14110.95	=""	="COMMONWEALTH BANK OF AUSTRALIA"	27-May-08 09:43 AM	

+="CN86238"	"IT Contractor"	="Australian Taxation Office"	27-May-08	="Engineering and Research and Technology Based Services"	18-Oct-07	08-Jul-08	60000.00	="RFT 024-2007"	="CCD CONSULTING PTY LTD"	27-May-08 09:45 AM	

+="CN86239"	"Mastering the requirements Process course 8 attendees"	="Australian Taxation Office"	27-May-08	="Education and Training Services"	29-Apr-08	05-Jun-08	28160.00	=""	="IBM AUSTRALIA LIMITED"	27-May-08 09:45 AM	

+="CN86240"	"computer training course"	="Australian Taxation Office"	27-May-08	="Education and Training Services"	26-May-08	30-May-08	10560.00	=""	="IBM AUSTRALIA LIMITED"	27-May-08 09:45 AM	

+="CN86241"	"IT Contractor"	="Australian Taxation Office"	27-May-08	="Engineering and Research and Technology Based Services"	26-May-08	30-Jun-09	216057.60	="RFT 010-2007"	="PEOPLEBANK AUSTRALIA PTY LTD"	27-May-08 09:46 AM	

+="CN86231"	"Subscription"	="Australian Securities and Investments Commission"	27-May-08	="Work related organisations"	28-Mar-08	28-Mar-08	18810.00	=""	="Committee for Economic Development of Australia"	27-May-08 09:48 AM	

+="CN86242"	" SUPPLY OF MENINGOCCOCAL POLYSSACHARIDE VACCINE "	="Defence Materiel Organisation"	27-May-08	="Meningococcal vaccine"	25-Feb-08	04-Apr-08	122430.00	="N/A"	="CSL BIOTHERAPIES"	27-May-08 09:49 AM	

+="CN86243-A1"	"IT Temporary Staffing"	="Australian Electoral Commission"	27-May-08	="Temporary personnel services"	01-Sep-06	30-Jun-09	170473.60	="AEC06/019"	="GMT Canberra Pty Ltd"	27-May-08 09:51 AM	

+="CN86244"	" VEHICLE REPAIRS "	="Department of Defence"	27-May-08	="Motor vehicles"	31-Jan-06	29-Feb-08	17327.64	=""	="FB AUTOS"	27-May-08 09:54 AM	

+="CN86246"	"Print Advertising"	="Australian Electoral Commission"	27-May-08	="Print advertising"	01-Oct-02	30-Jun-08	12162.74	=""	="HMA Blaze Pty Ltd"	27-May-08 09:56 AM	

+="CN86245"	"Origin Energy Electricity Agreement - Level 9 and 10 Castlereagh Street"	="Australian Securities and Investments Commission"	27-May-08	="Electric utilities"	01-Mar-08	31-Jul-09	35000.00	=""	="Origin Energy"	27-May-08 09:56 AM	

+="CN86248-A1"	"SUPPLY OF MEASLES, MUMPS & RUBELLA VACCINE"	="Defence Materiel Organisation"	27-May-08	="Measles and mumps and rubella virus vaccine"	11-Apr-08	20-Apr-08	111265.00	="N/A"	="GLAXOSMITHKLINE AUSTRALIA"	27-May-08 10:10 AM	

+="CN86249"	"Electronic reference material"	="Australian Competition and Consumer Commission"	27-May-08	="Electronic reference material"	01-Apr-08	30-Apr-08	15268.67	=""	="Media Monitors Australia Pty Ltd"	27-May-08 10:13 AM	

+="CN86250"	"Passenger transport"	="Australian Competition and Consumer Commission"	27-May-08	="Passenger transport"	05-Apr-08	02-May-08	30224.02	=""	="Cabcharge Australia Pty Ltd"	27-May-08 10:13 AM	

+="CN86251"	"human resources services"	="Australian Competition and Consumer Commission"	27-May-08	="Human resources services"	08-May-08	08-May-08	33000.00	=""	="The Insight Group"	27-May-08 10:13 AM	

+="CN86252"	"Human resources services"	="Australian Competition and Consumer Commission"	27-May-08	="Human resources services"	10-May-08	16-May-08	10036.36	=""	="Jane Devereux Pty Ltd"	27-May-08 10:14 AM	

+="CN86253"	"Insurance and retirement services"	="Australian Competition and Consumer Commission"	27-May-08	="Insurance and retirement services"	20-Aug-08	20-Sep-08	17916.21	=""	="LawCover Pty Ltd"	27-May-08 10:14 AM	

+="CN86254"	"Mangement Advisory Services"	="Australian Competition and Consumer Commission"	27-May-08	="Management advisory services"	21-May-08	02-Jun-08	47000.00	="RFT2005-31"	="NERA Australia Pty Ltd"	27-May-08 10:14 AM	

+="CN86255"	"Management Advisory Services"	="Australian Competition and Consumer Commission"	27-May-08	="Management advisory services"	21-May-08	30-Apr-09	155000.00	="RFT2005-31"	="McLennan Magasanik Associates"	27-May-08 10:14 AM	

+="CN86256"	"Hotels lodgingand meeting facilities"	="Australian Competition and Consumer Commission"	27-May-08	="Hotels and lodging and meeting facilities"	22-Jul-08	24-Jul-08	69360.00	=""	="Marriott Resort Surfers Paradise"	27-May-08 10:14 AM	

+="CN86259"	"Management advisory services"	="Australian Competition and Consumer Commission"	27-May-08	="Management advisory services"	21-May-08	30-Apr-09	60000.00	="RFT2005-31"	="Econtech"	27-May-08 10:22 AM	

+="CN86264"	" HAT, SERVICE, KHAKI FUR FELT, PRE-BASHED, W/O CATCH AND HOOK "	="Defence Materiel Organisation"	27-May-08	="Clothing accessories"	06-May-08	05-Sep-08	79255.00	=""	="AKUBRA HATS PTY LTD"	27-May-08 10:35 AM	

+="CN86265"	"vehicle parts"	="Department of Defence"	27-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Apr-08	06-May-08	13605.99	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	27-May-08 10:38 AM	

+="CN86267"	"SAP Technical Upgrade Advice"	="Australian Taxation Office"	27-May-08	="Software maintenance and support"	19-May-08	31-Aug-08	434727.00	="07-057 RFQ2"	="CSC Australia pty Ltd"	27-May-08 10:41 AM	

+="CN86268"	" SUPPLY OF MMR VACCINE "	="Defence Materiel Organisation"	27-May-08	="Measles and mumps and rubella virus vaccine"	11-May-08	20-May-08	151718.95	="N/A"	="GLAXOSMITHKLINE AUSTRALIA"	27-May-08 10:49 AM	

+="CN86271"	" SUPPLY OF DIPTHTHERIA, TETANUS AND PERTUSSIS BOOSTER VACCINE AND OTHER PHARMACEUTICAL PRODUCTS "	="Defence Materiel Organisation"	27-May-08	="Diptheria and tetanus toxoids and acellular pertussis vaccine"	14-May-08	11-Jun-08	72392.71	="N/A"	="GLAXOSMITHKLINE AUSTRALIA"	27-May-08 11:08 AM	

+="CN86274"	"SUPPLY OF MEDICAL CONSUMABLE ITEMS"	="Defence Materiel Organisation"	27-May-08	="Medical Equipment and Accessories and Supplies"	17-May-08	14-Jun-08	42879.78	="N/A"	="JOHNSON & JOHNSON MEDICAL"	27-May-08 11:27 AM	

+="CN86279"	" SUPPLY OF VARIOUS MEDICAL CONSUMABLE ITEMS "	="Defence Materiel Organisation"	27-May-08	="Medical Equipment and Accessories and Supplies"	16-May-08	16-Jun-08	10309.99	="N/A"	="TYCO HEALTHCARE"	27-May-08 11:38 AM	

+="CN86283-A2"	"Public Works Committee Advisory Services"	="Australian Federal Police"	27-May-08	="Management advisory services"	05-May-08	30-Nov-08	60000.00	=""	="Coffey Projects (Australia) Pty Ltd"	27-May-08 11:59 AM	

+="CN86285"	"Lease for premises at 26 Brindabella Circuit, Canberra International Airport"	="Department of Defence"	27-May-08	="Insurance services for structures and property and possessions"	01-Jul-08	30-Jun-13	4523458.72	=""	="Canberra International Airport P/L"	27-May-08 12:07 PM	

+="CN85195"	"Guy Antenna Element to Stake"	="Defence Materiel Organisation"	27-May-08	="Manufacturing Components and Supplies"	16-May-08	20-Jun-08	20295.00	=""	="B B Engineering Pty Ltd"	27-May-08 12:11 PM	

+="CN85643"	"Stake,Guy Steel"	="Defence Materiel Organisation"	27-May-08	="Guy cables"	20-May-08	08-Aug-08	13090.00	=""	="Milspec Services Pty Ltd"	27-May-08 12:22 PM	

+="CN86289"	"Lease for premises at 39 Brindabella Circuit, Canberra International Airport"	="Department of Defence"	27-May-08	="Insurance services for structures and property and possessions"	01-Jul-08	26-May-13	780328.73	=""	="Canberra International Airport P/L"	27-May-08 01:02 PM	

+="CN86290"	" SUPPLY OF MEDICAL CONSUMABLE ITEMS "	="Defence Materiel Organisation"	27-May-08	="Medical Equipment and Accessories and Supplies"	17-May-08	16-Jun-08	13319.81	="N/A"	="VASYLI  AUSTRALIA PTY LTD"	27-May-08 01:17 PM	

+="CN86292"	"Lease for premises at Level 2 & Part of level 3, Building 68, Fleet Base East"	="Department of Defence"	27-May-08	="Insurance services for structures and property and possessions"	29-Feb-08	30-Apr-08	158400.00	=""	="ADI Limited(Trading as Thales Australia)"	27-May-08 01:20 PM	

+="CN85351"	"Review of Role of ASADA State Coordination Officers"	="Australian Sports Anti-Doping Authority (ASADA)"	27-May-08	="Strategic planning consultation services"	26-Mar-07	30-Jun-07	25190.00	=""	="Four Streams Consulting"	27-May-08 01:52 PM	

+="CN86294"	"Lease for premises at St Vincent's Hospital, part of ward 8 North, Level 8 Xavier Building known as 'Navy Ward', Victoria Street, Darlinghurst NSW  "	="Department of Defence"	27-May-08	="Lease and rental of property or building"	30-Mar-08	29-Mar-09	704400.00	=""	="St Vincent Hospital Sydney"	27-May-08 02:02 PM	

+="CN86296"	"Lease for premises at 29-33 Maude Street Victor Harbor SA 5211"	="Department of Defence"	27-May-08	="Lease and rental of property or building"	01-Oct-07	30-Sep-11	150000.00	=""	="Waye Investments Pty Ltd"	27-May-08 02:16 PM	

+="CN86297"	"labour cost repair"	="Department of Defence"	27-May-08	="Diving instruments or accessories"	21-May-08	28-Aug-08	15494.00	=""	="PACIFIC COMMERCIAL DIVING SUPPLIES"	27-May-08 02:20 PM	

+="CN86298"	"MOTOR VEHICLE PARTS"	="Department of Defence"	27-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	23-May-08	23-Jun-08	17798.00	=""	="Volvo Commerical Vehicles"	27-May-08 02:25 PM	

+="CN86299"	"Develop and implement a Risk Management and Fraud Control Plan"	="Australian Sports Anti-Doping Authority (ASADA)"	27-May-08	="Strategic planning consultation services"	13-Nov-06	30-Mar-07	43472.00	=""	="Ernst & Young"	27-May-08 02:34 PM	

+="CN86300"	"PARTS AND LABOUR TO MODIFY"	="Department of Defence"	27-May-08	="Drum cradles"	27-May-08	03-Sep-08	14894.88	=""	="birdon marine pty ltd"	27-May-08 02:34 PM	

+="CN86301"	"PARTS AND LABOUR TO MODIFY CRADLE"	="Department of Defence"	27-May-08	="Computer cradles"	27-May-08	04-Sep-08	14894.88	=""	="birdon marine pty ltd"	27-May-08 02:40 PM	

+="CN86302"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	27-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-May-08	26-Jun-08	15928.00	=""	="LANDROVER"	27-May-08 02:45 PM	

+="CN86303"	"Provision of Information Services"	="Department of Immigration and Citizenship"	27-May-08	="Information services"	16-May-08	23-May-08	10380.00	=""	="Intelligence Pty Ltd"	27-May-08 02:47 PM	

+="CN86305"	"motor vehicle spare parts"	="Department of Defence"	27-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-May-08	26-Jun-08	13271.02	=""	="Land Rover"	27-May-08 02:52 PM	

+="CN84083"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	27-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	13-May-08	13-Jun-08	10325.46	=""	="LANDROVER"	27-May-08 02:56 PM	

+="CN86308"	"Graphic Design and Print management of 2006/2007 Annual report"	="Australian Sports Anti-Doping Authority (ASADA)"	27-May-08	="Promotional material or annual reports"	08-Jun-07	30-Nov-07	28197.96	=""	="Zoo group"	27-May-08 02:59 PM	

+="CN86307"	"PARTS AND LABOUR TO MODIFY CRADLE"	="Department of Defence"	27-May-08	="Computer cradles"	27-May-08	03-Sep-08	14894.88	=""	="birdon marine pty ltd"	27-May-08 03:02 PM	

+="CN86309"	"Provision of Personnel Services"	="Department of Immigration and Citizenship"	27-May-08	="Information services"	16-May-08	30-Jun-08	57239.00	=""	="SHL Australia"	27-May-08 03:09 PM	

+="CN86310"	" HAT, SERVICE, KHAKI, FUR FELT "	="Defence Materiel Organisation"	27-May-08	="Clothing accessories"	06-May-08	05-Sep-08	168078.90	=""	="MOUNTCASTLE PTY LTD"	27-May-08 03:10 PM	

+="CN86311"	"parts and labour cost to modify cradle"	="Department of Defence"	27-May-08	="Computer cradles"	27-May-08	03-Sep-08	14894.00	=""	="birdon marine pty ltd"	27-May-08 03:15 PM	

+="CN86313"	"Survey of Athletes Opinions"	="Australian Sports Anti-Doping Authority (ASADA)"	27-May-08	="Market research mail surveys"	24-Oct-07	30-Jul-08	49000.00	=""	="Curtin UNiversity"	27-May-08 03:18 PM	

+="CN86317"	"Provision of Development Services"	="Department of Immigration and Citizenship"	27-May-08	="Information services"	08-May-08	06-Jun-08	10000.00	=""	="The Trustee for Aspire Learning & Development"	27-May-08 03:32 PM	

+="CN86316"	"Lease for premises at Taylor Street Bulimba, Brisbane (South QLD Region)"	="Department of Defence"	27-May-08	="Lease and rental of property or building"	01-Sep-07	31-Aug-12	257400.00	=""	="Port of Brisbane Corporation"	27-May-08 03:32 PM	

+="CN86318"	"Administrative Investigation and Review Service"	="Australian Taxation Office"	27-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	30-Jun-08	10915.00	=""	="Merry Beach Conferences Pty Ltd"	27-May-08 03:34 PM	

+="CN86319"	" Computer port modules "	="Australian Crime Commission"	27-May-08	="Computer Equipment and Accessories"	12-May-08	11-Jun-08	14036.70	=""	="Commander Integrated Networks"	27-May-08 03:36 PM	

+="CN86320"	"HAT, SERVICE, KHAKI, FUR FELT"	="Defence Materiel Organisation"	27-May-08	="Clothing accessories"	06-May-08	05-Dec-08	216876.00	=""	="MOUNTCASTLE PTY LTD"	27-May-08 03:38 PM	

+="CN86321"	"SME market segmant research"	="Australian Taxation Office"	27-May-08	="Market research"	30-Apr-08	30-Jun-08	100000.00	=""	="Eureka Strategic Research Pty Ltd"	27-May-08 03:44 PM	

+="CN86322"	"Lease for premises at 2 Elphinstone Close, Portsmith, Cairns, QLD 4870"	="Department of Defence"	27-May-08	="Lease and rental of property or building"	01-Aug-07	31-Jul-08	165000.00	=""	="Marnatro Pty Ltd."	27-May-08 03:50 PM	

+="CN86323-A1"	"First Home Buyers Account research project "	="Australian Taxation Office"	27-May-08	="Market research"	30-Apr-08	30-Jun-08	233550.00	=""	="Colmar Brunton Social Research Pty Ltd"	27-May-08 03:50 PM	

+="CN86324"	"Lease for premises at 266 Ross River Road, Aitkenvale, Townsville, QLD 4814"	="Department of Defence"	27-May-08	="Lease and rental of property or building"	01-Sep-08	31-May-09	291456.00	=""	="Kingsun Investments Pty Ltd."	27-May-08 04:07 PM	

+="CN86325"	"Lease for premises at a group of islands located in Halifax Bay between Ingham & Townsville, QLD"	="Department of Defence"	27-May-08	="Lease and rental of property or building"	01-Dec-07	30-Nov-17	319000.00	=""	="Dept of Natural Resources & Water"	27-May-08 04:24 PM	

+="CN86326"	"Lease of space for storage and testing facilitiesin South Australia"	="Australian Sports Anti-Doping Authority (ASADA)"	27-May-08	="Accommodation structures"	02-Jul-07	30-Jun-09	11000.00	=""	="Australian Sports Medicine Federation (SA Branch) Inc"	27-May-08 04:29 PM	

+="CN86328"	" Desing and Printing - AFPC Research Series "	="Australian Fair Pay Commission"	27-May-08	="Typesetting"	05-Dec-07	07-May-08	37662.00	="RFT 07/05"	="Haddon (Vic) Pty Ltd"	27-May-08 04:48 PM	

+="CN86329-A4"	" Online Information Services "	="Australian Federal Police"	28-May-08	="Online database information retrieval systems"	01-Apr-03	30-Jun-12	329339.00	=""	="Factiva Ltd"	28-May-08 08:30 AM	

+="CN86332"	"Lease for premises at 143 Walker Street, Townsville, QLD 4810"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	791064.78	=""	="Commonwealth Centre Townsville Pty Ltd"	28-May-08 09:12 AM	

+="CN86333-A5"	"Provision of Information Technology Services (Previously Published as GAPS ID: 1615140)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	21-Aug-06	30-Jun-09	752857.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:23 AM	

+="CN86336"	"Lease for premises at Units 1 & 2, 26 William Angliss Drive Laverton North, Victoria"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-13	1975802.40	=""	="C B Richard Ellis"	28-May-08 09:36 AM	

+="CN86337-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1690990)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	23-Apr-07	30-Jun-09	352242.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:41 AM	

+="CN86338"	"Lease for premises at 601 Little Collins, Melbourne, VIC"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	18-Dec-07	17-Dec-08	16962.00	=""	="Strata Storage Melbourne"	28-May-08 09:46 AM	

+="CN86339-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610451)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	574365.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:48 AM	

+="CN86340-A1"	"Lease for premises at 99 Coventry Street Southbank VIC"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-May-10	30-Apr-11	454710.00	=""	="Kings Technology Park Pty Limited"	28-May-08 09:53 AM	

+="CN86341"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE, ICA, 20 TONNE CAPACITY, QUANTITY 15."	="Defence Materiel Organisation"	28-May-08	="Containers and storage"	27-May-08	16-Jun-08	62494.74	=""	="SCF CONTAINERS INTERNATIONAL"	28-May-08 09:56 AM	

+="CN86343"	"Pocket, Ammunition Magazine Steyr"	="Defence Materiel Organisation"	28-May-08	="Harnesses or its accessories"	21-May-08	21-Sep-08	184756.00	="CC1V9D"	="COMBAT CLOTHING AUST PTY LTD"	28-May-08 09:59 AM	

+="CN86344"	"Lease for premises at 85 Chalgrove Avenue"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Apr-07	31-Mar-12	2835756.00	=""	="Belvista Properties"	28-May-08 10:01 AM	

+="CN86347"	"SHIPPING AND STORAGE CONTAINERS, GENERAL PURPOSE, ICA, 20 TONNE CAPACITY, QUANTITY 30."	="Defence Materiel Organisation"	28-May-08	="Containers and storage"	27-May-08	16-Jun-08	110139.48	=""	="SCF CONTAINERS INTERNATIONAL"	28-May-08 10:19 AM	

+="CN86350"	"Property Lease - Vanuatu"	="Australian Federal Police"	28-May-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	282312.00	=""	="Marine Cup Ltd"	28-May-08 10:25 AM	

+="CN86354-A5"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610414) "	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	629113.25	=""	="Paxus Australia Pty Ltd"	28-May-08 10:35 AM	

+="CN86356-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610527)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	689700.00	=""	="Paxus Australia Pty Ltd"	28-May-08 10:39 AM	

+="CN86358-A1"	"Provision of Business analysis services for SAP HR/Payroll"	="CRS Australia"	28-May-08	="Computer services"	02-Jun-08	21-Nov-08	69411.75	=""	="BSI People Pty Ltd"	28-May-08 10:46 AM	

+="CN86360"	" VEHICLE REPAIRS "	="Department of Defence"	28-May-08	="Motor vehicles"	13-Feb-08	13-Mar-08	16011.47	=""	="FB AUTOS"	28-May-08 10:54 AM	

+="CN86364"	" SUPPLY OF STERILIZATION CASES "	="Defence Materiel Organisation"	28-May-08	="Medical Equipment and Accessories and Supplies"	28-Mar-08	30-May-08	12465.75	=""	="CARDINAL HEALTH AUSTRALIA"	28-May-08 11:31 AM	

+="CN86372"	"Urine Sample Testing"	="Australian Sports Anti-Doping Authority (ASADA)"	28-May-08	="Research or testing facilities"	18-Feb-08	17-May-09	79000.00	=""	="Mitsubishi Chemical"	28-May-08 11:36 AM	

+="CN86377-A1"	"building work for marketing makeover at Gunnedah office - electrical, painting and signage installation"	="Centrelink"	28-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jun-08	30-Jun-08	19327.00	=""	="David J Smith Building P/L"	28-May-08 12:12 PM	

+="CN86379"	"Stoves, LP Gas Portable 2 Burener in accordance with Australian Standards reference AS2658-1988."	="Defence Materiel Organisation"	28-May-08	="Camping or outdoor stoves"	14-May-08	10-Jun-08	74426.00	=""	="Maxco Industries"	28-May-08 12:14 PM	

+="CN86380"	" Keyboard/Video/Mouse Switch Solution "	="Australian Crime Commission"	28-May-08	="Switch boxes"	01-May-08	12-May-08	57123.60	=""	="Black Box Network Services"	28-May-08 12:35 PM	

+="CN86383"	"Salt & Pepper Shakers manufacted in accordance with DEF(AUST)5493D dated June 2006."	="Defence Materiel Organisation"	28-May-08	="Spice or salt or pepper shakers"	23-May-08	27-Aug-08	14410.00	="RFQ J8302"	="Silverglo Stainless Steel Pty Ltd"	28-May-08 01:28 PM	

+="CN86384"	" CIRCUIT CARD ASSEMBLY P/No 245-6211-10; MC 22373  QUANTITY 10 "	="Defence Materiel Organisation"	28-May-08	="Military rotary wing aircraft"	28-May-08	28-Jan-09	18490.85	=""	="ASSOCIATED AIRCRAFT"	28-May-08 01:35 PM	

+="CN86385-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610387)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	21-Jan-09	576720.00	=""	="Paxus Australia Pty Ltd"	28-May-08 01:54 PM	

+="CN86386-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1613505)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	15-May-09	404800.00	=""	="Paxus Australia Pty Ltd"	28-May-08 01:57 PM	

+="CN86387-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610389)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	761200.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:01 PM	

+="CN86388-A2"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1612371)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	07-Nov-08	805090.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:08 PM	

+="CN86389-A3"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610317) "	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	779790.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:12 PM	

+="CN86391"	"Repair of Tail Rotor Gearbox"	="Defence Materiel Organisation"	28-May-08	="Aircraft"	28-May-08	20-Jun-08	40047.87	=""	="Sikorsky Aircraft Australia"	28-May-08 02:18 PM	

+="CN86392-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610369)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	832128.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:19 PM	

+="CN86393-A3"	"Provision of Information Technology Specilist Services (Previously Published as GAPS ID: 1610311)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	682000.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:26 PM	

+="CN86394-A3"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610398) "	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	750475.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:33 PM	

+="CN86395-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1609860)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	22-May-06	30-Jun-09	630465.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:39 PM	

+="CN86397"	"APEC"	="Department of Foreign Affairs and Trade"	28-May-08	="Hotels and lodging and meeting facilities"	03-Oct-07	24-Oct-07	15083.00	=""	="Quay Grand Suites Sydney"	28-May-08 02:50 PM	

+="CN86399"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	08-Oct-07	31-Oct-07	10254.95	=""	="Translating & Interpreting Svs"	28-May-08 02:50 PM	

+="CN86400"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81677.00	=""	="Australian Protective Service"	28-May-08 02:50 PM	

+="CN86401"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81669.00	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86402"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81845.00	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86403"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	161480.48	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86404"	"Property rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	09-Oct-07	09-Oct-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	28-May-08 02:51 PM	

+="CN86405"	"Property Mgt & Architectural Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	29-Oct-07	37975.36	=""	="INTEGRATED SPACE PTY LTD"	28-May-08 02:51 PM	

+="CN86406"	"Webserver maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	10-Oct-07	10-Oct-07	23152.25	=""	="ZVENO PTY LTD"	28-May-08 02:51 PM	

+="CN86407"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	44289.41	=""	="Universal McCann"	28-May-08 02:51 PM	

+="CN86408"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	44143.98	=""	="Universal McCann"	28-May-08 02:52 PM	

+="CN86409"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	65092.14	=""	="Universal McCann"	28-May-08 02:52 PM	

+="CN86410"	"Car hire"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	11-Oct-07	28-Oct-07	21837.30	=""	="EQUITY TRANSPORT GROUP PTY LTD"	28-May-08 02:52 PM	

+="CN86411"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	12-Oct-07	31-Oct-07	168563.33	=""	="Interiors Australia"	28-May-08 02:52 PM	

+="CN86412"	"Refurbishment"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	31-Oct-07	19437.69	=""	="Interiors Australia"	28-May-08 02:52 PM	

+="CN86413"	"Driver Training"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	26-Oct-07	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	28-May-08 02:52 PM	

+="CN86414"	"Furniture and Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	15-Oct-07	31-Oct-07	42489.18	=""	="HK Logistics PTY LTD"	28-May-08 02:52 PM	

+="CN86415"	"Furniture and Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	15-Oct-07	31-Oct-07	48712.79	=""	="HK Logistics PTY LTD"	28-May-08 02:53 PM	

+="CN86417"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	16-Oct-07	01-Nov-07	13943.00	=""	="Queensland Ship Surveyors Pty Ltd"	28-May-08 02:53 PM	

+="CN86418"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	16-Oct-07	16-Oct-07	47141.42	=""	="TELSTRA CORPORATION"	28-May-08 02:53 PM	

+="CN86419"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	16-Oct-07	28-Oct-07	51396.77	=""	="Universal McCann"	28-May-08 02:53 PM	

+="CN86420"	"media monitoring"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	16-Oct-07	28-Oct-07	18290.04	=""	="MEDIA MONITORS PTY LTD"	28-May-08 02:53 PM	

+="CN86421"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Power Generation and Distribution Machinery and Accessories"	17-Oct-07	25-Oct-07	41360.00	=""	="SPOTLESS P&F Pty Ltd"	28-May-08 02:53 PM	

+="CN86422"	"Property Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	17-Oct-07	17-Oct-07	12269.30	=""	="Knight Frank (SA) Pty Ltd"	28-May-08 02:54 PM	

+="CN86423"	"Secure Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	17-Oct-07	06-Nov-07	11132.00	=""	="G4S International"	28-May-08 02:54 PM	

+="CN86424"	"Subscriptions"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	29-Oct-07	11250.00	=""	="Dow Jones Reuters Business Interact"	28-May-08 02:54 PM	

+="CN86425"	"Printing"	="Department of Foreign Affairs and Trade"	28-May-08	="Printed media"	17-Oct-07	17-Oct-07	10164.00	=""	="CANPRINT COMMUNICATIONS P/L"	28-May-08 02:54 PM	

+="CN86426"	"Telstra Quarterly Account July-September 2007"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	17-Oct-07	23-Oct-07	28692.24	=""	="TELSTRA CORPORATION LIMITED (Qld)"	28-May-08 02:54 PM	

+="CN86427"	"Rent"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	17-Oct-07	17-Oct-07	64939.74	=""	="Australand Property Trust"	28-May-08 02:54 PM	

+="CN86428"	"Security Door"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	18-Oct-07	18-Oct-07	16507.63	=""	="Diebold Physical Security Pty Ltd"	28-May-08 02:54 PM	

+="CN86429"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	19-Oct-07	31-Oct-07	10649.10	=""	="Translating & Interpreting Svs"	28-May-08 02:55 PM	

+="CN86430"	"Generator"	="Department of Foreign Affairs and Trade"	28-May-08	="Power Generation and Distribution Machinery and Accessories"	19-Oct-07	30-Nov-07	38787.00	=""	="Cummins South Pacific Pty Ltd"	28-May-08 02:55 PM	

+="CN86431"	"Health Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Comprehensive health services"	23-Oct-07	31-Oct-07	15866.92	=""	="Clifford Hallam Healthcare P/L-CH2"	28-May-08 02:55 PM	

+="CN86432"	"Secure Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	23-Oct-07	11132.00	=""	="G4S International"	28-May-08 02:55 PM	

+="CN86433"	"Domestic Data monthly account"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	24-Oct-07	24-Oct-07	11430.88	=""	="TELSTRA CORPORATION"	28-May-08 02:55 PM	

+="CN86434"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	24-Oct-07	28-Feb-08	24836.00	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:55 PM	

+="CN86435"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	24-Oct-07	28-Feb-08	255756.11	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:55 PM	

+="CN86436"	"APEC Travel"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	25-Oct-07	25-Oct-07	15496.19	=""	="Macquarie Bank Limited"	28-May-08 02:55 PM	

+="CN86437"	"Furniture and Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	26-Oct-07	31-Oct-07	59366.00	=""	="Add Design & Management"	28-May-08 02:56 PM	

+="CN86438"	"Postage"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	26-Oct-07	26-Oct-07	255098.95	=""	="Australia Post (9239640)"	28-May-08 02:56 PM	

+="CN86439"	"Artbank Lease"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	29-Oct-07	31-Oct-08	16150.00	=""	="ARTBANK"	28-May-08 02:56 PM	

+="CN86440"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	30-Oct-07	30-Nov-07	11844.80	=""	="QANTAS AIRWAYS LTD"	28-May-08 02:56 PM	

+="CN86441"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	31-Oct-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	28-May-08 02:56 PM	

+="CN86442"	"Office Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	02-Nov-07	12319.14	=""	="Knight Frank (SA) Pty Ltd"	28-May-08 02:56 PM	

+="CN86443"	"Architectural services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	26-Nov-07	32615.00	=""	="INTEGRATED SPACE PTY LTD"	28-May-08 02:56 PM	

+="CN86444"	"Office Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	02-Nov-07	74352.17	=""	="Knight Frank (Vic) Pty Ltd"	28-May-08 02:57 PM	

+="CN86445"	"Training Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Education and Training Services"	31-Oct-07	17-Nov-07	10582.53	=""	="Rob Brennan and Associates"	28-May-08 02:57 PM	

+="CN86447"	"Comcare Insurance"	="Department of Foreign Affairs and Trade"	28-May-08	="Insurance and retirement services"	31-Oct-07	31-Oct-07	149626.00	=""	="COMCARE"	28-May-08 02:57 PM	

+="CN86448"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	31-Oct-07	23-Nov-07	41360.00	=""	="SPOTLESS P&F Pty Ltd"	28-May-08 02:57 PM	

+="CN86449"	"Secure freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	31-Oct-07	27-Nov-07	11132.00	=""	="G4S International"	28-May-08 02:57 PM	

+="CN86450"	"Reimbursable Claim"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	02-Oct-07	03-Oct-07	541109.63	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:57 PM	

+="CN86451"	"Furniture & Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Building and Construction and Maintenance Services"	10-Oct-07	10-Oct-07	26305.57	=""	="Caterlink"	28-May-08 02:58 PM	

+="CN86452"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	10-Oct-07	10-Oct-07	22649.85	=""	="ADM Customs & Freight"	28-May-08 02:58 PM	

+="CN86453"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	10-Oct-07	19-Oct-07	11583.15	=""	="ADM Customs & Freight"	28-May-08 02:58 PM	

+="CN86454"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	10-Oct-07	28-Feb-08	59701.92	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:58 PM	

+="CN86455"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	10-Oct-07	28-Feb-08	506937.50	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:58 PM	

+="CN86456"	"Design Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	17-Oct-07	14815.00	=""	="Interiors Australia"	28-May-08 02:58 PM	

+="CN86457"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	18-Oct-07	28-Feb-08	52763.61	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:59 PM	

+="CN86458"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	18-Oct-07	28-Feb-08	340212.81	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:59 PM	

+="CN86459"	"Shatter Film"	="Department of Foreign Affairs and Trade"	28-May-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Oct-07	31-Oct-07	23050.00	=""	="Mep Films"	28-May-08 02:59 PM	

+="CN86460"	"Energy Management"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	30-Oct-08	14400.00	=""	="Delta Building Automation Pty Ltd"	28-May-08 02:59 PM	

+="CN86461"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Electrical wire and cable and harness"	04-Oct-07	01-Nov-07	15036.58	=""	="AFC GROUP PTY LTD"	28-May-08 02:59 PM	

+="CN86462"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	02-Oct-07	30-Oct-07	16595.70	=""	="RIC Teledata Pty Ltd"	28-May-08 02:59 PM	

+="CN86463"	"Printers"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	09-Oct-07	06-Nov-07	24505.36	=""	="LEXMARK INT (AUST) P/L"	28-May-08 02:59 PM	

+="CN86464"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	15-Oct-07	12-Nov-07	39078.60	=""	="Commander Integrated Networks Pty L"	28-May-08 03:00 PM	

+="CN86465"	"IT Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	12-Oct-07	09-Nov-07	630153.16	=""	="Ethan Group Pty Ltd"	28-May-08 03:00 PM	

+="CN86466"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	11-Oct-07	08-Nov-07	40931.66	=""	="Commander Integrated Networks Pty L"	28-May-08 03:00 PM	

+="CN86467"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	11-Oct-07	08-Nov-07	40810.00	=""	="Ethan Group Pty Ltd"	28-May-08 03:00 PM	

+="CN86468"	"Communications Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	03-Oct-07	31-Oct-07	43450.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	28-May-08 03:00 PM	

+="CN86469"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	12-Oct-07	09-Nov-07	165968.00	=""	="Integral Consulting Services"	28-May-08 03:00 PM	

+="CN86470"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	08-Oct-07	05-Nov-07	100182.50	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	28-May-08 03:01 PM	

+="CN86471"	"Computer Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	11-Oct-07	11-Jan-08	304666.78	=""	="Department of Defence"	28-May-08 03:01 PM	

+="CN86472"	"Office Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	18-Oct-07	20-Nov-07	10558.50	=""	="Commander Integrated Networks Pty L"	28-May-08 03:01 PM	

+="CN86473"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	23-Oct-07	20-Nov-07	55660.00	=""	="Innovative Business Computing P/L"	28-May-08 03:01 PM	

+="CN86474"	"Printer Consumables"	="Department of Foreign Affairs and Trade"	28-May-08	="Office machines and their supplies and accessories"	29-Oct-07	26-Nov-07	13400.00	=""	="TONER EXPRESS A'SIA PTY LTD"	28-May-08 03:01 PM	

+="CN86475"	"Consulting Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	24-Oct-07	21-Nov-07	95700.00	=""	="KAZ Group Pty Ltd"	28-May-08 03:02 PM	

+="CN86476"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	29-Oct-07	26-Nov-07	139480.00	=""	="RIC Teledata Pty Ltd"	28-May-08 03:02 PM	

+="CN86477"	"Building Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	27-Feb-08	19400.00	=""	="A.C.T. Interiors"	28-May-08 03:02 PM	

+="CN86478"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	27-Feb-08	15610.00	=""	="Delta Building Automation Pty Ltd"	28-May-08 03:02 PM	

+="CN86479"	"Office Fit-Out"	="Department of Foreign Affairs and Trade"	28-May-08	="General building construction"	30-Oct-07	30-Nov-07	26619.93	=""	="CAPPELLO OFFICE & COMMERCIAL"	28-May-08 03:02 PM	

+="CN86480"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	29-Oct-07	26-Nov-07	1172433.28	=""	="Ethan Group Pty Ltd"	28-May-08 03:02 PM	

+="CN86481"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	26-Oct-07	31-Oct-07	59587.43	=""	="STAR TRACK EXPRESS"	28-May-08 03:02 PM	

+="CN86482"	"Printed Forms"	="Department of Foreign Affairs and Trade"	28-May-08	="Printed media"	30-Oct-07	27-Nov-07	38820.00	=""	="THE CAMERONS GROUP"	28-May-08 03:03 PM	

+="CN86483"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	22-Oct-07	19-Nov-07	41541.50	=""	="Bridge IT Engineering Pty Ltd"	28-May-08 03:03 PM	

+="CN86484"	" PROVISION OF REPLENISHMENT PARTS  "	="Defence Materiel Organisation"	28-May-08	="Hardware"	28-May-08	11-Jun-08	10152.42	=""	="BLACKWOODS"	28-May-08 03:05 PM	

+="CN86487"	"Provision of International Courier Services"	="Australian Sports Anti-Doping Authority (ASADA)"	28-May-08	="Postal and small parcel and courier services"	03-Mar-08	02-Mar-09	82000.00	="RFT 0607/007"	="DGM Australia"	28-May-08 03:42 PM	

+="CN86488"	"Purchase of Qty 10 NSN 6030-01-544-7321"	="Defence Materiel Organisation"	28-May-08	="Surveillance and detection equipment"	31-Mar-08	30-May-08	18265.00	=""	="Hills Industries Ltd"	28-May-08 03:45 PM	

+="CN86489"	"Procurement Advisory and management services - Applications development panel procurement process"	="Australian Federal Police"	28-May-08	="Professional procurement services"	20-Aug-07	30-Jun-08	83600.00	="RFT 22-2005"	="JJM Holdings Pty Ltd Trading as Terrace Services"	28-May-08 03:45 PM	

+="CN86490"	"Lease for premises at Winton Road, Tamworth Airport, Tamworth NSW  "	="Department of Defence"	28-May-08	="Lease and rental of property or building"	11-Jan-07	31-Dec-09	61602.31	=""	="BAE Systems Australia Limited"	28-May-08 03:49 PM	

+="CN86493-A2"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1655947)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	08-Jan-07	30-Jun-08	363000.00	=""	="Ambit Recruitment Pty Ltd"	28-May-08 04:06 PM	

+="CN86497-A1"	" Software Maintenance 1 March 2008 - 28 February 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	01-Mar-08	28-Feb-09	10024.30	=""	="Argsoft Sales and Support Pty Limited"	28-May-08 05:47 PM	

+="CN86498-A1"	" Support and Maintenance SAN 1 May 2008 - 34 April 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	01-May-08	30-Apr-10	41309.95	=""	="Sun Microsystems Australia Pty Ltd"	28-May-08 05:47 PM	

+="CN86499-A2"	"MS Sharepoint Consultancy Audit Central"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	01-May-08	30-Sep-09	52000.00	=""	="OBS Pty Ltd"	28-May-08 05:47 PM	

+="CN86500-A1"	"Conduct Interview Skills Workshop and manuals"	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	01-May-08	30-Sep-08	13500.00	=""	="CIT Solutions Pty Limited"	28-May-08 05:47 PM	

+="CN86501-A1"	" Writing Skills Workshop "	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	03-Mar-08	30-Jun-08	20000.00	=""	="Collaborative Business"	28-May-08 05:47 PM	

+="CN86502-A1"	"250 x HP L2045W LCD Monitors"	="Australian National Audit Office (ANAO)"	28-May-08	="Computer displays"	08-May-08	31-May-08	78575.75	=""	="HP Australia"	28-May-08 05:47 PM	

+="CN86503-A1"	" 2007-08 ANAO Annual Staff Survey "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	09-May-08	30-Jun-08	29550.00	=""	="ORIMA Research"	28-May-08 05:47 PM	

+="CN86504-A1"	" Contract-In Audit Staff "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	09-May-08	30-Jun-08	59400.00	=""	="Pricewaterhouse Coopers"	28-May-08 05:48 PM	

+="CN86505-A1"	" APS6 to EL2 Conference facilities 2 Residential programs during May 2008 "	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	14-Apr-08	30-May-08	20000.00	=""	="Links House Bowral Pty Limited"	28-May-08 05:48 PM	

+="CN86506-A1"	" Value Packs for Audit Standards "	="Australian National Audit Office (ANAO)"	28-May-08	="Printed publications"	14-May-08	30-Jun-08	19173.00	=""	="John Wiley and Sons Australia, Ltd"	28-May-08 05:48 PM	

+="CN86507-A1"	" Legal advice for Tender for the refurbishment of 19 National Circuit. "	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	19-Mar-08	30-Nov-08	28000.00	=""	="Mallesons Stephen Jaques"	28-May-08 05:48 PM	

+="CN86508-A1"	" Recruitment Costs - SES Officers "	="Australian National Audit Office (ANAO)"	28-May-08	="Personnel recruitment"	19-May-08	30-Jun-08	70400.00	=""	="Hansen and Searson"	28-May-08 05:48 PM	

+="CN86509-A1"	"Port Control Software and Maintenance 21 May 2008 to 20 May 2009"	="Australian National Audit Office (ANAO)"	28-May-08	="Network management software"	21-May-08	20-May-09	23103.00	=""	="KAZ Group Pty Limited"	28-May-08 05:48 PM	

+="CN86510-A1"	" Temporary accommodation for staff - Recruitment "	="Australian National Audit Office (ANAO)"	28-May-08	="Lease and rental of property or building"	22-Apr-08	22-Aug-08	14850.00	=""	="Kingston Court Serviced Apartments"	28-May-08 05:48 PM	

+="CN86511-A1"	" Engagement of staff for assistance in Financial Statement Audits "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-Apr-08	22-Aug-08	70000.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	28-May-08 05:48 PM	

+="CN86512-A1"	" Staff to assist with the Financial Statement audit of the Australian Taxation Office. "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-May-08	31-Oct-08	57780.00	=""	="Audit and Assurance Consulting Services"	28-May-08 05:49 PM	

+="CN86513-A1"	" Engagement of staff to assist in Financial Statement Audits "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-May-08	12-Sep-08	97760.00	="ANAOAM2008/493"	="Synergy Business Solutions (Int) Pty Ltd"	28-May-08 05:49 PM	

+="CN86514-A1"	"Annual Report 2007-08 Design and Artwork"	="Australian National Audit Office (ANAO)"	28-May-08	="Art design services"	22-May-08	30-Sep-08	14498.00	=""	="Adcorp Australia Limited"	28-May-08 05:49 PM	

+="CN86515-A1"	"Design, Management and Printing of the Internal Budgeting BPG."	="Australian National Audit Office (ANAO)"	28-May-08	="Printing"	23-Apr-08	30-Jun-08	27386.00	=""	="Comcom Pty Ltd T/A Zoo"	28-May-08 05:49 PM	

+="CN86516-A1"	"IT Consultancy Services and Library Report Access"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	23-May-08	22-May-09	24200.00	=""	="Gartner Australasia Pty Limited"	28-May-08 05:49 PM	

+="CN86517-A1"	" SNARE - Small Agency Software Support 23 May 2008-22 May 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	23-May-08	22-May-09	48500.00	=""	="Oakton AA Services Pty Ltd"	28-May-08 05:49 PM	

+="CN86518-A2"	"Robert Brennan and Associates"	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	26-Apr-08	30-Jun-09	98000.00	=""	="Robert Brennan and Associates"	28-May-08 05:49 PM	

+="CN86519-A1"	"Budgetary Consultancy"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	27-May-08	30-Jun-08	11000.00	=""	="Resolution Consulting Services"	28-May-08 05:50 PM	

+="CN86520"	"Printer, automatic data processing"	="Defence Materiel Organisation"	28-May-08	="Air transportation support systems and equipment"	18-Apr-08	20-Jun-08	123620.20	=""	="AirServices Australia"	28-May-08 06:00 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val0to16000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val0to16000.xls
@@ -1,290 +1,290 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48146"	"REPAIR OF BLACKHAWK MAIN ROTOR FLUTTER DAMPENER"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	10798.01	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:45 AM	
-="CN48151"	" Software purchase "	="Future Fund Management Agency"	26-Nov-07	="Software"	19-Nov-07	19-Dec-07	15070.00	=""	="The Mathworks Australia Pty Ltd"	26-Nov-07 10:40 AM	
-="CN48154-A1"	"VP 175- Electorate Briefs Automation"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	12441.59	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48159"	"Bulk Order for Books for DCITA Library"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Published Products"	15-Nov-07	30-Nov-07	14173.60	="ATM2007/00640"	="DA INFORMATION SERVICES PTY LT"	26-Nov-07 11:32 AM	
-="CN48161"	"PAFO: Provision of external audit advice to contracted PC filters vendors"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	11403.00	="ATM07/630"	="Grosvenor Management Consulting"	26-Nov-07 11:32 AM	
-="CN48162"	"Administrative Support for Bookings Officer"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	20-Nov-07	28-Mar-08	11950.88	=""	="THE GREEN AND GREEN GROUP PTY LTD"	26-Nov-07 11:32 AM	
-="CN48164-A1"	"Career Development Assessment for staff member"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	28-Nov-07	11430.00	="ATM 07/672"	="Australian Public"	26-Nov-07 11:32 AM	
-="CN48165-A1"	"Career Development Assessment individual staff"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Nov-07	11825.00	="ATM07/671"	="Australian Public"	26-Nov-07 11:32 AM	
-="CN48166"	"Spotless monthly maintenance november 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13072.14	="ATM2007/00679"	="Spotless P&F Pty Ltd"	26-Nov-07 11:32 AM	
-="CN48168"	"OPH Gas Supply - November 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13595.93	="ATM2007/00678"	="ACTEWAGL"	26-Nov-07 11:33 AM	
-="CN48172"	"Lift Package- New Lift in Members Dining Rooms Project Management & Associated Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	15950.00	="CCR2007/00528"	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-Nov-07 11:33 AM	
-="CN48173"	"Building Works including mechanical, hydraulic, fire services, joinery & finishes PMs' cent"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Jun-08	12202.65	=""	="SPS STRATEGIC PROPERTY SERVICES"	26-Nov-07 11:33 AM	
-="CN48177-A1"	"10x servers ITFB"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	24-Sep-07	29-Nov-07	12232.00	="ATM07/331"	="DATAFLEX PTY LTD"	26-Nov-07 11:34 AM	
-="CN48187"	"Actuarial & Associated cost for CSS and PSS"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11600.00	="ATM2007/00621"	="DEPT OF FINANCE & ADMINISTRATION"	26-Nov-07 11:35 AM	
-="CN48198"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	26-Nov-07	="Carpeting"	16-Nov-07	30-Nov-07	10389.50	=""	="Chesta's Floors"	26-Nov-07 11:46 AM	
-="CN48204"	"Provision of actuarial and associated services"	="Department of Parliamentary Services"	26-Nov-07	="Public enterprises management or financial services"	09-Nov-07	30-Nov-07	11600.00	=""	="Department of Finance &"	26-Nov-07 11:46 AM	
-="CN48205"	"Ceramic and Quarry Tile Maintenance"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	08-Nov-07	31-Dec-07	14126.37	=""	="PDA Marble & Granite"	26-Nov-07 11:47 AM	
-="CN48209"	"Advice on pest control service requirements at Parliament House"	="Department of Parliamentary Services"	26-Nov-07	="Pest control"	12-Nov-07	30-Nov-07	15477.00	="DPS07089"	="accessUTS Pty Ltd"	26-Nov-07 11:47 AM	
-="CN48212"	"B  CLASS CABINETS"	="Australian Taxation Office"	26-Nov-07	="Furniture and Furnishings"	15-Nov-07	15-Nov-07	10474.97	=""	="PLANEX SALES PTY LTD"	26-Nov-07 11:56 AM	
-="CN48214"	"ELG Facilitation"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	13860.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	26-Nov-07 11:56 AM	
-="CN48219"	"6 X POLYCOM VTX1000 WIDEBAND CONFERENCE PHONES"	="Australian Taxation Office"	26-Nov-07	="Office Equipment and Accessories and Supplies"	13-Nov-07	13-Nov-07	11939.40	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	26-Nov-07 11:57 AM	
-="CN48233"	"Scribe services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	03-Aug-07	30-Jun-08	12000.00	=""	="RECRUITMENT MANAGEMENT"	26-Nov-07 12:20 PM	
-="CN48248"	"Relocations / Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation services equipment"	06-Jul-07	30-Jun-08	10000.00	=""	="NEWAY"	26-Nov-07 12:21 PM	
-="CN48253"	"Pre-employment & OHS checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	09-Jul-07	09-Jul-07	10000.00	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:22 PM	
-="CN48258"	"Freight overnight bag"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	13-Jul-07	21-Dec-07	10000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:23 PM	
-="CN48270"	"Sponsorship of Australian Human Resources Summit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	04-Sep-07	12-Sep-07	11000.00	=""	="Association & Communications"	26-Nov-07 12:24 PM	
-="CN48274"	"Entitlement"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-Sep-07	05-Sep-07	13611.07	="ITC"	="JUST LAW - TRUST ACCOUNT"	26-Nov-07 12:25 PM	
-="CN48276"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Sep-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	26-Nov-07 12:25 PM	
-="CN48279"	"LSL & Rec Transfers - Interagency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	06-Sep-07	13682.59	=""	="CENTRELINK FST SHARED SERVICES - NS"	26-Nov-07 12:25 PM	
-="CN48280"	"Accommodation for staff  for National Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	09-Sep-08	15642.84	="DEPT"	="COLLIERS INTERNATIONAL (NT) PTY LTD"	26-Nov-07 12:26 PM	
-="CN48286"	"Provide CEB's with driver training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	15000.00	=""	="DIRECT 4WD AWARENESS"	26-Nov-07 12:26 PM	
-="CN48287"	"Photcopiers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office machines and their supplies and accessories"	07-Sep-07	30-Jan-12	10608.40	=""	="RICOH AUSTRALIA (ROA)"	26-Nov-07 12:26 PM	
-="CN48288"	"removal   storage costs"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	13000.00	=""	="ALLIED PICKFORDS PTY LTD"	26-Nov-07 12:27 PM	
-="CN48290"	"Contract services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	10-Sep-07	21-Sep-07	15000.00	="."	="OAKTON AA SERVICES PTY LTD"	26-Nov-07 12:27 PM	
-="CN48293"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	13222.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	
-="CN48297"	"Archiving Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Aug-07	27-Sep-08	12999.73	=""	="MANAGEMENT SOLUTIONS"	26-Nov-07 12:27 PM	
-="CN48314"	"DEWR LVL12 BLD Perth - Tenancy Refit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	10068.30	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	
-="CN48319"	"Postage Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	04-Aug-06	30-Jun-07	10030.54	=""	="AUSTRALIA POST (PERTH 6164555)"	26-Nov-07 12:30 PM	
-="CN48322"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	08-Aug-06	30-Jun-07	12485.32	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	
-="CN48323"	"Temporary Employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-Aug-06	09-Aug-06	11767.57	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:31 PM	
-="CN48325"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	21-Aug-06	30-Jun-07	15714.60	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:31 PM	
-="CN48327"	"Collateral - Market/Display Material"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	25-Aug-06	30-Jun-07	12407.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	26-Nov-07 12:31 PM	
-="CN48330"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	12464.31	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	
-="CN48332"	"Health Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	13-Oct-06	30-Jun-07	11517.00	=""	="MLCOA - (Canberra)"	26-Nov-07 12:32 PM	
-="CN48350"	"Health checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	05-Jul-06	30-Jun-07	14000.00	=""	="HEALTH SERVICES AUSTRALIA LTD"	26-Nov-07 12:34 PM	
-="CN48351"	"Stationary/Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	07-Jul-06	30-Jun-07	10651.08	=""	="CORPORATE EXPRESS AUSTRALIA"	26-Nov-07 12:34 PM	
-="CN48354"	"Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	11-Jul-06	30-Jun-07	10300.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	26-Nov-07 12:34 PM	
-="CN48365"	"Pre-Employment & OH&S Exams"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	27-Jul-06	30-Jun-08	10094.70	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:36 PM	
-="CN48366"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Jul-06	30-Aug-08	10535.20	=""	="MINTER ELLISON"	26-Nov-07 12:36 PM	
-="CN48368"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Jun-07	30-Jun-07	10000.00	=""	="MOORE CONSULTING"	26-Nov-07 12:36 PM	
-="CN48369"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Graphic design"	12-Jun-07	30-Jun-07	10175.00	=""	="BOOMERANG INTEGRATED MARKETING"	26-Nov-07 12:36 PM	
-="CN48374"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	20-Jun-07	30-Jun-07	10561.10	=""	="CANPRINT COMMUNICATIONS PTY LTD"	26-Nov-07 12:37 PM	
-="CN48392"	"Supply of Mobile Phones and PDA handsets"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	30-Nov-06	30-Jun-07	10278.75	=""	="OPTUS Communications Pty Ltd"	26-Nov-07 12:39 PM	
-="CN48398"	"Research for safe design"	="Department of Employment and Workplace Relations"	26-Nov-07	="Security and personal safety"	22-Jan-07	30-Apr-07	10394.26	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:40 PM	
-="CN48399"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Feb-07	30-Nov-10	15625.50	=""	="DRAKE"	26-Nov-07 12:40 PM	
-="CN48402"	"Courier and Freight charges"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Feb-07	30-Jun-07	12200.00	=""	="TNT DOMESTIC & INTERNATIONAL"	26-Nov-07 12:40 PM	
-="CN48403"	"Transport Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	07-Mar-07	30-Jun-07	10032.00	=""	="KNIGHT FRANK"	26-Nov-07 12:41 PM	
-="CN48406"	"Filming of  Work for the Dole Awards"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	10-May-07	30-Jun-07	11234.00	=""	="VIVAVISION"	26-Nov-07 12:41 PM	
-="CN48407"	"Filming"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	16-May-07	30-Jun-07	12833.70	=""	="IMAGES ONLINE"	26-Nov-07 12:41 PM	
-="CN48412"	"Catering, venue Hire and security"	="Department of Employment and Workplace Relations"	26-Nov-07	="Food and nutrition services"	31-May-07	30-Sep-07	12550.00	=""	="GINGER CATERING"	26-Nov-07 12:42 PM	
-="CN48424-A1"	"Under APSC Panel of Providers for L&D Faciliated team program and follow-up coaching"	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	23-Aug-07	30-Nov-07	11000.00	=""	="Professional Facilitators International Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48428"	"CPO016720 - Supply of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	02-Nov-07	02-Feb-08	14025.00	=""	="Haworth"	26-Nov-07 02:23 PM	
-="CN48430"	"CPO017175 - Accommodation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Hotels and lodging and meeting facilities"	20-Nov-07	20-Dec-07	13179.00	=""	="Broadwater"	26-Nov-07 02:23 PM	
-="CN48436"	"CPO017349 - IT Software"	="Australian Customs and Border Protection Service"	26-Nov-07	="Computer services"	26-Sep-07	22-Nov-07	13200.00	=""	="D'Arcy Consulting Group"	26-Nov-07 02:24 PM	
-="CN48437"	"CPO017250 - Supply and Installation of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	22-Nov-07	22-Nov-07	11300.30	=""	="Schiavello (WA) Pty"	26-Nov-07 02:24 PM	
-="CN48439"	"CPO017116 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	11-Nov-07	11-Nov-07	13200.00	=""	="DFP Recruitment Services Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48446"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	20-Nov-07	13282.50	=""	="WORK SOLUTIONS GROUP PTY LTD"	26-Nov-07 02:41 PM	
-="CN48447"	"CORPORATE HPM CONFERENCE OCT07"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	22-Nov-07	14550.00	=""	="JASPER HOTEL"	26-Nov-07 02:41 PM	
-="CN48448"	"ISAC RECRUITMENT SELECTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	22-Nov-07	11865.00	=""	="Australian Public Service"	26-Nov-07 02:41 PM	
-="CN48449"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	22-Nov-07	15361.50	=""	="BLUE PROPERTY MARKETING"	26-Nov-07 02:41 PM	
-="CN48454"	"PROFESSIONAL SERVICES"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	14-Nov-07	10645.00	=""	="LEO A. TSAKNIS"	26-Nov-07 02:42 PM	
-="CN48456"	"REGISTRATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	15-Nov-07	10115.60	=""	="TONKIN CORPORATION PTY LTD"	26-Nov-07 02:42 PM	
-="CN48466"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	12020.18	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	
-="CN48467"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	11190.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	
-="CN48474"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	16-Oct-07	16-Oct-07	12584.71	=""	="Curran & Associates"	26-Nov-07 02:57 PM	
-="CN48476"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	17-Oct-07	14410.00	=""	="SAVILLS PTY LTD"	26-Nov-07 02:57 PM	
-="CN48479"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	17-Oct-07	17-Oct-07	12320.00	=""	="IPA PERSONNEL PTY LTD"	26-Nov-07 02:58 PM	
-="CN48483"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	14433.01	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48484"	"Provision of Network Services"	="Medicare Australia"	26-Nov-07	="Electrical wire and cable and harness"	17-Oct-07	26-Oct-07	13275.72	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 02:58 PM	
-="CN48491"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48492"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48493"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48494"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	
-="CN48496"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	11226.39	=""	="DUSAN KEBER"	26-Nov-07 03:00 PM	
-="CN48497"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	26-Oct-07	26-Oct-07	13567.40	=""	="Watermark Search International"	26-Nov-07 03:00 PM	
-="CN48500"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	26-Nov-07	="Paper products"	29-Oct-07	29-Oct-07	11041.80	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	26-Nov-07 03:00 PM	
-="CN48504"	"Provision of Training Courses"	="Medicare Australia"	26-Nov-07	="Specialised educational services"	30-Oct-07	30-Oct-07	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	26-Nov-07 03:01 PM	
-="CN48505"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Graphic design"	31-Oct-07	30-Dec-07	13482.70	=""	="SPECTRUM GRAPHICS"	26-Nov-07 03:01 PM	
-="CN48509"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	12403.02	=""	="James Richardson Corporation"	26-Nov-07 03:01 PM	
-="CN48519"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12513.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	
-="CN48520"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12293.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	
-="CN48522"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	26-Nov-07	12786.32	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	
-="CN48523"	"Provision of Telephony services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	15048.00	=""	="OPTUS BILLING SERVICES"	26-Nov-07 03:03 PM	
-="CN48524"	"ELECTRONIC SERVICES"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	09-Nov-07	26-Nov-07	15062.19	=""	="ESPREON PROPERTY SERVICES"	26-Nov-07 03:03 PM	
-="CN48527"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	11533.50	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 03:03 PM	
-="CN48528"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	15-Nov-07	12599.00	=""	="COLLIERS INTERNATIONAL (HK) LTD"	26-Nov-07 03:03 PM	
-="CN48532"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Nov-07	10391.81	=""	="ALLARD & SHELTON PTY LTD"	26-Nov-07 03:03 PM	
-="CN48533"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	04-Oct-07	04-Oct-07	10540.11	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:04 PM	
-="CN48537"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	04-Oct-07	04-Oct-07	13513.50	=""	="APIS CONSULTING GROUP"	26-Nov-07 03:04 PM	
-="CN48543"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	09-Oct-07	09-Oct-07	12310.15	=""	="KAROLINA KALANJ"	26-Nov-07 03:05 PM	
-="CN48547"	"SA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	12441.82	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48556"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	03-Oct-07	03-Oct-07	12161.69	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:06 PM	
-="CN48562"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	12705.00	=""	="James Richardson Corporation"	26-Nov-07 03:07 PM	
-="CN48565"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	30-Nov-07	11719.42	=""	="DRAKE AUSTRALIA PTY LTD"	26-Nov-07 03:07 PM	
-="CN48566"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	13278.18	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48573"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Heating and ventilation and air circulation"	15-Oct-07	15-Oct-07	12294.99	=""	="PETERS REFRIGERATION & AIR CON"	26-Nov-07 03:08 PM	
-="CN48580"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	11-Oct-07	11-Oct-07	13219.21	=""	="KAROLINA KALANJ"	26-Nov-07 03:09 PM	
-="CN48584"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	12687.40	=""	="CANBERRA CURTAINS & BLINDS PTY LTD"	26-Nov-07 03:10 PM	
-="CN48585"	"Provision of Employee Assistance"	="Medicare Australia"	26-Nov-07	="Human resources services"	11-Oct-07	11-Oct-07	12997.51	=""	="OSA GROUP PTY LTD"	26-Nov-07 03:10 PM	
-="CN48587"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	10450.00	=""	="CMB"	26-Nov-07 03:10 PM	
-="CN48588"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	13715.08	=""	="James Richardson Corporation"	26-Nov-07 03:10 PM	
-="CN48589"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	13381.50	=""	="FUTURE FLOOR SERVICES"	26-Nov-07 03:10 PM	
-="CN48481"	" Medical Consumables For ADF "	="Defence Materiel Organisation"	26-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	05-Dec-07	10450.00	=""	="Markforce Pty Ltd"	26-Nov-07 03:13 PM	
-="CN48594"	"IDM 2455 Sun Java System Identity 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	08-Nov-07	06-Dec-07	12144.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	26-Nov-07 03:52 PM	
-="CN48596"	"Adhoc document Translations FY 07/08"	="Australian Taxation Office"	26-Nov-07	="Editorial and Design and Graphic and Fine Art Services"	25-Sep-07	30-Jun-08	10000.00	=""	="VITS LANGUAGE LINK"	26-Nov-07 03:53 PM	
-="CN48598"	"DM47AU Introduction to DB2 Doc manger V8 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	22-Nov-07	10560.00	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:53 PM	
-="CN48600"	" Supply of mail services: Study of Sexual Assault "	="Australian Institute of Family Studies"	26-Nov-07	="Addressing or mailing labels"	24-Sep-07	24-Sep-07	11911.45	=""	="Mailcare Systems Pty Ltd"	26-Nov-07 04:06 PM	
-="CN48609-A1"	"Printing AEC publications"	="Australian Electoral Commission"	26-Nov-07	="Industrial printing services"	07-Nov-07	07-Dec-07	10384.00	="AEC06/026"	="Union Offset Printers"	26-Nov-07 04:47 PM	
-="CN48614"	" NSN 2995-00-985-1355  REPAIR/OVERHAUL OF STARTER, ENGINE, AIR TURBINE  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	15-Feb-07	31-Jan-08	10200.70	=""	="Honeywell Ltd"	26-Nov-07 04:52 PM	
-="CN48616"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 04:56 PM	
-="CN48617"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 05:00 PM	
-="CN48618"	"Design of Election Publication"	="Australian Electoral Commission"	26-Nov-07	="Computer generated design services"	19-Sep-07	31-Oct-07	13002.00	=""	="Zoo Communications Pty Ltd"	26-Nov-07 05:00 PM	
-="CN48638"	"Legal Advice/Representation"	="Australian Crime Commission"	27-Nov-07	="Legal services"	01-Jun-07	30-Sep-07	12627.31	=""	="Australian Government Solicitor"	27-Nov-07 09:19 AM	
-="CN48646"	"a/c spares:5306-01-173-9284, Bolt, qty 400."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	12-Dec-07	14880.80	=""	="Asia pacific Aerospace"	27-Nov-07 09:56 AM	
-="CN48650"	"Motor Vehicle Parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	10784.74	=""	="VOLVO COMMERICAL VEHICLES"	27-Nov-07 10:13 AM	
-="CN48654-A1"	"Provision of mobile caddy units for Gungahlin"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	04-Aug-06	04-Aug-06	10916.00	=""	="Planex Sales Pty Ltd"	27-Nov-07 10:19 AM	
-="CN48657"	"Guarding Services"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Oct-07	31-Oct-07	12155.60	=""	="Scope Protective Services"	27-Nov-07 10:27 AM	
-="CN48662"	"Guarding services for ACC Adelaide Office"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Sep-07	30-Nov-07	15469.52	=""	="Chubb Security Australia Pty Ltd"	27-Nov-07 10:41 AM	
-="CN48661"	"Monitoring Awareness Training"	="Department of Immigration and Citizenship"	27-Nov-07	="Educational and research structures"	01-Jul-07	27-Jul-07	10000.00	=""	="Achievement Awareness Training Pty Ltd"	27-Nov-07 10:44 AM	
-="CN48663"	"Gusrding services ACC QLD Office"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Sep-07	31-Oct-07	10670.00	=""	="Chubb Protective Services"	27-Nov-07 10:46 AM	
-="CN48665"	"Compliance and Detention Cultural Awareness Training"	="Department of Immigration and Citizenship"	27-Nov-07	="Specialised educational services"	04-Jul-07	31-Jul-07	13035.00	=""	="Beasley Intercultural Pty. Ltd."	27-Nov-07 10:48 AM	
-="CN48674"	" NSN 6115-01-119-9659  REPAIR/OVERHAUL OF GENERATOR, ALTERNATING CURRENT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	02-Oct-03	30-Nov-07	13881.00	=""	="Qantas Airways Ltd (Jet Base)"	27-Nov-07 11:15 AM	
-="CN48671"	"SERVICE AND REPAIR HASKEL PUMP"	="Department of Defence"	27-Nov-07	="Pumping units"	18-Apr-07	02-Jun-07	15368.32	=""	="AUSTRALIAN SAFETY ENGINEERS"	27-Nov-07 11:20 AM	
-="CN48687"	"Provision for PSS Disclosure Statement - Rebranding"	="Comsuper"	27-Nov-07	="Publishing"	19-Nov-07	30-Nov-08	10098.00	=""	="CanPrint Communications Pty Ltd"	27-Nov-07 11:21 AM	
-="CN48691-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	30-Aug-07	02-Nov-07	11900.00	=""	="Australian Federal Police"	27-Nov-07 11:26 AM	
-="CN48695"	"Placement fee for APS 6 Staff"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	02-Jul-07	29-Jun-08	10154.77	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	27-Nov-07 11:30 AM	
-="CN48701"	"Health Insurance renewal"	="Department of Transport and Regional Services"	27-Nov-07	="Patient care and treatment products and supplies"	14-Nov-07	14-Nov-08	10950.00	=""	="Willis Australia Limited"	27-Nov-07 11:31 AM	
-="CN48707"	"Training delivery - Staff selection and Recruitmen"	="Department of Transport and Regional Services"	27-Nov-07	="Specialised educational services"	20-Nov-07	30-Jun-08	13750.00	="WOT06/100"	="PEOPLE AND STRATEGY"	27-Nov-07 11:32 AM	
-="CN48713-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	12-Jul-07	23-Aug-07	10688.00	=""	="Persec Solutions Pty Ltd"	27-Nov-07 11:34 AM	
-="CN48723"	"motor vehicle spare parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	13379.00	=""	="ROVER AUSTRALIA"	27-Nov-07 12:17 PM	
-="CN48731"	"COUPLING HALF, QUICK DISCONNECT"	="Defence Materiel Organisation"	27-Nov-07	="Quick disconnects"	27-Jun-07	19-Sep-07	10298.20	=""	="AERO and MILITARY PRODUCTS PTY.LTD"	27-Nov-07 12:39 PM	
-="CN48733"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	27-Nov-07	="Community and social services"	12-Nov-07	30-Jun-08	15114.33	=""	="Areyonga Community Inc"	27-Nov-07 01:11 PM	
-="CN48740"	"motor vehicle spare parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	12118.40	=""	="ROVER AUSTRALIA"	27-Nov-07 01:52 PM	
-="CN48751"	"Key, Locating Block"	="Defence Materiel Organisation"	27-Nov-07	="Shaft or woodruff keys"	26-Nov-07	21-Dec-07	12496.00	=""	="Lake Engineering Pty Ltd"	27-Nov-07 02:05 PM	
-="CN48754"	"Archiving, retention, courier, process management and resource services"	="Australian Crime Commission"	27-Nov-07	="File archive storage"	20-Nov-07	20-Nov-07	11000.00	=""	="Recall Information Management"	27-Nov-07 02:11 PM	
-="CN48762"	"Storage Unit for Brisbane Office use"	="Australian Crime Commission"	27-Nov-07	="Storage sheds"	01-Nov-07	30-Jun-08	10400.00	=""	="Kennards Self Storage"	27-Nov-07 02:41 PM	
-="CN48763"	"Conference venue and accommodation"	="Australian Crime Commission"	27-Nov-07	="Conference centres"	27-Nov-07	29-Nov-07	14861.65	=""	="Crowne Plaza Alice Springs"	27-Nov-07 02:44 PM	
-="CN48767"	"NT Phone charges Oct 07"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	23-Nov-07	30-Nov-07	11876.88	=""	="Telstra  (ID No. 740)"	27-Nov-07 03:03 PM	
-="CN48768"	"Freight"	="Bureau of Meteorology"	27-Nov-07	="Transportation and Storage and Mail Services"	07-Nov-07	30-Nov-07	14503.21	=""	="TNT EXPRESS"	27-Nov-07 03:03 PM	
-="CN48769"	"BOC container management fee for November 2007"	="Bureau of Meteorology"	27-Nov-07	="Tools and General Machinery"	08-Nov-07	30-Nov-07	12578.13	=""	="Boc Limited"	27-Nov-07 03:03 PM	
-="CN48770"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	14667.40	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:03 PM	
-="CN48772"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	10827.75	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	
-="CN48774"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	10698.31	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	
-="CN48775"	"Management Consulting Services"	="Bureau of Meteorology"	27-Nov-07	="Management advisory services"	08-Nov-07	30-Nov-07	13486.00	=""	="Connor Pincus & Saunders P/L"	27-Nov-07 03:04 PM	
-="CN48776"	"Conference Venue"	="Bureau of Meteorology"	27-Nov-07	="Hotels and lodging and meeting facilities"	13-Nov-07	30-Nov-07	13239.00	=""	="The Grange at Lancefield P/L"	27-Nov-07 03:04 PM	
-="CN48781"	"Legal Services"	="Bureau of Meteorology"	27-Nov-07	="Legal services"	21-Nov-07	30-Nov-07	14658.59	=""	="Dale Boucher"	27-Nov-07 03:05 PM	
-="CN48782"	"Premier Maintenance Program Renewal"	="Bureau of Meteorology"	27-Nov-07	="Computer services"	22-Nov-07	31-Dec-08	14740.00	=""	="Argsoft Sales & Support Pty Ltd"	27-Nov-07 03:05 PM	
-="CN48783"	"Plastic Instruments Shelter Qty 5"	="Bureau of Meteorology"	27-Nov-07	="Building and Construction and Maintenance Services"	13-Nov-07	23-Nov-07	11913.00	=""	="Environmental Systems & Services"	27-Nov-07 03:05 PM	
-="CN48788"	"CHART M192 & CHART M207"	="Bureau of Meteorology"	27-Nov-07	="Office supplies"	21-Nov-07	26-Nov-07	12232.00	=""	="Printmail Australia Pty  Ltd"	27-Nov-07 03:06 PM	
-="CN48794"	"Nero Platinum"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	15-Jan-07	15-Jan-08	12000.00	=""	="Nero Inc."	27-Nov-07 03:18 PM	
-="CN48797"	"Preparing & developing workshops on 'Working with Translators and Interpreters'"	="Department of Immigration and Citizenship"	27-Nov-07	="Writing and translations"	31-Oct-07	30-Jun-10	15000.00	=""	="National Accrediation Authority Ltd"	27-Nov-07 03:21 PM	
-="CN48795"	"HOWITZER SPARES"	="Defence Materiel Organisation"	27-Nov-07	="Parts of guns or pistols"	26-Nov-07	31-Dec-07	10998.57	=""	="G A Hanrahan Pty Ltd"	27-Nov-07 03:24 PM	
-="CN48801"	"Preparation and legal review of contract"	="Australian Crime Commission"	27-Nov-07	="Legal services"	14-Nov-07	14-Nov-07	11000.00	=""	="Blake Dawson Waldron"	27-Nov-07 03:36 PM	
-="CN48807"	"Repair of Blackhawk Main Rotor Flutter Dampener"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	11132.99	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:07 PM	
-="CN48816"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	28-Aug-07	27-Sep-07	13096.71	=""	="Qantas Defence Services Pty Ltd"	27-Nov-07 04:32 PM	
-="CN48819"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	31-Aug-07	30-Sep-07	10425.30	=""	="Qantas Defence Services Pty Ltd"	27-Nov-07 04:42 PM	
-="CN48818"	"Repair of Blackhawk Main Rotor Spindle"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	28-Aug-07	11-Sep-07	11477.06	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:45 PM	
-="CN48823"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	23-Aug-07	31-Aug-07	13275.01	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 05:04 PM	
-="CN48830"	"A23 AIRCRAFT - REPAIRS TO RUDDER AIRCRAFT"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	11005.18	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:08 AM	
-="CN48842"	"Monthly Information Fee - 1OCT-31DEC07 - Comm"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	31-Dec-07	11250.00	=""	="FACTIVA LTD"	28-Nov-07 09:55 AM	
-="CN48853"	"RECRUITMENT ADVERTISING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	22-Oct-07	31-Oct-07	11668.80	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 09:56 AM	
-="CN48864"	"Trade Tests 07/08 - Hunter NSW"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	29-Oct-07	30-Jun-08	11000.00	=""	="TAFE NSW - HUNTER INSTITUTE"	28-Nov-07 09:57 AM	
-="CN48865"	"Trade Tests 07/08 Nth Sydney TAFE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	29-Oct-07	30-Jun-08	11000.00	=""	="NORTHERN SYDNEY INSTITUTE TAFE"	28-Nov-07 09:58 AM	
-="CN48873"	"Relocation of WPA staff - Saraton Building"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	31-Oct-07	14520.00	=""	="POINT PROJECT MANAGEMENT"	28-Nov-07 09:58 AM	
-="CN48877"	"DEWR Prizes for Third Year Statistics"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	31-Mar-12	11000.00	=""	="UNIVERSITY OF QUEENSLAND"	28-Nov-07 09:59 AM	
-="CN48878"	"Charter flight to Numbulwar for RAE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Oct-07	26-Oct-07	15800.00	=""	="HARDY AVIATION"	28-Nov-07 09:59 AM	
-="CN48879"	"Return charter flight to Milingimbi for RAE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Oct-07	19-Oct-07	12600.00	=""	="HARDY AVIATION"	28-Nov-07 09:59 AM	
-="CN48888"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	16-Oct-07	16-Oct-07	10621.91	=""	="AUST GOVERNMENT SOLICITOR"	28-Nov-07 10:00 AM	
-="CN48898"	"RECRUITMENT SERVICES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	17-Oct-07	31-Dec-07	15000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:01 AM	
-="CN48899"	"IT cable supply & installations"	="Department of Employment and Workplace Relations"	28-Nov-07	="Security surveillance and detection"	17-Oct-07	30-Jun-08	10114.50	=""	="STOWE AUSTRALIA PTY LTD"	28-Nov-07 10:01 AM	
-="CN48903"	"ALMR Workshop - DEWR funding"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Oct-07	04-Dec-07	10000.00	=""	="CURTIN UNIVERSITY OF"	28-Nov-07 10:02 AM	
-="CN48905"	"Personal Efficiency Course"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	20-Nov-07	20-Dec-07	13200.00	=""	="D'ARCY CONSULTING GROUP"	28-Nov-07 10:02 AM	
-="CN48906"	"Training of CEB's for 4 wheel driving an"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	30-Jun-08	10000.00	=""	="BATCHELOR INSTITUTE OF INDIGENOUS"	28-Nov-07 10:02 AM	
-="CN48907"	"Manual Payroll - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	12500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	
-="CN48909"	"AWA processing - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	12500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	
-="CN48918"	"Temporary employee legal services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	15-Nov-07	31-May-08	10348.80	=""	="GILLIAN BEAUMONT LEGAL"	28-Nov-07 10:03 AM	
-="CN48919"	"IT Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	14-Nov-07	30-Jun-08	15893.11	=""	="OPEN SYSTEMS PTY LTD"	28-Nov-07 10:03 AM	
-="CN48921"	"Production of a Rem Tribunal Paper"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Nov-07	30-Nov-07	12250.00	=""	="RICHARD C SMITH"	28-Nov-07 10:03 AM	
-="CN48929"	"TRA Cert IV Training and Assessment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	22-Nov-07	30-Jun-08	15000.00	=""	="QUEST EMPLOYMENT SOLUTIONS PTY LTD"	28-Nov-07 10:04 AM	
-="CN48930"	"Portable Data Storage"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	22-Nov-07	29-Dec-07	13560.00	=""	="MAC1 CENTRE CANBERRA"	28-Nov-07 10:04 AM	
-="CN48931"	"CDEP Assets Review/Assessment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	07-Dec-07	11550.00	="DEWR RTF #2 2004-05"	="WALTER AND TURNBULL PTY LTD"	28-Nov-07 10:04 AM	
-="CN48945"	"staff training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	07-Nov-07	30-Jun-08	10000.00	="quote nov 08"	="WORKPLACE TRAINING ADVISORY AUSTRAL"	28-Nov-07 10:06 AM	
-="CN48948"	"ABS publications for FY 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	01-Nov-07	30-Jun-08	10000.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	28-Nov-07 10:06 AM	
-="CN48949"	"Staff Relocation"	="Department of Employment and Workplace Relations"	28-Nov-07	="Human resources services"	01-Nov-07	13-Nov-07	11442.29	="DEWR KUNUNURRA"	="ALLIED PICKFORDS PTY LTD"	28-Nov-07 10:06 AM	
-="CN48950"	"Freight services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Mail and cargo transport"	01-Nov-07	28-Feb-08	15000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	28-Nov-07 10:06 AM	
-="CN48953"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	11600.00	=""	="MICHAEL GREEN PTY LTD"	28-Nov-07 10:07 AM	
-="CN48954"	"UNDERSTANDING LEGISLATION COURSE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	14-Nov-07	30-Nov-07	10852.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	28-Nov-07 10:07 AM	
-="CN48956"	"Temporary employee legal services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Nov-07	08-Apr-08	12936.00	=""	="GILLIAN BEAUMONT LEGAL"	28-Nov-07 10:07 AM	
-="CN48957"	"Minor IT Equipment software upgrade"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	13-Nov-07	30-Jun-08	10687.91	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:07 AM	
-="CN48963"	"OASCC temp staff 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	09-Nov-07	30-Jun-08	10000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	28-Nov-07 10:08 AM	
-="CN48967"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	10634.77	=""	="CLAYTON UTZ"	28-Nov-07 10:08 AM	
-="CN48985"	"Focus Groups for IP Service Fees Project"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	31-Oct-07	15900.51	=""	="EUREKA STRATEGIC RESEARCH"	28-Nov-07 10:10 AM	
-="CN48987"	"SES Lease vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	25-Sep-07	25-Sep-07	10072.18	=""	="LEASEPLAN AUSTRALIA LTD"	28-Nov-07 10:10 AM	
-="CN48990"	"TRA Training 07/08 Tactics"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	24-Sep-07	30-Jun-08	15000.00	="Open source - bulk PO for training provider"	="TACTICS CONSULTING"	28-Nov-07 10:10 AM	
-="CN48991"	"AGS TRAINING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	24-Sep-07	30-Sep-07	13000.00	=""	="SOCIAL SECURITY APPEALS TRIBUNAL"	28-Nov-07 10:10 AM	
-="CN48993"	"RECRUITMENT ADVERTISING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	21-Sep-07	31-Dec-07	10235.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:11 AM	
-="CN48996"	"First Aid Training and Manuals 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	21-Sep-07	30-Jun-08	10000.00	="DEWR"	="ST JOHN AMBULANCE AUSTRALIA (NSW)"	28-Nov-07 10:11 AM	
-="CN48999"	"Strategic Management of Information Plan"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	30-Nov-07	14940.00	=""	="AMITY MANAGEMENT CONSULTING GROUP"	28-Nov-07 10:11 AM	
-="CN49002"	"Contractor"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-08	12500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	28-Nov-07 10:11 AM	
-="CN49021"	"Advertising for the 2009 Grad Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	13-Sep-07	30-Sep-07	10642.00	=""	="GRADUATE CAREERS COUNCIL OF"	28-Nov-07 10:13 AM	
-="CN49023"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	11000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	
-="CN49024"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	11000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	
-="CN49026"	"Voice Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Sep-07	30-Jun-08	13975.00	="TBA"	="TELSTRA (VIC)"	28-Nov-07 10:14 AM	
-="CN49030"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:14 AM	
-="CN49034"	"Hyperion Training 8.3"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	09-Oct-07	30-Oct-07	12732.50	="Oracle"	="ORACLE CORPORATION AUST PTY LIMITED"	28-Nov-07 10:15 AM	
-="CN49035"	"Staff training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	09-Oct-07	11-Oct-07	14500.00	=""	="ABACUS RENT IT PTY LTD"	28-Nov-07 10:15 AM	
-="CN49038"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	08-Oct-07	30-Jun-08	10500.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 10:15 AM	
-="CN49046"	"Application Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	14838.56	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 10:16 AM	
-="CN49048"	"ISB staff attending Personal Efficiency Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	11-Oct-07	30-Nov-07	13200.00	=""	="PEPWORLDWIDE"	28-Nov-07 10:16 AM	
-="CN49049"	"CDEP Northern Territory DVD"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-Nov-07	10872.40	=""	="IMAGES ONLINE"	28-Nov-07 10:16 AM	
-="CN49061"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	10-Oct-07	30-Jun-08	14850.00	="ITC"	="ACUMEN ALLIANCE"	28-Nov-07 10:17 AM	
-="CN49063"	"Leased Pool vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	02-Oct-07	02-Oct-07	10072.18	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 10:18 AM	
-="CN49064"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	28-Sep-07	30-Jun-08	12500.00	="Quotes"	="COMPACT BUSINESS SYSTEMS (NSW) PTY"	28-Nov-07 10:18 AM	
-="CN49069"	"Printing visitor books"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	28-Sep-07	30-Jun-08	12400.00	="N/a"	="COMPACT BUSINESS SYSTEMS (NSW) PTY"	28-Nov-07 10:18 AM	
-="CN49071"	"Leased Pool vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	28-Sep-07	28-Sep-07	13853.05	=""	="LEASEPLAN AUSTRALIA LTD"	28-Nov-07 10:18 AM	
-="CN49072"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	27-Sep-07	30-Jun-08	13068.00	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:18 AM	
-="CN49076"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	
-="CN49077"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	
-="CN49084"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	05-Oct-07	30-Jun-08	11401.19	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:20 AM	
-="CN49089"	"Polycom Video Conferencing Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	04-Oct-07	30-Jun-08	10041.89	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	28-Nov-07 10:20 AM	
-="CN49093"	"GEERS IP Fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	02-Oct-07	02-Oct-07	10000.00	=""	="PPB CHARTERED ACCOUNTANTS"	28-Nov-07 10:21 AM	
-="CN49100"	"Participation on the Risk Analysis Panel for the Import Risk Analysis of Chicken Meat"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Jul-07	30-Jun-08	11000.00	=""	="RMIT University"	28-Nov-07 11:14 AM	
-="CN49101"	"Business Analyst"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Nov-07	01-Jan-08	14960.00	=""	="Dialog Information Technology"	28-Nov-07 11:14 AM	
-="CN49104"	"Career development assessment centre"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	19-Nov-07	19-May-08	11825.00	=""	="Australian Public Service Commission"	28-Nov-07 11:15 AM	
-="CN49105"	"Supervisory Management Training Course for regional staff."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	29-Aug-07	29-Aug-07	10275.00	=""	="Swinburne University of Technology"	28-Nov-07 11:15 AM	
-="CN49106"	"Recruitment of temporary staff - Brittany Anderson"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	01-Nov-07	30-Jun-08	15000.00	=""	="Hays Specialist Recruitment"	28-Nov-07 11:15 AM	
-="CN49107"	"Legal Advice - Capsicums from Korea"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	01-Nov-07	30-Jun-08	15000.00	=""	="Minter Ellison Lawyers"	28-Nov-07 11:15 AM	
-="CN49109"	"Charter for AQIS OTSI December Training Conference."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Transportation and Storage and Mail Services"	16-Nov-07	31-Dec-07	10219.00	=""	="Aero-Tropics Air Services"	28-Nov-07 11:15 AM	
-="CN49110"	"Revision of AQUAVETPLAN Operational Procedures Manual: Destruction"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	15-Nov-07	11-Apr-08	11962.50	=""	="Panaquatic Health Solutions Pty Ltd"	28-Nov-07 11:15 AM	
-="CN49112"	"Preparation and delivery of a pilot database package in Mocrosoft Access format to two (2) Philippines counterpart staff, remote support to those staff in building databases for their respective specimen collections, followed by a mentoring visit to monitor and assit database building and develop training strategies for users of the database, and to contribute to broader collection building and maintenance training for collections' staff."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Sep-07	29-Feb-08	12890.00	=""	="The Northern Territory of Australia, represented by the Department of Primary Industry, Fisheries and Mines"	28-Nov-07 11:16 AM	
-="CN49116"	"Review of Horese Policy"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	20-Nov-07	30-Jun-08	11000.00	=""	="Minter Ellison"	28-Nov-07 11:16 AM	
-="CN49117"	"Purchase of IT equipment for AQIS Cash Receipting system.Equipment includes barcode scanners and cheque/card readers."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Computer services"	16-Nov-07	11-Jan-08	12782.00	=""	="Barcode Direct"	28-Nov-07 11:16 AM	
-="CN49122"	"Personla Efficiency Program Delivery - 4 day program"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	12-Oct-07	04-Dec-07	13200.00	=""	="PEP WORLDWIDE"	28-Nov-07 11:17 AM	
-="CN49123"	"Ranger services provided for IFFV patrol of Islands surrounding Croker Island"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	15-Nov-07	30-Dec-07	11800.00	=""	="Bawinanga Aboriginal Corporation"	28-Nov-07 11:17 AM	
-="CN49126-A1"	"RECRUITMENT SERVICES ADVERTISEMENT"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Marketing and distribution"	27-Nov-07	30-Jun-08	15068.13	=""	="HMA BLAZE PTY LTD"	28-Nov-07 11:17 AM	
-="CN49131"	"Workshop Facilitation."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	25-Oct-07	20-Nov-07	11762.07	=""	="Global Learning"	28-Nov-07 11:18 AM	
-="CN49133"	"Career Development"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	10-Dec-07	12-Dec-07	11825.00	=""	="APS Commission"	28-Nov-07 11:18 AM	
-="CN49141"	"Preparation and delivery of a training and mentoring program for building a Lucid Key for the key insect pests for a agriculture in the Philippnes, comprising an initial 5-day training program, remote mentoring and exchange visit by consultant."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	29-Feb-08	15310.00	=""	="Commonwealth Scientific and Inddutrial Research Organisation through its Division of Entomology"	28-Nov-07 11:19 AM	
-="CN49164"	"ALARM, PERSONAL, FIREFIGHTER, AUDIBLE, KEY OPERATED, TALLY YELLOW WATERPROOF PLASTIC CASE, 3 1/4 IN. L X 2 IN. W X 1 1/8 IN. TK POWER BY A 9 VOLT BATTERY"	="Defence Materiel Organisation"	28-Nov-07	="Personal safety and protection"	20-Nov-07	30-Jan-08	13464.00	=""	="DRAEGER SAFETY PACIFIC PTY LTD"	28-Nov-07 02:45 PM	
-="CN49170"	"Supply of network laser printers"	="Australian Federal Police"	28-Nov-07	="Computer printers"	02-Nov-07	01-Nov-10	10487.00	="RFT 5-2006"	="Lexmark International (Australia) Pty Ltd"	28-Nov-07 02:50 PM	
-="CN49171"	"Repair of aircraft parts"	="Defence Materiel Organisation"	28-Nov-07	="Aircraft"	28-Nov-07	18-Dec-07	12377.75	=""	="Sikorsky Aircraft Australia Limited"	28-Nov-07 02:53 PM	
-="CN49173"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	28-Nov-07	="Medical Equipment and Accessories and Supplies"	27-Nov-07	14-Dec-07	11009.35	=""	="Multigate Medical Products"	28-Nov-07 03:54 PM	
-="CN49177-A1"	"Printing of Annual Report"	="Australian Electoral Commission"	28-Nov-07	="Industrial printing services"	03-Aug-06	03-Aug-09	12680.80	="AEC06/026"	="Pirion Pty Ltd"	28-Nov-07 05:10 PM	
-="CN49181"	"Cleaning Damaged Files"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	20-Aug-07	23-Aug-07	10560.00	=""	="Art and Archival Pty Ltd"	28-Nov-07 05:46 PM	
-="CN49185"	"DPP Annual Report"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	29-Nov-07	14490.30	=""	="PARAGON PRINTERS"	28-Nov-07 05:46 PM	
-="CN49188"	"Transcripts"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Community and social services"	06-Sep-07	04-Oct-07	11925.50	=""	="Reporting Services Branch"	28-Nov-07 05:47 PM	
-="CN49189"	"Artwork 1/11/07-31/10/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	16-Oct-07	30-Oct-08	10670.00	=""	="Artbank"	28-Nov-07 05:47 PM	
-="CN49190"	"Transcripts"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Community and social services"	07-Nov-07	29-Nov-07	12570.50	=""	="Reporting Services Branch"	28-Nov-07 05:47 PM	
-="CN49193"	"Re: Benbrika - Expert Advisor - 11.5.07 to 15.6.07"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management advisory services"	16-Oct-07	16-Oct-07	12672.00	=""	="Eyers, Anthony William"	28-Nov-07 05:47 PM	
-="CN49194"	"Artbank- 1.11.07-31.10.08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	31-Oct-08	10395.00	=""	="Artbank"	28-Nov-07 05:47 PM	
-="CN49199"	"NSN 5310-00-954-7258   NUT, SELF LOCKING, PLATE"	="Defence Materiel Organisation"	29-Nov-07	="Anchor nuts"	22-Oct-07	07-Dec-07	12553.20	=""	="Pacific Aerodyne pty Ltd"	29-Nov-07 08:05 AM	
-="CN49212"	"Northern Hemisphere Compasses."	="Defence Materiel Organisation"	29-Nov-07	="Compasses"	26-Nov-07	22-Dec-07	14458.29	=""	="Fiskars Brands Australia Pty Ltd"	29-Nov-07 11:07 AM	
-="CN49228"	"ASLAV PARTS - CATCH FLUSH, PLUG MUZZLE BRAKE, BOLT EYE"	="Department of Defence"	29-Nov-07	="Armoured fighting vehicles"	28-Nov-07	13-Sep-08	13340.89	=""	="GENERAL DYNAMICS LAND SYSTEMS"	29-Nov-07 01:38 PM	
-="CN49240"	"land rover vehicle parts"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	28-Jan-08	15334.55	=""	="LAND ROVER AUSTRALIA"	29-Nov-07 02:06 PM	
-="CN49246"	"For the procurement of graphics design services and production of the initial Australian Haemovigilance Report"	="National Blood Authority"	29-Nov-07	="Graphic design"	18-Oct-07	31-Jan-08	15000.00	=""	="Roar Momentum Pty Ltd"	29-Nov-07 02:23 PM	
-="CN49259"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	10199.64	=""	="ROVER AUSTRALIA"	29-Nov-07 04:08 PM	
-="CN49261"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	11393.36	=""	="ROVER AUSTRALIA"	29-Nov-07 04:12 PM	
-="CN49262"	" AIRCRAFT SPARES  NSN: 1560-01-128-6334  WINDOW ASSY L/H  QTY: 4 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	13-Sep-07	22-Dec-07	15488.00	=""	="MILSPEC SERVICES PTY LTD"	29-Nov-07 04:13 PM	
-="CN49269"	" NSN 2840-01-393-2941  PURCHASE OF SEAL  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	18-Dec-07	11895.00	=""	="Aerospace Composites Pty Ltd"	29-Nov-07 04:26 PM	
-="CN49271-A1"	" AIRCRAFT SPARES  NSN: 1560-66-148-7309  CLAMP TUBE   QTY: 10 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	29-Aug-07	21-Jan-08	10652.90	=""	="ASIA PACIFIC AEROSPACE"	29-Nov-07 04:27 PM	
-="CN49273"	" NSN 2840-00-877-0018  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	13514.00	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:33 PM	
-="CN49274"	" NSN 2840-00-877-0080  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	15356.00	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:36 PM	
-="CN49276"	"Sighting Equipment"	="Defence Materiel Organisation"	30-Nov-07	="Surveillance and detection equipment"	29-Nov-07	30-Jan-08	14712.50	=""	="G A HANRAHAN PTY LTD"	30-Nov-07 07:56 AM	
-="CN49303"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="00"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:39 PM	
-="CN49305"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	14654.31	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:39 PM	
-="CN49307"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:40 PM	
-="CN49309"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Dec-07	12936.00	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	30-Nov-07 12:40 PM	
-="CN49319"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:41 PM	
-="CN49345"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	15720.10	="PASD-06-0084-1679"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:44 PM	
-="CN49348"	"HR Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	11630.08	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	30-Nov-07 12:44 PM	
-="CN49350"	"Entertainment & Other Staff Benefits"	="Department of Finance and Administration"	30-Nov-07	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	28-Feb-08	14000.00	=""	="HYATT HOTEL CANBERRA"	30-Nov-07 12:44 PM	
-="CN49362"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:45 PM	
-="CN49363"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	03-Jan-08	11550.00	="-"	="ERNST & YOUNG"	30-Nov-07 12:46 PM	
-="CN49365"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:46 PM	
-="CN49366"	"Cleaning"	="CRS Australia"	30-Nov-07	="Building cleaning services"	01-Dec-07	30-Nov-08	13686.68	=""	="Westcoast Wilcleen Services"	30-Nov-07 12:49 PM	
-="CN49372"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	10-Jan-08	14313.20	=""	="Capital medical Supplies Pty Ltd"	30-Nov-07 02:58 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48146"	"REPAIR OF BLACKHAWK MAIN ROTOR FLUTTER DAMPENER"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	10798.01	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:45 AM	

+="CN48151"	" Software purchase "	="Future Fund Management Agency"	26-Nov-07	="Software"	19-Nov-07	19-Dec-07	15070.00	=""	="The Mathworks Australia Pty Ltd"	26-Nov-07 10:40 AM	

+="CN48154-A1"	"VP 175- Electorate Briefs Automation"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	12441.59	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48159"	"Bulk Order for Books for DCITA Library"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Published Products"	15-Nov-07	30-Nov-07	14173.60	="ATM2007/00640"	="DA INFORMATION SERVICES PTY LT"	26-Nov-07 11:32 AM	

+="CN48161"	"PAFO: Provision of external audit advice to contracted PC filters vendors"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	11403.00	="ATM07/630"	="Grosvenor Management Consulting"	26-Nov-07 11:32 AM	

+="CN48162"	"Administrative Support for Bookings Officer"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	20-Nov-07	28-Mar-08	11950.88	=""	="THE GREEN AND GREEN GROUP PTY LTD"	26-Nov-07 11:32 AM	

+="CN48164-A1"	"Career Development Assessment for staff member"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	28-Nov-07	11430.00	="ATM 07/672"	="Australian Public"	26-Nov-07 11:32 AM	

+="CN48165-A1"	"Career Development Assessment individual staff"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	21-Nov-07	11825.00	="ATM07/671"	="Australian Public"	26-Nov-07 11:32 AM	

+="CN48166"	"Spotless monthly maintenance november 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13072.14	="ATM2007/00679"	="Spotless P&F Pty Ltd"	26-Nov-07 11:32 AM	

+="CN48168"	"OPH Gas Supply - November 2007"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	01-Nov-07	30-Nov-07	13595.93	="ATM2007/00678"	="ACTEWAGL"	26-Nov-07 11:33 AM	

+="CN48172"	"Lift Package- New Lift in Members Dining Rooms Project Management & Associated Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Oct-07	30-Jun-08	15950.00	="CCR2007/00528"	="GUTTERIDGE HASKINS & DAVEY PTY LTD"	26-Nov-07 11:33 AM	

+="CN48173"	"Building Works including mechanical, hydraulic, fire services, joinery & finishes PMs' cent"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Jun-08	12202.65	=""	="SPS STRATEGIC PROPERTY SERVICES"	26-Nov-07 11:33 AM	

+="CN48177-A1"	"10x servers ITFB"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	24-Sep-07	29-Nov-07	12232.00	="ATM07/331"	="DATAFLEX PTY LTD"	26-Nov-07 11:34 AM	

+="CN48187"	"Actuarial & Associated cost for CSS and PSS"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	30-Jun-08	11600.00	="ATM2007/00621"	="DEPT OF FINANCE & ADMINISTRATION"	26-Nov-07 11:35 AM	

+="CN48198"	"Provision of Carpet laying and Floorcovering services"	="Department of Parliamentary Services"	26-Nov-07	="Carpeting"	16-Nov-07	30-Nov-07	10389.50	=""	="Chesta's Floors"	26-Nov-07 11:46 AM	

+="CN48204"	"Provision of actuarial and associated services"	="Department of Parliamentary Services"	26-Nov-07	="Public enterprises management or financial services"	09-Nov-07	30-Nov-07	11600.00	=""	="Department of Finance &"	26-Nov-07 11:46 AM	

+="CN48205"	"Ceramic and Quarry Tile Maintenance"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	08-Nov-07	31-Dec-07	14126.37	=""	="PDA Marble & Granite"	26-Nov-07 11:47 AM	

+="CN48209"	"Advice on pest control service requirements at Parliament House"	="Department of Parliamentary Services"	26-Nov-07	="Pest control"	12-Nov-07	30-Nov-07	15477.00	="DPS07089"	="accessUTS Pty Ltd"	26-Nov-07 11:47 AM	

+="CN48212"	"B  CLASS CABINETS"	="Australian Taxation Office"	26-Nov-07	="Furniture and Furnishings"	15-Nov-07	15-Nov-07	10474.97	=""	="PLANEX SALES PTY LTD"	26-Nov-07 11:56 AM	

+="CN48214"	"ELG Facilitation"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	13860.00	=""	="MERCER HUMAN RESOURCE CONSULTING"	26-Nov-07 11:56 AM	

+="CN48219"	"6 X POLYCOM VTX1000 WIDEBAND CONFERENCE PHONES"	="Australian Taxation Office"	26-Nov-07	="Office Equipment and Accessories and Supplies"	13-Nov-07	13-Nov-07	11939.40	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	26-Nov-07 11:57 AM	

+="CN48233"	"Scribe services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	03-Aug-07	30-Jun-08	12000.00	=""	="RECRUITMENT MANAGEMENT"	26-Nov-07 12:20 PM	

+="CN48248"	"Relocations / Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation services equipment"	06-Jul-07	30-Jun-08	10000.00	=""	="NEWAY"	26-Nov-07 12:21 PM	

+="CN48253"	"Pre-employment & OHS checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	09-Jul-07	09-Jul-07	10000.00	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:22 PM	

+="CN48258"	"Freight overnight bag"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	13-Jul-07	21-Dec-07	10000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:23 PM	

+="CN48270"	"Sponsorship of Australian Human Resources Summit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	04-Sep-07	12-Sep-07	11000.00	=""	="Association & Communications"	26-Nov-07 12:24 PM	

+="CN48274"	"Entitlement"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-Sep-07	05-Sep-07	13611.07	="ITC"	="JUST LAW - TRUST ACCOUNT"	26-Nov-07 12:25 PM	

+="CN48276"	"Temporary Employee - Corporate"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Sep-07	14-Jan-08	15000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	26-Nov-07 12:25 PM	

+="CN48279"	"LSL & Rec Transfers - Interagency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	06-Sep-07	13682.59	=""	="CENTRELINK FST SHARED SERVICES - NS"	26-Nov-07 12:25 PM	

+="CN48280"	"Accommodation for staff  for National Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	09-Sep-08	15642.84	="DEPT"	="COLLIERS INTERNATIONAL (NT) PTY LTD"	26-Nov-07 12:26 PM	

+="CN48286"	"Provide CEB's with driver training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	15000.00	=""	="DIRECT 4WD AWARENESS"	26-Nov-07 12:26 PM	

+="CN48287"	"Photcopiers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office machines and their supplies and accessories"	07-Sep-07	30-Jan-12	10608.40	=""	="RICOH AUSTRALIA (ROA)"	26-Nov-07 12:26 PM	

+="CN48288"	"removal   storage costs"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	07-Sep-07	30-Jun-08	13000.00	=""	="ALLIED PICKFORDS PTY LTD"	26-Nov-07 12:27 PM	

+="CN48290"	"Contract services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	10-Sep-07	21-Sep-07	15000.00	="."	="OAKTON AA SERVICES PTY LTD"	26-Nov-07 12:27 PM	

+="CN48293"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	13222.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	

+="CN48297"	"Archiving Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Aug-07	27-Sep-08	12999.73	=""	="MANAGEMENT SOLUTIONS"	26-Nov-07 12:27 PM	

+="CN48314"	"DEWR LVL12 BLD Perth - Tenancy Refit"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	10068.30	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	

+="CN48319"	"Postage Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	04-Aug-06	30-Jun-07	10030.54	=""	="AUSTRALIA POST (PERTH 6164555)"	26-Nov-07 12:30 PM	

+="CN48322"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	08-Aug-06	30-Jun-07	12485.32	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	

+="CN48323"	"Temporary Employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-Aug-06	09-Aug-06	11767.57	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:31 PM	

+="CN48325"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	21-Aug-06	30-Jun-07	15714.60	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:31 PM	

+="CN48327"	"Collateral - Market/Display Material"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	25-Aug-06	30-Jun-07	12407.00	=""	="PADDYWACK PROMOTIONAL PRODUCTS PTY"	26-Nov-07 12:31 PM	

+="CN48330"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	12464.31	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	

+="CN48332"	"Health Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	13-Oct-06	30-Jun-07	11517.00	=""	="MLCOA - (Canberra)"	26-Nov-07 12:32 PM	

+="CN48350"	"Health checks"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	05-Jul-06	30-Jun-07	14000.00	=""	="HEALTH SERVICES AUSTRALIA LTD"	26-Nov-07 12:34 PM	

+="CN48351"	"Stationary/Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	07-Jul-06	30-Jun-07	10651.08	=""	="CORPORATE EXPRESS AUSTRALIA"	26-Nov-07 12:34 PM	

+="CN48354"	"Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	11-Jul-06	30-Jun-07	10300.00	=""	="OUR TOWN & COUNTRY OFFICE NATIONAL"	26-Nov-07 12:34 PM	

+="CN48365"	"Pre-Employment & OH&S Exams"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	27-Jul-06	30-Jun-08	10094.70	=""	="PREVENTATIVE MEDICINE &"	26-Nov-07 12:36 PM	

+="CN48366"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Jul-06	30-Aug-08	10535.20	=""	="MINTER ELLISON"	26-Nov-07 12:36 PM	

+="CN48368"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Jun-07	30-Jun-07	10000.00	=""	="MOORE CONSULTING"	26-Nov-07 12:36 PM	

+="CN48369"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Graphic design"	12-Jun-07	30-Jun-07	10175.00	=""	="BOOMERANG INTEGRATED MARKETING"	26-Nov-07 12:36 PM	

+="CN48374"	"Production and mailout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	20-Jun-07	30-Jun-07	10561.10	=""	="CANPRINT COMMUNICATIONS PTY LTD"	26-Nov-07 12:37 PM	

+="CN48392"	"Supply of Mobile Phones and PDA handsets"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	30-Nov-06	30-Jun-07	10278.75	=""	="OPTUS Communications Pty Ltd"	26-Nov-07 12:39 PM	

+="CN48398"	"Research for safe design"	="Department of Employment and Workplace Relations"	26-Nov-07	="Security and personal safety"	22-Jan-07	30-Apr-07	10394.26	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:40 PM	

+="CN48399"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	08-Feb-07	30-Nov-10	15625.50	=""	="DRAKE"	26-Nov-07 12:40 PM	

+="CN48402"	"Courier and Freight charges"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Feb-07	30-Jun-07	12200.00	=""	="TNT DOMESTIC & INTERNATIONAL"	26-Nov-07 12:40 PM	

+="CN48403"	"Transport Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	07-Mar-07	30-Jun-07	10032.00	=""	="KNIGHT FRANK"	26-Nov-07 12:41 PM	

+="CN48406"	"Filming of  Work for the Dole Awards"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	10-May-07	30-Jun-07	11234.00	=""	="VIVAVISION"	26-Nov-07 12:41 PM	

+="CN48407"	"Filming"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	16-May-07	30-Jun-07	12833.70	=""	="IMAGES ONLINE"	26-Nov-07 12:41 PM	

+="CN48412"	"Catering, venue Hire and security"	="Department of Employment and Workplace Relations"	26-Nov-07	="Food and nutrition services"	31-May-07	30-Sep-07	12550.00	=""	="GINGER CATERING"	26-Nov-07 12:42 PM	

+="CN48424-A1"	"Under APSC Panel of Providers for L&D Faciliated team program and follow-up coaching"	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	23-Aug-07	30-Nov-07	11000.00	=""	="Professional Facilitators International Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48428"	"CPO016720 - Supply of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	02-Nov-07	02-Feb-08	14025.00	=""	="Haworth"	26-Nov-07 02:23 PM	

+="CN48430"	"CPO017175 - Accommodation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Hotels and lodging and meeting facilities"	20-Nov-07	20-Dec-07	13179.00	=""	="Broadwater"	26-Nov-07 02:23 PM	

+="CN48436"	"CPO017349 - IT Software"	="Australian Customs and Border Protection Service"	26-Nov-07	="Computer services"	26-Sep-07	22-Nov-07	13200.00	=""	="D'Arcy Consulting Group"	26-Nov-07 02:24 PM	

+="CN48437"	"CPO017250 - Supply and Installation of Furniture"	="Australian Customs and Border Protection Service"	26-Nov-07	="Furniture and Furnishings"	22-Nov-07	22-Nov-07	11300.30	=""	="Schiavello (WA) Pty"	26-Nov-07 02:24 PM	

+="CN48439"	"CPO017116 - Recruitment Services"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	11-Nov-07	11-Nov-07	13200.00	=""	="DFP Recruitment Services Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48446"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	20-Nov-07	13282.50	=""	="WORK SOLUTIONS GROUP PTY LTD"	26-Nov-07 02:41 PM	

+="CN48447"	"CORPORATE HPM CONFERENCE OCT07"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	22-Nov-07	14550.00	=""	="JASPER HOTEL"	26-Nov-07 02:41 PM	

+="CN48448"	"ISAC RECRUITMENT SELECTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	15-Nov-07	22-Nov-07	11865.00	=""	="Australian Public Service"	26-Nov-07 02:41 PM	

+="CN48449"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	22-Nov-07	15361.50	=""	="BLUE PROPERTY MARKETING"	26-Nov-07 02:41 PM	

+="CN48454"	"PROFESSIONAL SERVICES"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	14-Nov-07	10645.00	=""	="LEO A. TSAKNIS"	26-Nov-07 02:42 PM	

+="CN48456"	"REGISTRATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	15-Nov-07	10115.60	=""	="TONKIN CORPORATION PTY LTD"	26-Nov-07 02:42 PM	

+="CN48466"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	12020.18	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	

+="CN48467"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	23-Oct-07	23-Oct-07	11190.23	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 02:56 PM	

+="CN48474"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	16-Oct-07	16-Oct-07	12584.71	=""	="Curran & Associates"	26-Nov-07 02:57 PM	

+="CN48476"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	17-Oct-07	14410.00	=""	="SAVILLS PTY LTD"	26-Nov-07 02:57 PM	

+="CN48479"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	17-Oct-07	17-Oct-07	12320.00	=""	="IPA PERSONNEL PTY LTD"	26-Nov-07 02:58 PM	

+="CN48483"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	14433.01	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48484"	"Provision of Network Services"	="Medicare Australia"	26-Nov-07	="Electrical wire and cable and harness"	17-Oct-07	26-Oct-07	13275.72	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 02:58 PM	

+="CN48491"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48492"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48493"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48494"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12073.02	=""	="James Richardson Corporation"	26-Nov-07 02:59 PM	

+="CN48496"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	11226.39	=""	="DUSAN KEBER"	26-Nov-07 03:00 PM	

+="CN48497"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Human resources services"	26-Oct-07	26-Oct-07	13567.40	=""	="Watermark Search International"	26-Nov-07 03:00 PM	

+="CN48500"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	26-Nov-07	="Paper products"	29-Oct-07	29-Oct-07	11041.80	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	26-Nov-07 03:00 PM	

+="CN48504"	"Provision of Training Courses"	="Medicare Australia"	26-Nov-07	="Specialised educational services"	30-Oct-07	30-Oct-07	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	26-Nov-07 03:01 PM	

+="CN48505"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Graphic design"	31-Oct-07	30-Dec-07	13482.70	=""	="SPECTRUM GRAPHICS"	26-Nov-07 03:01 PM	

+="CN48509"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	12403.02	=""	="James Richardson Corporation"	26-Nov-07 03:01 PM	

+="CN48519"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12513.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	

+="CN48520"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	12293.02	=""	="James Richardson Corporation"	26-Nov-07 03:03 PM	

+="CN48522"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	26-Nov-07	12786.32	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	

+="CN48523"	"Provision of Telephony services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	15048.00	=""	="OPTUS BILLING SERVICES"	26-Nov-07 03:03 PM	

+="CN48524"	"ELECTRONIC SERVICES"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	09-Nov-07	26-Nov-07	15062.19	=""	="ESPREON PROPERTY SERVICES"	26-Nov-07 03:03 PM	

+="CN48527"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	11533.50	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 03:03 PM	

+="CN48528"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	15-Nov-07	12599.00	=""	="COLLIERS INTERNATIONAL (HK) LTD"	26-Nov-07 03:03 PM	

+="CN48532"	"RENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Nov-07	10391.81	=""	="ALLARD & SHELTON PTY LTD"	26-Nov-07 03:03 PM	

+="CN48533"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	04-Oct-07	04-Oct-07	10540.11	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:04 PM	

+="CN48537"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	04-Oct-07	04-Oct-07	13513.50	=""	="APIS CONSULTING GROUP"	26-Nov-07 03:04 PM	

+="CN48543"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	09-Oct-07	09-Oct-07	12310.15	=""	="KAROLINA KALANJ"	26-Nov-07 03:05 PM	

+="CN48547"	"SA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	12441.82	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48556"	"Provision of Secure Courier Services"	="Medicare Australia"	26-Nov-07	="Transport operations"	03-Oct-07	03-Oct-07	12161.69	=""	="METROSTATE SECURITY COURIER PTY LTD"	26-Nov-07 03:06 PM	

+="CN48562"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	12705.00	=""	="James Richardson Corporation"	26-Nov-07 03:07 PM	

+="CN48565"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	30-Nov-07	11719.42	=""	="DRAKE AUSTRALIA PTY LTD"	26-Nov-07 03:07 PM	

+="CN48566"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	13278.18	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48573"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Heating and ventilation and air circulation"	15-Oct-07	15-Oct-07	12294.99	=""	="PETERS REFRIGERATION & AIR CON"	26-Nov-07 03:08 PM	

+="CN48580"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Management advisory services"	11-Oct-07	11-Oct-07	13219.21	=""	="KAROLINA KALANJ"	26-Nov-07 03:09 PM	

+="CN48584"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	12687.40	=""	="CANBERRA CURTAINS & BLINDS PTY LTD"	26-Nov-07 03:10 PM	

+="CN48585"	"Provision of Employee Assistance"	="Medicare Australia"	26-Nov-07	="Human resources services"	11-Oct-07	11-Oct-07	12997.51	=""	="OSA GROUP PTY LTD"	26-Nov-07 03:10 PM	

+="CN48587"	"Leasing Fees"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	10450.00	=""	="CMB"	26-Nov-07 03:10 PM	

+="CN48588"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	13715.08	=""	="James Richardson Corporation"	26-Nov-07 03:10 PM	

+="CN48589"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	13381.50	=""	="FUTURE FLOOR SERVICES"	26-Nov-07 03:10 PM	

+="CN48481"	" Medical Consumables For ADF "	="Defence Materiel Organisation"	26-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	05-Dec-07	10450.00	=""	="Markforce Pty Ltd"	26-Nov-07 03:13 PM	

+="CN48594"	"IDM 2455 Sun Java System Identity 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	08-Nov-07	06-Dec-07	12144.00	=""	="SUN MICROSYSTEMS AUSTRALIA"	26-Nov-07 03:52 PM	

+="CN48596"	"Adhoc document Translations FY 07/08"	="Australian Taxation Office"	26-Nov-07	="Editorial and Design and Graphic and Fine Art Services"	25-Sep-07	30-Jun-08	10000.00	=""	="VITS LANGUAGE LINK"	26-Nov-07 03:53 PM	

+="CN48598"	"DM47AU Introduction to DB2 Doc manger V8 3 Attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	22-Nov-07	10560.00	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:53 PM	

+="CN48600"	" Supply of mail services: Study of Sexual Assault "	="Australian Institute of Family Studies"	26-Nov-07	="Addressing or mailing labels"	24-Sep-07	24-Sep-07	11911.45	=""	="Mailcare Systems Pty Ltd"	26-Nov-07 04:06 PM	

+="CN48609-A1"	"Printing AEC publications"	="Australian Electoral Commission"	26-Nov-07	="Industrial printing services"	07-Nov-07	07-Dec-07	10384.00	="AEC06/026"	="Union Offset Printers"	26-Nov-07 04:47 PM	

+="CN48614"	" NSN 2995-00-985-1355  REPAIR/OVERHAUL OF STARTER, ENGINE, AIR TURBINE  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	15-Feb-07	31-Jan-08	10200.70	=""	="Honeywell Ltd"	26-Nov-07 04:52 PM	

+="CN48616"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 04:56 PM	

+="CN48617"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	23-Nov-07	21-Feb-08	10974.00	=""	="Qantas Defence Services Pty Ltd"	26-Nov-07 05:00 PM	

+="CN48618"	"Design of Election Publication"	="Australian Electoral Commission"	26-Nov-07	="Computer generated design services"	19-Sep-07	31-Oct-07	13002.00	=""	="Zoo Communications Pty Ltd"	26-Nov-07 05:00 PM	

+="CN48638"	"Legal Advice/Representation"	="Australian Crime Commission"	27-Nov-07	="Legal services"	01-Jun-07	30-Sep-07	12627.31	=""	="Australian Government Solicitor"	27-Nov-07 09:19 AM	

+="CN48646"	"a/c spares:5306-01-173-9284, Bolt, qty 400."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	12-Dec-07	14880.80	=""	="Asia pacific Aerospace"	27-Nov-07 09:56 AM	

+="CN48650"	"Motor Vehicle Parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	10784.74	=""	="VOLVO COMMERICAL VEHICLES"	27-Nov-07 10:13 AM	

+="CN48654-A1"	"Provision of mobile caddy units for Gungahlin"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	04-Aug-06	04-Aug-06	10916.00	=""	="Planex Sales Pty Ltd"	27-Nov-07 10:19 AM	

+="CN48657"	"Guarding Services"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Oct-07	31-Oct-07	12155.60	=""	="Scope Protective Services"	27-Nov-07 10:27 AM	

+="CN48662"	"Guarding services for ACC Adelaide Office"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Sep-07	30-Nov-07	15469.52	=""	="Chubb Security Australia Pty Ltd"	27-Nov-07 10:41 AM	

+="CN48661"	"Monitoring Awareness Training"	="Department of Immigration and Citizenship"	27-Nov-07	="Educational and research structures"	01-Jul-07	27-Jul-07	10000.00	=""	="Achievement Awareness Training Pty Ltd"	27-Nov-07 10:44 AM	

+="CN48663"	"Gusrding services ACC QLD Office"	="Australian Crime Commission"	27-Nov-07	="Guard services"	01-Sep-07	31-Oct-07	10670.00	=""	="Chubb Protective Services"	27-Nov-07 10:46 AM	

+="CN48665"	"Compliance and Detention Cultural Awareness Training"	="Department of Immigration and Citizenship"	27-Nov-07	="Specialised educational services"	04-Jul-07	31-Jul-07	13035.00	=""	="Beasley Intercultural Pty. Ltd."	27-Nov-07 10:48 AM	

+="CN48674"	" NSN 6115-01-119-9659  REPAIR/OVERHAUL OF GENERATOR, ALTERNATING CURRENT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	02-Oct-03	30-Nov-07	13881.00	=""	="Qantas Airways Ltd (Jet Base)"	27-Nov-07 11:15 AM	

+="CN48671"	"SERVICE AND REPAIR HASKEL PUMP"	="Department of Defence"	27-Nov-07	="Pumping units"	18-Apr-07	02-Jun-07	15368.32	=""	="AUSTRALIAN SAFETY ENGINEERS"	27-Nov-07 11:20 AM	

+="CN48687"	"Provision for PSS Disclosure Statement - Rebranding"	="Comsuper"	27-Nov-07	="Publishing"	19-Nov-07	30-Nov-08	10098.00	=""	="CanPrint Communications Pty Ltd"	27-Nov-07 11:21 AM	

+="CN48691-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	30-Aug-07	02-Nov-07	11900.00	=""	="Australian Federal Police"	27-Nov-07 11:26 AM	

+="CN48695"	"Placement fee for APS 6 Staff"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	02-Jul-07	29-Jun-08	10154.77	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	27-Nov-07 11:30 AM	

+="CN48701"	"Health Insurance renewal"	="Department of Transport and Regional Services"	27-Nov-07	="Patient care and treatment products and supplies"	14-Nov-07	14-Nov-08	10950.00	=""	="Willis Australia Limited"	27-Nov-07 11:31 AM	

+="CN48707"	"Training delivery - Staff selection and Recruitmen"	="Department of Transport and Regional Services"	27-Nov-07	="Specialised educational services"	20-Nov-07	30-Jun-08	13750.00	="WOT06/100"	="PEOPLE AND STRATEGY"	27-Nov-07 11:32 AM	

+="CN48713-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	12-Jul-07	23-Aug-07	10688.00	=""	="Persec Solutions Pty Ltd"	27-Nov-07 11:34 AM	

+="CN48723"	"motor vehicle spare parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	13379.00	=""	="ROVER AUSTRALIA"	27-Nov-07 12:17 PM	

+="CN48731"	"COUPLING HALF, QUICK DISCONNECT"	="Defence Materiel Organisation"	27-Nov-07	="Quick disconnects"	27-Jun-07	19-Sep-07	10298.20	=""	="AERO and MILITARY PRODUCTS PTY.LTD"	27-Nov-07 12:39 PM	

+="CN48733"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	27-Nov-07	="Community and social services"	12-Nov-07	30-Jun-08	15114.33	=""	="Areyonga Community Inc"	27-Nov-07 01:11 PM	

+="CN48740"	"motor vehicle spare parts"	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Nov-07	26-Dec-07	12118.40	=""	="ROVER AUSTRALIA"	27-Nov-07 01:52 PM	

+="CN48751"	"Key, Locating Block"	="Defence Materiel Organisation"	27-Nov-07	="Shaft or woodruff keys"	26-Nov-07	21-Dec-07	12496.00	=""	="Lake Engineering Pty Ltd"	27-Nov-07 02:05 PM	

+="CN48754"	"Archiving, retention, courier, process management and resource services"	="Australian Crime Commission"	27-Nov-07	="File archive storage"	20-Nov-07	20-Nov-07	11000.00	=""	="Recall Information Management"	27-Nov-07 02:11 PM	

+="CN48762"	"Storage Unit for Brisbane Office use"	="Australian Crime Commission"	27-Nov-07	="Storage sheds"	01-Nov-07	30-Jun-08	10400.00	=""	="Kennards Self Storage"	27-Nov-07 02:41 PM	

+="CN48763"	"Conference venue and accommodation"	="Australian Crime Commission"	27-Nov-07	="Conference centres"	27-Nov-07	29-Nov-07	14861.65	=""	="Crowne Plaza Alice Springs"	27-Nov-07 02:44 PM	

+="CN48767"	"NT Phone charges Oct 07"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	23-Nov-07	30-Nov-07	11876.88	=""	="Telstra  (ID No. 740)"	27-Nov-07 03:03 PM	

+="CN48768"	"Freight"	="Bureau of Meteorology"	27-Nov-07	="Transportation and Storage and Mail Services"	07-Nov-07	30-Nov-07	14503.21	=""	="TNT EXPRESS"	27-Nov-07 03:03 PM	

+="CN48769"	"BOC container management fee for November 2007"	="Bureau of Meteorology"	27-Nov-07	="Tools and General Machinery"	08-Nov-07	30-Nov-07	12578.13	=""	="Boc Limited"	27-Nov-07 03:03 PM	

+="CN48770"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	14667.40	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:03 PM	

+="CN48772"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	10827.75	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	

+="CN48774"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	10698.31	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	

+="CN48775"	"Management Consulting Services"	="Bureau of Meteorology"	27-Nov-07	="Management advisory services"	08-Nov-07	30-Nov-07	13486.00	=""	="Connor Pincus & Saunders P/L"	27-Nov-07 03:04 PM	

+="CN48776"	"Conference Venue"	="Bureau of Meteorology"	27-Nov-07	="Hotels and lodging and meeting facilities"	13-Nov-07	30-Nov-07	13239.00	=""	="The Grange at Lancefield P/L"	27-Nov-07 03:04 PM	

+="CN48781"	"Legal Services"	="Bureau of Meteorology"	27-Nov-07	="Legal services"	21-Nov-07	30-Nov-07	14658.59	=""	="Dale Boucher"	27-Nov-07 03:05 PM	

+="CN48782"	"Premier Maintenance Program Renewal"	="Bureau of Meteorology"	27-Nov-07	="Computer services"	22-Nov-07	31-Dec-08	14740.00	=""	="Argsoft Sales & Support Pty Ltd"	27-Nov-07 03:05 PM	

+="CN48783"	"Plastic Instruments Shelter Qty 5"	="Bureau of Meteorology"	27-Nov-07	="Building and Construction and Maintenance Services"	13-Nov-07	23-Nov-07	11913.00	=""	="Environmental Systems & Services"	27-Nov-07 03:05 PM	

+="CN48788"	"CHART M192 & CHART M207"	="Bureau of Meteorology"	27-Nov-07	="Office supplies"	21-Nov-07	26-Nov-07	12232.00	=""	="Printmail Australia Pty  Ltd"	27-Nov-07 03:06 PM	

+="CN48794"	"Nero Platinum"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	15-Jan-07	15-Jan-08	12000.00	=""	="Nero Inc."	27-Nov-07 03:18 PM	

+="CN48797"	"Preparing & developing workshops on 'Working with Translators and Interpreters'"	="Department of Immigration and Citizenship"	27-Nov-07	="Writing and translations"	31-Oct-07	30-Jun-10	15000.00	=""	="National Accrediation Authority Ltd"	27-Nov-07 03:21 PM	

+="CN48795"	"HOWITZER SPARES"	="Defence Materiel Organisation"	27-Nov-07	="Parts of guns or pistols"	26-Nov-07	31-Dec-07	10998.57	=""	="G A Hanrahan Pty Ltd"	27-Nov-07 03:24 PM	

+="CN48801"	"Preparation and legal review of contract"	="Australian Crime Commission"	27-Nov-07	="Legal services"	14-Nov-07	14-Nov-07	11000.00	=""	="Blake Dawson Waldron"	27-Nov-07 03:36 PM	

+="CN48807"	"Repair of Blackhawk Main Rotor Flutter Dampener"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	30-Aug-07	11-Sep-07	11132.99	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:07 PM	

+="CN48816"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	28-Aug-07	27-Sep-07	13096.71	=""	="Qantas Defence Services Pty Ltd"	27-Nov-07 04:32 PM	

+="CN48819"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	31-Aug-07	30-Sep-07	10425.30	=""	="Qantas Defence Services Pty Ltd"	27-Nov-07 04:42 PM	

+="CN48818"	"Repair of Blackhawk Main Rotor Spindle"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	28-Aug-07	11-Sep-07	11477.06	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:45 PM	

+="CN48823"	"Repair of Blackhawk Fan Vaneaxial"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	23-Aug-07	31-Aug-07	13275.01	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 05:04 PM	

+="CN48830"	"A23 AIRCRAFT - REPAIRS TO RUDDER AIRCRAFT"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	11005.18	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:08 AM	

+="CN48842"	"Monthly Information Fee - 1OCT-31DEC07 - Comm"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	31-Dec-07	11250.00	=""	="FACTIVA LTD"	28-Nov-07 09:55 AM	

+="CN48853"	"RECRUITMENT ADVERTISING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	22-Oct-07	31-Oct-07	11668.80	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 09:56 AM	

+="CN48864"	"Trade Tests 07/08 - Hunter NSW"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	29-Oct-07	30-Jun-08	11000.00	=""	="TAFE NSW - HUNTER INSTITUTE"	28-Nov-07 09:57 AM	

+="CN48865"	"Trade Tests 07/08 Nth Sydney TAFE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	29-Oct-07	30-Jun-08	11000.00	=""	="NORTHERN SYDNEY INSTITUTE TAFE"	28-Nov-07 09:58 AM	

+="CN48873"	"Relocation of WPA staff - Saraton Building"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	31-Oct-07	14520.00	=""	="POINT PROJECT MANAGEMENT"	28-Nov-07 09:58 AM	

+="CN48877"	"DEWR Prizes for Third Year Statistics"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	31-Mar-12	11000.00	=""	="UNIVERSITY OF QUEENSLAND"	28-Nov-07 09:59 AM	

+="CN48878"	"Charter flight to Numbulwar for RAE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Oct-07	26-Oct-07	15800.00	=""	="HARDY AVIATION"	28-Nov-07 09:59 AM	

+="CN48879"	"Return charter flight to Milingimbi for RAE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Oct-07	19-Oct-07	12600.00	=""	="HARDY AVIATION"	28-Nov-07 09:59 AM	

+="CN48888"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	16-Oct-07	16-Oct-07	10621.91	=""	="AUST GOVERNMENT SOLICITOR"	28-Nov-07 10:00 AM	

+="CN48898"	"RECRUITMENT SERVICES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	17-Oct-07	31-Dec-07	15000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:01 AM	

+="CN48899"	"IT cable supply & installations"	="Department of Employment and Workplace Relations"	28-Nov-07	="Security surveillance and detection"	17-Oct-07	30-Jun-08	10114.50	=""	="STOWE AUSTRALIA PTY LTD"	28-Nov-07 10:01 AM	

+="CN48903"	"ALMR Workshop - DEWR funding"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Oct-07	04-Dec-07	10000.00	=""	="CURTIN UNIVERSITY OF"	28-Nov-07 10:02 AM	

+="CN48905"	"Personal Efficiency Course"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	20-Nov-07	20-Dec-07	13200.00	=""	="D'ARCY CONSULTING GROUP"	28-Nov-07 10:02 AM	

+="CN48906"	"Training of CEB's for 4 wheel driving an"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	30-Jun-08	10000.00	=""	="BATCHELOR INSTITUTE OF INDIGENOUS"	28-Nov-07 10:02 AM	

+="CN48907"	"Manual Payroll - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	12500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	

+="CN48909"	"AWA processing - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	12500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	

+="CN48918"	"Temporary employee legal services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	15-Nov-07	31-May-08	10348.80	=""	="GILLIAN BEAUMONT LEGAL"	28-Nov-07 10:03 AM	

+="CN48919"	"IT Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	14-Nov-07	30-Jun-08	15893.11	=""	="OPEN SYSTEMS PTY LTD"	28-Nov-07 10:03 AM	

+="CN48921"	"Production of a Rem Tribunal Paper"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Nov-07	30-Nov-07	12250.00	=""	="RICHARD C SMITH"	28-Nov-07 10:03 AM	

+="CN48929"	"TRA Cert IV Training and Assessment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	22-Nov-07	30-Jun-08	15000.00	=""	="QUEST EMPLOYMENT SOLUTIONS PTY LTD"	28-Nov-07 10:04 AM	

+="CN48930"	"Portable Data Storage"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	22-Nov-07	29-Dec-07	13560.00	=""	="MAC1 CENTRE CANBERRA"	28-Nov-07 10:04 AM	

+="CN48931"	"CDEP Assets Review/Assessment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	07-Dec-07	11550.00	="DEWR RTF #2 2004-05"	="WALTER AND TURNBULL PTY LTD"	28-Nov-07 10:04 AM	

+="CN48945"	"staff training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	07-Nov-07	30-Jun-08	10000.00	="quote nov 08"	="WORKPLACE TRAINING ADVISORY AUSTRAL"	28-Nov-07 10:06 AM	

+="CN48948"	"ABS publications for FY 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	01-Nov-07	30-Jun-08	10000.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	28-Nov-07 10:06 AM	

+="CN48949"	"Staff Relocation"	="Department of Employment and Workplace Relations"	28-Nov-07	="Human resources services"	01-Nov-07	13-Nov-07	11442.29	="DEWR KUNUNURRA"	="ALLIED PICKFORDS PTY LTD"	28-Nov-07 10:06 AM	

+="CN48950"	"Freight services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Mail and cargo transport"	01-Nov-07	28-Feb-08	15000.00	=""	="MULTIGROUP DISTRIBUTION SERVICES"	28-Nov-07 10:06 AM	

+="CN48953"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	11600.00	=""	="MICHAEL GREEN PTY LTD"	28-Nov-07 10:07 AM	

+="CN48954"	"UNDERSTANDING LEGISLATION COURSE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	14-Nov-07	30-Nov-07	10852.00	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	28-Nov-07 10:07 AM	

+="CN48956"	"Temporary employee legal services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Nov-07	08-Apr-08	12936.00	=""	="GILLIAN BEAUMONT LEGAL"	28-Nov-07 10:07 AM	

+="CN48957"	"Minor IT Equipment software upgrade"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	13-Nov-07	30-Jun-08	10687.91	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:07 AM	

+="CN48963"	"OASCC temp staff 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	09-Nov-07	30-Jun-08	10000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	28-Nov-07 10:08 AM	

+="CN48967"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	10634.77	=""	="CLAYTON UTZ"	28-Nov-07 10:08 AM	

+="CN48985"	"Focus Groups for IP Service Fees Project"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	31-Oct-07	15900.51	=""	="EUREKA STRATEGIC RESEARCH"	28-Nov-07 10:10 AM	

+="CN48987"	"SES Lease vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	25-Sep-07	25-Sep-07	10072.18	=""	="LEASEPLAN AUSTRALIA LTD"	28-Nov-07 10:10 AM	

+="CN48990"	"TRA Training 07/08 Tactics"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	24-Sep-07	30-Jun-08	15000.00	="Open source - bulk PO for training provider"	="TACTICS CONSULTING"	28-Nov-07 10:10 AM	

+="CN48991"	"AGS TRAINING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	24-Sep-07	30-Sep-07	13000.00	=""	="SOCIAL SECURITY APPEALS TRIBUNAL"	28-Nov-07 10:10 AM	

+="CN48993"	"RECRUITMENT ADVERTISING"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	21-Sep-07	31-Dec-07	10235.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:11 AM	

+="CN48996"	"First Aid Training and Manuals 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	21-Sep-07	30-Jun-08	10000.00	="DEWR"	="ST JOHN AMBULANCE AUSTRALIA (NSW)"	28-Nov-07 10:11 AM	

+="CN48999"	"Strategic Management of Information Plan"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	30-Nov-07	14940.00	=""	="AMITY MANAGEMENT CONSULTING GROUP"	28-Nov-07 10:11 AM	

+="CN49002"	"Contractor"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-08	12500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	28-Nov-07 10:11 AM	

+="CN49021"	"Advertising for the 2009 Grad Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	13-Sep-07	30-Sep-07	10642.00	=""	="GRADUATE CAREERS COUNCIL OF"	28-Nov-07 10:13 AM	

+="CN49023"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	11000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	

+="CN49024"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	11000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	

+="CN49026"	"Voice Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Sep-07	30-Jun-08	13975.00	="TBA"	="TELSTRA (VIC)"	28-Nov-07 10:14 AM	

+="CN49030"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:14 AM	

+="CN49034"	"Hyperion Training 8.3"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	09-Oct-07	30-Oct-07	12732.50	="Oracle"	="ORACLE CORPORATION AUST PTY LIMITED"	28-Nov-07 10:15 AM	

+="CN49035"	"Staff training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	09-Oct-07	11-Oct-07	14500.00	=""	="ABACUS RENT IT PTY LTD"	28-Nov-07 10:15 AM	

+="CN49038"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	08-Oct-07	30-Jun-08	10500.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 10:15 AM	

+="CN49046"	"Application Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	14838.56	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 10:16 AM	

+="CN49048"	"ISB staff attending Personal Efficiency Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	11-Oct-07	30-Nov-07	13200.00	=""	="PEPWORLDWIDE"	28-Nov-07 10:16 AM	

+="CN49049"	"CDEP Northern Territory DVD"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-Nov-07	10872.40	=""	="IMAGES ONLINE"	28-Nov-07 10:16 AM	

+="CN49061"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	10-Oct-07	30-Jun-08	14850.00	="ITC"	="ACUMEN ALLIANCE"	28-Nov-07 10:17 AM	

+="CN49063"	"Leased Pool vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	02-Oct-07	02-Oct-07	10072.18	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 10:18 AM	

+="CN49064"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	28-Sep-07	30-Jun-08	12500.00	="Quotes"	="COMPACT BUSINESS SYSTEMS (NSW) PTY"	28-Nov-07 10:18 AM	

+="CN49069"	"Printing visitor books"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	28-Sep-07	30-Jun-08	12400.00	="N/a"	="COMPACT BUSINESS SYSTEMS (NSW) PTY"	28-Nov-07 10:18 AM	

+="CN49071"	"Leased Pool vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	28-Sep-07	28-Sep-07	13853.05	=""	="LEASEPLAN AUSTRALIA LTD"	28-Nov-07 10:18 AM	

+="CN49072"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	27-Sep-07	30-Jun-08	13068.00	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:18 AM	

+="CN49076"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	

+="CN49077"	"IT Communications Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	26-Sep-07	30-Jun-08	10099.25	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	

+="CN49084"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	05-Oct-07	30-Jun-08	11401.19	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:20 AM	

+="CN49089"	"Polycom Video Conferencing Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	04-Oct-07	30-Jun-08	10041.89	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	28-Nov-07 10:20 AM	

+="CN49093"	"GEERS IP Fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	02-Oct-07	02-Oct-07	10000.00	=""	="PPB CHARTERED ACCOUNTANTS"	28-Nov-07 10:21 AM	

+="CN49100"	"Participation on the Risk Analysis Panel for the Import Risk Analysis of Chicken Meat"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Jul-07	30-Jun-08	11000.00	=""	="RMIT University"	28-Nov-07 11:14 AM	

+="CN49101"	"Business Analyst"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Nov-07	01-Jan-08	14960.00	=""	="Dialog Information Technology"	28-Nov-07 11:14 AM	

+="CN49104"	"Career development assessment centre"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	19-Nov-07	19-May-08	11825.00	=""	="Australian Public Service Commission"	28-Nov-07 11:15 AM	

+="CN49105"	"Supervisory Management Training Course for regional staff."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	29-Aug-07	29-Aug-07	10275.00	=""	="Swinburne University of Technology"	28-Nov-07 11:15 AM	

+="CN49106"	"Recruitment of temporary staff - Brittany Anderson"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	01-Nov-07	30-Jun-08	15000.00	=""	="Hays Specialist Recruitment"	28-Nov-07 11:15 AM	

+="CN49107"	"Legal Advice - Capsicums from Korea"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	01-Nov-07	30-Jun-08	15000.00	=""	="Minter Ellison Lawyers"	28-Nov-07 11:15 AM	

+="CN49109"	"Charter for AQIS OTSI December Training Conference."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Transportation and Storage and Mail Services"	16-Nov-07	31-Dec-07	10219.00	=""	="Aero-Tropics Air Services"	28-Nov-07 11:15 AM	

+="CN49110"	"Revision of AQUAVETPLAN Operational Procedures Manual: Destruction"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	15-Nov-07	11-Apr-08	11962.50	=""	="Panaquatic Health Solutions Pty Ltd"	28-Nov-07 11:15 AM	

+="CN49112"	"Preparation and delivery of a pilot database package in Mocrosoft Access format to two (2) Philippines counterpart staff, remote support to those staff in building databases for their respective specimen collections, followed by a mentoring visit to monitor and assit database building and develop training strategies for users of the database, and to contribute to broader collection building and maintenance training for collections' staff."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	01-Sep-07	29-Feb-08	12890.00	=""	="The Northern Territory of Australia, represented by the Department of Primary Industry, Fisheries and Mines"	28-Nov-07 11:16 AM	

+="CN49116"	"Review of Horese Policy"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	20-Nov-07	30-Jun-08	11000.00	=""	="Minter Ellison"	28-Nov-07 11:16 AM	

+="CN49117"	"Purchase of IT equipment for AQIS Cash Receipting system.Equipment includes barcode scanners and cheque/card readers."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Computer services"	16-Nov-07	11-Jan-08	12782.00	=""	="Barcode Direct"	28-Nov-07 11:16 AM	

+="CN49122"	"Personla Efficiency Program Delivery - 4 day program"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	12-Oct-07	04-Dec-07	13200.00	=""	="PEP WORLDWIDE"	28-Nov-07 11:17 AM	

+="CN49123"	"Ranger services provided for IFFV patrol of Islands surrounding Croker Island"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	15-Nov-07	30-Dec-07	11800.00	=""	="Bawinanga Aboriginal Corporation"	28-Nov-07 11:17 AM	

+="CN49126-A1"	"RECRUITMENT SERVICES ADVERTISEMENT"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Marketing and distribution"	27-Nov-07	30-Jun-08	15068.13	=""	="HMA BLAZE PTY LTD"	28-Nov-07 11:17 AM	

+="CN49131"	"Workshop Facilitation."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	25-Oct-07	20-Nov-07	11762.07	=""	="Global Learning"	28-Nov-07 11:18 AM	

+="CN49133"	"Career Development"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	10-Dec-07	12-Dec-07	11825.00	=""	="APS Commission"	28-Nov-07 11:18 AM	

+="CN49141"	"Preparation and delivery of a training and mentoring program for building a Lucid Key for the key insect pests for a agriculture in the Philippnes, comprising an initial 5-day training program, remote mentoring and exchange visit by consultant."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	29-Feb-08	15310.00	=""	="Commonwealth Scientific and Inddutrial Research Organisation through its Division of Entomology"	28-Nov-07 11:19 AM	

+="CN49164"	"ALARM, PERSONAL, FIREFIGHTER, AUDIBLE, KEY OPERATED, TALLY YELLOW WATERPROOF PLASTIC CASE, 3 1/4 IN. L X 2 IN. W X 1 1/8 IN. TK POWER BY A 9 VOLT BATTERY"	="Defence Materiel Organisation"	28-Nov-07	="Personal safety and protection"	20-Nov-07	30-Jan-08	13464.00	=""	="DRAEGER SAFETY PACIFIC PTY LTD"	28-Nov-07 02:45 PM	

+="CN49170"	"Supply of network laser printers"	="Australian Federal Police"	28-Nov-07	="Computer printers"	02-Nov-07	01-Nov-10	10487.00	="RFT 5-2006"	="Lexmark International (Australia) Pty Ltd"	28-Nov-07 02:50 PM	

+="CN49171"	"Repair of aircraft parts"	="Defence Materiel Organisation"	28-Nov-07	="Aircraft"	28-Nov-07	18-Dec-07	12377.75	=""	="Sikorsky Aircraft Australia Limited"	28-Nov-07 02:53 PM	

+="CN49173"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	28-Nov-07	="Medical Equipment and Accessories and Supplies"	27-Nov-07	14-Dec-07	11009.35	=""	="Multigate Medical Products"	28-Nov-07 03:54 PM	

+="CN49177-A1"	"Printing of Annual Report"	="Australian Electoral Commission"	28-Nov-07	="Industrial printing services"	03-Aug-06	03-Aug-09	12680.80	="AEC06/026"	="Pirion Pty Ltd"	28-Nov-07 05:10 PM	

+="CN49181"	"Cleaning Damaged Files"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	20-Aug-07	23-Aug-07	10560.00	=""	="Art and Archival Pty Ltd"	28-Nov-07 05:46 PM	

+="CN49185"	"DPP Annual Report"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	29-Nov-07	14490.30	=""	="PARAGON PRINTERS"	28-Nov-07 05:46 PM	

+="CN49188"	"Transcripts"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Community and social services"	06-Sep-07	04-Oct-07	11925.50	=""	="Reporting Services Branch"	28-Nov-07 05:47 PM	

+="CN49189"	"Artwork 1/11/07-31/10/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	16-Oct-07	30-Oct-08	10670.00	=""	="Artbank"	28-Nov-07 05:47 PM	

+="CN49190"	"Transcripts"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Community and social services"	07-Nov-07	29-Nov-07	12570.50	=""	="Reporting Services Branch"	28-Nov-07 05:47 PM	

+="CN49193"	"Re: Benbrika - Expert Advisor - 11.5.07 to 15.6.07"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management advisory services"	16-Oct-07	16-Oct-07	12672.00	=""	="Eyers, Anthony William"	28-Nov-07 05:47 PM	

+="CN49194"	"Artbank- 1.11.07-31.10.08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	31-Oct-08	10395.00	=""	="Artbank"	28-Nov-07 05:47 PM	

+="CN49199"	"NSN 5310-00-954-7258   NUT, SELF LOCKING, PLATE"	="Defence Materiel Organisation"	29-Nov-07	="Anchor nuts"	22-Oct-07	07-Dec-07	12553.20	=""	="Pacific Aerodyne pty Ltd"	29-Nov-07 08:05 AM	

+="CN49212"	"Northern Hemisphere Compasses."	="Defence Materiel Organisation"	29-Nov-07	="Compasses"	26-Nov-07	22-Dec-07	14458.29	=""	="Fiskars Brands Australia Pty Ltd"	29-Nov-07 11:07 AM	

+="CN49228"	"ASLAV PARTS - CATCH FLUSH, PLUG MUZZLE BRAKE, BOLT EYE"	="Department of Defence"	29-Nov-07	="Armoured fighting vehicles"	28-Nov-07	13-Sep-08	13340.89	=""	="GENERAL DYNAMICS LAND SYSTEMS"	29-Nov-07 01:38 PM	

+="CN49240"	"land rover vehicle parts"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	28-Jan-08	15334.55	=""	="LAND ROVER AUSTRALIA"	29-Nov-07 02:06 PM	

+="CN49246"	"For the procurement of graphics design services and production of the initial Australian Haemovigilance Report"	="National Blood Authority"	29-Nov-07	="Graphic design"	18-Oct-07	31-Jan-08	15000.00	=""	="Roar Momentum Pty Ltd"	29-Nov-07 02:23 PM	

+="CN49259"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	10199.64	=""	="ROVER AUSTRALIA"	29-Nov-07 04:08 PM	

+="CN49261"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	11393.36	=""	="ROVER AUSTRALIA"	29-Nov-07 04:12 PM	

+="CN49262"	" AIRCRAFT SPARES  NSN: 1560-01-128-6334  WINDOW ASSY L/H  QTY: 4 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	13-Sep-07	22-Dec-07	15488.00	=""	="MILSPEC SERVICES PTY LTD"	29-Nov-07 04:13 PM	

+="CN49269"	" NSN 2840-01-393-2941  PURCHASE OF SEAL  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	18-Dec-07	11895.00	=""	="Aerospace Composites Pty Ltd"	29-Nov-07 04:26 PM	

+="CN49271-A1"	" AIRCRAFT SPARES  NSN: 1560-66-148-7309  CLAMP TUBE   QTY: 10 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	29-Aug-07	21-Jan-08	10652.90	=""	="ASIA PACIFIC AEROSPACE"	29-Nov-07 04:27 PM	

+="CN49273"	" NSN 2840-00-877-0018  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	13514.00	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:33 PM	

+="CN49274"	" NSN 2840-00-877-0080  PURCHASE OF BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	15356.00	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:36 PM	

+="CN49276"	"Sighting Equipment"	="Defence Materiel Organisation"	30-Nov-07	="Surveillance and detection equipment"	29-Nov-07	30-Jan-08	14712.50	=""	="G A HANRAHAN PTY LTD"	30-Nov-07 07:56 AM	

+="CN49303"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="00"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:39 PM	

+="CN49305"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	14654.31	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:39 PM	

+="CN49307"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:40 PM	

+="CN49309"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Dec-07	12936.00	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	30-Nov-07 12:40 PM	

+="CN49319"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:41 PM	

+="CN49345"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	15720.10	="PASD-06-0084-1679"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:44 PM	

+="CN49348"	"HR Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	11630.08	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	30-Nov-07 12:44 PM	

+="CN49350"	"Entertainment & Other Staff Benefits"	="Department of Finance and Administration"	30-Nov-07	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	28-Feb-08	14000.00	=""	="HYATT HOTEL CANBERRA"	30-Nov-07 12:44 PM	

+="CN49362"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:45 PM	

+="CN49363"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	03-Jan-08	11550.00	="-"	="ERNST & YOUNG"	30-Nov-07 12:46 PM	

+="CN49365"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:46 PM	

+="CN49366"	"Cleaning"	="CRS Australia"	30-Nov-07	="Building cleaning services"	01-Dec-07	30-Nov-08	13686.68	=""	="Westcoast Wilcleen Services"	30-Nov-07 12:49 PM	

+="CN49372"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	10-Jan-08	14313.20	=""	="Capital medical Supplies Pty Ltd"	30-Nov-07 02:58 PM	

 ="CN49277-A1"	"development of PPVT for LSAC Wave 3"	="Australian Institute of Family Studies"	30-Nov-07	="Educational and research structures"	08-Nov-07	08-Nov-07	11440.00	=""	="Australian Council for Educational Research"	30-Nov-07 03:00 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val16000to20000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val16000to20000.xls
@@ -1,107 +1,107 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48141"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	21-Feb-08	17619.80	=""	="A AND D INTERNATIONAL PTY LTD"	26-Nov-07 07:47 AM	
-="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	
-="CN48144"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	26-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	11-Dec-07	19991.86	=""	="Symbion Pharmacy Services"	26-Nov-07 09:30 AM	
-="CN48155"	"HMA Blaze - Advertising and Promotion of BIA Telecommuncation program"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	30-Jun-08	18649.16	="ATM07/541"	="HMA BLAZE"	26-Nov-07 11:31 AM	
-="CN48156-A1"	"APS Jobs Subscription 07-08"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17773.97	="ATM 07/638"	="Australian Public"	26-Nov-07 11:31 AM	
-="CN48174-A2"	"Graphic Design Annual Report"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Aug-07	30-Jun-08	19999.00	="DCON/05/105"	="MA@D COMMUNICATION"	26-Nov-07 11:33 AM	
-="CN48191"	"ICT Service panel Information  & Communication Contract (DPS05048 )"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	28-Dec-07	19140.00	=""	="Greythorn Pty Ltd"	26-Nov-07 11:45 AM	
-="CN48192"	"Voices services(local,national & moblie calls Contract (DPS04114)"	="Department of Parliamentary Services"	26-Nov-07	="Phone and video conference equipment and hardware and controllers"	21-Nov-07	28-Dec-07	17722.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48197"	"Supply of Waste Bin Tipping Machines"	="Department of Parliamentary Services"	26-Nov-07	="Material handling machinery and equipment"	16-Nov-07	30-Nov-07	19646.00	=""	="Wrightway Products"	26-Nov-07 11:45 AM	
-="CN48228"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jul-07	30-Jun-08	17874.48	=""	="OPEN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48259"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	17623.10	=""	="LINK RECRUITMENT PTY"	26-Nov-07 12:23 PM	
-="CN48271"	"Online OH&S Induction Training Module"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-Sep-07	30-Jun-08	18000.00	=""	="NOEL ARNOLD & ASSOCIATES"	26-Nov-07 12:24 PM	
-="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	
-="CN48291"	"Software"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	10-Sep-07	30-Jun-08	18525.00	=""	="MICROWAY P/L"	26-Nov-07 12:27 PM	
-="CN48304"	"Computers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Aug-07	28-Aug-07	19690.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	
-="CN48306"	"IT Software Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	18446.00	=""	="QUANTUM TECHNOLOGY"	26-Nov-07 12:29 PM	
-="CN48309"	"Delivery of SAC training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Vocational training"	31-Aug-07	31-Dec-07	18906.00	=""	="AUSTRALIAN PUBLIC SERVICE"	26-Nov-07 12:29 PM	
-="CN48316"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	03-Sep-07	30-Nov-10	16200.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:30 PM	
-="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	
-="CN48333"	"OHS Induction Training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	13-Oct-06	30-Jun-07	19500.00	=""	="WSP ENVIRONMENTAL PTY LTD"	26-Nov-07 12:32 PM	
-="CN48340"	"Rehabilitation Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Nov-06	30-Jun-07	19000.00	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:33 PM	
-="CN48341"	"Temporary employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Nov-06	30-Jun-07	19296.54	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:33 PM	
-="CN48344"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	19134.75	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48347"	"Provide advice on complex sample design for longitudinal survey of income support recipients"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	01-Feb-07	01-Feb-07	18281.25	=""	="ROBERT V BREUNIG"	26-Nov-07 12:33 PM	
-="CN48357"	"Freight services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	27-Jul-06	19762.86	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:35 PM	
-="CN48370"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Electronic hardware and component parts and accessories"	14-Jun-07	30-Jun-07	17867.91	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:36 PM	
-="CN48373"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	17735.00	=""	="HAYS OFFICE SUPPORT"	26-Nov-07 12:37 PM	
-="CN48382"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jun-07	30-Jun-07	19800.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:38 PM	
-="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	
-="CN48384"	"Nursing care services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Domestic and personal assistance"	28-Jun-07	30-Jun-07	16712.20	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:38 PM	
-="CN48429"	"CPO017177 - Mooring Unit"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	18478.90	=""	="Arafura Sea Charters"	26-Nov-07 02:23 PM	
-="CN48435"	"CPO017311 - Supply of fabric"	="Australian Customs and Border Protection Service"	26-Nov-07	="Fibres and threads and yarns"	22-Nov-07	31-Jan-08	18288.00	=""	="Bruck Textiles Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48451"	"PRESENTATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	16-Nov-07	16500.00	=""	="YOUNG ACHIEVEMENT AUSTRALIA"	26-Nov-07 02:42 PM	
-="CN48465"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Oct-07	31-Dec-07	18231.31	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 02:56 PM	
-="CN48482"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	17852.72	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48490"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	25-Oct-07	25-Oct-07	18858.12	=""	="ACUMEN ALLIANCE"	26-Nov-07 02:59 PM	
-="CN48510"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	25-Oct-07	25-Oct-07	16831.34	=""	="QM Technologies Pty Limited"	26-Nov-07 03:01 PM	
-="CN48521"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Graphic design"	03-Oct-07	03-Oct-07	17430.60	=""	="PARAGON PRINTERS"	26-Nov-07 03:03 PM	
-="CN48530"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	15-Nov-07	19745.00	=""	="COLLIERS INTERNATIONAL HOLDINGS"	26-Nov-07 03:03 PM	
-="CN48536"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	13-Nov-07	19375.59	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:04 PM	
-="CN48541"	"Supply of 2008 Diaries"	="Medicare Australia"	26-Nov-07	="Office and desk accessories"	16-Oct-07	16-Oct-07	19929.21	=""	="Corporate Impressions"	26-Nov-07 03:04 PM	
-="CN48551"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	16307.51	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48560"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	18072.46	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48592"	"Supply of Trousers, Men's, Metallic Blue, Drivers."	="Defence Materiel Organisation"	26-Nov-07	="Clothing"	26-Nov-07	29-Feb-08	18920.00	=""	="Joseph Dahdah & Co Pty Ltd"	26-Nov-07 03:39 PM	
-="CN48693-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	13-Jul-07	24-Aug-08	16200.00	=""	="Australian Federal Police"	27-Nov-07 11:30 AM	
-="CN48702"	"Relocation of personal effects  take up employment as Nurse Manager - IOTHS Cocos"	="Department of Transport and Regional Services"	27-Nov-07	="Material packing and handling"	21-Nov-07	31-Jan-08	17121.70	="TRS07/371"	="ALLIED PICKFORDS (SIRVA PTY LTD)"	27-Nov-07 11:31 AM	
-="CN48716-A1"	"Provision of Mobile Pedestal Units"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	14-Nov-06	14-Nov-06	16687.00	=""	="OfficeMax Australia Ltd"	27-Nov-07 11:38 AM	
-="CN48748"	"College of Immigration Course Transport"	="Department of Immigration and Citizenship"	27-Nov-07	="Passenger motor vehicles"	30-Apr-07	04-Jul-07	18000.00	=""	="Dallarooma Pty. Ltd."	27-Nov-07 01:55 PM	
-="CN48749"	"Accrued leave liability"	="Australian Crime Commission"	27-Nov-07	="Personnel recruitment"	19-Nov-07	19-Nov-07	16147.91	=""	="Austrac"	27-Nov-07 01:57 PM	
-="CN48778"	"Accommodation"	="Bureau of Meteorology"	27-Nov-07	="Hotels and lodging and meeting facilities"	14-Nov-07	30-Nov-07	16510.00	=""	="Docklands Serviced Apartments"	27-Nov-07 03:04 PM	
-="CN48796"	"Bulk order for Health related checks"	="Australian Crime Commission"	27-Nov-07	="Healthcare Services"	23-Nov-07	23-Nov-07	20000.00	=""	="Health for Industry - VIC"	27-Nov-07 03:22 PM	
-="CN48817"	"a/c spares: 1560-01-100-8270, Bracket, qty 60."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	16-Apr-08	18051.00	=""	="sikorsky aust"	27-Nov-07 04:35 PM	
-="CN48831"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	28-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	17502.76	=""	="LANDROVER"	28-Nov-07 08:10 AM	
-="CN48845"	"Provision of Security Advisory Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	01-Jun-10	19000.00	=""	="BARRINGTON CORPORATE RISK PTY LTD"	28-Nov-07 09:56 AM	
-="CN48846"	"dev & maint micro-sim model STINMOD"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	30-Jun-10	18562.50	=""	="UNIVERSITY OF CANBERRA"	28-Nov-07 09:56 AM	
-="CN48847"	"Recruitment Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	24-Oct-07	30-Nov-10	17200.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 09:56 AM	
-="CN48863"	"Software Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	29-Oct-07	30-Jun-08	17547.55	=""	="SIRSIDYNIX P/L"	28-Nov-07 09:57 AM	
-="CN48868"	"recruitment services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Oct-07	25-Mar-08	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	28-Nov-07 09:58 AM	
-="CN48894"	"Hobart Care - EDDPL 117"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	13-Jun-08	16650.00	=""	="WORKSKILL EMPLOYMENT SOLUTIONS"	28-Nov-07 10:01 AM	
-="CN48908"	"Credit Card - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	17500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	
-="CN48917"	"delivery of supervision skills 2006-2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Nov-07	31-Jan-09	19500.00	=""	="ODS MANAGEMENT CONSULTING PTY LTD"	28-Nov-07 10:03 AM	
-="CN48922"	"Pathways Survey - Enviro Bags"	="Department of Employment and Workplace Relations"	28-Nov-07	="Mail and cargo transport"	26-Nov-07	30-Jun-08	16737.96	=""	="SALMAT  PRINT ON DEMAND PTY LTD"	28-Nov-07 10:03 AM	
-="CN48924"	"Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	20000.00	="000000"	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:04 AM	
-="CN48940"	"GEERS IP Fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	07-Nov-07	07-Nov-07	19184.00	=""	="SIMSPARTNERS QLD PTY LTD"	28-Nov-07 10:05 AM	
-="CN48959"	"purchase of 200 Little Children are Sacr"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	13-Nov-07	30-Nov-07	17200.00	=""	="GOVERNMENT PRINTING OFFICE"	28-Nov-07 10:07 AM	
-="CN48960"	"35,000 In-Confidence File covers 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	13-Nov-07	30-Jun-08	19085.00	="WR05/3920"	="MCDONALD PRINTING GROUP"	28-Nov-07 10:07 AM	
-="CN48966"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	17411.03	=""	="AUST GOVERNMENT SOLICITOR"	28-Nov-07 10:08 AM	
-="CN48973"	"Contractor Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Nov-07	20000.00	=""	="HUDSON GLOBAL RESOURCES"	28-Nov-07 10:09 AM	
-="CN48981"	"airfares- charters NT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	17-Sep-07	30-Jun-08	20000.00	="DEWR QFQ 2007/SEP"	="KATHERINE AVIATION PTY LTD"	28-Nov-07 10:09 AM	
-="CN48983"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	17-Sep-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:10 AM	
-="CN49015"	"Proximity Cards"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office supplies"	14-Sep-07	30-Jun-08	17325.00	=""	="VERISIGN"	28-Nov-07 10:13 AM	
-="CN49016"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	
-="CN49017"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	
-="CN49028"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office machines and their supplies and accessories"	12-Sep-07	30-Jun-08	16082.00	=""	="COMPUTERCORP PTY LTD"	28-Nov-07 10:14 AM	
-="CN49031"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	10-Oct-07	30-Jun-08	20000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	28-Nov-07 10:14 AM	
-="CN49045"	"EDDPL29 - Food manufacturing industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	28-Dec-07	19625.00	=""	="BEST COMMUNITY DEVELOPMENT"	28-Nov-07 10:16 AM	
-="CN49066"	"IT2 CWC"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	19500.00	=""	="DILMA CONSULTING PTY LTD"	28-Nov-07 10:18 AM	
-="CN49075"	"Recruitment Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Sep-07	30-Nov-10	17000.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:19 AM	
-="CN49082"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	05-Oct-07	30-Sep-08	17859.75	="Advertising - bulk recruitment"	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:19 AM	
-="CN49102"	"Revision of AQUAVETPLAN Disease Strategy Manual: Furunculosis"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	15-Nov-07	25-Apr-08	18348.00	=""	="Panaquatic Pty Ltd"	28-Nov-07 11:14 AM	
-="CN49108"	"Translation of scientific papers - Japanese to English"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	20000.00	=""	="Linguaset Translations"	28-Nov-07 11:15 AM	
-="CN49120"	"Permanent placements - Level 2 part time quarantine officers"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	19-Nov-07	03-Dec-07	17160.00	=""	="Duff Recruitment Pty Ltd"	28-Nov-07 11:16 AM	
-="CN49178-A1"	"Temporary Personnel"	="Australian Electoral Commission"	28-Nov-07	="Temporary personnel services"	01-Sep-06	30-Jun-09	17867.30	="S06/07/10"	="Hays Personnel Services"	28-Nov-07 05:15 PM	
-="CN49192"	"IT Services Re: E-Trial"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	10-Oct-07	31-Dec-07	19841.25	=""	="Potter Farrelly & Associates"	28-Nov-07 05:47 PM	
-="CN49195"	"Install Alarm System"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	05-Oct-08	16574.80	=""	="MGA Electronic Security"	28-Nov-07 05:47 PM	
-="CN49210"	"DISPLAY BOARD MAP FOLDING, PLYWOOD PANELS IN ACCORDANCE WITH DEFENCE (AUST) SPECIFICATION 8362 AND DRAWING ADE(M) 157-1, QUANTITY 70."	="Defence Materiel Organisation"	29-Nov-07	="Miscellaneous hardware"	28-Nov-07	16-Jan-08	17017.00	="G9306"	="WEST VIC CANVAS"	29-Nov-07 12:03 PM	
-="CN49233"	"Provision of air travel"	="National Blood Authority"	29-Nov-07	="Commercial aeroplane travel"	06-Sep-07	27-Sep-07	17804.53	=""	="Flight Centre"	29-Nov-07 01:49 PM	
-="CN49241"	"Repairs to furniture"	="Department of the House of Representatives"	29-Nov-07	="Refurbishing services"	28-Nov-07	30-Jun-08	18839.70	=""	="Complete Leathercare (ACT)"	29-Nov-07 02:11 PM	
-="CN49245"	"airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	14-Nov-07	13-Dec-07	18769.87	=""	="Ministerial & Parliamentary Services"	29-Nov-07 02:21 PM	
-="CN49247"	"Airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	25-Sep-07	19-Nov-07	19502.16	=""	="Ministerial & Parliamentary Services"	29-Nov-07 02:24 PM	
-="CN49258"	" NSN 1610-00-483-6353  PURCHASE OF BUSHING BLADE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	15-Dec-07	17715.00	=""	="Military Aviation Spares Pty Ltd"	29-Nov-07 04:06 PM	
-="CN49266"	" AIRCRAFT SPARES  NSN: 1560-66-099-0387  SEAT MOUNTING BRACKET  QTY: 5 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	30-Aug-07	02-Jan-08	16836.05	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	29-Nov-07 04:21 PM	
-="CN49267"	" NSN 2840-01-414-6717  PURCHASE OF DISK, COMPRESSOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	26-Jan-08	17983.86	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:23 PM	
-="CN49281-A1"	"additional contruction works"	="Australian Institute of Family Studies"	30-Nov-07	="Structural building products"	03-Sep-07	03-Sep-07	19942.61	=""	="Schiavello (VIC) Pty Ltd"	30-Nov-07 08:41 AM	
-="CN49301"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	17325.00	="0"	="VERIZON"	30-Nov-07 12:39 PM	
-="CN49308"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16500.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	
-="CN49310"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16168.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	
-="CN49318"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	19718.24	="o"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:41 PM	
-="CN49327"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	17908.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	30-Nov-07 12:42 PM	
-="CN49333"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	18029.00	="0"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	
-="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	
-="CN49367"	" SERVICE AND REPAIR MERLO TELELOADER "	="Department of Defence"	30-Nov-07	="Front end loaders"	01-Jun-07	16-Jul-07	19280.72	=""	="MERLO GROUP AUSTRALIA"	30-Nov-07 01:12 PM	
-="CN49370"	"Duffel Bag, Dry Bag"	="Defence Materiel Organisation"	30-Nov-07	="Camping and outdoor equipment and accessories"	21-Nov-07	05-Dec-07	18661.00	=""	="Mainpeak Pty Ltd"	30-Nov-07 02:29 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48141"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	21-Feb-08	17619.80	=""	="A AND D INTERNATIONAL PTY LTD"	26-Nov-07 07:47 AM	

+="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	

+="CN48144"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	26-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	11-Dec-07	19991.86	=""	="Symbion Pharmacy Services"	26-Nov-07 09:30 AM	

+="CN48155"	"HMA Blaze - Advertising and Promotion of BIA Telecommuncation program"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	30-Jun-08	18649.16	="ATM07/541"	="HMA BLAZE"	26-Nov-07 11:31 AM	

+="CN48156-A1"	"APS Jobs Subscription 07-08"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	17773.97	="ATM 07/638"	="Australian Public"	26-Nov-07 11:31 AM	

+="CN48174-A2"	"Graphic Design Annual Report"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	22-Aug-07	30-Jun-08	19999.00	="DCON/05/105"	="MA@D COMMUNICATION"	26-Nov-07 11:33 AM	

+="CN48191"	"ICT Service panel Information  & Communication Contract (DPS05048 )"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	28-Dec-07	19140.00	=""	="Greythorn Pty Ltd"	26-Nov-07 11:45 AM	

+="CN48192"	"Voices services(local,national & moblie calls Contract (DPS04114)"	="Department of Parliamentary Services"	26-Nov-07	="Phone and video conference equipment and hardware and controllers"	21-Nov-07	28-Dec-07	17722.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48197"	"Supply of Waste Bin Tipping Machines"	="Department of Parliamentary Services"	26-Nov-07	="Material handling machinery and equipment"	16-Nov-07	30-Nov-07	19646.00	=""	="Wrightway Products"	26-Nov-07 11:45 AM	

+="CN48228"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jul-07	30-Jun-08	17874.48	=""	="OPEN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48259"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	17623.10	=""	="LINK RECRUITMENT PTY"	26-Nov-07 12:23 PM	

+="CN48271"	"Online OH&S Induction Training Module"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-Sep-07	30-Jun-08	18000.00	=""	="NOEL ARNOLD & ASSOCIATES"	26-Nov-07 12:24 PM	

+="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	

+="CN48291"	"Software"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	10-Sep-07	30-Jun-08	18525.00	=""	="MICROWAY P/L"	26-Nov-07 12:27 PM	

+="CN48304"	"Computers"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Aug-07	28-Aug-07	19690.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	

+="CN48306"	"IT Software Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	18446.00	=""	="QUANTUM TECHNOLOGY"	26-Nov-07 12:29 PM	

+="CN48309"	"Delivery of SAC training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Vocational training"	31-Aug-07	31-Dec-07	18906.00	=""	="AUSTRALIAN PUBLIC SERVICE"	26-Nov-07 12:29 PM	

+="CN48316"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	03-Sep-07	30-Nov-10	16200.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:30 PM	

+="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	

+="CN48333"	"OHS Induction Training"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	13-Oct-06	30-Jun-07	19500.00	=""	="WSP ENVIRONMENTAL PTY LTD"	26-Nov-07 12:32 PM	

+="CN48340"	"Rehabilitation Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Nov-06	30-Jun-07	19000.00	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:33 PM	

+="CN48341"	"Temporary employees"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Nov-06	30-Jun-07	19296.54	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:33 PM	

+="CN48344"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	19134.75	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48347"	"Provide advice on complex sample design for longitudinal survey of income support recipients"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	01-Feb-07	01-Feb-07	18281.25	=""	="ROBERT V BREUNIG"	26-Nov-07 12:33 PM	

+="CN48357"	"Freight services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	27-Jul-06	19762.86	=""	="MULTIGROUP DISTRIBUTION SERVICES"	26-Nov-07 12:35 PM	

+="CN48370"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Electronic hardware and component parts and accessories"	14-Jun-07	30-Jun-07	17867.91	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:36 PM	

+="CN48373"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	17735.00	=""	="HAYS OFFICE SUPPORT"	26-Nov-07 12:37 PM	

+="CN48382"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jun-07	30-Jun-07	19800.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:38 PM	

+="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	

+="CN48384"	"Nursing care services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Domestic and personal assistance"	28-Jun-07	30-Jun-07	16712.20	=""	="ABSOLUTE HOME CARE PTY LTD"	26-Nov-07 12:38 PM	

+="CN48429"	"CPO017177 - Mooring Unit"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	18478.90	=""	="Arafura Sea Charters"	26-Nov-07 02:23 PM	

+="CN48435"	"CPO017311 - Supply of fabric"	="Australian Customs and Border Protection Service"	26-Nov-07	="Fibres and threads and yarns"	22-Nov-07	31-Jan-08	18288.00	=""	="Bruck Textiles Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48451"	"PRESENTATION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	16-Nov-07	16500.00	=""	="YOUNG ACHIEVEMENT AUSTRALIA"	26-Nov-07 02:42 PM	

+="CN48465"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Oct-07	31-Dec-07	18231.31	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 02:56 PM	

+="CN48482"	"Provision of Archival Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	17852.72	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48490"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	25-Oct-07	25-Oct-07	18858.12	=""	="ACUMEN ALLIANCE"	26-Nov-07 02:59 PM	

+="CN48510"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	25-Oct-07	25-Oct-07	16831.34	=""	="QM Technologies Pty Limited"	26-Nov-07 03:01 PM	

+="CN48521"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Graphic design"	03-Oct-07	03-Oct-07	17430.60	=""	="PARAGON PRINTERS"	26-Nov-07 03:03 PM	

+="CN48530"	"CONSULTANCY"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	15-Nov-07	19745.00	=""	="COLLIERS INTERNATIONAL HOLDINGS"	26-Nov-07 03:03 PM	

+="CN48536"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	13-Nov-07	19375.59	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:04 PM	

+="CN48541"	"Supply of 2008 Diaries"	="Medicare Australia"	26-Nov-07	="Office and desk accessories"	16-Oct-07	16-Oct-07	19929.21	=""	="Corporate Impressions"	26-Nov-07 03:04 PM	

+="CN48551"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	16307.51	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48560"	"Provision of Software Solutions"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	18072.46	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48592"	"Supply of Trousers, Men's, Metallic Blue, Drivers."	="Defence Materiel Organisation"	26-Nov-07	="Clothing"	26-Nov-07	29-Feb-08	18920.00	=""	="Joseph Dahdah & Co Pty Ltd"	26-Nov-07 03:39 PM	

+="CN48693-A1"	"Security Vetting Services"	="Department of Immigration and Citizenship"	27-Nov-07	="National Defence and Public Order and Security and Safety Services"	13-Jul-07	24-Aug-08	16200.00	=""	="Australian Federal Police"	27-Nov-07 11:30 AM	

+="CN48702"	"Relocation of personal effects  take up employment as Nurse Manager - IOTHS Cocos"	="Department of Transport and Regional Services"	27-Nov-07	="Material packing and handling"	21-Nov-07	31-Jan-08	17121.70	="TRS07/371"	="ALLIED PICKFORDS (SIRVA PTY LTD)"	27-Nov-07 11:31 AM	

+="CN48716-A1"	"Provision of Mobile Pedestal Units"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	14-Nov-06	14-Nov-06	16687.00	=""	="OfficeMax Australia Ltd"	27-Nov-07 11:38 AM	

+="CN48748"	"College of Immigration Course Transport"	="Department of Immigration and Citizenship"	27-Nov-07	="Passenger motor vehicles"	30-Apr-07	04-Jul-07	18000.00	=""	="Dallarooma Pty. Ltd."	27-Nov-07 01:55 PM	

+="CN48749"	"Accrued leave liability"	="Australian Crime Commission"	27-Nov-07	="Personnel recruitment"	19-Nov-07	19-Nov-07	16147.91	=""	="Austrac"	27-Nov-07 01:57 PM	

+="CN48778"	"Accommodation"	="Bureau of Meteorology"	27-Nov-07	="Hotels and lodging and meeting facilities"	14-Nov-07	30-Nov-07	16510.00	=""	="Docklands Serviced Apartments"	27-Nov-07 03:04 PM	

+="CN48796"	"Bulk order for Health related checks"	="Australian Crime Commission"	27-Nov-07	="Healthcare Services"	23-Nov-07	23-Nov-07	20000.00	=""	="Health for Industry - VIC"	27-Nov-07 03:22 PM	

+="CN48817"	"a/c spares: 1560-01-100-8270, Bracket, qty 60."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	16-Apr-08	18051.00	=""	="sikorsky aust"	27-Nov-07 04:35 PM	

+="CN48831"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	28-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	17502.76	=""	="LANDROVER"	28-Nov-07 08:10 AM	

+="CN48845"	"Provision of Security Advisory Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	01-Jun-10	19000.00	=""	="BARRINGTON CORPORATE RISK PTY LTD"	28-Nov-07 09:56 AM	

+="CN48846"	"dev & maint micro-sim model STINMOD"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	25-Oct-07	30-Jun-10	18562.50	=""	="UNIVERSITY OF CANBERRA"	28-Nov-07 09:56 AM	

+="CN48847"	"Recruitment Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	24-Oct-07	30-Nov-10	17200.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 09:56 AM	

+="CN48863"	"Software Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	29-Oct-07	30-Jun-08	17547.55	=""	="SIRSIDYNIX P/L"	28-Nov-07 09:57 AM	

+="CN48868"	"recruitment services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Oct-07	25-Mar-08	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	28-Nov-07 09:58 AM	

+="CN48894"	"Hobart Care - EDDPL 117"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	13-Jun-08	16650.00	=""	="WORKSKILL EMPLOYMENT SOLUTIONS"	28-Nov-07 10:01 AM	

+="CN48908"	"Credit Card - Internal Audit"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	31-Dec-07	17500.00	=""	="MCGRATHNICOL CORPORATE ADVISORY"	28-Nov-07 10:02 AM	

+="CN48917"	"delivery of supervision skills 2006-2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	15-Nov-07	31-Jan-09	19500.00	=""	="ODS MANAGEMENT CONSULTING PTY LTD"	28-Nov-07 10:03 AM	

+="CN48922"	"Pathways Survey - Enviro Bags"	="Department of Employment and Workplace Relations"	28-Nov-07	="Mail and cargo transport"	26-Nov-07	30-Jun-08	16737.96	=""	="SALMAT  PRINT ON DEMAND PTY LTD"	28-Nov-07 10:03 AM	

+="CN48924"	"Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	20000.00	="000000"	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:04 AM	

+="CN48940"	"GEERS IP Fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	07-Nov-07	07-Nov-07	19184.00	=""	="SIMSPARTNERS QLD PTY LTD"	28-Nov-07 10:05 AM	

+="CN48959"	"purchase of 200 Little Children are Sacr"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	13-Nov-07	30-Nov-07	17200.00	=""	="GOVERNMENT PRINTING OFFICE"	28-Nov-07 10:07 AM	

+="CN48960"	"35,000 In-Confidence File covers 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	13-Nov-07	30-Jun-08	19085.00	="WR05/3920"	="MCDONALD PRINTING GROUP"	28-Nov-07 10:07 AM	

+="CN48966"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	17411.03	=""	="AUST GOVERNMENT SOLICITOR"	28-Nov-07 10:08 AM	

+="CN48973"	"Contractor Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Nov-07	20000.00	=""	="HUDSON GLOBAL RESOURCES"	28-Nov-07 10:09 AM	

+="CN48981"	"airfares- charters NT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	17-Sep-07	30-Jun-08	20000.00	="DEWR QFQ 2007/SEP"	="KATHERINE AVIATION PTY LTD"	28-Nov-07 10:09 AM	

+="CN48983"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	17-Sep-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:10 AM	

+="CN49015"	"Proximity Cards"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office supplies"	14-Sep-07	30-Jun-08	17325.00	=""	="VERISIGN"	28-Nov-07 10:13 AM	

+="CN49016"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	

+="CN49017"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	

+="CN49028"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office machines and their supplies and accessories"	12-Sep-07	30-Jun-08	16082.00	=""	="COMPUTERCORP PTY LTD"	28-Nov-07 10:14 AM	

+="CN49031"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	10-Oct-07	30-Jun-08	20000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	28-Nov-07 10:14 AM	

+="CN49045"	"EDDPL29 - Food manufacturing industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	28-Dec-07	19625.00	=""	="BEST COMMUNITY DEVELOPMENT"	28-Nov-07 10:16 AM	

+="CN49066"	"IT2 CWC"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	19500.00	=""	="DILMA CONSULTING PTY LTD"	28-Nov-07 10:18 AM	

+="CN49075"	"Recruitment Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Sep-07	30-Nov-10	17000.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:19 AM	

+="CN49082"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	05-Oct-07	30-Sep-08	17859.75	="Advertising - bulk recruitment"	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:19 AM	

+="CN49102"	"Revision of AQUAVETPLAN Disease Strategy Manual: Furunculosis"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	15-Nov-07	25-Apr-08	18348.00	=""	="Panaquatic Pty Ltd"	28-Nov-07 11:14 AM	

+="CN49108"	"Translation of scientific papers - Japanese to English"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	20000.00	=""	="Linguaset Translations"	28-Nov-07 11:15 AM	

+="CN49120"	"Permanent placements - Level 2 part time quarantine officers"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	19-Nov-07	03-Dec-07	17160.00	=""	="Duff Recruitment Pty Ltd"	28-Nov-07 11:16 AM	

+="CN49178-A1"	"Temporary Personnel"	="Australian Electoral Commission"	28-Nov-07	="Temporary personnel services"	01-Sep-06	30-Jun-09	17867.30	="S06/07/10"	="Hays Personnel Services"	28-Nov-07 05:15 PM	

+="CN49192"	"IT Services Re: E-Trial"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	10-Oct-07	31-Dec-07	19841.25	=""	="Potter Farrelly & Associates"	28-Nov-07 05:47 PM	

+="CN49195"	"Install Alarm System"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	05-Oct-08	16574.80	=""	="MGA Electronic Security"	28-Nov-07 05:47 PM	

+="CN49210"	"DISPLAY BOARD MAP FOLDING, PLYWOOD PANELS IN ACCORDANCE WITH DEFENCE (AUST) SPECIFICATION 8362 AND DRAWING ADE(M) 157-1, QUANTITY 70."	="Defence Materiel Organisation"	29-Nov-07	="Miscellaneous hardware"	28-Nov-07	16-Jan-08	17017.00	="G9306"	="WEST VIC CANVAS"	29-Nov-07 12:03 PM	

+="CN49233"	"Provision of air travel"	="National Blood Authority"	29-Nov-07	="Commercial aeroplane travel"	06-Sep-07	27-Sep-07	17804.53	=""	="Flight Centre"	29-Nov-07 01:49 PM	

+="CN49241"	"Repairs to furniture"	="Department of the House of Representatives"	29-Nov-07	="Refurbishing services"	28-Nov-07	30-Jun-08	18839.70	=""	="Complete Leathercare (ACT)"	29-Nov-07 02:11 PM	

+="CN49245"	"airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	14-Nov-07	13-Dec-07	18769.87	=""	="Ministerial & Parliamentary Services"	29-Nov-07 02:21 PM	

+="CN49247"	"Airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	25-Sep-07	19-Nov-07	19502.16	=""	="Ministerial & Parliamentary Services"	29-Nov-07 02:24 PM	

+="CN49258"	" NSN 1610-00-483-6353  PURCHASE OF BUSHING BLADE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	15-Dec-07	17715.00	=""	="Military Aviation Spares Pty Ltd"	29-Nov-07 04:06 PM	

+="CN49266"	" AIRCRAFT SPARES  NSN: 1560-66-099-0387  SEAT MOUNTING BRACKET  QTY: 5 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	30-Aug-07	02-Jan-08	16836.05	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	29-Nov-07 04:21 PM	

+="CN49267"	" NSN 2840-01-414-6717  PURCHASE OF DISK, COMPRESSOR, AIRCRAFT GAS TURBINE  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	26-Jan-08	17983.86	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:23 PM	

+="CN49281-A1"	"additional contruction works"	="Australian Institute of Family Studies"	30-Nov-07	="Structural building products"	03-Sep-07	03-Sep-07	19942.61	=""	="Schiavello (VIC) Pty Ltd"	30-Nov-07 08:41 AM	

+="CN49301"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	17325.00	="0"	="VERIZON"	30-Nov-07 12:39 PM	

+="CN49308"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16500.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	

+="CN49310"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16168.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	

+="CN49318"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	19718.24	="o"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:41 PM	

+="CN49327"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	17908.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	30-Nov-07 12:42 PM	

+="CN49333"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	18029.00	="0"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	

+="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	

+="CN49367"	" SERVICE AND REPAIR MERLO TELELOADER "	="Department of Defence"	30-Nov-07	="Front end loaders"	01-Jun-07	16-Jul-07	19280.72	=""	="MERLO GROUP AUSTRALIA"	30-Nov-07 01:12 PM	

+="CN49370"	"Duffel Bag, Dry Bag"	="Defence Materiel Organisation"	30-Nov-07	="Camping and outdoor equipment and accessories"	21-Nov-07	05-Dec-07	18661.00	=""	="Mainpeak Pty Ltd"	30-Nov-07 02:29 PM	

 ="CN49378-A2"	"Provision of Cleaning Services at the Wyong premises of CRS Australia"	="CRS Australia"	30-Nov-07	="General building and office cleaning and maintenance services"	17-Nov-06	16-Nov-09	19202.16	=""	="GTL Management"	30-Nov-07 03:16 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val20000to30000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val20000to30000.xls
@@ -1,183 +1,183 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	
-="CN48163-A1"	"Analysis of Travel Costs"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	21177.13	="DCON/05/53"	="ACUMEN ALLIANCE"	26-Nov-07 11:32 AM	
-="CN48170-A1"	"Brandis Comcar Account"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Transportation and Storage and Mail Services"	01-Feb-07	03-Dec-07	27205.59	="ATM 07/625"	="COMCAR (DOFA)"	26-Nov-07 11:33 AM	
-="CN48180"	"Griffiths Skills Training Centre: Backing Indigenous Ability Funding Wagga and Bourke"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/470"	="Griffith Skills Training Centre Inc"	26-Nov-07 11:34 AM	
-="CN48183"	"Centre for Appropriate Technology - Backing Indigenous Ability Funding Mt Isa"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/475"	="Centre for Appropriate Technology"	26-Nov-07 11:35 AM	
-="CN48188"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	26-Nov-07	="Environmental security control services"	22-Nov-07	28-Dec-07	20026.05	=""	="Honeywell Limited"	26-Nov-07 11:44 AM	
-="CN48194"	"Provision  of  Audit services"	="Department of Parliamentary Services"	26-Nov-07	="Audit services"	20-Nov-07	30-Nov-07	22000.00	=""	="KPMG"	26-Nov-07 11:45 AM	
-="CN48195"	"Provision  of  Temporary contract labour Contract (DPS041980"	="Department of Parliamentary Services"	26-Nov-07	="Temporary manual labour"	19-Nov-07	23-Dec-07	22000.00	=""	="Jewell & Buckley P/L"	26-Nov-07 11:45 AM	
-="CN48200"	"Supply of  Computer Server"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	14-Nov-07	31-Dec-07	28600.00	=""	="Frontline Systems Australia Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48203"	"Provision of  Purchase of Sissor Lift"	="Department of Parliamentary Services"	26-Nov-07	="Scissor lift"	13-Nov-07	30-Nov-07	25190.00	=""	="Force Access Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48206"	"Provision of Professional Recruitment Services"	="Department of Parliamentary Services"	26-Nov-07	="Temporary personnel services"	13-Nov-07	30-Nov-07	21920.80	=""	="Kowalski Recruitment P/L"	26-Nov-07 11:47 AM	
-="CN48208"	"Services of Electro Group Trainees (Contract DPS04030)"	="Department of Parliamentary Services"	26-Nov-07	="Contractors all risks insurance"	12-Nov-07	30-Nov-07	22000.00	=""	="The Electrotechnology Industry"	26-Nov-07 11:47 AM	
-="CN48213"	"Personal Efficency Program course 8 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	15-Nov-07	05-Feb-08	26400.00	=""	="D'ARCY CONSULTING GROUP PTY"	26-Nov-07 11:56 AM	
-="CN48215"	"Payment Summaries"	="Australian Taxation Office"	26-Nov-07	="Financial and Insurance Services"	19-Nov-07	30-Nov-07	20815.91	=""	="CITEC"	26-Nov-07 11:56 AM	
-="CN48221"	"Seibel Essentials course 6 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	19-Nov-07	25465.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 11:57 AM	
-="CN48234"	"Enhancement to DM to Support Jaws & Dragon"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	06-Aug-07	30-Jun-08	28049.74	=""	="80-20 SOFTWARE PTY LTD"	26-Nov-07 12:20 PM	
-="CN48249"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	22614.90	="ITC"	="AURORA INVESTMENTS & SYSTEMS PTY LT"	26-Nov-07 12:22 PM	
-="CN48254"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	10-Jul-07	30-Jun-08	20250.80	=""	="TELSTRA (VIC)"	26-Nov-07 12:22 PM	
-="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	
-="CN48277"	"EMS-Development and Implementation"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	23601.60	=""	="UNITED GROUP SERVICES - BUSINESS AC"	26-Nov-07 12:25 PM	
-="CN48282"	"Staff rental property for National  Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	05-Sep-08	21280.00	="DEWR RFQ 2007/Sep"	="ELDERS TERRITORY REAL ESTATE"	26-Nov-07 12:26 PM	
-="CN48292"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	10-Sep-07	30-Jun-08	21659.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	
-="CN48302"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	23-Aug-07	30-Jun-08	21401.05	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	
-="CN48305"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	30-Aug-07	30-Jun-08	20585.08	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:28 PM	
-="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	
-="CN48342"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	03-Aug-06	30-Jun-07	22970.33	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:33 PM	
-="CN48345"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	29578.38	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48359"	"Bus Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	30-Jun-07	22579.60	=""	="DEANES BUSLINES PTY LTD"	26-Nov-07 12:35 PM	
-="CN48367"	"Navigation tools"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation components and systems"	05-Jun-07	30-Jun-07	21472.00	=""	="HYPERION SOLUTIONS AUSTRALIA"	26-Nov-07 12:36 PM	
-="CN48371"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	15-Jun-07	30-Jun-07	20064.00	=""	="SELECT APPOINTMENTS"	26-Nov-07 12:37 PM	
-="CN48376"	"Auslan for employment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Paper products"	21-Jun-07	30-Jun-07	27700.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	
-="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	
-="CN48386"	"Extension of Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	29-Jun-07	30-Jun-07	27500.00	=""	="COMMERCE QUEENSLAND"	26-Nov-07 12:38 PM	
-="CN48397"	"General Audit Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accounting and auditing"	03-Jan-07	30-Jun-10	26160.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	26-Nov-07 12:40 PM	
-="CN48404"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-May-07	30-Jun-07	29000.00	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:41 PM	
-="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	
-="CN48413"	"WPA amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	01-Jun-07	30-Jun-07	22500.00	=""	="FOX BADGER FERRET PTY LTD"	26-Nov-07 12:42 PM	
-="CN48423-A1"	"In-house delivery of 2 workshops of Managing Dispersed teams by international expert."	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	20-Sep-07	28-Sep-07	25555.00	=""	="Performance Improvement Conferences & Seminars Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48438"	"CPO016466 - CCTV Relocation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	11-May-08	29768.00	=""	="Chubb Electronic Security"	26-Nov-07 02:24 PM	
-="CN48450"	"COURSE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	27720.00	=""	="TERADATA AUSTRALIA PTY LTD"	26-Nov-07 02:42 PM	
-="CN48470"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	21507.75	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	
-="CN48502"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	25795.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	26-Nov-07 03:00 PM	
-="CN48513"	"Provision of Educational Services"	="Medicare Australia"	26-Nov-07	="Vocational training"	25-Oct-07	25-Oct-07	23760.00	=""	="PLANPOWER PTY LTD"	26-Nov-07 03:02 PM	
-="CN48514"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Paper materials"	25-Oct-07	25-Oct-07	23100.00	=""	="QM Technologies Pty Limited"	26-Nov-07 03:02 PM	
-="CN48529"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	03-Oct-07	03-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:03 PM	
-="CN48538"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Doors and windows and glass"	05-Oct-07	05-Oct-07	21386.20	=""	="Hufcor Pty Ltd"	26-Nov-07 03:04 PM	
-="CN48540"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	08-Oct-07	08-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:04 PM	
-="CN48542"	"Provision of Storage/File Destruction services"	="Medicare Australia"	26-Nov-07	="Storage"	09-Oct-07	30-Jun-08	23324.78	=""	="RECALL TOTAL INFORMATION"	26-Nov-07 03:04 PM	
-="CN48549"	"WA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	28487.64	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48557"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	03-Oct-07	03-Oct-07	28417.31	=""	="SKILLED GROUP LIMITED"	26-Nov-07 03:06 PM	
-="CN48564"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	20152.00	=""	="LINDA VAN TINTEREN"	26-Nov-07 03:07 PM	
-="CN48572"	"Provision of Archiving Equipment"	="Medicare Australia"	26-Nov-07	="Paper products"	15-Oct-07	01-Dec-09	27500.00	=""	="ROLLS FILING SYSTEMS"	26-Nov-07 03:08 PM	
-="CN48577"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	21692.00	=""	="DIVERSITI PTY LTD"	26-Nov-07 03:09 PM	
-="CN48579"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	11-Oct-07	20874.09	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:09 PM	
-="CN48586"	"Provision of Advertising Services"	="Medicare Australia"	26-Nov-07	="Advertising"	11-Oct-07	11-Oct-07	22286.00	=""	="CRE8IVE AUSTRALASIA PTY LTD"	26-Nov-07 03:10 PM	
-="CN48620"	"Medeical Consumables For ADF"	="Defence Materiel Organisation"	27-Nov-07	="Medical Equipment and Accessories and Supplies"	20-Nov-07	01-Dec-07	25240.60	=""	="Adec Australia"	27-Nov-07 06:44 AM	
-="CN48668"	"Promotional Items"	="Australian Crime Commission"	27-Nov-07	="Promotional merchandise"	08-Nov-07	08-Nov-07	28254.60	=""	="SK Global Enterprises"	27-Nov-07 10:57 AM	
-="CN48697"	"LAFIA participation DOTARS SES Officer"	="Department of Transport and Regional Services"	27-Nov-07	="Specialised educational services"	09-Sep-07	23-Sep-07	26704.70	="TRS07/375"	="AUSTRALIAN PUBLIC SERVICE"	27-Nov-07 11:30 AM	
-="CN48706"	"Legal Services Expenditure LG6686"	="Department of Transport and Regional Services"	27-Nov-07	="Legal services"	22-Nov-07	30-Jun-09	27500.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	27-Nov-07 11:32 AM	
-="CN48708"	"APS 6.4 contract staff for AST team"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	21-Nov-07	11-Jan-08	23300.20	="TRS05/251"	="Allstaff Australia"	27-Nov-07 11:32 AM	
-="CN48709"	"Provision of consultancy services for the Departme nt's review of urban congestion and finalisa"	="Department of Transport and Regional Services"	27-Nov-07	="Public administration and finance services"	23-Nov-07	30-Nov-07	20350.00	=""	="Meyrick Consulting Group"	27-Nov-07 11:32 AM	
-="CN48752"	"2006-07 Comcare Premium adjustment"	="Australian Crime Commission"	27-Nov-07	="Financial and Insurance Services"	01-Jul-07	30-Jun-08	23612.00	=""	="Comcare Australia"	27-Nov-07 02:04 PM	
-="CN48760"	"mailbox migration software"	="Australian Crime Commission"	27-Nov-07	="Software"	20-Nov-07	20-Nov-07	27324.00	=""	="Quest Software"	27-Nov-07 02:36 PM	
-="CN48757"	" NSN 3040-00-164-5687  PURCHASE OF BELL CRANK  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	25-Jun-07	09-Aug-07	21743.52	=""	="Military Aviation Spares Pty Ltd"	27-Nov-07 02:39 PM	
-="CN48777"	"Precision Infrared Radiometers Model PIR Precision Spectral Pyranometers Mode PSP"	="Bureau of Meteorology"	27-Nov-07	="Measuring and observing and testing instruments"	13-Nov-07	30-Nov-07	20153.45	=""	="THE EPPLEY LABORATORY INC."	27-Nov-07 03:04 PM	
-="CN48779"	"Telecommunications Services"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	14-Nov-07	30-Nov-07	28802.21	=""	="Stratos"	27-Nov-07 03:05 PM	
-="CN48785"	"Upgrade SEAtide Software"	="Bureau of Meteorology"	27-Nov-07	="Computer services"	16-Nov-07	30-Nov-07	22000.00	=""	="Systems Engineering Australia Pty L"	27-Nov-07 03:05 PM	
-="CN48796"	"Bulk order for Health related checks"	="Australian Crime Commission"	27-Nov-07	="Healthcare Services"	23-Nov-07	23-Nov-07	20000.00	=""	="Health for Industry - VIC"	27-Nov-07 03:22 PM	
-="CN48799"	"2nd quarter account management fees for CSS/PSS and PPSap for 2007-08 F/Y"	="Australian Crime Commission"	27-Nov-07	="Government accounting services"	01-Oct-07	31-Dec-07	24149.75	=""	="Comsuper (ACT)"	27-Nov-07 03:33 PM	
-="CN48802"	" CASE FIELD DRESSING "	="Defence Materiel Organisation"	27-Nov-07	="Casing patches"	12-Nov-07	07-Jan-08	21450.00	="CC157I"	="ANCAMARABA PTY LTD"	27-Nov-07 03:51 PM	
-="CN48809"	"Course fees and panel transaction fees"	="Australian Crime Commission"	27-Nov-07	="Development"	23-Nov-07	30-Jun-08	30000.00	=""	="Australian Public Service Commission"	27-Nov-07 04:14 PM	
-="CN48814"	"a/c spares:1615-01-089-0441, rod end, qty 10."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	29-Nov-07	29818.69	=""	="sikorsky aust"	27-Nov-07 04:29 PM	
-="CN48813"	"Repair of Blackhawk LH Stabilator"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	05-Sep-07	12-Sep-07	29254.36	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:30 PM	
-="CN48832"	"A23 AIRCRAFT - REPAIRS TO STABILIZER, HORIZONTAL"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	26006.57	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:11 AM	
-="CN48833"	"A23 AIRCRAFT - REPAIRS TO STABILIZER, HORIZONTAL"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	25006.58	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:16 AM	
-="CN48843"	"Contractors C"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Oct-07	31-Jan-08	30000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 09:55 AM	
-="CN48844"	"ANZSOG Executive Fellows Program 2007"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	25-Oct-07	02-Nov-07	24530.00	=""	="AUST & NEW Z/LAND SCHOOL OF GOV"	28-Nov-07 09:55 AM	
-="CN48848"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Audio and visual presentation and composing equipment"	24-Oct-07	31-Dec-07	29931.51	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	28-Nov-07 09:56 AM	
-="CN48854"	"Executive Fellows Programme 07 - Connell"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	19-Oct-07	30-Jun-08	24530.00	="Unknown"	="AUST & NEW Z/LAND SCHOOL OF GOV"	28-Nov-07 09:56 AM	
-="CN48855"	"Leasing SES vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	19-Oct-07	19-Oct-07	21171.99	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:57 AM	
-="CN48857"	"EDDPL76 Employer Reference Group"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	06-Aug-08	30000.00	=""	="ADVANCE EMPLOYMENT INCORPORATED"	28-Nov-07 09:57 AM	
-="CN48858"	"EDDPL95 Training2work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="ESSENTIAL PERSONNEL"	28-Nov-07 09:57 AM	
-="CN48859"	"EDDPL43 - Centracare Baking Project"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	14-Mar-08	25340.00	=""	="CENTACARE EMPLOYMENT"	28-Nov-07 09:57 AM	
-="CN48860"	"Construction Pathways EDDPL 139"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	06-Jun-08	30000.00	=""	="ASPIRE EMPLOYMENT"	28-Nov-07 09:57 AM	
-="CN48861"	"Blacktown Emerging Communities EDDPL158"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	11-Jan-08	30000.00	=""	="THE SALVATION ARMY"	28-Nov-07 09:57 AM	
-="CN48866"	"EDDPL39 Job Carving in the Health System"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	29-Oct-07	27-Jun-08	29905.00	=""	="BARKUMA INCORPORATED"	28-Nov-07 09:58 AM	
-="CN48868"	"recruitment services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Oct-07	25-Mar-08	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	28-Nov-07 09:58 AM	
-="CN48870"	"GEERS IP service fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Oct-07	26-Oct-07	27600.00	=""	="OFFERMANS PPB"	28-Nov-07 09:58 AM	
-="CN48872"	"Online Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Educational facilities"	19-Oct-07	30-Jun-08	29480.00	=""	="INFRA CORPORATION PTY LTD"	28-Nov-07 09:58 AM	
-="CN48874"	"EDDPL41 Jobs for People with Disability"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	13-Jun-08	30000.00	=""	="STEPS DISABILITY QLD INC"	28-Nov-07 09:59 AM	
-="CN48876"	"Training Workers in Building & Cons 116"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	14-Dec-07	26782.00	=""	="BUSINESS & EMPLOYMENT"	28-Nov-07 09:59 AM	
-="CN48882"	"Data Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	30-Jun-08	22340.12	="TBA"	="TELSTRA (VIC)"	28-Nov-07 09:59 AM	
-="CN48884"	"OPEN Manuafacturing Broadmeadows-125"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:00 AM	
-="CN48885"	"Teleservices Contact Centre Project-130"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:00 AM	
-="CN48886"	"Full-Time Job Sharing (EDDPL-134)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	28500.00	=""	="KARINGAL INC"	28-Nov-07 10:00 AM	
-="CN48887"	"Sign On Employment Project - 145"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-May-08	30000.00	=""	="DEAF CHILDREN AUSTRALIA"	28-Nov-07 10:00 AM	
-="CN48895"	"Mountains to the Sea EDDPL - 156"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	06-Jun-08	27500.00	=""	="WORKABILITY"	28-Nov-07 10:01 AM	
-="CN48896"	"SECONDMENT OF NE GRAY FROM CENTRELINK"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	31-Dec-07	25000.00	=""	="CENTRELINK - CPM"	28-Nov-07 10:01 AM	
-="CN48904"	"EDDDPL97 Grocery Pre-Post Program"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="DIRECT RECRUITMENT PTY LTD"	28-Nov-07 10:02 AM	
-="CN48910"	"IT  MAINFRAME EQUIPMENT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	19-Nov-07	30-Jun-08	25472.76	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:02 AM	
-="CN48911"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	16-Nov-07	30-Nov-07	29723.10	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:02 AM	
-="CN48915"	"EDDPL 50 - SEDS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Nov-07	06-Jun-08	30000.00	="DEWR DG 16 2007/08"	="SYDNEY EMPLOYMENT DEVELOPMENT SERVI"	28-Nov-07 10:03 AM	
-="CN48924"	"Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	20000.00	="000000"	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:04 AM	
-="CN48935"	"Corporate Temporary Employees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	31-Dec-07	23608.73	=""	="GREEN & GREEN GROUP"	28-Nov-07 10:05 AM	
-="CN48936"	"purchase digital cameras"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	29-Dec-07	20200.00	=""	="TED'S CAMERA STORES PTY LTD"	28-Nov-07 10:05 AM	
-="CN48938"	"Temporary Services APS6-Corporate"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	07-Nov-07	04-Feb-08	25000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 10:05 AM	
-="CN48951"	"DEWR contribution to Youth in Focus survey"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	01-Jul-08	22000.00	=""	="DEPARTMENT OF FAMILY AND COMMUNITY"	28-Nov-07 10:06 AM	
-="CN48952"	"MAIS27 Helping Hand Aged Care Workforce"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	31-May-08	30000.00	="DEWR MAIS 27 2007/08"	="HELPING HAND AGED CARE INC."	28-Nov-07 10:06 AM	
-="CN48961"	"CARE Upskill for Retail EDDPL 119"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	12-Nov-07	06-Jun-08	29690.00	="DEWR DG 11 2007/08"	="COUNSELLING AND RETRAINING FOR"	28-Nov-07 10:07 AM	
-="CN48962"	"Telecommunications"	="Department of Employment and Workplace Relations"	28-Nov-07	="Telecommunications media services"	09-Nov-07	30-Jun-08	24072.00	=""	="TELSTRA (VIC)"	28-Nov-07 10:07 AM	
-="CN48968"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	26458.55	=""	="LAVAN LEGAL"	28-Nov-07 10:08 AM	
-="CN48969"	"Hervey Bay Transport/Mill Transit-104"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:08 AM	
-="CN48971"	"Capital works"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	19-Sep-07	19-Sep-07	26062.57	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:08 AM	
-="CN48973"	"Contractor Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Nov-07	20000.00	=""	="HUDSON GLOBAL RESOURCES"	28-Nov-07 10:09 AM	
-="CN48975"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	19-Sep-07	04-Nov-07	22000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:09 AM	
-="CN48978"	"DATA STOREAGE SERVICES - AUXILARIES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Power sources"	18-Sep-07	30-Jun-08	23584.00	=""	="HITACHI DATA SYSTEMS"	28-Nov-07 10:09 AM	
-="CN48979"	"In-tray assessment  for 2008 Grad Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	21-Sep-07	24453.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:09 AM	
-="CN48981"	"airfares- charters NT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	17-Sep-07	30-Jun-08	20000.00	="DEWR QFQ 2007/SEP"	="KATHERINE AVIATION PTY LTD"	28-Nov-07 10:09 AM	
-="CN48982"	"Develop training package for CEB's"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	30-Nov-07	30000.00	=""	="PROFESSOR ROBYN PENMAN"	28-Nov-07 10:09 AM	
-="CN48983"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	17-Sep-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:10 AM	
-="CN48986"	"EA ROLE TO ISPG GROUP MANAGER"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Sep-07	31-Dec-07	25000.00	="GREEN & GREEN"	="THE GREEN & GREEN GROUP"	28-Nov-07 10:10 AM	
-="CN48988"	"IT Communications  Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	25-Sep-07	30-Jun-08	23068.45	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:10 AM	
-="CN49014"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-08	22500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	28-Nov-07 10:13 AM	
-="CN49016"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	
-="CN49017"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	
-="CN49018"	"IT Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	14-Sep-07	30-Jun-08	22000.00	=""	="OBJECT CONSULTING PTY LTD"	28-Nov-07 10:13 AM	
-="CN49022"	"Sub-Contractor Management Pack"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	12-Oct-07	28550.00	=""	="NEXT STAGE CONSULTING PTY LTD"	28-Nov-07 10:13 AM	
-="CN49025"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	30000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	
-="CN49031"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	10-Oct-07	30-Jun-08	20000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	28-Nov-07 10:14 AM	
-="CN49040"	"EDDPL21 - Eastwork Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="EASTWORK EMPLOYMENT"	28-Nov-07 10:15 AM	
-="CN49041"	"EDDPL54 - Pathway to the Transport"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	28-Dec-07	29100.00	=""	="SUREWAY CONSULT PTY LTD"	28-Nov-07 10:15 AM	
-="CN49042"	"EDDPL4 - Mercy Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	31-Mar-08	29850.00	=""	="MERCY EMPLOYMENT"	28-Nov-07 10:16 AM	
-="CN49043"	"EDDPL17 - Basic Welding Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	21-Dec-07	20150.00	=""	="BEST COMMUNITY DEVELOPMENT"	28-Nov-07 10:16 AM	
-="CN49044"	"EDDPL24 - Training into Hospitals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="SARINA RUSSO JOB ACCESS"	28-Nov-07 10:16 AM	
-="CN49047"	"Mildura Helath & Community Services-115"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="SUNRAYSIA INSTITUTE OF TAFE"	28-Nov-07 10:16 AM	
-="CN49050"	"Max Employment Aged Care Training-152"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	24220.00	=""	="MAX EMPLOYMENT"	28-Nov-07 10:16 AM	
-="CN49051"	"Pathways for disadvantaged JS's-124"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	09-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:16 AM	
-="CN49052"	"Hire Ability (EDDPL-112)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="INNERSKILL"	28-Nov-07 10:17 AM	
-="CN49053"	"EDDPL60 Pathway to Food Manufacturing"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49054"	"EDDPL67 Pathway to mining industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49055"	"EDDPL69 Jobs for your Mob"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49056"	"EDDPl99 Mining for Your Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	01-May-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49058"	"EDDPL81 Health and Community Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	29111.50	=""	="ST LAURENCE"	28-Nov-07 10:17 AM	
-="CN49060"	"Max Employment Training/Youth Work-153"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	24220.00	=""	="MAX EMPLOYMENT"	28-Nov-07 10:17 AM	
-="CN49062"	"EDDPL96 - Discretionary Grants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	31-Mar-08	24330.00	=""	="JOB CENTRE AUSTRALIA LIMITED"	28-Nov-07 10:17 AM	
-="CN49068"	"IT5 CAS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	27750.00	=""	="DILMA CONSULTING PTY LTD"	28-Nov-07 10:18 AM	
-="CN49078"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	02-Oct-07	30-Jun-08	24946.75	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	
-="CN49081"	"Management Consultancy Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	05-Oct-07	30-Oct-07	23859.00	=""	="ACCESS ECONOMICS PTY LTD"	28-Nov-07 10:19 AM	
-="CN49083"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	05-Oct-07	30-Jun-08	23057.45	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:20 AM	
-="CN49087"	"Training EDDPL 133"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	04-Oct-07	13-Jun-08	29550.00	=""	="CENTRAL VICTORIAN GROUP TRAINING"	28-Nov-07 10:20 AM	
-="CN49088"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	04-Oct-07	30-Sep-08	30000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:20 AM	
-="CN49103"	"Transportation of x-rays to owner upon expiry of lease."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Tools and General Machinery"	01-Oct-07	30-Nov-07	21000.10	=""	="Rapiscan Systems Australia"	28-Nov-07 11:14 AM	
-="CN49108"	"Translation of scientific papers - Japanese to English"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	20000.00	=""	="Linguaset Translations"	28-Nov-07 11:15 AM	
-="CN49113"	"To provide assistance with Web content administration"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Insurance and retirement services"	21-Nov-07	15-Feb-08	25000.00	=""	="GMT People Canberra Pty Ltd"	28-Nov-07 11:16 AM	
-="CN49118"	"2007-08 Summer Scholarship Students"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	19-Nov-07	31-Mar-08	26950.00	=""	="Australian National University"	28-Nov-07 11:16 AM	
-="CN49119"	"Draft 2 Report un-cooked prawns"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	20-Nov-07	30-Jun-08	22000.00	=""	="Minter Ellison"	28-Nov-07 11:16 AM	
-="CN49130"	"Conference calls for Sep 07"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Telecommunications media services"	01-Sep-07	30-Sep-07	26758.81	=""	="Genesys Conferencing"	28-Nov-07 11:18 AM	
-="CN49140"	"Temporary Contractor Services"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	22-Nov-07	30-Jun-08	22000.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	28-Nov-07 11:19 AM	
-="CN49146"	"FORM PRINTED AD 196 TAG - DO NOT USE, RED, 120MM W X 60 MM LG"	="Defence Materiel Organisation"	28-Nov-07	="Professional associations"	19-Nov-07	11-Jan-08	23092.30	=""	="ROY E MAYNE & SON"	28-Nov-07 11:33 AM	
-="CN49167"	"Lease of accommodation in Darwin"	="Australian Federal Police"	28-Nov-07	="Lease and rental of property or building"	01-Dec-07	30-Nov-08	28176.00	=""	="HomeHunters Darwin"	28-Nov-07 02:43 PM	
-="CN49175"	"Cable Assembly's."	="Defence Materiel Organisation"	28-Nov-07	="Electrical cable and accessories"	28-Nov-07	28-Jan-08	25966.60	=""	="CMI Electrical Products"	28-Nov-07 04:01 PM	
-="CN49182"	"ICON Annual Levy 07/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	23-Oct-07	25-Oct-07	22000.00	=""	="Department of Finance & Administrat"	28-Nov-07 05:46 PM	
-="CN49183"	"Software Licence, Support"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Financial and Insurance Services"	25-Oct-07	21-Nov-07	20768.00	=""	="Gesix Software Pty Ltd"	28-Nov-07 05:46 PM	
-="CN49191"	"IT Services Re: E-Trial"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	11-Sep-07	31-Dec-07	29073.00	=""	="Potter Farrelly & Associates"	28-Nov-07 05:47 PM	
-="CN49197"	"Subscriptions"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	08-Nov-07	01-Dec-08	22159.17	=""	="CCH Australia Limited"	28-Nov-07 05:47 PM	
-="CN49203"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	29-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	07-Dec-07	23579.60	=""	="Symbion Pharmacy Services"	29-Nov-07 08:36 AM	
-="CN49204"	"WIRING HARNESS NSN 66-140-7285"	="Defence Materiel Organisation"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	18-Dec-07	29337.22	=""	="GENERAL DYNAMICS LAND SYSTEMS AUST P/L"	29-Nov-07 08:40 AM	
-="CN49208-A1"	"VARIOUS SPILL CONTAINMENT EQUIPMENT"	="Defence Materiel Organisation"	29-Nov-07	="Spill containment supports"	28-Nov-07	19-Dec-07	26145.35	=""	="GLOBAL SPILL CONTROL PTY LTD"	29-Nov-07 10:19 AM	
-="CN49231"	"For the procurement of graphic design, proofreading and printing services for the production of the Criteria for the Clinical Use of Intravenous Immunoglobulin in Australia"	="National Blood Authority"	29-Nov-07	="Printing"	10-Oct-07	10-Oct-07	25000.00	=""	="Wilton Hanford Hanover Pty Ltd"	29-Nov-07 01:43 PM	
-="CN49263"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	26120.28	=""	="LANDROVER"	29-Nov-07 04:17 PM	
-="CN49300"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	22938.90	=""	="VERIZON"	30-Nov-07 12:39 PM	
-="CN49313"	"Recruitment Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Dec-07	22000.00	="FIN 05CRP004-02"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:40 PM	
-="CN49332"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	26835.95	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:42 PM	
-="CN49349"	"Training & Education Costs"	="Department of Finance and Administration"	30-Nov-07	="Education and Training Services"	23-Nov-07	21-Dec-07	26100.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	30-Nov-07 12:44 PM	
-="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	
-="CN49359"	"Business Advisory Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	21-Dec-07	24320.00	="N/A"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	30-Nov-07 12:45 PM	
-="CN49361"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Dec-07	22000.00	="rft"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	
-="CN47645"	" Musical Instruments "	="Defence Materiel Organisation"	30-Nov-07	="Musical Instruments and parts and accessories"	02-Nov-07	06-Feb-08	20932.09	=""	="Pro Audio Supplies Pty Ltd"	30-Nov-07 12:58 PM	
-="CN49374"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	21367.50	=""	="Stryker Australia Pty Ltd"	30-Nov-07 03:03 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48145"	"Writing Services - Recruitment Advertisements till 30 June 2008."	="Australian Taxation Office"	26-Nov-07	="Non technical writing"	21-Nov-07	30-Jun-08	20000.00	=""	="Mcleod Marketing and Management Pty Ltd"	26-Nov-07 09:28 AM	

+="CN48163-A1"	"Analysis of Travel Costs"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	30-Jun-08	21177.13	="DCON/05/53"	="ACUMEN ALLIANCE"	26-Nov-07 11:32 AM	

+="CN48170-A1"	"Brandis Comcar Account"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Transportation and Storage and Mail Services"	01-Feb-07	03-Dec-07	27205.59	="ATM 07/625"	="COMCAR (DOFA)"	26-Nov-07 11:33 AM	

+="CN48180"	"Griffiths Skills Training Centre: Backing Indigenous Ability Funding Wagga and Bourke"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/470"	="Griffith Skills Training Centre Inc"	26-Nov-07 11:34 AM	

+="CN48183"	"Centre for Appropriate Technology - Backing Indigenous Ability Funding Mt Isa"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	24300.00	="ATM07/475"	="Centre for Appropriate Technology"	26-Nov-07 11:35 AM	

+="CN48188"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	26-Nov-07	="Environmental security control services"	22-Nov-07	28-Dec-07	20026.05	=""	="Honeywell Limited"	26-Nov-07 11:44 AM	

+="CN48194"	"Provision  of  Audit services"	="Department of Parliamentary Services"	26-Nov-07	="Audit services"	20-Nov-07	30-Nov-07	22000.00	=""	="KPMG"	26-Nov-07 11:45 AM	

+="CN48195"	"Provision  of  Temporary contract labour Contract (DPS041980"	="Department of Parliamentary Services"	26-Nov-07	="Temporary manual labour"	19-Nov-07	23-Dec-07	22000.00	=""	="Jewell & Buckley P/L"	26-Nov-07 11:45 AM	

+="CN48200"	"Supply of  Computer Server"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	14-Nov-07	31-Dec-07	28600.00	=""	="Frontline Systems Australia Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48203"	"Provision of  Purchase of Sissor Lift"	="Department of Parliamentary Services"	26-Nov-07	="Scissor lift"	13-Nov-07	30-Nov-07	25190.00	=""	="Force Access Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48206"	"Provision of Professional Recruitment Services"	="Department of Parliamentary Services"	26-Nov-07	="Temporary personnel services"	13-Nov-07	30-Nov-07	21920.80	=""	="Kowalski Recruitment P/L"	26-Nov-07 11:47 AM	

+="CN48208"	"Services of Electro Group Trainees (Contract DPS04030)"	="Department of Parliamentary Services"	26-Nov-07	="Contractors all risks insurance"	12-Nov-07	30-Nov-07	22000.00	=""	="The Electrotechnology Industry"	26-Nov-07 11:47 AM	

+="CN48213"	"Personal Efficency Program course 8 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	15-Nov-07	05-Feb-08	26400.00	=""	="D'ARCY CONSULTING GROUP PTY"	26-Nov-07 11:56 AM	

+="CN48215"	"Payment Summaries"	="Australian Taxation Office"	26-Nov-07	="Financial and Insurance Services"	19-Nov-07	30-Nov-07	20815.91	=""	="CITEC"	26-Nov-07 11:56 AM	

+="CN48221"	"Seibel Essentials course 6 attendees"	="Australian Taxation Office"	26-Nov-07	="Education and Training Services"	14-Nov-07	19-Nov-07	25465.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 11:57 AM	

+="CN48234"	"Enhancement to DM to Support Jaws & Dragon"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	06-Aug-07	30-Jun-08	28049.74	=""	="80-20 SOFTWARE PTY LTD"	26-Nov-07 12:20 PM	

+="CN48249"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	22614.90	="ITC"	="AURORA INVESTMENTS & SYSTEMS PTY LT"	26-Nov-07 12:22 PM	

+="CN48254"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	10-Jul-07	30-Jun-08	20250.80	=""	="TELSTRA (VIC)"	26-Nov-07 12:22 PM	

+="CN48272"	"Legal Professional Fees for 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	04-Sep-07	30-Jun-08	20000.00	=""	="CHURCH AND GRACE"	26-Nov-07 12:25 PM	

+="CN48277"	"EMS-Development and Implementation"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	05-Sep-07	05-Sep-07	23601.60	=""	="UNITED GROUP SERVICES - BUSINESS AC"	26-Nov-07 12:25 PM	

+="CN48282"	"Staff rental property for National  Emergency"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	06-Sep-07	05-Sep-08	21280.00	="DEWR RFQ 2007/Sep"	="ELDERS TERRITORY REAL ESTATE"	26-Nov-07 12:26 PM	

+="CN48292"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	10-Sep-07	30-Jun-08	21659.00	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:27 PM	

+="CN48302"	"IT Equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	23-Aug-07	30-Jun-08	21401.05	=""	="DATAFLEX PTY LTD"	26-Nov-07 12:28 PM	

+="CN48305"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	30-Aug-07	30-Jun-08	20585.08	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:28 PM	

+="CN48324"	"Office equipment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office and desk accessories"	11-Aug-06	30-Jun-07	20000.00	=""	="BENTLEY HOUSE - COMMERCIAL INTERIOR"	26-Nov-07 12:31 PM	

+="CN48342"	"Recruitment Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	03-Aug-06	30-Jun-07	22970.33	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:33 PM	

+="CN48345"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	30-Jun-07	30-Jun-07	29578.38	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48359"	"Bus Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	20-Jul-06	30-Jun-07	22579.60	=""	="DEANES BUSLINES PTY LTD"	26-Nov-07 12:35 PM	

+="CN48367"	"Navigation tools"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transportation components and systems"	05-Jun-07	30-Jun-07	21472.00	=""	="HYPERION SOLUTIONS AUSTRALIA"	26-Nov-07 12:36 PM	

+="CN48371"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	15-Jun-07	30-Jun-07	20064.00	=""	="SELECT APPOINTMENTS"	26-Nov-07 12:37 PM	

+="CN48376"	"Auslan for employment"	="Department of Employment and Workplace Relations"	26-Nov-07	="Paper products"	21-Jun-07	30-Jun-07	27700.00	=""	="WORKFOCUS AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	

+="CN48383"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	28-Jun-07	30-Jun-07	20000.00	=""	="MINTER ELLISON"	26-Nov-07 12:38 PM	

+="CN48386"	"Extension of Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	29-Jun-07	30-Jun-07	27500.00	=""	="COMMERCE QUEENSLAND"	26-Nov-07 12:38 PM	

+="CN48397"	"General Audit Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accounting and auditing"	03-Jan-07	30-Jun-10	26160.00	=""	="ACUMEN ALLIANCE HOLDINGS PTY LTD"	26-Nov-07 12:40 PM	

+="CN48404"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	04-May-07	30-Jun-07	29000.00	=""	="GREEN & GREEN GROUP"	26-Nov-07 12:41 PM	

+="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	

+="CN48413"	"WPA amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Marketing and distribution"	01-Jun-07	30-Jun-07	22500.00	=""	="FOX BADGER FERRET PTY LTD"	26-Nov-07 12:42 PM	

+="CN48423-A1"	"In-house delivery of 2 workshops of Managing Dispersed teams by international expert."	="Department of Veterans' Affairs"	26-Nov-07	="Human resources services"	20-Sep-07	28-Sep-07	25555.00	=""	="Performance Improvement Conferences & Seminars Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48438"	"CPO016466 - CCTV Relocation"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	11-May-08	29768.00	=""	="Chubb Electronic Security"	26-Nov-07 02:24 PM	

+="CN48450"	"COURSE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	22-Nov-07	27720.00	=""	="TERADATA AUSTRALIA PTY LTD"	26-Nov-07 02:42 PM	

+="CN48470"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	21507.75	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	

+="CN48502"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	25795.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	26-Nov-07 03:00 PM	

+="CN48513"	"Provision of Educational Services"	="Medicare Australia"	26-Nov-07	="Vocational training"	25-Oct-07	25-Oct-07	23760.00	=""	="PLANPOWER PTY LTD"	26-Nov-07 03:02 PM	

+="CN48514"	"Provision of Mail House Services"	="Medicare Australia"	26-Nov-07	="Paper materials"	25-Oct-07	25-Oct-07	23100.00	=""	="QM Technologies Pty Limited"	26-Nov-07 03:02 PM	

+="CN48529"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	03-Oct-07	03-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:03 PM	

+="CN48538"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Doors and windows and glass"	05-Oct-07	05-Oct-07	21386.20	=""	="Hufcor Pty Ltd"	26-Nov-07 03:04 PM	

+="CN48540"	"Supply of Envelopes"	="Medicare Australia"	26-Nov-07	="Paper products"	08-Oct-07	08-Oct-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	26-Nov-07 03:04 PM	

+="CN48542"	"Provision of Storage/File Destruction services"	="Medicare Australia"	26-Nov-07	="Storage"	09-Oct-07	30-Jun-08	23324.78	=""	="RECALL TOTAL INFORMATION"	26-Nov-07 03:04 PM	

+="CN48549"	"WA ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	28487.64	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48557"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	03-Oct-07	03-Oct-07	28417.31	=""	="SKILLED GROUP LIMITED"	26-Nov-07 03:06 PM	

+="CN48564"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	12-Oct-07	12-Oct-07	20152.00	=""	="LINDA VAN TINTEREN"	26-Nov-07 03:07 PM	

+="CN48572"	"Provision of Archiving Equipment"	="Medicare Australia"	26-Nov-07	="Paper products"	15-Oct-07	01-Dec-09	27500.00	=""	="ROLLS FILING SYSTEMS"	26-Nov-07 03:08 PM	

+="CN48577"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	10-Oct-07	21692.00	=""	="DIVERSITI PTY LTD"	26-Nov-07 03:09 PM	

+="CN48579"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Computer Equipment and Accessories"	11-Oct-07	11-Oct-07	20874.09	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:09 PM	

+="CN48586"	"Provision of Advertising Services"	="Medicare Australia"	26-Nov-07	="Advertising"	11-Oct-07	11-Oct-07	22286.00	=""	="CRE8IVE AUSTRALASIA PTY LTD"	26-Nov-07 03:10 PM	

+="CN48620"	"Medeical Consumables For ADF"	="Defence Materiel Organisation"	27-Nov-07	="Medical Equipment and Accessories and Supplies"	20-Nov-07	01-Dec-07	25240.60	=""	="Adec Australia"	27-Nov-07 06:44 AM	

+="CN48668"	"Promotional Items"	="Australian Crime Commission"	27-Nov-07	="Promotional merchandise"	08-Nov-07	08-Nov-07	28254.60	=""	="SK Global Enterprises"	27-Nov-07 10:57 AM	

+="CN48697"	"LAFIA participation DOTARS SES Officer"	="Department of Transport and Regional Services"	27-Nov-07	="Specialised educational services"	09-Sep-07	23-Sep-07	26704.70	="TRS07/375"	="AUSTRALIAN PUBLIC SERVICE"	27-Nov-07 11:30 AM	

+="CN48706"	"Legal Services Expenditure LG6686"	="Department of Transport and Regional Services"	27-Nov-07	="Legal services"	22-Nov-07	30-Jun-09	27500.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	27-Nov-07 11:32 AM	

+="CN48708"	"APS 6.4 contract staff for AST team"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	21-Nov-07	11-Jan-08	23300.20	="TRS05/251"	="Allstaff Australia"	27-Nov-07 11:32 AM	

+="CN48709"	"Provision of consultancy services for the Departme nt's review of urban congestion and finalisa"	="Department of Transport and Regional Services"	27-Nov-07	="Public administration and finance services"	23-Nov-07	30-Nov-07	20350.00	=""	="Meyrick Consulting Group"	27-Nov-07 11:32 AM	

+="CN48752"	"2006-07 Comcare Premium adjustment"	="Australian Crime Commission"	27-Nov-07	="Financial and Insurance Services"	01-Jul-07	30-Jun-08	23612.00	=""	="Comcare Australia"	27-Nov-07 02:04 PM	

+="CN48760"	"mailbox migration software"	="Australian Crime Commission"	27-Nov-07	="Software"	20-Nov-07	20-Nov-07	27324.00	=""	="Quest Software"	27-Nov-07 02:36 PM	

+="CN48757"	" NSN 3040-00-164-5687  PURCHASE OF BELL CRANK  EX GST "	="Defence Materiel Organisation"	27-Nov-07	="Military transport aircraft"	25-Jun-07	09-Aug-07	21743.52	=""	="Military Aviation Spares Pty Ltd"	27-Nov-07 02:39 PM	

+="CN48777"	"Precision Infrared Radiometers Model PIR Precision Spectral Pyranometers Mode PSP"	="Bureau of Meteorology"	27-Nov-07	="Measuring and observing and testing instruments"	13-Nov-07	30-Nov-07	20153.45	=""	="THE EPPLEY LABORATORY INC."	27-Nov-07 03:04 PM	

+="CN48779"	"Telecommunications Services"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	14-Nov-07	30-Nov-07	28802.21	=""	="Stratos"	27-Nov-07 03:05 PM	

+="CN48785"	"Upgrade SEAtide Software"	="Bureau of Meteorology"	27-Nov-07	="Computer services"	16-Nov-07	30-Nov-07	22000.00	=""	="Systems Engineering Australia Pty L"	27-Nov-07 03:05 PM	

+="CN48796"	"Bulk order for Health related checks"	="Australian Crime Commission"	27-Nov-07	="Healthcare Services"	23-Nov-07	23-Nov-07	20000.00	=""	="Health for Industry - VIC"	27-Nov-07 03:22 PM	

+="CN48799"	"2nd quarter account management fees for CSS/PSS and PPSap for 2007-08 F/Y"	="Australian Crime Commission"	27-Nov-07	="Government accounting services"	01-Oct-07	31-Dec-07	24149.75	=""	="Comsuper (ACT)"	27-Nov-07 03:33 PM	

+="CN48802"	" CASE FIELD DRESSING "	="Defence Materiel Organisation"	27-Nov-07	="Casing patches"	12-Nov-07	07-Jan-08	21450.00	="CC157I"	="ANCAMARABA PTY LTD"	27-Nov-07 03:51 PM	

+="CN48809"	"Course fees and panel transaction fees"	="Australian Crime Commission"	27-Nov-07	="Development"	23-Nov-07	30-Jun-08	30000.00	=""	="Australian Public Service Commission"	27-Nov-07 04:14 PM	

+="CN48814"	"a/c spares:1615-01-089-0441, rod end, qty 10."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	29-Nov-07	29818.69	=""	="sikorsky aust"	27-Nov-07 04:29 PM	

+="CN48813"	"Repair of Blackhawk LH Stabilator"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	05-Sep-07	12-Sep-07	29254.36	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 04:30 PM	

+="CN48832"	"A23 AIRCRAFT - REPAIRS TO STABILIZER, HORIZONTAL"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	26006.57	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:11 AM	

+="CN48833"	"A23 AIRCRAFT - REPAIRS TO STABILIZER, HORIZONTAL"	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	27-Nov-07	28-Jun-08	25006.58	=""	="AIRFLITE PTY LTD"	28-Nov-07 08:16 AM	

+="CN48843"	"Contractors C"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Oct-07	31-Jan-08	30000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 09:55 AM	

+="CN48844"	"ANZSOG Executive Fellows Program 2007"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	25-Oct-07	02-Nov-07	24530.00	=""	="AUST & NEW Z/LAND SCHOOL OF GOV"	28-Nov-07 09:55 AM	

+="CN48848"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Audio and visual presentation and composing equipment"	24-Oct-07	31-Dec-07	29931.51	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	28-Nov-07 09:56 AM	

+="CN48854"	"Executive Fellows Programme 07 - Connell"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	19-Oct-07	30-Jun-08	24530.00	="Unknown"	="AUST & NEW Z/LAND SCHOOL OF GOV"	28-Nov-07 09:56 AM	

+="CN48855"	"Leasing SES vehicles"	="Department of Employment and Workplace Relations"	28-Nov-07	="Motor vehicles"	19-Oct-07	19-Oct-07	21171.99	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:57 AM	

+="CN48857"	"EDDPL76 Employer Reference Group"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	06-Aug-08	30000.00	=""	="ADVANCE EMPLOYMENT INCORPORATED"	28-Nov-07 09:57 AM	

+="CN48858"	"EDDPL95 Training2work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="ESSENTIAL PERSONNEL"	28-Nov-07 09:57 AM	

+="CN48859"	"EDDPL43 - Centracare Baking Project"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	14-Mar-08	25340.00	=""	="CENTACARE EMPLOYMENT"	28-Nov-07 09:57 AM	

+="CN48860"	"Construction Pathways EDDPL 139"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	06-Jun-08	30000.00	=""	="ASPIRE EMPLOYMENT"	28-Nov-07 09:57 AM	

+="CN48861"	"Blacktown Emerging Communities EDDPL158"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	11-Jan-08	30000.00	=""	="THE SALVATION ARMY"	28-Nov-07 09:57 AM	

+="CN48866"	"EDDPL39 Job Carving in the Health System"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	29-Oct-07	27-Jun-08	29905.00	=""	="BARKUMA INCORPORATED"	28-Nov-07 09:58 AM	

+="CN48868"	"recruitment services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Oct-07	25-Mar-08	20000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	28-Nov-07 09:58 AM	

+="CN48870"	"GEERS IP service fees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Oct-07	26-Oct-07	27600.00	=""	="OFFERMANS PPB"	28-Nov-07 09:58 AM	

+="CN48872"	"Online Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Educational facilities"	19-Oct-07	30-Jun-08	29480.00	=""	="INFRA CORPORATION PTY LTD"	28-Nov-07 09:58 AM	

+="CN48874"	"EDDPL41 Jobs for People with Disability"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	13-Jun-08	30000.00	=""	="STEPS DISABILITY QLD INC"	28-Nov-07 09:59 AM	

+="CN48876"	"Training Workers in Building & Cons 116"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	14-Dec-07	26782.00	=""	="BUSINESS & EMPLOYMENT"	28-Nov-07 09:59 AM	

+="CN48882"	"Data Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	30-Jun-08	22340.12	="TBA"	="TELSTRA (VIC)"	28-Nov-07 09:59 AM	

+="CN48884"	"OPEN Manuafacturing Broadmeadows-125"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:00 AM	

+="CN48885"	"Teleservices Contact Centre Project-130"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:00 AM	

+="CN48886"	"Full-Time Job Sharing (EDDPL-134)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	28500.00	=""	="KARINGAL INC"	28-Nov-07 10:00 AM	

+="CN48887"	"Sign On Employment Project - 145"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-May-08	30000.00	=""	="DEAF CHILDREN AUSTRALIA"	28-Nov-07 10:00 AM	

+="CN48895"	"Mountains to the Sea EDDPL - 156"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	06-Jun-08	27500.00	=""	="WORKABILITY"	28-Nov-07 10:01 AM	

+="CN48896"	"SECONDMENT OF NE GRAY FROM CENTRELINK"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	17-Oct-07	31-Dec-07	25000.00	=""	="CENTRELINK - CPM"	28-Nov-07 10:01 AM	

+="CN48904"	"EDDDPL97 Grocery Pre-Post Program"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="DIRECT RECRUITMENT PTY LTD"	28-Nov-07 10:02 AM	

+="CN48910"	"IT  MAINFRAME EQUIPMENT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	19-Nov-07	30-Jun-08	25472.76	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:02 AM	

+="CN48911"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	16-Nov-07	30-Nov-07	29723.10	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:02 AM	

+="CN48915"	"EDDPL 50 - SEDS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Nov-07	06-Jun-08	30000.00	="DEWR DG 16 2007/08"	="SYDNEY EMPLOYMENT DEVELOPMENT SERVI"	28-Nov-07 10:03 AM	

+="CN48924"	"Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	20000.00	="000000"	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:04 AM	

+="CN48935"	"Corporate Temporary Employees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	31-Dec-07	23608.73	=""	="GREEN & GREEN GROUP"	28-Nov-07 10:05 AM	

+="CN48936"	"purchase digital cameras"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Nov-07	29-Dec-07	20200.00	=""	="TED'S CAMERA STORES PTY LTD"	28-Nov-07 10:05 AM	

+="CN48938"	"Temporary Services APS6-Corporate"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	07-Nov-07	04-Feb-08	25000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 10:05 AM	

+="CN48951"	"DEWR contribution to Youth in Focus survey"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	01-Jul-08	22000.00	=""	="DEPARTMENT OF FAMILY AND COMMUNITY"	28-Nov-07 10:06 AM	

+="CN48952"	"MAIS27 Helping Hand Aged Care Workforce"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	31-May-08	30000.00	="DEWR MAIS 27 2007/08"	="HELPING HAND AGED CARE INC."	28-Nov-07 10:06 AM	

+="CN48961"	"CARE Upskill for Retail EDDPL 119"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	12-Nov-07	06-Jun-08	29690.00	="DEWR DG 11 2007/08"	="COUNSELLING AND RETRAINING FOR"	28-Nov-07 10:07 AM	

+="CN48962"	"Telecommunications"	="Department of Employment and Workplace Relations"	28-Nov-07	="Telecommunications media services"	09-Nov-07	30-Jun-08	24072.00	=""	="TELSTRA (VIC)"	28-Nov-07 10:07 AM	

+="CN48968"	"Legal Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	08-Nov-07	08-Nov-07	26458.55	=""	="LAVAN LEGAL"	28-Nov-07 10:08 AM	

+="CN48969"	"Hervey Bay Transport/Mill Transit-104"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:08 AM	

+="CN48971"	"Capital works"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	19-Sep-07	19-Sep-07	26062.57	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:08 AM	

+="CN48973"	"Contractor Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Nov-07	20000.00	=""	="HUDSON GLOBAL RESOURCES"	28-Nov-07 10:09 AM	

+="CN48975"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	19-Sep-07	04-Nov-07	22000.00	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:09 AM	

+="CN48978"	"DATA STOREAGE SERVICES - AUXILARIES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Power sources"	18-Sep-07	30-Jun-08	23584.00	=""	="HITACHI DATA SYSTEMS"	28-Nov-07 10:09 AM	

+="CN48979"	"In-tray assessment  for 2008 Grad Programme"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	21-Sep-07	24453.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:09 AM	

+="CN48981"	"airfares- charters NT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Travel facilitation"	17-Sep-07	30-Jun-08	20000.00	="DEWR QFQ 2007/SEP"	="KATHERINE AVIATION PTY LTD"	28-Nov-07 10:09 AM	

+="CN48982"	"Develop training package for CEB's"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	30-Nov-07	30000.00	=""	="PROFESSOR ROBYN PENMAN"	28-Nov-07 10:09 AM	

+="CN48983"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	17-Sep-07	30-Sep-08	20000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:10 AM	

+="CN48986"	"EA ROLE TO ISPG GROUP MANAGER"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Sep-07	31-Dec-07	25000.00	="GREEN & GREEN"	="THE GREEN & GREEN GROUP"	28-Nov-07 10:10 AM	

+="CN48988"	"IT Communications  Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	25-Sep-07	30-Jun-08	23068.45	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:10 AM	

+="CN49014"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-08	22500.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	28-Nov-07 10:13 AM	

+="CN49016"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	

+="CN49017"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	14-Sep-07	31-May-12	20000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:13 AM	

+="CN49018"	"IT Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Software"	14-Sep-07	30-Jun-08	22000.00	=""	="OBJECT CONSULTING PTY LTD"	28-Nov-07 10:13 AM	

+="CN49022"	"Sub-Contractor Management Pack"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	12-Oct-07	28550.00	=""	="NEXT STAGE CONSULTING PTY LTD"	28-Nov-07 10:13 AM	

+="CN49025"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	30000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	

+="CN49031"	"Relocation services - Corporate 2007/2008"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	10-Oct-07	30-Jun-08	20000.00	="DEWR RFT 2007/409"	="MOVERS & SHAKERS"	28-Nov-07 10:14 AM	

+="CN49040"	"EDDPL21 - Eastwork Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="EASTWORK EMPLOYMENT"	28-Nov-07 10:15 AM	

+="CN49041"	"EDDPL54 - Pathway to the Transport"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	28-Dec-07	29100.00	=""	="SUREWAY CONSULT PTY LTD"	28-Nov-07 10:15 AM	

+="CN49042"	"EDDPL4 - Mercy Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	31-Mar-08	29850.00	=""	="MERCY EMPLOYMENT"	28-Nov-07 10:16 AM	

+="CN49043"	"EDDPL17 - Basic Welding Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	21-Dec-07	20150.00	=""	="BEST COMMUNITY DEVELOPMENT"	28-Nov-07 10:16 AM	

+="CN49044"	"EDDPL24 - Training into Hospitals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="SARINA RUSSO JOB ACCESS"	28-Nov-07 10:16 AM	

+="CN49047"	"Mildura Helath & Community Services-115"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="SUNRAYSIA INSTITUTE OF TAFE"	28-Nov-07 10:16 AM	

+="CN49050"	"Max Employment Aged Care Training-152"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	24220.00	=""	="MAX EMPLOYMENT"	28-Nov-07 10:16 AM	

+="CN49051"	"Pathways for disadvantaged JS's-124"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	09-Jun-08	29942.00	=""	="CAMPBELL PAGE"	28-Nov-07 10:16 AM	

+="CN49052"	"Hire Ability (EDDPL-112)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="INNERSKILL"	28-Nov-07 10:17 AM	

+="CN49053"	"EDDPL60 Pathway to Food Manufacturing"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49054"	"EDDPL67 Pathway to mining industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49055"	"EDDPL69 Jobs for your Mob"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49056"	"EDDPl99 Mining for Your Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	01-May-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49058"	"EDDPL81 Health and Community Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	29111.50	=""	="ST LAURENCE"	28-Nov-07 10:17 AM	

+="CN49060"	"Max Employment Training/Youth Work-153"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	24220.00	=""	="MAX EMPLOYMENT"	28-Nov-07 10:17 AM	

+="CN49062"	"EDDPL96 - Discretionary Grants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	31-Mar-08	24330.00	=""	="JOB CENTRE AUSTRALIA LIMITED"	28-Nov-07 10:17 AM	

+="CN49068"	"IT5 CAS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	27750.00	=""	="DILMA CONSULTING PTY LTD"	28-Nov-07 10:18 AM	

+="CN49078"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	02-Oct-07	30-Jun-08	24946.75	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:19 AM	

+="CN49081"	"Management Consultancy Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	05-Oct-07	30-Oct-07	23859.00	=""	="ACCESS ECONOMICS PTY LTD"	28-Nov-07 10:19 AM	

+="CN49083"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	05-Oct-07	30-Jun-08	23057.45	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:20 AM	

+="CN49087"	"Training EDDPL 133"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	04-Oct-07	13-Jun-08	29550.00	=""	="CENTRAL VICTORIAN GROUP TRAINING"	28-Nov-07 10:20 AM	

+="CN49088"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	04-Oct-07	30-Sep-08	30000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:20 AM	

+="CN49103"	"Transportation of x-rays to owner upon expiry of lease."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Tools and General Machinery"	01-Oct-07	30-Nov-07	21000.10	=""	="Rapiscan Systems Australia"	28-Nov-07 11:14 AM	

+="CN49108"	"Translation of scientific papers - Japanese to English"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	20000.00	=""	="Linguaset Translations"	28-Nov-07 11:15 AM	

+="CN49113"	"To provide assistance with Web content administration"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Insurance and retirement services"	21-Nov-07	15-Feb-08	25000.00	=""	="GMT People Canberra Pty Ltd"	28-Nov-07 11:16 AM	

+="CN49118"	"2007-08 Summer Scholarship Students"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	19-Nov-07	31-Mar-08	26950.00	=""	="Australian National University"	28-Nov-07 11:16 AM	

+="CN49119"	"Draft 2 Report un-cooked prawns"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Legal services"	20-Nov-07	30-Jun-08	22000.00	=""	="Minter Ellison"	28-Nov-07 11:16 AM	

+="CN49130"	"Conference calls for Sep 07"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Telecommunications media services"	01-Sep-07	30-Sep-07	26758.81	=""	="Genesys Conferencing"	28-Nov-07 11:18 AM	

+="CN49140"	"Temporary Contractor Services"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Human resources services"	22-Nov-07	30-Jun-08	22000.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	28-Nov-07 11:19 AM	

+="CN49146"	"FORM PRINTED AD 196 TAG - DO NOT USE, RED, 120MM W X 60 MM LG"	="Defence Materiel Organisation"	28-Nov-07	="Professional associations"	19-Nov-07	11-Jan-08	23092.30	=""	="ROY E MAYNE & SON"	28-Nov-07 11:33 AM	

+="CN49167"	"Lease of accommodation in Darwin"	="Australian Federal Police"	28-Nov-07	="Lease and rental of property or building"	01-Dec-07	30-Nov-08	28176.00	=""	="HomeHunters Darwin"	28-Nov-07 02:43 PM	

+="CN49175"	"Cable Assembly's."	="Defence Materiel Organisation"	28-Nov-07	="Electrical cable and accessories"	28-Nov-07	28-Jan-08	25966.60	=""	="CMI Electrical Products"	28-Nov-07 04:01 PM	

+="CN49182"	"ICON Annual Levy 07/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	23-Oct-07	25-Oct-07	22000.00	=""	="Department of Finance & Administrat"	28-Nov-07 05:46 PM	

+="CN49183"	"Software Licence, Support"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Financial and Insurance Services"	25-Oct-07	21-Nov-07	20768.00	=""	="Gesix Software Pty Ltd"	28-Nov-07 05:46 PM	

+="CN49191"	"IT Services Re: E-Trial"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	11-Sep-07	31-Dec-07	29073.00	=""	="Potter Farrelly & Associates"	28-Nov-07 05:47 PM	

+="CN49197"	"Subscriptions"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	08-Nov-07	01-Dec-08	22159.17	=""	="CCH Australia Limited"	28-Nov-07 05:47 PM	

+="CN49203"	"Pharmaceuticals For ADF"	="Defence Materiel Organisation"	29-Nov-07	="Drugs and Pharmaceutical Products"	21-Nov-07	07-Dec-07	23579.60	=""	="Symbion Pharmacy Services"	29-Nov-07 08:36 AM	

+="CN49204"	"WIRING HARNESS NSN 66-140-7285"	="Defence Materiel Organisation"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	18-Dec-07	29337.22	=""	="GENERAL DYNAMICS LAND SYSTEMS AUST P/L"	29-Nov-07 08:40 AM	

+="CN49208-A1"	"VARIOUS SPILL CONTAINMENT EQUIPMENT"	="Defence Materiel Organisation"	29-Nov-07	="Spill containment supports"	28-Nov-07	19-Dec-07	26145.35	=""	="GLOBAL SPILL CONTROL PTY LTD"	29-Nov-07 10:19 AM	

+="CN49231"	"For the procurement of graphic design, proofreading and printing services for the production of the Criteria for the Clinical Use of Intravenous Immunoglobulin in Australia"	="National Blood Authority"	29-Nov-07	="Printing"	10-Oct-07	10-Oct-07	25000.00	=""	="Wilton Hanford Hanover Pty Ltd"	29-Nov-07 01:43 PM	

+="CN49263"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Nov-07	29-Dec-07	26120.28	=""	="LANDROVER"	29-Nov-07 04:17 PM	

+="CN49300"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	22938.90	=""	="VERIZON"	30-Nov-07 12:39 PM	

+="CN49313"	"Recruitment Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Dec-07	22000.00	="FIN 05CRP004-02"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:40 PM	

+="CN49332"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	26835.95	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:42 PM	

+="CN49349"	"Training & Education Costs"	="Department of Finance and Administration"	30-Nov-07	="Education and Training Services"	23-Nov-07	21-Dec-07	26100.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	30-Nov-07 12:44 PM	

+="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	

+="CN49359"	"Business Advisory Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	21-Dec-07	24320.00	="N/A"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	30-Nov-07 12:45 PM	

+="CN49361"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Dec-07	22000.00	="rft"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	

+="CN47645"	" Musical Instruments "	="Defence Materiel Organisation"	30-Nov-07	="Musical Instruments and parts and accessories"	02-Nov-07	06-Feb-08	20932.09	=""	="Pro Audio Supplies Pty Ltd"	30-Nov-07 12:58 PM	

+="CN49374"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	21367.50	=""	="Stryker Australia Pty Ltd"	30-Nov-07 03:03 PM	

 ="CN49384"	"Legal Services"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Legal services"	01-Jul-07	30-Jun-08	22000.00	=""	="Aust Government Solicitor Canberra"	30-Nov-07 03:58 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val300000to999999999.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val300000to999999999.xls
@@ -1,124 +1,124 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48147-A1"	"Lease at Perth, WA"	="Department of Human Services"	26-Nov-07	="Lease and rental of property or building"	01-Mar-03	31-Aug-11	980422.19	=""	="Centro MCS Manager Limited"	26-Nov-07 09:51 AM	
-="CN48171-A1"	"Market Research for the Telecommunications Consumer Community Information Campaign"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	12-Dec-06	29-Jun-08	374434.76	="2007/00578"	="QUANTUM MARKET RESEARCH"	26-Nov-07 11:33 AM	
-="CN48193"	"Duct work  maintenace & Rehabilition Services Contract (JH00057M )"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	21-Nov-07	28-Dec-07	628724.25	=""	="Chubb Fire Safety Limited"	26-Nov-07 11:45 AM	
-="CN48223"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	798405.54	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:18 PM	
-="CN48224"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	525286.83	=""	="INFO RAIL PTY LTD"	26-Nov-07 12:18 PM	
-="CN48225"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	864020.71	="ITC"	="EUROLINK CONSULTING AUST P/L"	26-Nov-07 12:19 PM	
-="CN48226"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	323123.90	=""	="HITECH PERSONNEL"	26-Nov-07 12:19 PM	
-="CN48227"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	24-Jul-07	30-Jun-08	8523059.82	="ITC"	="COMPAS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48230"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	30-Jul-07	30-Jun-08	1633500.00	="ITC"	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:19 PM	
-="CN48232"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	369509.94	="ITC"	="INTERPRO AUSTRALIA PTY LTD"	26-Nov-07 12:19 PM	
-="CN48235"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	462243.14	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Nov-07 12:20 PM	
-="CN48237"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	1499523.66	="ITC"	="IPP TECHNOLOGIES PTY LTD"	26-Nov-07 12:20 PM	
-="CN48238"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Aug-07	30-Jun-08	724534.47	=""	="AMBIT IT & T"	26-Nov-07 12:20 PM	
-="CN48244"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	592043.88	=""	="PAXUS AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	
-="CN48246"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	423594.29	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	
-="CN48255"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	11-Jul-07	30-Jun-08	823764.49	=""	="AUREC PTY LTD"	26-Nov-07 12:22 PM	
-="CN48260"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	1431088.13	=""	="FACE2FACE RECRUITMENT"	26-Nov-07 12:23 PM	
-="CN48261"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	401194.88	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	26-Nov-07 12:23 PM	
-="CN48262"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	435642.90	=""	="M & T RESOURCES"	26-Nov-07 12:23 PM	
-="CN48265"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	1138361.20	=""	="TARAKAN CONSULTING PTY LTD"	26-Nov-07 12:24 PM	
-="CN48266"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	523380.00	=""	="ISG"	26-Nov-07 12:24 PM	
-="CN48268"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	457929.38	=""	="MANPOWER SERVICES"	26-Nov-07 12:24 PM	
-="CN48269"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	425098.00	=""	="GREYTHORN PTY LTD"	26-Nov-07 12:24 PM	
-="CN48289"	"36 Todd Mall, Mezzanine Level"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	07-Sep-07	30-Jun-08	1946243.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:27 PM	
-="CN48295"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	386779.12	=""	="AVIKO PTY LTD"	26-Nov-07 12:27 PM	
-="CN48298"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1256314.47	=""	="MOSAIC RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	
-="CN48299"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	21-Aug-07	30-Jun-08	1925000.00	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	
-="CN48300"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1066506.88	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	
-="CN48301"	"Licenses"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	23-Aug-07	30-Jun-08	1897673.13	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	
-="CN48317"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	1214883.90	=""	="CANDLE AUSTRALIA LTD"	26-Nov-07 12:30 PM	
-="CN48318"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	04-Aug-06	30-Jun-07	550000.00	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	
-="CN48321"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	14-Nov-07	18-Nov-07	303177.60	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	
-="CN48326"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	24-Aug-06	30-Jun-07	443900.83	=""	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:31 PM	
-="CN48329"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	437530.67	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	
-="CN48331"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	19-Sep-06	30-Nov-10	400000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	26-Nov-07 12:31 PM	
-="CN48337"	"PropNSWOrange 21-29WilliamsSt (level 1)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	10-Nov-06	31-Aug-11	1192920.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48339"	"Contract Management training services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	17-Nov-06	30-Apr-07	350000.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	26-Nov-07 12:32 PM	
-="CN48349"	"Develop&deliver Middle Management Prog Skills not available in APS"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-May-06	31-Jan-09	900000.00	=""	="GLOBAL LEARNING"	26-Nov-07 12:34 PM	
-="CN48352"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	11-Jul-06	30-Jun-08	835000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:34 PM	
-="CN48355"	"Medical Assesments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	12-Jul-06	12-Jul-06	1972021.48	=""	="HEALTH FOR INDUSTRY"	26-Nov-07 12:34 PM	
-="CN48358"	"Electronic press clips"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	20-Jul-06	30-Jul-06	310424.99	=""	="MEDIA MONITORS AUST P/L"	26-Nov-07 12:35 PM	
-="CN48364"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	27-Jul-06	30-Jun-07	510587.03	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:36 PM	
-="CN48353-A2"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	21-Mar-05	31-Aug-06	1151878.94	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 12:37 PM	
-="CN48379"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	2674801.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	
-="CN48387"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	751968.45	=""	="AMOR CONSULTING PTY LTD"	26-Nov-07 12:38 PM	
-="CN48388"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	879752.01	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 12:39 PM	
-="CN48389"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	05-Jul-07	30-Jun-08	344596.18	="ITC"	="ECONNECT SOLUTIONS PTY LTD"	26-Nov-07 12:39 PM	
-="CN48393"	"Office fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	08-Dec-06	30-Jun-07	1056886.69	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:39 PM	
-="CN48394"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	11-Dec-06	30-Sep-07	4066000.00	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:39 PM	
-="CN48396"	"Longitudinal Pathways Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	15-Dec-06	30-Jul-08	637958.00	=""	="THE SOCIAL RESEARCH CENTRE"	26-Nov-07 12:40 PM	
-="CN48409"	"Media Placement Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	28-May-07	30-Sep-07	4000000.05	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:41 PM	
-="CN48410"	"Research Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	28-May-07	30-Jun-07	700000.00	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:41 PM	
-="CN48411"	"Public Relations Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	28-May-07	30-Jun-07	525000.00	=""	="GAVIN ANDERSON & COMPANY (AUSTRALIA"	26-Nov-07 12:41 PM	
-="CN48415"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-05	31-Dec-06	340696.59	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:44 PM	
-="CN48418"	"        Alinga and Mort St - Detailed Design, Documentation $ Construction        "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	31-Dec-06	585180.42	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:02 PM	
-="CN48427"	"    Additional Projects Alinga and Mort St - Detailed Design and Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	28-Feb-07	609065.34	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:22 PM	
-="CN48433-A1"	"06/1553 - Supply of remotely operated underwater vehicles"	="Australian Customs and Border Protection Service"	26-Nov-07	="Marine craft systems and subassemblies"	21-Nov-07	21-Nov-10	1185000.00	=""	="Ocean Modules"	26-Nov-07 02:23 PM	
-="CN48442"	"Lease at Weipa, Queensland."	="Department of Human Services"	26-Nov-07	="Real estate services"	01-Feb-08	31-Jan-15	718452.15	=""	="L.J. McDonald & M.A. McDonald"	26-Nov-07 02:27 PM	
-="CN48443-A1"	"    111 Alinga Base Building Upgrade by Multiplex    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	31-Dec-07	1042107.00	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:28 PM	
-="CN48457"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-May-07	30-Sep-08	1695248.72	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:48 PM	
-="CN48477"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	320804.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:58 PM	
-="CN48480"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	17-Oct-07	17-Oct-07	368198.60	=""	="INTERIORS AUSTRALIA"	26-Nov-07 02:58 PM	
-="CN48499"	"Property Rental"	="Medicare Australia"	26-Nov-07	="Business administration services"	29-Oct-07	29-Oct-07	3644787.22	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:00 PM	
-="CN48515"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	394151.32	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:02 PM	
-="CN48558"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	03-Oct-07	14-Feb-08	1998858.84	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:06 PM	
-="CN48606"	"Lease at Noarlunga, SA"	="Centrelink"	26-Nov-07	="Real estate services"	05-Nov-07	04-May-08	1272734.00	=""	="CPT Manager Limited"	26-Nov-07 04:36 PM	
-="CN48644-A7"	"Lease at Mount Gambier, SA"	="Department of Human Services"	27-Nov-07	="Real estate services"	01-Jul-08	31-Dec-14	1460847.00	=""	="Luigi Michielan Estate"	27-Nov-07 09:47 AM	
-="CN48660-A1"	"IT Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	01-Oct-07	30-Jun-08	729327.00	=""	="CSC Australia Pty Limited"	27-Nov-07 10:35 AM	
-="CN48667-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Project administration or planning"	13-Jun-07	30-Sep-08	1294703.87	=""	="CSC Australia Pty Limited"	27-Nov-07 10:55 AM	
-="CN48670-A10"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Temporary information technology systems or database administrators"	01-Jul-07	03-Oct-08	2207768.31	=""	="CSC Australia Pty. Limited"	27-Nov-07 10:58 AM	
-="CN48673-A2"	"Information Technology Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Project administration or planning"	02-Aug-07	04-Jun-08	391701.00	=""	="CSC Australia Pty Limited"	27-Nov-07 11:02 AM	
-="CN48711"	"Provision of 2nd Round HWMD Training Costs Associated with the HWMD Training"	="Department of Transport and Regional Services"	27-Nov-07	="Security and personal safety"	21-Nov-07	30-Jun-08	696500.00	="TRS05/084"	="VAST Academy (Aust) Pty Ltd"	27-Nov-07 11:32 AM	
-="CN48719-A4"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	01-May-09	396000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 11:55 AM	
-="CN48722-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	30-Jun-09	404800.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:08 PM	
-="CN48724-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	05-Dec-08	308000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:15 PM	
-="CN48726"	"IT specialist services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	02-Jul-07	316800.00	=""	="Greythorn Pty Ltd"	27-Nov-07 12:20 PM	
-="CN48727-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	20-Jun-07	30-Jun-09	405900.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:23 PM	
-="CN48728-A5"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	30-Jun-09	462000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:27 PM	
-="CN48721"	"Repair of Blackhawk transmission main module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Nov-07	07-Dec-07	312606.29	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 12:43 PM	
-="CN48735-A3"	"It Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	01-Jul-07	30-Jun-09	444400.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 01:28 PM	
-="CN48736"	"Acquisition and integration of Leximancer Software"	="Australian Crime Commission"	27-Nov-07	="Software"	31-Oct-07	31-Oct-07	418000.00	="RFQ 08/2006"	="Hyro Australia Pty Ltd"	27-Nov-07 01:29 PM	
-="CN48741-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	01-May-07	30-Jun-09	645150.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:42 PM	
-="CN48744-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	20-Feb-07	30-May-08	477400.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:48 PM	
-="CN48743-A5"	"Internet Gateway, secure hosting, telecoms and help desk services."	="Australian Federal Police"	27-Nov-07	="Internet services"	01-Dec-04	30-Nov-10	3674670.40	=""	="Verizon Australia Pty Limited"	27-Nov-07 01:49 PM	
-="CN48758-A1"	"Construction Manager Services"	="Australian Crime Commission"	27-Nov-07	="Relocation services"	19-Nov-07	27-Jun-08	7418187.30	=""	="ISIS Projects Pty Limited"	27-Nov-07 02:31 PM	
-="CN48764"	" Merchant Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Banking institutions"	28-Dec-06	01-Jan-10	510000.00	=""	="The Hong Kong and Shanghai Banking Corporation Limited"	27-Nov-07 02:57 PM	
-="CN47721"	"Construction management services and fitout works"	="Australian Crime Commission"	27-Nov-07	="Property management services"	10-Jul-07	30-Jun-08	3110725.20	="ACC/2007/138"	="ISIS Projects"	27-Nov-07 03:04 PM	
-="CN47462"	"Vehicle satellite equipment and bandwidth"	="Australian Crime Commission"	27-Nov-07	="Satellite access equipment"	30-Jul-07	31-Jul-08	704686.00	=""	="Optus Networks"	27-Nov-07 03:06 PM	
-="CN48765-A3"	" Construction Works - Fitout "	="Department of Immigration and Citizenship"	27-Nov-07	="Building and Construction and Maintenance Services"	05-Jul-07	18-Sep-08	1202863.00	=""	="MPA Construction Group Pty Limited"	27-Nov-07 03:09 PM	
-="CN47463"	"Change Management Solutions"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	02-Aug-07	12-Dec-07	320000.00	="ACC/2007/14"	="Cogent Business solutions Pty Ltd"	27-Nov-07 03:12 PM	
-="CN47434"	"SAP Licenced Products"	="Australian Crime Commission"	27-Nov-07	="Enterprise resource planning ERP software"	26-Jul-07	26-Jul-07	434500.00	=""	="SAP Australia Pty Ltd"	27-Nov-07 03:17 PM	
-="CN48808"	"ERP Project progression and realization activities"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	01-Sep-07	07-Nov-07	480000.00	="RFT/2006/13"	="Oxygen Business Solutions"	27-Nov-07 04:09 PM	
-="CN48827"	"Supply of Cold Weather Gloves."	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	03-Oct-07	30-May-08	1063589.36	=""	="Platypus Outdoors Group"	28-Nov-07 07:58 AM	
-="CN48852"	"2nd Quarter IT Services Charges"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	326152.20	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:56 AM	
-="CN48862"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	29-Oct-07	31-Oct-07	4304869.91	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 09:57 AM	
-="CN48871"	"Temp Accommodation for the 2008 Graduates"	="Department of Employment and Workplace Relations"	28-Nov-07	="Human resources services"	26-Oct-07	15-Feb-08	500000.00	=""	="CLIFTONS"	28-Nov-07 09:58 AM	
-="CN48883"	"Property Management Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	12-Oct-07	31-Oct-08	686399.00	="DEWR RFT 2007/09"	="UNITED GROUP SERVICES - BUSINESS AC"	28-Nov-07 10:00 AM	
-="CN48890"	"Longitudinal Pathways Survey - Wave 4"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Oct-07	30-Jul-08	598021.00	="DEWR RFT16 2005/06"	="THE SOCIAL RESEARCH CENTRE"	28-Nov-07 10:00 AM	
-="CN48893"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Oct-07	31-Oct-07	489668.40	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:01 AM	
-="CN48916"	"DATA STOREAGE UPGRADE SERVICES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	1708464.62	=""	="HITACHI DATA SYSTEMS"	28-Nov-07 10:03 AM	
-="CN48934"	"Rent and Other Property Expenses 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	22-Nov-07	30-Jun-08	25000000.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:04 AM	
-="CN48946"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	05-Nov-07	22-Dec-10	350000.00	=""	="WRIDGWAYS THE REMOVALISTS"	28-Nov-07 10:06 AM	
-="CN48958"	"IT COMMUNICATIONS EQUIPMENT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Nov-07	30-Jun-08	321430.24	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:07 AM	
-="CN48984"	"MAINTENANCE TO CISCO EQUIPMENTS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	17-Sep-07	31-Jul-08	807974.08	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	28-Nov-07 10:10 AM	
-="CN48992"	"IT Consultants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	330000.00	="ICT"	="IBM AUSTRALIA LTD"	28-Nov-07 10:10 AM	
-="CN48997"	"Property Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	20-Sep-07	30-Sep-07	408784.84	="Contract"	="UNITED GROUP SERVICES - PROPERT ACC"	28-Nov-07 10:11 AM	
-="CN49001"	"IT Data Storage equipments - Maintenance 12 months"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	17-Sep-07	30-Jun-08	389725.25	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	28-Nov-07 10:11 AM	
-="CN49009"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	406502.59	="ITC"	="FINITE RECRUITMENT PTY LTD"	28-Nov-07 10:12 AM	
-="CN49039"	"StS Campaign - Creative Agency 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	08-Oct-07	30-Jun-08	400000.00	=""	="VINTEN BROWNING"	28-Nov-07 10:15 AM	
-="CN49070"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	28-Sep-07	30-Sep-07	3461399.97	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:18 AM	
-="CN49085"	"Fitout Collins ST, Hobart"	="Department of Employment and Workplace Relations"	28-Nov-07	="Accommodation furniture"	04-Oct-07	31-Dec-07	342977.14	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:20 AM	
-="CN49090"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	04-Oct-07	30-Jun-08	846054.00	="TBA"	="SAP AUSTRALIA PTY LTD"	28-Nov-07 10:20 AM	
-="CN49163"	"Property lease, Level 3 Commonwealth Centre, CAIRNES"	="Family Court of Australia"	28-Nov-07	="Lease and rental of property or building"	01-May-07	30-Apr-10	497007.00	=""	="Sandran Pty Ltd"	28-Nov-07 01:25 PM	
-="CN49165"	"PURCHASE EXTREME COLD WEATHER UNDERGARMENTS"	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	10-Sep-07	15-Feb-08	1574479.50	=""	="WILDERNESS WEAR"	28-Nov-07 02:35 PM	
-="CN49202-A1"	"TIRE PNEUMATIC NSN 21-908-3851"	="Defence Materiel Organisation"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	11-Dec-07	526680.00	=""	="MARATHON TYRES AUST PTY LTD"	29-Nov-07 08:17 AM	
-="CN49223"	"Supply of RAN Grey Combat Coveralls, Proban Treated"	="Defence Materiel Organisation"	29-Nov-07	="Clothing"	16-Nov-07	10-Jul-09	2147145.00	=""	="Babylon Industries"	29-Nov-07 12:36 PM	
-="CN49329"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	768808.60	="FIN06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	
-="CN49330"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	2962391.40	="Fin06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	
-="CN49353"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	1398038.55	="N/A"	="NEW SOUTH WALES FIRE BRIGADES"	30-Nov-07 12:44 PM	
-="CN49368"	"Irrigation Network Replacement - Regatta Point Pump Station"	="National Capital Authority"	30-Nov-07	="Irrigation pipes or tubes"	21-Feb-07	30-Jan-08	494000.00	=""	="Manteena Pty Ltd"	30-Nov-07 01:42 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48147-A1"	"Lease at Perth, WA"	="Department of Human Services"	26-Nov-07	="Lease and rental of property or building"	01-Mar-03	31-Aug-11	980422.19	=""	="Centro MCS Manager Limited"	26-Nov-07 09:51 AM	

+="CN48171-A1"	"Market Research for the Telecommunications Consumer Community Information Campaign"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	12-Dec-06	29-Jun-08	374434.76	="2007/00578"	="QUANTUM MARKET RESEARCH"	26-Nov-07 11:33 AM	

+="CN48193"	"Duct work  maintenace & Rehabilition Services Contract (JH00057M )"	="Department of Parliamentary Services"	26-Nov-07	="Building and Construction and Maintenance Services"	21-Nov-07	28-Dec-07	628724.25	=""	="Chubb Fire Safety Limited"	26-Nov-07 11:45 AM	

+="CN48223"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	798405.54	=""	="WIZARD INFORMATION SERVICES"	26-Nov-07 12:18 PM	

+="CN48224"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	525286.83	=""	="INFO RAIL PTY LTD"	26-Nov-07 12:18 PM	

+="CN48225"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	864020.71	="ITC"	="EUROLINK CONSULTING AUST P/L"	26-Nov-07 12:19 PM	

+="CN48226"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	323123.90	=""	="HITECH PERSONNEL"	26-Nov-07 12:19 PM	

+="CN48227"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	24-Jul-07	30-Jun-08	8523059.82	="ITC"	="COMPAS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48230"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	30-Jul-07	30-Jun-08	1633500.00	="ITC"	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:19 PM	

+="CN48232"	"Provision of IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	369509.94	="ITC"	="INTERPRO AUSTRALIA PTY LTD"	26-Nov-07 12:19 PM	

+="CN48235"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	462243.14	=""	="INFOSYS SOLUTIONS PTY LTD"	26-Nov-07 12:20 PM	

+="CN48237"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	1499523.66	="ITC"	="IPP TECHNOLOGIES PTY LTD"	26-Nov-07 12:20 PM	

+="CN48238"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Aug-07	30-Jun-08	724534.47	=""	="AMBIT IT & T"	26-Nov-07 12:20 PM	

+="CN48244"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	592043.88	=""	="PAXUS AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	

+="CN48246"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	423594.29	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	26-Nov-07 12:21 PM	

+="CN48255"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	11-Jul-07	30-Jun-08	823764.49	=""	="AUREC PTY LTD"	26-Nov-07 12:22 PM	

+="CN48260"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	1431088.13	=""	="FACE2FACE RECRUITMENT"	26-Nov-07 12:23 PM	

+="CN48261"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	401194.88	="ITC"	="TALENT INTERNATIONAL (ACT) PTY LTD"	26-Nov-07 12:23 PM	

+="CN48262"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	16-Jul-07	30-Jun-08	435642.90	=""	="M & T RESOURCES"	26-Nov-07 12:23 PM	

+="CN48265"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	1138361.20	=""	="TARAKAN CONSULTING PTY LTD"	26-Nov-07 12:24 PM	

+="CN48266"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	523380.00	=""	="ISG"	26-Nov-07 12:24 PM	

+="CN48268"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	457929.38	=""	="MANPOWER SERVICES"	26-Nov-07 12:24 PM	

+="CN48269"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	425098.00	=""	="GREYTHORN PTY LTD"	26-Nov-07 12:24 PM	

+="CN48289"	"36 Todd Mall, Mezzanine Level"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	07-Sep-07	30-Jun-08	1946243.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:27 PM	

+="CN48295"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	386779.12	=""	="AVIKO PTY LTD"	26-Nov-07 12:27 PM	

+="CN48298"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1256314.47	=""	="MOSAIC RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	

+="CN48299"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	21-Aug-07	30-Jun-08	1925000.00	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	

+="CN48300"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	21-Aug-07	30-Jun-08	1066506.88	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 12:28 PM	

+="CN48301"	"Licenses"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	23-Aug-07	30-Jun-08	1897673.13	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:28 PM	

+="CN48317"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	1214883.90	=""	="CANDLE AUSTRALIA LTD"	26-Nov-07 12:30 PM	

+="CN48318"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	04-Aug-06	30-Jun-07	550000.00	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	

+="CN48321"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	14-Nov-07	18-Nov-07	303177.60	=""	="HITECH PERSONNEL"	26-Nov-07 12:30 PM	

+="CN48326"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	24-Aug-06	30-Jun-07	443900.83	=""	="STAMFORD INTERACTIVE PTY LTD"	26-Nov-07 12:31 PM	

+="CN48329"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	14-Sep-06	30-Jun-07	437530.67	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:31 PM	

+="CN48331"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	19-Sep-06	30-Nov-10	400000.00	=""	="CATALYST RECRUITMENT SYSTEMS LTD"	26-Nov-07 12:31 PM	

+="CN48337"	"PropNSWOrange 21-29WilliamsSt (level 1)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	10-Nov-06	31-Aug-11	1192920.92	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48339"	"Contract Management training services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	17-Nov-06	30-Apr-07	350000.00	=""	="MAJOR TRAINING SERVICES PTY LTD"	26-Nov-07 12:32 PM	

+="CN48349"	"Develop&deliver Middle Management Prog Skills not available in APS"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	04-May-06	31-Jan-09	900000.00	=""	="GLOBAL LEARNING"	26-Nov-07 12:34 PM	

+="CN48352"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	11-Jul-06	30-Jun-08	835000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:34 PM	

+="CN48355"	"Medical Assesments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Comprehensive health services"	12-Jul-06	12-Jul-06	1972021.48	=""	="HEALTH FOR INDUSTRY"	26-Nov-07 12:34 PM	

+="CN48358"	"Electronic press clips"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	20-Jul-06	30-Jul-06	310424.99	=""	="MEDIA MONITORS AUST P/L"	26-Nov-07 12:35 PM	

+="CN48364"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	27-Jul-06	30-Jun-07	510587.03	=""	="INFRA CORPORATION PTY LTD"	26-Nov-07 12:36 PM	

+="CN48353-A2"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	21-Mar-05	31-Aug-06	1151878.94	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 12:37 PM	

+="CN48379"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	2674801.88	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	26-Nov-07 12:37 PM	

+="CN48387"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	751968.45	=""	="AMOR CONSULTING PTY LTD"	26-Nov-07 12:38 PM	

+="CN48388"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	04-Jul-07	30-Jun-08	879752.01	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	26-Nov-07 12:39 PM	

+="CN48389"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	05-Jul-07	30-Jun-08	344596.18	="ITC"	="ECONNECT SOLUTIONS PTY LTD"	26-Nov-07 12:39 PM	

+="CN48393"	"Office fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	08-Dec-06	30-Jun-07	1056886.69	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:39 PM	

+="CN48394"	"Media Buying Promotional Advertising"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	11-Dec-06	30-Sep-07	4066000.00	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:39 PM	

+="CN48396"	"Longitudinal Pathways Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	15-Dec-06	30-Jul-08	637958.00	=""	="THE SOCIAL RESEARCH CENTRE"	26-Nov-07 12:40 PM	

+="CN48409"	"Media Placement Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	28-May-07	30-Sep-07	4000000.05	=""	="UNIVERSAL MCCANN"	26-Nov-07 12:41 PM	

+="CN48410"	"Research Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	28-May-07	30-Jun-07	700000.00	=""	="THE OPEN MIND RESEARCH GROUP"	26-Nov-07 12:41 PM	

+="CN48411"	"Public Relations Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	28-May-07	30-Jun-07	525000.00	=""	="GAVIN ANDERSON & COMPANY (AUSTRALIA"	26-Nov-07 12:41 PM	

+="CN48415"	"    Alinga and Mort St - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-05	31-Dec-06	340696.59	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:44 PM	

+="CN48418"	"        Alinga and Mort St - Detailed Design, Documentation $ Construction        "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	31-Dec-06	585180.42	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:02 PM	

+="CN48427"	"    Additional Projects Alinga and Mort St - Detailed Design and Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	28-Feb-07	609065.34	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:22 PM	

+="CN48433-A1"	"06/1553 - Supply of remotely operated underwater vehicles"	="Australian Customs and Border Protection Service"	26-Nov-07	="Marine craft systems and subassemblies"	21-Nov-07	21-Nov-10	1185000.00	=""	="Ocean Modules"	26-Nov-07 02:23 PM	

+="CN48442"	"Lease at Weipa, Queensland."	="Department of Human Services"	26-Nov-07	="Real estate services"	01-Feb-08	31-Jan-15	718452.15	=""	="L.J. McDonald & M.A. McDonald"	26-Nov-07 02:27 PM	

+="CN48443-A1"	"    111 Alinga Base Building Upgrade by Multiplex    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-06	31-Dec-07	1042107.00	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:28 PM	

+="CN48457"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-May-07	30-Sep-08	1695248.72	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:48 PM	

+="CN48477"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	320804.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:58 PM	

+="CN48480"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	17-Oct-07	17-Oct-07	368198.60	=""	="INTERIORS AUSTRALIA"	26-Nov-07 02:58 PM	

+="CN48499"	"Property Rental"	="Medicare Australia"	26-Nov-07	="Business administration services"	29-Oct-07	29-Oct-07	3644787.22	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:00 PM	

+="CN48515"	"Property Lease Reimbursements"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	394151.32	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	26-Nov-07 03:02 PM	

+="CN48558"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	03-Oct-07	14-Feb-08	1998858.84	=""	="IBM AUSTRALIA LIMITED"	26-Nov-07 03:06 PM	

+="CN48606"	"Lease at Noarlunga, SA"	="Centrelink"	26-Nov-07	="Real estate services"	05-Nov-07	04-May-08	1272734.00	=""	="CPT Manager Limited"	26-Nov-07 04:36 PM	

+="CN48644-A7"	"Lease at Mount Gambier, SA"	="Department of Human Services"	27-Nov-07	="Real estate services"	01-Jul-08	31-Dec-14	1460847.00	=""	="Luigi Michielan Estate"	27-Nov-07 09:47 AM	

+="CN48660-A1"	"IT Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	01-Oct-07	30-Jun-08	729327.00	=""	="CSC Australia Pty Limited"	27-Nov-07 10:35 AM	

+="CN48667-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Project administration or planning"	13-Jun-07	30-Sep-08	1294703.87	=""	="CSC Australia Pty Limited"	27-Nov-07 10:55 AM	

+="CN48670-A10"	" Information Technology Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Temporary information technology systems or database administrators"	01-Jul-07	03-Oct-08	2207768.31	=""	="CSC Australia Pty. Limited"	27-Nov-07 10:58 AM	

+="CN48673-A2"	"Information Technology Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Project administration or planning"	02-Aug-07	04-Jun-08	391701.00	=""	="CSC Australia Pty Limited"	27-Nov-07 11:02 AM	

+="CN48711"	"Provision of 2nd Round HWMD Training Costs Associated with the HWMD Training"	="Department of Transport and Regional Services"	27-Nov-07	="Security and personal safety"	21-Nov-07	30-Jun-08	696500.00	="TRS05/084"	="VAST Academy (Aust) Pty Ltd"	27-Nov-07 11:32 AM	

+="CN48719-A4"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	01-May-09	396000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 11:55 AM	

+="CN48722-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	30-Jun-09	404800.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:08 PM	

+="CN48724-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	05-Dec-08	308000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:15 PM	

+="CN48726"	"IT specialist services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	02-Jul-07	316800.00	=""	="Greythorn Pty Ltd"	27-Nov-07 12:20 PM	

+="CN48727-A2"	"IT specialist services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	20-Jun-07	30-Jun-09	405900.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:23 PM	

+="CN48728-A5"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	30-Jun-09	462000.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:27 PM	

+="CN48721"	"Repair of Blackhawk transmission main module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Nov-07	07-Dec-07	312606.29	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 12:43 PM	

+="CN48735-A3"	"It Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	01-Jul-07	30-Jun-09	444400.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 01:28 PM	

+="CN48736"	"Acquisition and integration of Leximancer Software"	="Australian Crime Commission"	27-Nov-07	="Software"	31-Oct-07	31-Oct-07	418000.00	="RFQ 08/2006"	="Hyro Australia Pty Ltd"	27-Nov-07 01:29 PM	

+="CN48741-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	01-May-07	30-Jun-09	645150.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:42 PM	

+="CN48744-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	20-Feb-07	30-May-08	477400.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:48 PM	

+="CN48743-A5"	"Internet Gateway, secure hosting, telecoms and help desk services."	="Australian Federal Police"	27-Nov-07	="Internet services"	01-Dec-04	30-Nov-10	3674670.40	=""	="Verizon Australia Pty Limited"	27-Nov-07 01:49 PM	

+="CN48758-A1"	"Construction Manager Services"	="Australian Crime Commission"	27-Nov-07	="Relocation services"	19-Nov-07	27-Jun-08	7418187.30	=""	="ISIS Projects Pty Limited"	27-Nov-07 02:31 PM	

+="CN48764"	" Merchant Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Banking institutions"	28-Dec-06	01-Jan-10	510000.00	=""	="The Hong Kong and Shanghai Banking Corporation Limited"	27-Nov-07 02:57 PM	

+="CN47721"	"Construction management services and fitout works"	="Australian Crime Commission"	27-Nov-07	="Property management services"	10-Jul-07	30-Jun-08	3110725.20	="ACC/2007/138"	="ISIS Projects"	27-Nov-07 03:04 PM	

+="CN47462"	"Vehicle satellite equipment and bandwidth"	="Australian Crime Commission"	27-Nov-07	="Satellite access equipment"	30-Jul-07	31-Jul-08	704686.00	=""	="Optus Networks"	27-Nov-07 03:06 PM	

+="CN48765-A3"	" Construction Works - Fitout "	="Department of Immigration and Citizenship"	27-Nov-07	="Building and Construction and Maintenance Services"	05-Jul-07	18-Sep-08	1202863.00	=""	="MPA Construction Group Pty Limited"	27-Nov-07 03:09 PM	

+="CN47463"	"Change Management Solutions"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	02-Aug-07	12-Dec-07	320000.00	="ACC/2007/14"	="Cogent Business solutions Pty Ltd"	27-Nov-07 03:12 PM	

+="CN47434"	"SAP Licenced Products"	="Australian Crime Commission"	27-Nov-07	="Enterprise resource planning ERP software"	26-Jul-07	26-Jul-07	434500.00	=""	="SAP Australia Pty Ltd"	27-Nov-07 03:17 PM	

+="CN48808"	"ERP Project progression and realization activities"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	01-Sep-07	07-Nov-07	480000.00	="RFT/2006/13"	="Oxygen Business Solutions"	27-Nov-07 04:09 PM	

+="CN48827"	"Supply of Cold Weather Gloves."	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	03-Oct-07	30-May-08	1063589.36	=""	="Platypus Outdoors Group"	28-Nov-07 07:58 AM	

+="CN48852"	"2nd Quarter IT Services Charges"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	326152.20	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:56 AM	

+="CN48862"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	29-Oct-07	31-Oct-07	4304869.91	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 09:57 AM	

+="CN48871"	"Temp Accommodation for the 2008 Graduates"	="Department of Employment and Workplace Relations"	28-Nov-07	="Human resources services"	26-Oct-07	15-Feb-08	500000.00	=""	="CLIFTONS"	28-Nov-07 09:58 AM	

+="CN48883"	"Property Management Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	12-Oct-07	31-Oct-08	686399.00	="DEWR RFT 2007/09"	="UNITED GROUP SERVICES - BUSINESS AC"	28-Nov-07 10:00 AM	

+="CN48890"	"Longitudinal Pathways Survey - Wave 4"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Oct-07	30-Jul-08	598021.00	="DEWR RFT16 2005/06"	="THE SOCIAL RESEARCH CENTRE"	28-Nov-07 10:00 AM	

+="CN48893"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Oct-07	31-Oct-07	489668.40	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:01 AM	

+="CN48916"	"DATA STOREAGE UPGRADE SERVICES"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	1708464.62	=""	="HITACHI DATA SYSTEMS"	28-Nov-07 10:03 AM	

+="CN48934"	"Rent and Other Property Expenses 07/08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	22-Nov-07	30-Jun-08	25000000.00	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:04 AM	

+="CN48946"	"Removal Services for DEWR Employees"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	05-Nov-07	22-Dec-10	350000.00	=""	="WRIDGWAYS THE REMOVALISTS"	28-Nov-07 10:06 AM	

+="CN48958"	"IT COMMUNICATIONS EQUIPMENT"	="Department of Employment and Workplace Relations"	28-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Nov-07	30-Jun-08	321430.24	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:07 AM	

+="CN48984"	"MAINTENANCE TO CISCO EQUIPMENTS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	17-Sep-07	31-Jul-08	807974.08	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	28-Nov-07 10:10 AM	

+="CN48992"	"IT Consultants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	330000.00	="ICT"	="IBM AUSTRALIA LTD"	28-Nov-07 10:10 AM	

+="CN48997"	"Property Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	20-Sep-07	30-Sep-07	408784.84	="Contract"	="UNITED GROUP SERVICES - PROPERT ACC"	28-Nov-07 10:11 AM	

+="CN49001"	"IT Data Storage equipments - Maintenance 12 months"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	17-Sep-07	30-Jun-08	389725.25	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	28-Nov-07 10:11 AM	

+="CN49009"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	406502.59	="ITC"	="FINITE RECRUITMENT PTY LTD"	28-Nov-07 10:12 AM	

+="CN49039"	"StS Campaign - Creative Agency 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	08-Oct-07	30-Jun-08	400000.00	=""	="VINTEN BROWNING"	28-Nov-07 10:15 AM	

+="CN49070"	"Property Costs"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	28-Sep-07	30-Sep-07	3461399.97	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 10:18 AM	

+="CN49085"	"Fitout Collins ST, Hobart"	="Department of Employment and Workplace Relations"	28-Nov-07	="Accommodation furniture"	04-Oct-07	31-Dec-07	342977.14	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:20 AM	

+="CN49090"	"System Maintenance & Licences"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	04-Oct-07	30-Jun-08	846054.00	="TBA"	="SAP AUSTRALIA PTY LTD"	28-Nov-07 10:20 AM	

+="CN49163"	"Property lease, Level 3 Commonwealth Centre, CAIRNES"	="Family Court of Australia"	28-Nov-07	="Lease and rental of property or building"	01-May-07	30-Apr-10	497007.00	=""	="Sandran Pty Ltd"	28-Nov-07 01:25 PM	

+="CN49165"	"PURCHASE EXTREME COLD WEATHER UNDERGARMENTS"	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	10-Sep-07	15-Feb-08	1574479.50	=""	="WILDERNESS WEAR"	28-Nov-07 02:35 PM	

+="CN49202-A1"	"TIRE PNEUMATIC NSN 21-908-3851"	="Defence Materiel Organisation"	29-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	11-Dec-07	526680.00	=""	="MARATHON TYRES AUST PTY LTD"	29-Nov-07 08:17 AM	

+="CN49223"	"Supply of RAN Grey Combat Coveralls, Proban Treated"	="Defence Materiel Organisation"	29-Nov-07	="Clothing"	16-Nov-07	10-Jul-09	2147145.00	=""	="Babylon Industries"	29-Nov-07 12:36 PM	

+="CN49329"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	768808.60	="FIN06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	

+="CN49330"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	2962391.40	="Fin06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	

+="CN49353"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	1398038.55	="N/A"	="NEW SOUTH WALES FIRE BRIGADES"	30-Nov-07 12:44 PM	

+="CN49368"	"Irrigation Network Replacement - Regatta Point Pump Station"	="National Capital Authority"	30-Nov-07	="Irrigation pipes or tubes"	21-Feb-07	30-Jan-08	494000.00	=""	="Manteena Pty Ltd"	30-Nov-07 01:42 PM	

 ="CN49383-A5"	" Scamax Inotec Scanner Maintenance and Services  Extn of maintenance for Scanners    "	="Australian Taxation Office"	30-Nov-07	="Computer services"	01-Sep-07	31-Aug-11	593330.40	=""	="Inotec Organisationsysteme Pty Ltd"	30-Nov-07 03:57 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val30000to40000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val30000to40000.xls
@@ -1,88 +1,88 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48142"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	15-Mar-08	31295.00	=""	="LOPAC PTY LTD"	26-Nov-07 07:52 AM	
-="CN48157-A1"	"VP 181- Election Project Manager"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	38800.00	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48196"	"Provision  of software upgrade to Alcaltel PABX Systems"	="Department of Parliamentary Services"	26-Nov-07	="Software patches or upgrades"	16-Nov-07	30-Dec-07	31847.20	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48199"	"Provision of  uniterruptible power supply"	="Department of Parliamentary Services"	26-Nov-07	="Power generation control equipment"	15-Nov-07	30-Dec-07	38885.00	=""	="Honeywell Limited"	26-Nov-07 11:46 AM	
-="CN48211"	"Lease at Benalla, Victoria."	="Centrelink"	26-Nov-07	="Real estate services"	01-Jul-07	30-Jun-09	31574.40	=""	="North East Support and Action for Youth Incorporated"	26-Nov-07 11:53 AM	
-="CN48247"	"Freight Services for ITSG 07/08 FY"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	06-Jul-07	30-Jun-08	34966.50	=""	="COPE TRANSPORT (SA) PTY LTD"	26-Nov-07 12:21 PM	
-="CN48285"	"Benchmarking of Airborne Exposures"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	14-Dec-07	38500.00	=""	="UNIVERSITY OF WESTERN SYDNEY"	26-Nov-07 12:26 PM	
-="CN48372"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	36736.56	=""	="GREYTHORN"	26-Nov-07 12:37 PM	
-="CN48375"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	39072.00	=""	="GREYTHORN"	26-Nov-07 12:37 PM	
-="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	
-="CN48395"	"File storage, archival destruction"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	12-Dec-06	23-Dec-07	37185.36	=""	="RECALL INFORMATION MANAGEMENT"	26-Nov-07 12:39 PM	
-="CN48400"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Feb-07	19-Dec-11	32649.64	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:40 PM	
-="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	
-="CN48431"	"CPO017172 - Boat trailer"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	31900.00	=""	="Voyager Trailers"	26-Nov-07 02:23 PM	
-="CN48453"	"COMMITTE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	13-Nov-07	31059.00	=""	="Australian Public Service"	26-Nov-07 02:42 PM	
-="CN48455"	"VENUE HIRE NOVOTEL NCG CONFERENCE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	15-Nov-07	31305.66	=""	="NOVOTEL ST KILDA"	26-Nov-07 02:42 PM	
-="CN48478"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	30590.61	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	
-="CN48488"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	18-Oct-07	18-Oct-07	33235.71	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	
-="CN48526"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Nov-07	35654.79	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	
-="CN48534"	"PHONE ACCOUNT"	="Australian Taxation Office"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	15-Nov-07	36642.63	=""	="TELSTRA"	26-Nov-07 03:04 PM	
-="CN48544"	"CABCHRG 1808-140907"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	17-Sep-07	11-Oct-07	39831.18	=""	="CABCHARGE AUSTRALIA LIMITED"	26-Nov-07 03:05 PM	
-="CN48552"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	35759.20	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48563"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	12-Oct-07	12-Oct-07	33872.83	=""	="Iron Mountain Australia Pty Ltd"	26-Nov-07 03:07 PM	
-="CN48575"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	34120.61	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48581"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	30343.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:09 PM	
-="CN48615"	"Hire of Electoral Premises"	="Australian Electoral Commission"	26-Nov-07	="Lease and rental of property or building"	12-Nov-07	24-Nov-07	33600.00	=""	="Princess Theatre Pty Ltd"	26-Nov-07 04:53 PM	
-="CN48593"	"Medical Consumables"	="Defence Materiel Organisation"	27-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	03-Dec-07	32780.00	=""	="GKE Australia Pty Ltd"	27-Nov-07 06:50 AM	
-="CN48647"	"Telephone Handsets and Accessories"	="Australian Electoral Commission"	27-Nov-07	="Phone handsets"	27-Sep-07	27-Oct-07	32344.18	=""	="Telstra"	27-Nov-07 09:54 AM	
-="CN48651"	"Maintenance of indoor plants and fytogreen wall"	="Australian Crime Commission"	27-Nov-07	="Non flowering plants"	01-Oct-07	31-Dec-07	31926.40	=""	="Rentokil Initial Pty Ltd"	27-Nov-07 10:14 AM	
-="CN48710"	"Technical Support"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	20-Dec-06	22-Dec-06	35200.00	="T2004/0699"	="VOLANTE SOLUTIONS"	27-Nov-07 11:32 AM	
-="CN48715"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	27-Nov-07	="Community and social services"	01-Jul-07	30-Jun-08	33880.69	=""	="Yungnora Association Inc"	27-Nov-07 11:36 AM	
-="CN48771"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	39535.63	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	
-="CN48773"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	30116.59	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	
-="CN48805"	"ICON fibre annual operational costs"	="Australian Crime Commission"	27-Nov-07	="Maintenance or support fees"	20-Nov-07	20-Nov-07	33000.00	=""	="Department Finance & Administration"	27-Nov-07 03:58 PM	
-="CN48809"	"Course fees and panel transaction fees"	="Australian Crime Commission"	27-Nov-07	="Development"	23-Nov-07	30-Jun-08	30000.00	=""	="Australian Public Service Commission"	27-Nov-07 04:14 PM	
-="CN48821"	"Repair of Blackhawk Tail Rotor Gearbox"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	22-Aug-07	30-Aug-07	35707.80	=""	="Sikorsky Aircraft Australia LTD"	27-Nov-07 04:52 PM	
-="CN48828"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	28-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	32220.54	=""	="LAND ROVER AUSTRALIA"	28-Nov-07 07:59 AM	
-="CN48843"	"Contractors C"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Oct-07	31-Jan-08	30000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 09:55 AM	
-="CN48857"	"EDDPL76 Employer Reference Group"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	06-Aug-08	30000.00	=""	="ADVANCE EMPLOYMENT INCORPORATED"	28-Nov-07 09:57 AM	
-="CN48858"	"EDDPL95 Training2work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="ESSENTIAL PERSONNEL"	28-Nov-07 09:57 AM	
-="CN48860"	"Construction Pathways EDDPL 139"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	06-Jun-08	30000.00	=""	="ASPIRE EMPLOYMENT"	28-Nov-07 09:57 AM	
-="CN48861"	"Blacktown Emerging Communities EDDPL158"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	11-Jan-08	30000.00	=""	="THE SALVATION ARMY"	28-Nov-07 09:57 AM	
-="CN48867"	"Temp contractor"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	36000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	28-Nov-07 09:58 AM	
-="CN48874"	"EDDPL41 Jobs for People with Disability"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	13-Jun-08	30000.00	=""	="STEPS DISABILITY QLD INC"	28-Nov-07 09:59 AM	
-="CN48881"	"Professional Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	15-Oct-07	15-Oct-07	30287.80	=""	="CLAYTON UTZ"	28-Nov-07 09:59 AM	
-="CN48887"	"Sign On Employment Project - 145"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-May-08	30000.00	=""	="DEAF CHILDREN AUSTRALIA"	28-Nov-07 10:00 AM	
-="CN48904"	"EDDDPL97 Grocery Pre-Post Program"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="DIRECT RECRUITMENT PTY LTD"	28-Nov-07 10:02 AM	
-="CN48915"	"EDDPL 50 - SEDS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Nov-07	06-Jun-08	30000.00	="DEWR DG 16 2007/08"	="SYDNEY EMPLOYMENT DEVELOPMENT SERVI"	28-Nov-07 10:03 AM	
-="CN48920"	"Short-term IT consultancy"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	31-Dec-07	30250.00	=""	="XSI DATA SOLUTIONS PTY LTD"	28-Nov-07 10:03 AM	
-="CN48952"	"MAIS27 Helping Hand Aged Care Workforce"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	31-May-08	30000.00	="DEWR MAIS 27 2007/08"	="HELPING HAND AGED CARE INC."	28-Nov-07 10:06 AM	
-="CN48969"	"Hervey Bay Transport/Mill Transit-104"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:08 AM	
-="CN48982"	"Develop training package for CEB's"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	30-Nov-07	30000.00	=""	="PROFESSOR ROBYN PENMAN"	28-Nov-07 10:09 AM	
-="CN49020"	"2008 Graduate Programme Reference Checks"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	30-Nov-10	37500.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:13 AM	
-="CN49025"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	30000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	
-="CN49036"	"IT1 - Backup and Recovery"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	09-Oct-07	21-Dec-07	35000.00	="N/a"	="DELOITTE"	28-Nov-07 10:15 AM	
-="CN49040"	"EDDPL21 - Eastwork Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="EASTWORK EMPLOYMENT"	28-Nov-07 10:15 AM	
-="CN49044"	"EDDPL24 - Training into Hospitals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="SARINA RUSSO JOB ACCESS"	28-Nov-07 10:16 AM	
-="CN49047"	"Mildura Helath & Community Services-115"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="SUNRAYSIA INSTITUTE OF TAFE"	28-Nov-07 10:16 AM	
-="CN49052"	"Hire Ability (EDDPL-112)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="INNERSKILL"	28-Nov-07 10:17 AM	
-="CN49053"	"EDDPL60 Pathway to Food Manufacturing"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49054"	"EDDPL67 Pathway to mining industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49055"	"EDDPL69 Jobs for your Mob"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49056"	"EDDPl99 Mining for Your Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	01-May-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	
-="CN49057"	"EDDPL11 Disability Employee Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	33000.00	=""	="COMMUNITY BRIDGING SERVICES ( CBS I"	28-Nov-07 10:17 AM	
-="CN49079"	"Family Room Fitout at Elizabeth St Sydney"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	05-Oct-07	31-Dec-07	35250.60	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:19 AM	
-="CN49080"	"Fitout Training Rm 29-31 BBP (L4)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	05-Oct-07	31-Dec-07	36597.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:19 AM	
-="CN49086"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	04-Oct-07	04-Nov-07	34643.40	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:20 AM	
-="CN49088"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	04-Oct-07	30-Sep-08	30000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:20 AM	
-="CN49092"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	03-Oct-07	30-Jun-08	34261.43	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:21 AM	
-="CN49096"	" HR Recruitment "	="Future Fund Management Agency"	28-Nov-07	="Personnel recruitment"	07-Nov-07	07-Nov-07	33000.00	=""	="BarberBunton"	28-Nov-07 11:03 AM	
-="CN49137"	"Software upgrade to four Ericsson PABX's located in Sydeny, Perth, Adelaide and Adelaide Terminal"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Telecommunications media services"	20-Nov-07	31-Jan-08	39341.13	=""	="Telstra Business Systems"	28-Nov-07 11:18 AM	
-="CN49187"	"Prepayment (SUBS)"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	28-Aug-07	30-Jun-08	35667.07	=""	="LexisNexis"	28-Nov-07 05:47 PM	
-="CN49207"	"Primary Stowage Pockets"	="Defence Materiel Organisation"	29-Nov-07	="Life vests or preservers"	27-Aug-07	30-Jan-08	33000.00	=""	="SOS MARINE"	29-Nov-07 09:37 AM	
-="CN49211-A1"	"provision for Business Analyst"	="Comsuper"	29-Nov-07	="Human resources services"	28-May-07	26-Jan-08	34366.00	=""	="Winmill Information technology"	29-Nov-07 11:04 AM	
-="CN49250"	"airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	01-Oct-07	22-Nov-07	31659.10	=""	="American Express"	29-Nov-07 02:39 PM	
-="CN49260"	" NSN 1610-00-846-8332  REPAIR/OVERHAUL OF PROPELLER, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	29-Nov-07	27-Feb-08	30905.58	=""	="Safe Air Ltd"	29-Nov-07 04:11 PM	
-="CN49279-A1"	"2008 Journal subscriptions"	="Australian Institute of Family Studies"	30-Nov-07	="Education and Training Services"	14-Nov-07	14-Nov-07	30988.48	=""	="EBSCO"	30-Nov-07 08:32 AM	
-="CN49278"	" Coolant additive   6850 66-153-9135   Nalcool Extreme Control in 15L  100 Drums "	="Defence Materiel Organisation"	30-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	26-Nov-07	33880.00	=""	="MTU"	30-Nov-07 08:33 AM	
-="CN49299"	"REPAIR, MODIFICATION AND SERVICE OF CORAL SNAKE"	="Department of Defence"	30-Nov-07	="Rescue ships or boats"	04-Jul-07	18-Aug-07	32935.38	=""	="BERENDSEN FLUID POWER"	30-Nov-07 12:23 PM	
-="CN49312"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	33000.00	="RFT06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:40 PM	
-="CN49326"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	33000.00	="RMS07/0785"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	
-="CN49341"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	31152.00	="19102007"	="VERIZON"	30-Nov-07 12:43 PM	
-="CN49354"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	31803.50	="N/A"	="NSW RURAL FIRE SERVICE"	30-Nov-07 12:45 PM	
-="CN49360"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	31900.00	="RFT 2003 IA"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:45 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48142"	"ASLAV PARTS - CABLE ASSY"	="Department of Defence"	26-Nov-07	="Armoured fighting vehicles"	23-Nov-07	15-Mar-08	31295.00	=""	="LOPAC PTY LTD"	26-Nov-07 07:52 AM	

+="CN48157-A1"	"VP 181- Election Project Manager"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	38800.00	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48196"	"Provision  of software upgrade to Alcaltel PABX Systems"	="Department of Parliamentary Services"	26-Nov-07	="Software patches or upgrades"	16-Nov-07	30-Dec-07	31847.20	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48199"	"Provision of  uniterruptible power supply"	="Department of Parliamentary Services"	26-Nov-07	="Power generation control equipment"	15-Nov-07	30-Dec-07	38885.00	=""	="Honeywell Limited"	26-Nov-07 11:46 AM	

+="CN48211"	"Lease at Benalla, Victoria."	="Centrelink"	26-Nov-07	="Real estate services"	01-Jul-07	30-Jun-09	31574.40	=""	="North East Support and Action for Youth Incorporated"	26-Nov-07 11:53 AM	

+="CN48247"	"Freight Services for ITSG 07/08 FY"	="Department of Employment and Workplace Relations"	26-Nov-07	="Transport operations"	06-Jul-07	30-Jun-08	34966.50	=""	="COPE TRANSPORT (SA) PTY LTD"	26-Nov-07 12:21 PM	

+="CN48285"	"Benchmarking of Airborne Exposures"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	14-Dec-07	38500.00	=""	="UNIVERSITY OF WESTERN SYDNEY"	26-Nov-07 12:26 PM	

+="CN48372"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	18-Jun-07	30-Jun-07	36736.56	=""	="GREYTHORN"	26-Nov-07 12:37 PM	

+="CN48375"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	20-Jun-07	30-Jun-07	39072.00	=""	="GREYTHORN"	26-Nov-07 12:37 PM	

+="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	

+="CN48395"	"File storage, archival destruction"	="Department of Employment and Workplace Relations"	26-Nov-07	="Information services"	12-Dec-06	23-Dec-07	37185.36	=""	="RECALL INFORMATION MANAGEMENT"	26-Nov-07 12:39 PM	

+="CN48400"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Feb-07	19-Dec-11	32649.64	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:40 PM	

+="CN48408"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	16-May-07	30-Jun-07	30000.00	=""	="WIZARD PERSONNEL/OFFICE PERS'L"	26-Nov-07 12:41 PM	

+="CN48431"	"CPO017172 - Boat trailer"	="Australian Customs and Border Protection Service"	26-Nov-07	="Transport operations"	20-Nov-07	20-Dec-07	31900.00	=""	="Voyager Trailers"	26-Nov-07 02:23 PM	

+="CN48453"	"COMMITTE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	13-Nov-07	31059.00	=""	="Australian Public Service"	26-Nov-07 02:42 PM	

+="CN48455"	"VENUE HIRE NOVOTEL NCG CONFERENCE"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	15-Nov-07	31305.66	=""	="NOVOTEL ST KILDA"	26-Nov-07 02:42 PM	

+="CN48478"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	17-Oct-07	17-Oct-07	30590.61	=""	="RECALL TOTAL INFORMATION MA"	26-Nov-07 02:58 PM	

+="CN48488"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Office supplies"	18-Oct-07	18-Oct-07	33235.71	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	

+="CN48526"	"RECRUITMENT"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	21-Nov-07	35654.79	=""	="Hudson Global Resources (Aust) P/L"	26-Nov-07 03:03 PM	

+="CN48534"	"PHONE ACCOUNT"	="Australian Taxation Office"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	07-Nov-07	15-Nov-07	36642.63	=""	="TELSTRA"	26-Nov-07 03:04 PM	

+="CN48544"	"CABCHRG 1808-140907"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	17-Sep-07	11-Oct-07	39831.18	=""	="CABCHARGE AUSTRALIA LIMITED"	26-Nov-07 03:05 PM	

+="CN48552"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	35759.20	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48563"	"Provision of Archiving Services"	="Medicare Australia"	26-Nov-07	="Storage"	12-Oct-07	12-Oct-07	33872.83	=""	="Iron Mountain Australia Pty Ltd"	26-Nov-07 03:07 PM	

+="CN48575"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	34120.61	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48581"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	11-Oct-07	30343.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:09 PM	

+="CN48615"	"Hire of Electoral Premises"	="Australian Electoral Commission"	26-Nov-07	="Lease and rental of property or building"	12-Nov-07	24-Nov-07	33600.00	=""	="Princess Theatre Pty Ltd"	26-Nov-07 04:53 PM	

+="CN48593"	"Medical Consumables"	="Defence Materiel Organisation"	27-Nov-07	="Medical Equipment and Accessories and Supplies"	21-Nov-07	03-Dec-07	32780.00	=""	="GKE Australia Pty Ltd"	27-Nov-07 06:50 AM	

+="CN48647"	"Telephone Handsets and Accessories"	="Australian Electoral Commission"	27-Nov-07	="Phone handsets"	27-Sep-07	27-Oct-07	32344.18	=""	="Telstra"	27-Nov-07 09:54 AM	

+="CN48651"	"Maintenance of indoor plants and fytogreen wall"	="Australian Crime Commission"	27-Nov-07	="Non flowering plants"	01-Oct-07	31-Dec-07	31926.40	=""	="Rentokil Initial Pty Ltd"	27-Nov-07 10:14 AM	

+="CN48710"	"Technical Support"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	20-Dec-06	22-Dec-06	35200.00	="T2004/0699"	="VOLANTE SOLUTIONS"	27-Nov-07 11:32 AM	

+="CN48715"	" Centrelink Agent Program - Area North Australia. "	="Centrelink"	27-Nov-07	="Community and social services"	01-Jul-07	30-Jun-08	33880.69	=""	="Yungnora Association Inc"	27-Nov-07 11:36 AM	

+="CN48771"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	39535.63	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	

+="CN48773"	"Airfares"	="Bureau of Meteorology"	27-Nov-07	="Passenger transport"	08-Nov-07	30-Nov-07	30116.59	=""	="Carlson Wagonlit Travel"	27-Nov-07 03:04 PM	

+="CN48805"	"ICON fibre annual operational costs"	="Australian Crime Commission"	27-Nov-07	="Maintenance or support fees"	20-Nov-07	20-Nov-07	33000.00	=""	="Department Finance & Administration"	27-Nov-07 03:58 PM	

+="CN48809"	"Course fees and panel transaction fees"	="Australian Crime Commission"	27-Nov-07	="Development"	23-Nov-07	30-Jun-08	30000.00	=""	="Australian Public Service Commission"	27-Nov-07 04:14 PM	

+="CN48821"	"Repair of Blackhawk Tail Rotor Gearbox"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	22-Aug-07	30-Aug-07	35707.80	=""	="Sikorsky Aircraft Australia LTD"	27-Nov-07 04:52 PM	

+="CN48828"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	28-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Dec-07	32220.54	=""	="LAND ROVER AUSTRALIA"	28-Nov-07 07:59 AM	

+="CN48843"	"Contractors C"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	25-Oct-07	31-Jan-08	30000.00	=""	="CAREERS UNLIMITED P/L"	28-Nov-07 09:55 AM	

+="CN48857"	"EDDPL76 Employer Reference Group"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	06-Aug-08	30000.00	=""	="ADVANCE EMPLOYMENT INCORPORATED"	28-Nov-07 09:57 AM	

+="CN48858"	"EDDPL95 Training2work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="ESSENTIAL PERSONNEL"	28-Nov-07 09:57 AM	

+="CN48860"	"Construction Pathways EDDPL 139"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	06-Jun-08	30000.00	=""	="ASPIRE EMPLOYMENT"	28-Nov-07 09:57 AM	

+="CN48861"	"Blacktown Emerging Communities EDDPL158"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	30-Oct-07	11-Jan-08	30000.00	=""	="THE SALVATION ARMY"	28-Nov-07 09:57 AM	

+="CN48867"	"Temp contractor"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	26-Oct-07	30-Nov-07	36000.00	=""	="ROSS HUMAN DIRECTIONS LIMITED"	28-Nov-07 09:58 AM	

+="CN48874"	"EDDPL41 Jobs for People with Disability"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Oct-07	13-Jun-08	30000.00	=""	="STEPS DISABILITY QLD INC"	28-Nov-07 09:59 AM	

+="CN48881"	"Professional Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Legal services"	15-Oct-07	15-Oct-07	30287.80	=""	="CLAYTON UTZ"	28-Nov-07 09:59 AM	

+="CN48887"	"Sign On Employment Project - 145"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	30-May-08	30000.00	=""	="DEAF CHILDREN AUSTRALIA"	28-Nov-07 10:00 AM	

+="CN48904"	"EDDDPL97 Grocery Pre-Post Program"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	13-Jun-08	30000.00	=""	="DIRECT RECRUITMENT PTY LTD"	28-Nov-07 10:02 AM	

+="CN48915"	"EDDPL 50 - SEDS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	15-Nov-07	06-Jun-08	30000.00	="DEWR DG 16 2007/08"	="SYDNEY EMPLOYMENT DEVELOPMENT SERVI"	28-Nov-07 10:03 AM	

+="CN48920"	"Short-term IT consultancy"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	31-Dec-07	30250.00	=""	="XSI DATA SOLUTIONS PTY LTD"	28-Nov-07 10:03 AM	

+="CN48952"	"MAIS27 Helping Hand Aged Care Workforce"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	31-Oct-07	31-May-08	30000.00	="DEWR MAIS 27 2007/08"	="HELPING HAND AGED CARE INC."	28-Nov-07 10:06 AM	

+="CN48969"	"Hervey Bay Transport/Mill Transit-104"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:08 AM	

+="CN48982"	"Develop training package for CEB's"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	17-Sep-07	30-Nov-07	30000.00	=""	="PROFESSOR ROBYN PENMAN"	28-Nov-07 10:09 AM	

+="CN49020"	"2008 Graduate Programme Reference Checks"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	30-Nov-10	37500.00	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	28-Nov-07 10:13 AM	

+="CN49025"	"Security Vetting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Sep-07	31-May-12	30000.00	=""	="STAFF CHECK PTY LTD"	28-Nov-07 10:14 AM	

+="CN49036"	"IT1 - Backup and Recovery"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	09-Oct-07	21-Dec-07	35000.00	="N/a"	="DELOITTE"	28-Nov-07 10:15 AM	

+="CN49040"	"EDDPL21 - Eastwork Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="EASTWORK EMPLOYMENT"	28-Nov-07 10:15 AM	

+="CN49044"	"EDDPL24 - Training into Hospitals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	08-Oct-07	13-Jun-08	30000.00	=""	="SARINA RUSSO JOB ACCESS"	28-Nov-07 10:16 AM	

+="CN49047"	"Mildura Helath & Community Services-115"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="SUNRAYSIA INSTITUTE OF TAFE"	28-Nov-07 10:16 AM	

+="CN49052"	"Hire Ability (EDDPL-112)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	06-Jun-08	30000.00	=""	="INNERSKILL"	28-Nov-07 10:17 AM	

+="CN49053"	"EDDPL60 Pathway to Food Manufacturing"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49054"	"EDDPL67 Pathway to mining industry"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	13-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49055"	"EDDPL69 Jobs for your Mob"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49056"	"EDDPl99 Mining for Your Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	01-May-08	30000.00	=""	="MISSION AUSTRALIA"	28-Nov-07 10:17 AM	

+="CN49057"	"EDDPL11 Disability Employee Recruitment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	11-Oct-07	16-Jun-08	33000.00	=""	="COMMUNITY BRIDGING SERVICES ( CBS I"	28-Nov-07 10:17 AM	

+="CN49079"	"Family Room Fitout at Elizabeth St Sydney"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	05-Oct-07	31-Dec-07	35250.60	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:19 AM	

+="CN49080"	"Fitout Training Rm 29-31 BBP (L4)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	05-Oct-07	31-Dec-07	36597.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:19 AM	

+="CN49086"	"Printing Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Manufacturing support services"	04-Oct-07	04-Nov-07	34643.40	=""	="MCMILLAN PRINT GROUP PTY LTD"	28-Nov-07 10:20 AM	

+="CN49088"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	04-Oct-07	30-Sep-08	30000.00	=""	="HMA BLAZE PTY LIMITED"	28-Nov-07 10:20 AM	

+="CN49092"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	03-Oct-07	30-Jun-08	34261.43	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:21 AM	

+="CN49096"	" HR Recruitment "	="Future Fund Management Agency"	28-Nov-07	="Personnel recruitment"	07-Nov-07	07-Nov-07	33000.00	=""	="BarberBunton"	28-Nov-07 11:03 AM	

+="CN49137"	"Software upgrade to four Ericsson PABX's located in Sydeny, Perth, Adelaide and Adelaide Terminal"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Telecommunications media services"	20-Nov-07	31-Jan-08	39341.13	=""	="Telstra Business Systems"	28-Nov-07 11:18 AM	

+="CN49187"	"Prepayment (SUBS)"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	28-Aug-07	30-Jun-08	35667.07	=""	="LexisNexis"	28-Nov-07 05:47 PM	

+="CN49207"	"Primary Stowage Pockets"	="Defence Materiel Organisation"	29-Nov-07	="Life vests or preservers"	27-Aug-07	30-Jan-08	33000.00	=""	="SOS MARINE"	29-Nov-07 09:37 AM	

+="CN49211-A1"	"provision for Business Analyst"	="Comsuper"	29-Nov-07	="Human resources services"	28-May-07	26-Jan-08	34366.00	=""	="Winmill Information technology"	29-Nov-07 11:04 AM	

+="CN49250"	"airfares"	="Department of the House of Representatives"	29-Nov-07	="Passenger air transportation"	01-Oct-07	22-Nov-07	31659.10	=""	="American Express"	29-Nov-07 02:39 PM	

+="CN49260"	" NSN 1610-00-846-8332  REPAIR/OVERHAUL OF PROPELLER, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	29-Nov-07	27-Feb-08	30905.58	=""	="Safe Air Ltd"	29-Nov-07 04:11 PM	

+="CN49279-A1"	"2008 Journal subscriptions"	="Australian Institute of Family Studies"	30-Nov-07	="Education and Training Services"	14-Nov-07	14-Nov-07	30988.48	=""	="EBSCO"	30-Nov-07 08:32 AM	

+="CN49278"	" Coolant additive   6850 66-153-9135   Nalcool Extreme Control in 15L  100 Drums "	="Defence Materiel Organisation"	30-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	26-Nov-07	33880.00	=""	="MTU"	30-Nov-07 08:33 AM	

+="CN49299"	"REPAIR, MODIFICATION AND SERVICE OF CORAL SNAKE"	="Department of Defence"	30-Nov-07	="Rescue ships or boats"	04-Jul-07	18-Aug-07	32935.38	=""	="BERENDSEN FLUID POWER"	30-Nov-07 12:23 PM	

+="CN49312"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	33000.00	="RFT06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:40 PM	

+="CN49326"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	33000.00	="RMS07/0785"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	

+="CN49341"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	31152.00	="19102007"	="VERIZON"	30-Nov-07 12:43 PM	

+="CN49354"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	31803.50	="N/A"	="NSW RURAL FIRE SERVICE"	30-Nov-07 12:45 PM	

+="CN49360"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	31900.00	="RFT 2003 IA"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:45 PM	

 ="CN49385-A1"	"Stationery"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Stationery"	19-Jun-07	18-Jun-08	31400.00	=""	="CANPRINT COMMUNICATIONS Pty Ltd"	30-Nov-07 04:07 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val40000to80000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val40000to80000.xls
@@ -1,174 +1,174 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN48143"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	64694.31	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:26 AM	
-="CN48153-A1"	"VP 176- email archiving solution"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	64039.39	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	
-="CN48167"	"Elecrticity Supply for November 2007 for OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	22-Nov-07	22-Dec-07	59400.00	="2007/00677"	="ActewAGL"	26-Nov-07 11:33 AM	
-="CN48169"	"Convergent Consulting Indigenous Community Radio Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	59840.00	="ATM07/241"	="CONVERGENT CONSULTING"	26-Nov-07 11:33 AM	
-="CN48175-A1"	"Telstra License Conditions"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	23-Aug-07	13-May-08	70000.00	="DCON/06/45"	="DLA  Phillips Fox"	26-Nov-07 11:34 AM	
-="CN48176"	"Courtyard Refurbishment - OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Oct-07	77539.00	="ATM2007/147"	="Picasso Building Pty Ltd"	26-Nov-07 11:34 AM	
-="CN48186"	"The Trustee for the King Family Trust (Techlink) Funding for BIA Port Augusta and Ceduna"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	30-Oct-07	30-Jun-10	72950.00	="ATM07/561"	="The Trustee for the King Family Tru"	26-Nov-07 11:35 AM	
-="CN48189"	"ICT Service panel Information  & Communication Services (DPS05048"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	28-Dec-07	48510.00	=""	="Adept KM Pty Ltd"	26-Nov-07 11:44 AM	
-="CN48201"	"Licensing for MySAP ERP includes software support & Maintenace Contract (DPS05084)"	="Department of Parliamentary Services"	26-Nov-07	="Software maintenance and support"	14-Nov-07	30-Jun-08	77623.87	=""	="SAP Australia Pty Ltd"	26-Nov-07 11:46 AM	
-="CN48241"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	79140.00	=""	="AFFINITY IT RECRUITMENT"	26-Nov-07 12:20 PM	
-="CN48243"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	55328.87	=""	="ITRAC RESOURCES PTY LTD"	26-Nov-07 12:21 PM	
-="CN48250"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	41030.00	=""	="OXYGEN BUSINESS SOLUTIONS PTY LTD"	26-Nov-07 12:22 PM	
-="CN48252"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Jul-07	30-Jun-08	74915.50	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:22 PM	
-="CN48256"	"Security clearances - vetting"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	11-Jul-07	11-Jul-07	53000.00	=""	="KVS KEY VETTING SERVICES"	26-Nov-07 12:23 PM	
-="CN48257"	"Handling and Storage"	="Department of Employment and Workplace Relations"	26-Nov-07	="Storage"	12-Jul-07	12-Jul-07	41000.00	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	26-Nov-07 12:23 PM	
-="CN48273"	"48 Port Serial Consoles"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	04-Sep-07	30-Jun-08	40027.12	=""	="ALPHAWEST SERVICE PTY LTD"	26-Nov-07 12:25 PM	
-="CN48275"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	05-Sep-07	30-Sep-08	43043.27	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:25 PM	
-="CN48303"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	72600.00	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:28 PM	
-="CN48307"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	57043.25	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:29 PM	
-="CN48311"	"Archival Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	60000.00	=""	="IRON MOUNTAIN PTY LTD"	26-Nov-07 12:29 PM	
-="CN48313"	"Fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	03-Sep-07	30-Jun-08	57085.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	
-="CN48315"	"Alice Springs - Fitout 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	53757.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	
-="CN48328"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Aug-06	30-Jun-08	42443.97	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:31 PM	
-="CN48334"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	42095.45	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48343"	"MAINTENANCE UPGRADE TO IT DATA STORAGE EQUIPMENTS."	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Sep-06	30-Jun-07	79376.28	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48346"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	31-Jul-07	31-Jul-07	66171.33	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	
-="CN48360"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	20-Jul-06	30-Jun-07	50638.77	=""	="MICROSOFT P/L"	26-Nov-07 12:35 PM	
-="CN48361"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jul-06	30-Nov-10	45000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:35 PM	
-="CN48363"	"Postage and Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	26-Jul-06	30-Jun-10	65000.00	=""	="AUST POST (ACT 131316)"	26-Nov-07 12:35 PM	
-="CN48377"	"WPA Amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	22-Jun-07	30-Jun-07	55000.00	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:37 PM	
-="CN48378"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Jun-07	30-Jun-07	75999.00	=""	="PRIME FOCUS CONSULTING"	26-Nov-07 12:37 PM	
-="CN48380"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	77000.00	=""	="SPACE-TIME RESEARCH PTY LTD"	26-Nov-07 12:38 PM	
-="CN48381"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jun-07	30-Jun-08	78625.00	=""	="VISION AUSTRALIA"	26-Nov-07 12:38 PM	
-="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	
-="CN48391"	"Job Seeker Omnibus Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	29-Nov-06	26-Oct-07	55310.00	=""	="TNS"	26-Nov-07 12:39 PM	
-="CN48405"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-May-07	30-Jun-07	40700.48	=""	="THE ONE UMBRELLA"	26-Nov-07 12:41 PM	
-="CN48414"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:38 PM	
-="CN48417"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:50 PM	
-="CN48425"	"Provision of Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	26-Nov-07	="Comprehensive health services"	19-Nov-07	30-Sep-09	45000.00	=""	="Rebecca King Speech Pathology Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48440"	"CPO017258 - CCTV equipment"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	30-Jun-08	53442.40	=""	="LAN 1 Pty Ltd"	26-Nov-07 02:24 PM	
-="CN48459"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	19-Oct-07	19-Oct-07	66880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	26-Nov-07 02:55 PM	
-="CN48460"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	22-Oct-07	30-Jun-08	49999.62	=""	="S.E.M. AUSTRALIA PTY LIMITED"	26-Nov-07 02:55 PM	
-="CN48461"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	40902.40	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 02:56 PM	
-="CN48462"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	48185.28	=""	="Frontier Group Australia"	26-Nov-07 02:56 PM	
-="CN48463"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	57200.00	=""	="ANATAS"	26-Nov-07 02:56 PM	
-="CN48464"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	57200.00	=""	="BLUELINE SOFTWARE PTY LTD"	26-Nov-07 02:56 PM	
-="CN48469"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	50310.48	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	
-="CN48472"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	46981.00	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	
-="CN48473"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	66774.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	
-="CN48475"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	42599.99	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:57 PM	
-="CN48486"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Components for information technology or broadcasting or telecommunications"	17-Oct-07	17-Oct-07	61207.28	=""	="EMC GLOBAL HOLDINGS COMPANY"	26-Nov-07 02:59 PM	
-="CN48487"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	18-Oct-07	18-Oct-07	45154.50	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	
-="CN48489"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Paper products"	19-Oct-07	30-Dec-07	71069.90	=""	="PARAGON PRINTERS"	26-Nov-07 02:59 PM	
-="CN48501"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	53367.60	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:00 PM	
-="CN48503"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	30-Oct-07	30-Oct-07	59787.20	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48506"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	66455.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48507"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	72612.10	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48508"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	42586.50	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	
-="CN48517"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Oct-07	29-Oct-07	79194.96	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:02 PM	
-="CN48518"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	67562.00	=""	="IBEX INTERIORS PTY LTD"	26-Nov-07 03:02 PM	
-="CN48525"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	52800.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:03 PM	
-="CN48546"	"QLD ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	62936.01	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48550"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	49975.98	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:05 PM	
-="CN48553"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	23-Oct-07	46351.17	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48571"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	15-Oct-07	30-Oct-07	42174.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 03:08 PM	
-="CN48574"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	16-Oct-07	43301.50	=""	="SCHIAVELLO SYSTEMS (NSW) PTY LTD"	26-Nov-07 03:08 PM	
-="CN48576"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Computer services"	09-Oct-07	09-Oct-07	41580.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 03:09 PM	
-="CN48583"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Computer services"	11-Oct-07	30-Oct-07	54862.50	=""	="TIBCO SOFTWARE AUSTRALIA PTY LTD"	26-Nov-07 03:09 PM	
-="CN48597"	"ITContractors"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	20-Feb-08	63360.00	=""	="VALUE SOURCING"	26-Nov-07 03:53 PM	
-="CN48607"	" NSN 1560-66-050-5351  PURCHASE OF BRACKET ASSEMBLY, EN  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	20-Nov-07	29-Jan-08	52006.40	=""	="Milspec Services Pty Ltd"	26-Nov-07 04:40 PM	
-="CN48608"	"07/2379 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	26-Nov-07	="Temporary personnel services"	05-Nov-07	31-Dec-07	43400.00	="05/0717"	="CCS Index Pty Ltd"	26-Nov-07 04:42 PM	
-="CN48621-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	02-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:04 AM	
-="CN48622-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:08 AM	
-="CN48623-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:13 AM	
-="CN48624-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	08-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:20 AM	
-="CN48625-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:23 AM	
-="CN48626-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	08-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:27 AM	
-="CN48627-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:31 AM	
-="CN48610"	" CMO07/0015 - IT Contractor - 0717-0892 - ICT Panel "	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	21-Nov-07	29-Feb-08	50000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:15 AM	
-="CN48637"	"06/1201 - IT Contractor - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	01-Jul-07	19-Oct-07	65120.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:18 AM	
-="CN48641"	"Software Maintenance"	="Australian Crime Commission"	27-Nov-07	="Software"	01-Nov-07	01-Nov-07	40837.50	=""	="Identity Systems Pty Ltd"	27-Nov-07 09:25 AM	
-="CN48645"	"Freight Charges"	="Australian Crime Commission"	27-Nov-07	="Freight loading or unloading"	02-Nov-07	02-Nov-07	60000.00	=""	="Australian Air Express"	27-Nov-07 09:53 AM	
-="CN48649"	"Engineering Services for Accommodation Projects"	="Australian Crime Commission"	27-Nov-07	="Professional engineering services"	07-Nov-07	07-Nov-07	50000.00	=""	="B Armstrong and Co"	27-Nov-07 10:03 AM	
-="CN48652-A1"	"Provision of mobile pedestal units Australia Wide"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	27-Jul-06	27-Jul-06	42460.00	=""	="OfficeMax Australia Ltd."	27-Nov-07 10:16 AM	
-="CN48659-A1"	" Client Research Servics "	="Department of Immigration and Citizenship"	27-Nov-07	="Educational and research structures"	30-Jul-07	22-Dec-07	50000.00	=""	="RPR Consulting Pty Ltd"	27-Nov-07 10:32 AM	
-="CN48666"	"Travel and Expense claims in relation to ERP project"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	08-Nov-07	08-Nov-07	75000.00	="ACC/2006/13"	="Oxygen Business Solutions"	27-Nov-07 10:51 AM	
-="CN48669-A1"	" Financial Advisory for IHSS "	="Department of Immigration and Citizenship"	27-Nov-07	="Economic or financial evaluation of projects"	01-Jul-07	30-Jun-08	63000.00	=""	="Cogent Business Solutions Pty Ltd"	27-Nov-07 10:58 AM	
-="CN48672"	"Provision of Height Adjustable Desks"	="Department of Immigration and Citizenship"	27-Nov-07	="Accommodation furniture"	03-Oct-06	03-Oct-06	50963.00	=""	="Schiavello (ACT) Pty Ltd"	27-Nov-07 11:01 AM	
-="CN48683"	"Implementation plan to deliver project"	="Australian Crime Commission"	27-Nov-07	="Productivity or efficiency studies or implementation"	02-Jun-07	02-Jun-07	48415.46	=""	="South Australia Police"	27-Nov-07 11:17 AM	
-="CN48689-A1"	" Assistance and further development of stakeholder management  APSC SON62 "	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	01-Nov-07	30-Apr-08	70000.00	=""	="The Value Creation Group"	27-Nov-07 11:24 AM	
-="CN48694"	"SAP Helpdesk and support services"	="Department of Transport and Regional Services"	27-Nov-07	="Software"	02-Oct-07	11-Jan-08	49999.99	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	27-Nov-07 11:30 AM	
-="CN48696"	"Contract Staff"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	26-Oct-07	31-Dec-07	45000.00	="T2004/0699"	="Frontier Group"	27-Nov-07 11:30 AM	
-="CN48698"	"Developer"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	02-Oct-07	01-Jan-08	55000.00	="T2004/0699"	="SMS Management & Technology"	27-Nov-07 11:31 AM	
-="CN48703"	"supply of IT solutions services"	="Department of Transport and Regional Services"	27-Nov-07	="Computer services"	07-Nov-07	30-Jun-08	75000.00	="TRS06/017"	="SME GATEWAY LTD"	27-Nov-07 11:31 AM	
-="CN48712"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	27-Nov-07	="Legal services"	22-Nov-07	30-Jun-09	56921.45	="TRS06/175"	="MINTER ELLISON LAWYERS"	27-Nov-07 11:32 AM	
-="CN48150"	"REPAIR OF BLACKHAWK MIXER CONTROL"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	05-Sep-07	12-Nov-07	40082.98	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	27-Nov-07 11:44 AM	
-="CN48730"	"Repair of Blackhawk Centre Stabilator"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	29-Aug-07	18-Sep-07	43062.75	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 01:22 PM	
-="CN48737-A1"	"Assist in the procurement of a panel of project managers for the AFP"	="Australian Federal Police"	27-Nov-07	="Professional procurement services"	26-Nov-07	01-May-08	55296.00	="RFT 22-2005"	="Grosvenor Management Consulting"	27-Nov-07 01:33 PM	
-="CN48750"	"Serviced Training Facility"	="Department of Immigration and Citizenship"	27-Nov-07	="Conference centres"	19-Mar-07	08-Jun-07	50000.00	=""	="Rydges Hotels Ltd"	27-Nov-07 01:58 PM	
-="CN48761-A1"	"Qualitative Research into the effectiveness of the Living in Harmony Programme"	="Department of Immigration and Citizenship"	27-Nov-07	="Management advisory services"	31-Jul-06	08-Oct-06	69300.00	=""	="The trustee for the Shanahan Family Trust trading as Elliott and Shanahan Research"	27-Nov-07 02:40 PM	
-="CN48780"	"Telecommunications Services"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	14-Nov-07	30-Nov-07	58513.69	=""	="Powertel Ltd"	27-Nov-07 03:05 PM	
-="CN48786"	"LOGISTICAL SUPPORT FOR OFFSHORE AWS TRIP INC VESSEL CHARTER"	="Bureau of Meteorology"	27-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Dec-07	59400.00	=""	="The Great Escape Charter Company"	27-Nov-07 03:05 PM	
-="CN48787"	"Cisco communication equipment"	="Bureau of Meteorology"	27-Nov-07	="Components for information technology or broadcasting or telecommunications"	21-Nov-07	26-Nov-07	44169.05	=""	="Cisco Systems Australia Pty Ltd"	27-Nov-07 03:05 PM	
-="CN48789"	"Competency based training for staff with tsunami w arning services"	="Bureau of Meteorology"	27-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	07-Dec-07	53966.00	=""	="Dr Ian Bell"	27-Nov-07 03:06 PM	
-="CN48790"	"Supply & installation of refrigerationequipment fo r Willis Island freezer room"	="Bureau of Meteorology"	27-Nov-07	="Electrical equipment and components and supplies"	22-Nov-07	28-Dec-07	61893.70	=""	="First Degree"	27-Nov-07 03:06 PM	
-="CN48800"	"Parliamentary Zone Coach Parking Study & Temporary Car Park"	="National Capital Authority"	27-Nov-07	="Traffic engineering"	13-Aug-07	31-Jan-08	58852.20	=""	="SMEC Australia Pty Ltd"	27-Nov-07 03:36 PM	
-="CN48806"	"Computer Servers"	="Australian Crime Commission"	27-Nov-07	="Computer servers"	11-Oct-07	11-Nov-07	73663.12	=""	="Fujitsu Australia Ltd"	27-Nov-07 04:03 PM	
-="CN48820"	"a/c spares: 1560-01-290-1728, support, qty 12."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	15-May-08	76881.82	=""	="sikorsky aust"	27-Nov-07 04:40 PM	
-="CN48839"	"Help Desk Analyst Services "	="Family Court of Australia"	28-Nov-07	="Technical support or help desk services"	26-Nov-07	23-May-08	45408.00	=""	="Talent International"	28-Nov-07 09:47 AM	
-="CN48851"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	23-Oct-07	23-Oct-07	68469.59	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:56 AM	
-="CN48856"	"SUPPLY AND INSTALL ICON FIBRE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Components for information technology or broadcasting or telecommunications"	19-Oct-07	30-Nov-07	58514.50	=""	="ECOWISE SERVICES"	28-Nov-07 09:57 AM	
-="CN48869"	"EBSCO 2008 subscription renewals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	26-Oct-07	31-Dec-08	45000.00	=""	="EBSCO AUSTRALIA"	28-Nov-07 09:58 AM	
-="CN48880"	"Radio ads"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	15-Oct-07	31-Oct-07	75000.00	=""	="UNIVERSAL MCCANN"	28-Nov-07 09:59 AM	
-="CN48892"	"Annual Subscriptions for Legal and WRL - 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	19-Oct-07	31-Aug-08	68091.68	=""	="LEXIS NEXIS"	28-Nov-07 10:00 AM	
-="CN48901"	"2007-08 Workers Comp"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Oct-07	30-Jun-08	79725.00	=""	="COMCARE"	28-Nov-07 10:01 AM	
-="CN48902"	"Fitout - 47 Mitchell St, Darwin (L5)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	16-Oct-07	31-Dec-07	50325.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:01 AM	
-="CN48912"	"EDDP 137-MAIS 33-New Entrants Aged Care"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	79500.00	="DEWR DG 12 2007/08"	="AGED & COMMUNITY SERVICES TASMANIA"	28-Nov-07 10:02 AM	
-="CN48914"	"MAIS 37-Industry Skilling for Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	79200.00	="DEWR DG 14 2007/08"	="AUSTRALIAN MANUFACTURING TECHNOLOGY"	28-Nov-07 10:03 AM	
-="CN48928"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office supplies"	23-Nov-07	19-Dec-11	49800.00	=""	="OFFICEMAX AUSTRALIA LTD"	28-Nov-07 10:04 AM	
-="CN48933"	"Temp staff - Graham Bartlett"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	30-Jun-08	50000.00	=""	="FIRSTWATER"	28-Nov-07 10:04 AM	
-="CN48964"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	08-Nov-07	30-Jun-08	41603.11	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:08 AM	
-="CN48989"	"ARC Linkage Grant - Asessing the social"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	24-Sep-07	30-Jun-10	66000.00	=""	="UNIVERSITY OF CANBERRA"	28-Nov-07 10:10 AM	
-="CN48994"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	55000.00	="Cotract"	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:11 AM	
-="CN48995"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	60500.00	="Contract"	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:11 AM	
-="CN49005"	"Data Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Telecommunications media services"	27-Jul-07	30-Jun-08	75810.00	=""	="TRANSACT CAPITAL COMMUNICATIONS"	28-Nov-07 10:12 AM	
-="CN49010"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	63580.00	=""	="TARAKAN CONSULTING PTY LTD"	28-Nov-07 10:12 AM	
-="CN49019"	"Licences"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	13-Sep-07	30-Jun-08	75817.50	="TBA"	="NGA.NET PTY LTD"	28-Nov-07 10:13 AM	
-="CN49027"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	12-Sep-07	30-Jun-08	48328.50	="ITC"	="JULIA ROSS PERSONNEL"	28-Nov-07 10:14 AM	
-="CN49059"	"Maintenance to data storage equipments"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	11-Oct-07	30-Jun-08	63967.55	=""	="FUJITSU AUSTRALIA LTD"	28-Nov-07 10:17 AM	
-="CN49065"	"RIS for General falls in construction"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	28-Sep-07	15-Dec-07	51744.00	=""	="ACCESS ECONOMICS PTY LTD"	28-Nov-07 10:18 AM	
-="CN49067"	"G04 Remote Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	48079.18	=""	="ORIMA RESEARCH PTY LTD"	28-Nov-07 10:18 AM	
-="CN49091"	"Payment of gazette notifications"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	03-Oct-07	30-Jun-08	45760.10	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:20 AM	
-="CN49111"	"ACTPLA Fees for DAFF Fit-out"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	26-Feb-07	30-Nov-07	41360.00	=""	="BCA Certifiers"	28-Nov-07 11:16 AM	
-="CN49121"	"Car Parking for Staff at DHL Carpark"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	46332.00	=""	="Australia Pacific Airports Melb Pty Ltd"	28-Nov-07 11:17 AM	
-="CN49124"	"Provision of Secruity Assessments"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Nov-07	30-Jun-08	49000.00	=""	="PerSec Solutions"	28-Nov-07 11:17 AM	
-="CN49127"	"Provision of Consultancy services and Information Forums under the NBSII"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	50000.00	=""	="South Australian Farmers Federation Incorporated"	28-Nov-07 11:17 AM	
-="CN49129"	"Provision of consultant services for Information Forums under NBS II"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	50000.00	=""	="Victorian Farmers Federation"	28-Nov-07 11:17 AM	
-="CN49134"	"Provision of information forums"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	43113.00	=""	="Tasmanian Farmers and Graziers Association"	28-Nov-07 11:18 AM	
-="CN49138"	"Supply 6 x PR009 Portable Digital Interview Recording Systems."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Office machines and their supplies and accessories"	19-Nov-07	15-Feb-08	72270.00	=""	="TPR Systems"	28-Nov-07 11:18 AM	
-="CN49166"	"Not In Catalogue Cold Weather Gloves."	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	02-Nov-07	30-Nov-07	41793.20	=""	="Platypus Outdoor Group"	28-Nov-07 03:08 PM	
-="CN49172"	"Repair of Circuit Card Assembly."	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	28-Nov-07	28-May-08	51600.00	=""	="Raytheon Australia Pty Ltd"	28-Nov-07 03:41 PM	
-="CN49184-A2"	"ICON Annual Levy-Admin"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	20-Nov-07	02-Sep-08	43000.00	=""	="Department of Finance & Administrat"	28-Nov-07 05:46 PM	
-="CN49196"	"Subscription 2007/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Information services"	04-Sep-07	06-Sep-07	45180.00	=""	="Thomson Legal & Regulatory Group"	28-Nov-07 05:47 PM	
-="CN49248"	"Consultancy IT"	="Department of the House of Representatives"	29-Nov-07	="Information technology consultation services"	06-Nov-07	21-Dec-07	43307.00	=""	="Business Aspect Pty Ltd"	29-Nov-07 02:29 PM	
-="CN49251"	"Internal audit 2007/8"	="Department of the House of Representatives"	29-Nov-07	="Accounting and auditing"	01-Jul-07	31-Dec-07	43350.00	=""	="KPMG"	29-Nov-07 02:44 PM	
-="CN49252"	"CASE MAIL DISTRIBUTION, ALUMINIUM FRAME, IN ACCORDANCE WITH DEFENCE STANDARD DEF (AUST) 8357 AND DEFENCE DRAWING SERIES ADE (M) 170, QUANTITY 40. "	="Defence Materiel Organisation"	29-Nov-07	="Miscellaneous hardware"	16-Nov-07	15-Feb-08	56276.00	="G3400"	="EUROTECH"	29-Nov-07 02:51 PM	
-="CN49254"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0998 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	29-Nov-07	="Aerospace systems and components and equipment"	23-Nov-07	31-Dec-07	56395.98	=""	="Goodrich Control Systems"	29-Nov-07 03:33 PM	
-="CN49256"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1871 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	29-Nov-07	="Aerospace systems and components and equipment"	23-Nov-07	31-Dec-07	64808.22	=""	="Goodrich Control Systems"	29-Nov-07 03:46 PM	
-="CN49257"	" AIRCRAFT SPARES  NSN: 1615-01-086-1498  BEAM ASSY TAIL ROTOR  QTY: 10 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	17-Aug-07	28-May-08	62931.22	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	29-Nov-07 03:58 PM	
-="CN49265"	" NSN 2840-00-627-2710  PURCHASE OF COUPLING, HELICAL SP  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	05-Feb-08	41070.68	=""	="Military Aviation Spares Pty Ltd"	29-Nov-07 04:18 PM	
-="CN49272"	" NSN 3110-01-399-7537  PURCHASE OF BEARING, ROLLER, CYLINDRICAL STEEL OVERALL  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	54203.46	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:30 PM	
-="CN49275"	"Brake Drum"	="Defence Materiel Organisation"	30-Nov-07	="Brake drum"	16-Nov-07	15-Jan-08	51303.25	=""	="Premier Automotive Group"	30-Nov-07 07:44 AM	
-="CN49282"	"Services in relation to data collection in respect of an online survey of family relationship services"	="Australian Institute of Family Studies"	30-Nov-07	="Internet based market research"	19-Nov-07	31-Jul-09	71978.50	=""	="I-View Pty Ltd"	30-Nov-07 08:47 AM	
-="CN49302"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Office Equipment and Accessories and Supplies"	23-Nov-07	31-Mar-08	66000.00	="Not available"	="CANON AUSTRALIA P/L - ACT"	30-Nov-07 12:39 PM	
-="CN49304"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	44000.00	="00"	="DELL COMPUTER PTY LIMITED"	30-Nov-07 12:39 PM	
-="CN49306"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	52802.30	="06/06490"	="INSIGHT"	30-Nov-07 12:40 PM	
-="CN49317"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	28-Mar-08	53000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:41 PM	
-="CN49322"	"Capital Expenditure - Software"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	74223.01	="06/09065-06"	="DIMENSION DATA AUSTRALIA PTY LTD"	30-Nov-07 12:41 PM	
-="CN49324"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	15-Feb-08	41938.72	="recruitment panel"	="ROSS HUMAN DIRECTIONS LIMITED"	30-Nov-07 12:41 PM	
-="CN49325"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	15-Jan-08	71037.45	="RMS07/00977"	="ARGENT TECHNO-RACKING PTY LTD"	30-Nov-07 12:42 PM	
-="CN49335"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Dec-07	44699.99	="06/590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	
-="CN49338"	"Security Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-Jan-08	77740.00	="0"	="ASSA ABLOY AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	
-="CN49343-A1"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	17-Oct-07	16-Nov-07	50571.55	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	
-="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	
-="CN49347"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	22-Aug-08	71400.00	="Recruitment Panel - Purchase Order"	="MANPOWER SERVICES (AUST) P/L"	30-Nov-07 12:44 PM	
-="CN49351"	"Additional Construction Works"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	29-Nov-07	31-Jan-08	42000.00	="FIN07/Crp002"	="GE SHAW & ASSOCIATES PTY LTD"	30-Nov-07 12:44 PM	
-="CN49352"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	30-Jun-08	70000.00	=""	="ALPHAWEST SERVICES PTY LTD"	30-Nov-07 12:44 PM	
-="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	
-="CN49369"	"Insurance Premium - fund Year 2007/2008"	="National Native Title Tribunal"	30-Nov-07	="Reinsurance services"	01-Jul-07	30-Jun-08	68153.80	=""	="Australian Government Comcover"	30-Nov-07 02:01 PM	
-="CN49380"	"Maternity Wear - Army Khaki"	="Defence Materiel Organisation"	30-Nov-07	="Military uniforms"	09-Nov-07	14-Jul-08	71876.50	=""	="Australian Defence Apparel"	30-Nov-07 03:24 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN48143"	"Repair of Blackhawk Main Rotor Blade"	="Defence Materiel Organisation"	26-Nov-07	="Military rotary wing aircraft"	23-Nov-07	03-Dec-07	64694.31	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	26-Nov-07 09:26 AM	

+="CN48153-A1"	"VP 176- email archiving solution"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	13-Sep-03	13-Apr-09	64039.39	="DCON/03/63"	="KAZ Group Pty Ltd"	26-Nov-07 11:31 AM	

+="CN48167"	"Elecrticity Supply for November 2007 for OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	22-Nov-07	22-Dec-07	59400.00	="2007/00677"	="ActewAGL"	26-Nov-07 11:33 AM	

+="CN48169"	"Convergent Consulting Indigenous Community Radio Services"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	59840.00	="ATM07/241"	="CONVERGENT CONSULTING"	26-Nov-07 11:33 AM	

+="CN48175-A1"	"Telstra License Conditions"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	23-Aug-07	13-May-08	70000.00	="DCON/06/45"	="DLA  Phillips Fox"	26-Nov-07 11:34 AM	

+="CN48176"	"Courtyard Refurbishment - OPH"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	12-Oct-07	30-Oct-07	77539.00	="ATM2007/147"	="Picasso Building Pty Ltd"	26-Nov-07 11:34 AM	

+="CN48186"	"The Trustee for the King Family Trust (Techlink) Funding for BIA Port Augusta and Ceduna"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	30-Oct-07	30-Jun-10	72950.00	="ATM07/561"	="The Trustee for the King Family Tru"	26-Nov-07 11:35 AM	

+="CN48189"	"ICT Service panel Information  & Communication Services (DPS05048"	="Department of Parliamentary Services"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	28-Dec-07	48510.00	=""	="Adept KM Pty Ltd"	26-Nov-07 11:44 AM	

+="CN48201"	"Licensing for MySAP ERP includes software support & Maintenace Contract (DPS05084)"	="Department of Parliamentary Services"	26-Nov-07	="Software maintenance and support"	14-Nov-07	30-Jun-08	77623.87	=""	="SAP Australia Pty Ltd"	26-Nov-07 11:46 AM	

+="CN48241"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	79140.00	=""	="AFFINITY IT RECRUITMENT"	26-Nov-07 12:20 PM	

+="CN48243"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	13-Aug-07	30-Jun-08	55328.87	=""	="ITRAC RESOURCES PTY LTD"	26-Nov-07 12:21 PM	

+="CN48250"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	41030.00	=""	="OXYGEN BUSINESS SOLUTIONS PTY LTD"	26-Nov-07 12:22 PM	

+="CN48252"	"Stationary & General Office Supplies"	="Department of Employment and Workplace Relations"	26-Nov-07	="Office supplies"	09-Jul-07	30-Jun-08	74915.50	=""	="OFFICEMAX AUSTRALIA LTD"	26-Nov-07 12:22 PM	

+="CN48256"	"Security clearances - vetting"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	11-Jul-07	11-Jul-07	53000.00	=""	="KVS KEY VETTING SERVICES"	26-Nov-07 12:23 PM	

+="CN48257"	"Handling and Storage"	="Department of Employment and Workplace Relations"	26-Nov-07	="Storage"	12-Jul-07	12-Jul-07	41000.00	=""	="1ST FLEET WAREHOUSING & DISTRIBUTIO"	26-Nov-07 12:23 PM	

+="CN48273"	"48 Port Serial Consoles"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	04-Sep-07	30-Jun-08	40027.12	=""	="ALPHAWEST SERVICE PTY LTD"	26-Nov-07 12:25 PM	

+="CN48275"	"Advertising Services (Non-campaign)"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	05-Sep-07	30-Sep-08	43043.27	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:25 PM	

+="CN48303"	"Mainframe Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	27-Aug-07	30-Jun-08	72600.00	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:28 PM	

+="CN48307"	"IT Software Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	31-Aug-07	30-Jun-08	57043.25	=""	="MAPINFO AUSTRALIA PTY LTD"	26-Nov-07 12:29 PM	

+="CN48311"	"Archival Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	31-Aug-07	30-Jun-08	60000.00	=""	="IRON MOUNTAIN PTY LTD"	26-Nov-07 12:29 PM	

+="CN48313"	"Fitout"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	03-Sep-07	30-Jun-08	57085.56	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	

+="CN48315"	"Alice Springs - Fitout 2007/2008"	="Department of Employment and Workplace Relations"	26-Nov-07	="Accommodation furniture"	03-Sep-07	30-Jun-08	53757.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:30 PM	

+="CN48328"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	31-Aug-06	30-Jun-08	42443.97	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:31 PM	

+="CN48334"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	42095.45	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48343"	"MAINTENANCE UPGRADE TO IT DATA STORAGE EQUIPMENTS."	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	28-Sep-06	30-Jun-07	79376.28	=""	="SUN MICROSYSTEMS AUSTRALIA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48346"	"Scanning of Documents"	="Department of Employment and Workplace Relations"	26-Nov-07	="Reproduction services"	31-Jul-07	31-Jul-07	66171.33	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 12:33 PM	

+="CN48360"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	20-Jul-06	30-Jun-07	50638.77	=""	="MICROSOFT P/L"	26-Nov-07 12:35 PM	

+="CN48361"	"Recruitment Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	26-Jul-06	30-Nov-10	45000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:35 PM	

+="CN48363"	"Postage and Freight"	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	26-Jul-06	30-Jun-10	65000.00	=""	="AUST POST (ACT 131316)"	26-Nov-07 12:35 PM	

+="CN48377"	"WPA Amendments"	="Department of Employment and Workplace Relations"	26-Nov-07	="Advertising"	22-Jun-07	30-Jun-07	55000.00	=""	="HMA BLAZE PTY LIMITED"	26-Nov-07 12:37 PM	

+="CN48378"	"Consultancy Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	22-Jun-07	30-Jun-07	75999.00	=""	="PRIME FOCUS CONSULTING"	26-Nov-07 12:37 PM	

+="CN48380"	"Licence renewals"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	25-Jun-07	30-Jun-08	77000.00	=""	="SPACE-TIME RESEARCH PTY LTD"	26-Nov-07 12:38 PM	

+="CN48381"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	26-Jun-07	30-Jun-08	78625.00	=""	="VISION AUSTRALIA"	26-Nov-07 12:38 PM	

+="CN48385"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	28-Jun-07	30-Jun-07	40000.00	=""	="HAYS PERSONNEL SERVICES (AUSTRALIA)"	26-Nov-07 12:38 PM	

+="CN48391"	"Job Seeker Omnibus Survey"	="Department of Employment and Workplace Relations"	26-Nov-07	="Statistics"	29-Nov-06	26-Oct-07	55310.00	=""	="TNS"	26-Nov-07 12:39 PM	

+="CN48405"	"Temporary employment services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Human resources services"	09-May-07	30-Jun-07	40700.48	=""	="THE ONE UMBRELLA"	26-Nov-07 12:41 PM	

+="CN48414"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:38 PM	

+="CN48417"	"APCM 118.05 - Printing contract"	="Australian Taxation Office"	26-Nov-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	30-Dec-07	58608.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 01:50 PM	

+="CN48425"	"Provision of Speech Pathology Advisory Services"	="Department of Veterans' Affairs"	26-Nov-07	="Comprehensive health services"	19-Nov-07	30-Sep-09	45000.00	=""	="Rebecca King Speech Pathology Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48440"	"CPO017258 - CCTV equipment"	="Australian Customs and Border Protection Service"	26-Nov-07	="Information Technology Broadcasting and Telecommunications"	21-Nov-07	30-Jun-08	53442.40	=""	="LAN 1 Pty Ltd"	26-Nov-07 02:24 PM	

+="CN48459"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Business administration services"	19-Oct-07	19-Oct-07	66880.00	=""	="DIALOG INFORMATION TECHNOLOGY"	26-Nov-07 02:55 PM	

+="CN48460"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	22-Oct-07	30-Jun-08	49999.62	=""	="S.E.M. AUSTRALIA PTY LIMITED"	26-Nov-07 02:55 PM	

+="CN48461"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	40902.40	=""	="ICON RECRUITMENT PTY LTD"	26-Nov-07 02:56 PM	

+="CN48462"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	48185.28	=""	="Frontier Group Australia"	26-Nov-07 02:56 PM	

+="CN48463"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	22-Oct-07	31-Dec-07	57200.00	=""	="ANATAS"	26-Nov-07 02:56 PM	

+="CN48464"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	23-Oct-07	23-Oct-07	57200.00	=""	="BLUELINE SOFTWARE PTY LTD"	26-Nov-07 02:56 PM	

+="CN48469"	"Provision of Recruitment Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	30-Nov-07	50310.48	=""	="RECRUITMENT SOLUTIONS LIMITED"	26-Nov-07 02:57 PM	

+="CN48472"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	46981.00	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	

+="CN48473"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	24-Oct-07	31-Dec-07	66774.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 02:57 PM	

+="CN48475"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	16-Oct-07	30-Oct-07	42599.99	=""	="Nexa Group Pty Ltd"	26-Nov-07 02:57 PM	

+="CN48486"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Components for information technology or broadcasting or telecommunications"	17-Oct-07	17-Oct-07	61207.28	=""	="EMC GLOBAL HOLDINGS COMPANY"	26-Nov-07 02:59 PM	

+="CN48487"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	18-Oct-07	18-Oct-07	45154.50	=""	="AUSTRALIA POST"	26-Nov-07 02:59 PM	

+="CN48489"	"Provision of Printing Services"	="Medicare Australia"	26-Nov-07	="Paper products"	19-Oct-07	30-Dec-07	71069.90	=""	="PARAGON PRINTERS"	26-Nov-07 02:59 PM	

+="CN48501"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	29-Oct-07	29-Oct-07	53367.60	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:00 PM	

+="CN48503"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	30-Oct-07	30-Oct-07	59787.20	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48506"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	66455.40	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48507"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	25-Oct-07	31-Dec-07	72612.10	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48508"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	25-Oct-07	25-Oct-07	42586.50	=""	="SCHIAVELLO (ACT) PTY LTD"	26-Nov-07 03:01 PM	

+="CN48517"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Oct-07	29-Oct-07	79194.96	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:02 PM	

+="CN48518"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Commercial and industrial furniture"	26-Oct-07	26-Oct-07	67562.00	=""	="IBEX INTERIORS PTY LTD"	26-Nov-07 03:02 PM	

+="CN48525"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Oct-07	03-Oct-07	52800.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:03 PM	

+="CN48546"	"QLD ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	62936.01	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48550"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	22-Oct-07	49975.98	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:05 PM	

+="CN48553"	"AMEX TRAVEL SEPT07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	23-Oct-07	46351.17	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48571"	"Provision of Queue Management Services"	="Medicare Australia"	26-Nov-07	="Computer services"	15-Oct-07	30-Oct-07	42174.00	=""	="Nexa Group Pty Ltd"	26-Nov-07 03:08 PM	

+="CN48574"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	16-Oct-07	16-Oct-07	43301.50	=""	="SCHIAVELLO SYSTEMS (NSW) PTY LTD"	26-Nov-07 03:08 PM	

+="CN48576"	"Provision of Graphic Design services"	="Medicare Australia"	26-Nov-07	="Computer services"	09-Oct-07	09-Oct-07	41580.00	=""	="HERMES PRECISA PTY LTD"	26-Nov-07 03:09 PM	

+="CN48583"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Computer services"	11-Oct-07	30-Oct-07	54862.50	=""	="TIBCO SOFTWARE AUSTRALIA PTY LTD"	26-Nov-07 03:09 PM	

+="CN48597"	"ITContractors"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	20-Feb-08	63360.00	=""	="VALUE SOURCING"	26-Nov-07 03:53 PM	

+="CN48607"	" NSN 1560-66-050-5351  PURCHASE OF BRACKET ASSEMBLY, EN  EX GST "	="Defence Materiel Organisation"	26-Nov-07	="Military transport aircraft"	20-Nov-07	29-Jan-08	52006.40	=""	="Milspec Services Pty Ltd"	26-Nov-07 04:40 PM	

+="CN48608"	"07/2379 - IT Contractor - 0717-0866 - ICT Panel"	="Australian Customs and Border Protection Service"	26-Nov-07	="Temporary personnel services"	05-Nov-07	31-Dec-07	43400.00	="05/0717"	="CCS Index Pty Ltd"	26-Nov-07 04:42 PM	

+="CN48621-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	02-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:04 AM	

+="CN48622-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:08 AM	

+="CN48623-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:13 AM	

+="CN48624-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	08-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:20 AM	

+="CN48625-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:23 AM	

+="CN48626-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	08-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:27 AM	

+="CN48627-A1"	"Repair of aircraft parts"	="Defence Materiel Organisation"	27-Nov-07	="Aircraft"	26-Nov-07	01-Jan-08	43505.40	=""	="Sikorsky Aircraft Australia Limited"	27-Nov-07 07:31 AM	

+="CN48610"	" CMO07/0015 - IT Contractor - 0717-0892 - ICT Panel "	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	21-Nov-07	29-Feb-08	50000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:15 AM	

+="CN48637"	"06/1201 - IT Contractor - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	01-Jul-07	19-Oct-07	65120.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:18 AM	

+="CN48641"	"Software Maintenance"	="Australian Crime Commission"	27-Nov-07	="Software"	01-Nov-07	01-Nov-07	40837.50	=""	="Identity Systems Pty Ltd"	27-Nov-07 09:25 AM	

+="CN48645"	"Freight Charges"	="Australian Crime Commission"	27-Nov-07	="Freight loading or unloading"	02-Nov-07	02-Nov-07	60000.00	=""	="Australian Air Express"	27-Nov-07 09:53 AM	

+="CN48649"	"Engineering Services for Accommodation Projects"	="Australian Crime Commission"	27-Nov-07	="Professional engineering services"	07-Nov-07	07-Nov-07	50000.00	=""	="B Armstrong and Co"	27-Nov-07 10:03 AM	

+="CN48652-A1"	"Provision of mobile pedestal units Australia Wide"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	27-Jul-06	27-Jul-06	42460.00	=""	="OfficeMax Australia Ltd."	27-Nov-07 10:16 AM	

+="CN48659-A1"	" Client Research Servics "	="Department of Immigration and Citizenship"	27-Nov-07	="Educational and research structures"	30-Jul-07	22-Dec-07	50000.00	=""	="RPR Consulting Pty Ltd"	27-Nov-07 10:32 AM	

+="CN48666"	"Travel and Expense claims in relation to ERP project"	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	08-Nov-07	08-Nov-07	75000.00	="ACC/2006/13"	="Oxygen Business Solutions"	27-Nov-07 10:51 AM	

+="CN48669-A1"	" Financial Advisory for IHSS "	="Department of Immigration and Citizenship"	27-Nov-07	="Economic or financial evaluation of projects"	01-Jul-07	30-Jun-08	63000.00	=""	="Cogent Business Solutions Pty Ltd"	27-Nov-07 10:58 AM	

+="CN48672"	"Provision of Height Adjustable Desks"	="Department of Immigration and Citizenship"	27-Nov-07	="Accommodation furniture"	03-Oct-06	03-Oct-06	50963.00	=""	="Schiavello (ACT) Pty Ltd"	27-Nov-07 11:01 AM	

+="CN48683"	"Implementation plan to deliver project"	="Australian Crime Commission"	27-Nov-07	="Productivity or efficiency studies or implementation"	02-Jun-07	02-Jun-07	48415.46	=""	="South Australia Police"	27-Nov-07 11:17 AM	

+="CN48689-A1"	" Assistance and further development of stakeholder management  APSC SON62 "	="Australian Crime Commission"	27-Nov-07	="Business and corporate management consultation services"	01-Nov-07	30-Apr-08	70000.00	=""	="The Value Creation Group"	27-Nov-07 11:24 AM	

+="CN48694"	"SAP Helpdesk and support services"	="Department of Transport and Regional Services"	27-Nov-07	="Software"	02-Oct-07	11-Jan-08	49999.99	="TRS06/038"	="SOUTHERN CROSS COMPUTING PTY LTD"	27-Nov-07 11:30 AM	

+="CN48696"	"Contract Staff"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	26-Oct-07	31-Dec-07	45000.00	="T2004/0699"	="Frontier Group"	27-Nov-07 11:30 AM	

+="CN48698"	"Developer"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	02-Oct-07	01-Jan-08	55000.00	="T2004/0699"	="SMS Management & Technology"	27-Nov-07 11:31 AM	

+="CN48703"	"supply of IT solutions services"	="Department of Transport and Regional Services"	27-Nov-07	="Computer services"	07-Nov-07	30-Jun-08	75000.00	="TRS06/017"	="SME GATEWAY LTD"	27-Nov-07 11:31 AM	

+="CN48712"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	27-Nov-07	="Legal services"	22-Nov-07	30-Jun-09	56921.45	="TRS06/175"	="MINTER ELLISON LAWYERS"	27-Nov-07 11:32 AM	

+="CN48150"	"REPAIR OF BLACKHAWK MIXER CONTROL"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	05-Sep-07	12-Nov-07	40082.98	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	27-Nov-07 11:44 AM	

+="CN48730"	"Repair of Blackhawk Centre Stabilator"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	29-Aug-07	18-Sep-07	43062.75	=""	="Sikorsky Aircraft Australia Ltd"	27-Nov-07 01:22 PM	

+="CN48737-A1"	"Assist in the procurement of a panel of project managers for the AFP"	="Australian Federal Police"	27-Nov-07	="Professional procurement services"	26-Nov-07	01-May-08	55296.00	="RFT 22-2005"	="Grosvenor Management Consulting"	27-Nov-07 01:33 PM	

+="CN48750"	"Serviced Training Facility"	="Department of Immigration and Citizenship"	27-Nov-07	="Conference centres"	19-Mar-07	08-Jun-07	50000.00	=""	="Rydges Hotels Ltd"	27-Nov-07 01:58 PM	

+="CN48761-A1"	"Qualitative Research into the effectiveness of the Living in Harmony Programme"	="Department of Immigration and Citizenship"	27-Nov-07	="Management advisory services"	31-Jul-06	08-Oct-06	69300.00	=""	="The trustee for the Shanahan Family Trust trading as Elliott and Shanahan Research"	27-Nov-07 02:40 PM	

+="CN48780"	"Telecommunications Services"	="Bureau of Meteorology"	27-Nov-07	="Telecommunications media services"	14-Nov-07	30-Nov-07	58513.69	=""	="Powertel Ltd"	27-Nov-07 03:05 PM	

+="CN48786"	"LOGISTICAL SUPPORT FOR OFFSHORE AWS TRIP INC VESSEL CHARTER"	="Bureau of Meteorology"	27-Nov-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	31-Dec-07	59400.00	=""	="The Great Escape Charter Company"	27-Nov-07 03:05 PM	

+="CN48787"	"Cisco communication equipment"	="Bureau of Meteorology"	27-Nov-07	="Components for information technology or broadcasting or telecommunications"	21-Nov-07	26-Nov-07	44169.05	=""	="Cisco Systems Australia Pty Ltd"	27-Nov-07 03:05 PM	

+="CN48789"	"Competency based training for staff with tsunami w arning services"	="Bureau of Meteorology"	27-Nov-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	07-Dec-07	53966.00	=""	="Dr Ian Bell"	27-Nov-07 03:06 PM	

+="CN48790"	"Supply & installation of refrigerationequipment fo r Willis Island freezer room"	="Bureau of Meteorology"	27-Nov-07	="Electrical equipment and components and supplies"	22-Nov-07	28-Dec-07	61893.70	=""	="First Degree"	27-Nov-07 03:06 PM	

+="CN48800"	"Parliamentary Zone Coach Parking Study & Temporary Car Park"	="National Capital Authority"	27-Nov-07	="Traffic engineering"	13-Aug-07	31-Jan-08	58852.20	=""	="SMEC Australia Pty Ltd"	27-Nov-07 03:36 PM	

+="CN48806"	"Computer Servers"	="Australian Crime Commission"	27-Nov-07	="Computer servers"	11-Oct-07	11-Nov-07	73663.12	=""	="Fujitsu Australia Ltd"	27-Nov-07 04:03 PM	

+="CN48820"	"a/c spares: 1560-01-290-1728, support, qty 12."	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	07-Nov-07	15-May-08	76881.82	=""	="sikorsky aust"	27-Nov-07 04:40 PM	

+="CN48839"	"Help Desk Analyst Services "	="Family Court of Australia"	28-Nov-07	="Technical support or help desk services"	26-Nov-07	23-May-08	45408.00	=""	="Talent International"	28-Nov-07 09:47 AM	

+="CN48851"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	23-Oct-07	23-Oct-07	68469.59	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	28-Nov-07 09:56 AM	

+="CN48856"	"SUPPLY AND INSTALL ICON FIBRE"	="Department of Employment and Workplace Relations"	28-Nov-07	="Components for information technology or broadcasting or telecommunications"	19-Oct-07	30-Nov-07	58514.50	=""	="ECOWISE SERVICES"	28-Nov-07 09:57 AM	

+="CN48869"	"EBSCO 2008 subscription renewals"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	26-Oct-07	31-Dec-08	45000.00	=""	="EBSCO AUSTRALIA"	28-Nov-07 09:58 AM	

+="CN48880"	"Radio ads"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	15-Oct-07	31-Oct-07	75000.00	=""	="UNIVERSAL MCCANN"	28-Nov-07 09:59 AM	

+="CN48892"	"Annual Subscriptions for Legal and WRL - 07-08"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	19-Oct-07	31-Aug-08	68091.68	=""	="LEXIS NEXIS"	28-Nov-07 10:00 AM	

+="CN48901"	"2007-08 Workers Comp"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Oct-07	30-Jun-08	79725.00	=""	="COMCARE"	28-Nov-07 10:01 AM	

+="CN48902"	"Fitout - 47 Mitchell St, Darwin (L5)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	16-Oct-07	31-Dec-07	50325.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:01 AM	

+="CN48912"	"EDDP 137-MAIS 33-New Entrants Aged Care"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	79500.00	="DEWR DG 12 2007/08"	="AGED & COMMUNITY SERVICES TASMANIA"	28-Nov-07 10:02 AM	

+="CN48914"	"MAIS 37-Industry Skilling for Employment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	79200.00	="DEWR DG 14 2007/08"	="AUSTRALIAN MANUFACTURING TECHNOLOGY"	28-Nov-07 10:03 AM	

+="CN48928"	"Stationery and General Office Supplies"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office supplies"	23-Nov-07	19-Dec-11	49800.00	=""	="OFFICEMAX AUSTRALIA LTD"	28-Nov-07 10:04 AM	

+="CN48933"	"Temp staff - Graham Bartlett"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	22-Nov-07	30-Jun-08	50000.00	=""	="FIRSTWATER"	28-Nov-07 10:04 AM	

+="CN48964"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	08-Nov-07	30-Jun-08	41603.11	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:08 AM	

+="CN48989"	"ARC Linkage Grant - Asessing the social"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	24-Sep-07	30-Jun-10	66000.00	=""	="UNIVERSITY OF CANBERRA"	28-Nov-07 10:10 AM	

+="CN48994"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	55000.00	="Cotract"	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:11 AM	

+="CN48995"	"Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	21-Sep-07	30-Jun-08	60500.00	="Contract"	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:11 AM	

+="CN49005"	"Data Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Telecommunications media services"	27-Jul-07	30-Jun-08	75810.00	=""	="TRANSACT CAPITAL COMMUNICATIONS"	28-Nov-07 10:12 AM	

+="CN49010"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	63580.00	=""	="TARAKAN CONSULTING PTY LTD"	28-Nov-07 10:12 AM	

+="CN49019"	"Licences"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	13-Sep-07	30-Jun-08	75817.50	="TBA"	="NGA.NET PTY LTD"	28-Nov-07 10:13 AM	

+="CN49027"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	12-Sep-07	30-Jun-08	48328.50	="ITC"	="JULIA ROSS PERSONNEL"	28-Nov-07 10:14 AM	

+="CN49059"	"Maintenance to data storage equipments"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	11-Oct-07	30-Jun-08	63967.55	=""	="FUJITSU AUSTRALIA LTD"	28-Nov-07 10:17 AM	

+="CN49065"	"RIS for General falls in construction"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	28-Sep-07	15-Dec-07	51744.00	=""	="ACCESS ECONOMICS PTY LTD"	28-Nov-07 10:18 AM	

+="CN49067"	"G04 Remote Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	28-Sep-07	30-Jun-08	48079.18	=""	="ORIMA RESEARCH PTY LTD"	28-Nov-07 10:18 AM	

+="CN49091"	"Payment of gazette notifications"	="Department of Employment and Workplace Relations"	28-Nov-07	="Advertising"	03-Oct-07	30-Jun-08	45760.10	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:20 AM	

+="CN49111"	"ACTPLA Fees for DAFF Fit-out"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	26-Feb-07	30-Nov-07	41360.00	=""	="BCA Certifiers"	28-Nov-07 11:16 AM	

+="CN49121"	"Car Parking for Staff at DHL Carpark"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-08	46332.00	=""	="Australia Pacific Airports Melb Pty Ltd"	28-Nov-07 11:17 AM	

+="CN49124"	"Provision of Secruity Assessments"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Nov-07	30-Jun-08	49000.00	=""	="PerSec Solutions"	28-Nov-07 11:17 AM	

+="CN49127"	"Provision of Consultancy services and Information Forums under the NBSII"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	50000.00	=""	="South Australian Farmers Federation Incorporated"	28-Nov-07 11:17 AM	

+="CN49129"	"Provision of consultant services for Information Forums under NBS II"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	50000.00	=""	="Victorian Farmers Federation"	28-Nov-07 11:17 AM	

+="CN49134"	"Provision of information forums"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management advisory services"	08-Oct-07	31-May-08	43113.00	=""	="Tasmanian Farmers and Graziers Association"	28-Nov-07 11:18 AM	

+="CN49138"	"Supply 6 x PR009 Portable Digital Interview Recording Systems."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Office machines and their supplies and accessories"	19-Nov-07	15-Feb-08	72270.00	=""	="TPR Systems"	28-Nov-07 11:18 AM	

+="CN49166"	"Not In Catalogue Cold Weather Gloves."	="Defence Materiel Organisation"	28-Nov-07	="Insulated clothing for cold environments"	02-Nov-07	30-Nov-07	41793.20	=""	="Platypus Outdoor Group"	28-Nov-07 03:08 PM	

+="CN49172"	"Repair of Circuit Card Assembly."	="Defence Materiel Organisation"	28-Nov-07	="Military fixed wing aircraft"	28-Nov-07	28-May-08	51600.00	=""	="Raytheon Australia Pty Ltd"	28-Nov-07 03:41 PM	

+="CN49184-A2"	"ICON Annual Levy-Admin"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Computer services"	20-Nov-07	02-Sep-08	43000.00	=""	="Department of Finance & Administrat"	28-Nov-07 05:46 PM	

+="CN49196"	"Subscription 2007/08"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Information services"	04-Sep-07	06-Sep-07	45180.00	=""	="Thomson Legal & Regulatory Group"	28-Nov-07 05:47 PM	

+="CN49248"	"Consultancy IT"	="Department of the House of Representatives"	29-Nov-07	="Information technology consultation services"	06-Nov-07	21-Dec-07	43307.00	=""	="Business Aspect Pty Ltd"	29-Nov-07 02:29 PM	

+="CN49251"	"Internal audit 2007/8"	="Department of the House of Representatives"	29-Nov-07	="Accounting and auditing"	01-Jul-07	31-Dec-07	43350.00	=""	="KPMG"	29-Nov-07 02:44 PM	

+="CN49252"	"CASE MAIL DISTRIBUTION, ALUMINIUM FRAME, IN ACCORDANCE WITH DEFENCE STANDARD DEF (AUST) 8357 AND DEFENCE DRAWING SERIES ADE (M) 170, QUANTITY 40. "	="Defence Materiel Organisation"	29-Nov-07	="Miscellaneous hardware"	16-Nov-07	15-Feb-08	56276.00	="G3400"	="EUROTECH"	29-Nov-07 02:51 PM	

+="CN49254"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0998 IAW Standing Offer PN7785."	="Defence Materiel Organisation"	29-Nov-07	="Aerospace systems and components and equipment"	23-Nov-07	31-Dec-07	56395.98	=""	="Goodrich Control Systems"	29-Nov-07 03:33 PM	

+="CN49256"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1871 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	29-Nov-07	="Aerospace systems and components and equipment"	23-Nov-07	31-Dec-07	64808.22	=""	="Goodrich Control Systems"	29-Nov-07 03:46 PM	

+="CN49257"	" AIRCRAFT SPARES  NSN: 1615-01-086-1498  BEAM ASSY TAIL ROTOR  QTY: 10 "	="Defence Materiel Organisation"	29-Nov-07	="Military transport helicopters"	17-Aug-07	28-May-08	62931.22	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	29-Nov-07 03:58 PM	

+="CN49265"	" NSN 2840-00-627-2710  PURCHASE OF COUPLING, HELICAL SP  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	05-Feb-08	41070.68	=""	="Military Aviation Spares Pty Ltd"	29-Nov-07 04:18 PM	

+="CN49272"	" NSN 3110-01-399-7537  PURCHASE OF BEARING, ROLLER, CYLINDRICAL STEEL OVERALL  EX GST "	="Defence Materiel Organisation"	29-Nov-07	="Military transport aircraft"	27-Nov-07	09-Dec-07	54203.46	=""	="Aviall Australia Pty Ltd"	29-Nov-07 04:30 PM	

+="CN49275"	"Brake Drum"	="Defence Materiel Organisation"	30-Nov-07	="Brake drum"	16-Nov-07	15-Jan-08	51303.25	=""	="Premier Automotive Group"	30-Nov-07 07:44 AM	

+="CN49282"	"Services in relation to data collection in respect of an online survey of family relationship services"	="Australian Institute of Family Studies"	30-Nov-07	="Internet based market research"	19-Nov-07	31-Jul-09	71978.50	=""	="I-View Pty Ltd"	30-Nov-07 08:47 AM	

+="CN49302"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Office Equipment and Accessories and Supplies"	23-Nov-07	31-Mar-08	66000.00	="Not available"	="CANON AUSTRALIA P/L - ACT"	30-Nov-07 12:39 PM	

+="CN49304"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	44000.00	="00"	="DELL COMPUTER PTY LIMITED"	30-Nov-07 12:39 PM	

+="CN49306"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	52802.30	="06/06490"	="INSIGHT"	30-Nov-07 12:40 PM	

+="CN49317"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	28-Mar-08	53000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:41 PM	

+="CN49322"	"Capital Expenditure - Software"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	74223.01	="06/09065-06"	="DIMENSION DATA AUSTRALIA PTY LTD"	30-Nov-07 12:41 PM	

+="CN49324"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	15-Feb-08	41938.72	="recruitment panel"	="ROSS HUMAN DIRECTIONS LIMITED"	30-Nov-07 12:41 PM	

+="CN49325"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	15-Jan-08	71037.45	="RMS07/00977"	="ARGENT TECHNO-RACKING PTY LTD"	30-Nov-07 12:42 PM	

+="CN49335"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Dec-07	44699.99	="06/590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	

+="CN49338"	"Security Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-Jan-08	77740.00	="0"	="ASSA ABLOY AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	

+="CN49343-A1"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	17-Oct-07	16-Nov-07	50571.55	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	

+="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	

+="CN49347"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	22-Aug-08	71400.00	="Recruitment Panel - Purchase Order"	="MANPOWER SERVICES (AUST) P/L"	30-Nov-07 12:44 PM	

+="CN49351"	"Additional Construction Works"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	29-Nov-07	31-Jan-08	42000.00	="FIN07/Crp002"	="GE SHAW & ASSOCIATES PTY LTD"	30-Nov-07 12:44 PM	

+="CN49352"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	30-Jun-08	70000.00	=""	="ALPHAWEST SERVICES PTY LTD"	30-Nov-07 12:44 PM	

+="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	

+="CN49369"	"Insurance Premium - fund Year 2007/2008"	="National Native Title Tribunal"	30-Nov-07	="Reinsurance services"	01-Jul-07	30-Jun-08	68153.80	=""	="Australian Government Comcover"	30-Nov-07 02:01 PM	

+="CN49380"	"Maternity Wear - Army Khaki"	="Defence Materiel Organisation"	30-Nov-07	="Military uniforms"	09-Nov-07	14-Jul-08	71876.50	=""	="Australian Defence Apparel"	30-Nov-07 03:24 PM	

 ="CN49381"	"Equipment Hite - official visit "	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Marquees"	30-Aug-07	06-Sep-07	50000.00	=""	="Pages Event Hire"	30-Nov-07 03:51 PM 

--- a/admin/partialdata/26Nov2007to30Nov2007val80000to300000.xls
+++ b/admin/partialdata/26Nov2007to30Nov2007val80000to300000.xls
@@ -1,210 +1,210 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN45690"	"Supply of Power Steering Boxes, NSN 2530-66-155-0739 and qty 93."	="Defence Materiel Organisation"	26-Nov-07	="War vehicles"	09-Nov-07	04-Feb-08	143590.33	=""	="Land Rover Australia"	26-Nov-07 09:18 AM	
-="CN48148-A2"	"Provision of landscaping services to the AFP in the ACT"	="Australian Federal Police"	26-Nov-07	="Landscaping services"	17-Jan-05	16-Jan-08	141857.00	="RFT 2004-09"	="Ropolo Services Pty Ltd trading as Landscape Direct"	26-Nov-07 09:58 AM	
-="CN48158"	"SW Wing Upper Floor Refurbishment Project Management Fees"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	01-Jul-07	31-Dec-07	100000.00	="ATM2007/00634"	="MANTEENA"	26-Nov-07 11:32 AM	
-="CN48160"	"Strengthening SPAM legislation, enforcement & cooperation regimes in Niue,Samoa & Vanuatu"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	20-Feb-08	88594.00	="CCR/07/3042"	="Galexia"	26-Nov-07 11:32 AM	
-="CN48179-A1"	"Nyaarla Projects: Backing Indigenous Ability Funding for Kalgoorlie, Sth Hedland & Geraldton"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="ATM07/468"	="Nyaarla Projects Pty Ltd"	26-Nov-07 11:34 AM	
-="CN48181-A1"	"Uptuyu Adventures - Backing Indigenous Ability Funding for Kununurra, Derby & Broome"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="CCR/07/1572"	="Uptuyu Adventures"	26-Nov-07 11:34 AM	
-="CN48185-A1"	"Ethos Global Foundation Ltd: Backing Indigenous Ability Darwin, Katherine and Nhulunbuy"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	16-Oct-07	30-Jun-10	100000.01	="ATM07/497"	="Ethos Global Foundation Ltd"	26-Nov-07 11:35 AM	
-="CN48190"	"PABX Supply and Implementation Failties Managemet Team Contract (DPS04082)"	="Department of Parliamentary Services"	26-Nov-07	="Telecommunications planning services"	21-Nov-07	28-Dec-07	143961.09	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	
-="CN48202"	"Supply of  Computer Servers"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	13-Nov-07	30-Nov-07	96382.66	=""	="Dell Australia P/L"	26-Nov-07 11:46 AM	
-="CN48207"	"Provision of Internet Services"	="Department of Parliamentary Services"	26-Nov-07	="Internet services"	21-Nov-07	30-Nov-07	164242.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:47 AM	
-="CN48210"	"Provision of Project Management Services"	="Department of Parliamentary Services"	26-Nov-07	="Project management"	12-Nov-07	31-Dec-07	199100.00	=""	="Manteena Pty Ltd"	26-Nov-07 11:48 AM	
-="CN48216"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	20-Nov-07	25-Jun-08	267960.00	=""	="SPECTRUMTECH PTY LTD"	26-Nov-07 11:56 AM	
-="CN48218"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	12-May-08	125840.00	=""	="CORDELTA PTY LTD"	26-Nov-07 11:57 AM	
-="CN48220"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	13-Nov-07	13-Nov-07	154000.00	=""	="CTIUM CONSULTING PTY.LTD"	26-Nov-07 11:57 AM	
-="CN48222"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	191343.80	=""	="TECHPOINT CONSULTING"	26-Nov-07 12:18 PM	
-="CN48229"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	26-Jul-07	30-Jun-08	182275.83	="ITC"	="SATURN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	
-="CN48231"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	93447.13	=""	="RADIUS SOLUTIONS GROUP PTY LTD"	26-Nov-07 12:19 PM	
-="CN48236"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	291837.69	=""	="PALADIN SYSTEMS PTY LTD"	26-Nov-07 12:20 PM	
-="CN48239"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	92719.09	=""	="OOSW CONSULTING PTY LTD"	26-Nov-07 12:20 PM	
-="CN48242"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	08-Aug-07	30-Jun-08	170655.24	=""	="EMTOR PTY LTD"	26-Nov-07 12:21 PM	
-="CN48245"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	253125.40	=""	="ENCORE IT SERVICES PTY LTD"	26-Nov-07 12:21 PM	
-="CN48251"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	154000.00	=""	="READIFY PTY LTD"	26-Nov-07 12:22 PM	
-="CN48263"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	92400.00	="ITC"	="SKILLSEARCH CONTRACTING PTY LTD"	26-Nov-07 12:24 PM	
-="CN48264"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	201635.78	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:24 PM	
-="CN48267"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	244642.36	=""	="GLENDAR CONSULTING"	26-Nov-07 12:24 PM	
-="CN48278"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	06-Sep-07	30-Jun-08	157080.00	="ICT"	="IT MATTERS"	26-Nov-07 12:25 PM	
-="CN48281"	"Long term leasing of vehicles to lift Remote Area"	="Department of Employment and Workplace Relations"	26-Nov-07	="Motor vehicles"	06-Sep-07	21-Dec-07	90000.00	="Centrelink RFT F06/0124"	="THRIFTY CAR RENTAL"	26-Nov-07 12:26 PM	
-="CN48283"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Sep-07	30-Jun-08	162360.00	="TBA"	="HITACHI DATA SYSTEMS"	26-Nov-07 12:26 PM	
-="CN48284"	"Promotion of Job Placement Services and"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	30-Jun-09	99000.00	=""	="RECRUITMENT & CONSULTING"	26-Nov-07 12:26 PM	
-="CN48294"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	199084.20	=""	="VEROSSITY"	26-Nov-07 12:27 PM	
-="CN48296"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	84230.27	=""	="TELSTRA (VIC)"	26-Nov-07 12:27 PM	
-="CN48308"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	31-Aug-07	127567.89	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	26-Nov-07 12:29 PM	
-="CN48310"	"Fitouts"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	30-Jun-08	94684.23	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	
-="CN48312"	"IT Equipment maintenance support"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	175282.80	=""	="TECHFLEX PTY LTD"	26-Nov-07 12:29 PM	
-="CN48320"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	08-Aug-06	30-Jun-07	86615.45	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	
-="CN48335"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	214888.35	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48336"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	190542.36	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	
-="CN48338"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Nov-06	01-Jun-10	279118.47	=""	="SALMAT  LIMITED"	26-Nov-07 12:32 PM	
-="CN48348"	"1ST QUARTER IT SERVICE CHARGES"	="Department of Employment and Workplace Relations"	26-Nov-07	="Professional engineering services"	31-Jul-07	30-Sep-07	83105.00	=""	="Dept of Employment & Workplace"	26-Nov-07 12:34 PM	
-="CN48356"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	20-Jul-06	30-Jun-08	100000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:35 PM	
-="CN48362"	"Software Mainframe Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	26-Jul-06	30-Jun-07	234001.90	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:35 PM	
-="CN48390"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Jun-07	30-Jun-07	245461.31	=""	="AMBIT IT & T"	26-Nov-07 12:39 PM	
-="CN48401"	"WorkChoices Employer Advisor Programme 2 Experience of Private Sector/Industry Required"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	09-Feb-07	09-Feb-07	274350.00	=""	="AUSTRALIAN NEWSAGENTS' FEDERATION"	26-Nov-07 12:40 PM	
-="CN48416"	"    NRMA House - Detailed Design, Documentation & Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	21-Oct-05	129789.18	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:51 PM	
-="CN48419"	"IMU Contract Programmer: IMU-ICT010 Official Order IMU2007/068"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	24-Nov-07	23-Nov-08	193450.00	=""	="Reitan Holdings Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48420"	"IMU Contract Programmer: IMU-ICT104 Official Order: IMU2007/063"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	12-Nov-07	09-May-08	90090.00	=""	="GMT Canberra Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48421"	"IMU Contract Programmer: IMU-ICT012 Official Order: IMU2007/061"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	01-Nov-07	31-Oct-08	165000.00	=""	="Icon Recruitment Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48422"	"Conduct and overview benchmark to assess how DVA's current IT spending on application and infrastructure services compares to the Australian market. Identify areas for DVA to focus IT spend and perfor"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	30-Aug-07	31-Dec-07	89100.00	=""	="IT Newcom Pty Ltd"	26-Nov-07 02:00 PM	
-="CN48432"	"07/2356 - Construction services (connected to 07/2335 business case)"	="Australian Customs and Border Protection Service"	26-Nov-07	="General building construction"	20-Nov-07	14-Dec-07	291591.30	=""	="Semrau Constructions"	26-Nov-07 02:23 PM	
-="CN48434-A2"	"07/2307 - Project Manager"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	25-Sep-07	30-Jun-08	243551.20	=""	="Apis Consulting Group (ACT) Pty"	26-Nov-07 02:23 PM	
-="CN48444"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-06	31-Dec-07	231170.28	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:35 PM	
-="CN48452"	"SUBSCRIPTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Oct-07	13-Nov-07	94944.28	=""	="Australian Public Service"	26-Nov-07 02:42 PM	
-="CN48468"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Communications Devices and Accessories"	23-Oct-07	23-Oct-07	179456.44	=""	="OPTUS BILLING SERVICES"	26-Nov-07 02:56 PM	
-="CN48471"	"Provision of Funding for Internal Project"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	31-Dec-07	104999.97	=""	="GP PARTNERS LTD"	26-Nov-07 02:57 PM	
-="CN48485"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	17-Oct-07	31-Dec-07	84938.43	=""	="AUSTRALIA POST"	26-Nov-07 02:58 PM	
-="CN48495"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	26-Oct-07	19-Nov-07	171333.80	=""	="WA Partitioning Pty Ltd"	26-Nov-07 03:00 PM	
-="CN48498"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	29-Oct-07	29-Oct-07	242000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:00 PM	
-="CN48511"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Paper products"	25-Oct-07	25-Oct-07	165000.00	=""	="AUSTRALIA POST"	26-Nov-07 03:02 PM	
-="CN48512"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	25-Oct-07	30-Oct-07	88000.00	=""	="MasterSoft Systems Pty Ltd"	26-Nov-07 03:02 PM	
-="CN48516"	"Provision of Property Management services"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	112216.22	=""	="UNITED GROUP SERVICES PTY LTD"	26-Nov-07 03:02 PM	
-="CN48531"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	03-Oct-07	03-Oct-07	276853.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:03 PM	
-="CN48535"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	04-Oct-07	04-Oct-07	93060.00	=""	="David Jess & Associates Pty Ltd"	26-Nov-07 03:04 PM	
-="CN48539"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	08-Oct-07	08-Oct-07	275000.00	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:04 PM	
-="CN48545"	"NSW ARMAGUARD SEP07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	98647.80	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48548"	"VIC ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	81663.19	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	
-="CN48554"	"AMEX TRAVEL SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	24-Oct-07	227233.33	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	
-="CN48555"	"Provision of Project Management services"	="Medicare Australia"	26-Nov-07	="General building construction"	02-Oct-07	02-Oct-07	185460.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:06 PM	
-="CN48559"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	138656.91	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	
-="CN48561"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	212427.49	=""	="CROTTY & CO PTY LTD"	26-Nov-07 03:07 PM	
-="CN48567"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Oct-07	12-Oct-07	161387.50	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:08 PM	
-="CN48568"	"MANAGEMENT SERVICE FEES"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	15-Oct-07	92730.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48569"	"Provision of Storage/Distribution services"	="Medicare Australia"	26-Nov-07	="Information services"	15-Oct-07	15-Oct-07	206957.66	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	26-Nov-07 03:08 PM	
-="CN48570"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	15-Oct-07	15-Oct-07	81939.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	
-="CN48578"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	29-Feb-08	91784.00	=""	="CCS Technology recruiter"	26-Nov-07 03:09 PM	
-="CN48582"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	92268.00	=""	="Superior Shopfitters"	26-Nov-07 03:09 PM	
-="CN35554-A2"	"Radio advertisements for the Murray-Darling Basin and Drought Assistance campaigns."	="Department of Human Services"	26-Nov-07	="Radio advertising"	01-Jul-07	30-Jun-08	132000.00	=""	="Eardrum Pty Ltd"	26-Nov-07 03:15 PM	
-="CN48595"	"ICON Levy's for 07/08"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	07-Nov-07	30-Jun-08	82500.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 03:53 PM	
-="CN48601-A1"	"Provision of Certificate IV in Business (frontline management) to the AFP"	="Australian Federal Police"	26-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	94996.00	="APS Commission 2005/014"	="Global Training Institute"	26-Nov-07 04:16 PM	
-="CN48602"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	16-Nov-07	21-Jan-08	208208.00	=""	="InfoRail Pty Ltd"	26-Nov-07 04:32 PM	
-="CN48603"	"IT Contractor services"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	21-Nov-07	31-Mar-08	105600.00	=""	="FOCUS STRATEGIES & SOLUTIONS"	26-Nov-07 04:32 PM	
-="CN48630"	"Motor Vehicle Parts."	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Nov-07	21-Dec-07	108801.50	=""	="Daimler Chrysler Aust. Pacific"	27-Nov-07 08:26 AM	
-="CN48639-A1"	"06/1444 - Business Analyst - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	01-Sep-07	31-Mar-08	81700.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:21 AM	
-="CN48640"	"07/2186 - Network Operations & Support - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	10-Dec-07	12-Dec-08	200000.00	="05/0717"	="Paxus Australia"	27-Nov-07 09:24 AM	
-="CN48655-A2"	"Recruitment - Database Administrator"	="Australian Crime Commission"	27-Nov-07	="Temporary personnel services"	08-Nov-07	30-Jun-08	139258.00	=""	="ICON Recruitment Pty ltd"	27-Nov-07 10:21 AM	
-="CN48656"	"Provision of Height Adjustable desks"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	18-Aug-06	18-Aug-06	160921.00	=""	="Schiavello Pty Ltd"	27-Nov-07 10:24 AM	
-="CN48658-A1"	" Provision of Mobile Pedestal Units "	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	14-Nov-06	14-Nov-06	117975.00	=""	="OfficeMax Australia Ltd"	27-Nov-07 10:27 AM	
-="CN48675"	"Recovery of fees for GPRS system"	="Australian Crime Commission"	27-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Jun-07	30-Sep-07	82040.65	=""	="Australian Security Intelligence Organisation"	27-Nov-07 11:03 AM	
-="CN48677-A3"	"It Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	05-Mar-07	02-May-08	262889.00	=""	="Finite IT Recruitment Pty. Ltd."	27-Nov-07 11:06 AM	
-="CN48678-A1"	"Provision for Business Analyst"	="Comsuper"	27-Nov-07	="Human resources services"	18-Oct-07	25-Apr-08	95524.00	=""	="Face2Face"	27-Nov-07 11:08 AM	
-="CN48680"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	30-Jun-08	165000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:13 AM	
-="CN48682-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	30-Jun-08	137500.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:15 AM	
-="CN48686"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	16-Jun-07	16-Feb-08	114345.00	=""	="Finite IT Recruitment Services"	27-Nov-07 11:18 AM	
-="CN48688-A1"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	17-May-07	30-Jun-08	235290.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 11:22 AM	
-="CN48690"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	04-Jun-07	04-Feb-08	114400.00	=""	="Paxus Australia Limited"	27-Nov-07 11:25 AM	
-="CN48692-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Temporary information technology networking specialists"	02-Jul-07	30-Jun-09	264000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:28 AM	
-="CN48700-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	21-May-07	31-Oct-08	281160.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:31 AM	
-="CN48704"	"Event management - contract staff"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	22-Oct-07	30-Jun-08	88000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	27-Nov-07 11:31 AM	
-="CN48699-A1"	"Provision of a Business Analyst"	="Comsuper"	27-Nov-07	="Human resources services"	29-Nov-07	30-Jun-08	102080.00	=""	="Candle Australia Limited"	27-Nov-07 11:31 AM	
-="CN48705"	"Consultancy Services to assist the Department in design of ITSAP"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	08-Oct-07	30-Sep-08	220000.00	="TRS07/209"	="SMEC AUSTRALIA PTY LIMITED"	27-Nov-07 11:31 AM	
-="CN48714-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	15-Feb-08	154000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:34 AM	
-="CN48717-A1"	"Provision for System Test Manager"	="Comsuper"	27-Nov-07	="Human resources services"	01-Dec-07	30-Jun-08	125840.00	=""	="Paxus Australia Pty Ltd"	27-Nov-07 11:38 AM	
-="CN48718-A2"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	12-Jun-07	30-Jun-08	200970.00	=""	="Ambit Recruitment Group Pty Ltd"	27-Nov-07 11:40 AM	
-="CN48720-A1"	"IT Specialist Services Pty Limited"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	01-Jul-07	31-Dec-08	161205.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:03 PM	
-="CN48725-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	10-Jul-07	30-Jun-08	158400.00	=""	="Ambit Group Pty Limited"	27-Nov-07 12:17 PM	
-="CN48729"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	18-Jun-07	30-Jun-08	138000.00	=""	="Ambit Group Pty Limited"	27-Nov-07 12:29 PM	
-="CN48738-A2"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	04-Jun-07	25-Jan-08	226765.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 01:35 PM	
-="CN48739-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	23-Mar-07	30-Jun-08	280500.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:38 PM	
-="CN48742"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	15-May-07	14-Dec-07	105600.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:45 PM	
-="CN48745"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	05-Sep-07	171086.30	=""	="Asia Pacific Aerospace"	27-Nov-07 01:54 PM	
-="CN47484"	"Supply and Installation of Workstations"	="Australian Crime Commission"	27-Nov-07	="Workstations and office packages"	13-Jul-07	13-Aug-07	106678.00	=""	="Schiavello"	27-Nov-07 02:58 PM	
-="CN48784"	"Radar Sea Level Sensors"	="Bureau of Meteorology"	27-Nov-07	="Measuring and observing and testing instruments"	13-Nov-07	28-Apr-08	88748.00	=""	="Vega Australia Pty Ltd"	27-Nov-07 03:05 PM	
-="CN48755"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	03-Sep-07	171086.30	=""	="Asia Pacific aerospace"	27-Nov-07 03:17 PM	
-="CN48756"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	03-Sep-07	171086.30	=""	="Asia Pacific aerospace"	27-Nov-07 03:44 PM	
-="CN48822"	"Repair of Blackhawk Tail Rotor Gearbox"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	22-Aug-07	30-Aug-07	86293.34	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	27-Nov-07 04:57 PM	
-="CN48824"	"Repair of Blackhawk engine Cold Section Module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	16-Aug-07	25-Sep-07	171086.30	=""	="Asia Pacific Aerospace"	27-Nov-07 05:08 PM	
-="CN48840"	" HEADSET - MICROPHONE  MBITR, DYNAMIC "	="Defence Materiel Organisation"	28-Nov-07	="Microphones"	22-Nov-07	18-Apr-08	88350.00	=""	="EYLEX PTY LTD"	28-Nov-07 09:49 AM	
-="CN48849"	"Subscription Renewal"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	30-Jun-08	96624.00	="TBA"	="OPEN SYSTEMS PTY LTD"	28-Nov-07 09:56 AM	
-="CN48850"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	30-Jun-08	108900.00	="ITC"	="COLLECTIVE RESOURCES RECRUITMENT PT"	28-Nov-07 09:56 AM	
-="CN48875"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	15-Oct-07	15-Oct-07	208664.39	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 09:59 AM	
-="CN48889"	"On Line Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	30-Jun-08	276100.00	="TBA"	="SKILLSOFT"	28-Nov-07 10:00 AM	
-="CN48891"	"General Accounting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Oct-07	31-Jan-08	95850.00	=""	="WALTER AND TURNBULL PTY LTD"	28-Nov-07 10:00 AM	
-="CN48897"	"IT Communications  Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Communications Devices and Accessories"	17-Oct-07	30-Jun-08	135756.76	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:01 AM	
-="CN48900"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	16-Oct-07	30-Jun-08	275660.00	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:01 AM	
-="CN48913"	"EDDP 135-Employment in Central G/fields"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	98500.00	="DEWR DG 14 2007/08"	="CENTRAL GOLDFIELDS SHIRE"	28-Nov-07 10:03 AM	
-="CN48923"	"EDDP 143&MAIS 35 Skilling for the Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Nov-07	13-Jun-08	106700.00	=""	="AIEM NETWORK"	28-Nov-07 10:03 AM	
-="CN48925"	"JOWWS-1008 - New South Wales"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	220000.00	="DEWR RFT 2007/10"	="EQUALS INTERNATIONAL (AUST) PTY LTD"	28-Nov-07 10:04 AM	
-="CN48926"	"InfoHRM HR Metrics and Benchmarking Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	23-Nov-07	30-Sep-10	132000.00	=""	="INFOHRM PTY LTD"	28-Nov-07 10:04 AM	
-="CN48927"	"National Hazard Exposure Workers Survey"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	23-Nov-07	30-Jun-08	203500.00	=""	="SWEENY RESEARCH P/L"	28-Nov-07 10:04 AM	
-="CN48937"	"EDDP 130 - Mining Program (PRE-MP)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	14-Nov-07	02-May-08	122155.00	="DEWR DG 13 2007/08"	="SERVICE TO YOUTH COUNCIL"	28-Nov-07 10:05 AM	
-="CN48939"	"MAINTENANCE TO CISCO EQUIPMENTS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	07-Nov-07	31-Jul-08	80479.05	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	28-Nov-07 10:05 AM	
-="CN48941"	"MAIS26: Outback Stores - Remote"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	31-May-08	99960.00	="DEWR DG 6 2007/08"	="OUTBACK STORES"	28-Nov-07 10:05 AM	
-="CN48942"	"EDDP125 - Diversity into Work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	30-Jun-08	99400.00	="DEWR DG 7 2007/08"	="DIVERSITY @ WORK"	28-Nov-07 10:05 AM	
-="CN48943"	"EDDP113: CivSkills"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	16-Jun-08	105500.00	="DEWR DG 9 2007/08"	="THE CONSTRUCTION TRAINING CENTRE"	28-Nov-07 10:06 AM	
-="CN48944"	"EDDP127 & MAIS25: Working in Care"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	13-Jun-08	84700.00	="DEWR DG 8 2007/08"	="POW WOW CONSULTING PTY LTD"	28-Nov-07 10:06 AM	
-="CN48947"	"SSE iBase Licenses"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	02-Nov-07	26-Nov-07	172579.00	=""	="VISUAL ANALYSIS PTY LTD"	28-Nov-07 10:06 AM	
-="CN48955"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Nov-07	30-Jun-08	190300.00	="ITC"	="STRATAGEM COMPUTER CONTRACTORS"	28-Nov-07 10:07 AM	
-="CN48965"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	08-Nov-07	30-Jun-08	169203.54	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:08 AM	
-="CN48970"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Jun-08	109518.20	="ICT"	="ESPIRE INFOLABS PTY LTD"	28-Nov-07 10:08 AM	
-="CN48972"	"IT Consultants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Jun-08	191759.81	="ICT"	="IBM AUSTRALIA LTD"	28-Nov-07 10:08 AM	
-="CN48974"	"Photcopiers"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office machines and their supplies and accessories"	19-Sep-07	30-Jan-12	100000.00	=""	="RICOH AUSTRALIA (ROA)"	28-Nov-07 10:09 AM	
-="CN48976"	"Fitouts"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Sep-07	30-Jun-08	172595.50	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:09 AM	
-="CN48977"	"Fitouts Beaumont St, Newcastle"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Sep-07	30-Jun-08	255200.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:09 AM	
-="CN48980"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	17-Sep-07	30-Jun-08	127195.20	="ITC"	="PEGASUS GLOBAL PTY LTD"	28-Nov-07 10:09 AM	
-="CN48998"	"Hospitality As A Career-Eyre Peninsula"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Sep-07	16-Jun-08	110000.00	=""	="EYRE REGIONAL DEVELOPMENT BOARD"	28-Nov-07 10:11 AM	
-="CN49000"	"NESB consultancy services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	30-Nov-07	284526.00	=""	="CULTURAL PARTNERS AUSTRALIA"	28-Nov-07 10:11 AM	
-="CN49003"	"Career Development Assessment Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	11-Sep-07	30-Jun-08	120000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:12 AM	
-="CN49004"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Information services"	07-Aug-07	30-Jun-08	206153.20	=""	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:12 AM	
-="CN49006"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	250932.00	="ITC"	="COMPAS PTY LTD"	28-Nov-07 10:12 AM	
-="CN49007"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	278169.35	="ITC"	="CCS INDEX PTY LTD T/A CCS INDEX"	28-Nov-07 10:12 AM	
-="CN49008"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	80877.50	=""	="INFO RAIL PTY LTD"	28-Nov-07 10:12 AM	
-="CN49011"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	19-Nov-07	30-Jun-08	116159.95	=""	="AUREC PTY LTD"	28-Nov-07 10:12 AM	
-="CN49012"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	19-Nov-07	30-Jun-08	126874.00	=""	="CANDLE AUSTRALIA LTD"	28-Nov-07 10:12 AM	
-="CN49013"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	27-Nov-07	30-Jun-08	101574.00	=""	="AMOR CONSULTING PTY LTD"	28-Nov-07 10:13 AM	
-="CN49029"	"CoursePlus Contract"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-09	261800.00	=""	="CURRICULUM CORPORATION"	28-Nov-07 10:14 AM	
-="CN49032"	"Fitouts - Level 1 Todd Mall"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	10-Oct-07	30-Jun-08	137745.54	=""	="SCHIAVELLO COMMERCIAL INTERIORS"	28-Nov-07 10:15 AM	
-="CN49033"	"Fitout - 47 Mitchel St, Darwin"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	10-Oct-07	30-Jun-08	247941.96	=""	="SCHIAVELLO COMMERCIAL INTERIORS"	28-Nov-07 10:15 AM	
-="CN49037"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	08-Oct-07	30-Jun-08	145200.00	="ICT"	="APIS CONSULTING GROUP (ACT) P/L"	28-Nov-07 10:15 AM	
-="CN49073"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	26-Sep-07	30-Jun-08	285642.65	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	28-Nov-07 10:19 AM	
-="CN49074"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	26-Sep-07	30-Jun-08	289172.77	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	28-Nov-07 10:19 AM	
-="CN49115"	"Supervisory Management Program in AQIS Management Development Program (AMDP) and Fundamentals of Supervision training"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	19-Nov-07	30-Jun-08	150000.00	=""	="Swinburne Industry Solutions"	28-Nov-07 11:16 AM	
-="CN49125"	"GDP 08 Temporary Accommodation"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Jan-08	01-Mar-08	80800.00	=""	="Medina Classic Canberra"	28-Nov-07 11:17 AM	
-="CN49128"	"To undertake a Industry Stocktake of the Australian banana industry"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	16-May-08	186031.00	=""	="AgEconPlus Pty Ltd"	28-Nov-07 11:17 AM	
-="CN49132"	"Creative and Communications Services for Tasmanian Community Forest Agreement International Communications Programme"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-08	274346.93	=""	="Porter Novelli Australia Pty Ltd"	28-Nov-07 11:18 AM	
-="CN49139"	"Provision of relocation services to new DAFF accommodation in Civic & Fyshwick."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="General building construction"	05-Nov-07	28-Feb-08	220000.00	=""	="Atlantis Pty Ltd"	28-Nov-07 11:19 AM	
-="CN49142-A1"	"2008 Graduate relocations to Canberra expenses"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Nov-07	30-Jun-08	155000.00	=""	="Move Dynamics"	28-Nov-07 11:19 AM	
-="CN49143"	"Review of the Managment of Weeds of National Significance"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Apr-08	206855.00	=""	="Beaten Track Group Pty Ltd"	28-Nov-07 11:19 AM	
-="CN49147"	"Provision of Helpdesk Analyst Service"	="Family Court of Australia"	28-Nov-07	="Technical support or help desk services"	26-Nov-07	21-Nov-08	92928.00	=""	="CCS Technology Recruiters"	28-Nov-07 11:34 AM	
-="CN49150"	"Network Engineer"	="Family Court of Australia"	28-Nov-07	="Professional engineering services"	08-Dec-07	05-Nov-08	200640.00	=""	="CCS Index Pty Ltd"	28-Nov-07 11:52 AM	
-="CN49151-A1"	"Installation of Playground Equipment"	="National Capital Authority"	28-Nov-07	="Playground equipment"	12-Apr-07	07-Sep-07	85046.28	=""	="Kompan(NSW) Pty Ltd"	28-Nov-07 12:01 PM	
-="CN49153"	"PARTS KIT, STEERING WHEEL SEALS FOR WHEEL DRIVE AXLE"	="Defence Materiel Organisation"	28-Nov-07	="Steering system"	08-Mar-07	26-Sep-07	174790.00	=""	="GENERAL LAND SYSTEMS DIVISION"	28-Nov-07 12:17 PM	
-="CN49157-A2"	"Canberra Central Parklands Master Plan"	="National Capital Authority"	28-Nov-07	="Land use planning"	13-Aug-07	31-Oct-07	119942.67	=""	="Oxigen Pty Ltd"	28-Nov-07 12:38 PM	
-="CN49169"	"Laptop PC's and accessories"	="Centrelink"	28-Nov-07	="Computer Equipment and Accessories"	28-Nov-07	02-Jun-09	291379.87	="2004/52285"	="Hewlett Packard Australia Pty Ltd"	28-Nov-07 02:46 PM	
-="CN49168"	"Specialist financial services for the Office of Access Card"	="Department of Human Services"	28-Nov-07	="Public enterprises management or financial services"	11-Sep-07	28-Sep-07	187000.00	=""	="McGrathNicol Corporate Advisory"	28-Nov-07 02:48 PM	
-="CN49180-A1"	"Temporary Personnel"	="Australian Electoral Commission"	28-Nov-07	="Temporary personnel services"	01-Aug-06	30-Jun-09	91462.80	="S06/07/18"	="Tarakan Consulting Pty Ltd"	28-Nov-07 05:19 PM	
-="CN49186"	"Prepayment (SUBS)"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	28-Aug-07	30-Jun-08	82153.63	=""	="Thomson Legal & Regulatory Group"	28-Nov-07 05:46 PM	
-="CN49198"	"Battery storage 3.6 AMP/HR LITHIUMJ ION MBITR"	="Defence Materiel Organisation"	29-Nov-07	="Lithium batteries"	28-Nov-07	30-Apr-08	246807.00	=""	="THALES AUSTRALIA"	29-Nov-07 07:06 AM	
-="CN49206"	"07/1775 - Extension #1 - Project management services - 0769-1311"	="Australian Customs and Border Protection Service"	29-Nov-07	="Project management"	01-May-07	31-Dec-08	238700.00	="05/0769"	="Carson Group (QLD) Pty Ltd"	29-Nov-07 09:15 AM	
-="CN49213-A1"	"Provision for Application Developers"	="Comsuper"	29-Nov-07	="Human resources services"	31-Jul-06	25-Jan-08	228800.00	=""	="Icon Recruitment"	29-Nov-07 11:12 AM	
-="CN49214-A1"	"Provision for Business Analyst"	="Comsuper"	29-Nov-07	="Human resources services"	05-Dec-07	30-Jun-08	119548.00	=""	="M&T Resources"	29-Nov-07 11:14 AM	
-="CN49224-A4"	"Management of the Constable Kenny Koala Program"	="Australian Federal Police"	29-Nov-07	="Management support services"	01-Dec-07	30-Nov-11	269280.00	="RFT 2-2007"	="1994 Investments Pty Ltd as trustee for Ideas and Directions Unit Trust (T/A: Ideas and Directions)"	29-Nov-07 01:21 PM	
-="CN49243"	"Commputers"	="Department of the House of Representatives"	29-Nov-07	="Computers"	27-Nov-07	31-Dec-07	278620.00	=""	="Commander NSW Pty Ltd"	29-Nov-07 02:15 PM	
-="CN49290"	"OverHaul Kiowa Aircraft Engine"	="Defence Materiel Organisation"	30-Nov-07	="Medical or rescue helicopters"	06-Mar-07	04-Apr-07	91547.30	=""	="Aviation Turbine Overhaul"	30-Nov-07 09:14 AM	
-="CN49297"	"Consultancy Services (Term nominal end date)"	="Australian Broadcasting Corporation"	30-Nov-07	="Information technology consultation services"	11-Oct-07	10-Nov-08	112000.00	="NS0730"	="Acumen Alliance"	30-Nov-07 11:50 AM	
-="CN49311"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	132660.00	="AGIMO tender - see attached document"	="UNIFY SOLUTIONS PTY LTD"	30-Nov-07 12:40 PM	
-="CN49314"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	23-Oct-08	120782.00	="20031A"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:40 PM	
-="CN49315"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	266159.65	=""	="AGS - SYDNEY"	30-Nov-07 12:41 PM	
-="CN49316"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	170000.00	="N/A"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:41 PM	
-="CN49320"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	165600.00	="FIN05CRP004-33"	="VEROSSITY"	30-Nov-07 12:41 PM	
-="CN49321"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	110000.00	="rft"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:41 PM	
-="CN49323"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	175000.00	="FIN 05CRP004-37"	="CANDLE AUSTRALIA LTD"	30-Nov-07 12:41 PM	
-="CN49328"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Nov-08	189000.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:42 PM	
-="CN49331"	"Divestment Expenses"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	30-Nov-07 12:42 PM	
-="CN49334"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	140668.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	
-="CN49336"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Nov-08	248000.00	="FIN 05CRP004-43"	="PROFESSIONALS ONLINE"	30-Nov-07 12:43 PM	
-="CN49337"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Nov-08	215000.00	="FIN 05CR004-33"	="VEROSSITY"	30-Nov-07 12:43 PM	
-="CN49339"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Oct-08	173700.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:43 PM	
-="CN49340"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	86000.00	="FIN 05CRP0004-41"	="ICON RECRUITMENT PTY LTD"	30-Nov-07 12:43 PM	
-="CN49342"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Jun-08	143908.41	="n/a"	="EMC AUSTRALIA"	30-Nov-07 12:43 PM	
-="CN49344"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	24-Nov-07	21-Nov-08	220000.00	="Labour Hire Panel"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:44 PM	
-="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	
-="CN49355"	"Project Manager and Superintendency"	="Department of Finance and Administration"	30-Nov-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	164747.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	30-Nov-07 12:45 PM	
-="CN49356"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	197600.00	="04/07995"	="MEDIA MONITORS - ALL STATES"	30-Nov-07 12:45 PM	
-="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	
-="CN49364"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Oct-08	213420.00	="FIN06AGI14-03"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	30-Nov-07 12:46 PM	
-="CN49371-A1"	"Fitout to CRS Australia premises - Albury"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Aug-07	31-Dec-07	124861.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 02:54 PM	
-="CN49373"	"Provision of Fitout at CRS Australia- Batemans Bay NSW"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	22-Oct-07	06-Dec-07	176451.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 03:01 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN45690"	"Supply of Power Steering Boxes, NSN 2530-66-155-0739 and qty 93."	="Defence Materiel Organisation"	26-Nov-07	="War vehicles"	09-Nov-07	04-Feb-08	143590.33	=""	="Land Rover Australia"	26-Nov-07 09:18 AM	

+="CN48148-A2"	"Provision of landscaping services to the AFP in the ACT"	="Australian Federal Police"	26-Nov-07	="Landscaping services"	17-Jan-05	16-Jan-08	141857.00	="RFT 2004-09"	="Ropolo Services Pty Ltd trading as Landscape Direct"	26-Nov-07 09:58 AM	

+="CN48158"	"SW Wing Upper Floor Refurbishment Project Management Fees"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Building and Construction and Maintenance Services"	01-Jul-07	31-Dec-07	100000.00	="ATM2007/00634"	="MANTEENA"	26-Nov-07 11:32 AM	

+="CN48160"	"Strengthening SPAM legislation, enforcement & cooperation regimes in Niue,Samoa & Vanuatu"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	20-Feb-08	88594.00	="CCR/07/3042"	="Galexia"	26-Nov-07 11:32 AM	

+="CN48179-A1"	"Nyaarla Projects: Backing Indigenous Ability Funding for Kalgoorlie, Sth Hedland & Geraldton"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="ATM07/468"	="Nyaarla Projects Pty Ltd"	26-Nov-07 11:34 AM	

+="CN48181-A1"	"Uptuyu Adventures - Backing Indigenous Ability Funding for Kununurra, Derby & Broome"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	11-Oct-07	30-Jun-10	100000.00	="CCR/07/1572"	="Uptuyu Adventures"	26-Nov-07 11:34 AM	

+="CN48185-A1"	"Ethos Global Foundation Ltd: Backing Indigenous Ability Darwin, Katherine and Nhulunbuy"	="Department of Communications, Information Technology and the Arts"	26-Nov-07	="Public Utilities and Public Sector Related Services"	16-Oct-07	30-Jun-10	100000.01	="ATM07/497"	="Ethos Global Foundation Ltd"	26-Nov-07 11:35 AM	

+="CN48190"	"PABX Supply and Implementation Failties Managemet Team Contract (DPS04082)"	="Department of Parliamentary Services"	26-Nov-07	="Telecommunications planning services"	21-Nov-07	28-Dec-07	143961.09	=""	="Telstra Corporation Ltd"	26-Nov-07 11:45 AM	

+="CN48202"	"Supply of  Computer Servers"	="Department of Parliamentary Services"	26-Nov-07	="Computer servers"	13-Nov-07	30-Nov-07	96382.66	=""	="Dell Australia P/L"	26-Nov-07 11:46 AM	

+="CN48207"	"Provision of Internet Services"	="Department of Parliamentary Services"	26-Nov-07	="Internet services"	21-Nov-07	30-Nov-07	164242.27	=""	="Telstra Corporation Ltd"	26-Nov-07 11:47 AM	

+="CN48210"	"Provision of Project Management Services"	="Department of Parliamentary Services"	26-Nov-07	="Project management"	12-Nov-07	31-Dec-07	199100.00	=""	="Manteena Pty Ltd"	26-Nov-07 11:48 AM	

+="CN48216"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	20-Nov-07	25-Jun-08	267960.00	=""	="SPECTRUMTECH PTY LTD"	26-Nov-07 11:56 AM	

+="CN48218"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	12-Nov-07	12-May-08	125840.00	=""	="CORDELTA PTY LTD"	26-Nov-07 11:57 AM	

+="CN48220"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	13-Nov-07	13-Nov-07	154000.00	=""	="CTIUM CONSULTING PTY.LTD"	26-Nov-07 11:57 AM	

+="CN48222"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	191343.80	=""	="TECHPOINT CONSULTING"	26-Nov-07 12:18 PM	

+="CN48229"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	26-Jul-07	30-Jun-08	182275.83	="ITC"	="SATURN SYSTEMS PTY LTD"	26-Nov-07 12:19 PM	

+="CN48231"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	01-Aug-07	30-Jun-08	93447.13	=""	="RADIUS SOLUTIONS GROUP PTY LTD"	26-Nov-07 12:19 PM	

+="CN48236"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Aug-07	30-Jun-08	291837.69	=""	="PALADIN SYSTEMS PTY LTD"	26-Nov-07 12:20 PM	

+="CN48239"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Aug-07	30-Jun-08	92719.09	=""	="OOSW CONSULTING PTY LTD"	26-Nov-07 12:20 PM	

+="CN48242"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	08-Aug-07	30-Jun-08	170655.24	=""	="EMTOR PTY LTD"	26-Nov-07 12:21 PM	

+="CN48245"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	253125.40	=""	="ENCORE IT SERVICES PTY LTD"	26-Nov-07 12:21 PM	

+="CN48251"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	06-Jul-07	30-Jun-08	154000.00	=""	="READIFY PTY LTD"	26-Nov-07 12:22 PM	

+="CN48263"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	92400.00	="ITC"	="SKILLSEARCH CONTRACTING PTY LTD"	26-Nov-07 12:24 PM	

+="CN48264"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	17-Jul-07	30-Jun-08	201635.78	=""	="HUDSON GLOBAL RESOURCES (AUST) PTY"	26-Nov-07 12:24 PM	

+="CN48267"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	19-Jul-07	30-Jun-08	244642.36	=""	="GLENDAR CONSULTING"	26-Nov-07 12:24 PM	

+="CN48278"	"IT Contractor"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	06-Sep-07	30-Jun-08	157080.00	="ICT"	="IT MATTERS"	26-Nov-07 12:25 PM	

+="CN48281"	"Long term leasing of vehicles to lift Remote Area"	="Department of Employment and Workplace Relations"	26-Nov-07	="Motor vehicles"	06-Sep-07	21-Dec-07	90000.00	="Centrelink RFT F06/0124"	="THRIFTY CAR RENTAL"	26-Nov-07 12:26 PM	

+="CN48283"	"Maintenance"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	07-Sep-07	30-Jun-08	162360.00	="TBA"	="HITACHI DATA SYSTEMS"	26-Nov-07 12:26 PM	

+="CN48284"	"Promotion of Job Placement Services and"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	07-Sep-07	30-Jun-09	99000.00	=""	="RECRUITMENT & CONSULTING"	26-Nov-07 12:26 PM	

+="CN48294"	"PROVISION OF IT PERSONNEL"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer services"	14-Aug-07	30-Jun-08	199084.20	=""	="VEROSSITY"	26-Nov-07 12:27 PM	

+="CN48296"	"Voice"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	15-Aug-07	30-Jun-08	84230.27	=""	="TELSTRA (VIC)"	26-Nov-07 12:27 PM	

+="CN48308"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	31-Aug-07	127567.89	=""	="DEPTMENT OF EMPLOYMENT & WORKPLACE"	26-Nov-07 12:29 PM	

+="CN48310"	"Fitouts"	="Department of Employment and Workplace Relations"	26-Nov-07	="Real estate services"	31-Aug-07	30-Jun-08	94684.23	=""	="INTERIORS AUSTRALIA PTY LIMITED"	26-Nov-07 12:29 PM	

+="CN48312"	"IT Equipment maintenance support"	="Department of Employment and Workplace Relations"	26-Nov-07	="Computer Equipment and Accessories"	03-Sep-07	30-Jun-08	175282.80	=""	="TECHFLEX PTY LTD"	26-Nov-07 12:29 PM	

+="CN48320"	"Telecommunications"	="Department of Employment and Workplace Relations"	26-Nov-07	="Telecommunications media services"	08-Aug-06	30-Jun-07	86615.45	=""	="TELSTRA (VIC)"	26-Nov-07 12:30 PM	

+="CN48335"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	214888.35	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48336"	"Capital Project Management"	="Department of Employment and Workplace Relations"	26-Nov-07	="Building construction and support and maintenance and repair services"	19-Oct-06	30-Jun-07	190542.36	=""	="UNITED GROUP SERVICES - PROPERTY AC"	26-Nov-07 12:32 PM	

+="CN48338"	"Provision of bulk mail out services."	="Department of Employment and Workplace Relations"	26-Nov-07	="Mail and cargo transport"	14-Nov-06	01-Jun-10	279118.47	=""	="SALMAT  LIMITED"	26-Nov-07 12:32 PM	

+="CN48348"	"1ST QUARTER IT SERVICE CHARGES"	="Department of Employment and Workplace Relations"	26-Nov-07	="Professional engineering services"	31-Jul-07	30-Sep-07	83105.00	=""	="Dept of Employment & Workplace"	26-Nov-07 12:34 PM	

+="CN48356"	"Legal Services"	="Department of Employment and Workplace Relations"	26-Nov-07	="Legal services"	20-Jul-06	30-Jun-08	100000.00	=""	="AUST GOVERNMENT SOLICITOR (ACT)"	26-Nov-07 12:35 PM	

+="CN48362"	"Software Mainframe Licences"	="Department of Employment and Workplace Relations"	26-Nov-07	="Software"	26-Jul-06	30-Jun-07	234001.90	=""	="IBM AUSTRALIA LTD"	26-Nov-07 12:35 PM	

+="CN48390"	"IT Contractors"	="Department of Employment and Workplace Relations"	26-Nov-07	="Management advisory services"	05-Jun-07	30-Jun-07	245461.31	=""	="AMBIT IT & T"	26-Nov-07 12:39 PM	

+="CN48401"	"WorkChoices Employer Advisor Programme 2 Experience of Private Sector/Industry Required"	="Department of Employment and Workplace Relations"	26-Nov-07	="Business administration services"	09-Feb-07	09-Feb-07	274350.00	=""	="AUSTRALIAN NEWSAGENTS' FEDERATION"	26-Nov-07 12:40 PM	

+="CN48416"	"    NRMA House - Detailed Design, Documentation & Construction    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Jul-05	21-Oct-05	129789.18	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 01:51 PM	

+="CN48419"	"IMU Contract Programmer: IMU-ICT010 Official Order IMU2007/068"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	24-Nov-07	23-Nov-08	193450.00	=""	="Reitan Holdings Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48420"	"IMU Contract Programmer: IMU-ICT104 Official Order: IMU2007/063"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	12-Nov-07	09-May-08	90090.00	=""	="GMT Canberra Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48421"	"IMU Contract Programmer: IMU-ICT012 Official Order: IMU2007/061"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	01-Nov-07	31-Oct-08	165000.00	=""	="Icon Recruitment Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48422"	"Conduct and overview benchmark to assess how DVA's current IT spending on application and infrastructure services compares to the Australian market. Identify areas for DVA to focus IT spend and perfor"	="Department of Veterans' Affairs"	26-Nov-07	="Computer services"	30-Aug-07	31-Dec-07	89100.00	=""	="IT Newcom Pty Ltd"	26-Nov-07 02:00 PM	

+="CN48432"	"07/2356 - Construction services (connected to 07/2335 business case)"	="Australian Customs and Border Protection Service"	26-Nov-07	="General building construction"	20-Nov-07	14-Dec-07	291591.30	=""	="Semrau Constructions"	26-Nov-07 02:23 PM	

+="CN48434-A2"	"07/2307 - Project Manager"	="Australian Customs and Border Protection Service"	26-Nov-07	="Human resources services"	25-Sep-07	30-Jun-08	243551.20	=""	="Apis Consulting Group (ACT) Pty"	26-Nov-07 02:23 PM	

+="CN48444"	"    62 Northbourne - Development of Project Scope    "	="Department of Transport and Regional Services"	26-Nov-07	="Project management"	01-Sep-06	31-Dec-07	231170.28	="TRS05/211"	="Xact Project Consultants Pty Ltd"	26-Nov-07 02:35 PM	

+="CN48452"	"SUBSCRIPTION"	="Australian Taxation Office"	26-Nov-07	="Management and Business Professionals and Administrative Services"	20-Oct-07	13-Nov-07	94944.28	=""	="Australian Public Service"	26-Nov-07 02:42 PM	

+="CN48468"	"Provision of Telephony Services"	="Medicare Australia"	26-Nov-07	="Communications Devices and Accessories"	23-Oct-07	23-Oct-07	179456.44	=""	="OPTUS BILLING SERVICES"	26-Nov-07 02:56 PM	

+="CN48471"	"Provision of Funding for Internal Project"	="Medicare Australia"	26-Nov-07	="Business administration services"	23-Oct-07	31-Dec-07	104999.97	=""	="GP PARTNERS LTD"	26-Nov-07 02:57 PM	

+="CN48485"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Mail and cargo transport"	17-Oct-07	31-Dec-07	84938.43	=""	="AUSTRALIA POST"	26-Nov-07 02:58 PM	

+="CN48495"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	26-Oct-07	19-Nov-07	171333.80	=""	="WA Partitioning Pty Ltd"	26-Nov-07 03:00 PM	

+="CN48498"	"Provision of Software Maintenance"	="Medicare Australia"	26-Nov-07	="Computer services"	29-Oct-07	29-Oct-07	242000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:00 PM	

+="CN48511"	"Provision of Postal Services"	="Medicare Australia"	26-Nov-07	="Paper products"	25-Oct-07	25-Oct-07	165000.00	=""	="AUSTRALIA POST"	26-Nov-07 03:02 PM	

+="CN48512"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	25-Oct-07	30-Oct-07	88000.00	=""	="MasterSoft Systems Pty Ltd"	26-Nov-07 03:02 PM	

+="CN48516"	"Provision of Property Management services"	="Medicare Australia"	26-Nov-07	="Business administration services"	26-Oct-07	29-Oct-07	112216.22	=""	="UNITED GROUP SERVICES PTY LTD"	26-Nov-07 03:02 PM	

+="CN48531"	"Provision of relocation services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	03-Oct-07	03-Oct-07	276853.50	=""	="DESKON INTERIORS PTY LTD"	26-Nov-07 03:03 PM	

+="CN48535"	"Provision of Consultancy Services"	="Medicare Australia"	26-Nov-07	="Business administration services"	04-Oct-07	04-Oct-07	93060.00	=""	="David Jess & Associates Pty Ltd"	26-Nov-07 03:04 PM	

+="CN48539"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	08-Oct-07	08-Oct-07	275000.00	=""	="SCHIAVELLO (VIC) PTY LTD"	26-Nov-07 03:04 PM	

+="CN48545"	"NSW ARMAGUARD SEP07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	98647.80	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48548"	"VIC ARMAGUARD SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	23-Sep-07	18-Oct-07	81663.19	=""	="LINFOX ARMAGUARD PTY LTD"	26-Nov-07 03:05 PM	

+="CN48554"	"AMEX TRAVEL SEP'07"	="Medicare Australia"	26-Nov-07	="Accounting and auditing"	27-Sep-07	24-Oct-07	227233.33	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	26-Nov-07 03:06 PM	

+="CN48555"	"Provision of Project Management services"	="Medicare Australia"	26-Nov-07	="General building construction"	02-Oct-07	02-Oct-07	185460.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:06 PM	

+="CN48559"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="General building construction"	09-Oct-07	09-Oct-07	138656.91	=""	="IBM GLOBAL SERVICES AUSTRALIA"	26-Nov-07 03:07 PM	

+="CN48561"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	12-Oct-07	31-Dec-07	212427.49	=""	="CROTTY & CO PTY LTD"	26-Nov-07 03:07 PM	

+="CN48567"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	12-Oct-07	12-Oct-07	161387.50	=""	="OPTUS NETWORKS PTY LIMITED"	26-Nov-07 03:08 PM	

+="CN48568"	"MANAGEMENT SERVICE FEES"	="Medicare Australia"	26-Nov-07	="Business administration services"	12-Oct-07	15-Oct-07	92730.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48569"	"Provision of Storage/Distribution services"	="Medicare Australia"	26-Nov-07	="Information services"	15-Oct-07	15-Oct-07	206957.66	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	26-Nov-07 03:08 PM	

+="CN48570"	"Provision of Refurbishment Services"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	15-Oct-07	15-Oct-07	81939.00	=""	="INTERIORS AUSTRALIA"	26-Nov-07 03:08 PM	

+="CN48578"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	26-Nov-07	="Computer services"	10-Oct-07	29-Feb-08	91784.00	=""	="CCS Technology recruiter"	26-Nov-07 03:09 PM	

+="CN48582"	"Office Fit Out"	="Medicare Australia"	26-Nov-07	="Building construction and support and maintenance and repair services"	11-Oct-07	31-Dec-07	92268.00	=""	="Superior Shopfitters"	26-Nov-07 03:09 PM	

+="CN35554-A2"	"Radio advertisements for the Murray-Darling Basin and Drought Assistance campaigns."	="Department of Human Services"	26-Nov-07	="Radio advertising"	01-Jul-07	30-Jun-08	132000.00	=""	="Eardrum Pty Ltd"	26-Nov-07 03:15 PM	

+="CN48595"	"ICON Levy's for 07/08"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	07-Nov-07	30-Jun-08	82500.00	=""	="DEPARTMENT OF FINANCE AND"	26-Nov-07 03:53 PM	

+="CN48601-A1"	"Provision of Certificate IV in Business (frontline management) to the AFP"	="Australian Federal Police"	26-Nov-07	="Education and Training Services"	01-Jul-07	30-Jun-08	94996.00	="APS Commission 2005/014"	="Global Training Institute"	26-Nov-07 04:16 PM	

+="CN48602"	"IT Contractor"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	16-Nov-07	21-Jan-08	208208.00	=""	="InfoRail Pty Ltd"	26-Nov-07 04:32 PM	

+="CN48603"	"IT Contractor services"	="Australian Taxation Office"	26-Nov-07	="Engineering and Research and Technology Based Services"	21-Nov-07	31-Mar-08	105600.00	=""	="FOCUS STRATEGIES & SOLUTIONS"	26-Nov-07 04:32 PM	

+="CN48630"	"Motor Vehicle Parts."	="Department of Defence"	27-Nov-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	15-Nov-07	21-Dec-07	108801.50	=""	="Daimler Chrysler Aust. Pacific"	27-Nov-07 08:26 AM	

+="CN48639-A1"	"06/1444 - Business Analyst - 0717-0892 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	01-Sep-07	31-Mar-08	81700.00	="05/0717"	="Peoplebank Australia Pty Ltd"	27-Nov-07 09:21 AM	

+="CN48640"	"07/2186 - Network Operations & Support - 0717-0890 - ICT Panel"	="Australian Customs and Border Protection Service"	27-Nov-07	="Temporary personnel services"	10-Dec-07	12-Dec-08	200000.00	="05/0717"	="Paxus Australia"	27-Nov-07 09:24 AM	

+="CN48655-A2"	"Recruitment - Database Administrator"	="Australian Crime Commission"	27-Nov-07	="Temporary personnel services"	08-Nov-07	30-Jun-08	139258.00	=""	="ICON Recruitment Pty ltd"	27-Nov-07 10:21 AM	

+="CN48656"	"Provision of Height Adjustable desks"	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	18-Aug-06	18-Aug-06	160921.00	=""	="Schiavello Pty Ltd"	27-Nov-07 10:24 AM	

+="CN48658-A1"	" Provision of Mobile Pedestal Units "	="Department of Immigration and Citizenship"	27-Nov-07	="Furniture"	14-Nov-06	14-Nov-06	117975.00	=""	="OfficeMax Australia Ltd"	27-Nov-07 10:27 AM	

+="CN48675"	"Recovery of fees for GPRS system"	="Australian Crime Commission"	27-Nov-07	="Information Technology Broadcasting and Telecommunications"	01-Jun-07	30-Sep-07	82040.65	=""	="Australian Security Intelligence Organisation"	27-Nov-07 11:03 AM	

+="CN48677-A3"	"It Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	05-Mar-07	02-May-08	262889.00	=""	="Finite IT Recruitment Pty. Ltd."	27-Nov-07 11:06 AM	

+="CN48678-A1"	"Provision for Business Analyst"	="Comsuper"	27-Nov-07	="Human resources services"	18-Oct-07	25-Apr-08	95524.00	=""	="Face2Face"	27-Nov-07 11:08 AM	

+="CN48680"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	30-Jun-08	165000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:13 AM	

+="CN48682-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	09-Jul-07	30-Jun-08	137500.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:15 AM	

+="CN48686"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	16-Jun-07	16-Feb-08	114345.00	=""	="Finite IT Recruitment Services"	27-Nov-07 11:18 AM	

+="CN48688-A1"	" IT Specialist Services "	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	17-May-07	30-Jun-08	235290.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 11:22 AM	

+="CN48690"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	04-Jun-07	04-Feb-08	114400.00	=""	="Paxus Australia Limited"	27-Nov-07 11:25 AM	

+="CN48692-A3"	"Provision of Information Technology Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Temporary information technology networking specialists"	02-Jul-07	30-Jun-09	264000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:28 AM	

+="CN48700-A3"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	21-May-07	31-Oct-08	281160.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:31 AM	

+="CN48704"	"Event management - contract staff"	="Department of Transport and Regional Services"	27-Nov-07	="Community and social services"	22-Oct-07	30-Jun-08	88000.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	27-Nov-07 11:31 AM	

+="CN48699-A1"	"Provision of a Business Analyst"	="Comsuper"	27-Nov-07	="Human resources services"	29-Nov-07	30-Jun-08	102080.00	=""	="Candle Australia Limited"	27-Nov-07 11:31 AM	

+="CN48705"	"Consultancy Services to assist the Department in design of ITSAP"	="Department of Transport and Regional Services"	27-Nov-07	="Management advisory services"	08-Oct-07	30-Sep-08	220000.00	="TRS07/209"	="SMEC AUSTRALIA PTY LIMITED"	27-Nov-07 11:31 AM	

+="CN48714-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	02-Jul-07	15-Feb-08	154000.00	=""	="Greythorn Pty Ltd"	27-Nov-07 11:34 AM	

+="CN48717-A1"	"Provision for System Test Manager"	="Comsuper"	27-Nov-07	="Human resources services"	01-Dec-07	30-Jun-08	125840.00	=""	="Paxus Australia Pty Ltd"	27-Nov-07 11:38 AM	

+="CN48718-A2"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	12-Jun-07	30-Jun-08	200970.00	=""	="Ambit Recruitment Group Pty Ltd"	27-Nov-07 11:40 AM	

+="CN48720-A1"	"IT Specialist Services Pty Limited"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	01-Jul-07	31-Dec-08	161205.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 12:03 PM	

+="CN48725-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	10-Jul-07	30-Jun-08	158400.00	=""	="Ambit Group Pty Limited"	27-Nov-07 12:17 PM	

+="CN48729"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Information technology consultation services"	18-Jun-07	30-Jun-08	138000.00	=""	="Ambit Group Pty Limited"	27-Nov-07 12:29 PM	

+="CN48738-A2"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	04-Jun-07	25-Jan-08	226765.00	=""	="Paxus Australia Pty Limited"	27-Nov-07 01:35 PM	

+="CN48739-A1"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	23-Mar-07	30-Jun-08	280500.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:38 PM	

+="CN48742"	"IT Specialist Services"	="Department of Immigration and Citizenship"	27-Nov-07	="Recruitment services"	15-May-07	14-Dec-07	105600.00	=""	="Greythorn Pty Ltd"	27-Nov-07 01:45 PM	

+="CN48745"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	05-Sep-07	171086.30	=""	="Asia Pacific Aerospace"	27-Nov-07 01:54 PM	

+="CN47484"	"Supply and Installation of Workstations"	="Australian Crime Commission"	27-Nov-07	="Workstations and office packages"	13-Jul-07	13-Aug-07	106678.00	=""	="Schiavello"	27-Nov-07 02:58 PM	

+="CN48784"	"Radar Sea Level Sensors"	="Bureau of Meteorology"	27-Nov-07	="Measuring and observing and testing instruments"	13-Nov-07	28-Apr-08	88748.00	=""	="Vega Australia Pty Ltd"	27-Nov-07 03:05 PM	

+="CN48755"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	03-Sep-07	171086.30	=""	="Asia Pacific aerospace"	27-Nov-07 03:17 PM	

+="CN48756"	"Repair of Blackhawk engine cold section module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	27-Aug-07	03-Sep-07	171086.30	=""	="Asia Pacific aerospace"	27-Nov-07 03:44 PM	

+="CN48822"	"Repair of Blackhawk Tail Rotor Gearbox"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	22-Aug-07	30-Aug-07	86293.34	=""	="sIKORSKY aIRCRAFT aUSTRALIA lTD"	27-Nov-07 04:57 PM	

+="CN48824"	"Repair of Blackhawk engine Cold Section Module"	="Defence Materiel Organisation"	27-Nov-07	="Military rotary wing aircraft"	16-Aug-07	25-Sep-07	171086.30	=""	="Asia Pacific Aerospace"	27-Nov-07 05:08 PM	

+="CN48840"	" HEADSET - MICROPHONE  MBITR, DYNAMIC "	="Defence Materiel Organisation"	28-Nov-07	="Microphones"	22-Nov-07	18-Apr-08	88350.00	=""	="EYLEX PTY LTD"	28-Nov-07 09:49 AM	

+="CN48849"	"Subscription Renewal"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	30-Jun-08	96624.00	="TBA"	="OPEN SYSTEMS PTY LTD"	28-Nov-07 09:56 AM	

+="CN48850"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Oct-07	30-Jun-08	108900.00	="ITC"	="COLLECTIVE RESOURCES RECRUITMENT PT"	28-Nov-07 09:56 AM	

+="CN48875"	"Rent & outgoings"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	15-Oct-07	15-Oct-07	208664.39	=""	="UNITED GROUP SERVICES - PROPERTY AC"	28-Nov-07 09:59 AM	

+="CN48889"	"On Line Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	19-Oct-07	30-Jun-08	276100.00	="TBA"	="SKILLSOFT"	28-Nov-07 10:00 AM	

+="CN48891"	"General Accounting Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Oct-07	31-Jan-08	95850.00	=""	="WALTER AND TURNBULL PTY LTD"	28-Nov-07 10:00 AM	

+="CN48897"	"IT Communications  Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Communications Devices and Accessories"	17-Oct-07	30-Jun-08	135756.76	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:01 AM	

+="CN48900"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	16-Oct-07	30-Jun-08	275660.00	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:01 AM	

+="CN48913"	"EDDP 135-Employment in Central G/fields"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	16-Nov-07	13-Jun-08	98500.00	="DEWR DG 14 2007/08"	="CENTRAL GOLDFIELDS SHIRE"	28-Nov-07 10:03 AM	

+="CN48923"	"EDDP 143&MAIS 35 Skilling for the Future"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	26-Nov-07	13-Jun-08	106700.00	=""	="AIEM NETWORK"	28-Nov-07 10:03 AM	

+="CN48925"	"JOWWS-1008 - New South Wales"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	23-Nov-07	30-Jun-08	220000.00	="DEWR RFT 2007/10"	="EQUALS INTERNATIONAL (AUST) PTY LTD"	28-Nov-07 10:04 AM	

+="CN48926"	"InfoHRM HR Metrics and Benchmarking Services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Printed media"	23-Nov-07	30-Sep-10	132000.00	=""	="INFOHRM PTY LTD"	28-Nov-07 10:04 AM	

+="CN48927"	"National Hazard Exposure Workers Survey"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	23-Nov-07	30-Jun-08	203500.00	=""	="SWEENY RESEARCH P/L"	28-Nov-07 10:04 AM	

+="CN48937"	"EDDP 130 - Mining Program (PRE-MP)"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	14-Nov-07	02-May-08	122155.00	="DEWR DG 13 2007/08"	="SERVICE TO YOUTH COUNCIL"	28-Nov-07 10:05 AM	

+="CN48939"	"MAINTENANCE TO CISCO EQUIPMENTS"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	07-Nov-07	31-Jul-08	80479.05	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	28-Nov-07 10:05 AM	

+="CN48941"	"MAIS26: Outback Stores - Remote"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	31-May-08	99960.00	="DEWR DG 6 2007/08"	="OUTBACK STORES"	28-Nov-07 10:05 AM	

+="CN48942"	"EDDP125 - Diversity into Work"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	30-Jun-08	99400.00	="DEWR DG 7 2007/08"	="DIVERSITY @ WORK"	28-Nov-07 10:05 AM	

+="CN48943"	"EDDP113: CivSkills"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	16-Jun-08	105500.00	="DEWR DG 9 2007/08"	="THE CONSTRUCTION TRAINING CENTRE"	28-Nov-07 10:06 AM	

+="CN48944"	"EDDP127 & MAIS25: Working in Care"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	07-Nov-07	13-Jun-08	84700.00	="DEWR DG 8 2007/08"	="POW WOW CONSULTING PTY LTD"	28-Nov-07 10:06 AM	

+="CN48947"	"SSE iBase Licenses"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	02-Nov-07	26-Nov-07	172579.00	=""	="VISUAL ANALYSIS PTY LTD"	28-Nov-07 10:06 AM	

+="CN48955"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	13-Nov-07	30-Jun-08	190300.00	="ITC"	="STRATAGEM COMPUTER CONTRACTORS"	28-Nov-07 10:07 AM	

+="CN48965"	"IT Equipment"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer Equipment and Accessories"	08-Nov-07	30-Jun-08	169203.54	=""	="DATAFLEX PTY LTD"	28-Nov-07 10:08 AM	

+="CN48970"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Jun-08	109518.20	="ICT"	="ESPIRE INFOLABS PTY LTD"	28-Nov-07 10:08 AM	

+="CN48972"	"IT Consultants"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	19-Sep-07	30-Jun-08	191759.81	="ICT"	="IBM AUSTRALIA LTD"	28-Nov-07 10:08 AM	

+="CN48974"	"Photcopiers"	="Department of Employment and Workplace Relations"	28-Nov-07	="Office machines and their supplies and accessories"	19-Sep-07	30-Jan-12	100000.00	=""	="RICOH AUSTRALIA (ROA)"	28-Nov-07 10:09 AM	

+="CN48976"	"Fitouts"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Sep-07	30-Jun-08	172595.50	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:09 AM	

+="CN48977"	"Fitouts Beaumont St, Newcastle"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	18-Sep-07	30-Jun-08	255200.00	=""	="INTERIORS AUSTRALIA PTY LIMITED"	28-Nov-07 10:09 AM	

+="CN48980"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	17-Sep-07	30-Jun-08	127195.20	="ITC"	="PEGASUS GLOBAL PTY LTD"	28-Nov-07 10:09 AM	

+="CN48998"	"Hospitality As A Career-Eyre Peninsula"	="Department of Employment and Workplace Relations"	28-Nov-07	="Business administration services"	20-Sep-07	16-Jun-08	110000.00	=""	="EYRE REGIONAL DEVELOPMENT BOARD"	28-Nov-07 10:11 AM	

+="CN49000"	"NESB consultancy services"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	20-Sep-07	30-Nov-07	284526.00	=""	="CULTURAL PARTNERS AUSTRALIA"	28-Nov-07 10:11 AM	

+="CN49003"	"Career Development Assessment Training"	="Department of Employment and Workplace Relations"	28-Nov-07	="Vocational training"	11-Sep-07	30-Jun-08	120000.00	=""	="AUSTRALIAN PUBLIC SERVICE"	28-Nov-07 10:12 AM	

+="CN49004"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Information services"	07-Aug-07	30-Jun-08	206153.20	=""	="FRONTIERGROUP AUSTRALIA P/L"	28-Nov-07 10:12 AM	

+="CN49006"	"Provision of IT Personnel"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	250932.00	="ITC"	="COMPAS PTY LTD"	28-Nov-07 10:12 AM	

+="CN49007"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	23-Jul-07	30-Jun-08	278169.35	="ITC"	="CCS INDEX PTY LTD T/A CCS INDEX"	28-Nov-07 10:12 AM	

+="CN49008"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	20-Nov-07	30-Jun-08	80877.50	=""	="INFO RAIL PTY LTD"	28-Nov-07 10:12 AM	

+="CN49011"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	19-Nov-07	30-Jun-08	116159.95	=""	="AUREC PTY LTD"	28-Nov-07 10:12 AM	

+="CN49012"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	19-Nov-07	30-Jun-08	126874.00	=""	="CANDLE AUSTRALIA LTD"	28-Nov-07 10:12 AM	

+="CN49013"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	27-Nov-07	30-Jun-08	101574.00	=""	="AMOR CONSULTING PTY LTD"	28-Nov-07 10:13 AM	

+="CN49029"	"CoursePlus Contract"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	12-Sep-07	30-Jun-09	261800.00	=""	="CURRICULUM CORPORATION"	28-Nov-07 10:14 AM	

+="CN49032"	"Fitouts - Level 1 Todd Mall"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	10-Oct-07	30-Jun-08	137745.54	=""	="SCHIAVELLO COMMERCIAL INTERIORS"	28-Nov-07 10:15 AM	

+="CN49033"	"Fitout - 47 Mitchel St, Darwin"	="Department of Employment and Workplace Relations"	28-Nov-07	="Real estate services"	10-Oct-07	30-Jun-08	247941.96	=""	="SCHIAVELLO COMMERCIAL INTERIORS"	28-Nov-07 10:15 AM	

+="CN49037"	"IT Contractors"	="Department of Employment and Workplace Relations"	28-Nov-07	="Management advisory services"	08-Oct-07	30-Jun-08	145200.00	="ICT"	="APIS CONSULTING GROUP (ACT) P/L"	28-Nov-07 10:15 AM	

+="CN49073"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	26-Sep-07	30-Jun-08	285642.65	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	28-Nov-07 10:19 AM	

+="CN49074"	"Annual Maintenance"	="Department of Employment and Workplace Relations"	28-Nov-07	="Computer services"	26-Sep-07	30-Jun-08	289172.77	="ICT"	="HEWLETT PACKARD AUSTRALIA PTY LTD"	28-Nov-07 10:19 AM	

+="CN49115"	"Supervisory Management Program in AQIS Management Development Program (AMDP) and Fundamentals of Supervision training"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	19-Nov-07	30-Jun-08	150000.00	=""	="Swinburne Industry Solutions"	28-Nov-07 11:16 AM	

+="CN49125"	"GDP 08 Temporary Accommodation"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Jan-08	01-Mar-08	80800.00	=""	="Medina Classic Canberra"	28-Nov-07 11:17 AM	

+="CN49128"	"To undertake a Industry Stocktake of the Australian banana industry"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	16-May-08	186031.00	=""	="AgEconPlus Pty Ltd"	28-Nov-07 11:17 AM	

+="CN49132"	"Creative and Communications Services for Tasmanian Community Forest Agreement International Communications Programme"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	25-Oct-07	30-Jun-08	274346.93	=""	="Porter Novelli Australia Pty Ltd"	28-Nov-07 11:18 AM	

+="CN49139"	"Provision of relocation services to new DAFF accommodation in Civic & Fyshwick."	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="General building construction"	05-Nov-07	28-Feb-08	220000.00	=""	="Atlantis Pty Ltd"	28-Nov-07 11:19 AM	

+="CN49142-A1"	"2008 Graduate relocations to Canberra expenses"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Education and Training Services"	01-Nov-07	30-Jun-08	155000.00	=""	="Move Dynamics"	28-Nov-07 11:19 AM	

+="CN49143"	"Review of the Managment of Weeds of National Significance"	="Department of Agriculture Fisheries and Forestry"	28-Nov-07	="Management and Business Professionals and Administrative Services"	12-Nov-07	28-Apr-08	206855.00	=""	="Beaten Track Group Pty Ltd"	28-Nov-07 11:19 AM	

+="CN49147"	"Provision of Helpdesk Analyst Service"	="Family Court of Australia"	28-Nov-07	="Technical support or help desk services"	26-Nov-07	21-Nov-08	92928.00	=""	="CCS Technology Recruiters"	28-Nov-07 11:34 AM	

+="CN49150"	"Network Engineer"	="Family Court of Australia"	28-Nov-07	="Professional engineering services"	08-Dec-07	05-Nov-08	200640.00	=""	="CCS Index Pty Ltd"	28-Nov-07 11:52 AM	

+="CN49151-A1"	"Installation of Playground Equipment"	="National Capital Authority"	28-Nov-07	="Playground equipment"	12-Apr-07	07-Sep-07	85046.28	=""	="Kompan(NSW) Pty Ltd"	28-Nov-07 12:01 PM	

+="CN49153"	"PARTS KIT, STEERING WHEEL SEALS FOR WHEEL DRIVE AXLE"	="Defence Materiel Organisation"	28-Nov-07	="Steering system"	08-Mar-07	26-Sep-07	174790.00	=""	="GENERAL LAND SYSTEMS DIVISION"	28-Nov-07 12:17 PM	

+="CN49157-A2"	"Canberra Central Parklands Master Plan"	="National Capital Authority"	28-Nov-07	="Land use planning"	13-Aug-07	31-Oct-07	119942.67	=""	="Oxigen Pty Ltd"	28-Nov-07 12:38 PM	

+="CN49169"	"Laptop PC's and accessories"	="Centrelink"	28-Nov-07	="Computer Equipment and Accessories"	28-Nov-07	02-Jun-09	291379.87	="2004/52285"	="Hewlett Packard Australia Pty Ltd"	28-Nov-07 02:46 PM	

+="CN49168"	"Specialist financial services for the Office of Access Card"	="Department of Human Services"	28-Nov-07	="Public enterprises management or financial services"	11-Sep-07	28-Sep-07	187000.00	=""	="McGrathNicol Corporate Advisory"	28-Nov-07 02:48 PM	

+="CN49180-A1"	"Temporary Personnel"	="Australian Electoral Commission"	28-Nov-07	="Temporary personnel services"	01-Aug-06	30-Jun-09	91462.80	="S06/07/18"	="Tarakan Consulting Pty Ltd"	28-Nov-07 05:19 PM	

+="CN49186"	"Prepayment (SUBS)"	="Office of the Director of Public Prosecutions"	28-Nov-07	="Printed media"	28-Aug-07	30-Jun-08	82153.63	=""	="Thomson Legal & Regulatory Group"	28-Nov-07 05:46 PM	

+="CN49198"	"Battery storage 3.6 AMP/HR LITHIUMJ ION MBITR"	="Defence Materiel Organisation"	29-Nov-07	="Lithium batteries"	28-Nov-07	30-Apr-08	246807.00	=""	="THALES AUSTRALIA"	29-Nov-07 07:06 AM	

+="CN49206"	"07/1775 - Extension #1 - Project management services - 0769-1311"	="Australian Customs and Border Protection Service"	29-Nov-07	="Project management"	01-May-07	31-Dec-08	238700.00	="05/0769"	="Carson Group (QLD) Pty Ltd"	29-Nov-07 09:15 AM	

+="CN49213-A1"	"Provision for Application Developers"	="Comsuper"	29-Nov-07	="Human resources services"	31-Jul-06	25-Jan-08	228800.00	=""	="Icon Recruitment"	29-Nov-07 11:12 AM	

+="CN49214-A1"	"Provision for Business Analyst"	="Comsuper"	29-Nov-07	="Human resources services"	05-Dec-07	30-Jun-08	119548.00	=""	="M&T Resources"	29-Nov-07 11:14 AM	

+="CN49224-A4"	"Management of the Constable Kenny Koala Program"	="Australian Federal Police"	29-Nov-07	="Management support services"	01-Dec-07	30-Nov-11	269280.00	="RFT 2-2007"	="1994 Investments Pty Ltd as trustee for Ideas and Directions Unit Trust (T/A: Ideas and Directions)"	29-Nov-07 01:21 PM	

+="CN49243"	"Commputers"	="Department of the House of Representatives"	29-Nov-07	="Computers"	27-Nov-07	31-Dec-07	278620.00	=""	="Commander NSW Pty Ltd"	29-Nov-07 02:15 PM	

+="CN49290"	"OverHaul Kiowa Aircraft Engine"	="Defence Materiel Organisation"	30-Nov-07	="Medical or rescue helicopters"	06-Mar-07	04-Apr-07	91547.30	=""	="Aviation Turbine Overhaul"	30-Nov-07 09:14 AM	

+="CN49297"	"Consultancy Services (Term nominal end date)"	="Australian Broadcasting Corporation"	30-Nov-07	="Information technology consultation services"	11-Oct-07	10-Nov-08	112000.00	="NS0730"	="Acumen Alliance"	30-Nov-07 11:50 AM	

+="CN49311"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	132660.00	="AGIMO tender - see attached document"	="UNIFY SOLUTIONS PTY LTD"	30-Nov-07 12:40 PM	

+="CN49314"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	23-Oct-08	120782.00	="20031A"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:40 PM	

+="CN49315"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	266159.65	=""	="AGS - SYDNEY"	30-Nov-07 12:41 PM	

+="CN49316"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	170000.00	="N/A"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:41 PM	

+="CN49320"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	165600.00	="FIN05CRP004-33"	="VEROSSITY"	30-Nov-07 12:41 PM	

+="CN49321"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	110000.00	="rft"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:41 PM	

+="CN49323"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	175000.00	="FIN 05CRP004-37"	="CANDLE AUSTRALIA LTD"	30-Nov-07 12:41 PM	

+="CN49328"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Nov-08	189000.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:42 PM	

+="CN49331"	"Divestment Expenses"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	30-Nov-07 12:42 PM	

+="CN49334"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	140668.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	

+="CN49336"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Nov-08	248000.00	="FIN 05CRP004-43"	="PROFESSIONALS ONLINE"	30-Nov-07 12:43 PM	

+="CN49337"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Nov-08	215000.00	="FIN 05CR004-33"	="VEROSSITY"	30-Nov-07 12:43 PM	

+="CN49339"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Oct-08	173700.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:43 PM	

+="CN49340"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	86000.00	="FIN 05CRP0004-41"	="ICON RECRUITMENT PTY LTD"	30-Nov-07 12:43 PM	

+="CN49342"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Jun-08	143908.41	="n/a"	="EMC AUSTRALIA"	30-Nov-07 12:43 PM	

+="CN49344"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	24-Nov-07	21-Nov-08	220000.00	="Labour Hire Panel"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:44 PM	

+="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	

+="CN49355"	"Project Manager and Superintendency"	="Department of Finance and Administration"	30-Nov-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	164747.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	30-Nov-07 12:45 PM	

+="CN49356"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	197600.00	="04/07995"	="MEDIA MONITORS - ALL STATES"	30-Nov-07 12:45 PM	

+="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	

+="CN49364"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Oct-08	213420.00	="FIN06AGI14-03"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	30-Nov-07 12:46 PM	

+="CN49371-A1"	"Fitout to CRS Australia premises - Albury"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Aug-07	31-Dec-07	124861.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 02:54 PM	

+="CN49373"	"Provision of Fitout at CRS Australia- Batemans Bay NSW"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	22-Oct-07	06-Dec-07	176451.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 03:01 PM	

 ="CN49386"	" STAGE 2  INSTALL APPROVED REPAIR ONTO A BRIDGE ERECTION PROPULSION BOAT AS PER STATEMENT OF WORK AGAINST STANDING OFFER NO. E1-203894  STAGE 3  INSTALLATION OF REPAIR SOLUTION TO BALANCE OF BRIDGE ERECTION PROPULSION BOAT  TECHNICAL DRAWINGS  INSTALLATION OF VETUS STRAINER TO RAW WATER SYSTEM  SUPPLY AND FIT WORK LIGHTS CABLES AND LIGHTS TO 6 VESSELS  ANODE INSTALLATION  SUPPLY AND INSTALLATION OF BIMINI COVER KITS TO 15 BOATS "	="Defence Materiel Organisation"	30-Nov-07	="Workover boats"	26-Nov-07	30-Sep-08	291002.81	=""	="THE BIRDON GROUP"	30-Nov-07 05:04 PM 

--- /dev/null
+++ b/admin/partialdata/27Jun2008to29Jun2008valto.xls
@@ -1,1 +1,155 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95158"	"LAND ROVER VEHICLE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	17-Jul-08	16269.33	=""	="Land Rover AUSTRALIA"	27-Jun-08 09:16 AM	

+="CN95159"	"Provision of 6 4WD Driver training Courses"	="Australian Federal Police"	27-Jun-08	="Vehicle driving schools services"	01-Jul-08	31-Dec-08	225000.00	="May-05"	="Transport Industries Skills Centre INC"	27-Jun-08 09:37 AM	

+="CN95161"	" 5 Laptops "	="Office of the Australian Information Commissioner"	27-Jun-08	="Notebook computers"	03-Apr-08	03-Apr-08	14492.50	=""	="JEAS Solutions Pty Ltd"	27-Jun-08 09:51 AM	

+="CN95162"	"PROJECT SINGLELEAP PHASE 1 (ACCOMMODATION)"	="Department of Defence"	27-Jun-08	="Building construction and support and maintenance and repair services"	12-Jun-08	31-Mar-39	680150264.00	="AZ3210"	="PLENARY GROUP PTY LTD"	27-Jun-08 10:02 AM	

+="CN95163"	" SEALING COMPOUND "	="Defence Materiel Organisation"	27-Jun-08	="Adhesives and sealants"	16-Apr-08	30-Jun-08	20811.44	=""	="PPG INDUSTRIES AUSTRALIA PTY LTD"	27-Jun-08 10:10 AM	

+="CN95174-A2"	" Software licenses "	="Department of Human Services"	27-Jun-08	="Software"	14-Sep-00	14-Sep-20	502765.67	=""	="Open Text Australia Pty Ltd"	27-Jun-08 11:35 AM	

+="CN95176"	"Purchase of laptops and accessories"	="Centrelink"	27-Jun-08	="Computer Equipment and Accessories"	27-Jun-08	27-Dec-08	47571.43	="2004/52285"	="Hewlett packard"	27-Jun-08 11:39 AM	

+="CN95177"	"Office Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jul-09	28989.86	="RFT 2002"	="INSTYLE INDOOR PLANT HIRE"	27-Jun-08 11:41 AM	

+="CN95178"	"Rent Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-09	132796.68	="05/006"	="SYDNEY AIRPORTS CORPORATION LTD"	27-Jun-08 11:41 AM	

+="CN95179"	"Rent Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Oct-09	42540.04	="N/A"	="UGS-AUSTRALIAN PACIFIC AIRPORTS (MELB)"	27-Jun-08 11:41 AM	

+="CN95180"	"Property Management Services"	="Department of Finance and Deregulation"	27-Jun-08	="National Defence and Public Order and Security and Safety Services"	25-Jun-08	30-Jun-09	29513.02	="N/A"	="SITA AUSTRALIA"	27-Jun-08 11:41 AM	

+="CN95181"	"Security Costs"	="Department of Finance and Deregulation"	27-Jun-08	="National Defence and Public Order and Security and Safety Services"	27-Jun-08	30-Jun-08	223394.58	="FIN/06/CORP003"	="CHUBB PROTECTIVE SERVICES"	27-Jun-08 11:41 AM	

+="CN95182"	"Legal Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	30-Jun-08	45000.00	="RFT LSB 01/2005"	="BLAKE DAWSON - ACT"	27-Jun-08 11:41 AM	

+="CN95183"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	29-Aug-08	161700.00	="N/A"	="RED WAHOO PTY LTD"	27-Jun-08 11:42 AM	

+="CN95184"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95185"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95186"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	20-Feb-08	30-Jun-08	49500.00	=""	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95187"	"Freight & Storage Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Transportation and Storage and Mail Services"	01-Mar-08	30-Jun-08	146250.00	="N/A"	="IRON MOUNTAIN AUSTRALIA PTY LTD"	27-Jun-08 11:42 AM	

+="CN95188"	"IT System Development Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Jul-08	14458.40	="N/A"	="VISION AUSTRALIA"	27-Jun-08 11:42 AM	

+="CN95189"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-09	27800.00	="n/a"	="ORIJEN PTY LTD"	27-Jun-08 11:42 AM	

+="CN95190"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	26-Sep-08	154440.00	="n/a"	="APIS CONSULTING GROUP"	27-Jun-08 11:42 AM	

+="CN95191"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	30-May-08	12345.00	="n/a"	="PEOPLE & STRATEGY (ACT) PTY"	27-Jun-08 11:43 AM	

+="CN95193"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Travel and Food and Lodging and Entertainment Services"	26-Jun-08	31-Jul-08	38860.41	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	27-Jun-08 11:43 AM	

+="CN95195"	"IT System Development Services"	="Department of Finance and Deregulation"	27-Jun-08	="Information Technology Broadcasting and Telecommunications"	25-Jun-08	27-Feb-09	2203257.00	="00000000000000000"	="CENTRELINK"	27-Jun-08 11:43 AM	

+="CN95198"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jun-08	20-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:43 AM	

+="CN95194"	"Re Imbursement of expenses for the Strathgordon & Yalanji/Wajal Wujal Determinations"	="National Native Title Tribunal"	27-Jun-08	="Meeting facilities"	20-Jul-07	18-Dec-07	43068.14	=""	="Cape York Land Council"	27-Jun-08 11:44 AM	

+="CN95199"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	27-Jun-08 11:44 AM	

+="CN95200"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	27-Jun-08 11:44 AM	

+="CN95201"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:44 AM	

+="CN95197-A1"	"Provision of fit out services for the Gosford premises of CRS Australia."	="CRS Australia"	27-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	85690.00	=""	="Latin Interiors Pty Ltd"	27-Jun-08 11:44 AM	

+="CN95202"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:44 AM	

+="CN95203"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95204"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	22-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95205"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jun-08	20-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95206"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95207"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95208"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:45 AM	

+="CN95209"	"Conference & Meetings Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	30-Jun-08	15090.00	=""	="HYATT HOTEL CANBERRA"	27-Jun-08 11:45 AM	

+="CN95210"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	40000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	27-Jun-08 11:46 AM	

+="CN95211"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95212"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	22-Jun-08	21-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95213"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	03-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95196-A1"	"Provision of fit out services for the Gosford premises of CRS Australia."	="CRS Australia"	27-Jun-08	="Building and Construction and Maintenance Services"	19-Jun-08	30-Jun-08	89243.00	=""	="Latin Interiors Pty Ltd"	27-Jun-08 11:46 AM	

+="CN95214"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-Jun-08	03-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95215"	"Contractor Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	08-Dec-08	30000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	27-Jun-08 11:46 AM	

+="CN95216"	"Repairs & Maintenance - Building"	="Department of Finance and Deregulation"	27-Jun-08	="Building and Construction and Maintenance Services"	01-Mar-08	31-Jul-08	57750.00	="N/A"	="UNITED PROCESS SOLUTIONS PTY LTD"	27-Jun-08 11:47 AM	

+="CN95217"	"Capital Expenditure - Buildings"	="Department of Finance and Deregulation"	27-Jun-08	="Building and Construction and Maintenance Services"	26-Jun-08	30-Jun-08	1458052.60	="Pre austender register"	="ST HILLIERS CONTRACTING PTY LTD"	27-Jun-08 11:47 AM	

+="CN95218"	"Divestment Expenses"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	13-Jun-08	30-Jun-08	13750.00	="n/a"	="KPMG"	27-Jun-08 11:47 AM	

+="CN95219"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	18-Jun-08	21750.00	="N/A"	="PROTIVITI PTY LTD"	27-Jun-08 11:47 AM	

+="CN95220-A1"	"Consultant to Provide Advice on the Consolidated Financial Statement Audit Committee"	="Department of Finance and Deregulation"	27-Jun-08	="Management advisory services"	26-Jun-08	31-Dec-10	33000.00	=""	="OLIVER WINDER PTY LTD"	27-Jun-08 11:47 AM	

+="CN95221"	"Consultancy Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	31-Mar-09	79999.00	="."	="ANNE MARKIEWICZ & ASSOCIATES PTY LTD"	27-Jun-08 11:47 AM	

+="CN95222"	"Training & Education Costs"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	05-Aug-08	31-Oct-08	23593.00	="Legal Panel"	="MINTER ELLISON - ACT"	27-Jun-08 11:47 AM	

+="CN95223"	"Insurance and Risk Management Advisory Services"	="Department of Finance and Deregulation"	27-Jun-08	="Management and Business Professionals and Administrative Services"	01-Oct-08	30-Sep-09	41360.00	="RFT Fin05/AMG005"	="COLMAR BRUNTON SOCIAL RESEARCH"	27-Jun-08 11:48 AM	

+="CN95225"	"Copy Charges, Maintenance and Repair of Canon photocopiers and faxes in 2008-2009 financial year"	="Australian Taxation Office"	27-Jun-08	="Photocopiers"	01-Jul-08	30-Jun-09	30000.00	=""	="Canon Australia"	27-Jun-08 11:54 AM	

+="CN95226"	"Consultancy services re organisation structure"	="Department of the Prime Minister and Cabinet"	27-Jun-08	="Business and corporate management consultation services"	17-Mar-08	30-Apr-08	52800.00	=""	="Ronald McLeod"	27-Jun-08 12:00 PM	

+="CN95227"	"Annual Subscription Managed Service Desk + Enterprise Edition - Perpetual"	="National Native Title Tribunal"	27-Jun-08	="Application programming services"	01-Apr-08	31-Mar-09	23272.00	=""	="Bellridge Pty Ltd"	27-Jun-08 12:20 PM	

+="CN95228"	"Informit Index Set 2 User - Annual subscription"	="National Native Title Tribunal"	27-Jun-08	="Publishing"	28-Feb-08	27-Feb-09	10552.00	=""	="RMIT Publishing"	27-Jun-08 12:35 PM	

+="CN95231"	"Purchase on computer equipments"	="Future Fund Management Agency"	27-Jun-08	="Computer Equipment and Accessories"	15-May-08	25-Jun-08	26152.83	=""	="ASG Group Limited"	27-Jun-08 12:39 PM	

+="CN95233-A1"	"Provide strategic direction to Centralised Computing bundle."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	04-Jul-08	192579.20	="07.102"	="The Boston Consulting Group Pty Ltd"	27-Jun-08 12:58 PM	

+="CN95232"	"Client Satisfaction Survey"	="National Native Title Tribunal"	27-Jun-08	="Market research"	17-Mar-08	04-Jun-08	41360.00	=""	="Mark Dignam & Assoc Pty Ltd"	27-Jun-08 12:59 PM	

+="CN95234"	"SEALING COMPOUND"	="Defence Materiel Organisation"	27-Jun-08	="Adhesives and sealants"	27-Jun-08	29-Aug-08	14527.50	=""	="HENKEL AUSTRALIA PTY LTD"	27-Jun-08 01:28 PM	

+="CN95235"	"Printing of NAT15397-06.2008 JS11603 Fuel tax credits get money back for your business"	="Australian Taxation Office"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Jun-08	07-Jul-08	13665.30	=""	="Paragon Printers"	27-Jun-08 01:32 PM	

+="CN95236-A3"	"Facilitator for End User Computing Vendor workshops."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	21-Jul-08	19-Sep-08	90604.80	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 01:35 PM	

+="CN95237"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:38 PM	

+="CN95238"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:42 PM	

+="CN95240"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	29719.80	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 01:51 PM	

+="CN95243"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:01 PM	

+="CN95244"	"MARINE QUALIFIED LABOUR HIRE"	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:05 PM	

+="CN95246"	" MARINE QUALIFED LABOUR HIRE "	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	22955.72	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:08 PM	

+="CN95247"	" MARINE QUALIFED SLIPWAY SUPERVISOR LABOUR HIRE "	="Department of Defence"	27-Jun-08	="Commercial marine craft"	25-Jun-08	28-Nov-08	34535.16	=""	="SKILLED ENGINEERING LTD"	27-Jun-08 02:12 PM	

+="CN95252-A2"	"ICT Monitoring Operations Team"	="Australian Taxation Office"	27-Jun-08	="Temporary personnel services"	01-Jul-08	30-Jun-12	1329735.00	="015-2008"	="Epicon IT Solutions PL as the Trustee for Epicon Unit Trust"	27-Jun-08 02:28 PM	

+="CN95248-A7"	" Perform Project Director role within IT Outsourcing Management & perform financial analysis, advice & assistance Project - Mainframe/Midrange. "	="Australian Taxation Office"	27-Jun-08	="Information technology consultation services"	01-Jul-08	31-Dec-10	1989375.52	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 02:36 PM	

+="CN95255-A1"	"Accommodation Management Services"	="Australian Electoral Commission"	27-Jun-08	="Travel and Food and Lodging and Entertainment Services"	01-Jul-04	30-Jun-09	2239786.70	=""	="Lido Group Pty Ltd - Diners Club International"	27-Jun-08 02:50 PM	

+="CN95257-A5"	"Provide strategic sourcing advice & support to Centralised Computing & End User Computing bundle projects."	="Australian Taxation Office"	27-Jun-08	="Management and Business Professionals and Administrative Services"	10-Jun-08	30-Jun-09	2106139.20	="07.102"	="Technology Partners International Incorporated"	27-Jun-08 02:54 PM	

+="CN95258-A1"	" Two one year license's for 'Gartner' subsciption "	="Australian Taxation Office"	27-Jun-08	="Computer services"	01-Jul-08	30-Jun-09	115170.00	=""	="Gartner Australasia Pty Limited"	27-Jun-08 02:55 PM	

+="CN95259"	" Noise Genenrator "	="Defence Materiel Organisation"	27-Jun-08	="Radar and sonar systems and components"	27-Jun-08	22-Aug-08	12320.00	=""	="A & D International Pty Ltd"	27-Jun-08 02:59 PM	

+="CN95242"	"Provision of Training Revision Services"	="Department of Immigration and Citizenship"	27-Jun-08	="Management and Business Professionals and Administrative Services"	15-May-08	30-Jun-08	33000.00	=""	="Alliance Consulting Group Pty Ltd"	27-Jun-08 03:03 PM	

+="CN95260"	"Legal Services"	="Australian Human Rights Commission"	27-Jun-08	="Legal services"	04-Feb-08	04-Jun-08	10937.50	=""	="Craig Lenehan"	27-Jun-08 03:03 PM	

+="CN95261"	"ProtectDrive/ProtectPack Annual Support and Maintenance"	="Australian Securities and Investments Commission"	27-Jun-08	="Components for information technology or broadcasting or telecommunications"	01-Jul-07	30-Jun-08	10342.75	=""	="SafeNet Australia Pty Ltd"	27-Jun-08 03:06 PM	

+="CN95262"	"Connector, Plug Electrical"	="Defence Materiel Organisation"	27-Jun-08	="Radar and sonar systems and components"	27-Jun-08	14-Nov-08	39572.28	=""	="Amphenol Australia Pty Ltd"	27-Jun-08 03:06 PM	

+="CN95263"	"IT security audit"	="Australian Human Rights Commission"	27-Jun-08	="Audit services"	14-May-08	19-Jun-08	17792.50	=""	="Key Trust Consulting"	27-Jun-08 03:08 PM	

+="CN95267"	"ProtectDrive/ProtectPack Licences"	="Australian Securities and Investments Commission"	27-Jun-08	="Components for information technology or broadcasting or telecommunications"	19-May-08	19-May-08	17214.12	=""	="SafeNet Australia Pty Ltd"	27-Jun-08 03:24 PM	

+="CN95268"	" Promotion materials for 2008 National Community Legal Centres Conference. "	="Australian Human Rights Commission"	27-Jun-08	="Promotional material or annual reports"	30-May-08	25-Jun-08	11000.00	=""	="National Association of Community Legal Centres"	27-Jun-08 03:26 PM	

+="CN95269"	" Centerlink Agent - North Stradbroke Island, QLD  "	="Centrelink"	27-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	55355.92	=""	="North Stradbroke Island Aboriginal & Islander Housing"	27-Jun-08 03:27 PM	

+="CN95271"	"OILCODE DRA"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	02-Aug-07	31-Aug-07	34400.00	=""	="ASIAN CONNECTIONS INTERNATIONAL PTY LIMITED"	27-Jun-08 03:27 PM	

+="CN95273"	"ABARE management review"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	04-May-08	30-May-08	33645.00	=""	="TRADE AND MANAGEMENT CONSULTANTS AUST"	27-Jun-08 03:28 PM	

+="CN95274"	"Facilitation services"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Aug-07	74000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	27-Jun-08 03:28 PM	

+="CN95275"	"45 x Optiplex 755SF PCs/22" Monitors Specs"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	06-Aug-07	30-Jun-08	65765.70	=""	="DELL AUSTRALIA"	27-Jun-08 03:28 PM	

+="CN95276"	"Workshop Facilitation in Brisbane and Adelaide"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Nov-07	19624.00	=""	="INNOVATION DYNAMICS"	27-Jun-08 03:28 PM	

+="CN95277"	"Workshop Facilitation in Melbourne and Sydney"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Aug-07	31-Aug-07	20686.43	=""	="JVPIE"	27-Jun-08 03:28 PM	

+="CN95272"	"motor vehicle spare parts"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Jun-08	27-Jul-08	19723.30	=""	="Southern Cross Industrial"	27-Jun-08 03:28 PM	

+="CN95278"	"Development and delivery of database for APP Program"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	06-Jun-08	30-Jun-08	79200.00	=""	="LIGHTSOURCE TECHNOLOGIES AUSTRALIA"	27-Jun-08 03:28 PM	

+="CN95279"	"EMRWG,Smart Meters,consumer focus group study for SM Natnl.c"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	07-Dec-07	31-Jul-08	86988.00	=""	="NERA AUSTRALIA PTY LTD"	27-Jun-08 03:29 PM	

+="CN95280"	"EEO Workshops Audio Visual Hire"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Audio and visual presentation and composing equipment"	08-Aug-07	07-Sep-07	47700.01	=""	="MICROHIRE"	27-Jun-08 03:29 PM	

+="CN95281"	"EEO Workshop Facilitation Support in Sydney and Perth"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	08-Aug-07	30-Jun-08	13447.50	=""	="MACMAHON TECHNOLOGIES"	27-Jun-08 03:29 PM	

+="CN95282"	"Simulation Exercise Catalyst 2008"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	08-Aug-07	31-Aug-07	149710.00	="1010"	="MARSH PTY LTD"	27-Jun-08 03:29 PM	

+="CN95283"	"Dell Laptops - 3 x D430 Laptops and 7 x D630 Laptops."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	09-Aug-07	30-Nov-07	22932.80	=""	="DELL AUSTRALIA"	27-Jun-08 03:29 PM	

+="CN95284"	"Dell PC's - 20 x 755 PC's"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Computer Equipment and Accessories"	09-Aug-07	31-Aug-07	29518.80	=""	="DELL AUSTRALIA"	27-Jun-08 03:29 PM	

+="CN95285"	"Tenders - Aust Destination Status (ADS)"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Advertising"	10-Aug-07	23-Aug-07	22830.76	=""	="HMA BLAZE PTY LTD"	27-Jun-08 03:29 PM	

+="CN95286"	"AdvisoryServices"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	10-Aug-07	28-Sep-07	86120.00	=""	="ROAM CONSULTING PTY LTD"	27-Jun-08 03:30 PM	

+="CN95287"	"Career Dev Assessment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Education and Training Services"	10-Aug-07	30-Nov-07	11825.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	27-Jun-08 03:30 PM	

+="CN95289"	"RTA Household removals - O/S Counsellor"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	12-Jun-08	30-Jun-08	25732.82	=""	="TOLL TRANSITIONS"	27-Jun-08 03:30 PM	

+="CN95290"	"Class B 2D and 4D Security Containers"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Office Equipment and Accessories and Supplies"	14-Aug-07	01-Feb-08	11987.80	=""	="FILEGUARD CO. (MFG.) PTY LTD"	27-Jun-08 03:30 PM	

+="CN95291"	"NGERAC analytical services and emergency simulation exercise"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	14-Aug-07	30-Jun-08	150000.00	=""	="VENCORP"	27-Jun-08 03:30 PM	

+="CN95292"	"Develop and Deliver new policies and procedures for the TSDA"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	14-Aug-07	30-Nov-07	30000.00	=""	="NOETIC SOLUTIONS PTY LIMITED"	27-Jun-08 03:30 PM	

+="CN95293"	"EECAR - Legal review of the draft EEO Internal Operating Procedures"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	14-Aug-07	31-Aug-07	23284.80	=""	="MINTER ELLISON LAWYERS"	27-Jun-08 03:31 PM	

+="CN95294"	"Engage APP Secretariat Employment of officer"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Business administration services"	14-Aug-07	31-Oct-07	18000.00	=""	="SOS RECRUITMENT"	27-Jun-08 03:31 PM	

+="CN95295"	"Destinations Adaptation project"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Engineering and Research and Technology Based Services"	16-Aug-07	11-Sep-07	44000.00	=""	="CRC FOR SUSTAINABLE TOURISM PTY LTD"	27-Jun-08 03:31 PM	

+="CN95296"	"APP TASKFORCE MEETING VENUE HIRE FOR APP TASKFORCE ADMIN"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Audio and visual presentation and composing equipment"	16-Aug-07	30-Sep-07	11365.50	=""	="STAGING CONNECTIONS PTY LTD"	27-Jun-08 03:31 PM	

+="CN95297"	"Research, development and drafting for the Australian Hydrogen Activity report"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	16-Aug-07	30-Sep-07	15470.40	=""	="UNIVERSITY OF QUEENSLAND SCHOOL OF"	27-Jun-08 03:31 PM	

+="CN95298"	"Reaimbursement expenses in relation to CRWMF Project - Muckaty station"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Human resources services"	16-Aug-07	30-Sep-07	23001.79	=""	="NORTHERN LAND COUNCIL"	27-Jun-08 03:31 PM	

+="CN95299"	"APP Project Leading Practice Sustainable Development"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	30-Jun-08	10897.18	=""	="ADVENT ASIA PACIFIC P/L"	27-Jun-08 03:31 PM	

+="CN95300"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	14546.40	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95301"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	16516.50	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95302"	"APP Project Leading Practice Sust Devel Program for Mining."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	18-Jun-08	30-Jun-08	17017.00	=""	="PARAGON PRINTERS"	27-Jun-08 03:32 PM	

+="CN95303"	"EEO - Reprint of the Energy Savings Measurement Guide V1"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Editorial and Design and Graphic and Fine Art Services"	18-Jun-08	30-Jun-08	27364.27	=""	="ZOO COMMUNICATIONS PTY LTD"	27-Jun-08 03:32 PM	

+="CN95304"	"APEC ENERGY TRADE AND INVESTMENT ROUND TABLE: 23-26 SEPT 2008, CAIRNS"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	19-Jul-07	26-Jul-07	51497.65	=""	="SHANGRI-LA HOTEL"	27-Jun-08 03:32 PM	

+="CN95305"	"Expert Review of National Gas Rules"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jul-07	31-Aug-07	15098.88	=""	="ALLEN CONSULTING GROUP PTY LTD"	27-Jun-08 03:33 PM	

+="CN95307"	"Advertising - Govt Exec Appts"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Advertising"	19-Jun-08	30-Jun-08	29206.30	=""	="HMA BLAZE PTY LTD"	27-Jun-08 03:33 PM	

+="CN95308"	"EEO - Development of a low hanging fruit guide for the mobil"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	30-Jun-08	17449.15	=""	="ALBERFIELD PTY LTD"	27-Jun-08 03:33 PM	

+="CN95309"	"EMRWG,RPWG,Drafting of the Retail Rules"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	19-Jun-08	30-Jun-10	250000.00	=""	="NSW PREMIERS DEPARTMENT"	27-Jun-08 03:33 PM	

+="CN95310"	"E2WG,CSIRO, Research,Development of NATHERS"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	23100.00	=""	="CSIRO"	27-Jun-08 03:33 PM	

+="CN95311"	"e2wg,branz,inv001721,manditory res, space heatingandwater heat"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	24750.00	=""	="BRANZ PTY LTD"	27-Jun-08 03:34 PM	

+="CN95306"	"motor vehicle spare parts"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	11549.53	=""	="MERCEDES BENZ AUST"	27-Jun-08 03:34 PM	

+="CN95312"	"e2wg,university sa,inv086708,study temp settings on cooling"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	20-Jun-08	31-Jul-08	24750.00	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	27-Jun-08 03:34 PM	

+="CN95313"	"APP Project Facilitate sharing of information"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jul-07	31-Jul-07	40000.00	=""	="MAESTRO COMMUNICATION"	27-Jun-08 03:34 PM	

+="CN95314"	"secondment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-08	28406.25	=""	="MINTER ELLISON LAWYERS"	27-Jun-08 03:34 PM	

+="CN95315"	"EMRWG,establishment of AEMO,legal advice on remuneration"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	23-Jun-08	30-Jun-09	11550.00	=""	="MERCER HUMAN RESOURCE CONS P/L"	27-Jun-08 03:34 PM	

+="CN95316"	"36mth Rental of 2xCanon MFD/accessories"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Office machines and their supplies and accessories"	23-Jun-08	31-Mar-11	37114.67	=""	="CANON FINANCE AUSTRALIA LTD"	27-Jun-08 03:34 PM	

+="CN95317"	"Legal Consultants for the Retail Policy Group"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Legal services"	24-Jul-07	30-Jun-08	210000.00	=""	="ALLENS ARTHUR ROBINSON"	27-Jun-08 03:35 PM	

+="CN95318"	"APP Project Energy Regulatory and Market Dev Forum."	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	25-Jun-08	30-Jun-08	31833.91	=""	="STAGING CONNECTIONS PTY LTD"	27-Jun-08 03:35 PM	

+="CN95319"	"EMRWG,RPWG,develop nat.policy framework for ROLR scheme"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	28-Apr-08	30-Jun-09	128375.50	=""	="ALLENS ARTHUR ROBINSON"	27-Jun-08 03:35 PM	

+="CN95320"	"EMRWG,RPWG,develop nat.policy framework for ROLR scheme"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	28-Apr-08	30-Jun-09	235431.63	=""	="NERA AUSTRALIA PTY LTD"	27-Jun-08 03:35 PM	

+="CN95321"	"APP Project Energy Regulatory and Market Development Forum"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management and Business Professionals and Administrative Services"	28-May-08	30-Jun-08	23405.25	=""	="ZOO COMMUNICATIONS PTY LTD"	27-Jun-08 03:35 PM	

+="CN95322"	"APP Project Energy Regulatory and Market Devel Forum - Print"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	28-May-08	31-Dec-08	26290.77	=""	="UNION OFFSET PRINTERS"	27-Jun-08 03:36 PM	

+="CN95323"	"Rehabilitation Assessment"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Management advisory services"	30-Apr-08	30-Jun-08	23320.00	=""	="QS SERVICES"	27-Jun-08 03:36 PM	

+="CN95325"	"EEO - Venue hire for May/June 08 Workshops"	="Department of Innovation Industry Science and Research"	27-Jun-08	="Hotels and lodging and meeting facilities"	30-Jul-07	31-Aug-07	14770.00	=""	="MERCURE HOTEL PERTH"	27-Jun-08 03:36 PM	

+="CN95324"	"MOTOR EVHICLE SPARE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	16162.29	=""	="MERCEDES BENZ AUST"	27-Jun-08 03:37 PM	

+="CN95326-A1"	"Financial Planning Analysis"	="Australian Securities and Investments Commission"	27-Jun-08	="Public administration and finance services"	05-Feb-08	03-Apr-08	18975.00	=""	="Endeavour Stratetgic Financial"	27-Jun-08 03:39 PM	

+="CN95327"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	27-Jun-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	26-Jun-08	26-Jul-08	12992.32	=""	="LAND ROVER AUSTRALIA"	27-Jun-08 03:42 PM	

+="CN95328"	"Provision of Temporary Staff Resources"	="Australian Securities and Investments Commission"	27-Jun-08	="Temporary personnel services"	27-Nov-07	13-Jan-08	11253.00	=""	="KR Consulting Group Pty Ltd"	27-Jun-08 03:42 PM	

+="CN95331"	"Chris, HR21, MS SQL Programmes, configuration, General ledger interface & training"	="National Native Title Tribunal"	27-Jun-08	="Human resources software"	01-Jul-07	01-May-09	44418.00	=""	="Frontier software"	27-Jun-08 04:03 PM	

+="CN95332"	" Provision of Course Design and Developement Services "	="Department of Immigration and Citizenship"	27-Jun-08	="Government departments services"	09-Apr-08	30-Jun-08	95196.00	=""	="Deakin University"	27-Jun-08 04:08 PM	

+="CN95333"	"ARC Project (Constructing regionally appropriate anti-racism strategies for Australia)."	="Australian Human Rights Commission"	27-Jun-08	="Research or testing facilities"	21-May-08	30-Dec-10	33000.00	=""	="University of Western Sydney"	27-Jun-08 04:10 PM	

+="CN95334-A1"	" Legal Services - Counsel "	="Australian Securities and Investments Commission"	27-Jun-08	="Legal services"	23-Jun-08	30-Jun-08	20000.00	=""	="Merzabegian, Sera"	27-Jun-08 04:12 PM	

+="CN95335"	"Consultancy Fees for CRM/Sharepoint Project"	="National Native Title Tribunal"	27-Jun-08	="Computer programmers"	31-Dec-07	19-Feb-08	10016.88	=""	="DSC-IT"	27-Jun-08 04:33 PM	

+="CN95337"	"Professional Fees- Wiri People / Gubbi gubbi"	="National Native Title Tribunal"	27-Jun-08	="Legal services"	04-Sep-07	19-Jun-08	71021.22	=""	="Holding Redlich"	27-Jun-08 04:47 PM	

+="CN95338"	"Accommodation for delegates attending Indigenous Health Equality Summit."	="Australian Human Rights Commission"	27-Jun-08	="Hotel rooms"	15-Mar-08	20-Mar-08	33043.00	=""	="Rydges Eagle Hawk Resort Canberra"	27-Jun-08 04:52 PM	

+="CN95339"	"Development and delivery of performance and compliance audit training"	="Office of the Commonwealth Ombudsman"	27-Jun-08	="Management and Business Professionals and Administrative Services"	26-Feb-08	30-Jun-08	16500.00	=""	="Courage Partners pty Ltd"	27-Jun-08 06:02 PM	

+="CN95340-A1"	"Centrelink Agent services at Denham (Shark Bay), WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="Shark Bay Community Resource Centre Inc"	27-Jun-08 06:06 PM	

+="CN95341"	"Centrelink Agent services at Boddington, WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="Boddington Old School Inc"	27-Jun-08 06:47 PM	

+="CN95342"	"Centrelink agent services at Ravensthorpe, WA"	="Centrelink"	27-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	19907.34	=""	="The Ravensthorpe and District Rural Communities Program Inc"	27-Jun-08 06:52 PM 

--- /dev/null
+++ b/admin/partialdata/28Dec2007to01Jan2008valto.xls
@@ -1,1 +1,6 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN52619"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	58809.00	=""	="Australian Government Solicitor"	28-Dec-07 11:13 AM	

+="CN52627"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	233069.00	=""	="Australian Government Solicitor"	28-Dec-07 04:37 PM	

+="CN52630"	"Legal Services"	="Australian Competition and Consumer Commission"	28-Dec-07	="Legal services"	01-Jul-07	31-Dec-07	402333.00	=""	="Australian Government Solicitor"	28-Dec-07 04:49 PM 

--- /dev/null
+++ b/admin/partialdata/28May2008to30May2008valto.xls
@@ -1,1 +1,813 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN86329-A4"	" Online Information Services "	="Australian Federal Police"	28-May-08	="Online database information retrieval systems"	01-Apr-03	30-Jun-12	329339.00	=""	="Factiva Ltd"	28-May-08 08:30 AM	

+="CN86332"	"Lease for premises at 143 Walker Street, Townsville, QLD 4810"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	791064.78	=""	="Commonwealth Centre Townsville Pty Ltd"	28-May-08 09:12 AM	

+="CN86333-A5"	"Provision of Information Technology Services (Previously Published as GAPS ID: 1615140)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	21-Aug-06	30-Jun-09	752857.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:23 AM	

+="CN86336"	"Lease for premises at Units 1 & 2, 26 William Angliss Drive Laverton North, Victoria"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-13	1975802.40	=""	="C B Richard Ellis"	28-May-08 09:36 AM	

+="CN86337-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1690990)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	23-Apr-07	30-Jun-09	352242.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:41 AM	

+="CN86338"	"Lease for premises at 601 Little Collins, Melbourne, VIC"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	18-Dec-07	17-Dec-08	16962.00	=""	="Strata Storage Melbourne"	28-May-08 09:46 AM	

+="CN86339-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610451)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	574365.00	=""	="Paxus Australia Pty Ltd"	28-May-08 09:48 AM	

+="CN86340-A1"	"Lease for premises at 99 Coventry Street Southbank VIC"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-May-10	30-Apr-11	454710.00	=""	="Kings Technology Park Pty Limited"	28-May-08 09:53 AM	

+="CN86341"	"SHIPPING AND STORAGE CONTAINER, GENERAL PURPOSE, ICA, 20 TONNE CAPACITY, QUANTITY 15."	="Defence Materiel Organisation"	28-May-08	="Containers and storage"	27-May-08	16-Jun-08	62494.74	=""	="SCF CONTAINERS INTERNATIONAL"	28-May-08 09:56 AM	

+="CN86343"	"Pocket, Ammunition Magazine Steyr"	="Defence Materiel Organisation"	28-May-08	="Harnesses or its accessories"	21-May-08	21-Sep-08	184756.00	="CC1V9D"	="COMBAT CLOTHING AUST PTY LTD"	28-May-08 09:59 AM	

+="CN86344"	"Lease for premises at 85 Chalgrove Avenue"	="Department of Defence"	28-May-08	="Lease and rental of property or building"	01-Apr-07	31-Mar-12	2835756.00	=""	="Belvista Properties"	28-May-08 10:01 AM	

+="CN86347"	"SHIPPING AND STORAGE CONTAINERS, GENERAL PURPOSE, ICA, 20 TONNE CAPACITY, QUANTITY 30."	="Defence Materiel Organisation"	28-May-08	="Containers and storage"	27-May-08	16-Jun-08	110139.48	=""	="SCF CONTAINERS INTERNATIONAL"	28-May-08 10:19 AM	

+="CN86350"	"Property Lease - Vanuatu"	="Australian Federal Police"	28-May-08	="Lease and rental of property or building"	01-Apr-08	31-Mar-11	282312.00	=""	="Marine Cup Ltd"	28-May-08 10:25 AM	

+="CN86354-A5"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610414) "	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	629113.25	=""	="Paxus Australia Pty Ltd"	28-May-08 10:35 AM	

+="CN86356-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610527)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	689700.00	=""	="Paxus Australia Pty Ltd"	28-May-08 10:39 AM	

+="CN86358-A1"	"Provision of Business analysis services for SAP HR/Payroll"	="CRS Australia"	28-May-08	="Computer services"	02-Jun-08	21-Nov-08	69411.75	=""	="BSI People Pty Ltd"	28-May-08 10:46 AM	

+="CN86360"	" VEHICLE REPAIRS "	="Department of Defence"	28-May-08	="Motor vehicles"	13-Feb-08	13-Mar-08	16011.47	=""	="FB AUTOS"	28-May-08 10:54 AM	

+="CN86364"	" SUPPLY OF STERILIZATION CASES "	="Defence Materiel Organisation"	28-May-08	="Medical Equipment and Accessories and Supplies"	28-Mar-08	30-May-08	12465.75	=""	="CARDINAL HEALTH AUSTRALIA"	28-May-08 11:31 AM	

+="CN86372"	"Urine Sample Testing"	="Australian Sports Anti-Doping Authority (ASADA)"	28-May-08	="Research or testing facilities"	18-Feb-08	17-May-09	79000.00	=""	="Mitsubishi Chemical"	28-May-08 11:36 AM	

+="CN86377-A1"	"building work for marketing makeover at Gunnedah office - electrical, painting and signage installation"	="Centrelink"	28-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	19-Jun-08	30-Jun-08	19327.00	=""	="David J Smith Building P/L"	28-May-08 12:12 PM	

+="CN86379"	"Stoves, LP Gas Portable 2 Burener in accordance with Australian Standards reference AS2658-1988."	="Defence Materiel Organisation"	28-May-08	="Camping or outdoor stoves"	14-May-08	10-Jun-08	74426.00	=""	="Maxco Industries"	28-May-08 12:14 PM	

+="CN86380"	" Keyboard/Video/Mouse Switch Solution "	="Australian Crime Commission"	28-May-08	="Switch boxes"	01-May-08	12-May-08	57123.60	=""	="Black Box Network Services"	28-May-08 12:35 PM	

+="CN86383"	"Salt & Pepper Shakers manufacted in accordance with DEF(AUST)5493D dated June 2006."	="Defence Materiel Organisation"	28-May-08	="Spice or salt or pepper shakers"	23-May-08	27-Aug-08	14410.00	="RFQ J8302"	="Silverglo Stainless Steel Pty Ltd"	28-May-08 01:28 PM	

+="CN86384"	" CIRCUIT CARD ASSEMBLY P/No 245-6211-10; MC 22373  QUANTITY 10 "	="Defence Materiel Organisation"	28-May-08	="Military rotary wing aircraft"	28-May-08	28-Jan-09	18490.85	=""	="ASSOCIATED AIRCRAFT"	28-May-08 01:35 PM	

+="CN86385-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610387)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	21-Jan-09	576720.00	=""	="Paxus Australia Pty Ltd"	28-May-08 01:54 PM	

+="CN86386-A4"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1613505)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	15-May-09	404800.00	=""	="Paxus Australia Pty Ltd"	28-May-08 01:57 PM	

+="CN86387-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610389)"	="Department of Immigration and Citizenship"	28-May-08	="Temporary information technology systems or database administrators"	01-Jul-06	30-Jun-09	761200.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:01 PM	

+="CN86388-A2"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1612371)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	07-Nov-08	805090.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:08 PM	

+="CN86389-A3"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610317) "	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	779790.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:12 PM	

+="CN86391"	"Repair of Tail Rotor Gearbox"	="Defence Materiel Organisation"	28-May-08	="Aircraft"	28-May-08	20-Jun-08	40047.87	=""	="Sikorsky Aircraft Australia"	28-May-08 02:18 PM	

+="CN86392-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610369)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	832128.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:19 PM	

+="CN86393-A3"	"Provision of Information Technology Specilist Services (Previously Published as GAPS ID: 1610311)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	682000.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:26 PM	

+="CN86394-A3"	" Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1610398) "	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	01-Jul-06	30-Jun-09	750475.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:33 PM	

+="CN86395-A3"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1609860)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	22-May-06	30-Jun-09	630465.00	=""	="Paxus Australia Pty Ltd"	28-May-08 02:39 PM	

+="CN86397"	"APEC"	="Department of Foreign Affairs and Trade"	28-May-08	="Hotels and lodging and meeting facilities"	03-Oct-07	24-Oct-07	15083.00	=""	="Quay Grand Suites Sydney"	28-May-08 02:50 PM	

+="CN86399"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	08-Oct-07	31-Oct-07	10254.95	=""	="Translating & Interpreting Svs"	28-May-08 02:50 PM	

+="CN86400"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81677.00	=""	="Australian Protective Service"	28-May-08 02:50 PM	

+="CN86401"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81669.00	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86402"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	81845.00	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86403"	"Security Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	23-Oct-07	161480.48	=""	="Australian Protective Service"	28-May-08 02:51 PM	

+="CN86404"	"Property rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	09-Oct-07	09-Oct-07	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	28-May-08 02:51 PM	

+="CN86405"	"Property Mgt & Architectural Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	09-Oct-07	29-Oct-07	37975.36	=""	="INTEGRATED SPACE PTY LTD"	28-May-08 02:51 PM	

+="CN86406"	"Webserver maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	10-Oct-07	10-Oct-07	23152.25	=""	="ZVENO PTY LTD"	28-May-08 02:51 PM	

+="CN86407"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	44289.41	=""	="Universal McCann"	28-May-08 02:51 PM	

+="CN86408"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	44143.98	=""	="Universal McCann"	28-May-08 02:52 PM	

+="CN86409"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	10-Oct-07	10-Oct-07	65092.14	=""	="Universal McCann"	28-May-08 02:52 PM	

+="CN86410"	"Car hire"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	11-Oct-07	28-Oct-07	21837.30	=""	="EQUITY TRANSPORT GROUP PTY LTD"	28-May-08 02:52 PM	

+="CN86411"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	12-Oct-07	31-Oct-07	168563.33	=""	="Interiors Australia"	28-May-08 02:52 PM	

+="CN86412"	"Refurbishment"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	31-Oct-07	19437.69	=""	="Interiors Australia"	28-May-08 02:52 PM	

+="CN86413"	"Driver Training"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	12-Oct-07	26-Oct-07	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	28-May-08 02:52 PM	

+="CN86414"	"Furniture and Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	15-Oct-07	31-Oct-07	42489.18	=""	="HK Logistics PTY LTD"	28-May-08 02:52 PM	

+="CN86415"	"Furniture and Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	15-Oct-07	31-Oct-07	48712.79	=""	="HK Logistics PTY LTD"	28-May-08 02:53 PM	

+="CN86417"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	16-Oct-07	01-Nov-07	13943.00	=""	="Queensland Ship Surveyors Pty Ltd"	28-May-08 02:53 PM	

+="CN86418"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	16-Oct-07	16-Oct-07	47141.42	=""	="TELSTRA CORPORATION"	28-May-08 02:53 PM	

+="CN86419"	"Advertising"	="Department of Foreign Affairs and Trade"	28-May-08	="Marketing and distribution"	16-Oct-07	28-Oct-07	51396.77	=""	="Universal McCann"	28-May-08 02:53 PM	

+="CN86420"	"media monitoring"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	16-Oct-07	28-Oct-07	18290.04	=""	="MEDIA MONITORS PTY LTD"	28-May-08 02:53 PM	

+="CN86421"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Power Generation and Distribution Machinery and Accessories"	17-Oct-07	25-Oct-07	41360.00	=""	="SPOTLESS P&F Pty Ltd"	28-May-08 02:53 PM	

+="CN86422"	"Property Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	17-Oct-07	17-Oct-07	12269.30	=""	="Knight Frank (SA) Pty Ltd"	28-May-08 02:54 PM	

+="CN86423"	"Secure Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	17-Oct-07	06-Nov-07	11132.00	=""	="G4S International"	28-May-08 02:54 PM	

+="CN86424"	"Subscriptions"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	29-Oct-07	11250.00	=""	="Dow Jones Reuters Business Interact"	28-May-08 02:54 PM	

+="CN86425"	"Printing"	="Department of Foreign Affairs and Trade"	28-May-08	="Printed media"	17-Oct-07	17-Oct-07	10164.00	=""	="CANPRINT COMMUNICATIONS P/L"	28-May-08 02:54 PM	

+="CN86426"	"Telstra Quarterly Account July-September 2007"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	17-Oct-07	23-Oct-07	28692.24	=""	="TELSTRA CORPORATION LIMITED (Qld)"	28-May-08 02:54 PM	

+="CN86427"	"Rent"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	17-Oct-07	17-Oct-07	64939.74	=""	="Australand Property Trust"	28-May-08 02:54 PM	

+="CN86428"	"Security Door"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	18-Oct-07	18-Oct-07	16507.63	=""	="Diebold Physical Security Pty Ltd"	28-May-08 02:54 PM	

+="CN86429"	"Professional Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	19-Oct-07	31-Oct-07	10649.10	=""	="Translating & Interpreting Svs"	28-May-08 02:55 PM	

+="CN86430"	"Generator"	="Department of Foreign Affairs and Trade"	28-May-08	="Power Generation and Distribution Machinery and Accessories"	19-Oct-07	30-Nov-07	38787.00	=""	="Cummins South Pacific Pty Ltd"	28-May-08 02:55 PM	

+="CN86431"	"Health Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Comprehensive health services"	23-Oct-07	31-Oct-07	15866.92	=""	="Clifford Hallam Healthcare P/L-CH2"	28-May-08 02:55 PM	

+="CN86432"	"Secure Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	23-Oct-07	23-Oct-07	11132.00	=""	="G4S International"	28-May-08 02:55 PM	

+="CN86433"	"Domestic Data monthly account"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	24-Oct-07	24-Oct-07	11430.88	=""	="TELSTRA CORPORATION"	28-May-08 02:55 PM	

+="CN86434"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	24-Oct-07	28-Feb-08	24836.00	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:55 PM	

+="CN86435"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	24-Oct-07	28-Feb-08	255756.11	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:55 PM	

+="CN86436"	"APEC Travel"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	25-Oct-07	25-Oct-07	15496.19	=""	="Macquarie Bank Limited"	28-May-08 02:55 PM	

+="CN86437"	"Furniture and Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Furniture and Furnishings"	26-Oct-07	31-Oct-07	59366.00	=""	="Add Design & Management"	28-May-08 02:56 PM	

+="CN86438"	"Postage"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	26-Oct-07	26-Oct-07	255098.95	=""	="Australia Post (9239640)"	28-May-08 02:56 PM	

+="CN86439"	"Artbank Lease"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	29-Oct-07	31-Oct-08	16150.00	=""	="ARTBANK"	28-May-08 02:56 PM	

+="CN86440"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	30-Oct-07	30-Nov-07	11844.80	=""	="QANTAS AIRWAYS LTD"	28-May-08 02:56 PM	

+="CN86441"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	31-Oct-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	28-May-08 02:56 PM	

+="CN86442"	"Office Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	02-Nov-07	12319.14	=""	="Knight Frank (SA) Pty Ltd"	28-May-08 02:56 PM	

+="CN86443"	"Architectural services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	26-Nov-07	32615.00	=""	="INTEGRATED SPACE PTY LTD"	28-May-08 02:56 PM	

+="CN86444"	"Office Rental"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	30-Oct-07	02-Nov-07	74352.17	=""	="Knight Frank (Vic) Pty Ltd"	28-May-08 02:57 PM	

+="CN86445"	"Training Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Education and Training Services"	31-Oct-07	17-Nov-07	10582.53	=""	="Rob Brennan and Associates"	28-May-08 02:57 PM	

+="CN86447"	"Comcare Insurance"	="Department of Foreign Affairs and Trade"	28-May-08	="Insurance and retirement services"	31-Oct-07	31-Oct-07	149626.00	=""	="COMCARE"	28-May-08 02:57 PM	

+="CN86448"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	31-Oct-07	23-Nov-07	41360.00	=""	="SPOTLESS P&F Pty Ltd"	28-May-08 02:57 PM	

+="CN86449"	"Secure freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	31-Oct-07	27-Nov-07	11132.00	=""	="G4S International"	28-May-08 02:57 PM	

+="CN86450"	"Reimbursable Claim"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	02-Oct-07	03-Oct-07	541109.63	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:57 PM	

+="CN86451"	"Furniture & Fittings"	="Department of Foreign Affairs and Trade"	28-May-08	="Building and Construction and Maintenance Services"	10-Oct-07	10-Oct-07	26305.57	=""	="Caterlink"	28-May-08 02:58 PM	

+="CN86452"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	10-Oct-07	10-Oct-07	22649.85	=""	="ADM Customs & Freight"	28-May-08 02:58 PM	

+="CN86453"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Transportation and Storage and Mail Services"	10-Oct-07	19-Oct-07	11583.15	=""	="ADM Customs & Freight"	28-May-08 02:58 PM	

+="CN86454"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	10-Oct-07	28-Feb-08	59701.92	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:58 PM	

+="CN86455"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	10-Oct-07	28-Feb-08	506937.50	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:58 PM	

+="CN86456"	"Design Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	17-Oct-07	17-Oct-07	14815.00	=""	="Interiors Australia"	28-May-08 02:58 PM	

+="CN86457"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	18-Oct-07	28-Feb-08	52763.61	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:59 PM	

+="CN86458"	"Property Expenses"	="Department of Foreign Affairs and Trade"	28-May-08	="Real estate services"	18-Oct-07	28-Feb-08	340212.81	=""	="KFPW PTY LTD (expenditure Account)"	28-May-08 02:59 PM	

+="CN86459"	"Shatter Film"	="Department of Foreign Affairs and Trade"	28-May-08	="Chemicals including Bio Chemicals and Gas Materials"	03-Oct-07	31-Oct-07	23050.00	=""	="Mep Films"	28-May-08 02:59 PM	

+="CN86460"	"Energy Management"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	02-Oct-07	30-Oct-08	14400.00	=""	="Delta Building Automation Pty Ltd"	28-May-08 02:59 PM	

+="CN86461"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Electrical wire and cable and harness"	04-Oct-07	01-Nov-07	15036.58	=""	="AFC GROUP PTY LTD"	28-May-08 02:59 PM	

+="CN86462"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	02-Oct-07	30-Oct-07	16595.70	=""	="RIC Teledata Pty Ltd"	28-May-08 02:59 PM	

+="CN86463"	"Printers"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	09-Oct-07	06-Nov-07	24505.36	=""	="LEXMARK INT (AUST) P/L"	28-May-08 02:59 PM	

+="CN86464"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	15-Oct-07	12-Nov-07	39078.60	=""	="Commander Integrated Networks Pty L"	28-May-08 03:00 PM	

+="CN86465"	"IT Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	12-Oct-07	09-Nov-07	630153.16	=""	="Ethan Group Pty Ltd"	28-May-08 03:00 PM	

+="CN86466"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	11-Oct-07	08-Nov-07	40931.66	=""	="Commander Integrated Networks Pty L"	28-May-08 03:00 PM	

+="CN86467"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer services"	11-Oct-07	08-Nov-07	40810.00	=""	="Ethan Group Pty Ltd"	28-May-08 03:00 PM	

+="CN86468"	"Communications Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	03-Oct-07	31-Oct-07	43450.00	=""	="ELECTROTECH AUSTRALIA PTY LTD"	28-May-08 03:00 PM	

+="CN86469"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	12-Oct-07	09-Nov-07	165968.00	=""	="Integral Consulting Services"	28-May-08 03:00 PM	

+="CN86470"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	08-Oct-07	05-Nov-07	100182.50	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	28-May-08 03:01 PM	

+="CN86471"	"Computer Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	11-Oct-07	11-Jan-08	304666.78	=""	="Department of Defence"	28-May-08 03:01 PM	

+="CN86472"	"Office Equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	18-Oct-07	20-Nov-07	10558.50	=""	="Commander Integrated Networks Pty L"	28-May-08 03:01 PM	

+="CN86473"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	23-Oct-07	20-Nov-07	55660.00	=""	="Innovative Business Computing P/L"	28-May-08 03:01 PM	

+="CN86474"	"Printer Consumables"	="Department of Foreign Affairs and Trade"	28-May-08	="Office machines and their supplies and accessories"	29-Oct-07	26-Nov-07	13400.00	=""	="TONER EXPRESS A'SIA PTY LTD"	28-May-08 03:01 PM	

+="CN86475"	"Consulting Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	24-Oct-07	21-Nov-07	95700.00	=""	="KAZ Group Pty Ltd"	28-May-08 03:02 PM	

+="CN86476"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	29-Oct-07	26-Nov-07	139480.00	=""	="RIC Teledata Pty Ltd"	28-May-08 03:02 PM	

+="CN86477"	"Building Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	27-Feb-08	19400.00	=""	="A.C.T. Interiors"	28-May-08 03:02 PM	

+="CN86478"	"Fitout"	="Department of Foreign Affairs and Trade"	28-May-08	="Management and Business Professionals and Administrative Services"	30-Oct-07	27-Feb-08	15610.00	=""	="Delta Building Automation Pty Ltd"	28-May-08 03:02 PM	

+="CN86479"	"Office Fit-Out"	="Department of Foreign Affairs and Trade"	28-May-08	="General building construction"	30-Oct-07	30-Nov-07	26619.93	=""	="CAPPELLO OFFICE & COMMERCIAL"	28-May-08 03:02 PM	

+="CN86480"	"IT equipment"	="Department of Foreign Affairs and Trade"	28-May-08	="Computer Equipment and Accessories"	29-Oct-07	26-Nov-07	1172433.28	=""	="Ethan Group Pty Ltd"	28-May-08 03:02 PM	

+="CN86481"	"Freight"	="Department of Foreign Affairs and Trade"	28-May-08	="Mail and cargo transport"	26-Oct-07	31-Oct-07	59587.43	=""	="STAR TRACK EXPRESS"	28-May-08 03:02 PM	

+="CN86482"	"Printed Forms"	="Department of Foreign Affairs and Trade"	28-May-08	="Printed media"	30-Oct-07	27-Nov-07	38820.00	=""	="THE CAMERONS GROUP"	28-May-08 03:03 PM	

+="CN86483"	"Contractor Services"	="Department of Foreign Affairs and Trade"	28-May-08	="Telecommunications media services"	22-Oct-07	19-Nov-07	41541.50	=""	="Bridge IT Engineering Pty Ltd"	28-May-08 03:03 PM	

+="CN86484"	" PROVISION OF REPLENISHMENT PARTS  "	="Defence Materiel Organisation"	28-May-08	="Hardware"	28-May-08	11-Jun-08	10152.42	=""	="BLACKWOODS"	28-May-08 03:05 PM	

+="CN86487"	"Provision of International Courier Services"	="Australian Sports Anti-Doping Authority (ASADA)"	28-May-08	="Postal and small parcel and courier services"	03-Mar-08	02-Mar-09	82000.00	="RFT 0607/007"	="DGM Australia"	28-May-08 03:42 PM	

+="CN86488"	"Purchase of Qty 10 NSN 6030-01-544-7321"	="Defence Materiel Organisation"	28-May-08	="Surveillance and detection equipment"	31-Mar-08	30-May-08	18265.00	=""	="Hills Industries Ltd"	28-May-08 03:45 PM	

+="CN86489"	"Procurement Advisory and management services - Applications development panel procurement process"	="Australian Federal Police"	28-May-08	="Professional procurement services"	20-Aug-07	30-Jun-08	83600.00	="RFT 22-2005"	="JJM Holdings Pty Ltd Trading as Terrace Services"	28-May-08 03:45 PM	

+="CN86490"	"Lease for premises at Winton Road, Tamworth Airport, Tamworth NSW  "	="Department of Defence"	28-May-08	="Lease and rental of property or building"	11-Jan-07	31-Dec-09	61602.31	=""	="BAE Systems Australia Limited"	28-May-08 03:49 PM	

+="CN86493-A2"	"Provision of Information Technology Specialist Services (Previously Published as GAPS ID: 1655947)"	="Department of Immigration and Citizenship"	28-May-08	="Human resources services"	08-Jan-07	30-Jun-08	363000.00	=""	="Ambit Recruitment Pty Ltd"	28-May-08 04:06 PM	

+="CN86497-A1"	" Software Maintenance 1 March 2008 - 28 February 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	01-Mar-08	28-Feb-09	10024.30	=""	="Argsoft Sales and Support Pty Limited"	28-May-08 05:47 PM	

+="CN86498-A1"	" Support and Maintenance SAN 1 May 2008 - 34 April 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	01-May-08	30-Apr-10	41309.95	=""	="Sun Microsystems Australia Pty Ltd"	28-May-08 05:47 PM	

+="CN86499-A2"	"MS Sharepoint Consultancy Audit Central"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	01-May-08	30-Sep-09	52000.00	=""	="OBS Pty Ltd"	28-May-08 05:47 PM	

+="CN86500-A1"	"Conduct Interview Skills Workshop and manuals"	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	01-May-08	30-Sep-08	13500.00	=""	="CIT Solutions Pty Limited"	28-May-08 05:47 PM	

+="CN86501-A1"	" Writing Skills Workshop "	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	03-Mar-08	30-Jun-08	20000.00	=""	="Collaborative Business"	28-May-08 05:47 PM	

+="CN86502-A1"	"250 x HP L2045W LCD Monitors"	="Australian National Audit Office (ANAO)"	28-May-08	="Computer displays"	08-May-08	31-May-08	78575.75	=""	="HP Australia"	28-May-08 05:47 PM	

+="CN86503-A1"	" 2007-08 ANAO Annual Staff Survey "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	09-May-08	30-Jun-08	29550.00	=""	="ORIMA Research"	28-May-08 05:47 PM	

+="CN86504-A1"	" Contract-In Audit Staff "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	09-May-08	30-Jun-08	59400.00	=""	="Pricewaterhouse Coopers"	28-May-08 05:48 PM	

+="CN86505-A1"	" APS6 to EL2 Conference facilities 2 Residential programs during May 2008 "	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	14-Apr-08	30-May-08	20000.00	=""	="Links House Bowral Pty Limited"	28-May-08 05:48 PM	

+="CN86506-A1"	" Value Packs for Audit Standards "	="Australian National Audit Office (ANAO)"	28-May-08	="Printed publications"	14-May-08	30-Jun-08	19173.00	=""	="John Wiley and Sons Australia, Ltd"	28-May-08 05:48 PM	

+="CN86507-A1"	" Legal advice for Tender for the refurbishment of 19 National Circuit. "	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	19-Mar-08	30-Nov-08	28000.00	=""	="Mallesons Stephen Jaques"	28-May-08 05:48 PM	

+="CN86508-A1"	" Recruitment Costs - SES Officers "	="Australian National Audit Office (ANAO)"	28-May-08	="Personnel recruitment"	19-May-08	30-Jun-08	70400.00	=""	="Hansen and Searson"	28-May-08 05:48 PM	

+="CN86509-A1"	"Port Control Software and Maintenance 21 May 2008 to 20 May 2009"	="Australian National Audit Office (ANAO)"	28-May-08	="Network management software"	21-May-08	20-May-09	23103.00	=""	="KAZ Group Pty Limited"	28-May-08 05:48 PM	

+="CN86510-A1"	" Temporary accommodation for staff - Recruitment "	="Australian National Audit Office (ANAO)"	28-May-08	="Lease and rental of property or building"	22-Apr-08	22-Aug-08	14850.00	=""	="Kingston Court Serviced Apartments"	28-May-08 05:48 PM	

+="CN86511-A1"	" Engagement of staff for assistance in Financial Statement Audits "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-Apr-08	22-Aug-08	70000.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	28-May-08 05:48 PM	

+="CN86512-A1"	" Staff to assist with the Financial Statement audit of the Australian Taxation Office. "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-May-08	31-Oct-08	57780.00	=""	="Audit and Assurance Consulting Services"	28-May-08 05:49 PM	

+="CN86513-A1"	" Engagement of staff to assist in Financial Statement Audits "	="Australian National Audit Office (ANAO)"	28-May-08	="Audit services"	22-May-08	12-Sep-08	97760.00	="ANAOAM2008/493"	="Synergy Business Solutions (Int) Pty Ltd"	28-May-08 05:49 PM	

+="CN86514-A1"	"Annual Report 2007-08 Design and Artwork"	="Australian National Audit Office (ANAO)"	28-May-08	="Art design services"	22-May-08	30-Sep-08	14498.00	=""	="Adcorp Australia Limited"	28-May-08 05:49 PM	

+="CN86515-A1"	"Design, Management and Printing of the Internal Budgeting BPG."	="Australian National Audit Office (ANAO)"	28-May-08	="Printing"	23-Apr-08	30-Jun-08	27386.00	=""	="Comcom Pty Ltd T/A Zoo"	28-May-08 05:49 PM	

+="CN86516-A1"	"IT Consultancy Services and Library Report Access"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	23-May-08	22-May-09	24200.00	=""	="Gartner Australasia Pty Limited"	28-May-08 05:49 PM	

+="CN86517-A1"	" SNARE - Small Agency Software Support 23 May 2008-22 May 2009 "	="Australian National Audit Office (ANAO)"	28-May-08	="Software maintenance and support"	23-May-08	22-May-09	48500.00	=""	="Oakton AA Services Pty Ltd"	28-May-08 05:49 PM	

+="CN86518-A2"	"Robert Brennan and Associates"	="Australian National Audit Office (ANAO)"	28-May-08	="Adult education"	26-Apr-08	30-Jun-09	98000.00	=""	="Robert Brennan and Associates"	28-May-08 05:49 PM	

+="CN86519-A1"	"Budgetary Consultancy"	="Australian National Audit Office (ANAO)"	28-May-08	="Business and corporate management consultation services"	27-May-08	30-Jun-08	11000.00	=""	="Resolution Consulting Services"	28-May-08 05:50 PM	

+="CN86520"	"Printer, automatic data processing"	="Defence Materiel Organisation"	28-May-08	="Air transportation support systems and equipment"	18-Apr-08	20-Jun-08	123620.20	=""	="AirServices Australia"	28-May-08 06:00 PM	

+="CN86522"	"Annual TwinScan SW License"	="Australian Taxation Office"	29-May-08	="Software"	01-Jul-08	30-Jun-09	19510.00	=""	="SCE Software & Services GmbH"	29-May-08 09:18 AM	

+="CN86526"	"Folder, Clipboard, Large, Plastic, Data Holding, 235mm x 345mm, Green, Trifold, 2 Outer Clear Inserts, 18 Inner Envelopes and 3 Half Pockets. To be manufactured in accordance with Defence Drawing FOLD0416300. Quantity 13,000."	="Defence Materiel Organisation"	29-May-08	="Folders"	28-May-08	01-Aug-08	50807.90	="RFQ 2680129"	="Forest Presentations & Promotions"	29-May-08 10:19 AM	

+="CN86527"	"Tecnical support maintenance"	="Australian Crime Commission"	29-May-08	="Technical support or help desk services"	06-May-08	05-May-09	178214.00	=""	="Oracle Corp Aust Pty Ltd"	29-May-08 10:27 AM	

+="CN86530"	"Investigation Services"	="Australian Sports Anti-Doping Authority (ASADA)"	29-May-08	="Private investigation services"	01-Feb-08	31-Jan-10	160000.00	="RFT 0708/001"	="Australian Forensic Services Pty Ltd"	29-May-08 10:51 AM	

+="CN86532"	"BP 07222 (SAL-109) - Tax Basics Seminar mailout"	="Australian Taxation Office"	29-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	13-Feb-08	30-Jun-08	71576.00	=""	="Salmat Document Management Solutions Pty Ltd"	29-May-08 11:01 AM	

+="CN86533"	"Hospitality Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	31-Jan-08	75000.00	=""	="Consuming Passions Pty Ltd"	29-May-08 11:11 AM	

+="CN86534"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	05-Nov-07	19-Nov-07	27500.00	=""	="Dept of Finance & Admin"	29-May-08 11:11 AM	

+="CN86535"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	05-Nov-07	14-Nov-07	55000.00	=""	="Dept of Finance & Admin"	29-May-08 11:11 AM	

+="CN86536"	"Training Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	21-Nov-07	16229.00	=""	="Mollymook Shores Resort (DACRA Pty)"	29-May-08 11:11 AM	

+="CN86537"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	05-Nov-07	05-Nov-07	13527.80	=""	="ICON RECRUITMENT PTY LTD"	29-May-08 11:12 AM	

+="CN86538"	"Freight Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Mail and cargo transport"	07-Nov-07	08-Dec-07	10454.10	=""	="QANTAS AIRWAYS LTD"	29-May-08 11:12 AM	

+="CN86539"	"Guarding Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	20-Nov-07	81677.00	=""	="Australian Protective Service"	29-May-08 11:12 AM	

+="CN86540"	"Guarding Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Nov-07	20-Nov-07	163894.64	=""	="Australian Protective Service"	29-May-08 11:12 AM	

+="CN86541"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	29-May-08	="Information services"	07-Nov-07	31-Oct-08	13200.00	=""	="ARTBANK"	29-May-08 11:12 AM	

+="CN86542"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	08-Nov-07	08-Nov-08	12238.32	=""	="AUSTRALIAN TRADE COMMISSION"	29-May-08 11:12 AM	

+="CN86543"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	08-Nov-07	08-Nov-07	15559.50	=""	="ZVENO PTY LTD"	29-May-08 11:12 AM	

+="CN86544"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	09-Nov-07	30-Nov-07	17414.40	=""	="Minter Ellison"	29-May-08 11:13 AM	

+="CN86545"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	09-Nov-07	30-Nov-07	12639.76	=""	="Sparke Helmore Lawyers"	29-May-08 11:13 AM	

+="CN86546"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	09-Nov-07	30-Nov-07	12950.62	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-May-08 11:13 AM	

+="CN86547"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	09-Nov-07	30-Nov-07	21319.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-May-08 11:13 AM	

+="CN86548"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	09-Nov-07	30-Nov-07	11880.00	=""	="Fulton technology"	29-May-08 11:13 AM	

+="CN86549"	"Office Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Tools and General Machinery"	12-Nov-07	29-Nov-07	204049.98	=""	="HP Financial Services"	29-May-08 11:13 AM	

+="CN86550"	"APEC Travel"	="Department of Foreign Affairs and Trade"	29-May-08	="Passenger transport"	12-Nov-07	12-Nov-07	20907.32	=""	="INTERNATIONAL ATOMIC ENERGY AGENCY"	29-May-08 11:13 AM	

+="CN86551"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	13-Nov-07	28-Nov-07	123211.33	=""	="Universal McCann"	29-May-08 11:13 AM	

+="CN86552"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	13-Nov-07	28-Nov-07	30874.20	=""	="Universal McCann"	29-May-08 11:14 AM	

+="CN86554"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	13-Nov-07	28-Nov-07	100358.38	=""	="Universal McCann"	29-May-08 11:14 AM	

+="CN86555"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	13-Nov-07	28-Nov-07	12879.66	=""	="Media Monitors Australia P/L"	29-May-08 11:14 AM	

+="CN86556"	"Accommodation"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	01-Dec-07	19458.00	=""	="RYDGES CAPITAL HILL"	29-May-08 11:14 AM	

+="CN86557"	"Telecomminication Costs"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	14-Nov-07	14-Nov-07	36097.44	=""	="TELSTRA CORPORATION"	29-May-08 11:14 AM	

+="CN86558"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	29-May-08	="Information services"	15-Nov-07	31-Dec-08	37500.00	=""	="ARTBANK"	29-May-08 11:15 AM	

+="CN86560"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	20-Nov-07	12270.55	=""	="Media Monitors Australia P/L"	29-May-08 11:15 AM	

+="CN86561"	"Translating & Interpreting Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	20-Nov-07	29-Nov-07	13247.65	=""	="Translating & Interpreting Svs"	29-May-08 11:15 AM	

+="CN86563"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	20-Nov-07	30-Nov-07	16888.30	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-May-08 11:15 AM	

+="CN86564"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	20-Nov-07	30-Nov-07	14885.53	=""	="AGS AUST GOVT SOLICITOR"	29-May-08 11:16 AM	

+="CN86565"	"Medivac Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	21-Nov-07	21-Nov-07	20068.48	=""	="International SOS Australasia"	29-May-08 11:16 AM	

+="CN86566"	"Passport Postage"	="Department of Foreign Affairs and Trade"	29-May-08	="Mail and cargo transport"	21-Nov-07	21-Nov-07	298417.50	=""	="Australia Post (9239640)"	29-May-08 11:16 AM	

+="CN86568"	"Artwork leases"	="Department of Foreign Affairs and Trade"	29-May-08	="Information services"	21-Nov-07	27-Nov-07	16900.00	=""	="ARTBANK"	29-May-08 11:16 AM	

+="CN86569"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Human resources services"	23-Nov-07	23-Nov-07	12505.35	=""	="ICON RECRUITMENT PTY LTD"	29-May-08 11:16 AM	

+="CN86570"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Human resources services"	23-Nov-07	28-Nov-07	11621.28	=""	="Infinite Consulting Pty Ltd"	29-May-08 11:16 AM	

+="CN86571"	"Building Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	18789.10	=""	="Diebold Physical Security Pty Ltd"	29-May-08 11:16 AM	

+="CN86572"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	26-Nov-07	30-Nov-07	53054.43	=""	="CB Richard Ellis (C) Pty Ltd"	29-May-08 11:17 AM	

+="CN86573"	"Freight Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Transportation and Storage and Mail Services"	26-Nov-07	31-Dec-07	70000.00	=""	="China Bear Removals & Storage"	29-May-08 11:17 AM	

+="CN86574"	"Library Subscriptions"	="Department of Foreign Affairs and Trade"	29-May-08	="Information services"	26-Nov-07	05-Dec-07	47385.98	=""	="EBSCO AUSTRALIA"	29-May-08 11:17 AM	

+="CN86575"	"Scientific Research"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	27-Nov-07	20-Dec-07	35245.65	=""	="Forensic Document Services Pty Ltd"	29-May-08 11:17 AM	

+="CN86576"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	27-Nov-07	02-Dec-07	74686.57	=""	="Knight Frank (Vic) Pty Ltd"	29-May-08 11:17 AM	

+="CN86577"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	28-Nov-07	30-Nov-07	12561.26	=""	="Minter Ellison"	29-May-08 11:17 AM	

+="CN86579"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	29-Nov-07	12-May-08	24000.00	=""	="Rozalyn Chan"	29-May-08 11:17 AM	

+="CN86580"	"International media visit Camera/field work"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	11484.00	=""	="OZIRIS"	29-May-08 11:18 AM	

+="CN86581"	"Freight Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Transportation and Storage and Mail Services"	30-Nov-07	17-Dec-07	11132.00	=""	="G4S International"	29-May-08 11:18 AM	

+="CN86582"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	30-Nov-07	30-Nov-07	10772.63	=""	="ICON RECRUITMENT PTY LTD"	29-May-08 11:18 AM	

+="CN86583"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	30-Nov-07	28-Dec-07	63330.70	=""	="Universal McCann"	29-May-08 11:18 AM	

+="CN86584"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	30-Nov-07	28-Dec-07	59106.98	=""	="Universal McCann"	29-May-08 11:18 AM	

+="CN86585"	"Advertising Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	30-Nov-07	28-Dec-07	328889.77	=""	="Universal McCann"	29-May-08 11:19 AM	

+="CN86586"	"Legal Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	30-Nov-07	30-Nov-07	10271.00	=""	="Australian Government Solicitor"	29-May-08 11:19 AM	

+="CN86587"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	05-Nov-07	30-Nov-07	27434.00	=""	="FLUKE AUSTRALIA PTY LTD"	29-May-08 11:19 AM	

+="CN86588"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	08-Nov-07	06-Dec-07	11132.00	=""	="Bridge IT Engineering Pty Ltd"	29-May-08 11:19 AM	

+="CN86590"	"Pharmaceutical Products"	="Department of Foreign Affairs and Trade"	29-May-08	="Drugs and Pharmaceutical Products"	05-Nov-07	30-Apr-08	43308.00	=""	="Roche Products Pty Limited"	29-May-08 11:19 AM	

+="CN86591"	"Office Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer Equipment and Accessories"	09-Nov-07	07-Dec-07	18652.70	=""	="Fuji Xerox Australia Pty Ltd"	29-May-08 11:20 AM	

+="CN86592"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	16-Nov-07	14-Dec-07	34460.25	=""	="Integral Consulting Services"	29-May-08 11:20 AM	

+="CN86593"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	14-Nov-07	16-Nov-07	27837.07	=""	="GENERAL DYNAMICS C4"	29-May-08 11:20 AM	

+="CN86594"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	19-Nov-07	06-Dec-07	10197.00	=""	="Bridge IT Engineering Pty Ltd"	29-May-08 11:20 AM	

+="CN86595"	"Electrical Supplies"	="Department of Foreign Affairs and Trade"	29-May-08	="Power Generation and Distribution Machinery and Accessories"	14-Nov-07	12-Dec-07	13748.98	=""	="MILLHOUSE ENTERPRISE PTY LTD"	29-May-08 11:21 AM	

+="CN86596"	"Office Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Furniture and Furnishings"	19-Nov-07	17-Dec-07	11339.90	=""	="Iken Commercial Interiors"	29-May-08 11:21 AM	

+="CN86597"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer Equipment and Accessories"	15-Nov-07	13-Dec-07	47216.95	=""	="STEP Electronics (A Hills Company)"	29-May-08 11:21 AM	

+="CN86598"	"Pharmaceutical Products"	="Department of Foreign Affairs and Trade"	29-May-08	="Drugs and Pharmaceutical Products"	21-Nov-07	19-Dec-07	64160.00	=""	="Roche Products Pty Limited"	29-May-08 11:21 AM	

+="CN86589"	"Recruitment Services"	="Australian Taxation Office"	29-May-08	="Recruitment services"	21-May-08	25-Sep-08	13066.20	="06.042"	="Manpower Services (Australia) Pty Ltd"	29-May-08 11:21 AM	

+="CN86599"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	26-Nov-07	24-Dec-07	13794.00	=""	="Bridge IT Engineering Pty Ltd"	29-May-08 11:21 AM	

+="CN86600"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	27-Nov-07	25-Dec-07	111278.75	=""	="BLACK BOX NETWORK SERVICES"	29-May-08 11:21 AM	

+="CN86601"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer Equipment and Accessories"	30-Nov-07	28-Dec-07	30754.90	=""	="Ethan Group Pty Ltd"	29-May-08 11:21 AM	

+="CN86602"	"Smartraveller advertising"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	03-Dec-07	28-Dec-07	22654.18	=""	="Universal McCann"	29-May-08 11:22 AM	

+="CN86603"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	05-Nov-07	21-Dec-07	92488.00	=""	="FLUKE AUSTRALIA PTY LTD"	29-May-08 11:22 AM	

+="CN86604"	"Smartraveller advertising"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	03-Dec-07	28-Dec-07	53561.21	=""	="Universal McCann"	29-May-08 11:22 AM	

+="CN86605"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	19-Nov-07	16-Jan-08	28556.00	=""	="COMPUCAT RESEARCH PTY LTD"	29-May-08 11:22 AM	

+="CN86606"	"Smartraveller advertising"	="Department of Foreign Affairs and Trade"	29-May-08	="Marketing and distribution"	03-Dec-07	28-Dec-07	43493.87	=""	="Universal McCann"	29-May-08 11:22 AM	

+="CN86607"	"ICT Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer Equipment and Accessories"	29-Nov-07	30-Apr-08	38176.60	=""	="Ecowise Services (Aust) Pty Ltd"	29-May-08 11:22 AM	

+="CN86608"	"Property Mgt & Architectural Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	04-Dec-07	30-Dec-07	54102.60	=""	="INTEGRATED SPACE PTY LTD"	29-May-08 11:22 AM	

+="CN86609"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer Equipment and Accessories"	04-Dec-07	04-Dec-07	20067.18	=""	="ALLIED TECHNOLOGIES AUSTRALIA"	29-May-08 11:22 AM	

+="CN86610"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	04-Dec-07	04-Dec-07	84652.73	=""	="TOWER SOFTWARE"	29-May-08 11:22 AM	

+="CN86611"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	04-Dec-07	23-Dec-07	15477.00	=""	="ZVENO PTY LTD"	29-May-08 11:23 AM	

+="CN86612"	"Venue hire - Training"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	06-Dec-07	23-Jan-08	13228.00	=""	="Rydges Cronulla Beach"	29-May-08 11:23 AM	

+="CN86613"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	20-Dec-07	81669.00	=""	="Australian Protective Service"	29-May-08 11:23 AM	

+="CN86614"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	20-Dec-07	81677.00	=""	="Australian Protective Service"	29-May-08 11:23 AM	

+="CN86615"	"Telecomminication Costs"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	07-Dec-07	12-Dec-07	64942.55	=""	="TELSTRA CORPORATION"	29-May-08 11:23 AM	

+="CN86616"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	81845.00	=""	="Australian Protective Service"	29-May-08 11:24 AM	

+="CN86617"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	20-Dec-07	81845.00	=""	="Australian Protective Service"	29-May-08 11:24 AM	

+="CN86618"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	07-Dec-07	81669.00	=""	="Australian Protective Service"	29-May-08 11:24 AM	

+="CN86619"	"Maintenance & Repairs"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	07-Dec-07	21-Dec-07	13474.15	=""	="SPOTLESS P&F Pty Ltd"	29-May-08 11:24 AM	

+="CN86620"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	10-Dec-07	10-Jul-08	17790.98	=""	="MultiMedia Concepts Pty Ltd"	29-May-08 11:24 AM	

+="CN86621"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	10-Dec-07	19-Dec-07	10823.75	=""	="AUSTRALIA POST (ACC 6102084)"	29-May-08 11:25 AM	

+="CN86622"	"Equipment Lease Payments"	="Department of Foreign Affairs and Trade"	29-May-08	="Tools and General Machinery"	12-Dec-07	31-Mar-08	11950.16	=""	="HP Financial Services"	29-May-08 11:25 AM	

+="CN86624"	"Postal & Courier Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Mail and cargo transport"	12-Dec-07	20-Dec-07	291806.25	=""	="Australia Post (9239640)"	29-May-08 11:25 AM	

+="CN86625"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Human resources services"	12-Dec-07	28-Dec-07	11220.00	=""	="Infinite Consulting Pty Ltd"	29-May-08 11:25 AM	

+="CN86626"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	12-Dec-07	29-Feb-08	15143.70	=""	="ICON RECRUITMENT PTY LTD"	29-May-08 11:26 AM	

+="CN86627"	"Travel fares"	="Department of Foreign Affairs and Trade"	29-May-08	="Passenger transport"	12-Dec-07	12-Dec-07	11457.50	=""	="The Chamber of Minerals and Energy"	29-May-08 11:26 AM	

+="CN86628"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Human resources services"	13-Dec-07	20-Dec-07	17246.74	=""	="ICON RECRUITMENT PTY LTD"	29-May-08 11:26 AM	

+="CN86629"	"Equipment Lease Payments"	="Department of Foreign Affairs and Trade"	29-May-08	="Tools and General Machinery"	13-Dec-07	13-Dec-07	62678.19	=""	="HP Financial Services"	29-May-08 11:26 AM	

+="CN86630"	"Venue hire - Conference"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	13-Dec-07	01-Jan-08	23997.46	=""	="SHERATON PERTH HOTEL"	29-May-08 11:26 AM	

+="CN86631"	"Security Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	20-Dec-07	163894.64	=""	="Australian Protective Service"	29-May-08 11:26 AM	

+="CN86633"	"Building Maintenance"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	17-Dec-07	21-Dec-07	41360.00	=""	="SPOTLESS P&F Pty Ltd"	29-May-08 11:27 AM	

+="CN86634"	"Driver training"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	17-Dec-07	28-Dec-07	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	29-May-08 11:27 AM	

+="CN86635"	"Legal Fees"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	18-Dec-07	31-Dec-07	10101.30	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-May-08 11:27 AM	

+="CN86636"	"Property Rental"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	18-Dec-07	18-Dec-07	12326.32	=""	="AUSTRALIAN TRADE COMMISSION"	29-May-08 11:27 AM	

+="CN86637"	"Legal Fees"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	19-Dec-07	31-Dec-07	16562.15	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	29-May-08 11:27 AM	

+="CN86638"	"Property Rental"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	19-Dec-07	19-Dec-07	64939.74	=""	="Australand Property Trust"	29-May-08 11:27 AM	

+="CN86639"	"Cultural Programs"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	21-Dec-07	14-Jan-08	11175.00	=""	="FLIGHT CENTRE LIMITED"	29-May-08 11:27 AM	

+="CN86640"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	04-Dec-07	28-Feb-08	19828.46	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:28 AM	

+="CN86641"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	05-Dec-07	28-Feb-08	234817.50	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:28 AM	

+="CN86642"	"Property Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	11-Dec-07	53200.00	=""	="United Group Process Solutions P/L"	29-May-08 11:28 AM	

+="CN86643"	"Property Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	11-Dec-07	11-Dec-07	25578.03	=""	="United Group Process Solutions P/L"	29-May-08 11:28 AM	

+="CN86644"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	12-Dec-07	28-Feb-08	61035.33	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:28 AM	

+="CN86645"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	12-Dec-07	28-Feb-08	294182.89	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:28 AM	

+="CN86646"	"Professional Fees"	="Department of Foreign Affairs and Trade"	29-May-08	="Legal services"	19-Dec-07	19-Dec-07	16359.50	=""	="Australian Government Solicitor"	29-May-08 11:28 AM	

+="CN86647"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	20-Dec-07	28-Feb-08	57892.85	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:29 AM	

+="CN86648"	"Property Expenses"	="Department of Foreign Affairs and Trade"	29-May-08	="Real estate services"	20-Dec-07	28-Feb-08	224107.69	=""	="KFPW PTY LTD (expenditure Account)"	29-May-08 11:29 AM	

+="CN86649"	"Electrical Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Electrical equipment and components and supplies"	05-Dec-07	02-Jan-08	89144.70	=""	="GE Infrastructure Security Pty Ltd"	29-May-08 11:29 AM	

+="CN86650"	"Electrical equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Electrical equipment and components and supplies"	05-Dec-07	02-Jan-08	74693.00	=""	="GE Infrastructure Security Pty Ltd"	29-May-08 11:29 AM	

+="CN86651"	"Contractor Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Telecommunications media services"	14-Dec-07	11-Jan-08	100100.00	=""	="Integral Consulting Services"	29-May-08 11:29 AM	

+="CN86652"	"Security Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Metal and mineral industries"	17-Dec-07	18-Dec-07	22123.70	=""	="SURELOCK MCGILL LTD"	29-May-08 11:29 AM	

+="CN86653"	"Office Equipment"	="Department of Foreign Affairs and Trade"	29-May-08	="Metal and mineral industries"	17-Dec-07	19-Dec-07	16655.21	=""	="API SECURITY PTY LTD"	29-May-08 11:29 AM	

+="CN86654"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Computer services"	20-Dec-07	17-Jan-08	33270.60	=""	="Hewlett Packard Australia Pty Ltd"	29-May-08 11:30 AM	

+="CN86655"	"ICT Technical & Related Services"	="Department of Foreign Affairs and Trade"	29-May-08	="Management and Business Professionals and Administrative Services"	07-Dec-07	30-Jan-08	34369.50	=""	="Applied Satellite Technology Aust"	29-May-08 11:30 AM	

+="CN86656"	" Investigation Services "	="Australian Sports Anti-Doping Authority (ASADA)"	29-May-08	="Audit services"	01-Feb-08	31-Jan-10	40000.00	="RFT 0708/001"	="Verifact Pty Ltd"	29-May-08 11:37 AM	

+="CN86657"	" S70B AIRFRAME AIRCRAFT SPARES "	="Defence Materiel Organisation"	29-May-08	="Aircraft"	29-May-08	15-Dec-08	22077.00	=""	="ASIA PACIFIC AEROSPACE"	29-May-08 11:53 AM	

+="CN86658"	"NSN 2620-66-112-3640, P3 Orion MLG Tyres"	="Defence Materiel Organisation"	29-May-08	="Aerospace systems and components and equipment"	26-May-08	02-Jun-08	13591.25	=""	="Goodyear Aviation Australia"	29-May-08 11:55 AM	

+="CN86659"	"Graphic Design and Print management of the 2007/08 Annual Report"	="Australian Sports Anti-Doping Authority (ASADA)"	29-May-08	="Promotional material or annual reports"	02-Apr-08	28-Nov-08	23276.00	=""	="Zoo Group"	29-May-08 11:55 AM	

+="CN86664"	"Management of Serious Crime Training"	="Australian Crime Commission"	29-May-08	="Work ethics or attitude training instructional materials"	13-May-08	12-Jun-08	10500.00	=""	="Australian Federal Police"	29-May-08 12:20 PM	

+="CN86667"	"Contract for the provision of Information Technology Services - Project Analyst Programmer"	="Australian Securities and Investments Commission"	29-May-08	="Information technology consultation services"	12-May-08	11-Jul-08	32912.00	=""	="Millenium Consulting Company Pty Ltd"	29-May-08 02:04 PM	

+="CN85352"	"Network penetration testing services"	="Australian Securities and Investments Commission"	29-May-08	="Computer services"	10-Mar-08	14-Mar-08	77550.00	=""	="Stratsec.net Pty Ltd"	29-May-08 02:18 PM	

+="CN86672-A1"	"Delivery of Fierce Conversations Workshops to support Performance Appraisals 2008"	="Australian Securities and Investments Commission"	29-May-08	="Education and Training Services"	01-Jun-08	07-Jul-08	56700.00	=""	="Illumina Executive Development"	29-May-08 02:29 PM	

+="CN86671"	"Radio Frequency Microwave Amplifier"	="Defence Materiel Organisation"	29-May-08	="Laboratory and Measuring and Observing and Testing Equipment"	29-May-08	01-Sep-08	10039.78	=""	="AGILENT TECHNOLOGIES"	29-May-08 02:31 PM	

+="CN86673"	"Consultancy services"	="Department of the Prime Minister and Cabinet"	29-May-08	="Public enterprises management or financial services"	01-May-08	10-May-08	19800.00	=""	="HBA Consulting"	29-May-08 02:34 PM	

+="CN86674-A1"	"Pallets Type A, B,  & D"	="Defence Materiel Organisation"	29-May-08	="Workshop machinery and equipment and supplies"	28-May-08	28-Jul-08	583192.51	=""	="Wilhelmsen Manufacturing Australia"	29-May-08 02:55 PM	

+="CN86676-A1"	"Counsultency fees for legal advice"	="CrimTrac"	29-May-08	="Strategic planning consultation services"	16-Apr-08	31-May-08	16436.00	=""	="Pamela Coward Higgins Lawyers"	29-May-08 03:04 PM	

+="CN86677"	"Career Development Assessment Registration"	="CrimTrac"	29-May-08	="Labour training or development"	30-Apr-08	31-May-08	11825.00	=""	="APS Commission"	29-May-08 03:05 PM	

+="CN86678"	"Administrative support Temp"	="CrimTrac"	29-May-08	="Temporary clerical or administrative assistance"	05-Mar-08	30-Apr-08	15250.00	=""	="Wizard Personnel  Office Services"	29-May-08 03:05 PM	

+="CN86679-A1"	"Security risk assessment"	="CrimTrac"	29-May-08	="Strategic planning consultation services"	30-Apr-08	13-Jun-08	49280.00	=""	="Stratsec.Net Pty Ltd"	29-May-08 03:05 PM	

+="CN86680"	"Services of a project officer"	="CrimTrac"	29-May-08	="Temporary personnel services"	30-Apr-08	30-Apr-09	247500.00	="RFQ43"	="I.T. Matters Recruitment Services Pty Ltd"	29-May-08 03:05 PM	

+="CN86681"	"IT Infrastructure Manager"	="CrimTrac"	29-May-08	="Temporary personnel services"	28-Apr-08	30-Nov-08	175500.00	="RFQ45"	="Transformed Pty Ltd"	29-May-08 03:05 PM	

+="CN86682"	"Supplier Creation Software"	="CrimTrac"	29-May-08	="Software"	17-Apr-08	31-May-08	11264.00	=""	="Dynamic Edge"	29-May-08 03:05 PM	

+="CN86675"	"Removals and Storage"	="Australian Crime Commission"	29-May-08	="File archive storage"	31-Dec-07	31-Mar-08	10517.32	=""	="Toll Transitions"	29-May-08 03:05 PM	

+="CN86683"	"VMWare Infratructure"	="CrimTrac"	29-May-08	="Computer servers"	09-Apr-08	30-Apr-08	24502.50	=""	="Infront Systems Pty Ltd"	29-May-08 03:05 PM	

+="CN86684"	"Data Migration Project"	="CrimTrac"	29-May-08	="Computer servers"	09-Apr-08	30-Apr-08	52800.00	=""	="Infront Systems Pty Ltd"	29-May-08 03:06 PM	

+="CN86685"	"Contractor services"	="CrimTrac"	29-May-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	114000.00	=""	="Finite IT Recruitment Solutions"	29-May-08 03:06 PM	

+="CN86686"	"Contractor services"	="CrimTrac"	29-May-08	="Temporary personnel services"	21-Nov-07	30-Jun-08	41580.00	=""	="Apis Consulting Group"	29-May-08 03:06 PM	

+="CN86687"	"Accounting contractor"	="CrimTrac"	29-May-08	="Temporary financial staffing needs"	31-Aug-07	30-Jun-08	68640.00	=""	="Optimum Business Consulting Pty Ltd"	29-May-08 03:06 PM	

+="CN86688"	"Strategic Planning"	="CrimTrac"	29-May-08	="Strategic planning consultation services"	06-Sep-07	30-Sep-07	10001.00	=""	="Strategic Directions"	29-May-08 03:06 PM	

+="CN86689"	"IT service continuity Project"	="CrimTrac"	29-May-08	="Strategic planning consultation services"	10-Apr-08	30-Apr-08	65637.00	=""	="Strategic Directions"	29-May-08 03:06 PM	

+="CN86691"	"New database and system hosting"	="CrimTrac"	29-May-08	="Network applications software"	28-Apr-08	30-Jun-08	73354.60	=""	="Department of Defence"	29-May-08 03:06 PM	

+="CN86692"	"MSP Course"	="CrimTrac"	29-May-08	="Labour training or development"	01-Apr-08	31-May-08	20396.64	=""	="Tanner James Managment Consultants"	29-May-08 03:07 PM	

+="CN86693"	"Dell VMware Servers"	="CrimTrac"	29-May-08	="Computer servers"	21-Apr-08	31-May-08	139121.93	=""	="Infront Systems Pty Ltd"	29-May-08 03:07 PM	

+="CN86694"	"TM1 Software  Implementation"	="CrimTrac"	29-May-08	="Software"	01-Apr-08	26-May-08	66000.00	=""	="Excelerated Consulting Pty Ltd"	29-May-08 03:07 PM	

+="CN86695"	"Legal Advice"	="CrimTrac"	29-May-08	="Management and Business Professionals and Administrative Services"	10-Sep-07	30-Jun-08	20000.00	=""	="Australian Government Solicitor"	29-May-08 03:07 PM	

+="CN86696"	"Telphone service provider"	="CrimTrac"	29-May-08	="Local and long distance telephone communications"	31-Aug-07	31-Dec-07	40000.00	=""	="Telstra"	29-May-08 03:07 PM	

+="CN86697"	"Services  maintainance"	="CrimTrac"	29-May-08	="Computer hardware maintenance or support"	13-Aug-07	30-Jun-08	220000.00	=""	="Cybertrust Pty Ltd"	29-May-08 03:07 PM	

+="CN86698"	"Contractor for IT services"	="CrimTrac"	29-May-08	="Temporary technician staffing needs"	18-Jun-07	31-Jan-09	114400.00	="RFQZ1"	="Finite IT Recruitment Solutions"	29-May-08 03:08 PM	

+="CN86699"	"Courier Services"	="CrimTrac"	29-May-08	="National postal delivery services"	16-Jul-07	31-Aug-07	15000.00	=""	="Universal Express"	29-May-08 03:08 PM	

+="CN86700"	"Contract Service Provider - Security/technical writer"	="CrimTrac"	29-May-08	="Temporary technician staffing needs"	23-Jul-07	31-Dec-07	165880.00	="03/2006"	="Dimension Data Australia Pty Ltd"	29-May-08 03:08 PM	

+="CN86701"	"Contactor Service Provider - Business Analysts"	="CrimTrac"	29-May-08	="Temporary technician staffing needs"	23-Jul-07	28-Dec-07	104409.00	="03/2006"	="Cordelta Pty Ltd"	29-May-08 03:08 PM	

+="CN86702"	"Telephone service provider"	="CrimTrac"	29-May-08	="Local and long distance telephone communications"	30-Jul-07	30-Jun-08	45000.00	=""	="Telstra"	29-May-08 03:08 PM	

+="CN86703"	"SLA Agreement - Renewal"	="CrimTrac"	29-May-08	="Computer hardware maintenance or support"	23-Jul-07	30-Jun-08	19999.99	=""	="Infront Systems Pty Ltd"	29-May-08 03:08 PM	

+="CN86705-A3"	"Media Monitoring Services"	="Department of the Prime Minister and Cabinet"	29-May-08	="Printed media"	26-May-08	17-Nov-08	60000.00	=""	="Media Monitors Pty Ltd"	29-May-08 03:10 PM	

+="CN86706"	"Provision of media services"	="Department of the Prime Minister and Cabinet"	29-May-08	="Business administration services"	21-Jan-08	31-Jul-08	50000.00	=""	="Bolger Media Services"	29-May-08 03:16 PM	

+="CN86708"	"Software enhancement services"	="Australian Securities and Investments Commission"	29-May-08	="Temporary information technology software developers"	11-Apr-08	05-Jun-08	24860.00	=""	="Global 360 (Australia) Pty Ltd"	29-May-08 03:39 PM	

+="CN86668"	" PURCHASE OF CRYPTOGRAPHIC ANCILLARIES. "	="Defence Materiel Organisation"	29-May-08	="Communications Devices and Accessories"	29-May-08	10-Sep-08	18400.00	=""	="JACOBS RADIO AUSTRALIA PTY LTD"	29-May-08 03:54 PM	

+="CN86710"	"Guarding services"	="Australian Crime Commission"	29-May-08	="National Defence and Public Order and Security and Safety Services"	29-Feb-08	30-Apr-08	33317.65	=""	="Chubb Electronic Security"	29-May-08 03:57 PM	

+="CN86711"	"ECM - Product Research, Analysis & Development"	="Australian Securities and Investments Commission"	29-May-08	="Information technology consultation services"	01-Feb-08	29-Apr-08	79200.00	=""	="Enterprise Knowledge"	29-May-08 04:02 PM	

+="CN86713"	"Prime Network Technologies Pty Ltd"	="Australian Securities and Investments Commission"	29-May-08	="Components for information technology or broadcasting or telecommunications"	22-Apr-08	22-Apr-08	12819.62	=""	="Prime Network Technologies Pty Ltd"	29-May-08 04:18 PM	

+="CN86714"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0651 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	29-May-08	="Aerospace systems and components and equipment"	29-May-08	30-Jun-08	14822.34	=""	="Goodrich Control Systems"	29-May-08 04:19 PM	

+="CN86715-A1"	"BCS Strategy & Information Audit Guidelines"	="Australian Securities and Investments Commission"	29-May-08	="Information technology consultation services"	14-Jan-08	14-Apr-08	40000.00	=""	="Siller Systems Administration"	29-May-08 04:27 PM	

+="CN86716"	"Contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	29-May-08	="Information technology consultation services"	19-May-08	18-Jul-08	34848.00	=""	="Interpro Australia Pty Ltd"	29-May-08 04:40 PM	

+="CN86717"	"Talent rollover of Big Bugs Talent TV/Print"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Marketing and distribution"	20-Apr-08	20-Jul-08	11601.70	=""	="KWP Advertising Pty Ltd"	29-May-08 04:49 PM	

+="CN86718-A1"	"Consultancy services for stand alone metadata creation/editing entry interface tool compatible with GeoNetwork to support the Bureau's standards,and recommendatoins on implementing query filters."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	26-May-08	30-Jun-08	79970.00	=""	="LisaSoft Pty Ltd"	29-May-08 04:49 PM	

+="CN86719"	"Meat Inspection Training"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Education and Training Services"	30-Jun-08	22-Aug-09	57792.50	=""	="Australian College of Training"	29-May-08 04:50 PM	

+="CN86720-A2"	"Closed - AQIS staff - Airport"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	20-May-08	20-May-09	600000.00	=""	="Workforce International"	29-May-08 04:50 PM	

+="CN86722"	"preparation of a diagnostic protocol for identification of exotic thrips species Scirtothrips perseae"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	01-May-08	29-May-08	11000.00	=""	="Laurence Mound"	29-May-08 04:50 PM	

+="CN86723"	"NAQS laboratory airconditioning system modification and addition."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Building and Construction and Maintenance Services"	02-Jun-08	05-Sep-08	168636.16	=""	="Australian Airconditioning & Mechanical Services"	29-May-08 04:50 PM	

+="CN86724"	"Relocate Brisbane Airport PABX"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	16-May-08	30-Jun-08	10000.00	=""	="Telstra Business Systems"	29-May-08 04:50 PM	

+="CN86725"	"Provide advice on containment facility requirementsProvide recommendations on timeframes for meeting AQIS requirements"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	01-Jun-07	01-Jun-08	25000.00	=""	="Graeme O'Neill"	29-May-08 04:50 PM	

+="CN86726"	"advertisement for V05 Aquatic Head April 2008"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Education and Training Services"	01-Apr-08	31-May-08	33391.45	=""	="HMA Blaze Pty Ltd"	29-May-08 04:51 PM	

+="CN86728"	"Switchboard operators for Apr 08"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	01-Apr-08	30-Apr-08	23841.28	=""	="Sirius Corporation Limited"	29-May-08 04:51 PM	

+="CN86729"	"Reprint of What can't be mailed into Australia in English"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Printed media"	21-May-08	30-Jun-08	15541.90	=""	="Paragon Printers"	29-May-08 04:51 PM	

+="CN86730"	"Reprint of What can't be mailed to Australia in English."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Printed media"	21-May-08	30-Jun-08	17204.00	=""	="Union Offset Printers"	29-May-08 04:51 PM	

+="CN86731-A1"	"Market research on attitudes to trade in rural industries and the provision of recommendations for a subsequent communications strategy for the International Division's Domestic Trade Advocacy initiative."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	21-May-08	28-Aug-08	79970.00	=""	="Blue Moon Research and Planning Pty Ltd"	29-May-08 04:51 PM	

+="CN86732"	"Supply of two HP Designjet Z6100PS Plotters to the Bureau of Rural Sciences"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Office machines and their supplies and accessories"	21-May-08	30-Jun-08	54612.80	=""	="GBC Fordigraph Pty Ltd"	29-May-08 04:51 PM	

+="CN86734"	"Analytical testing for the National Residue Survey - Program 16THIS IS A VARIATION OF THE ORIGINAL CONTRACT WITH PIN: 2953"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	33000.00	=""	="Ecowise Environmental Victoria Pty Ltd"	29-May-08 04:52 PM	

+="CN86735"	"preparation of a diagnostic protocol for identification of exotic thrips species Echinothrips americanus"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	01-May-08	26-Jun-08	11000.00	=""	="Laurence Mound"	29-May-08 04:52 PM	

+="CN86736-A1"	"Customised Training - SMP group 1, 16-18th March 08 x 16 staff"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Education and Training Services"	16-Mar-08	18-Mar-08	10960.00	=""	="Swinburne University of Technology"	29-May-08 04:52 PM	

+="CN86737"	"CHILDCARE PLACEMENT RESERVATION SERVICES JAN TO JUNE"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	23-May-08	30-Jun-08	50000.00	=""	="Northside Community Service"	29-May-08 04:52 PM	

+="CN86738"	"Provide to the Bureau: print, data processing and mail out survey services as specified"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	20-May-08	22-Jul-08	46500.00	=""	="National Mail & Marketing"	29-May-08 04:52 PM	

+="CN86739"	"Provision of recruitment services to the Bureau of Rural Sciences"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	21-May-08	30-Jun-08	23000.00	=""	="Hays Accounting & Finance"	29-May-08 04:52 PM	

+="CN86740-A1"	"Member of Dairy Quota Review Panel 2008 tasked to review the appropriateness, effectiveness and efficiency of the current US and EU dairy quota administration arrangements and identify areas where improvements to the quota management arrangements could be"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	05-Mar-08	31-Jul-08	47221.34	=""	="John McQueen"	29-May-08 04:52 PM	

+="CN86741"	"F2F meeting re AI (Victoria)"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	30-May-08	15-Aug-08	15000.00	=""	="Zoological Parks Board of NSW"	29-May-08 04:53 PM	

+="CN86742"	"Provision of Introduction to the Senate seminar for Graduates."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Education and Training Services"	12-Jun-08	24-Jul-08	16800.00	=""	="Department of the Senate"	29-May-08 04:53 PM	

+="CN86743"	"Provide to the Bureau ERDAS (Geospatial Imagery Software) Image Web Server Corporate edition (including software maintenance"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	26-May-08	30-Jun-08	59202.00	=""	="ERDAS Pty Ltd"	29-May-08 04:53 PM	

+="CN86744-A1"	"Supply to the Bureau design and implementation of Spatial data Infrastructure database and data services, including tools, documentation and configurations."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	26-May-08	30-Jun-08	67144.00	=""	="NGIS Pty Ltd"	29-May-08 04:53 PM	

+="CN86746"	"REMOVAL OF IFFV HULL MELVILLE ISLAND NT"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	23-May-08	30-Jun-08	29458.00	=""	="TIWI LAND COUNCIL"	29-May-08 04:53 PM	

+="CN86747"	"Conference facilities and accomodation for 35 participants for the Rapid Deployment Team training course."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	11-Jun-08	12-Jun-08	15000.00	=""	="Citigate Sebel Sydney"	29-May-08 04:53 PM	

+="CN86748-A1"	"Provision of methyl bromide fumigation training to the Australian fumigation industry."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	12-May-08	18-May-08	42000.00	=""	="Peter Meadows Consulting Pty Ltd"	29-May-08 04:54 PM	

+="CN86749"	"Provision of training and assessment Train the Trainer activities being undertaken under AFAS in the Philippines"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	08-Mar-08	15-Mar-08	22267.52	=""	="Pest Education Services and Training"	29-May-08 04:54 PM	

+="CN86750"	"Levies Phoenix Support April 2008"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	01-Apr-08	30-Apr-08	14432.00	=""	="Aladn System Solutions Pty Ltd"	29-May-08 04:54 PM	

+="CN86751"	"Recruitment services"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Education and Training Services"	15-May-08	15-May-08	11957.94	=""	="Cordelta"	29-May-08 04:54 PM	

+="CN86752"	"Accommodation for Meat Inspector Trainees"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Passenger transport"	13-Jun-08	02-Aug-08	37414.00	=""	="Quest on James Serviced Apartments"	29-May-08 04:54 PM	

+="CN86753"	"Survey nursery stock in Australia for bacterium xylella fastidiosa"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	28-Mar-08	30-Jun-08	49500.00	=""	="Victorian Department of Primary Industries"	29-May-08 04:54 PM	

+="CN86754"	"DAFF Brisbane office fitout"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-May-08	11677.60	=""	="Iken Commercial Interiors"	29-May-08 04:54 PM	

+="CN86755"	"MANAGEMENT ACCOUNTING"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	31-Mar-08	27-Jun-08	39600.00	=""	="walterTurnbull"	29-May-08 04:55 PM	

+="CN86756-A1"	"Supply of ArcGIS Server products (including licences, training and maintenance) as part of the Bureau of Rural Science's Spatial Data Infrastructure requirements."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	26-May-08	30-Jun-08	186862.50	=""	="ESRI Australia Pty Ltd"	29-May-08 04:55 PM	

+="CN86757"	"Supply to the Bureau SPSS (statistical package for social sciences) software and maintenance."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	26-May-08	30-Jun-08	97454.50	=""	="SPSS Australiasia Pty Ltd"	29-May-08 04:55 PM	

+="CN86727"	"Guarding patrols and alarm response for IPC extension"	="Australian Securities and Investments Commission"	29-May-08	="Security surveillance and detection"	02-May-08	01-Aug-08	33202.14	=""	="Chubb Security Personnel"	29-May-08 04:55 PM	

+="CN86758"	"Aircraft Charters for Plant health survey of PNG's Western Province."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Transportation and Storage and Mail Services"	27-May-08	27-Jun-08	56000.00	=""	="Mission Aviation Fellowship"	29-May-08 04:55 PM	

+="CN86759"	"Organisation and Coordination of Government/Industry Workshop of Avian Influenza"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	30-Jun-08	63973.00	=""	="Australian Animal Health Council Ltd"	29-May-08 04:55 PM	

+="CN86760"	"Helicopter Charter for Feral Animal Survey"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	03-Jun-08	13-Jun-08	37200.00	=""	="Cloncurry Mustering Co P/L"	29-May-08 04:55 PM	

+="CN86761-A1"	"Diesel Generator acoustic treatment"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-09	147400.00	=""	="Thiess"	29-May-08 04:55 PM	

+="CN86762"	"Dairy Development April 2008"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	01-Apr-08	30-Apr-08	29700.00	=""	="Aladn System Solutions Pty Ltd"	29-May-08 04:56 PM	

+="CN86763"	"Purchase 4300 Centenary of Quarantine coins."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Printed media"	21-May-08	21-Jun-08	40484.20	=""	="Royal Australian Mint"	29-May-08 04:56 PM	

+="CN86764"	"Data validation and capture."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	01-Sep-07	31-May-08	13200.00	=""	="The Northern Territory of Australia Department of Primary Industries, Fisheriesand Mines"	29-May-08 04:56 PM	

+="CN86765"	"NAQS charter to Jabiru, Elco Island, Howard Island, Manigrida, Wanamuri by Joe Schmidt & Jeremy Rioli 13th to 20th May 2008."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Transportation and Storage and Mail Services"	13-May-08	20-May-08	31911.00	=""	="Jayrow Helicopters Pty Ltd"	29-May-08 04:56 PM	

+="CN86766-A1"	"Conduct a Computer Assisted Telephone Interview (CATI) Survey and provide dataset to industry standards in Statistical Pack for Social Sciences (SPSS) format for the Bureau."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	20-May-08	09-Jun-08	44780.00	=""	="Ekas Market Research Services"	29-May-08 04:56 PM	

+="CN86767"	"Hyperion Performance Suite/Hyperion Intelligence Software Maintenance Renewal"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	15-Jun-08	14-Jun-09	30036.60	=""	="Oracle"	29-May-08 04:56 PM	

+="CN86768-A1"	"This project will produce one output, a Brochure identifying the process for obtaining agreement of the set of indicators, the information arrangements that have been tested as per the outcomes of the AWDI project, and some identified products that would"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	15-May-08	30-Jun-08	11550.00	=""	="Hyder Consulting Pty Ltd"	29-May-08 04:56 PM	

+="CN86769"	"Building Asset Project Reconciliation"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	06-May-08	16-Jun-08	11000.00	=""	="Oakton AA Services Pty Ltd"	29-May-08 04:57 PM	

+="CN86771"	"NRM National Component PNP - Writing & Editing services for A compendium of Landcare Achievements - "Landcare - Making a Difference""	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	01-Mar-08	30-Jun-08	27500.00	=""	="Blackadder Communication"	29-May-08 04:57 PM	

+="CN86772"	"Fitout for Brisbane office"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-May-08	14231.58	=""	="Planex Sales Pty Ltd"	29-May-08 04:57 PM	

+="CN86773"	"Boat hire for 5 days beach surveillance of islands between Koolan Island and Usboune Point from 16th to 20th June 08 by NAQS team."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	16-Jun-08	20-Jun-08	13750.00	=""	="Lombadina Aboriginal Corporation"	29-May-08 04:57 PM	

+="CN86774"	"Supply to the Bureau a two phase inventory approach that utilises spatial data on crown cover, forest productivity and samples clusters of angle-count points on tree levels to be collected used for Upper north East New South Wales Regional Forest Agreemen"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	20-Mar-08	31-Aug-08	57646.00	=""	="Australian National University - College of Science Research Office"	29-May-08 04:57 PM	

+="CN86775"	"Contractor - Michael Young"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	05-May-08	16-May-08	11511.50	=""	="Transformed Pty Ltd"	29-May-08 04:57 PM	

+="CN86776"	"Interior Refitting"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Jun-08	34650.00	=""	="Nine Two Five Interiors"	29-May-08 04:57 PM	

+="CN86777"	"Charter for W4 survey to Kalumburu, WA on 26th to 28th May 2008 by John Curran."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Human resources services"	26-May-08	28-May-08	20825.00	=""	="Heliwork"	29-May-08 04:58 PM	

+="CN86778"	"Wheat Selection Committee Consultant"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	27-May-08	31-Aug-08	25000.00	=""	="Dr Ben Gursanky"	29-May-08 04:58 PM	

+="CN86779"	"Validation of Asian Gypsy Moth and Fruit Flies of Economic Significance to Australia diagnostic protocols"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	15-May-08	15-Jun-08	33000.00	=""	="Queensland University of Technology"	29-May-08 04:58 PM	

+="CN86780-A1"	"Service agreement for assistance in the implementation of the AAWS 08 Conference and Communications."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	07-Apr-08	12-Sep-08	45906.00	=""	="Jane Speechley, Charismatic Communications"	29-May-08 04:58 PM	

+="CN86781-A1"	"Aircraft Charter"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management and Business Professionals and Administrative Services"	27-May-08	14-Jun-08	11100.00	=""	="Regional Pacific Airlines"	29-May-08 04:58 PM	

+="CN86782"	"i-Delegate licence renewal for 1 year. (Theta own i-Delegate)"	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Computer services"	01-Jul-08	30-Jun-09	10666.90	=""	="Theta Technologies"	29-May-08 04:58 PM	

+="CN86783"	"To undertake activities in the provision of auditing services in Indonesia."	="Department of Agriculture Fisheries and Forestry"	29-May-08	="Management advisory services"	21-May-08	30-May-08	35000.00	=""	="Fumigation Training & Consulting Services"	29-May-08 04:58 PM	

+="CN86784"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-May-08	="Aircraft spars"	30-May-08	26-Nov-08	44827.20	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-May-08 08:06 AM	

+="CN86785"	"Antiflash Hoods and Gloves for Royal Australian Navy"	="Defence Materiel Organisation"	30-May-08	="Heat resistant clothing"	07-May-08	22-Aug-08	413600.00	="J8277"	="Flamesafe Fabric Specialists"	30-May-08 08:14 AM	

+="CN86786"	"Flyers Gloves for Army, Navy and Airforce"	="Defence Materiel Organisation"	30-May-08	="Protective gloves"	23-May-08	11-Aug-08	327525.00	="B1211"	="Armtech Pty Ltd"	30-May-08 08:26 AM	

+="CN86787"	"Computer Training course"	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	05-Jun-08	31680.00	=""	="IBM Australia Pty Ltd"	30-May-08 09:28 AM	

+="CN86790-A1"	"  Continuing Professional Development Sessions to provide  Tax Updates  "	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	31-May-09	282608.00	="40.05-26"	="Kaplin Education Pty Ltd"	30-May-08 10:23 AM	

+="CN86791"	"Nuance SW Maintenance & Support"	="Australian Taxation Office"	30-May-08	="Software maintenance and support"	01-Jul-08	31-Dec-09	145200.00	=""	="NEC Australia Pty Ltd"	30-May-08 10:27 AM	

+="CN86793-A1"	" Finalise negotiations for Enterprise Licensing Agreement, financial mgt and investment strategy consulting services "	="Centrelink"	30-May-08	="Business administration services"	02-Jan-08	30-Jun-08	104347.00	=""	="Mike Goldstein & Associates"	30-May-08 10:54 AM	

+="CN86795"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	26-Mar-08	13276.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 11:26 AM	

+="CN86797"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	09-Jan-08	13243.10	=""	="Translating & Interpreting Svs"	30-May-08 11:26 AM	

+="CN86798"	"Parts"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	09-Jan-08	09-Jan-08	14137.34	=""	="BISCHL Feinmechanik/Electronic GmbH"	30-May-08 11:26 AM	

+="CN86799"	"Telecommunications Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	10-Jan-08	10-Jan-08	67060.46	=""	="TELSTRA CORPORATION"	30-May-08 11:26 AM	

+="CN86800"	"scanner maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	10-Jan-08	01-Aug-08	18084.00	=""	="Kodak (Australasia) Pty Ltd"	30-May-08 11:27 AM	

+="CN86801"	"Function"	="Department of Foreign Affairs and Trade"	30-May-08	="Travel and Food and Lodging and Entertainment Services"	10-Jan-08	31-Jan-08	105000.00	=""	="Consuming Passions Pty Ltd"	30-May-08 11:27 AM	

+="CN86802"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	13598.68	=""	="Media Monitors Australia P/L"	30-May-08 11:27 AM	

+="CN86804"	"Postage"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	14-Jan-08	21-Jan-08	190980.40	=""	="Australia Post (9239640)"	30-May-08 11:27 AM	

+="CN86805"	"Office rent and Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	14-Jan-08	73890.12	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 11:27 AM	

+="CN86806"	"Building maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	08-Feb-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 11:28 AM	

+="CN86807"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	31-Jan-08	33141.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 11:28 AM	

+="CN86808"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	25-Jan-08	35742.22	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 11:28 AM	

+="CN86809"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	28-Jan-08	12071.23	=""	="Media Monitors Australia P/L"	30-May-08 11:28 AM	

+="CN86810"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	31-Jan-08	40715.25	=""	="Coffey ID Pty Ltd"	30-May-08 11:28 AM	

+="CN86811"	"Rent and Outgoings"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	18-Jan-08	18-Jan-08	65615.82	=""	="Australand Property Trust"	30-May-08 11:28 AM	

+="CN86812"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	21-Jan-08	24-Jan-08	13291.85	=""	="ICON RECRUITMENT PTY LTD"	30-May-08 11:29 AM	

+="CN86813"	"Security Door"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	21-Jan-08	21-Jan-08	14462.80	=""	="Diebold Physical Security Pty Ltd"	30-May-08 11:29 AM	

+="CN86814"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	18532.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86815"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	14238.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86816"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	21244.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86817"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	21-Jan-08	31-Dec-08	10600.00	=""	="ARTBANK"	30-May-08 11:29 AM	

+="CN86818"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	22-Jan-08	22-Jan-08	25132.45	=""	="Sealeck Pty Ltd"	30-May-08 11:30 AM	

+="CN86820"	"Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	22-Jan-08	12727.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 11:30 AM	

+="CN86821"	"Rent and Outgoings"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	22-Jan-08	65615.82	=""	="Australand Property Trust"	30-May-08 11:30 AM	

+="CN86822"	"Freight"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	22-Jan-08	31-Jan-08	60134.92	=""	="Star Track Express"	30-May-08 11:30 AM	

+="CN86823"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	26-Mar-08	12957.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 11:30 AM	

+="CN86824"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	23-Jan-08	23-Jan-08	18931.18	=""	="Sealeck Pty Ltd"	30-May-08 11:31 AM	

+="CN86825"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	23-Jan-08	25-Jan-08	26811.40	=""	="Sealeck Pty Ltd"	30-May-08 11:31 AM	

+="CN86826"	"Facilitation"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	23-Jan-08	17490.00	=""	="Myriad Consultants Pty Ltd"	30-May-08 11:31 AM	

+="CN86827"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	24-Jan-08	31-Dec-09	12850.00	=""	="ARTBANK"	30-May-08 11:31 AM	

+="CN86828"	"Importation Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	24-Jan-08	18-Feb-08	15308.89	=""	="Power House International P/L"	30-May-08 11:31 AM	

+="CN86829"	"Other Goods"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	24-Jan-08	16990.93	=""	="GSI Media Pty Ltd"	30-May-08 11:31 AM	

+="CN86830"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	24-Jan-08	25-Jan-08	16649.29	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86831"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Doors and windows and glass"	24-Jan-08	25-Jan-08	23555.47	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86832"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	24-Jan-08	25-Jan-08	34644.63	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86833"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	28-Jan-08	16219.50	=""	="ZVENO PTY LTD"	30-May-08 11:32 AM	

+="CN86834"	"Subscription"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	29-Jan-08	11250.00	=""	="Dow Jones Reuters Business Interact"	30-May-08 11:32 AM	

+="CN86835"	"Pest Control"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Jan-08	25-Jan-08	18532.00	=""	="Complete Cleaning Services"	30-May-08 11:32 AM	

+="CN86836"	"Telecommuication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Jan-08	25-Jan-08	29150.87	=""	="TELSTRA CORPORATION LIMITED (Qld)"	30-May-08 11:32 AM	

+="CN86837"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	25-Jan-08	10210.20	=""	="GHD Pty Ltd"	30-May-08 11:33 AM	

+="CN86838"	"Insurance"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	29-Jan-08	31-Jul-08	13948.86	=""	="NATIONAL MUSEUM OF AUSTRALIA"	30-May-08 11:33 AM	

+="CN86839"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81845.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86840"	"Office rent and Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	30-Jan-08	02-Feb-08	73248.86	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 11:33 AM	

+="CN86841"	"Security Service"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	163894.64	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86842"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81845.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86843"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81677.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86844"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81669.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86845"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81677.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86846"	"security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	163089.92	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86847"	"Security Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81669.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86848"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	30-Jan-08	26-Feb-08	34871.43	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 11:34 AM	

+="CN86849"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	29555.00	=""	="Interiors Australia"	30-May-08 11:34 AM	

+="CN86850"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	14-Jan-08	23540.00	=""	="MINTER ELLISON"	30-May-08 11:34 AM	

+="CN86851"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	14-Jan-08	10452.31	=""	="MINTER ELLISON"	30-May-08 11:34 AM	

+="CN86852"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	23-Jan-08	23-Jan-08	18001.50	=""	="MINTER ELLISON"	30-May-08 11:35 AM	

+="CN86853"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	29-Jan-08	15-Feb-08	12028.50	=""	="Australian Government Solicitor"	30-May-08 11:35 AM	

+="CN86854"	"Electrical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	08-Jan-08	09-Jan-08	18421.00	=""	="CombiTel"	30-May-08 11:35 AM	

+="CN86855"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	09-Jan-08	19-Feb-08	12951.50	=""	="Commander Integrated Networks Pty L"	30-May-08 11:35 AM	

+="CN86856"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	08-Jan-08	05-Feb-08	13600.00	=""	="KABA Australia Pty Ltd"	30-May-08 11:35 AM	

+="CN86857"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	08-Jan-08	05-Feb-08	14960.00	=""	="KABA Australia Pty Ltd"	30-May-08 11:35 AM	

+="CN86858"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	10-Jan-08	07-Feb-08	18894.01	=""	="Commander Integrated Networks Pty L"	30-May-08 11:35 AM	

+="CN86859"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Jan-08	31-Jan-08	17991.60	=""	="RIC Teledata Pty Ltd"	30-May-08 11:35 AM	

+="CN86860"	"Telecommunication Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	14-Jan-08	31-Jan-08	20807.05	=""	="STEP Electronics (A Hills Company)"	30-May-08 11:36 AM	

+="CN86861"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Jan-08	31-Jan-08	45650.00	=""	="RIC Teledata Pty Ltd"	30-May-08 11:36 AM	

+="CN86862"	"Sale And Leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	18-Jan-08	15-Feb-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 11:36 AM	

+="CN86863"	"Electrical gates"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	19-Feb-08	23403.50	=""	="IEE Electrical Services"	30-May-08 11:36 AM	

+="CN86864"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	23-Jan-08	20-Feb-08	25740.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:36 AM	

+="CN86865"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	01-Feb-08	25418.47	=""	="Fitzgerald Technologies"	30-May-08 11:36 AM	

+="CN86866"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	24-Jan-08	21-Feb-08	66649.00	=""	="Patriot Alliance Pty Ltd"	30-May-08 11:36 AM	

+="CN86867"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	22-Jan-08	28-Feb-08	29429.40	=""	="KAZ Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86868"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	23-Jan-08	30-Apr-08	10785.29	=""	="Commander Integrated Networks Pty L"	30-May-08 11:37 AM	

+="CN86869"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	17-Jan-08	14-Feb-08	22363.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86871"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	14-Jan-08	11-Feb-08	22908.60	=""	="Ethan Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86872"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Office machines and their supplies and accessories"	30-Jan-08	31-Jan-08	12346.40	=""	="CANON AUSTRALIA PTY LTD"	30-May-08 11:37 AM	

+="CN86873"	"Stationary"	="Department of Foreign Affairs and Trade"	30-May-08	="Office supplies"	29-Jan-08	31-Jan-08	56680.00	=""	="THE CAMERONS GROUP"	30-May-08 11:38 AM	

+="CN86874"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	29-Jan-08	26-Feb-08	48444.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:38 AM	

+="CN86875"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	11385.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:38 AM	

+="CN86876"	"Tecnhology Solutions"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	31-Jan-08	28-Feb-08	116644.81	=""	="Fitzgerald Technologies"	30-May-08 11:38 AM	

+="CN86877"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Jan-08	08-Feb-08	98175.00	=""	="Integral Consulting Services"	30-May-08 11:38 AM	

+="CN86878"	"Technical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Manufacture of electrical goods and precision instruments"	25-Jan-08	22-Feb-08	62000.00	=""	="Olympus Australia Pty Ltd"	30-May-08 11:38 AM	

+="CN86879"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	23-Jan-08	20-Feb-08	94187.50	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 11:39 AM	

+="CN86880"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	30-Jan-08	27-Feb-08	77165.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	30-May-08 11:39 AM	

+="CN86881"	"IT Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	10-Jan-08	27-Mar-08	24613.05	=""	="R.P.M. Solutions Pty Ltd"	30-May-08 11:39 AM	

+="CN86882"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	33993.85	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86883"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	33993.85	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86884"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	67987.70	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86885"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	29-Jan-08	29-Jan-09	59400.00	=""	="ActivIdentity"	30-May-08 11:39 AM	

+="CN86886-A1"	"Professional Membership Fees"	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	13-Apr-09	39800.00	="08.071"	="Human Services Asia Pacific Pty Ltd"	30-May-08 11:41 AM	

+="CN86888"	"STAFF SECONDMENT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Human resources services"	30-Apr-08	30-Apr-08	231000.00	=""	="RESERVE BANK OF AUSTRALIA"	30-May-08 11:49 AM	

+="CN86890"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	13-May-08	13-May-08	50916.80	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:49 AM	

+="CN86891"	"COURIER SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Postal and small parcel and courier services"	08-May-08	08-May-08	13673.22	=""	="UNIVERSAL EXPRESS"	30-May-08 11:49 AM	

+="CN86892"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	16-May-08	16-May-08	426888.00	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:49 AM	

+="CN86893"	"ERGONOMIC DESK ASSESSMENTS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Comprehensive health services"	30-Apr-08	30-Apr-08	11730.40	=""	="J J FRITH AND ASSOCIATES"	30-May-08 11:49 AM	

+="CN86895-A1"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	130900.00	=""	="OAKTON SERVICES PTY LTD"	30-May-08 11:50 AM	

+="CN86896-A1"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	08-May-08	08-May-08	190080.00	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:50 AM	

+="CN86897"	"PRINTING COSTS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	07-May-08	18998.65	=""	="PRINT PAL (TAM INTERNATIONAL ENTERPRISES)"	30-May-08 11:50 AM	

+="CN86898"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	08-May-08	08-May-08	209989.96	=""	="SMS CONSULTING GROUP LTD"	30-May-08 11:50 AM	

+="CN86899"	"IT CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	17-Apr-08	17-Apr-08	34366.20	=""	="OAKTON SERVICES PTY LTD"	30-May-08 11:50 AM	

+="CN86902"	"SOFTWARE LICENSE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	15-Sep-08	23-Mar-09	167192.00	=""	="MICROSTRATEGY PTY LTD"	30-May-08 11:51 AM	

+="CN86903"	"SOFTWARE LICENSE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	15-Sep-08	23-Mar-09	32755.00	=""	="MICROSTRATEGY PTY LTD"	30-May-08 11:51 AM	

+="CN86904"	"REVIEW OF FMA IMPLEMENTATION"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Business intelligence consulting services"	18-Jan-08	20-Feb-08	27075.00	=""	="PROTIVITI PTY LIMITED"	30-May-08 11:51 AM	

+="CN86905"	"PHOTOCOPYING EQUIPMENT LEASE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Office machines and their supplies and accessories"	01-Jan-08	31-Dec-12	436479.84	=""	="FUJI XEROX AUSTRALIA"	30-May-08 11:51 AM	

+="CN86906"	"TRAINING COURSE - ASSESSMENT OF CATASTROPHE MODELS USED BY GENERAL INSURERS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Engineering and Research and Technology Based Services"	17-Apr-08	17-Apr-08	16500.00	=""	="BENFIELD (AUSTRALIA) PTY LTD"	30-May-08 11:51 AM	

+="CN86907"	"COMPUTER HARDWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software or hardware engineering"	22-Apr-08	22-Apr-08	69880.81	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	30-May-08 11:51 AM	

+="CN86908"	"COMPUTER HARDWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software or hardware engineering"	22-Apr-08	22-Apr-08	36984.31	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	30-May-08 11:51 AM	

+="CN86909"	"TEMPORARY STAFFING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	22-Apr-08	22-Apr-08	22774.40	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:51 AM	

+="CN86910"	"RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Recruitment services"	23-Apr-08	23-Apr-08	27720.00	=""	="NEXT STEP RECRUITMENT (NSW) PTY LTD"	30-May-08 11:52 AM	

+="CN86911"	"APEC PROGRAM ADVANCED CREDIT RISK SEMINAR"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Hotels and lodging and meeting facilities"	06-May-08	06-May-08	27500.00	=""	="RESERVE BANK OF AUSTRALIA"	30-May-08 11:52 AM	

+="CN86912"	"EXPER WITNESS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	14-May-08	14-May-08	66000.00	=""	="HULLAH NO.1 FAMILY TRUST"	30-May-08 11:52 AM	

+="CN86913"	"ZIP TAPS FOR SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Facilities management"	08-May-08	08-May-08	34021.08	=""	="ZIP HEATERS AUST. PTY LTD"	30-May-08 11:52 AM	

+="CN86914"	"LABOUR HIRE - GENERAL CONTRACTORS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	19976.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:52 AM	

+="CN86915"	"LABOUR HIRE - GENERAL CONTRACTORS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	19976.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:52 AM	

+="CN86916-A1"	"PROJECT MANAGEMENT OF PERTH OFFICE FITOUT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Project management"	16-May-08	16-May-08	16500.00	=""	="CB RICHARD ELLIS (C) PTY LTD T/A CB RICHARD ELLIS ITF QV.1 PARTNERSHIP REBA TRUST A/C-IBTC47453"	30-May-08 11:52 AM	

+="CN86917"	"DESIGNERS FOR PERTH OFFICE FITOUT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Building and Construction and Maintenance Services"	16-May-08	16-May-08	16500.00	=""	="BLAKE THORNTON-SMITH PTY LTD"	30-May-08 11:52 AM	

+="CN86918"	"HARDWARE AND SOFTWARE MAINTENANCE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	16-May-08	16-May-08	47924.03	=""	="COMPUTER SYSTEMS (AUSTRALIA) PTY LTD"	30-May-08 11:52 AM	

+="CN86919"	"MEMBER SUBSCRIPTIONFOR OFFICE SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software"	16-May-08	16-May-08	11343.75	=""	="XBRL AUSTRALIA LIMITED"	30-May-08 11:53 AM	

+="CN86920"	"CONTRAC/RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	44000.00	=""	="COX PURTELL"	30-May-08 11:53 AM	

+="CN86922"	"Actuarial review"	="Australian Taxation Office"	30-May-08	="Financial accounting"	27-May-08	22-Dec-08	20000.00	=""	="Australian Government Actuary"	30-May-08 12:14 PM	

+="CN86924"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-Feb-08	29-Feb-08	22000.00	=""	="Quickcomm Pty Limited"	30-May-08 12:28 PM	

+="CN86925"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	05-Feb-08	10-Feb-08	49178.69	=""	="TELSTRA CORPORATION"	30-May-08 12:28 PM	

+="CN86926"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	06-Feb-08	05-Mar-08	15352.40	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:28 PM	

+="CN86927"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	06-Feb-08	22-Feb-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:28 PM	

+="CN86928"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Personal and Domestic Services"	07-Feb-08	31-Jan-09	10850.00	=""	="ARTBANK"	30-May-08 12:28 PM	

+="CN86929"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	07-Feb-08	22-Feb-08	14697.74	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:29 PM	

+="CN86930"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical wire and cable and harness"	08-Feb-08	15-Feb-08	10697.09	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	30-May-08 12:29 PM	

+="CN86931"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	11-Feb-08	11-Feb-08	10236.60	=""	="ATD Canberra Pty Ltd"	30-May-08 12:29 PM	

+="CN86932"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	12-Feb-08	12-Feb-08	10305.90	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:29 PM	

+="CN86933"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	12-Feb-08	28-Feb-08	10659.00	=""	="Infinite Consulting Pty Ltd"	30-May-08 12:29 PM	

+="CN86934"	"Recreational Products"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	05-Apr-08	13270.00	=""	="Selby's Pty Ltd"	30-May-08 12:29 PM	

+="CN86935"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-Feb-08	20-Feb-08	292042.11	=""	="Australia Post (9239640)"	30-May-08 12:29 PM	

+="CN86936"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	13-Feb-08	13-Feb-08	19520.86	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:29 PM	

+="CN86937"	"Gym Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Feb-08	29-Feb-08	17266.25	=""	="Life Fitness Australia Pty Ltd"	30-May-08 12:30 PM	

+="CN86938"	"Translation Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	13-Feb-08	29-Feb-08	11943.90	=""	="Translating & Interpreting Svs"	30-May-08 12:30 PM	

+="CN86939"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	18-Feb-08	21-Feb-08	16592.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:30 PM	

+="CN86940"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	18-Feb-08	27-Feb-08	15191.00	=""	="Diebold Physical Security Pty Ltd"	30-May-08 12:30 PM	

+="CN86941"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	18-Feb-08	31-May-08	16547.00	=""	="Barry M Derbyshire"	30-May-08 12:30 PM	

+="CN86942"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	19-Feb-08	28-Feb-08	17424.00	=""	="Cablewise Electrical and Comms"	30-May-08 12:30 PM	

+="CN86943"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	163643.17	=""	="Australian Protective Service"	30-May-08 12:30 PM	

+="CN86944"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:30 PM	

+="CN86945"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:31 PM	

+="CN86946"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:31 PM	

+="CN86947"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Feb-08	21-Feb-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:31 PM	

+="CN86949"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	21-Feb-08	06-Mar-08	10249.80	=""	="CANBERRA FLOORCRAFT"	30-May-08 12:31 PM	

+="CN86950"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Feb-08	25-Feb-08	20376.73	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:31 PM	

+="CN86951"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	25-Feb-08	03-Mar-08	12391.23	=""	="Greythorn Pty Ltd"	30-May-08 12:31 PM	

+="CN86952"	"Accommodation"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	26-Feb-08	12-Apr-08	18197.20	=""	="Hotel Ibis Darling Harbour"	30-May-08 12:31 PM	

+="CN86953"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	28-Feb-08	12644.89	=""	="Media Monitors Australia P/L"	30-May-08 12:32 PM	

+="CN86954"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	27-Feb-08	31-Jan-09	14900.00	=""	="ARTBANK"	30-May-08 12:32 PM	

+="CN86955"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	21-Mar-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:32 PM	

+="CN86957"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	02-Mar-08	24118.45	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:32 PM	

+="CN86958"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	21-Mar-08	14850.00	=""	="Capital Valuers"	30-May-08 12:32 PM	

+="CN86959"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	02-Mar-08	75199.20	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:32 PM	

+="CN86960"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	29-Feb-08	14066.03	=""	="Power House International P/L"	30-May-08 12:33 PM	

+="CN86961"	"Importation Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	03-Mar-08	31-Mar-08	14056.63	=""	="Power House International P/L"	30-May-08 12:33 PM	

+="CN86962"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	20154.75	=""	="ZVENO PTY LTD"	30-May-08 12:33 PM	

+="CN86963"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management advisory services"	06-Mar-08	31-Mar-08	13881.10	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:33 PM	

+="CN86964"	"Telecommunication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	07-Mar-08	07-Mar-08	15823.50	=""	="TELSTRA CORPORATION"	30-May-08 12:33 PM	

+="CN86965"	"Telecommunuication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	07-Mar-08	07-Mar-08	27847.60	=""	="TELSTRA CORPORATION"	30-May-08 12:33 PM	

+="CN86966"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	07-Mar-08	07-Mar-08	204049.98	=""	="HP Financial Services"	30-May-08 12:33 PM	

+="CN86967"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	28-Mar-08	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	30-May-08 12:33 PM	

+="CN86969"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	10-Mar-08	20-Mar-08	12465.90	=""	="AUSTRALIA POST (ACC 6102084)"	30-May-08 12:34 PM	

+="CN86970"	"Publication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	12-Mar-08	12-Mar-08	11000.00	=""	="The Federation Press"	30-May-08 12:34 PM	

+="CN86971"	"Project Management Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	28-Mar-08	15840.00	=""	="Napier & Blakeley Pty Ltd"	30-May-08 12:34 PM	

+="CN86972"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Education and Training Services"	14-Mar-08	31-Mar-08	10492.89	=""	="Wordly Wisdom Writing & Consultancy"	30-May-08 12:34 PM	

+="CN86973"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Peddle Thorp and Harvey Pty Ltd"	30-May-08 12:34 PM	

+="CN86974"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	31-Mar-08	10428.00	=""	="Fulton technology"	30-May-08 12:34 PM	

+="CN86975"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	17-Mar-08	31-Mar-08	11950.16	=""	="HP Financial Services"	30-May-08 12:35 PM	

+="CN86976"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	17-Mar-08	17-Mar-08	62678.19	=""	="HP Financial Services"	30-May-08 12:35 PM	

+="CN86977"	"Hospitality Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Doors and windows and glass"	17-Mar-08	31-Mar-08	17000.00	=""	="Official Focus Pty Ltd"	30-May-08 12:35 PM	

+="CN86978"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	31-Mar-08	10966.08	=""	="TMP/Hudson Global Resources"	30-May-08 12:35 PM	

+="CN86979"	"Recruitment Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	19-Mar-08	03-Mar-09	53763.60	=""	="nga.net.pty ltd"	30-May-08 12:35 PM	

+="CN86980"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	28-Mar-08	15361.61	=""	="Media Monitors Australia P/L"	30-May-08 12:35 PM	

+="CN86981"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Mar-08	25-Mar-08	69005.13	=""	="TELSTRA CORPORATION"	30-May-08 12:35 PM	

+="CN86982"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	28-Mar-08	27500.00	=""	="CB Richard Ellis (Canberra)"	30-May-08 12:35 PM	

+="CN86983"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	26-Mar-08	12771.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:36 PM	

+="CN86984"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	26-Mar-08	12771.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:36 PM	

+="CN86985"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	02-Apr-08	78330.08	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:36 PM	

+="CN86986"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	27-Mar-08	02-Apr-08	21142.44	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:36 PM	

+="CN86987"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	27-Mar-08	27-Mar-08	10210.72	=""	="Corvu Australasia PTY Limited"	30-May-08 12:36 PM	

+="CN86988"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Mar-08	28-Mar-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:36 PM	

+="CN86989"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	163894.64	=""	="Australian Protective Service"	30-May-08 12:36 PM	

+="CN86990"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86991"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86992"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86993"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-08	10000.00	=""	="HASSELL PTY LIMITED"	30-May-08 12:37 PM	

+="CN86994"	"Lease Artworks"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	31-Mar-08	30-Sep-08	21862.50	=""	="ARTBANK"	30-May-08 12:37 PM	

+="CN86995"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	03-Apr-08	03-Apr-08	11995.69	=""	="Verossity Pty Ltd"	30-May-08 12:37 PM	

+="CN86996"	"Training"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	28-Apr-08	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	30-May-08 12:37 PM	

+="CN86997"	"Construction"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	03-Apr-08	03-Apr-08	44912.45	=""	="ISIS Projects Pty Ltd"	30-May-08 12:37 PM	

+="CN86998"	"Professional and Consultancy Services"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	03-Apr-08	28-Apr-08	40510.08	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 12:38 PM	

+="CN86999"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	03-Apr-08	11-May-08	52168.46	=""	="TELSTRA CORPORATION"	30-May-08 12:38 PM	

+="CN87000"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	03-Apr-08	13276.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:38 PM	

+="CN87001"	"Advertising"	="Department of Foreign Affairs and Trade"	30-May-08	="Marketing and distribution"	04-Apr-08	17-Apr-08	10246.79	=""	="hma Blaze Pty Limited"	30-May-08 12:38 PM	

+="CN87002"	"Telecomminication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	04-Apr-08	24743.21	=""	="TELSTRA CORPORATION"	30-May-08 12:38 PM	

+="CN87003"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	30418.00	=""	="Barry M Derbyshire"	30-May-08 12:38 PM	

+="CN87004"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	39804.00	=""	="Barry M Derbyshire"	30-May-08 12:38 PM	

+="CN87005"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	65502.00	=""	="Barry M Derbyshire"	30-May-08 12:39 PM	

+="CN87006"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	36963.00	=""	="Barry M Derbyshire"	30-May-08 12:39 PM	

+="CN87007"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	07-Apr-08	10-Apr-08	10263.77	=""	="Verossity Pty Ltd"	30-May-08 12:39 PM	

+="CN87008"	"Building Products and Fittings"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	07-Apr-08	07-Apr-08	13084.07	=""	="Dorma Automatics P/L"	30-May-08 12:39 PM	

+="CN87009"	"Health Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Healthcare Services"	09-Apr-08	30-Apr-08	23375.80	=""	="Clifford Hallam Healthcare P/L-CH2"	30-May-08 12:39 PM	

+="CN87010"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	09-Apr-08	17-Apr-08	11938.73	=""	="Verossity Pty Ltd"	30-May-08 12:39 PM	

+="CN87011"	"Functions"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	05-May-08	14153.15	=""	="Hotel Realm Pty Ltd"	30-May-08 12:39 PM	

+="CN87012"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	05-May-08	19346.25	=""	="ZVENO PTY LTD"	30-May-08 12:39 PM	

+="CN87013"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	11-Apr-08	11-Apr-08	64614.45	=""	="Sealeck Pty Ltd"	30-May-08 12:40 PM	

+="CN87014"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	14-Apr-08	05-May-08	11000.00	=""	="The Federation Press"	30-May-08 12:40 PM	

+="CN87015"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management advisory services"	14-Apr-08	14-Apr-08	24750.00	=""	="Intelligence Dynamics Pty Ltd"	30-May-08 12:40 PM	

+="CN87016"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Apr-08	24684.00	=""	="Wilton Hanford Hanover Pty Ltd"	30-May-08 12:40 PM	

+="CN87017"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	05-May-08	28505.40	=""	="SMI Fitout Pty Ltd"	30-May-08 12:40 PM	

+="CN87019"	"Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Power Generation and Distribution Machinery and Accessories"	16-Apr-08	25-Apr-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:40 PM	

+="CN87020"	"Lease Artworks"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	14410.00	=""	="ARTBANK"	30-May-08 12:40 PM	

+="CN87021"	"Lease  Artwork"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	22206.25	=""	="ARTBANK"	30-May-08 12:41 PM	

+="CN87022"	"Lease Artwork"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	22206.25	=""	="ARTBANK"	30-May-08 12:41 PM	

+="CN87024"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	16-Apr-08	16-Apr-08	11460.10	=""	="Translating & Interpreting Svs"	30-May-08 12:41 PM	

+="CN87026"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	28-Apr-08	12540.00	=""	="Napier & Blakeley Pty Ltd"	30-May-08 12:41 PM	

+="CN87027"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	17-Apr-08	11000.00	=""	="Wilton Hanford Hanover Pty Ltd"	30-May-08 12:41 PM	

+="CN87028"	"Subscription"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	29-Apr-08	11250.00	=""	="Dow Jones Reuters Business Interact"	30-May-08 12:42 PM	

+="CN87029"	"Telecommuication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Apr-08	24-Apr-08	28155.34	=""	="TELSTRA CORPORATION LIMITED (Qld)"	30-May-08 12:42 PM	

+="CN87030"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Apr-08	29-Apr-08	11075.10	=""	="Translating & Interpreting Svs"	30-May-08 12:42 PM	

+="CN87031"	"Office Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Apr-08	21-Apr-08	12727.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:42 PM	

+="CN87032"	"Office Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Apr-08	21-Apr-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:42 PM	

+="CN87033"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	22-Apr-08	12957.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:42 PM	

+="CN87034"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	23-Apr-08	23-Apr-08	20251.19	=""	="Allen Systems Group Inc"	30-May-08 12:42 PM	

+="CN87035"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	24-Apr-08	30-Apr-08	35146.83	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:42 PM	

+="CN87036"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	28-Apr-08	30-Apr-08	12683.00	=""	="Paoli Smith Pty Ltd"	30-May-08 12:43 PM	

+="CN87037"	"Office Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Apr-08	02-May-08	76408.65	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:43 PM	

+="CN87038"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	29-Apr-08	01-May-08	13184.15	=""	="Verossity Pty Ltd"	30-May-08 12:43 PM	

+="CN87039"	"Professional and Consultancy Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	25-May-08	56094.48	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 12:43 PM	

+="CN87040"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	12780.91	=""	="Media Monitors Australia P/L"	30-May-08 12:43 PM	

+="CN87041"	"Lease payments"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	30-Apr-08	16-May-08	204049.98	=""	="HP Financial Services"	30-May-08 12:43 PM	

+="CN87042"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	01-May-08	03-May-08	13381.50	=""	="TELSTRA CORPORATION"	30-May-08 12:43 PM	

+="CN87043"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	02-May-08	30-Jun-08	27909.50	=""	="Add Design & Management"	30-May-08 12:44 PM	

+="CN87044"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	02-May-08	08-May-08	14556.55	=""	="Verossity Pty Ltd"	30-May-08 12:44 PM	

+="CN87045"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87046"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87047"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87048"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	163894.64	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87049"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	06-May-08	11-May-08	16476.02	=""	="Verossity Pty Ltd"	30-May-08 12:44 PM	

+="CN87050"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	06-May-08	06-May-08	11786.78	=""	="Greythorn Pty Ltd"	30-May-08 12:44 PM	

+="CN87051"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	07-May-08	13-Nov-08	24000.00	=""	="Rozalyn Chan"	30-May-08 12:45 PM	

+="CN87052"	"Repairs and Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-May-08	22-May-08	11065.73	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:45 PM	

+="CN87053"	"Repairs and Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	22-May-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:45 PM	

+="CN87054"	"Artwork Lease"	="Department of Foreign Affairs and Trade"	30-May-08	="Personal and Domestic Services"	08-May-08	31-Jan-09	29700.00	=""	="ARTBANK"	30-May-08 12:45 PM	

+="CN87055"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	09-May-08	04-Jun-08	16500.00	=""	="ECONDATA"	30-May-08 12:45 PM	

+="CN87056"	"Hospitality Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	28-May-08	26262.50	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	30-May-08 12:45 PM	

+="CN87057"	"Subscriptions"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	12-May-08	21-May-08	17573.16	=""	="EBSCO AUSTRALIA"	30-May-08 12:45 PM	

+="CN87058"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	01-Jun-08	18585.60	=""	="TARDIS TECHNOLOGY PTY LTD"	30-May-08 12:46 PM	

+="CN87059"	"Recruitment Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	12-May-08	12-May-08	13774.65	=""	="Hays Specialist Recruitment"	30-May-08 12:46 PM	

+="CN87060"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	01-Jun-08	22582.24	=""	="TARDIS TECHNOLOGY PTY LTD"	30-May-08 12:46 PM	

+="CN87061"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	12-Jun-08	10784.10	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:46 PM	

+="CN87062"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	12-Jun-08	13744.32	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:46 PM	

+="CN87063"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	20-May-08	10303.95	=""	="AUSTRALIA POST (ACC 6102084)"	30-May-08 12:46 PM	

+="CN87064"	"Design and building services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	12821.83	=""	="Interiors Australia"	30-May-08 12:46 PM	

+="CN87065"	"Design and building services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	20154.83	=""	="Interiors Australia"	30-May-08 12:46 PM	

+="CN87066"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	14-May-08	26-May-08	131623.23	=""	="TELSTRA CORPORATION"	30-May-08 12:47 PM	

+="CN87067"	"Removal services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	11933.63	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:47 PM	

+="CN87068"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	15-May-08	29-May-08	12374.05	=""	="Translating & Interpreting Svs"	30-May-08 12:47 PM	

+="CN87069"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	15-May-08	30-May-08	13902.35	=""	="Greythorn Pty Ltd"	30-May-08 12:47 PM	

+="CN87070"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	15-May-08	15-May-08	13276.32	=""	="Greythorn Pty Ltd"	30-May-08 12:47 PM	

+="CN87071"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	15-May-08	28-May-08	13146.47	=""	="Sealeck Pty Ltd"	30-May-08 12:47 PM	

+="CN87073"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	16-May-08	16-May-08	22522.09	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:47 PM	

+="CN87074"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	16-May-08	16-May-08	13371.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:48 PM	

+="CN87076"	"legal services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	16-May-08	27-May-08	11670.56	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:48 PM	

+="CN87077"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	19-May-08	22-May-08	18148.08	=""	="Verossity Pty Ltd"	30-May-08 12:48 PM	

+="CN87078"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	19-May-08	19-May-08	156836.32	=""	="TELSTRA CORPORATION LTD"	30-May-08 12:48 PM	

+="CN87079"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-May-08	28-May-08	13436.58	=""	="Media Monitors Australia P/L"	30-May-08 12:48 PM	

+="CN87080"	"Accommodation"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	22-May-08	09-Jun-08	31910.40	=""	="Hotel Ibis Darling Harbour"	30-May-08 12:48 PM	

+="CN87081"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	22-May-08	29-May-08	17404.38	=""	="Verossity Pty Ltd"	30-May-08 12:49 PM	

+="CN87082"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Education and Training Services"	22-May-08	12-Jun-08	14100.00	=""	="Canberra Economic Consultants"	30-May-08 12:49 PM	

+="CN87083"	"Interior Design Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-May-08	31-May-08	10468.00	=""	="Add Design & Management"	30-May-08 12:49 PM	

+="CN87084"	"Venue Hire"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	22-May-08	31-May-08	112244.30	=""	="Brisbane Convention"	30-May-08 12:49 PM	

+="CN87085"	"Consultant Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Business administration services"	23-May-08	31-May-08	15000.00	=""	="Meat & Livestock Aust Ltd"	30-May-08 12:49 PM	

+="CN87086"	"Professional Fees"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	13-Feb-08	21-Feb-08	12565.60	=""	="Australian Government Solicitor"	30-May-08 12:49 PM	

+="CN87087"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	13-Feb-08	28-Jun-08	14841.20	=""	="MINTER ELLISON"	30-May-08 12:49 PM	

+="CN87088"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Woodhead International"	30-May-08 12:49 PM	

+="CN87089"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Bligh Voller Nield Pty Ltd"	30-May-08 12:50 PM	

+="CN87090"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	20-Mar-08	27-Mar-08	10310.08	=""	="MINTER ELLISON"	30-May-08 12:50 PM	

+="CN87091"	"Office Furniture"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	02-Apr-08	20785.05	=""	="Interiors Australia"	30-May-08 12:50 PM	

+="CN87092"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Mar-08	26-Mar-08	163292.49	=""	="KFPW PTY LTD (expenditure Account)"	30-May-08 12:50 PM	

+="CN87093"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Mar-08	26-Mar-08	40104.73	=""	="KFPW PTY LTD (expenditure Account)"	30-May-08 12:50 PM	

+="CN87094"	"Consultancy"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	10-Apr-08	30-Jun-08	11962.50	=""	="Rider Levett Bucknall (NSW) Pty Ltd"	30-May-08 12:50 PM	

+="CN87095"	"Consultancy"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	10-Apr-08	30-Jun-08	23613.70	=""	="Rider Levett Bucknall (NSW) Pty Ltd"	30-May-08 12:50 PM	

+="CN87096"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	24-Apr-08	30-Jun-08	14314.00	=""	="Grosvenor Management Consulting"	30-May-08 12:50 PM	

+="CN87097"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	19005.59	=""	="Daryl Jackson Pty Ltd"	30-May-08 12:51 PM	

+="CN87098"	"Office Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	01-Feb-08	29-Feb-08	23251.70	=""	="Stikki Products Pty Ltd"	30-May-08 12:51 PM	

+="CN87099"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	05-Feb-08	04-Mar-08	21450.00	=""	="Ethan Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87100"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	06-Feb-08	05-Mar-08	12408.00	=""	="Integral Consulting Services"	30-May-08 12:51 PM	

+="CN87101"	"Packaging Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Material packing and handling"	04-Feb-08	03-Mar-08	30261.00	=""	="HARCOR SECURITY SEALS"	30-May-08 12:51 PM	

+="CN87102"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	05-Mar-08	20346.15	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 12:51 PM	

+="CN87103"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	13-Feb-08	12-Mar-08	11733.70	=""	="Ethan Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87104"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Feb-08	29-Feb-08	117480.00	=""	="Ambit Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87105"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	06-Feb-08	05-Mar-08	39732.00	=""	="Integral Consulting Services"	30-May-08 12:52 PM	

+="CN87106"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	12-Feb-08	11-Mar-08	50000.01	=""	="Alamein Consulting Pty Ltd"	30-May-08 12:52 PM	

+="CN87107"	"Construction Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	18-Feb-08	17-Mar-08	45590.00	=""	="A C & R Company Group"	30-May-08 12:52 PM	

+="CN87108"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	17-Mar-08	299720.00	=""	="Secom Technical Services P/L"	30-May-08 12:52 PM	

+="CN87109"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Power Generation and Distribution Machinery and Accessories"	18-Feb-08	17-Mar-08	110944.55	=""	="Delta Building Automation Pty Ltd"	30-May-08 12:52 PM	

+="CN87110"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	18-Feb-08	29-Feb-08	10472.00	=""	="KABA Australia Pty Ltd"	30-May-08 12:52 PM	

+="CN87111"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Feb-08	17-Mar-08	16698.00	=""	="KAZ Group Pty Ltd"	30-May-08 12:52 PM	

+="CN87112"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Feb-08	17-Mar-08	23232.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:53 PM	

+="CN87113"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	20-Mar-08	50787.00	=""	="ESC Technology Pty Ltd"	30-May-08 12:53 PM	

+="CN87114"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Feb-08	24-Mar-08	28490.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:53 PM	

+="CN87115"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	27-Feb-08	26-Mar-08	25020.00	=""	="Donovan Trading P/L"	30-May-08 12:53 PM	

+="CN87116"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	19-Feb-08	18-Mar-08	17776.00	=""	="Fitzgerald Technologies"	30-May-08 12:53 PM	

+="CN87117"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	20-Feb-08	29-Feb-08	10763.50	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	30-May-08 12:53 PM	

+="CN87118"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	26-Feb-08	25-Mar-08	30800.00	=""	="Qantas Airways Ltd"	30-May-08 12:53 PM	

+="CN87119"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Feb-08	06-Mar-08	231577.50	=""	="Ethan Group Pty Ltd"	30-May-08 12:53 PM	

+="CN87120"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	27-Mar-08	14190.00	=""	="R.P.M. Solutions Pty Ltd"	30-May-08 12:54 PM	

+="CN87121"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	13-Mar-08	18395.63	=""	="RANDOM COMPUTING SERVICES"	30-May-08 12:54 PM	

+="CN87122"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	29-Feb-08	29-Feb-08	58662.12	=""	="Infront Systems"	30-May-08 12:54 PM	

+="CN87123"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	26-Feb-08	25-Mar-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 12:54 PM	

+="CN87124"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	468892.49	=""	="Ethan Group Pty Ltd"	30-May-08 12:54 PM	

+="CN87125"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	26-Feb-08	25-Mar-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 12:54 PM	

+="CN87126"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	03-Mar-08	31-Mar-08	32858.10	=""	="AFC GROUP PTY LTD"	30-May-08 12:54 PM	

+="CN87127"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	03-Mar-08	31-Mar-08	11286.00	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	30-May-08 12:55 PM	

+="CN87128"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	05-Mar-08	02-Apr-08	81947.00	=""	="Parasole Holdings Pty Ltd"	30-May-08 12:55 PM	

+="CN87129"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	08-Apr-08	81718.50	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:55 PM	

+="CN87130"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	46291.67	=""	="Dimension Data Australia Pty Ltd"	30-May-08 12:55 PM	

+="CN87131"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	479658.30	=""	="Adnet Technology Australia Pty Ltd"	30-May-08 12:55 PM	

+="CN87132"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	25-Feb-08	24-Mar-08	35651.11	=""	="Ethan Group Pty Ltd"	30-May-08 12:55 PM	

+="CN87133"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Components for information technology or broadcasting or telecommunications"	03-Mar-08	31-Mar-08	20686.24	=""	="Anritsu Pty. Ltd."	30-May-08 12:55 PM	

+="CN87134"	"Electrical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	12-Mar-08	09-Apr-08	169336.00	=""	="Chubb Electronic Security"	30-May-08 12:55 PM	

+="CN87135"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	30-Jun-08	71183.75	=""	="Greythorn Pty Ltd"	30-May-08 12:56 PM	

+="CN87136"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Mar-08	31-Mar-08	61419.60	=""	="ICON RECRUITMENT PTY LTD"	30-May-08 12:56 PM	

+="CN87137"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Measuring and observing and testing instruments"	17-Mar-08	14-Apr-08	22710.00	=""	="ITE Australia Pty Ltd"	30-May-08 12:56 PM	

+="CN87138"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Mar-08	08-Apr-08	21661.20	=""	="Ethan Group Pty Ltd"	30-May-08 12:56 PM	

+="CN87139"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Mar-08	14-Apr-08	55660.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:56 PM	

+="CN87140"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	19-Mar-08	16-Apr-08	14410.00	=""	="Ethan Group Pty Ltd"	30-May-08 12:56 PM	

+="CN87141"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	31-Mar-08	10107.24	=""	="OPTUS DIRECT CREDIT"	30-May-08 12:56 PM	

+="CN87142"	"Office Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	19-Mar-08	16-Apr-08	27000.00	=""	="CANFAB ENGINEERING"	30-May-08 12:57 PM	

+="CN87143"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	20-Mar-08	17-Apr-08	12300.00	=""	="CSM OFFICE FURNITURE SOLUTIONS"	30-May-08 12:57 PM	

+="CN87144"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical wire and cable and harness"	17-Mar-08	14-Apr-08	15568.42	=""	="AFC GROUP PTY LTD"	30-May-08 12:57 PM	

+="CN87145"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	20-Mar-08	31-Mar-08	18133.92	=""	="Infront Systems"	30-May-08 12:57 PM	

+="CN87146"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Mar-08	14-Apr-08	169037.00	=""	="Integral Consulting Services"	30-May-08 12:57 PM	

+="CN87147"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	12-Mar-08	31-Mar-08	149048.90	=""	="Ethan Group Pty Ltd"	30-May-08 12:57 PM	

+="CN87148"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	26-Mar-08	23-Apr-08	48510.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:57 PM	

+="CN87149"	"IT Hardware"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	27-Mar-08	24-Apr-08	746552.52	=""	="LEXMARK INT (AUST) P/L"	30-May-08 12:58 PM	

+="CN87151"	"Equipment Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	25-Apr-08	11104.00	=""	="Magiboard Presentations (NSW) P/L"	30-May-08 12:58 PM	

+="CN87152"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	03-Apr-08	23383.53	=""	="FUJITSU AUSTRALIA LIMITED"	30-May-08 12:58 PM	

+="CN87153"	"Furniture"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	01-Apr-08	29-Apr-08	57808.00	=""	="WORKSPACE COMMERCIAL FURNITURE"	30-May-08 12:58 PM	

+="CN87154"	"Locksmith Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	14-Apr-08	16178.25	=""	="Innovative Business Computing P/L"	30-May-08 12:58 PM	

+="CN87155"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	02-May-08	23100.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:58 PM	

+="CN87156"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	02-May-08	16940.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:59 PM	

+="CN87157"	"Training"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-Apr-08	13000.00	=""	="ANSTO"	30-May-08 12:59 PM	

+="CN87158"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Apr-08	05-May-08	290039.86	=""	="BLACK BOX NETWORK SERVICES"	30-May-08 12:59 PM	

+="CN87159"	"Building Products and Fittings"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	07-Apr-08	05-May-08	49409.37	=""	="Dorma Automatics P/L"	30-May-08 12:59 PM	

+="CN87160"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	20-Mar-08	30-Jun-08	64848.85	=""	="Greythorn Pty Ltd"	30-May-08 12:59 PM	

+="CN87161"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	03-Apr-08	17-Apr-08	134884.20	=""	="Talent International Pty Ltd"	30-May-08 12:59 PM	

+="CN87162"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	02-Apr-08	13-May-08	114714.60	=""	="CANDLE AUSTRALIA LIMITED"	30-May-08 12:59 PM	

+="CN87163"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	07-Apr-08	05-May-08	16016.00	=""	="COVERTEL"	30-May-08 12:59 PM	

+="CN87164"	"Telecommunication Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	27-Mar-08	31-Mar-08	35431.00	=""	="STEP Electronics (A Hills Company)"	30-May-08 01:00 PM	

+="CN87165"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	07-Apr-08	14-Apr-08	12978.28	=""	="API SECURITY PTY LTD"	30-May-08 01:00 PM	

+="CN87166"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	01-Apr-08	15-Apr-08	13849.37	=""	="Replicon Inc"	30-May-08 01:00 PM	

+="CN87167"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-May-08	14950.00	=""	="Waterman AHW Pty Ltd"	30-May-08 01:00 PM	

+="CN87168"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	16-Apr-08	30-Apr-08	10398.30	=""	="Ethan Group Pty Ltd"	30-May-08 01:00 PM	

+="CN87169"	"Sale and Leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	08-Apr-08	06-May-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 01:00 PM	

+="CN87170"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Apr-08	28-Apr-08	27387.80	=""	="FUJITSU AUSTRALIA LIMITED"	30-May-08 01:00 PM	

+="CN87171"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	15-Apr-08	13-May-08	30030.00	=""	="Adnet Technology Australia Pty Ltd"	30-May-08 01:01 PM	

+="CN87172"	"Sale and leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	16-Apr-08	14-May-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 01:01 PM	

+="CN87173"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	18-Apr-08	16-May-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 01:01 PM	

+="CN87174"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	15-Apr-08	30-Apr-08	10377.40	=""	="Ethan Group Pty Ltd"	30-May-08 01:01 PM	

+="CN87175"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Business administration services"	28-Apr-08	12-May-08	16500.00	=""	="RIC Teledata Pty Ltd"	30-May-08 01:01 PM	

+="CN87176"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	29-Apr-08	13-May-08	13002.00	=""	="AFC GROUP PTY LTD"	30-May-08 01:01 PM	

+="CN87177"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Apr-08	26-May-08	30433.21	=""	="Infront Systems"	30-May-08 01:01 PM	

+="CN87178"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-May-08	31-May-08	105036.24	=""	="Infront Systems"	30-May-08 01:01 PM	

+="CN87179"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-May-08	31-May-08	85642.96	=""	="Infront Systems"	30-May-08 01:02 PM	

+="CN87180"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	08-May-08	11-Oct-08	10943.16	=""	="Hewlett Packard Australia Pty Ltd"	30-May-08 01:02 PM	

+="CN87181"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-May-08	31-May-08	10010.00	=""	="Innovative Business Computing P/L"	30-May-08 01:02 PM	

+="CN87182"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-May-08	31-May-08	38808.00	=""	="Whizdom Pty Ltd"	30-May-08 01:02 PM	

+="CN87183"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	14-May-08	11-Jun-08	13351.44	=""	="Dimension Data Australia Pty Ltd"	30-May-08 01:02 PM	

+="CN87184"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	16-May-08	31-May-08	112949.10	=""	="Ethan Group Pty Ltd"	30-May-08 01:02 PM	

+="CN87185"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	12-May-08	09-Jun-08	30118.00	=""	="Ethan Group Pty Ltd"	30-May-08 01:02 PM	

+="CN87186"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-May-08	12500.00	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 01:02 PM	

+="CN87187"	"Leica MS5 Microscope and attachments"	="Department of Foreign Affairs and Trade"	30-May-08	="Manufacture of electrical goods and precision instruments"	19-May-08	16-Jun-08	11173.00	=""	="Leica Microsystems Pty Ltd"	30-May-08 01:03 PM	

+="CN87188"	"08.093 Program Management Framework.  Project and program classifications."	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jun-08	30-Jun-08	21890.00	=""	="Tanner James Management Consultants Pty Ltd"	30-May-08 01:27 PM	

+="CN87189"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	30-May-08	="Motor vehicles"	14-May-08	28-May-08	15533.45	=""	="PREMIER AUTO GROUP"	30-May-08 01:53 PM	

+="CN87191"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	30-May-08	="Motor vehicles"	21-May-08	04-Jun-08	22194.70	=""	="HAULMARK TRAILERS"	30-May-08 01:58 PM	

+="CN87194"	"Purchase of Imported IVIg"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	657670.20	=""	="Octapharma"	30-May-08 02:30 PM	

+="CN87196"	"Purchase of Imported IVIg"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	18352.80	=""	="CSL Ltd"	30-May-08 02:40 PM	

+="CN87195"	"Course fees for Investigations Training"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Education and Training Services"	23-Jan-08	29-May-08	45166.60	="07/ACMA007"	="KPS and Associates Pty Ltd"	30-May-08 02:44 PM	

+="CN87193"	"Temporary personel for Pricing and Policy Section"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Temporary personnel services"	07-Jan-08	20-May-08	13350.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	30-May-08 02:46 PM	

+="CN87197"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	253372.86	=""	="CSL Ltd"	30-May-08 02:47 PM	

+="CN86887"	"Temporary personel - Finance and Facilities Section reception"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Temporary personnel services"	04-Jan-08	31-Mar-08	32188.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	30-May-08 02:50 PM	

+="CN87198"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	151860.50	=""	="DiaMed Australia Pty Ltd"	30-May-08 02:50 PM	

+="CN87199"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	51755.00	=""	="Ortho-Clinical Diagnostics"	30-May-08 02:55 PM	

+="CN87203"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	26-Mar-08	25-Apr-08	15082.94	=""	="QANTAS American Express Business Travel"	30-May-08 03:12 PM	

+="CN87207"	"Study -current & emerging e-security threats & vulnerabilities affecting Aust home users #am"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	12-May-08	19-Jun-08	69700.00	="DCON/07/1"	="KPMG"	30-May-08 03:15 PM	

+="CN87208-A1"	"OH&S Workshop for Managers"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Education and Training Services"	21-Apr-08	01-Aug-08	11550.00	="ATM08/1012"	="Greg Seberry & Associates Pty Ltd"	30-May-08 03:15 PM	

+="CN87210"	"2 x polycom VSX7000 with camera, microphones & installation"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Office Equipment and Accessories and Supplies"	12-May-08	12-May-08	26741.58	="ATM08/1003"	="CANBERRA PROFESSIONAL EQUIPMENT"	30-May-08 03:15 PM	

+="CN87205"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	29-Jan-08	28-Feb-08	26430.73	=""	="QANTAS American Express Business Travel"	30-May-08 03:16 PM	

+="CN87212-A4"	"Specialist Economic Regulatory Advice for National Broadband Network"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	06-May-08	06-May-09	1443628.21	="DCON/07/231"	="Frontier Economics Pty Ltd"	30-May-08 03:16 PM	

+="CN87213"	"Additional door install and swipe card access Level 18 Market Street North Sydney"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Apr-08	30-Jun-08	17309.60	="DCON/05/225"	="ISIS INTERIORS"	30-May-08 03:16 PM	

+="CN87214"	"engage a faciliatator for the CSIAAG Broadcasting Sector Desktop Exercise"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	18-Jun-08	44996.00	="DCON/08/4"	="Noetic Solutions Pty Ltd"	30-May-08 03:16 PM	

+="CN87215-A1"	"SRP002/08 Stage 2 Intranet Development"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Jun-08	62319.40	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87216"	"Library - Technology services, onsite support, annual subscription & software"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	31-Mar-08	31-Mar-11	38476.00	="ATM08/1017"	="Dynix Pty Lmd"	30-May-08 03:17 PM	

+="CN87217-A2"	"Placement fee for contractor"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	24-Dec-08	105754.23	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	30-May-08 03:17 PM	

+="CN87218-A1"	"Additional (15) Licences for Exari and 12 Months Maintenance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-Jun-09	148500.00	="ATM08/1018"	="Exari Systems Pty Ltd"	30-May-08 03:17 PM	

+="CN87219-A2"	"Design & Deliver National E-security Alert Services for Home Users and SME's"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	18-Jul-08	30-Jun-11	1199484.52	="DCON/08/11"	="AUSCERT, UNIVERSITY OF QUEENSLAND"	30-May-08 03:17 PM	

+="CN87220"	"SPR004-08 SSO Small Business self-assessment tool"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	15-May-08	23-May-08	18150.00	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87221"	"SRP003-08 HR Alumni Secure Extranet"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	16-May-08	11-Jun-08	14850.00	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87222-A1"	"VP 201 - Review of Identity Management Options"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	28203.58	="DCON/03/63"	="KAZ Group"	30-May-08 03:17 PM	

+="CN87223-A1"	"VP 199 - SOE Future Direction Study"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	29748.07	="DCON/03/63"	="KAZ Group"	30-May-08 03:18 PM	

+="CN87224"	"20 x Project 2007 English OLP Licence and 20 x Project Win32-Bit Software Assurance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	14-May-08	16-May-08	17501.00	="ATM08/1022"	="ZALLCOM PTY LTD"	30-May-08 03:18 PM	

+="CN87225"	"Plant Hire 06/07 & 07/08"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Live Plant and Animal Material and Accessories and Supplies"	01-Jul-06	29-Jun-07	10008.15	="CCR/06/2011"	="LIVING SIMPLY"	30-May-08 03:18 PM	

+="CN87226"	"Rent Fyshwick"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	29-Jun-07	10321.65	="CCR/06/2019"	="PETER DEMANT & HANS EBERSTALLER"	30-May-08 03:18 PM	

+="CN87227"	"Internal Audit Consultancy"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	29-Jun-08	113300.00	="DCON/05/53"	="Protiviti Pty Ltd"	30-May-08 03:18 PM	

+="CN87228-A1"	"CAT - COMMUNITY PHONES MAINTAINANCE"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	21-May-07	30-Dec-08	273083.09	="CCR/07/2203"	="Centre for Appropriate Technology"	30-May-08 03:18 PM	

+="CN87231"	"Consultancy Serv WT-Network SLA 07/08"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	39757.20	="DCON/05/53"	="WALTER TURNBULL"	30-May-08 03:19 PM	

+="CN87232"	"Relocate / Supply / Install new cable for Burns Centre"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	03-Mar-08	30-Jun-08	20482.00	="ATM08/1041"	="DIVERSE DATA COMMUNICATIONS"	30-May-08 03:19 PM	

+="CN87234"	"Health Week - Comprehensive health assessments 5 days"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Healthcare Services"	07-Apr-08	05-May-08	15801.50	="ATM08/998"	="Pro-Fit Corporate Health Pty Ltd"	30-May-08 03:19 PM	

+="CN87235"	"Quantum Scalar 50 Library 38 slots x 2 Quantum HP LTO-3 tape drive x 4"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	11-Apr-08	12-May-08	37835.60	="ATM08/999"	="Network Brokers"	30-May-08 03:19 PM	

+="CN87236"	"Evaluation of Payroll,  Personnel Admin Services"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	12-May-08	20-Jun-08	78428.74	="DCON/05/53"	="KPMG"	30-May-08 03:19 PM	

+="CN87237-A1"	"Renewal for Mailgate Maintenance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	13-Jun-08	04-Sep-09	16401.00	="ATM08/1000"	="OPEN SYSTEMS AUSTRALIA P/L"	30-May-08 03:19 PM	

+="CN87238"	"VMware ESX 3.5 - Platinum 1 Year Licence & Support"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	02-May-08	02-Jun-08	60701.96	="ATM08/1001"	="QIRX"	30-May-08 03:19 PM	

+="CN87239"	"BakBone Support and Maintenance: 1 x Production & 1 x Development"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	14-Apr-08	14-May-08	16776.01	="ATM08/1002"	="Tantia Pty Tld"	30-May-08 03:20 PM	

+="CN87240-A1"	"Passthrough Expenses - Feb 2008 Backup Licences"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	17061.00	="DCON/03/63"	="KAZ Group"	30-May-08 03:20 PM	

+="CN87241-A1"	"VP 202: Reverse Proxy: Lead Infrastructure Technical Specialist"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	13932.22	="DCON/03/63"	="KAZ Group"	30-May-08 03:20 PM	

+="CN87242"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	29-Feb-08	25-Mar-08	47291.09	=""	="QANTAS American Express Business Travel"	30-May-08 03:22 PM	

+="CN87246"	"Provision of Legal Fees"	="National Blood Authority"	30-May-08	="Legal services"	27-Feb-08	31-Mar-08	14102.00	=""	="DLA Phillips Fox"	30-May-08 03:47 PM	

+="CN87247"	"Provison of selection and recruitment services"	="National Blood Authority"	30-May-08	="Personnel recruitment"	20-Mar-08	23-May-08	18244.60	=""	="Ford Kelly Executive Connection Pty Ltd"	30-May-08 03:52 PM	

+="CN87248"	"Provision of selection and recruitment"	="National Blood Authority"	30-May-08	="Personnel recruitment"	20-Mar-08	23-May-08	11455.40	=""	="AdCorp"	30-May-08 04:02 PM	

+="CN87249"	" The procurement is for the supply of Defined Blood Products "	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	56245.20	=""	="CSL Ltd"	30-May-08 04:05 PM	

+="CN87252"	"Provision for Professional Workshop Services"	="Department of Immigration and Citizenship"	30-May-08	="Workshops"	10-Apr-08	14-Jul-08	63050.00	=""	="Value Creation Group"	30-May-08 04:21 PM 

--- a/admin/partialdata/29Aug2007to02Sep2007valto.xls
+++ /dev/null
@@ -1,4 +1,1 @@
-Advanced Search
 
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-There are no results that match your selection. 

--- /dev/null
+++ b/admin/partialdata/29Jan2008to02Feb2008valto.xls
@@ -1,1 +1,667 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN56726"	"Lanside vehicle parking - Brisbane"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	155993.20	="TRS06/423"	="BRISBANE AIRPORT CORPORATION"	29-Jan-08 08:44 AM	

+="CN56727"	"Lanside vehicle parking - Melbourne"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	23-Oct-07	30-Jun-08	157831.70	="TRS06/419"	="Australia Pacific Airports"	29-Jan-08 08:44 AM	

+="CN56728"	"Landside vehicle parking - Sydney"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	390094.10	="TRS06/422"	="SYDNEY AIRPORT CORPORATION"	29-Jan-08 08:44 AM	

+="CN56729"	"Landside vehicle parking - Coolangatta"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	17129.42	="TRS06/421"	="Gold Coast Airport Limited"	29-Jan-08 08:44 AM	

+="CN56730"	"Landside vehicle parking - Perth"	="Department of Transport and Regional Services"	29-Jan-08	="Transport operations"	26-Jul-07	30-Jun-08	90061.40	="TRS06/425"	="Westralia Airports Corp P/L"	29-Jan-08 08:44 AM	

+="CN56731"	"Legal Services Expenditure 6887"	="Department of Transport and Regional Services"	29-Jan-08	="Legal services"	22-Jan-08	30-Jun-09	15444.00	="TRS06/175"	="PHILLIPS FOX"	29-Jan-08 08:45 AM	

+="CN56732"	"Legal Services Expenditure 6550 Legal Services Expenditure"	="Department of Transport and Regional Services"	29-Jan-08	="Legal services"	11-Aug-06	30-Jun-08	11349.80	="TRS06/175"	="Clayton Utz Canberra"	29-Jan-08 08:45 AM	

+="CN56733"	"Contractor for peak workloads"	="Department of Transport and Regional Services"	29-Jan-08	="Community and social services"	25-Jan-08	25-Apr-08	34570.20	="TRS05/251"	="FIRSTWATER PTY LTD"	29-Jan-08 08:45 AM	

+="CN56734"	"Presentation Skills for department staff"	="Department of Transport and Regional Services"	29-Jan-08	="Specialised educational services"	01-Jan-08	30-Jun-08	11000.00	="APS COMMISSION 2005/014"	="ETHOS CRS CONSULTING PTY LTD"	29-Jan-08 08:45 AM	

+="CN56735"	"Ethical and values training for staff"	="Department of Transport and Regional Services"	29-Jan-08	="Specialised educational services"	01-Jan-08	30-Jun-08	11000.00	="APS COMMISSION 2005/014"	="INTERACTION CONSULTING GROUP PTY LI"	29-Jan-08 08:45 AM	

+="CN56736"	"Relocations costs for 2008 graduate programme"	="Department of Transport and Regional Services"	29-Jan-08	="Human resources services"	07-Jan-08	07-Jan-09	139999.99	="WOT08/0005"	="TOLL TRANSITIONS"	29-Jan-08 08:45 AM	

+="CN56737"	"motor vehicle spare parts"	="Department of Defence"	29-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Jan-08	27-Feb-08	15305.00	=""	="LANDROVER"	29-Jan-08 09:03 AM	

+="CN56738"	"Senior Medical Adviser"	="Department of Veterans' Affairs"	29-Jan-08	="Healthcare Services"	07-Nov-05	03-Mar-08	100000.00	=""	="Odcopro Unit Trust"	29-Jan-08 09:10 AM	

+="CN56739"	"Project Management"	="Department of Veterans' Affairs"	29-Jan-08	="Management advisory services"	20-Dec-07	30-Jun-08	156000.00	=""	="Connell Wagner Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56740"	"VAN Community Adviser services (Tweed Heads)  29 hours/week"	="Department of Veterans' Affairs"	29-Jan-08	="Information services"	01-Sep-05	30-Jun-09	125000.00	=""	="Entity Solutions Services Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56741"	"VAN Community Adviser services - Townsville  29 hours/week"	="Department of Veterans' Affairs"	29-Jan-08	="Information services"	01-Sep-05	30-Jun-09	125000.00	=""	="Entity Solutions Services Pty Ltd"	29-Jan-08 09:10 AM	

+="CN56742"	"Provision of Tender Preparation Services."	="Department of Veterans' Affairs"	29-Jan-08	="Business administration services"	28-Nov-07	29-Feb-08	22687.00	=""	="Perocin Pty Ltd (t/a Lange Consulting & Software)"	29-Jan-08 09:10 AM	

+="CN56743"	"Develop a Whole-of-Veterans Communications Strategy"	="Department of Veterans' Affairs"	29-Jan-08	="Marketing and distribution"	02-May-07	01-Dec-07	76000.00	=""	="Morris Walker Pty Limited"	29-Jan-08 09:10 AM	

+="CN56744-A1"	"Market Research Services to measure Client Satisfaction"	="Department of Veterans' Affairs"	29-Jan-08	="Statistics"	04-Sep-07	30-Aug-10	308000.00	=""	="Ipsos Public Affairs Pty Ltd"	29-Jan-08 09:11 AM	

+="CN56745"	"Provision of "Community Advisor" duties for VAN Warrnambool."	="Department of Veterans' Affairs"	29-Jan-08	="Business administration services"	01-Oct-07	30-Sep-09	107078.00	=""	="Keith McKenzie Pty Ltd"	29-Jan-08 09:11 AM	

+="CN56753-A4"	"Secretariat and liaison services to the AQIS / Industry Cargo Consultative Committee (AICCC)."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Jan-08	31-Jan-11	1422640.00	=""	="Customs Brokers and Forwarders Council of Australia Inc"	29-Jan-08 10:24 AM	

+="CN56754"	"Temporary contract services"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	04-Feb-08	30-Jun-08	22000.00	=""	="Careers Unlimited"	29-Jan-08 10:24 AM	

+="CN56755"	"Provide input into AusAid 'Water governance in China' project"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	26-Nov-07	31-Dec-07	50000.00	=""	="Scott Rozelle"	29-Jan-08 10:24 AM	

+="CN56756"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:24 AM	

+="CN56757"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:24 AM	

+="CN56758"	"2008 Graduate Program residential"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Passenger transport"	10-Feb-08	20-Feb-08	38521.00	=""	="Thredbo Alpine Hotel"	29-Jan-08 10:24 AM	

+="CN56759"	"Equine Influenza Radio Campaign"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Marketing and distribution"	19-Dec-07	05-Jan-08	498847.80	=""	="HMA Blaze"	29-Jan-08 10:24 AM	

+="CN56760"	"review of Revised draft Chicken IRA Report and draft report to ESG"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	20-Dec-07	29-Feb-08	19800.00	=""	="Minter Ellison"	29-Jan-08 10:24 AM	

+="CN56761"	"Maintenance and Support for MySource Matrix CMS"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	09-Jan-08	08-Jan-09	16500.00	=""	="Squiz Pty Ltd"	29-Jan-08 10:25 AM	

+="CN56762"	"Development of AQUAVETPLAN Disease Strategy Manual for Abalone Viral Ganglioneuritis"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	22-Jan-08	30-May-08	38487.00	=""	="Panaquatic Health Solutions Pty Ltd"	29-Jan-08 10:25 AM	

+="CN56763"	"Funds for temp services B Anderson"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	01-Dec-07	30-Jun-08	15000.00	=""	="Hays Specialist Recruitment"	29-Jan-08 10:25 AM	

+="CN56764"	"Quarterly Rental/Service payments for DAFF Copy Centre Copiers"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Tools and General Machinery"	01-Oct-07	31-Dec-07	16430.86	=""	="Sharp Direct"	29-Jan-08 10:25 AM	

+="CN56765"	"Development of a diagnostic testing protocol for sudden oak death agent in nursery stock"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	14-Jan-08	30-Mar-08	41500.00	=""	="Cooperative Research Centre for National Plant Biosecurity"	29-Jan-08 10:25 AM	

+="CN56766"	"Temporary Contractor at ASO 5 level (B2 Level 5)"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	14-Jan-08	30-Jun-08	48400.00	=""	="Careers Unlimited"	29-Jan-08 10:25 AM	

+="CN56767"	"Assist with RFT drafting"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	24-Jan-08	24-Feb-08	22000.00	=""	="RPV Consultants"	29-Jan-08 10:25 AM	

+="CN56768"	"ABARE Registrations at the 2008 AARES conference."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Education and Training Services"	21-Jan-08	29-Feb-08	16140.00	=""	="All Occasions Group - AARES"	29-Jan-08 10:25 AM	

+="CN56769-A1"	"Provide Convenor for Band2 L5 bulk recruitment ISAC selection process"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Education and Training Services"	13-Sep-07	30-Nov-07	52864.00	=""	="Australian Public Service Commission"	29-Jan-08 10:25 AM	

+="CN56770"	"Health Futures programme"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Insurance and retirement services"	16-Jan-08	31-Mar-08	15000.00	=""	="Health Futures Pty Ltd"	29-Jan-08 10:26 AM	

+="CN56772"	"AARES conference"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	16-Jan-08	29-Feb-08	11000.00	=""	="All Occasions Management"	29-Jan-08 10:26 AM	

+="CN56773-A1"	"Renewal of Software Licence fees for period 1 January to 31 December 2008"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	01-Jan-08	31-Dec-08	81785.00	=""	="Space-Time Research Pty Ltd"	29-Jan-08 10:26 AM	

+="CN56774"	"Toners for BA machines Dec - Jan 08"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Jan-08	12359.05	=""	="Toner Express"	29-Jan-08 10:26 AM	

+="CN56775"	"Urgent Legal Advise sought relating to a pressing Equine Influenza issue."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	18-Jan-08	18-Jan-08	11500.00	=""	="Australian Government Solicitor"	29-Jan-08 10:26 AM	

+="CN56776"	"Conference calls July 07 and Oct 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Jul-07	31-Oct-07	27955.40	=""	="Genesys Conferencing"	29-Jan-08 10:26 AM	

+="CN56777"	"Private Voice Network access 1/7/07 to 14/1/08"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Jul-07	14-Jan-08	59573.80	=""	="Commander Australia Ltd"	29-Jan-08 10:26 AM	

+="CN56778"	"PABX call costs for Dec 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	01-Dec-07	31-Dec-07	15251.25	=""	="AAPT Telecommunications"	29-Jan-08 10:27 AM	

+="CN56779-A4"	"Provision of storage and destruction of inactive Departmental records"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Information services"	20-Dec-07	20-Dec-13	1105000.00	="DAFF109/07"	="Grace Records management Australia Pty Ltd"	29-Jan-08 10:27 AM	

+="CN56780"	"Provision Of Software Licence Fees and Maintenance, 12 months."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	19-Feb-08	18-Feb-09	19492.00	=""	="ESRI AUSTRALIA PTY LTD"	29-Jan-08 10:27 AM	

+="CN56781"	"Project management services for the Sustainable Industry Initative - Industry Forum"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	12-Dec-07	30-May-08	68497.00	=""	="Porter Novelli SA Pty Ltd"	29-Jan-08 10:27 AM	

+="CN56782"	"Contract Staff-John Pannemann"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	01-Dec-07	31-Jan-08	12221.30	=""	="The Public Affairs Recruitment Company"	29-Jan-08 10:27 AM	

+="CN56783-A1"	"Provision of legal services"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Legal services"	21-Jan-08	30-Jun-10	121000.00	=""	="Australian Government Solicitor"	29-Jan-08 10:27 AM	

+="CN56784"	"Data capture and validation activities."	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Sep-07	30-Jun-08	41250.00	=""	="University of Adelaide"	29-Jan-08 10:27 AM	

+="CN56785"	"Provision of audio visual equipment and technical support for the 16th Session of the Codex Committee on Food Import and Export Inspection and Certification Systems"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management and Business Professionals and Administrative Services"	25-Nov-07	30-Nov-07	12489.51	=""	="Staging Connections"	29-Jan-08 10:27 AM	

+="CN56786"	"Call costs for 18 Mc and 7 LC 15/11/07 - 14/12/07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Telecommunications media services"	15-Nov-07	14-Dec-07	14542.44	=""	="AAPT Ltd"	29-Jan-08 10:28 AM	

+="CN56787"	"Technical advice on River Murray Corridor"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Management advisory services"	01-Nov-07	30-Jun-08	18877.27	=""	="Resource and Environment Management Pty Ltd"	29-Jan-08 10:28 AM	

+="CN56788"	"PABX maintenance and on-site Tech for Dec 07"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Computer services"	01-Dec-07	31-Dec-07	18642.88	=""	="Telstra Business Systems"	29-Jan-08 10:28 AM	

+="CN56789-A1"	"IT consultant - Sandy Hayman"	="Department of Agriculture Fisheries and Forestry"	29-Jan-08	="Human resources services"	23-Jan-08	30-Jun-08	33000.00	=""	="Pegasus IT Consulting"	29-Jan-08 10:28 AM	

+="CN56790-A1"	"07/2275 - Management Consultant - 1599-1942 - C & B Services Panel 06/1599 (CPO018189 & CPO018396)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	01-Sep-07	31-Dec-07	29488.00	="06/1599"	="Grosvenor Management Consulting"	29-Jan-08 10:39 AM	

+="CN56791"	" NSN 2840/66-110-6346  REPAIR/OVERHAUL OF PARTS KIT, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	05-Dec-07	04-Mar-08	34751.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 11:19 AM	

+="CN56792"	" NSN 2840/66-110-6346  REPAIR/OVERHAUL OF PARTS KIT, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	05-Dec-07	04-Mar-08	34751.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 11:22 AM	

+="CN56793"	" NSN 1680/66-102-2026  REPAIR/OVERHAUL OF AMPLIFIER, COMPUTER  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	10-May-07	01-Dec-07	14332.00	=""	="John Holland Aviation Services"	29-Jan-08 11:28 AM	

+="CN56794"	" Accommodation and meeting facilities "	="Australian Electoral Commission"	29-Jan-08	="Hotels and lodging and meeting facilities"	05-Feb-08	06-Feb-08	11500.50	=""	="Vines Resort and Country Club"	29-Jan-08 11:30 AM	

+="CN56795"	"07/2360 - IT Contractor - 0717-0866 - ICT Panel 05/0717 (CPE004390) "	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	03-Jan-08	02-Jan-09	312576.00	="05/0717"	="Clicks Recruit Pty Ltd"	29-Jan-08 11:34 AM	

+="CN56796"	"Election-related Air Charter"	="Australian Electoral Commission"	29-Jan-08	="Chartered aeroplane travel"	18-Sep-07	19-Jan-08	47000.00	="S07/08/102"	="Goldfields Air Services"	29-Jan-08 11:40 AM	

+="CN56798"	"06/1430 - IT Contractor - 0717-0892 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	156000.00	="05/0717"	="Peoplebank Australia Pty Ltd"	29-Jan-08 12:06 PM	

+="CN56799-A1"	"07/1926 - Security Analyst - 0717-0877 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	02-Jan-08	30-Jun-08	147800.00	="05/0717"	="Greythorn Pty Ltd"	29-Jan-08 12:11 PM	

+="CN56800-A1"	"Cheltenham construction management works 1st floor"	="Centrelink"	29-Jan-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	08-Feb-08	16-Feb-08	14058.00	=""	="Bronts Commercial Interiors Pty Ltd"	29-Jan-08 12:23 PM	

+="CN56806"	" NSN 2840/66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	21-Jan-08	21-Mar-08	20119.00	=""	="Qantas Defence Services Pty Ltd"	29-Jan-08 12:46 PM	

+="CN56807"	" NSN 1560/01-446-1142  PURCHASE OF CARRIER; FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 12:55 PM	

+="CN56808"	" NSN 1560/01-446-1141  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 12:59 PM	

+="CN56810"	" NSN 1560/01-446-1139  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 01:02 PM	

+="CN56811"	" NSN 1560/01-446-1140  PURCHASE OF CARRIER, FADEC  EX GST "	="Defence Materiel Organisation"	29-Jan-08	="Military transport aircraft"	18-Dec-07	16-Apr-08	11424.00	=""	="Milspec Services Pty Ltd"	29-Jan-08 01:09 PM	

+="CN56812"	"Annual support and Maintenanace fee. Technology One Business inteligence, Financials, Supply chain."	="National Native Title Tribunal"	29-Jan-08	="Temporary information technology systems or database administrators"	18-Feb-08	17-Feb-09	26577.41	=""	="Technology One Ltd"	29-Jan-08 01:29 PM	

+="CN56813"	"07/2290 - Senior Project Manager - 0717-0881 - ICT Panel - (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Feb-08	31-Jan-09	211000.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 01:37 PM	

+="CN56814-A2"	"07/2030 - Business Analyst - 0717-0898 - ICT Panel - (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	14-Jan-08	30-Jun-09	292000.00	="05/0717"	="Tarakan Consulting Pty Ltd"	29-Jan-08 01:41 PM	

+="CN56815-A1"	" 07/2443 - Assessment of Training Services - 1599-1997 - Consultancy and Business Service Panel (06/1599) (CPE004412-1) "	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	07-Jan-08	30-Mar-08	75240.00	="06/1599"	="Yellow Edge Pty Ltd"	29-Jan-08 01:45 PM	

+="CN56816-A1"	"07/2284 - Accommodation Consultancy Services - 0770-1591 - Property Panel Victoria - (05/0770) - (CPO016451)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Project management"	05-Nov-07	25-Jan-08	24457.40	="05/0770"	="GHD Pty Ltd"	29-Jan-08 01:52 PM	

+="CN56817"	"07/2316 - Project Management Services - 1599-1954 - C&B Panel (06/1599)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	08-Oct-07	30-Jun-08	199584.00	="06/1599"	="Walter Turnball"	29-Jan-08 01:56 PM	

+="CN56818-A1"	"07/2293 - Project Management Services - 1599-1954 - C&B Panel (06/1599)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	01-Oct-07	30-Jun-08	293040.00	="06/1599"	="Walter Turnball"	29-Jan-08 02:07 PM	

+="CN56821"	"Jack Leveling Support"	="Defence Materiel Organisation"	29-Jan-08	="Workshop machinery and equipment and supplies"	25-Jan-08	14-Apr-08	16500.00	=""	="Varley Group"	29-Jan-08 02:08 PM	

+="CN56820"	"Aviation Spares, overhaul of FCU S/N A117B"	="Defence Materiel Organisation"	29-Jan-08	="Military rotary wing aircraft"	05-Dec-07	31-Mar-08	42742.70	=""	="Turbomeca A/Asia Pty Ltd"	29-Jan-08 02:08 PM	

+="CN56822"	"07/2013 - IT Contractor - 0717-0882 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	33000.00	="05/0717"	="Innovative Business Computing Pty Ltd"	29-Jan-08 02:10 PM	

+="CN56823"	"Purchase HP Designjet Printer"	="National Native Title Tribunal"	29-Jan-08	="Laser printers"	20-Dec-07	20-Dec-07	11358.07	=""	="Corporate Express"	29-Jan-08 02:11 PM	

+="CN56825-A1"	"Sirsi Software Maintenance"	="Federal Court of Australia"	29-Jan-08	="Library software"	01-Jan-08	31-Dec-08	39964.72	=""	="SirsiDynix"	29-Jan-08 02:13 PM	

+="CN56826"	"07/2023 - IT Contractor - 0717-0875 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	275000.00	="05/0717"	="Frontier Group Australia Pty Ltd"	29-Jan-08 02:15 PM	

+="CN56828"	"07/2176 - Recruitment Services - 1063-2076 - Recruitment Services Panel 05/1063"	="Australian Customs and Border Protection Service"	29-Jan-08	="Recruitment services"	01-Aug-07	30-Jun-08	461790.00	="07/2176"	="DFP Recruitment Services"	29-Jan-08 02:24 PM	

+="CN56830-A1"	"07/2026 - IT Contractor - 0717-0881 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	01-Jul-07	30-Jun-08	195360.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 02:29 PM	

+="CN56831-A1"	"07/2502 - System Analyst - 0717-0881 - ICT Panel (05/0717)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Temporary personnel services"	10-Jan-08	30-Jun-09	385000.00	="05/0717"	="Inforail Pty Ltd"	29-Jan-08 02:32 PM	

+="CN56829"	"Nationa Native Title Tribunal Annual Report - Printing 06/07"	="National Native Title Tribunal"	29-Jan-08	="Publication printing"	16-Oct-07	16-Oct-07	15950.00	=""	="LAMB Print"	29-Jan-08 02:33 PM	

+="CN56835"	"Essential Presenting Services"	="National Native Title Tribunal"	29-Jan-08	="Video and combination video and audio presentation equipment and hardware and controllers"	22-Nov-07	23-Nov-07	15158.00	=""	="Total Inter Action"	29-Jan-08 02:39 PM	

+="CN56834"	"07/1874 - Training Services  - 1523-1816 - Leading People at the Frontline Panel 06/1523 (CPO012363)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	21-May-07	25-May-07	10224.05	="06/1523"	="McMillan Staff Development"	29-Jan-08 02:42 PM	

+="CN56836"	"Helmet Welders Auto Darkening Double Shell W/Sidevents Silver/Black UV/IR Protection"	="Defence Materiel Organisation"	29-Jan-08	="Face and head protection"	25-Jan-08	24-Feb-08	28008.75	=""	="Express Industrial Supplies"	29-Jan-08 02:50 PM	

+="CN56837"	"07/1892 - Training Services - 1523-1815 - Leading People at the Frontline Panel 06/1523 (CPO012785)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	21-May-07	25-May-07	10175.00	="06/1523"	="Humanagement"	29-Jan-08 02:52 PM	

+="CN56838"	"07/1915 - Training Services - 1523-1815 - Leading People at the Frontline Panel 06/1523 (CPO013184)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	18-Jun-07	22-Jun-07	12291.39	="06/1523"	="Humanagement"	29-Jan-08 02:56 PM	

+="CN56839"	"Cannon Multifunction Photocopier"	="National Native Title Tribunal"	29-Jan-08	="Photocopiers"	14-Nov-07	14-Nov-07	16115.00	=""	="Cannon Australia Pty Ltd"	29-Jan-08 02:58 PM	

+="CN56840"	"2007/08 Workers Compensation Premium"	="National Native Title Tribunal"	29-Jan-08	="Financial and Insurance Services"	01-Jul-07	30-Jun-08	176223.00	=""	="Comcare Australia"	29-Jan-08 03:10 PM	

+="CN56841"	"CPO012786 - Training Services - 1523-1819 - Leading People at the Frontline Panel 06/1523 (CPO012786)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	14-May-07	18-May-07	13673.00	="06/1523"	="Vivien Twyford Consulting"	29-Jan-08 03:13 PM	

+="CN56843-A1"	"30 Minute Broadvast Production to recognise the anniversary of 15 years of National Native Title in Australia"	="National Native Title Tribunal"	29-Jan-08	="Motion pictures on digital video disk DVD"	29-Oct-07	02-Jan-08	65415.90	=""	="Bearcage Productions"	29-Jan-08 03:20 PM	

+="CN56845"	"07/1873 - Training Services - 1523-1818 - Leading People at the Frontline Panel - 06/1523 (CPO012788)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	14-May-07	18-May-07	13489.39	="06/1523"	="OZTrain"	29-Jan-08 03:22 PM	

+="CN56846"	"07/2410 - Training Services - 1523-1817 - Leading People at the Frontline Panel 06/1523 (CPO017846)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	23-Jun-08	22-Sep-08	16940.00	="06/1523"	="Major Training Services Pty Ltd"	29-Jan-08 03:26 PM	

+="CN56847"	"07/2431 - Training Services - 1523-1813 - Leading People at the Frontline Panel - 06/1523 (CPO017843)"	="Australian Customs and Border Protection Service"	29-Jan-08	="Specialised educational services"	31-Mar-08	30-Jun-08	19380.00	="06/1523"	="Bayley and Associates Pty Ltd"	29-Jan-08 03:30 PM	

+="CN56849"	"Geospatial software and Maintenance 07/08"	="National Native Title Tribunal"	29-Jan-08	="Software"	10-Aug-07	31-Dec-08	22000.00	=""	="DMS"	29-Jan-08 03:37 PM	

+="CN56851-A1"	"Map Info Professional V9 and Maintenance 07/08"	="National Native Title Tribunal"	29-Jan-08	="Integrated maintenance information systems"	19-Jul-07	19-Oct-08	47398.45	=""	="DMS"	29-Jan-08 03:45 PM	

+="CN56850-A3"	"07/2255 - Risk Management Services - 0299-1002 - IT Business Advisory Panel 04/0299"	="Australian Customs and Border Protection Service"	29-Jan-08	="Business and corporate management consultation services"	31-Aug-07	30-Jun-08	140000.00	="04/0299"	="Broadleaf Capital International Pty Ltd"	29-Jan-08 03:49 PM	

+="CN56853"	"Prepayment of Rent and Outgoings for 07/08. MOU 1 Victoria Avenue Perth. Principal Registry"	="National Native Title Tribunal"	29-Jan-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-08	1777288.00	=""	="United Group Services Pty Ltd"	29-Jan-08 03:55 PM	

+="CN56855"	"Initial Licensing fee - Geospatial Geodata"	="National Native Title Tribunal"	29-Jan-08	="Proprietary or licensed systems maintenance or support"	11-Sep-07	11-Sep-07	17222.62	=""	="North Territory Government"	29-Jan-08 04:02 PM	

+="CN56857"	"Butts Direct Online Services and Hard copy Publication Supply 2007/08"	="National Native Title Tribunal"	29-Jan-08	="Printed publications"	01-Sep-07	31-Aug-08	57214.38	=""	="LexisNexis"	29-Jan-08 04:11 PM	

+="CN56858-A1"	"Various Qantas Airfares - Centerlink Main contract Holder"	="National Native Title Tribunal"	29-Jan-08	="Commercial aeroplane travel"	01-Jul-07	29-Jan-08	567783.94	=""	="Qantas"	29-Jan-08 04:19 PM	

+="CN56860"	"Provision of Visual Basic Programming services 07/08"	="National Native Title Tribunal"	29-Jan-08	="Programming for Visual Basic"	01-Jul-07	29-Jan-08	74279.70	=""	="Dialog Information Technology"	29-Jan-08 04:28 PM	

+="CN56861-A1"	"Provision of Recruitment and Selection Services"	="National Native Title Tribunal"	29-Jan-08	="Recruitment services"	01-Jul-07	26-Jun-08	82058.89	=""	="Hudson Global Resources"	29-Jan-08 04:35 PM	

+="CN56862"	"Software update License and Support 07/08"	="National Native Title Tribunal"	29-Jan-08	="Business function specific software"	15-Jan-08	14-Jan-09	11050.68	=""	="Oracle"	29-Jan-08 04:42 PM	

+="CN56865"	"BATTERY NONRECHARGEABLE: LITHIUM SULPHUR DIOXIDE, 12V"	="Defence Materiel Organisation"	30-Jan-08	="Lithium batteries"	25-Jan-08	16-May-08	74800.00	=""	="SAFT BATTERIES PTY LTD"	30-Jan-08 08:05 AM	

+="CN56867"	"Motor Vehicle Parts"	="Department of Defence"	30-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Jan-08	28-Feb-08	11906.97	=""	="Volvo Commerical Vehicles"	30-Jan-08 09:29 AM	

+="CN56868"	"Security Services"	="Australian Electoral Commission"	30-Jan-08	="Security guard services"	03-Jan-08	03-Feb-08	10059.61	=""	="SNP Security"	30-Jan-08 09:59 AM	

+="CN56869-A1"	"AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-Jan-08	="Aircraft"	30-Jan-08	04-Jan-09	66675.31	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-Jan-08 10:33 AM	

+="CN56870"	"AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-Jan-08	="Aircraft"	30-Jan-08	21-Sep-08	22035.86	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-Jan-08 10:37 AM	

+="CN56871"	"AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-Jan-08	="Aircraft"	30-Jan-08	20-Nov-08	61634.89	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-Jan-08 10:42 AM	

+="CN56872"	"Melbourne Registry Lease 3 years"	="National Native Title Tribunal"	30-Jan-08	="Lease and rental of property or building"	01-Aug-07	31-Jul-10	380696.30	=""	="Mingco Pty Ltd"	30-Jan-08 10:45 AM	

+="CN56873"	"AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-Jan-08	="Aircraft"	29-Jan-08	18-Jan-09	17085.42	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-Jan-08 10:46 AM	

+="CN56874"	"Motor vehicle Parts."	="Department of Defence"	30-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Jan-08	28-Feb-08	14334.86	=""	="Mercedes Benz Aust. Pacific"	30-Jan-08 10:58 AM	

+="CN56875"	"Motor Vehicle Parts."	="Department of Defence"	30-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	29-Jan-08	28-Feb-08	27007.78	=""	="Mercedes Benz Aust. Pacific"	30-Jan-08 11:03 AM	

+="CN56876-A1"	"Sydney Registry Lease 5 Years."	="National Native Title Tribunal"	30-Jan-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	1827686.00	=""	="Kingsmeade Pty Ltd & Pamiers Pty Ltd"	30-Jan-08 11:04 AM	

+="CN56877"	"REVISIONS TO DVDS"	="Australian Taxation Office"	30-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	17-Jan-08	23-Jan-08	17831.00	=""	="GREAT SOUTHERN COMMUNICATIONS"	30-Jan-08 11:14 AM	

+="CN56878"	"INVESTIGATION AND REPORT PREPARATION"	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	23-Jan-08	19596.34	=""	="LKA GROUP"	30-Jan-08 11:15 AM	

+="CN56879"	"DOCUMENT VERIFICATION"	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	25-Jan-08	13530.00	=""	="SCIENTIFIC DOCUMENT SERVICES P/L"	30-Jan-08 11:15 AM	

+="CN56880"	"SEARCHES"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	16-Jan-08	23-Jan-08	27396.45	=""	="RP DATA LTD"	30-Jan-08 11:16 AM	

+="CN56881"	"GRACE INFO STORAGE"	="Australian Taxation Office"	30-Jan-08	="Transportation and Storage and Mail Services"	02-Jan-08	30-Jan-08	26634.45	=""	="GRACE INFORMATION MANAGEMENT"	30-Jan-08 11:16 AM	

+="CN56882"	"IT MTCE CONTRACT TECH SUPPORT"	="Australian Taxation Office"	30-Jan-08	="Information Technology Broadcasting and Telecommunications"	22-Jan-08	30-Jan-08	27500.00	=""	="Lightsource Technologies Aust P/L"	30-Jan-08 11:16 AM	

+="CN56883"	"ATO Custoimised Windows 2003 Server training 9 Attendees"	="Australian Taxation Office"	30-Jan-08	="Education and Training Services"	21-Jan-08	08-Feb-08	26910.00	=""	="EXCOM EDUCATION"	30-Jan-08 11:17 AM	

+="CN56884"	"Permanent Placement Fees"	="Australian Taxation Office"	30-Jan-08	="Public Utilities and Public Sector Related Services"	21-Jan-08	30-Jun-08	12000.00	=""	="Hays Personnel Services"	30-Jan-08 11:17 AM	

+="CN56885"	"Strategic remuneration and benefits advice"	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	30-Jun-08	10000.00	=""	="REALISE PERFORMANCE PTY LTD"	30-Jan-08 11:17 AM	

+="CN56886"	"IT Contractor"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	29-Jan-08	03-Jun-08	93500.00	=""	="BUTLIN & LLOYD PTY LTD"	30-Jan-08 11:17 AM	

+="CN56887"	"IT Contractor"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	06-Dec-07	29-Jan-08	163472.87	=""	="DIVERSITI PTY LTD"	30-Jan-08 11:18 AM	

+="CN56888"	"IT Hardware"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	05-Nov-07	30-Nov-07	18768.20	=""	="NEC AUSTRALIA PTY LTD"	30-Jan-08 11:18 AM	

+="CN56889"	"Teams & L'Ship: a Program for Managers 4 attendees"	="Australian Taxation Office"	30-Jan-08	="Education and Training Services"	04-Jan-08	22-Feb-08	11480.00	=""	="CENTRE FOR PUBLIC MANAGEMENT"	30-Jan-08 11:19 AM	

+="CN56890"	"IT Contractor"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	24-Jan-08	29-Jun-08	132290.00	=""	="ICON RECRUITMENT"	30-Jan-08 11:20 AM	

+="CN56891"	"Cabling and misc items used in cabling infrastruct"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	02-Nov-07	30-Jun-08	15900.00	=""	="PACIFIC DATACOM"	30-Jan-08 11:20 AM	

+="CN56892"	"IT Contractor Extension"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	29-Jan-08	28-Feb-08	60030.00	=""	="ADEPT KM P/L"	30-Jan-08 11:20 AM	

+="CN56893"	"IT Contractor"	="Australian Taxation Office"	30-Jan-08	="Engineering and Research and Technology Based Services"	29-Jan-08	29-Feb-08	272786.80	=""	="CANDLE AUSTRALIA PTY LTD"	30-Jan-08 11:20 AM	

+="CN56894"	"Recruitment Services"	="Australian Taxation Office"	30-Jan-08	="Recruitment services"	19-Jul-07	22-Oct-07	319000.00	="06.042"	="Hays Personnel Services (Australia) Pty Ltd"	30-Jan-08 11:27 AM	

+="CN56895"	"Computer Server Room Facility"	="Australian Electoral Commission"	30-Jan-08	="Facilities management"	01-Jul-07	30-Jun-08	77361.24	=""	="Multiplex Facilities Management"	30-Jan-08 11:28 AM	

+="CN56896"	"Central Movement Alert List Training Services"	="Department of Immigration and Citizenship"	30-Jan-08	="Human resource development"	17-Apr-07	29-Jun-07	278300.00	=""	="Total Learn Pty Ltd"	30-Jan-08 11:38 AM	

+="CN56897"	" Distribution of Election materials "	="Australian Electoral Commission"	30-Jan-08	="Material handling services"	20-Dec-07	20-Jan-08	11088.00	=""	="Corporate Trade Services"	30-Jan-08 11:50 AM	

+="CN56898"	"Process Serving Services."	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	200000.00	=""	="Statewide Mercantile Services Pty Ltd"	30-Jan-08 12:27 PM	

+="CN56899"	"Process Serving Services."	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	100000.00	=""	="Statewide Mercantile Services Pty Ltd"	30-Jan-08 12:31 PM	

+="CN56900"	"Process Serving Services"	="Australian Taxation Office"	30-Jan-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	30-Jun-08	35000.00	=""	="Statewide Mercantile Services Pty Ltd"	30-Jan-08 12:35 PM	

+="CN56902"	"Lease of Election premises"	="Australian Electoral Commission"	30-Jan-08	="Lease and rental of property or building"	26-Nov-07	24-Dec-07	33314.63	=""	="Energy Australia"	30-Jan-08 12:44 PM	

+="CN56903"	"Security Services"	="Australian Electoral Commission"	30-Jan-08	="Security guard services"	17-Nov-07	08-Dec-07	10228.35	=""	="Kalabex Pty Ltd"	30-Jan-08 12:55 PM	

+="CN56904-A1"	"Provision of software testing to support the redevelopment of the AFP's SAP system"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	10-Apr-06	30-Jun-08	457916.00	=""	="Data#3 Limited"	30-Jan-08 01:11 PM	

+="CN56907"	"Darwin Registry Lease - 2 Years"	="National Native Title Tribunal"	30-Jan-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-09	324072.00	=""	="Territory Insurance Office"	30-Jan-08 01:58 PM	

+="CN56018"	"Closed environment testing of ISP level internet content filters"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Product testing"	16-Jan-08	30-Jun-08	88000.00	="06/ACMA125"	="Enex Pty Ltd"	30-Jan-08 02:42 PM	

+="CN55972"	"Hardware for TRIM upgrade project"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Hardware"	15-Jan-08	15-Feb-08	22383.43	=""	="Ipex ITG Pty Ltd"	30-Jan-08 02:44 PM	

+="CN55989"	"Contract staff - ISS"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	04-Feb-08	30-Apr-08	44387.20	="06ACMA107"	="Leo Microsystems Pty Ltd"	30-Jan-08 02:56 PM	

+="CN56910-A2"	" Provision fo Criminal History Checks "	="CRS Australia"	30-Jan-08	="Personnel recruitment"	11-Feb-08	10-Feb-12	185000.00	=""	="The Personnel Risk Management Group Pty Ltd"	30-Jan-08 02:58 PM	

+="CN55999"	"Contractor for Telecommunications Numbering"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	07-Jan-08	30-Jun-08	50000.00	="05ACMA013"	="Drake Australia Pty Ltd"	30-Jan-08 03:02 PM	

+="CN55997"	"Services for Corporate Governance projects"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	14-Jan-08	24-Dec-08	148500.00	="07ACMA043"	="Ian McLean Pty Ltd"	30-Jan-08 03:02 PM	

+="CN56003-A1"	"Printing of Cybersmart brochures"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Printing"	23-Jan-08	28-Mar-08	37075.50	=""	="National Capital Printing"	30-Jan-08 03:04 PM	

+="CN56025"	"Temporay staff - Chairman's office"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	22-Oct-07	30-Jun-08	14700.00	="05ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	30-Jan-08 03:05 PM	

+="CN56015"	"Establish training packages for future requirements in field operations training"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Education and Training Services"	07-Jan-08	30-Jun-08	19880.00	="07/ACMA040"	="Comms and Information Technology Training"	30-Jan-08 03:10 PM	

+="CN56103"	"Contract staff"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	25-May-07	30-Jun-08	75000.00	="05/ACMA013"	="DFP Recruitment Services"	30-Jan-08 03:20 PM	

+="CN56165"	"Upgrades to compatability of Rhode and Schwartz SFU digital TV and Radio measurement system"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Test equipment refurbishment"	17-Dec-07	31-Jan-08	14641.00	=""	="Rhode and Schwartz"	30-Jan-08 03:25 PM	

+="CN56133"	"Admin assistant to Chairmans office"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	22-Oct-07	09-Nov-07	12000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	30-Jan-08 03:25 PM	

+="CN56167"	"Provision of data regarding VOIP and ISP market intellegence between December 07 and June 08."	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Market research"	03-Dec-07	30-Jun-08	29718.98	=""	="Market Clarity Pty Ltd"	30-Jan-08 03:32 PM	

+="CN56233"	"Provision of Microsoft Outlook training to ACMA staff"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Education and Training Services"	18-Dec-07	18-Dec-07	10670.00	=""	="Priority Management Sydnet Pty Ltd"	30-Jan-08 03:36 PM	

+="CN56322"	" Temprary Personnel Services - contract staff for Industry Partnerships Section "	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	11-Oct-07	30-Jun-08	24000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	30-Jan-08 03:39 PM	

+="CN56912"	"Tree Surgery & Woody Weed Removal"	="National Capital Authority"	30-Jan-08	="Tree surgery services"	27-Aug-07	30-Sep-07	25014.00	=""	="Canopy Tree Experts"	30-Jan-08 03:40 PM	

+="CN56333"	"Temporary employee for Finance and Facilities Branch"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Temporary personnel services"	05-Mar-07	30-Jun-08	110000.00	="05/ACMA013"	="Hayes Personnel Services (Australia) Pty Ltd"	30-Jan-08 03:42 PM	

+="CN56913-A1"	"Provision of services in relation to desktop support"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	14-Jan-08	26-Feb-08	13711.81	=""	="Innovative Business Computing Pty Limited"	30-Jan-08 03:46 PM	

+="CN56911"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Jan-08	="Medical health associations"	25-Jan-08	29-Feb-08	11735.71	=""	="CLIFFORD HALLAM HEALTHCARE"	30-Jan-08 03:50 PM	

+="CN56916-A5"	"Provision of services relating to onsite telecommunications services for th AFP's voice network. "	="Australian Federal Police"	30-Jan-08	="Computer services"	01-Jul-07	31-Mar-09	219038.60	=""	="O T Talka Pty Ltd"	30-Jan-08 04:14 PM	

+="CN56918"	"Children's TV Research Data Sets"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Market research"	05-Nov-07	04-Feb-08	19800.00	="07/ACMA021"	="AC Nielsen Australia Pty Ltd"	30-Jan-08 04:32 PM	

+="CN56919"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0952 against Standing offer PN7785."	="Defence Materiel Organisation"	30-Jan-08	="Aerospace systems and components and equipment"	30-Jan-08	29-Feb-08	12091.64	=""	="Goodrich Control Systems Pty Ltd"	30-Jan-08 04:33 PM	

+="CN56921"	"Repair/modification of F/A-18 Generator Converter Unit S/No 1082 against Standing Offer PN7785"	="Defence Materiel Organisation"	30-Jan-08	="Aerospace systems and components and equipment"	30-Jan-08	29-Feb-08	93280.17	=""	="Goodrich Control Systems PTY LTD"	30-Jan-08 04:37 PM	

+="CN56920-A1"	"Business Analysis Services for the Spectrum Management System Project"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	500000.00	="07/ACMA020"	="Dialog Pty Ltd"	30-Jan-08 04:38 PM	

+="CN56613"	"Provision of two dual core computer servers and two quad core computer servers and three year on site warranty."	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Computer servers"	12-Dec-07	21-Jan-08	15818.87	="07/ACMA034"	="IBM Australia Ltd"	30-Jan-08 04:47 PM	

+="CN56621"	"Provision of 200 Internet safety activities"	="Australian Communications and Media Authority (ACMA)"	30-Jan-08	="Education and Training Services"	22-Jan-08	30-Jun-08	97076.55	="07/ACMA044"	="E-ngage Development Ltd"	30-Jan-08 04:48 PM	

+="CN56925"	" SAP HR and Finance system support services "	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	20-Aug-07	31-Dec-07	68200.00	=""	="SAP Australia Pty Ltd"	30-Jan-08 06:36 PM	

+="CN56926"	"SAP ERP financial system upgrade assessment"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	01-Aug-07	31-Oct-07	143385.00	=""	="SAP Australia Pty Ltd"	30-Jan-08 06:41 PM	

+="CN56927"	"Basis and NetWeaver support services"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	15-Oct-07	30-Jun-08	336875.00	=""	="SAP Australia Pty Ltd"	30-Jan-08 06:45 PM	

+="CN56928"	"SAP HR software technical development services"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	01-Oct-07	31-Mar-08	204600.00	=""	="SAP Australia Pty Ltd"	30-Jan-08 06:51 PM	

+="CN56929"	"Project management/SAP HR system technical services"	="Australian Federal Police"	30-Jan-08	="Engineering and Research and Technology Based Services"	01-Oct-07	31-Mar-08	204600.00	=""	="SAP Australia Pty Ltd"	30-Jan-08 06:59 PM	

+="CN56930-A3"	"Acquisition of additional SAP licences and additional maintenance"	="Australian Federal Police"	30-Jan-08	="Software"	16-Jan-08	14-Jun-11	255667.69	=""	="SAP Australia Pty Ltd"	30-Jan-08 07:05 PM	

+="CN56931"	"Security"	="Attorney-General's Department"	30-Jan-08	="Security systems services"	15-Nov-07	31-Dec-07	26735.50	=""	="TAC Pacific Pty Ltd"	30-Jan-08 07:48 PM	

+="CN56932"	"Subscriptions"	="Attorney-General's Department"	30-Jan-08	="Library"	15-Nov-07	31-Oct-08	114974.93	=""	="Lexis Nexis"	30-Jan-08 07:48 PM	

+="CN56933"	"Advertising"	="Attorney-General's Department"	30-Jan-08	="Advertising"	14-Nov-07	31-Dec-07	10341.47	=""	="HMA BLAZE"	30-Jan-08 07:48 PM	

+="CN56934"	"Funding"	="Attorney-General's Department"	30-Jan-08	="Common fund for commodities services"	13-Nov-07	30-Nov-07	413600.00	=""	="ACT Department of Justice &"	30-Jan-08 07:48 PM	

+="CN56935"	"Temporary Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	13-Nov-07	30-Jun-08	310555.00	="06/18397"	="Clicks Recruit Pty Ltd"	30-Jan-08 07:48 PM	

+="CN56936"	"Computers"	="Attorney-General's Department"	30-Jan-08	="Computers"	12-Nov-07	12-Nov-07	19317.01	=""	="Netland Solutions Pty Ltd"	30-Jan-08 07:48 PM	

+="CN56937"	"Data Maintenance"	="Attorney-General's Department"	30-Jan-08	="Data services"	12-Nov-07	31-Jan-08	16116.38	=""	="NSC Enterprise Solutions"	30-Jan-08 07:48 PM	

+="CN56938"	"Consulting"	="Attorney-General's Department"	30-Jan-08	="Business and corporate management consultation services"	15-Nov-07	30-Nov-07	13200.00	=""	="D'Arcy Consulting group pty limited"	30-Jan-08 07:48 PM	

+="CN56939"	"Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	16-Nov-07	25-Jan-08	16500.00	="07/25307"	="Informed Sources Pty Ltd"	30-Jan-08 07:49 PM	

+="CN56940"	"Security Checks"	="Attorney-General's Department"	30-Jan-08	="Security systems services"	16-Nov-07	30-Jun-08	29999.99	=""	="McClure, Janine"	30-Jan-08 07:49 PM	

+="CN56941"	"Maintenance Fees"	="Attorney-General's Department"	30-Jan-08	="Maintenance or support fees"	16-Nov-07	09-Aug-08	21028.32	=""	="Radware Australia P/L"	30-Jan-08 07:49 PM	

+="CN56942"	"Contract Employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	16-Nov-07	15-May-08	114400.00	="06/18414"	="Icon Recruitment Pty Ltd"	30-Jan-08 07:49 PM	

+="CN56943"	"White Pages"	="Attorney-General's Department"	30-Jan-08	="Directory assistance services"	16-Nov-07	30-Nov-08	64742.70	=""	="Telstra"	30-Jan-08 07:49 PM	

+="CN56944"	"Training Program"	="Attorney-General's Department"	30-Jan-08	="Computer based simulation training program services"	16-Nov-07	16-Nov-07	16910.40	=""	="RMIT UNIVERSITY"	30-Jan-08 07:49 PM	

+="CN56945"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	15-Nov-07	31-Dec-14	11000.00	=""	="Australian Government Solicitor"	30-Jan-08 07:49 PM	

+="CN56946"	"Data Maintenance"	="Attorney-General's Department"	30-Jan-08	="Data services"	12-Nov-07	12-Nov-07	16116.38	=""	="NSC Enterprise Solutions"	30-Jan-08 07:49 PM	

+="CN56947"	"Legal Advice"	="Attorney-General's Department"	30-Jan-08	="Legal assistance services"	12-Nov-07	31-Dec-07	10828.40	=""	="Australian Government Solicitor"	30-Jan-08 07:49 PM	

+="CN56948"	"Contracting"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	09-Nov-07	30-Jun-08	30000.00	=""	="Pamela Gates"	30-Jan-08 07:50 PM	

+="CN56949"	"Development Program"	="Attorney-General's Department"	30-Jan-08	="Development assistance"	09-Nov-07	25-Feb-08	17820.00	=""	="EXECUTIVE LEADERSHIP AUSTRALIA"	30-Jan-08 07:50 PM	

+="CN56950"	"Rent"	="Attorney-General's Department"	30-Jan-08	="Lease and rental of property or building"	09-Nov-07	29-Nov-17	1079466.61	=""	="Westtech Holdings Pty Ltd"	30-Jan-08 07:50 PM	

+="CN56951"	"Contract employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	08-Nov-07	30-Jun-08	167516.24	=""	="VT Business Solutions Pty Ltd"	30-Jan-08 07:50 PM	

+="CN56952"	"Contract employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	08-Nov-07	08-Nov-07	23800.00	="06/18397"	="Clicks Recruit Pty Ltd"	30-Jan-08 07:50 PM	

+="CN56953"	"Temporary Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	08-Nov-07	08-Feb-08	26990.89	=""	="Effective People Pty Ltd"	30-Jan-08 07:50 PM	

+="CN56954"	"Advertising"	="Attorney-General's Department"	30-Jan-08	="Advertising"	12-Nov-07	31-Dec-07	10998.90	=""	="HMA BLAZE"	30-Jan-08 07:50 PM	

+="CN56955"	"Phone Charges"	="Attorney-General's Department"	30-Jan-08	="Data services"	12-Nov-07	30-Dec-07	149994.57	=""	="Telstra"	30-Jan-08 07:50 PM	

+="CN56956"	"Contract Project"	="Attorney-General's Department"	30-Jan-08	="Legal services"	12-Nov-07	31-Jan-08	50000.01	=""	="Australian Government Solicitor"	30-Jan-08 07:51 PM	

+="CN56957"	"Internet Charges"	="Attorney-General's Department"	30-Jan-08	="Internet services"	12-Nov-07	12-Nov-07	60323.73	=""	="Cybertrust Australia Pty Ltd"	30-Jan-08 07:51 PM	

+="CN56958"	"Internet Charges"	="Attorney-General's Department"	30-Jan-08	="Internet services"	12-Nov-07	30-Nov-07	58408.24	="07/16097"	="Cybertrust Australia Pty Ltd"	30-Jan-08 07:51 PM	

+="CN56959"	"Levy"	="Attorney-General's Department"	30-Jan-08	="Maintenance or support fees"	12-Nov-07	12-Nov-07	33000.00	=""	="Department of Finance and"	30-Jan-08 07:51 PM	

+="CN56960"	"Contract employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	12-Nov-07	05-May-08	59800.00	="06/18395"	="Bridge IT Engineering Pty Ltd"	30-Jan-08 07:51 PM	

+="CN56961"	"Vetting Services"	="Attorney-General's Department"	30-Jan-08	="Legal Research Services"	12-Nov-07	30-Jun-08	30000.00	=""	="Leila Juliet Dransfield"	30-Jan-08 07:51 PM	

+="CN56962"	"Advertising Costs"	="Attorney-General's Department"	30-Jan-08	="Advertising"	19-Nov-07	30-Jun-08	20000.00	=""	="HMA BLAZE"	30-Jan-08 07:51 PM	

+="CN56963"	"Air Conditioning"	="Attorney-General's Department"	30-Jan-08	="Plumbing and heating and air conditioning"	27-Nov-07	31-Dec-07	23540.00	=""	="Bismac Pty Ltd"	30-Jan-08 07:51 PM	

+="CN56964"	"Implementation of workshop"	="Attorney-General's Department"	30-Jan-08	="Application implementation services"	27-Nov-07	31-Dec-07	123522.00	=""	="Community Serv. & Health Training"	30-Jan-08 07:52 PM	

+="CN56965-A1"	"Evaluation Project"	="Attorney-General's Department"	30-Jan-08	="Project administration or planning"	27-Nov-07	30-Jun-08	20436.00	="EMA0708-T002"	="R T O Strategic Development"	30-Jan-08 07:52 PM	

+="CN56966"	"Contract Employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	27-Nov-07	12-May-08	114400.00	="06/18397"	="CCS Technology Recruiters"	30-Jan-08 07:52 PM	

+="CN56967"	"Project"	="Attorney-General's Department"	30-Jan-08	="Project management"	26-Nov-07	27-Nov-07	550000.00	=""	="Crime Stoppers Australia Ltd"	30-Jan-08 07:52 PM	

+="CN56968"	"Temporary Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	26-Nov-07	01-Feb-08	48100.00	=""	="Kaz Group Pty Limited"	30-Jan-08 07:52 PM	

+="CN56969"	"Temporary Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	26-Nov-07	31-Mar-08	10780.00	=""	="Kaz Group Pty Limited"	30-Jan-08 07:52 PM	

+="CN56970"	"Office equipment"	="Attorney-General's Department"	30-Jan-08	="Office Equipment and Accessories and Supplies"	28-Nov-07	31-Dec-07	18645.00	="07/13009"	="ATI Group Pty Ltd"	30-Jan-08 07:52 PM	

+="CN56971"	"Summer Clerk"	="Attorney-General's Department"	30-Jan-08	="Temporary human resources services"	30-Nov-07	30-Nov-07	13860.00	=""	="Hoban Recruitment"	30-Jan-08 07:52 PM	

+="CN56972"	"Registration Cost"	="Attorney-General's Department"	30-Jan-08	="Voter registration or counting or analysis or scrutiny services"	30-Nov-07	30-Nov-08	11825.00	=""	="Australian Public Service"	30-Jan-08 07:52 PM	

+="CN56973"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	30-Nov-07	30-Nov-08	809999.99	="07/13009"	="e.law Australia Pty Ltd"	30-Jan-08 07:53 PM	

+="CN56974"	"Police Equipment"	="Attorney-General's Department"	30-Jan-08	="Office Equipment and Accessories and Supplies"	30-Nov-07	31-Dec-07	10956.00	=""	="ACTIVE ENVIRONMENTAL SOLUTIONS"	30-Jan-08 07:53 PM	

+="CN56975"	"Maintenance Program"	="Attorney-General's Department"	30-Jan-08	="Maintenance or support fees"	29-Nov-07	31-Mar-08	101371.71	=""	="Point Trading"	30-Jan-08 07:53 PM	

+="CN56976"	"It Certificate"	="Attorney-General's Department"	30-Jan-08	="Certificates"	28-Nov-07	31-Dec-07	12540.00	="07/13009"	="VeriSign"	30-Jan-08 07:53 PM	

+="CN56977"	"Computer equipment"	="Attorney-General's Department"	30-Jan-08	="Office Equipment and Accessories and Supplies"	28-Nov-07	27-Nov-11	195656.26	="07/22472"	="Dimension Data Australia Pty Ltd"	30-Jan-08 07:53 PM	

+="CN56978"	"Administrative services"	="Attorney-General's Department"	30-Jan-08	="Administrative procedures or services"	26-Nov-07	30-Jun-08	71506.66	=""	="Comcar"	30-Jan-08 07:53 PM	

+="CN56979"	"Legal Fees"	="Attorney-General's Department"	30-Jan-08	="Legal services"	22-Nov-07	30-Jun-08	132000.00	="04011972"	="Australian Government Solicitor"	30-Jan-08 07:53 PM	

+="CN56980"	"Report Printing"	="Attorney-General's Department"	30-Jan-08	="Publication printing"	21-Nov-07	21-Nov-07	14132.25	=""	="ZOO Communications Pty Ltd"	30-Jan-08 07:53 PM	

+="CN56981"	"Training services"	="Attorney-General's Department"	30-Jan-08	="Education and Training Services"	20-Nov-07	30-Jun-08	22000.00	=""	="Berrico Consultants"	30-Jan-08 07:54 PM	

+="CN56982"	"Filing Cabinets"	="Attorney-General's Department"	30-Jan-08	="Office furniture"	20-Nov-07	30-Jun-08	35464.00	=""	="Planex Sales Pty Ltd"	30-Jan-08 07:54 PM	

+="CN56983"	"Annual Report"	="Attorney-General's Department"	30-Jan-08	="Printing"	20-Nov-07	23-Nov-07	24099.54	=""	="Wyld & Oppen Pty Ltd"	30-Jan-08 07:54 PM	

+="CN56984"	"Training Consumables"	="Attorney-General's Department"	30-Jan-08	="Ammunition"	19-Nov-07	01-Feb-08	29917.80	=""	="NIOA Trading"	30-Jan-08 07:54 PM	

+="CN56985"	"Training Consumables"	="Attorney-General's Department"	30-Jan-08	="Re training or refreshing training services"	19-Nov-07	31-Jan-08	13895.20	=""	="Dept of Defence"	30-Jan-08 07:54 PM	

+="CN56986"	"Contract Employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	22-Nov-07	11-Apr-08	112530.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jan-08 07:54 PM	

+="CN56987"	"Course"	="Attorney-General's Department"	30-Jan-08	="Military police training"	26-Nov-07	31-Dec-07	11578.95	=""	="Xtek Pty Ltd"	30-Jan-08 07:54 PM	

+="CN56988"	"Financial Support Research Project"	="Attorney-General's Department"	30-Jan-08	="Research programs"	26-Nov-07	20-Dec-07	30250.00	=""	="DEPT OF PRIME MINISTER AND CABINET"	30-Jan-08 07:54 PM	

+="CN56989"	"Financial Support Research Project"	="Attorney-General's Department"	30-Jan-08	="Research programs"	26-Nov-07	20-Dec-07	243100.00	=""	="DEPT OF PRIME MINISTER AND CABINET"	30-Jan-08 07:55 PM	

+="CN56990"	"Financial Support Research Project"	="Attorney-General's Department"	30-Jan-08	="Research programs"	26-Nov-07	20-Dec-07	113300.00	=""	="DEPT OF PRIME MINISTER AND CABINET"	30-Jan-08 07:55 PM	

+="CN56991"	"Conference costs"	="Attorney-General's Department"	30-Jan-08	="Conference or non modular room packages"	26-Nov-07	30-Jun-08	14493.16	=""	="Interaction Consulting Group"	30-Jan-08 07:55 PM	

+="CN56992"	"Supply and installation of Safe"	="Attorney-General's Department"	30-Jan-08	="Safes"	23-Nov-07	30-Dec-07	20797.00	=""	="CIC Secure Pty Ltd"	30-Jan-08 07:55 PM	

+="CN56993"	"Phone Charges"	="Attorney-General's Department"	30-Jan-08	="Enhanced telecommunications services"	22-Nov-07	30-Nov-07	103734.42	=""	="Telstra"	30-Jan-08 07:55 PM	

+="CN56994"	"Professional fees"	="Attorney-General's Department"	30-Jan-08	="Legal services"	30-Oct-07	30-Jun-09	10387.30	="06#195748"	="Australian Government Solicitor"	30-Jan-08 07:55 PM	

+="CN56995"	"Sponsorship of National SES Reserve Competition"	="Attorney-General's Department"	30-Jan-08	="Sports event promotion and sponsorship"	25-Sep-07	20-Nov-07	10000.00	=""	="Fire & Emergency Services Authority"	30-Jan-08 07:55 PM	

+="CN56996"	"Legal services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	16-Oct-07	16-Oct-17	11222.12	="06#195748DOC"	="Australian Government Solictor"	30-Jan-08 07:55 PM	

+="CN56997"	"Legal services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	17-Oct-07	17-Oct-17	15097.30	="06#195748DOC"	="Australian Government Solictor"	30-Jan-08 07:55 PM	

+="CN56998"	"Workplace Seminars"	="Attorney-General's Department"	30-Jan-08	="Meetings events"	29-Oct-07	30-Jun-09	10373.00	="07/6628"	="DEBORAH NANSCHILD & ASSOCIATES"	30-Jan-08 07:56 PM	

+="CN56999"	"Network Funding 2007-08"	="Attorney-General's Department"	30-Jan-08	="Legal services"	22-Oct-07	30-Jun-08	33000.00	=""	="Upper Murray Family Care Inc."	30-Jan-08 07:56 PM	

+="CN57000"	"*Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	15-Oct-07	12-Nov-17	19600.00	="06#195748"	="Australian Government Solicitor"	30-Jan-08 07:56 PM	

+="CN57001"	"Protection of the AusCheck Name"	="Attorney-General's Department"	30-Jan-08	="Legal services"	28-Sep-07	30-Jun-09	29355.70	="06#195748DOC"	="Australian Government Solicitor"	30-Jan-08 07:56 PM	

+="CN57002"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Unemployment services"	13-Apr-07	13-Apr-07	64558.40	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jan-08 07:56 PM	

+="CN57003"	"Project Management"	="Attorney-General's Department"	30-Jan-08	="Structural building products"	03-Apr-07	30-Jun-09	14995.20	=""	="Turner & Townsend Rawlinsons"	30-Jan-08 07:56 PM	

+="CN57004"	"Contract services"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	20-Oct-06	20-Oct-06	33000.00	=""	="G & K Conn"	30-Jan-08 07:56 PM	

+="CN57005"	"Court obligations re-storage of national security obligation"	="Attorney-General's Department"	30-Jan-08	="Legal services"	13-Nov-07	13-Nov-07	11631.40	=""	="Australian Government Solicitor"	30-Jan-08 07:57 PM	

+="CN57006"	"APS Jobs Subscription 2007-2008"	="Attorney-General's Department"	30-Jan-08	="Recruitment services"	17-Oct-07	30-Nov-07	31434.49	=""	="Australian Public Service"	30-Jan-08 07:57 PM	

+="CN57007"	"Professional services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	26-Oct-07	29-Nov-07	10907.60	=""	="Australian Government Solicitor"	30-Jan-08 07:57 PM	

+="CN57008"	"Dynamic Site Delivery Solution"	="Attorney-General's Department"	30-Jan-08	="Management and Business Professionals and Administrative Services"	09-Jan-07	11-Nov-07	26925.16	="07/13009"	="Akamai Technologies Netherlands B.V"	30-Jan-08 07:57 PM	

+="CN57009"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	17-Oct-07	23-Nov-17	39480.45	="06#195748"	="Australian Government Solicitor"	30-Jan-08 07:57 PM	

+="CN57010"	"Advertising"	="Attorney-General's Department"	30-Jan-08	="Newspaper advertising"	25-May-07	05-Nov-07	41545.01	=""	="HMA BLAZE"	30-Jan-08 07:57 PM	

+="CN57011"	"legal services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	06-Nov-07	25-May-08	99685.74	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-Jan-08 07:57 PM	

+="CN57012"	"Advertising"	="Attorney-General's Department"	30-Jan-08	="Newspaper advertising"	19-Oct-07	25-May-08	19004.69	=""	="HMA BLAZE"	30-Jan-08 07:58 PM	

+="CN57013"	"*Inquiry Equine Influenza to 15.10.07"	="Attorney-General's Department"	30-Jan-08	="Legal services"	02-Nov-07	25-Apr-08	54043.44	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-Jan-08 07:58 PM	

+="CN57014"	"Memorandum of Fees"	="Attorney-General's Department"	30-Jan-08	="Legal services"	05-Nov-07	25-Apr-08	54816.63	=""	="Alister Henskens"	30-Jan-08 07:58 PM	

+="CN57015"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	26-Oct-07	09-Nov-07	17600.00	=""	="Robert James Anderson"	30-Jan-08 07:58 PM	

+="CN57016"	"Equine Influenza Inquiry"	="Attorney-General's Department"	30-Jan-08	="Legal services"	24-Oct-07	25-Apr-08	69157.81	="06#195748DOC"	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-Jan-08 07:58 PM	

+="CN57017"	"Trademark 19/10/07 Family relationship Centres"	="Attorney-General's Department"	30-Jan-08	="Legal services"	30-Oct-07	01-Nov-07	20900.00	=""	="Australian Government Solictor"	30-Jan-08 07:58 PM	

+="CN57018"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	12-Oct-07	23-Oct-17	10793.20	="06#195748"	="Australian Government Solicitor"	30-Jan-08 07:58 PM	

+="CN57019"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	31-Jul-07	08-Nov-07	12300.70	="STANDING OFFER"	="Blake Dawson"	30-Jan-08 07:59 PM	

+="CN57020"	"Legal Services"	="Attorney-General's Department"	30-Jan-08	="Legal services"	02-Aug-07	08-Nov-07	14893.74	="STANDING OFFER"	="Blake Dawson"	30-Jan-08 07:59 PM	

+="CN57021"	"*Professional fees & discbursements"	="Attorney-General's Department"	30-Jan-08	="Legal services"	23-Nov-07	25-Apr-08	114112.35	="06#195748"	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-Jan-08 07:59 PM	

+="CN57022"	"Fees for service"	="Attorney-General's Department"	30-Jan-08	="Legal services"	26-Nov-07	25-Apr-08	177500.00	=""	="Anthony J Meagher"	30-Jan-08 07:59 PM	

+="CN57023"	"Child Inclusive FDR workshop"	="Attorney-General's Department"	30-Jan-08	="Legal services"	05-Nov-07	05-Nov-07	15378.08	=""	="Family Transitions Pty Ltd"	30-Jan-08 07:59 PM	

+="CN57024"	"Fees"	="Attorney-General's Department"	30-Jan-08	="Legal services"	12-Nov-07	25-Apr-08	11732.00	=""	="Robert James Anderson"	30-Jan-08 07:59 PM	

+="CN57025"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Temporary technician staffing needs"	14-Feb-07	26-Oct-07	32762.50	="AGD06/18394"	="Face 2 Face Recruitment Pty Limited"	30-Jan-08 07:59 PM	

+="CN57026"	"Legal Advice"	="Attorney-General's Department"	30-Jan-08	="Legal services"	02-Nov-07	02-Nov-07	21348.25	=""	="Australian Government Solicitor"	30-Jan-08 08:00 PM	

+="CN57027"	"Contract employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	02-Nov-07	23-Apr-08	108680.00	="06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jan-08 08:00 PM	

+="CN57028"	"Chair Hire"	="Attorney-General's Department"	30-Jan-08	="Chairs"	02-Nov-07	31-May-08	45278.09	=""	="Valiant Hire"	30-Jan-08 08:00 PM	

+="CN57029"	"Annual Levy"	="Attorney-General's Department"	30-Jan-08	="Computer services"	02-Nov-07	20-Dec-07	11000.00	=""	="Department of Finance and"	30-Jan-08 08:00 PM	

+="CN57030"	"Conference"	="Attorney-General's Department"	30-Jan-08	="Hotels"	02-Nov-07	07-Dec-07	103950.00	=""	="The Hyatt Hotel Canberra"	30-Jan-08 08:00 PM	

+="CN57031"	"Temporary Recruitment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	02-Nov-07	12-Jan-08	48375.00	=""	="Greythorn Pty Ltd"	30-Jan-08 08:00 PM	

+="CN57032"	"Alarm Security Equipment"	="Attorney-General's Department"	30-Jan-08	="Safety or security systems installation"	01-Nov-07	01-Nov-07	14283.50	=""	="ADT Security"	30-Jan-08 08:01 PM	

+="CN57033"	"Temporary Recruitment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	02-Nov-07	02-Nov-07	160160.00	="06/18414"	="Icon Recruitment Pty Ltd"	30-Jan-08 08:01 PM	

+="CN57034"	"Security awareness"	="Attorney-General's Department"	30-Jan-08	="Security and control equipment"	08-Nov-07	21-Dec-07	14476.00	=""	="Edmore Pty Limited"	30-Jan-08 08:01 PM	

+="CN57035"	"Security Clearance"	="Attorney-General's Department"	30-Jan-08	="Police services"	07-Nov-07	30-Jun-08	28147.49	=""	="Australian Federal Police"	30-Jan-08 08:01 PM	

+="CN57036"	"Contracting"	="Attorney-General's Department"	30-Jan-08	="Personal and Domestic Services"	07-Nov-07	30-Jun-08	30000.00	=""	="Vanessa L Sellick"	30-Jan-08 08:01 PM	

+="CN57037"	"Network Cables"	="Attorney-General's Department"	30-Jan-08	="Network cable"	07-Nov-07	30-Dec-07	13365.00	=""	="Kaz Group Pty Limited"	30-Jan-08 08:01 PM	

+="CN57038"	"Maintenenance Costs"	="Attorney-General's Department"	30-Jan-08	="Maintenance or support fees"	07-Nov-07	30-Nov-07	52800.00	=""	="Centrelink"	30-Jan-08 08:01 PM	

+="CN57039"	"Temporary Recruitment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	05-Nov-07	30-Jun-08	50000.01	=""	="Southtech Personnel"	30-Jan-08 08:01 PM	

+="CN57040"	"Temporary Recruitment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	02-Nov-07	03-Mar-08	46992.00	="06/18397"	="Clicks Recruit Pty Ltd"	30-Jan-08 08:02 PM	

+="CN57041"	"Contract Employment"	="Attorney-General's Department"	30-Jan-08	="Unemployment services"	13-Dec-07	28-Dec-07	34320.00	="07/17576"	="Evergreen IT Personnel Pty Ltd"	30-Jan-08 08:02 PM	

+="CN57042"	"Contract services"	="Attorney-General's Department"	30-Jan-08	="Temporary legal staffing needs"	23-Jul-07	28-Sep-07	19574.78	=""	="Icon Recruitment Pty Ltd"	30-Jan-08 08:02 PM	

+="CN57043"	"Advertising costs for 2007/08"	="Attorney-General's Department"	30-Jan-08	="Newspaper advertising"	12-Dec-07	30-Jun-08	20000.00	=""	="HMA BLAZE"	30-Jan-08 08:02 PM	

+="CN57044"	"HR Advertising 07-08"	="Attorney-General's Department"	30-Jan-08	="Newspaper advertising"	16-Jan-08	27-Jun-08	40000.00	=""	="HMA BLAZE"	30-Jan-08 08:02 PM	

+="CN57045"	"Temporary Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	25-Jan-08	30-Jun-08	23332.00	="06/18394"	="Face 2 Face Recruitment Pty Limited"	30-Jan-08 08:02 PM	

+="CN57046"	"Stores 2007-08"	="Attorney-General's Department"	30-Jan-08	="Warehouse stores"	13-Dec-07	30-Jun-08	27500.00	=""	="Corporate Express"	30-Jan-08 08:02 PM	

+="CN57047"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Personnel recruitment"	21-Dec-07	21-Dec-07	14080.00	=""	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jan-08 08:02 PM	

+="CN57048"	"Contract employment"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	14-Jan-08	14-Jan-08	10010.00	="06/18394"	="Face 2 Face Recruitment Pty Limited"	30-Jan-08 08:03 PM	

+="CN57049"	"Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary legal staffing needs"	30-Sep-07	30-Sep-07	41800.00	=""	="Staffing and Office Solutions"	30-Jan-08 08:03 PM	

+="CN57050"	"Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary financial staffing needs"	30-Jan-08	30-Jan-08	17000.50	=""	="The Trustee for The Cordelta"	30-Jan-08 08:03 PM	

+="CN57051"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	30-Nov-07	30-Nov-07	63580.00	="07/17242"	="Ayom Holdings Pty Ltd"	30-Jan-08 08:03 PM	

+="CN57052"	"Security"	="Attorney-General's Department"	30-Jan-08	="Network security equipment"	16-Sep-07	16-Sep-07	60077.60	=""	="Oakton Services Pty Ltd"	30-Jan-08 08:03 PM	

+="CN57053"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Temporary personnel services"	11-Jan-08	29-Mar-08	20064.00	="AGD06/18396"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jan-08 08:03 PM	

+="CN57054"	"Legislation printing"	="Attorney-General's Department"	30-Jan-08	="Industrial printing services"	04-Dec-07	30-Jun-08	123200.00	=""	="Canprint Communications Pty Ltd"	30-Jan-08 08:03 PM	

+="CN57055"	"Staffing"	="Attorney-General's Department"	30-Jan-08	="Temporary production staffing needs"	24-Aug-07	24-Aug-07	12550.42	="06/18414"	="Icon Recruitment Pty Ltd"	30-Jan-08 08:03 PM	

+="CN57056"	"Contract Services"	="Attorney-General's Department"	30-Jan-08	="Temporary technician staffing needs"	13-Dec-07	24-Dec-07	28500.00	="AGD06/18397"	="Clicks Recruit Pty Ltd"	30-Jan-08 08:03 PM	

+="CN57057"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	31-Jan-08	="Medical health associations"	25-Jan-08	05-Mar-08	24818.64	=""	="MEDICAL DEVELOPMENTS INTERNATIONAL LTD"	31-Jan-08 07:47 AM	

+="CN57058"	"Tool Kit Carpenters"	="Defence Materiel Organisation"	31-Jan-08	="Tool kits"	29-Jan-08	29-Mar-08	64111.30	=""	="Brentool Industrial Supplies Pty Ltd"	31-Jan-08 07:51 AM	

+="CN57059"	"Engraving Machine"	="Defence Materiel Organisation"	31-Jan-08	="Engraving machines"	29-Jan-08	29-Feb-08	35750.00	=""	="Gravograph Australia"	31-Jan-08 08:03 AM	

+="CN57060"	"Tool Kit Carpenters"	="Defence Materiel Organisation"	31-Jan-08	="Tool kits"	29-Jan-08	13-Feb-08	37968.95	=""	="J Blackwood & Son"	31-Jan-08 08:08 AM	

+="CN57061"	"Tool Kit Fitters & Turners supplied against standing offer CONL069"	="Defence Materiel Organisation"	31-Jan-08	="Tool kits"	29-Jan-08	29-Mar-08	74140.60	=""	="Brentool Industrial Supplies Pty Ltd"	31-Jan-08 08:14 AM	

+="CN57062"	"Tool Kit Electricians supplied against standing offer no. CONL069"	="Defence Materiel Organisation"	31-Jan-08	="Electrician kits"	29-Jan-08	29-Mar-08	86302.15	=""	="Brentool Industrial Supplies Pty Ltd"	31-Jan-08 08:19 AM	

+="CN57063-A2"	"Tool Kit Automotive Mechanic supplied against standing offer no. CONL069"	="Defence Materiel Organisation"	31-Jan-08	="Tool kits"	29-Jan-08	02-Jun-08	186005.02	=""	="Brentool Industrial Supplies Pty Ltd"	31-Jan-08 08:24 AM	

+="CN57064"	"Frame Field Pack Steel"	="Defence Materiel Organisation"	31-Jan-08	="Harnesses or its accessories"	16-Jan-08	30-Mar-08	29700.00	="CC1T2M"	="PAGE FURNISHERS PTY LTD"	31-Jan-08 08:45 AM	

+="CN57065-A2"	" Provision of services in relation to usability analysis through all stages of the develoment lifecycle.    "	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	19-Dec-07	30-Nov-09	466400.00	=""	="Greythorn Pty Ltd"	31-Jan-08 09:03 AM	

+="CN57067"	" Provision of servises in relation to Infrastructure solutions "	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	07-Jan-08	30-Jun-08	121440.00	=""	="Innovative Business Computing Pty Limited"	31-Jan-08 09:15 AM	

+="CN57068-A3"	"Provision of services relating to the provision of software development for AFP specialised systems"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-09	402840.00	=""	="Tarakan Consulting Pty Ltd"	31-Jan-08 09:25 AM	

+="CN57069-A2"	"Provision of services in relation to application architecture"	="Australian Federal Police"	31-Jan-08	="Computer services"	01-Jul-07	29-Feb-08	149818.57	=""	="Cordelta Pty. Ltd."	31-Jan-08 09:35 AM	

+="CN57071"	"Provision of services in relation to Enterprise Architecture"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	272800.00	=""	="Peoplebank Australia Ltd"	31-Jan-08 09:43 AM	

+="CN57072"	"Provision of software development for AFP specialised applications"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	30-Jun-08	202090.24	=""	="Peoplebank Australia Ltd"	31-Jan-08 09:52 AM	

+="CN57074"	"Power Supply, ACM-3X1500"	="Defence Materiel Organisation"	31-Jan-08	="Laboratory and Measuring and Observing and Testing Equipment"	30-Jan-08	21-May-08	63800.00	=""	="POWER PARAMETERS"	31-Jan-08 10:00 AM	

+="CN57075"	"Insert, Fragmentation Protective Body Armor, Ballistic Panels"	="Defence Materiel Organisation"	31-Jan-08	="Body armour"	15-Jan-08	14-Mar-08	553060.26	="CC1T2X"	="Craig International Ballistics"	31-Jan-08 10:03 AM	

+="CN57077-A5"	"Provision of IT Security Officer - S. Marin"	="CRS Australia"	31-Jan-08	="Computer or network or internet security"	21-Jan-08	30-Jun-08	28639.37	=""	="Exclaim IT Pty Ltd"	31-Jan-08 10:09 AM	

+="CN57076"	"Motor Vehicle Parts."	="Department of Defence"	31-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Jan-08	29-Feb-08	15707.76	=""	="Mercedes Benz Aust. Pacific"	31-Jan-08 10:09 AM	

+="CN57078"	"Computer services"	="National Competition Council"	31-Jan-08	="Computer services"	01-Sep-07	30-Sep-07	11403.05	="na"	="Unique World PTY LTD"	31-Jan-08 10:10 AM	

+="CN57079"	"Human resources services"	="National Competition Council"	31-Jan-08	="Human resources services"	01-Sep-07	30-Sep-07	12466.30	=""	="Hudson global resources PTY LTD"	31-Jan-08 10:16 AM	

+="CN57080-A1"	"Provision of services in relation to technical support for the AFP's Human Resources Management information."	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-07	31-Aug-08	287795.20	=""	="Peoplebank Australia Ltd"	31-Jan-08 10:19 AM	

+="CN57081-A1"	" Provision of Personal Safety Workshops "	="Department of Immigration and Citizenship"	31-Jan-08	="Workshops"	01-Aug-07	30-Jun-08	12000.00	=""	="Yu Shih Tad Kung Fu Society"	31-Jan-08 10:23 AM	

+="CN57082"	"Management advisory services"	="National Competition Council"	31-Jan-08	="Management advisory services"	01-Sep-07	30-Sep-07	25410.00	=""	="Unique World PTY LTD"	31-Jan-08 10:25 AM	

+="CN57083-A2"	"Provision of services in relation to developing and supporting SAS based reporting applications"	="Australian Federal Police"	31-Jan-08	="Computer services"	01-Jul-07	31-Dec-08	290769.60	=""	="Peoplebank Australia Ltd"	31-Jan-08 10:28 AM	

+="CN57084-A1"	" MERLO FORLIFT REPAIRS "	="Department of Defence"	31-Jan-08	="Motor vehicles"	31-Jan-08	07-Mar-08	13541.22	=""	="F.B. AUTO REPAIRS"	31-Jan-08 10:31 AM	

+="CN57085"	" AIRCRAFT SPARES  NSN 1680-66-138-2148 , PAD ASSY , QTY 20 "	="Defence Materiel Organisation"	31-Jan-08	="Military transport helicopters"	31-Jan-08	18-Aug-08	15620.00	=""	="ASIA PACIFIC AEROSPACE"	31-Jan-08 10:37 AM	

+="CN57087-A4"	"Provision of services in relation to project management services."	="Australian Federal Police"	31-Jan-08	="Project management"	01-Jul-07	30-Jun-09	217932.00	=""	="VCFM Pty. Ltd."	31-Jan-08 10:38 AM	

+="CN57088"	"Mailhouse quality assurance services"	="Australian Electoral Commission"	31-Jan-08	="Quality assurance services"	01-Nov-07	31-Jan-08	15602.99	=""	="Centrelink"	31-Jan-08 10:46 AM	

+="CN57091"	"Legal services"	="National Competition Council"	31-Jan-08	="Legal services"	30-Nov-07	11-Jan-08	76719.92	=""	="Clayton Utz"	31-Jan-08 11:02 AM	

+="CN57090-A1"	"Technical Review and Audit of Financial Management System"	="Australian Electoral Commission"	31-Jan-08	="Systems analysis"	01-Jul-07	30-Jun-08	88400.00	=""	="Oakton AA Services Pty Ltd"	31-Jan-08 11:03 AM	

+="CN57092"	"Legal services"	="National Competition Council"	31-Jan-08	="Legal services"	01-Nov-07	07-Dec-07	79251.08	=""	="Clayton Utz"	31-Jan-08 11:08 AM	

+="CN57093"	"Storage and handling of election material"	="Australian Electoral Commission"	31-Jan-08	="Material handling services"	29-Oct-07	26-Nov-07	11522.02	=""	="Chess J Wilson Removals"	31-Jan-08 11:10 AM	

+="CN57095"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	01-Jul-07	30-Jul-07	11173.55	=""	="Telstra"	31-Jan-08 11:12 AM	

+="CN57094-A2"	"Provision of services in relation to business analysis activities"	="Australian Federal Police"	31-Jan-08	="Computer services"	28-May-07	30-Jun-08	155584.00	=""	="Cordelta Pty. Ltd."	31-Jan-08 11:13 AM	

+="CN57097"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	01-Nov-07	30-Nov-07	16178.17	=""	="Telstra"	31-Jan-08 11:16 AM	

+="CN57089"	"Insert, Small Arms Protective Body Armor"	="Defence Materiel Organisation"	31-Jan-08	="Body armour"	20-Dec-07	31-Mar-08	1789735.20	="AA248M"	="Craig International Ballistics"	31-Jan-08 11:22 AM	

+="CN57099"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	01-Oct-07	30-Nov-07	16310.16	=""	="Telstra"	31-Jan-08 11:27 AM	

+="CN57100"	"Provision of Data Entry Services"	="Department of Immigration and Citizenship"	31-Jan-08	="Business administration services"	17-Dec-07	30-Jun-08	14000.00	=""	="The Secretary Pty Ltd"	31-Jan-08 11:28 AM	

+="CN57101"	" Peace Song Tapestries "	="Department of Immigration and Citizenship"	31-Jan-08	="Youth movements or organisations services"	31-May-07	30-Jun-08	88000.00	=""	="Special Broadcasting Service Corporation"	31-Jan-08 11:33 AM	

+="CN57102"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	01-Sep-07	31-Oct-07	17532.67	=""	="Telstra"	31-Jan-08 11:34 AM	

+="CN57103-A2"	"Provision of services in relation to the maintenance and development of open systems applications intergration solutions."	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	30-Jul-07	30-Sep-08	219912.00	=""	="Tarakan Consulting Pty Ltd"	31-Jan-08 11:42 AM	

+="CN57104"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	14-Nov-07	13-Dec-07	14979.40	=""	="Telstra"	31-Jan-08 11:43 AM	

+="CN57105"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Telecommunications media services"	14-Oct-07	13-Nov-07	12585.64	=""	="Telstra"	31-Jan-08 11:46 AM	

+="CN57110"	"Software"	="Australian Competition and Consumer Commission"	31-Jan-08	="Software"	05-Nov-07	30-Nov-07	16176.60	=""	="Zallcom PTY Ltd"	31-Jan-08 12:00 PM	

+="CN57111-A3"	" University Curriculum for Journalism Students "	="Department of Immigration and Citizenship"	31-Jan-08	="Media studies"	31-Mar-07	30-Jun-09	349540.00	=""	="Murdoch University"	31-Jan-08 12:00 PM	

+="CN57112"	"Software"	="Australian Competition and Consumer Commission"	31-Jan-08	="Software"	07-Dec-07	07-Dec-07	16239.30	=""	="Zallcomm"	31-Jan-08 12:04 PM	

+="CN57113"	"Hotels and lodging and meeting facilities"	="Australian Competition and Consumer Commission"	31-Jan-08	="Hotels and lodging and meeting facilities"	22-Nov-07	08-May-08	13318.75	=""	="The Sebel"	31-Jan-08 12:08 PM	

+="CN57114-A1"	"Online Toolkit for Local Government"	="Department of Immigration and Citizenship"	31-Jan-08	="Socio cultural services"	28-Feb-07	30-Apr-08	131714.00	=""	="Macquarie University"	31-Jan-08 12:09 PM	

+="CN57116-A2"	"Provision of services in relation to high level technical support and management of the AFP's corporate IT environment hosted by systems operations."	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	05-Nov-07	30-Sep-08	172260.00	=""	="Greythorn Pty Ltd"	31-Jan-08 12:12 PM	

+="CN57117"	"Computer services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Computer services"	05-Jun-07	30-Jun-08	10000.00	=""	="Tower Software"	31-Jan-08 12:14 PM	

+="CN57120"	"Software"	="Australian Competition and Consumer Commission"	31-Jan-08	="Software"	09-Nov-07	09-Nov-08	24750.00	=""	="Tower Software"	31-Jan-08 12:18 PM	

+="CN57122"	"Printing of NAT71039 - individuals guide - Super what you need to know.  Qty: 30,000"	="Australian Taxation Office"	31-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Oct-07	30-Oct-07	13615.80	=""	="Paragon Printers"	31-Jan-08 12:21 PM	

+="CN57123-A1"	"Cultural Harmony Programme for Primary School Curriculum"	="Department of Immigration and Citizenship"	31-Jan-08	="Specialised educational services"	28-Nov-06	15-Feb-08	219000.00	=""	="Cricket Australia"	31-Jan-08 12:21 PM	

+="CN57124"	"Computer Services"	="Australian Competition and Consumer Commission"	31-Jan-08	="Computer services"	13-Nov-07	12-Nov-08	82258.14	=""	="Technology 1"	31-Jan-08 12:21 PM	

+="CN57121"	"qty 220 electrical leads antenna, for use with military radios."	="Defence Materiel Organisation"	31-Jan-08	="Connecting leads or wires"	30-Jan-08	23-Jul-08	27648.50	="RFQ-C7072"	="BAE Systems Australia Ltd"	31-Jan-08 12:21 PM	

+="CN57126"	"Printing of js9345 & js9561 - Manhattan coffee mugs and glass coasters.  Qty: 3,750 and 30."	="Australian Taxation Office"	31-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	12-Oct-07	30-Nov-07	23599.40	=""	="Paragon Printers"	31-Jan-08 12:27 PM	

+="CN57127"	" Printing of NAT71498-10.2007 - Tax Agent Service Card.  Qty: 100,000. "	="Australian Taxation Office"	31-Jan-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Nov-07	30-Nov-07	12188.00	=""	="Paragon Printers"	31-Jan-08 12:32 PM	

+="CN57128-A1"	"TECHNICAL SUPPORT FOR NETWORK SERVICES"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Jul-06	30-Jun-08	378972.00	=""	="Quality Contracts Australia Pty Ltd"	31-Jan-08 12:37 PM	

+="CN57130"	"Audit Services"	="Australian Taxation Office"	31-Jan-08	="Audit services"	01-Nov-07	31-Jan-08	22000.00	="104.03"	="Deloitte Touche Tohmatsu"	31-Jan-08 01:04 PM	

+="CN57132"	"Procurement support services, including project management of CAPS"	="Austrade"	31-Jan-08	="Management and Business Professionals and Administrative Services"	18-Dec-07	27-Jun-08	68909.28	=""	="Vedior Asia Pacific Pty"	31-Jan-08 01:36 PM	

+="CN57133"	"Strategic consulting and project managements services"	="Austrade"	31-Jan-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	30-Jun-08	66000.00	=""	="Information Solutions Pty Ltd"	31-Jan-08 01:36 PM	

+="CN57134"	"Annual Gala Dinner 2007"	="Austrade"	31-Jan-08	="Hotels and lodging and meeting facilities"	20-Sep-07	23-Nov-07	16500.00	=""	="NSW Business Chamber Ltd"	31-Jan-08 01:36 PM	

+="CN57135"	"Purchase of V8 supercar tickets for the Baharain International Circuit Nov 07"	="Austrade"	31-Jan-08	="Marketing and distribution"	31-Oct-07	03-Nov-07	15000.00	=""	="Avesco Unit Trust"	31-Jan-08 01:36 PM	

+="CN57136"	"EMDG In Brief brochure, CD and application package"	="Austrade"	31-Jan-08	="Published Products"	18-Jan-08	24-Mar-08	36686.10	=""	="L&L Design and Production Pty Limited"	31-Jan-08 01:36 PM	

+="CN57137"	"Development and delivery of 2 modules for Getting into Export and Market Research"	="Austrade"	31-Jan-08	="Education and Training Services"	22-Nov-07	13-Dec-07	40590.00	=""	="The Learning Group Pty Ltd"	31-Jan-08 01:36 PM	

+="CN57138-A2"	"Provision of services in relation to project management."	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Nov-07	29-Feb-08	146051.60	=""	="Stratagem Computer Contractors Pty Limited"	31-Jan-08 01:38 PM	

+="CN57140-A1"	"Cultural Harmony Community Programme"	="Department of Immigration and Citizenship"	31-Jan-08	="Civic organisations and associations and movements"	31-May-07	30-Jun-08	151800.00	=""	="Australian Red Cross Society"	31-Jan-08 01:50 PM	

+="CN57141-A1"	"Cultural Harmony Education Programme"	="Department of Immigration and Citizenship"	31-Jan-08	="Specialised educational services"	01-Dec-06	15-Mar-08	198000.00	=""	="Together for Humanity Foundation Limited"	31-Jan-08 01:56 PM	

+="CN57143"	"Hotels and lodging and meeting facilities"	="Australian Competition and Consumer Commission"	31-Jan-08	="Hotels and lodging and meeting facilities"	18-Nov-07	21-Nov-07	22272.50	=""	="Novotel St Kilda"	31-Jan-08 02:05 PM	

+="CN57145"	"Printed media"	="Australian Competition and Consumer Commission"	31-Jan-08	="Printed media"	01-Aug-07	31-Aug-07	14452.25	=""	="Media Monitors"	31-Jan-08 02:10 PM	

+="CN57147"	"Printed media"	="Australian Competition and Consumer Commission"	31-Jan-08	="Printed media"	01-Nov-07	30-Nov-07	10552.87	=""	="Media Monitors"	31-Jan-08 02:13 PM	

+="CN57148"	"Printed media"	="Australian Competition and Consumer Commission"	31-Jan-08	="Printed media"	01-Oct-07	31-Oct-07	12287.64	=""	="Media monitors"	31-Jan-08 02:30 PM	

+="CN57149-A1"	"delivery of new spatial data sets and enhancements to exhisting data sets.(GAPS ID 1671241)"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	22-Jan-07	30-Jun-08	277235.20	=""	="Paxus Australia Pty Limited"	31-Jan-08 02:34 PM	

+="CN57151-A1"	"Client Service Survey and Research Services"	="Department of Immigration and Citizenship"	31-Jan-08	="Human resources services"	10-Apr-07	11-Dec-07	67000.00	=""	="The Trustee for the Value Creation Group Unit Trust"	31-Jan-08 02:47 PM	

+="CN57153-A2"	"Services in relation to Geospatial systems development"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	28-May-07	30-Sep-07	227392.00	=""	="Lagen Spatial Pty Limited"	31-Jan-08 02:56 PM	

+="CN57158"	"SUPPLY OF WATER QUALITY ANALYSIS SETS"	="Defence Materiel Organisation"	31-Jan-08	="Medical Equipment and Accessories and Supplies"	21-Jan-08	28-Feb-08	186906.50	=""	="BIOLAB (AUST) LTD"	31-Jan-08 03:20 PM	

+="CN57160-A1"	"Services relation to Senior Data base Administrator"	="Australian Federal Police"	31-Jan-08	="Engineering and Research and Technology Based Services"	01-Oct-04	30-Jun-08	859346.40	=""	="Paxus Australia Pty Ltd"	31-Jan-08 03:37 PM	

+="CN50465"	"Centrelink Agent at Warren, NSW"	="Centrelink"	31-Jan-08	="Community and social services"	01-Jul-07	30-Jun-08	18003.53	=""	="Local Court of NSW"	31-Jan-08 03:57 PM	

+="CN57165"	"Purchase of desktop PC's and accessories"	="Centrelink"	31-Jan-08	="Personal computers"	31-Jan-08	15-Jul-08	4869017.60	="2004/52285"	="Acer Computer Australia Pty Ltd"	31-Jan-08 04:10 PM	

+="CN57166"	"     Fan, Circulating / Fan, Centrifugal / Fan, Tubeaxial / Fan, Vaneaxial     "	="Defence Materiel Organisation"	31-Jan-08	="Fans"	31-Jan-08	09-Jun-08	50414.50	=""	="Milspec Services Pty Ltd"	31-Jan-08 04:17 PM	

+="CN57169"	"motor vehicle spare parts"	="Department of Defence"	31-Jan-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Jan-08	07-Feb-08	13567.73	=""	="LANDROVER"	31-Jan-08 04:27 PM	

+="CN57174"	"QUICK RELEASE HOOKS MALE"	="Defence Materiel Organisation"	01-Feb-08	="Life vests or preservers"	31-Jan-08	03-Jul-08	13469.50	=""	="RFD AUSTRALIA P/L"	01-Feb-08 08:28 AM	

+="CN57175-A1"	"Provision of services relating to analysing the ongoing and future requirements for the applications portfolio."	="Australian Federal Police"	01-Feb-08	="Engineering and Research and Technology Based Services"	22-Oct-07	19-Feb-08	127974.82	=""	="Compas Pty Ltd"	01-Feb-08 08:52 AM	

+="CN57176"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	01-Feb-08	="Medical health associations"	29-Jan-08	17-Feb-08	38173.17	=""	="SYMBION PHARMACY SERVICES"	01-Feb-08 09:01 AM	

+="CN57178"	"Writing and translations"	="Australian Competition and Consumer Commission"	01-Feb-08	="Writing and translations"	01-Aug-07	30-Sep-07	66205.62	=""	="Auscript"	01-Feb-08 09:05 AM	

+="CN57179"	"Mail and cargo transport"	="Australian Competition and Consumer Commission"	01-Feb-08	="Mail and cargo transport"	01-Oct-07	30-Nov-07	14466.17	=""	="Australian Post"	01-Feb-08 09:09 AM	

+="CN57180"	"Passenger transport"	="Australian Competition and Consumer Commission"	01-Feb-08	="Passenger transport"	01-Oct-07	30-Nov-07	29991.19	=""	="Cabcharge"	01-Feb-08 09:12 AM	

+="CN57181"	"Passenger transport"	="Australian Competition and Consumer Commission"	01-Feb-08	="Passenger transport"	01-Sep-07	31-Oct-07	21659.25	=""	="Cabcharge"	01-Feb-08 09:18 AM	

+="CN57183"	"MASK, AIRWAY LARYNGEAL NON-REINFORCED TUBE, REUSABLE 40 TIMES ONLY, AUTOCLAVABLE, SIZE 3"	="Defence Materiel Organisation"	01-Feb-08	="Medical health associations"	25-Jan-08	07-Feb-08	24805.00	=""	="MIDMED"	01-Feb-08 09:24 AM	

+="CN57184"	" PAD, PROTECTIVE, ELBO & PADS KNEE, INDUSTRIAL "	="Defence Materiel Organisation"	01-Feb-08	="Protective knee pads"	19-Dec-07	18-Jan-08	47694.90	="CC1SWB"	="HARON INTERNATIONAL PTY LTD"	01-Feb-08 09:26 AM	

+="CN56824-A2"	"Lease at Darwin"	="Centrelink"	01-Feb-08	="Real estate services"	13-Nov-07	12-Dec-10	266298.00	=""	="Secure Data Centre"	01-Feb-08 09:34 AM	

+="CN57187"	"Office machines and their supplies and accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Office machines and their supplies and accessories"	01-Aug-07	30-Sep-07	12601.60	=""	="Cannon"	01-Feb-08 09:47 AM	

+="CN57188"	" Supply and deliver the following items.  1. Quantity 165ea Tie Down cargo vehicle: Steel gradeT chain 4M LG 16MM DIA.  2.Quantity 941ea Tie Down cargo vehicle :steel gradeT chain 4M LG 10MM DIA  3.Quantity 849ea Binder Load:w/swivel eye & clow hook 10MM short link chain,4.2 Tonnes min safe operating load rating.    "	="Defence Materiel Organisation"	01-Feb-08	="Tie down anchors"	25-Jan-08	01-Mar-08	188751.20	="1680117"	="BEAVER SALES PTY LTD"	01-Feb-08 09:48 AM	

+="CN57189"	"Human resources services"	="Australian Competition and Consumer Commission"	01-Feb-08	="Human resources services"	01-Nov-07	30-Nov-07	15776.82	=""	="CCH Workflow Solutions"	01-Feb-08 09:50 AM	

+="CN57190"	"Community Cultural Harmony Initiative"	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	15-Mar-07	30-Sep-07	94545.00	=""	="National Rugby League Limited"	01-Feb-08 09:52 AM	

+="CN57192"	"Human resources services"	="Australian Competition and Consumer Commission"	01-Feb-08	="Human resources services"	01-Sep-07	30-Sep-07	13891.52	=""	="CCH Workflow Solutions"	01-Feb-08 09:55 AM	

+="CN57194"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	03-Dec-07	30-Jun-08	11481.56	="RFT2007-1638"	="ASG Group"	01-Feb-08 10:04 AM	

+="CN57195-A2"	"R MERLO ARN-202407"	="Department of Defence"	01-Feb-08	="Motor vehicles"	01-Feb-08	07-Mar-08	16272.15	=""	="F.B. AUTO REPAIRS"	01-Feb-08 10:07 AM	

+="CN57197"	"Youth Community Cultural Harmony Initiative"	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	15-Mar-07	31-Dec-07	42790.00	=""	="City of Port Adelaide Enfield"	01-Feb-08 10:08 AM	

+="CN57198"	"Supply and deliver Quantity 27ea Turn Buckle ratchet type one fork type and one eye type end  w/centre arm, w/lock nut and Clevispin M33 Grade p"	="Defence Materiel Organisation"	01-Feb-08	="Tie down anchors"	25-Jan-08	01-Mar-08	20249.46	="1680117"	="NOBLE A&SON LTD"	01-Feb-08 10:08 AM	

+="CN57199"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	03-Dec-07	30-Jun-08	74562.00	="RFT2007-1638"	="ASG Group"	01-Feb-08 10:08 AM	

+="CN57200"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	22-Oct-07	30-Nov-07	35859.97	=""	="ASG Group"	01-Feb-08 10:11 AM	

+="CN57202"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	03-Dec-07	30-Jun-08	208127.40	="RFT2007-1638"	="ASG Group"	01-Feb-08 10:14 AM	

+="CN57182"	" Supply and deliver the followin items  1. Quantity 165 ea of Tie down cargo vehicle:Steel grade T chain 4M LG 16MM Diameter  2. Quantity 941 ea of Tie down cargo vehicle : Steel grade T chain 4M LG 10 mm Dia.  3.Quantity 849 ea of Binder Load:w/swivel eye&hook with 10mm short link chain 4.2 Tonnes Min safe operating loadrating.     2.  "	="Defence Materiel Organisation"	01-Feb-08	="Tie down anchors"	25-Jan-08	01-Mar-08	188751.20	="1680117"	="BEAVER SALES PTY LTD"	01-Feb-08 10:16 AM	

+="CN57203-A2"	"Youth Community Cultural Harmony Initiative"	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	15-Mar-07	21-Mar-08	160956.00	=""	="Griffith City Council"	01-Feb-08 10:18 AM	

+="CN57206-A2"	"05/0807 -  SAS Licence Renewal"	="Australian Customs and Border Protection Service"	01-Feb-08	="Software"	04-Jan-07	03-Jan-11	523651.00	=""	="SAS Institute Australia Pty Ltd"	01-Feb-08 10:25 AM	

+="CN57208"	"Youth Community Cultural Harmony Initiative"	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	18-Jun-07	14-May-08	98028.00	=""	="The Benevolent Society"	01-Feb-08 10:33 AM	

+="CN57211"	" Provision for Community Development Programme "	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	08-Jul-07	12-Jul-07	40000.00	=""	="The Australian Council of Christians and Jews"	01-Feb-08 10:53 AM	

+="CN57212"	"HELMET GROUND TROOPS VARIOUS SIZES"	="Defence Materiel Organisation"	01-Feb-08	="Safety helmets"	19-Dec-07	05-May-08	341913.00	="CC1SUR"	="POINT TRADING"	01-Feb-08 10:54 AM	

+="CN57214"	"Youth Cultural Development Initiative"	="Department of Immigration and Citizenship"	01-Feb-08	="Civic organisations and associations and movements"	16-Mar-07	31-Dec-07	69619.00	=""	="Blacktown Migrant Resource Inc"	01-Feb-08 11:00 AM	

+="CN57216"	"VARIOUS MEDICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	01-Feb-08	="Medical health associations"	29-Jan-08	07-Mar-08	33713.24	=""	="SYMBION PHARMACY SERVICES"	01-Feb-08 11:19 AM	

+="CN57217"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-10	67320.00	=""	="Dell australia"	01-Feb-08 11:19 AM	

+="CN57218-A1"	"Provision for Senior Business Analyst"	="Comsuper"	01-Feb-08	="Human resources services"	29-Jan-08	30-Jun-08	77154.00	=""	="Icon Recruitment"	01-Feb-08 11:20 AM	

+="CN57219"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-10	25025.00	=""	="Dell Australia"	01-Feb-08 11:22 AM	

+="CN57220"	"Computer services"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer services"	24-Oct-07	23-Oct-09	10751.40	=""	="Dell Australia"	01-Feb-08 11:26 AM	

+="CN57222"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	05-Nov-07	30-Nov-07	17737.50	=""	="Dell Australia"	01-Feb-08 11:30 AM	

+="CN57223"	"Filing of Legal documents"	="Australian Taxation Office"	01-Feb-08	="Legal assistance services"	01-Jul-07	30-Jun-08	100000.00	=""	="Newcastle Court"	01-Feb-08 11:35 AM	

+="CN57224"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	01-Nov-07	30-Nov-07	66660.00	=""	="Lenovo"	01-Feb-08 11:37 AM	

+="CN57226"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	12-Sep-07	19-Oct-07	11110.00	=""	="Lenovo"	01-Feb-08 11:42 AM	

+="CN57230"	"Bankruptcy Notice Lodgments for various states"	="Australian Taxation Office"	01-Feb-08	="Legal services"	01-Jul-07	30-Jun-08	860000.00	=""	="Insolvency & Trustee Service Australia"	01-Feb-08 11:56 AM	

+="CN57231"	"Motor Vehicle Parts"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Jan-08	01-Mar-08	11378.64	=""	="Mercedes Benz Aust. Pacific"	01-Feb-08 11:58 AM	

+="CN57233"	"Computer Equipment and Accessories"	="Australian Competition and Consumer Commission"	01-Feb-08	="Computer Equipment and Accessories"	05-Nov-07	30-Nov-07	11110.00	=""	="Lenovo"	01-Feb-08 12:04 PM	

+="CN57234"	"Translation services"	="Australian Taxation Office"	01-Feb-08	="Written translation services"	03-Sep-07	09-Nov-07	13321.88	=""	="VITS LANGUAGE LINK"	01-Feb-08 12:06 PM	

+="CN57235"	" Insurance and retirement services"	="Australian Competition and Consumer Commission"	01-Feb-08	="Insurance and retirement services"	01-Jan-07	31-Dec-07	19800.00	=""	="IPS Worldwide"	01-Feb-08 12:08 PM	

+="CN57237-A2"	"Provision of Cleaning Services"	="CRS Australia"	01-Feb-08	="General building and office cleaning and maintenance services"	02-Jan-08	01-Oct-09	41023.97	=""	="Colin and Leanne Huth trading as Pane in the Glass Window and Cleaning Services"	01-Feb-08 12:17 PM	

+="CN57239"	"Motor Vehicle Parts"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Jan-08	29-Feb-08	16883.84	=""	="Holmwood Highgate"	01-Feb-08 01:09 PM	

+="CN57242"	"Evaluate and implement cost reduction measures within Centrelink."	="Centrelink"	01-Feb-08	="Management advisory services"	27-Jul-07	30-Jun-08	79200.00	=""	="Smartnet Pty Ltd"	01-Feb-08 02:25 PM	

+="CN57243"	" VARIOUS MEDICAL ASSOCIATED ITEMS "	="Defence Materiel Organisation"	01-Feb-08	="Medical health associations"	01-Feb-08	12-Mar-08	28176.28	=""	="SYMBION PHARMACY SERVICES"	01-Feb-08 02:33 PM	

+="CN57245-A2"	"Provision of Nueropsychology services"	="CRS Australia"	01-Feb-08	="Psychologists services"	14-Jan-08	05-Jan-10	30723.30	=""	="Nicola Gates"	01-Feb-08 02:47 PM	

+="CN57244"	"Venue Hire"	="Australian Taxation Office"	01-Feb-08	="Education and Training Services"	27-Nov-07	14-Dec-07	12389.19	=""	="Hyatt Hotel"	01-Feb-08 02:49 PM	

+="CN57247"	"Supply of Coveralls, Safety Industrial, Blue and White, Non-Monogrammed, Cotton"	="Defence Materiel Organisation"	01-Feb-08	="Protective coveralls"	23-Jan-08	24-Apr-08	13365.00	=""	="Motoman Industrial Wear"	01-Feb-08 02:52 PM	

+="CN57251"	"airfare expenses"	="Australian Office of Financial Management"	01-Feb-08	="Travel and Food and Lodging and Entertainment Services"	02-Jan-08	16-Jan-08	12009.69	=""	="American Express"	01-Feb-08 03:02 PM	

+="CN57252-A2"	" Lease at Halls Creek, Western Australia "	="Department of Human Services"	01-Feb-08	="Lease and rental of property or building"	01-Jul-07	30-Jun-12	165000.00	=""	="Shire of Halls Creek"	01-Feb-08 03:21 PM	

+="CN57253"	"Update HREOC publication  Face the Facts "	="Australian Human Rights Commission"	01-Feb-08	="Printed publications"	28-Jun-07	30-Jun-08	33000.00	=""	="New South Global Pty Ltd"	01-Feb-08 03:24 PM	

+="CN57254"	"Project administration & Superintendency"	="National Capital Authority"	01-Feb-08	="Project management"	20-Nov-07	30-Jun-08	19569.00	=""	="Incidental Civil Works"	01-Feb-08 03:27 PM	

+="CN57256"	"motor vehicle spare parts"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	02-Mar-08	56224.78	=""	="Rover Australia"	01-Feb-08 03:36 PM	

+="CN57257"	"Information Technology Specialist Services"	="Department of Immigration and Citizenship"	01-Feb-08	="Temporary information technology software developers"	01-Jul-07	22-Feb-08	198000.00	=""	="Hewlett Packard Australia Pty Ltd"	01-Feb-08 03:38 PM	

+="CN57255"	"Provision of project management services"	="Therapeutic Goods Administration"	01-Feb-08	="Project management"	01-Jul-03	30-Jun-08	359858.50	=""	="Roseback Pty Ltd"	01-Feb-08 03:38 PM	

+="CN57258"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Jan-08	01-Mar-08	33533.35	=""	="Rover Australia"	01-Feb-08 03:40 PM	

+="CN57259"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	31-Jan-08	21-Feb-08	31680.00	=""	="LANDROVER"	01-Feb-08 03:44 PM	

+="CN57260"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-Feb-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Feb-08	02-Mar-08	43391.96	=""	="LANDROVER"	01-Feb-08 03:49 PM	

+="CN57262"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	11-Jan-08	30-Jun-08	28638.45	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:53 PM	

+="CN57263"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	10-Jan-08	30-Jun-08	17927.07	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:54 PM	

+="CN57264"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Software"	10-Jan-08	10-Jan-08	94450.75	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:54 PM	

+="CN57265"	"Provision of Software"	="Medicare Australia"	01-Feb-08	="Computer services"	10-Jan-08	30-Jun-00	119693.75	=""	="TOWER SOFTWARE"	01-Feb-08 03:54 PM	

+="CN57266"	"Provision of Postal Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	10-Jan-08	11-Jan-08	35318.19	=""	="AUSTRALIA POST"	01-Feb-08 03:54 PM	

+="CN57267"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	10-Jan-08	10-Jan-08	26070.26	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 03:54 PM	

+="CN57268"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	09-Jan-08	09-Jan-08	10717.05	=""	="COMMAND RECRUITMENT GROUP"	01-Feb-08 03:54 PM	

+="CN57269"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	09-Jan-08	09-Jan-08	18810.00	=""	="IBEX INTERIORS PTY LTD"	01-Feb-08 03:54 PM	

+="CN57270"	"Provision of IT Relocation Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	09-Jan-08	09-Jan-08	23922.21	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:54 PM	

+="CN57271"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	09-Jan-08	09-Jan-08	16550.52	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 03:55 PM	

+="CN57272"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	09-Jan-08	09-Jan-08	14561.53	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 03:55 PM	

+="CN57273"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	09-Jan-08	09-Jan-08	2667993.62	=""	="Schiavello Project Interiors"	01-Feb-08 03:55 PM	

+="CN57274"	"Provision of Property Services"	="Medicare Australia"	01-Feb-08	="General building construction"	11-Jan-08	11-Jan-08	92730.00	=""	="INTERIORS AUSTRALIA"	01-Feb-08 03:55 PM	

+="CN57275"	"Provision of IT Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	14-Jan-08	14-Jan-08	37854.99	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:55 PM	

+="CN57276-A1"	"Provision of Consultancy Services"	="Medicare Australia"	01-Feb-08	="Business administration services"	14-Jan-08	14-Jan-08	12713.80	=""	="COMPAS PTY LTD"	01-Feb-08 03:55 PM	

+="CN57277-A1"	"Provision of Consultancy Services"	="Medicare Australia"	01-Feb-08	="Business administration services"	14-Jan-08	14-Jan-08	15675.00	=""	="COMPAS PTY LTD"	01-Feb-08 03:55 PM	

+="CN57278"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	14-Jan-08	20-Jun-08	82368.00	=""	="Mosaic Recruitment Pty Ltd"	01-Feb-08 03:56 PM	

+="CN57279-A1"	"Provision of Staff Surveys"	="Medicare Australia"	01-Feb-08	="Office supplies"	14-Jan-08	31-Jan-08	14999.99	=""	="UNCOMMON KNOWLEDGE"	01-Feb-08 03:56 PM	

+="CN57280"	"PROVISION OF PROJECT MANAGEMENT SERVICES"	="Medicare Australia"	01-Feb-08	="General building construction"	14-Jan-08	14-Jan-08	92730.00	=""	="INTERIORS AUSTRALIA"	01-Feb-08 03:56 PM	

+="CN57281"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Commercial and industrial furniture"	14-Jan-08	14-Jan-08	85165.30	=""	="SCHIAVELLO (ACT) PTY LTD"	01-Feb-08 03:56 PM	

+="CN57283"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	14-Jan-08	14-Jan-08	328465.50	=""	="DESKON INTERIORS PTY LTD"	01-Feb-08 03:56 PM	

+="CN57284"	"Provision of Printing Services"	="Medicare Australia"	01-Feb-08	="Printed media"	14-Jan-08	14-Jan-08	34613.70	=""	="PIRION PTY LTD"	01-Feb-08 03:56 PM	

+="CN57285"	"Provision of License Copyright"	="Medicare Australia"	01-Feb-08	="Information services"	14-Jan-08	14-Jan-08	114159.81	=""	="COPYRIGHT AGENCY LIMITED"	01-Feb-08 03:56 PM	

+="CN57282-A1"	"Printing of NAT0995-10.2007 - Commissioner of taxation annual report 2006-07 - Reprint Qty: 3,000"	="Australian Taxation Office"	01-Feb-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	31-Jan-08	29-Feb-08	31400.00	=""	="Paragon Printers"	01-Feb-08 03:56 PM	

+="CN57286"	"Provision of License Copyright"	="Medicare Australia"	01-Feb-08	="Information services"	14-Jan-08	14-Jan-08	15108.50	=""	="COPYRIGHT AGENCY LIMITED"	01-Feb-08 03:56 PM	

+="CN57287"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Software"	14-Jan-08	14-Jan-08	11838.42	=""	="COMPAS PTY LTD"	01-Feb-08 03:57 PM	

+="CN57288"	"Provision of IT Relocation Services"	="Medicare Australia"	01-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	07-Jan-08	07-Jan-08	19890.51	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:57 PM	

+="CN57289"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	02-Jan-08	08-Jan-08	44414.10	=""	="Iron Mountain Australia Pty Ltd"	01-Feb-08 03:57 PM	

+="CN57290"	"Provision of Signage Materials"	="Medicare Australia"	01-Feb-08	="General building construction"	02-Jan-08	02-Jan-08	27912.50	=""	="ALLIED SIGNS & LIGHTING PTY LTD"	01-Feb-08 03:57 PM	

+="CN57291-A1"	"Provision of Code of Conduct Review"	="Medicare Australia"	01-Feb-08	="Human resources services"	28-Dec-07	28-Dec-07	15290.00	=""	="Merry Beach Conferences Pty Ltd"	01-Feb-08 03:57 PM	

+="CN57292"	"Provision of Construction Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	27-Dec-07	27-Dec-07	13090.00	=""	="WA Partitioning Pty Ltd"	01-Feb-08 03:57 PM	

+="CN57293"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	27-Dec-07	27-Dec-07	29932.98	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 03:57 PM	

+="CN57294"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Human resources services"	27-Dec-07	27-Dec-07	140769.86	=""	="AMBIT GROUP PTY LTD"	01-Feb-08 03:57 PM	

+="CN57295"	"Provision of Legal Services"	="Medicare Australia"	01-Feb-08	="Legal services"	24-Dec-07	24-Dec-07	16500.00	=""	="SPARKE HELMORE"	01-Feb-08 03:58 PM	

+="CN57296"	"Provision of Consultancy Services"	="Medicare Australia"	01-Feb-08	="Business administration services"	24-Dec-07	30-Jun-08	22000.00	=""	="BEAMES & ASSOCIATES"	01-Feb-08 03:58 PM	

+="CN57297"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Public administration and finance services"	24-Dec-07	24-Dec-07	24000.00	=""	="CUSTOMER SERVICE INSTITUTE"	01-Feb-08 03:58 PM	

+="CN57298"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Software"	21-Dec-07	21-Dec-07	2200000.00	=""	="IBM AUSTRALIA LIMITED"	01-Feb-08 03:58 PM	

+="CN57299"	"Provision of Meeting/Accommodation facilities"	="Medicare Australia"	01-Feb-08	="Hotels and lodging and meeting facilities"	21-Dec-07	21-Dec-07	26367.00	=""	="THE SEBEL PARRAMATTA"	01-Feb-08 03:58 PM	

+="CN57300"	"Provision of Software"	="Medicare Australia"	01-Feb-08	="Software"	21-Dec-07	31-Dec-08	951207.40	=""	="IBM AUSTRALIA LIMITED"	01-Feb-08 03:58 PM	

+="CN57301"	"Provision of Printing Services"	="Medicare Australia"	01-Feb-08	="Human resources services"	02-Jan-08	02-Jan-08	174422.68	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	01-Feb-08 03:58 PM	

+="CN57302"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	07-Jan-08	30-Jun-08	22715.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:59 PM	

+="CN57303"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	07-Jan-08	07-Jan-08	155279.98	=""	="CENTRE FOR PUBLIC MANAGEMENT"	01-Feb-08 03:59 PM	

+="CN57304"	"Provision of IT Relocation Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	07-Jan-08	07-Jan-08	22088.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 03:59 PM	

+="CN57305"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	07-Jan-08	31-Jan-08	19356.97	=""	="RECRUITMENT SOLUTIONS LIMITED"	01-Feb-08 03:59 PM	

+="CN57306"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	07-Jan-08	31-Jan-08	26718.56	=""	="RECRUITMENT SOLUTIONS LIMITED"	01-Feb-08 03:59 PM	

+="CN57307"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Management advisory services"	02-Jan-08	02-Jan-08	11537.85	=""	="SKILLED GROUP LIMITED"	01-Feb-08 03:59 PM	

+="CN57308"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	02-Jan-08	02-Jan-08	12734.86	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 03:59 PM	

+="CN57309"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	02-Jan-08	02-Jan-08	11614.35	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:00 PM	

+="CN57310"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	02-Jan-08	02-Jan-08	12161.69	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:00 PM	

+="CN57311"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	02-Jan-08	02-Jan-08	11525.52	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:00 PM	

+="CN57312"	"Provision of Mail House Services"	="Medicare Australia"	01-Feb-08	="Paper materials"	02-Jan-08	02-Jan-08	53476.50	=""	="QM Technologies Pty Limited"	01-Feb-08 04:00 PM	

+="CN57313"	"PROVISION OF POSTAL SERVICES"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	02-Jan-08	28-Jan-08	47505.24	=""	="AUSTRALIA POST"	01-Feb-08 04:00 PM	

+="CN57314"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	29-Jan-08	29-Jan-08	12293.02	=""	="James Richardson Corporation"	01-Feb-08 04:00 PM	

+="CN57315-A1"	" Provision of Contractor Serivces "	="Medicare Australia"	01-Feb-08	="Computer services"	29-Jan-08	29-Jan-08	10865.25	=""	="SOUTHERN CROSS COMPUTING PTY LTD"	01-Feb-08 04:00 PM	

+="CN57316"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	25-Jan-08	30-Jun-08	35915.84	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	01-Feb-08 04:00 PM	

+="CN57317"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	25-Jan-08	25-Jan-08	12175.81	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:01 PM	

+="CN57318"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	25-Jan-08	25-Jan-08	34705.00	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:01 PM	

+="CN57319"	"Provision of Adevertising Services"	="Medicare Australia"	01-Feb-08	="Human resources services"	24-Jan-08	24-Jan-08	15290.00	=""	="HMA BLAZE PTY LTD"	01-Feb-08 04:01 PM	

+="CN57320"	"Provision of Broadcasting Services"	="Medicare Australia"	01-Feb-08	="Advertising"	24-Jan-08	24-Jan-08	18480.00	=""	="Special Broadcasting Service"	01-Feb-08 04:01 PM	

+="CN57321"	"Provision of Postal Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	24-Jan-08	24-Jan-08	15596.55	=""	="AUSTRALIA POST"	01-Feb-08 04:01 PM	

+="CN57322"	"Provision of Property Management Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	23-Jan-08	23-Jan-08	630118.78	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:01 PM	

+="CN57323"	"Provision of Postal Supplies"	="Medicare Australia"	01-Feb-08	="Paper products"	23-Jan-08	25-Jan-08	16389.12	=""	="AUSTRALIAN ENVELOPES"	01-Feb-08 04:01 PM	

+="CN57324"	"Provision of Archiving/Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	22-Jan-08	31-Jan-08	44550.00	=""	="Iron Mountain Australia Pty Ltd"	01-Feb-08 04:01 PM	

+="CN57325-A1"	" Provision of Contractor Services "	="Medicare Australia"	01-Feb-08	="Management advisory services"	22-Jan-08	30-Jun-08	22171.05	=""	="M&T RESOURCES"	01-Feb-08 04:02 PM	

+="CN57326"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	29-Jan-08	29-Jan-08	12293.02	=""	="James Richardson Corporation"	01-Feb-08 04:02 PM	

+="CN57327"	"Provision of Staff Survey Services"	="Medicare Australia"	01-Feb-08	="Management advisory services"	23-Jan-08	31-Dec-08	109000.00	="MA07/07"	="Measured Insights Pty Ltd"	01-Feb-08 04:02 PM	

+="CN57328"	"Provision of Software Licences and Maintenance"	="Medicare Australia"	01-Feb-08	="Software"	21-Dec-07	21-Dec-09	1208680.00	=""	="SAP AUSTRALIA PTY LTD"	01-Feb-08 04:02 PM	

+="CN57329-A1"	"PROVISION OF CONSULTANCY SERVICES"	="Medicare Australia"	01-Feb-08	="Legal services"	31-Jan-08	31-Dec-09	158000.00	=""	="WALTERTURNBULL"	01-Feb-08 04:02 PM	

+="CN57330-A1"	"Provision of probity services"	="Medicare Australia"	01-Feb-08	="Legal services"	31-Jan-08	31-Dec-09	113300.00	=""	="DELOITTE TOUCHE TOHMATSU"	01-Feb-08 04:02 PM	

+="CN57331"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	31-Jan-08	31-Jan-08	16960.30	=""	="MANPOWER SERVICES (AUST) P/L"	01-Feb-08 04:02 PM	

+="CN57332"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	31-Jan-08	31-Jan-08	12979.29	=""	="COMMAND RECRUITMENT GROUP"	01-Feb-08 04:02 PM	

+="CN57333"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	31-Jan-08	30-Jun-08	21091.84	=""	="RECRUITMENT SOLUTIONS LIMITED"	01-Feb-08 04:02 PM	

+="CN57334"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Human resources services"	31-Jan-08	31-Jan-08	73216.00	=""	="CCS Technology recruiter"	01-Feb-08 04:03 PM	

+="CN57335"	"Provision of Property Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	30-Jan-08	30-Jan-08	376576.75	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:03 PM	

+="CN57336"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Software"	30-Jan-08	13-Feb-09	28812.80	=""	="MasterSoft Systems Pty Ltd"	01-Feb-08 04:03 PM	

+="CN57337"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	30-Jan-08	30-Jan-08	825000.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:03 PM	

+="CN57338"	"Provision of Property Services"	="Medicare Australia"	01-Feb-08	="Real estate services"	29-Jan-08	29-Jan-08	3637059.64	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:03 PM	

+="CN57339"	"Provision of Promotional Products"	="Medicare Australia"	01-Feb-08	="Human resources services"	22-Jan-08	22-Jan-08	16720.00	=""	="GREEN FROG PROMOTIONS"	01-Feb-08 04:03 PM	

+="CN57340"	"Mail house services"	="Medicare Australia"	01-Feb-08	="Human resources services"	16-Jan-08	16-Jan-08	25192.20	=""	="PIRION PTY LTD"	01-Feb-08 04:03 PM	

+="CN57341-A1"	"Provision of Business Services"	="Medicare Australia"	01-Feb-08	="Business administration services"	16-Jan-08	16-Jan-08	20365.95	=""	="QMS"	01-Feb-08 04:03 PM	

+="CN57342"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	16-Jan-08	30-Jun-08	66557.04	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:04 PM	

+="CN57343"	"Provision of Postal Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	15-Jan-08	30-Jun-08	51419.59	=""	="AUSTRALIA POST"	01-Feb-08 04:04 PM	

+="CN57344"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	15-Jan-08	15-Jan-08	11074.37	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:04 PM	

+="CN57345"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	15-Jan-08	15-Jan-08	795275.80	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:04 PM	

+="CN57346"	"Mail house services"	="Medicare Australia"	01-Feb-08	="Human resources services"	15-Jan-08	15-Jan-08	11782.95	=""	="QM Technologies Pty Limited"	01-Feb-08 04:04 PM	

+="CN57347"	"Provision of Postal Supplies"	="Medicare Australia"	01-Feb-08	="Paper products"	15-Jan-08	16-Jan-08	12291.84	=""	="AUSTRALIAN ENVELOPES"	01-Feb-08 04:04 PM	

+="CN57348"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Human resources services"	15-Jan-08	15-Jan-08	62732.72	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:04 PM	

+="CN57349"	"PROVISION OF PROPERTY MANAGEMENT SERVICES"	="Medicare Australia"	01-Feb-08	="Real estate services"	15-Jan-08	15-Jan-08	115251.73	=""	="UNITED GROUP SERVICES PTY LTD"	01-Feb-08 04:04 PM	

+="CN57350"	"Provision of Postal Supplies"	="Medicare Australia"	01-Feb-08	="Paper materials"	14-Jan-08	14-Jan-08	10318.00	=""	="AUSTRALIAN ENVELOPES"	01-Feb-08 04:05 PM	

+="CN57351"	"Provision of IT Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	14-Jan-08	14-Jan-08	46078.40	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:05 PM	

+="CN57353"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	16-Jan-08	30-Jun-08	39270.00	=""	="CYBERTRUST AUST PTY LTD"	01-Feb-08 04:05 PM	

+="CN57354"	"Provision of Legal Services"	="Medicare Australia"	01-Feb-08	="Legal services"	22-Jan-08	22-Jan-08	13420.00	=""	="AUST GOVT SOLICITOR"	01-Feb-08 04:05 PM	

+="CN57355"	"Provision of Postal Supplies"	="Medicare Australia"	01-Feb-08	="Transport operations"	22-Jan-08	31-Jan-08	25850.00	=""	="DX MAIL"	01-Feb-08 04:05 PM	

+="CN57352"	"IT Contractor"	="Australian Taxation Office"	01-Feb-08	="Engineering and Research and Technology Based Services"	20-Dec-07	31-Jan-09	195228.00	=""	="COMPAS PTY LTD"	01-Feb-08 04:05 PM	

+="CN57356"	"Provision of IT Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	22-Jan-08	25-Jan-08	29686.34	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:05 PM	

+="CN57357"	"Provision of Graphic design services"	="Medicare Australia"	01-Feb-08	="Graphic design"	22-Jan-08	30-Jun-08	77473.00	=""	="GREY WORLDWIDE CANBERRA PTY LTD"	01-Feb-08 04:05 PM	

+="CN57358"	"Provision of Legal Services"	="Medicare Australia"	01-Feb-08	="Legal services"	21-Jan-08	21-Jan-08	21463.20	=""	="AUST GOVT SOLICITOR"	01-Feb-08 04:06 PM	

+="CN57359"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	21-Jan-08	21-Jan-08	35750.00	=""	="IBM AUSTRALIA LIMITED"	01-Feb-08 04:06 PM	

+="CN57360"	"Provision of Software Licences"	="Medicare Australia"	01-Feb-08	="Software"	21-Jan-08	15-Dec-08	22946.00	=""	="Online Learning Australia Pty Ltd"	01-Feb-08 04:06 PM	

+="CN57361"	"Provision of Printing Services"	="Medicare Australia"	01-Feb-08	="Computer services"	18-Jan-08	18-Jan-08	28050.00	=""	="HERMES PRECISA PTY LTD"	01-Feb-08 04:06 PM	

+="CN57362"	"Provision of Software"	="Medicare Australia"	01-Feb-08	="Software"	17-Jan-08	17-Jan-08	19215.90	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:06 PM	

+="CN57363"	"Provision of Secure Courier Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	17-Jan-08	17-Jan-08	12324.63	=""	="METROSTATE SECURITY COURIER PTY LTD"	01-Feb-08 04:06 PM	

+="CN57364"	"Conference Participation fees"	="Medicare Australia"	01-Feb-08	="Advertising"	17-Jan-08	30-Jun-08	24067.50	=""	="PHARMACY GUILD OF AUSTRALIA"	01-Feb-08 04:06 PM	

+="CN57365"	"Provision of Mail-out services"	="Medicare Australia"	01-Feb-08	="Business administration services"	16-Jan-08	16-Jan-08	15306.50	=""	="Canberra Mailing and Envelopes"	01-Feb-08 04:06 PM	

+="CN57366"	"Provision of Accommodation Brokerage Services"	="Medicare Australia"	01-Feb-08	="Hotels and lodging and meeting facilities"	21-Dec-07	21-Dec-07	11624.99	=""	="The Hotel Network"	01-Feb-08 04:07 PM	

+="CN57367"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Software"	07-Dec-07	07-Dec-07	41030.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:07 PM	

+="CN57368"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	12-Dec-07	104929.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:07 PM	

+="CN57369-A1"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	31-Mar-08	47520.00	=""	="CYBERTRUST AUST PTY LTD"	01-Feb-08 04:07 PM	

+="CN57370"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	31-Dec-07	122446.61	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:07 PM	

+="CN57371"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	30-Jun-08	274942.80	=""	="PRICE WATERHOUSE COOPERS"	01-Feb-08 04:07 PM	

+="CN57372"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Software"	06-Dec-07	31-Oct-08	49500.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	01-Feb-08 04:07 PM	

+="CN57373"	"Provision of Printing Services"	="Medicare Australia"	01-Feb-08	="Graphic design"	06-Dec-07	06-Dec-07	10683.20	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	01-Feb-08 04:08 PM	

+="CN57374"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	13860.00	=""	="COMPAS PTY LTD"	01-Feb-08 04:08 PM	

+="CN57375"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	16112.25	=""	="COMPAS PTY LTD"	01-Feb-08 04:08 PM	

+="CN57376"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	06-Dec-07	06-Dec-07	10197.00	=""	="COMPAS PTY LTD"	01-Feb-08 04:08 PM	

+="CN57377"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	05-Dec-07	05-Dec-07	19990.93	=""	="SKILLED GROUP LIMITED"	01-Feb-08 04:08 PM	

+="CN57378"	"Provision of Software"	="Medicare Australia"	01-Feb-08	="Software"	05-Dec-07	23-Nov-08	12177.05	=""	="THE DISTILLERY"	01-Feb-08 04:08 PM	

+="CN57379"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	07-Dec-07	28-Dec-07	36951.20	=""	="RECRUITMENT SOLUTIONS LIMITED"	01-Feb-08 04:08 PM	

+="CN57380"	"Provision of Archiving and Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	10-Dec-07	10-Dec-07	16462.66	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 04:08 PM	

+="CN57381"	"Provision of Archiving and Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	07-Dec-07	07-Dec-07	37975.55	=""	="Iron Mountain Australia Pty Ltd"	01-Feb-08 04:09 PM	

+="CN57382"	"Provision of Cut-Sheet Paper"	="Medicare Australia"	01-Feb-08	="Paper materials"	07-Dec-07	07-Dec-07	11000.00	=""	="CORPORATE EXPRESS AUSTRALIA LTD"	01-Feb-08 04:09 PM	

+="CN57383"	"Provision of SES Recruitment Services"	="Medicare Australia"	01-Feb-08	="Human resources services"	07-Dec-07	07-Dec-07	66924.28	=""	="Watermark Search International"	01-Feb-08 04:09 PM	

+="CN57384"	"Provision of Archiving and Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	07-Dec-07	30-Jun-08	20234.10	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	01-Feb-08 04:09 PM	

+="CN57385"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	07-Dec-07	07-Dec-07	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	01-Feb-08 04:09 PM	

+="CN57386"	"PROVISION OF CONSULTANCY SERVICES"	="Medicare Australia"	01-Feb-08	="Human resources services"	07-Dec-07	07-Dec-07	21872.30	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:09 PM	

+="CN57387"	"PROVISION OF CONSULTANCY SERVICES"	="Medicare Australia"	01-Feb-08	="Human resources services"	07-Dec-07	07-Dec-07	18688.94	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:09 PM	

+="CN57388-A1"	"Provision of HR Services"	="Medicare Australia"	01-Feb-08	="Human resources services"	07-Dec-07	07-Dec-07	19462.67	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:09 PM	

+="CN57389"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	07-Dec-07	07-Dec-07	21840.52	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:09 PM	

+="CN57390"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Management advisory services"	07-Dec-07	07-Dec-07	20656.90	=""	="ACUMEN ALLIANCE"	01-Feb-08 04:10 PM	

+="CN57391"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	07-Dec-07	28-Dec-07	18640.05	=""	="RECRUITMENT SOLUTIONS LIMITED"	01-Feb-08 04:10 PM	

+="CN57392"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	05-Dec-07	05-Dec-07	32937.30	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:10 PM	

+="CN57393"	"QLD Arnaguard Dec07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	23-Dec-07	11-Jan-08	66930.44	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:10 PM	

+="CN57394"	"WA Armaguard Dec07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	23-Dec-07	11-Jan-08	31811.56	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:10 PM	

+="CN57395"	"SA Armaguard Dec07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	23-Dec-07	11-Jan-08	13020.33	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:10 PM	

+="CN57396"	"NSW Armaguard Dec07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	23-Dec-07	11-Jan-08	114105.48	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:10 PM	

+="CN57397"	"VIC Armaguard Dec07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	23-Dec-07	11-Jan-08	88419.52	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:10 PM	

+="CN57398"	"CABCHRG 1011-071207"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	10-Dec-07	02-Jan-08	40085.27	=""	="CABCHARGE AUSTRALIA LIMITED"	01-Feb-08 04:11 PM	

+="CN57399"	"NSW Armaguard Nov07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	18-Nov-07	17-Dec-07	82066.06	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:11 PM	

+="CN57401"	"WA Armaguard Nov07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	18-Nov-07	17-Dec-07	22896.81	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:11 PM	

+="CN57402"	"QLD Arnaguard Nov07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	18-Nov-07	17-Dec-07	51297.08	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:11 PM	

+="CN57403"	"VIC Armaguard Nov07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	18-Nov-07	17-Dec-07	63900.25	=""	="LINFOX ARMAGUARD PTY LTD"	01-Feb-08 04:11 PM	

+="CN57400"	"IT Contractor"	="Australian Taxation Office"	01-Feb-08	="Engineering and Research and Technology Based Services"	20-Dec-07	01-Jun-09	198673.20	=""	="Eurolink Consulting Australia Pty Ltd T/A Aristotle Corporation"	01-Feb-08 04:11 PM	

+="CN57404"	"CABCHRG 1310-091107"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	12-Nov-07	07-Dec-07	42314.25	=""	="CABCHARGE AUSTRALIA LIMITED"	01-Feb-08 04:11 PM	

+="CN57405"	"Act of GraCE"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	04-Dec-07	04-Dec-07	57695.72	=""	="AFTER HOURS (NEWCASTLE)"	01-Feb-08 04:11 PM	

+="CN57406"	"AMEX TRAVEL DEC'07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	28-Dec-07	21-Jan-08	32708.15	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	01-Feb-08 04:12 PM	

+="CN57407"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Software"	05-Dec-07	27-Feb-09	32455.24	=""	="ORACLE CORPORATION AUSTRALIA P/L"	01-Feb-08 04:12 PM	

+="CN57408"	"Provision of Queue management services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	04-Dec-07	04-Dec-07	381750.99	=""	="Nexa Group Pty Ltd"	01-Feb-08 04:12 PM	

+="CN57409"	"Provision of Legal Services"	="Medicare Australia"	01-Feb-08	="Legal services"	04-Dec-07	04-Dec-07	14850.00	=""	="DLA Phillip Fox"	01-Feb-08 04:12 PM	

+="CN57410"	"Provision of Mail House Services"	="Medicare Australia"	01-Feb-08	="Transport operations"	04-Dec-07	04-Dec-07	272160.91	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	01-Feb-08 04:12 PM	

+="CN57411"	"Provision of Software Maintenance"	="Medicare Australia"	01-Feb-08	="Computer services"	03-Dec-07	30-Jun-08	50866.59	=""	="HITWISE"	01-Feb-08 04:12 PM	

+="CN57412"	"Provision of Adverising services"	="Medicare Australia"	01-Feb-08	="Advertising"	03-Dec-07	01-Feb-08	102796.45	=""	="HMA BLAZE PTY LTD"	01-Feb-08 04:12 PM	

+="CN57413"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	03-Dec-07	03-Dec-07	10406.00	=""	="ALC TRAINING PTY LTD"	01-Feb-08 04:13 PM	

+="CN57414"	"Provision of IT Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Computer Equipment and Accessories"	03-Dec-07	03-Dec-07	10121.07	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:13 PM	

+="CN57415"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	03-Dec-07	03-Dec-07	11338.62	=""	="DRAKE AUSTRALIA PTY LTD"	01-Feb-08 04:13 PM	

+="CN57416"	"CABCHRG 081207-040108"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	07-Jan-08	29-Jan-08	39573.70	=""	="CABCHARGE AUSTRALIA LIMITED"	01-Feb-08 04:13 PM	

+="CN57417"	"AMEX TRAVEL DEC'07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	28-Dec-07	25-Jan-08	225196.57	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	01-Feb-08 04:13 PM	

+="CN57418"	"AMEX TRAVEL DEC'07"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	28-Dec-07	21-Jan-08	21966.09	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	01-Feb-08 04:13 PM	

+="CN57419"	"Provision of Mail-out services"	="Medicare Australia"	01-Feb-08	="Business administration services"	19-Dec-07	31-Dec-07	10739.30	=""	="Canberra Mailing and Envelopes"	01-Feb-08 04:13 PM	

+="CN57420"	"Provision of Construction Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	19-Dec-07	19-Dec-07	10340.00	=""	="IBEX INTERIORS PTY LTD"	01-Feb-08 04:13 PM	

+="CN57421"	"Provision of Postal Supplies"	="Medicare Australia"	01-Feb-08	="Paper materials"	19-Dec-07	19-Dec-07	28680.96	=""	="AUSTRALIAN ENVELOPES"	01-Feb-08 04:14 PM	

+="CN57422"	"Provision of Advertising Services"	="Medicare Australia"	01-Feb-08	="Advertising"	19-Dec-07	30-Mar-08	44651.57	=""	="HMA BLAZE PTY LTD"	01-Feb-08 04:14 PM	

+="CN57423"	"Provision of IT Services"	="Medicare Australia"	01-Feb-08	="Software"	19-Dec-07	30-Jun-08	86998.56	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:14 PM	

+="CN57424"	"Provision of Property Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	19-Dec-07	19-Dec-07	518694.48	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:14 PM	

+="CN57425"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	19-Dec-07	19-Dec-07	67086.25	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:14 PM	

+="CN57426"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	19-Dec-07	19-Dec-07	67292.50	=""	="IIR PTY LTD"	01-Feb-08 04:14 PM	

+="CN57427"	"Provision of Construction Services"	="Medicare Australia"	01-Feb-08	="General building construction"	18-Dec-07	31-Dec-07	352000.00	=""	="FACULTY SHOPFITTING"	01-Feb-08 04:14 PM	

+="CN57428"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	17-Dec-07	17-Dec-07	16660.33	=""	="James Richardson Corporation"	01-Feb-08 04:14 PM	

+="CN57429"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	17-Dec-07	17-Dec-07	16109.65	=""	="James Richardson Corporation"	01-Feb-08 04:15 PM	

+="CN57430"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	17-Dec-07	17-Dec-07	13543.99	=""	="James Richardson Corporation"	01-Feb-08 04:15 PM	

+="CN57431"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	20-Dec-07	20-Dec-07	2871998.47	=""	="Schiavello Project Interiors"	01-Feb-08 04:15 PM	

+="CN57432"	"Provision of Postal Services"	="Medicare Australia"	01-Feb-08	="Business administration services"	20-Dec-07	20-Dec-07	20303.61	=""	="AUSTRALIA POST"	01-Feb-08 04:15 PM	

+="CN57433"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	20-Dec-07	30-Jun-08	174306.00	=""	="CYBERTRUST AUST PTY LTD"	01-Feb-08 04:15 PM	

+="CN57434-A1"	"Provision of HR Services"	="Medicare Australia"	01-Feb-08	="Human resources services"	20-Dec-07	20-Dec-07	27456.00	=""	="QMS"	01-Feb-08 04:15 PM	

+="CN57435"	"Provision of Software Licences"	="Medicare Australia"	01-Feb-08	="Software"	20-Dec-07	31-Oct-08	17325.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	01-Feb-08 04:15 PM	

+="CN57436"	"Provision of Legal Services"	="Medicare Australia"	01-Feb-08	="Legal services"	20-Dec-07	30-Jun-08	12048.08	=""	="DLA Phillip Fox"	01-Feb-08 04:16 PM	

+="CN57437"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Management advisory services"	20-Dec-07	31-Dec-07	34051.05	=""	="M&T RESOURCES"	01-Feb-08 04:16 PM	

+="CN57439"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Computer services"	20-Dec-07	31-Mar-08	53977.00	=""	="CYBERTRUST AUST PTY LTD"	01-Feb-08 04:16 PM	

+="CN57440"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	20-Dec-07	30-Jun-08	12696.75	=""	="DIALOG INFORMATION TECHNOLOGY"	01-Feb-08 04:16 PM	

+="CN57441"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Business administration services"	20-Dec-07	30-Jun-08	19008.00	=""	="DIALOG INFORMATION TECHNOLOGY"	01-Feb-08 04:16 PM	

+="CN57438"	"IT Contractor"	="Australian Taxation Office"	01-Feb-08	="Engineering and Research and Technology Based Services"	20-Dec-07	31-Jan-09	218196.00	=""	="Star Consulting Services Pty Ltd"	01-Feb-08 04:16 PM	

+="CN57442"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Human resources services"	20-Dec-07	20-Dec-07	14874.75	=""	="COMPAS PTY LTD"	01-Feb-08 04:16 PM	

+="CN57443"	"Provision of Contract labour hire"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	20-Dec-07	01-Feb-08	10698.53	=""	="ROBERT HALF"	01-Feb-08 04:17 PM	

+="CN57444"	"Provision of Property Management Services"	="Medicare Australia"	01-Feb-08	="Real estate services"	20-Dec-07	20-Dec-07	3678128.28	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:17 PM	

+="CN57445"	"Provision of Mail House Services"	="Medicare Australia"	01-Feb-08	="Computer services"	17-Dec-07	17-Dec-07	44880.00	=""	="HERMES PRECISA PTY LTD"	01-Feb-08 04:17 PM	

+="CN57446"	"Provision of IT Relocation Services"	="Medicare Australia"	01-Feb-08	="Components for information technology or broadcasting or telecommunications"	11-Dec-07	12-Dec-07	18572.37	=""	="IBM GLOBAL SERVICES AUSTRALIA"	01-Feb-08 04:17 PM	

+="CN57447"	"Provision of Printing Machinery"	="Medicare Australia"	01-Feb-08	="Office machines and their supplies and accessories"	11-Dec-07	11-Dec-07	16500.00	=""	="CURRIE AND COMPANY"	01-Feb-08 04:17 PM	

+="CN57448"	"Provision of Property Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	11-Dec-07	11-Dec-07	248829.76	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	01-Feb-08 04:17 PM	

+="CN57449"	"Provision of Construction Services"	="Medicare Australia"	01-Feb-08	="General building construction"	11-Dec-07	11-Dec-07	21904.30	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:17 PM	

+="CN57450"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	11-Dec-07	11-Dec-07	22000.00	=""	="UNITED GROUP SERVICES PTY LTD"	01-Feb-08 04:18 PM	

+="CN57451"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	11-Dec-07	11-Dec-07	62986.00	=""	="DIMENSION DATA LEARNING SOLUTIONS"	01-Feb-08 04:18 PM	

+="CN57452"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Commercial and industrial furniture"	11-Dec-07	11-Dec-07	164220.10	=""	="WA Partitioning Pty Ltd"	01-Feb-08 04:18 PM	

+="CN57453"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Human resources services"	11-Dec-07	11-Dec-07	20000.00	=""	="SPORTS CHALLENGE AUSTRALIA"	01-Feb-08 04:18 PM	

+="CN57454"	"Provision of OH&S Services"	="Medicare Australia"	01-Feb-08	="Work related organisations"	11-Dec-07	11-Dec-07	15208.91	=""	="HBA CONSULTING"	01-Feb-08 04:18 PM	

+="CN57455"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Human resources services"	10-Dec-07	10-Dec-07	43000.00	=""	="PRICE WATERHOUSE COOPERS"	01-Feb-08 04:18 PM	

+="CN57456"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Building construction and support and maintenance and repair services"	10-Dec-07	10-Dec-07	24824.80	=""	="INTERIORS AUSTRALIA"	01-Feb-08 04:18 PM	

+="CN57457"	"Provision of Archiving and Storage Services"	="Medicare Australia"	01-Feb-08	="Storage"	10-Dec-07	10-Dec-07	14551.40	=""	="RECALL TOTAL INFORMATION MA"	01-Feb-08 04:18 PM	

+="CN57458"	"Provision of Courier Services"	="Medicare Australia"	01-Feb-08	="Transport operations"	11-Dec-07	11-Dec-07	11278.41	=""	="TOLL TRANSPORT P/L"	01-Feb-08 04:19 PM	

+="CN57459"	"Provision of Refurbishment Services"	="Medicare Australia"	01-Feb-08	="Accommodation furniture"	17-Dec-07	19-Dec-07	14212.00	=""	="James Richardson Corporation"	01-Feb-08 04:19 PM	

+="CN57460"	"Provision of Postal Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	14-Dec-07	30-Jun-08	91007.89	=""	="AUSTRALIA POST"	01-Feb-08 04:19 PM	

+="CN57461"	"Provision of Training Courses"	="Medicare Australia"	01-Feb-08	="Specialised educational services"	14-Dec-07	14-Dec-07	24750.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	01-Feb-08 04:19 PM	

+="CN57462"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	13-Dec-07	13-Dec-07	173064.10	=""	="OPTUS NETWORKS PTY LIMITED"	01-Feb-08 04:19 PM	

+="CN57463"	"Provision of queue management services"	="Medicare Australia"	01-Feb-08	="Computer services"	13-Dec-07	13-Dec-07	19379.99	=""	="Nexa Group Pty Ltd"	01-Feb-08 04:19 PM	

+="CN57464"	"Provision of Airconditioning Equipment"	="Medicare Australia"	01-Feb-08	="Heating and ventilation and air circulation"	13-Dec-07	13-Dec-07	20119.00	=""	="NST Airconditioning Services"	01-Feb-08 04:19 PM	

+="CN57465"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Public administration and finance services"	13-Dec-07	13-Dec-07	62102.70	=""	="GREDTA PTY LTD"	01-Feb-08 04:20 PM	

+="CN57466"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="General building construction"	13-Dec-07	31-Dec-07	91472.70	=""	="SCHIAVELLO (ACT) PTY LTD"	01-Feb-08 04:20 PM	

+="CN57467"	"Provision of Contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Accounting and auditing"	13-Dec-07	29-Feb-08	16302.52	=""	="HUDSON GLOBAL RESOURCES (AUST) P/L"	01-Feb-08 04:20 PM	

+="CN57468"	"Provision of Mail House Services"	="Medicare Australia"	01-Feb-08	="Mail and cargo transport"	11-Dec-07	11-Dec-07	24035.60	=""	="QM Technologies Pty Limited"	01-Feb-08 04:20 PM	

+="CN57469"	"Provision of Office Fit-out Services"	="Medicare Australia"	01-Feb-08	="Commercial and industrial furniture"	11-Dec-07	11-Dec-07	91097.60	=""	="SCHIAVELLO (ACT) PTY LTD"	01-Feb-08 04:20 PM	

+="CN57470"	"Provision of contractor (labour hire) services"	="Medicare Australia"	01-Feb-08	="Management advisory services"	11-Dec-07	11-Dec-07	14668.50	=""	="APIS CONSULTING GROUP"	01-Feb-08 04:20 PM	

+="CN57471"	" Supply of Helmet Mount Night Vision Goggles "	="Defence Materiel Organisation"	01-Feb-08	="Surveillance and detection equipment"	23-Jan-08	29-Feb-08	915333.10	=""	="Point Trading"	01-Feb-08 06:56 PM	

+="CN57472"	" Supply of Infrared Markers "	="Defence Materiel Organisation"	01-Feb-08	="Surveillance and detection equipment"	21-Jan-08	15-May-08	359040.00	=""	="Applied Engineering and Design"	01-Feb-08 07:10 PM	

+="CN57473-A1"	" Illuminator Infrared AN/PEQ 2A Spares "	="Defence Materiel Organisation"	01-Feb-08	="Surveillance and detection equipment"	24-Jan-08	30-Apr-08	82989.50	=""	="Owen International Pty Ltd"	01-Feb-08 07:22 PM	

+="CN57475"	"Consultancy services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Management advisory services"	31-Oct-07	15-Feb-08	35360.00	=""	="Buchan Consulting Pty Ltd"	02-Feb-08 01:48 PM	

+="CN57476"	"Consultancy services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Management advisory services"	28-Sep-07	30-Jun-08	35000.00	=""	="EcoAssist Pty Ltd"	02-Feb-08 01:51 PM	

+="CN57477"	"Provision of security guarding services"	="Australian Competition and Consumer Commission"	02-Feb-08	="Security and personal safety"	01-Jul-07	30-Jun-09	164517.64	="ACCC RFT2007/09"	="Chubb Security Personnel Pty Ltd"	02-Feb-08 02:05 PM	

+="CN57478-A1"	"Provision of office cleaning services and consumables"	="Australian Competition and Consumer Commission"	02-Feb-08	="Cleaning and janitorial services"	03-Dec-07	30-Nov-09	381333.06	=""	="TJ's Cleaning Services Canberra Pty Ltd"	02-Feb-08 02:16 PM 

--- /dev/null
+++ b/admin/partialdata/29Jun2008to01Jul2008valto.xls
@@ -1,1 +1,440 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN95343"	"Software Licences (previously gazetted on GaPS 1156058 and not migrated to Austender)"	="Centrelink"	30-Jun-08	="Software"	18-Jun-02	15-Sep-08	719953.66	=""	="Tower Technology Pty Ltd"	30-Jun-08 08:32 AM	

+="CN95344"	"Disruptive Pattern Camouflage Coats and Trousers purchased against Standing Offer 1001-153-25"	="Defence Materiel Organisation"	30-Jun-08	="Military uniforms"	27-Jun-08	21-Nov-08	4021028.97	="2480082"	="Australian Defence Apparel"	30-Jun-08 08:41 AM	

+="CN95345-A1"	"Relational Database Management System Administration Toolset (GaPS 1557786 - did not migrate to Austender)"	="Centrelink"	30-Jun-08	="Computer Equipment and Accessories"	23-Nov-05	27-Nov-10	2019600.00	=""	="Quest Software Pty Ltd"	30-Jun-08 08:53 AM	

+="CN95351"	"Professional Development"	="Australian Electoral Commission"	30-Jun-08	="Public sector manpower development services"	27-May-08	27-Jun-08	11825.00	=""	="Australian Public Service Commission"	30-Jun-08 09:27 AM	

+="CN95354-A1"	"IT contractor Services (GaPS Id 1552063, did not migrate)"	="Centrelink"	30-Jun-08	="Computer services"	24-Nov-05	23-Nov-08	547518.40	=""	="Peoplebank Australia Pty Ltd"	30-Jun-08 09:30 AM	

+="CN95350"	" Pouches requird for webbing "	="Defence Materiel Organisation"	30-Jun-08	="Harness goods"	17-Jun-08	30-Oct-08	448164.20	=""	="Crossfire Pty Ltd"	30-Jun-08 09:36 AM	

+="CN95358"	"Internal Audit"	="Australian Human Rights Commission"	30-Jun-08	="Audit services"	02-Apr-08	30-Apr-08	10560.00	=""	="Acumen Alliance"	30-Jun-08 09:39 AM	

+="CN95357"	"Design, typesetting and printing of annual report 2007/2008"	="Office of the Inspector-General of Intelligence and Security"	30-Jun-08	="Printed publications"	25-Jun-08	30-Oct-08	12816.10	=""	="Zoo Communications"	30-Jun-08 09:40 AM	

+="CN95353"	"Legal services - Counsel"	="Australian Securities and Investments Commission"	30-Jun-08	="Legal services"	10-Mar-08	30-Jun-08	10000.00	=""	="Davis, Felicity"	30-Jun-08 09:42 AM	

+="CN95360"	"Temporary Personnel Contract Renewal"	="Australian Securities and Investments Commission"	30-Jun-08	="Temporary personnel services"	03-Mar-08	30-May-08	61380.00	=""	="Software Cybernetics Pty Ltd"	30-Jun-08 09:47 AM	

+="CN95359"	"supply of hypodermic injection apparatus"	="Defence Materiel Organisation"	30-Jun-08	="Medical Equipment and Accessories and Supplies"	11-Mar-08	30-May-08	14630.00	=""	="BRAUN B AUSTRALIA"	30-Jun-08 09:48 AM	

+="CN95363"	"Contract Renewal of Temporary Personnel"	="Australian Securities and Investments Commission"	30-Jun-08	="Temporary personnel services"	03-Mar-08	30-Apr-08	62920.00	=""	="CPT Global"	30-Jun-08 09:53 AM	

+="CN95364-A1"	"IT Contractor Services (GaPS Id 1530079, did not migrate)"	="Centrelink"	30-Jun-08	="Computer services"	29-Aug-05	31-Aug-08	513312.80	=""	="Paxus Australia Pty Ltd"	30-Jun-08 09:57 AM	

+="CN95365-A1"	"Business Analyst"	="Australian Securities and Investments Commission"	30-Jun-08	="Personnel recruitment"	01-Feb-08	09-Apr-08	47822.50	=""	="Ajilon Australia Ltd"	30-Jun-08 09:58 AM	

+="CN95366"	" Pathways to performance conduct EL2 Leadership Program workshops. "	="Australian Taxation Office"	30-Jun-08	="Workshops"	18-Jun-08	31-Jul-08	21681.63	=""	="Pathways to Performance"	30-Jun-08 10:02 AM	

+="CN95367"	"Contract Renewal for Temporary Personnel"	="Australian Securities and Investments Commission"	30-Jun-08	="Temporary personnel services"	03-Dec-07	05-Feb-08	25520.00	=""	="Interpro Australia Pty Ltd"	30-Jun-08 10:03 AM	

+="CN95369"	"Contract Renewal of Temporary Personnel"	="Australian Securities and Investments Commission"	30-Jun-08	="Temporary personnel services"	14-Dec-07	07-Mar-08	34320.00	=""	="Interpro Australia Pty Ltd"	30-Jun-08 10:08 AM	

+="CN95368"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	30-Jun-08	="Aircraft"	30-Jun-08	15-Jul-08	21634.65	=""	="sikorsky aircraft australia ltd"	30-Jun-08 10:10 AM	

+="CN95361"	"Postage including mail out of Annual Social Justice and Native Title reports."	="Australian Human Rights Commission"	30-Jun-08	="Post"	01-Apr-08	30-Apr-08	20339.77	=""	="Australia Post"	30-Jun-08 10:10 AM	

+="CN95370-A1"	"IT Contractor Services (GaPS Id 1530082 did not migrate)"	="Centrelink"	30-Jun-08	="Computer services"	31-Aug-05	30-Aug-08	570169.60	=""	="Paxus Australia Pty Ltd"	30-Jun-08 10:14 AM	

+="CN95372"	"Forensic IT Services"	="Australian Securities and Investments Commission"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Dec-07	31-Mar-08	18568.00	=""	="Deloitte"	30-Jun-08 10:20 AM	

+="CN95373"	"Administration Staff"	="Australian Securities and Investments Commission"	30-Jun-08	="Personnel recruitment"	01-Jan-08	30-Jun-08	29839.30	=""	="Recruitment Solutions"	30-Jun-08 10:24 AM	

+="CN95374"	"SUPPLY OF HANDPIECE, DENTAL"	="Defence Materiel Organisation"	30-Jun-08	="Medical Equipment and Accessories and Supplies"	17-Jun-08	17-Jul-08	17719.48	=""	="ADEC AUSTRALIA"	30-Jun-08 10:29 AM	

+="CN95375"	"Test Analyst"	="Australian Securities and Investments Commission"	30-Jun-08	="Information technology consultation services"	11-Feb-08	09-May-08	41602.00	=""	="Talent2 Pty Ltd"	30-Jun-08 10:29 AM	

+="CN95376"	"Temporary Executive Support"	="Australian Securities and Investments Commission"	30-Jun-08	="Temporary personnel services"	04-Feb-08	03-May-08	20925.00	=""	="Law Solutions"	30-Jun-08 10:34 AM	

+="CN95377"	"Mailout of e-tax 2008 CD mailpacks. "	="Australian Taxation Office"	30-Jun-08	="Compact disk CD duplication and printing services"	30-Jun-08	15-Jul-08	111575.00	=""	="PMP Print Pty Ltd"	30-Jun-08 10:36 AM	

+="CN95378"	"Repair of Black Hawk Main Rotor blade."	="Defence Materiel Organisation"	30-Jun-08	="Military rotary wing aircraft"	30-Jun-08	31-Jul-08	91253.78	=""	="Sikorsky Aircraft Austalia Limited"	30-Jun-08 10:40 AM	

+="CN95379"	"Lease P/E - 31/7/08 Customer No. 361630"	="Australian Industrial Registry"	30-Jun-08	="Vehicle leasing"	25-Jun-08	08-Jul-08	50450.10	=""	="LEASE PLAN AUSTRALIA LIMITED"	30-Jun-08 10:41 AM	

+="CN95380"	"Fuel P/E - 31/5/08 Customer No. 361630"	="Australian Industrial Registry"	30-Jun-08	="Gasoline or Petrol"	25-Jun-08	08-Jul-08	13317.71	=""	="LEASE PLAN AUSTRALIA LIMITED"	30-Jun-08 10:41 AM	

+="CN95381"	"Transcript: 1/06/08 - 15/06/08"	="Australian Industrial Registry"	30-Jun-08	="Transcribing services"	26-Jun-08	30-Jun-08	21084.24	=""	="LEGAL TRANSCRIPTS"	30-Jun-08 10:41 AM	

+="CN95382"	"CMS Redevelopment - April 2008"	="Australian Industrial Registry"	30-Jun-08	="Maintenance or support fees"	25-Jun-08	26-Jun-08	59229.11	=""	="MCGIRR INFORMATION TECHNOLOGY"	30-Jun-08 10:42 AM	

+="CN95383"	"MVS Charges - May 2008 Account No: 218 1194 300"	="Australian Industrial Registry"	30-Jun-08	="Local telephone service"	27-Jun-08	30-Jun-08	35780.44	=""	="TELSTRA (VIC)"	30-Jun-08 10:42 AM	

+="CN95384"	"Property Operating Expenses - Jun 2008 Account No: AIR"	="Australian Industrial Registry"	30-Jun-08	="Property management"	24-Jun-08	27-Jun-08	1029809.56	=""	="UNITED GROUP"	30-Jun-08 10:42 AM	

+="CN95385"	"National Portfolio MGMT - June 2008 Account No: 1065718"	="Australian Industrial Registry"	30-Jun-08	="Property management"	26-Jun-08	30-Jun-08	12142.16	=""	="UNITED KFPW PTY LTD"	30-Jun-08 10:42 AM	

+="CN95386"	"Network cabling"	="Australian Industrial Registry"	30-Jun-08	="Network cable"	19-Jun-08	17-Jul-08	35024.00	=""	="STOWE AUSTRALIA PTY LTD"	30-Jun-08 10:42 AM	

+="CN95387"	"17 Cabinets and shelving"	="Australian Industrial Registry"	30-Jun-08	="Finish carpentry or cabinetry"	19-Jun-08	17-Jul-08	14627.97	=""	="PLANEX SALES"	30-Jun-08 10:43 AM	

+="CN95388"	"Lease P/E 30/6/08 Customer No. 361630"	="Australian Industrial Registry"	30-Jun-08	="Vehicle leasing"	11-Jun-08	15-Jun-08	49958.99	=""	="LEASE PLAN AUSTRALIA LIMITED"	30-Jun-08 10:43 AM	

+="CN95390"	"Fuel P/E 30/4/08 Customer No. 361630"	="Australian Industrial Registry"	30-Jun-08	="Gasoline or Petrol"	11-Jun-08	15-Jun-08	13221.85	=""	="LEASE PLAN AUSTRALIA LIMITED"	30-Jun-08 10:43 AM	

+="CN95391"	"Monitoring: 1/03/08 - 15/03/08"	="Australian Industrial Registry"	30-Jun-08	="Transcribing services"	17-Jun-08	17-Jun-08	16459.78	=""	="LEGAL TRANSCRIPTS"	30-Jun-08 10:44 AM	

+="CN95389"	"Electrical Works for MLC Relocation"	="Australian Securities and Investments Commission"	30-Jun-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	27-Jul-07	27-Jul-07	10433.50	=""	="Integrated Cabling Solutions"	30-Jun-08 10:44 AM	

+="CN95392"	"Monitoring: 16/03/08 - 31/03/08"	="Australian Industrial Registry"	30-Jun-08	="Transcribing services"	17-Jun-08	17-Jun-08	10849.70	=""	="LEGAL TRANSCRIPTS"	30-Jun-08 10:44 AM	

+="CN95393"	"Transcript: 16/05/08 - 31/05/08"	="Australian Industrial Registry"	30-Jun-08	="Transcribing services"	19-Jun-08	19-Jun-08	30426.14	=""	="LEGAL TRANSCRIPTS"	30-Jun-08 10:44 AM	

+="CN95394"	"CMS Redevelopment Project - 13/05/08 Online Help Text and Create Test Plan"	="Australian Industrial Registry"	30-Jun-08	="Maintenance or support fees"	17-Jun-08	17-Jun-08	16436.20	=""	="MCGIRR INFORMATION TECHNOLOGY"	30-Jun-08 10:45 AM	

+="CN95395"	"FIRST Software - 50% of Year 1 licence"	="Australian Industrial Registry"	30-Jun-08	="Library software"	13-Jun-08	01-Jul-08	10166.00	=""	="OPTIMUS PRIME PTY LTD"	30-Jun-08 10:45 AM	

+="CN95396"	"Mag Hi Bk E-Soft Aj Arm S/Sl 3 x 29 Customer No: 3AIR01"	="Australian Industrial Registry"	30-Jun-08	="Chairs"	11-Jun-08	30-Jun-08	10877.90	=""	="STEM INDUSTRIES PTY LTD"	30-Jun-08 10:45 AM	

+="CN94837"	"Supply of PVC Bottle, Plastic - PN: XX6504709, MC: 08071"	="Defence Materiel Organisation"	30-Jun-08	="Laboratory and Measuring and Observing and Testing Equipment"	26-May-08	10-Jul-08	13882.00	=""	="Millipore Aust Pty Ltd"	30-Jun-08 10:54 AM	

+="CN95398"	"Contractor"	="Australian Securities and Investments Commission"	30-Jun-08	="Information technology consultation services"	10-Dec-07	06-Jan-08	22028.00	=""	="Simiana, Dean"	30-Jun-08 10:57 AM	

+="CN95400"	"Contractor"	="Australian Securities and Investments Commission"	30-Jun-08	="Information technology consultation services"	01-Jan-08	30-Apr-08	55643.00	=""	="Greythorn"	30-Jun-08 11:02 AM	

+="CN95402"	"Supp8051 Supply of qty 600 - Tape, Insulation, Electrical, PN: ASTM D4388, MC: 81346, PN: 8051, MC: 81165.  "	="Defence Materiel Organisation"	30-Jun-08	="Electrical insulating tape"	24-Jun-08	29-Aug-08	10784.00	=""	="Aerospace Composites Pty Ltd"	30-Jun-08 11:09 AM	

+="CN95404"	"Interpreting services and translation of documents for Beijing Office of Legal Aid."	="Australian Human Rights Commission"	30-Jun-08	="Writing and translations"	24-Apr-08	12-May-08	10905.40	=""	="Jack Meng Immigration & Translation"	30-Jun-08 11:18 AM	

+="CN95406-A2"	" Annual sioftware licensing and maintenance payment "	="Centrelink"	30-Jun-08	="Software"	31-May-09	30-May-10	407027.00	=""	="Oracle Corporation Australia Pty Ltd"	30-Jun-08 11:31 AM	

+="CN95407"	"Data Services"	="Australian Crime Commission"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Nov-07	31-Jan-08	13046.00	="open"	="Vodafone Network Pty Ltd"	30-Jun-08 11:37 AM	

+="CN95410"	"Personnel Recruitment"	="Australian Crime Commission"	30-Jun-08	="Human resources services"	05-Jun-08	05-Sep-08	29715.84	=""	="Hays Personnel Services"	30-Jun-08 11:45 AM	

+="CN95411"	"Variation of Pre FMA Act contract for the provision of Information Technology services"	="Australian Securities and Investments Commission"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-May-08	30-Jun-08	25872.00	=""	="Nisling Pty LTd"	30-Jun-08 11:46 AM	

+="CN95414"	" Spirent hardware and software (GaPS 1512751 not migrated) "	="Department of Human Services"	30-Jun-08	="Computer Equipment and Accessories"	06-Jun-05	05-Jun-15	252494.00	=""	="Matrium Technologies Pty Ltd"	30-Jun-08 11:50 AM	

+="CN95412"	"Banking Services"	="Office of the Director of Public Prosecutions"	30-Jun-08	="Banking and investment"	01-Jul-04	31-Dec-08	48700.00	=""	="Reserve Bank of Australia"	30-Jun-08 11:56 AM	

+="CN95416-A2"	"Research and Advisory Service (GaPS 1546092 not migrated)"	="Centrelink"	30-Jun-08	="Computer services"	01-Oct-05	31-Mar-09	1204500.00	=""	="Gartner Australasia Pty Ltd"	30-Jun-08 12:17 PM	

+="CN95419-A1"	"ASIC Comms Room Audit and Remediation Project (Brisbane)"	="Australian Securities and Investments Commission"	30-Jun-08	="Audit services"	10-Apr-08	21-May-08	29425.00	=""	="Telco Asset Management"	30-Jun-08 12:25 PM	

+="CN95420-A1"	"ASIC Comms Room Audit and Remediation Project (Traralgon)"	="Australian Securities and Investments Commission"	30-Jun-08	="Audit services"	26-Mar-08	06-May-08	44264.00	=""	="Telco Asset Management"	30-Jun-08 12:29 PM	

+="CN95417"	"Audit Committee Services"	="Australian Crime Commission"	30-Jun-08	="Audit services"	06-Apr-08	06-Apr-10	20000.20	=""	="Bellewarra Investments"	30-Jun-08 12:36 PM	

+="CN95421"	"Supply and Lay Carpet Tiles for Level 25 - Sydney Registry"	="National Native Title Tribunal"	30-Jun-08	="Carpeting"	26-Mar-08	25-Apr-08	40821.50	=""	="Carpet Beyond"	30-Jun-08 12:37 PM	

+="CN95422"	"HostExplorer Maintenance 30/06/2008-30/06/2009"	="Department of Veterans' Affairs"	30-Jun-08	="Computer services"	30-Jun-08	30-Jun-09	20768.00	=""	="Open System Australia Pty Ltd"	30-Jun-08 12:43 PM	

+="CN95423"	"Express Meter Maintenance 30/6/2008-30/06/2009 x 1731 units.Express Software Manager Professional Maintenance 30/6/2008-30/06/2009 x 1200 units.  (Previous CAIRO ref: 107805)"	="Department of Veterans' Affairs"	30-Jun-08	="Computer services"	30-Jun-08	30-Jun-09	13888.00	=""	="Loop Technology Pty Ltd"	30-Jun-08 12:43 PM	

+="CN95424"	"Objectstar OAI Maintenance Renewal- 30/06/2008-30/06/2009"	="Department of Veterans' Affairs"	30-Jun-08	="Computer services"	30-Jun-08	30-Jun-09	74863.00	=""	="Fujitsu Australia Ltd"	30-Jun-08 12:43 PM	

+="CN95425"	"Design, tender documentation, tendering and administration of construction contract for the renovation of perimeter garden beds at the Perth War Cemetery."	="Department of Veterans' Affairs"	30-Jun-08	="Environmental management"	30-May-08	01-May-09	10000.00	=""	="Ronald Bodycoat Architect"	30-Jun-08 12:43 PM	

+="CN95426"	"Provision of tender administration and supervision services for the proposed drainage replacement project at the Bomana War Cemetery"	="Department of Veterans' Affairs"	30-Jun-08	="Building construction and support and maintenance and repair services"	14-Feb-08	30-Jun-08	13919.00	=""	="Cardno (PNG) Ltd"	30-Jun-08 12:43 PM	

+="CN95427"	"Replacement of existing drains and retaining walls at Bomana War Cemetery, Papua New Guinea."	="Department of Veterans' Affairs"	30-Jun-08	="Building construction and support and maintenance and repair services"	01-May-08	30-Jun-08	171646.00	=""	="C & M Engineers Ltd"	30-Jun-08 12:43 PM	

+="CN95428"	"Centrelink Panel IMU Contract Programmer: IMU-ICT096 Work Order DVAIMU2008/019"	="Department of Veterans' Affairs"	30-Jun-08	="Computer services"	28-Jun-08	30-Jan-09	118202.00	=""	="Paxus Australia Pty Ltd"	30-Jun-08 12:43 PM	

+="CN95429"	"Consultancy for the provision of an IT-specific Remuneration Survey and Strategic Advice Relating to the Engagement of DVA's IT Workforce"	="Department of Veterans' Affairs"	30-Jun-08	="Computer services"	15-Apr-08	28-Apr-08	13860.00	=""	="HEANEY, BLAYLOCK & ASSOCIATES PTY LTD"	30-Jun-08 12:43 PM	

+="CN95432-A2"	"Perform role of Probity Auditor to ICT Sourcing Program."	="Australian Taxation Office"	30-Jun-08	="Information technology consultation services"	26-May-08	30-Jun-11	350000.00	="08.128"	="PricewaterhouseCoopers"	30-Jun-08 12:58 PM	

+="CN95433"	"ASLAV PARTS - ELECTRONIC COMPONENTS ASSY"	="Department of Defence"	30-Jun-08	="Armoured fighting vehicles"	26-Jun-08	06-Mar-09	24386.01	=""	="GENERAL DYNAMICS LAND SYSTEMS"	30-Jun-08 01:01 PM	

+="CN95438"	"M113 PARTS - PRESSURE GUAGES"	="Department of Defence"	30-Jun-08	="Armoured fighting vehicles"	27-Jun-08	30-Aug-08	42096.05	=""	="TENIX DEFENCE"	30-Jun-08 01:11 PM	

+="CN95440"	"M113 PARTS - STAND TOP GRILLE ALUMINIUM"	="Department of Defence"	30-Jun-08	="Armoured fighting vehicles"	27-Jun-08	30-Aug-08	44462.70	=""	="TENIX DEFENCE"	30-Jun-08 01:18 PM	

+="CN95442"	"Recruitment & Payroll service in relation to contract of Communications & Knowledge Assistant"	="Australian Securities and Investments Commission"	30-Jun-08	="Personnel recruitment"	14-Apr-08	30-Jun-08	13053.00	=""	="DFP Recruitment Services"	30-Jun-08 01:19 PM	

+="CN95443"	"FUELTANKER AND  TRL REFURBISHMENT QTY 1"	="Department of Defence"	30-Jun-08	="Fuel tanks"	27-Jun-08	04-Oct-08	90589.05	=""	="G H VARLEY PTY LTD"	30-Jun-08 01:22 PM	

+="CN95439"	" Transporter Boxes Lockable "	="Australian Crime Commission"	30-Jun-08	="Safes"	20-Feb-08	30-Jun-08	13541.00	=""	="Yarra Valley Locksmiths"	30-Jun-08 01:30 PM	

+="CN95445-A1"	"ASIC Comms Room Audit and Remediation Project (Melbourne - Collins Street)"	="Australian Securities and Investments Commission"	30-Jun-08	="Audit services"	06-Mar-08	03-Apr-08	37642.00	=""	="Telco Asset Management"	30-Jun-08 01:46 PM	

+="CN95446"	"ASIC Comms Room Audit and Remediation Project (1MP Audit)"	="Australian Securities and Investments Commission"	30-Jun-08	="Audit services"	01-Nov-07	21-Dec-07	38500.00	=""	="Telco Asset Management"	30-Jun-08 01:50 PM	

+="CN95447"	"Centrelink Agent - Wilcannia, NSW"	="Centrelink"	30-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Murdi Paaki Regional Enterprise Corporation LTD"	30-Jun-08 01:52 PM	

+="CN95449-A1"	"ASIC Comms Room Audit and Remediatioin Project (Adelaide)"	="Australian Securities and Investments Commission"	30-Jun-08	="Audit services"	25-Jan-08	22-Feb-08	17105.00	=""	="Telco Asset Management"	30-Jun-08 01:56 PM	

+="CN95451"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 1936 IAW with Standing Offer PN7785"	="Defence Materiel Organisation"	30-Jun-08	="Aerospace systems and components and equipment"	27-Jun-08	31-Jul-08	10900.30	=""	="Goodrich Control Systems"	30-Jun-08 02:02 PM	

+="CN95452"	"Centrelink Agent - Quigley Street Night Shelter,QLD"	="Centrelink"	30-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	37630.21	=""	="Aboriginal & Islander Alcohol Relief Service LTD"	30-Jun-08 02:04 PM	

+="CN95454"	" REPAIRS AND MODS TO UNIMOG.  TOTAL OF 81.5 HRS LABOUR. "	="Department of Defence"	30-Jun-08	="Cargo trucks"	30-Jun-08	04-Jul-08	11596.91	=""	="MTU DETROIT DIESEL AUST PTY LTD"	30-Jun-08 02:08 PM	

+="CN95453"	"Repair/Modification of F/A-18 Generator Converter Unit S/No 0618 IAW Standing Offer PN7785"	="Defence Materiel Organisation"	30-Jun-08	="Aerospace systems and components and equipment"	27-Jun-08	31-Jul-08	56529.10	=""	="Goodrich Control Systems"	30-Jun-08 02:09 PM	

+="CN95455"	"Centrelink Agent - Menindee, NSW"	="Centrelink"	30-Jun-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Nyampa Aboriginal Housing Company LTD"	30-Jun-08 02:15 PM	

+="CN95403"	"Sleeping bags"	="Defence Materiel Organisation"	30-Jun-08	="Sleeping bags"	05-Jun-08	30-Jun-08	435600.00	=""	="Roman Camping Equipment"	30-Jun-08 02:20 PM	

+="CN95456-A1"	"Labour hire for Cairns Call Centre"	="Centrelink"	30-Jun-08	="Human resources services"	12-May-08	15-Aug-08	270000.00	=""	="Vedior Asia Pacific Pty Ltd"	30-Jun-08 02:40 PM	

+="CN95457"	"Advertising placement for Age Discrimination Campaign."	="Australian Human Rights Commission"	30-Jun-08	="Advertising"	08-Jul-08	26-Aug-08	37919.20	=""	="HMA Blaze Pty Ltd"	30-Jun-08 02:42 PM	

+="CN95458"	"6 riverbed Steelhead Appliance 200 and Gold Level Annual support."	="National Native Title Tribunal"	30-Jun-08	="Computer Equipment and Accessories"	18-Mar-08	17-Mar-09	48518.65	=""	="Expanse IT"	30-Jun-08 02:55 PM	

+="CN95460"	"Movecare domestic and car Transport - M & S Price - Qld to Perth WA"	="National Native Title Tribunal"	30-Jun-08	="Bulk material carriers"	20-Dec-07	21-Dec-07	10556.73	=""	="Allied Pickford (Sirva Pty Ltd)"	30-Jun-08 03:06 PM	

+="CN95461"	"MADE TO MEASURE UNIFORMS"	="Defence Materiel Organisation"	30-Jun-08	="Military uniforms"	12-Feb-08	27-Jun-08	478701.58	=""	="V&F TAILORING"	30-Jun-08 03:07 PM	

+="CN95462-A1"	"Provision of JobReady + V8 Software"	="CRS Australia"	30-Jun-08	="Software"	09-Jun-08	09-Dec-08	11990.00	=""	="Pet Tech Pty Ltd"	30-Jun-08 03:08 PM	

+="CN72474"	"Production of online video training resources."	="Australian Communications and Media Authority (ACMA)"	30-Jun-08	="Video production services"	23-Mar-08	06-Jun-08	29755.00	="07ACMA064"	="Global Vision Media Pty Ltd"	30-Jun-08 03:11 PM	

+="CN95463"	"MADE TO MEASURE UNIFORMS"	="Defence Materiel Organisation"	30-Jun-08	="Military uniforms"	12-Feb-08	27-Jun-08	116799.99	=""	="BERENSEN TAILORS"	30-Jun-08 03:20 PM	

+="CN72464"	"Head contractor servicesfor ACMA Parramatta Regional Office fitout."	="Australian Communications and Media Authority (ACMA)"	30-Jun-08	="Building construction management"	02-Apr-08	14-May-08	197132.10	="07ACMA073"	="Metrofit Interiors Pty Ltd"	30-Jun-08 03:23 PM	

+="CN95464"	"MADE TO MEASURE UNIFORMS"	="Defence Materiel Organisation"	30-Jun-08	="Military uniforms"	12-Feb-08	27-Jun-08	997374.99	=""	="AUSTRALIAN DEFENCE APPAREL"	30-Jun-08 03:28 PM	

+="CN95465"	"Ops Mgr Server Listed Lic/SA Pack MVL and Ops Mgr Ent Ops Mgmt Lic and Lic All."	="National Native Title Tribunal"	30-Jun-08	="License management software"	15-Apr-08	15-May-08	34336.34	=""	="DATA 3"	30-Jun-08 03:30 PM	

+="CN95469"	"Provision of Information Technology Software"	="Department of Immigration and Citizenship"	30-Jun-08	="Software"	30-Jun-08	30-Jun-09	16484.00	=""	="Quest Software Pty Ltd"	30-Jun-08 03:32 PM	

+="CN72223-A6"	"Provision of warehousing and distribution services for ACMA community education resources."	="Australian Communications and Media Authority (ACMA)"	30-Jun-08	="Warehouse stores"	08-Apr-08	31-Mar-10	169520.55	="07ACMA035"	="National Mailing and Marketing Pty Ltd"	30-Jun-08 03:36 PM	

+="CN95399"	"ROLLER CS563E"	="Defence Materiel Organisation"	30-Jun-08	="Earth moving machinery"	19-Jun-08	20-Jun-08	126500.00	=""	="HASTINGS DEERING AUSTRALIA"	30-Jun-08 03:39 PM	

+="CN72191"	"Provision of business cards for ACMA"	="Australian Communications and Media Authority (ACMA)"	30-Jun-08	="Business cards"	01-Apr-07	30-Jun-08	10000.00	=""	="Homestead Press Pty Ltd"	30-Jun-08 03:44 PM	

+="CN95470"	"made to measure Uniforms"	="Defence Materiel Organisation"	30-Jun-08	="Military uniforms"	22-Aug-07	28-Feb-08	162541.39	=""	="AUSTRALIAN WEAVING MILLS"	30-Jun-08 03:54 PM	

+="CN95472"	"Security upgrade to the Brisbane SAAL facility as per Protective Security Advisory directives in conjunction with the terms and conditions contained in S/O 9702-026-105."	="Defence Materiel Organisation"	30-Jun-08	="Military rotary wing aircraft"	28-Apr-08	10-Jul-08	163403.63	=""	="Sikorsky Aircraft Austalia Limited"	30-Jun-08 04:14 PM	

+="CN95473"	"DOZER D5G"	="Defence Materiel Organisation"	30-Jun-08	="Earth moving machinery"	19-Jun-08	20-Jun-08	181500.00	=""	="HASTINGS DEERING AUSTRALIA"	30-Jun-08 04:14 PM	

+="CN95475-A1"	" ECM Hardware Infrastructure (HP Servers and Disks) "	="Australian Securities and Investments Commission"	30-Jun-08	="High end computer servers"	03-Mar-08	01-Apr-08	66452.27	=""	="Fujitsu Australia Limited"	30-Jun-08 04:33 PM	

+="CN95478"	"CPE005026-1 - Data Warehousing"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	11-Jun-08	11-Jun-08	53000.00	=""	="E Fab Pty Ltd"	30-Jun-08 04:36 PM	

+="CN95479"	"CPO022918 - Digital Recording Device"	="Australian Customs and Border Protection Service"	30-Jun-08	="Components for information technology or broadcasting or telecommunications"	23-Apr-08	01-Jun-08	13756.00	=""	="TPR Systems"	30-Jun-08 04:37 PM	

+="CN95480"	"CPO022904 - Training Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	01-Feb-08	03-Mar-08	28875.00	=""	="Future Train Pty Ltd"	30-Jun-08 04:37 PM	

+="CN95481-A1"	"07/2351 - Performance Consultancy"	="Australian Customs and Border Protection Service"	30-Jun-08	="Business and corporate management consultation services"	01-Nov-07	30-Jun-08	28000.00	=""	="Dr Tony Mansfield"	30-Jun-08 04:37 PM	

+="CN95482"	"CPO022996 - Training Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	17-Mar-08	30-May-08	17160.00	=""	="Gutteridge Haskins & Davey Pty Ltd"	30-Jun-08 04:37 PM	

+="CN95483"	"CPO002943 - Vehicle Safety Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Motor vehicles"	11-Jun-08	24-Jun-08	15320.40	=""	="Harzard Systems"	30-Jun-08 04:37 PM	

+="CN95484"	"CPO023012 - Construction Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="General building construction"	30-May-08	11-Jun-08	13156.00	=""	="Spirit Pacific Constructions"	30-Jun-08 04:38 PM	

+="CN95485"	"CPO021299 - Construction Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="General building construction"	02-May-08	11-Jun-08	23584.00	=""	="Spirit Pacific Constructions"	30-Jun-08 04:38 PM	

+="CN95487-A1"	"08/3000 - Gardening Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Cleaning and janitorial services"	01-Feb-05	31-Jan-09	22292.40	=""	="Clements Gardening Services"	30-Jun-08 04:38 PM	

+="CN95488"	"CPO023047 - Recruiting Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	31-May-08	28006.00	=""	="AusCheck"	30-Jun-08 04:38 PM	

+="CN95489"	"CPE002969-9 - Legislative Instruments"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-May-08	16639.48	=""	="Attorney Generals Department"	30-Jun-08 04:38 PM	

+="CN95490"	"CPO020825 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	16-May-08	69302.50	=""	="Fulcrum Management"	30-Jun-08 04:39 PM	

+="CN95491"	"CPO021538 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	12-May-08	68806.44	=""	="Apple Centre MAC 1"	30-Jun-08 04:39 PM	

+="CN95492"	"08/2728 - Evaluation Services (CPE004816-1)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	30-Jun-08	176000.00	=""	="Unisys Australia Pty Ltd (ACT)"	30-Jun-08 04:39 PM	

+="CN95493-A1"	"07/2419 - Evaluation Services (CPE005022-1) MOU05/1129"	="Australian Customs and Border Protection Service"	30-Jun-08	="Business and corporate management consultation services"	01-Dec-07	30-Jun-08	198000.00	=""	="Department of Defence"	30-Jun-08 04:39 PM	

+="CN95494"	"08/2792 - IT Support Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Apr-08	30-Jun-08	86500.00	=""	="IBM Global Services Australia Ltd"	30-Jun-08 04:40 PM	

+="CN95495"	"08/2826 - Training Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	19-May-08	30-Jun-08	27775.00	=""	="Diversity at Work"	30-Jun-08 04:40 PM	

+="CN95496"	"08/2731 - Training Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	12-May-08	30-Jun-08	29150.00	=""	="Future Train Pty Ltd"	30-Jun-08 04:40 PM	

+="CN95497"	"CPO023248 - Supply of Forklift"	="Australian Customs and Border Protection Service"	30-Jun-08	="Material handling machinery and equipment"	01-Jun-08	13-Jun-08	20097.00	=""	="Greg Maver Pty Ltd"	30-Jun-08 04:40 PM	

+="CN95498"	"CPE005071-1 - Corporate Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	17-Sep-08	50000.00	=""	="Oakton"	30-Jun-08 04:40 PM	

+="CN95499"	"CPO022256 - Training Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	10-Jun-08	11-Jun-08	12732.50	=""	="Oracle"	30-Jun-08 04:40 PM	

+="CN95500"	"CPO023230 - Provision of Customs Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Jul-07	30-Jun-08	14976.00	=""	="Australian Federal Police"	30-Jun-08 04:41 PM	

+="CN95501"	"CPO023231 - Provision of Customs Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Jul-07	30-Jun-08	14976.00	=""	="Australian Federal Police"	30-Jun-08 04:41 PM	

+="CN95502"	"CPO023232 - Provision of Customs Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Jul-07	30-Jun-08	14976.00	=""	="Australian Federal Police"	30-Jun-08 04:41 PM	

+="CN95503"	"CPO023233 - Provision of Customs Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Jul-07	30-Jun-08	14976.00	=""	="Australian Federal Police"	30-Jun-08 04:41 PM	

+="CN95504"	"CPO023164 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	30-Jun-08	="Furniture and Furnishings"	16-Jun-08	30-Jun-08	34611.50	=""	="Corporate Express Australia Ltd"	30-Jun-08 04:42 PM	

+="CN95505"	"08/2819 - Software License (CPO023247)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Computer services"	18-Jun-08	30-Jun-10	213345.00	=""	="Cognos Pty Ltd"	30-Jun-08 04:42 PM	

+="CN95506"	"CPO022504 - Supply of Software"	="Australian Customs and Border Protection Service"	30-Jun-08	="Computer services"	27-May-08	30-Jun-08	34282.00	=""	="Bemac Security"	30-Jun-08 04:42 PM	

+="CN95507"	"CPO023294 - Supply of Office Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	19-Jun-08	19-Jun-08	12984.00	=""	="ESC Technology Pty Ltd"	30-Jun-08 04:42 PM	

+="CN95508"	"CPE005085-1 - Supply of Office Furniture"	="Australian Customs and Border Protection Service"	30-Jun-08	="Furniture and Furnishings"	01-Jun-08	30-Jun-08	35398.00	=""	="The Living Edge Group Pty Ltd"	30-Jun-08 04:42 PM	

+="CN95509-A4"	"08/2628 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Surveillance and detection equipment"	04-Jun-08	30-Jun-11	1850701.65	=""	="Smiths Detection Australia Pty Ltd"	30-Jun-08 04:42 PM	

+="CN95510-A2"	"07/2224 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Electronic reference material"	04-Jun-08	03-Jun-11	849970.00	=""	="Smiths Detection Australia Pty Ltd"	30-Jun-08 04:43 PM	

+="CN95511"	"CPO023276 - Maintenance of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	18-Jun-08	19-Jun-08	29744.00	=""	="Australian Radiation Services"	30-Jun-08 04:43 PM	

+="CN95512"	"08/2871 - Training Services (CPE004970-1)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	03-May-08	30-Jul-08	56500.00	=""	="Diversity at Work"	30-Jun-08 04:43 PM	

+="CN95513-A2"	"08/2756 - Training Services (CPE005050-1)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Business and corporate management consultation services"	01-May-08	30-Apr-09	53350.00	=""	="Yellow Edge Pty Ltd"	30-Jun-08 04:43 PM	

+="CN95514"	"08/2609 - Aviation Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Transportation and Storage and Mail Services"	03-Mar-08	17-Mar-08	209375.66	=""	="Defence Services"	30-Jun-08 04:44 PM	

+="CN95515"	"CPO019866 - Relocation of Radio Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	25-Feb-08	30-Jun-08	12356.08	=""	="Kordia Pty Ltd"	30-Jun-08 04:44 PM	

+="CN95516"	"07/2193 - Data Analysis (CPO022682)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Aug-07	01-Feb-08	33000.00	=""	="Australian Fisheries Management Authority"	30-Jun-08 04:44 PM	

+="CN95517"	"CPO022807 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	05-Jun-08	20-Jun-08	52692.20	=""	="ComputerCorp"	30-Jun-08 04:44 PM	

+="CN95518"	"CPO023450 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	30-Jun-08	="Clothing"	23-Jun-08	01-Aug-08	10887.80	=""	="SF Corporate"	30-Jun-08 04:44 PM	

+="CN95519"	"CPO023409 - Supply of Operations Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	20-Jun-08	20-Jun-08	10030.90	=""	="Pro K9 Supplies"	30-Jun-08 04:44 PM	

+="CN95520"	"CPO023151 - Supply of Communications Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	11-Jun-08	13-Jun-08	26884.00	=""	="Headset Solutions Pty Ltd"	30-Jun-08 04:44 PM	

+="CN95521"	"CPO023420 - Construction Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="General building construction"	20-Jun-08	20-Aug-08	11330.00	=""	="Topline Partitions & Interiors"	30-Jun-08 04:44 PM	

+="CN95522-A2"	"08/2603 - Supply & Maintenance Printers and MFD's"	="Australian Customs and Border Protection Service"	30-Jun-08	="Office machines and their supplies and accessories"	20-May-08	20-Aug-11	3385533.33	=""	="Fuji Zerox Australia"	30-Jun-08 04:45 PM	

+="CN95523"	"CPO023469 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	11-Jul-08	16478.00	=""	="Chubb Security Services Pty Ltd"	30-Jun-08 04:45 PM	

+="CN95524"	"CPO023278 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	23-Jun-08	14950.10	=""	="Vision Technology"	30-Jun-08 04:45 PM	

+="CN95525"	"08/2824 - Cad Drawing Services (CPO023216)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	17-Jun-08	30-Jun-08	19404.00	=""	="Architecture Collective"	30-Jun-08 04:45 PM	

+="CN95526"	"CPO022620 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	23-Jun-08	52838.50	=""	="Smiths Detection Australia Pty Ltd"	30-Jun-08 04:45 PM	

+="CN95527"	"CPO023199 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	23-Jun-08	25150.40	=""	="Smiths Detection Australia Pty Ltd"	30-Jun-08 04:45 PM	

+="CN95528"	"CPE002796-14 - Interrogation of National Names Index"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	13401.85	=""	="CRIMTRAC"	30-Jun-08 04:45 PM	

+="CN95529"	"CPE004566-1 - Supply of Security Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	20-Jun-08	12078.00	=""	="Chubb Security Services Pty Ltd"	30-Jun-08 04:45 PM	

+="CN95530"	"CPO023562 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	30-Jun-08	="Clothing"	24-Jun-08	04-Aug-08	10736.00	=""	="SF Corporate"	30-Jun-08 04:46 PM	

+="CN95531"	"08/2700 - Cleaning Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Cleaning and janitorial services"	01-Jun-08	31-May-11	38029.68	=""	="Kerrie's K9 Care"	30-Jun-08 04:46 PM	

+="CN95532"	"CPO023534 - Market Research"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	23-Jun-08	25-Jun-08	27500.00	=""	="KAZ Group Pty Ltd"	30-Jun-08 04:46 PM	

+="CN95533-A1"	"08/2525 - Cultural Heritage Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Business and corporate management consultation services"	23-Jun-08	30-Jun-09	200000.00	=""	="Context Pty Ltd"	30-Jun-08 04:46 PM	

+="CN95534"	"CPO023446 - Software Licensing"	="Australian Customs and Border Protection Service"	30-Jun-08	="Computer services"	23-Jun-08	26-Jun-08	46292.35	=""	="Dimension Data Australia Pty Ltd"	30-Jun-08 04:46 PM	

+="CN95535"	"CPO023664 - Supply of Detection Equipment"	="Australian Customs and Border Protection Service"	30-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	26-Jun-08	57596.00	=""	="Australian Nuclear Science & Technology Organisation"	30-Jun-08 04:46 PM	

+="CN95539"	"CPE005057-1 - Fuel"	="Australian Customs and Border Protection Service"	30-Jun-08	="Fuels"	03-Jun-08	03-Jun-08	10707.51	=""	="Australian Fuel Distributors"	30-Jun-08 04:47 PM	

+="CN95544"	"CPE005092-1"	="Australian Customs and Border Protection Service"	30-Jun-08	="Fuels"	12-Jun-08	12-Jun-08	19205.77	=""	="Australian Fuel Distributors"	30-Jun-08 04:48 PM	

+="CN95548"	"CPO023622 - Interpretor Services"	="Australian Customs and Border Protection Service"	30-Jun-08	="Human resources services"	01-Jun-07	30-Apr-08	28362.00	=""	="Australian Federal Police"	30-Jun-08 04:48 PM	

+="CN95549"	"08/3057 - Training Services (CPO023545-CPO023554)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	16-Jun-08	11-Sep-08	60079.99	=""	="APSC"	30-Jun-08 04:49 PM	

+="CN95550"	"08/2766 - Training Services (CPO023589-CPO023587)"	="Australian Customs and Border Protection Service"	30-Jun-08	="Education and Training Services"	16-Jun-08	11-Sep-08	173257.80	=""	="Saville & Holdsworth Australia Pty Ltd"	30-Jun-08 04:49 PM	

+="CN95552"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	15-Feb-08	30-Jun-08	125000.00	="FIN 05 CRP 004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Jun-08 05:08 PM	

+="CN95553"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	12-May-08	27-Jun-08	15321.60	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	30-Jun-08 05:08 PM	

+="CN95554"	"Consultancy Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	08-Mar-09	14543.76	=""	="HEWLETT PACKARD AUSTRALIA LIMITED"	30-Jun-08 05:08 PM	

+="CN95555"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	30-Jun-08	31-Dec-08	138000.00	="N/A"	="COLLECTIVE RESOURCES IT RECRUITMENT"	30-Jun-08 05:08 PM	

+="CN95556"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	31-Oct-08	87600.00	="FIN O5 CRP 004-37"	="CLARIUS GROUP LIMITED"	30-Jun-08 05:08 PM	

+="CN95557"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	26-Jun-09	210000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	30-Jun-08 05:08 PM	

+="CN95558"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	26-Jun-09	237000.00	="FIN 05CRP004-39"	="GREYTHORN PTY LTD"	30-Jun-08 05:08 PM	

+="CN95559"	"Capital Expenditure - Furniture & Fittings"	="Department of Finance and Deregulation"	30-Jun-08	="Furniture and Furnishings"	17-Jun-08	31-Aug-08	16237.10	="0"	="GREGORY COMMERCIAL FURNITURE"	30-Jun-08 05:09 PM	

+="CN95560"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	31-Aug-08	131441.00	="0"	="DARONMONT TECHNOLOGIES PTY LTD"	30-Jun-08 05:09 PM	

+="CN95561"	"Property Management Services"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	58747.92	="0"	="UNITED GROUP SERVICES - 559472295"	30-Jun-08 05:09 PM	

+="CN95562"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	07-Jul-08	05-Sep-08	12942.00	="FIN05/FeS004"	="CHANDLER MACLEOD CONSULTANTS LTD"	30-Jun-08 05:09 PM	

+="CN95563"	"Minor Capital Acquisitions"	="Department of Finance and Deregulation"	30-Jun-08	="Furniture and Furnishings"	18-Jun-08	22-Aug-08	16237.10	="0"	="GREGORY COMMERCIAL FURNITURE"	30-Jun-08 05:09 PM	

+="CN95564"	"Minor Capital Acquisitions"	="Department of Finance and Deregulation"	30-Jun-08	="Furniture and Furnishings"	19-Jun-08	05-Sep-08	15444.00	="0"	="UCI PROJECTS PTY LTD"	30-Jun-08 05:09 PM	

+="CN95565"	"Training & Education Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Education and Training Services"	18-Jun-08	31-Jul-08	41556.00	="0"	="WIZARD COMPUTER TRAINING"	30-Jun-08 05:09 PM	

+="CN95566"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	17-Jul-08	10000.00	="PO4832"	="UNIFY SOLUTIONS PTY LTD"	30-Jun-08 05:09 PM	

+="CN95567"	"Training & Education Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Education and Training Services"	19-Jun-08	31-Jul-08	13851.00	="0"	="WIZARD COMPUTER TRAINING"	30-Jun-08 05:10 PM	

+="CN95568"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	30-Jun-08	365976.59	="FIN 06 FES 002"	="ZALLCOM PTY LTD"	30-Jun-08 05:10 PM	

+="CN95569"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Jun-09	276848.00	="000000000000000"	="STRATAGEM"	30-Jun-08 05:10 PM	

+="CN95570"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	19-Jun-08	30-Jun-08	46378.29	="po4707"	="CERULEAN SOLUTIONS LTD"	30-Jun-08 05:10 PM	

+="CN95571"	"Communication Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	20-Jun-08	30-Jun-08	33000.00	=""	="YLESS4U PTY LTD"	30-Jun-08 05:10 PM	

+="CN95572"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-08	24090.00	=""	="PRICEWATERHOUSECOOPERS- 833468126"	30-Jun-08 05:10 PM	

+="CN95573"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	26-Sep-08	62000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Jun-08 05:10 PM	

+="CN95574"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-Jun-08	30-Jun-08	22992.00	="po5246"	="OPSCENTRE PTY LTD"	30-Jun-08 05:10 PM	

+="CN95575"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	23-Jun-08	30-Jun-08	55916.00	="po5445"	="OPSCENTRE PTY LTD"	30-Jun-08 05:11 PM	

+="CN95576"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	30-Jun-08	25755.40	="PO5336"	="DELL COMPUTER PTY LIMITED"	30-Jun-08 05:11 PM	

+="CN95577"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	28-Jun-08	30-Jan-09	117000.00	="FIN05 CRP004-37"	="CLARIUS GROUP LIMITED"	30-Jun-08 05:11 PM	

+="CN95578"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	30-Jun-08	19700.00	="FIN06 FES002"	="INSIGHT"	30-Jun-08 05:11 PM	

+="CN95579"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	24-Jun-08	30-Jun-08	189028.55	="po5272"	="DIMENSION DATA AUSTRALIA PTY LTD"	30-Jun-08 05:11 PM	

+="CN95580"	"Contractor Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	26-Jun-09	17204.00	="FIN05CRP004-35"	="OAKTON AA SERVICES PTY LTD"	30-Jun-08 05:11 PM	

+="CN95581"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	25-Jun-08	30-Jun-08	17000.00	="0"	="FIBRE OPTIC CONNECTIONS"	30-Jun-08 05:12 PM	

+="CN95582"	"Legal Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	30-Dec-08	46750.00	="N/A"	="MINTER ELLISON - ACT"	30-Jun-08 05:12 PM	

+="CN95583"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	30-Jun-08	14-Jul-08	35026.20	="N/A"	="NSW DEPARTMENT OF COMMERCE"	30-Jun-08 05:12 PM	

+="CN95584"	"Consultancy Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	26-Jun-08	31-Jul-08	27700.00	="N/A"	="KPMG AUSTRALIA"	30-Jun-08 05:12 PM	

+="CN95585"	"Consultancy Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Information Technology Broadcasting and Telecommunications"	20-Jun-08	21-Jul-08	22992.00	="PO5246"	="OPSCENTRE PTY LTD"	30-Jun-08 05:12 PM	

+="CN95586"	"Legal Costs"	="Department of Finance and Deregulation"	30-Jun-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	30-Jun-08	125000.00	="0"	="DLA PHILLIPS FOX LAWYERS"	30-Jun-08 05:12 PM	

+="CN95587-A3"	"High level review services for Change Program"	="Australian Taxation Office"	30-Jun-08	="Information technology consultation services"	10-Jun-08	30-Jun-09	100675.93	="08.111"	="Aquitaine Consulting"	30-Jun-08 05:19 PM	

+="CN95588"	"Centrelink Agent."	="Centrelink"	30-Jun-08	="Information services"	01-Jul-08	30-Jun-09	16302.26	=""	="Mid Murray Community Support Centre"	30-Jun-08 05:36 PM	

+="CN95589"	"Centrelink Agent services at Margaret River, WA"	="Centrelink"	30-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	49129.86	=""	="The Trustee for The Casella Family Trust"	30-Jun-08 05:46 PM	

+="CN95590"	"Centrelink Agent services at Bridgetown, WA"	="Centrelink"	30-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	34031.60	=""	="Bridgetown Telecentre Inc"	30-Jun-08 06:06 PM	

+="CN95591"	"Centrelink Agent services at Manjimup, WA"	="Centrelink"	30-Jun-08	="Business administration services"	01-Jul-08	30-Jun-09	55363.60	=""	="Volunteer Resource Centre Manjimup Inc"	30-Jun-08 06:21 PM	

+="CN95592"	"Probity Advice on Tender Process"	="Professional Services Review"	30-Jun-08	="Temporary clerical or administrative assistance"	10-Feb-08	30-Jun-08	42240.00	=""	="David Jess and Associates Pty Ltd"	30-Jun-08 09:13 PM	

+="CN95595"	"Multifunctional photocopier device"	="Professional Services Review"	30-Jun-08	="Multifunction machines"	21-Feb-08	21-Feb-08	71500.00	=""	="Konica Minolta"	30-Jun-08 09:39 PM	

+="CN95597"	" Computers and Laptops "	="Professional Services Review"	30-Jun-08	="Personal computers"	15-May-08	15-May-08	69724.23	=""	="Corporate Express"	30-Jun-08 09:53 PM	

+="CN95599"	" MOTOR VEHICLE PARTS "	="Department of Defence"	01-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Jul-08	31-Jul-08	16025.56	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	01-Jul-08 08:17 AM	

+="CN95601"	" MOTOR VEHICLE PARTS "	="Department of Defence"	01-Jul-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Jun-08	31-Jul-08	16982.46	=""	="MERCEDES-BENZ AUSTRALIA/PACIFIC"	01-Jul-08 08:21 AM	

+="CN95610"	"SPSS Annual Maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	01-Jul-08	30-Jun-09	19899.72	=""	="SPSS AUSTRALASIA Pty Ltd"	01-Jul-08 10:05 AM	

+="CN95611"	"LAGs hotline staffing"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	07-Jan-08	30-Jun-08	40770.99	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	01-Jul-08 10:05 AM	

+="CN95612"	"Career Transition and Support Centre"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Human resources services"	25-Jun-08	25-Jun-08	61600.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:06 AM	

+="CN95613"	"HAYES -Temporary staffing services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	31-Jul-08	15500.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:06 AM	

+="CN95614"	"Collective Resources - IT staffing services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	30-Sep-08	48642.00	="TRS06/017"	="Collective Resources IT Recruitment"	01-Jul-08 10:06 AM	

+="CN95615"	"Provision of analysis of specified fuel"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Professional engineering services"	28-May-08	30-Jun-08	57805.00	=""	="Orbital Australia Pty Ltd"	01-Jul-08 10:06 AM	

+="CN95617"	"Lease motor vehicle Running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	11-Oct-06	11-Oct-08	20324.70	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:06 AM	

+="CN95618"	"Recruitment Services SES Band 1 General"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	30-May-08	30-Jun-08	12160.50	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:07 AM	

+="CN95619"	"Printing - Marine Report 243"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Office supplies"	15-May-08	15-Jun-08	10225.60	=""	="Pirion Logistics Pty Ltd"	01-Jul-08 10:07 AM	

+="CN95620"	"FME for ESRI"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="NAVIGATE PTY LTD"	01-Jul-08 10:07 AM	

+="CN95621"	"Review of Airports Branch"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Accounting and auditing"	24-Jun-08	31-Jul-08	71500.00	="TRS06/037"	="PRICEWATERHOUSECOOPERS"	01-Jul-08 10:07 AM	

+="CN95616"	" Cloth knitted "	="Defence Materiel Organisation"	01-Jul-08	="Specialty fabrics or cloth"	27-Jun-08	10-Mar-09	149380.00	=""	="Melba Industries"	01-Jul-08 10:07 AM	

+="CN95622"	"Services location and salvage"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Marine transport"	24-Jun-08	25-Jul-08	495000.00	=""	="Svitzer Salvage Australasia P/L"	01-Jul-08 10:07 AM	

+="CN95623"	"Report on Future Fuels and Vehicles"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	12-Jun-08	30-Jun-08	39308.50	=""	="CSIRO"	01-Jul-08 10:08 AM	

+="CN95624"	"Fees for attendance at AC meetings"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Accounting and auditing"	31-Jul-07	31-Jul-08	14999.99	="TRS08/207"	="Paul McGrath"	01-Jul-08 10:08 AM	

+="CN95625"	"Audio visual requirements for Transport Colloquium Audio visual requirements for Regional Perspectiv"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	17-Jun-08	27-Jun-08	23314.50	=""	="One Vision Pty Ltd"	01-Jul-08 10:08 AM	

+="CN95626"	"Autoliv sled tests"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Professional engineering services"	25-Jun-08	30-Jun-08	64130.00	=""	="AUTOLIV AUSTRALIA PTY LTD"	01-Jul-08 10:08 AM	

+="CN95627"	"Consultancy Services of Professor Paul 't Hart to complete discussion exercise with TSWG."	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Passenger transport"	09-Jun-08	30-Jun-08	17600.00	=""	="Australian National University"	01-Jul-08 10:08 AM	

+="CN95628"	"Engagement of contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	23-Jun-08	24-Oct-08	34980.00	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:08 AM	

+="CN95629"	"Contractor Services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	30-Sep-08	44017.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:08 AM	

+="CN95630"	"Contractor Services"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Community and social services"	01-Jul-08	31-Oct-08	58823.60	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	01-Jul-08 10:09 AM	

+="CN95631"	"Service Agreement for the Supply of ID plates"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Transportation components and systems"	24-May-08	24-May-09	29999.99	=""	="NIDDRIE NAMEPLATES PTY LTD"	01-Jul-08 10:09 AM	

+="CN95632"	"Business Analyst"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	82368.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:09 AM	

+="CN95633"	"Senior Engineer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	95251.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:09 AM	

+="CN95634"	"Legal Services Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	23-Jun-08	30-Jun-09	31289.50	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:09 AM	

+="CN95635"	"Legal Service Expenditure"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	24-Jun-08	30-Jun-09	13165.90	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:09 AM	

+="CN95636"	"Landside vehicle parking - Hobart Landside vehicle parking - Hobart"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Transport operations"	01-Jul-06	30-Jun-08	40538.30	=""	="Hobart International Airport P/L"	01-Jul-08 10:09 AM	

+="CN95638"	"Consultancy Services to Assist in design of ITSAP"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	26-Jun-08	30-Sep-08	218000.00	="TRS07/209"	="SMEC INTERNATIONALPTY LIMITED"	01-Jul-08 10:10 AM	

+="CN95639"	"Lease of vehicle"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	27-Jun-08	27-Jun-10	29364.46	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:10 AM	

+="CN95637-A1"	"ECM Software Licenses (Windows, VMWARE, SQL)"	="Australian Securities and Investments Commission"	01-Jul-08	="Software"	03-Mar-08	01-Apr-08	34868.84	=""	="Fujitsu Australia Limited"	01-Jul-08 10:10 AM	

+="CN95641"	"Legal Services Expenditure 6791"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	30-Jun-08	02-Jul-08	14832.01	="TRS06/175"	="DLA PHILLIPS FOX"	01-Jul-08 10:10 AM	

+="CN95643"	"LAFIA FOR SES officers"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Specialised educational services"	01-Jul-08	30-Nov-08	79500.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:11 AM	

+="CN95644"	"Legal Services Expenditure 7003 Legal Services Expenditure 7003"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	19005.80	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	01-Jul-08 10:12 AM	

+="CN95645-A1"	"InfoHRM contract"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Information services"	01-Jul-08	30-Jun-09	83270.00	=""	="InfoHRM Pty Ltd"	01-Jul-08 10:12 AM	

+="CN95646-A1"	"Legal Services Expenditure 6377 Legal Services Expenditure 6377"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	120000.00	="TRS06/175"	="AUST GOVT SOLICITOR-CENTRAL OFF"	01-Jul-08 10:12 AM	

+="CN95648"	"Leased vehicle Vehicle running costs"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Travel facilitation"	26-Mar-07	25-Mar-09	23222.42	="FINANCE04001"	="LeasePlan Australia Ltd"	01-Jul-08 10:12 AM	

+="CN95649"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	55000.00	="T2004/0699"	="SMS Consulting Group Ltd"	01-Jul-08 10:13 AM	

+="CN95650"	".NET DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Jul-08	22000.00	="TRS06/017"	="Hyro Solutions Pty Ltd"	01-Jul-08 10:14 AM	

+="CN95647"	" CUMMERBUND WOMAN'S/MAN'S AIRFORCE BLUE "	="Defence Materiel Organisation"	01-Jul-08	="Clothing accessories"	18-Jun-08	19-Sep-08	29887.00	=""	="JOMAC Australia Pty Ltd"	01-Jul-08 10:14 AM	

+="CN95651"	"Sharepoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	71500.00	="TRS06/017"	="SME GATEWAY LTD"	01-Jul-08 10:14 AM	

+="CN95652"	"SHAREPOINT DEVELOPER"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	55000.00	="TRS06/017"	="STRATAGEM COMPUTER CONTRACTORS"	01-Jul-08 10:14 AM	

+="CN95653"	"SharePoint Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Management advisory services"	01-Jul-08	29-Aug-08	71500.00	="TRS06/017"	="SME GATEWAY LTD"	01-Jul-08 10:14 AM	

+="CN95654"	"ESRI Software Annual maintenance"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	57337.50	=""	="ESRI Australia Pty Ltd"	01-Jul-08 10:15 AM	

+="CN95655"	"ArcCensus 2006 - 1996 Add on"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="NAVIGATE PTY LTD"	01-Jul-08 10:15 AM	

+="CN95656"	"Rent of office space Jakarta"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Public administration and finance services"	01-Jul-08	30-Jun-09	40591.21	=""	="UNITED GROUP PROCESS SOLUTIONS PTY"	01-Jul-08 10:15 AM	

+="CN95657"	"APSC Panel Access Fee for 2008-09"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Specialised educational services"	01-Jul-08	30-Jun-09	15000.00	="APS COMMISSION 2005/014"	="AUSTRALIAN PUBLIC SERVICE COMMISSIO"	01-Jul-08 10:15 AM	

+="CN95658"	"Office Accommodation Fitout"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="General building construction"	01-Jul-08	30-Aug-08	7385631.00	=""	="ISIS PROJECTS PTY LTD"	01-Jul-08 10:15 AM	

+="CN95659"	"FME ESRI Software 1 User licence"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Software"	30-Jun-08	30-Jun-09	13200.00	=""	="ESRI Australia Pty Ltd"	01-Jul-08 10:16 AM	

+="CN95660"	"Legal Services Expenditure 6737 Legal Services Expenditure 6737"	="Department of Infrastructure Transport Regional Development and Local Government"	01-Jul-08	="Legal services"	11-Aug-06	30-Jun-09	77000.00	="TRS06/175"	="MINTER ELLISON LAWYERS"	01-Jul-08 10:16 AM	

+="CN95662"	" PROVISION OF VEHICLE REPAIR PARTS "	="Defence Materiel Organisation"	01-Jul-08	="Motor vehicles"	01-Jul-08	15-Jul-08	22531.81	=""	="LAND ROVER AUSTRALIA"	01-Jul-08 10:32 AM	

+="CN95665"	"Call Centre Services"	="Civil Aviation Safety Authority"	01-Jul-08	="Call centre bureau services"	01-Jul-08	30-Jun-09	224400.00	="00/033-03"	="Sirius Telecommunications Ltd - ACT"	01-Jul-08 10:46 AM	

+="CN95666-A2"	"IT Specialist - ECM VMWARE Consultant"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary information technology software developers"	10-Mar-08	01-Jun-08	56595.00	=""	="Fujitsu Australia Limited"	01-Jul-08 10:47 AM	

+="CN95667-A1"	"IBM DB2 Enterprise Server Edition Value Unit License + SW Maintenance (12 months) for Names Re-Engineering Project"	="Australian Securities and Investments Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Feb-08	28-Feb-08	39976.20	=""	="IBM Australia Limited"	01-Jul-08 10:57 AM	

+="CN95668-A2"	" 08/2547 - Provision of Helicopter Services at Mackay "	="Australian Customs and Border Protection Service"	01-Jul-08	="Civilian and commercial rotary wing aircraft"	01-Jul-08	30-Jun-12	1047450.00	=""	="Whitsunday Helicopter Group Pty Ltd"	01-Jul-08 11:03 AM	

+="CN95669"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	02-Jun-08	15-Sep-08	31618.07	=""	="CHIPPENDALE PRINTING COMPANY P/L"	01-Jul-08 11:07 AM	

+="CN95670"	"Citrix Presentation Server Enterprise Subscription Renewal and Maintenance"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	23-Jun-08	30-Jun-08	13192.85	="ATM08/1077"	="ZALLCOM PTY LTD"	01-Jul-08 11:10 AM	

+="CN95672-A1"	"Advertising for 15 year license consultancy (RFT) GCUADV2002/03"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	22-May-08	23-Jun-08	19968.26	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:10 AM	

+="CN95673"	"Review Finance area structure and numbers"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	23-Jun-08	30-Jun-08	25000.00	="DCON/05/53"	="ERNST & YOUNG"	01-Jul-08 11:10 AM	

+="CN95674"	"Selection Process"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	23-Jun-08	23-Jun-08	11870.84	="DCON/04/162"	="EFFECTIVE PEOPLE PTY LIMITED"	01-Jul-08 11:10 AM	

+="CN95675"	"Supplementary air conditioning unit to Executive Conference Room"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Distribution and Conditioning Systems and Equipment and Components"	13-Jun-08	30-Aug-08	30272.00	="ATM08/1086"	="Dalkia Technical Services"	01-Jul-08 11:11 AM	

+="CN95676"	"Stay Smart online Demostration Videos"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	14-May-08	24-Jun-08	76381.25	="DCON/08/27"	="Eye Candy Animation"	01-Jul-08 11:11 AM	

+="CN95679-A1"	"Advertising - National E-security Awareness Week & Stay Smart Online website (GCUADV2002/03)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	24-Jun-08	24-Jun-08	30033.81	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:11 AM	

+="CN95680"	"Advertising - National E-security Awareness Week & Stay Smart Online website (GCUADV2002/03)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	07-Jun-08	24-Jun-08	22472.34	="RFT02/PMC/MANC"	="HMA BLAZE PTY LTD"	01-Jul-08 11:12 AM	

+="CN95681-A1"	"SES Leaders Training Program"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Education and Training Services"	23-Jun-08	30-Sep-08	60896.00	="05/014"	="Yellow Edge Pty Ltd"	01-Jul-08 11:12 AM	

+="CN95682-A1"	"Advice & other legal services-FOI matters before AAT"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	25-Jun-08	30-Jun-09	25408.35	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:12 AM	

+="CN95683"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	25-Jun-08	30-Jun-08	22880.00	="ATM08/1079"	="Cordelta Pty Ltd"	01-Jul-08 11:13 AM	

+="CN95684"	"Franking Machine for Facilities"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	25-Jun-08	30-Jun-09	18656.00	="ATM08/1087"	="Pitney Bowes Postage by Phone"	01-Jul-08 11:13 AM	

+="CN95685"	"Establishment, hosting and decommissioning of interactive deal room"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	27-Jun-08	30-Jun-08	16500.00	="ATM08/1088"	="CORRS CHAMBERS WESTGARTH"	01-Jul-08 11:13 AM	

+="CN95686"	"Remedial Work on the analogue retransmission facility in Wye River (vic)"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	27-Jun-08	31-Aug-08	53958.30	="ATM08/01089"	="Broadcast Australia"	01-Jul-08 11:14 AM	

+="CN72187"	"Purchase of research documents to be used in ACMA research project."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	14-Apr-08	07-May-08	18453.00	=""	="E Translate"	01-Jul-08 11:14 AM	

+="CN95687"	"Konica Colour Photocopier - BizHub c451"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Office Equipment and Accessories and Supplies"	27-Jun-08	04-Jul-08	11475.39	="ATM08/1090"	="KONICA AUSTRALIA PTY LTD"	01-Jul-08 11:14 AM	

+="CN95671"	"AIRS Development & Support"	="Civil Aviation Safety Authority"	01-Jul-08	="Development software"	01-Jul-08	30-Jun-09	3801600.00	="06/010-01"	="Accentrue Australia Holdings Pty Ltd"	01-Jul-08 11:14 AM	

+="CN95690"	"National E-security seminar for High School students in Brisbane"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	27-May-08	23-Jun-08	18521.45	="ATM08/1072"	="Information Integrity Solutions Pty"	01-Jul-08 11:14 AM	

+="CN95689"	"printing"	="Royal Australian Mint"	01-Jul-08	="Printed media"	02-Jun-08	15-Sep-08	42132.20	=""	="RODENPRINT P/ L"	01-Jul-08 11:15 AM	

+="CN95693-A2"	"FOI requests with the AAT"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	25-Jun-07	30-Jun-09	190000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:15 AM	

+="CN95695-A1"	"Licence condition or legislative amendment requiring provision of network information"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	09-Jan-08	30-Jun-09	10310.85	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:16 AM	

+="CN72184-A4"	"Temporary personnel for Finance Section"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	21-Apr-08	31-Dec-09	119800.00	="05ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	01-Jul-08 11:16 AM	

+="CN95697"	"SAP Productivity and workshops"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	30-Jun-08	19331.52	="CCR/07/100"	="SAP AUSTRALIA PTY LTD"	01-Jul-08 11:16 AM	

+="CN95699"	"IBISWorld Classic Direct License Spectrum Project"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	01-Jun-09	19250.00	="ATM08/1057"	="IBIS WORLD"	01-Jul-08 11:16 AM	

+="CN95700-A1"	"review of Australias E-Security Research & Development Environment"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jul-08	22-Aug-08	67500.00	="ATM08/970"	="QUEENSLAND UNIVERSITY OF TECHNOLOGY"	01-Jul-08 11:16 AM	

+="CN95701"	"Development of Selected Documents into Exari"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	26-May-08	16-Jun-08	22000.00	="DCON/08/44"	="Exari Systems Pty Ltd"	01-Jul-08 11:17 AM	

+="CN95702-A1"	"Microsoft Project Licenses"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	02-Jul-08	30-Jun-09	55688.28	="ATM08/1069"	="DATA#3 Limited"	01-Jul-08 11:17 AM	

+="CN95703"	"Focus Groups and Usability testing"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	18-Oct-08	24640.00	="DCON/07/65"	="Usability One"	01-Jul-08 11:17 AM	

+="CN95704"	"Service Level Agreements"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	18-Jun-08	18-Jun-09	60500.00	="DCON/07/65"	="Squiz Pty Ltd"	01-Jul-08 11:17 AM	

+="CN95705"	"Minor Works - 38 Sydney Avenue Level 2"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Building and Construction and Maintenance Services"	21-Jun-08	30-Jun-08	70620.00	="DCON/05/225"	="ISIS INTERIORS"	01-Jul-08 11:17 AM	

+="CN95706-A1"	"Probity checks -Australia Post Board of Directors"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Public Utilities and Public Sector Related Services"	20-Jun-08	30-Jun-09	20000.00	="DCON/06/45"	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-Jul-08 11:17 AM	

+="CN95707"	"Assistance to fill on-going vacancies"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Management and Business Professionals and Administrative Services"	16-Jun-08	30-Jun-08	11108.04	="ATM08/1075"	="Cantlie Recruitment Services"	01-Jul-08 11:18 AM	

+="CN95708-A1"	"NetApp upgrade hardware"	="Department of Broadband Communications and the Digital Economy"	01-Jul-08	="Electronic Components and Supplies"	13-Sep-03	13-Apr-09	414104.78	="DCON/03/63"	="KAZ Group"	01-Jul-08 11:18 AM	

+="CN72180"	"Provision of a new internal telephoney system for ACMA"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Telephony equipment"	02-Apr-08	31-Mar-11	1141000.53	="06ACMA075"	="Optus Networks Pty Ltd"	01-Jul-08 11:19 AM	

+="CN95709-A2"	"REPAIR FLAP"	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	08-Aug-08	38500.00	=""	="Boeing Australia"	01-Jul-08 11:21 AM	

+="CN72176"	" Temporary Contract Staff &ndash; Communications & Publishing Section. Addition of $21,750 to existing PO (Ref CN63724 "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	02-Jul-07	30-Jun-08	80950.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 11:22 AM	

+="CN95710"	"DocImage Disaster Recovery Detailed Design Support Services"	="Australian Securities and Investments Commission"	01-Jul-08	="Computer services"	19-Feb-08	27-May-08	44000.00	=""	="Global 360 Pty Ltd"	01-Jul-08 11:23 AM	

+="CN72167-A1"	"Consultancy Services for Application Architecture."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Information technology consultation services"	14-Apr-08	30-Jun-08	110000.00	="06/ACMA107"	="SMS Management and Technology Ltd"	01-Jul-08 11:24 AM	

+="CN95711-A2"	" Showcase fabrication and installation for  Australian Journeys  Gallery "	="National Museum of Australia"	01-Jul-08	="Furniture"	24-Jun-08	20-Mar-09	627282.00	=""	="Click Systems"	01-Jul-08 11:31 AM	

+="CN68716-A1"	"Engagement of temporary personnel. Contract amended to increase term by 8 months and increase funds by $47,300.00"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	16-Oct-07	31-Aug-08	97527.56	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 11:31 AM	

+="CN95712"	"painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	02-Jun-08	02-Jun-08	16170.00	=""	="NICK DOBSON PAINTING"	01-Jul-08 11:31 AM	

+="CN95713-A1"	"IT Specialist - Senior DB2 Database Administrator professional services"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary information technology systems or database administrators"	26-Nov-07	29-Feb-08	59818.00	=""	="CPT Global Limited"	01-Jul-08 11:44 AM	

+="CN95716"	"Review of business processes and organisational structure"	="Professional Services Review"	01-Jul-08	="Organisational structure consultation"	11-Mar-08	31-Jul-08	38610.00	=""	="Courage Partners"	01-Jul-08 11:47 AM	

+="CN95717-A1"	"IBM DB2 Enterprise Server Edition Value Unit License + SW Maintenance (12 months)"	="Australian Securities and Investments Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Feb-08	28-Feb-08	79952.40	=""	="IBM Australia Limited"	01-Jul-08 11:49 AM	

+="CN68704"	"Telecommunications consumer survey for the MAS consumer research programme."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	04-Apr-08	31-May-08	75871.00	="06/ACMA129"	="Roy Morgan Research"	01-Jul-08 11:49 AM	

+="CN68700"	"Data purchase for SME Telecommunications Consumer Research."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Market research"	04-Apr-08	30-Jun-08	32175.00	=""	="Sensis Pty Ltd"	01-Jul-08 11:54 AM	

+="CN95715"	"Painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	02-Jun-08	02-Jun-08	22770.00	=""	="NICK DOBSON PAINTING"	01-Jul-08 11:59 AM	

+="CN95718"	" Centrelink Agent - Parnngurr, WA    "	="Centrelink"	01-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	19905.07	=""	="Parnngurr Aboriginal Community"	01-Jul-08 12:01 PM	

+="CN95719"	"Lease for premises at 76 Rossmoya Rd, The Caves QLD 4702"	="Department of Defence"	01-Jul-08	="Lease and rental of property or building"	28-May-07	14-Jul-08	25000.00	=""	="The Caves Showgrounds Society"	01-Jul-08 12:07 PM	

+="CN95720"	" Centrelink Agent - Jigalong, WA "	="Centrelink"	01-Jul-08	="Community and social services"	01-Jul-08	30-Jun-09	28766.50	=""	="Jigalong Community"	01-Jul-08 12:09 PM	

+="CN67461"	"Provision of an online safety program for schools and associated issues. Contract amended to add two additional months and increase of funds by $16,080.00."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Education and Training Services"	01-Dec-07	30-Jun-08	130000.00	="06/ACMA157"	="IT Vision"	01-Jul-08 12:15 PM	

+="CN95723-A1"	"IT Specialist"	="Australian Securities and Investments Commission"	01-Jul-08	="Personnel recruitment"	26-Nov-07	29-Feb-08	52272.00	=""	="Oakton Services Pty Ltd"	01-Jul-08 12:30 PM	

+="CN95727"	"Supply of Cleaning and Washroom Services Nationally"	="Civil Aviation Safety Authority"	01-Jul-08	="Washroom sanitation services"	13-Jun-08	30-Jun-09	550000.00	="06/057-01"	="Cloverdale Commercial Cleaning"	01-Jul-08 12:39 PM	

+="CN95728"	"Software Applications Developer"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Jun-09	180048.00	="06/065-03"	="Kellaway Pty Ltd"	01-Jul-08 12:42 PM	

+="CN95729"	"Provision of IT contractors services"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	31-Dec-08	86669.00	="06/089-02"	="GMT People Pty Ltd"	01-Jul-08 12:45 PM	

+="CN95730"	"Business Analyst Financial Systems"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Jun-09	255552.00	="06/103-02"	="Peoplebank Australia Ltd (ACT)"	01-Jul-08 12:49 PM	

+="CN95731"	"carpentry"	="Royal Australian Mint"	01-Jul-08	="Carpentry"	04-Jun-08	04-Jun-08	10714.00	=""	="B. A. LENTFER BUILDING CONTRACTOR"	01-Jul-08 12:52 PM	

+="CN95732"	"Project Manager Video conferencing"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	30-Sep-08	58080.00	="06/114-05"	="Versossity Pty Ltd"	01-Jul-08 12:54 PM	

+="CN95733"	"IT Infrastructure Project Manager"	="Civil Aviation Safety Authority"	01-Jul-08	="Information technology consultation services"	01-Jul-08	30-Sep-08	84216.00	="06/157-04"	="Opcomm Pty Ltd"	01-Jul-08 12:57 PM	

+="CN95734"	"TRIM - Project Manager Business Intelligence Implementation"	="Civil Aviation Safety Authority"	01-Jul-08	="Recruitment services"	01-Jul-08	31-Jul-08	29040.00	="06/170-05"	="Oakton AA Services Pty Ltd"	01-Jul-08 01:01 PM	

+="CN95736"	"coin set"	="Royal Australian Mint"	01-Jul-08	="Mint coin collections"	05-Jun-08	05-Jun-08	14593.70	=""	="ROYAL MINT"	01-Jul-08 01:02 PM	

+="CN95735"	" REPAIR FLAP "	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	29-Oct-08	55000.00	=""	="Boeing Australia"	01-Jul-08 01:02 PM	

+="CN95737"	"coin set"	="Royal Australian Mint"	01-Jul-08	="Mint coin collections"	05-Jun-08	10-Jun-08	20301.60	=""	="ROYAL MINT"	01-Jul-08 01:06 PM	

+="CN95739"	"cabinets"	="Royal Australian Mint"	01-Jul-08	="Cabinets"	10-Jun-08	10-Jun-08	18147.82	=""	="BLACKWOOD J & SON LTD"	01-Jul-08 01:10 PM	

+="CN95740"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	12-Jun-08	25-Sep-08	32231.86	=""	="RODENPRINT P/ L"	01-Jul-08 01:15 PM	

+="CN95742-A1"	"REPAIR STABLIZER"	="Defence Materiel Organisation"	01-Jul-08	="Aircraft"	01-Jul-08	26-Aug-08	25300.00	=""	="BOEING COMPONENT"	01-Jul-08 01:19 PM	

+="CN95743-A1"	"Annual maintenance of Leaders4 Software- 1/07/2008-30/06/2009"	="Australian Taxation Office"	01-Jul-08	="License management software"	01-Jul-08	30-Jun-09	38006.85	=""	="SAI GLOBAL"	01-Jul-08 01:19 PM	

+="CN95745"	"consulting IT bussiness system"	="Royal Australian Mint"	01-Jul-08	="Information technology consultation services"	12-Jun-08	12-Jun-08	11000.00	=""	="LANGE CONSULTING AND SOFTWARE"	01-Jul-08 01:30 PM	

+="CN95747"	"consulting circ coin blank project"	="Royal Australian Mint"	01-Jul-08	="Information technology consultation services"	12-Jun-08	12-Jun-08	34375.00	=""	="LANGE CONSULTING AND SOFTWARE"	01-Jul-08 01:34 PM	

+="CN95750"	"Provision of carpet laying and floor covering services"	="Department of Parliamentary Services"	01-Jul-08	="Carpeting"	19-Jun-08	30-Jun-08	10804.20	=""	="Chesta's Floors"	01-Jul-08 01:40 PM	

+="CN95751"	"Supply of covered boom sprayer"	="Department of Parliamentary Services"	01-Jul-08	="Agricultural and forestry and landscape machinery and equipment"	17-Jun-08	30-Jun-08	23721.75	=""	="J & V Jauncey Farm Contracting"	01-Jul-08 01:41 PM	

+="CN95749"	"Supply of portable radio tranceivers and other associated communication equipment"	="Australian Federal Police"	01-Jul-08	="Communications Devices and Accessories"	01-Jul-08	01-Sep-08	37411.00	=""	="Motorola Australia Pty Limited"	01-Jul-08 01:41 PM	

+="CN95752"	"Provision of ICT Services"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	88000.00	=""	="Greythorn Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95753"	"Consultancy on Library collection shelving."	="Department of Parliamentary Services"	01-Jul-08	="Remedy consultations"	16-Jun-08	31-Dec-08	15950.00	=""	="MoveCorp Australia Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95754"	"Purchase of electrial test equipment"	="Department of Parliamentary Services"	01-Jul-08	="Tools and General Machinery"	11-Jun-08	27-Jun-08	10450.00	=""	="RS Components Pty Ltd"	01-Jul-08 01:41 PM	

+="CN95755"	"Provision of on line data access licence"	="Department of Parliamentary Services"	01-Jul-08	="Remote database information retrieval services"	10-Jun-08	30-Jun-08	49500.00	=""	="Macmillan Distribution Services"	01-Jul-08 01:41 PM	

+="CN95757"	"Provision of support services for PeopleSoft HRMS"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	17-Jun-08	30-Jun-08	14031.60	=""	="Oracle Corporation Australia P/L"	01-Jul-08 01:41 PM	

+="CN95758"	"Hansard printing services Contract (DPS05089 )"	="Department of Parliamentary Services"	01-Jul-08	="Printing"	16-Jun-08	30-Jun-08	77000.00	=""	="Canprint Communications Pty Ltd"	01-Jul-08 01:42 PM	

+="CN95759"	"Supply and maintenance of x-ray machines (DPS07043)"	="Department of Parliamentary Services"	01-Jul-08	="Security and control equipment"	12-Jun-08	28-Oct-13	1267574.00	="DPS07043"	="Smiths Detection Australia P/L"	01-Jul-08 01:42 PM	

+="CN95760"	"Software licence and maintenance (DPS08054)"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	12-Jun-08	30-Jun-09	15884.00	=""	="JobFit Systems International P/L"	01-Jul-08 01:42 PM	

+="CN95761-A1"	"Provision of catering services at Parliament House Catering contract one"	="Department of Parliamentary Services"	01-Jul-08	="Banquet and catering services"	11-Jun-08	30-Jun-13	750000.00	="DPS07091"	="Hanz (Canberra) Pty Ltd"	01-Jul-08 01:42 PM	

+="CN95756"	"IT Project Management Services"	="Australian Securities and Investments Commission"	01-Jul-08	="Temporary personnel services"	07-Jan-08	30-Jun-08	113100.00	=""	="Dyntal Pty Ltd"	01-Jul-08 01:43 PM	

+="CN95762"	"Provision of  telephone calls"	="Department of Parliamentary Services"	01-Jul-08	="Information Technology Broadcasting and Telecommunications"	16-Jun-08	30-Jun-08	38077.07	=""	="Telstra Corporation Ltd"	01-Jul-08 01:43 PM	

+="CN95763"	"Motor vehicles lease June 2008"	="Department of Parliamentary Services"	01-Jul-08	="Motor vehicles"	01-Jun-08	30-Jun-08	12894.11	=""	="LeasePlan"	01-Jul-08 01:43 PM	

+="CN95764"	"AIRFARES APR-08"	="Department of Parliamentary Services"	01-Jul-08	="Commercial passenger jet aircraft"	29-May-08	30-May-08	34365.13	=""	="Qantas Amex Business Travel A/C"	01-Jul-08 01:43 PM	

+="CN95768-A1"	"Provision of Cleaning Services to the Marion Premises of CRS Australia."	="CRS Australia"	01-Jul-08	="General building and office cleaning and maintenance services"	24-Jul-06	23-Jul-09	15438.40	=""	="Zippy Cleaning & Maintenance"	01-Jul-08 02:00 PM	

+="CN95766"	"PN: ZI-400 Qty 128"	="Defence Materiel Organisation"	01-Jul-08	="Compounds and mixtures"	30-Jun-08	30-Aug-08	19782.40	=""	="ECO 2000 PTY LTD"	01-Jul-08 02:05 PM	

+="CN95771"	"Cab Charge - only company providing this service."	="National Native Title Tribunal"	01-Jul-08	="Taxicab services"	01-Jul-07	30-Jun-08	62756.00	=""	="Cabcharge Australia"	01-Jul-08 02:08 PM	

+="CN95765"	"tuition"	="Royal Australian Mint"	01-Jul-08	="Polytechnic"	16-Jun-08	16-Jun-08	22000.00	=""	="CIT SOLUTIONS"	01-Jul-08 02:09 PM	

+="CN95772-A1"	"Provision of JobReady + V8 Software - Support Services"	="CRS Australia"	01-Jul-08	="Software"	09-Jun-08	08-Dec-08	38007.42	=""	="Pet Tech Pty Ltd"	01-Jul-08 02:10 PM	

+="CN95774"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	17-Jun-08	30-Sep-08	27417.50	=""	="FORM-RITE AUSTRALIA PTY LTD"	01-Jul-08 02:16 PM	

+="CN95775"	"packaging"	="Royal Australian Mint"	01-Jul-08	="Packaging materials"	18-Jun-08	01-Oct-08	71082.00	=""	="PLATYPUS GRAPHICS PTY LTD"	01-Jul-08 02:20 PM	

+="CN95776"	"steamline quartarly modifications"	="Royal Australian Mint"	01-Jul-08	="Inventory management software"	18-Jun-08	18-Jun-08	37063.42	=""	="GEAC AUSTRALIA P/L"	01-Jul-08 02:25 PM	

+="CN95777"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:32 PM	

+="CN95778"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	120026.50	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:33 PM	

+="CN95780"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	146019.50	="DFAT07-DID-004"	="ICON RECRUITMENT PTY LTD"	01-Jul-08 02:33 PM	

+="CN95781"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	181186.50	="DFAT07-DID-004"	="CLICKS RECRUIT PTY LTD"	01-Jul-08 02:33 PM	

+="CN95779"	"painting"	="Royal Australian Mint"	01-Jul-08	="Interior painting services"	18-Jun-08	18-Jun-08	25232.99	=""	="NICK DOBSON PAINTING"	01-Jul-08 02:33 PM	

+="CN95782"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	168190.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:34 PM	

+="CN95783"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	109043.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:34 PM	

+="CN95784"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	111617.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:34 PM	

+="CN95785"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	45870.00	="DFAT07-DID-004"	="ICON RECRUITMENT PTY LTD"	01-Jul-08 02:35 PM	

+="CN95786"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:35 PM	

+="CN95787"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:35 PM	

+="CN95788"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	111617.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:35 PM	

+="CN95789"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	107030.00	="DFAT07-DID-004"	="CLICKS RECRUIT PTY LTD"	01-Jul-08 02:35 PM	

+="CN95790"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	128436.00	="DFAT07-DID-004"	="AFFINITY IT RECRUITMENT PTY LIMITED"	01-Jul-08 02:36 PM	

+="CN95791"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	119262.00	="DFAT07-DID-004"	="ACUMEN CONTRACTING AND RECRUITMENT PTY LTD"	01-Jul-08 02:36 PM	

+="CN95792"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	120791.00	="DFAT07-DID-004"	="ACUMEN CONTRACTING AND RECRUITMENT PTY LTD"	01-Jul-08 02:36 PM	

+="CN95793"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	84095.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:36 PM	

+="CN95794"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	97856.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95795"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	110088.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95796"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	97856.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:37 PM	

+="CN95797"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	114675.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:38 PM	

+="CN95798"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	107030.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:38 PM	

+="CN95799"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	152900.00	="DFAT07-DID-004"	="GREYTHORN PTY LTD"	01-Jul-08 02:38 PM	

+="CN95800"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	103972.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:39 PM	

+="CN95801"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	152900.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95802"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	99385.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95805"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	168190.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:39 PM	

+="CN95806"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	172012.50	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:40 PM	

+="CN95807"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	114675.00	="DFAT07-DID-004"	="BRIDGE IT ENGINEERING PTY LTD"	01-Jul-08 02:40 PM	

+="CN95808"	"ICT Contractor Services"	="Department of Foreign Affairs and Trade"	01-Jul-08	="Management and Business Professionals and Administrative Services"	01-Jul-08	31-Mar-09	122320.00	="DFAT07-DID-004"	="GMT CANBERRA PTY LTD"	01-Jul-08 02:41 PM	

+="CN67408"	"TM1 Software maintenance."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software maintenance and support"	23-Mar-08	22-Mar-09	38901.06	="06/ACMA101"	="Excelerated Consulting Pty Ltd"	01-Jul-08 02:42 PM	

+="CN95809"	"placement fee"	="Royal Australian Mint"	01-Jul-08	="Personnel recruitment"	23-Jun-08	23-Jun-08	13723.28	=""	="HAYS PERSONNEL SERVICES P/L"	01-Jul-08 02:42 PM	

+="CN95804-A3"	"Provision of services in relation to IT Security architecture"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	30-Jun-10	561726.00	=""	="Greythorn Pty Ltd"	01-Jul-08 02:44 PM	

+="CN67406"	"Extension of Contractor for Do Not Call Service. Contract extended to 12 March 2008 , additional funding of $5000.00"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	17-Dec-07	12-Mar-08	45000.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	01-Jul-08 02:44 PM	

+="CN95811"	"Guarding for ACC Sydney Office"	="Australian Crime Commission"	01-Jul-08	="National Defence and Public Order and Security and Safety Services"	01-Jun-08	30-Jun-08	32257.14	=""	="Chubb Security Aust P/L"	01-Jul-08 02:47 PM	

+="CN95744-A1"	"Provision of Centrelink agent services in Service Tasmania shops"	="Centrelink"	01-Jul-08	="Business administration services"	02-Jul-07	30-Jun-08	201395.09	=""	="DEPT OF PREMIER & CABINET TASMANIA"	01-Jul-08 02:48 PM	

+="CN67405"	" Purchase of telecommunications consumer research data for MAS Consumer Research Program "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Data services"	28-Feb-08	27-Jun-08	61053.30	="07/ACMA055"	="Roy Morgan Research"	01-Jul-08 02:48 PM	

+="CN95813"	"relocation moves"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	18482.48	=""	="TOLL TRANSITIONS"	01-Jul-08 02:52 PM	

+="CN95815"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	11789.36	=""	="TOLL TRANSITIONS"	01-Jul-08 02:55 PM	

+="CN67359"	"Engagement of Business Analyst"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Computer services"	20-Mar-08	20-Jun-08	70200.00	="06ACMA109"	="Ajilon Australia Pty Ltd"	01-Jul-08 02:56 PM	

+="CN95818"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	12611.54	=""	="TOLL TRANSITIONS"	01-Jul-08 02:59 PM	

+="CN95819"	"relocation services"	="Royal Australian Mint"	01-Jul-08	="Relocation services"	24-Jun-08	24-Jun-08	19580.00	=""	="TOLL TRANSITIONS"	01-Jul-08 03:02 PM	

+="CN95820-A1"	"Provision of services in relation to business analysis activities"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	31-Dec-08	111724.80	=""	="Oakton AA Services Pty Ltd"	01-Jul-08 03:03 PM	

+="CN67357"	"Quarterly maintainence support for CHIRPLUS Broadcast Planning System"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business function specific software"	23-Mar-08	22-Jun-08	43455.00	=""	="Rhode and Schwartz (Aust) Pty Ltd"	01-Jul-08 03:03 PM	

+="CN95817"	"AFP Training Courses Jul08 - Jun09"	="Australian Crime Commission"	01-Jul-08	="Vocational training"	01-Jul-08	30-Jun-09	50000.01	=""	="Australian Federal Police"	01-Jul-08 03:05 PM	

+="CN95822"	"water and sewarge"	="Royal Australian Mint"	01-Jul-08	="Sewage treatment services"	27-Jun-08	27-Jun-08	21720.60	=""	="ACTEWAGL WATER AND SEWERAGE"	01-Jul-08 03:07 PM	

+="CN95821"	" Analysis, policy and facilitation services "	="Centrelink"	01-Jul-08	="Management advisory services"	01-Jul-08	31-Oct-08	74800.00	=""	="Smartnet Pty Ltd"	01-Jul-08 03:09 PM	

+="CN95823"	"Antenna Site Rental"	="Australian Crime Commission"	01-Jul-08	="Commercial or industrial facility rental"	01-Jul-08	30-Jun-09	45013.06	=""	="Vertical Telecoms P/L"	01-Jul-08 03:14 PM	

+="CN95824-A2"	"Provision of services relating to application development"	="Australian Federal Police"	01-Jul-08	="Computer services"	01-Jul-08	30-Jun-09	191276.80	=""	="Compas Pty. Ltd."	01-Jul-08 03:21 PM	

+="CN95826"	"Legal Advice & Representation"	="Australian Crime Commission"	01-Jul-08	="Legal services"	06-Dec-07	09-Apr-08	83417.96	=""	="Australian Government Solicitor"	01-Jul-08 03:24 PM	

+="CN72166-A1"	"Provision of temporary personnel to admin support for Investigations Section during TRIM Implementation"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	18-Mar-08	18-May-08	26105.67	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	01-Jul-08 03:25 PM	

+="CN68738"	"Mmembership to Gartner Executive Premier service."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business and corporate management consultation services"	01-May-08	30-Apr-09	71390.00	=""	="Gartner Australasia Pty Ltd"	01-Jul-08 03:27 PM	

+="CN95827"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	01-Jul-08	="Motor vehicles"	01-Jul-08	15-Jul-08	21317.72	=""	="PREMIER AUTO GROUP"	01-Jul-08 03:29 PM	

+="CN67468"	"Engage contractor to conduct time and management training, Melbourne office."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	29-Apr-08	29-Apr-08	13000.00	=""	="Priority Management"	01-Jul-08 03:35 PM	

+="CN95829"	"Firewall Support & Maintenance"	="Australian Crime Commission"	01-Jul-08	="Computer or network or internet security"	11-Apr-07	10-Apr-09	10966.70	=""	="Cybertrust"	01-Jul-08 03:38 PM	

+="CN67375-A3"	" Variation to existing ACMA Contract, Provision of and Online Safety Program for Schools and Associated Issues. This notice amends previous notice by increasing funds by $16,080.00 "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Education and Training Services"	01-Aug-07	01-Sep-08	170315.00	="06/ACMA157"	="IT Vision"	01-Jul-08 03:39 PM	

+="CN95831"	"Various Stationery purchases"	="National Native Title Tribunal"	01-Jul-08	="Stationery"	01-Jul-07	30-Jun-08	73829.21	=""	="Corporate Express"	01-Jul-08 03:42 PM	

+="CN95832"	"Computer Licences and Maintenance"	="Australian Crime Commission"	01-Jul-08	="Proprietary or licensed systems maintenance or support"	01-Sep-07	31-Aug-08	76110.32	=""	="Novell Pty Ltd"	01-Jul-08 03:45 PM	

+="CN67363"	"Supply and install 10 workstations for ACMA Regional Office, Parramatta."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Workstations and office packages"	27-Mar-08	14-May-08	30899.00	=""	="Zenith Interiors (NSW) Pty Ltd"	01-Jul-08 03:46 PM	

+="CN95836"	"Personal Development"	="Australian Crime Commission"	01-Jul-08	="Career development services"	26-May-08	26-May-08	10170.00	=""	="Red Carpet Ltd"	01-Jul-08 03:56 PM	

+="CN68730"	"Hosting Services for Anti-SPAM software - consultancy. Contract amended to increase funds by $20,000.00 and extend by 2 months."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Internet services"	12-Sep-05	31-Mar-08	182000.00	="05/ACMA027"	="Macquarie Telecom Pty Ltd"	01-Jul-08 04:00 PM	

+="CN95838"	"Supply of flat screen monitors"	="National Native Title Tribunal"	01-Jul-08	="Computer Equipment and Accessories"	31-Jul-07	12-May-08	30714.42	=""	="Dell Computer Ltd"	01-Jul-08 04:03 PM	

+="CN95355"	" IPSOS - Mackay Report Subscription. "	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Data base reporting software"	24-Jun-08	24-Jun-09	11990.00	=""	="IPSOS Australia Pty Ltd"	01-Jul-08 04:07 PM	

+="CN95839"	"Recruitment Services"	="Australian Crime Commission"	01-Jul-08	="Temporary personnel services"	16-May-08	30-Jun-08	70730.00	=""	="Icon recruitment"	01-Jul-08 04:11 PM	

+="CN95346"	"Upgrade SPB Software, enhance capabilities."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software patches or upgrades"	25-Jun-08	30-Jun-08	28187.50	=""	="The MathWorks Australia Pty Ltd"	01-Jul-08 04:13 PM	

+="CN95251-A1"	"Revision of Cybernetrix Education Resource"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Teacher resource materials"	24-Jun-08	23-Nov-08	60280.00	="07/ACMA071"	="Holmesglen Institute of TAFE"	01-Jul-08 04:16 PM	

+="CN95166"	"Creating a Brand Corporate Identity"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Business and corporate management consultation services"	08-Nov-07	07-Aug-08	15840.00	="07/ACMA003"	="Yello Enterprise IG Pty Ltd"	01-Jul-08 04:19 PM	

+="CN95840"	"    Intra Maps Annual Maintenance - geospatial Software    "	="National Native Title Tribunal"	01-Jul-08	="Map creation software"	10-Aug-07	31-Dec-08	27048.45	=""	="Digital Mapping solutions"	01-Jul-08 04:20 PM	

+="CN95167"	"Peer Review of Economic Modelling Report"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Economic analysis"	26-Jun-08	10-Jul-08	14300.00	="07/ACMA092"	="Frontier Economics Pty Ltd"	01-Jul-08 04:23 PM	

+="CN95173"	"Contractor"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	07-May-08	11-Sep-08	47000.00	="05/ACMA"	="Hays Personnel Services (Australai) Pty Ltd"	01-Jul-08 04:29 PM	

+="CN95841"	"    Electroboard Video Conferencing & Maintenance    "	="National Native Title Tribunal"	01-Jul-08	="Video conferencing software"	15-Nov-07	14-Nov-08	29991.21	=""	="Electroboard Solutions Pty Ltd"	01-Jul-08 04:33 PM	

+="CN95842"	"BELTS CEREMONIAL"	="Defence Materiel Organisation"	01-Jul-08	="Flat belts"	06-Jun-08	02-Nov-08	241601.25	=""	="LAROSA LEATHERGOODS"	01-Jul-08 04:34 PM	

+="CN95153-A1"	"Contractor"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Temporary personnel services"	25-Feb-08	16-Nov-08	52109.40	="BSB2006-11"	="Zenith Management Services Group Pty Ltd"	01-Jul-08 04:35 PM	

+="CN94834"	"Renewal of Trim Software License"	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Software"	01-Jul-08	30-Jun-09	59516.36	=""	="Alphawest Services Pty Ltd"	01-Jul-08 04:40 PM	

+="CN94261"	"Provision of Online Safety Program for Schools & Associated Issues."	="Australian Communications and Media Authority (ACMA)"	01-Jul-08	="Internet services"	01-Jun-08	01-Sep-08	153760.00	="06/ACMA157"	="IT Vision"	01-Jul-08 04:49 PM	

+="CN95843-A2"	" Call Center workforce management system software "	="Department of Human Services"	01-Jul-08	="Software"	19-Jun-03	30-Jun-12	20745437.00	=""	="Matrium Technologies Pty Ltd"	01-Jul-08 04:50 PM	

+="CN95845-A2"	" Cleaning Services "	="Department of the Prime Minister and Cabinet"	01-Jul-08	="General building and office cleaning and maintenance services"	19-Feb-07	19-Feb-12	1273685.00	="2006/1844"	="Ultracare Cleaning Services"	01-Jul-08 04:59 PM 

--- /dev/null
+++ b/admin/partialdata/29Mar2008to02Apr2008valto.xls
@@ -1,1 +1,354 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN67286"	"REQUIRED FOR S70B2 AIRCRAFT REPAIRS"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	19-Mar-08	08-Apr-08	81232.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	31-Mar-08 07:42 AM	

+="CN67287"	"REPAIR OF S70B2 AIRCRAFT PARTS"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	18-Mar-08	07-Apr-08	81232.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	31-Mar-08 07:49 AM	

+="CN67288"	" REQUIRED FOR REPAIR OF S70B2 AIRCRAFT PARTS "	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	18-Mar-08	07-Apr-08	81232.12	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	31-Mar-08 07:59 AM	

+="CN67289-A1"	"Property Lease St Kilda VIC"	="Australian Federal Police"	31-Mar-08	="Lease and rental of property or building"	28-Jan-05	28-Jan-10	909489.00	=""	="REMS Nominees Pty Limited"	31-Mar-08 08:08 AM	

+="CN67290"	".NET Developer"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Management advisory services"	29-Mar-08	30-Jun-08	60000.00	="T2004/0699"	="SMS Management & Technology"	31-Mar-08 08:10 AM	

+="CN67291"	"H Hotham - .Net Developer - S&M"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Management advisory services"	01-Mar-08	30-Jun-08	65000.00	="TRS06/017"	="Hyro Solutions Pty Ltd"	31-Mar-08 08:10 AM	

+="CN67292-A1"	"provision of multi-media services"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Graphic design"	25-Mar-08	31-May-08	115000.00	="TRS06/036"	="THE TRUSTEE FOR THE D & K FAMILY"	31-Mar-08 08:10 AM	

+="CN67293"	"Sydney Airport RESA contract review"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Human resources services"	07-Jan-08	31-Mar-08	36256.00	=""	="Tracey Brunstorm & Hammond Pty Ltd"	31-Mar-08 08:10 AM	

+="CN67294"	"Review of Ex-gratia Payments - Land Tax"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Accounting and auditing"	19-Mar-08	30-Jun-08	69226.10	="TRS06/037"	="ERNST & YOUNG"	31-Mar-08 08:10 AM	

+="CN67295-A1"	"Engagement of Contractor"	="Department of Infrastructure Transport Regional Development and Local Government"	31-Mar-08	="Human resources services"	31-Mar-08	27-Jun-08	23595.00	=""	="AMBIT GROUP PTY LTD"	31-Mar-08 08:11 AM	

+="CN67297"	"required for repair of aircraft parts"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	18-Mar-08	06-Apr-08	73946.80	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	31-Mar-08 08:55 AM	

+="CN67298-A2"	"REQUIRED TO REPAIR AIRCRAFT PARTS"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	15-Feb-08	16-Mar-08	159500.00	=""	="ROSEBANK ENGINEERING"	31-Mar-08 09:01 AM	

+="CN67299"	"REQUIRED FOR REPAIR OF AIRCRAFT PART"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	27-Feb-08	02-Apr-08	15297.77	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	31-Mar-08 09:10 AM	

+="CN67300"	"Printing of NAT05196 - Outer Envelope Dual WF DL. Qty: 3,544,000"	="Australian Taxation Office"	31-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	28-Mar-08	30-Apr-08	71730.56	=""	="Envotec t/a Australian Envelopes"	31-Mar-08 09:10 AM	

+="CN67303-A1"	"Provision of Cleaning Services to the Cannington and Armadale premises of CRS Australia."	="CRS Australia"	31-Mar-08	="General building and office cleaning and maintenance services"	06-Mar-08	21-Nov-10	56204.47	=""	="Tangata Pty Ltd trading as List's Cleaning Services"	31-Mar-08 09:32 AM	

+="CN67305"	"OverHaul of Kiowa Airframe component"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	30-May-08	23545.92	=""	="Helitech Pty Ltd"	31-Mar-08 09:36 AM	

+="CN67306"	"REPAIR OF KIOWA AIRFRAME COMPONENT"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	30-May-08	21597.60	=""	="Helitech Pty Ltd"	31-Mar-08 09:41 AM	

+="CN66992-A1"	"LEGAL ADVICE"	="Department of Human Services"	31-Mar-08	="Legal services"	26-Feb-08	07-Mar-08	71500.00	=""	="BLAKE DAWSON WALDRON"	31-Mar-08 09:43 AM	

+="CN67307"	"REPAIR OF KIOWA AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	23-May-08	27517.50	=""	="Helitech Pty Ltd"	31-Mar-08 09:45 AM	

+="CN67308"	"REPAIR OF KIOWA AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	30-May-08	26545.57	=""	="HELITECH"	31-Mar-08 09:52 AM	

+="CN67310"	"REPAIR OF KIOWA AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	30-May-08	45132.12	=""	="Helitech Pty Ltd"	31-Mar-08 09:57 AM	

+="CN67311"	"REPAIR OF KIOWA AIRCRAFT COMPONENT"	="Defence Materiel Organisation"	31-Mar-08	="Aircraft"	17-Mar-08	30-May-08	51500.13	=""	="Helitech Pty Ltd"	31-Mar-08 10:01 AM	

+="CN67312"	"RFT PREPARATION SERVICES"	="Department of Human Services"	31-Mar-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	30-Jun-08	50000.01	=""	="ACUMEN ALLIANCE OAKTON AA SERVICES PTY LTD T/As"	31-Mar-08 10:13 AM	

+="CN67318"	"Pre-poll Election Accommodation and associated services"	="Australian Electoral Commission"	31-Mar-08	="Lease and rental of property or building"	01-Sep-07	30-Sep-07	72465.25	=""	="Smart Service Queensland"	31-Mar-08 11:31 AM	

+="CN67322"	"cobit Foundation Certificate 16 attendees"	="Australian Taxation Office"	31-Mar-08	="Education and Training Services"	27-Mar-08	30-Apr-08	15000.00	=""	="ALC TRAINING"	31-Mar-08 11:42 AM	

+="CN67323"	"COURSE"	="Australian Taxation Office"	31-Mar-08	="Education and Training Services"	27-Feb-08	25-Mar-08	11825.00	=""	="Australian Public Service"	31-Mar-08 11:47 AM	

+="CN67324"	"COURSE"	="Australian Taxation Office"	31-Mar-08	="Education and Training Services"	27-Feb-08	25-Mar-08	11825.00	=""	="Australian Public Service"	31-Mar-08 11:47 AM	

+="CN67325"	"LEGAL SERVICES"	="Australian Taxation Office"	31-Mar-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	25-Mar-08	11218.00	=""	="A J DEVER PTY LTD"	31-Mar-08 11:47 AM	

+="CN67326"	"SEMINAR"	="Australian Taxation Office"	31-Mar-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	27-Mar-08	14367.08	=""	="THE BOAT HOUSE BY THE LAKE"	31-Mar-08 11:47 AM	

+="CN67327"	"IT Contractor"	="Australian Taxation Office"	31-Mar-08	="Engineering and Research and Technology Based Services"	25-Mar-08	13-Jul-08	10882.79	=""	="M&T Resources (SMS Group)"	31-Mar-08 11:48 AM	

+="CN67328"	"IT Contractor"	="Australian Taxation Office"	31-Mar-08	="Engineering and Research and Technology Based Services"	26-Mar-08	19-Mar-09	157310.40	=""	="M&T Resources (SMS Group)"	31-Mar-08 11:48 AM	

+="CN67329"	"IT Contractor"	="Australian Taxation Office"	31-Mar-08	="Engineering and Research and Technology Based Services"	26-Mar-08	31-Mar-09	187200.06	=""	="Ambit IT&T Recruitment Pty Ltd"	31-Mar-08 11:48 AM	

+="CN67330"	"IT Contractor"	="Australian Taxation Office"	31-Mar-08	="Engineering and Research and Technology Based Services"	31-Mar-08	08-Apr-09	220000.00	=""	="Dawnstar Technologies"	31-Mar-08 11:49 AM	

+="CN67332"	"CRS Australia - 5 Percy Street, Mt. Gambier SA"	="CRS Australia"	31-Mar-08	="Lease and rental of property or building"	01-Feb-08	31-Jan-10	42702.00	=""	="Luigi Michielan Family & Lumindin Holdings P/L"	31-Mar-08 11:51 AM	

+="CN67335"	"CRS Australia - Level 4, 26 Duporth Avenue, Maroochydore, QLD"	="CRS Australia"	31-Mar-08	="Lease and rental of property or building"	01-Mar-08	28-Feb-11	288366.92	=""	="Bryant Property Holdings"	31-Mar-08 12:03 PM	

+="CN67336-A2"	"Property Lease Darwin NT"	="Australian Federal Police"	31-Mar-08	="Lease and rental of property or building"	01-Jan-05	30-Nov-13	1426296.00	=""	="The Murray Herrmann Superanuation Fund & Two up Trust"	31-Mar-08 12:30 PM	

+="CN67337-A2"	" 19inch LCD monitor "	="Centrelink"	31-Mar-08	="Personal computers"	31-Mar-08	30-Sep-08	191611.20	="2004/52285"	="Acer Computer Australia Pty Ltd"	31-Mar-08 12:43 PM	

+="CN67340"	"Legal Services"	="Australian Competition and Consumer Commission"	31-Mar-08	="Legal services"	01-Jul-07	30-Jun-08	365629.33	=""	="A.J Dever Pty Ltd"	31-Mar-08 12:56 PM	

+="CN67345"	"Culture Awareness Training"	="Australian Federal Police"	31-Mar-08	="Education and Training Services"	08-Apr-08	11-Apr-08	30098.20	="65/2006"	="Asian Law Group Pty Ltd"	31-Mar-08 01:13 PM	

+="CN67355"	"Supply and deliver quantity 150 KT of UNIMOG cabin lifting equipment"	="Defence Materiel Organisation"	31-Mar-08	="Lifting equipment and accessories"	20-Nov-07	30-May-08	491513.55	=""	="Daimler Chrysler AUST/PACIFIC Pty Ltd"	31-Mar-08 02:22 PM	

+="CN67208"	"--Core IT Research & Advice Service."	="Australian Securities and Investments Commission"	31-Mar-08	="Information technology consultation services"	01-Jul-07	30-Jun-08	122870.00	=""	="Gartner Australia Pty Limited"	31-Mar-08 03:16 PM	

+="CN67368-A2"	"Variation to the Provisions for Supply and Maintenance of Printers and Multi Function Devices"	="Comsuper"	31-Mar-08	="Electronic hardware and component parts and accessories"	07-Jun-06	07-Jun-11	493693.30	=""	="Konica Minolta"	31-Mar-08 03:32 PM	

+="CN67370"	" Printing of: NAT2036 (25,000), 3984 (11,000), 5422 (40,000), 5423 (5,000), 5454 (2,000), 5425 (25,000) FUNDS SORT  Qty: 108,000 "	="Australian Taxation Office"	31-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	26-Mar-08	15-Apr-08	15238.30	=""	="Blue Star Print Group t/a National Capital Printing"	31-Mar-08 03:39 PM	

+="CN67371"	"Memorandum of Understanding - Transaction Fee for the Provision of Access to the Leadership, Learning and Development Panel"	="Comsuper"	31-Mar-08	="Workshops"	04-Oct-07	04-Oct-08	10500.00	=""	="Australian Public Service Commission"	31-Mar-08 03:42 PM	

+="CN67373"	" Printing of: NAT04138-07.2007 Checklist for people starting a new business  Qty: 125,000 "	="Australian Taxation Office"	31-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Feb-08	03-Apr-08	13502.50	=""	="Paragon Printers"	31-Mar-08 03:47 PM	

+="CN67376"	" Printing of: NAT07885-03.2008v6 - Quote Number 158357  Qty: 760000 "	="Australian Taxation Office"	31-Mar-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Mar-08	15-Apr-08	14177.90	=""	="Blue Star Print Group t/a National Capital Printing"	31-Mar-08 03:51 PM	

+="CN67382"	"ASLAV PARTS - MOUNTING BRACKETS"	="Department of Defence"	01-Apr-08	="Armoured fighting vehicles"	26-Mar-07	09-Jul-08	14551.79	=""	="GENERAL DYNAMICS LAND SYSTEMS"	01-Apr-08 08:23 AM	

+="CN67383"	"Kit Termination & Kit Termination Upgrade (G9810)"	="Defence Materiel Organisation"	01-Apr-08	="Workshop machinery and equipment and supplies"	31-Mar-08	14-Apr-08	14221.90	=""	="AFC Group Pty Ltd"	01-Apr-08 08:27 AM	

+="CN67384"	"ASLAV PARTS - CABLE ASSEMBLY, SPECIAL, PURPOSE, ELECTRIC"	="Department of Defence"	01-Apr-08	="Armoured fighting vehicles"	26-Mar-08	18-Apr-08	88113.30	=""	="GENERAL DYNAMICS LAND SYSTEMS"	01-Apr-08 08:31 AM	

+="CN67389-A3"	" Provision of URL filtering "	="Australian Federal Police"	01-Apr-08	="Software"	18-Oct-05	21-Jan-10	228976.00	=""	="Internet Sheriff Technology Limited"	01-Apr-08 10:11 AM	

+="CN67390"	"for the development of the fees in a cost neutral Schedule of Item Numbers adn Fees to attach to the revised DVA Community Nursing Classification System."	="Department of Veterans' Affairs"	01-Apr-08	="Comprehensive health services"	20-Mar-08	02-May-08	53680.00	=""	="Access Economics Pty Ltd"	01-Apr-08 10:15 AM	

+="CN67391"	"IMU Contract Programmer: IMU-ICT055 Official Order IMU2008/009"	="Department of Veterans' Affairs"	01-Apr-08	="Computer services"	06-Mar-08	06-Mar-09	177580.00	=""	="Collective Resources IT Recruitment Pty Ltd"	01-Apr-08 10:15 AM	

+="CN67392"	"Internal fit-out Lovett Tower ACT"	="Department of Veterans' Affairs"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Jul-07	01-Dec-08	3000000.00	=""	="Monaro Commercial Interiors Pty Ltd"	01-Apr-08 10:15 AM	

+="CN67393"	"Internal fit-out of Lovett Tower ACT"	="Department of Veterans' Affairs"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Aug-07	01-Dec-08	3000000.00	=""	="Honeywell"	01-Apr-08 10:15 AM	

+="CN67394"	"Internal fit-out Lovett Tower ACT"	="Department of Veterans' Affairs"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Aug-07	01-Dec-08	1000000.00	=""	="Nine to Five Interiors"	01-Apr-08 10:15 AM	

+="CN67395"	"Provision of furniture for fit-out Lovett Tower ACT"	="Department of Veterans' Affairs"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Aug-07	01-Dec-08	3000000.00	=""	="Cube Furniture"	01-Apr-08 10:15 AM	

+="CN67396"	"Internal fit-out Lovett Tower ACT"	="Department of Veterans' Affairs"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	01-Aug-07	01-Dec-08	3000000.00	=""	="Cite Office Design Pty Ltd"	01-Apr-08 10:15 AM	

+="CN67397-A1"	"Supply of electricity"	="Questacon"	01-Apr-08	="Supply of three phase electricity"	01-Jul-07	30-Jun-09	985673.52	=""	="Actewagl"	01-Apr-08 10:22 AM	

+="CN67398-A3"	"Bulk Print services - BP 0507-01 Super for the period from 31/3/08 to 31/12/08."	="Australian Taxation Office"	01-Apr-08	="Printing"	31-Mar-08	30-Jun-11	793074.31	=""	="Salmat Document Management Solutions Pty Ltd"	01-Apr-08 10:26 AM	

+="CN67399-A4"	"Bulk Print Panel - BP 0507-04 BAS for the period from 31/3/08 to 31/12/08."	="Australian Taxation Office"	01-Apr-08	="Printing"	31-Mar-08	30-Jun-11	3704398.00	=""	="Salmat Document Management Solutions Pty Ltd"	01-Apr-08 10:49 AM	

+="CN67400-A3"	"Bulk print panel - BP 0507-07 RBA for the period from 31/3/08 to 31/12/08."	="Australian Taxation Office"	01-Apr-08	="Printing"	31-Mar-08	30-Jun-11	1466117.00	=""	="Salmat Document Management Solutions Pty Ltd"	01-Apr-08 10:52 AM	

+="CN67401-A3"	"Bulk print panel - BP 07130 Debt Reminder Letters for the period from 31/3/08 to 31/12/08."	="Australian Taxation Office"	01-Apr-08	="Printing"	31-Mar-08	30-Jun-11	230761.00	=""	="Salmat Document Management Solutions Pty Ltd"	01-Apr-08 10:55 AM	

+="CN67402-A1"	"Supply of electricity to 95-97 Wollongong St Fyshwick"	="Questacon"	01-Apr-08	="Supply of three phase electricity"	01-Jul-07	30-Jun-09	192000.00	=""	="Actewagl"	01-Apr-08 10:56 AM	

+="CN67407"	" MANUFACTURE QTY 7 WELL DECK CANOPIES AS PER SAMPLES -   LCM8'S "	="Department of Defence"	01-Apr-08	="Utility landing watercraft"	01-Apr-08	11-May-08	15658.00	=""	="TERRITORY CANVAS WORKS"	01-Apr-08 11:42 AM	

+="CN67409"	" SUPPLY OF PERSONAL FIELD EQUIPMENT TO THE ADF "	="Defence Materiel Organisation"	01-Apr-08	="Camping and outdoor equipment and accessories"	01-Apr-08	01-Jun-08	17941.00	="J8125"	="NIOA DEFENCE"	01-Apr-08 11:46 AM	

+="CN67411"	"Telecommunications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Local and long distance telephone communications"	01-Dec-07	31-Dec-07	56610.90	=""	="Macquarie Telecom"	01-Apr-08 12:21 PM	

+="CN67412"	"Legal costs"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Legal services"	01-Feb-08	29-Feb-08	10333.40	=""	="Gretsas and Associates"	01-Apr-08 12:21 PM	

+="CN67413"	"Communications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Telecommunications media services"	01-Jan-08	01-Feb-08	10215.70	=""	="Telstra"	01-Apr-08 12:21 PM	

+="CN67414"	"Telecommunications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Local and long distance telephone communications"	01-Jan-08	31-Jan-08	59800.49	=""	="Macquarie Telecom"	01-Apr-08 12:21 PM	

+="CN67415"	"Office rent"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Real estate services"	01-Mar-08	30-Jun-08	24950.89	=""	="Stockland Property Management Pty Ltd"	01-Apr-08 12:21 PM	

+="CN67416"	"Office rent"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Real estate services"	01-Mar-08	30-Jun-08	24950.89	=""	="Stockland Property Management Pty Ltd"	01-Apr-08 12:21 PM	

+="CN67417"	"Telecommunications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Local and long distance telephone communications"	01-Nov-07	30-Nov-07	61262.53	=""	="Macquarie Telecom"	01-Apr-08 12:22 PM	

+="CN67418"	"Telecommunications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Local and long distance telephone communications"	01-Oct-07	31-Oct-07	61248.26	=""	="Macquarie Telecom"	01-Apr-08 12:22 PM	

+="CN67419"	"Telecomminications"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Local and long distance telephone communications"	01-Sep-07	30-Sep-07	59255.01	=""	="Macquarie Telecom"	01-Apr-08 12:22 PM	

+="CN67420"	"Library costs"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Business associations"	03-Dec-07	30-Jun-08	23180.64	="NA"	="Thomson Legal and Regulatory Group"	01-Apr-08 12:22 PM	

+="CN67422"	"Office Renovations"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Building construction and support and maintenance and repair services"	04-Feb-08	31-Mar-08	100757.75	=""	="Elite Office Environments Pty Ltd"	01-Apr-08 12:22 PM	

+="CN67424"	"Temp Personnel"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Temporary personnel services"	11-Dec-07	06-Jun-08	11484.00	=""	="Paxus"	01-Apr-08 12:22 PM	

+="CN67425"	"Temp Personnel"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Temporary personnel services"	11-Dec-07	06-Jun-08	14014.00	=""	="Paxus"	01-Apr-08 12:22 PM	

+="CN67427"	"Temp Personnel"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Temporary personnel services"	14-Jan-08	11-Jul-08	20586.50	=""	="Paxus"	01-Apr-08 12:23 PM	

+="CN67428"	"Office Furniture"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Office furniture"	15-Jan-08	15-Feb-08	257249.88	=""	="Gechawell Pty Ltd T/A"	01-Apr-08 12:23 PM	

+="CN67430"	"Computer Equipment"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Software maintenance and support"	18-Dec-07	17-Dec-08	14810.88	=""	="XSI Data Solutions Pty Ltd"	01-Apr-08 12:23 PM	

+="CN67432"	"Bentley House Commercial Interiors"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Office furniture"	21-Jan-08	21-Feb-08	46324.30	=""	="Bentley House"	01-Apr-08 12:23 PM	

+="CN67433"	"Software Mtce"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Software maintenance and support"	22-Nov-07	21-Nov-08	16701.14	=""	="Cerulean Solutions Ltd"	01-Apr-08 12:23 PM	

+="CN67436"	"Office Movers"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Building construction and support and maintenance and repair services"	26-Jan-08	26-Jan-08	24486.00	=""	="Officemovers"	01-Apr-08 12:24 PM	

+="CN67437"	"Software mtce"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Software maintenance and support"	27-Oct-07	26-Oct-08	23147.30	=""	="Netcat.biz Pty Ltd"	01-Apr-08 12:24 PM	

+="CN67439"	"Consultants"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Software maintenance and support"	28-Mar-08	30-Jun-08	11550.00	="NA"	="Biz3"	01-Apr-08 12:24 PM	

+="CN67440"	"Consultant"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Software"	28-Mar-08	30-Jun-08	27500.00	="NA"	="Biz3"	01-Apr-08 12:24 PM	

+="CN67441"	"Internal Audit"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Accounting and auditing"	31-Dec-07	31-Jan-08	10403.28	=""	="KPMG"	01-Apr-08 12:24 PM	

+="CN67442"	"Internat Audit"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Accounting and auditing"	31-Dec-07	31-Jan-08	13272.24	=""	="KPMG"	01-Apr-08 12:24 PM	

+="CN67443"	"Internal Audit"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Accounting and auditing"	31-Dec-07	31-Jan-08	13862.89	=""	="KPMG"	01-Apr-08 12:24 PM	

+="CN67444"	"Office Renovations"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Building support services"	31-Dec-07	31-Jan-08	26149.59	=""	="Just Maintenance"	01-Apr-08 12:24 PM	

+="CN67445"	"Conference"	="Insolvency and Trustee Service Australia (ITSA)"	01-Apr-08	="Business and corporate management consultation services"	31-Jan-08	20-Feb-08	10802.00	=""	="Beyond The Break Australia Pty Ltd"	01-Apr-08 12:25 PM	

+="CN67446"	"Administrative Investigation and Review Service"	="Australian Taxation Office"	01-Apr-08	="Management and Business Professionals and Administrative Services"	25-Mar-08	11-Apr-08	10000.00	="100.05-41"	="Verifact Pty Ltd"	01-Apr-08 12:40 PM	

+="CN67448-A1"	"Upgrade existing modular messaging"	="Australian Human Rights Commission"	01-Apr-08	="Digital telephones"	11-Sep-07	19-Mar-08	29128.29	=""	="NSC Enterprise Solutions Pty Ltd"	01-Apr-08 01:00 PM	

+="CN67449-A2"	"Provision of Network Engineering Services"	="Family Court of Australia"	01-Apr-08	="Personnel recruitment"	07-Apr-08	10-Apr-09	139392.00	=""	="Talent International Pty Ltd"	01-Apr-08 01:05 PM	

+="CN67450"	"Professional services for HREOC 21"	="Australian Human Rights Commission"	01-Apr-08	="Strategic planning consultation services"	01-Jan-08	29-Feb-08	30250.00	=""	="McKinsey Pacific Rim, Inc"	01-Apr-08 01:06 PM	

+="CN67451"	"Fitout of Casino Centrelink customer service centre"	="Centrelink"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	22-Apr-08	30-Jun-08	228800.00	=""	="Quadric PtyLtd"	01-Apr-08 01:10 PM	

+="CN67452"	"Print 2,500 copies of Social Justice Report 2007"	="Australian Human Rights Commission"	01-Apr-08	="Printed publications"	19-Feb-08	26-Mar-08	16303.10	=""	="Paragon Print Australasia"	01-Apr-08 01:11 PM	

+="CN67453"	"Fitout of Caboolture Centrelink customer service centre"	="Centrelink"	01-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	12-May-08	30-Jun-08	202015.00	=""	="Signature Projects Pty Ltd"	01-Apr-08 01:19 PM	

+="CN67455-A2"	"Personnel Recruitment"	="Australian Crime Commission"	01-Apr-08	="Personnel recruitment"	17-Mar-08	26-Sep-08	105807.84	=""	="Tarakan Consulting Pty Ltd"	01-Apr-08 01:44 PM	

+="CN67456"	"Canberra Security Systems Upgrade"	="Australian Federal Police"	01-Apr-08	="Security and protection software"	01-Jun-07	31-Aug-07	497552.00	=""	="Chubb Electronics Security"	01-Apr-08 01:46 PM	

+="CN67457"	" Guarding services "	="Australian Crime Commission"	01-Apr-08	="Security surveillance and detection"	01-Mar-08	01-Apr-08	11289.59	=""	="Scope Guarding Services Pty Ltd"	01-Apr-08 01:59 PM	

+="CN67458"	"Audio Surveillance Dialler"	="Australian Crime Commission"	01-Apr-08	="Surveillance and detection equipment"	22-Feb-08	30-Apr-08	24755.00	=""	="Design Two Thousand Pty Ltd (2000)"	01-Apr-08 02:03 PM	

+="CN67459"	"Supply and install security access hardware"	="Australian Crime Commission"	01-Apr-08	="Security and control equipment"	18-Mar-08	30-Apr-08	16973.00	=""	="Honeywell Ltd"	01-Apr-08 02:07 PM	

+="CN67460"	"Provision for Project Manager"	="Comsuper"	01-Apr-08	="Human resources services"	07-Apr-08	03-Oct-08	129492.00	=""	="Cordelta Pty Limited"	01-Apr-08 02:24 PM	

+="CN67462"	"Provision for development support for the APM Project"	="Comsuper"	01-Apr-08	="Human resources services"	31-Mar-08	30-Jun-08	78540.00	=""	="Cordelta Pty Limited"	01-Apr-08 02:29 PM	

+="CN67463"	"Professional services for the support of the Identity & Access Management System"	="Australian Taxation Office"	01-Apr-08	="Information technology consultation services"	01-Apr-08	31-Dec-08	89100.00	=""	="Sun Microsystems Pty Ltd"	01-Apr-08 02:29 PM	

+="CN67470-A1"	"Fibre Patch Cables"	="Australian Crime Commission"	01-Apr-08	="Telecommunications cable"	18-Mar-08	30-May-08	23705.00	=""	="MultiSystem Communications Pty Ltd"	01-Apr-08 02:41 PM	

+="CN67472"	"Personnel recruitment"	="Australian Crime Commission"	01-Apr-08	="Personnel recruitment"	06-Mar-08	05-May-08	18698.40	=""	="Hudson Global Resources"	01-Apr-08 02:45 PM	

+="CN67473"	"Recruitment advertising"	="Australian Crime Commission"	01-Apr-08	="Newspaper advertising"	15-Dec-07	27-Mar-08	15306.76	=""	="HMA Blaze Pty Ltd"	01-Apr-08 03:00 PM	

+="CN67475"	"Recruitment advertising"	="Australian Crime Commission"	01-Apr-08	="Newspaper advertising"	13-Oct-07	18-Mar-08	15962.93	=""	="HMA Blaze Pty Ltd"	01-Apr-08 03:07 PM	

+="CN67476"	"Recruitment advertising"	="Australian Crime Commission"	01-Apr-08	="Newspaper advertising"	03-Nov-07	18-Mar-08	36610.31	=""	="HMA Blaze Pty Ltd"	01-Apr-08 03:10 PM	

+="CN67477"	"Information and media monitoring services"	="Australian Crime Commission"	01-Apr-08	="Internet related services"	21-Mar-08	21-Mar-09	269280.00	=""	="Factiva (Dow Jones)"	01-Apr-08 03:31 PM	

+="CN67479"	"Computer maintenance services"	="Australian Crime Commission"	01-Apr-08	="Computers"	17-Apr-08	16-Apr-10	152851.60	=""	="Dell Computer Pty Ltd"	01-Apr-08 03:37 PM	

+="CN67485-A1"	"Independent review of Australia's quarantine border security strategies & policies"	="Department of Agriculture Fisheries and Forestry"	01-Apr-08	="Management advisory services"	01-Jun-06	30-Apr-08	434000.00	=""	="Ernst & Young"	01-Apr-08 03:53 PM	

+="CN67488"	" Administrative Investigation and Review Service "	="Australian Taxation Office"	01-Apr-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	14-Apr-08	10000.00	="100.05-42"	="McPherson Consulting Pty Ltd"	01-Apr-08 04:07 PM	

+="CN67491-A1"	"subscription - standard & poors"	="Australian Office of Financial Management"	01-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	15-Feb-09	31920.52	=""	="Reserve Bank of Australia"	01-Apr-08 04:19 PM	

+="CN67495"	"35062-01: Altiris Enterprise Consulting"	="CRS Australia"	01-Apr-08	="Information technology consultation services"	03-Mar-08	31-Mar-08	36954.55	=""	="ALTIRIS AUSTRALIA Pty Ltd"	01-Apr-08 04:57 PM	

+="CN67496"	"DEPOSIT FOR NAT MGRS CONFERENCE 2 - 4/4/08"	="CRS Australia"	01-Apr-08	="Conference centres"	31-Mar-08	31-Mar-08	34020.00	=""	="MANTRA LEGENDS HOTEL"	01-Apr-08 04:57 PM	

+="CN67497"	"FITOUT"	="CRS Australia"	01-Apr-08	="Renovation of buildings or landmarks or monuments"	17-Mar-08	31-Mar-08	33970.00	=""	="ZENITH INTERIORS (WA) Pty Ltd"	01-Apr-08 04:57 PM	

+="CN67500"	"legal services"	="Australian Competition and Consumer Commission"	01-Apr-08	="Legal services"	01-Jan-08	30-Jun-08	11197.40	=""	="Australian Government Solicitor"	01-Apr-08 05:10 PM	

+="CN67501"	" Provision of Courier Services to the Australian Antarctic Division "	="Australian Antarctic Division"	02-Apr-08	="Postal and small parcel and courier services"	01-Jul-08	30-Jun-11	125000.00	="RFT 08/98"	="Jet Couriers"	02-Apr-08 08:51 AM	

+="CN67507"	"research project"	="Australian Office of Financial Management"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Dec-07	18-Aug-08	25000.00	=""	="Finance & Statistical Consultants P/L"	02-Apr-08 09:22 AM	

+="CN67508"	"HARDWARE"	="Australian Office of Financial Management"	02-Apr-08	="Software or hardware engineering"	01-Mar-08	31-Mar-08	11114.40	=""	="DELL"	02-Apr-08 09:26 AM	

+="CN67514"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	41123.83	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 09:51 AM	

+="CN67515"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	36904.78	=""	="Rover Australia"	02-Apr-08 09:56 AM	

+="CN67516-A2"	"Business analysis services for Debt process review"	="Australian Taxation Office"	02-Apr-08	="Management and Business Professionals and Administrative Services"	10-Mar-08	31-Oct-08	79999.00	=""	="PM Business Consulting Pty Ltd"	02-Apr-08 09:57 AM	

+="CN67517-A3"	" Lease at 200 St Georges Tce Perth "	="Department of Human Services"	02-Apr-08	="Lease and rental of property or building"	01-Sep-03	31-Aug-15	20526538.70	=""	="The Perth Diocesan Trustees"	02-Apr-08 09:57 AM	

+="CN67518"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	46331.18	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 09:59 AM	

+="CN67519"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	18603.75	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 10:07 AM	

+="CN67520"	" REPAIR MACK ARN-3632 "	="Department of Defence"	02-Apr-08	="Motor vehicles"	02-Apr-08	30-May-08	25795.00	=""	="SCRATCH IT I FIX IT"	02-Apr-08 10:22 AM	

+="CN67521"	"motor vehicle spare parts"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	42974.80	=""	="LAND ROVER AUSTRALIA"	02-Apr-08 10:36 AM	

+="CN67522"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-Apr-08	01-May-08	46648.80	=""	="LANDROVER"	02-Apr-08 10:43 AM	

+="CN67524"	"Motor Vehicle Parts"	="Department of Defence"	02-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	02-Apr-08	02-May-08	17727.68	=""	="Mercedes Benz Aust"	02-Apr-08 10:53 AM	

+="CN67526-A1"	" Aircraft Spares for SeaHawk Aircraft. "	="Defence Materiel Organisation"	02-Apr-08	="Aircraft"	04-Mar-08	22-Feb-09	16215.16	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	02-Apr-08 10:58 AM	

+="CN67525"	" AIRCRAFT SPARES  NSN 5340-66-151-1967 , STOP TRACK, UNTHREADED , QTY 60.  NSN 5340-66-151-1969 , STOP TRACK, THREADED PILOT SEAT LH , QTY 40.  NSN 5340-66-151-1970 , STOP TRACK, THREADED PILOT SEAT RH , QTY 30. "	="Defence Materiel Organisation"	02-Apr-08	="Military transport helicopters"	02-Apr-08	17-May-08	10570.99	=""	="TASMAN AVIATION ENTERPRISES"	02-Apr-08 11:00 AM	

+="CN67528"	"Provision of Relocation Services"	="Medicare Australia"	02-Apr-08	="Human resources services"	20-Mar-08	20-Mar-08	13999.99	=""	="Colquhoun Murphy"	02-Apr-08 11:51 AM	

+="CN67529"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	20-Mar-08	31-Mar-08	48950.00	=""	="Iron Mountain Australia Pty Ltd"	02-Apr-08 11:52 AM	

+="CN67530"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	20-Mar-08	20-Mar-08	10923.00	=""	="AUSWOOD CONSTRUCTION & PROJECT MGMT"	02-Apr-08 11:52 AM	

+="CN67531"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	20-Mar-08	20-Mar-08	70224.00	=""	="AMBIT IT & T RECRUITMENT SPECIALIST"	02-Apr-08 11:52 AM	

+="CN67532"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	20-Mar-08	25-Mar-08	20031.00	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:52 AM	

+="CN67533"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	20-Mar-08	25-Mar-08	20031.00	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:52 AM	

+="CN67534"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	20-Mar-08	31-Mar-11	1742400.00	=""	="COMPUWARE ASIA PACIFIC P/L"	02-Apr-08 11:52 AM	

+="CN67535"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	19-Mar-08	30-Jun-08	32563.98	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:52 AM	

+="CN67536"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Real estate services"	19-Mar-08	19-Mar-08	120057.93	=""	="UNITED GROUP SERVICES PTY LTD"	02-Apr-08 11:52 AM	

+="CN67537"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	19-Mar-08	19-Mar-08	675871.67	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:53 AM	

+="CN67538"	"Provision of Sign Design and Construction"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	18-Mar-08	18-Mar-08	10142.00	=""	="S & K Harvey"	02-Apr-08 11:53 AM	

+="CN67539"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	13728.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67540"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	12870.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67541"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	15928.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67542"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	16192.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67543"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	30-Jun-08	20064.00	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 11:53 AM	

+="CN67544"	"Provision of Telephony Services"	="Medicare Australia"	02-Apr-08	="Electrical equipment and components and supplies"	18-Mar-08	30-Jun-08	422400.00	=""	="OPTUS NETWORKS PTY LIMITED"	02-Apr-08 11:53 AM	

+="CN67545"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	18-Mar-08	18-Mar-08	15840.00	=""	="COMPAS PTY LTD"	02-Apr-08 11:53 AM	

+="CN67546"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	17-Mar-08	17-Mar-08	18830.18	=""	="COMMAND RECRUITMENT GROUP"	02-Apr-08 11:54 AM	

+="CN67547"	"Provision of Mailhouse Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	17-Mar-08	17-Mar-08	20455.99	=""	="QM Technologies Pty Limited"	02-Apr-08 11:54 AM	

+="CN67548"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	17-Mar-08	31-Dec-08	86290.71	=""	="AUSTRALIA POST"	02-Apr-08 11:54 AM	

+="CN67549"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	14-Mar-08	14-Mar-08	189951.30	=""	="INTERIORS AUSTRALIA"	02-Apr-08 11:54 AM	

+="CN67550"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	14-Mar-08	14-Mar-08	45983.34	=""	="AUSTRALIA POST"	02-Apr-08 11:54 AM	

+="CN67551-A1"	"Provision of HR Services"	="Medicare Australia"	02-Apr-08	="Human resources services"	31-Mar-08	31-Mar-08	16164.48	=""	="QMS"	02-Apr-08 11:54 AM	

+="CN67552"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer Equipment and Accessories"	31-Mar-08	31-Mar-08	136950.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:54 AM	

+="CN67553"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	31-Mar-08	30-Jun-08	110110.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	02-Apr-08 11:54 AM	

+="CN67554"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	31-Mar-08	31-Mar-09	1598176.79	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 11:54 AM	

+="CN67555"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	31-Mar-08	31-Mar-08	335857.47	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:55 AM	

+="CN67556"	"Provision of Software/Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	31-Mar-08	31-Mar-08	16233.40	=""	="Data#3 Limited"	02-Apr-08 11:55 AM	

+="CN67557"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Printed media"	31-Mar-08	31-Mar-08	12165.12	=""	="MOORE BUSINESS SYSTEMS AUSTRALIA LT"	02-Apr-08 11:55 AM	

+="CN67558"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	31-Mar-08	30-Apr-08	25809.30	=""	="RECRUITMENT SOLUTIONS LIMITED"	02-Apr-08 11:55 AM	

+="CN67559"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	31-Mar-08	30-Apr-08	13501.40	=""	="RECRUITMENT SOLUTIONS LIMITED"	02-Apr-08 11:55 AM	

+="CN67560"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Statistics"	28-Mar-08	28-Mar-08	20482.82	=""	="OAKTON AA SERVICES PTY LTD"	02-Apr-08 11:55 AM	

+="CN67561"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Paper products"	28-Mar-08	30-Jun-08	16959.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:55 AM	

+="CN67562"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	28-Mar-08	28-Mar-08	11699.99	=""	="CENTRE FOR PUBLIC MANAGEMENT"	02-Apr-08 11:55 AM	

+="CN67563"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	28-Mar-08	30-Jun-08	182547.81	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:55 AM	

+="CN67564"	"Provision of Property Management Services"	="Medicare Australia"	02-Apr-08	="Real estate services"	28-Mar-08	28-Mar-08	3479140.46	=""	="UNITED GROUP SERVICES (REIMBURSEMEN"	02-Apr-08 11:56 AM	

+="CN67565"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	27-Mar-08	30-Jun-08	242247.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 11:56 AM	

+="CN67566"	"Provision of IT Relocation Services"	="Medicare Australia"	02-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	26-Mar-08	11-May-08	21056.26	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67567"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	26-Mar-08	26-Mar-08	11413.93	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67568"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	25-Mar-08	25-Mar-08	14250.00	=""	="PLANPOWER PTY LTD"	02-Apr-08 11:56 AM	

+="CN67569"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	25-Mar-08	11-Apr-08	16434.00	=""	="Schiavello (VIC) P/L"	02-Apr-08 11:56 AM	

+="CN67570"	"Provision of Telephony Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	25-Mar-08	30-Jun-08	18508.71	=""	="OPTUS BILLING SERVICES"	02-Apr-08 11:56 AM	

+="CN67571"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	25-Mar-08	30-Jun-08	52580.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:56 AM	

+="CN67572"	"Provision of Software Licences"	="Medicare Australia"	02-Apr-08	="Software"	25-Mar-08	30-Mar-10	770000.00	=""	="COMPUTER ASSOCIATES PTY LTD"	02-Apr-08 11:56 AM	

+="CN67573"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Commercial and industrial furniture"	25-Mar-08	31-Mar-08	18499.99	=""	="WILLIAM WATERS PTY LTD"	02-Apr-08 11:57 AM	

+="CN67574"	"Provision of Postal Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	14-Mar-08	14-Mar-08	19190.77	=""	="AUSTRALIA POST"	02-Apr-08 11:57 AM	

+="CN67575"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	06-Mar-08	06-Mar-08	22564.31	=""	="RECALL TOTAL INFORMATION MANAGEMENT"	02-Apr-08 11:57 AM	

+="CN67576"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	21584.40	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67577"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	37892.55	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67578"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	28545.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67579"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	16742.00	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67580"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Business administration services"	06-Mar-08	30-Jun-08	15100.25	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:57 AM	

+="CN67581-A1"	"Provision of Legal Services"	="Medicare Australia"	02-Apr-08	="Legal services"	06-Mar-08	30-Jul-10	370049.00	=""	="MINTER ELLISON LAWYERS"	02-Apr-08 11:58 AM	

+="CN67582"	"Provision of Training Courses"	="Medicare Australia"	02-Apr-08	="Specialised educational services"	06-Mar-08	06-Mar-08	411983.00	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 11:58 AM	

+="CN67583"	"Provision of Archiving and Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	04-Mar-08	11-Mar-08	48259.80	=""	="Iron Mountain Australia Pty Ltd"	02-Apr-08 11:58 AM	

+="CN67584"	"Provision of Mailing Products"	="Medicare Australia"	02-Apr-08	="Transport operations"	04-Mar-08	28-Mar-08	36190.00	=""	="DX MAIL"	02-Apr-08 11:58 AM	

+="CN67585"	"Provision of Catering Services"	="Medicare Australia"	02-Apr-08	="Restaurants and catering"	03-Mar-08	04-Mar-08	17199.99	=""	="Gema Group Holdings"	02-Apr-08 11:58 AM	

+="CN67586"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	03-Mar-08	03-Mar-08	20714.92	=""	="OAKTON AA SERVICES PTY LTD"	02-Apr-08 11:58 AM	

+="CN67587"	"Provision of Software Maintenance"	="Medicare Australia"	02-Apr-08	="Software"	03-Mar-08	31-Mar-09	501632.29	=""	="WEBMETHODS AUSTRALIA PTY LTD"	02-Apr-08 11:58 AM	

+="CN67588"	"Provision of IT Refurbishment Services"	="Medicare Australia"	02-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	03-Mar-08	03-Mar-08	24631.10	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 11:58 AM	

+="CN67589"	"CABCHRG 0202-070308"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	10-Mar-08	31-Mar-08	29855.50	=""	="CABCHARGE AUSTRALIA LIMITED"	02-Apr-08 11:59 AM	

+="CN67590"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	24450.28	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67591"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	28893.55	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67592"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	11584.41	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67593"	"AMEX TRAVEL FEB'08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	29-Feb-08	26-Mar-08	170194.45	=""	="AMERICAN EXPRESS INTERNATIONAL INC"	02-Apr-08 11:59 AM	

+="CN67594"	"QLD Arnaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	17-Mar-08	47087.04	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67595"	"WA Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	17-Mar-08	21341.51	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67596"	"NSW Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	14-Mar-08	72528.13	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 11:59 AM	

+="CN67597"	"VIC Armaguard Feb08"	="Medicare Australia"	02-Apr-08	="Accounting and auditing"	17-Feb-08	14-Mar-08	59893.12	=""	="LINFOX ARMAGUARD PTY LTD"	02-Apr-08 12:00 PM	

+="CN67598"	"Provision of Printing Services"	="Medicare Australia"	02-Apr-08	="Computer services"	14-Mar-08	14-Mar-08	11880.00	=""	="HERMES PRECISA PTY LTD"	02-Apr-08 12:00 PM	

+="CN67599"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	14-Mar-08	14-Mar-08	25818.93	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:00 PM	

+="CN67600"	"Provision of IT Services"	="Medicare Australia"	02-Apr-08	="Computer services"	14-Mar-08	14-Mar-08	10944.60	=""	="IBM AUSTRALIA LIMITED"	02-Apr-08 12:00 PM	

+="CN67601"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="Building construction and support and maintenance and repair services"	13-Mar-08	13-Mar-08	12356.48	=""	="DESKON INTERIORS PTY LTD"	02-Apr-08 12:00 PM	

+="CN67602-A1"	"Provision of Financial Services"	="Medicare Australia"	02-Apr-08	="Public administration and finance services"	13-Mar-08	30-Jul-08	51168.34	=""	="KAROLINA KALANJ"	02-Apr-08 12:00 PM	

+="CN67603-A1"	"Provision of Financial Services"	="Medicare Australia"	02-Apr-08	="Public administration and finance services"	13-Mar-08	31-Jul-08	11027.56	=""	="KAROLINA KALANJ"	02-Apr-08 12:00 PM	

+="CN67604"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jan-10	17176.50	=""	="DIALOG INFORMATION TECHNOLOGY"	02-Apr-08 12:00 PM	

+="CN67605"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15666.75	=""	="COMPAS PTY LTD"	02-Apr-08 12:00 PM	

+="CN67606"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15419.25	=""	="COMPAS PTY LTD"	02-Apr-08 12:01 PM	

+="CN67607"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Business administration services"	13-Mar-08	30-Jun-08	15779.50	=""	="COMPAS PTY LTD"	02-Apr-08 12:01 PM	

+="CN67608"	"Provision of transport tickets"	="Medicare Australia"	02-Apr-08	="Passenger transport"	11-Mar-08	01-Apr-08	188281.78	=""	="METLINK VICTORIA PTY LTD"	02-Apr-08 12:01 PM	

+="CN67609"	"Provision of Secure Courier Services"	="Medicare Australia"	02-Apr-08	="Transport operations"	11-Mar-08	11-Mar-08	297000.00	=""	="METROSTATE SECURITY COURIER PTY LTD"	02-Apr-08 12:01 PM	

+="CN67611"	"Provision of Fit Out Works"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	28-Mar-08	46331.71	=""	="Colonial First State Asset Manageme"	02-Apr-08 12:01 PM	

+="CN67612"	"Provision of IT Refurbishment Services"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	31-Mar-08	10392.45	=""	="IBM GLOBAL SERVICES AUSTRALIA"	02-Apr-08 12:01 PM	

+="CN67613"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	11-Mar-08	11-Mar-08	839608.77	=""	="Schiavello Project Interiors"	02-Apr-08 12:01 PM	

+="CN67614"	"Provision of Mailhouse Services"	="Medicare Australia"	02-Apr-08	="Mail and cargo transport"	11-Mar-08	11-Mar-08	136029.03	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	02-Apr-08 12:02 PM	

+="CN67615"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	11-Mar-08	11-Mar-08	14646.42	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:02 PM	

+="CN67616"	"Provision of Archiving/Storage Services"	="Medicare Australia"	02-Apr-08	="Storage"	11-Mar-08	11-Mar-08	19880.19	=""	="RECALL TOTAL INFORMATION MA"	02-Apr-08 12:02 PM	

+="CN67610"	"Supply, installation and maintenance of one microspectrophotometer"	="Australian Federal Police"	02-Apr-08	="Laboratory and scientific equipment"	29-Jan-07	29-Jan-12	339190.00	=""	="XTEK Limited"	02-Apr-08 12:02 PM	

+="CN67617"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Computer Equipment and Accessories"	07-Mar-08	30-Jun-08	18447.00	=""	="Nexa Group Pty Ltd"	02-Apr-08 12:02 PM	

+="CN67618"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	07-Mar-08	30-Jun-08	134596.00	=""	="VEROSSITY PTY LTD"	02-Apr-08 12:02 PM	

+="CN67619"	"Provision of Contractor (labour hire) Services"	="Medicare Australia"	02-Apr-08	="Computer services"	07-Mar-08	31-Aug-08	112112.00	=""	="AMBIT IT & T RECRUITMENT SPECIALIST"	02-Apr-08 12:02 PM	

+="CN67620"	"Provision of Office Fit-out Services"	="Medicare Australia"	02-Apr-08	="General building construction"	07-Mar-08	07-Mar-08	90217.60	=""	="CMB"	02-Apr-08 12:02 PM	

+="CN67621"	"Provision of Queue Management Services"	="Medicare Australia"	02-Apr-08	="Office machines and their supplies and accessories"	06-Mar-08	30-Jun-08	227947.99	=""	="Nexa Group Pty Ltd"	02-Apr-08 12:02 PM	

+="CN67624-A1"	" Printing of: NAT3388-3.2008 - How to complete the PAYG payment summary  Qty: 800,000 "	="Australian Taxation Office"	02-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	02-Apr-08	30-Apr-08	70125.00	=""	="Blue Star Print Group t/a National Capital Printing"	02-Apr-08 12:45 PM	

+="CN67631"	"Provision for consultancy services of the Strategic FinanciaPlan for ComSuper"	="Comsuper"	02-Apr-08	="Strategic planning consultation services"	01-Apr-08	30-Jun-08	40000.00	=""	="Analytics Group Pty Ltd"	02-Apr-08 01:25 PM	

+="CN67632"	"Provision for Legal Counsel"	="Comsuper"	02-Apr-08	="Legal services"	31-Mar-08	30-Jun-08	40000.00	=""	="Australian Government Solicitors"	02-Apr-08 01:28 PM	

+="CN67633"	"Provision for Legal Counsel"	="Comsuper"	02-Apr-08	="Legal services"	31-Mar-08	30-Jun-08	60000.00	=""	="Australian Government Solicitors"	02-Apr-08 01:30 PM	

+="CN67634"	"Genetic Analyzer service Agreement"	="Australian Federal Police"	02-Apr-08	="Biotechnology and bio chemistry and genetics and microbiology and related materials"	01-Apr-08	28-Jul-09	68381.26	=""	="Applied Biosystems"	02-Apr-08 01:44 PM	

+="CN67635"	"required repair of aircraft parts"	="Defence Materiel Organisation"	02-Apr-08	="Aircraft"	27-Mar-08	01-Apr-08	129086.51	=""	="SIKORSKY AIRCRAFT AUSTRALIA"	02-Apr-08 02:27 PM	

+="CN67636"	"PURCHASE OF SAFE"	="Defence Materiel Organisation"	02-Apr-08	="Containers and storage"	26-Feb-08	31-Mar-08	15064.26	=""	="CMI SAFE CO"	02-Apr-08 02:28 PM	

+="CN67638"	"Treasury-ICON Annual Levy Operational"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	33000.00	=""	="Dept of Finance & Deregulation"	02-Apr-08 02:32 PM	

+="CN67639"	"Procurement of maintenance for Cyberguard"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	26-Feb-08	31-Mar-08	15128.30	=""	="CommsNet Group Pty Ltd"	02-Apr-08 02:32 PM	

+="CN67640"	"advertising for positions available"	="Department of the Treasury"	02-Apr-08	="Paper Materials and Products"	15-Jan-08	25-Jan-08	23622.26	=""	="HMA Blaze Pty Limited"	02-Apr-08 02:33 PM	

+="CN67641"	"Contractor wages"	="Department of the Treasury"	02-Apr-08	="Personal and Domestic Services"	18-Mar-08	30-Jun-08	20000.00	="M.SKINNER"	="Westaff"	02-Apr-08 02:33 PM	

+="CN67642"	"Reuters & Ecowin Subscriptions 2007/08"	="Department of the Treasury"	02-Apr-08	="Published Products"	20-Mar-08	30-Jun-08	15000.00	=""	="Reuters Aust Pty Ltd"	02-Apr-08 02:33 PM	

+="CN67643"	"Provision of consumer and financial literacy profe"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Dec-08	95974.00	="OPEN SOURCE"	="Department of Education & Children'"	02-Apr-08 02:33 PM	

+="CN67644"	"Provision of consumer and financial literacy profe"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Dec-08	48277.00	="OPEN SOURCE"	="Association of independent Schools"	02-Apr-08 02:33 PM	

+="CN67645"	"Translation of  Docs from Dutch to English"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	20-Mar-08	61160.00	=""	="Australian Taxation Office"	02-Apr-08 02:33 PM	

+="CN67646"	"Advertising for CFO Position"	="Department of the Treasury"	02-Apr-08	="Published Products"	20-Mar-08	31-Mar-08	15955.90	=""	="HMA Blaze Pty Limited"	02-Apr-08 02:33 PM	

+="CN67647"	"GAP regulatory affairs congress"	="Department of the Treasury"	02-Apr-08	="Education and Training Services"	18-Mar-08	31-Mar-08	11000.00	=""	="Global Access Partners"	02-Apr-08 02:33 PM	

+="CN67648"	"Airfares"	="Department of the Treasury"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	03-Mar-08	30-Jun-08	37695.13	=""	="American Express International"	02-Apr-08 02:33 PM	

+="CN67649"	"Placement fees"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	12012.00	=""	="Professional Careers Australia P/L"	02-Apr-08 02:34 PM	

+="CN67650"	"Legal Advice"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	30-Jun-08	15000.00	=""	="Australian Government Solicitor"	02-Apr-08 02:34 PM	

+="CN67651"	"Secondment"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	30-Jun-08	66750.64	=""	="CP&S Chang, Pistilli & Simmons Corp"	02-Apr-08 02:34 PM	

+="CN67652"	"Development of Integrated System"	="Department of the Treasury"	02-Apr-08	="Office Equipment and Accessories and Supplies"	05-Mar-08	05-Mar-08	11165.00	=""	="Axe Group Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67653"	"20 Blackberry Devices"	="Department of the Treasury"	02-Apr-08	="Office Equipment and Accessories and Supplies"	11-Mar-08	14-Mar-08	13420.00	=""	="Optus Billing Services Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67654"	"Treasury-ICON Annual Levy Administered"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	05-Mar-08	30-Jun-08	16500.00	=""	="Dept of Finance & Deregulation"	02-Apr-08 02:34 PM	

+="CN67655"	"CAMA to undertake a scenario analysis in the GCUBE"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	01-May-08	66000.00	=""	="Australian National University"	02-Apr-08 02:34 PM	

+="CN67656"	"Provision of research and a report into legel and"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	40300.00	=""	="Rice Warner Actuaries Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67658"	"Provision of design, writing and research to devel"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	30-Jun-08	54253.70	=""	="Famous 5 Pty Ltd"	02-Apr-08 02:34 PM	

+="CN67659"	"Provision of cost planning and quantity surveying of a new computer room to the Department of the Tr"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	01-Nov-07	01-May-08	10335.00	=""	="Donald Cant Watts Corker (A.C.T) Pt"	02-Apr-08 02:35 PM	

+="CN67660"	"To provide specific legal advice"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	03-Mar-08	03-Mar-08	10956.00	=""	="Aust Government Solicitor  ACT"	02-Apr-08 02:35 PM	

+="CN67661"	"Provision of cnsultancy services for the Treasury"	="Department of the Treasury"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	08-Feb-08	28-Mar-08	17600.00	=""	="Cybertrust"	02-Apr-08 02:35 PM	

+="CN67662"	"Airfares"	="Department of the Treasury"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	03-Mar-08	30-Jun-08	268636.08	=""	="American Express International"	02-Apr-08 02:35 PM	

+="CN67663"	"Provision of contractor to undertake the role of P"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	27-Jun-08	80000.00	=""	="ICON Recruitment Pty Ltd"	02-Apr-08 02:35 PM	

+="CN67664"	"Treasury in-house Lawyer - Tara McNeilly - Austral"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Dec-08	415000.00	=""	="Aust Government Solicitor  ACT"	02-Apr-08 02:35 PM	

+="CN67665"	"Request to design brands/logos & templatesfor prog material & assist w cross agency implemen"	="Department of the Treasury"	02-Apr-08	="Paper Materials and Products"	19-Mar-08	30-Jun-08	20000.00	=""	="Cre8ive"	02-Apr-08 02:36 PM	

+="CN67666"	"Financial Advice and Support for the Standard Busi"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	18-Mar-08	30-Jun-08	200000.00	=""	="Acumen Alliance"	02-Apr-08 02:36 PM	

+="CN67657"	"safety footwear"	="Department of Defence"	02-Apr-08	="Safety footwear"	06-Nov-07	14-Mar-08	18810.00	=""	="MAINPEAK"	02-Apr-08 02:36 PM	

+="CN67667"	"Provision of services for the ICT Sourcing Support"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Apr-08	50000.00	=""	="Broadleaf Capital International Pty"	02-Apr-08 02:36 PM	

+="CN67668"	"Provision of emissions response functions for sele"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	04-Apr-08	24000.00	=""	="McLennan Magasanik Associates Pearc"	02-Apr-08 02:36 PM	

+="CN67669"	"Bottom-up modelling of the agriculture and forestr"	="Department of the Treasury"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	14-Apr-08	35000.00	=""	="ABARE"	02-Apr-08 02:36 PM	

+="CN67670"	"Supply of 6 VHF Radios"	="Australian Federal Police"	02-Apr-08	="Two way radios"	01-Apr-08	30-Jun-08	20625.00	=""	="Motorola Australia Pty Limited"	02-Apr-08 02:40 PM	

+="CN67671"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	17-Mar-08	17-Apr-08	24932.93	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:45 PM	

+="CN67672"	"Online content conversion and HTML editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	17-Mar-08	30-Jun-08	34707.20	=""	="AMBIT GROUP PTY LIMITED"	02-Apr-08 02:45 PM	

+="CN67673"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	44660.00	=""	="Chris Adams & Associates"	02-Apr-08 02:45 PM	

+="CN67674"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	54000.00	=""	="Directions for Change"	02-Apr-08 02:45 PM	

+="CN67675"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	17-Mar-08	30-Jun-08	87300.00	=""	="Interaction Consulting Group PtyLtd"	02-Apr-08 02:45 PM	

+="CN67676"	"Training Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	17-Mar-08	30-Jun-08	62400.00	=""	="SHANE CARROLL & ASSOCIATES"	02-Apr-08 02:46 PM	

+="CN67677"	"Printing 600,000 CCMS parents booklets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	17-Mar-08	28-Mar-08	40045.50	=""	="PARAGON PRINTERS AUSTRALASIA GROUP"	02-Apr-08 02:46 PM	

+="CN67678"	"Aust/Aboriginal and Torres Strait Islander Flags"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	30-Jun-08	19800.00	=""	="Corporate Express Australia"	02-Apr-08 02:46 PM	

+="CN67679"	"Software Tester"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	18-Mar-08	30-Jun-08	33176.00	=""	="Talent International (ACT)"	02-Apr-08 02:46 PM	

+="CN67680"	"The provision of contract services in relation to online content conservation and HTML editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	30-Jun-08	41888.00	=""	="GREYTHORN PTY LTD"	02-Apr-08 02:46 PM	

+="CN67681"	"SES Planning Conference on the 3-4 April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accommodation furniture"	13-Mar-08	11-Apr-08	11000.00	=""	="PALM Consulting Group Pty Ltd"	02-Apr-08 02:46 PM	

+="CN67682"	"Business Analyst"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	13-Mar-08	30-Jun-08	71808.00	=""	="Paxus Australia Pty Ltd"	02-Apr-08 02:46 PM	

+="CN67683"	"Printing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Mar-08	30-Jun-08	15600.20	=""	="Image Offset"	02-Apr-08 02:46 PM	

+="CN67684"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	14-Mar-08	30-Jun-08	77440.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:47 PM	

+="CN67685"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	14-Mar-08	30-Jun-08	59752.00	=""	="CLICKS IT RECRUITMENT"	02-Apr-08 02:47 PM	

+="CN67686"	"Emergency Relief Program privacy training in South Australia"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	14-Mar-08	30-Jun-08	23200.00	=""	="LUTHERAN COMMUNITY CARE"	02-Apr-08 02:47 PM	

+="CN67687"	"Emergency Relief Program privacy training in South Australia"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	14-Mar-08	30-Jun-08	12831.00	=""	="TAFE SA"	02-Apr-08 02:47 PM	

+="CN67688-A2"	"Software Licence/Maintenance"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Software maintenance and support"	14-Mar-08	30-Sep-11	176983.25	=""	="CITRIX SYSTEMS ASIA PACIFIC PTY LTD"	02-Apr-08 02:47 PM	

+="CN67689"	"Facilitation  Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	17-Mar-08	30-Jun-08	11441.76	=""	="AUST INDIGENOUS LEADERSHIP CENTRE"	02-Apr-08 02:47 PM	

+="CN67690"	"Developmental research to test social & community messages amoung the Australian community"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	27-Mar-08	26-May-08	170830.00	=""	="BLUE MOON RESEARCH & PLANNING"	02-Apr-08 02:47 PM	

+="CN67691"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	30-May-08	29050.00	=""	="ARTD Pty Ltd"	02-Apr-08 02:47 PM	

+="CN67692"	"Employment of Lynn Zheng"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	27-Mar-08	30-Jun-08	40000.00	=""	="Hays Specialist Recruitment"	02-Apr-08 02:48 PM	

+="CN67693"	"ADE Logo, Brand and Style Guide"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	27-Mar-08	16-May-08	54851.50	=""	="SMART Sydney Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67694"	"Technical Analyst/Assistant Project Manager"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	28-Mar-08	23-May-08	35200.00	=""	="REDBACK CONSULTING PTY LTD"	02-Apr-08 02:48 PM	

+="CN67695"	"Design build and document MOSS Server"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	30-Apr-08	38640.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67696"	"Introductory Corporate Governance Workshop EK1 & 2"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Vocational training"	28-Mar-08	30-Jun-08	48240.00	=""	="DEBORAH DURNAN"	02-Apr-08 02:48 PM	

+="CN67697"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	31-Mar-08	30-Jun-08	64626.88	=""	="PHASE III SOLUTIONS PTY LTD"	02-Apr-08 02:48 PM	

+="CN67698"	"Contractor to review the MaPS application & infra."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	31-Mar-08	30-Apr-08	36960.00	=""	="Avanade Australia Pty Ltd"	02-Apr-08 02:48 PM	

+="CN67699"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	26-Mar-08	26-Apr-08	58616.50	=""	="COMPUTERCORP (OPERATIONS)"	02-Apr-08 02:48 PM	

+="CN67700"	"Software Tester"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	18-Mar-08	30-Jun-08	39600.00	=""	="AUREC PTY LTD"	02-Apr-08 02:49 PM	

+="CN67701-A5"	" Provision of EAP Services "	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	19-Mar-08	30-Sep-11	575100.00	=""	="Davidson Trahaire Corpsych Pty Ltd"	02-Apr-08 02:49 PM	

+="CN67702"	"6 x Electronic whiteboards for Centreplaza"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office and desk accessories"	20-Mar-08	30-Mar-08	14358.00	=""	="ESC TECHNOLOGY PTY LTD"	02-Apr-08 02:49 PM	

+="CN67703"	"Replication/Printing/Testing/Packing CDS"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	20-Mar-08	30-Jun-08	20581.00	=""	="DOGMA"	02-Apr-08 02:49 PM	

+="CN67704"	"provision of financial services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Human resources services"	25-Mar-08	30-Jun-08	25000.00	=""	="WALTERTURNBULL"	02-Apr-08 02:49 PM	

+="CN67705"	"Development of Training Workbook"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	26-Mar-08	08-Apr-08	23760.00	=""	="Yellow Edge Victoria Pty Ltd"	02-Apr-08 02:49 PM	

+="CN67706"	"NAYSS Good Practise forum May 2008 - Venue, conference package and accommodation."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	26-Mar-08	02-May-08	24300.00	=""	="CITIGATE SEBEL - SYDNEY"	02-Apr-08 02:49 PM	

+="CN67707"	"Review of the "Information Kit For Disability Empl"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	26-Mar-08	14-Jun-08	25080.00	=""	="Disability Studies and Research"	02-Apr-08 02:49 PM	

+="CN67708"	"Chartered Flights for Former minister Mal Brough visiting - Alice Springs, Santa Teresa, Eridunda"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel facilitation"	26-Mar-08	26-Mar-08	45410.00	=""	="Corporate Air"	02-Apr-08 02:50 PM	

+="CN67709"	"Inv.CG560009 Acc No.222668"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office Equipment and Accessories and Supplies"	29-Feb-08	27-Mar-08	19002.30	=""	="FUJI XEROX AUSTRALIA PTY LTD"	02-Apr-08 02:50 PM	

+="CN67710"	"Lease Pymnt COL0500/2401-02 Ref 6186"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	26-Mar-08	28-Mar-08	29320.20	=""	="ECS Property Group"	02-Apr-08 02:50 PM	

+="CN67711-A4"	" Use, amendment and scoring of ACER child assessment instruments, including training. "	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information services"	03-Mar-08	30-Jun-11	90955.00	=""	="Aust Council for Educational"	02-Apr-08 02:50 PM	

+="CN67712"	"Delivery of Compass Graduate Program training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Education and Training Services"	03-Mar-08	30-Jun-08	41992.50	=""	="Interaction Consulting Group PtyLtd"	02-Apr-08 02:50 PM	

+="CN67713"	"Conference Facilitation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	07-Mar-08	12800.00	=""	="Yellow Edge Victoria Pty Ltd"	02-Apr-08 02:50 PM	

+="CN67714"	"Catering"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	04-Mar-08	03-Dec-08	29450.00	=""	="Hyatt Hotel Canberra"	02-Apr-08 02:50 PM	

+="CN67715"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	05-Mar-08	30-Jun-08	63118.00	=""	="GREYTHORN PTY LTD"	02-Apr-08 02:50 PM	

+="CN67716"	"Repairs to House - Mutitjulu Community"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accommodation furniture"	05-Mar-08	30-May-08	31150.00	=""	="Alice T & C Maintenance & Construct"	02-Apr-08 02:51 PM	

+="CN67717"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Software"	05-Mar-08	05-Apr-08	22976.80	=""	="KAZ GROUP PTY LTD"	02-Apr-08 02:51 PM	

+="CN67718"	"Reimbursement to UGS March 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	27-Mar-07	27-Mar-08	96272.52	=""	="United Group Services"	02-Apr-08 02:51 PM	

+="CN67719"	"FACSIA ICC Offices Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	21381.56	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67720"	"FACSIA National Office Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	39115.51	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67721"	"FACSIA National Office Stores Feb 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Office supplies"	05-Mar-08	31-Mar-08	29730.38	=""	="Corporate Express Australia"	02-Apr-08 02:51 PM	

+="CN67722"	"Financial Management Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accounting and auditing"	14-Mar-08	15-Mar-08	24115.28	=""	="WALTERTURNBULL"	02-Apr-08 02:51 PM	

+="CN67723"	"AMEX invoice Acc No.376059690931003 Feb 08 National Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	06-Mar-08	18773.47	=""	="American Express"	02-Apr-08 02:51 PM	

+="CN67724"	"SSAT Review of Child Support Case management"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Information services"	28-Feb-08	07-Mar-08	139586.10	=""	="Blake Dawson"	02-Apr-08 02:51 PM	

+="CN67725"	"Pymnt Inv/Acc.PBD1206-080228 Project. SSAT"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	15-Feb-08	14-Mar-08	19278.60	=""	="Hassell Ltd"	02-Apr-08 02:52 PM	

+="CN67726"	"Mth of April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	19-Mar-08	26-Mar-08	21149.34	=""	="Jones Lang La Salle (VIC)"	02-Apr-08 02:52 PM	

+="CN67727"	"Rental April 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Real estate services"	01-Apr-08	01-Apr-08	35134.47	=""	="ARIA Property International"	02-Apr-08 02:52 PM	

+="CN67728"	"Pandemic Influenza Booklet"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printing and publishing equipment"	11-Mar-08	07-Apr-08	15678.30	=""	="Pirion Pty Limited"	02-Apr-08 02:52 PM	

+="CN67729"	"AGG Travel and education expenses 07/08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Financial and Insurance Services"	12-Mar-08	30-Jun-08	15000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-Apr-08 02:52 PM	

+="CN67730"	"Consultancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	15-May-08	46200.00	=""	="PERKS AUDIT & ASSURANCE"	02-Apr-08 02:52 PM	

+="CN67731"	"Conduct a threat risk assessment for the grants management system."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	12-Mar-08	09-May-08	69375.00	=""	="KPMG"	02-Apr-08 02:52 PM	

+="CN67732"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	12-Mar-08	12-Apr-08	14464.89	=""	="DIMENSION DATA AUSTRALIA PTY LTD"	02-Apr-08 02:52 PM	

+="CN67733"	"lease of it equipment"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Telecommunications media services"	12-Mar-08	30-Jun-09	244776.68	=""	="Commonwealth Bank of Australia -"	02-Apr-08 02:52 PM	

+="CN67734"	"Parent 1 and 2 Consent Books"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Printed media"	13-Mar-08	15-Apr-08	12964.27	="190"	="Ducor Australia Pty Ltd"	02-Apr-08 02:53 PM	

+="CN67735"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	13-Mar-08	13-Apr-08	41112.50	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:53 PM	

+="CN67736"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Hardware"	13-Mar-08	14-Apr-08	33999.45	=""	="DELL AUSTRALIA PTY LIMITED"	02-Apr-08 02:53 PM	

+="CN67737"	"Internal audit services for FOFMS  November 07 to January 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Accounting and auditing"	11-Mar-08	11-Mar-08	24566.85	=""	="Ernst & Young"	02-Apr-08 02:53 PM	

+="CN67738"	"Provision of SAS programming for the Australian Government Census of child care services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	06-Mar-08	31-Mar-08	18500.00	=""	="PEOPLEBANK"	02-Apr-08 02:53 PM	

+="CN67739"	"Programme management arrangements"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management advisory services"	06-Mar-08	30-Apr-08	13200.00	=""	="HannahFyre Enterprises"	02-Apr-08 02:53 PM	

+="CN67740"	"Provision of Influenza Vaccinations"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	06-Mar-08	31-May-08	19000.00	=""	="Corporate Medical Options (CMO)"	02-Apr-08 02:53 PM	

+="CN67741"	"Case Management and Intelligence System"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Business administration services"	07-Mar-08	30-Jun-08	32450.00	=""	="Jade Direct Australia Pty Ltd"	02-Apr-08 02:53 PM	

+="CN67742"	"Hearing Loop System-Centraplaza"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	07-Mar-08	30-Jun-08	11303.00	=""	="PRINTACALL"	02-Apr-08 02:54 PM	

+="CN67743"	"Transition Project Manager"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	07-Mar-08	30-Jun-08	78540.00	=""	="PEOPLEBANK"	02-Apr-08 02:54 PM	

+="CN67744"	"SharePoint Developer for Lotus Notes Re-developmen"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Computer services"	11-Mar-08	30-Jun-08	36300.00	=""	="Compas Pty Ltd"	02-Apr-08 02:54 PM	

+="CN67745"	"Headsets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	30-Jun-08	14000.00	=""	="Telstra Corporation"	02-Apr-08 02:54 PM	

+="CN67746"	"Accommodation"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-Apr-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	26-Jun-08	36995.76	=""	="DEPARTMENT OF COMMUNITIES (QLD)"	02-Apr-08 02:54 PM	

+="CN67281-A3"	"2020 Summitt Collateral"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="World wide web WWW site design services"	03-Feb-08	30-Apr-08	44481.00	=""	="ZOO COMMUNICATIONS"	02-Apr-08 03:57 PM	

+="CN67282-A1"	"Broadcast Management Services - 2020 Summitt"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="Television broadcasting station management"	17-Mar-08	24-Apr-08	40000.00	=""	="Stephenie Werrett"	02-Apr-08 03:58 PM	

+="CN67279"	"Media Management - 2020 Summit"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="Telecommunications media services"	03-Mar-08	30-May-08	60000.00	=""	="CMAX Communications"	02-Apr-08 03:59 PM	

+="CN67280-A1"	"Logo Development Services - 2020 Summitt"	="Department of the Prime Minister and Cabinet"	02-Apr-08	="World wide web WWW site design services"	17-Mar-08	24-Apr-08	15000.00	=""	="ZOO COMMUNICATIONS PTY LTD"	02-Apr-08 04:00 PM	

+="CN67749"	"Online Survey - Canberra Central Parklands"	="National Capital Authority"	02-Apr-08	="Business and corporate management consultation services"	20-Nov-07	11-Jan-08	12375.00	=""	="StollzNow Research"	02-Apr-08 04:25 PM 

--- /dev/null
+++ b/admin/partialdata/30Apr2008to04May2008valto.xls
@@ -1,1 +1,447 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN72811-A3"	" Provision of short term vehicle hire "	="Australian Federal Police"	30-Apr-08	="Motor vehicles"	01-Jul-07	30-Jun-12	1931701.00	="CONS06/0124"	="Kingmill Pty Ltd trading as Thrifty Car Rental"	30-Apr-08 08:59 AM	

+="CN72812"	" 9150-66-086-8598   Lubricating Oil, Gear  QTY: 38 "	="Defence Materiel Organisation"	30-Apr-08	="Lubricants and oils and greases and anti corrosives"	29-Apr-08	07-May-08	31878.35	=""	="BP"	30-Apr-08 09:08 AM	

+="CN72815"	" LABOUR COST AND REPAIR "	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:27 AM	

+="CN72816"	"LABOUR COST REPAIR"	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:30 AM	

+="CN72817"	"LABOUR AND REPAIR COST"	="Department of Defence"	30-Apr-08	="Chromatographic measuring instruments and accessories"	30-Apr-08	07-Aug-08	32000.00	=""	="BAE SYSTEMS AUSTRALIA LTD"	30-Apr-08 09:35 AM	

+="CN72708"	"Scoping report regarding possible physical and biomarkers module(s) for LSAC project"	="Australian Institute of Family Studies"	30-Apr-08	="Research programs"	01-Dec-07	15-Feb-08	23988.80	=""	="Murdoch Children's Research Institute"	30-Apr-08 10:05 AM	

+="CN72822-A1"	"Market Research Opt-Out Project"	="Australian Institute of Family Studies"	30-Apr-08	="Market research"	19-Mar-08	19-Mar-08	11000.00	=""	="Australian Government Child Support Agency"	30-Apr-08 10:11 AM	

+="CN72821-A1"	"SAP ERP 6.0 Upgrade Safeguarding 2008"	="Australian Federal Police"	30-Apr-08	="Engineering and Research and Technology Based Services"	25-Mar-08	31-Dec-08	210485.00	=""	="SAP Australia Pty Ltd"	30-Apr-08 10:16 AM	

+="CN72825"	"Video productions for Dialogue Day"	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Mar-08	02-Apr-08	13994.20	=""	="Bearcage Media Services"	30-Apr-08 10:33 AM	

+="CN72826"	"Recruitment fee"	="Future Fund Management Agency"	30-Apr-08	="Recruitment services"	14-Apr-08	31-May-08	39600.00	=""	="Mahlab Recruitment (VIC) Pty Ltd"	30-Apr-08 10:34 AM	

+="CN72827"	"Recruitment fee"	="Future Fund Management Agency"	30-Apr-08	="Recruitment services"	15-Apr-08	30-Apr-08	10780.00	=""	="Lloyd Morgan"	30-Apr-08 10:48 AM	

+="CN72828-A1"	"Construction of Royal Thai Police Finger print Forensic Laboratory"	="Australian Federal Police"	30-Apr-08	="Building and Construction Machinery and Accessories"	25-Mar-08	31-Dec-10	41657.55	=""	="Choice Interiors Co Ltd"	30-Apr-08 11:00 AM	

+="CN72831"	"F/A-18 Canopy Transportation Boxes"	="Defence Materiel Organisation"	30-Apr-08	="Transportation related equipment and instruments"	30-Apr-08	23-May-08	10560.00	=""	="Hawker de Havilland"	30-Apr-08 11:49 AM	

+="CN72832-A1"	" McAfee Antivirus Licence 4 May 2008 - 3 May 2009 "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Software maintenance and support"	01-Apr-08	03-May-09	10688.46	=""	="KAZ Group Pty Limited"	30-Apr-08 11:56 AM	

+="CN72833-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	01-Apr-08	05-Sep-08	54000.00	=""	="Hudson Global Resources (Aust) Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72834-A1"	"Conduct Survey of Green Office Procurement and Sustainable Office Management Audit."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	01-Apr-08	30-Jun-08	10100.00	=""	="ORIMA Research"	30-Apr-08 11:56 AM	

+="CN72835-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	02-Apr-08	30-Jun-08	64000.00	=""	="Synergy Business Solutions (Int) Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72836-A1"	" IT analysis for the Performance Audit on Securing Our Fishing Future. "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	08-Apr-08	30-Nov-08	56726.00	=""	="Allanson Consulting Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72837-A1"	"Provide professional support on Quality and Integrity of DVA Income Support Records Audit."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	09-Jan-08	30-Jun-08	15000.00	=""	="Mike Goldstein and Associates Pty Ltd"	30-Apr-08 11:56 AM	

+="CN72838-A1"	" Quality Assurance Review on Performance Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	10-Apr-08	30-Jun-08	11990.00	=""	="Lindsay Roe"	30-Apr-08 11:57 AM	

+="CN72839-A1"	" 2008 PASG Graduates - Storage and Removal Costs "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	10-Dec-07	31-Jan-08	14453.11	=""	="Toll Transitions"	30-Apr-08 11:57 AM	

+="CN72840-A1"	" Recruitment - Placement Fee "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	11-Feb-08	11-Mar-08	13429.37	=""	="Firstwater Pty Ltd"	30-Apr-08 11:57 AM	

+="CN72842-A1"	"Provide advisory panel services to the Movement Alert List Performance Audit of DIAC."	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	14-Apr-08	30-Jan-09	21450.00	=""	="Christopher Conybeare and Associates"	30-Apr-08 11:57 AM	

+="CN72843"	"hma Blaze Pty Limited"	="Australian National Audit Office (ANAO)"	30-Apr-08	="Print advertising"	15-Feb-08	15-Jun-08	10324.55	=""	="hma Blaze Pty Limited"	30-Apr-08 11:57 AM	

+="CN72844-A2"	" Manage and carry out the Performance Audit 'Business Continuity Management in the Australian Taxation Office' "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	15-Jan-08	31-Oct-08	368507.00	=""	="SMS Consulting Group Ltd"	30-Apr-08 11:57 AM	

+="CN72845-A1"	" E-Hive Training "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Personnel recruitment"	18-Feb-08	25-Apr-08	40000.00	=""	="Ambit Recruitment Group Pty Ltd"	30-Apr-08 11:57 AM	

+="CN72846-A1"	" PASG Public Sector Entity Survey 2007-08 "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Business and corporate management consultation services"	18-Mar-08	31-Dec-08	40645.00	=""	="ORIMA Research"	30-Apr-08 11:58 AM	

+="CN72847-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	23-Mar-08	15-Aug-08	80080.00	="ANAOAM2007/592"	="Analytics Group Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72848-A1"	"Provision of audit services for the Better Practice Guide for the Initiation of Business Systems Projects"	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	24-Jan-08	30-May-08	52500.00	=""	="Pitt Group Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72849-A1"	" Conduct audit on DEEWRS Administration of Job Network Outcome Payments. "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	25-Feb-08	31-Dec-08	330000.00	=""	="KNJ Professional Services Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72850-A1"	" Review and test IT environment application and data supporting Administration of DVA Income Support System "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	26-Mar-08	09-May-08	25200.00	=""	="Axiom Associates Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72851-A1"	" Reams of photocopy paper "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Printing and writing paper"	26-Mar-08	10-Apr-08	18975.00	=""	="OfficeMax Australia Ltd"	30-Apr-08 11:58 AM	

+="CN72852-A1"	" Engagement of staff to assist with Financial Statement Audits "	="Australian National Audit Office (ANAO)"	30-Apr-08	="Audit services"	28-Feb-08	28-Mar-08	10000.00	=""	="Hays Personnel Services (Aust) Pty Ltd"	30-Apr-08 11:58 AM	

+="CN72853"	"Financial System Software Fee"	="Department of the Environment Water Heritage and the Arts"	30-Apr-08	="Software"	12-Jan-07	27-Oct-11	2382849.50	="0607-045"	="SAP Australia"	30-Apr-08 12:09 PM	

+="CN72854-A1"	"Fitout of Centrelink Customer Service Centre at Palm Beach QLD"	="Centrelink"	30-Apr-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	20-May-08	30-Dec-08	361900.00	=""	="Quadric Pty Ltd"	30-Apr-08 12:17 PM	

+="CN72859"	" Carry out R3 service including repair and modifications. "	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	18-Apr-08	30-Jun-08	300000.00	=""	="BAE Systems Aust Military Air Support"	30-Apr-08 12:34 PM	

+="CN72862-A1"	"Provision of Cleaning Services for the Greater Westernport Region of CRS Australia"	="CRS Australia"	30-Apr-08	="General building and office cleaning and maintenance services"	01-Apr-08	30-Nov-09	32092.05	=""	="Ambassador Property Services"	30-Apr-08 01:38 PM	

+="CN72869-A4"	" Review and modify existing modules for the LB&I Program "	="Australian Taxation Office"	30-Apr-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	30-Jun-10	395272.00	="40.05.024"	="CPA Australia"	30-Apr-08 02:26 PM	

+="CN72870"	"Information technology security advisory services"	="Future Fund Management Agency"	30-Apr-08	="Information technology consultation services"	01-Apr-08	31-Dec-08	25363.80	=""	="ASG Group Limited"	30-Apr-08 02:30 PM	

+="CN72339"	"PHARMACEUTICALS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	21-Apr-08	22-May-08	17802.40	=""	="AUSTRALIAN THERAPEUTIC SUPPLIES"	30-Apr-08 02:34 PM	

+="CN72871"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	01-Apr-08	30-May-08	42471.19	=""	="SMITH & NEPHEW AUSTRALIA P/L"	30-Apr-08 02:40 PM	

+="CN72873"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	14-Apr-08	14-May-08	55361.03	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 02:45 PM	

+="CN72876"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	22-Apr-08	24-May-08	24387.52	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 02:52 PM	

+="CN72879"	"VARIOUS PHARMACEUTICAL ASSOCIATED ITEMS"	="Defence Materiel Organisation"	30-Apr-08	="Medical health associations"	22-Apr-08	24-May-08	42276.43	=""	="SYMBION PHARMACY SERVICES"	30-Apr-08 03:00 PM	

+="CN72882"	" Printing of: NAT2053-07.2004  Qty: 1000000 "	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	25-May-08	24050.00	=""	="The Camerons Group"	30-Apr-08 03:03 PM	

+="CN72884"	"Provision of Legal Secretarial Services"	="Family Court of Australia"	30-Apr-08	="Office administration or secretarial services"	02-Jul-07	30-Jun-09	19213.20	=""	="Raneri Enterprises Trust"	30-Apr-08 03:08 PM	

+="CN72868"	"Aviation Spares - Overhaul of Tail Rotor Gearbox"	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	26-Nov-07	31-Jul-08	14401.17	=""	="Australian Aerospace"	30-Apr-08 03:39 PM	

+="CN72898"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-Apr-08	01-Apr-09	24077.81	=""	="Zallcom Pty Ltd"	30-Apr-08 03:52 PM	

+="CN72899"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-Apr-08	01-Apr-09	24849.00	=""	="NGA.NET Pty Ltd"	30-Apr-08 03:52 PM	

+="CN72900"	"Office machines and there supplies and asscessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Office machines and their supplies and accessories"	01-Apr-08	01-Apr-13	14448.50	=""	="Canon Australia"	30-Apr-08 03:52 PM	

+="CN72901"	"Office machines and there supplies and asscessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Office machines and their supplies and accessories"	01-Apr-08	01-Apr-13	25203.20	=""	="Canon Australia"	30-Apr-08 03:52 PM	

+="CN72902"	"Business administration services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Business administration services"	01-Feb-08	29-Feb-08	16334.19	=""	="CCH Australia"	30-Apr-08 03:53 PM	

+="CN72903"	"Passenger transport"	="Australian Competition and Consumer Commission"	30-Apr-08	="Passenger transport"	01-Jan-08	31-Jan-08	42449.50	=""	="Qantas American Express Business"	30-Apr-08 03:53 PM	

+="CN72904"	"Electronic reference material"	="Australian Competition and Consumer Commission"	30-Apr-08	="Electronic reference material"	01-Mar-08	31-Mar-08	10374.60	=""	="Media Monitors Australia Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72894"	"Aviation spares - Repair of Canopy"	="Defence Materiel Organisation"	30-Apr-08	="Military rotary wing aircraft"	10-Sep-07	30-May-08	24461.29	=""	="Australian Aerospace"	30-Apr-08 03:53 PM	

+="CN72905"	"Marketing and distribution"	="Australian Competition and Consumer Commission"	30-Apr-08	="Marketing and distribution"	01-Mar-08	31-Mar-08	16500.00	=""	="Roy Morgan Research"	30-Apr-08 03:53 PM	

+="CN72906"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	01-Mar-08	31-Mar-08	21071.72	=""	="Telstra"	30-Apr-08 03:53 PM	

+="CN72907"	"Software"	="Australian Competition and Consumer Commission"	30-Apr-08	="Software"	01-May-08	30-Apr-09	17568.98	=""	="CoreSight Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72908"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	01-May-08	30-Apr-09	93576.49	=""	="Tower Software Engineering"	30-Apr-08 03:53 PM	

+="CN72909"	"Reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	04-Mar-08	30-Apr-08	23708.30	=""	="Paragon Printers Australasia Pty Ltd"	30-Apr-08 03:53 PM	

+="CN72910"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	08-Apr-08	02-May-08	43890.00	=""	="National Field Services Millward Brown"	30-Apr-08 03:54 PM	

+="CN72911"	"Software"	="Australian Competition and Consumer Commission"	30-Apr-08	="Software"	10-Apr-08	09-Apr-09	17600.00	=""	="QAS Systems Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72912"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	10-Apr-08	30-Jun-08	50000.00	=""	="EcoAssist Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72913"	"Reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	10-Apr-08	30-Sep-08	69575.00	=""	="True Characters Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72914"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	12-Mar-08	30-Jun-08	20000.00	=""	="Portland Group Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72915"	"reproduction services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Reproduction services"	12-May-08	25-Aug-08	20229.00	=""	="Biotext Pty Ltd"	30-Apr-08 03:54 PM	

+="CN72916"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	13-Jan-08	13-Feb-08	12051.56	=""	="Telstra"	30-Apr-08 03:54 PM	

+="CN72917"	"Telecommunications media services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Telecommunications media services"	14-Feb-08	13-Mar-08	17902.55	=""	="Telstra"	30-Apr-08 03:54 PM	

+="CN72918"	"Photographic services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Photographic services"	14-Sep-07	30-Jun-08	40140.00	=""	="Bearcage Productions"	30-Apr-08 03:54 PM	

+="CN72919"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	16-Sep-07	30-Jun-08	32681.55	="RFT2007-2116"	="Cogent Business Solutions Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72920"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	18-Apr-08	21-Jun-08	12764.86	=""	="ASG Group Ltd"	30-Apr-08 03:55 PM	

+="CN72921"	"Data Voice or Multimedia equipment"	="Australian Competition and Consumer Commission"	30-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Apr-08	30-Jun-08	24113.22	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72922"	"Data Voice or Multimedia equipment"	="Australian Competition and Consumer Commission"	30-Apr-08	="Data Voice or Multimedia Network Equipment or Platforms and Accessories"	18-Apr-08	30-Jun-08	32168.26	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72923"	"Computer services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Computer services"	19-Mar-08	19-Mar-08	17050.00	=""	="Sirsi Dynix Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72924"	"Communications devices and accessories"	="Australian Competition and Consumer Commission"	30-Apr-08	="Communications Devices and Accessories"	19-Mar-08	30-Jun-08	15565.21	=""	="VOIP Pty Ltd"	30-Apr-08 03:55 PM	

+="CN72925"	"lodging and meeting facilities"	="Australian Competition and Consumer Commission"	30-Apr-08	="Hotels and lodging and meeting facilities"	24-Jul-08	25-Jul-08	49480.00	=""	="Your Next Event"	30-Apr-08 03:55 PM	

+="CN72926"	"Printed media"	="Australian Competition and Consumer Commission"	30-Apr-08	="Printed media"	25-Feb-08	26-Feb-08	25989.60	=""	="Thomson Legal and Regulatory Ltd"	30-Apr-08 03:55 PM	

+="CN72927"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	25-Mar-08	01-May-09	327800.00	="RFT2007-13"	="Worley Parsons Services Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72928"	"Management advisory services"	="Australian Competition and Consumer Commission"	30-Apr-08	="Management advisory services"	26-Feb-08	09-May-08	61248.00	="RFT2007-2058"	="Commander Intergated Networks Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72929"	"advertising"	="Australian Competition and Consumer Commission"	30-Apr-08	="Advertising"	29-Feb-08	01-Mar-08	11869.57	=""	="hma Blaze Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72930"	"advertising"	="Australian Competition and Consumer Commission"	30-Apr-08	="Advertising"	29-Feb-08	01-Mar-08	19473.86	=""	="hma Blaze Pty Ltd"	30-Apr-08 03:56 PM	

+="CN72934"	"Provision of team leader services"	="Family Court of Australia"	30-Apr-08	="Information technology consultation services"	14-Apr-08	13-Oct-08	112112.00	=""	="Talent International"	30-Apr-08 04:00 PM	

+="CN72935-A2"	"Supply, Instalation & Maintenance of Horiba XGT 7000 X-Ray Analytical Microscopy System"	="Australian Federal Police"	30-Apr-08	="Medical Equipment and Accessories and Supplies"	28-Apr-08	19-Nov-12	505583.10	=""	="DKSH Australia Pty Ltd"	30-Apr-08 04:01 PM	

+="CN72936"	"motor vehicle spare parts"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	18566.02	=""	="LANDROVER"	30-Apr-08 04:03 PM	

+="CN72938"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	17010.95	=""	="LAND ROVER AUSTRALIA"	30-Apr-08 04:06 PM	

+="CN72940"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	13161.26	=""	="LANDROVER"	30-Apr-08 04:09 PM	

+="CN72942"	" CORD FIBROUS "	="Department of Defence"	30-Apr-08	="Ropes"	30-Apr-08	30-May-08	29500.00	=""	="JOBECK PTY LTD"	30-Apr-08 04:12 PM	

+="CN72944"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	10144.46	=""	="LANDROVER"	30-Apr-08 04:12 PM	

+="CN72945"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	26162.17	=""	="LANDROVER"	30-Apr-08 04:15 PM	

+="CN72948"	"BRAS"	="Department of Defence"	30-Apr-08	="Brassieres"	30-Apr-08	30-May-08	11440.00	=""	="THE BERLEI GROUP"	30-Apr-08 04:18 PM	

+="CN72949"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	30-Apr-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	28-May-08	14637.59	=""	="LANDROVER"	30-Apr-08 04:19 PM	

+="CN72952"	"MAT GYMNASIUM"	="Department of Defence"	30-Apr-08	="Gymnastics equipment"	29-Apr-08	29-May-08	19516.00	=""	="ACROMAT PTY LTD"	30-Apr-08 04:22 PM	

+="CN72955"	"Printing of NAT4446 - ATO Letterhead. Qty: 3,000,000"	="Australian Taxation Office"	30-Apr-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	30-Apr-08	20-May-08	43564.40	=""	="Paragon Printers"	30-Apr-08 05:17 PM	

+="CN72957"	"Carpark rental - Sydney"	="Future Fund Management Agency"	30-Apr-08	="Parking lot"	01-Jun-08	31-May-10	25520.00	=""	="CB Richard Ellis"	30-Apr-08 06:33 PM	

+="CN72959"	"Brackets, Bar & Plug Assembly, Shaft"	="Defence Materiel Organisation"	01-May-08	="Parts of guns or pistols"	30-Apr-08	09-Jul-08	29488.80	=""	="G A Hanrahan Pty Ltd"	01-May-08 07:50 AM	

+="CN72960"	"VEHICLE REPAIRS"	="Department of Defence"	01-May-08	="Motor vehicles"	11-Apr-08	11-May-08	11167.31	=""	="TOWNSVILLE IND. PAINTING & COATING"	01-May-08 08:06 AM	

+="CN72970-A1"	"Provision of Electronic Security Services Upgrade"	="Family Court of Australia"	01-May-08	="Security and control equipment"	29-Apr-08	31-Dec-08	353600.40	=""	="SNP Security"	01-May-08 09:08 AM	

+="CN72972"	" MEDICAL CONSUMABLE ITEM "	="Defence Materiel Organisation"	01-May-08	="Medical health associations"	22-Apr-08	24-May-08	13991.56	=""	="FLUID PRODUCTS SERVICES"	01-May-08 09:37 AM	

+="CN72974"	"Project Manager Business Intelligence Implementation - TRIM"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	01-May-08	30-Jun-08	59400.00	="06/170-04"	="Oakton AA Services Pty Ltd"	01-May-08 10:02 AM	

+="CN72975"	"TNT courier and freight services"	="Civil Aviation Safety Authority"	01-May-08	="Postal and small parcel and courier services"	03-Sep-07	30-Jun-08	21000.00	="07/037-01"	="TNT Express"	01-May-08 10:16 AM	

+="CN72976"	"Cable Assembly Printed Flexible"	="Defence Materiel Organisation"	01-May-08	="Power Generation and Distribution Machinery and Accessories"	30-Apr-08	16-Jul-08	88000.00	=""	="INTERCONNECT SYSTEMS PTY LTD"	01-May-08 10:21 AM	

+="CN72977"	"Lodgement of cancelled AD's"	="Civil Aviation Safety Authority"	01-May-08	="Financial accounting"	16-Apr-08	30-Jun-08	32000.00	="07/118-01"	="Attorney General's Department (ACT)"	01-May-08 10:27 AM	

+="CN72979"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	01-May-08	="Business law services"	01-Nov-07	30-Nov-07	11777.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	01-May-08 10:45 AM	

+="CN72981"	"VARIOUS MEDICAL CONSUMABLE ASSOCIATED ITEMS"	="Defence Materiel Organisation"	01-May-08	="Medical health associations"	16-Apr-08	21-May-08	18136.99	=""	="AAXIS PACIFIC P/L"	01-May-08 10:51 AM	

+="CN72987"	"Recruitment Services"	="Australian Taxation Office"	01-May-08	="Recruitment services"	07-Apr-08	05-Jun-08	10000.00	="06.042"	="Hays Specialist Recruitment (Australia) PTY LIMITED"	01-May-08 12:04 PM	

+="CN72988-A1"	"Assistance with Qantum Software Upgrade"	="Australian Office of Financial Management"	01-May-08	="Engineering and Research and Technology Based Services"	17-Apr-08	25-Jul-09	32882.00	=""	="SunGard Asia Pacific Inc"	01-May-08 12:30 PM	

+="CN72991"	" FIRST AID KITS COMBAT SECTION "	="Defence Materiel Organisation"	01-May-08	="Emergency medical services first aid kit cases or bags or accessories"	14-Apr-08	30-Apr-08	32739.00	=""	="ST JOHNS NATIONAL BUSINESS"	01-May-08 12:49 PM	

+="CN72995"	"Management advisory services"	="Australian Competition and Consumer Commission"	01-May-08	="Management advisory services"	01-Apr-08	31-May-08	25800.00	=""	="WIK Wissenschaftliches institute"	01-May-08 01:19 PM	

+="CN72997"	"Management advisory services"	="Australian Competition and Consumer Commission"	01-May-08	="Management advisory services"	14-Apr-08	16-May-08	80000.00	=""	="WIK Wissenschaftliches Institute"	01-May-08 01:23 PM	

+="CN72996"	" VEHICLE REPAIRS "	="Department of Defence"	01-May-08	="Motor vehicles"	01-May-08	01-Jun-08	15312.00	=""	="NORTHERN HARD SURFACES"	01-May-08 01:24 PM	

+="CN72998"	"Management advisory services"	="Australian Competition and Consumer Commission"	01-May-08	="Management advisory services"	18-Mar-08	30-Jun-08	100000.00	=""	="LECG Consulting Cambridge"	01-May-08 01:33 PM	

+="CN72999"	"Management advisory services"	="Australian Competition and Consumer Commission"	01-May-08	="Management advisory services"	19-Mar-08	30-Jun-08	80000.00	=""	="LECG Incorporated"	01-May-08 01:37 PM	

+="CN73000"	"Temp staff for Document Control Unit"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	01-May-08	12-Dec-08	52000.00	="07/187-01"	="Green and Green"	01-May-08 01:44 PM	

+="CN73002"	"Conference fee - Human Factors community meeting"	="Civil Aviation Safety Authority"	01-May-08	="Financial accounting"	03-Mar-08	08-Mar-08	12127.00	="07/209-00"	="Holiday Inn Darling Harbour"	01-May-08 01:47 PM	

+="CN73003"	"Team Leader - Internal Budgeting and Reporting"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	26-May-08	27-Jun-08	23760.00	="07/212-01"	="Total Decision Support Pty Ltd"	01-May-08 01:52 PM	

+="CN73004"	"Engagement of structural engineer - B628 Bankstown Airport"	="Civil Aviation Safety Authority"	01-May-08	="Management and operation of all facilities, engineering, modification and maintenance services for site or platform"	03-Mar-08	30-Jun-08	17215.00	="07/250-00"	="GHD Pty Ltd"	01-May-08 01:59 PM	

+="CN73008"	"OAR Aeronautical Study - South Australia"	="Civil Aviation Safety Authority"	01-May-08	="Aircraft"	28-Mar-08	23-May-08	165700.00	="07/252-00"	="Hyder Consulting Pty Ltd"	01-May-08 02:04 PM	

+="CN73011"	" Building contractor for Perth Office "	="Civil Aviation Safety Authority"	01-May-08	="Airport buildings"	04-Mar-08	15-May-08	834900.00	="07/256-00"	="National Interiors"	01-May-08 02:11 PM	

+="CN73012"	"Legal Services - Drugs and Alcohol testing"	="Civil Aviation Safety Authority"	01-May-08	="Legal services"	27-Feb-08	01-Aug-08	80000.00	="07/261"	="Mallesons Stephen Jaques Solicitors - ACT"	01-May-08 02:17 PM	

+="CN73013"	"CASA Website redesign"	="Civil Aviation Safety Authority"	01-May-08	="World wide web WWW site design services"	29-Apr-08	01-Jun-08	20000.00	="07/273-00"	="Visual Jazz Pty Ltd"	01-May-08 02:26 PM	

+="CN73014"	"motor vehicle spare parts"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	28-Apr-08	01-May-08	119749.08	=""	="MERCEDES BENZ AUST"	01-May-08 02:42 PM	

+="CN73017"	"Research into creating a representative Indigenous voice at national level."	="Australian Human Rights Commission"	01-May-08	="Market research"	21-Dec-07	28-Mar-08	22000.00	=""	="ANU National Centre for Indigenous Studies"	01-May-08 02:51 PM	

+="CN73016"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	14-Apr-08	01-May-08	26983.70	=""	="MERCEDES BENZ AUST"	01-May-08 02:51 PM	

+="CN73018"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	54051.25	=""	="MERCEDES BENZ AUST"	01-May-08 02:58 PM	

+="CN73015"	"External Bulk Mail Processing"	="Civil Aviation Safety Authority"	01-May-08	="Mailing supplies"	14-Apr-08	30-Jun-08	12000.00	="07/274-00"	="Canberra Mailing & Envelopes"	01-May-08 02:59 PM	

+="CN73019"	"Stationery"	="Department of the House of Representatives"	01-May-08	="Stationery"	01-Mar-08	31-Mar-08	21729.52	=""	="Corporate Express Aust Ltd"	01-May-08 03:01 PM	

+="CN73020"	"ProMaster upgrade - Version 5"	="Civil Aviation Safety Authority"	01-May-08	="Software"	03-Apr-08	02-Jun-08	20790.00	="07/279-00"	="Inlogik Pty Ltd"	01-May-08 03:04 PM	

+="CN73021"	"Comcar for delegation"	="Department of the House of Representatives"	01-May-08	="Passenger motor vehicles"	01-Apr-08	10-Apr-08	25129.13	=""	="Comcar"	01-May-08 03:05 PM	

+="CN73022"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	52924.61	=""	="MERCEDES BENZ AUSTRALIA"	01-May-08 03:07 PM	

+="CN73023"	"Comcar delegation"	="Department of the House of Representatives"	01-May-08	="Passenger motor vehicles"	01-Mar-08	07-Apr-08	11287.57	=""	="Comcar"	01-May-08 03:10 PM	

+="CN73025"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	45595.00	=""	="MERCEDES BENZ AUST"	01-May-08 03:13 PM	

+="CN73026"	"OH & S Equipment - Defibrillators"	="Civil Aviation Safety Authority"	01-May-08	="Office Equipment and Accessories and Supplies"	21-Mar-08	27-Mar-08	36849.00	="07/281-00"	="Parasol EMT Pty Ltd"	01-May-08 03:15 PM	

+="CN73027"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	43639.38	=""	="MERCEDES BENZ AUST"	01-May-08 03:17 PM	

+="CN73028"	" Internet usage "	="Department of the House of Representatives"	01-May-08	="Communications Devices and Accessories"	01-Feb-08	29-Feb-08	12232.12	=""	="Department of Parliament Services"	01-May-08 03:19 PM	

+="CN73024"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	01-May-08	="Business law services"	26-Oct-07	26-Nov-07	20546.47	=""	="CLAYTON UTZ"	01-May-08 03:23 PM	

+="CN73029"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	23613.74	=""	="MERCEDES BENZ AUST"	01-May-08 03:25 PM	

+="CN73030"	"Server & set up"	="Department of the House of Representatives"	01-May-08	="Computer Equipment and Accessories"	01-Apr-08	31-Mar-09	11573.00	=""	="Hostway Corporation"	01-May-08 03:28 PM	

+="CN73031"	"Construction Management for Frankston works"	="Centrelink"	01-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	15-May-08	26-May-08	208087.00	=""	="bronts commercial Interiors Pty Ltd"	01-May-08 03:36 PM	

+="CN73032"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	29907.59	=""	="MERCEDES BENZ AUST"	01-May-08 03:38 PM	

+="CN73033"	" airfares "	="Department of the House of Representatives"	01-May-08	="Passenger transport"	01-Mar-08	31-Mar-08	14832.20	=""	="American Express"	01-May-08 03:41 PM	

+="CN73034"	"Graduate Assistant IT Architects (Oversight)"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	07-Apr-08	30-Jun-08	19800.00	="07/282-00"	="GMT People Pty Ltd"	01-May-08 03:41 PM	

+="CN73035"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	28916.38	=""	="MERCEDES BENZ AUST"	01-May-08 03:43 PM	

+="CN73036"	"File sentencing Records Officer"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	09-Apr-08	24-Apr-08	16200.00	="07/287-00"	="Hays Personnel Services"	01-May-08 03:44 PM	

+="CN73038"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	28329.84	=""	="MERCEDES BENZ AUST"	01-May-08 03:47 PM	

+="CN73037-A1"	"Project Director for Australia 2020 Summit Secretariat"	="Department of the Prime Minister and Cabinet"	01-May-08	="National planning services"	08-Feb-08	02-May-08	137780.00	=""	="Linda Hornsey"	01-May-08 03:48 PM	

+="CN73039"	"Graduate Assistant IT Architects (Oversight)"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	07-Apr-08	30-Jun-08	19800.00	="07/300-00"	="GMT People Pty Ltd"	01-May-08 03:50 PM	

+="CN73040"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	23538.61	=""	="LAND ROVER AUSTRALIA"	01-May-08 03:53 PM	

+="CN73041"	"Facility Manager"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	28-Apr-08	30-Jun-08	29172.00	="07/305-00"	="Hays Personnel Services"	01-May-08 04:00 PM	

+="CN73042"	"Services relating to Election Presentation Modules"	="Australian Electoral Commission"	01-May-08	="Layout or graphics editing services"	08-Feb-08	30-Jun-08	15048.00	=""	="108 Digital Pty Ltd"	01-May-08 04:01 PM	

+="CN73043"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	16895.01	=""	="ENGINE MASTER"	01-May-08 04:06 PM	

+="CN73044"	"Temporary Finance Staff member"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	07-Apr-08	30-May-08	15927.00	="07/306-00"	="Hays Personnel Services"	01-May-08 04:07 PM	

+="CN73045"	"Temporary IT Staffing"	="Australian Electoral Commission"	01-May-08	="Temporary personnel services"	31-Aug-06	30-Jun-09	30935.52	="AEC06/019"	="Peoplebank Recruitment Pty Ltd"	01-May-08 04:11 PM	

+="CN73046"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	01-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	51150.90	=""	="ALBURY SPEEDO SEVICE"	01-May-08 04:14 PM	

+="CN73047"	"Advertising costs - EPAAQ Chair Person"	="Civil Aviation Safety Authority"	01-May-08	="Advertising"	07-Apr-08	30-Apr-08	13500.00	="07/307-00"	="HMA Blaze Pty Ltd"	01-May-08 04:14 PM	

+="CN73050"	"File sentencing records officer"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	09-Apr-08	30-Jun-08	17820.00	="07/308-00"	="GMT People Pty Ltd"	01-May-08 04:23 PM	

+="CN73049"	" VARIOUS PARTS /ASLAV "	="Department of Defence"	01-May-08	="Armoured fighting vehicles"	30-Apr-08	30-May-08	53969.74	=""	="General Dynamics Land System"	01-May-08 04:23 PM	

+="CN73051"	"Telephone Account"	="Australian Electoral Commission"	01-May-08	="Local and long distance telephone communications"	26-Feb-08	25-Mar-08	107536.26	=""	="Telstra Corporation"	01-May-08 04:26 PM	

+="CN73052"	"File Sentencing Records Officer"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	09-Apr-08	30-Jun-08	16335.00	="07/309-00"	="GMT People Pty Ltd"	01-May-08 04:26 PM	

+="CN73053"	"Temp Staff - File Sentencing Records Officer"	="Civil Aviation Safety Authority"	01-May-08	="Recruitment services"	09-Apr-08	30-Jun-08	17820.00	="07/310-00"	="GMT People Pty Ltd"	01-May-08 04:29 PM	

+="CN73054"	"Temporary Legal Staffing Services"	="Australian Electoral Commission"	01-May-08	="Temporary legal staffing needs"	21-Feb-08	21-Aug-08	25000.00	=""	="Gillian Beaumont Recruitment"	01-May-08 04:32 PM	

+="CN73055"	"Transportation of furnishings from Queanbeyan to Perth"	="Civil Aviation Safety Authority"	01-May-08	="Transportation services equipment"	08-Apr-08	08-May-08	15235.00	="07/311-00"	="Allied Pickfords Business Relocations"	01-May-08 04:34 PM	

+="CN73048"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	01-May-08	="Business law services"	18-Sep-07	15-Nov-07	12387.65	=""	="PHILLIPS FOX LAWYERS"	01-May-08 04:42 PM	

+="CN73056"	"Production of Division Finders"	="Australian Electoral Commission"	01-May-08	="Printed publications"	03-Aug-06	03-Aug-09	16059.14	="AEC06/026"	="McMillan Print Group"	01-May-08 04:43 PM	

+="CN65712"	"Army Technical Trades Training.  Price Variation No 6.  New Total Contract Value is $30,949,046.23 .  "	="Department of Defence"	01-May-08	="Education and Training Services"	12-Nov-03	31-Dec-08	98820.36	="RFT013-HQ03"	="Scientific Management  Associates (Operations) Pty Ltd"	01-May-08 04:54 PM	

+="CN73057"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	01-May-08	="Business law services"	09-May-07	30-Nov-07	37541.93	=""	="MINTER ELLISON LAWYERS"	01-May-08 04:56 PM	

+="CN65713"	" Army Technical Trades Training.  Price Variation No 7  New Total Contract Value is now $31,059,843.00. "	="Department of Defence"	01-May-08	="Education and Training Services"	12-Nov-03	31-Dec-08	110796.77	="RFT013-HQ03"	="Scientific Management  Associates (Operations) Pty Ltd"	01-May-08 05:02 PM	

+="CN73059-A1"	"IT Contractor"	="Workplace Authority"	01-May-08	="Temporary information technology networking specialists"	18-Apr-08	30-Jun-08	18110.00	=""	="HiTech Personnel"	01-May-08 05:04 PM	

+="CN73060"	" SPORTING ATTIRE, T-SHIRTS  RAISED UNDER STANDING OFFER 4170/2/274 "	="Defence Materiel Organisation"	01-May-08	="Mens shirts"	12-Nov-07	30-Jun-08	390445.00	=""	="WALKABOUT LEISUREWEAR PTY LTD"	01-May-08 05:05 PM	

+="CN73061-A1"	"IT Contractor"	="Workplace Authority"	01-May-08	="Information technology consultation services"	18-Apr-08	30-Apr-08	34373.00	=""	="HiTech Personnel"	01-May-08 05:15 PM	

+="CN73062-A1"	" SPORTING ATTIRE T-SHIRTS  RAISED UNDER STANDING OFFER 4170/2/274 "	="Defence Materiel Organisation"	01-May-08	="Mens shirts"	13-Nov-07	09-May-08	7609.60	=""	="WALKABOUT LEISUREWEAR PTY LTD"	01-May-08 05:15 PM	

+="CN73064"	"Lease for vehicles"	="Workplace Authority"	01-May-08	="Motor vehicles"	01-Apr-08	30-Jun-08	23290.66	=""	="LeasePlan Australia Ltd"	01-May-08 05:21 PM	

+="CN73068"	"CASA Vehicles in Brisbane"	="Civil Aviation Safety Authority"	02-May-08	="Motor vehicles"	09-Apr-08	30-Jun-08	11000.00	="07/313-00"	="LeasePlan Australia Pty Ltd"	02-May-08 08:52 AM	

+="CN73069"	" Supply and install 'Aviation House' signage "	="Civil Aviation Safety Authority"	02-May-08	="Signage"	03-Mar-08	01-Apr-08	12166.00	="07/314-00"	="Neoplex Pty Ltd"	02-May-08 08:57 AM	

+="CN73070"	"IP Audit Consultancy Service"	="Civil Aviation Safety Authority"	02-May-08	="Audit services"	02-Apr-08	05-May-08	57970.00	="07/316-00"	="WDScott Asia Pty Ltd"	02-May-08 09:11 AM	

+="CN73071"	"Access Database Retirement Consultancy"	="Civil Aviation Safety Authority"	02-May-08	="Audit services"	02-Apr-08	16-Apr-08	26400.00	="07/317-00"	="WDScott Asia Pty Ltd"	02-May-08 09:24 AM	

+="CN73072"	"Vehicle Leases FNQ"	="Civil Aviation Safety Authority"	02-May-08	="Financial accounting"	01-Jul-08	30-Jun-09	26000.00	="07/318-00"	="LeasePlan Australia Pty Ltd"	02-May-08 09:29 AM	

+="CN73073"	"Recruitment fees - GGM ATOG"	="Civil Aviation Safety Authority"	02-May-08	="Recruitment services"	02-Apr-08	01-Jul-08	82500.00	="07/322-00"	="Spencer Stuart & Associates - Melbourne"	02-May-08 09:37 AM	

+="CN73074"	"Sponsorship Funding Agreement"	="Civil Aviation Safety Authority"	02-May-08	="Sponsorship of event or celebrity"	14-Apr-08	30-Jun-08	88000.00	="07/323-00"	="Aviation Safety Foundation of Australia"	02-May-08 09:41 AM	

+="CN73075"	"Hewlwtt Packard Aust HPlaserjet 4yrs warranty"	="Department of the Senate"	02-May-08	="Computer Equipment and Accessories"	04-Apr-08	06-Apr-12	252400.50	=""	="Hewlett Packard Australia P/L"	02-May-08 09:42 AM	

+="CN73076"	"Workplace writing skills workshop"	="Civil Aviation Safety Authority"	02-May-08	="Workshops"	03-Mar-08	14-Mar-08	10700.00	="07/324-00"	="Connected Learning Pty Ltd - Perth"	02-May-08 09:52 AM	

+="CN73077"	"Review of flight crew licensing examination structure"	="Civil Aviation Safety Authority"	02-May-08	="Aircraft"	22-Apr-08	02-Jun-08	20000.00	="07/325-00"	="Ross Telfer"	02-May-08 10:04 AM	

+="CN73079"	"Recruitment Temporary Staff"	="Civil Aviation Safety Authority"	02-May-08	="Recruitment services"	17-Apr-08	30-Jun-08	15000.00	="07/331-00"	="Green and Green"	02-May-08 10:14 AM	

+="CN73080"	"Temporary Admin Staff for PLET"	="Civil Aviation Safety Authority"	02-May-08	="Recruitment services"	17-Apr-08	30-Jun-08	18500.00	="07/332-00"	="Green and Green"	02-May-08 10:17 AM	

+="CN73082"	"Rent Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	30-Jun-08	18000.00	="05/006"	="SYDNEY AIRPORTS CORPORATION LTD"	02-May-08 10:21 AM	

+="CN73083"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	04-Jun-08	24000.00	="N/A"	="THE ONE UMBRELLA"	02-May-08 10:21 AM	

+="CN73084"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	27-Jun-08	77000.00	="FIN 05CRP004-35"	="ACUMEN ALLIANCE INVESTMENTS PTY LTD"	02-May-08 10:21 AM	

+="CN73085"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	31-Mar-08	25-Apr-08	43872.62	="po#4839"	="INSIGHT"	02-May-08 10:21 AM	

+="CN73086"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	03-Oct-08	42803.20	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	02-May-08 10:21 AM	

+="CN73087"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	30-Apr-08	86596.84	="06/06590"	="ZALLCOM PTY LTD"	02-May-08 10:21 AM	

+="CN73088"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	10-Apr-09	75000.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	02-May-08 10:21 AM	

+="CN73089"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	02-Apr-08	15-Jun-08	50000.00	=""	="JIM HENDRICKSON AND ASSOCIATES"	02-May-08 10:21 AM	

+="CN73090"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	02-Apr-08	30-Jun-08	242000.00	="FIN07/FeS006"	="ECOWISE SERVICES (AUSTRALIA) P/L"	02-May-08 10:21 AM	

+="CN73091"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	193000.00	="FIN07/FeS007"	="ECOWISE SERVICES (AUSTRALIA) P/L"	02-May-08 10:21 AM	

+="CN73092"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Apr-08	176000.00	="FIN07/FeS008"	="ECOWISE SERVICES (AUSTRALIA) P/L"	02-May-08 10:22 AM	

+="CN73093"	"Communication Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	07-Apr-08	30-Jun-08	135000.00	="FIN07/FeS008"	="ECOWISE SERVICES (AUSTRALIA) P/L"	02-May-08 10:22 AM	

+="CN73094"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	07-Apr-08	10-Apr-09	211200.00	="FIN 05 CRP004-06"	="COLLECTIVE RESOURCES IT RECRUITMENT"	02-May-08 10:22 AM	

+="CN73095"	"Training & Education Costs"	="Department of Finance and Deregulation"	02-May-08	="Education and Training Services"	23-Apr-08	05-Jun-08	13200.00	=""	="D'ARCY CONSULTING GROUP"	02-May-08 10:22 AM	

+="CN73096"	"Training & Education Costs"	="Department of Finance and Deregulation"	02-May-08	="Education and Training Services"	07-Apr-08	30-Apr-08	14828.00	="PO#4981"	="GARTNER AUSTRALASIA-010040284"	02-May-08 10:22 AM	

+="CN73097"	"IT Maintenance & Support Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	30-May-08	172999.91	=""	="DEPT OF PARLIAMENTARY SERVICES"	02-May-08 10:22 AM	

+="CN73098"	"IT Communication Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	08-Apr-08	31-May-08	25965.74	=""	="DEPT OF PARLIAMENTARY SERVICES"	02-May-08 10:22 AM	

+="CN73099"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	12-Apr-08	10-Apr-09	240000.00	="FIN 05CPRP004-37"	="CLARIUS GROUP LIMITED"	02-May-08 10:23 AM	

+="CN73100"	"IT Communication Costs"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	09-Apr-08	31-May-08	23301.49	=""	="DEPT OF PARLIAMENTARY SERVICES"	02-May-08 10:23 AM	

+="CN73101"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	37400.00	="FIN 05CRP004-25"	="OAKTON AA SERVICES PTY LTD"	02-May-08 10:23 AM	

+="CN73102"	"Capital Expenditure - IT"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	11-Apr-08	26-Jun-08	67759.76	="0"	="AFC GROUP PTY LTD"	02-May-08 10:23 AM	

+="CN73103"	"IT System Development Services"	="Department of Finance and Deregulation"	02-May-08	="Information Technology Broadcasting and Telecommunications"	18-Apr-08	30-Jun-08	1411410.00	="0000000000000"	="DEPT OF INNOVATION INDUSTRY, SCIENCE & R"	02-May-08 10:23 AM	

+="CN73104"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	12-Mar-08	31-Aug-08	135000.00	=""	="PG POLICY CONSULTING"	02-May-08 10:23 AM	

+="CN73081"	" NONMETELIC SPECIAL SHAPED SECTION  NSN - 9390/000604652 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	21-Feb-08	06-Mar-08	14497.60	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 10:24 AM	

+="CN73105"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	21-Jun-08	12000.00	="N/A"	="EFFECTIVE PEOPLE PTY LIMITED"	02-May-08 10:24 AM	

+="CN73106"	"Travel - Transportation Costs"	="Department of Finance and Deregulation"	02-May-08	="Transportation and Storage and Mail Services"	02-Mar-08	27-Mar-08	11855.26	="n/a"	="QANTAS AMERICAN EXPRESS BUSINESS TRAVEL"	02-May-08 10:24 AM	

+="CN73107"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	02-May-08 10:24 AM	

+="CN73109"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="MANPOWER SERVICES (AUST) P/L"	02-May-08 10:24 AM	

+="CN73110"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	02-May-08 10:24 AM	

+="CN73111"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	02-May-08 10:24 AM	

+="CN73108"	"After hours ISDN telephony service"	="Civil Aviation Safety Authority"	02-May-08	="IP phones"	20-Apr-08	29-Apr-08	19423.00	="07/333-00"	="Telstra Business Systems"	02-May-08 10:24 AM	

+="CN73112"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	02-May-08 10:24 AM	

+="CN73113"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	02-May-08 10:25 AM	

+="CN73114"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	27-Jun-08	12000.00	="N/A"	="KELLY SERVICES (AUSTRALIA) PTY LTD"	02-May-08 10:25 AM	

+="CN73115"	"Contractor Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	31-Jul-08	70900.00	="00000000000000"	="CLICKS RECUIT PTY LTD"	02-May-08 10:25 AM	

+="CN73116"	"IT Contract Management Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	01-May-08	30-Apr-10	659800.00	="WEB SERVICES - FIN07/CAPS009"	="OPC IT PTY LTD"	02-May-08 10:25 AM	

+="CN73117"	"Legal Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Feb-08	30-Jun-08	10000.00	="LSB01/2005"	="DLA PHILLIPS FOX LAWYERS"	02-May-08 10:25 AM	

+="CN73118"	"Legal Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	01-Jan-08	31-Mar-08	12325.00	="rft"	="BLAKE DAWSON - ACT"	02-May-08 10:25 AM	

+="CN73119"	"Legal Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	14000.00	="LSB 01/2005"	="DLA PHILLIPS FOX LAWYERS"	02-May-08 10:25 AM	

+="CN73120"	"Probity Services"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	31-May-08	27500.00	="SON144"	="BLAKE DAWSON - ACT"	02-May-08 10:25 AM	

+="CN73121"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	30-Apr-08	16000.00	="N/A"	="DEONVALE CONSULTING SERVICES"	02-May-08 10:26 AM	

+="CN73122"	"Consultancy Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	20-May-09	175000.00	="."	="SOCIAL COMPASS"	02-May-08 10:26 AM	

+="CN73123"	"Consultancy Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-Dec-08	450000.00	="FIN07/FMG03"	="ACIL TASMAN PTY LTD"	02-May-08 10:26 AM	

+="CN73124"	"Accountancy Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	13-Jun-08	26400.00	=""	="AUSTRALIAN GOVERNMENT ACTUARY"	02-May-08 10:26 AM	

+="CN73125-A2"	"Actuarial Analysis and Reporting for Comcover"	="Department of Finance and Deregulation"	02-May-08	="Management advisory services"	28-Apr-08	27-Apr-12	610000.00	="FIN07AMG006"	="KPMG Actuarial Pty Ltd"	02-May-08 10:26 AM	

+="CN73126"	"Consultancy Costs"	="Department of Finance and Deregulation"	02-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	23-May-08	12000.00	="N/A"	="STANCERT PTY LTD"	02-May-08 10:26 AM	

+="CN73127"	"12 months maintenance for Voicemail system"	="Civil Aviation Safety Authority"	02-May-08	="Voice mail systems"	30-Apr-08	29-Apr-09	10428.00	="07/334-00"	="CVT (Global) Pty Ltd"	02-May-08 10:30 AM	

+="CN73078"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	02-May-08	="Business law services"	20-Feb-07	19-Mar-07	44293.20	=""	="LAVAN LEGAL"	02-May-08 10:32 AM	

+="CN73131"	" HEAD ASSY, OUTLET  NSN - 1680/009979081 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	14-Mar-08	22-Jul-08	17045.28	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 10:49 AM	

+="CN73132"	"Temporary admin staff for ATOG"	="Civil Aviation Safety Authority"	02-May-08	="Recruitment services"	19-Feb-08	16-May-08	20000.00	="07/338-00"	="Vedior Asia Pacific Pty Ltd"	02-May-08 10:56 AM	

+="CN73133"	"Recruitment fees - Temporary staff for PLET"	="Civil Aviation Safety Authority"	02-May-08	="Recruitment services"	23-Apr-08	23-May-08	15747.00	="07/339-00"	="Tanner Menzies Pty Ltd"	02-May-08 10:59 AM	

+="CN73135"	"Ricoh Aficio MP C4500 Digital Colour MFDs for new Brisbane Office"	="Civil Aviation Safety Authority"	02-May-08	="Photocopiers"	23-Apr-08	30-Jun-08	42645.00	="07/341-00"	="Ricoh Australia Pty Ltd - ACT"	02-May-08 11:02 AM	

+="CN73136"	"Staff influenza vaccination services"	="Civil Aviation Safety Authority"	02-May-08	="Influenza virus vaccine"	09-Apr-08	08-Aug-08	20000.00	="07/342-00"	="Provax Pty Ltd"	02-May-08 11:06 AM	

+="CN73138"	"New design for CASA corporate ties and scarves"	="Civil Aviation Safety Authority"	02-May-08	="Promotional or advertising printing"	30-Apr-08	30-May-08	11100.00	="07/349-00"	="Skye Group"	02-May-08 11:12 AM	

+="CN73139"	"VEHICLE REPAIRS"	="Department of Defence"	02-May-08	="Motor vehicles"	16-Apr-08	16-May-08	11805.81	=""	="MICKS AUTOS"	02-May-08 11:18 AM	

+="CN73140"	"Repair of Aircraft Parts"	="Defence Materiel Organisation"	02-May-08	="Aircraft"	02-May-08	30-Jun-08	49729.32	=""	="Sikorsky Aircraft Australia LTD"	02-May-08 11:19 AM	

+="CN73145"	" NER, CARGO TIE-DOWN, AIRCRAFT PALLET  NSN - 1670/009962780 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	16-Apr-08	26-May-08	34254.00	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 11:42 AM	

+="CN73129"	"Professional Legal Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	02-May-08	="Business law services"	23-Oct-07	20-Nov-07	53120.06	=""	="LAVAN LEGAL"	02-May-08 11:45 AM	

+="CN73146"	" DOOR, TRAILING EDGE  NSN - 1560/005710571 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	15-Apr-08	12-Oct-08	13616.46	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 11:47 AM	

+="CN73147"	" LIGHT, TAXIING, AIRCRAFT  NSN - 6220/014427182 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	14-Apr-08	18-Aug-08	32678.91	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 11:51 AM	

+="CN73148"	" LATCH ASSEMBLY  NSN - 1560/008024120 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	23-Apr-08	28-May-08	21002.15	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 11:56 AM	

+="CN73150"	" VANE ASSEMBLY, COMPRESSOR, AIRCARFT GAS : TURBINE ENGINE  NSN - 2840/14364064 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	23-Apr-08	17-Jul-08	15912.90	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 12:03 PM	

+="CN73151"	" Supply and deliver various UNIMOG Truck spare parts "	="Defence Materiel Organisation"	02-May-08	="Spring pins"	30-Apr-08	30-May-08	11242.96	=""	="Mercedes-Benz Australia/pacific"	02-May-08 12:05 PM	

+="CN73152"	" VANE ASSEMBLY, COMPRESSOR GAS ; TURBINE ENGINE  NSN - 2840/014364063 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	23-Apr-08	12-Jul-08	15912.90	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 12:08 PM	

+="CN73154"	" DIFFUSER, COMPRESSOR  NSN - 2835/004929440 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	17-Apr-08	02-May-08	14690.49	=""	="MILITARY AVIATION SPARES PTY LTD"	02-May-08 12:14 PM	

+="CN73155"	"Provision of Services  for the documenation of the online reporting team's processes"	="Department of Climate Change"	02-May-08	="Integrated maintenance information systems"	04-Feb-08	04-Apr-08	47025.00	=""	="Oakton Services Pty Ltd"	02-May-08 12:18 PM	

+="CN73156"	"Consultancy services in relation to OSCAR User Interface Design Review"	="Department of Climate Change"	02-May-08	="Information technology consultation services"	05-Feb-08	15-Mar-08	32863.00	=""	="Stamford Interactive Pty Ltd"	02-May-08 12:22 PM	

+="CN73159"	" Nusiness Analysis Services for the Emissions Trading Registry "	="Department of Climate Change"	02-May-08	="Information technology consultation services"	19-Mar-08	02-May-08	32800.00	=""	="APIS Group Pty Ltd"	02-May-08 12:29 PM	

+="CN73157"	"Stationery"	="Office of the Australian Building and Construction Commissioner (ABCC)"	02-May-08	="Stationery"	01-Dec-07	31-Dec-07	13568.45	=""	="OFFICEMAX AUSTRALIA LTD"	02-May-08 12:36 PM	

+="CN73160"	"Application Services"	="Office of the Australian Building and Construction Commissioner (ABCC)"	02-May-08	="Business administration services"	01-Nov-07	30-Nov-07	14180.36	=""	="DEPARTMENT OF EDUCATION, EMPLOYMENT & WORKPLACE RELATIONS"	02-May-08 12:46 PM	

+="CN73161"	" VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS ; TURBINE ENGINE  NSN - 2840/014364065 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	15-Apr-08	30-Apr-08	12987.00	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 12:47 PM	

+="CN73163"	"Provision of Printing Services as a memeber of the Print Panel - National NAIDOC Poster"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Printed media"	15-Apr-08	01-May-08	21693.20	="190"	="PARAGON PRINTERS AUSTRALASIA GROUP"	02-May-08 12:48 PM	

+="CN73164"	"Printing of Green Paper report"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	30-Jun-08	21463.20	="RFT436"	="Pirion Pty Limited"	02-May-08 12:49 PM	

+="CN73165"	"Supply of Corporate Credit Card Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Credit agencies"	16-Apr-08	17-Apr-11	240000.00	=""	="WESTPAC BANKING CORPORATION"	02-May-08 12:49 PM	

+="CN73166"	"S487-1 Spl Adm Waminda"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Office supplies"	17-Apr-08	30-Apr-08	45000.00	=""	="Korda Mentha"	02-May-08 12:49 PM	

+="CN73167"	"Access control system at 32 Corinna St Phillip"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	17-Apr-08	52444.70	=""	="T.A.C. PACIFIC PTY LTD"	02-May-08 12:49 PM	

+="CN73162"	"Gloves Riggers pertaining to RFQ SCE200856"	="Defence Materiel Organisation"	02-May-08	="Protective gloves"	16-Apr-08	28-Apr-08	21736.00	="SCE200856"	="Protector Alsafe"	02-May-08 12:49 PM	

+="CN73168"	"Notice of Premiums NTNER Commiunity Housing and Bidjara Properties at Charleville Qld"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Housings and cabinets and casings"	17-Apr-08	30-Jun-08	112353.16	=""	="DEPARTMENT OF FINANCE"	02-May-08 12:49 PM	

+="CN73169"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	17-Apr-08	17-May-08	171609.25	=""	="Infront Systems Pty Ltd"	02-May-08 12:49 PM	

+="CN73170"	"Temp contrcat - Nola Perry - APS4 Internal Budget Section"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Human resources services"	18-Apr-08	17-Jun-08	15000.00	=""	="HUDSON GLOBAL RESOURCES"	02-May-08 12:49 PM	

+="CN73171"	"Scope and develop systems and procedures for assets management"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	18-Apr-08	30-Jun-08	55000.00	=""	="WALTERTURNBULL"	02-May-08 12:49 PM	

+="CN73172"	"Maintenance services to Chiller & Associated Condenser Water Plant"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Building and Construction and Maintenance Services"	18-Apr-08	30-Jun-08	21236.00	=""	="Carrier Air Conditioning Pty Ltd"	02-May-08 12:50 PM	

+="CN73173"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Computer services"	21-Apr-08	20-Jul-08	60984.00	=""	="Talent International (ACT)"	02-May-08 12:50 PM	

+="CN73174"	"Funding Controller Services for CDEP Program"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	21-Apr-08	30-Jun-08	82795.44	=""	="Enmark Business Advisors Pty Ltd"	02-May-08 12:50 PM	

+="CN73175"	"Printing 2008-09 Portfolio Budget Statements"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	21-Apr-08	23-May-08	10000.00	="190"	="Canprint Communications Pty Ltd"	02-May-08 12:50 PM	

+="CN73176"	"Implementation of IP video conferencing Network"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Communications Devices and Accessories"	11-Apr-08	11-Apr-08	35189.00	=""	="IP Focus Pty Ltd"	02-May-08 12:50 PM	

+="CN73177"	"Language translation & production of loacl radio announcement for the NTER"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Writing and translations"	11-Apr-08	25-Apr-08	59000.00	=""	="I&G T/as INDEPENDENT &"	02-May-08 12:50 PM	

+="CN73179"	"Appointment of 8 Licensing inspectors to support new remote measures"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Specialised educational services"	11-Apr-08	11-Apr-08	2068000.00	=""	="Department of Justice"	02-May-08 12:50 PM	

+="CN73180"	"Provision of Contract Services in Relation to Online Content Editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	11-Apr-08	30-Jun-08	37207.50	=""	="Frontier Group Australia Pty Ltd"	02-May-08 12:51 PM	

+="CN73181"	"Provision of Contract Services in Relation to Online Content Editing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	11-Apr-08	30-Jun-08	35477.30	=""	="Hays Specialist Recruitment"	02-May-08 12:51 PM	

+="CN73182"	"Local communication and translation services in Yolgnu for North-East Arnhem Land"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Writing and translations"	14-Apr-08	25-Apr-08	60500.00	=""	="Aboriginal Resources Development Se"	02-May-08 12:51 PM	

+="CN73183"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	14-Apr-08	14-May-08	236357.16	=""	="Infront Systems Pty Ltd"	02-May-08 12:51 PM	

+="CN73178"	" BLADE, TURBINE ROTOR; AIRCRAFT GAS TURBINE  NSN - 2840/008770080 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	15-Apr-08	30-Apr-08	27573.00	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 12:51 PM	

+="CN73184"	"Renewal of M/Ship April 08 - March 09"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Jun-08	11000.00	=""	="The Australian Employers' Network o"	02-May-08 12:51 PM	

+="CN73185"	"Homelessness Roundtable"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	14-Apr-08	42000.00	=""	="Homelessness Australia"	02-May-08 12:51 PM	

+="CN73186-A3"	"Standby power plant maitainence"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Building construction and support and maintenance and repair services"	14-Apr-08	01-Aug-10	57418.50	=""	="O'Donnell Griffin Pty Ltd"	02-May-08 12:51 PM	

+="CN73187"	"Indigenous Mentoring Programme"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	24-Apr-08	28334.50	=""	="Building Indigenous Capability"	02-May-08 12:51 PM	

+="CN73188"	"Treatment of investment returns for the Land Account"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Banking and investment"	15-Apr-08	30-Apr-08	16500.00	=""	="Ernst & Young"	02-May-08 12:52 PM	

+="CN73189"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	15-Apr-08	15-May-08	29289.29	=""	="COMPUTERCORP (OPERATIONS)"	02-May-08 12:52 PM	

+="CN73190"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	22-Apr-08	22-May-08	46200.00	=""	="DEPARTMENT OF FINANCE"	02-May-08 12:52 PM	

+="CN73191"	"Review of Financial & Governance Position of Disability Employment Action Centre (DEAC)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	24-Apr-08	19-May-08	22000.00	=""	="WALTERTURNBULL"	02-May-08 12:52 PM	

+="CN73192"	"Funding for members of the Integ. Unit accred."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Specialised educational services"	28-Apr-08	30-Jun-08	13310.00	=""	="Australasian Compliance Institute"	02-May-08 12:52 PM	

+="CN73193"	"Review of ORATSIC (ORIC) website content and struc"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Computer services"	28-Apr-08	30-Jun-08	59400.00	=""	="Stamford Interactive Pty Ltd"	02-May-08 12:52 PM	

+="CN73194"	"Consultancy services/advice to Disability Invest. Group"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	29-Apr-08	30-Jun-08	149556.00	=""	="THE NOUS GROUP"	02-May-08 12:52 PM	

+="CN73195"	"Accomm for LSIC Research Admin Officers & Steering Committee members to attend training."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Accommodation furniture"	29-Apr-08	29-Apr-08	13328.00	=""	="Country Comfort Greenway"	02-May-08 12:52 PM	

+="CN73196"	"NAYSS Good Practice Forum 1-2 May 2008"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Transportation components and systems"	29-Apr-08	02-May-08	18700.00	=""	="CITIGATE SEBEL - SYDNEY"	02-May-08 12:53 PM	

+="CN73197"	"Issues management/stakeholder engagement"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	29-Apr-08	30-Jun-08	74789.00	=""	="Quay Connection      attn: M.Dickie"	02-May-08 12:53 PM	

+="CN73198"	"The use of the Mary G image on ORATSIC materials"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Marketing and distribution"	29-Apr-08	30-Jun-09	37510.00	=""	="Mary G Enterprises"	02-May-08 12:53 PM	

+="CN73199"	"Accommodation for Marilyn Baran (CCU)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Accommodation furniture"	29-Apr-08	30-Jun-08	12000.00	=""	="Mediterranean All Suite Hotel"	02-May-08 12:53 PM	

+="CN73200"	"Accommodation for Marilyn Baran (CCU)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Accommodation furniture"	29-Apr-08	30-Jun-08	12000.00	=""	="Travelodge Mirambeena Resort Darwin"	02-May-08 12:53 PM	

+="CN73201"	"Grant payment fee for serivce delivery consultant"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Emergency and field medical services products"	30-Apr-08	20-May-08	20000.00	=""	="Sir Roden Cutler Charities"	02-May-08 12:53 PM	

+="CN73202"	"IT Software"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Software"	30-Apr-08	30-Jun-08	448753.80	=""	="Infront Systems Pty Ltd"	02-May-08 12:53 PM	

+="CN73203"	"ICT Contractors"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Computer services"	30-Apr-08	30-Jun-08	50688.00	=""	="CSC Australia Pty Ltd"	02-May-08 12:53 PM	

+="CN73204"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	165000.00	=""	="COLMAR BRUNTON SOCIAL RESEARCH"	02-May-08 12:53 PM	

+="CN73206"	"Consutlancy"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	30-Jun-08	165000.00	=""	="COLMAR BRUNTON SOCIAL RESEARCH"	02-May-08 12:54 PM	

+="CN73207"	"Quick Test Professional Training Course (STS)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Education and Training Services"	22-Apr-08	05-Jun-08	14256.00	=""	="HEDLOC PTY LTD"	02-May-08 12:54 PM	

+="CN73208"	"Notice of Premiums for NTNER Community Housing"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Housings and cabinets and casings"	22-Apr-08	30-Jun-08	112353.16	=""	="Comcover"	02-May-08 12:54 PM	

+="CN73209"	"Staffing Contract: Joanne Schultz"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Human resources services"	22-Apr-08	30-Jun-08	39908.88	=""	="Hays Specialist Recruitment"	02-May-08 12:54 PM	

+="CN73205"	" BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE  NSN - 2840/008770022 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	13-Mar-08	28-Mar-08	69690.00	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 12:54 PM	

+="CN73210"	"Post-admininstration training to Gkuthaarn and Kukatj Aboriginal Corp"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Education and Training Services"	22-Apr-08	14-May-08	13079.30	="215"	="BURDON TORZILLO"	02-May-08 12:54 PM	

+="CN73211"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	23-Apr-08	30-Jun-08	13233.02	=""	="Black Box Network Services"	02-May-08 12:54 PM	

+="CN73212"	"Production of NAIDOC Merchandise - Stickers and Badges"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Printed media"	23-Apr-08	30-Apr-08	23281.50	=""	="NATIONAL PROMOTIONS"	02-May-08 12:55 PM	

+="CN73213"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	23-Apr-08	30-Jun-08	225634.20	=""	="Infront Systems Pty Ltd"	02-May-08 12:55 PM	

+="CN73214"	"Provision of  Investigative services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	23-Apr-08	28-May-08	12825.00	=""	="Stone Throw Consulting"	02-May-08 12:55 PM	

+="CN73215"	"S453-1 Exams (3) Gumala, Puntukurnu Aboriginal Medical Services - CATSI Act"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Medical training and education supplies"	23-Apr-08	02-Jun-08	18545.00	="220"	="Korda Mentha"	02-May-08 12:55 PM	

+="CN73216"	"SES Planning Conference"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	23-Apr-08	23-Apr-08	19685.06	=""	="GINGER CATERING"	02-May-08 12:55 PM	

+="CN73217"	"Provision of Consultancy Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Computer services"	24-Apr-08	02-Jun-08	12650.00	=""	="TNR Financial Services Pty Ltd"	02-May-08 12:55 PM	

+="CN73218"	"Provision of IT Contractor"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Computer services"	01-Apr-08	30-Jun-08	80080.00	=""	="REDBACK CONSULTING PTY LTD"	02-May-08 12:55 PM	

+="CN73219"	"Provision of Investigative Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	01-Apr-08	18-Apr-08	18900.00	=""	="Stone Throw Consulting"	02-May-08 12:55 PM	

+="CN73220"	"S453-1 Exams (3) Ngurratjuta/Pmara, Ngaanyatjarra, Waltja."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	31-May-08	25190.00	=""	="Korda Mentha"	02-May-08 12:56 PM	

+="CN73221"	"Construction Management"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	30-Jun-08	940652.77	=""	="ISIS Projects Pty Ltd"	02-May-08 12:56 PM	

+="CN73222"	"Supply of Workstations and Loose Furniture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Furniture and Furnishings"	01-Apr-08	30-Jun-08	256067.60	=""	="Cite Office Design Pty Ltd"	02-May-08 12:56 PM	

+="CN73223"	"Artwork and Diary Series Limited Edition and Delivery"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	01-Apr-08	10-Apr-08	10000.00	=""	="SMART ART GALLERY PTY LTD"	02-May-08 12:56 PM	

+="CN73224"	"Provide venue, accomm  & catering ICG 8-10 Apr 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Restaurants and catering"	01-Apr-08	10-Apr-08	21450.00	=""	="ALL SEASONS KUNUNURRA"	02-May-08 12:56 PM	

+="CN73225"	"Removal costs for Jabula Matsubula"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Transportation services equipment"	02-Apr-08	02-Apr-08	12112.32	=""	="Chess Moving"	02-May-08 12:56 PM	

+="CN73226"	"Promotion of Australian Youth Forum Consultations"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Advertising"	02-Apr-08	01-May-08	14146.47	=""	="HMA Blaze Pty Limited"	02-May-08 12:56 PM	

+="CN73227"	"Recruitment for 3 mailroom staff"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Human resources services"	02-Apr-08	02-Apr-08	23927.48	=""	="PCA PEOPLE PTY LTD"	02-May-08 12:56 PM	

+="CN73228"	"Brisbane STO Fitout - Stage 2 - Lvls 1 & 3, 100 Creek St Brisbane QLD"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-Jun-08	2477501.37	="34253"	="ISIS Projects Pty Ltd"	02-May-08 12:57 PM	

+="CN73229"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	03-Apr-08	03-May-08	75111.95	=""	="DELL AUSTRALIA PTY LIMITED"	02-May-08 12:57 PM	

+="CN73230"	"Provision of Cadastrqal Survey Services (99-Yr Leases) NTER Programs"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	330000.00	=""	="Earl James and Associates - Darwin"	02-May-08 12:57 PM	

+="CN73231"	"FACSIA National Office Stores Mar 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Office supplies"	04-Apr-08	30-Apr-08	30980.56	=""	="Corporate Express Australia"	02-May-08 12:57 PM	

+="CN73232"	"FACSIA National Office Stores Mar 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Office supplies"	04-Apr-08	30-Apr-08	16094.59	=""	="Corporate Express Australia"	02-May-08 12:57 PM	

+="CN73233"	"FACSIA National Office Stores Mar 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Office supplies"	04-Apr-08	30-Apr-08	40758.63	=""	="Corporate Express Australia"	02-May-08 12:57 PM	

+="CN73234"	"FACSIA  Office Paper Supplies Mar 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Office supplies"	02-Apr-08	30-Apr-08	24703.58	=""	="Corporate Express Australia"	02-May-08 12:57 PM	

+="CN73235"	"AMSWIN PROJECT Pymnt Inv.447"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Information Technology Broadcasting and Telecommunications"	01-Apr-08	02-Apr-08	10175.00	=""	="3 Dimensional Consulting Pty Ltd"	02-May-08 12:57 PM	

+="CN73237"	"Fees For interior design and project management Inv.5648 Project No.108102"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Building and Construction and Maintenance Services"	31-Mar-08	16-Apr-08	17814.50	=""	="Reid Campbell"	02-May-08 12:57 PM	

+="CN73238"	"AMEX statement March 2008 376059690931003 National Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Aircraft"	27-Mar-08	16-Apr-08	10017.37	=""	="American Express"	02-May-08 12:58 PM	

+="CN73239"	"Job No 7063 SSAT CBR Office"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Real estate services"	29-Feb-08	17-Apr-08	118595.99	=""	="Construction Control Interiors"	02-May-08 12:58 PM	

+="CN73240"	"Property lease QUE2\SOC01 MAY 08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Real estate services"	01-May-08	01-May-08	35134.47	=""	="ARIA Property International"	02-May-08 12:58 PM	

+="CN73241"	"Property lease L11 565 Bourke St Melbourne May08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Real estate services"	18-Apr-08	01-May-08	26436.59	=""	="Jones Lang La Salle (VIC)"	02-May-08 12:58 PM	

+="CN73236"	" BLADE, TURBINE ROTOR, AIRCRAFT GAS TURBINE ; ENGINE  NSN - 2840/008770071 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	22-Apr-08	07-May-08	37438.20	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 12:58 PM	

+="CN73242"	"Property Lease L24,500 Collins St Melbourne May08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Real estate services"	01-May-08	01-May-08	29320.20	=""	="ECS Property Group"	02-May-08 12:58 PM	

+="CN73243"	"Re-imbursement to UGS Apr08"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Real estate services"	24-Apr-08	24-Apr-08	95393.48	=""	="United Group Services"	02-May-08 12:58 PM	

+="CN73244"	"S453-1 Exams (3) Wami Kati,Tangglun Piltengi Yunti"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	01-Apr-08	31-May-08	19800.00	=""	="Korda Mentha"	02-May-08 12:58 PM	

+="CN73245"	"Renewal of Sun Backup unit Maintenance agreement"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Software"	03-Apr-08	03-Apr-08	13926.00	=""	="Sun Microsystems Australia Pty Ltd"	02-May-08 12:59 PM	

+="CN73246"	"Newspaper Ads for DEA 250 places EoI"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Marketing and distribution"	09-Apr-08	09-Apr-08	28632.59	=""	="HMA Blaze Pty Limited"	02-May-08 12:59 PM	

+="CN73247"	"Helpmaster Pro Enterprise Edition v8"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Information services"	09-Apr-08	30-Jun-08	34644.50	=""	="PRD Software Pty Ltd"	02-May-08 12:59 PM	

+="CN73248"	"Bounty Bag - Mother to be insertion (of women and super brochure)"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	24-Apr-08	22308.00	=""	="HMA Blaze Pty Limited"	02-May-08 12:59 PM	

+="CN73249"	"Variation 1 staff Accommodaiton Playground Baxter Centre"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	12317.45	=""	="IBA CONSTRUCTIONS"	02-May-08 12:59 PM	

+="CN73250"	"Financial Services"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	10-Apr-08	13338.60	=""	="KPMG Darwin"	02-May-08 12:59 PM	

+="CN73251"	"Dealing with Unreasonable Compliants Seminar"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Education and Training Services"	10-Apr-08	23-Apr-08	12880.00	=""	="NSW Ombudsman's Office"	02-May-08 12:59 PM	

+="CN73252"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	10-Apr-08	10-May-08	130282.48	=""	="COMPUTERCORP (OPERATIONS)"	02-May-08 12:59 PM	

+="CN73253"	"ORIC Organisation Review"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	11-Apr-08	30-Jun-08	16016.00	=""	="Richardson O'Rourke Consulting P/L"	02-May-08 01:00 PM	

+="CN73255"	"Facilitation of CEDAW Roundtables"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Business administration services"	11-Apr-08	11-Apr-08	13860.00	=""	="Team Systems Pty Ltd"	02-May-08 01:00 PM	

+="CN73256"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	11-Apr-08	11-May-08	271508.82	=""	="Getronics Australia Pty Limited"	02-May-08 01:00 PM	

+="CN73257"	"Aboriginal language traslated radio announcements for NTER"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Writing and translations"	11-Apr-08	25-Apr-08	74000.00	=""	="Spots and Space P/L"	02-May-08 01:00 PM	

+="CN73258"	"Translation Services in Yolgnu for NE Arnhem Land"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Writing and translations"	11-Apr-08	25-Apr-08	28000.00	=""	="Aboriginal Resources Development Se"	02-May-08 01:00 PM	

+="CN73259"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	11-Apr-08	11-May-08	53145.15	=""	="COMPUTERCORP (OPERATIONS)"	02-May-08 01:00 PM	

+="CN73260"	"IT Hardware"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hardware"	03-Apr-08	04-Apr-08	12355.52	=""	="DELL AUSTRALIA PTY LIMITED"	02-May-08 01:01 PM	

+="CN73261"	"Selection Process"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	43423.55	=""	="ATTORNEY-GENERALS DEPARTMENT"	02-May-08 01:01 PM	

+="CN73262"	"Supply of Workstaition and Loose furniture"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	30-Jun-08	725901.27	="34257"	="Cite Office Design Pty Ltd"	02-May-08 01:01 PM	

+="CN73263"	"Recabling at ICC Ceduna"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	05-Apr-08	33329.34	=""	="O'DONNELL GRIFFIN PTY LTD"	02-May-08 01:01 PM	

+="CN73265"	"Conference Tickets"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Hotels and lodging and meeting facilities"	07-Apr-08	30-Jun-08	11100.00	=""	="Gartner Australasia PTY Limited"	02-May-08 01:01 PM	

+="CN73254"	"Generator set, diesel engine"	="Defence Materiel Organisation"	02-May-08	="Air transportation support systems and equipment"	29-Apr-08	13-May-08	20337.50	=""	="Advanced Power Pty Ltd"	02-May-08 01:01 PM	

+="CN73266"	"Air Charter - Minister's Visit to Aurukun & Weipa"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Travel facilitation"	07-Apr-08	07-Apr-08	19000.00	=""	="INDEPENDENT AVIATION"	02-May-08 01:01 PM	

+="CN73267-A1"	"Advice on the development of Performance Indicators."	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	07-Apr-08	12-May-08	27400.00	=""	="DGR Consulting"	02-May-08 01:02 PM	

+="CN73268"	"CCTV cameras installed in public waiting rooms in all states"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Security surveillance and detection"	07-Apr-08	07-Apr-08	64047.50	=""	="DSN Australia"	02-May-08 01:02 PM	

+="CN73269-A1"	"Non-ongoing employment contract"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Human resources services"	07-Apr-08	30-Jun-08	51117.30	=""	="Hamilton James and Bruce Pty Ltd"	02-May-08 01:02 PM	

+="CN73264"	" VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS TURBINE ENGINE  NSN - 2840/014364066 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	23-Apr-08	08-May-08	25974.00	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 01:02 PM	

+="CN73270"	"Delivery of Compass Graduate Program Training"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Education and Training Services"	07-Apr-08	30-Sep-08	55550.00	=""	="Interaction Consulting Group PtyLtd"	02-May-08 01:02 PM	

+="CN73271"	"Office Furniture - Acacia Larakia"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Furniture and Furnishings"	07-Apr-08	21-Apr-08	10000.00	=""	="CARLA FURNISHERS PTY LTD"	02-May-08 01:02 PM	

+="CN73272"	"Payment for services of seconded ABS officer"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Management advisory services"	08-Apr-08	08-Apr-08	60006.00	=""	="Aust Bureau of Statistics"	02-May-08 01:02 PM	

+="CN73273"	"Map Intelligence and Data for Northern Territory Emergency Response"	="Department of Families, Housing, Community Services and Indigenous Affairs"	02-May-08	="Information services"	08-Apr-08	30-Jun-08	67100.00	=""	="Forge Data Solutions"	02-May-08 01:02 PM	

+="CN65837"	" Electron Tube "	="Defence Materiel Organisation"	02-May-08	="Air transportation support systems and equipment"	09-Aug-07	05-Feb-08	111334.00	=""	="Communications & Power Industries"	02-May-08 01:04 PM	

+="CN73274"	" VANE ASSEMBLY, COMPRESSOR, AIRCRAFT GAS  NSN - 2840/015152407 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	22-Apr-08	07-May-08	29220.84	=""	="AVILL AUSTRALIA PTY LTD"	02-May-08 01:07 PM	

+="CN73275"	" BEARING, BALL, ANNULAR  NSN - 3110/014240697 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	22-Apr-08	07-May-08	29754.18	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 01:10 PM	

+="CN73276"	" BLADE, COMPRESSOR, AIRCRAFT GAS TURBINE  NSN - 2840/008770034 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	22-Apr-08	07-May-08	23634.00	=""	="AVAIL AUSTRALIA PTY LTD"	02-May-08 01:13 PM	

+="CN73277"	" FILTER BODY, FLUID  NSN - 1650/009091415 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	17-Apr-08	02-May-08	15185.10	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	02-May-08 01:18 PM	

+="CN73278"	" CORE, MOUNT  NSN - 2995/008580764 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	26-Mar-08	13-Apr-08	13398.00	=""	="AEROSPACE COMPOSITES PTY LTD"	02-May-08 01:22 PM	

+="CN73279"	" COUPLING, SHAFT, RIGID  NSN - 3010/015103467 "	="Defence Materiel Organisation"	02-May-08	="Military transport aircraft"	17-Apr-08	15-May-08	14460.00	=""	="AEROSPACE COMPOSITES PTY LTD"	02-May-08 01:28 PM	

+="CN73280"	"Receiver-transmitter, light signal"	="Defence Materiel Organisation"	02-May-08	="Air transportation support systems and equipment"	18-Apr-08	13-May-08	56300.00	=""	="Stanford Technologies Pty Ltd"	02-May-08 01:36 PM	

+="CN73281"	"Review/Update of the Emission EstimationTechnique Manual for Sewage and Wastewater Treatment"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Editorial and Design and Graphic and Fine Art Services"	16-Apr-08	16-Jun-08	28820.00	="0708-1086"	="ECCO Pty Ltd"	02-May-08 01:46 PM	

+="CN73282"	"Review/Update of the Emission Estimation Technique Manual for Municipal Solid Waste Landfills"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Editorial and Design and Graphic and Fine Art Services"	16-Apr-08	16-Jun-08	29700.00	="0708-1084"	="ECCO Pty Ltd"	02-May-08 01:46 PM	

+="CN73283"	"Maintenance and enhancement of the National Pollutant Inventory online system database"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Information Technology Broadcasting and Telecommunications"	16-Apr-08	25-Apr-08	25873.20	="0708-1077"	="Dialog Information Technology"	02-May-08 01:46 PM	

+="CN73284"	"Accommodation and Facilities for Indigenous  Workshops - NT"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	31-May-08	15250.00	="0708-1264"	="Darwin Central Hotel"	02-May-08 01:46 PM	

+="CN73285-A1"	"Analysis of commercial fisheries data for marine bioregional planning"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	31-Aug-09	204532.00	="0708-869"	="Bureau of Rural Sciences"	02-May-08 01:47 PM	

+="CN73286"	"Accommodation and Facilities for Indigenous Workshop  - SA"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	16-Apr-08	31-May-08	10737.50	="0708-1263"	="Kildair Hotels (Grosvenor) Pty Ltd"	02-May-08 01:47 PM	

+="CN73287"	"Research activities associated with Australia's participation in the World Heritate committee"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="International relations"	28-Mar-08	31-Jul-08	42000.00	="0708-1292"	="Latrobe University"	02-May-08 01:47 PM	

+="CN73288-A2"	"Provision of Professional Information Technology Sourcing Project Services"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management advisory services"	17-Apr-08	01-Sep-08	166156.25	="0708-1015"	="Ken Erwood & Associates Pty Ltd T/a"	02-May-08 01:47 PM	

+="CN73289"	"Blackberry charges Jan 2008"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Information Technology Broadcasting and Telecommunications"	01-Jan-08	30-Apr-08	10940.50	="0708-1298"	="Telstra Corporation Limited"	02-May-08 01:47 PM	

+="CN73290"	"Blackberry charges Mar 2008"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Information Technology Broadcasting and Telecommunications"	01-Mar-08	21-Apr-08	16485.02	="0708-1299"	="Telstra Corporation Limited"	02-May-08 01:47 PM	

+="CN73291"	"Development of facility to enable access to databases Services"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Information services"	21-Apr-08	27-Jun-08	10164.00	="0708-1005"	="Department of Natural Resources,"	02-May-08 01:47 PM	

+="CN73292"	"Video Conferencing Equipment"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Information Technology Broadcasting and Telecommunications"	21-Apr-08	31-May-08	12883.88	="0708-1300"	="Vantage GVT"	02-May-08 01:47 PM	

+="CN73293"	"Assist services for the configuration, development testingand deployment of SAP functionality"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Software"	05-Feb-08	31-Mar-08	138050.00	="0708-911"	="Phase III Solutions Pty Ltd"	02-May-08 01:47 PM	

+="CN73294"	"Conference Gold sponsorship for national Coast to Coast 2008 Conference"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Marketing and distribution"	08-Apr-08	30-Apr-08	27500.00	="0708-1186"	="Coast to Coast"	02-May-08 01:48 PM	

+="CN73295-A1"	"Conveyancing services to support the acquisition of water entitlements"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Water resources development and oversight"	09-Apr-08	30-Jun-08	660000.00	="0708-634"	="Lawlab Pty Limited"	02-May-08 01:48 PM	

+="CN73296"	"Facilitate the CCTV & Access Control for Office Locations in Canberra"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Security and personal safety"	10-Apr-08	17-Apr-08	15292.20	="0708-1216"	="TAC Pacific Pty Ltd"	02-May-08 01:48 PM	

+="CN73297-A1"	"Discussion paper on Refridgeration Display Cabinet"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	11-Apr-08	31-May-08	22000.00	="0708-1163"	="Punchline Energy"	02-May-08 01:48 PM	

+="CN73298"	"NSW Performance Story Report"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	20-Jun-08	79200.00	="0708-371"	="Hassall & Associates Pty Ltd"	02-May-08 01:48 PM	

+="CN73299"	"Australia Post Account for March 2008"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Transportation and Storage and Mail Services"	14-Apr-08	14-Apr-08	19726.71	="0708-1224"	="Australia Post"	02-May-08 01:48 PM	

+="CN73300"	"Pacific Islands Working Group on Whale & Dolphin Watching in Auckland April 2008"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	30-Apr-08	10000.00	="0708-1133"	="Secretariat of the Pacific Regional"	02-May-08 01:48 PM	

+="CN73301"	"Storage security containers"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Office supplies"	14-Apr-08	18-Apr-08	10918.80	="0708-1225"	="Planex Sales  P/L"	02-May-08 01:48 PM	

+="CN73302-A1"	"Security services for department offices"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Security and personal safety"	15-Apr-08	06-Jun-08	181502.20	="0708-1244"	="SNP Security"	02-May-08 01:49 PM	

+="CN73304"	"Fit out of  Executive Furniture"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Office Equipment and Accessories and Supplies"	15-Apr-08	18-Apr-08	18098.00	="0708-1247"	="Hytec Interior Solutions"	02-May-08 01:49 PM	

+="CN73305"	"Construction and Maintenance Services as NT sites"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="General building construction"	15-Apr-08	30-Apr-08	16492.30	="0708-1243"	="Kakadu Contracting"	02-May-08 01:49 PM	

+="CN73306-A2"	"SERVICES RELATING TO THE SAP CLARITY GRANTS MANAGEMENT SOLUTION PROJECT"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Computer services"	16-Apr-08	31-Jan-09	563530.00	="0708-1126"	="Phase III Solutions Pty Ltd"	02-May-08 01:49 PM	

+="CN73308-A3"	"Design and Delivery of a learning and development workshop"	="Department of the Environment Water Heritage and the Arts"	02-May-08	="Education and Training Services"	15-Apr-08	31-Aug-11	2733515.73	="0708-0034"	="PerformGroup"	02-May-08 01:58 PM	

+="CN73309"	" Supply and deliver quantity 687 ea of steel trek and omnitrek heavy duty tyres "	="Defence Materiel Organisation"	02-May-08	="Heavy truck tyres"	01-May-08	31-Mar-09	310334.70	=""	="South Pacific Tyres"	02-May-08 02:14 PM	

+="CN73310-A2"	"Provision of Psychological Services"	="CRS Australia"	02-May-08	="Psychologists services"	29-Apr-08	28-Apr-10	20500.00	=""	="Derek Maher"	02-May-08 02:25 PM	

+="CN73311"	"Supply and deliver quantity 687 ea of Steel trek and Omnitrek tyres"	="Defence Materiel Organisation"	02-May-08	="Heavy truck tyres"	01-May-08	02-Mar-09	310334.70	=""	="South Pacific Tyres"	02-May-08 02:29 PM	

+="CN73313"	"Qty 687 Tyre Pneumatic for Delivery to JLU(N)  "	="Defence Materiel Organisation"	02-May-08	="Heavy truck tyres"	01-May-08	16-Mar-09	310334.71	=""	="Good Year & Dunlop"	02-May-08 03:02 PM	

+="CN73314"	"Qty 3459 Tyre Pneumatic for delivery to JLU-Vic (Bandiana)"	="Defence Materiel Organisation"	02-May-08	="Heavy truck tyres"	02-May-08	30-Mar-09	1561619.27	=""	="South Pacific Tyres"	02-May-08 03:12 PM	

+="CN73315-A1"	"Undertake a broad ranging review of Australia's current biosecurity and quarantine arrangements."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	22-Feb-08	30-Sep-08	77500.00	=""	="Larool Secretarial Services Pty Ltd"	02-May-08 03:51 PM	

+="CN73316"	"Heat treatment of plant pathogens and soil"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	11-Apr-08	30-Jun-08	24315.00	=""	="Department of Primary Industries Orange Agricultural Institute"	02-May-08 03:51 PM	

+="CN73319-A1"	"Warehousing and Distribution services."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Mail and cargo transport"	16-Apr-08	16-Apr-13	1783000.00	=""	="Blue Star Print Group Australia Pty Ltd"	02-May-08 03:51 PM	

+="CN73320"	"To provide recommendations to the Natural Resource management Division on priorities for investment and best practice design and management of industry programs."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	25-Apr-08	30-Jun-08	33000.00	=""	="Garland Outcomes Pty Ltd"	02-May-08 03:51 PM	

+="CN73324-A3"	" Recruitment Services. "	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Human resources services"	16-Apr-08	15-Apr-12	369982.95	=""	="Effective People Pty Ltd"	02-May-08 03:52 PM	

+="CN73325"	"34 x 87120032 EXP50 Task Chair M/B No Arms Hula Wizard4 x EXP50 Drafting Chair M/B Hula Wizard5 x EXP50S Task Chair Extra H/B ADJ/Arms Hula Wizard Fabric"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Furniture and Furnishings"	22-Apr-08	31-May-08	14840.65	=""	="Corporate Express"	02-May-08 03:52 PM	

+="CN73326-A1"	"Undertake a broad ranging review of Australia's current biosecurity and quarantine arrangements."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	22-Feb-08	30-Sep-08	448500.00	=""	="Allen Consulting Group Pty Ltd"	02-May-08 03:52 PM	

+="CN73327"	"Reimbursement for phone lines at Est 623 St George"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Telecommunications media services"	01-Jan-08	30-May-08	13012.49	=""	="VACIK DISTRIBUTORS PTY LTD"	02-May-08 03:52 PM	

+="CN73321"	" MOTOR VEHICLE SPARE PARTS "	="Department of Defence"	02-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	02-Jun-08	32529.64	=""	="MERCEDES BENZ AUST"	02-May-08 03:52 PM	

+="CN73328-A1"	"Undertake a broad ranging review of Australia's current biosecurity and quarantine arrangements."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	22-Feb-08	30-Sep-08	234750.00	=""	="Fairo Holdings Pty Ltd"	02-May-08 03:52 PM	

+="CN73329-A1"	"Production of NAMS website promotional video."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Marketing and distribution"	22-Apr-08	30-Jun-08	14000.00	=""	="Bearcage Productions"	02-May-08 03:52 PM	

+="CN73330-A1"	"Undertake a broad ranging review of Australia's current biosecurity and quarantine arrangements."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	22-Feb-08	30-Sep-08	77500.00	=""	="Andrew Inglis"	02-May-08 03:53 PM	

+="CN73331"	"Printing SOFR products."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Printed media"	22-Apr-08	30-Jun-08	44000.00	=""	="National Capital Printing"	02-May-08 03:53 PM	

+="CN73332"	"Design of SOFR Products."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Printed media"	22-Apr-08	30-Jun-08	18000.00	=""	="Fusebox Design"	02-May-08 03:53 PM	

+="CN73333"	"O/H & S Ergonomic workstation assessment of AQIS"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Comprehensive health services"	14-Mar-08	30-Sep-08	44000.00	=""	="Recovre"	02-May-08 03:53 PM	

+="CN73334"	"Testing of AI samples"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management and Business Professionals and Administrative Services"	01-Mar-08	30-Apr-08	40434.00	=""	="CSIRO"	02-May-08 03:53 PM	

+="CN73335"	"Veterinary supplies"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management and Business Professionals and Administrative Services"	24-Apr-08	29-May-08	29850.15	=""	="PROVET"	02-May-08 03:53 PM	

+="CN73336"	"REPLACE EXISTING DISPOSABLE CAMERA'S CURRENTLY USED ON PLANT FOR ANIMAL WELFARE INCIDENTS WITH A SUPERIOR QUALITY DIGITAL CAMERA."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management and Business Professionals and Administrative Services"	28-Apr-08	28-May-08	11000.00	=""	="THE GOOD GUYS"	02-May-08 03:53 PM	

+="CN73337"	"Consultant is to develop disease risk awareness material in consultation with stakeholders and other government bodies. The material will be displayed in two formats: and information brochure and a refridgerator magnet."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	24-Apr-08	13-Jun-08	13992.00	=""	="Future Fisheries Veterinary Services"	02-May-08 03:53 PM	

+="CN73338"	"Meeting rooms equipment"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Telecommunications media services"	01-Apr-08	30-Jun-08	24870.10	=""	="Enacom Pty Ltd"	02-May-08 03:53 PM	

+="CN73339"	"Staff Housing Rental in Port Hedland."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Personal and Domestic Services"	01-May-08	15-Apr-09	69085.68	=""	="Mr Toby Webb, Mr Haydn Webb, Mrs Karen Webb"	02-May-08 03:54 PM	

+="CN73340"	"Charter flight -NRAC Ec Tour 15-16th AprilWestern Downs/Maranoa QLD"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Passenger transport"	01-Apr-08	30-Apr-08	20000.00	=""	="Hawker Pacific Pty Ltd"	02-May-08 03:54 PM	

+="CN73341"	"Contractors for Clyde Mail Handling Unit & Clyde Detector Dog Unit Admin."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Human resources services"	01-Apr-08	31-May-08	194383.20	=""	="WORKFORCE INTERNATIONAL PTY LTD"	02-May-08 03:54 PM	

+="CN73342-A1"	"Sharp Contract"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Tools and General Machinery"	01-Jan-08	30-Jun-08	458000.00	=""	="Sharp"	02-May-08 03:54 PM	

+="CN73343"	"Temporary Staff Services"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Human resources services"	12-May-08	31-Dec-08	22000.00	=""	="Careers Unlimited Pty Ltd"	02-May-08 03:54 PM	

+="CN73344"	"Inclusion of Marine Pests on Pest and Disease Image Library (PaDIL) website."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	28-Apr-08	30-Jun-08	21065.00	=""	="Museum Victoria"	02-May-08 03:54 PM	

+="CN73345-A1"	"Annual Software Maintenance up to and including 30 June 2009 for the Bureau of Rural Sciences."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Computer services"	01-Jul-08	30-Jun-09	190300.00	=""	="ESRI Australia"	02-May-08 03:54 PM	

+="CN73346"	"Draft Report Chicken Meat"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Legal services"	21-Apr-08	30-Jun-08	22000.00	=""	="Minter Ellison"	02-May-08 03:54 PM	

+="CN73347-A4"	"Create a Business Classification Scheme (BCS) and a Records Authority (RA) to assist with Records Management"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Human resources services"	09-Apr-08	30-Dec-10	99833.59	=""	="Synercon Management Consulting P/L"	02-May-08 03:55 PM	

+="CN73348"	"Review of support functions"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	10-Apr-08	06-May-08	38280.00	=""	="Grey Advantage Consulting P/L"	02-May-08 03:55 PM	

+="CN73349"	"Data capture and validation"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	01-Sep-07	30-Jun-08	49189.80	=""	="The University of Queensland"	02-May-08 03:55 PM	

+="CN73350"	""Python" programming training - effectively a sole supplier in Canberra."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Education and Training Services"	22-Apr-08	30-Jun-08	11550.00	=""	="ABS Trust"	02-May-08 03:55 PM	

+="CN73351"	"Panaseer access Jan, Feb and Mar 08"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Insurance and retirement services"	01-Jan-08	31-Mar-08	36660.80	=""	="Commander Australia Limited"	02-May-08 03:55 PM	

+="CN73352-A1"	"NAMS - Provision of services to BRS in the validation of ABS datasets & cleaning of shapefiles supplied by BRS."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	21-Apr-08	30-Jun-08	21450.00	=""	="Sinclair Knight Merz Pty Ltd"	02-May-08 03:55 PM	

+="CN73353"	"This consultancy will produce a regulation impact statement of the proposed policy approach to the implementation of Australian biofouling requirements."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	24-Apr-08	30-Jun-08	57475.00	=""	="Centre for International Economics"	02-May-08 03:55 PM	

+="CN73354"	"Laboratory analysis of rainfall samples for stable isotopes"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management and Business Professionals and Administrative Services"	29-Apr-08	30-Jun-08	22000.00	=""	="CSIRO Land and Water"	02-May-08 03:55 PM	

+="CN73355"	"Consultation, piloting and Climate Change and Industry Adaptation survey instrument."	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Management advisory services"	29-Apr-08	30-Jun-08	23914.00	=""	="Ekas Market Research Services"	02-May-08 03:56 PM	

+="CN73356"	"FBT CAR ASSESSMENTS"	="Department of Agriculture Fisheries and Forestry"	02-May-08	="Building and Construction and Maintenance Services"	15-May-08	15-May-08	19800.00	=""	="Knight Frank"	02-May-08 03:56 PM	

+="CN73357"	"MOTOR VEHICLE SPARE PARTS"	="Department of Defence"	02-May-08	="Commercial and Military and Private Vehicles and their Accessories and Components"	01-May-08	01-Jun-08	31109.58	=""	="MERCEDES BENZ AUST"	02-May-08 03:57 PM 

--- /dev/null
+++ b/admin/partialdata/30May2008to01Jun2008valto.xls
@@ -1,1 +1,443 @@
-
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN86784"	"PROCUREMENT OF AIRCRAFT SPARES"	="Defence Materiel Organisation"	30-May-08	="Aircraft spars"	30-May-08	26-Nov-08	44827.20	=""	="SIKORSKY AIRCRAFT AUSTRALIA LIMITED"	30-May-08 08:06 AM	

+="CN86785"	"Antiflash Hoods and Gloves for Royal Australian Navy"	="Defence Materiel Organisation"	30-May-08	="Heat resistant clothing"	07-May-08	22-Aug-08	413600.00	="J8277"	="Flamesafe Fabric Specialists"	30-May-08 08:14 AM	

+="CN86786"	"Flyers Gloves for Army, Navy and Airforce"	="Defence Materiel Organisation"	30-May-08	="Protective gloves"	23-May-08	11-Aug-08	327525.00	="B1211"	="Armtech Pty Ltd"	30-May-08 08:26 AM	

+="CN86787"	"Computer Training course"	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	02-Jun-08	05-Jun-08	31680.00	=""	="IBM Australia Pty Ltd"	30-May-08 09:28 AM	

+="CN86790-A1"	"  Continuing Professional Development Sessions to provide  Tax Updates  "	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	09-Jun-08	31-May-09	282608.00	="40.05-26"	="Kaplin Education Pty Ltd"	30-May-08 10:23 AM	

+="CN86791"	"Nuance SW Maintenance & Support"	="Australian Taxation Office"	30-May-08	="Software maintenance and support"	01-Jul-08	31-Dec-09	145200.00	=""	="NEC Australia Pty Ltd"	30-May-08 10:27 AM	

+="CN86793-A1"	" Finalise negotiations for Enterprise Licensing Agreement, financial mgt and investment strategy consulting services "	="Centrelink"	30-May-08	="Business administration services"	02-Jan-08	30-Jun-08	104347.00	=""	="Mike Goldstein & Associates"	30-May-08 10:54 AM	

+="CN86795"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	08-Jan-08	26-Mar-08	13276.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 11:26 AM	

+="CN86797"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	09-Jan-08	09-Jan-08	13243.10	=""	="Translating & Interpreting Svs"	30-May-08 11:26 AM	

+="CN86798"	"Parts"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	09-Jan-08	09-Jan-08	14137.34	=""	="BISCHL Feinmechanik/Electronic GmbH"	30-May-08 11:26 AM	

+="CN86799"	"Telecommunications Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	10-Jan-08	10-Jan-08	67060.46	=""	="TELSTRA CORPORATION"	30-May-08 11:26 AM	

+="CN86800"	"scanner maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	10-Jan-08	01-Aug-08	18084.00	=""	="Kodak (Australasia) Pty Ltd"	30-May-08 11:27 AM	

+="CN86801"	"Function"	="Department of Foreign Affairs and Trade"	30-May-08	="Travel and Food and Lodging and Entertainment Services"	10-Jan-08	31-Jan-08	105000.00	=""	="Consuming Passions Pty Ltd"	30-May-08 11:27 AM	

+="CN86802"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	11-Jan-08	13598.68	=""	="Media Monitors Australia P/L"	30-May-08 11:27 AM	

+="CN86804"	"Postage"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	14-Jan-08	21-Jan-08	190980.40	=""	="Australia Post (9239640)"	30-May-08 11:27 AM	

+="CN86805"	"Office rent and Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	14-Jan-08	73890.12	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 11:27 AM	

+="CN86806"	"Building maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	08-Feb-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 11:28 AM	

+="CN86807"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	31-Jan-08	33141.10	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 11:28 AM	

+="CN86808"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	14-Jan-08	25-Jan-08	35742.22	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 11:28 AM	

+="CN86809"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	28-Jan-08	12071.23	=""	="Media Monitors Australia P/L"	30-May-08 11:28 AM	

+="CN86810"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Jan-08	31-Jan-08	40715.25	=""	="Coffey ID Pty Ltd"	30-May-08 11:28 AM	

+="CN86811"	"Rent and Outgoings"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	18-Jan-08	18-Jan-08	65615.82	=""	="Australand Property Trust"	30-May-08 11:28 AM	

+="CN86812"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	21-Jan-08	24-Jan-08	13291.85	=""	="ICON RECRUITMENT PTY LTD"	30-May-08 11:29 AM	

+="CN86813"	"Security Door"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	21-Jan-08	21-Jan-08	14462.80	=""	="Diebold Physical Security Pty Ltd"	30-May-08 11:29 AM	

+="CN86814"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	18532.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86815"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	14238.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86816"	"Recruitment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Jan-08	31-Jan-08	21244.00	=""	="Australian Public Service"	30-May-08 11:29 AM	

+="CN86817"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	21-Jan-08	31-Dec-08	10600.00	=""	="ARTBANK"	30-May-08 11:29 AM	

+="CN86818"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	22-Jan-08	22-Jan-08	25132.45	=""	="Sealeck Pty Ltd"	30-May-08 11:30 AM	

+="CN86820"	"Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	22-Jan-08	12727.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 11:30 AM	

+="CN86821"	"Rent and Outgoings"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	22-Jan-08	65615.82	=""	="Australand Property Trust"	30-May-08 11:30 AM	

+="CN86822"	"Freight"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	22-Jan-08	31-Jan-08	60134.92	=""	="Star Track Express"	30-May-08 11:30 AM	

+="CN86823"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-Jan-08	26-Mar-08	12957.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 11:30 AM	

+="CN86824"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	23-Jan-08	23-Jan-08	18931.18	=""	="Sealeck Pty Ltd"	30-May-08 11:31 AM	

+="CN86825"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	23-Jan-08	25-Jan-08	26811.40	=""	="Sealeck Pty Ltd"	30-May-08 11:31 AM	

+="CN86826"	"Facilitation"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	23-Jan-08	23-Jan-08	17490.00	=""	="Myriad Consultants Pty Ltd"	30-May-08 11:31 AM	

+="CN86827"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	24-Jan-08	31-Dec-09	12850.00	=""	="ARTBANK"	30-May-08 11:31 AM	

+="CN86828"	"Importation Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	24-Jan-08	18-Feb-08	15308.89	=""	="Power House International P/L"	30-May-08 11:31 AM	

+="CN86829"	"Other Goods"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	24-Jan-08	24-Jan-08	16990.93	=""	="GSI Media Pty Ltd"	30-May-08 11:31 AM	

+="CN86830"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	24-Jan-08	25-Jan-08	16649.29	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86831"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Doors and windows and glass"	24-Jan-08	25-Jan-08	23555.47	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86832"	"Building Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	24-Jan-08	25-Jan-08	34644.63	=""	="Sealeck Pty Ltd"	30-May-08 11:32 AM	

+="CN86833"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	28-Jan-08	16219.50	=""	="ZVENO PTY LTD"	30-May-08 11:32 AM	

+="CN86834"	"Subscription"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	29-Jan-08	11250.00	=""	="Dow Jones Reuters Business Interact"	30-May-08 11:32 AM	

+="CN86835"	"Pest Control"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Jan-08	25-Jan-08	18532.00	=""	="Complete Cleaning Services"	30-May-08 11:32 AM	

+="CN86836"	"Telecommuication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Jan-08	25-Jan-08	29150.87	=""	="TELSTRA CORPORATION LIMITED (Qld)"	30-May-08 11:32 AM	

+="CN86837"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	25-Jan-08	25-Jan-08	10210.20	=""	="GHD Pty Ltd"	30-May-08 11:33 AM	

+="CN86838"	"Insurance"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	29-Jan-08	31-Jul-08	13948.86	=""	="NATIONAL MUSEUM OF AUSTRALIA"	30-May-08 11:33 AM	

+="CN86839"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81845.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86840"	"Office rent and Charges"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	30-Jan-08	02-Feb-08	73248.86	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 11:33 AM	

+="CN86841"	"Security Service"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	163894.64	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86842"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81845.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86843"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81677.00	=""	="Australian Protective Service"	30-May-08 11:33 AM	

+="CN86844"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	19-Feb-08	81669.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86845"	"Security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81677.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86846"	"security services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	163089.92	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86847"	"Security Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	30-Jan-08	81669.00	=""	="Australian Protective Service"	30-May-08 11:34 AM	

+="CN86848"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	30-Jan-08	26-Feb-08	34871.43	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 11:34 AM	

+="CN86849"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Jan-08	30-Jun-08	29555.00	=""	="Interiors Australia"	30-May-08 11:34 AM	

+="CN86850"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	14-Jan-08	23540.00	=""	="MINTER ELLISON"	30-May-08 11:34 AM	

+="CN86851"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	14-Jan-08	14-Jan-08	10452.31	=""	="MINTER ELLISON"	30-May-08 11:34 AM	

+="CN86852"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	23-Jan-08	23-Jan-08	18001.50	=""	="MINTER ELLISON"	30-May-08 11:35 AM	

+="CN86853"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	29-Jan-08	15-Feb-08	12028.50	=""	="Australian Government Solicitor"	30-May-08 11:35 AM	

+="CN86854"	"Electrical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	08-Jan-08	09-Jan-08	18421.00	=""	="CombiTel"	30-May-08 11:35 AM	

+="CN86855"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	09-Jan-08	19-Feb-08	12951.50	=""	="Commander Integrated Networks Pty L"	30-May-08 11:35 AM	

+="CN86856"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	08-Jan-08	05-Feb-08	13600.00	=""	="KABA Australia Pty Ltd"	30-May-08 11:35 AM	

+="CN86857"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	08-Jan-08	05-Feb-08	14960.00	=""	="KABA Australia Pty Ltd"	30-May-08 11:35 AM	

+="CN86858"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	10-Jan-08	07-Feb-08	18894.01	=""	="Commander Integrated Networks Pty L"	30-May-08 11:35 AM	

+="CN86859"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Jan-08	31-Jan-08	17991.60	=""	="RIC Teledata Pty Ltd"	30-May-08 11:35 AM	

+="CN86860"	"Telecommunication Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	14-Jan-08	31-Jan-08	20807.05	=""	="STEP Electronics (A Hills Company)"	30-May-08 11:36 AM	

+="CN86861"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Jan-08	31-Jan-08	45650.00	=""	="RIC Teledata Pty Ltd"	30-May-08 11:36 AM	

+="CN86862"	"Sale And Leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	18-Jan-08	15-Feb-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 11:36 AM	

+="CN86863"	"Electrical gates"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	22-Jan-08	19-Feb-08	23403.50	=""	="IEE Electrical Services"	30-May-08 11:36 AM	

+="CN86864"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	23-Jan-08	20-Feb-08	25740.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:36 AM	

+="CN86865"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	18-Jan-08	01-Feb-08	25418.47	=""	="Fitzgerald Technologies"	30-May-08 11:36 AM	

+="CN86866"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	24-Jan-08	21-Feb-08	66649.00	=""	="Patriot Alliance Pty Ltd"	30-May-08 11:36 AM	

+="CN86867"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	22-Jan-08	28-Feb-08	29429.40	=""	="KAZ Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86868"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	23-Jan-08	30-Apr-08	10785.29	=""	="Commander Integrated Networks Pty L"	30-May-08 11:37 AM	

+="CN86869"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	17-Jan-08	14-Feb-08	22363.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86871"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	14-Jan-08	11-Feb-08	22908.60	=""	="Ethan Group Pty Ltd"	30-May-08 11:37 AM	

+="CN86872"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Office machines and their supplies and accessories"	30-Jan-08	31-Jan-08	12346.40	=""	="CANON AUSTRALIA PTY LTD"	30-May-08 11:37 AM	

+="CN86873"	"Stationary"	="Department of Foreign Affairs and Trade"	30-May-08	="Office supplies"	29-Jan-08	31-Jan-08	56680.00	=""	="THE CAMERONS GROUP"	30-May-08 11:38 AM	

+="CN86874"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	29-Jan-08	26-Feb-08	48444.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:38 AM	

+="CN86875"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	31-Jan-08	28-Feb-08	11385.00	=""	="Ethan Group Pty Ltd"	30-May-08 11:38 AM	

+="CN86876"	"Tecnhology Solutions"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	31-Jan-08	28-Feb-08	116644.81	=""	="Fitzgerald Technologies"	30-May-08 11:38 AM	

+="CN86877"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Jan-08	08-Feb-08	98175.00	=""	="Integral Consulting Services"	30-May-08 11:38 AM	

+="CN86878"	"Technical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Manufacture of electrical goods and precision instruments"	25-Jan-08	22-Feb-08	62000.00	=""	="Olympus Australia Pty Ltd"	30-May-08 11:38 AM	

+="CN86879"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	23-Jan-08	20-Feb-08	94187.50	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 11:39 AM	

+="CN86880"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	30-Jan-08	27-Feb-08	77165.00	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	30-May-08 11:39 AM	

+="CN86881"	"IT Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	10-Jan-08	27-Mar-08	24613.05	=""	="R.P.M. Solutions Pty Ltd"	30-May-08 11:39 AM	

+="CN86882"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	33993.85	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86883"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	33993.85	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86884"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Jan-08	31-Jan-08	67987.70	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 11:39 AM	

+="CN86885"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	29-Jan-08	29-Jan-09	59400.00	=""	="ActivIdentity"	30-May-08 11:39 AM	

+="CN86886-A1"	"Professional Membership Fees"	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	13-Apr-09	39800.00	="08.071"	="Human Services Asia Pacific Pty Ltd"	30-May-08 11:41 AM	

+="CN86888"	"STAFF SECONDMENT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Human resources services"	30-Apr-08	30-Apr-08	231000.00	=""	="RESERVE BANK OF AUSTRALIA"	30-May-08 11:49 AM	

+="CN86890"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	13-May-08	13-May-08	50916.80	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:49 AM	

+="CN86891"	"COURIER SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Postal and small parcel and courier services"	08-May-08	08-May-08	13673.22	=""	="UNIVERSAL EXPRESS"	30-May-08 11:49 AM	

+="CN86892"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	16-May-08	16-May-08	426888.00	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:49 AM	

+="CN86893"	"ERGONOMIC DESK ASSESSMENTS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Comprehensive health services"	30-Apr-08	30-Apr-08	11730.40	=""	="J J FRITH AND ASSOCIATES"	30-May-08 11:49 AM	

+="CN86895-A1"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	130900.00	=""	="OAKTON SERVICES PTY LTD"	30-May-08 11:50 AM	

+="CN86896-A1"	"IT CONTRACTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	08-May-08	08-May-08	190080.00	=""	="PAXUS AUSTRALIA PTY LTD"	30-May-08 11:50 AM	

+="CN86897"	"PRINTING COSTS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-May-08	07-May-08	18998.65	=""	="PRINT PAL (TAM INTERNATIONAL ENTERPRISES)"	30-May-08 11:50 AM	

+="CN86898"	"CONSULTANCY SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	08-May-08	08-May-08	209989.96	=""	="SMS CONSULTING GROUP LTD"	30-May-08 11:50 AM	

+="CN86899"	"IT CONSULTING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Information technology consultation services"	17-Apr-08	17-Apr-08	34366.20	=""	="OAKTON SERVICES PTY LTD"	30-May-08 11:50 AM	

+="CN86902"	"SOFTWARE LICENSE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	15-Sep-08	23-Mar-09	167192.00	=""	="MICROSTRATEGY PTY LTD"	30-May-08 11:51 AM	

+="CN86903"	"SOFTWARE LICENSE RENEWAL"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	15-Sep-08	23-Mar-09	32755.00	=""	="MICROSTRATEGY PTY LTD"	30-May-08 11:51 AM	

+="CN86904"	"REVIEW OF FMA IMPLEMENTATION"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Business intelligence consulting services"	18-Jan-08	20-Feb-08	27075.00	=""	="PROTIVITI PTY LIMITED"	30-May-08 11:51 AM	

+="CN86905"	"PHOTOCOPYING EQUIPMENT LEASE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Office machines and their supplies and accessories"	01-Jan-08	31-Dec-12	436479.84	=""	="FUJI XEROX AUSTRALIA"	30-May-08 11:51 AM	

+="CN86906"	"TRAINING COURSE - ASSESSMENT OF CATASTROPHE MODELS USED BY GENERAL INSURERS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Engineering and Research and Technology Based Services"	17-Apr-08	17-Apr-08	16500.00	=""	="BENFIELD (AUSTRALIA) PTY LTD"	30-May-08 11:51 AM	

+="CN86907"	"COMPUTER HARDWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software or hardware engineering"	22-Apr-08	22-Apr-08	69880.81	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	30-May-08 11:51 AM	

+="CN86908"	"COMPUTER HARDWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software or hardware engineering"	22-Apr-08	22-Apr-08	36984.31	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	30-May-08 11:51 AM	

+="CN86909"	"TEMPORARY STAFFING SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	22-Apr-08	22-Apr-08	22774.40	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:51 AM	

+="CN86910"	"RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Recruitment services"	23-Apr-08	23-Apr-08	27720.00	=""	="NEXT STEP RECRUITMENT (NSW) PTY LTD"	30-May-08 11:52 AM	

+="CN86911"	"APEC PROGRAM ADVANCED CREDIT RISK SEMINAR"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Hotels and lodging and meeting facilities"	06-May-08	06-May-08	27500.00	=""	="RESERVE BANK OF AUSTRALIA"	30-May-08 11:52 AM	

+="CN86912"	"EXPER WITNESS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	14-May-08	14-May-08	66000.00	=""	="HULLAH NO.1 FAMILY TRUST"	30-May-08 11:52 AM	

+="CN86913"	"ZIP TAPS FOR SYDNEY TENANCY"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Facilities management"	08-May-08	08-May-08	34021.08	=""	="ZIP HEATERS AUST. PTY LTD"	30-May-08 11:52 AM	

+="CN86914"	"LABOUR HIRE - GENERAL CONTRACTORS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	19976.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:52 AM	

+="CN86915"	"LABOUR HIRE - GENERAL CONTRACTORS"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	19976.00	=""	="HAYS PERSONNEL SERVICES (AUST) PTY LTD"	30-May-08 11:52 AM	

+="CN86916-A1"	"PROJECT MANAGEMENT OF PERTH OFFICE FITOUT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Project management"	16-May-08	16-May-08	16500.00	=""	="CB RICHARD ELLIS (C) PTY LTD T/A CB RICHARD ELLIS ITF QV.1 PARTNERSHIP REBA TRUST A/C-IBTC47453"	30-May-08 11:52 AM	

+="CN86917"	"DESIGNERS FOR PERTH OFFICE FITOUT"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Building and Construction and Maintenance Services"	16-May-08	16-May-08	16500.00	=""	="BLAKE THORNTON-SMITH PTY LTD"	30-May-08 11:52 AM	

+="CN86918"	"HARDWARE AND SOFTWARE MAINTENANCE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software maintenance and support"	16-May-08	16-May-08	47924.03	=""	="COMPUTER SYSTEMS (AUSTRALIA) PTY LTD"	30-May-08 11:52 AM	

+="CN86919"	"MEMBER SUBSCRIPTIONFOR OFFICE SOFTWARE"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Software"	16-May-08	16-May-08	11343.75	=""	="XBRL AUSTRALIA LIMITED"	30-May-08 11:53 AM	

+="CN86920"	"CONTRAC/RECRUITMENT SERVICES"	="Australian Prudential Regulation Authority (APRA)"	30-May-08	="Temporary personnel services"	16-May-08	16-May-08	44000.00	=""	="COX PURTELL"	30-May-08 11:53 AM	

+="CN86922"	"Actuarial review"	="Australian Taxation Office"	30-May-08	="Financial accounting"	27-May-08	22-Dec-08	20000.00	=""	="Australian Government Actuary"	30-May-08 12:14 PM	

+="CN86924"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-Feb-08	29-Feb-08	22000.00	=""	="Quickcomm Pty Limited"	30-May-08 12:28 PM	

+="CN86925"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	05-Feb-08	10-Feb-08	49178.69	=""	="TELSTRA CORPORATION"	30-May-08 12:28 PM	

+="CN86926"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	06-Feb-08	05-Mar-08	15352.40	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:28 PM	

+="CN86927"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	06-Feb-08	22-Feb-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:28 PM	

+="CN86928"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Personal and Domestic Services"	07-Feb-08	31-Jan-09	10850.00	=""	="ARTBANK"	30-May-08 12:28 PM	

+="CN86929"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	07-Feb-08	22-Feb-08	14697.74	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:29 PM	

+="CN86930"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical wire and cable and harness"	08-Feb-08	15-Feb-08	10697.09	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	30-May-08 12:29 PM	

+="CN86931"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	11-Feb-08	11-Feb-08	10236.60	=""	="ATD Canberra Pty Ltd"	30-May-08 12:29 PM	

+="CN86932"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	12-Feb-08	12-Feb-08	10305.90	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:29 PM	

+="CN86933"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	12-Feb-08	28-Feb-08	10659.00	=""	="Infinite Consulting Pty Ltd"	30-May-08 12:29 PM	

+="CN86934"	"Recreational Products"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-Feb-08	05-Apr-08	13270.00	=""	="Selby's Pty Ltd"	30-May-08 12:29 PM	

+="CN86935"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-Feb-08	20-Feb-08	292042.11	=""	="Australia Post (9239640)"	30-May-08 12:29 PM	

+="CN86936"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	13-Feb-08	13-Feb-08	19520.86	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:29 PM	

+="CN86937"	"Gym Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Sports and Recreational Equipment and Supplies and Accessories"	13-Feb-08	29-Feb-08	17266.25	=""	="Life Fitness Australia Pty Ltd"	30-May-08 12:30 PM	

+="CN86938"	"Translation Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	13-Feb-08	29-Feb-08	11943.90	=""	="Translating & Interpreting Svs"	30-May-08 12:30 PM	

+="CN86939"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	18-Feb-08	21-Feb-08	16592.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:30 PM	

+="CN86940"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	18-Feb-08	27-Feb-08	15191.00	=""	="Diebold Physical Security Pty Ltd"	30-May-08 12:30 PM	

+="CN86941"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	18-Feb-08	31-May-08	16547.00	=""	="Barry M Derbyshire"	30-May-08 12:30 PM	

+="CN86942"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	19-Feb-08	28-Feb-08	17424.00	=""	="Cablewise Electrical and Comms"	30-May-08 12:30 PM	

+="CN86943"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	163643.17	=""	="Australian Protective Service"	30-May-08 12:30 PM	

+="CN86944"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:30 PM	

+="CN86945"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:31 PM	

+="CN86946"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Feb-08	13-Mar-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:31 PM	

+="CN86947"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Feb-08	21-Feb-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:31 PM	

+="CN86949"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	21-Feb-08	06-Mar-08	10249.80	=""	="CANBERRA FLOORCRAFT"	30-May-08 12:31 PM	

+="CN86950"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Feb-08	25-Feb-08	20376.73	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:31 PM	

+="CN86951"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	25-Feb-08	03-Mar-08	12391.23	=""	="Greythorn Pty Ltd"	30-May-08 12:31 PM	

+="CN86952"	"Accommodation"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	26-Feb-08	12-Apr-08	18197.20	=""	="Hotel Ibis Darling Harbour"	30-May-08 12:31 PM	

+="CN86953"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	27-Feb-08	28-Feb-08	12644.89	=""	="Media Monitors Australia P/L"	30-May-08 12:32 PM	

+="CN86954"	"Artwork Leases"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	27-Feb-08	31-Jan-09	14900.00	=""	="ARTBANK"	30-May-08 12:32 PM	

+="CN86955"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	21-Mar-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:32 PM	

+="CN86957"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	02-Mar-08	24118.45	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:32 PM	

+="CN86958"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	21-Mar-08	14850.00	=""	="Capital Valuers"	30-May-08 12:32 PM	

+="CN86959"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Feb-08	02-Mar-08	75199.20	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:32 PM	

+="CN86960"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	29-Feb-08	14066.03	=""	="Power House International P/L"	30-May-08 12:33 PM	

+="CN86961"	"Importation Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	03-Mar-08	31-Mar-08	14056.63	=""	="Power House International P/L"	30-May-08 12:33 PM	

+="CN86962"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-Mar-08	05-Mar-08	20154.75	=""	="ZVENO PTY LTD"	30-May-08 12:33 PM	

+="CN86963"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management advisory services"	06-Mar-08	31-Mar-08	13881.10	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:33 PM	

+="CN86964"	"Telecommunication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	07-Mar-08	07-Mar-08	15823.50	=""	="TELSTRA CORPORATION"	30-May-08 12:33 PM	

+="CN86965"	"Telecommunuication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	07-Mar-08	07-Mar-08	27847.60	=""	="TELSTRA CORPORATION"	30-May-08 12:33 PM	

+="CN86966"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	07-Mar-08	07-Mar-08	204049.98	=""	="HP Financial Services"	30-May-08 12:33 PM	

+="CN86967"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	28-Mar-08	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	30-May-08 12:33 PM	

+="CN86969"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	10-Mar-08	20-Mar-08	12465.90	=""	="AUSTRALIA POST (ACC 6102084)"	30-May-08 12:34 PM	

+="CN86970"	"Publication Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	12-Mar-08	12-Mar-08	11000.00	=""	="The Federation Press"	30-May-08 12:34 PM	

+="CN86971"	"Project Management Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	13-Mar-08	28-Mar-08	15840.00	=""	="Napier & Blakeley Pty Ltd"	30-May-08 12:34 PM	

+="CN86972"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Education and Training Services"	14-Mar-08	31-Mar-08	10492.89	=""	="Wordly Wisdom Writing & Consultancy"	30-May-08 12:34 PM	

+="CN86973"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Peddle Thorp and Harvey Pty Ltd"	30-May-08 12:34 PM	

+="CN86974"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	31-Mar-08	10428.00	=""	="Fulton technology"	30-May-08 12:34 PM	

+="CN86975"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	17-Mar-08	31-Mar-08	11950.16	=""	="HP Financial Services"	30-May-08 12:35 PM	

+="CN86976"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	17-Mar-08	17-Mar-08	62678.19	=""	="HP Financial Services"	30-May-08 12:35 PM	

+="CN86977"	"Hospitality Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Doors and windows and glass"	17-Mar-08	31-Mar-08	17000.00	=""	="Official Focus Pty Ltd"	30-May-08 12:35 PM	

+="CN86978"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Mar-08	31-Mar-08	10966.08	=""	="TMP/Hudson Global Resources"	30-May-08 12:35 PM	

+="CN86979"	"Recruitment Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	19-Mar-08	03-Mar-09	53763.60	=""	="nga.net.pty ltd"	30-May-08 12:35 PM	

+="CN86980"	"Media Monitoring Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	19-Mar-08	28-Mar-08	15361.61	=""	="Media Monitors Australia P/L"	30-May-08 12:35 PM	

+="CN86981"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Mar-08	25-Mar-08	69005.13	=""	="TELSTRA CORPORATION"	30-May-08 12:35 PM	

+="CN86982"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	28-Mar-08	27500.00	=""	="CB Richard Ellis (Canberra)"	30-May-08 12:35 PM	

+="CN86983"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	26-Mar-08	12771.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:36 PM	

+="CN86984"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	26-Mar-08	12771.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:36 PM	

+="CN86985"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	26-Mar-08	02-Apr-08	78330.08	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:36 PM	

+="CN86986"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	27-Mar-08	02-Apr-08	21142.44	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:36 PM	

+="CN86987"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	27-Mar-08	27-Mar-08	10210.72	=""	="Corvu Australasia PTY Limited"	30-May-08 12:36 PM	

+="CN86988"	"Property Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Mar-08	28-Mar-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:36 PM	

+="CN86989"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	163894.64	=""	="Australian Protective Service"	30-May-08 12:36 PM	

+="CN86990"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86991"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86992"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	16-Apr-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:37 PM	

+="CN86993"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	31-Mar-08	31-Mar-08	10000.00	=""	="HASSELL PTY LIMITED"	30-May-08 12:37 PM	

+="CN86994"	"Lease Artworks"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	31-Mar-08	30-Sep-08	21862.50	=""	="ARTBANK"	30-May-08 12:37 PM	

+="CN86995"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	03-Apr-08	03-Apr-08	11995.69	=""	="Verossity Pty Ltd"	30-May-08 12:37 PM	

+="CN86996"	"Training"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	28-Apr-08	10560.00	=""	="TRANSPORT INDUSTRIES SKILLS CENTRE"	30-May-08 12:37 PM	

+="CN86997"	"Construction"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	03-Apr-08	03-Apr-08	44912.45	=""	="ISIS Projects Pty Ltd"	30-May-08 12:37 PM	

+="CN86998"	"Professional and Consultancy Services"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	03-Apr-08	28-Apr-08	40510.08	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 12:38 PM	

+="CN86999"	"Telecommunication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	03-Apr-08	11-May-08	52168.46	=""	="TELSTRA CORPORATION"	30-May-08 12:38 PM	

+="CN87000"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	03-Apr-08	03-Apr-08	13276.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:38 PM	

+="CN87001"	"Advertising"	="Department of Foreign Affairs and Trade"	30-May-08	="Marketing and distribution"	04-Apr-08	17-Apr-08	10246.79	=""	="hma Blaze Pty Limited"	30-May-08 12:38 PM	

+="CN87002"	"Telecomminication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	04-Apr-08	24743.21	=""	="TELSTRA CORPORATION"	30-May-08 12:38 PM	

+="CN87003"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	30418.00	=""	="Barry M Derbyshire"	30-May-08 12:38 PM	

+="CN87004"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	39804.00	=""	="Barry M Derbyshire"	30-May-08 12:38 PM	

+="CN87005"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	65502.00	=""	="Barry M Derbyshire"	30-May-08 12:39 PM	

+="CN87006"	"Residence Refurbishment"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	06-Apr-08	31-May-08	36963.00	=""	="Barry M Derbyshire"	30-May-08 12:39 PM	

+="CN87007"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	07-Apr-08	10-Apr-08	10263.77	=""	="Verossity Pty Ltd"	30-May-08 12:39 PM	

+="CN87008"	"Building Products and Fittings"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	07-Apr-08	07-Apr-08	13084.07	=""	="Dorma Automatics P/L"	30-May-08 12:39 PM	

+="CN87009"	"Health Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Healthcare Services"	09-Apr-08	30-Apr-08	23375.80	=""	="Clifford Hallam Healthcare P/L-CH2"	30-May-08 12:39 PM	

+="CN87010"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	09-Apr-08	17-Apr-08	11938.73	=""	="Verossity Pty Ltd"	30-May-08 12:39 PM	

+="CN87011"	"Functions"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	05-May-08	14153.15	=""	="Hotel Realm Pty Ltd"	30-May-08 12:39 PM	

+="CN87012"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	10-Apr-08	05-May-08	19346.25	=""	="ZVENO PTY LTD"	30-May-08 12:39 PM	

+="CN87013"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	11-Apr-08	11-Apr-08	64614.45	=""	="Sealeck Pty Ltd"	30-May-08 12:40 PM	

+="CN87014"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	14-Apr-08	05-May-08	11000.00	=""	="The Federation Press"	30-May-08 12:40 PM	

+="CN87015"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management advisory services"	14-Apr-08	14-Apr-08	24750.00	=""	="Intelligence Dynamics Pty Ltd"	30-May-08 12:40 PM	

+="CN87016"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Apr-08	28-Apr-08	24684.00	=""	="Wilton Hanford Hanover Pty Ltd"	30-May-08 12:40 PM	

+="CN87017"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	14-Apr-08	05-May-08	28505.40	=""	="SMI Fitout Pty Ltd"	30-May-08 12:40 PM	

+="CN87019"	"Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Power Generation and Distribution Machinery and Accessories"	16-Apr-08	25-Apr-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:40 PM	

+="CN87020"	"Lease Artworks"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	14410.00	=""	="ARTBANK"	30-May-08 12:40 PM	

+="CN87021"	"Lease  Artwork"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	22206.25	=""	="ARTBANK"	30-May-08 12:41 PM	

+="CN87022"	"Lease Artwork"	="Department of Foreign Affairs and Trade"	30-May-08	="Information services"	16-Apr-08	16-Apr-08	22206.25	=""	="ARTBANK"	30-May-08 12:41 PM	

+="CN87024"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	16-Apr-08	16-Apr-08	11460.10	=""	="Translating & Interpreting Svs"	30-May-08 12:41 PM	

+="CN87026"	"Fitout"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	28-Apr-08	12540.00	=""	="Napier & Blakeley Pty Ltd"	30-May-08 12:41 PM	

+="CN87027"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	17-Apr-08	11000.00	=""	="Wilton Hanford Hanover Pty Ltd"	30-May-08 12:41 PM	

+="CN87028"	"Subscription"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	17-Apr-08	29-Apr-08	11250.00	=""	="Dow Jones Reuters Business Interact"	30-May-08 12:42 PM	

+="CN87029"	"Telecommuication Costs"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Apr-08	24-Apr-08	28155.34	=""	="TELSTRA CORPORATION LIMITED (Qld)"	30-May-08 12:42 PM	

+="CN87030"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Apr-08	29-Apr-08	11075.10	=""	="Translating & Interpreting Svs"	30-May-08 12:42 PM	

+="CN87031"	"Office Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Apr-08	21-Apr-08	12727.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:42 PM	

+="CN87032"	"Office Rent"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	21-Apr-08	21-Apr-08	65615.82	=""	="Australand Property Trust"	30-May-08 12:42 PM	

+="CN87033"	"Other Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-Apr-08	22-Apr-08	12957.00	=""	="R M GARDINER & ASSOCIATES"	30-May-08 12:42 PM	

+="CN87034"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	23-Apr-08	23-Apr-08	20251.19	=""	="Allen Systems Group Inc"	30-May-08 12:42 PM	

+="CN87035"	"Advice/Consultation"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	24-Apr-08	30-Apr-08	35146.83	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:42 PM	

+="CN87036"	"Publications"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	28-Apr-08	30-Apr-08	12683.00	=""	="Paoli Smith Pty Ltd"	30-May-08 12:43 PM	

+="CN87037"	"Office Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	28-Apr-08	02-May-08	76408.65	=""	="Knight Frank (Vic) Pty Ltd"	30-May-08 12:43 PM	

+="CN87038"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	29-Apr-08	01-May-08	13184.15	=""	="Verossity Pty Ltd"	30-May-08 12:43 PM	

+="CN87039"	"Professional and Consultancy Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	25-May-08	56094.48	=""	="INTEGRATED SPACE PTY LTD"	30-May-08 12:43 PM	

+="CN87040"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	12780.91	=""	="Media Monitors Australia P/L"	30-May-08 12:43 PM	

+="CN87041"	"Lease payments"	="Department of Foreign Affairs and Trade"	30-May-08	="Tools and General Machinery"	30-Apr-08	16-May-08	204049.98	=""	="HP Financial Services"	30-May-08 12:43 PM	

+="CN87042"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	01-May-08	03-May-08	13381.50	=""	="TELSTRA CORPORATION"	30-May-08 12:43 PM	

+="CN87043"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	02-May-08	30-Jun-08	27909.50	=""	="Add Design & Management"	30-May-08 12:44 PM	

+="CN87044"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	02-May-08	08-May-08	14556.55	=""	="Verossity Pty Ltd"	30-May-08 12:44 PM	

+="CN87045"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81845.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87046"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81669.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87047"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	81677.00	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87048"	"Guarding Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	05-May-08	22-May-08	163894.64	=""	="Australian Protective Service"	30-May-08 12:44 PM	

+="CN87049"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	06-May-08	11-May-08	16476.02	=""	="Verossity Pty Ltd"	30-May-08 12:44 PM	

+="CN87050"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	06-May-08	06-May-08	11786.78	=""	="Greythorn Pty Ltd"	30-May-08 12:44 PM	

+="CN87051"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	07-May-08	13-Nov-08	24000.00	=""	="Rozalyn Chan"	30-May-08 12:45 PM	

+="CN87052"	"Repairs and Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-May-08	22-May-08	11065.73	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:45 PM	

+="CN87053"	"Repairs and Maintenance"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	07-May-08	22-May-08	41360.00	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:45 PM	

+="CN87054"	"Artwork Lease"	="Department of Foreign Affairs and Trade"	30-May-08	="Personal and Domestic Services"	08-May-08	31-Jan-09	29700.00	=""	="ARTBANK"	30-May-08 12:45 PM	

+="CN87055"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	09-May-08	04-Jun-08	16500.00	=""	="ECONDATA"	30-May-08 12:45 PM	

+="CN87056"	"Hospitality Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	28-May-08	26262.50	=""	="NOVOTEL SYDNEY ON DARLING HARBOUR"	30-May-08 12:45 PM	

+="CN87057"	"Subscriptions"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	12-May-08	21-May-08	17573.16	=""	="EBSCO AUSTRALIA"	30-May-08 12:45 PM	

+="CN87058"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	01-Jun-08	18585.60	=""	="TARDIS TECHNOLOGY PTY LTD"	30-May-08 12:46 PM	

+="CN87059"	"Recruitment Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	12-May-08	12-May-08	13774.65	=""	="Hays Specialist Recruitment"	30-May-08 12:46 PM	

+="CN87060"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	12-May-08	01-Jun-08	22582.24	=""	="TARDIS TECHNOLOGY PTY LTD"	30-May-08 12:46 PM	

+="CN87061"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	12-Jun-08	10784.10	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:46 PM	

+="CN87062"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	12-Jun-08	13744.32	=""	="QANTAS AIRWAYS LTD"	30-May-08 12:46 PM	

+="CN87063"	"Postage Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	13-May-08	20-May-08	10303.95	=""	="AUSTRALIA POST (ACC 6102084)"	30-May-08 12:46 PM	

+="CN87064"	"Design and building services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	12821.83	=""	="Interiors Australia"	30-May-08 12:46 PM	

+="CN87065"	"Design and building services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	31-May-08	20154.83	=""	="Interiors Australia"	30-May-08 12:46 PM	

+="CN87066"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	14-May-08	26-May-08	131623.23	=""	="TELSTRA CORPORATION"	30-May-08 12:47 PM	

+="CN87067"	"Removal services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-May-08	14-May-08	11933.63	=""	="CAPPELLO OFFICE & COMMERCIAL"	30-May-08 12:47 PM	

+="CN87068"	"Translating and Interpreting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	15-May-08	29-May-08	12374.05	=""	="Translating & Interpreting Svs"	30-May-08 12:47 PM	

+="CN87069"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	15-May-08	30-May-08	13902.35	=""	="Greythorn Pty Ltd"	30-May-08 12:47 PM	

+="CN87070"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	15-May-08	15-May-08	13276.32	=""	="Greythorn Pty Ltd"	30-May-08 12:47 PM	

+="CN87071"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	15-May-08	28-May-08	13146.47	=""	="Sealeck Pty Ltd"	30-May-08 12:47 PM	

+="CN87073"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	16-May-08	16-May-08	22522.09	=""	="Knight Frank (SA) Pty Ltd"	30-May-08 12:47 PM	

+="CN87074"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	16-May-08	16-May-08	13371.85	=""	="AUSTRALIAN TRADE COMMISSION"	30-May-08 12:48 PM	

+="CN87076"	"legal services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	16-May-08	27-May-08	11670.56	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	30-May-08 12:48 PM	

+="CN87077"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	19-May-08	22-May-08	18148.08	=""	="Verossity Pty Ltd"	30-May-08 12:48 PM	

+="CN87078"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	19-May-08	19-May-08	156836.32	=""	="TELSTRA CORPORATION LTD"	30-May-08 12:48 PM	

+="CN87079"	"Media Monitoring"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-May-08	28-May-08	13436.58	=""	="Media Monitors Australia P/L"	30-May-08 12:48 PM	

+="CN87080"	"Accommodation"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	22-May-08	09-Jun-08	31910.40	=""	="Hotel Ibis Darling Harbour"	30-May-08 12:48 PM	

+="CN87081"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Human resources services"	22-May-08	29-May-08	17404.38	=""	="Verossity Pty Ltd"	30-May-08 12:49 PM	

+="CN87082"	"Training Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Education and Training Services"	22-May-08	12-Jun-08	14100.00	=""	="Canberra Economic Consultants"	30-May-08 12:49 PM	

+="CN87083"	"Interior Design Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	22-May-08	31-May-08	10468.00	=""	="Add Design & Management"	30-May-08 12:49 PM	

+="CN87084"	"Venue Hire"	="Department of Foreign Affairs and Trade"	30-May-08	="Hotels and lodging and meeting facilities"	22-May-08	31-May-08	112244.30	=""	="Brisbane Convention"	30-May-08 12:49 PM	

+="CN87085"	"Consultant Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Business administration services"	23-May-08	31-May-08	15000.00	=""	="Meat & Livestock Aust Ltd"	30-May-08 12:49 PM	

+="CN87086"	"Professional Fees"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	13-Feb-08	21-Feb-08	12565.60	=""	="Australian Government Solicitor"	30-May-08 12:49 PM	

+="CN87087"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	13-Feb-08	28-Jun-08	14841.20	=""	="MINTER ELLISON"	30-May-08 12:49 PM	

+="CN87088"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Woodhead International"	30-May-08 12:49 PM	

+="CN87089"	"Architectural Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	14-Mar-08	14-Mar-08	10000.00	=""	="Bligh Voller Nield Pty Ltd"	30-May-08 12:50 PM	

+="CN87090"	"Legal Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Legal services"	20-Mar-08	27-Mar-08	10310.08	=""	="MINTER ELLISON"	30-May-08 12:50 PM	

+="CN87091"	"Office Furniture"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	20-Mar-08	02-Apr-08	20785.05	=""	="Interiors Australia"	30-May-08 12:50 PM	

+="CN87092"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Mar-08	26-Mar-08	163292.49	=""	="KFPW PTY LTD (expenditure Account)"	30-May-08 12:50 PM	

+="CN87093"	"Property Expenses"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	25-Mar-08	26-Mar-08	40104.73	=""	="KFPW PTY LTD (expenditure Account)"	30-May-08 12:50 PM	

+="CN87094"	"Consultancy"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	10-Apr-08	30-Jun-08	11962.50	=""	="Rider Levett Bucknall (NSW) Pty Ltd"	30-May-08 12:50 PM	

+="CN87095"	"Consultancy"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	10-Apr-08	30-Jun-08	23613.70	=""	="Rider Levett Bucknall (NSW) Pty Ltd"	30-May-08 12:50 PM	

+="CN87096"	"Property Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Real estate services"	24-Apr-08	30-Jun-08	14314.00	=""	="Grosvenor Management Consulting"	30-May-08 12:50 PM	

+="CN87097"	"Professional Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Apr-08	19005.59	=""	="Daryl Jackson Pty Ltd"	30-May-08 12:51 PM	

+="CN87098"	"Office Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Printed media"	01-Feb-08	29-Feb-08	23251.70	=""	="Stikki Products Pty Ltd"	30-May-08 12:51 PM	

+="CN87099"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	05-Feb-08	04-Mar-08	21450.00	=""	="Ethan Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87100"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	06-Feb-08	05-Mar-08	12408.00	=""	="Integral Consulting Services"	30-May-08 12:51 PM	

+="CN87101"	"Packaging Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Material packing and handling"	04-Feb-08	03-Mar-08	30261.00	=""	="HARCOR SECURITY SEALS"	30-May-08 12:51 PM	

+="CN87102"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	06-Feb-08	05-Mar-08	20346.15	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 12:51 PM	

+="CN87103"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	13-Feb-08	12-Mar-08	11733.70	=""	="Ethan Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87104"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Feb-08	29-Feb-08	117480.00	=""	="Ambit Group Pty Ltd"	30-May-08 12:51 PM	

+="CN87105"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	06-Feb-08	05-Mar-08	39732.00	=""	="Integral Consulting Services"	30-May-08 12:52 PM	

+="CN87106"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	12-Feb-08	11-Mar-08	50000.01	=""	="Alamein Consulting Pty Ltd"	30-May-08 12:52 PM	

+="CN87107"	"Construction Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	18-Feb-08	17-Mar-08	45590.00	=""	="A C & R Company Group"	30-May-08 12:52 PM	

+="CN87108"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	18-Feb-08	17-Mar-08	299720.00	=""	="Secom Technical Services P/L"	30-May-08 12:52 PM	

+="CN87109"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Power Generation and Distribution Machinery and Accessories"	18-Feb-08	17-Mar-08	110944.55	=""	="Delta Building Automation Pty Ltd"	30-May-08 12:52 PM	

+="CN87110"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	18-Feb-08	29-Feb-08	10472.00	=""	="KABA Australia Pty Ltd"	30-May-08 12:52 PM	

+="CN87111"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Feb-08	17-Mar-08	16698.00	=""	="KAZ Group Pty Ltd"	30-May-08 12:52 PM	

+="CN87112"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	18-Feb-08	17-Mar-08	23232.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:53 PM	

+="CN87113"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	21-Feb-08	20-Mar-08	50787.00	=""	="ESC Technology Pty Ltd"	30-May-08 12:53 PM	

+="CN87114"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	25-Feb-08	24-Mar-08	28490.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:53 PM	

+="CN87115"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="General building construction"	27-Feb-08	26-Mar-08	25020.00	=""	="Donovan Trading P/L"	30-May-08 12:53 PM	

+="CN87116"	"Electrical Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	19-Feb-08	18-Mar-08	17776.00	=""	="Fitzgerald Technologies"	30-May-08 12:53 PM	

+="CN87117"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	20-Feb-08	29-Feb-08	10763.50	=""	="QUALITY CONTRACTS AUSTRALIA PTY LTD"	30-May-08 12:53 PM	

+="CN87118"	"Freight Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Mail and cargo transport"	26-Feb-08	25-Mar-08	30800.00	=""	="Qantas Airways Ltd"	30-May-08 12:53 PM	

+="CN87119"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Feb-08	06-Mar-08	231577.50	=""	="Ethan Group Pty Ltd"	30-May-08 12:53 PM	

+="CN87120"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	28-Feb-08	27-Mar-08	14190.00	=""	="R.P.M. Solutions Pty Ltd"	30-May-08 12:54 PM	

+="CN87121"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Feb-08	13-Mar-08	18395.63	=""	="RANDOM COMPUTING SERVICES"	30-May-08 12:54 PM	

+="CN87122"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	29-Feb-08	29-Feb-08	58662.12	=""	="Infront Systems"	30-May-08 12:54 PM	

+="CN87123"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	26-Feb-08	25-Mar-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 12:54 PM	

+="CN87124"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	468892.49	=""	="Ethan Group Pty Ltd"	30-May-08 12:54 PM	

+="CN87125"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	26-Feb-08	25-Mar-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 12:54 PM	

+="CN87126"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	03-Mar-08	31-Mar-08	32858.10	=""	="AFC GROUP PTY LTD"	30-May-08 12:54 PM	

+="CN87127"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	03-Mar-08	31-Mar-08	11286.00	=""	="BENNETT COMMERCIAL ELECTRONICS P/L"	30-May-08 12:55 PM	

+="CN87128"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	05-Mar-08	02-Apr-08	81947.00	=""	="Parasole Holdings Pty Ltd"	30-May-08 12:55 PM	

+="CN87129"	"Building Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	11-Mar-08	08-Apr-08	81718.50	=""	="SPOTLESS P&F Pty Ltd"	30-May-08 12:55 PM	

+="CN87130"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	46291.67	=""	="Dimension Data Australia Pty Ltd"	30-May-08 12:55 PM	

+="CN87131"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	31-Mar-08	479658.30	=""	="Adnet Technology Australia Pty Ltd"	30-May-08 12:55 PM	

+="CN87132"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	25-Feb-08	24-Mar-08	35651.11	=""	="Ethan Group Pty Ltd"	30-May-08 12:55 PM	

+="CN87133"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Components for information technology or broadcasting or telecommunications"	03-Mar-08	31-Mar-08	20686.24	=""	="Anritsu Pty. Ltd."	30-May-08 12:55 PM	

+="CN87134"	"Electrical Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	12-Mar-08	09-Apr-08	169336.00	=""	="Chubb Electronic Security"	30-May-08 12:55 PM	

+="CN87135"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	30-Jun-08	71183.75	=""	="Greythorn Pty Ltd"	30-May-08 12:56 PM	

+="CN87136"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Mar-08	31-Mar-08	61419.60	=""	="ICON RECRUITMENT PTY LTD"	30-May-08 12:56 PM	

+="CN87137"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Measuring and observing and testing instruments"	17-Mar-08	14-Apr-08	22710.00	=""	="ITE Australia Pty Ltd"	30-May-08 12:56 PM	

+="CN87138"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	11-Mar-08	08-Apr-08	21661.20	=""	="Ethan Group Pty Ltd"	30-May-08 12:56 PM	

+="CN87139"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Mar-08	14-Apr-08	55660.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:56 PM	

+="CN87140"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	19-Mar-08	16-Apr-08	14410.00	=""	="Ethan Group Pty Ltd"	30-May-08 12:56 PM	

+="CN87141"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Information Technology Broadcasting and Telecommunications"	17-Mar-08	31-Mar-08	10107.24	=""	="OPTUS DIRECT CREDIT"	30-May-08 12:56 PM	

+="CN87142"	"Office Supplies"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	19-Mar-08	16-Apr-08	27000.00	=""	="CANFAB ENGINEERING"	30-May-08 12:57 PM	

+="CN87143"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	20-Mar-08	17-Apr-08	12300.00	=""	="CSM OFFICE FURNITURE SOLUTIONS"	30-May-08 12:57 PM	

+="CN87144"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical wire and cable and harness"	17-Mar-08	14-Apr-08	15568.42	=""	="AFC GROUP PTY LTD"	30-May-08 12:57 PM	

+="CN87145"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	20-Mar-08	31-Mar-08	18133.92	=""	="Infront Systems"	30-May-08 12:57 PM	

+="CN87146"	"Building Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	17-Mar-08	14-Apr-08	169037.00	=""	="Integral Consulting Services"	30-May-08 12:57 PM	

+="CN87147"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	12-Mar-08	31-Mar-08	149048.90	=""	="Ethan Group Pty Ltd"	30-May-08 12:57 PM	

+="CN87148"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	26-Mar-08	23-Apr-08	48510.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:57 PM	

+="CN87149"	"IT Hardware"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	27-Mar-08	24-Apr-08	746552.52	=""	="LEXMARK INT (AUST) P/L"	30-May-08 12:58 PM	

+="CN87151"	"Equipment Rental"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	28-Mar-08	25-Apr-08	11104.00	=""	="Magiboard Presentations (NSW) P/L"	30-May-08 12:58 PM	

+="CN87152"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	03-Mar-08	03-Apr-08	23383.53	=""	="FUJITSU AUSTRALIA LIMITED"	30-May-08 12:58 PM	

+="CN87153"	"Furniture"	="Department of Foreign Affairs and Trade"	30-May-08	="Furniture and Furnishings"	01-Apr-08	29-Apr-08	57808.00	=""	="WORKSPACE COMMERCIAL FURNITURE"	30-May-08 12:58 PM	

+="CN87154"	"Locksmith Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	17-Mar-08	14-Apr-08	16178.25	=""	="Innovative Business Computing P/L"	30-May-08 12:58 PM	

+="CN87155"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	02-May-08	23100.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:58 PM	

+="CN87156"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	04-Apr-08	02-May-08	16940.00	=""	="Bridge IT Engineering Pty Ltd"	30-May-08 12:59 PM	

+="CN87157"	"Training"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	02-Apr-08	30-Apr-08	13000.00	=""	="ANSTO"	30-May-08 12:59 PM	

+="CN87158"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	07-Apr-08	05-May-08	290039.86	=""	="BLACK BOX NETWORK SERVICES"	30-May-08 12:59 PM	

+="CN87159"	"Building Products and Fittings"	="Department of Foreign Affairs and Trade"	30-May-08	="Building and Construction and Maintenance Services"	07-Apr-08	05-May-08	49409.37	=""	="Dorma Automatics P/L"	30-May-08 12:59 PM	

+="CN87160"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	20-Mar-08	30-Jun-08	64848.85	=""	="Greythorn Pty Ltd"	30-May-08 12:59 PM	

+="CN87161"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	03-Apr-08	17-Apr-08	134884.20	=""	="Talent International Pty Ltd"	30-May-08 12:59 PM	

+="CN87162"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	02-Apr-08	13-May-08	114714.60	=""	="CANDLE AUSTRALIA LIMITED"	30-May-08 12:59 PM	

+="CN87163"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Electrical equipment and components and supplies"	07-Apr-08	05-May-08	16016.00	=""	="COVERTEL"	30-May-08 12:59 PM	

+="CN87164"	"Telecommunication Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Telecommunications media services"	27-Mar-08	31-Mar-08	35431.00	=""	="STEP Electronics (A Hills Company)"	30-May-08 01:00 PM	

+="CN87165"	"Locks"	="Department of Foreign Affairs and Trade"	30-May-08	="Metal and mineral industries"	07-Apr-08	14-Apr-08	12978.28	=""	="API SECURITY PTY LTD"	30-May-08 01:00 PM	

+="CN87166"	"IT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	01-Apr-08	15-Apr-08	13849.37	=""	="Replicon Inc"	30-May-08 01:00 PM	

+="CN87167"	"Consulting Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	15-Apr-08	13-May-08	14950.00	=""	="Waterman AHW Pty Ltd"	30-May-08 01:00 PM	

+="CN87168"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	16-Apr-08	30-Apr-08	10398.30	=""	="Ethan Group Pty Ltd"	30-May-08 01:00 PM	

+="CN87169"	"Sale and Leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	08-Apr-08	06-May-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 01:00 PM	

+="CN87170"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-Apr-08	28-Apr-08	27387.80	=""	="FUJITSU AUSTRALIA LIMITED"	30-May-08 01:00 PM	

+="CN87171"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	15-Apr-08	13-May-08	30030.00	=""	="Adnet Technology Australia Pty Ltd"	30-May-08 01:01 PM	

+="CN87172"	"Sale and leaseback Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	16-Apr-08	14-May-08	18955.90	=""	="LEXMARK INT (AUST) P/L"	30-May-08 01:01 PM	

+="CN87173"	"Office Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	18-Apr-08	16-May-08	17435.00	=""	="Fuji Xerox Australia Pty Ltd"	30-May-08 01:01 PM	

+="CN87174"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	15-Apr-08	30-Apr-08	10377.40	=""	="Ethan Group Pty Ltd"	30-May-08 01:01 PM	

+="CN87175"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Business administration services"	28-Apr-08	12-May-08	16500.00	=""	="RIC Teledata Pty Ltd"	30-May-08 01:01 PM	

+="CN87176"	"IT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	29-Apr-08	13-May-08	13002.00	=""	="AFC GROUP PTY LTD"	30-May-08 01:01 PM	

+="CN87177"	"Software"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	28-Apr-08	26-May-08	30433.21	=""	="Infront Systems"	30-May-08 01:01 PM	

+="CN87178"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-May-08	31-May-08	105036.24	=""	="Infront Systems"	30-May-08 01:01 PM	

+="CN87179"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	05-May-08	31-May-08	85642.96	=""	="Infront Systems"	30-May-08 01:02 PM	

+="CN87180"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	08-May-08	11-Oct-08	10943.16	=""	="Hewlett Packard Australia Pty Ltd"	30-May-08 01:02 PM	

+="CN87181"	"Contractor Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-May-08	31-May-08	10010.00	=""	="Innovative Business Computing P/L"	30-May-08 01:02 PM	

+="CN87182"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	14-May-08	31-May-08	38808.00	=""	="Whizdom Pty Ltd"	30-May-08 01:02 PM	

+="CN87183"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	14-May-08	11-Jun-08	13351.44	=""	="Dimension Data Australia Pty Ltd"	30-May-08 01:02 PM	

+="CN87184"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer services"	16-May-08	31-May-08	112949.10	=""	="Ethan Group Pty Ltd"	30-May-08 01:02 PM	

+="CN87185"	"ICT Equipment"	="Department of Foreign Affairs and Trade"	30-May-08	="Computer Equipment and Accessories"	12-May-08	09-Jun-08	30118.00	=""	="Ethan Group Pty Ltd"	30-May-08 01:02 PM	

+="CN87186"	"ICT Services"	="Department of Foreign Affairs and Trade"	30-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	31-May-08	12500.00	=""	="COMPUCAT RESEARCH PTY LTD"	30-May-08 01:02 PM	

+="CN87187"	"Leica MS5 Microscope and attachments"	="Department of Foreign Affairs and Trade"	30-May-08	="Manufacture of electrical goods and precision instruments"	19-May-08	16-Jun-08	11173.00	=""	="Leica Microsystems Pty Ltd"	30-May-08 01:03 PM	

+="CN87188"	"08.093 Program Management Framework.  Project and program classifications."	="Australian Taxation Office"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jun-08	30-Jun-08	21890.00	=""	="Tanner James Management Consultants Pty Ltd"	30-May-08 01:27 PM	

+="CN87189"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	30-May-08	="Motor vehicles"	14-May-08	28-May-08	15533.45	=""	="PREMIER AUTO GROUP"	30-May-08 01:53 PM	

+="CN87191"	"PROVISION OF VEHICLE REPAIR PARTS"	="Defence Materiel Organisation"	30-May-08	="Motor vehicles"	21-May-08	04-Jun-08	22194.70	=""	="HAULMARK TRAILERS"	30-May-08 01:58 PM	

+="CN87194"	"Purchase of Imported IVIg"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	657670.20	=""	="Octapharma"	30-May-08 02:30 PM	

+="CN87196"	"Purchase of Imported IVIg"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Mar-08	31-Mar-08	18352.80	=""	="CSL Ltd"	30-May-08 02:40 PM	

+="CN87195"	"Course fees for Investigations Training"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Education and Training Services"	23-Jan-08	29-May-08	45166.60	="07/ACMA007"	="KPS and Associates Pty Ltd"	30-May-08 02:44 PM	

+="CN87193"	"Temporary personel for Pricing and Policy Section"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Temporary personnel services"	07-Jan-08	20-May-08	13350.00	="05/ACMA013"	="Hays Personnel Services (Australia) Pty Ltd"	30-May-08 02:46 PM	

+="CN87197"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	253372.86	=""	="CSL Ltd"	30-May-08 02:47 PM	

+="CN86887"	"Temporary personel - Finance and Facilities Section reception"	="Australian Communications and Media Authority (ACMA)"	30-May-08	="Temporary personnel services"	04-Jan-08	31-Mar-08	32188.00	="05/ACMA013"	="Hudson Global Resources (Australia) Pty Ltd"	30-May-08 02:50 PM	

+="CN87198"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	151860.50	=""	="DiaMed Australia Pty Ltd"	30-May-08 02:50 PM	

+="CN87199"	"Supply of Diagnostic Reagents"	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	51755.00	=""	="Ortho-Clinical Diagnostics"	30-May-08 02:55 PM	

+="CN87203"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	26-Mar-08	25-Apr-08	15082.94	=""	="QANTAS American Express Business Travel"	30-May-08 03:12 PM	

+="CN87207"	"Study -current & emerging e-security threats & vulnerabilities affecting Aust home users #am"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	12-May-08	19-Jun-08	69700.00	="DCON/07/1"	="KPMG"	30-May-08 03:15 PM	

+="CN87208-A1"	"OH&S Workshop for Managers"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Education and Training Services"	21-Apr-08	01-Aug-08	11550.00	="ATM08/1012"	="Greg Seberry & Associates Pty Ltd"	30-May-08 03:15 PM	

+="CN87210"	"2 x polycom VSX7000 with camera, microphones & installation"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Office Equipment and Accessories and Supplies"	12-May-08	12-May-08	26741.58	="ATM08/1003"	="CANBERRA PROFESSIONAL EQUIPMENT"	30-May-08 03:15 PM	

+="CN87205"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	29-Jan-08	28-Feb-08	26430.73	=""	="QANTAS American Express Business Travel"	30-May-08 03:16 PM	

+="CN87212-A4"	"Specialist Economic Regulatory Advice for National Broadband Network"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	06-May-08	06-May-09	1443628.21	="DCON/07/231"	="Frontier Economics Pty Ltd"	30-May-08 03:16 PM	

+="CN87213"	"Additional door install and swipe card access Level 18 Market Street North Sydney"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Structures and Building and Construction and Manufacturing Components and Supplies"	07-Apr-08	30-Jun-08	17309.60	="DCON/05/225"	="ISIS INTERIORS"	30-May-08 03:16 PM	

+="CN87214"	"engage a faciliatator for the CSIAAG Broadcasting Sector Desktop Exercise"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	13-May-08	18-Jun-08	44996.00	="DCON/08/4"	="Noetic Solutions Pty Ltd"	30-May-08 03:16 PM	

+="CN87215-A1"	"SRP002/08 Stage 2 Intranet Development"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	12-May-08	30-Jun-08	62319.40	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87216"	"Library - Technology services, onsite support, annual subscription & software"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	31-Mar-08	31-Mar-11	38476.00	="ATM08/1017"	="Dynix Pty Lmd"	30-May-08 03:17 PM	

+="CN87217-A2"	"Placement fee for contractor"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	15-May-08	24-Dec-08	105754.23	="DCON/04/162"	="STAFFING AND OFFICE SOLUTIONS P/L"	30-May-08 03:17 PM	

+="CN87218-A1"	"Additional (15) Licences for Exari and 12 Months Maintenance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Office Equipment and Accessories and Supplies"	14-May-08	30-Jun-09	148500.00	="ATM08/1018"	="Exari Systems Pty Ltd"	30-May-08 03:17 PM	

+="CN87219-A2"	"Design & Deliver National E-security Alert Services for Home Users and SME's"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	18-Jul-08	30-Jun-11	1199484.52	="DCON/08/11"	="AUSCERT, UNIVERSITY OF QUEENSLAND"	30-May-08 03:17 PM	

+="CN87220"	"SPR004-08 SSO Small Business self-assessment tool"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	15-May-08	23-May-08	18150.00	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87221"	"SRP003-08 HR Alumni Secure Extranet"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	16-May-08	11-Jun-08	14850.00	="DCON/07/65"	="Squiz Pty Ltd"	30-May-08 03:17 PM	

+="CN87222-A1"	"VP 201 - Review of Identity Management Options"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	28203.58	="DCON/03/63"	="KAZ Group"	30-May-08 03:17 PM	

+="CN87223-A1"	"VP 199 - SOE Future Direction Study"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	29748.07	="DCON/03/63"	="KAZ Group"	30-May-08 03:18 PM	

+="CN87224"	"20 x Project 2007 English OLP Licence and 20 x Project Win32-Bit Software Assurance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	14-May-08	16-May-08	17501.00	="ATM08/1022"	="ZALLCOM PTY LTD"	30-May-08 03:18 PM	

+="CN87225"	"Plant Hire 06/07 & 07/08"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Live Plant and Animal Material and Accessories and Supplies"	01-Jul-06	29-Jun-07	10008.15	="CCR/06/2011"	="LIVING SIMPLY"	30-May-08 03:18 PM	

+="CN87226"	"Rent Fyshwick"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	29-Jun-07	10321.65	="CCR/06/2019"	="PETER DEMANT & HANS EBERSTALLER"	30-May-08 03:18 PM	

+="CN87227"	"Internal Audit Consultancy"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	01-Jul-06	29-Jun-08	113300.00	="DCON/05/53"	="Protiviti Pty Ltd"	30-May-08 03:18 PM	

+="CN87228-A1"	"CAT - COMMUNITY PHONES MAINTAINANCE"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	21-May-07	30-Dec-08	273083.09	="CCR/07/2203"	="Centre for Appropriate Technology"	30-May-08 03:18 PM	

+="CN87231"	"Consultancy Serv WT-Network SLA 07/08"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Management and Business Professionals and Administrative Services"	20-May-08	30-Jun-08	39757.20	="DCON/05/53"	="WALTER TURNBULL"	30-May-08 03:19 PM	

+="CN87232"	"Relocate / Supply / Install new cable for Burns Centre"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Electrical Systems and Lighting and Components and Accessories and Supplies"	03-Mar-08	30-Jun-08	20482.00	="ATM08/1041"	="DIVERSE DATA COMMUNICATIONS"	30-May-08 03:19 PM	

+="CN87234"	"Health Week - Comprehensive health assessments 5 days"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Healthcare Services"	07-Apr-08	05-May-08	15801.50	="ATM08/998"	="Pro-Fit Corporate Health Pty Ltd"	30-May-08 03:19 PM	

+="CN87235"	"Quantum Scalar 50 Library 38 slots x 2 Quantum HP LTO-3 tape drive x 4"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	11-Apr-08	12-May-08	37835.60	="ATM08/999"	="Network Brokers"	30-May-08 03:19 PM	

+="CN87236"	"Evaluation of Payroll,  Personnel Admin Services"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	12-May-08	20-Jun-08	78428.74	="DCON/05/53"	="KPMG"	30-May-08 03:19 PM	

+="CN87237-A1"	"Renewal for Mailgate Maintenance"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Information Technology Broadcasting and Telecommunications"	13-Jun-08	04-Sep-09	16401.00	="ATM08/1000"	="OPEN SYSTEMS AUSTRALIA P/L"	30-May-08 03:19 PM	

+="CN87238"	"VMware ESX 3.5 - Platinum 1 Year Licence & Support"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	02-May-08	02-Jun-08	60701.96	="ATM08/1001"	="QIRX"	30-May-08 03:19 PM	

+="CN87239"	"BakBone Support and Maintenance: 1 x Production & 1 x Development"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	14-Apr-08	14-May-08	16776.01	="ATM08/1002"	="Tantia Pty Tld"	30-May-08 03:20 PM	

+="CN87240-A1"	"Passthrough Expenses - Feb 2008 Backup Licences"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	17061.00	="DCON/03/63"	="KAZ Group"	30-May-08 03:20 PM	

+="CN87241-A1"	"VP 202: Reverse Proxy: Lead Infrastructure Technical Specialist"	="Department of Broadband Communications and the Digital Economy"	30-May-08	="Public Utilities and Public Sector Related Services"	13-Sep-03	13-Apr-10	13932.22	="DCON/03/63"	="KAZ Group"	30-May-08 03:20 PM	

+="CN87242"	"Provision of Air Travel"	="National Blood Authority"	30-May-08	="Commercial aeroplane travel"	29-Feb-08	25-Mar-08	47291.09	=""	="QANTAS American Express Business Travel"	30-May-08 03:22 PM	

+="CN87246"	"Provision of Legal Fees"	="National Blood Authority"	30-May-08	="Legal services"	27-Feb-08	31-Mar-08	14102.00	=""	="DLA Phillips Fox"	30-May-08 03:47 PM	

+="CN87247"	"Provison of selection and recruitment services"	="National Blood Authority"	30-May-08	="Personnel recruitment"	20-Mar-08	23-May-08	18244.60	=""	="Ford Kelly Executive Connection Pty Ltd"	30-May-08 03:52 PM	

+="CN87248"	"Provision of selection and recruitment"	="National Blood Authority"	30-May-08	="Personnel recruitment"	20-Mar-08	23-May-08	11455.40	=""	="AdCorp"	30-May-08 04:02 PM	

+="CN87249"	" The procurement is for the supply of Defined Blood Products "	="National Blood Authority"	30-May-08	="Healthcare Services"	01-Apr-08	30-Apr-08	56245.20	=""	="CSL Ltd"	30-May-08 04:05 PM	

+="CN87252"	"Provision for Professional Workshop Services"	="Department of Immigration and Citizenship"	30-May-08	="Workshops"	10-Apr-08	14-Jul-08	63050.00	=""	="Value Creation Group"	30-May-08 04:21 PM	

+="CN87254"	" SUPPLY OF PHARMACEUTICAL PRODUCTS "	="Defence Materiel Organisation"	31-May-08	="Drugs and Pharmaceutical Products"	22-May-08	26-Jun-08	34436.34	="N/A"	="Symbion Pharmacy"	31-May-08 09:18 AM	

+="CN87255"	"SUPPLY OF PHARMACEUTICAL PRODUCT"	="Defence Materiel Organisation"	31-May-08	="Drugs and Pharmaceutical Products"	15-May-08	20-Jun-08	15097.50	="N/A"	="CSL BIOTHERAPIES"	31-May-08 09:24 AM	

+="CN87256"	"SUPPLY OF MEDICAL CONSUMABLE ITEMS"	="Defence Materiel Organisation"	31-May-08	="Medical Equipment and Accessories and Supplies"	21-May-08	18-Jun-08	31578.41	="N/A"	="SMITH & NEPHEW (AUSTRALIA )P/L"	31-May-08 09:32 AM	

+="CN87257"	"SUPPLY OF MEDICAL CONSUMABLE PRODUCTS"	="Defence Materiel Organisation"	31-May-08	="Medical Equipment and Accessories and Supplies"	27-May-08	20-Jun-08	17959.53	="N/A"	="BECTON DICKINSON PTY LTD"	31-May-08 09:39 AM	

+="CN87258"	" SUPPLY OF VARIOUS PHARMACEUTICAL PRODUCTS "	="Defence Materiel Organisation"	31-May-08	="Drugs and Pharmaceutical Products"	17-May-08	16-Jun-08	16730.89	="N/A"	="CSL BIOTHERAPIES"	31-May-08 09:47 AM	

+="CN87259"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	31-May-08	="Medical Equipment and Accessories and Supplies"	27-May-08	26-Jun-08	10672.75	="N/A"	="3M AUSTRALIA PTY LTD"	31-May-08 09:56 AM	

+="CN87260"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	31-May-08	="Medical Equipment and Accessories and Supplies"	27-May-08	26-Jun-08	11545.60	="N/A"	="J WISBEY AND ASSOCIATES PTY LTD"	31-May-08 10:01 AM	

+="CN87261"	"SUPPLY OF MEDICAL CONSUMABLES"	="Defence Materiel Organisation"	31-May-08	="Medical Equipment and Accessories and Supplies"	21-May-08	18-Jun-08	11751.52	="N/A"	="LAERDAL PTY LTD"	31-May-08 10:08 AM	

+="CN87262-A1"	"SUPPLY OF PHARMACEUTICAL PRODUCTS"	="Defence Materiel Organisation"	31-May-08	="Drugs and Pharmaceutical Products"	21-May-08	18-Jun-08	11634.64	="N/A"	="Symbion Pharmacy"	31-May-08 10:17 AM	

+="CN87263"	"SUPPLY OF HEPATITIS A AND B COMBINED VACCINE"	="Defence Materiel Organisation"	31-May-08	="Hepatitis B virus vaccine"	02-May-08	11-Jun-08	468270.00	="N/A"	="GLAXOSMITHKLINE AUSTRALIA"	31-May-08 10:25 AM	

+="CN87265"	" SUPPLY OF DENTAL CONSUMABLES "	="Defence Materiel Organisation"	31-May-08	="Dental equipment and supplies"	26-May-08	28-Jun-08	23493.21	="N/A"	="HENRY SCHEIN HALAS"	31-May-08 10:40 AM 

--- a/admin/partialdata/30Nov2007to04Dec2007valto.xls
+++ b/admin/partialdata/30Nov2007to04Dec2007valto.xls
@@ -1,692 +1,692 @@
-Advanced Search
-
-CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	
-="CN49275"	"Brake Drum"	="Defence Materiel Organisation"	30-Nov-07	="Brake drum"	16-Nov-07	15-Jan-08	51303.25	=""	="Premier Automotive Group"	30-Nov-07 07:44 AM	
-="CN49276"	"Sighting Equipment"	="Defence Materiel Organisation"	30-Nov-07	="Surveillance and detection equipment"	29-Nov-07	30-Jan-08	14712.50	=""	="G A HANRAHAN PTY LTD"	30-Nov-07 07:56 AM	
-="CN49279-A1"	"2008 Journal subscriptions"	="Australian Institute of Family Studies"	30-Nov-07	="Education and Training Services"	14-Nov-07	14-Nov-07	30988.48	=""	="EBSCO"	30-Nov-07 08:32 AM	
-="CN49278"	" Coolant additive   6850 66-153-9135   Nalcool Extreme Control in 15L  100 Drums "	="Defence Materiel Organisation"	30-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	26-Nov-07	33880.00	=""	="MTU"	30-Nov-07 08:33 AM	
-="CN49281-A1"	"additional contruction works"	="Australian Institute of Family Studies"	30-Nov-07	="Structural building products"	03-Sep-07	03-Sep-07	19942.61	=""	="Schiavello (VIC) Pty Ltd"	30-Nov-07 08:41 AM	
-="CN49282"	"Services in relation to data collection in respect of an online survey of family relationship services"	="Australian Institute of Family Studies"	30-Nov-07	="Internet based market research"	19-Nov-07	31-Jul-09	71978.50	=""	="I-View Pty Ltd"	30-Nov-07 08:47 AM	
-="CN49290"	"OverHaul Kiowa Aircraft Engine"	="Defence Materiel Organisation"	30-Nov-07	="Medical or rescue helicopters"	06-Mar-07	04-Apr-07	91547.30	=""	="Aviation Turbine Overhaul"	30-Nov-07 09:14 AM	
-="CN49297"	"Consultancy Services (Term nominal end date)"	="Australian Broadcasting Corporation"	30-Nov-07	="Information technology consultation services"	11-Oct-07	10-Nov-08	112000.00	="NS0730"	="Acumen Alliance"	30-Nov-07 11:50 AM	
-="CN49299"	"REPAIR, MODIFICATION AND SERVICE OF CORAL SNAKE"	="Department of Defence"	30-Nov-07	="Rescue ships or boats"	04-Jul-07	18-Aug-07	32935.38	=""	="BERENDSEN FLUID POWER"	30-Nov-07 12:23 PM	
-="CN49300"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	22938.90	=""	="VERIZON"	30-Nov-07 12:39 PM	
-="CN49301"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	17325.00	="0"	="VERIZON"	30-Nov-07 12:39 PM	
-="CN49302"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Office Equipment and Accessories and Supplies"	23-Nov-07	31-Mar-08	66000.00	="Not available"	="CANON AUSTRALIA P/L - ACT"	30-Nov-07 12:39 PM	
-="CN49303"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="00"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:39 PM	
-="CN49304"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	44000.00	="00"	="DELL COMPUTER PTY LIMITED"	30-Nov-07 12:39 PM	
-="CN49305"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	14654.31	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:39 PM	
-="CN49306"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	52802.30	="06/06490"	="INSIGHT"	30-Nov-07 12:40 PM	
-="CN49307"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:40 PM	
-="CN49308"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16500.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	
-="CN49309"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Dec-07	12936.00	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	30-Nov-07 12:40 PM	
-="CN49310"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16168.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	
-="CN49311"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	132660.00	="AGIMO tender - see attached document"	="UNIFY SOLUTIONS PTY LTD"	30-Nov-07 12:40 PM	
-="CN49312"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	33000.00	="RFT06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:40 PM	
-="CN49313"	"Recruitment Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Dec-07	22000.00	="FIN 05CRP004-02"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:40 PM	
-="CN49314"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	23-Oct-08	120782.00	="20031A"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:40 PM	
-="CN49315"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	266159.65	=""	="AGS - SYDNEY"	30-Nov-07 12:41 PM	
-="CN49316"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	170000.00	="N/A"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:41 PM	
-="CN49317"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	28-Mar-08	53000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:41 PM	
-="CN49318"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	19718.24	="o"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:41 PM	
-="CN49319"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:41 PM	
-="CN49320"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	165600.00	="FIN05CRP004-33"	="VEROSSITY"	30-Nov-07 12:41 PM	
-="CN49321"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	110000.00	="rft"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:41 PM	
-="CN49322"	"Capital Expenditure - Software"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	74223.01	="06/09065-06"	="DIMENSION DATA AUSTRALIA PTY LTD"	30-Nov-07 12:41 PM	
-="CN49323"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	175000.00	="FIN 05CRP004-37"	="CANDLE AUSTRALIA LTD"	30-Nov-07 12:41 PM	
-="CN49324"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	15-Feb-08	41938.72	="recruitment panel"	="ROSS HUMAN DIRECTIONS LIMITED"	30-Nov-07 12:41 PM	
-="CN49325"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	15-Jan-08	71037.45	="RMS07/00977"	="ARGENT TECHNO-RACKING PTY LTD"	30-Nov-07 12:42 PM	
-="CN49326"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	33000.00	="RMS07/0785"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	
-="CN49327"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	17908.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	30-Nov-07 12:42 PM	
-="CN49328"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Nov-08	189000.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:42 PM	
-="CN49329"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	768808.60	="FIN06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	
-="CN49330"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	2962391.40	="Fin06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	
-="CN49331"	"Divestment Expenses"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	30-Nov-07 12:42 PM	
-="CN49332"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	26835.95	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:42 PM	
-="CN49333"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	18029.00	="0"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	
-="CN49334"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	140668.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	
-="CN49335"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Dec-07	44699.99	="06/590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	
-="CN49336"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Nov-08	248000.00	="FIN 05CRP004-43"	="PROFESSIONALS ONLINE"	30-Nov-07 12:43 PM	
-="CN49337"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Nov-08	215000.00	="FIN 05CR004-33"	="VEROSSITY"	30-Nov-07 12:43 PM	
-="CN49338"	"Security Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-Jan-08	77740.00	="0"	="ASSA ABLOY AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	
-="CN49339"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Oct-08	173700.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:43 PM	
-="CN49340"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	86000.00	="FIN 05CRP0004-41"	="ICON RECRUITMENT PTY LTD"	30-Nov-07 12:43 PM	
-="CN49341"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	31152.00	="19102007"	="VERIZON"	30-Nov-07 12:43 PM	
-="CN49342"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Jun-08	143908.41	="n/a"	="EMC AUSTRALIA"	30-Nov-07 12:43 PM	
-="CN49343-A1"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	17-Oct-07	16-Nov-07	50571.55	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	
-="CN49344"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	24-Nov-07	21-Nov-08	220000.00	="Labour Hire Panel"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:44 PM	
-="CN49345"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	15720.10	="PASD-06-0084-1679"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:44 PM	
-="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	
-="CN49347"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	22-Aug-08	71400.00	="Recruitment Panel - Purchase Order"	="MANPOWER SERVICES (AUST) P/L"	30-Nov-07 12:44 PM	
-="CN49348"	"HR Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	11630.08	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	30-Nov-07 12:44 PM	
-="CN49349"	"Training & Education Costs"	="Department of Finance and Administration"	30-Nov-07	="Education and Training Services"	23-Nov-07	21-Dec-07	26100.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	30-Nov-07 12:44 PM	
-="CN49350"	"Entertainment & Other Staff Benefits"	="Department of Finance and Administration"	30-Nov-07	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	28-Feb-08	14000.00	=""	="HYATT HOTEL CANBERRA"	30-Nov-07 12:44 PM	
-="CN49351"	"Additional Construction Works"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	29-Nov-07	31-Jan-08	42000.00	="FIN07/Crp002"	="GE SHAW & ASSOCIATES PTY LTD"	30-Nov-07 12:44 PM	
-="CN49352"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	30-Jun-08	70000.00	=""	="ALPHAWEST SERVICES PTY LTD"	30-Nov-07 12:44 PM	
-="CN49353"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	1398038.55	="N/A"	="NEW SOUTH WALES FIRE BRIGADES"	30-Nov-07 12:44 PM	
-="CN49354"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	31803.50	="N/A"	="NSW RURAL FIRE SERVICE"	30-Nov-07 12:45 PM	
-="CN49355"	"Project Manager and Superintendency"	="Department of Finance and Administration"	30-Nov-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	164747.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	30-Nov-07 12:45 PM	
-="CN49356"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	197600.00	="04/07995"	="MEDIA MONITORS - ALL STATES"	30-Nov-07 12:45 PM	
-="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	
-="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	
-="CN49359"	"Business Advisory Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	21-Dec-07	24320.00	="N/A"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	30-Nov-07 12:45 PM	
-="CN49360"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	31900.00	="RFT 2003 IA"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:45 PM	
-="CN49361"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Dec-07	22000.00	="rft"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	
-="CN49362"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:45 PM	
-="CN49363"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	03-Jan-08	11550.00	="-"	="ERNST & YOUNG"	30-Nov-07 12:46 PM	
-="CN49364"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Oct-08	213420.00	="FIN06AGI14-03"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	30-Nov-07 12:46 PM	
-="CN49365"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:46 PM	
-="CN49366"	"Cleaning"	="CRS Australia"	30-Nov-07	="Building cleaning services"	01-Dec-07	30-Nov-08	13686.68	=""	="Westcoast Wilcleen Services"	30-Nov-07 12:49 PM	
-="CN47645"	" Musical Instruments "	="Defence Materiel Organisation"	30-Nov-07	="Musical Instruments and parts and accessories"	02-Nov-07	06-Feb-08	20932.09	=""	="Pro Audio Supplies Pty Ltd"	30-Nov-07 12:58 PM	
-="CN49367"	" SERVICE AND REPAIR MERLO TELELOADER "	="Department of Defence"	30-Nov-07	="Front end loaders"	01-Jun-07	16-Jul-07	19280.72	=""	="MERLO GROUP AUSTRALIA"	30-Nov-07 01:12 PM	
-="CN49368"	"Irrigation Network Replacement - Regatta Point Pump Station"	="National Capital Authority"	30-Nov-07	="Irrigation pipes or tubes"	21-Feb-07	30-Jan-08	494000.00	=""	="Manteena Pty Ltd"	30-Nov-07 01:42 PM	
-="CN49369"	"Insurance Premium - fund Year 2007/2008"	="National Native Title Tribunal"	30-Nov-07	="Reinsurance services"	01-Jul-07	30-Jun-08	68153.80	=""	="Australian Government Comcover"	30-Nov-07 02:01 PM	
-="CN49370"	"Duffel Bag, Dry Bag"	="Defence Materiel Organisation"	30-Nov-07	="Camping and outdoor equipment and accessories"	21-Nov-07	05-Dec-07	18661.00	=""	="Mainpeak Pty Ltd"	30-Nov-07 02:29 PM	
-="CN49371-A1"	"Fitout to CRS Australia premises - Albury"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Aug-07	31-Dec-07	124861.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 02:54 PM	
-="CN49372"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	10-Jan-08	14313.20	=""	="Capital medical Supplies Pty Ltd"	30-Nov-07 02:58 PM	
-="CN49277-A1"	"development of PPVT for LSAC Wave 3"	="Australian Institute of Family Studies"	30-Nov-07	="Educational and research structures"	08-Nov-07	08-Nov-07	11440.00	=""	="Australian Council for Educational Research"	30-Nov-07 03:00 PM	
-="CN49373"	"Provision of Fitout at CRS Australia- Batemans Bay NSW"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	22-Oct-07	06-Dec-07	176451.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 03:01 PM	
-="CN49374"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	21367.50	=""	="Stryker Australia Pty Ltd"	30-Nov-07 03:03 PM	
-="CN49378-A2"	"Provision of Cleaning Services at the Wyong premises of CRS Australia"	="CRS Australia"	30-Nov-07	="General building and office cleaning and maintenance services"	17-Nov-06	16-Nov-09	19202.16	=""	="GTL Management"	30-Nov-07 03:16 PM	
-="CN49380"	"Maternity Wear - Army Khaki"	="Defence Materiel Organisation"	30-Nov-07	="Military uniforms"	09-Nov-07	14-Jul-08	71876.50	=""	="Australian Defence Apparel"	30-Nov-07 03:24 PM	
-="CN49381"	"Equipment Hite - official visit "	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Marquees"	30-Aug-07	06-Sep-07	50000.00	=""	="Pages Event Hire"	30-Nov-07 03:51 PM	
-="CN49383-A5"	" Scamax Inotec Scanner Maintenance and Services  Extn of maintenance for Scanners    "	="Australian Taxation Office"	30-Nov-07	="Computer services"	01-Sep-07	31-Aug-11	593330.40	=""	="Inotec Organisationsysteme Pty Ltd"	30-Nov-07 03:57 PM	
-="CN49384"	"Legal Services"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Legal services"	01-Jul-07	30-Jun-08	22000.00	=""	="Aust Government Solicitor Canberra"	30-Nov-07 03:58 PM	
-="CN49385-A1"	"Stationery"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Stationery"	19-Jun-07	18-Jun-08	31400.00	=""	="CANPRINT COMMUNICATIONS Pty Ltd"	30-Nov-07 04:07 PM	
-="CN49386"	" STAGE 2  INSTALL APPROVED REPAIR ONTO A BRIDGE ERECTION PROPULSION BOAT AS PER STATEMENT OF WORK AGAINST STANDING OFFER NO. E1-203894  STAGE 3  INSTALLATION OF REPAIR SOLUTION TO BALANCE OF BRIDGE ERECTION PROPULSION BOAT  TECHNICAL DRAWINGS  INSTALLATION OF VETUS STRAINER TO RAW WATER SYSTEM  SUPPLY AND FIT WORK LIGHTS CABLES AND LIGHTS TO 6 VESSELS  ANODE INSTALLATION  SUPPLY AND INSTALLATION OF BIMINI COVER KITS TO 15 BOATS "	="Defence Materiel Organisation"	30-Nov-07	="Workover boats"	26-Nov-07	30-Sep-08	291002.81	=""	="THE BIRDON GROUP"	30-Nov-07 05:04 PM	
-="CN49387"	"STERILIZER, SURGICAL INSTRUMENT AND DRESSING CLASS B, PRE-VACUUM, EXTRA LARGE BENCH TOP, DENTAL, C/W MANUALS, 5 X TRAYS, TRAY HOLDER, DRAIN TUBING, BACTERIOLOGICAL FILTER, FUNNEL, REVERSIBLE RACK AND PRINTER. QTY 3"	="Defence Materiel Organisation"	01-Dec-07	="Dental equipment and supplies"	16-Nov-07	07-Dec-07	27451.87	=""	="ADEC AUSTRALIA"	01-Dec-07 01:24 PM	
-="CN49388"	"MANIKIN, NURSING TRAINING AID PATIENT CARE SIMULATOR W/INTERCHANGEABLE MALE/FEMALE ORGANS AND FULLY MOVABLE LIMBS FOR PRACTIING PRODCEDURES. QTY 10"	="Defence Materiel Organisation"	01-Dec-07	="Medical training and education supplies"	16-Nov-07	07-Dec-07	24035.00	=""	="MENTONE EDUCATIONAL CENTRE"	01-Dec-07 01:37 PM	
-="CN49389"	"REFRIDGERATOR, DRUG STORAGE MECHANICAL, 325 LITRE UPRIGHT TYPE, SINGLE SOLID EXXTERNAL DOOR, 5 FOODGRADE ADJUSTABLE SHELVES, DIGITAL TEMPERATURE CONTROLLER AND ALARM.  QTY 3"	="Defence Materiel Organisation"	01-Dec-07	="General purpose refrigerators or refrigerator freezers"	21-Nov-07	12-Dec-07	29667.00	=""	="ARROWSMITH & GRANT REFRIGERATION"	01-Dec-07 01:50 PM	
-="CN49390"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	16986.97	=""	="Laerdal Pty Ltd"	03-Dec-07 07:44 AM	
-="CN49391"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	22-Nov-07	23-Dec-07	14155.90	=""	="Dejay Medical & Scientific Pty Ltd"	03-Dec-07 07:47 AM	
-="CN49392"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	26-Nov-07	10-Jan-08	14915.86	=""	="Biolab (Aust) Pty Ltd"	03-Dec-07 07:50 AM	
-="CN49393"	"ASLAV PARTS - FUEL PUMP"	="Department of Defence"	03-Dec-07	="Armoured fighting vehicles"	30-Nov-07	15-Jun-08	19670.86	=""	="GENERAL DYNAMICS LAND SYSTEMS"	03-Dec-07 07:59 AM	
-="CN49394"	"ASLAV PARTS - WIRING HARNESS BRANCHED"	="Department of Defence"	03-Dec-07	="Armoured fighting vehicles"	30-Nov-07	28-Feb-08	31125.33	=""	="GENERAL DYNAMICS LAND SYSTEMS"	03-Dec-07 08:02 AM	
-="CN49395"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	03-Dec-07	="Military transport aircraft"	27-Aug-07	30-Jan-08	21784.46	=""	="Qantas Defence Services Pty Ltd"	03-Dec-07 08:20 AM	
-="CN49396"	" NSN 5330-01-481-9786  PURCHASE OF GASKET  EX GST "	="Defence Materiel Organisation"	03-Dec-07	="Military transport aircraft"	31-Oct-07	10-Nov-07	29400.00	=""	="Aerospace Composites Pty Ltd"	03-Dec-07 08:24 AM	
-="CN49398"	"Printing of NAT71047 NESB - Better Super Booklet. Qty: 30,000."	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Sep-07	30-Sep-07	51474.50	="06.030"	="PMP Printing Limited"	03-Dec-07 09:01 AM	
-="CN49399"	"Contractor - Temporary assistant"	="Future Fund Management Agency"	03-Dec-07	="Temporary personnel services"	03-Dec-07	15-Feb-08	22000.00	=""	="BarberBunton"	03-Dec-07 09:12 AM	
-="CN49402"	"IT Hardware for business.gov.au  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	31-Dec-07	270436.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	03-Dec-07 09:25 AM	
-="CN49403"	"QUARTERLY ALLIANCE REPORTS 07/08"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	01-Jul-07	30-Jun-08	30400.00	=""	="INNOVATION DYNAMICS"	03-Dec-07 09:25 AM	
-="CN49404"	"Maintenance Services provided for EISys for the period 1 Oct"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	01-Jul-07	30-Jun-08	222750.00	=""	="GEOSCIENCE AUSTRALIA"	03-Dec-07 09:25 AM	
-="CN49405"	"Review of uranium regulatory system  Resources Div PO Folder"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	01-Nov-07	07-Feb-08	187440.00	=""	="DELOITTE TOUCHE TOHMATSU"	03-Dec-07 09:25 AM	
-="CN49406"	"WYD 2008 - Second Funding Agreement"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Legal services"	01-Nov-07	30-Jun-08	11970.00	=""	="MALLESONS STEPHEN JAQUES"	03-Dec-07 09:26 AM	
-="CN49407"	"Analysis of Aviation specific Climate Change and Policies on"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Economics"	01-Nov-07	30-Jun-08	19800.00	=""	="ACCESS ECONOMICS PTY LIMITED"	03-Dec-07 09:26 AM	
-="CN49401"	"Comcar"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Transportation and Storage and Mail Services"	31-Aug-07	31-Oct-07	37000.00	=""	="COMCAR"	03-Dec-07 09:26 AM	
-="CN49408"	"Finnigan LTQ Orbitrap XL Ray Kazlauskas N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	02-Nov-07	02-Nov-11	946467.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	03-Dec-07 09:26 AM	
-="CN49409"	"Customised DITR Microsoft CRM 3.0 Installation and Configura"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	02-Nov-07	31-Dec-07	15746.50	=""	="DIMENSIONS DATA LEARNING SOLUTIONS"	03-Dec-07 09:26 AM	
-="CN49410"	"Hardware for the NMI Refresh Project  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	02-Nov-07	31-Dec-07	78431.10	=""	="IBM AUST LTD"	03-Dec-07 09:26 AM	
-="CN49411"	"EEO - undertake trial verification with Alcoa NA"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	04-Nov-07	31-Mar-08	17000.00	=""	="RAWETECH"	03-Dec-07 09:26 AM	
-="CN49412"	"GIIF FINANCIAL ASSESSMENTS  IA07/00459"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	07-Dec-07	272250.00	=""	="WALTER and TURNBULL"	03-Dec-07 09:26 AM	
-="CN49413"	"Disposal Chemicals  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Toxic and hazardous waste cleanup"	07-Nov-07	30-Jun-08	10500.82	=""	="TRANSPACIFIC INDUSTRIES PTY LTD"	03-Dec-07 09:27 AM	
-="CN49414"	"SPEC Gases Installations  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory supplies and fixtures"	07-Nov-07	30-Jun-08	17096.20	=""	="COREGAS PTY LTD"	03-Dec-07 09:27 AM	
-="CN49415"	"Reimbursement - Environmental Investigation, Remediation and E"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	30-Nov-07	54303.00	=""	="CLIVE RD PTY LTD"	03-Dec-07 09:27 AM	
-="CN49416"	"Annual subscription to Web of science and current contents, R6"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Electronic reference material"	07-Nov-07	31-Dec-07	47840.00	=""	="THOMSON SCIENTIFIC INC"	03-Dec-07 09:27 AM	
-="CN49417"	"PRINTING OF BENCHMARK REPORT  AX07/0006"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Aug-07	24-Aug-07	37957.70	=""	="LINDSAY YATES and PARTNERS"	03-Dec-07 09:27 AM	
-="CN49418"	"SET OF CURRENT SHUNTS Physikalisch Technischer prufdienst PO"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	08-Dec-07	19-Dec-07	15000.00	=""	="PHYSIKALISCH TECHNISCHER PRUFDIENST"	03-Dec-07 09:27 AM	
-="CN49419"	"3.5mm Calibration kit Agilent PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	08-Nov-07	09-Nov-07	15247.10	=""	="AGILENT TECHNOLOGIES AUST PTY"	03-Dec-07 09:27 AM	
-="CN49420"	"LPG conversions analysis, forecast and reporting MD Admin 07"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	08-Nov-07	09-Nov-07	23620.00	=""	="ACCESS ECONOMICS PTY LIMITED"	03-Dec-07 09:27 AM	
-="CN49421"	"Personal Efficiency Program - EFB Executives Training NA"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	12-Nov-07	19800.00	=""	="D'ARCY CONSULTING GROUP"	03-Dec-07 09:28 AM	
-="CN49422"	"SES Office Removal Level 4 - Industry House Property Claims"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building and Construction and Maintenance Services"	09-Nov-07	21-Dec-07	10603.45	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	03-Dec-07 09:28 AM	
-="CN49423"	"Security Room Alterations Level 4 - Industry House Property"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building and Construction and Maintenance Services"	09-Nov-07	21-Dec-07	15676.10	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	03-Dec-07 09:28 AM	
-="CN49424"	"Design fees - VIC State Office Fit Out 161 Collins Street Pr"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Professional engineering services"	09-Nov-07	21-Dec-07	16369.51	=""	="GOODWIN DESIGN STUDIO"	03-Dec-07 09:28 AM	
-="CN49425"	"Placement Fee for the Engagement of Ineke Kennedy C07/10871"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	09-Nov-07	30-Nov-07	15000.00	=""	="TPA"	03-Dec-07 09:28 AM	
-="CN49426"	"TSM Disk Storage and Related Licences  C07/00078"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	09-Nov-07	30-Nov-07	45320.00	=""	="IBM AUST LTD"	03-Dec-07 09:28 AM	
-="CN49427"	"LCMSMS Jenny Bruce N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	10-Oct-07	23-Nov-07	396000.00	=""	="VARIAN AUSTRALIA PTY LTD"	03-Dec-07 09:28 AM	
-="CN49428"	"Equipment installation"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Audio and visual presentation and composing equipment"	11-Jul-07	11-Jul-07	21599.60	=""	="ZENITH CUSTOM INSTALLATION CO. PTY LTD"	03-Dec-07 09:28 AM	
-="CN49430"	"Contract work"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	11-Jul-07	11-Jul-07	24200.00	=""	="PLAIN ENGLISH FOUNDATION PTY LTD"	03-Dec-07 09:29 AM	
-="CN49431"	"IT Equipment"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	11-Jul-07	11-Jul-07	34487.42	=""	="DELL AUSTRALIA"	03-Dec-07 09:29 AM	
-="CN49433"	"services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	11-Jul-07	11-Jul-07	71870.00	=""	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 09:29 AM	
-="CN49434"	"Printing services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Printed media"	11-Jul-07	11-Jul-07	123651.90	=""	="NEW MILLENNIUM PRINT"	03-Dec-07 09:29 AM	
-="CN49435"	"IT Services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	11-Jul-07	11-Jul-07	152000.00	=""	="CCS TECHNOLOGY RECRUITERS"	03-Dec-07 09:29 AM	
-="CN49438"	"IT CONTRACTOR"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	122400.00	=""	="AMBIT GROUP PTY LTD"	03-Dec-07 09:30 AM	
-="CN49439"	"InstallShield 2008 Priemier Licence with Silver Maintenance"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	12-Nov-07	30-Nov-07	10688.33	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:30 AM	
-="CN49440"	"Finnigan Delta V Plus Michael Collins N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	13-Nov-07	21-Dec-07	530722.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	03-Dec-07 09:30 AM	
-="CN49441"	"2008 flagship design  ia02/00056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	13-Nov-07	31-Dec-07	13255.00	=""	="SWELL DESIGN GROUP"	03-Dec-07 09:30 AM	
-="CN49442"	"Consultancy service to Evaluate GTIS  Innov Div PO File"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Jan-08	24000.00	=""	="EDITH COWAN UNIVERSITY"	03-Dec-07 09:30 AM	
-="CN49443"	"TWO SUN SPARC COMPUTERS AS PER QUOTE #IPS00002 DD 14/11/07 S"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	14-Dec-07	30-Apr-08	11616.40	=""	="REMORA TECHNOLOGIES PTY LTD"	03-Dec-07 09:30 AM	
-="CN49444"	"PLACEMENT FEE FOR MARIO GORDON  IA02/0056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	14-Nov-07	29-Nov-07	16086.10	=""	="THE PUBLIC AFFAIRS RECRUITMENT COMPANY"	03-Dec-07 09:30 AM	
-="CN49445"	"Maintenance Support for Oracle Host Servers C07/10688"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	14-Nov-07	30-Jun-08	32323.06	=""	="SUN MICROSYSTEMS AUST PTY LTD"	03-Dec-07 09:30 AM	
-="CN49446"	"Additional Managed PKI for SSL (Premium) EV Software Certifi"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	14-Nov-07	30-Nov-07	23760.00	=""	="VERISIGN AUSTRALIA PTY LTD"	03-Dec-07 09:31 AM	
-="CN49447"	"Development Management J.B Project Management JK Req.Raised"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-May-07	30-Sep-07	25048.38	=""	="WILDE AND WOOLLARD"	03-Dec-07 09:31 AM	
-="CN49448"	"LT04 Tape Cartridges for the TSM Tape Library C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Nov-07	12650.00	=""	="PRODATA PTY LTD"	03-Dec-07 09:31 AM	
-="CN49449"	"GC WITH PULSE DISCHARGE Shimadzu PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	16-Nov-07	29-Dec-07	34823.80	=""	="SHIMADZU OCEANIA PTY LTD"	03-Dec-07 09:31 AM	
-="CN49450"	"GC WITH Mass spectrometer Shimadzu PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	16-Nov-07	29-Dec-07	77312.40	=""	="SHIMADZU OCEANIA PTY LTD"	03-Dec-07 09:31 AM	
-="CN49451"	"Install 2 new automatic doors  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building construction and support and maintenance and repair services"	16-Nov-07	30-Jun-08	13919.40	=""	="HIROTEC MAINTENANCE P/L"	03-Dec-07 09:31 AM	
-="CN49452"	"Environmental Analysis  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	186978.00	=""	="ENSIS"	03-Dec-07 09:31 AM	
-="CN49454"	"CLIENT SERVICES WORKSHOP - 24/25/10/07  IA07/00228"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Nov-07	10236.38	=""	="SHANGRI-LA HOTEL SYDNEY"	03-Dec-07 09:31 AM	
-="CN49455"	"SilkCentral Test Manager Training  C07/06030"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	16-Nov-07	31-Dec-07	10560.00	=""	="BORLAND AUSTRALIA PTY LTD"	03-Dec-07 09:31 AM	
-="CN49456"	"Contractor - Peter Wass For the Period 11/2/07 to 14/3/07 C0"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	17-Jul-06	30-Nov-07	18030.38	=""	="ICON RECRUITMENT"	03-Dec-07 09:32 AM	
-="CN49457"	"Provision of Maintenance and Support of Adobe LiveCycle Prod"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	18-Jul-07	30-Jun-10	571507.00	=""	="AVOKA TECHNOLOGIES"	03-Dec-07 09:32 AM	
-="CN49458"	"Scoping of APP Project China Building Energy Rating Tool C07"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	30-Jun-08	38500.00	=""	="NATIONAL PROJECT CONSULTANTS P/L"	03-Dec-07 09:32 AM	
-="CN49459"	"WIP Workshops Organising and Facilitating Admin"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	01-Aug-08	50600.00	=""	="INTEGRATED MARKETING COMMUNICATIONS P/L"	03-Dec-07 09:32 AM	
-="CN49460"	"Principal Author Barry NollerAPP Project Leading Practice Ha"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Writing and translations"	19-Nov-07	30-Apr-08	10000.00	=""	="THE UNIVERSITY OF QUEENSLAND - CMLR"	03-Dec-07 09:32 AM	
-="CN49461"	"EXACT TARGET  IA07/00246"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	19-Nov-07	30-Nov-07	22000.00	=""	="MPATH GLOBAL PTY LTD"	03-Dec-07 09:32 AM	
-="CN49462"	"Contractor - Luke Mathers For the Period 19/11/07 to 12/3/08"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	19-Nov-07	31-Mar-08	119680.00	=""	="FACE2FACE RECRUITMENT PTY LTD"	03-Dec-07 09:32 AM	
-="CN49463"	"YOUNG and RUBICAM - RESEARCH PROJECT  IA07/00286"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	19-Sep-07	31-Oct-07	70035.00	=""	="YOUNG and RUBICAM BRANDS"	03-Dec-07 09:32 AM	
-="CN49464"	"Provision of Solutions Architect Service Engagement of Chris"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	20-Nov-07	03-Dec-07	15840.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	03-Dec-07 09:33 AM	
-="CN49465"	"Engagement of Consultant as Chair of Gas Market Leaders Grou"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	20-Nov-07	71000.00	=""	="WOODLEY, TED"	03-Dec-07 09:33 AM	
-="CN49466"	"Tourism Industry Carbon Footprint  C07/14082"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Economics"	20-Nov-07	30-Apr-08	22000.00	=""	="CRC FOR SUSTAINABLE TOURISM PTY LTD"	03-Dec-07 09:33 AM	
-="CN49467"	"ADVANCE GLOBAL AUSTRALIAN PROFESSIONALS  IA07/00416"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	21-Sep-07	31-Jul-08	76000.00	=""	="ADVANCE GLOBAL AUSTRALIAN PROFESSIONALS"	03-Dec-07 09:33 AM	
-="CN49469"	"Analytical Balance L. Mackay N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	22-Nov-07	14-Dec-07	16022.40	=""	="METTLER TOLEDO LTD"	03-Dec-07 09:33 AM	
-="CN49470"	"Consultancy for the Preparation of Technical Upgrade Plan fo"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	22-Nov-07	30-Nov-07	16500.00	=""	="QIRX PTY LTD"	03-Dec-07 09:33 AM	
-="CN49471"	"EECAR - facilitation of technical aspects to MOU with DEW C0"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-Nov-07	11660.00	=""	="STRATEGIC DATA MANAGEMENT PTY LTD"	03-Dec-07 09:34 AM	
-="CN49472"	"Statistical Analytical Software package  INNOV PO FOLDER 200"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	23-Nov-07	31-Dec-07	47200.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	03-Dec-07 09:34 AM	
-="CN49473"	"4 x Single-sided Panorama Dislay Systems  Q05/01"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Merchandising furniture and accessories"	23-Nov-07	31-Jan-08	11000.00	=""	="TOUCAN DISPLAY SYSTEMS INT P/L"	03-Dec-07 09:34 AM	
-="CN49474"	"Licenses for the Systems Requirements and Fulfilment (SRandF)"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	24-Jan-07	30-Nov-07	33550.00	=""	="HOLOCENTRIC PTY LTD"	03-Dec-07 09:34 AM	
-="CN49475"	"6x Dell OptiPlex 755 Desktop Computers Ref: Quote No: AUSO33"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	25-Oct-07	17-Nov-07	14220.36	=""	="DELL AUSTRALIA"	03-Dec-07 09:34 AM	
-="CN49476"	"Agilent database library  Agilent"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	25-Oct-07	31-Dec-07	14294.39	=""	="AGILENT TECHNOLOGIES AUST PTY"	03-Dec-07 09:34 AM	
-="CN49477"	"Low Temp furnace K23MR w/ RS-232 POND ENGR USA PO RAISED BY"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	26-Nov-07	26-Jan-08	22334.00	=""	="POND ENGINEERING LABORATORIES, INC"	03-Dec-07 09:34 AM	
-="CN49478"	"EUROMOLD07  IA07/00407"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Merchandising furniture and accessories"	26-Nov-07	30-Nov-07	19384.27	=""	="SKYLINE DISPLAYS AUSTRALIA PTY LTD"	03-Dec-07 09:34 AM	
-="CN49479"	"COMPOSITES SCOPING STUDY  IA07/00460"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	26-Oct-07	31-Jan-08	30140.00	=""	="COOPERATIVE RESEARCH CENTRE FOR ADVANCED"	03-Dec-07 09:34 AM	
-="CN49480"	"JLLasalle Facilities Management Fees for Nov 2007, 210006818"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	08-Dec-07	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	03-Dec-07 09:35 AM	
-="CN49481"	"APNet - facilitation of workshop Phase one Australian consul"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	31-Dec-07	14190.00	=""	="ECONNECT PTY LTD"	03-Dec-07 09:35 AM	
-="CN49482"	"TWO SUN ULTRA 25 WORKSTATIONS AS PER QUOTE #IPS00003 DD 14/1"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	14-Dec-07	10632.73	=""	="REMORA TECHNOLOGIES PTY LTD"	03-Dec-07 09:35 AM	
-="CN49483"	"RAID Subsystem - U320 SCSI TO SATA II AS PER QUOTE 21112007-"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	15-Dec-07	13409.00	=""	="DIGICOR PTY LTD"	03-Dec-07 09:35 AM	
-="CN49484"	"Analysts and iBridge Support  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	29-Oct-07	31-Oct-07	14031.82	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:35 AM	
-="CN49485"	"Analysis of Effects of Foreign Ownership on Knowledge Transf"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	20075.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	03-Dec-07 09:35 AM	
-="CN49486"	"Assistant Manager, advertising placement fee IA/02/00056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	30-Nov-07	30-Nov-07	14458.47	=""	="TPA"	03-Dec-07 09:35 AM	
-="CN49487"	"Mark Ransom - BAET Project Staff Services 31/10/07 to 12/12/"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	30-Oct-07	12-Dec-07	10788.53	=""	="SOS RECRUITMENT"	03-Dec-07 09:35 AM	
-="CN49488"	"EMC iSCSI Sans for the NMI Refresh Project C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	30-Oct-07	30-Nov-07	33167.30	=""	="CITY SOFTWARE"	03-Dec-07 09:36 AM	
-="CN49489"	"CLIENT SERVICES TRAINING  IA07/00442"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	31-Aug-07	30-Jun-08	193329.50	=""	="THE NOUS GROUP P/L"	03-Dec-07 09:36 AM	
-="CN49490"	"EAL Capability Directory and CD ROM  07/08 MD Admin PO Folder"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	31-Oct-07	30-Jun-08	59630.60	=""	="SWELL DESIGN GROUP"	03-Dec-07 09:36 AM	
-="CN49491"	"Trend Microsystems Virus Management Software C07/08921"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	31-Oct-07	30-Nov-07	34194.60	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:36 AM	
-="CN49492"	"APS Gazette Subscription 2007-2008 C07/07657"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Advertising"	31-Oct-07	31-Dec-07	26327.29	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	03-Dec-07 09:36 AM	
-="CN49468"	"Repair of Kiowa A/c Engine Component"	="Defence Materiel Organisation"	03-Dec-07	="Aircraft engine compressors"	05-Sep-06	10-Oct-06	54286.60	=""	="Aviation turbine O/H"	03-Dec-07 09:46 AM	
-="CN49494"	"Recruitment services placement fee"	="Civil Aviation Safety Authority"	03-Dec-07	="Personnel recruitment"	15-Nov-07	14-Dec-07	16500.00	="07/141"	="Hays Personnel Services (Australia) Pty Ltd"	03-Dec-07 09:46 AM	
-="CN49497"	"Contiuation of Executive Search - Manager Officer of Airspace Regulation"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	06-Oct-07	06-Apr-08	27000.00	="06/192-01"	="Spencer Stuart & Associates"	03-Dec-07 09:57 AM	
-="CN49495"	"REPAIR OF KIOWA ENGINE COMPONENTS"	="Defence Materiel Organisation"	03-Dec-07	="Aircraft engine compressors"	12-Sep-06	25-Oct-06	55770.70	=""	="AVIATION TURBINE O/H"	03-Dec-07 09:58 AM	
-="CN49496"	" Supply of Black Antiflash Balaclavas    "	="Defence Materiel Organisation"	03-Dec-07	="Insulated clothing for cold environments"	18-Oct-07	11-Jan-09	22989.70	=""	="Scandex Field Clothing"	03-Dec-07 10:01 AM	
-="CN49499"	"    Design and supply of eLearning products    "	="Therapeutic Goods Administration"	03-Dec-07	="Office Equipment and Accessories and Supplies"	03-Sep-07	31-Oct-07	17703.13	="2007/006142"	="Total Learn Pty Ltd"	03-Dec-07 10:06 AM	
-="CN49498"	"ICAO Language Proficiency Contractor"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	17-Sep-07	31-Mar-08	33000.00	="06/226-01"	="Dr Patricia Denham"	03-Dec-07 10:06 AM	
-="CN49500"	" AIRCRAFT SPARES  NSN: 1560-01-368-5239 FITTING, STRUCTURAL COMPONENT  QTY: 7 "	="Defence Materiel Organisation"	03-Dec-07	="Military transport helicopters"	31-Oct-07	29-Nov-08	49175.13	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	03-Dec-07 10:07 AM	
-="CN49501"	"Management Fees Superannuation"	="Therapeutic Goods Administration"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jul-08	18995.90	=""	="Comsuper - Australian Government"	03-Dec-07 10:20 AM	
-="CN49503"	"Workforce Capability Project"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	11-Sep-07	31-Dec-07	475000.00	="06/233"	="Hay Group Pty Ltd"	03-Dec-07 10:28 AM	
-="CN49505"	"Supply of 20 Laptops and accessories"	="Therapeutic Goods Administration"	03-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	24-Oct-07	24-Nov-07	68365.00	=""	="DELL Computer Pty Ltd"	03-Dec-07 10:32 AM	
-="CN49506"	"Evaluation of the Primary Health Care Research, Evaluation & Development Strategy"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	31-Oct-08	380600.00	="052/0708"	="HEALTHCARE PLANNING & EVALUATION"	03-Dec-07 10:34 AM	
-="CN49507"	"Creative Advertising Services for the National Skin Cancer Campaign - Phase two"	="Department of Health and Ageing"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	16-Aug-07	30-Jun-08	38845.95	=""	="BMF ADVERTISING"	03-Dec-07 10:34 AM	
-="CN49508"	"Data Analyst/Designer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	08-Feb-08	95700.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:34 AM	
-="CN49509"	"Temporary employee @ APS5 from 7.11.07-7.2.08 @ $58.40 per hour (incl gst)"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Feb-08	27000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	03-Dec-07 10:35 AM	
-="CN49510"	"More Doctors for Outer Metropolitan Areas"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	20-Aug-07	30-Nov-07	25421.00	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:35 AM	
-="CN49511"	"Advertising for the development of a National Healthy Active Australia Primary Resource Kit."	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	21-Nov-07	20526.10	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:35 AM	
-="CN49512"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	220000.00	="042/0506"	="AUST GOVT SOLICITOR VIC"	03-Dec-07 10:35 AM	
-="CN49513"	"Qualitative Research into Home Medicines Review (HMR) Program to identify and explore gaps in acce"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	20-Nov-07	30-Jun-08	220000.00	=""	="CAMPBELL RES & CONSULTING"	03-Dec-07 10:35 AM	
-="CN49514"	"Provision of a web based counselling intervention service"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Oct-07	28-Feb-08	241302.00	="N/A"	="TURNING POINT ALCOHOL AND DRUG CENT"	03-Dec-07 10:35 AM	
-="CN49515"	"Cabling and Electrical Services for Darwin Office"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	20-Nov-07	30-Nov-07	30908.00	=""	="POWER MAINTENANCE & CONSTRUCTIONS"	03-Dec-07 10:35 AM	
-="CN49516"	"Guarding Services 1.10.07-31.10.07 & 1.9.07-30.9.0"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Oct-07	30-Jun-08	107558.48	=""	="CHUBB PROTECTIVE SERV"	03-Dec-07 10:36 AM	
-="CN49517"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:36 AM	
-="CN49518"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14300.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:36 AM	
-="CN49519"	"Supply of In Confidence File Cover Form 537"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Jun-08	23926.00	=""	="B.H.B. PRINTING PTY LTD"	03-Dec-07 10:36 AM	
-="CN49520"	"Specialist Assistance for financial eval of response to RFP 058/0708"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Jun-08	28463.00	=""	="WALTERTURNBULL PTY LTD"	03-Dec-07 10:36 AM	
-="CN49521"	"Finalising the suit of LiFE framework documents"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Jun-07	30-Nov-07	71115.00	="208/0607"	="NOVA PUBLIC POLICY PTY LTD"	03-Dec-07 10:36 AM	
-="CN49522"	"Supply & installation of new security sysyem for Dawin Office"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Nov-07	16195.00	=""	="CHUBB ELECTRONIC SECURITY PTY LTD"	03-Dec-07 10:36 AM	
-="CN49523"	"Recruitment placement - Corporate Support Branch"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	14660.34	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:37 AM	
-="CN49524"	"Professional Services - Accommodation Strategy"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	30-Jun-08	74662.50	=""	="ATF PCM UNIT TRUST"	03-Dec-07 10:37 AM	
-="CN49525"	"Employment of contractor prior to recruitment round"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jun-08	30000.00	=""	="FRONTIER GROUP AUSTRALIA PTY LIMITE"	03-Dec-07 10:37 AM	
-="CN49526-A1"	"Formative Research for the National HIV/AIDS and Other STIs Campaign"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Jun-08	110000.00	=""	="STANCOMBE RES & PLANNING PTY LTD"	03-Dec-07 10:37 AM	
-="CN49527"	"Contract for the supply of transport ventilator (Oxylog 3000) and training to the Mersey Hospital"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	13-Nov-07	30-Jun-08	28154.50	=""	="DRAEGER MEDICAL AUSTRALIA PTY LIMIT"	03-Dec-07 10:37 AM	
-="CN49528"	"Recruitment Costs for Position of Chief Executive at the Australian Commission on Safety & Quali"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Nov-07	15-Nov-07	49773.90	=""	="PROFILE RAY AND BERNDTSON PTY LTD"	03-Dec-07 10:37 AM	
-="CN49529"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:37 AM	
-="CN49530"	"Provision of advice on pharmaceutical pricing issues."	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	30-Jun-08	30000.00	=""	="DES THRELFALL"	03-Dec-07 10:37 AM	
-="CN49532"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15000.00	="042/0506"	="DLA PHILLIPS FOX"	03-Dec-07 10:37 AM	
-="CN49533"	"COEP - OATSIH/NTECC PENRYHN Various Works"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	15-Nov-07	30-Nov-07	13650.22	=""	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:38 AM	
-="CN49534"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	18000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:38 AM	
-="CN49531"	"Mobile Voice Services"	="Civil Aviation Safety Authority"	03-Dec-07	="Communications Devices and Accessories"	15-Nov-07	30-Jun-09	92400.00	="06/241-01"	="Telstra Corporation"	03-Dec-07 10:38 AM	
-="CN49535"	"Supply and Install Voice Services for Francis Chambers"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Nov-07	30-Jun-08	30848.00	=""	="NEC BUSINESS SOLUTIONS LTD"	03-Dec-07 10:38 AM	
-="CN49536"	"Administrative staff to process NICNAS notificatio and assessment applications."	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	25-Sep-07	01-Feb-08	22370.00	=""	="VEDIOR ASIA PACIFIC PTY LTD"	03-Dec-07 10:38 AM	
-="CN49537"	"development of Guidelines for AOD frontline worker for the treatment of Methamphetamine use"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Apr-08	118811.00	="337/0607"	="TURNING POINT ALCOHOL AND DRUG CENT"	03-Dec-07 10:38 AM	
-="CN49538"	"Electricity Supply"	="Department of Health and Ageing"	03-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	01-Jul-07	30-Jun-08	29500.00	=""	="ENERGY AUSTRALIA"	03-Dec-07 10:38 AM	
-="CN49539"	"Extension of employee contract.  Vacancy in section due to staff movements."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	29-Apr-08	29000.00	=""	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:38 AM	
-="CN49540"	"Provide Courier pickup & delivery"	="Department of Health and Ageing"	03-Dec-07	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	11060.00	=""	="TNT EXPRESS"	03-Dec-07 10:38 AM	
-="CN49541"	"Audiovisual Equipment Installation & Production Support for the Excellence in ASTI health confer"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Nov-07	23-Nov-07	80004.40	=""	="CARILLON CONFERENCE MANAGEMENT"	03-Dec-07 10:38 AM	
-="CN49542"	"June 2007 assessment charges from MoU for environmental assessments for NICNAS for 2006-07."	="Department of Health and Ageing"	03-Dec-07	="Environmental Services"	01-Jul-06	30-Nov-07	64693.20	=""	="DEPARTMENT OF ENVIRONMENT"	03-Dec-07 10:38 AM	
-="CN49543"	"Production and distribution of Postcards for  2007 World AIDS Day resources"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Jun-08	12375.00	=""	="AVANT CARD PTY LIMITED"	03-Dec-07 10:38 AM	
-="CN49544"	"Courier pickup & deliver Daily Banking & return"	="Department of Health and Ageing"	03-Dec-07	="Paper Materials and Products"	01-Jul-07	30-Jun-08	11060.00	=""	="SNAP COURIER SERVICES"	03-Dec-07 10:38 AM	
-="CN49545"	"contract accountant for WA OATSIH"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	22-Oct-07	21-Dec-07	22500.00	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:39 AM	
-="CN49546"	"Printing (including pre-press) of NICNAS Annual Report 2006-07 + delivery of some"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	18-Oct-07	30-Nov-07	23100.00	=""	="THE PRODUCTION CENTRE"	03-Dec-07 10:39 AM	
-="CN49547"	"Editorial, graphic design services in respect of the report of the National Clinical Taskforce."	="Department of Health and Ageing"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	22-Nov-07	24-Dec-07	19000.00	=""	="AMPERSAND EDITORIAL & DESIGN"	03-Dec-07 10:39 AM	
-="CN49548"	"SOlve Projects kitchen contract 1885-C1"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Nov-07	30-Jun-08	26378.99	=""	="SOLVE PROJECT MANAGEMENT P/L"	03-Dec-07 10:39 AM	
-="CN49549"	"Contracting support on Patient  ID & other program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	15-Oct-07	14-Jan-08	29700.00	=""	="SPENCERSMITH AND ASSOCIATES PTY LTD"	03-Dec-07 10:39 AM	
-="CN49550"	"TGA OGTR SLA for Financil & Other Services 2007-08"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	311164.70	=""	="THERAPEUTIC GOODS ADMINISTRATION"	03-Dec-07 10:39 AM	
-="CN49551"	"Drafting of  Ministerial Determinations for Health Insurance (Dental Services) Determination 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	08-Aug-07	19-Nov-07	56038.40	=""	="ATTORNEY-GENERALS DEPARTMENT"	03-Dec-07 10:39 AM	
-="CN49552"	"Airfare for NICNAS Staff from September to October"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	03-Sep-07	05-Nov-07	16009.66	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	03-Dec-07 10:39 AM	
-="CN49553"	"Conference org. serv. for Nat. Abor. &Torres Str. Islander Sexual Health Promotion Workshop."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Nov-07	01-Jun-08	54000.00	="."	="AUSTRALASIAN SOCIETY FOR HIV MEDICI"	03-Dec-07 10:39 AM	
-="CN49554"	"Electronic Media information relating to NICNAS"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	30-Jun-08	23100.00	=""	="MEDIA MONITORS PTY LIMITED"	03-Dec-07 10:39 AM	
-="CN49555"	"Temporary Staff Placement - Radiation Oncology"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	23-Nov-07	23-Dec-07	11536.14	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:39 AM	
-="CN49557"	"Printing Parents Booklet x 16 Languages"	="Department of Health and Ageing"	03-Dec-07	="Published Products"	11-Oct-07	23-Nov-07	27637.00	=""	="PMP COMMUNICATIONS LTD"	03-Dec-07 10:39 AM	
-="CN49558"	"Service level agreement w/the DEWR-the schedule specifying the serv & funding arrangements 07/08"	="Department of Health and Ageing"	03-Dec-07	="Environmental Services"	24-Oct-07	30-Jun-08	580195.00	=""	="DEPARTMENT OF ENVIRONMENT"	03-Dec-07 10:39 AM	
-="CN49559"	"CGIS Additional Software Purchase."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	95942.00	=""	="ESRI-AUSTRALIA PTY LTD"	03-Dec-07 10:39 AM	
-="CN49560"	"White Pages Listing Jan08-Dec08"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	27-Nov-07	31-Dec-08	118357.80	=""	="TELSTRA"	03-Dec-07 10:39 AM	
-="CN49561"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:40 AM	
-="CN49562"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	41500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:40 AM	
-="CN49563-A1"	"Identity Management and Directory (IM&DS) review"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	26-Nov-07	30-Dec-07	49060.00	=""	="SMS CONSULTING GROUP LTD"	03-Dec-07 10:40 AM	
-="CN49564"	"Production and Supply of resources for 2007 WAD"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jan-08	79996.74	=""	="PERSONAL CREATIONS"	03-Dec-07 10:40 AM	
-="CN49565"	"Test Manager/Analyst for the Community Pharmacy Application System (CPAS) Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	31-Mar-08	70400.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	03-Dec-07 10:40 AM	
-="CN49566"	"Senior Oracle/Web Application Developer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-May-08	84760.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:40 AM	
-="CN49567"	"System Testing  and guidance/mentoring departments tester(s) for the PMIS Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	27-Jun-08	231660.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:40 AM	
-="CN49568"	"Proprety Lease- Bass House Devonport"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Sep-07	02-Mar-08	24000.00	=""	="THE TRUSTEE FOR OVERTON INVESTMENT"	03-Dec-07 10:41 AM	
-="CN49569"	"Property Lease- Cascom Centre Level 1 Stage 5"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-09	618608.10	=""	="TRINITY PROPERTY TRUST"	03-Dec-07 10:41 AM	
-="CN49570"	"Property Lease- Cascom Centre Level 2 Stage 5"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-09	124370.04	=""	="TRINITY PROPERTY TRUST"	03-Dec-07 10:41 AM	
-="CN49571"	"Provide Internet Services for the month of Oct 07"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	15-Dec-07	224310.63	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	03-Dec-07 10:41 AM	
-="CN49572"	"IT support and services for Medicarewiz"	="Department of Health and Ageing"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-09	146520.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	03-Dec-07 10:41 AM	
-="CN49574"	"eHealth workshop & facilitation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Aug-07	31-Dec-07	10443.00	=""	="CARLA CRANNY AND ASSOCIATES PTY."	03-Dec-07 10:41 AM	
-="CN49575"	"Testing Services of the PBS Reform Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	13613.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:41 AM	
-="CN49573"	"Temporary Staff - Financial Controller"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	05-Nov-07	16-Nov-07	14850.00	="07/020-02"	="MaxNetwork Pty Ltd"	03-Dec-07 10:41 AM	
-="CN49576"	"Membership for the Gartner Executive Programs"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Sep-08	66770.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	03-Dec-07 10:41 AM	
-="CN49577"	"Property Lease- 10 Corrina Street  Woden"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Sep-10	1724258.89	=""	="GASSON PTY LIMITED"	03-Dec-07 10:42 AM	
-="CN49578"	"Java Application Developer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	30-Jun-08	126720.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	03-Dec-07 10:42 AM	
-="CN49579"	"Data Analyst/Designer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jun-08	96096.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	03-Dec-07 10:42 AM	
-="CN49580"	"Registration of Pharmaceutical Benefits Scheme PBS Legislative Instruments"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	76000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	03-Dec-07 10:42 AM	
-="CN49581"	"Assignment - National Manager TGA"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	30432.60	=""	="BOYDEN INTERNATIONAL"	03-Dec-07 10:42 AM	
-="CN49582"	"Supply & Install Access Control System Casurina NT"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	10-Aug-07	30-Jun-08	14916.00	=""	="CHUBB ELECTRONIC SECURITY"	03-Dec-07 10:42 AM	
-="CN49583"	"Voice Services for Edeavour House, Manuka"	="Department of Health and Ageing"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	30-Jun-08	25065.16	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 10:42 AM	
-="CN49584"	"workshop facilitation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	14-Dec-07	42000.00	=""	="ROBERT GRIEW PTY LTD"	03-Dec-07 10:42 AM	
-="CN49585"	"Recruitment engagement - The Way Forward Program"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	15-Dec-07	99520.00	="RFT"	="CPT GLOBAL LIMITED"	03-Dec-07 10:43 AM	
-="CN49586"	"Development of Communication Plans for The Way Forward Program"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	24-Aug-07	15-Dec-07	163176.20	="RFT"	="RAVE COMMUNICATION PTY LTD"	03-Dec-07 10:43 AM	
-="CN49587"	"Recruitment engagement - Delivery Support Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	17-Oct-07	18-Apr-08	113760.00	="RFT"	="CPT GLOBAL LIMITED"	03-Dec-07 10:43 AM	
-="CN49588"	"Recruitment placement - Secretariat Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	04-Oct-07	03-Jan-08	39600.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	
-="CN49589"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	23-Dec-07	30365.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	
-="CN49590"	"Recruitment placement - Communication Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Feb-08	22672.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	
-="CN49591"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	15-Apr-08	16935.00	="RFT"	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:43 AM	
-="CN49592"	"Analysis of Iodine Addition to Salt for Bread Making and Supplementation Programs"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	26-Nov-07	39600.00	="357/0506"	="UNIVERSITY OF TECHNOLOGY SYDNEY"	03-Dec-07 10:43 AM	
-="CN49593"	"OATSIH Temp Staff"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	20000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:44 AM	
-="CN49594"	"Supply & Install Furniture Items - 10 Corrina St"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	23-Nov-07	30-Jun-08	22770.00	=""	="AURORA OFFICE FURNITURE"	03-Dec-07 10:44 AM	
-="CN49595"	"Undertake mail out of the 1 November 2007 MBS Dental Services Book and fact sheet to dentists."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	11-Oct-07	30-Nov-07	10652.24	=""	="AUSTRALIAN DENTAL ASSOCIATION INC"	03-Dec-07 10:44 AM	
-="CN49596"	"Recruitment placement  - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Sep-07	07-Dec-07	22021.00	="RFT"	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:44 AM	
-="CN49597"	"General Printing - Further information for residents or their nominees"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-Sep-07	14-Nov-07	18390.90	=""	="PARAGON PRINTERS"	03-Dec-07 10:44 AM	
-="CN49598"	"Temporary staff"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Jun-08	30000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:44 AM	
-="CN49599"	"Drug Utilisation Sub Committee data collection for 07-08"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	206708.04	=""	="THE PHARMACY GUILD OF AUSTRALIA"	03-Dec-07 10:44 AM	
-="CN49600"	"NEC Agent 99 helpdesk voice solution"	="Department of Health and Ageing"	03-Dec-07	="Engineering and Research and Technology Based Services"	24-May-07	30-Jun-08	34100.00	=""	="NEC BUSINESS SOLUTIONS LTD"	03-Dec-07 10:44 AM	
-="CN49601"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	150000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:44 AM	
-="CN49602"	"Temporary staff"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Aug-07	30-Jun-08	25000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:45 AM	
-="CN49603"	"po 4500041656 has been cancelled due to 10 digit cost centre change"	="Department of Health and Ageing"	03-Dec-07	="Paper Materials and Products"	11-Sep-07	30-Jun-08	35574.85	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	03-Dec-07 10:45 AM	
-="CN49604"	"Pre-employment exams"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Aug-07	30-Jun-08	10000.00	=""	="HEALTH FOR INDUSTRY"	03-Dec-07 10:45 AM	
-="CN49605"	"To support the implementation of 4CPA and PBS Reforms including DAA, PMP & Facilitators Program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Aug-07	30-Jun-08	46000.00	=""	="LENNON, BRETT ANTHONY"	03-Dec-07 10:45 AM	
-="CN49606"	"provision of 14 tympanometers for use by Child Health Check teams"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	26-Nov-07	31-Jan-08	74916.65	=""	="TERRITORY SURGICAL SUPPLIES"	03-Dec-07 10:45 AM	
-="CN49607"	"SES recruitment support for 2 SES Band 1 positions"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	30-Nov-07	24750.00	=""	="PAPER SHUFFLE PTY LTD"	03-Dec-07 10:45 AM	
-="CN49608"	"Payment for newspapers"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	25-Aug-07	30-Jun-08	11180.18	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:45 AM	
-="CN49609"	"two day conference is planned for late May 2008 and will be held in Sydney"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Aug-07	27-Jun-08	290000.00	="RFT 403/0607"	="INTERNATIONAL CONFERENCE & EVENTS"	03-Dec-07 10:45 AM	
-="CN49610"	"OATSIH Temp Staff"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Oct-07	30-Jun-08	20000.00	=""	="WESTAFF (AUSTRALIA) PTY LTD"	03-Dec-07 10:46 AM	
-="CN49611"	"Tempory staff placement"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Sep-07	31-Jan-08	10800.00	=""	="THE GREEN & GREEN GROUP PTY LIMITED"	03-Dec-07 10:46 AM	
-="CN49612"	"Accommodation for Drug and Alcohol Teams in Katherine, NT"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	31-Dec-07	13710.00	=""	="ST ANDREWS SERVICED APARTMENTS"	03-Dec-07 10:46 AM	
-="CN49613"	"Indigenouse Coaching Services"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-08	10248.55	=""	="PEOPLE & STRATEGY (ACT) PTY LTD"	03-Dec-07 10:46 AM	
-="CN49614"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:46 AM	
-="CN49615"	"Cost Analysis of Safety and Quality Accreditation in the Australian Health System"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	02-Oct-07	31-Dec-07	45100.00	=""	="GLENN P APPLEYARD"	03-Dec-07 10:46 AM	
-="CN49616"	"2-3 PIM upgrade for Darwin NTEC"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	31-Oct-07	30-Jun-08	12131.14	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 10:46 AM	
-="CN49617"	"Grant Funding for Consumables for Breakfast and Lunches Re Shared Responsibility Agreement"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	11000.00	=""	="RENMARK PARINGA COMMUNITY CENTRE IN"	03-Dec-07 10:46 AM	
-="CN49618"	"Business Services for BAA"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Jun-08	241150.00	=""	="MAXIMUSSOLUTIONS AUSTRALIA"	03-Dec-07 10:47 AM	
-="CN49619"	"Contractor services for an APS4 to act in the Branch Liaison Officer's position."	="Department of Health and Ageing"	03-Dec-07	="Personal and Domestic Services"	03-Jul-06	14-Nov-07	20000.00	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:47 AM	
-="CN49620"	"National Childrens Nutrition & Physical activity"	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	08-Aug-06	30-Nov-07	328684.15	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	03-Dec-07 10:47 AM	
-="CN49621"	"Implementation of enhancements to the Continuous Quality Improvement Initiative as part of the"	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	09-Nov-06	14-Nov-07	30000.00	=""	="GEVERS GODDARD-JONES PTY LTD"	03-Dec-07 10:47 AM	
-="CN49622"	"Ref 6.1 Financial Reporting"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	12-Jan-07	11-Feb-08	26315.00	="RFQ 022/0607"	="RESOLUTION CONSULTING SERVICES PTY"	03-Dec-07 10:47 AM	
-="CN49623"	"Chlamydia & Gonorrohea testing to reduce STI rates in QLD..."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-06	31-Oct-07	10114.53	=""	="DEPT OF HEALTH QLD  -  QLD BRISBANE"	03-Dec-07 10:47 AM	
-="CN49624"	"Business Services for BAA"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Sep-07	03-Dec-07	25200.00	=""	="MAXIMUSSOLUTIONS AUSTRALIA"	03-Dec-07 10:47 AM	
-="CN49625"	"Costs for Nov 07 PBAC meeting"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	04-Jun-07	30-Nov-07	35942.55	=""	="STAMFORD PLAZA ADELAIDE"	03-Dec-07 10:47 AM	
-="CN49626"	"Provision of Legal Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	120000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	03-Dec-07 10:48 AM	
-="CN49627"	"Development of an 8 minute DVD comprising of 6 case studies collected from a variety of aged care"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	25-Jun-07	08-Nov-07	18608.70	=""	="BEARCAGE PRODUCTIONS"	03-Dec-07 10:48 AM	
-="CN49628"	"Supply of colour photocopier"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Jul-07	30-Jun-08	10000.00	=""	="FUJI XEROX AUST PTY LTD"	03-Dec-07 10:48 AM	
-="CN49629"	"Provision of Financial Viability Assessments for the 2007 ACAR"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Jul-07	30-Nov-07	55000.00	="343/0607"	="BENTLEYS MRI (QLD) PTY LTD"	03-Dec-07 10:48 AM	
-="CN49630"	"Provide Data Analyst, Data Modelling, Data Design and other related Services."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Jul-07	30-Jun-08	72445.00	=""	="POST MERIDIAN"	03-Dec-07 10:48 AM	
-="CN49631"	"Business Analyst  Services to review, report and implement recommendations to the IT Systems"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	03-Nov-07	30-Jun-08	192390.00	=""	="AVIKO PTY. LIMITED"	03-Dec-07 10:48 AM	
-="CN49632"	"Work requirements under the National Mental Health Plan and COAG Mental Health related activites"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Jul-07	22-Nov-07	12650.00	=""	="O'HARA, MICHAEL"	03-Dec-07 10:48 AM	
-="CN49633"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	03-Dec-07	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	12150.00	="2290405"	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:49 AM	
-="CN49634"	"Office relocations"	="Department of Health and Ageing"	03-Dec-07	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	23615.33	="2290405"	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:49 AM	
-="CN49635"	"BSS Data Warehousing Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	19-Nov-07	31812.00	="161/034"	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 10:49 AM	
-="CN49636"	"consultancy contract for general advice on HACC workforce strategy development"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Nov-07	30-Jun-08	70000.00	=""	="ROBERT GRIEW PTY LTD"	03-Dec-07 10:49 AM	
-="CN49637"	"Provision of CCTV Coverage to Albermale Building"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	30-Jun-08	21439.00	=""	="HONEYWELL LTD"	03-Dec-07 10:49 AM	
-="CN49638"	"Item for National Medicine Stockpile"	="Department of Health and Ageing"	03-Dec-07	="Drugs and Pharmaceutical Products"	24-Aug-07	30-Jun-08	1185840.00	=""	="ASPEN PHARMACARE AUSTRALIA  PTY LTD"	03-Dec-07 10:49 AM	
-="CN49640"	"Aged Care Complaints Investigaton Procedures Scheme Procedures Manual"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Oct-07	31-Dec-07	21075.00	=""	="LASERCOLOUR DIGITAL LC DIGITAL"	03-Dec-07 10:49 AM	
-="CN49641"	"HealthInsite strategic planning"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	23320.00	=""	="PALM CONSULTING GROUP PTY LTD"	03-Dec-07 10:49 AM	
-="CN49642"	"Printing of Z-cards for Private Health Insurance communications campaign"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Sep-07	30-Nov-07	17677.00	=""	="GSI MEDIA PTY LTD"	03-Dec-07 10:50 AM	
-="CN49639"	"Consultancy into Inventory Management - Process Mapping"	="Civil Aviation Safety Authority"	03-Dec-07	="Business intelligence consulting services"	20-Sep-07	19-Nov-07	19800.00	="001/29"	="Total Decision Support Pty Ltd"	03-Dec-07 10:50 AM	
-="CN49643"	"Fit testing of P2 respirators"	="Department of Health and Ageing"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	01-Sep-07	30-Nov-07	118888.00	=""	="TYCO AUSTRALIA PTY LIMITED T/AS"	03-Dec-07 10:50 AM	
-="CN49644"	"Supply and storage of personal protective equipment"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-10	2405894.60	="064/0607"	="HOLYMAN SHIPPING SERVICES PTY LIMIT"	03-Dec-07 10:50 AM	
-="CN49645"	"Engagement of Staff in Budget Management Section"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	14-Feb-08	44473.01	=""	="THE GREEN & GREEN GROUP PTY LIMITED"	03-Dec-07 10:50 AM	
-="CN49646"	"Contract for Temp to assist with DAA Data Entry of Registraitons"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Nov-07	10088.10	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:50 AM	
-="CN49647"	"Professional recruitment services associated with the 2008 Graduate Program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	05-Nov-07	30-Nov-07	11011.00	=""	="EFFECTIVE PEOPLE PTY LTD"	03-Dec-07 10:50 AM	
-="CN49648"	"Fee for executive fellows program 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	24530.00	=""	="The Australia and New Zealand Schoo"	03-Dec-07 10:50 AM	
-="CN49649"	"National Skin Cancer Awareness Campaign - Phase II Tracking Research"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	03-Apr-08	122111.00	=""	="EUREKA STRATEGIC RESEARCH"	03-Dec-07 10:50 AM	
-="CN49650"	"Advertisements for Tenders - DAA & PMP RFT"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Jul-07	13-Nov-07	18825.68	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	
-="CN49651"	"Provision of promotional material for around Aust 40 days walking challenge"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	30-Jun-08	666600.00	=""	="INTANDEM EVAN EVANS"	03-Dec-07 10:51 AM	
-="CN49652"	"Legal advice on intergovernmental Agreement - Registration and Accreditation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	04-Sep-07	30-Nov-07	11711.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:51 AM	
-="CN49653"	"Advertising of improving Sexual Health in Youth Project request for tender."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Mar-08	01-Jun-10	21931.21	="REQUEST FOR TENDER"	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	
-="CN49654"	"SAS Data Integration - Services Statement of Work"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	31-Jan-08	39710.00	=""	="SAS INSTITUTE AUSTRALIA PTY. LIMITE"	03-Dec-07 10:51 AM	
-="CN49655"	"Supply of Q Fever vaccine, Waikerie, South Australia"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Nov-07	30-Jun-08	20691.00	=""	="CSL BIOTHERAPIES PTY LTD"	03-Dec-07 10:51 AM	
-="CN49656"	"Print media advertising for the Medical Rural Bonded Scholarship Scheme"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	33893.93	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	
-="CN49657"	"Accommodation for the National Excellence Awards"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	01-Nov-07	30-Jun-08	20820.00	=""	="RYDGES WORLD SQUARE SYDNEY"	03-Dec-07 10:51 AM	
-="CN49658"	"Provide Internet Services for the month of Sep 07"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	199860.43	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	03-Dec-07 10:52 AM	
-="CN49659"	"Supply and Install 10 x Electronic Whiteboards 1st Floor 10 Corinna St"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	30-Jun-08	13485.01	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Dec-07 10:52 AM	
-="CN49660"	"Provide business analysist support for the ACCMIS redevelopment project"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Oct-07	18-Jan-08	107737.69	=""	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:52 AM	
-="CN49661"	"Economics Sub Committee meeting 1.10.07-4.10.07"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	01-Oct-07	01-Nov-07	10322.20	=""	="HILTON MELBOURNE AIRPORT HOTEL"	03-Dec-07 10:52 AM	
-="CN49662"	"Temporary receptionist for L7 Offices"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Oct-07	15-Jan-08	22000.00	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:52 AM	
-="CN49663-A1"	"Advice on LSL and RL liabilities in 2007-2008"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF THE TREASURY"	03-Dec-07 10:52 AM	
-="CN49664"	"National Tobacco Survey 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Nov-07	29-Feb-08	317900.00	=""	="THE SOCIAL RESEARCH CENTRE PTY LTD"	03-Dec-07 10:52 AM	
-="CN49666"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	26500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:52 AM	
-="CN49667"	"Outer Metropolitan Relocation Grants Scheme print media advertising"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Aug-07	15-Nov-07	19525.00	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:53 AM	
-="CN49668"	"Financial Administration & Advisory services for Birpi Aboriginal Corporation Medical Centre"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jan-08	87827.00	="148/0506"	="AUSTRALIAN INDIGENOUS BUSINESS"	03-Dec-07 10:53 AM	
-="CN49669"	"Rotavirus Pads and Guidelines Booklet"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	30-Nov-07	39517.50	=""	="BLUE STAR PRINT"	03-Dec-07 10:53 AM	
-="CN49670"	"Redevelopment of the Aged & Community Care Management Information System (ACCMIS)"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Oct-07	31-Dec-07	393000.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	03-Dec-07 10:53 AM	
-="CN49671"	"Purchase of Attenuators"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jun-08	174653.60	=""	="FILTERFIT PTY LTD"	03-Dec-07 10:53 AM	
-="CN49672"	"2006/07 workers' comp premium adjustment"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	522306.00	=""	="COMCARE"	03-Dec-07 10:53 AM	
-="CN49673"	"Hearing Services Program Information Booklet"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	08-Nov-07	30-Jun-08	15580.40	="HEARING SERVICES PROGRAM BOOKLET"	="PARAGON PRINTERS"	03-Dec-07 10:53 AM	
-="CN49674"	"Stills Photography Services to support the Audio- visual presentation at the Excellence Awards"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Nov-07	23-Nov-07	39028.00	=""	="THE PRODUCTION HUB"	03-Dec-07 10:54 AM	
-="CN49675"	"Annual Maintenance fee for mobile X Licence"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-08	12540.00	=""	="RANDOM COMPUTING SERVICES PTY. LTD."	03-Dec-07 10:54 AM	
-="CN49676"	"B777 Project Type Specialist"	="Civil Aviation Safety Authority"	03-Dec-07	="Aircraft"	03-Sep-07	31-Mar-09	50000.00	="07/045"	="Tanner Menzies Pty Ltd (Brisbane)"	03-Dec-07 10:54 AM	
-="CN49680"	" Colour Multi Function Device "	="Civil Aviation Safety Authority"	03-Dec-07	="Photocopiers"	18-Sep-07	18-Sep-07	13706.00	="07/061"	="Ricoh Australia Pty Ltd"	03-Dec-07 11:04 AM	
-="CN49681-A3"	"Staff Grievance Investigate Services"	="CRS Australia"	03-Dec-07	="Human resources services"	02-Nov-07	11-Mar-11	90333.33	=""	="HBA Consulting"	03-Dec-07 11:04 AM	
-="CN49679"	"ISOPROPYL ALCOHOL TECHNICAL"	="Defence Materiel Organisation"	03-Dec-07	="Chemical adhesives"	08-Aug-07	28-Oct-07	12883.20	=""	="CHEM-SUPPLY"	03-Dec-07 11:05 AM	
-="CN49682"	" Professional Services - Project Manager "	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	01-Nov-07	01-May-09	140000.00	="07/087-00"	="Chandler Macleod Ltd (ACT)"	03-Dec-07 11:09 AM	
-="CN49684"	"Venue hite, catering"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Restaurants and catering"	24-Aug-07	07-Sep-07	11100.00	=""	="HYATT HOTEL CANBERRA"	03-Dec-07 11:20 AM	
-="CN49686"	"Service contractor - ICAO audit - Training Framework"	="Civil Aviation Safety Authority"	03-Dec-07	="Business and corporate management consultation services"	05-Nov-07	11-Jan-08	39600.00	="07/089-00"	="Redwan Pty Ltd t/a Thirty South Consulting"	03-Dec-07 11:38 AM	
-="CN49687-A1"	"Refurbishment of Limestone Cottage - an office building located on the National Museum site."	="National Museum of Australia"	03-Dec-07	="Building and Construction and Maintenance Services"	02-Oct-07	21-Dec-07	346535.00	="NMAT0708/01"	="Intrec Management Pty Ltd"	03-Dec-07 11:44 AM	
-="CN49689-A1"	" TRICON SHIPPING AND STORAGE CONTAINERS, MANUFACTURED IN ACCORDANCE WITH SPECIFICATION ARMY (AUST) 6489, QUANTITY 75. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550058 "	="Defence Materiel Organisation"	03-Dec-07	="Containers and storage"	30-Nov-07	07-Mar-08	458875.72	=""	="UNITEAM AUSTRALASIA PTY LTD"	03-Dec-07 11:55 AM	
-="CN49692"	"Lease at Narrabri, NSW"	="Department of Human Services"	03-Dec-07	="Real estate services"	01-Dec-07	29-Mar-12	271414.00	=""	="GE & J McDonald"	03-Dec-07 12:00 PM	
-="CN49693"	"Service contractor - ICAO audit - Training Framework"	="Civil Aviation Safety Authority"	03-Dec-07	="Business and corporate management consultation services"	12-Nov-07	11-Jan-08	47250.00	="07/089-01"	="Han-Bry Pty Ltd"	03-Dec-07 12:01 PM	
-="CN49694"	"Press Clippings - Newspapers"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	31-May-07	30-Oct-07	10400.00	=""	="MEDIA MONITORS Pty Ltd"	03-Dec-07 12:09 PM	
-="CN49695"	"Supply & installation of PABX System"	="Civil Aviation Safety Authority"	03-Dec-07	="Communication equipment installation"	10-Dec-07	28-Feb-08	199062.00	="07/094-00"	="TT Group"	03-Dec-07 12:09 PM	
-="CN49696"	"Document Authoring & Assessment Tool"	="Civil Aviation Safety Authority"	03-Dec-07	="Document management software"	07-Nov-07	29-Feb-08	450000.00	="07/101-00"	="Ice Media Pty Ltd"	03-Dec-07 12:16 PM	
-="CN49699"	"Temporary Staff - OGA Project"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	01-Oct-07	30-Sep-08	182325.00	="07/102-00"	="GMT Canberra Pty Ltd"	03-Dec-07 12:20 PM	
-="CN49700"	"Provision of Cables"	="Civil Aviation Safety Authority"	03-Dec-07	="Communications Devices and Accessories"	29-Nov-07	16-Dec-07	12827.00	="07/104-01"	="Multisystem Communications"	03-Dec-07 12:24 PM	
-="CN49701"	"Press Clippings - Newspapers"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	31-Aug-07	30-Nov-07	10700.00	=""	="MEDIA MONITORS PTY LTD"	03-Dec-07 12:28 PM	
-="CN49400"	"Comcar"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Passenger motor vehicles"	31-Aug-07	31-Oct-07	37000.00	=""	="COMCAR"	03-Dec-07 12:36 PM	
-="CN49702"	" Press Clippings - Newspapers "	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	30-Sep-07	30-Nov-07	12800.00	=""	="MEDIA MONITORING PTY LTD"	03-Dec-07 12:40 PM	
-="CN49703"	"land rover vehicle parts"	="Department of Defence"	03-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	21-Mar-08	16706.13	=""	="LAND ROVER AUSTRALIA"	03-Dec-07 12:48 PM	
-="CN49704-A3"	" Sources of Electronic Business Information "	="Australian Taxation Office"	03-Dec-07	="Library or documentation services"	01-Aug-07	17-Jun-12	61960.00	=""	="Crowne Content Pty Ltd"	03-Dec-07 12:52 PM	
-="CN49705-A2"	"IP Telephony"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	256091.00	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 01:01 PM	
-="CN49706"	"20 X CABINETS"	="Australian Taxation Office"	03-Dec-07	="Furniture and Furnishings"	26-Nov-07	26-Nov-07	22704.00	=""	="ADVANCE METAL PRODUCTS AUST PTY LTD"	03-Dec-07 01:01 PM	
-="CN49708"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	28-Nov-07	06-Nov-08	187616.00	=""	="Encore IT Services Pty Ltd"	03-Dec-07 01:01 PM	
-="CN49711"	"Computer Software"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Computer Equipment and Accessories"	01-Jul-07	01-Aug-08	19200.00	=""	="COMPUTER SCIENCES CORPORATION"	03-Dec-07 01:25 PM	
-="CN49712"	" Electronic Whiteboards "	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Electronic copyboards or accessories"	02-Aug-07	14-Sep-07	59600.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Dec-07 01:36 PM	
-="CN49713"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	29-Nov-07	02-Dec-08	326656.44	=""	="TOTO BUSINESS SOLUTIONS PTY LTD"	03-Dec-07 01:39 PM	
-="CN49714"	"CONSULTING FEES"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Oct-07	22660.50	=""	="AUSTRALIAN POLYGRAPH SERVICES"	03-Dec-07 01:40 PM	
-="CN49715"	"AUDIT FEES"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	27-Nov-07	38500.00	=""	="AUSTRALIAN NATIONAL AUDIT OFFICE"	03-Dec-07 01:40 PM	
-="CN49716"	"PRINTING"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Nov-07	29-Nov-07	12815.00	=""	="BLUE MOON RESEARCH AND PLANNING"	03-Dec-07 01:40 PM	
-="CN49717"	"PRINTING"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	10571.00	=""	="PIRION PTY LTD"	03-Dec-07 01:40 PM	
-="CN49718"	"RECRUITMENT"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	27-Nov-07	11900.97	=""	="Hudson Global Resources (Aust) P/L"	03-Dec-07 01:41 PM	
-="CN49719"	"COMPUTER MAINENANCE"	="Australian Taxation Office"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	20-Nov-07	27500.00	=""	="Lightsource Technologies Aust P/L"	03-Dec-07 01:41 PM	
-="CN49720"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	30-Nov-07	01-Dec-07	110000.00	=""	="Professionals Online Pty Ltd"	03-Dec-07 01:43 PM	
-="CN49721"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	30-Nov-07	01-Jan-09	298584.01	=""	="CANDLE AUSTRALIA PTY LTD"	03-Dec-07 01:43 PM	
-="CN49722"	"Specialist Omegamon Services"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	25-Oct-07	30-Jun-08	21780.00	=""	="CPT GLOBAL LTD"	03-Dec-07 01:43 PM	
-="CN49723"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	05-Nov-07	04-Nov-08	313200.00	=""	="COMPAS PTY LTD"	03-Dec-07 01:43 PM	
-="CN49725"	"Dragon Naturaly Speaking Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	22-Aug-07	21-Aug-08	19222.00	=""	="Voice Perfect Pty Ltd"	03-Dec-07 02:31 PM	
-="CN49726"	"Non Campaign Recruitment Advertising"	="Department of Transport and Regional Services"	03-Dec-07	="Advertising"	01-Nov-07	31-Jan-08	250000.30	="TRS07/382"	="HMA Blaze Pty Ltd"	03-Dec-07 02:31 PM	
-="CN49727"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	03-Dec-07	="Legal services"	11-Aug-06	30-Jun-09	48819.07	="TRS06/175"	="Clayton Utz Canberra"	03-Dec-07 02:31 PM	
-="CN49728"	"Independent review on ATM - Port Mgt"	="Department of Transport and Regional Services"	03-Dec-07	="Environmental management"	23-Nov-07	30-May-08	49875.00	="TRS06/090"	="ARUP PTY LTD"	03-Dec-07 02:31 PM	
-="CN49729"	"Recruitment services"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	05-Nov-07	14-Dec-07	16125.45	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	03-Dec-07 02:31 PM	
-="CN49730"	"Recruitment services"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	19-Nov-07	29-Feb-08	27896.55	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	03-Dec-07 02:32 PM	
-="CN49731"	"Staff Recruitment - EA to Secretary"	="Department of Transport and Regional Services"	03-Dec-07	="Human resources services"	02-Oct-07	31-Dec-07	44000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	03-Dec-07 02:32 PM	
-="CN49732"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	03-Dec-07	="Legal services"	02-Jul-07	30-Nov-07	29761.00	=""	="Gillian Beaumont Recruitment Pty Li"	03-Dec-07 02:32 PM	
-="CN49733"	"Technical Designer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	29-Sep-07	31-Jan-08	139392.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 02:32 PM	
-="CN49734"	"Temporary staff placement"	="Department of Transport and Regional Services"	03-Dec-07	="Human resources services"	23-Nov-07	30-Jun-08	66000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	03-Dec-07 02:32 PM	
-="CN49735"	"Venue Hire - Canberra Convention Centre"	="Department of Transport and Regional Services"	03-Dec-07	="Hotels and lodging and meeting facilities"	27-Nov-07	07-Dec-07	10000.00	=""	="Crowne Plaza Canberra"	03-Dec-07 02:32 PM	
-="CN49736"	"Moss Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Mar-07	30-Apr-07	14461.52	="T2004/0699"	="UNIQUE WORLD PTY LTD"	03-Dec-07 02:32 PM	
-="CN49737"	"Provision of daily headline reporting"	="Department of Transport and Regional Services"	03-Dec-07	="Graphic design"	29-Jun-07	29-Jun-10	44000.00	="TRS06/036"	="Morris Walker"	03-Dec-07 02:32 PM	
-="CN49738"	".NET Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Dec-07	29-Feb-08	45000.00	="T2004/0699"	="ONE PLANET SOLUTIONS PTY LTD"	03-Dec-07 02:33 PM	
-="CN49739"	"PROJECT MANGER"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Dec-07	29-Feb-08	70000.00	="TRS06/017"	="SME GATEWAY LTD"	03-Dec-07 02:33 PM	
-="CN49740"	"SharePoint Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	03-Dec-07	03-Mar-08	99000.00	="TRS06/017"	="SME GATEWAY LTD"	03-Dec-07 02:33 PM	
-="CN49741"	"Public Health Surveillance in the JBT"	="Department of Transport and Regional Services"	03-Dec-07	="Public safety and control"	30-Nov-07	30-Jun-08	56633.00	=""	="Health Protection Service"	03-Dec-07 02:33 PM	
-="CN49742"	"EL 1 Temp TEMP EL1"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	16-Jul-07	30-Jun-08	55499.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	03-Dec-07 02:33 PM	
-="CN49743"	"Provision of mobile library service in"	="Department of Transport and Regional Services"	03-Dec-07	="Information services"	30-Nov-07	30-Jun-08	17833.52	=""	="SHOALHAVEN CITY COUNCIL"	03-Dec-07 02:33 PM	
-="CN49744"	"Provision of Welfare services in JBT"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	30-Nov-07	30-Jun-08	708107.00	=""	="ACT Department of Diability, Housin"	03-Dec-07 02:33 PM	
-="CN49745"	"Temporary Staff  02Jul-21Dec07 APS3"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	28-Nov-07	30-Jun-08	33650.63	="TRS05/251"	="Julia Ross Recruitment Pty Ltd"	03-Dec-07 02:34 PM	
-="CN49746"	"AccessData Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	22-Aug-07	21-Aug-08	21704.00	=""	="Fulcrum Managenment Pty Ltd"	03-Dec-07 02:34 PM	
-="CN49747"	"Provision of cleaning Services at CSA Townsville"	="Child Support Agency"	03-Dec-07	="General building and office cleaning and maintenance services"	30-Nov-07	30-Jun-08	27500.00	=""	="Sharman Property Services"	03-Dec-07 02:36 PM	
-="CN49748"	"Compliant SES conference"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Aug-07	22-Aug-07	11330.00	="06.028"	="Hoffman Donohue P/L"	03-Dec-07 02:36 PM	
-="CN49749"	"Analysts Notebook Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	23-Aug-07	22-Aug-08	52415.00	=""	="Visual Analysis P/L"	03-Dec-07 02:38 PM	
-="CN49753"	" Provision of Laptop PC's and Related Services  Work Order No. 1 "	="CRS Australia"	03-Dec-07	="Computers"	13-Jul-07	06-Aug-07	30322.38	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 02:49 PM	
-="CN49754"	"Annual Maintenance of Genesys G+ SW"	="Australian Taxation Office"	03-Dec-07	="Software maintenance and support"	01-Sep-07	31-Aug-08	169646.00	=""	="NEC Business Solutions /L"	03-Dec-07 02:50 PM	
-="CN49755"	"Performance Testing SW"	="Australian Taxation Office"	03-Dec-07	="Software"	04-Sep-07	21-Aug-08	44998.00	=""	="Hewlwtt packard P/L"	03-Dec-07 02:54 PM	
-="CN49758"	" Provision of Laptop PC's and Related Services  Work Order No. 2 "	="CRS Australia"	03-Dec-07	="Computers"	27-Aug-07	19-Nov-07	102349.50	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 02:57 PM	
-="CN49760"	"Licensing & Maintenance of Transaction Vision Software"	="Australian Taxation Office"	03-Dec-07	="Software"	26-Oct-07	21-Aug-08	1746648.00	=""	="Hewlett Packard"	03-Dec-07 03:03 PM	
-="CN49759"	" Provision of Laptop PC's and Related Services  Work Order No. 3 "	="CRS Australia"	03-Dec-07	="Computers"	31-Oct-07	19-Dec-07	86336.68	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 03:05 PM	
-="CN49761"	"Dialogue Software Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	01-Jul-07	30-Jun-08	214119.00	=""	="IBM Australia Ltd"	03-Dec-07 03:08 PM	
-="CN49762"	"Production of a Video for New Extra's 10th Birthday"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Dec-07	19-Jan-08	11800.00	="56.04"	="Impact Images Australia Pty Ltd"	03-Dec-07 03:25 PM	
-="CN49763"	"Senators Furniture"	="Department of the Senate"	03-Dec-07	="Merchandising furniture and accessories"	22-Nov-07	22-Nov-08	40700.00	=""	="Sturdy Framac"	03-Dec-07 03:31 PM	
-="CN49764"	"Legal advice"	="Department of the Senate"	03-Dec-07	="Legal services"	29-Nov-07	19-Jan-08	20000.00	=""	="Australian Government Solicitor"	03-Dec-07 03:31 PM	
-="CN49766"	" DETECTOR, METALLIC PARTICLE   P/NO B4657P: MC 97484  QUANTITY "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	29-Nov-07	21-Mar-08	13420.50	=""	="AVIAQUIP PTY LTD"	03-Dec-07 03:42 PM	
-="CN49770"	" SHAFT ASSEMBLY, TAIL ROTOR BLADE  P/No 206-040-325-005  QUANTITY 4 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	15-Nov-07	15-Dec-07	12141.01	=""	="HELITECH A DIVISION OF SIKORSKY"	03-Dec-07 03:56 PM	
-="CN49771"	"Pharmaceuticals"	="Defence Materiel Organisation"	03-Dec-07	="Drugs and Pharmaceutical Products"	23-Nov-07	07-Jan-08	12896.92	=""	="Symbion Pharmacy Services"	03-Dec-07 04:00 PM	
-="CN49772"	" GUIDE ASSEMBLY, POPPET  P/No 6852176: MC 63005  QUANTITY 20 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	14-Aug-07	29-Aug-07	15502.08	=""	="AVIALL AUST PTY LTD"	03-Dec-07 04:11 PM	
-="CN49773"	"CPE004248-1 - Design consultation - 0774-1922 - NT Property Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Building construction and support and maintenance and repair services"	01-Jun-07	30-Jun-08	44700.00	="05/0774"	="Woodhead International Pty Ltd"	03-Dec-07 04:18 PM	
-="CN49774"	" BEARING BALL ANNULAR  P/No 206-010-443-001  QUANTITY 3 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	05-Nov-07	10-Jan-08	13944.68	=""	="HELITECH A DIVISION OF SIKORSKY"	03-Dec-07 04:20 PM	
-="CN49775"	"CPE004246 - Project manager - 0774-1921 - NT Property Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Project management"	01-Jun-07	30-Jun-08	25720.00	="05/0774"	="Thinc Projects Australia"	03-Dec-07 04:22 PM	
-="CN49778-A1"	"07/2393 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	03-Dec-07	30-Jun-09	438608.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:26 PM	
-="CN49776-A1"	"07/2394 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-09	399740.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:29 PM	
-="CN49779-A1"	"07/2395 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-09	399740.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:32 PM	
-="CN49781"	"IMU Contract Programmer: IMU-ICT018 Official Order IMU2007/057"	="Department of Veterans' Affairs"	03-Dec-07	="Computer services"	01-Dec-07	30-Nov-08	144540.00	=""	="Frontier Group Australia Pty Ltd"	03-Dec-07 04:35 PM	
-="CN49782"	"IMU Contract Programmer: IMU-ICT079 Official Order IMU2007/056"	="Department of Veterans' Affairs"	03-Dec-07	="Computer services"	01-Dec-07	30-Nov-08	132660.00	=""	="Paxus Australia Pty Ltd"	03-Dec-07 04:35 PM	
-="CN49783-A1"	"Maintenance Services at Surrender Memorial, Cape Wom, Wewak."	="Department of Veterans' Affairs"	03-Dec-07	="Building construction and support and maintenance and repair services"	14-May-07	13-May-09	24067.00	=""	="C & M Engineering Ltd"	03-Dec-07 04:35 PM	
-="CN49784-A1"	"Refurbishment of Sandstone Structure at Lae War Cemetery"	="Department of Veterans' Affairs"	03-Dec-07	="Building construction and support and maintenance and repair services"	01-Oct-07	30-Jun-08	122292.72	=""	="Jasper Swan Stonemasonery Pty Ltd"	03-Dec-07 04:35 PM	
-="CN49786"	" LIGHT COCKPIT, AIRCRAFT  QUANTITY 5  P/No15-0722-3: MC72914 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	15-Nov-07	13-Feb-08	14270.79	=""	="HAWKER PACIFIC"	03-Dec-07 04:37 PM	
-="CN49787"	"07/2448 - Hire of sea vessels"	="Australian Customs and Border Protection Service"	03-Dec-07	="Marine transport"	12-Oct-07	12-Nov-07	153109.44	=""	="Defence Maritime Services"	03-Dec-07 04:43 PM	
-="CN49788"	"CPO017415 - CCTV equipment"	="Australian Customs and Border Protection Service"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	11233.20	=""	="Direct Alarm Supplies"	03-Dec-07 04:43 PM	
-="CN49789-A1"	"06/1338 - Banking transactional services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Banking and investment"	24-Nov-07	23-Nov-11	395000.00	=""	="Westpac Banking Corporation"	03-Dec-07 04:43 PM	
-="CN49790"	"CPO017351 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	25-Sep-07	10413.00	=""	="AusCheck"	03-Dec-07 04:43 PM	
-="CN49791"	"CPO017361 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	03-Oct-07	30-Oct-07	29135.00	=""	="AusCheck"	03-Dec-07 04:43 PM	
-="CN49792-A3"	"06/1715 - Project Management Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Jan-09	500000.00	=""	="Communications Design & Management Pty Ltd"	03-Dec-07 04:44 PM	
-="CN49793-A1"	"07/2164 - Maintenance of facsimile equipment"	="Australian Customs and Border Protection Service"	03-Dec-07	="Office machines and their supplies and accessories"	19-Nov-07	19-Nov-09	80000.00	=""	="TFS Technology"	03-Dec-07 04:44 PM	
-="CN49794"	"CPO017475 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	03-Dec-07	="Clothing"	28-Nov-07	25-Dec-07	16638.00	=""	="Company Co-Ordinates"	03-Dec-07 04:44 PM	
-="CN49795"	"CPO016562 - Supply of Machinery"	="Australian Customs and Border Protection Service"	03-Dec-07	="Industrial Manufacturing and Processing Machinery and Accessories"	01-Nov-07	14-Dec-07	10252.00	=""	="R Moore Equipment Pty Ltd"	03-Dec-07 04:44 PM	
-="CN49796"	"07/2397 - Business services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Human resources services"	22-Oct-07	14-Dec-07	57200.00	=""	="SJN Consulting Pty Ltd"	03-Dec-07 04:44 PM	
-="CN49797"	"06/1481 - Communications services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-11	440588.00	=""	="Department of Defence"	03-Dec-07 04:44 PM	
-="CN49798"	"00004834 - Supply of Brochures/Booklets"	="Australian Customs and Border Protection Service"	03-Dec-07	="Printed media"	30-Nov-06	24-Oct-07	31720.18	=""	="Meta Design Studio"	03-Dec-07 04:44 PM	
-="CN49799"	"07/2265 - Supply and install of vault (CPE004267)"	="Australian Customs and Border Protection Service"	03-Dec-07	="Metal and mineral industries"	29-Nov-07	30-Jun-08	121526.90	=""	="API Security Pty Ltd"	03-Dec-07 04:44 PM	
-="CN49823"	"CPE003370-2 Telecommunications Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	15205.08	=""	="Electrotech Australia"	03-Dec-07 04:47 PM	
-="CN49824"	"CPE004250-1 Fuel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Fuels"	21-Nov-07	21-Nov-07	21839.71	=""	="Southport Yacht Club"	03-Dec-07 04:47 PM	
-="CN49825"	"CPE004240-1 Fuel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Fuels"	14-Nov-07	14-Nov-07	13634.00	=""	="Hamilton Island Enterprises Ltd"	03-Dec-07 04:47 PM	
-="CN49832"	"CPO016400 - Planning and Contract Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Dec-07	44260.00	=""	="Unisys Australia Pty Ltd (ACT)"	03-Dec-07 04:48 PM	
-="CN49833"	"07/2422 - Training Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Education and Training Services"	12-Nov-07	23-Nov-07	42900.00	=""	="United Group HR Services Pty Ltd"	03-Dec-07 04:48 PM	
-="CN49834"	"07/2171 - Software support"	="Australian Customs and Border Protection Service"	03-Dec-07	="Computer services"	29-Jun-07	30-Jun-08	131068.41	=""	="Hewlett Packard Australia"	03-Dec-07 04:49 PM	
-="CN49835"	"CPE002969-5 - FRLI Legislative Instruments"	="Australian Customs and Border Protection Service"	03-Dec-07	="Legal services"	01-Oct-07	31-Oct-07	12319.61	=""	="Attorney Generals Department"	03-Dec-07 04:49 PM	
-="CN49837"	" NSN 430-01-355-5901, Tube Couplings "	="Defence Materiel Organisation"	03-Dec-07	="Aerospace systems and components and equipment"	29-Nov-07	21-Dec-07	10327.68	=""	="Milspec Services Pty Ltd"	03-Dec-07 05:14 PM	
-="CN49710"	" POCKET, AMMUNITION MAGAZINE POUCH "	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	16247.00	=""	="ANCAMARABA PTY LTD"	04-Dec-07 07:58 AM	
-="CN49839"	"Patch, Leg, Mollee Attachment"	="Defence Materiel Organisation"	04-Dec-07	="Patch panel"	03-Dec-07	31-Jan-08	32780.00	="CC1SI9"	="ADVENTURE ONE PTY LTD"	04-Dec-07 09:03 AM	
-="CN49840"	"Holsters & Chest Webbing"	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	122980.00	="CC1SIC"	="HUNTERS EDGE"	04-Dec-07 09:24 AM	
-="CN49842"	"Printing of NAT10129-12.2007 - The 2008 ATO Story calendar. Qty: 23,000"	="Australian Taxation Office"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	14-Dec-07	13446.40	="06.030"	="Paragon Printers"	04-Dec-07 09:35 AM	
-="CN49843-A4"	"Facilitation of Development of Murray-Darling Basin Project Methodology and Evaluation Approach"	="Centrelink"	04-Dec-07	="Strategic planning consultation services"	23-Nov-07	30-Jun-08	45000.00	=""	="Participatory Corporate Development P/L T/A Richard Kelloway and Associates"	04-Dec-07 09:40 AM	
-="CN49844"	" PURCHASE OF QTY 50 TRAVEL BAGS "	="Department of Defence"	04-Dec-07	="Luggage"	18-Sep-07	02-Oct-07	11000.00	=""	="MAINPEAK"	04-Dec-07 10:05 AM	
-="CN49845"	"PURCHASE OF QTY 90 SPECIAL CLIMBING BOOTS"	="Department of Defence"	04-Dec-07	="Footwear"	29-Oct-07	14-Nov-07	31185.00	=""	="MAINPEAK"	04-Dec-07 10:13 AM	
-="CN49847"	"Actuarial Services"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Service Industry Machinery and Equipment and Supplies"	01-Jun-07	31-Jul-07	12600.00	=""	="AUST GOVERNMENT ACTUARY"	04-Dec-07 10:43 AM	
-="CN49849"	"Adoption study"	="Australian Centre for International Agricultural Research"	04-Dec-07	="Adoption services"	21-Nov-07	28-Feb-08	12166.00	=""	="Dr Stephen Blaber"	04-Dec-07 10:49 AM	
-="CN49848"	"HOLSTER PISTOL"	="Defence Materiel Organisation"	04-Dec-07	="Light weapons and ammunition"	24-Oct-07	04-Feb-08	34650.00	=""	="AUST WEBGEAR"	04-Dec-07 10:56 AM	
-="CN49851"	"Police secondee salary recoup"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	556541.06	=""	="Australian Federal Police"	04-Dec-07 11:58 AM	
-="CN49852"	" GUM TEST EQUIPMENT EXISTANT AND TRAINING "	="Defence Materiel Organisation"	04-Dec-07	="Completion test equipment"	26-Jun-07	29-Nov-07	51753.90	=""	="H D SCIENTIFIC SUPPLIES PTY LTD"	04-Dec-07 12:02 PM	
-="CN49769"	"Public relations to support the Murray-Darling Basin Campaign."	="Department of Human Services"	04-Dec-07	="Public relations programs or services"	03-Sep-07	30-Jun-08	80000.00	=""	="Cox Inall Communications"	04-Dec-07 12:03 PM	
-="CN49853"	"Office Fitout "	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Furniture and Furnishings"	26-Oct-07	30-Dec-07	53600.00	=""	="CITE OFFICE DESIGN PTY LTD"	04-Dec-07 12:05 PM	
-="CN49854"	"Recruitment - Software Developer"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	16-Nov-07	30-Jun-08	130944.00	=""	="Tarakan Consulting Pty Ltd"	04-Dec-07 12:11 PM	
-="CN49855-A1"	" Recruitment - Project Manager "	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jan-08	31-Dec-08	269060.55	=""	="Hudson Global Resources"	04-Dec-07 12:15 PM	
-="CN49856"	"Professional Software Development Kit"	="Australian Crime Commission"	04-Dec-07	="Software"	28-Nov-07	28-Nov-07	77000.00	=""	="BCT Group Pty Ltd"	04-Dec-07 12:27 PM	
-="CN49858"	" Blade Servers "	="Australian Crime Commission"	04-Dec-07	="High end computer servers"	27-Nov-07	27-Nov-07	209205.77	="ACC-07/286"	="One Planet Solutions Pty Ltd"	04-Dec-07 12:40 PM	
-="CN49857"	"INDUCTOR, FOAM MAKING INLINE, PORTABLE, C/W RUBBER HOSE & TIP TUBE"	="Defence Materiel Organisation"	04-Dec-07	="Inductors"	30-Nov-07	01-Feb-08	26241.60	=""	="CHUBB FIRE SAFETY LTD"	04-Dec-07 12:42 PM	
-="CN49859"	"Purchase of 'B' class cabinets for National Office"	="Australian Taxation Office"	04-Dec-07	="Accommodation furniture"	10-May-07	21-Sep-07	38408.00	=""	="Planex Sales Pty Ltd"	04-Dec-07 01:09 PM	
-="CN49860"	"Provision of supply of  Labeling tapes"	="Department of Parliamentary Services"	04-Dec-07	="Labelling tapes"	03-Dec-07	31-Dec-07	11407.00	=""	="Prodata P/L"	04-Dec-07 01:13 PM	
-="CN49861"	"Storage of  VideoTapes for Broadcasting Contract (DPS04035 )"	="Department of Parliamentary Services"	04-Dec-07	="Storage"	03-Dec-07	30-Jun-08	22000.00	=""	="Iron Mountain Australia P/L"	04-Dec-07 01:13 PM	
-="CN49862"	"Provision of Carpet laying and Floorcovering Services"	="Department of Parliamentary Services"	04-Dec-07	="Carpeting"	30-Nov-07	31-Dec-07	27702.40	=""	="Chesta's Floors"	04-Dec-07 01:13 PM	
-="CN49863"	"Provision of supply of Nematodes for Landscape Services (Pest Accounts)"	="Department of Parliamentary Services"	04-Dec-07	="Lawn care services"	29-Nov-07	30-Dec-07	10587.50	=""	="Ecogrow Australia Pty Ltd"	04-Dec-07 01:13 PM	
-="CN49864"	"water Inspection and treatment services Contract (JH00051M )"	="Department of Parliamentary Services"	04-Dec-07	="Water testing and conservation and ecology"	26-Nov-07	07-Dec-07	17938.26	=""	="Ecolab Water Care Services Pty Ltd"	04-Dec-07 01:13 PM	
-="CN49865"	"Provision of Project Mangement Training Services Contract (DPS07049 )"	="Department of Parliamentary Services"	04-Dec-07	="Education and Training Services"	22-Nov-07	28-Dec-07	104425.20	=""	="Tanner James Management"	04-Dec-07 01:14 PM	
-="CN49866"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	04-Dec-07	="Environmental security control services"	28-Nov-07	28-Dec-07	33376.75	=""	="Honeywell Limited"	04-Dec-07 01:14 PM	
-="CN49867"	"Provision of supply of  X -Ray Hire"	="Department of Parliamentary Services"	04-Dec-07	="Security and control equipment"	18-Oct-07	28-Dec-07	24750.00	=""	="Smiths Detection Australia P/L"	04-Dec-07 01:14 PM	
-="CN49868"	"Provision of Monitoring Fire Alarms at Parliament House Contract DPS05051)"	="Department of Parliamentary Services"	04-Dec-07	="Fire alarm maintenance or monitoring"	04-Dec-07	30-Jun-08	44667.15	=""	="Aust Federal Police"	04-Dec-07 01:14 PM	
-="CN49869"	"Supply of Stationary & Office Equipment"	="Department of Parliamentary Services"	04-Dec-07	="Stationery"	16-Nov-07	22-Mar-08	11838.70	=""	="Corporate Express"	04-Dec-07 01:14 PM	
-="CN49870"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	82500.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	
-="CN49871"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Building cleaning services"	04-Dec-07	30-Jun-08	44000.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	
-="CN49872"	"Industrail Cleaning & relateded Services Contract (JH01037)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	423500.00	=""	="Canberra Queanbeyan Cleaning"	04-Dec-07 01:14 PM	
-="CN49873"	"Provision of Ongoing support services for mySAP (Contract  DPS06064)"	="Department of Parliamentary Services"	04-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jul-07	30-Jun-08	16967.51	=""	="Supply Chain Consulting Pty Ltd"	04-Dec-07 01:15 PM	
-="CN49874"	"Supply of Landscaping materials"	="Department of Parliamentary Services"	04-Dec-07	="Topsoil"	09-Jul-07	30-Jun-08	14300.00	=""	="Marfel Transport Service"	04-Dec-07 01:15 PM	
-="CN49875"	"Provision of supply of Fertilizer"	="Department of Parliamentary Services"	04-Dec-07	="Fertilisers and plant nutrients and herbicides"	09-Jul-07	30-Jun-08	12100.00	=""	="Bellchambers Produce Pty Ltd"	04-Dec-07 01:15 PM	
-="CN49876"	"major service on airconditioning chiller"	="Department of Parliamentary Services"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	30-Nov-07	31-Dec-07	54980.20	="DPS07073"	="Chillmech Services (Australia)"	04-Dec-07 01:15 PM	
-="CN49877"	"Standing Offer notice (SON27006); LEASE NOV-07 Fleet management and leasing services."	="Department of Parliamentary Services"	04-Dec-07	="Vehicle leasing"	22-Oct-07	30-Nov-07	13683.13	=""	="LeasePlan"	04-Dec-07 01:15 PM	
-="CN49879-A2"	"Provision for Specilaist Financial Advice"	="Comsuper"	04-Dec-07	="Human resources services"	28-Aug-07	30-Jun-08	350000.00	=""	="The IQ Business Group Pty Ltd"	04-Dec-07 01:38 PM	
-="CN49880-A1"	"Provision for technical Analyst"	="Comsuper"	04-Dec-07	="Human resources services"	01-Dec-07	30-Jun-08	91520.00	=""	="Face2face Recruitment"	04-Dec-07 01:41 PM	
-="CN49882"	"MANUFACTURE AND FIT NAVIGATIONAL MAST AND ANTENNA AND TO FIT ACCESSORIES"	="Department of Defence"	04-Dec-07	="Navigational equipment and instruments"	29-Aug-07	13-Oct-07	18519.82	=""	="WILTRADING"	04-Dec-07 01:47 PM	
-="CN49881-A1"	"Provision for Application Developer"	="Comsuper"	04-Dec-07	="Human resources services"	04-Aug-07	30-Jun-08	172040.00	=""	="Eurolink Consulting Australia Pty Ltd"	04-Dec-07 01:48 PM	
-="CN49883"	"ORATSIC Governance Info session & costitution redisgn wrk  Palm Island"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	19-Nov-07	21-Dec-07	15840.00	=""	="Australian Rural Accounting"	04-Dec-07 01:50 PM	
-="CN49884"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	19-Nov-07	30-Dec-07	82225.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:50 PM	
-="CN49885"	"MEX Facilities Management Access, Training and Licenses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	19-Nov-07	30-Jun-08	12142.10	=""	="MEX Maintenance Experts"	04-Dec-07 01:51 PM	
-="CN49886"	"Juliana House Alteration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	19-Dec-07	35640.00	=""	="Manzano Constructions"	04-Dec-07 01:51 PM	
-="CN49887"	"Supply of workstations & Loose furniture"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Nov-07	30-Nov-07	645703.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49888"	"Construction Management"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	19-Nov-07	1242331.20	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49889"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	147840.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49890"	"FaCSIA Intelligent information System"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	21-Nov-07	14-Feb-08	70000.00	=""	="NETCAT.biz PTY LTD"	04-Dec-07 01:51 PM	
-="CN49891"	"Production of quality assurance and continuous improvement handbooks for disability services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	20-Nov-07	01-Dec-07	25750.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Dec-07 01:51 PM	
-="CN49892"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	20-Nov-07	30-Jun-08	143220.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	
-="CN49893"	"General Advice"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	19-Nov-07	19-Nov-07	22000.00	=""	="DLA PHILLIPS FOX"	04-Dec-07 01:52 PM	
-="CN49894"	"Software Licences"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Dec-07	149512.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:52 PM	
-="CN49895"	"International Services for return of Indigenous Remains"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Mail and cargo transport"	15-Nov-07	30-Nov-07	10558.22	=""	="INTERNATIONAL ART SERVICES PTY LTD"	04-Dec-07 01:52 PM	
-="CN49896"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	84188.68	=""	="CYBERTRUST AUSTRALIA"	04-Dec-07 01:52 PM	
-="CN49897"	"Symposium "Go To Market" 19 November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	15-Nov-07	23-Nov-07	21600.00	=""	="Gartner Australasia PTY Limited"	04-Dec-07 01:52 PM	
-="CN49898"	"Superannuation Administration fees for Quarter 2 07/08"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	31-Dec-07	127320.25	=""	="Comsuper       CPM"	04-Dec-07 01:52 PM	
-="CN49900"	"7 units of Dragon "Preferred" v9.5 - including DVD"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	17493.00	=""	="Voicerecognition.com.au Pty Ltd"	04-Dec-07 01:52 PM	
-="CN49901"	"Report on issues of FaCSIA  fundees in Victoria's Business Services Sector"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	14-Nov-07	14-Nov-07	22698.14	=""	="Dept of Employment & Workplace Rela"	04-Dec-07 01:52 PM	
-="CN49902"	"TAM Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Components for information technology or broadcasting or telecommunications"	19-Nov-07	31-Dec-07	123200.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:53 PM	
-="CN49903"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	26241.30	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:53 PM	
-="CN49899"	"Provision for Security Architecture Scoping Study"	="Comsuper"	04-Dec-07	="Information technology consultation services"	22-Nov-07	21-Dec-07	17600.00	=""	="Castelain"	04-Dec-07 01:53 PM	
-="CN49904"	"FaCSIA Property & Security Business Continuity Plan - Consulting Assistance"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	16-Nov-07	21-Dec-07	17325.00	=""	="Leslie Whittet & Associates"	04-Dec-07 01:53 PM	
-="CN49905"	"Career Development Assessment Centre registration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	23650.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:53 PM	
-="CN49906"	"NTER Communications"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	16-Nov-07	33286.30	=""	="Famous 5 Pty Ltd"	04-Dec-07 01:53 PM	
-="CN49908"	"Media Analysis for NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	30-Jun-08	46142.42	=""	="Media Monitors Australia Pty Ltd"	04-Dec-07 01:53 PM	
-="CN49909"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	125840.00	=""	="Stratagem Computer Contractors Pty"	04-Dec-07 01:53 PM	
-="CN49910"	"Lease and operation of a third aircraft for NT Police to support the NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Aircraft"	28-Nov-07	12-Dec-07	1980000.00	=""	="NORTHERN TERRITORY POLICE"	04-Dec-07 01:54 PM	
-="CN49911"	"Money Management Resource Tool- Facilitator's  community Education Workshop Kit"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	15-Jan-08	45687.20	=""	="Marcus Lee Design"	04-Dec-07 01:54 PM	
-="CN49913"	"ARB 4WD Vehicle Recovery Kits"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Nov-07	25460.00	=""	="ARB 4 x 4 Accessories"	04-Dec-07 01:54 PM	
-="CN49914"	"Removal fee for Nhulunbuy Fitout"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	26-Nov-07	26-Nov-07	24200.00	=""	="Lalor Removals Pty Ltd"	04-Dec-07 01:54 PM	
-="CN49915"	"Automated Testing Strategy Development"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	26-Nov-07	21-Dec-07	16764.00	=""	="KJ ROSS & ASSOCIATES"	04-Dec-07 01:54 PM	
-="CN49916"	"Software"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	23-Nov-07	30-Dec-07	26855.12	=""	="ALPHAWEST SERVICES PTY LTD"	04-Dec-07 01:54 PM	
-="CN49917"	"Introduction to Corporate Governance Worksop Alice Springs"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Hotels and lodging and meeting facilities"	30-Nov-07	30-Nov-07	21386.00	=""	="DIPLOMAT ALICE SPRINGS"	04-Dec-07 01:54 PM	
-="CN49918"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	30-Nov-07	30-Jun-08	128811.20	=""	="COMMAND RECRUITMENT GROUP"	04-Dec-07 01:54 PM	
-="CN49919"	"Design and develop a Petrol Sniffing Strategy Evaluation Framework"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	01-Apr-08	80000.00	=""	="COURAGE PARTNERS PTY LTD"	04-Dec-07 01:55 PM	
-="CN49920"	"Bounty Bag - DVD in New Mother Bag"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Educational facilities"	30-Nov-07	15-Dec-07	66000.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49921"	"Hoban"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	29-Nov-07	29-Nov-07	11000.00	=""	="Lynne Hoban Personnel Systems P/L"	04-Dec-07 01:55 PM	
-="CN49922"	"Provision of Investigation Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Financial and Insurance Services"	28-Nov-07	11-Jan-08	44000.00	=""	="DELOITTE TOUCHE TOHMATSU"	04-Dec-07 01:55 PM	
-="CN49923"	"Advertising for Tenders for the Provision on domestic Violence Helpline"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	26980.17	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49924"	"Government Notices for NT Emergency Response Pornography Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Emergency and field medical services products"	22-Nov-07	14-Dec-07	21544.45	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	
-="CN49925"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	20-Dec-07	11872.42	=""	="COMPUTERCORP (OPERATIONS)"	04-Dec-07 01:55 PM	
-="CN49926"	"Advertising of Compass Program in Graduate Careers 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	22-Nov-07	30-Dec-07	12925.00	=""	="HOBSONS AUSTRALIA PTY LIMITED t/as"	04-Dec-07 01:55 PM	
-="CN49927"	"Distribution of 70,000 Avant Cards for National Youth Week"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Marketing and distribution"	22-Nov-07	28-Feb-08	14003.00	=""	="AVANT CARD"	04-Dec-07 01:56 PM	
-="CN49928"	"Provision of pricing evaluation services in relation to Market Research & Usability Panel RFT"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	22-Nov-07	06-May-08	23625.00	=""	="Freebody Cogent Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49929"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	30-Dec-07	15326.56	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	
-="CN49930"	"Additional computers for extra staff & members. Qty 30 complete units/ qty 10 units w/out monito"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	23-Nov-07	65747.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	
-="CN49931"	"Supply and install of workstations and loose furniture Brisbane STO"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	23-Nov-07	273751.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49932"	"Contractor engaged to complete fitout works to Brisbane State Office"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	678459.98	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49933"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	23-Nov-07	30-Jun-08	153120.00	=""	="Avanade Australia Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49934-A1"	"Longitudinal Study of Indigenous Children - Survey Design, data collection"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	23-Nov-07	30-Jun-11	1746957.00	=""	="Roy Morgan Research Pty Ltd"	04-Dec-07 01:56 PM	
-="CN49935"	"LAFIA 2007 Asia Programme Fee"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	02-Nov-07	02-Nov-07	27610.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:57 PM	
-="CN49936"	"Comcare 06/07 premium adjustment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Insurance and retirement services"	02-Nov-07	02-Nov-07	750433.00	=""	="Comcare Australia"	04-Dec-07 01:57 PM	
-="CN49937"	"Fitout NTER Operations Centre Office - Darwin"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="General building construction"	01-Nov-07	02-Nov-07	1535030.88	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:57 PM	
-="CN49938"	"Office equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	11-Oct-07	29-Nov-07	26754.20	=""	="Office Furniture & Storage Solution"	04-Dec-07 01:57 PM	
-="CN49939"	"Property Lease L24/500 Collins St melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	28-Nov-07	29320.20	=""	="ECS Property Group"	04-Dec-07 01:57 PM	
-="CN49940"	"Rent for 565 Bourke Street Melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	28-Nov-07	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Dec-07 01:57 PM	
-="CN49941"	"Senior Project Manager - NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	05-Nov-07	30-Jun-08	72600.00	=""	="TANNER JAMES MANAGEMENT"	04-Dec-07 01:57 PM	
-="CN49942"	"Advertising New NTER Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	45556.50	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:57 PM	
-="CN49943"	"Advertising Graduate Oportunities 08/09"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	12100.00	=""	="GRADUATE CAREERS COUNCIL OF"	04-Dec-07 01:58 PM	
-="CN49944"	"Install and Develop FOFMS monitoring tools & associated professional services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	49500.00	=""	="RPM SOLUTIONS PTY LTD"	04-Dec-07 01:58 PM	
-="CN49945"	"Review of current financial position and financial viability of GYC Alice Springs."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	23-Nov-07	13154.00	=""	="DFK Kidsons"	04-Dec-07 01:58 PM	
-="CN49946"	"Managing Stakeholders Engagement Course Fee for service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	02-Nov-07	02-Nov-07	20811.16	=""	="Directions for Change"	04-Dec-07 01:58 PM	
-="CN49947"	"Payment Business travel account Perth"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Travel facilitation"	06-Nov-07	29-Nov-07	13042.93	=""	="American Express"	04-Dec-07 01:58 PM	
-="CN49948"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	11796.50	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	
-="CN49949"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	15806.35	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	
-="CN49950"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	27964.30	=""	="Corporate Express Australia"	04-Dec-07 01:58 PM	
-="CN49951"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25965.81	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	
-="CN49952"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25838.30	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	
-="CN49953"	"Reimbursement November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	26-Nov-07	100994.74	=""	="United Group Services"	04-Dec-07 01:59 PM	
-="CN49954"	"Office rent 1/12/2007-31/12/2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	01-Dec-07	01-Dec-07	33621.50	=""	="ARIA Property Group"	04-Dec-07 01:59 PM	
-="CN49955"	"SSAT L4&L5 380 Queens St Bne Progress Claim No.3"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Professional engineering services"	31-Oct-07	26-Nov-07	14155.68	=""	="Schiavello Fitout (QLD) Pty Ltd"	04-Dec-07 01:59 PM	
-="CN49956"	"Printing 2006/2007 Annual Report"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Paper products"	09-Nov-07	21-Nov-07	14110.80	=""	="Blue Print"	04-Dec-07 01:59 PM	
-="CN49957"	"SSAT stare hearing tables"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Oct-07	19-Nov-07	28858.50	=""	="Schiavello (Vic.) Pty Ltd"	04-Dec-07 01:59 PM	
-="CN49958"	"Commercial Funiture Cus no.CASHDT30 Cus PO 995/014"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	11-Sep-07	12-Nov-07	22269.50	=""	="Workspace Commercial Furniture Pty"	04-Dec-07 01:59 PM	
-="CN49959"	"Health appraisals for Group Staff"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	05-Nov-07	30-Nov-07	47245.00	=""	="Health Futures Pty Ltd"	04-Dec-07 02:00 PM	
-="CN49960"	"Proj Mgt Consult Service-TOP"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	13-Nov-07	20000.00	=""	="XACT PROJECT CONSULTANTS PTY LTD"	04-Dec-07 02:00 PM	
-="CN49961"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	29-Feb-08	57200.00	=""	="CAPSE Pty Ltd"	04-Dec-07 02:00 PM	
-="CN49962"	"20 GUI vUSers & HP Support"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	43472.00	=""	="HEWLETT PACKARD AUST LTD"	04-Dec-07 02:00 PM	
-="CN49963"	"Government Notices for NT Emergency Response Alcohole Bans"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	12-Nov-07	12-Dec-07	80905.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	
-="CN49964"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	153120.00	=""	="GREYTHORN PTY LTD"	04-Dec-07 02:00 PM	
-="CN49965"	"Government Notices for NT Emergency Response Porn/ Alcohole Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information services"	12-Nov-07	12-Dec-07	72728.66	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	
-="CN49966"	"Consultancy Services - Young Carers - Their Characteristics and Geographical Distribution"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	14-Nov-07	30-Jun-08	54958.00	=""	="Social Policy Research Centre"	04-Dec-07 02:00 PM	
-="CN49967"	"Statutory appointment of Administratio for Mandangala Aboriginal Corporation"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	55000.00	=""	="Grant Thornton (WA) Pty Ltd"	04-Dec-07 02:01 PM	
-="CN49968"	"Develpo Overarching Strategy Helping Children with Autism package"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	14-Nov-07	07-Dec-07	55000.00	=""	="HannahFyre Enterprises"	04-Dec-07 02:01 PM	
-="CN49969"	"Provision of Project Assurance Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	33000.00	=""	="MAX SHANAHAN & ASSOCIATES PTY"	04-Dec-07 02:01 PM	
-="CN49970"	"NTERT-Relocations to various addresses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Transportation and Storage and Mail Services"	13-Nov-07	13-Nov-07	16408.00	=""	="AUSSIEMOVE INTERNATIONAL PTY LTD"	04-Dec-07 02:01 PM	
-="CN49971"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	39361.95	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 02:01 PM	
-="CN49972"	"Consultancy work around the Group Improvement Process"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	24-Dec-07	25500.00	=""	="THE WORKWISE GROUP PTY. LTD."	04-Dec-07 02:01 PM	
-="CN49973"	"The provision of consultancy services in relation to the Petrol Sniffing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	08-Nov-07	01-May-08	82947.10	=""	="Urbis JHD"	04-Dec-07 02:01 PM	
-="CN49974"	"To Update the previous Risk Management Plan for Network security in FaCSIA"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	08-Nov-07	19-Dec-07	24200.00	=""	="SECURELINK PTY LTD"	04-Dec-07 02:01 PM	
-="CN49975"	"Staff Furniture Relocation Adeliade"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	07-Nov-07	30-Nov-07	15015.00	=""	="Atlantis = Pty Ltd"	04-Dec-07 02:02 PM	
-="CN49976"	"Create online application for the National Youth Week calendar of events."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	07-Nov-07	01-Jan-08	15300.00	=""	="Commercial Interactive Media"	04-Dec-07 02:02 PM	
-="CN49977"	"Northern Territory Emergency Response  Implemtation Plan"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	07-Nov-07	16-Nov-07	57875.00	=""	="PROVIDENCE CONSULTING GROUP"	04-Dec-07 02:02 PM	
-="CN49978"	"Baseline Community Profile - Mornington Shire Queensland"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	12-Nov-07	15-Mar-08	48600.00	=""	="THE CULTURAL & INDIGENOUS"	04-Dec-07 02:02 PM	
-="CN49979"	"Payment ot Language Professionals for the translation and update of the FAO Multilingual"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	09-Nov-07	30-Nov-07	23650.00	=""	="LANGUAGE PROFESSIONALS"	04-Dec-07 02:02 PM	
-="CN49980"	"Contract Services for Development of Paper for Future ICT Sourcing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	09-Nov-07	07-Dec-07	50000.00	=""	="IT Newcom Pty Limited"	04-Dec-07 02:02 PM	
-="CN49981"	"Training course for Compass"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	09-Nov-07	24-Dec-07	10510.00	=""	="D'Arcy Consulting Group Pty Ltd"	04-Dec-07 02:02 PM	
-="CN49982"	"Supply of Workstations & Loose Furniture-Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Accommodation furniture"	08-Nov-07	30-Nov-07	931873.63	=""	="Cite Office Design Pty Ltd"	04-Dec-07 02:03 PM	
-="CN49983"	"Construction Management - Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	08-Nov-07	30-Nov-07	2635121.77	=""	="ISIS Projects Pty Ltd"	04-Dec-07 02:03 PM	
-="CN49907"	"Tool Kit Carpenters"	="Department of Defence"	04-Dec-07	="Carpentry"	04-Dec-07	18-Dec-07	18277.44	=""	="KENTOOL PTY LTD"	04-Dec-07 02:16 PM	
-="CN49986"	"Management of journal subscriptions"	="Family Court of Australia"	04-Dec-07	="Business and corporate management consultation services"	26-Nov-07	25-Nov-08	33389.45	=""	="EBSCO Australia"	04-Dec-07 02:49 PM	
-="CN49987"	"NSN 3110-00-299-0410, Track Roller Ball Bearings"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	20-Nov-07	01-Aug-08	27646.34	=""	="Milspec Services Pty Ltd"	04-Dec-07 02:52 PM	
-="CN49988"	"NSN 5330-66-138-3602, Preformed Packing"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	16-Nov-07	21-Dec-07	11444.40	=""	="Milspec Services Pty Ltd"	04-Dec-07 03:05 PM	
-="CN49989-A2"	"Provision of Rehabilitation counselling services"	="CRS Australia"	04-Dec-07	="Comprehensive health services"	03-Dec-07	21-Sep-09	60478.00	=""	="Expert Rehab Management"	04-Dec-07 03:07 PM	
-="CN49994"	"Recruitment - Project Manager"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	22-Nov-07	03-Apr-08	98252.00	=""	="ICON Recruitment Pty ltd"	04-Dec-07 03:26 PM	
-="CN49995-A4"	"Recruitment - ERP Project Management"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	24-Nov-07	31-Dec-08	274683.00	=""	="Hurtile Pty Ltd"	04-Dec-07 03:32 PM	
-="CN49998"	"Online Library Subscription"	="Australian Crime Commission"	04-Dec-07	="Library or documentation services"	01-Jul-07	30-Jun-08	36696.48	=""	="Thompson Legal & Regulatory Group"	04-Dec-07 03:36 PM	
-="CN50000"	" NSN 2840-01-369-3242  PURCHASE OF SPACER, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	13-Dec-07	77478.66	=""	="Flite Path Pty Ltd"	04-Dec-07 03:40 PM	
-="CN50002"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:46 PM	
-="CN50004"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:51 PM	
-="CN50005"	"Telecommunications Interception"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	26-Nov-07	26-Dec-07	19000.00	=""	="Hutchison Telecoms Australia Ltd"	04-Dec-07 03:55 PM	
-="CN50006"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:56 PM	
-="CN50007"	"Photocopier lease charges"	="Australian Crime Commission"	04-Dec-07	="Photocopiers"	14-Sep-07	16-Nov-07	75134.40	=""	="Fuji Xerox Australia Pty Ltd"	04-Dec-07 04:00 PM	
-="CN50009"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Apr-07	31-Mar-08	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:01 PM	
-="CN50008"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:01 PM	
-="CN50011"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:06 PM	
-="CN50012"	"Telecommunications Interception expenditure"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	62000.00	=""	="Optus Billing Services"	04-Dec-07 04:07 PM	
-="CN50013"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-04	30-Jun-06	690000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:07 PM	
-="CN50014"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:09 PM	
-="CN50015"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:12 PM	
-="CN50016"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Jul-04	31-Mar-07	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:13 PM	
-="CN50017-A1"	"UPS for computer servers"	="Australian Crime Commission"	04-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	01-Dec-07	18629.58	=""	="Commander Integrated Networks Pty Ltd"	04-Dec-07 04:14 PM	
-="CN50018"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:15 PM	
-="CN50021"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-01	30-Jun-04	945000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:22 PM	
-="CN50020"	"  GAGE THICKNESS ELECTRONIC  "	="Defence Materiel Organisation"	04-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	29-Feb-08	34067.00	=""	="OLYMPUS AUST P/L"	04-Dec-07 04:23 PM	
-="CN50022"	"lease of air conditioners"	="Australian Crime Commission"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	05-Dec-07	05-Jun-08	10780.00	=""	="Emerson Network Power Australia"	04-Dec-07 04:23 PM	
-="CN50023"	"IT development for Standard Information Exchange project"	="Australian Crime Commission"	04-Dec-07	="Information exchange software"	01-Dec-07	30-Jun-08	1731021.00	=""	="Western Australia Police"	04-Dec-07 04:32 PM	
-="CN50024"	"Softwar maintenance"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Software"	01-Aug-07	31-Jul-08	40700.00	=""	="ACUMENT ALLIANCE (ACT) PTY LTD"	04-Dec-07 04:38 PM	
-="CN50025"	"Telecommunications Interception for Telstra"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	19000.00	=""	="Telstra"	04-Dec-07 04:40 PM	
-="CN50026"	"Coaching for Senior Executive staff"	="Australian Crime Commission"	04-Dec-07	="Workshops"	04-Dec-07	30-Jun-08	47960.00	=""	="Yellow Edge Pty Ltd"	04-Dec-07 04:44 PM	
-="CN50027"	"Rack Mounted server"	="Australian Crime Commission"	04-Dec-07	="Computer servers"	04-Dec-07	04-Dec-07	10505.00	=""	="Dell Computer Pty Ltd"	04-Dec-07 04:48 PM	
-="CN50028"	"For the purchase of Qty 10 ice detectors for use on the Black Hawk helicopter to replace items classified as 'BER' by repair contractor."	="Defence Materiel Organisation"	04-Dec-07	="Military rotary wing aircraft"	27-Nov-07	07-Oct-08	139735.75	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	04-Dec-07 04:49 PM	
-="CN50029"	"Editing Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Sep-07	30-Nov-07	14550.00	=""	="Therese Laanela"	04-Dec-07 04:53 PM	
-="CN50030"	"Editing of Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Jul-07	31-Dec-07	16975.00	=""	="Yvonne Goudie"	04-Dec-07 04:57 PM	
-="CN50031"	"TACLANE Mine (KS328-07)"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	28-Dec-07	21900.00	=""	="Defence Material Organisation"	04-Dec-07 04:59 PM	
-="CN50032"	"Printing of Annual Report"	="Department of the Treasury"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Oct-07	30-Jun-08	62961.00	=""	="Canprint Communications Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50033"	"Equipment for AICNet"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	30-Oct-07	31-Dec-07	71255.92	=""	="Getronics Australia Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50034"	"IBIS world subscription"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	30-Jun-08	26697.00	=""	="IBISWorld.com"	04-Dec-07 04:59 PM	
-="CN50035"	"Health Assessments for Health Month"	="Department of the Treasury"	04-Dec-07	="Healthcare Services"	26-Oct-07	30-Jun-08	22000.00	=""	="ACT Nursing Service Pty ltd"	04-Dec-07 04:59 PM	
-="CN50036"	"40 940B 19" TFT Bezel Black Monitors"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	24-Oct-07	18-Nov-07	13640.00	=""	="Dataflex Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50037"	"Advertisment for Director position"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	15995.23	=""	="HMA Blaze Pty Limited"	04-Dec-07 04:59 PM	
-="CN50038"	"Statistics Subscription renewal"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	23870.00	=""	="Econdata Pty Ltd"	04-Dec-07 04:59 PM	
-="CN50039"	"Loss Estimation Model Development"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	37807.00	=""	="Finity"	04-Dec-07 04:59 PM	
-="CN50040"	"CEIC Aisa Database & CEIC China Database"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	27720.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	
-="CN50041"	"Legal Advice"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	25000.00	=""	="Australian Government Solicitor"	04-Dec-07 05:00 PM	
-="CN50042"	"Basic dX Software Package"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	10560.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	
-="CN50043"	"Fees for Investment Management Services"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	30-Jun-08	280483.64	=""	="Suncorp"	04-Dec-07 05:00 PM	
-="CN50044"	"Replacement Server and Storeage Disk"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	15-Nov-07	23-Nov-07	46657.47	=""	="Dell Australia"	04-Dec-07 05:00 PM	
-="CN50045"	"Adverstisement for SBR conference"	="Department of the Treasury"	04-Dec-07	="Paper Materials and Products"	14-Nov-07	19-Nov-07	16436.86	=""	="HMA Blaze Pty Limited"	04-Dec-07 05:00 PM	
-="CN50046"	"Purchase of 20 Dishwashers"	="Department of the Treasury"	04-Dec-07	="Cleaning Equipment and Supplies"	08-Nov-07	03-Dec-07	47998.00	=""	="Kleenmaid"	04-Dec-07 05:00 PM	
-="CN50047"	"Continuum Software Dongle"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	30-Nov-07	10318.00	=""	="ADT Security"	04-Dec-07 05:00 PM	
-="CN50048"	"P.O increase for Treasury storage"	="Department of the Treasury"	04-Dec-07	="Transportation and Storage and Mail Services"	24-Jul-07	31-Jul-08	32000.00	=""	="1st Fleet Warehousing and Distribut"	04-Dec-07 05:00 PM	
-="CN50049"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	15-Oct-07	14-Oct-08	275616.00	=""	="Collective Resources IT Recruitment"	04-Dec-07 05:00 PM	
-="CN50050"	"Provision of the APS and Treasury Accountabilities"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-10	25000.00	="RFT006/07"	="Shane Carroll & Associates"	04-Dec-07 05:01 PM	
-="CN50051"	"Building Services Panel - Ground Floor E Block Con"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	30-Oct-07	31-Dec-07	142913.10	=""	="G E Shaw & Associates (ACT) Pty Ltd"	04-Dec-07 05:01 PM	
-="CN50052"	"Building Services Panel"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	24-Oct-07	30-Mar-08	1370524.00	=""	="IQON Pty Ltd"	04-Dec-07 05:01 PM	
-="CN50053"	"SBR conference 26-28 Nov 2008"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	26-Nov-07	28-Nov-07	60000.00	=""	="Hilton - Brisbane"	04-Dec-07 05:01 PM	
-="CN50054"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	30-Jun-08	327673.27	=""	="American Express International"	04-Dec-07 05:01 PM	
-="CN50055"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Oct-07	30-Jun-08	261441.18	=""	="American Express International"	04-Dec-07 05:01 PM	
-="CN50056"	"Contractor wages"	="Department of the Treasury"	04-Dec-07	="Personal and Domestic Services"	09-Nov-07	30-Jun-08	25000.00	="M.SKINNER"	="Westaff"	04-Dec-07 05:01 PM	
-="CN50057"	"Digital Projects s.o Increase"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	17-Jul-07	31-Dec-07	15000.00	=""	="Digital Projects"	04-Dec-07 05:01 PM	
-="CN50058"	"Development of a professional learning package"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-May-08	199091.54	="OPEN SOURCE"	="Curriculum Corporation"	04-Dec-07 05:02 PM	
-="CN50059"	"Provision of Internal Audit  Services for the HIH"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	22-Oct-07	30-Jun-08	275550.00	=""	="KPMG - Canberra"	04-Dec-07 05:02 PM	
-="CN50060"	"Ernst & Young Secondee - Anne Millward"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Sep-07	23-Sep-08	115841.00	=""	="Ernst & Young Services Pty Limited"	04-Dec-07 05:02 PM	
-="CN50061"	"Legal Services Panel - Provision of legal advice  for the SBR"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	23-Oct-07	30-Jun-09	350000.00	=""	="Aust Government Solicitor  ACT"	04-Dec-07 05:02 PM	
-="CN50062"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	01-Oct-07	30-Oct-08	375840.00	=""	="Compas Pty Ltd"	04-Dec-07 05:02 PM	
-="CN50063-A1"	"Printing and Distribution Services"	="Australian Electoral Commission"	04-Dec-07	="Industrial printing services"	03-Aug-06	03-Aug-09	2000965.86	="AEC06/026"	="PMP Print Pty Ltd"	04-Dec-07 05:04 PM	
-="CN50064"	"GST Executive Events over FY 2007/2008"	="Australian Taxation Office"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	30-Jun-08	114550.00	="06.028"	="Hoffman Donohue P/L"	04-Dec-07 05:09 PM	
+Advanced Search

+

+CN ID	Title	Agency	Publish Date	Category	Contract Start Date	Contract End Date	Value (AUD)	ATM ID	Supplier Name	LastUpdated	

+="CN49275"	"Brake Drum"	="Defence Materiel Organisation"	30-Nov-07	="Brake drum"	16-Nov-07	15-Jan-08	51303.25	=""	="Premier Automotive Group"	30-Nov-07 07:44 AM	

+="CN49276"	"Sighting Equipment"	="Defence Materiel Organisation"	30-Nov-07	="Surveillance and detection equipment"	29-Nov-07	30-Jan-08	14712.50	=""	="G A HANRAHAN PTY LTD"	30-Nov-07 07:56 AM	

+="CN49279-A1"	"2008 Journal subscriptions"	="Australian Institute of Family Studies"	30-Nov-07	="Education and Training Services"	14-Nov-07	14-Nov-07	30988.48	=""	="EBSCO"	30-Nov-07 08:32 AM	

+="CN49278"	" Coolant additive   6850 66-153-9135   Nalcool Extreme Control in 15L  100 Drums "	="Defence Materiel Organisation"	30-Nov-07	="Lubricants and oils and greases and anti corrosives"	19-Nov-07	26-Nov-07	33880.00	=""	="MTU"	30-Nov-07 08:33 AM	

+="CN49281-A1"	"additional contruction works"	="Australian Institute of Family Studies"	30-Nov-07	="Structural building products"	03-Sep-07	03-Sep-07	19942.61	=""	="Schiavello (VIC) Pty Ltd"	30-Nov-07 08:41 AM	

+="CN49282"	"Services in relation to data collection in respect of an online survey of family relationship services"	="Australian Institute of Family Studies"	30-Nov-07	="Internet based market research"	19-Nov-07	31-Jul-09	71978.50	=""	="I-View Pty Ltd"	30-Nov-07 08:47 AM	

+="CN49290"	"OverHaul Kiowa Aircraft Engine"	="Defence Materiel Organisation"	30-Nov-07	="Medical or rescue helicopters"	06-Mar-07	04-Apr-07	91547.30	=""	="Aviation Turbine Overhaul"	30-Nov-07 09:14 AM	

+="CN49297"	"Consultancy Services (Term nominal end date)"	="Australian Broadcasting Corporation"	30-Nov-07	="Information technology consultation services"	11-Oct-07	10-Nov-08	112000.00	="NS0730"	="Acumen Alliance"	30-Nov-07 11:50 AM	

+="CN49299"	"REPAIR, MODIFICATION AND SERVICE OF CORAL SNAKE"	="Department of Defence"	30-Nov-07	="Rescue ships or boats"	04-Jul-07	18-Aug-07	32935.38	=""	="BERENDSEN FLUID POWER"	30-Nov-07 12:23 PM	

+="CN49300"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	22938.90	=""	="VERIZON"	30-Nov-07 12:39 PM	

+="CN49301"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	17325.00	="0"	="VERIZON"	30-Nov-07 12:39 PM	

+="CN49302"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Office Equipment and Accessories and Supplies"	23-Nov-07	31-Mar-08	66000.00	="Not available"	="CANON AUSTRALIA P/L - ACT"	30-Nov-07 12:39 PM	

+="CN49303"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="00"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:39 PM	

+="CN49304"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	44000.00	="00"	="DELL COMPUTER PTY LIMITED"	30-Nov-07 12:39 PM	

+="CN49305"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	14654.31	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:39 PM	

+="CN49306"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	52802.30	="06/06490"	="INSIGHT"	30-Nov-07 12:40 PM	

+="CN49307"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:40 PM	

+="CN49308"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16500.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	

+="CN49309"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Dec-07	12936.00	="FIN05CRP004-36"	="AFFINITY IT RECRUITMENT PTY LTD"	30-Nov-07 12:40 PM	

+="CN49310"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	16168.00	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:40 PM	

+="CN49311"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	132660.00	="AGIMO tender - see attached document"	="UNIFY SOLUTIONS PTY LTD"	30-Nov-07 12:40 PM	

+="CN49312"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	33000.00	="RFT06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:40 PM	

+="CN49313"	"Recruitment Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Dec-07	22000.00	="FIN 05CRP004-02"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:40 PM	

+="CN49314"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	23-Oct-08	120782.00	="20031A"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:40 PM	

+="CN49315"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	30-Nov-07	266159.65	=""	="AGS - SYDNEY"	30-Nov-07 12:41 PM	

+="CN49316"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	170000.00	="N/A"	="AMBIT IT&T RECRUITMENT SPECIALISTS"	30-Nov-07 12:41 PM	

+="CN49317"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	28-Mar-08	53000.00	="FIN05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:41 PM	

+="CN49318"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	19718.24	="o"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:41 PM	

+="CN49319"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	15720.10	="0"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:41 PM	

+="CN49320"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Jun-08	165600.00	="FIN05CRP004-33"	="VEROSSITY"	30-Nov-07 12:41 PM	

+="CN49321"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	110000.00	="rft"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:41 PM	

+="CN49322"	"Capital Expenditure - Software"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	74223.01	="06/09065-06"	="DIMENSION DATA AUSTRALIA PTY LTD"	30-Nov-07 12:41 PM	

+="CN49323"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	27-Jun-08	175000.00	="FIN 05CRP004-37"	="CANDLE AUSTRALIA LTD"	30-Nov-07 12:41 PM	

+="CN49324"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	15-Feb-08	41938.72	="recruitment panel"	="ROSS HUMAN DIRECTIONS LIMITED"	30-Nov-07 12:41 PM	

+="CN49325"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	15-Jan-08	71037.45	="RMS07/00977"	="ARGENT TECHNO-RACKING PTY LTD"	30-Nov-07 12:42 PM	

+="CN49326"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	33000.00	="RMS07/0785"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	

+="CN49327"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	17908.00	="rft"	="TMP/HUDSON GLOBAL RESOURCES"	30-Nov-07 12:42 PM	

+="CN49328"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	10-Nov-08	189000.00	="FIN 05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:42 PM	

+="CN49329"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	768808.60	="FIN06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	

+="CN49330"	"Capital Expenditure - Buildings"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction Machinery and Accessories"	23-Nov-07	05-Jun-08	2962391.40	="Fin06/Fes006"	="ISIS PROJECTS"	30-Nov-07 12:42 PM	

+="CN49331"	"Divestment Expenses"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Nov-07	30-Nov-07	247500.00	="Pre Austender"	="LFC CONTRACTING PTY LIMITED"	30-Nov-07 12:42 PM	

+="CN49332"	"IT Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	26835.95	="0"	="TELSTRA - CUSTOMER ID NO 2873 DOFA"	30-Nov-07 12:42 PM	

+="CN49333"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	30-Nov-07	18029.00	="0"	="OAKTON AA SERVICES PTY LTD"	30-Nov-07 12:42 PM	

+="CN49334"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	03-Dec-07	30-Jun-08	140668.00	="FIN05CRP004-45"	="PEOPLEBANK AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	

+="CN49335"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Dec-07	44699.99	="06/590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	

+="CN49336"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	07-Nov-08	248000.00	="FIN 05CRP004-43"	="PROFESSIONALS ONLINE"	30-Nov-07 12:43 PM	

+="CN49337"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Nov-08	215000.00	="FIN 05CR004-33"	="VEROSSITY"	30-Nov-07 12:43 PM	

+="CN49338"	"Security Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	31-Jan-08	77740.00	="0"	="ASSA ABLOY AUSTRALIA PTY LTD"	30-Nov-07 12:43 PM	

+="CN49339"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	14-Oct-08	173700.00	="FIN 05CRP004-30"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:43 PM	

+="CN49340"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	10-Dec-07	30-Jun-08	86000.00	="FIN 05CRP0004-41"	="ICON RECRUITMENT PTY LTD"	30-Nov-07 12:43 PM	

+="CN49341"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Nov-07	31152.00	="19102007"	="VERIZON"	30-Nov-07 12:43 PM	

+="CN49342"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	30-Jun-08	143908.41	="n/a"	="EMC AUSTRALIA"	30-Nov-07 12:43 PM	

+="CN49343-A1"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	17-Oct-07	16-Nov-07	50571.55	="06/06590"	="ZALLCOM PTY LTD"	30-Nov-07 12:43 PM	

+="CN49344"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	24-Nov-07	21-Nov-08	220000.00	="Labour Hire Panel"	="SOUTHERN CROSS COMPUTING PTY LTD"	30-Nov-07 12:44 PM	

+="CN49345"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	23-Nov-07	31-Dec-07	15720.10	="PASD-06-0084-1679"	="OPTUS DIRECT CREDITS"	30-Nov-07 12:44 PM	

+="CN49346"	"Contractor Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	21-Dec-07	27-Jun-08	80000.00	="FIN 05CRP004-07"	="CORDELTA PTY LTD"	30-Nov-07 12:44 PM	

+="CN49347"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	22-Aug-08	71400.00	="Recruitment Panel - Purchase Order"	="MANPOWER SERVICES (AUST) P/L"	30-Nov-07 12:44 PM	

+="CN49348"	"HR Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	23-Nov-07	21-Dec-07	11630.08	="FIN05CRP004-15"	="HAYS PERSONNEL SERVICES"	30-Nov-07 12:44 PM	

+="CN49349"	"Training & Education Costs"	="Department of Finance and Administration"	30-Nov-07	="Education and Training Services"	23-Nov-07	21-Dec-07	26100.00	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	30-Nov-07 12:44 PM	

+="CN49350"	"Entertainment & Other Staff Benefits"	="Department of Finance and Administration"	30-Nov-07	="Travel and Food and Lodging and Entertainment Services"	28-Feb-08	28-Feb-08	14000.00	=""	="HYATT HOTEL CANBERRA"	30-Nov-07 12:44 PM	

+="CN49351"	"Additional Construction Works"	="Department of Finance and Administration"	30-Nov-07	="Building and Construction and Maintenance Services"	29-Nov-07	31-Jan-08	42000.00	="FIN07/Crp002"	="GE SHAW & ASSOCIATES PTY LTD"	30-Nov-07 12:44 PM	

+="CN49352"	"IT Maintenance & Support Costs"	="Department of Finance and Administration"	30-Nov-07	="Information Technology Broadcasting and Telecommunications"	29-Nov-07	30-Jun-08	70000.00	=""	="ALPHAWEST SERVICES PTY LTD"	30-Nov-07 12:44 PM	

+="CN49353"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	1398038.55	="N/A"	="NEW SOUTH WALES FIRE BRIGADES"	30-Nov-07 12:44 PM	

+="CN49354"	"Fire Services Payment"	="Department of Finance and Administration"	30-Nov-07	="Personal and Domestic Services"	29-Nov-07	30-Jun-08	31803.50	="N/A"	="NSW RURAL FIRE SERVICE"	30-Nov-07 12:45 PM	

+="CN49355"	"Project Manager and Superintendency"	="Department of Finance and Administration"	30-Nov-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	164747.00	="Pre Austender"	="KELLOGG BROWN & ROOT PTY LTD"	30-Nov-07 12:45 PM	

+="CN49356"	"Communication Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	30-Jun-08	197600.00	="04/07995"	="MEDIA MONITORS - ALL STATES"	30-Nov-07 12:45 PM	

+="CN49357"	"Asset Sales Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	80000.00	=""	="FREEHILLS"	30-Nov-07 12:45 PM	

+="CN49358"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Sep-07	31-Dec-07	20000.00	="RMS05/07988"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	

+="CN49359"	"Business Advisory Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	28-Nov-07	21-Dec-07	24320.00	="N/A"	="SMS MANAGEMENT & TECHNOLOGY LIMITED"	30-Nov-07 12:45 PM	

+="CN49360"	"Internal Audit Services"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	31-Dec-07	31900.00	="RFT 2003 IA"	="PRICEWATERHOUSECOOPERS- 833468126"	30-Nov-07 12:45 PM	

+="CN49361"	"Legal Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Dec-07	22000.00	="rft"	="MINTER ELLISON - ACT"	30-Nov-07 12:45 PM	

+="CN49362"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:45 PM	

+="CN49363"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	03-Jan-08	11550.00	="-"	="ERNST & YOUNG"	30-Nov-07 12:46 PM	

+="CN49364"	"Consultancy Costs"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	26-Nov-07	31-Oct-08	213420.00	="FIN06AGI14-03"	="CONVERGENCE E-BUSINESS SOLUTIONS PTY LTD"	30-Nov-07 12:46 PM	

+="CN49365"	"Consultancy Cost - procured from the MUL Gateway 01/2006"	="Department of Finance and Administration"	30-Nov-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	14-Dec-07	13500.00	="0"	="RICHARDSON O'ROURKE CONSULTING PTY LTD"	30-Nov-07 12:46 PM	

+="CN49366"	"Cleaning"	="CRS Australia"	30-Nov-07	="Building cleaning services"	01-Dec-07	30-Nov-08	13686.68	=""	="Westcoast Wilcleen Services"	30-Nov-07 12:49 PM	

+="CN47645"	" Musical Instruments "	="Defence Materiel Organisation"	30-Nov-07	="Musical Instruments and parts and accessories"	02-Nov-07	06-Feb-08	20932.09	=""	="Pro Audio Supplies Pty Ltd"	30-Nov-07 12:58 PM	

+="CN49367"	" SERVICE AND REPAIR MERLO TELELOADER "	="Department of Defence"	30-Nov-07	="Front end loaders"	01-Jun-07	16-Jul-07	19280.72	=""	="MERLO GROUP AUSTRALIA"	30-Nov-07 01:12 PM	

+="CN49368"	"Irrigation Network Replacement - Regatta Point Pump Station"	="National Capital Authority"	30-Nov-07	="Irrigation pipes or tubes"	21-Feb-07	30-Jan-08	494000.00	=""	="Manteena Pty Ltd"	30-Nov-07 01:42 PM	

+="CN49369"	"Insurance Premium - fund Year 2007/2008"	="National Native Title Tribunal"	30-Nov-07	="Reinsurance services"	01-Jul-07	30-Jun-08	68153.80	=""	="Australian Government Comcover"	30-Nov-07 02:01 PM	

+="CN49370"	"Duffel Bag, Dry Bag"	="Defence Materiel Organisation"	30-Nov-07	="Camping and outdoor equipment and accessories"	21-Nov-07	05-Dec-07	18661.00	=""	="Mainpeak Pty Ltd"	30-Nov-07 02:29 PM	

+="CN49371-A1"	"Fitout to CRS Australia premises - Albury"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	20-Aug-07	31-Dec-07	124861.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 02:54 PM	

+="CN49372"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	10-Jan-08	14313.20	=""	="Capital medical Supplies Pty Ltd"	30-Nov-07 02:58 PM	

+="CN49277-A1"	"development of PPVT for LSAC Wave 3"	="Australian Institute of Family Studies"	30-Nov-07	="Educational and research structures"	08-Nov-07	08-Nov-07	11440.00	=""	="Australian Council for Educational Research"	30-Nov-07 03:00 PM	

+="CN49373"	"Provision of Fitout at CRS Australia- Batemans Bay NSW"	="CRS Australia"	30-Nov-07	="Building and Construction and Maintenance Services"	22-Oct-07	06-Dec-07	176451.00	=""	="Latin Interiors Pty Ltd"	30-Nov-07 03:01 PM	

+="CN49374"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	30-Nov-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	21367.50	=""	="Stryker Australia Pty Ltd"	30-Nov-07 03:03 PM	

+="CN49378-A2"	"Provision of Cleaning Services at the Wyong premises of CRS Australia"	="CRS Australia"	30-Nov-07	="General building and office cleaning and maintenance services"	17-Nov-06	16-Nov-09	19202.16	=""	="GTL Management"	30-Nov-07 03:16 PM	

+="CN49380"	"Maternity Wear - Army Khaki"	="Defence Materiel Organisation"	30-Nov-07	="Military uniforms"	09-Nov-07	14-Jul-08	71876.50	=""	="Australian Defence Apparel"	30-Nov-07 03:24 PM	

+="CN49381"	"Equipment Hite - official visit "	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Marquees"	30-Aug-07	06-Sep-07	50000.00	=""	="Pages Event Hire"	30-Nov-07 03:51 PM	

+="CN49383-A5"	" Scamax Inotec Scanner Maintenance and Services  Extn of maintenance for Scanners    "	="Australian Taxation Office"	30-Nov-07	="Computer services"	01-Sep-07	31-Aug-11	593330.40	=""	="Inotec Organisationsysteme Pty Ltd"	30-Nov-07 03:57 PM	

+="CN49384"	"Legal Services"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Legal services"	01-Jul-07	30-Jun-08	22000.00	=""	="Aust Government Solicitor Canberra"	30-Nov-07 03:58 PM	

+="CN49385-A1"	"Stationery"	="Department of the Prime Minister and Cabinet"	30-Nov-07	="Stationery"	19-Jun-07	18-Jun-08	31400.00	=""	="CANPRINT COMMUNICATIONS Pty Ltd"	30-Nov-07 04:07 PM	

+="CN49386"	" STAGE 2  INSTALL APPROVED REPAIR ONTO A BRIDGE ERECTION PROPULSION BOAT AS PER STATEMENT OF WORK AGAINST STANDING OFFER NO. E1-203894  STAGE 3  INSTALLATION OF REPAIR SOLUTION TO BALANCE OF BRIDGE ERECTION PROPULSION BOAT  TECHNICAL DRAWINGS  INSTALLATION OF VETUS STRAINER TO RAW WATER SYSTEM  SUPPLY AND FIT WORK LIGHTS CABLES AND LIGHTS TO 6 VESSELS  ANODE INSTALLATION  SUPPLY AND INSTALLATION OF BIMINI COVER KITS TO 15 BOATS "	="Defence Materiel Organisation"	30-Nov-07	="Workover boats"	26-Nov-07	30-Sep-08	291002.81	=""	="THE BIRDON GROUP"	30-Nov-07 05:04 PM	

+="CN49387"	"STERILIZER, SURGICAL INSTRUMENT AND DRESSING CLASS B, PRE-VACUUM, EXTRA LARGE BENCH TOP, DENTAL, C/W MANUALS, 5 X TRAYS, TRAY HOLDER, DRAIN TUBING, BACTERIOLOGICAL FILTER, FUNNEL, REVERSIBLE RACK AND PRINTER. QTY 3"	="Defence Materiel Organisation"	01-Dec-07	="Dental equipment and supplies"	16-Nov-07	07-Dec-07	27451.87	=""	="ADEC AUSTRALIA"	01-Dec-07 01:24 PM	

+="CN49388"	"MANIKIN, NURSING TRAINING AID PATIENT CARE SIMULATOR W/INTERCHANGEABLE MALE/FEMALE ORGANS AND FULLY MOVABLE LIMBS FOR PRACTIING PRODCEDURES. QTY 10"	="Defence Materiel Organisation"	01-Dec-07	="Medical training and education supplies"	16-Nov-07	07-Dec-07	24035.00	=""	="MENTONE EDUCATIONAL CENTRE"	01-Dec-07 01:37 PM	

+="CN49389"	"REFRIDGERATOR, DRUG STORAGE MECHANICAL, 325 LITRE UPRIGHT TYPE, SINGLE SOLID EXXTERNAL DOOR, 5 FOODGRADE ADJUSTABLE SHELVES, DIGITAL TEMPERATURE CONTROLLER AND ALARM.  QTY 3"	="Defence Materiel Organisation"	01-Dec-07	="General purpose refrigerators or refrigerator freezers"	21-Nov-07	12-Dec-07	29667.00	=""	="ARROWSMITH & GRANT REFRIGERATION"	01-Dec-07 01:50 PM	

+="CN49390"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	29-Nov-07	14-Dec-07	16986.97	=""	="Laerdal Pty Ltd"	03-Dec-07 07:44 AM	

+="CN49391"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	22-Nov-07	23-Dec-07	14155.90	=""	="Dejay Medical & Scientific Pty Ltd"	03-Dec-07 07:47 AM	

+="CN49392"	"Medical Consumables For ADF"	="Defence Materiel Organisation"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	26-Nov-07	10-Jan-08	14915.86	=""	="Biolab (Aust) Pty Ltd"	03-Dec-07 07:50 AM	

+="CN49393"	"ASLAV PARTS - FUEL PUMP"	="Department of Defence"	03-Dec-07	="Armoured fighting vehicles"	30-Nov-07	15-Jun-08	19670.86	=""	="GENERAL DYNAMICS LAND SYSTEMS"	03-Dec-07 07:59 AM	

+="CN49394"	"ASLAV PARTS - WIRING HARNESS BRANCHED"	="Department of Defence"	03-Dec-07	="Armoured fighting vehicles"	30-Nov-07	28-Feb-08	31125.33	=""	="GENERAL DYNAMICS LAND SYSTEMS"	03-Dec-07 08:02 AM	

+="CN49395"	" NSN 2840-66-103-0991  REPAIR/OVERHAUL OF ENGINE BUILT-UP UNIT, AIRCRAFT  EX GST "	="Defence Materiel Organisation"	03-Dec-07	="Military transport aircraft"	27-Aug-07	30-Jan-08	21784.46	=""	="Qantas Defence Services Pty Ltd"	03-Dec-07 08:20 AM	

+="CN49396"	" NSN 5330-01-481-9786  PURCHASE OF GASKET  EX GST "	="Defence Materiel Organisation"	03-Dec-07	="Military transport aircraft"	31-Oct-07	10-Nov-07	29400.00	=""	="Aerospace Composites Pty Ltd"	03-Dec-07 08:24 AM	

+="CN49398"	"Printing of NAT71047 NESB - Better Super Booklet. Qty: 30,000."	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Sep-07	30-Sep-07	51474.50	="06.030"	="PMP Printing Limited"	03-Dec-07 09:01 AM	

+="CN49399"	"Contractor - Temporary assistant"	="Future Fund Management Agency"	03-Dec-07	="Temporary personnel services"	03-Dec-07	15-Feb-08	22000.00	=""	="BarberBunton"	03-Dec-07 09:12 AM	

+="CN49402"	"IT Hardware for business.gov.au  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	31-Dec-07	270436.60	=""	="HEWLETT PACKARD AUSTRALIA PTY LTD"	03-Dec-07 09:25 AM	

+="CN49403"	"QUARTERLY ALLIANCE REPORTS 07/08"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	01-Jul-07	30-Jun-08	30400.00	=""	="INNOVATION DYNAMICS"	03-Dec-07 09:25 AM	

+="CN49404"	"Maintenance Services provided for EISys for the period 1 Oct"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	01-Jul-07	30-Jun-08	222750.00	=""	="GEOSCIENCE AUSTRALIA"	03-Dec-07 09:25 AM	

+="CN49405"	"Review of uranium regulatory system  Resources Div PO Folder"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	01-Nov-07	07-Feb-08	187440.00	=""	="DELOITTE TOUCHE TOHMATSU"	03-Dec-07 09:25 AM	

+="CN49406"	"WYD 2008 - Second Funding Agreement"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Legal services"	01-Nov-07	30-Jun-08	11970.00	=""	="MALLESONS STEPHEN JAQUES"	03-Dec-07 09:26 AM	

+="CN49407"	"Analysis of Aviation specific Climate Change and Policies on"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Economics"	01-Nov-07	30-Jun-08	19800.00	=""	="ACCESS ECONOMICS PTY LIMITED"	03-Dec-07 09:26 AM	

+="CN49401"	"Comcar"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Transportation and Storage and Mail Services"	31-Aug-07	31-Oct-07	37000.00	=""	="COMCAR"	03-Dec-07 09:26 AM	

+="CN49408"	"Finnigan LTQ Orbitrap XL Ray Kazlauskas N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	02-Nov-07	02-Nov-11	946467.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	03-Dec-07 09:26 AM	

+="CN49409"	"Customised DITR Microsoft CRM 3.0 Installation and Configura"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	02-Nov-07	31-Dec-07	15746.50	=""	="DIMENSIONS DATA LEARNING SOLUTIONS"	03-Dec-07 09:26 AM	

+="CN49410"	"Hardware for the NMI Refresh Project  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	02-Nov-07	31-Dec-07	78431.10	=""	="IBM AUST LTD"	03-Dec-07 09:26 AM	

+="CN49411"	"EEO - undertake trial verification with Alcoa NA"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	04-Nov-07	31-Mar-08	17000.00	=""	="RAWETECH"	03-Dec-07 09:26 AM	

+="CN49412"	"GIIF FINANCIAL ASSESSMENTS  IA07/00459"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	05-Nov-07	07-Dec-07	272250.00	=""	="WALTER and TURNBULL"	03-Dec-07 09:26 AM	

+="CN49413"	"Disposal Chemicals  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Toxic and hazardous waste cleanup"	07-Nov-07	30-Jun-08	10500.82	=""	="TRANSPACIFIC INDUSTRIES PTY LTD"	03-Dec-07 09:27 AM	

+="CN49414"	"SPEC Gases Installations  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory supplies and fixtures"	07-Nov-07	30-Jun-08	17096.20	=""	="COREGAS PTY LTD"	03-Dec-07 09:27 AM	

+="CN49415"	"Reimbursement - Environmental Investigation, Remediation and E"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	30-Nov-07	54303.00	=""	="CLIVE RD PTY LTD"	03-Dec-07 09:27 AM	

+="CN49416"	"Annual subscription to Web of science and current contents, R6"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Electronic reference material"	07-Nov-07	31-Dec-07	47840.00	=""	="THOMSON SCIENTIFIC INC"	03-Dec-07 09:27 AM	

+="CN49417"	"PRINTING OF BENCHMARK REPORT  AX07/0006"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	08-Aug-07	24-Aug-07	37957.70	=""	="LINDSAY YATES and PARTNERS"	03-Dec-07 09:27 AM	

+="CN49418"	"SET OF CURRENT SHUNTS Physikalisch Technischer prufdienst PO"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	08-Dec-07	19-Dec-07	15000.00	=""	="PHYSIKALISCH TECHNISCHER PRUFDIENST"	03-Dec-07 09:27 AM	

+="CN49419"	"3.5mm Calibration kit Agilent PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	08-Nov-07	09-Nov-07	15247.10	=""	="AGILENT TECHNOLOGIES AUST PTY"	03-Dec-07 09:27 AM	

+="CN49420"	"LPG conversions analysis, forecast and reporting MD Admin 07"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	08-Nov-07	09-Nov-07	23620.00	=""	="ACCESS ECONOMICS PTY LIMITED"	03-Dec-07 09:27 AM	

+="CN49421"	"Personal Efficiency Program - EFB Executives Training NA"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	12-Nov-07	19800.00	=""	="D'ARCY CONSULTING GROUP"	03-Dec-07 09:28 AM	

+="CN49422"	"SES Office Removal Level 4 - Industry House Property Claims"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building and Construction and Maintenance Services"	09-Nov-07	21-Dec-07	10603.45	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	03-Dec-07 09:28 AM	

+="CN49423"	"Security Room Alterations Level 4 - Industry House Property"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building and Construction and Maintenance Services"	09-Nov-07	21-Dec-07	15676.10	=""	="G.E.SHAW and ASSOCIATES PTY LTD"	03-Dec-07 09:28 AM	

+="CN49424"	"Design fees - VIC State Office Fit Out 161 Collins Street Pr"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Professional engineering services"	09-Nov-07	21-Dec-07	16369.51	=""	="GOODWIN DESIGN STUDIO"	03-Dec-07 09:28 AM	

+="CN49425"	"Placement Fee for the Engagement of Ineke Kennedy C07/10871"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	09-Nov-07	30-Nov-07	15000.00	=""	="TPA"	03-Dec-07 09:28 AM	

+="CN49426"	"TSM Disk Storage and Related Licences  C07/00078"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	09-Nov-07	30-Nov-07	45320.00	=""	="IBM AUST LTD"	03-Dec-07 09:28 AM	

+="CN49427"	"LCMSMS Jenny Bruce N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	10-Oct-07	23-Nov-07	396000.00	=""	="VARIAN AUSTRALIA PTY LTD"	03-Dec-07 09:28 AM	

+="CN49428"	"Equipment installation"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Audio and visual presentation and composing equipment"	11-Jul-07	11-Jul-07	21599.60	=""	="ZENITH CUSTOM INSTALLATION CO. PTY LTD"	03-Dec-07 09:28 AM	

+="CN49430"	"Contract work"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	11-Jul-07	11-Jul-07	24200.00	=""	="PLAIN ENGLISH FOUNDATION PTY LTD"	03-Dec-07 09:29 AM	

+="CN49431"	"IT Equipment"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	11-Jul-07	11-Jul-07	34487.42	=""	="DELL AUSTRALIA"	03-Dec-07 09:29 AM	

+="CN49433"	"services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	11-Jul-07	11-Jul-07	71870.00	=""	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 09:29 AM	

+="CN49434"	"Printing services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Printed media"	11-Jul-07	11-Jul-07	123651.90	=""	="NEW MILLENNIUM PRINT"	03-Dec-07 09:29 AM	

+="CN49435"	"IT Services"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	11-Jul-07	11-Jul-07	152000.00	=""	="CCS TECHNOLOGY RECRUITERS"	03-Dec-07 09:29 AM	

+="CN49438"	"IT CONTRACTOR"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	122400.00	=""	="AMBIT GROUP PTY LTD"	03-Dec-07 09:30 AM	

+="CN49439"	"InstallShield 2008 Priemier Licence with Silver Maintenance"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	12-Nov-07	30-Nov-07	10688.33	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:30 AM	

+="CN49440"	"Finnigan Delta V Plus Michael Collins N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	13-Nov-07	21-Dec-07	530722.00	=""	="THERMO FINNIGAN AUSTRALIA P/L"	03-Dec-07 09:30 AM	

+="CN49441"	"2008 flagship design  ia02/00056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	13-Nov-07	31-Dec-07	13255.00	=""	="SWELL DESIGN GROUP"	03-Dec-07 09:30 AM	

+="CN49442"	"Consultancy service to Evaluate GTIS  Innov Div PO File"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	31-Jan-08	24000.00	=""	="EDITH COWAN UNIVERSITY"	03-Dec-07 09:30 AM	

+="CN49443"	"TWO SUN SPARC COMPUTERS AS PER QUOTE #IPS00002 DD 14/11/07 S"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	14-Dec-07	30-Apr-08	11616.40	=""	="REMORA TECHNOLOGIES PTY LTD"	03-Dec-07 09:30 AM	

+="CN49444"	"PLACEMENT FEE FOR MARIO GORDON  IA02/0056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	14-Nov-07	29-Nov-07	16086.10	=""	="THE PUBLIC AFFAIRS RECRUITMENT COMPANY"	03-Dec-07 09:30 AM	

+="CN49445"	"Maintenance Support for Oracle Host Servers C07/10688"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	14-Nov-07	30-Jun-08	32323.06	=""	="SUN MICROSYSTEMS AUST PTY LTD"	03-Dec-07 09:30 AM	

+="CN49446"	"Additional Managed PKI for SSL (Premium) EV Software Certifi"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	14-Nov-07	30-Nov-07	23760.00	=""	="VERISIGN AUSTRALIA PTY LTD"	03-Dec-07 09:31 AM	

+="CN49447"	"Development Management J.B Project Management JK Req.Raised"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-May-07	30-Sep-07	25048.38	=""	="WILDE AND WOOLLARD"	03-Dec-07 09:31 AM	

+="CN49448"	"LT04 Tape Cartridges for the TSM Tape Library C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Nov-07	12650.00	=""	="PRODATA PTY LTD"	03-Dec-07 09:31 AM	

+="CN49449"	"GC WITH PULSE DISCHARGE Shimadzu PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	16-Nov-07	29-Dec-07	34823.80	=""	="SHIMADZU OCEANIA PTY LTD"	03-Dec-07 09:31 AM	

+="CN49450"	"GC WITH Mass spectrometer Shimadzu PO raised by L Osbual"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	16-Nov-07	29-Dec-07	77312.40	=""	="SHIMADZU OCEANIA PTY LTD"	03-Dec-07 09:31 AM	

+="CN49451"	"Install 2 new automatic doors  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Building construction and support and maintenance and repair services"	16-Nov-07	30-Jun-08	13919.40	=""	="HIROTEC MAINTENANCE P/L"	03-Dec-07 09:31 AM	

+="CN49452"	"Environmental Analysis  N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	30-Jun-08	186978.00	=""	="ENSIS"	03-Dec-07 09:31 AM	

+="CN49454"	"CLIENT SERVICES WORKSHOP - 24/25/10/07  IA07/00228"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Hotels and lodging and meeting facilities"	16-Nov-07	30-Nov-07	10236.38	=""	="SHANGRI-LA HOTEL SYDNEY"	03-Dec-07 09:31 AM	

+="CN49455"	"SilkCentral Test Manager Training  C07/06030"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	16-Nov-07	31-Dec-07	10560.00	=""	="BORLAND AUSTRALIA PTY LTD"	03-Dec-07 09:31 AM	

+="CN49456"	"Contractor - Peter Wass For the Period 11/2/07 to 14/3/07 C0"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	17-Jul-06	30-Nov-07	18030.38	=""	="ICON RECRUITMENT"	03-Dec-07 09:32 AM	

+="CN49457"	"Provision of Maintenance and Support of Adobe LiveCycle Prod"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	18-Jul-07	30-Jun-10	571507.00	=""	="AVOKA TECHNOLOGIES"	03-Dec-07 09:32 AM	

+="CN49458"	"Scoping of APP Project China Building Energy Rating Tool C07"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	18-Oct-07	30-Jun-08	38500.00	=""	="NATIONAL PROJECT CONSULTANTS P/L"	03-Dec-07 09:32 AM	

+="CN49459"	"WIP Workshops Organising and Facilitating Admin"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	01-Aug-08	50600.00	=""	="INTEGRATED MARKETING COMMUNICATIONS P/L"	03-Dec-07 09:32 AM	

+="CN49460"	"Principal Author Barry NollerAPP Project Leading Practice Ha"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Writing and translations"	19-Nov-07	30-Apr-08	10000.00	=""	="THE UNIVERSITY OF QUEENSLAND - CMLR"	03-Dec-07 09:32 AM	

+="CN49461"	"EXACT TARGET  IA07/00246"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	19-Nov-07	30-Nov-07	22000.00	=""	="MPATH GLOBAL PTY LTD"	03-Dec-07 09:32 AM	

+="CN49462"	"Contractor - Luke Mathers For the Period 19/11/07 to 12/3/08"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	19-Nov-07	31-Mar-08	119680.00	=""	="FACE2FACE RECRUITMENT PTY LTD"	03-Dec-07 09:32 AM	

+="CN49463"	"YOUNG and RUBICAM - RESEARCH PROJECT  IA07/00286"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	19-Sep-07	31-Oct-07	70035.00	=""	="YOUNG and RUBICAM BRANDS"	03-Dec-07 09:32 AM	

+="CN49464"	"Provision of Solutions Architect Service Engagement of Chris"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	20-Nov-07	03-Dec-07	15840.00	=""	="FRONTIER GROUP AUSTRALIA PTY LTD"	03-Dec-07 09:33 AM	

+="CN49465"	"Engagement of Consultant as Chair of Gas Market Leaders Grou"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	20-Nov-07	20-Nov-07	71000.00	=""	="WOODLEY, TED"	03-Dec-07 09:33 AM	

+="CN49466"	"Tourism Industry Carbon Footprint  C07/14082"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Economics"	20-Nov-07	30-Apr-08	22000.00	=""	="CRC FOR SUSTAINABLE TOURISM PTY LTD"	03-Dec-07 09:33 AM	

+="CN49467"	"ADVANCE GLOBAL AUSTRALIAN PROFESSIONALS  IA07/00416"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	21-Sep-07	31-Jul-08	76000.00	=""	="ADVANCE GLOBAL AUSTRALIAN PROFESSIONALS"	03-Dec-07 09:33 AM	

+="CN49469"	"Analytical Balance L. Mackay N/A"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	22-Nov-07	14-Dec-07	16022.40	=""	="METTLER TOLEDO LTD"	03-Dec-07 09:33 AM	

+="CN49470"	"Consultancy for the Preparation of Technical Upgrade Plan fo"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer services"	22-Nov-07	30-Nov-07	16500.00	=""	="QIRX PTY LTD"	03-Dec-07 09:33 AM	

+="CN49471"	"EECAR - facilitation of technical aspects to MOU with DEW C0"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-Nov-07	11660.00	=""	="STRATEGIC DATA MANAGEMENT PTY LTD"	03-Dec-07 09:34 AM	

+="CN49472"	"Statistical Analytical Software package  INNOV PO FOLDER 200"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	23-Nov-07	31-Dec-07	47200.00	=""	="SAS INSTITUTE AUSTRALIA PTY LTD"	03-Dec-07 09:34 AM	

+="CN49473"	"4 x Single-sided Panorama Dislay Systems  Q05/01"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Merchandising furniture and accessories"	23-Nov-07	31-Jan-08	11000.00	=""	="TOUCAN DISPLAY SYSTEMS INT P/L"	03-Dec-07 09:34 AM	

+="CN49474"	"Licenses for the Systems Requirements and Fulfilment (SRandF)"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	24-Jan-07	30-Nov-07	33550.00	=""	="HOLOCENTRIC PTY LTD"	03-Dec-07 09:34 AM	

+="CN49475"	"6x Dell OptiPlex 755 Desktop Computers Ref: Quote No: AUSO33"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	25-Oct-07	17-Nov-07	14220.36	=""	="DELL AUSTRALIA"	03-Dec-07 09:34 AM	

+="CN49476"	"Agilent database library  Agilent"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	25-Oct-07	31-Dec-07	14294.39	=""	="AGILENT TECHNOLOGIES AUST PTY"	03-Dec-07 09:34 AM	

+="CN49477"	"Low Temp furnace K23MR w/ RS-232 POND ENGR USA PO RAISED BY"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Laboratory and scientific equipment"	26-Nov-07	26-Jan-08	22334.00	=""	="POND ENGINEERING LABORATORIES, INC"	03-Dec-07 09:34 AM	

+="CN49478"	"EUROMOLD07  IA07/00407"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Merchandising furniture and accessories"	26-Nov-07	30-Nov-07	19384.27	=""	="SKYLINE DISPLAYS AUSTRALIA PTY LTD"	03-Dec-07 09:34 AM	

+="CN49479"	"COMPOSITES SCOPING STUDY  IA07/00460"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management advisory services"	26-Oct-07	31-Jan-08	30140.00	=""	="COOPERATIVE RESEARCH CENTRE FOR ADVANCED"	03-Dec-07 09:34 AM	

+="CN49480"	"JLLasalle Facilities Management Fees for Nov 2007, 210006818"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	08-Dec-07	19754.16	=""	="JONES LANG LASALLE (ACT) PTY LTD"	03-Dec-07 09:35 AM	

+="CN49481"	"APNet - facilitation of workshop Phase one Australian consul"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	31-Dec-07	14190.00	=""	="ECONNECT PTY LTD"	03-Dec-07 09:35 AM	

+="CN49482"	"TWO SUN ULTRA 25 WORKSTATIONS AS PER QUOTE #IPS00003 DD 14/1"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	14-Dec-07	10632.73	=""	="REMORA TECHNOLOGIES PTY LTD"	03-Dec-07 09:35 AM	

+="CN49483"	"RAID Subsystem - U320 SCSI TO SATA II AS PER QUOTE 21112007-"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	28-Nov-07	15-Dec-07	13409.00	=""	="DIGICOR PTY LTD"	03-Dec-07 09:35 AM	

+="CN49484"	"Analysts and iBridge Support  C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	29-Oct-07	31-Oct-07	14031.82	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:35 AM	

+="CN49485"	"Analysis of Effects of Foreign Ownership on Knowledge Transf"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Management and Business Professionals and Administrative Services"	30-Apr-08	30-Jun-08	20075.00	=""	="AUSTRALIAN BUREAU OF STATISTICS"	03-Dec-07 09:35 AM	

+="CN49486"	"Assistant Manager, advertising placement fee IA/02/00056"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	30-Nov-07	30-Nov-07	14458.47	=""	="TPA"	03-Dec-07 09:35 AM	

+="CN49487"	"Mark Ransom - BAET Project Staff Services 31/10/07 to 12/12/"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Human resources services"	30-Oct-07	12-Dec-07	10788.53	=""	="SOS RECRUITMENT"	03-Dec-07 09:35 AM	

+="CN49488"	"EMC iSCSI Sans for the NMI Refresh Project C05/06800"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Computer Equipment and Accessories"	30-Oct-07	30-Nov-07	33167.30	=""	="CITY SOFTWARE"	03-Dec-07 09:36 AM	

+="CN49489"	"CLIENT SERVICES TRAINING  IA07/00442"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Education and Training Services"	31-Aug-07	30-Jun-08	193329.50	=""	="THE NOUS GROUP P/L"	03-Dec-07 09:36 AM	

+="CN49490"	"EAL Capability Directory and CD ROM  07/08 MD Admin PO Folder"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Business administration services"	31-Oct-07	30-Jun-08	59630.60	=""	="SWELL DESIGN GROUP"	03-Dec-07 09:36 AM	

+="CN49491"	"Trend Microsystems Virus Management Software C07/08921"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Software"	31-Oct-07	30-Nov-07	34194.60	=""	="ZALLCOM PTY LTD"	03-Dec-07 09:36 AM	

+="CN49492"	"APS Gazette Subscription 2007-2008 C07/07657"	="Department of Industry, Tourism and Resources"	03-Dec-07	="Advertising"	31-Oct-07	31-Dec-07	26327.29	=""	="AUSTRALIAN PUBLIC SERVICE COMMISSION"	03-Dec-07 09:36 AM	

+="CN49468"	"Repair of Kiowa A/c Engine Component"	="Defence Materiel Organisation"	03-Dec-07	="Aircraft engine compressors"	05-Sep-06	10-Oct-06	54286.60	=""	="Aviation turbine O/H"	03-Dec-07 09:46 AM	

+="CN49494"	"Recruitment services placement fee"	="Civil Aviation Safety Authority"	03-Dec-07	="Personnel recruitment"	15-Nov-07	14-Dec-07	16500.00	="07/141"	="Hays Personnel Services (Australia) Pty Ltd"	03-Dec-07 09:46 AM	

+="CN49497"	"Contiuation of Executive Search - Manager Officer of Airspace Regulation"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	06-Oct-07	06-Apr-08	27000.00	="06/192-01"	="Spencer Stuart & Associates"	03-Dec-07 09:57 AM	

+="CN49495"	"REPAIR OF KIOWA ENGINE COMPONENTS"	="Defence Materiel Organisation"	03-Dec-07	="Aircraft engine compressors"	12-Sep-06	25-Oct-06	55770.70	=""	="AVIATION TURBINE O/H"	03-Dec-07 09:58 AM	

+="CN49496"	" Supply of Black Antiflash Balaclavas    "	="Defence Materiel Organisation"	03-Dec-07	="Insulated clothing for cold environments"	18-Oct-07	11-Jan-09	22989.70	=""	="Scandex Field Clothing"	03-Dec-07 10:01 AM	

+="CN49499"	"    Design and supply of eLearning products    "	="Therapeutic Goods Administration"	03-Dec-07	="Office Equipment and Accessories and Supplies"	03-Sep-07	31-Oct-07	17703.13	="2007/006142"	="Total Learn Pty Ltd"	03-Dec-07 10:06 AM	

+="CN49498"	"ICAO Language Proficiency Contractor"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	17-Sep-07	31-Mar-08	33000.00	="06/226-01"	="Dr Patricia Denham"	03-Dec-07 10:06 AM	

+="CN49500"	" AIRCRAFT SPARES  NSN: 1560-01-368-5239 FITTING, STRUCTURAL COMPONENT  QTY: 7 "	="Defence Materiel Organisation"	03-Dec-07	="Military transport helicopters"	31-Oct-07	29-Nov-08	49175.13	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	03-Dec-07 10:07 AM	

+="CN49501"	"Management Fees Superannuation"	="Therapeutic Goods Administration"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jul-08	18995.90	=""	="Comsuper - Australian Government"	03-Dec-07 10:20 AM	

+="CN49503"	"Workforce Capability Project"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	11-Sep-07	31-Dec-07	475000.00	="06/233"	="Hay Group Pty Ltd"	03-Dec-07 10:28 AM	

+="CN49505"	"Supply of 20 Laptops and accessories"	="Therapeutic Goods Administration"	03-Dec-07	="Domestic Appliances and Supplies and Consumer Electronic Products"	24-Oct-07	24-Nov-07	68365.00	=""	="DELL Computer Pty Ltd"	03-Dec-07 10:32 AM	

+="CN49506"	"Evaluation of the Primary Health Care Research, Evaluation & Development Strategy"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	31-Oct-08	380600.00	="052/0708"	="HEALTHCARE PLANNING & EVALUATION"	03-Dec-07 10:34 AM	

+="CN49507"	"Creative Advertising Services for the National Skin Cancer Campaign - Phase two"	="Department of Health and Ageing"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	16-Aug-07	30-Jun-08	38845.95	=""	="BMF ADVERTISING"	03-Dec-07 10:34 AM	

+="CN49508"	"Data Analyst/Designer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	08-Feb-08	95700.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:34 AM	

+="CN49509"	"Temporary employee @ APS5 from 7.11.07-7.2.08 @ $58.40 per hour (incl gst)"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Feb-08	27000.00	=""	="PROFESSIONAL CAREERS AUSTRALIA"	03-Dec-07 10:35 AM	

+="CN49510"	"More Doctors for Outer Metropolitan Areas"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	20-Aug-07	30-Nov-07	25421.00	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:35 AM	

+="CN49511"	"Advertising for the development of a National Healthy Active Australia Primary Resource Kit."	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	09-Nov-07	21-Nov-07	20526.10	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:35 AM	

+="CN49512"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	220000.00	="042/0506"	="AUST GOVT SOLICITOR VIC"	03-Dec-07 10:35 AM	

+="CN49513"	"Qualitative Research into Home Medicines Review (HMR) Program to identify and explore gaps in acce"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	20-Nov-07	30-Jun-08	220000.00	=""	="CAMPBELL RES & CONSULTING"	03-Dec-07 10:35 AM	

+="CN49514"	"Provision of a web based counselling intervention service"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Oct-07	28-Feb-08	241302.00	="N/A"	="TURNING POINT ALCOHOL AND DRUG CENT"	03-Dec-07 10:35 AM	

+="CN49515"	"Cabling and Electrical Services for Darwin Office"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	20-Nov-07	30-Nov-07	30908.00	=""	="POWER MAINTENANCE & CONSTRUCTIONS"	03-Dec-07 10:35 AM	

+="CN49516"	"Guarding Services 1.10.07-31.10.07 & 1.9.07-30.9.0"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Oct-07	30-Jun-08	107558.48	=""	="CHUBB PROTECTIVE SERV"	03-Dec-07 10:36 AM	

+="CN49517"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:36 AM	

+="CN49518"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	14300.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:36 AM	

+="CN49519"	"Supply of In Confidence File Cover Form 537"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Jun-08	23926.00	=""	="B.H.B. PRINTING PTY LTD"	03-Dec-07 10:36 AM	

+="CN49520"	"Specialist Assistance for financial eval of response to RFP 058/0708"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Jun-08	28463.00	=""	="WALTERTURNBULL PTY LTD"	03-Dec-07 10:36 AM	

+="CN49521"	"Finalising the suit of LiFE framework documents"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Jun-07	30-Nov-07	71115.00	="208/0607"	="NOVA PUBLIC POLICY PTY LTD"	03-Dec-07 10:36 AM	

+="CN49522"	"Supply & installation of new security sysyem for Dawin Office"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	30-Nov-07	16195.00	=""	="CHUBB ELECTRONIC SECURITY PTY LTD"	03-Dec-07 10:36 AM	

+="CN49523"	"Recruitment placement - Corporate Support Branch"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	30-Jun-08	14660.34	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:37 AM	

+="CN49524"	"Professional Services - Accommodation Strategy"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	30-Jun-08	74662.50	=""	="ATF PCM UNIT TRUST"	03-Dec-07 10:37 AM	

+="CN49525"	"Employment of contractor prior to recruitment round"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jun-08	30000.00	=""	="FRONTIER GROUP AUSTRALIA PTY LIMITE"	03-Dec-07 10:37 AM	

+="CN49526-A1"	"Formative Research for the National HIV/AIDS and Other STIs Campaign"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Jun-08	110000.00	=""	="STANCOMBE RES & PLANNING PTY LTD"	03-Dec-07 10:37 AM	

+="CN49527"	"Contract for the supply of transport ventilator (Oxylog 3000) and training to the Mersey Hospital"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	13-Nov-07	30-Jun-08	28154.50	=""	="DRAEGER MEDICAL AUSTRALIA PTY LIMIT"	03-Dec-07 10:37 AM	

+="CN49528"	"Recruitment Costs for Position of Chief Executive at the Australian Commission on Safety & Quali"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Nov-07	15-Nov-07	49773.90	=""	="PROFILE RAY AND BERNDTSON PTY LTD"	03-Dec-07 10:37 AM	

+="CN49529"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	10000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:37 AM	

+="CN49530"	"Provision of advice on pharmaceutical pricing issues."	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Oct-07	30-Jun-08	30000.00	=""	="DES THRELFALL"	03-Dec-07 10:37 AM	

+="CN49532"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	15000.00	="042/0506"	="DLA PHILLIPS FOX"	03-Dec-07 10:37 AM	

+="CN49533"	"COEP - OATSIH/NTECC PENRYHN Various Works"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	15-Nov-07	30-Nov-07	13650.22	=""	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:38 AM	

+="CN49534"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	18000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:38 AM	

+="CN49531"	"Mobile Voice Services"	="Civil Aviation Safety Authority"	03-Dec-07	="Communications Devices and Accessories"	15-Nov-07	30-Jun-09	92400.00	="06/241-01"	="Telstra Corporation"	03-Dec-07 10:38 AM	

+="CN49535"	"Supply and Install Voice Services for Francis Chambers"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Nov-07	30-Jun-08	30848.00	=""	="NEC BUSINESS SOLUTIONS LTD"	03-Dec-07 10:38 AM	

+="CN49536"	"Administrative staff to process NICNAS notificatio and assessment applications."	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	25-Sep-07	01-Feb-08	22370.00	=""	="VEDIOR ASIA PACIFIC PTY LTD"	03-Dec-07 10:38 AM	

+="CN49537"	"development of Guidelines for AOD frontline worker for the treatment of Methamphetamine use"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Apr-08	118811.00	="337/0607"	="TURNING POINT ALCOHOL AND DRUG CENT"	03-Dec-07 10:38 AM	

+="CN49538"	"Electricity Supply"	="Department of Health and Ageing"	03-Dec-07	="Electrical Systems and Lighting and Components and Accessories and Supplies"	01-Jul-07	30-Jun-08	29500.00	=""	="ENERGY AUSTRALIA"	03-Dec-07 10:38 AM	

+="CN49539"	"Extension of employee contract.  Vacancy in section due to staff movements."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	29-Apr-08	29000.00	=""	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:38 AM	

+="CN49540"	"Provide Courier pickup & delivery"	="Department of Health and Ageing"	03-Dec-07	="Transportation and Storage and Mail Services"	01-Jul-07	30-Jun-08	11060.00	=""	="TNT EXPRESS"	03-Dec-07 10:38 AM	

+="CN49541"	"Audiovisual Equipment Installation & Production Support for the Excellence in ASTI health confer"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	14-Nov-07	23-Nov-07	80004.40	=""	="CARILLON CONFERENCE MANAGEMENT"	03-Dec-07 10:38 AM	

+="CN49542"	"June 2007 assessment charges from MoU for environmental assessments for NICNAS for 2006-07."	="Department of Health and Ageing"	03-Dec-07	="Environmental Services"	01-Jul-06	30-Nov-07	64693.20	=""	="DEPARTMENT OF ENVIRONMENT"	03-Dec-07 10:38 AM	

+="CN49543"	"Production and distribution of Postcards for  2007 World AIDS Day resources"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Oct-07	30-Jun-08	12375.00	=""	="AVANT CARD PTY LIMITED"	03-Dec-07 10:38 AM	

+="CN49544"	"Courier pickup & deliver Daily Banking & return"	="Department of Health and Ageing"	03-Dec-07	="Paper Materials and Products"	01-Jul-07	30-Jun-08	11060.00	=""	="SNAP COURIER SERVICES"	03-Dec-07 10:38 AM	

+="CN49545"	"contract accountant for WA OATSIH"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	22-Oct-07	21-Dec-07	22500.00	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:39 AM	

+="CN49546"	"Printing (including pre-press) of NICNAS Annual Report 2006-07 + delivery of some"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	18-Oct-07	30-Nov-07	23100.00	=""	="THE PRODUCTION CENTRE"	03-Dec-07 10:39 AM	

+="CN49547"	"Editorial, graphic design services in respect of the report of the National Clinical Taskforce."	="Department of Health and Ageing"	03-Dec-07	="Editorial and Design and Graphic and Fine Art Services"	22-Nov-07	24-Dec-07	19000.00	=""	="AMPERSAND EDITORIAL & DESIGN"	03-Dec-07 10:39 AM	

+="CN49548"	"SOlve Projects kitchen contract 1885-C1"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Nov-07	30-Jun-08	26378.99	=""	="SOLVE PROJECT MANAGEMENT P/L"	03-Dec-07 10:39 AM	

+="CN49549"	"Contracting support on Patient  ID & other program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	15-Oct-07	14-Jan-08	29700.00	=""	="SPENCERSMITH AND ASSOCIATES PTY LTD"	03-Dec-07 10:39 AM	

+="CN49550"	"TGA OGTR SLA for Financil & Other Services 2007-08"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	311164.70	=""	="THERAPEUTIC GOODS ADMINISTRATION"	03-Dec-07 10:39 AM	

+="CN49551"	"Drafting of  Ministerial Determinations for Health Insurance (Dental Services) Determination 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	08-Aug-07	19-Nov-07	56038.40	=""	="ATTORNEY-GENERALS DEPARTMENT"	03-Dec-07 10:39 AM	

+="CN49552"	"Airfare for NICNAS Staff from September to October"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	03-Sep-07	05-Nov-07	16009.66	=""	="AMERICAN EXPRESS AUSTRALIA LIMITED"	03-Dec-07 10:39 AM	

+="CN49553"	"Conference org. serv. for Nat. Abor. &Torres Str. Islander Sexual Health Promotion Workshop."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Nov-07	01-Jun-08	54000.00	="."	="AUSTRALASIAN SOCIETY FOR HIV MEDICI"	03-Dec-07 10:39 AM	

+="CN49554"	"Electronic Media information relating to NICNAS"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	30-Jun-08	23100.00	=""	="MEDIA MONITORS PTY LIMITED"	03-Dec-07 10:39 AM	

+="CN49555"	"Temporary Staff Placement - Radiation Oncology"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	23-Nov-07	23-Dec-07	11536.14	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:39 AM	

+="CN49557"	"Printing Parents Booklet x 16 Languages"	="Department of Health and Ageing"	03-Dec-07	="Published Products"	11-Oct-07	23-Nov-07	27637.00	=""	="PMP COMMUNICATIONS LTD"	03-Dec-07 10:39 AM	

+="CN49558"	"Service level agreement w/the DEWR-the schedule specifying the serv & funding arrangements 07/08"	="Department of Health and Ageing"	03-Dec-07	="Environmental Services"	24-Oct-07	30-Jun-08	580195.00	=""	="DEPARTMENT OF ENVIRONMENT"	03-Dec-07 10:39 AM	

+="CN49559"	"CGIS Additional Software Purchase."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	95942.00	=""	="ESRI-AUSTRALIA PTY LTD"	03-Dec-07 10:39 AM	

+="CN49560"	"White Pages Listing Jan08-Dec08"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	27-Nov-07	31-Dec-08	118357.80	=""	="TELSTRA"	03-Dec-07 10:39 AM	

+="CN49561"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	20000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:40 AM	

+="CN49562"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	41500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:40 AM	

+="CN49563-A1"	"Identity Management and Directory (IM&DS) review"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	26-Nov-07	30-Dec-07	49060.00	=""	="SMS CONSULTING GROUP LTD"	03-Dec-07 10:40 AM	

+="CN49564"	"Production and Supply of resources for 2007 WAD"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jan-08	79996.74	=""	="PERSONAL CREATIONS"	03-Dec-07 10:40 AM	

+="CN49565"	"Test Manager/Analyst for the Community Pharmacy Application System (CPAS) Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	21-Nov-07	31-Mar-08	70400.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	03-Dec-07 10:40 AM	

+="CN49566"	"Senior Oracle/Web Application Developer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-May-08	84760.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:40 AM	

+="CN49567"	"System Testing  and guidance/mentoring departments tester(s) for the PMIS Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	27-Jun-08	231660.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:40 AM	

+="CN49568"	"Proprety Lease- Bass House Devonport"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Sep-07	02-Mar-08	24000.00	=""	="THE TRUSTEE FOR OVERTON INVESTMENT"	03-Dec-07 10:41 AM	

+="CN49569"	"Property Lease- Cascom Centre Level 1 Stage 5"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-09	618608.10	=""	="TRINITY PROPERTY TRUST"	03-Dec-07 10:41 AM	

+="CN49570"	"Property Lease- Cascom Centre Level 2 Stage 5"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-09	124370.04	=""	="TRINITY PROPERTY TRUST"	03-Dec-07 10:41 AM	

+="CN49571"	"Provide Internet Services for the month of Oct 07"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	15-Dec-07	224310.63	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	03-Dec-07 10:41 AM	

+="CN49572"	"IT support and services for Medicarewiz"	="Department of Health and Ageing"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	01-Jul-07	30-Jun-09	146520.00	=""	="PROMETHEUS INFORMATION PTY. LIMITED"	03-Dec-07 10:41 AM	

+="CN49574"	"eHealth workshop & facilitation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Aug-07	31-Dec-07	10443.00	=""	="CARLA CRANNY AND ASSOCIATES PTY."	03-Dec-07 10:41 AM	

+="CN49575"	"Testing Services of the PBS Reform Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	31-Dec-07	13613.00	="288/0607"	="OAKTON SERVICES PTY LTD"	03-Dec-07 10:41 AM	

+="CN49573"	"Temporary Staff - Financial Controller"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	05-Nov-07	16-Nov-07	14850.00	="07/020-02"	="MaxNetwork Pty Ltd"	03-Dec-07 10:41 AM	

+="CN49576"	"Membership for the Gartner Executive Programs"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Sep-08	66770.00	=""	="GARTNER AUSTRALASIA PTY LIMITED"	03-Dec-07 10:41 AM	

+="CN49577"	"Property Lease- 10 Corrina Street  Woden"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Sep-10	1724258.89	=""	="GASSON PTY LIMITED"	03-Dec-07 10:42 AM	

+="CN49578"	"Java Application Developer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	30-Jun-08	126720.00	="288/0607"	="DIALOG INFORMATION TECHNOLOGY"	03-Dec-07 10:42 AM	

+="CN49579"	"Data Analyst/Designer Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Dec-07	30-Jun-08	96096.00	="288/0607"	="TALENT INTERNATIONAL (ACT) PTY LTD"	03-Dec-07 10:42 AM	

+="CN49580"	"Registration of Pharmaceutical Benefits Scheme PBS Legislative Instruments"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	76000.00	=""	="ATTORNEY-GENERALS DEPARTMENT"	03-Dec-07 10:42 AM	

+="CN49581"	"Assignment - National Manager TGA"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	30432.60	=""	="BOYDEN INTERNATIONAL"	03-Dec-07 10:42 AM	

+="CN49582"	"Supply & Install Access Control System Casurina NT"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	10-Aug-07	30-Jun-08	14916.00	=""	="CHUBB ELECTRONIC SECURITY"	03-Dec-07 10:42 AM	

+="CN49583"	"Voice Services for Edeavour House, Manuka"	="Department of Health and Ageing"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	22-Nov-07	30-Jun-08	25065.16	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 10:42 AM	

+="CN49584"	"workshop facilitation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	21-Nov-07	14-Dec-07	42000.00	=""	="ROBERT GRIEW PTY LTD"	03-Dec-07 10:42 AM	

+="CN49585"	"Recruitment engagement - The Way Forward Program"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	15-Dec-07	99520.00	="RFT"	="CPT GLOBAL LIMITED"	03-Dec-07 10:43 AM	

+="CN49586"	"Development of Communication Plans for The Way Forward Program"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	24-Aug-07	15-Dec-07	163176.20	="RFT"	="RAVE COMMUNICATION PTY LTD"	03-Dec-07 10:43 AM	

+="CN49587"	"Recruitment engagement - Delivery Support Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	17-Oct-07	18-Apr-08	113760.00	="RFT"	="CPT GLOBAL LIMITED"	03-Dec-07 10:43 AM	

+="CN49588"	"Recruitment placement - Secretariat Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	04-Oct-07	03-Jan-08	39600.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	

+="CN49589"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	08-Oct-07	23-Dec-07	30365.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	

+="CN49590"	"Recruitment placement - Communication Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	07-Nov-07	07-Feb-08	22672.00	="RFT"	="HUDSON GLOBAL RESOURCES AUST"	03-Dec-07 10:43 AM	

+="CN49591"	"Recruitment placement - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	15-Apr-08	16935.00	="RFT"	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:43 AM	

+="CN49592"	"Analysis of Iodine Addition to Salt for Bread Making and Supplementation Programs"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	17-Aug-07	26-Nov-07	39600.00	="357/0506"	="UNIVERSITY OF TECHNOLOGY SYDNEY"	03-Dec-07 10:43 AM	

+="CN49593"	"OATSIH Temp Staff"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	28-Nov-07	30-Jun-08	20000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:44 AM	

+="CN49594"	"Supply & Install Furniture Items - 10 Corrina St"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	23-Nov-07	30-Jun-08	22770.00	=""	="AURORA OFFICE FURNITURE"	03-Dec-07 10:44 AM	

+="CN49595"	"Undertake mail out of the 1 November 2007 MBS Dental Services Book and fact sheet to dentists."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	11-Oct-07	30-Nov-07	10652.24	=""	="AUSTRALIAN DENTAL ASSOCIATION INC"	03-Dec-07 10:44 AM	

+="CN49596"	"Recruitment placement  - Project Officer"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Sep-07	07-Dec-07	22021.00	="RFT"	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:44 AM	

+="CN49597"	"General Printing - Further information for residents or their nominees"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	07-Sep-07	14-Nov-07	18390.90	=""	="PARAGON PRINTERS"	03-Dec-07 10:44 AM	

+="CN49598"	"Temporary staff"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	06-Aug-07	30-Jun-08	30000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:44 AM	

+="CN49599"	"Drug Utilisation Sub Committee data collection for 07-08"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	206708.04	=""	="THE PHARMACY GUILD OF AUSTRALIA"	03-Dec-07 10:44 AM	

+="CN49600"	"NEC Agent 99 helpdesk voice solution"	="Department of Health and Ageing"	03-Dec-07	="Engineering and Research and Technology Based Services"	24-May-07	30-Jun-08	34100.00	=""	="NEC BUSINESS SOLUTIONS LTD"	03-Dec-07 10:44 AM	

+="CN49601"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	150000.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:44 AM	

+="CN49602"	"Temporary staff"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	29-Aug-07	30-Jun-08	25000.00	=""	="MCARTHUR MANAGEMENT SERVICES (SA)"	03-Dec-07 10:45 AM	

+="CN49603"	"po 4500041656 has been cancelled due to 10 digit cost centre change"	="Department of Health and Ageing"	03-Dec-07	="Paper Materials and Products"	11-Sep-07	30-Jun-08	35574.85	=""	="LEIGH MARDON AUSTRALASIA PTY LTD"	03-Dec-07 10:45 AM	

+="CN49604"	"Pre-employment exams"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Aug-07	30-Jun-08	10000.00	=""	="HEALTH FOR INDUSTRY"	03-Dec-07 10:45 AM	

+="CN49605"	"To support the implementation of 4CPA and PBS Reforms including DAA, PMP & Facilitators Program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Aug-07	30-Jun-08	46000.00	=""	="LENNON, BRETT ANTHONY"	03-Dec-07 10:45 AM	

+="CN49606"	"provision of 14 tympanometers for use by Child Health Check teams"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	26-Nov-07	31-Jan-08	74916.65	=""	="TERRITORY SURGICAL SUPPLIES"	03-Dec-07 10:45 AM	

+="CN49607"	"SES recruitment support for 2 SES Band 1 positions"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	30-Nov-07	24750.00	=""	="PAPER SHUFFLE PTY LTD"	03-Dec-07 10:45 AM	

+="CN49608"	"Payment for newspapers"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	25-Aug-07	30-Jun-08	11180.18	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:45 AM	

+="CN49609"	"two day conference is planned for late May 2008 and will be held in Sydney"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Aug-07	27-Jun-08	290000.00	="RFT 403/0607"	="INTERNATIONAL CONFERENCE & EVENTS"	03-Dec-07 10:45 AM	

+="CN49610"	"OATSIH Temp Staff"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Oct-07	30-Jun-08	20000.00	=""	="WESTAFF (AUSTRALIA) PTY LTD"	03-Dec-07 10:46 AM	

+="CN49611"	"Tempory staff placement"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Sep-07	31-Jan-08	10800.00	=""	="THE GREEN & GREEN GROUP PTY LIMITED"	03-Dec-07 10:46 AM	

+="CN49612"	"Accommodation for Drug and Alcohol Teams in Katherine, NT"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	31-Dec-07	13710.00	=""	="ST ANDREWS SERVICED APARTMENTS"	03-Dec-07 10:46 AM	

+="CN49613"	"Indigenouse Coaching Services"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-08	10248.55	=""	="PEOPLE & STRATEGY (ACT) PTY LTD"	03-Dec-07 10:46 AM	

+="CN49614"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	30000.00	="042/0506"	="CLAYTON UTZ"	03-Dec-07 10:46 AM	

+="CN49615"	"Cost Analysis of Safety and Quality Accreditation in the Australian Health System"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	02-Oct-07	31-Dec-07	45100.00	=""	="GLENN P APPLEYARD"	03-Dec-07 10:46 AM	

+="CN49616"	"2-3 PIM upgrade for Darwin NTEC"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	31-Oct-07	30-Jun-08	12131.14	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 10:46 AM	

+="CN49617"	"Grant Funding for Consumables for Breakfast and Lunches Re Shared Responsibility Agreement"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	11000.00	=""	="RENMARK PARINGA COMMUNITY CENTRE IN"	03-Dec-07 10:46 AM	

+="CN49618"	"Business Services for BAA"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	30-Jun-08	241150.00	=""	="MAXIMUSSOLUTIONS AUSTRALIA"	03-Dec-07 10:47 AM	

+="CN49619"	"Contractor services for an APS4 to act in the Branch Liaison Officer's position."	="Department of Health and Ageing"	03-Dec-07	="Personal and Domestic Services"	03-Jul-06	14-Nov-07	20000.00	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:47 AM	

+="CN49620"	"National Childrens Nutrition & Physical activity"	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	08-Aug-06	30-Nov-07	328684.15	=""	="UNIVERSITY OF SOUTH AUSTRALIA"	03-Dec-07 10:47 AM	

+="CN49621"	"Implementation of enhancements to the Continuous Quality Improvement Initiative as part of the"	="Department of Health and Ageing"	03-Dec-07	="Education and Training Services"	09-Nov-06	14-Nov-07	30000.00	=""	="GEVERS GODDARD-JONES PTY LTD"	03-Dec-07 10:47 AM	

+="CN49622"	"Ref 6.1 Financial Reporting"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	12-Jan-07	11-Feb-08	26315.00	="RFQ 022/0607"	="RESOLUTION CONSULTING SERVICES PTY"	03-Dec-07 10:47 AM	

+="CN49623"	"Chlamydia & Gonorrohea testing to reduce STI rates in QLD..."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-06	31-Oct-07	10114.53	=""	="DEPT OF HEALTH QLD  -  QLD BRISBANE"	03-Dec-07 10:47 AM	

+="CN49624"	"Business Services for BAA"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Sep-07	03-Dec-07	25200.00	=""	="MAXIMUSSOLUTIONS AUSTRALIA"	03-Dec-07 10:47 AM	

+="CN49625"	"Costs for Nov 07 PBAC meeting"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	04-Jun-07	30-Nov-07	35942.55	=""	="STAMFORD PLAZA ADELAIDE"	03-Dec-07 10:47 AM	

+="CN49626"	"Provision of Legal Services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-06	30-Jun-08	120000.00	="042/0506"	="MALLESONS STEPHEN JAQUES"	03-Dec-07 10:48 AM	

+="CN49627"	"Development of an 8 minute DVD comprising of 6 case studies collected from a variety of aged care"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	25-Jun-07	08-Nov-07	18608.70	=""	="BEARCAGE PRODUCTIONS"	03-Dec-07 10:48 AM	

+="CN49628"	"Supply of colour photocopier"	="Department of Health and Ageing"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Jul-07	30-Jun-08	10000.00	=""	="FUJI XEROX AUST PTY LTD"	03-Dec-07 10:48 AM	

+="CN49629"	"Provision of Financial Viability Assessments for the 2007 ACAR"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Jul-07	30-Nov-07	55000.00	="343/0607"	="BENTLEYS MRI (QLD) PTY LTD"	03-Dec-07 10:48 AM	

+="CN49630"	"Provide Data Analyst, Data Modelling, Data Design and other related Services."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Jul-07	30-Jun-08	72445.00	=""	="POST MERIDIAN"	03-Dec-07 10:48 AM	

+="CN49631"	"Business Analyst  Services to review, report and implement recommendations to the IT Systems"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	03-Nov-07	30-Jun-08	192390.00	=""	="AVIKO PTY. LIMITED"	03-Dec-07 10:48 AM	

+="CN49632"	"Work requirements under the National Mental Health Plan and COAG Mental Health related activites"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	03-Jul-07	22-Nov-07	12650.00	=""	="O'HARA, MICHAEL"	03-Dec-07 10:48 AM	

+="CN49633"	"Provision of Ad Hoc Maintenance Service Central Office"	="Department of Health and Ageing"	03-Dec-07	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	12150.00	="2290405"	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:49 AM	

+="CN49634"	"Office relocations"	="Department of Health and Ageing"	03-Dec-07	="Building and Construction and Maintenance Services"	01-Jul-07	30-Jun-08	23615.33	="2290405"	="THOMAS BUILDING CONSTRUCTION"	03-Dec-07 10:49 AM	

+="CN49635"	"BSS Data Warehousing Project"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	19-Nov-07	31812.00	="161/034"	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 10:49 AM	

+="CN49636"	"consultancy contract for general advice on HACC workforce strategy development"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	09-Nov-07	30-Jun-08	70000.00	=""	="ROBERT GRIEW PTY LTD"	03-Dec-07 10:49 AM	

+="CN49637"	"Provision of CCTV Coverage to Albermale Building"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	30-Jun-08	21439.00	=""	="HONEYWELL LTD"	03-Dec-07 10:49 AM	

+="CN49638"	"Item for National Medicine Stockpile"	="Department of Health and Ageing"	03-Dec-07	="Drugs and Pharmaceutical Products"	24-Aug-07	30-Jun-08	1185840.00	=""	="ASPEN PHARMACARE AUSTRALIA  PTY LTD"	03-Dec-07 10:49 AM	

+="CN49640"	"Aged Care Complaints Investigaton Procedures Scheme Procedures Manual"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Oct-07	31-Dec-07	21075.00	=""	="LASERCOLOUR DIGITAL LC DIGITAL"	03-Dec-07 10:49 AM	

+="CN49641"	"HealthInsite strategic planning"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	23320.00	=""	="PALM CONSULTING GROUP PTY LTD"	03-Dec-07 10:49 AM	

+="CN49642"	"Printing of Z-cards for Private Health Insurance communications campaign"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Sep-07	30-Nov-07	17677.00	=""	="GSI MEDIA PTY LTD"	03-Dec-07 10:50 AM	

+="CN49639"	"Consultancy into Inventory Management - Process Mapping"	="Civil Aviation Safety Authority"	03-Dec-07	="Business intelligence consulting services"	20-Sep-07	19-Nov-07	19800.00	="001/29"	="Total Decision Support Pty Ltd"	03-Dec-07 10:50 AM	

+="CN49643"	"Fit testing of P2 respirators"	="Department of Health and Ageing"	03-Dec-07	="Medical Equipment and Accessories and Supplies"	01-Sep-07	30-Nov-07	118888.00	=""	="TYCO AUSTRALIA PTY LIMITED T/AS"	03-Dec-07 10:50 AM	

+="CN49644"	"Supply and storage of personal protective equipment"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-10	2405894.60	="064/0607"	="HOLYMAN SHIPPING SERVICES PTY LIMIT"	03-Dec-07 10:50 AM	

+="CN49645"	"Engagement of Staff in Budget Management Section"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	14-Feb-08	44473.01	=""	="THE GREEN & GREEN GROUP PTY LIMITED"	03-Dec-07 10:50 AM	

+="CN49646"	"Contract for Temp to assist with DAA Data Entry of Registraitons"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	15-Oct-07	30-Nov-07	10088.10	=""	="CAREERS UNLIMITED PTY LTD"	03-Dec-07 10:50 AM	

+="CN49647"	"Professional recruitment services associated with the 2008 Graduate Program"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	05-Nov-07	30-Nov-07	11011.00	=""	="EFFECTIVE PEOPLE PTY LTD"	03-Dec-07 10:50 AM	

+="CN49648"	"Fee for executive fellows program 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	24530.00	=""	="The Australia and New Zealand Schoo"	03-Dec-07 10:50 AM	

+="CN49649"	"National Skin Cancer Awareness Campaign - Phase II Tracking Research"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Oct-07	03-Apr-08	122111.00	=""	="EUREKA STRATEGIC RESEARCH"	03-Dec-07 10:50 AM	

+="CN49650"	"Advertisements for Tenders - DAA & PMP RFT"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Jul-07	13-Nov-07	18825.68	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	

+="CN49651"	"Provision of promotional material for around Aust 40 days walking challenge"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	14-Aug-07	30-Jun-08	666600.00	=""	="INTANDEM EVAN EVANS"	03-Dec-07 10:51 AM	

+="CN49652"	"Legal advice on intergovernmental Agreement - Registration and Accreditation"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	04-Sep-07	30-Nov-07	11711.70	=""	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:51 AM	

+="CN49653"	"Advertising of improving Sexual Health in Youth Project request for tender."	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Mar-08	01-Jun-10	21931.21	="REQUEST FOR TENDER"	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	

+="CN49654"	"SAS Data Integration - Services Statement of Work"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	31-Jan-08	39710.00	=""	="SAS INSTITUTE AUSTRALIA PTY. LIMITE"	03-Dec-07 10:51 AM	

+="CN49655"	"Supply of Q Fever vaccine, Waikerie, South Australia"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	14-Nov-07	30-Jun-08	20691.00	=""	="CSL BIOTHERAPIES PTY LTD"	03-Dec-07 10:51 AM	

+="CN49656"	"Print media advertising for the Medical Rural Bonded Scholarship Scheme"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Nov-07	33893.93	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:51 AM	

+="CN49657"	"Accommodation for the National Excellence Awards"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	01-Nov-07	30-Jun-08	20820.00	=""	="RYDGES WORLD SQUARE SYDNEY"	03-Dec-07 10:51 AM	

+="CN49658"	"Provide Internet Services for the month of Sep 07"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	199860.43	=""	="CYBERTRUST AUSTRALIA PTY LIMITED"	03-Dec-07 10:52 AM	

+="CN49659"	"Supply and Install 10 x Electronic Whiteboards 1st Floor 10 Corinna St"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	29-Nov-07	30-Jun-08	13485.01	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Dec-07 10:52 AM	

+="CN49660"	"Provide business analysist support for the ACCMIS redevelopment project"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Oct-07	18-Jan-08	107737.69	=""	="WIZARD PERSONNEL & OFFICE SERVICES"	03-Dec-07 10:52 AM	

+="CN49661"	"Economics Sub Committee meeting 1.10.07-4.10.07"	="Department of Health and Ageing"	03-Dec-07	="Travel and Food and Lodging and Entertainment Services"	01-Oct-07	01-Nov-07	10322.20	=""	="HILTON MELBOURNE AIRPORT HOTEL"	03-Dec-07 10:52 AM	

+="CN49662"	"Temporary receptionist for L7 Offices"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	16-Oct-07	15-Jan-08	22000.00	=""	="HAYS PERSONNEL SERVICES"	03-Dec-07 10:52 AM	

+="CN49663-A1"	"Advice on LSL and RL liabilities in 2007-2008"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Jun-08	20000.00	=""	="DEPARTMENT OF THE TREASURY"	03-Dec-07 10:52 AM	

+="CN49664"	"National Tobacco Survey 2007"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	30-Nov-07	29-Feb-08	317900.00	=""	="THE SOCIAL RESEARCH CENTRE PTY LTD"	03-Dec-07 10:52 AM	

+="CN49666"	"Provision of Legal services"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-08	26500.00	="042/0506"	="AUSTRALIAN GOVERNMENT SOLICITOR"	03-Dec-07 10:52 AM	

+="CN49667"	"Outer Metropolitan Relocation Grants Scheme print media advertising"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Aug-07	15-Nov-07	19525.00	=""	="HMA BLAZE PTY LTD"	03-Dec-07 10:53 AM	

+="CN49668"	"Financial Administration & Advisory services for Birpi Aboriginal Corporation Medical Centre"	="Department of Health and Ageing"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jan-08	87827.00	="148/0506"	="AUSTRALIAN INDIGENOUS BUSINESS"	03-Dec-07 10:53 AM	

+="CN49669"	"Rotavirus Pads and Guidelines Booklet"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Sep-07	30-Nov-07	39517.50	=""	="BLUE STAR PRINT"	03-Dec-07 10:53 AM	

+="CN49670"	"Redevelopment of the Aged & Community Care Management Information System (ACCMIS)"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Oct-07	31-Dec-07	393000.00	=""	="C3 BUSINESS SOLUTIONS PTY LTD"	03-Dec-07 10:53 AM	

+="CN49671"	"Purchase of Attenuators"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Oct-07	30-Jun-08	174653.60	=""	="FILTERFIT PTY LTD"	03-Dec-07 10:53 AM	

+="CN49672"	"2006/07 workers' comp premium adjustment"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Nov-07	30-Nov-07	522306.00	=""	="COMCARE"	03-Dec-07 10:53 AM	

+="CN49673"	"Hearing Services Program Information Booklet"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	08-Nov-07	30-Jun-08	15580.40	="HEARING SERVICES PROGRAM BOOKLET"	="PARAGON PRINTERS"	03-Dec-07 10:53 AM	

+="CN49674"	"Stills Photography Services to support the Audio- visual presentation at the Excellence Awards"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	02-Nov-07	23-Nov-07	39028.00	=""	="THE PRODUCTION HUB"	03-Dec-07 10:54 AM	

+="CN49675"	"Annual Maintenance fee for mobile X Licence"	="Department of Health and Ageing"	03-Dec-07	="Healthcare Services"	01-Jul-07	30-Jun-08	12540.00	=""	="RANDOM COMPUTING SERVICES PTY. LTD."	03-Dec-07 10:54 AM	

+="CN49676"	"B777 Project Type Specialist"	="Civil Aviation Safety Authority"	03-Dec-07	="Aircraft"	03-Sep-07	31-Mar-09	50000.00	="07/045"	="Tanner Menzies Pty Ltd (Brisbane)"	03-Dec-07 10:54 AM	

+="CN49680"	" Colour Multi Function Device "	="Civil Aviation Safety Authority"	03-Dec-07	="Photocopiers"	18-Sep-07	18-Sep-07	13706.00	="07/061"	="Ricoh Australia Pty Ltd"	03-Dec-07 11:04 AM	

+="CN49681-A3"	"Staff Grievance Investigate Services"	="CRS Australia"	03-Dec-07	="Human resources services"	02-Nov-07	11-Mar-11	90333.33	=""	="HBA Consulting"	03-Dec-07 11:04 AM	

+="CN49679"	"ISOPROPYL ALCOHOL TECHNICAL"	="Defence Materiel Organisation"	03-Dec-07	="Chemical adhesives"	08-Aug-07	28-Oct-07	12883.20	=""	="CHEM-SUPPLY"	03-Dec-07 11:05 AM	

+="CN49682"	" Professional Services - Project Manager "	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	01-Nov-07	01-May-09	140000.00	="07/087-00"	="Chandler Macleod Ltd (ACT)"	03-Dec-07 11:09 AM	

+="CN49684"	"Venue hite, catering"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Restaurants and catering"	24-Aug-07	07-Sep-07	11100.00	=""	="HYATT HOTEL CANBERRA"	03-Dec-07 11:20 AM	

+="CN49686"	"Service contractor - ICAO audit - Training Framework"	="Civil Aviation Safety Authority"	03-Dec-07	="Business and corporate management consultation services"	05-Nov-07	11-Jan-08	39600.00	="07/089-00"	="Redwan Pty Ltd t/a Thirty South Consulting"	03-Dec-07 11:38 AM	

+="CN49687-A1"	"Refurbishment of Limestone Cottage - an office building located on the National Museum site."	="National Museum of Australia"	03-Dec-07	="Building and Construction and Maintenance Services"	02-Oct-07	21-Dec-07	346535.00	="NMAT0708/01"	="Intrec Management Pty Ltd"	03-Dec-07 11:44 AM	

+="CN49689-A1"	" TRICON SHIPPING AND STORAGE CONTAINERS, MANUFACTURED IN ACCORDANCE WITH SPECIFICATION ARMY (AUST) 6489, QUANTITY 75. RAISED AS PER TERMS AND CONDITIONS OF STANDING OFFER 2550058 "	="Defence Materiel Organisation"	03-Dec-07	="Containers and storage"	30-Nov-07	07-Mar-08	458875.72	=""	="UNITEAM AUSTRALASIA PTY LTD"	03-Dec-07 11:55 AM	

+="CN49692"	"Lease at Narrabri, NSW"	="Department of Human Services"	03-Dec-07	="Real estate services"	01-Dec-07	29-Mar-12	271414.00	=""	="GE & J McDonald"	03-Dec-07 12:00 PM	

+="CN49693"	"Service contractor - ICAO audit - Training Framework"	="Civil Aviation Safety Authority"	03-Dec-07	="Business and corporate management consultation services"	12-Nov-07	11-Jan-08	47250.00	="07/089-01"	="Han-Bry Pty Ltd"	03-Dec-07 12:01 PM	

+="CN49694"	"Press Clippings - Newspapers"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	31-May-07	30-Oct-07	10400.00	=""	="MEDIA MONITORS Pty Ltd"	03-Dec-07 12:09 PM	

+="CN49695"	"Supply & installation of PABX System"	="Civil Aviation Safety Authority"	03-Dec-07	="Communication equipment installation"	10-Dec-07	28-Feb-08	199062.00	="07/094-00"	="TT Group"	03-Dec-07 12:09 PM	

+="CN49696"	"Document Authoring & Assessment Tool"	="Civil Aviation Safety Authority"	03-Dec-07	="Document management software"	07-Nov-07	29-Feb-08	450000.00	="07/101-00"	="Ice Media Pty Ltd"	03-Dec-07 12:16 PM	

+="CN49699"	"Temporary Staff - OGA Project"	="Civil Aviation Safety Authority"	03-Dec-07	="Recruitment services"	01-Oct-07	30-Sep-08	182325.00	="07/102-00"	="GMT Canberra Pty Ltd"	03-Dec-07 12:20 PM	

+="CN49700"	"Provision of Cables"	="Civil Aviation Safety Authority"	03-Dec-07	="Communications Devices and Accessories"	29-Nov-07	16-Dec-07	12827.00	="07/104-01"	="Multisystem Communications"	03-Dec-07 12:24 PM	

+="CN49701"	"Press Clippings - Newspapers"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	31-Aug-07	30-Nov-07	10700.00	=""	="MEDIA MONITORS PTY LTD"	03-Dec-07 12:28 PM	

+="CN49400"	"Comcar"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Passenger motor vehicles"	31-Aug-07	31-Oct-07	37000.00	=""	="COMCAR"	03-Dec-07 12:36 PM	

+="CN49702"	" Press Clippings - Newspapers "	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Newspapers"	30-Sep-07	30-Nov-07	12800.00	=""	="MEDIA MONITORING PTY LTD"	03-Dec-07 12:40 PM	

+="CN49703"	"land rover vehicle parts"	="Department of Defence"	03-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	30-Nov-07	21-Mar-08	16706.13	=""	="LAND ROVER AUSTRALIA"	03-Dec-07 12:48 PM	

+="CN49704-A3"	" Sources of Electronic Business Information "	="Australian Taxation Office"	03-Dec-07	="Library or documentation services"	01-Aug-07	17-Jun-12	61960.00	=""	="Crowne Content Pty Ltd"	03-Dec-07 12:52 PM	

+="CN49705-A2"	"IP Telephony"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	26-Nov-07	30-Jun-08	256091.00	=""	="NEC AUSTRALIA PTY LTD"	03-Dec-07 01:01 PM	

+="CN49706"	"20 X CABINETS"	="Australian Taxation Office"	03-Dec-07	="Furniture and Furnishings"	26-Nov-07	26-Nov-07	22704.00	=""	="ADVANCE METAL PRODUCTS AUST PTY LTD"	03-Dec-07 01:01 PM	

+="CN49708"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	28-Nov-07	06-Nov-08	187616.00	=""	="Encore IT Services Pty Ltd"	03-Dec-07 01:01 PM	

+="CN49711"	"Computer Software"	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Computer Equipment and Accessories"	01-Jul-07	01-Aug-08	19200.00	=""	="COMPUTER SCIENCES CORPORATION"	03-Dec-07 01:25 PM	

+="CN49712"	" Electronic Whiteboards "	="Department of the Prime Minister and Cabinet"	03-Dec-07	="Electronic copyboards or accessories"	02-Aug-07	14-Sep-07	59600.00	=""	="ELECTROBOARD SOLUTIONS PTY LTD"	03-Dec-07 01:36 PM	

+="CN49713"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	29-Nov-07	02-Dec-08	326656.44	=""	="TOTO BUSINESS SOLUTIONS PTY LTD"	03-Dec-07 01:39 PM	

+="CN49714"	"CONSULTING FEES"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	30-Oct-07	30-Oct-07	22660.50	=""	="AUSTRALIAN POLYGRAPH SERVICES"	03-Dec-07 01:40 PM	

+="CN49715"	"AUDIT FEES"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	27-Nov-07	38500.00	=""	="AUSTRALIAN NATIONAL AUDIT OFFICE"	03-Dec-07 01:40 PM	

+="CN49716"	"PRINTING"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	27-Nov-07	29-Nov-07	12815.00	=""	="BLUE MOON RESEARCH AND PLANNING"	03-Dec-07 01:40 PM	

+="CN49717"	"PRINTING"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	21-Nov-07	21-Nov-07	10571.00	=""	="PIRION PTY LTD"	03-Dec-07 01:40 PM	

+="CN49718"	"RECRUITMENT"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	19-Nov-07	27-Nov-07	11900.97	=""	="Hudson Global Resources (Aust) P/L"	03-Dec-07 01:41 PM	

+="CN49719"	"COMPUTER MAINENANCE"	="Australian Taxation Office"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	20-Nov-07	20-Nov-07	27500.00	=""	="Lightsource Technologies Aust P/L"	03-Dec-07 01:41 PM	

+="CN49720"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	30-Nov-07	01-Dec-07	110000.00	=""	="Professionals Online Pty Ltd"	03-Dec-07 01:43 PM	

+="CN49721"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	30-Nov-07	01-Jan-09	298584.01	=""	="CANDLE AUSTRALIA PTY LTD"	03-Dec-07 01:43 PM	

+="CN49722"	"Specialist Omegamon Services"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	25-Oct-07	30-Jun-08	21780.00	=""	="CPT GLOBAL LTD"	03-Dec-07 01:43 PM	

+="CN49723"	"IT Contractor"	="Australian Taxation Office"	03-Dec-07	="Engineering and Research and Technology Based Services"	05-Nov-07	04-Nov-08	313200.00	=""	="COMPAS PTY LTD"	03-Dec-07 01:43 PM	

+="CN49725"	"Dragon Naturaly Speaking Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	22-Aug-07	21-Aug-08	19222.00	=""	="Voice Perfect Pty Ltd"	03-Dec-07 02:31 PM	

+="CN49726"	"Non Campaign Recruitment Advertising"	="Department of Transport and Regional Services"	03-Dec-07	="Advertising"	01-Nov-07	31-Jan-08	250000.30	="TRS07/382"	="HMA Blaze Pty Ltd"	03-Dec-07 02:31 PM	

+="CN49727"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	03-Dec-07	="Legal services"	11-Aug-06	30-Jun-09	48819.07	="TRS06/175"	="Clayton Utz Canberra"	03-Dec-07 02:31 PM	

+="CN49728"	"Independent review on ATM - Port Mgt"	="Department of Transport and Regional Services"	03-Dec-07	="Environmental management"	23-Nov-07	30-May-08	49875.00	="TRS06/090"	="ARUP PTY LTD"	03-Dec-07 02:31 PM	

+="CN49729"	"Recruitment services"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	05-Nov-07	14-Dec-07	16125.45	="TRS05/251"	="Vedior Asia Pacific Pty Limited"	03-Dec-07 02:31 PM	

+="CN49730"	"Recruitment services"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	19-Nov-07	29-Feb-08	27896.55	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	03-Dec-07 02:32 PM	

+="CN49731"	"Staff Recruitment - EA to Secretary"	="Department of Transport and Regional Services"	03-Dec-07	="Human resources services"	02-Oct-07	31-Dec-07	44000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	03-Dec-07 02:32 PM	

+="CN49732"	"Legal Services Expenditure"	="Department of Transport and Regional Services"	03-Dec-07	="Legal services"	02-Jul-07	30-Nov-07	29761.00	=""	="Gillian Beaumont Recruitment Pty Li"	03-Dec-07 02:32 PM	

+="CN49733"	"Technical Designer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	29-Sep-07	31-Jan-08	139392.00	="T2004/0699"	="OAKTON AA SERVICES PTY LTD"	03-Dec-07 02:32 PM	

+="CN49734"	"Temporary staff placement"	="Department of Transport and Regional Services"	03-Dec-07	="Human resources services"	23-Nov-07	30-Jun-08	66000.00	=""	="KOWALSKI RECRUITMENT PTY LTD"	03-Dec-07 02:32 PM	

+="CN49735"	"Venue Hire - Canberra Convention Centre"	="Department of Transport and Regional Services"	03-Dec-07	="Hotels and lodging and meeting facilities"	27-Nov-07	07-Dec-07	10000.00	=""	="Crowne Plaza Canberra"	03-Dec-07 02:32 PM	

+="CN49736"	"Moss Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Mar-07	30-Apr-07	14461.52	="T2004/0699"	="UNIQUE WORLD PTY LTD"	03-Dec-07 02:32 PM	

+="CN49737"	"Provision of daily headline reporting"	="Department of Transport and Regional Services"	03-Dec-07	="Graphic design"	29-Jun-07	29-Jun-10	44000.00	="TRS06/036"	="Morris Walker"	03-Dec-07 02:32 PM	

+="CN49738"	".NET Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Dec-07	29-Feb-08	45000.00	="T2004/0699"	="ONE PLANET SOLUTIONS PTY LTD"	03-Dec-07 02:33 PM	

+="CN49739"	"PROJECT MANGER"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	01-Dec-07	29-Feb-08	70000.00	="TRS06/017"	="SME GATEWAY LTD"	03-Dec-07 02:33 PM	

+="CN49740"	"SharePoint Developer"	="Department of Transport and Regional Services"	03-Dec-07	="Management advisory services"	03-Dec-07	03-Mar-08	99000.00	="TRS06/017"	="SME GATEWAY LTD"	03-Dec-07 02:33 PM	

+="CN49741"	"Public Health Surveillance in the JBT"	="Department of Transport and Regional Services"	03-Dec-07	="Public safety and control"	30-Nov-07	30-Jun-08	56633.00	=""	="Health Protection Service"	03-Dec-07 02:33 PM	

+="CN49742"	"EL 1 Temp TEMP EL1"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	16-Jul-07	30-Jun-08	55499.40	="TRS05/251"	="Hays Specialist Recruitment (AUST)"	03-Dec-07 02:33 PM	

+="CN49743"	"Provision of mobile library service in"	="Department of Transport and Regional Services"	03-Dec-07	="Information services"	30-Nov-07	30-Jun-08	17833.52	=""	="SHOALHAVEN CITY COUNCIL"	03-Dec-07 02:33 PM	

+="CN49744"	"Provision of Welfare services in JBT"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	30-Nov-07	30-Jun-08	708107.00	=""	="ACT Department of Diability, Housin"	03-Dec-07 02:33 PM	

+="CN49745"	"Temporary Staff  02Jul-21Dec07 APS3"	="Department of Transport and Regional Services"	03-Dec-07	="Community and social services"	28-Nov-07	30-Jun-08	33650.63	="TRS05/251"	="Julia Ross Recruitment Pty Ltd"	03-Dec-07 02:34 PM	

+="CN49746"	"AccessData Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	22-Aug-07	21-Aug-08	21704.00	=""	="Fulcrum Managenment Pty Ltd"	03-Dec-07 02:34 PM	

+="CN49747"	"Provision of cleaning Services at CSA Townsville"	="Child Support Agency"	03-Dec-07	="General building and office cleaning and maintenance services"	30-Nov-07	30-Jun-08	27500.00	=""	="Sharman Property Services"	03-Dec-07 02:36 PM	

+="CN49748"	"Compliant SES conference"	="Australian Taxation Office"	03-Dec-07	="Management and Business Professionals and Administrative Services"	11-Aug-07	22-Aug-07	11330.00	="06.028"	="Hoffman Donohue P/L"	03-Dec-07 02:36 PM	

+="CN49749"	"Analysts Notebook Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	23-Aug-07	22-Aug-08	52415.00	=""	="Visual Analysis P/L"	03-Dec-07 02:38 PM	

+="CN49753"	" Provision of Laptop PC's and Related Services  Work Order No. 1 "	="CRS Australia"	03-Dec-07	="Computers"	13-Jul-07	06-Aug-07	30322.38	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 02:49 PM	

+="CN49754"	"Annual Maintenance of Genesys G+ SW"	="Australian Taxation Office"	03-Dec-07	="Software maintenance and support"	01-Sep-07	31-Aug-08	169646.00	=""	="NEC Business Solutions /L"	03-Dec-07 02:50 PM	

+="CN49755"	"Performance Testing SW"	="Australian Taxation Office"	03-Dec-07	="Software"	04-Sep-07	21-Aug-08	44998.00	=""	="Hewlwtt packard P/L"	03-Dec-07 02:54 PM	

+="CN49758"	" Provision of Laptop PC's and Related Services  Work Order No. 2 "	="CRS Australia"	03-Dec-07	="Computers"	27-Aug-07	19-Nov-07	102349.50	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 02:57 PM	

+="CN49760"	"Licensing & Maintenance of Transaction Vision Software"	="Australian Taxation Office"	03-Dec-07	="Software"	26-Oct-07	21-Aug-08	1746648.00	=""	="Hewlett Packard"	03-Dec-07 03:03 PM	

+="CN49759"	" Provision of Laptop PC's and Related Services  Work Order No. 3 "	="CRS Australia"	03-Dec-07	="Computers"	31-Oct-07	19-Dec-07	86336.68	=""	="Hewlett Packard Australia Pty Ltd"	03-Dec-07 03:05 PM	

+="CN49761"	"Dialogue Software Licenses"	="Australian Taxation Office"	03-Dec-07	="Software"	01-Jul-07	30-Jun-08	214119.00	=""	="IBM Australia Ltd"	03-Dec-07 03:08 PM	

+="CN49762"	"Production of a Video for New Extra's 10th Birthday"	="Australian Taxation Office"	03-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	10-Dec-07	19-Jan-08	11800.00	="56.04"	="Impact Images Australia Pty Ltd"	03-Dec-07 03:25 PM	

+="CN49763"	"Senators Furniture"	="Department of the Senate"	03-Dec-07	="Merchandising furniture and accessories"	22-Nov-07	22-Nov-08	40700.00	=""	="Sturdy Framac"	03-Dec-07 03:31 PM	

+="CN49764"	"Legal advice"	="Department of the Senate"	03-Dec-07	="Legal services"	29-Nov-07	19-Jan-08	20000.00	=""	="Australian Government Solicitor"	03-Dec-07 03:31 PM	

+="CN49766"	" DETECTOR, METALLIC PARTICLE   P/NO B4657P: MC 97484  QUANTITY "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	29-Nov-07	21-Mar-08	13420.50	=""	="AVIAQUIP PTY LTD"	03-Dec-07 03:42 PM	

+="CN49770"	" SHAFT ASSEMBLY, TAIL ROTOR BLADE  P/No 206-040-325-005  QUANTITY 4 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	15-Nov-07	15-Dec-07	12141.01	=""	="HELITECH A DIVISION OF SIKORSKY"	03-Dec-07 03:56 PM	

+="CN49771"	"Pharmaceuticals"	="Defence Materiel Organisation"	03-Dec-07	="Drugs and Pharmaceutical Products"	23-Nov-07	07-Jan-08	12896.92	=""	="Symbion Pharmacy Services"	03-Dec-07 04:00 PM	

+="CN49772"	" GUIDE ASSEMBLY, POPPET  P/No 6852176: MC 63005  QUANTITY 20 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	14-Aug-07	29-Aug-07	15502.08	=""	="AVIALL AUST PTY LTD"	03-Dec-07 04:11 PM	

+="CN49773"	"CPE004248-1 - Design consultation - 0774-1922 - NT Property Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Building construction and support and maintenance and repair services"	01-Jun-07	30-Jun-08	44700.00	="05/0774"	="Woodhead International Pty Ltd"	03-Dec-07 04:18 PM	

+="CN49774"	" BEARING BALL ANNULAR  P/No 206-010-443-001  QUANTITY 3 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	05-Nov-07	10-Jan-08	13944.68	=""	="HELITECH A DIVISION OF SIKORSKY"	03-Dec-07 04:20 PM	

+="CN49775"	"CPE004246 - Project manager - 0774-1921 - NT Property Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Project management"	01-Jun-07	30-Jun-08	25720.00	="05/0774"	="Thinc Projects Australia"	03-Dec-07 04:22 PM	

+="CN49778-A1"	"07/2393 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	03-Dec-07	30-Jun-09	438608.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:26 PM	

+="CN49776-A1"	"07/2394 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-09	399740.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:29 PM	

+="CN49779-A1"	"07/2395 - IT Contractor - 0717-0881 - ICT Panel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Temporary personnel services"	28-Nov-07	30-Jun-09	399740.00	="05/0717"	="Inforail Pty Ltd"	03-Dec-07 04:32 PM	

+="CN49781"	"IMU Contract Programmer: IMU-ICT018 Official Order IMU2007/057"	="Department of Veterans' Affairs"	03-Dec-07	="Computer services"	01-Dec-07	30-Nov-08	144540.00	=""	="Frontier Group Australia Pty Ltd"	03-Dec-07 04:35 PM	

+="CN49782"	"IMU Contract Programmer: IMU-ICT079 Official Order IMU2007/056"	="Department of Veterans' Affairs"	03-Dec-07	="Computer services"	01-Dec-07	30-Nov-08	132660.00	=""	="Paxus Australia Pty Ltd"	03-Dec-07 04:35 PM	

+="CN49783-A1"	"Maintenance Services at Surrender Memorial, Cape Wom, Wewak."	="Department of Veterans' Affairs"	03-Dec-07	="Building construction and support and maintenance and repair services"	14-May-07	13-May-09	24067.00	=""	="C & M Engineering Ltd"	03-Dec-07 04:35 PM	

+="CN49784-A1"	"Refurbishment of Sandstone Structure at Lae War Cemetery"	="Department of Veterans' Affairs"	03-Dec-07	="Building construction and support and maintenance and repair services"	01-Oct-07	30-Jun-08	122292.72	=""	="Jasper Swan Stonemasonery Pty Ltd"	03-Dec-07 04:35 PM	

+="CN49786"	" LIGHT COCKPIT, AIRCRAFT  QUANTITY 5  P/No15-0722-3: MC72914 "	="Defence Materiel Organisation"	03-Dec-07	="Military rotary wing aircraft"	15-Nov-07	13-Feb-08	14270.79	=""	="HAWKER PACIFIC"	03-Dec-07 04:37 PM	

+="CN49787"	"07/2448 - Hire of sea vessels"	="Australian Customs and Border Protection Service"	03-Dec-07	="Marine transport"	12-Oct-07	12-Nov-07	153109.44	=""	="Defence Maritime Services"	03-Dec-07 04:43 PM	

+="CN49788"	"CPO017415 - CCTV equipment"	="Australian Customs and Border Protection Service"	03-Dec-07	="Information Technology Broadcasting and Telecommunications"	26-Nov-07	30-Jun-08	11233.20	=""	="Direct Alarm Supplies"	03-Dec-07 04:43 PM	

+="CN49789-A1"	"06/1338 - Banking transactional services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Banking and investment"	24-Nov-07	23-Nov-11	395000.00	=""	="Westpac Banking Corporation"	03-Dec-07 04:43 PM	

+="CN49790"	"CPO017351 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	13-Sep-07	25-Sep-07	10413.00	=""	="AusCheck"	03-Dec-07 04:43 PM	

+="CN49791"	"CPO017361 - Recruiting Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	03-Oct-07	30-Oct-07	29135.00	=""	="AusCheck"	03-Dec-07 04:43 PM	

+="CN49792-A3"	"06/1715 - Project Management Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	31-Jan-09	500000.00	=""	="Communications Design & Management Pty Ltd"	03-Dec-07 04:44 PM	

+="CN49793-A1"	"07/2164 - Maintenance of facsimile equipment"	="Australian Customs and Border Protection Service"	03-Dec-07	="Office machines and their supplies and accessories"	19-Nov-07	19-Nov-09	80000.00	=""	="TFS Technology"	03-Dec-07 04:44 PM	

+="CN49794"	"CPO017475 - Supply of Uniforms"	="Australian Customs and Border Protection Service"	03-Dec-07	="Clothing"	28-Nov-07	25-Dec-07	16638.00	=""	="Company Co-Ordinates"	03-Dec-07 04:44 PM	

+="CN49795"	"CPO016562 - Supply of Machinery"	="Australian Customs and Border Protection Service"	03-Dec-07	="Industrial Manufacturing and Processing Machinery and Accessories"	01-Nov-07	14-Dec-07	10252.00	=""	="R Moore Equipment Pty Ltd"	03-Dec-07 04:44 PM	

+="CN49796"	"07/2397 - Business services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Human resources services"	22-Oct-07	14-Dec-07	57200.00	=""	="SJN Consulting Pty Ltd"	03-Dec-07 04:44 PM	

+="CN49797"	"06/1481 - Communications services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	01-Jul-07	30-Jun-11	440588.00	=""	="Department of Defence"	03-Dec-07 04:44 PM	

+="CN49798"	"00004834 - Supply of Brochures/Booklets"	="Australian Customs and Border Protection Service"	03-Dec-07	="Printed media"	30-Nov-06	24-Oct-07	31720.18	=""	="Meta Design Studio"	03-Dec-07 04:44 PM	

+="CN49799"	"07/2265 - Supply and install of vault (CPE004267)"	="Australian Customs and Border Protection Service"	03-Dec-07	="Metal and mineral industries"	29-Nov-07	30-Jun-08	121526.90	=""	="API Security Pty Ltd"	03-Dec-07 04:44 PM	

+="CN49823"	"CPE003370-2 Telecommunications Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	15205.08	=""	="Electrotech Australia"	03-Dec-07 04:47 PM	

+="CN49824"	"CPE004250-1 Fuel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Fuels"	21-Nov-07	21-Nov-07	21839.71	=""	="Southport Yacht Club"	03-Dec-07 04:47 PM	

+="CN49825"	"CPE004240-1 Fuel"	="Australian Customs and Border Protection Service"	03-Dec-07	="Fuels"	14-Nov-07	14-Nov-07	13634.00	=""	="Hamilton Island Enterprises Ltd"	03-Dec-07 04:47 PM	

+="CN49832"	"CPO016400 - Planning and Contract Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Management and Business Professionals and Administrative Services"	26-Oct-07	15-Dec-07	44260.00	=""	="Unisys Australia Pty Ltd (ACT)"	03-Dec-07 04:48 PM	

+="CN49833"	"07/2422 - Training Services"	="Australian Customs and Border Protection Service"	03-Dec-07	="Education and Training Services"	12-Nov-07	23-Nov-07	42900.00	=""	="United Group HR Services Pty Ltd"	03-Dec-07 04:48 PM	

+="CN49834"	"07/2171 - Software support"	="Australian Customs and Border Protection Service"	03-Dec-07	="Computer services"	29-Jun-07	30-Jun-08	131068.41	=""	="Hewlett Packard Australia"	03-Dec-07 04:49 PM	

+="CN49835"	"CPE002969-5 - FRLI Legislative Instruments"	="Australian Customs and Border Protection Service"	03-Dec-07	="Legal services"	01-Oct-07	31-Oct-07	12319.61	=""	="Attorney Generals Department"	03-Dec-07 04:49 PM	

+="CN49837"	" NSN 430-01-355-5901, Tube Couplings "	="Defence Materiel Organisation"	03-Dec-07	="Aerospace systems and components and equipment"	29-Nov-07	21-Dec-07	10327.68	=""	="Milspec Services Pty Ltd"	03-Dec-07 05:14 PM	

+="CN49710"	" POCKET, AMMUNITION MAGAZINE POUCH "	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	16247.00	=""	="ANCAMARABA PTY LTD"	04-Dec-07 07:58 AM	

+="CN49839"	"Patch, Leg, Mollee Attachment"	="Defence Materiel Organisation"	04-Dec-07	="Patch panel"	03-Dec-07	31-Jan-08	32780.00	="CC1SI9"	="ADVENTURE ONE PTY LTD"	04-Dec-07 09:03 AM	

+="CN49840"	"Holsters & Chest Webbing"	="Defence Materiel Organisation"	04-Dec-07	="Arms and ammunition accessories"	03-Dec-07	31-Jan-08	122980.00	="CC1SIC"	="HUNTERS EDGE"	04-Dec-07 09:24 AM	

+="CN49842"	"Printing of NAT10129-12.2007 - The 2008 ATO Story calendar. Qty: 23,000"	="Australian Taxation Office"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	03-Dec-07	14-Dec-07	13446.40	="06.030"	="Paragon Printers"	04-Dec-07 09:35 AM	

+="CN49843-A4"	"Facilitation of Development of Murray-Darling Basin Project Methodology and Evaluation Approach"	="Centrelink"	04-Dec-07	="Strategic planning consultation services"	23-Nov-07	30-Jun-08	45000.00	=""	="Participatory Corporate Development P/L T/A Richard Kelloway and Associates"	04-Dec-07 09:40 AM	

+="CN49844"	" PURCHASE OF QTY 50 TRAVEL BAGS "	="Department of Defence"	04-Dec-07	="Luggage"	18-Sep-07	02-Oct-07	11000.00	=""	="MAINPEAK"	04-Dec-07 10:05 AM	

+="CN49845"	"PURCHASE OF QTY 90 SPECIAL CLIMBING BOOTS"	="Department of Defence"	04-Dec-07	="Footwear"	29-Oct-07	14-Nov-07	31185.00	=""	="MAINPEAK"	04-Dec-07 10:13 AM	

+="CN49847"	"Actuarial Services"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Service Industry Machinery and Equipment and Supplies"	01-Jun-07	31-Jul-07	12600.00	=""	="AUST GOVERNMENT ACTUARY"	04-Dec-07 10:43 AM	

+="CN49849"	"Adoption study"	="Australian Centre for International Agricultural Research"	04-Dec-07	="Adoption services"	21-Nov-07	28-Feb-08	12166.00	=""	="Dr Stephen Blaber"	04-Dec-07 10:49 AM	

+="CN49848"	"HOLSTER PISTOL"	="Defence Materiel Organisation"	04-Dec-07	="Light weapons and ammunition"	24-Oct-07	04-Feb-08	34650.00	=""	="AUST WEBGEAR"	04-Dec-07 10:56 AM	

+="CN49851"	"Police secondee salary recoup"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jul-07	31-Dec-07	556541.06	=""	="Australian Federal Police"	04-Dec-07 11:58 AM	

+="CN49852"	" GUM TEST EQUIPMENT EXISTANT AND TRAINING "	="Defence Materiel Organisation"	04-Dec-07	="Completion test equipment"	26-Jun-07	29-Nov-07	51753.90	=""	="H D SCIENTIFIC SUPPLIES PTY LTD"	04-Dec-07 12:02 PM	

+="CN49769"	"Public relations to support the Murray-Darling Basin Campaign."	="Department of Human Services"	04-Dec-07	="Public relations programs or services"	03-Sep-07	30-Jun-08	80000.00	=""	="Cox Inall Communications"	04-Dec-07 12:03 PM	

+="CN49853"	"Office Fitout "	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Furniture and Furnishings"	26-Oct-07	30-Dec-07	53600.00	=""	="CITE OFFICE DESIGN PTY LTD"	04-Dec-07 12:05 PM	

+="CN49854"	"Recruitment - Software Developer"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	16-Nov-07	30-Jun-08	130944.00	=""	="Tarakan Consulting Pty Ltd"	04-Dec-07 12:11 PM	

+="CN49855-A1"	" Recruitment - Project Manager "	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	01-Jan-08	31-Dec-08	269060.55	=""	="Hudson Global Resources"	04-Dec-07 12:15 PM	

+="CN49856"	"Professional Software Development Kit"	="Australian Crime Commission"	04-Dec-07	="Software"	28-Nov-07	28-Nov-07	77000.00	=""	="BCT Group Pty Ltd"	04-Dec-07 12:27 PM	

+="CN49858"	" Blade Servers "	="Australian Crime Commission"	04-Dec-07	="High end computer servers"	27-Nov-07	27-Nov-07	209205.77	="ACC-07/286"	="One Planet Solutions Pty Ltd"	04-Dec-07 12:40 PM	

+="CN49857"	"INDUCTOR, FOAM MAKING INLINE, PORTABLE, C/W RUBBER HOSE & TIP TUBE"	="Defence Materiel Organisation"	04-Dec-07	="Inductors"	30-Nov-07	01-Feb-08	26241.60	=""	="CHUBB FIRE SAFETY LTD"	04-Dec-07 12:42 PM	

+="CN49859"	"Purchase of 'B' class cabinets for National Office"	="Australian Taxation Office"	04-Dec-07	="Accommodation furniture"	10-May-07	21-Sep-07	38408.00	=""	="Planex Sales Pty Ltd"	04-Dec-07 01:09 PM	

+="CN49860"	"Provision of supply of  Labeling tapes"	="Department of Parliamentary Services"	04-Dec-07	="Labelling tapes"	03-Dec-07	31-Dec-07	11407.00	=""	="Prodata P/L"	04-Dec-07 01:13 PM	

+="CN49861"	"Storage of  VideoTapes for Broadcasting Contract (DPS04035 )"	="Department of Parliamentary Services"	04-Dec-07	="Storage"	03-Dec-07	30-Jun-08	22000.00	=""	="Iron Mountain Australia P/L"	04-Dec-07 01:13 PM	

+="CN49862"	"Provision of Carpet laying and Floorcovering Services"	="Department of Parliamentary Services"	04-Dec-07	="Carpeting"	30-Nov-07	31-Dec-07	27702.40	=""	="Chesta's Floors"	04-Dec-07 01:13 PM	

+="CN49863"	"Provision of supply of Nematodes for Landscape Services (Pest Accounts)"	="Department of Parliamentary Services"	04-Dec-07	="Lawn care services"	29-Nov-07	30-Dec-07	10587.50	=""	="Ecogrow Australia Pty Ltd"	04-Dec-07 01:13 PM	

+="CN49864"	"water Inspection and treatment services Contract (JH00051M )"	="Department of Parliamentary Services"	04-Dec-07	="Water testing and conservation and ecology"	26-Nov-07	07-Dec-07	17938.26	=""	="Ecolab Water Care Services Pty Ltd"	04-Dec-07 01:13 PM	

+="CN49865"	"Provision of Project Mangement Training Services Contract (DPS07049 )"	="Department of Parliamentary Services"	04-Dec-07	="Education and Training Services"	22-Nov-07	28-Dec-07	104425.20	=""	="Tanner James Management"	04-Dec-07 01:14 PM	

+="CN49866"	"Provision of security system software maintenance Services"	="Department of Parliamentary Services"	04-Dec-07	="Environmental security control services"	28-Nov-07	28-Dec-07	33376.75	=""	="Honeywell Limited"	04-Dec-07 01:14 PM	

+="CN49867"	"Provision of supply of  X -Ray Hire"	="Department of Parliamentary Services"	04-Dec-07	="Security and control equipment"	18-Oct-07	28-Dec-07	24750.00	=""	="Smiths Detection Australia P/L"	04-Dec-07 01:14 PM	

+="CN49868"	"Provision of Monitoring Fire Alarms at Parliament House Contract DPS05051)"	="Department of Parliamentary Services"	04-Dec-07	="Fire alarm maintenance or monitoring"	04-Dec-07	30-Jun-08	44667.15	=""	="Aust Federal Police"	04-Dec-07 01:14 PM	

+="CN49869"	"Supply of Stationary & Office Equipment"	="Department of Parliamentary Services"	04-Dec-07	="Stationery"	16-Nov-07	22-Mar-08	11838.70	=""	="Corporate Express"	04-Dec-07 01:14 PM	

+="CN49870"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	82500.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	

+="CN49871"	"Provision of Cleaning Service to Parlaiment House Contract (JH03024)"	="Department of Parliamentary Services"	04-Dec-07	="Building cleaning services"	04-Dec-07	30-Jun-08	44000.00	=""	="Limro Cleaning Services (ACT)"	04-Dec-07 01:14 PM	

+="CN49872"	"Industrail Cleaning & relateded Services Contract (JH01037)"	="Department of Parliamentary Services"	04-Dec-07	="Cleaning and janitorial services"	29-Nov-07	30-Jun-08	423500.00	=""	="Canberra Queanbeyan Cleaning"	04-Dec-07 01:14 PM	

+="CN49873"	"Provision of Ongoing support services for mySAP (Contract  DPS06064)"	="Department of Parliamentary Services"	04-Dec-07	="Management and Business Professionals and Administrative Services"	09-Jul-07	30-Jun-08	16967.51	=""	="Supply Chain Consulting Pty Ltd"	04-Dec-07 01:15 PM	

+="CN49874"	"Supply of Landscaping materials"	="Department of Parliamentary Services"	04-Dec-07	="Topsoil"	09-Jul-07	30-Jun-08	14300.00	=""	="Marfel Transport Service"	04-Dec-07 01:15 PM	

+="CN49875"	"Provision of supply of Fertilizer"	="Department of Parliamentary Services"	04-Dec-07	="Fertilisers and plant nutrients and herbicides"	09-Jul-07	30-Jun-08	12100.00	=""	="Bellchambers Produce Pty Ltd"	04-Dec-07 01:15 PM	

+="CN49876"	"major service on airconditioning chiller"	="Department of Parliamentary Services"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	30-Nov-07	31-Dec-07	54980.20	="DPS07073"	="Chillmech Services (Australia)"	04-Dec-07 01:15 PM	

+="CN49877"	"Standing Offer notice (SON27006); LEASE NOV-07 Fleet management and leasing services."	="Department of Parliamentary Services"	04-Dec-07	="Vehicle leasing"	22-Oct-07	30-Nov-07	13683.13	=""	="LeasePlan"	04-Dec-07 01:15 PM	

+="CN49879-A2"	"Provision for Specilaist Financial Advice"	="Comsuper"	04-Dec-07	="Human resources services"	28-Aug-07	30-Jun-08	350000.00	=""	="The IQ Business Group Pty Ltd"	04-Dec-07 01:38 PM	

+="CN49880-A1"	"Provision for technical Analyst"	="Comsuper"	04-Dec-07	="Human resources services"	01-Dec-07	30-Jun-08	91520.00	=""	="Face2face Recruitment"	04-Dec-07 01:41 PM	

+="CN49882"	"MANUFACTURE AND FIT NAVIGATIONAL MAST AND ANTENNA AND TO FIT ACCESSORIES"	="Department of Defence"	04-Dec-07	="Navigational equipment and instruments"	29-Aug-07	13-Oct-07	18519.82	=""	="WILTRADING"	04-Dec-07 01:47 PM	

+="CN49881-A1"	"Provision for Application Developer"	="Comsuper"	04-Dec-07	="Human resources services"	04-Aug-07	30-Jun-08	172040.00	=""	="Eurolink Consulting Australia Pty Ltd"	04-Dec-07 01:48 PM	

+="CN49883"	"ORATSIC Governance Info session & costitution redisgn wrk  Palm Island"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	19-Nov-07	21-Dec-07	15840.00	=""	="Australian Rural Accounting"	04-Dec-07 01:50 PM	

+="CN49884"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	19-Nov-07	30-Dec-07	82225.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:50 PM	

+="CN49885"	"MEX Facilities Management Access, Training and Licenses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	19-Nov-07	30-Jun-08	12142.10	=""	="MEX Maintenance Experts"	04-Dec-07 01:51 PM	

+="CN49886"	"Juliana House Alteration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	19-Nov-07	19-Dec-07	35640.00	=""	="Manzano Constructions"	04-Dec-07 01:51 PM	

+="CN49887"	"Supply of workstations & Loose furniture"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Nov-07	30-Nov-07	645703.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49888"	"Construction Management"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	19-Nov-07	1242331.20	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49889"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	147840.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49890"	"FaCSIA Intelligent information System"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	21-Nov-07	14-Feb-08	70000.00	=""	="NETCAT.biz PTY LTD"	04-Dec-07 01:51 PM	

+="CN49891"	"Production of quality assurance and continuous improvement handbooks for disability services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	20-Nov-07	01-Dec-07	25750.00	=""	="ARTD MANAGEMENT AND RESEARCH"	04-Dec-07 01:51 PM	

+="CN49892"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	20-Nov-07	30-Jun-08	143220.00	=""	="Accessity Pty Ltd"	04-Dec-07 01:51 PM	

+="CN49893"	"General Advice"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	19-Nov-07	19-Nov-07	22000.00	=""	="DLA PHILLIPS FOX"	04-Dec-07 01:52 PM	

+="CN49894"	"Software Licences"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	19-Nov-07	31-Dec-07	149512.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:52 PM	

+="CN49895"	"International Services for return of Indigenous Remains"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Mail and cargo transport"	15-Nov-07	30-Nov-07	10558.22	=""	="INTERNATIONAL ART SERVICES PTY LTD"	04-Dec-07 01:52 PM	

+="CN49896"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	15-Nov-07	30-Jun-08	84188.68	=""	="CYBERTRUST AUSTRALIA"	04-Dec-07 01:52 PM	

+="CN49897"	"Symposium "Go To Market" 19 November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	15-Nov-07	23-Nov-07	21600.00	=""	="Gartner Australasia PTY Limited"	04-Dec-07 01:52 PM	

+="CN49898"	"Superannuation Administration fees for Quarter 2 07/08"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	31-Dec-07	127320.25	=""	="Comsuper       CPM"	04-Dec-07 01:52 PM	

+="CN49900"	"7 units of Dragon "Preferred" v9.5 - including DVD"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	14-Nov-07	14-Nov-07	17493.00	=""	="Voicerecognition.com.au Pty Ltd"	04-Dec-07 01:52 PM	

+="CN49901"	"Report on issues of FaCSIA  fundees in Victoria's Business Services Sector"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	14-Nov-07	14-Nov-07	22698.14	=""	="Dept of Employment & Workplace Rela"	04-Dec-07 01:52 PM	

+="CN49902"	"TAM Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Components for information technology or broadcasting or telecommunications"	19-Nov-07	31-Dec-07	123200.00	=""	="Oracle Corporation Australia"	04-Dec-07 01:53 PM	

+="CN49903"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	16-Nov-07	21-Dec-07	26241.30	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:53 PM	

+="CN49899"	"Provision for Security Architecture Scoping Study"	="Comsuper"	04-Dec-07	="Information technology consultation services"	22-Nov-07	21-Dec-07	17600.00	=""	="Castelain"	04-Dec-07 01:53 PM	

+="CN49904"	"FaCSIA Property & Security Business Continuity Plan - Consulting Assistance"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	16-Nov-07	21-Dec-07	17325.00	=""	="Leslie Whittet & Associates"	04-Dec-07 01:53 PM	

+="CN49905"	"Career Development Assessment Centre registration"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	16-Nov-07	16-Nov-07	23650.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:53 PM	

+="CN49906"	"NTER Communications"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	16-Nov-07	33286.30	=""	="Famous 5 Pty Ltd"	04-Dec-07 01:53 PM	

+="CN49908"	"Media Analysis for NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Telecommunications media services"	16-Nov-07	30-Jun-08	46142.42	=""	="Media Monitors Australia Pty Ltd"	04-Dec-07 01:53 PM	

+="CN49909"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	22-Nov-07	30-Jun-08	125840.00	=""	="Stratagem Computer Contractors Pty"	04-Dec-07 01:53 PM	

+="CN49910"	"Lease and operation of a third aircraft for NT Police to support the NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Aircraft"	28-Nov-07	12-Dec-07	1980000.00	=""	="NORTHERN TERRITORY POLICE"	04-Dec-07 01:54 PM	

+="CN49911"	"Money Management Resource Tool- Facilitator's  community Education Workshop Kit"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	27-Nov-07	15-Jan-08	45687.20	=""	="Marcus Lee Design"	04-Dec-07 01:54 PM	

+="CN49913"	"ARB 4WD Vehicle Recovery Kits"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Commercial and Military and Private Vehicles and their Accessories and Components"	27-Nov-07	27-Nov-07	25460.00	=""	="ARB 4 x 4 Accessories"	04-Dec-07 01:54 PM	

+="CN49914"	"Removal fee for Nhulunbuy Fitout"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	26-Nov-07	26-Nov-07	24200.00	=""	="Lalor Removals Pty Ltd"	04-Dec-07 01:54 PM	

+="CN49915"	"Automated Testing Strategy Development"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	26-Nov-07	21-Dec-07	16764.00	=""	="KJ ROSS & ASSOCIATES"	04-Dec-07 01:54 PM	

+="CN49916"	"Software"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	23-Nov-07	30-Dec-07	26855.12	=""	="ALPHAWEST SERVICES PTY LTD"	04-Dec-07 01:54 PM	

+="CN49917"	"Introduction to Corporate Governance Worksop Alice Springs"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Hotels and lodging and meeting facilities"	30-Nov-07	30-Nov-07	21386.00	=""	="DIPLOMAT ALICE SPRINGS"	04-Dec-07 01:54 PM	

+="CN49918"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	30-Nov-07	30-Jun-08	128811.20	=""	="COMMAND RECRUITMENT GROUP"	04-Dec-07 01:54 PM	

+="CN49919"	"Design and develop a Petrol Sniffing Strategy Evaluation Framework"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	30-Nov-07	01-Apr-08	80000.00	=""	="COURAGE PARTNERS PTY LTD"	04-Dec-07 01:55 PM	

+="CN49920"	"Bounty Bag - DVD in New Mother Bag"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Educational facilities"	30-Nov-07	15-Dec-07	66000.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49921"	"Hoban"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	29-Nov-07	29-Nov-07	11000.00	=""	="Lynne Hoban Personnel Systems P/L"	04-Dec-07 01:55 PM	

+="CN49922"	"Provision of Investigation Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Financial and Insurance Services"	28-Nov-07	11-Jan-08	44000.00	=""	="DELOITTE TOUCHE TOHMATSU"	04-Dec-07 01:55 PM	

+="CN49923"	"Advertising for Tenders for the Provision on domestic Violence Helpline"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Nov-07	22-Nov-07	26980.17	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49924"	"Government Notices for NT Emergency Response Pornography Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Emergency and field medical services products"	22-Nov-07	14-Dec-07	21544.45	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:55 PM	

+="CN49925"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	22-Nov-07	20-Dec-07	11872.42	=""	="COMPUTERCORP (OPERATIONS)"	04-Dec-07 01:55 PM	

+="CN49926"	"Advertising of Compass Program in Graduate Careers 2008"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	22-Nov-07	30-Dec-07	12925.00	=""	="HOBSONS AUSTRALIA PTY LIMITED t/as"	04-Dec-07 01:55 PM	

+="CN49927"	"Distribution of 70,000 Avant Cards for National Youth Week"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Marketing and distribution"	22-Nov-07	28-Feb-08	14003.00	=""	="AVANT CARD"	04-Dec-07 01:56 PM	

+="CN49928"	"Provision of pricing evaluation services in relation to Market Research & Usability Panel RFT"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	22-Nov-07	06-May-08	23625.00	=""	="Freebody Cogent Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49929"	"Hardware"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	30-Dec-07	15326.56	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	

+="CN49930"	"Additional computers for extra staff & members. Qty 30 complete units/ qty 10 units w/out monito"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	23-Nov-07	23-Nov-07	65747.00	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 01:56 PM	

+="CN49931"	"Supply and install of workstations and loose furniture Brisbane STO"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building construction and support and maintenance and repair services"	23-Nov-07	23-Nov-07	273751.56	=""	="Cite Office Design Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49932"	"Contractor engaged to complete fitout works to Brisbane State Office"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	23-Nov-07	23-Nov-07	678459.98	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49933"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	23-Nov-07	30-Jun-08	153120.00	=""	="Avanade Australia Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49934-A1"	"Longitudinal Study of Indigenous Children - Survey Design, data collection"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	23-Nov-07	30-Jun-11	1746957.00	=""	="Roy Morgan Research Pty Ltd"	04-Dec-07 01:56 PM	

+="CN49935"	"LAFIA 2007 Asia Programme Fee"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	02-Nov-07	02-Nov-07	27610.00	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:57 PM	

+="CN49936"	"Comcare 06/07 premium adjustment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Insurance and retirement services"	02-Nov-07	02-Nov-07	750433.00	=""	="Comcare Australia"	04-Dec-07 01:57 PM	

+="CN49937"	"Fitout NTER Operations Centre Office - Darwin"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="General building construction"	01-Nov-07	02-Nov-07	1535030.88	=""	="ISIS Projects Pty Ltd"	04-Dec-07 01:57 PM	

+="CN49938"	"Office equipment"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	11-Oct-07	29-Nov-07	26754.20	=""	="Office Furniture & Storage Solution"	04-Dec-07 01:57 PM	

+="CN49939"	"Property Lease L24/500 Collins St melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	28-Nov-07	29320.20	=""	="ECS Property Group"	04-Dec-07 01:57 PM	

+="CN49940"	"Rent for 565 Bourke Street Melbourne"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	19-Nov-07	28-Nov-07	25658.70	=""	="Jones Lang La Salle (VIC)"	04-Dec-07 01:57 PM	

+="CN49941"	"Senior Project Manager - NTER"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	05-Nov-07	30-Jun-08	72600.00	=""	="TANNER JAMES MANAGEMENT"	04-Dec-07 01:57 PM	

+="CN49942"	"Advertising New NTER Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	45556.50	=""	="HMA Blaze Pty Limited"	04-Dec-07 01:57 PM	

+="CN49943"	"Advertising Graduate Oportunities 08/09"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Advertising"	05-Nov-07	30-Nov-07	12100.00	=""	="GRADUATE CAREERS COUNCIL OF"	04-Dec-07 01:58 PM	

+="CN49944"	"Install and Develop FOFMS monitoring tools & associated professional services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	05-Nov-07	30-Jun-08	49500.00	=""	="RPM SOLUTIONS PTY LTD"	04-Dec-07 01:58 PM	

+="CN49945"	"Review of current financial position and financial viability of GYC Alice Springs."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	23-Nov-07	13154.00	=""	="DFK Kidsons"	04-Dec-07 01:58 PM	

+="CN49946"	"Managing Stakeholders Engagement Course Fee for service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	02-Nov-07	02-Nov-07	20811.16	=""	="Directions for Change"	04-Dec-07 01:58 PM	

+="CN49947"	"Payment Business travel account Perth"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Travel facilitation"	06-Nov-07	29-Nov-07	13042.93	=""	="American Express"	04-Dec-07 01:58 PM	

+="CN49948"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	11796.50	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	

+="CN49949"	"Scribe service"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	29-Nov-07	29-Nov-07	15806.35	=""	="AUST PUBLIC SERVICE COMMISSION"	04-Dec-07 01:58 PM	

+="CN49950"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	27964.30	=""	="Corporate Express Australia"	04-Dec-07 01:58 PM	

+="CN49951"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25965.81	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	

+="CN49952"	"FACSIA National Office Stores Oct"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	01-Nov-07	30-Nov-07	25838.30	=""	="Corporate Express Australia"	04-Dec-07 01:59 PM	

+="CN49953"	"Reimbursement November 2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	26-Nov-07	26-Nov-07	100994.74	=""	="United Group Services"	04-Dec-07 01:59 PM	

+="CN49954"	"Office rent 1/12/2007-31/12/2007"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Real estate services"	01-Dec-07	01-Dec-07	33621.50	=""	="ARIA Property Group"	04-Dec-07 01:59 PM	

+="CN49955"	"SSAT L4&L5 380 Queens St Bne Progress Claim No.3"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Professional engineering services"	31-Oct-07	26-Nov-07	14155.68	=""	="Schiavello Fitout (QLD) Pty Ltd"	04-Dec-07 01:59 PM	

+="CN49956"	"Printing 2006/2007 Annual Report"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Paper products"	09-Nov-07	21-Nov-07	14110.80	=""	="Blue Print"	04-Dec-07 01:59 PM	

+="CN49957"	"SSAT stare hearing tables"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	19-Oct-07	19-Nov-07	28858.50	=""	="Schiavello (Vic.) Pty Ltd"	04-Dec-07 01:59 PM	

+="CN49958"	"Commercial Funiture Cus no.CASHDT30 Cus PO 995/014"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Office supplies"	11-Sep-07	12-Nov-07	22269.50	=""	="Workspace Commercial Furniture Pty"	04-Dec-07 01:59 PM	

+="CN49959"	"Health appraisals for Group Staff"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Human resources services"	05-Nov-07	30-Nov-07	47245.00	=""	="Health Futures Pty Ltd"	04-Dec-07 02:00 PM	

+="CN49960"	"Proj Mgt Consult Service-TOP"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	13-Nov-07	13-Nov-07	20000.00	=""	="XACT PROJECT CONSULTANTS PTY LTD"	04-Dec-07 02:00 PM	

+="CN49961"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	29-Feb-08	57200.00	=""	="CAPSE Pty Ltd"	04-Dec-07 02:00 PM	

+="CN49962"	"20 GUI vUSers & HP Support"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	43472.00	=""	="HEWLETT PACKARD AUST LTD"	04-Dec-07 02:00 PM	

+="CN49963"	"Government Notices for NT Emergency Response Alcohole Bans"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	12-Nov-07	12-Dec-07	80905.00	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	

+="CN49964"	"Provision of Contractor"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	12-Nov-07	30-Jun-08	153120.00	=""	="GREYTHORN PTY LTD"	04-Dec-07 02:00 PM	

+="CN49965"	"Government Notices for NT Emergency Response Porn/ Alcohole Laws"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Information services"	12-Nov-07	12-Dec-07	72728.66	=""	="HMA Blaze Pty Limited"	04-Dec-07 02:00 PM	

+="CN49966"	"Consultancy Services - Young Carers - Their Characteristics and Geographical Distribution"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Trade policy and services"	14-Nov-07	30-Jun-08	54958.00	=""	="Social Policy Research Centre"	04-Dec-07 02:00 PM	

+="CN49967"	"Statutory appointment of Administratio for Mandangala Aboriginal Corporation"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Nov-07	30-Jun-08	55000.00	=""	="Grant Thornton (WA) Pty Ltd"	04-Dec-07 02:01 PM	

+="CN49968"	"Develpo Overarching Strategy Helping Children with Autism package"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	14-Nov-07	07-Dec-07	55000.00	=""	="HannahFyre Enterprises"	04-Dec-07 02:01 PM	

+="CN49969"	"Provision of Project Assurance Services"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	13-Nov-07	30-Jun-08	33000.00	=""	="MAX SHANAHAN & ASSOCIATES PTY"	04-Dec-07 02:01 PM	

+="CN49970"	"NTERT-Relocations to various addresses"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Transportation and Storage and Mail Services"	13-Nov-07	13-Nov-07	16408.00	=""	="AUSSIEMOVE INTERNATIONAL PTY LTD"	04-Dec-07 02:01 PM	

+="CN49971"	"Laptops"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer Equipment and Accessories"	13-Nov-07	30-Nov-07	39361.95	=""	="DELL AUSTRALIA PTY LIMITED"	04-Dec-07 02:01 PM	

+="CN49972"	"Consultancy work around the Group Improvement Process"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management and Business Professionals and Administrative Services"	08-Nov-07	24-Dec-07	25500.00	=""	="THE WORKWISE GROUP PTY. LTD."	04-Dec-07 02:01 PM	

+="CN49973"	"The provision of consultancy services in relation to the Petrol Sniffing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	08-Nov-07	01-May-08	82947.10	=""	="Urbis JHD"	04-Dec-07 02:01 PM	

+="CN49974"	"To Update the previous Risk Management Plan for Network security in FaCSIA"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Software"	08-Nov-07	19-Dec-07	24200.00	=""	="SECURELINK PTY LTD"	04-Dec-07 02:01 PM	

+="CN49975"	"Staff Furniture Relocation Adeliade"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Furniture and Furnishings"	07-Nov-07	30-Nov-07	15015.00	=""	="Atlantis = Pty Ltd"	04-Dec-07 02:02 PM	

+="CN49976"	"Create online application for the National Youth Week calendar of events."	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	07-Nov-07	01-Jan-08	15300.00	=""	="Commercial Interactive Media"	04-Dec-07 02:02 PM	

+="CN49977"	"Northern Territory Emergency Response  Implemtation Plan"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Management advisory services"	07-Nov-07	16-Nov-07	57875.00	=""	="PROVIDENCE CONSULTING GROUP"	04-Dec-07 02:02 PM	

+="CN49978"	"Baseline Community Profile - Mornington Shire Queensland"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Business administration services"	12-Nov-07	15-Mar-08	48600.00	=""	="THE CULTURAL & INDIGENOUS"	04-Dec-07 02:02 PM	

+="CN49979"	"Payment ot Language Professionals for the translation and update of the FAO Multilingual"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Writing and translations"	09-Nov-07	30-Nov-07	23650.00	=""	="LANGUAGE PROFESSIONALS"	04-Dec-07 02:02 PM	

+="CN49980"	"Contract Services for Development of Paper for Future ICT Sourcing Strategy"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Computer services"	09-Nov-07	07-Dec-07	50000.00	=""	="IT Newcom Pty Limited"	04-Dec-07 02:02 PM	

+="CN49981"	"Training course for Compass"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Education and Training Services"	09-Nov-07	24-Dec-07	10510.00	=""	="D'Arcy Consulting Group Pty Ltd"	04-Dec-07 02:02 PM	

+="CN49982"	"Supply of Workstations & Loose Furniture-Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Accommodation furniture"	08-Nov-07	30-Nov-07	931873.63	=""	="Cite Office Design Pty Ltd"	04-Dec-07 02:03 PM	

+="CN49983"	"Construction Management - Melbourne co-location project"	="Department of Families, Community Services & Indigenous Affairs"	04-Dec-07	="Building and Construction and Maintenance Services"	08-Nov-07	30-Nov-07	2635121.77	=""	="ISIS Projects Pty Ltd"	04-Dec-07 02:03 PM	

+="CN49907"	"Tool Kit Carpenters"	="Department of Defence"	04-Dec-07	="Carpentry"	04-Dec-07	18-Dec-07	18277.44	=""	="KENTOOL PTY LTD"	04-Dec-07 02:16 PM	

+="CN49986"	"Management of journal subscriptions"	="Family Court of Australia"	04-Dec-07	="Business and corporate management consultation services"	26-Nov-07	25-Nov-08	33389.45	=""	="EBSCO Australia"	04-Dec-07 02:49 PM	

+="CN49987"	"NSN 3110-00-299-0410, Track Roller Ball Bearings"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	20-Nov-07	01-Aug-08	27646.34	=""	="Milspec Services Pty Ltd"	04-Dec-07 02:52 PM	

+="CN49988"	"NSN 5330-66-138-3602, Preformed Packing"	="Defence Materiel Organisation"	04-Dec-07	="Aerospace systems and components and equipment"	16-Nov-07	21-Dec-07	11444.40	=""	="Milspec Services Pty Ltd"	04-Dec-07 03:05 PM	

+="CN49989-A2"	"Provision of Rehabilitation counselling services"	="CRS Australia"	04-Dec-07	="Comprehensive health services"	03-Dec-07	21-Sep-09	60478.00	=""	="Expert Rehab Management"	04-Dec-07 03:07 PM	

+="CN49994"	"Recruitment - Project Manager"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	22-Nov-07	03-Apr-08	98252.00	=""	="ICON Recruitment Pty ltd"	04-Dec-07 03:26 PM	

+="CN49995-A4"	"Recruitment - ERP Project Management"	="Australian Crime Commission"	04-Dec-07	="Temporary personnel services"	24-Nov-07	31-Dec-08	274683.00	=""	="Hurtile Pty Ltd"	04-Dec-07 03:32 PM	

+="CN49998"	"Online Library Subscription"	="Australian Crime Commission"	04-Dec-07	="Library or documentation services"	01-Jul-07	30-Jun-08	36696.48	=""	="Thompson Legal & Regulatory Group"	04-Dec-07 03:36 PM	

+="CN50000"	" NSN 2840-01-369-3242  PURCHASE OF SPACER, TURBINE ROTOR, AIRCRAFT GAS TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	13-Dec-07	77478.66	=""	="Flite Path Pty Ltd"	04-Dec-07 03:40 PM	

+="CN50002"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:46 PM	

+="CN50004"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:51 PM	

+="CN50005"	"Telecommunications Interception"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	26-Nov-07	26-Dec-07	19000.00	=""	="Hutchison Telecoms Australia Ltd"	04-Dec-07 03:55 PM	

+="CN50006"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 03:56 PM	

+="CN50007"	"Photocopier lease charges"	="Australian Crime Commission"	04-Dec-07	="Photocopiers"	14-Sep-07	16-Nov-07	75134.40	=""	="Fuji Xerox Australia Pty Ltd"	04-Dec-07 04:00 PM	

+="CN50009"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Apr-07	31-Mar-08	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:01 PM	

+="CN50008"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:01 PM	

+="CN50011"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:06 PM	

+="CN50012"	"Telecommunications Interception expenditure"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	62000.00	=""	="Optus Billing Services"	04-Dec-07 04:07 PM	

+="CN50013"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-04	30-Jun-06	690000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:07 PM	

+="CN50014"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:09 PM	

+="CN50015"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:12 PM	

+="CN50016"	"Cleaning Services"	="Australian Electoral Commission"	04-Dec-07	="Building cleaning services"	01-Jul-04	31-Mar-07	82500.00	=""	="ANZ Cleaning Services"	04-Dec-07 04:13 PM	

+="CN50017-A1"	"UPS for computer servers"	="Australian Crime Commission"	04-Dec-07	="Computer Equipment and Accessories"	01-Dec-07	01-Dec-07	18629.58	=""	="Commander Integrated Networks Pty Ltd"	04-Dec-07 04:14 PM	

+="CN50018"	" NSN 2915-01-008-7399  REPAIR/OVERHAUL OF FUEL CONTROL, MAIN, TURBINE ENGINE  EX GST "	="Defence Materiel Organisation"	04-Dec-07	="Military transport aircraft"	03-Dec-07	02-Mar-08	14050.00	=""	="Safe Air Ltd"	04-Dec-07 04:15 PM	

+="CN50021"	"Property Management Services"	="Australian Electoral Commission"	04-Dec-07	="Property management services"	01-Jul-01	30-Jun-04	945000.00	=""	="CB Richard Ellis (A) Pty Ltd"	04-Dec-07 04:22 PM	

+="CN50020"	"  GAGE THICKNESS ELECTRONIC  "	="Defence Materiel Organisation"	04-Dec-07	="Laboratory and Measuring and Observing and Testing Equipment"	26-Nov-07	29-Feb-08	34067.00	=""	="OLYMPUS AUST P/L"	04-Dec-07 04:23 PM	

+="CN50022"	"lease of air conditioners"	="Australian Crime Commission"	04-Dec-07	="Air conditioning installation or maintenance or repair services"	05-Dec-07	05-Jun-08	10780.00	=""	="Emerson Network Power Australia"	04-Dec-07 04:23 PM	

+="CN50023"	"IT development for Standard Information Exchange project"	="Australian Crime Commission"	04-Dec-07	="Information exchange software"	01-Dec-07	30-Jun-08	1731021.00	=""	="Western Australia Police"	04-Dec-07 04:32 PM	

+="CN50024"	"Softwar maintenance"	="Department of the Prime Minister and Cabinet"	04-Dec-07	="Software"	01-Aug-07	31-Jul-08	40700.00	=""	="ACUMENT ALLIANCE (ACT) PTY LTD"	04-Dec-07 04:38 PM	

+="CN50025"	"Telecommunications Interception for Telstra"	="Australian Crime Commission"	04-Dec-07	="Surveillance and detection equipment"	01-Jul-07	30-Jun-08	19000.00	=""	="Telstra"	04-Dec-07 04:40 PM	

+="CN50026"	"Coaching for Senior Executive staff"	="Australian Crime Commission"	04-Dec-07	="Workshops"	04-Dec-07	30-Jun-08	47960.00	=""	="Yellow Edge Pty Ltd"	04-Dec-07 04:44 PM	

+="CN50027"	"Rack Mounted server"	="Australian Crime Commission"	04-Dec-07	="Computer servers"	04-Dec-07	04-Dec-07	10505.00	=""	="Dell Computer Pty Ltd"	04-Dec-07 04:48 PM	

+="CN50028"	"For the purchase of Qty 10 ice detectors for use on the Black Hawk helicopter to replace items classified as 'BER' by repair contractor."	="Defence Materiel Organisation"	04-Dec-07	="Military rotary wing aircraft"	27-Nov-07	07-Oct-08	139735.75	=""	="SIKORSKY AIRCRAFT AUSTRALIA LTD"	04-Dec-07 04:49 PM	

+="CN50029"	"Editing Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Sep-07	30-Nov-07	14550.00	=""	="Therese Laanela"	04-Dec-07 04:53 PM	

+="CN50030"	"Editing of Training Material"	="Australian Electoral Commission"	04-Dec-07	="Editing services"	01-Jul-07	31-Dec-07	16975.00	=""	="Yvonne Goudie"	04-Dec-07 04:57 PM	

+="CN50031"	"TACLANE Mine (KS328-07)"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	28-Dec-07	21900.00	=""	="Defence Material Organisation"	04-Dec-07 04:59 PM	

+="CN50032"	"Printing of Annual Report"	="Department of the Treasury"	04-Dec-07	="Printing and Photographic and Audio and Visual Equipment and Supplies"	01-Oct-07	30-Jun-08	62961.00	=""	="Canprint Communications Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50033"	"Equipment for AICNet"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	30-Oct-07	31-Dec-07	71255.92	=""	="Getronics Australia Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50034"	"IBIS world subscription"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	29-Oct-07	30-Jun-08	26697.00	=""	="IBISWorld.com"	04-Dec-07 04:59 PM	

+="CN50035"	"Health Assessments for Health Month"	="Department of the Treasury"	04-Dec-07	="Healthcare Services"	26-Oct-07	30-Jun-08	22000.00	=""	="ACT Nursing Service Pty ltd"	04-Dec-07 04:59 PM	

+="CN50036"	"40 940B 19" TFT Bezel Black Monitors"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	24-Oct-07	18-Nov-07	13640.00	=""	="Dataflex Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50037"	"Advertisment for Director position"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	19-Oct-07	19-Oct-07	15995.23	=""	="HMA Blaze Pty Limited"	04-Dec-07 04:59 PM	

+="CN50038"	"Statistics Subscription renewal"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	23870.00	=""	="Econdata Pty Ltd"	04-Dec-07 04:59 PM	

+="CN50039"	"Loss Estimation Model Development"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	31-Oct-07	30-Jun-08	37807.00	=""	="Finity"	04-Dec-07 04:59 PM	

+="CN50040"	"CEIC Aisa Database & CEIC China Database"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	27720.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	

+="CN50041"	"Legal Advice"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	02-Nov-07	30-Jun-08	25000.00	=""	="Australian Government Solicitor"	04-Dec-07 05:00 PM	

+="CN50042"	"Basic dX Software Package"	="Department of the Treasury"	04-Dec-07	="Information Technology Broadcasting and Telecommunications"	16-Nov-07	19-Oct-08	10560.00	=""	="Econdata Pty Ltd"	04-Dec-07 05:00 PM	

+="CN50043"	"Fees for Investment Management Services"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Oct-07	30-Jun-08	280483.64	=""	="Suncorp"	04-Dec-07 05:00 PM	

+="CN50044"	"Replacement Server and Storeage Disk"	="Department of the Treasury"	04-Dec-07	="Office Equipment and Accessories and Supplies"	15-Nov-07	23-Nov-07	46657.47	=""	="Dell Australia"	04-Dec-07 05:00 PM	

+="CN50045"	"Adverstisement for SBR conference"	="Department of the Treasury"	04-Dec-07	="Paper Materials and Products"	14-Nov-07	19-Nov-07	16436.86	=""	="HMA Blaze Pty Limited"	04-Dec-07 05:00 PM	

+="CN50046"	"Purchase of 20 Dishwashers"	="Department of the Treasury"	04-Dec-07	="Cleaning Equipment and Supplies"	08-Nov-07	03-Dec-07	47998.00	=""	="Kleenmaid"	04-Dec-07 05:00 PM	

+="CN50047"	"Continuum Software Dongle"	="Department of the Treasury"	04-Dec-07	="Defence and Law Enforcement and Security and Safety Equipment and Supplies"	02-Nov-07	30-Nov-07	10318.00	=""	="ADT Security"	04-Dec-07 05:00 PM	

+="CN50048"	"P.O increase for Treasury storage"	="Department of the Treasury"	04-Dec-07	="Transportation and Storage and Mail Services"	24-Jul-07	31-Jul-08	32000.00	=""	="1st Fleet Warehousing and Distribut"	04-Dec-07 05:00 PM	

+="CN50049"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	15-Oct-07	14-Oct-08	275616.00	=""	="Collective Resources IT Recruitment"	04-Dec-07 05:00 PM	

+="CN50050"	"Provision of the APS and Treasury Accountabilities"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	01-Nov-07	30-Jun-10	25000.00	="RFT006/07"	="Shane Carroll & Associates"	04-Dec-07 05:01 PM	

+="CN50051"	"Building Services Panel - Ground Floor E Block Con"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	30-Oct-07	31-Dec-07	142913.10	=""	="G E Shaw & Associates (ACT) Pty Ltd"	04-Dec-07 05:01 PM	

+="CN50052"	"Building Services Panel"	="Department of the Treasury"	04-Dec-07	="Building and Construction and Maintenance Services"	24-Oct-07	30-Mar-08	1370524.00	=""	="IQON Pty Ltd"	04-Dec-07 05:01 PM	

+="CN50053"	"SBR conference 26-28 Nov 2008"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	26-Nov-07	28-Nov-07	60000.00	=""	="Hilton - Brisbane"	04-Dec-07 05:01 PM	

+="CN50054"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Nov-07	30-Jun-08	327673.27	=""	="American Express International"	04-Dec-07 05:01 PM	

+="CN50055"	"Airfares"	="Department of the Treasury"	04-Dec-07	="Travel and Food and Lodging and Entertainment Services"	02-Oct-07	30-Jun-08	261441.18	=""	="American Express International"	04-Dec-07 05:01 PM	

+="CN50056"	"Contractor wages"	="Department of the Treasury"	04-Dec-07	="Personal and Domestic Services"	09-Nov-07	30-Jun-08	25000.00	="M.SKINNER"	="Westaff"	04-Dec-07 05:01 PM	

+="CN50057"	"Digital Projects s.o Increase"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	17-Jul-07	31-Dec-07	15000.00	=""	="Digital Projects"	04-Dec-07 05:01 PM	

+="CN50058"	"Development of a professional learning package"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	22-Oct-07	30-May-08	199091.54	="OPEN SOURCE"	="Curriculum Corporation"	04-Dec-07 05:02 PM	

+="CN50059"	"Provision of Internal Audit  Services for the HIH"	="Department of the Treasury"	04-Dec-07	="Financial and Insurance Services"	22-Oct-07	30-Jun-08	275550.00	=""	="KPMG - Canberra"	04-Dec-07 05:02 PM	

+="CN50060"	"Ernst & Young Secondee - Anne Millward"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	24-Sep-07	23-Sep-08	115841.00	=""	="Ernst & Young Services Pty Limited"	04-Dec-07 05:02 PM	

+="CN50061"	"Legal Services Panel - Provision of legal advice  for the SBR"	="Department of the Treasury"	04-Dec-07	="Management and Business Professionals and Administrative Services"	23-Oct-07	30-Jun-09	350000.00	=""	="Aust Government Solicitor  ACT"	04-Dec-07 05:02 PM	

+="CN50062"	"Provision of IT Architecture development"	="Department of the Treasury"	04-Dec-07	="Engineering and Research and Technology Based Services"	01-Oct-07	30-Oct-08	375840.00	=""	="Compas Pty Ltd"	04-Dec-07 05:02 PM	

+="CN50063-A1"	"Printing and Distribution Services"	="Australian Electoral Commission"	04-Dec-07	="Industrial printing services"	03-Aug-06	03-Aug-09	2000965.86	="AEC06/026"	="PMP Print Pty Ltd"	04-Dec-07 05:04 PM	

+="CN50064"	"GST Executive Events over FY 2007/2008"	="Australian Taxation Office"	04-Dec-07	="Management and Business Professionals and Administrative Services"	14-Jun-07	30-Jun-08	114550.00	="06.028"	="Hoffman Donohue P/L"	04-Dec-07 05:09 PM	

 ="CN50066-A3"	"Agreement forming the basis under which APRA grants the ATO a licence for the purposes of S183(1), (4), (5) of the copyright act as it applies to music."	="Australian Taxation Office"	04-Dec-07	="Management support services"	01-Jul-07	30-Jun-11	128225.11	=""	="Australasian Performing Right Association Limited"	04-Dec-07 05:18 PM 

--- a/admin/partialdata/import.php
+++ b/admin/partialdata/import.php
@@ -1,9 +1,13 @@
 <?php
-include_once ("../lib/common.inc.php");
+include_once ("../../lib/common.inc.php");
 function processFile($fpath, $tablename)
 {
 	global $conn;
+	echo " ============== $fpath  ============== <br>";
+	flush();
 	$row = 1;
+	$success = 0;
+	$dupes = 0;
 	$handle = fopen($fpath, "r");
 	//"t" mode string translates windows line breaks to unix
 	$datamapping0507 = array(
@@ -16,7 +20,8 @@
 		"Title" => "description",
 		"Category" => "category",
 		"ATM ID" => "atmID",
-		"LastUpdated" => "",
+		"Supplier Name" => "supplierName",
+		"LastUpdated" => "amendDate",
 		"" => ""
 	);
 	$headers;
@@ -32,7 +37,7 @@
 		"value",
 		"atmID",
 		"supplierName",
-		"LastUpdated"
+		"amendDate"
 	);
 	if ($tablename == "contractnotice") {
 		$contractNoticeInsertQ = 'INSERT INTO contractnotice ("' . implode('" , "', $contractNoticeFields) . '") VALUES ( ';
@@ -50,7 +55,7 @@
 		}
 		elseif ($row > 3) {
 			if ($num > count($datamapping0507)) {
-				die("<font color=red>Error in data import; data mapping fields out of bounds or changed</font><br>" . $fname . print_r($data));
+				die("<font color=red>Error in data import; data mapping fields out of bounds or changed</font><br>" . $fname . "data:" .$num. print_r($data ,true). "mapping:" . count($datamapping0507). print_r($datamapping0507 ,true));
 			}
 			$contractNoticeInsert = Array();
 			$contractNoticeInsert[] = $fpath;
@@ -98,6 +103,7 @@
 				$contractNoticeInsertQ->execute($contractNoticeInsert);
 				$errors = $conn->errorInfo();
 				if ($errors[1] == 7 && strpos($errors[2], "duplicate key")) {
+					$dupes++;
 				}
 				elseif ($errors[1] == 0) {
 					$success++;
@@ -116,6 +122,9 @@
 		$row++;
 	}
 	fclose($handle);
+	echo " $dupes duplicate records<br>";
+		echo " $success records successfully created<br>";
+	flush();
 	return $success;
 }
 $path = './';
@@ -129,6 +138,7 @@
 		while (false !== ($fname = readdir($dhandle))) {
 			if (($fname != '.') && ($fname != '..')) {
 				echo "<a href=\"import.php?fname=$fname\">$fname</a>&nbsp;" . filesize($path . $fname) . "&nbsp;" . date("c", filemtime($path . $fname)) . "<br/>";
+				processFile($path . $fname, "contractnotice");
 			}
 		}
 	}
@@ -136,11 +146,9 @@
 else {
 	$success = 0;
 	$fname = $_REQUEST["fname"];
-	echo " ============== $fname  ============== <br>";
-	flush();
+	
 	$success+= processFile($path . $fname, "contractnotice");
-	echo "<br> $success records successfully created";
-	flush();
+
 }
 ?>
 

--- /dev/null
+++ b/admin/partialdata/phpQuery-onefile.php
@@ -1,1 +1,5702 @@
+<?php
+/**
+ * phpQuery is a server-side, chainable, CSS3 selector driven
+ * Document Object Model (DOM) API based on jQuery JavaScript Library.
+ *
+ * @version 0.9.5
+ * @link http://code.google.com/p/phpquery/
+ * @link http://phpquery-library.blogspot.com/
+ * @link http://jquery.com/
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT License
+ * @package phpQuery
+ */
 
+// class names for instanceof
+// TODO move them as class constants into phpQuery
+define('DOMDOCUMENT', 'DOMDocument');
+define('DOMELEMENT', 'DOMElement');
+define('DOMNODELIST', 'DOMNodeList');
+define('DOMNODE', 'DOMNode');
+
+/**
+ * DOMEvent class.
+ *
+ * Based on
+ * @link http://developer.mozilla.org/En/DOM:event
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ * @todo implement ArrayAccess ?
+ */
+class DOMEvent {
+	/**
+	 * Returns a boolean indicating whether the event bubbles up through the DOM or not.
+	 *
+	 * @var unknown_type
+	 */
+	public $bubbles = true;
+	/**
+	 * Returns a boolean indicating whether the event is cancelable.
+	 *
+	 * @var unknown_type
+	 */
+	public $cancelable = true;
+	/**
+	 * Returns a reference to the currently registered target for the event.
+	 *
+	 * @var unknown_type
+	 */
+	public $currentTarget;
+	/**
+	 * Returns detail about the event, depending on the type of event.
+	 *
+	 * @var unknown_type
+	 * @link http://developer.mozilla.org/en/DOM/event.detail
+	 */
+	public $detail;	// ???
+	/**
+	 * Used to indicate which phase of the event flow is currently being evaluated.
+	 *
+	 * NOT IMPLEMENTED
+	 *
+	 * @var unknown_type
+	 * @link http://developer.mozilla.org/en/DOM/event.eventPhase
+	 */
+	public $eventPhase;	// ???
+	/**
+	 * The explicit original target of the event (Mozilla-specific).
+	 *
+	 * NOT IMPLEMENTED
+	 *
+	 * @var unknown_type
+	 */
+	public $explicitOriginalTarget; // moz only
+	/**
+	 * The original target of the event, before any retargetings (Mozilla-specific).
+	 *
+	 * NOT IMPLEMENTED
+	 *
+	 * @var unknown_type
+	 */
+	public $originalTarget;	// moz only
+	/**
+	 * Identifies a secondary target for the event.
+	 *
+	 * @var unknown_type
+	 */
+	public $relatedTarget;
+	/**
+	 * Returns a reference to the target to which the event was originally dispatched.
+	 *
+	 * @var unknown_type
+	 */
+	public $target;
+	/**
+	 * Returns the time that the event was created.
+	 *
+	 * @var unknown_type
+	 */
+	public $timeStamp;
+	/**
+	 * Returns the name of the event (case-insensitive).
+	 */
+	public $type;
+	public $runDefault = true;
+	public $data = null;
+	public function __construct($data) {
+		foreach($data as $k => $v) {
+			$this->$k = $v;
+		}
+		if (! $this->timeStamp)
+			$this->timeStamp = time();
+	}
+	/**
+	 * Cancels the event (if it is cancelable).
+	 *
+	 */
+	public function preventDefault() {
+		$this->runDefault = false;
+	}
+	/**
+	 * Stops the propagation of events further along in the DOM.
+	 *
+	 */
+	public function stopPropagation() {
+		$this->bubbles = false;
+	}
+}
+
+
+/**
+ * DOMDocumentWrapper class simplifies work with DOMDocument.
+ *
+ * Know bug:
+ * - in XHTML fragments, <br /> changes to <br clear="none" />
+ *
+ * @todo check XML catalogs compatibility
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ */
+class DOMDocumentWrapper {
+	/**
+	 * @var DOMDocument
+	 */
+	public $document;
+	public $id;
+	/**
+	 * @todo Rewrite as method and quess if null.
+	 * @var unknown_type
+	 */
+	public $contentType = '';
+	public $xpath;
+	public $uuid = 0;
+	public $data = array();
+	public $dataNodes = array();
+	public $events = array();
+	public $eventsNodes = array();
+	public $eventsGlobal = array();
+	/**
+	 * @TODO iframes support http://code.google.com/p/phpquery/issues/detail?id=28
+	 * @var unknown_type
+	 */
+	public $frames = array();
+	/**
+	 * Document root, by default equals to document itself.
+	 * Used by documentFragments.
+	 *
+	 * @var DOMNode
+	 */
+	public $root;
+	public $isDocumentFragment;
+	public $isXML = false;
+	public $isXHTML = false;
+	public $isHTML = false;
+	public $charset;
+	public function __construct($markup = null, $contentType = null, $newDocumentID = null) {
+		if (isset($markup))
+			$this->load($markup, $contentType, $newDocumentID);
+		$this->id = $newDocumentID
+			? $newDocumentID
+			: md5(microtime());
+	}
+	public function load($markup, $contentType = null, $newDocumentID = null) {
+//		phpQuery::$documents[$id] = $this;
+		$this->contentType = strtolower($contentType);
+		if ($markup instanceof DOMDOCUMENT) {
+			$this->document = $markup;
+			$this->root = $this->document;
+			$this->charset = $this->document->encoding;
+			// TODO isDocumentFragment
+		} else {
+			$loaded = $this->loadMarkup($markup);
+		}
+		if ($loaded) {
+//			$this->document->formatOutput = true;
+			$this->document->preserveWhiteSpace = true;
+			$this->xpath = new DOMXPath($this->document);
+			$this->afterMarkupLoad();
+			return true;
+			// remember last loaded document
+//			return phpQuery::selectDocument($id);
+		}
+		return false;
+	}
+	protected function afterMarkupLoad() {
+		if ($this->isXHTML) {
+			$this->xpath->registerNamespace("html", "http://www.w3.org/1999/xhtml");
+		}
+	}
+	protected function loadMarkup($markup) {
+		$loaded = false;
+		if ($this->contentType) {
+			self::debug("Load markup for content type {$this->contentType}");
+			// content determined by contentType
+			list($contentType, $charset) = $this->contentTypeToArray($this->contentType);
+			switch($contentType) {
+				case 'text/html':
+					phpQuery::debug("Loading HTML, content type '{$this->contentType}'");
+					$loaded = $this->loadMarkupHTML($markup, $charset);
+				break;
+				case 'text/xml':
+				case 'application/xhtml+xml':
+					phpQuery::debug("Loading XML, content type '{$this->contentType}'");
+					$loaded = $this->loadMarkupXML($markup, $charset);
+				break;
+				default:
+					// for feeds or anything that sometimes doesn't use text/xml
+					if (strpos('xml', $this->contentType) !== false) {
+						phpQuery::debug("Loading XML, content type '{$this->contentType}'");
+						$loaded = $this->loadMarkupXML($markup, $charset);
+					} else
+						phpQuery::debug("Could not determine document type from content type '{$this->contentType}'");
+			}
+		} else {
+			// content type autodetection
+			if ($this->isXML($markup)) {
+				phpQuery::debug("Loading XML, isXML() == true");
+				$loaded = $this->loadMarkupXML($markup);
+				if (! $loaded && $this->isXHTML) {
+					phpQuery::debug('Loading as XML failed, trying to load as HTML, isXHTML == true');
+					$loaded = $this->loadMarkupHTML($markup);
+				}
+			} else {
+				phpQuery::debug("Loading HTML, isXML() == false");
+				$loaded = $this->loadMarkupHTML($markup);
+			}
+		}
+		return $loaded;
+	}
+	protected function loadMarkupReset() {
+		$this->isXML = $this->isXHTML = $this->isHTML = false;
+	}
+	protected function documentCreate($charset, $version = '1.0') {
+		if (! $version)
+			$version = '1.0';
+		$this->document = new DOMDocument($version, $charset);
+		$this->charset = $this->document->encoding;
+//		$this->document->encoding = $charset;
+		$this->document->formatOutput = true;
+		$this->document->preserveWhiteSpace = true;
+	}
+	protected function loadMarkupHTML($markup, $requestedCharset = null) {
+		if (phpQuery::$debug)
+			phpQuery::debug('Full markup load (HTML): '.substr($markup, 0, 250));
+		$this->loadMarkupReset();
+		$this->isHTML = true;
+		if (!isset($this->isDocumentFragment))
+			$this->isDocumentFragment = self::isDocumentFragmentHTML($markup);
+		$charset = null;
+		$documentCharset = $this->charsetFromHTML($markup);
+		$addDocumentCharset = false;
+		if ($documentCharset) {
+			$charset = $documentCharset;
+			$markup = $this->charsetFixHTML($markup);
+		} else if ($requestedCharset) {
+			$charset = $requestedCharset;
+		}
+		if (! $charset)
+			$charset = phpQuery::$defaultCharset;
+		// HTTP 1.1 says that the default charset is ISO-8859-1
+		// @see http://www.w3.org/International/O-HTTP-charset
+		if (! $documentCharset) {
+			$documentCharset = 'ISO-8859-1';
+			$addDocumentCharset = true;	
+		}
+		// Should be careful here, still need 'magic encoding detection' since lots of pages have other 'default encoding'
+		// Worse, some pages can have mixed encodings... we'll try not to worry about that
+		$requestedCharset = strtoupper($requestedCharset);
+		$documentCharset = strtoupper($documentCharset);
+		phpQuery::debug("DOC: $documentCharset REQ: $requestedCharset");
+		if ($requestedCharset && $documentCharset && $requestedCharset !== $documentCharset) {
+			phpQuery::debug("CHARSET CONVERT");
+			// Document Encoding Conversion
+			// http://code.google.com/p/phpquery/issues/detail?id=86
+			if (function_exists('mb_detect_encoding')) {
+				$possibleCharsets = array($documentCharset, $requestedCharset, 'AUTO');
+				$docEncoding = mb_detect_encoding($markup, implode(', ', $possibleCharsets));
+				if (! $docEncoding)
+					$docEncoding = $documentCharset; // ok trust the document
+				phpQuery::debug("DETECTED '$docEncoding'");
+				// Detected does not match what document says...
+				if ($docEncoding !== $documentCharset) {
+					// Tricky..
+				}
+				if ($docEncoding !== $requestedCharset) {
+					phpQuery::debug("CONVERT $docEncoding => $requestedCharset");
+					$markup = mb_convert_encoding($markup, $requestedCharset, $docEncoding);
+					$markup = $this->charsetAppendToHTML($markup, $requestedCharset);
+					$charset = $requestedCharset;
+				}
+			} else {
+				phpQuery::debug("TODO: charset conversion without mbstring...");
+			}
+		}
+		$return = false;
+		if ($this->isDocumentFragment) {
+			phpQuery::debug("Full markup load (HTML), DocumentFragment detected, using charset '$charset'");
+			$return = $this->documentFragmentLoadMarkup($this, $charset, $markup);
+		} else {
+			if ($addDocumentCharset) {
+				phpQuery::debug("Full markup load (HTML), appending charset: '$charset'");
+				$markup = $this->charsetAppendToHTML($markup, $charset);
+			}
+			phpQuery::debug("Full markup load (HTML), documentCreate('$charset')");
+			$this->documentCreate($charset);
+			$return = phpQuery::$debug === 2
+				? $this->document->loadHTML($markup)
+				: @$this->document->loadHTML($markup);
+			if ($return)
+				$this->root = $this->document;
+		}
+		if ($return && ! $this->contentType)
+			$this->contentType = 'text/html';
+		return $return;
+	}
+	protected function loadMarkupXML($markup, $requestedCharset = null) {
+		if (phpQuery::$debug)
+			phpQuery::debug('Full markup load (XML): '.substr($markup, 0, 250));
+		$this->loadMarkupReset();
+		$this->isXML = true;
+		// check agains XHTML in contentType or markup
+		$isContentTypeXHTML = $this->isXHTML();
+		$isMarkupXHTML = $this->isXHTML($markup);
+		if ($isContentTypeXHTML || $isMarkupXHTML) {
+			self::debug('Full markup load (XML), XHTML detected');
+			$this->isXHTML = true;
+		}
+		// determine document fragment
+		if (! isset($this->isDocumentFragment))
+			$this->isDocumentFragment = $this->isXHTML
+				? self::isDocumentFragmentXHTML($markup)
+				: self::isDocumentFragmentXML($markup);
+		// this charset will be used
+		$charset = null;
+		// charset from XML declaration @var string
+		$documentCharset = $this->charsetFromXML($markup);
+		if (! $documentCharset) {
+			if ($this->isXHTML) {
+				// this is XHTML, try to get charset from content-type meta header
+				$documentCharset = $this->charsetFromHTML($markup);
+				if ($documentCharset) {
+					phpQuery::debug("Full markup load (XML), appending XHTML charset '$documentCharset'");
+					$this->charsetAppendToXML($markup, $documentCharset);
+					$charset = $documentCharset;
+				}
+			}
+			if (! $documentCharset) {
+				// if still no document charset...
+				$charset = $requestedCharset;
+			}
+		} else if ($requestedCharset) {
+			$charset = $requestedCharset;
+		}
+		if (! $charset) {
+			$charset = phpQuery::$defaultCharset;
+		}
+		if ($requestedCharset && $documentCharset && $requestedCharset != $documentCharset) {
+			// TODO place for charset conversion
+//			$charset = $requestedCharset;
+		}
+		$return = false;
+		if ($this->isDocumentFragment) {
+			phpQuery::debug("Full markup load (XML), DocumentFragment detected, using charset '$charset'");
+			$return = $this->documentFragmentLoadMarkup($this, $charset, $markup);
+		} else {
+			// FIXME ???
+			if ($isContentTypeXHTML && ! $isMarkupXHTML)
+			if (! $documentCharset) {
+				phpQuery::debug("Full markup load (XML), appending charset '$charset'");
+				$markup = $this->charsetAppendToXML($markup, $charset);
+			}
+			// see http://pl2.php.net/manual/en/book.dom.php#78929
+			// LIBXML_DTDLOAD (>= PHP 5.1)
+			// does XML ctalogues works with LIBXML_NONET
+	//		$this->document->resolveExternals = true;
+			// TODO test LIBXML_COMPACT for performance improvement
+			// create document
+			$this->documentCreate($charset);
+			if (phpversion() < 5.1) {
+				$this->document->resolveExternals = true;
+				$return = phpQuery::$debug === 2
+					? $this->document->loadXML($markup)
+					: @$this->document->loadXML($markup);
+			} else {
+				/** @link http://pl2.php.net/manual/en/libxml.constants.php */
+				$libxmlStatic = phpQuery::$debug === 2
+					? LIBXML_DTDLOAD|LIBXML_DTDATTR|LIBXML_NONET
+					: LIBXML_DTDLOAD|LIBXML_DTDATTR|LIBXML_NONET|LIBXML_NOWARNING|LIBXML_NOERROR;
+				$return = $this->document->loadXML($markup, $libxmlStatic);
+// 				if (! $return)
+// 					$return = $this->document->loadHTML($markup);
+			}
+			if ($return)
+				$this->root = $this->document;
+		}
+		if ($return) {
+			if (! $this->contentType) {
+				if ($this->isXHTML)
+					$this->contentType = 'application/xhtml+xml';
+				else
+					$this->contentType = 'text/xml';
+			}
+			return $return;
+		} else {
+			throw new Exception("Error loading XML markup");
+		}
+	}
+	protected function isXHTML($markup = null) {
+		if (! isset($markup)) {
+			return strpos($this->contentType, 'xhtml') !== false;
+		}
+		// XXX ok ?
+		return strpos($markup, "<!DOCTYPE html") !== false;
+//		return stripos($doctype, 'xhtml') !== false;
+//		$doctype = isset($dom->doctype) && is_object($dom->doctype)
+//			? $dom->doctype->publicId
+//			: self::$defaultDoctype;
+	}
+	protected function isXML($markup) {
+//		return strpos($markup, '<?xml') !== false && stripos($markup, 'xhtml') === false;
+		return strpos(substr($markup, 0, 100), '<'.'?xml') !== false;
+	}
+	protected function contentTypeToArray($contentType) {
+		$matches = explode(';', trim(strtolower($contentType)));
+		if (isset($matches[1])) {
+			$matches[1] = explode('=', $matches[1]);
+			// strip 'charset='
+			$matches[1] = isset($matches[1][1]) && trim($matches[1][1])
+				? $matches[1][1]
+				: $matches[1][0];
+		} else
+			$matches[1] = null;
+		return $matches;
+	}
+	/**
+	 *
+	 * @param $markup
+	 * @return array contentType, charset
+	 */
+	protected function contentTypeFromHTML($markup) {
+		$matches = array();
+		// find meta tag
+		preg_match('@<meta[^>]+http-equiv\\s*=\\s*(["|\'])Content-Type\\1([^>]+?)>@i',
+			$markup, $matches
+		);
+		if (! isset($matches[0]))
+			return array(null, null);
+		// get attr 'content'
+		preg_match('@content\\s*=\\s*(["|\'])(.+?)\\1@', $matches[0], $matches);
+		if (! isset($matches[0]))
+			return array(null, null);
+		return $this->contentTypeToArray($matches[2]);
+	}
+	protected function charsetFromHTML($markup) {
+		$contentType = $this->contentTypeFromHTML($markup);
+		return $contentType[1];
+	}
+	protected function charsetFromXML($markup) {
+		$matches;
+		// find declaration
+		preg_match('@<'.'?xml[^>]+encoding\\s*=\\s*(["|\'])(.*?)\\1@i',
+			$markup, $matches
+		);
+		return isset($matches[2])
+			? strtolower($matches[2])
+			: null;
+	}
+	/**
+	 * Repositions meta[type=charset] at the start of head. Bypasses DOMDocument bug.
+	 *
+	 * @link http://code.google.com/p/phpquery/issues/detail?id=80
+	 * @param $html
+	 */
+	protected function charsetFixHTML($markup) {
+		$matches = array();
+		// find meta tag
+		preg_match('@\s*<meta[^>]+http-equiv\\s*=\\s*(["|\'])Content-Type\\1([^>]+?)>@i',
+			$markup, $matches, PREG_OFFSET_CAPTURE
+		);
+		if (! isset($matches[0]))
+			return;
+		$metaContentType = $matches[0][0];
+		$markup = substr($markup, 0, $matches[0][1])
+			.substr($markup, $matches[0][1]+strlen($metaContentType));
+		$headStart = stripos($markup, '<head>');
+		$markup = substr($markup, 0, $headStart+6).$metaContentType
+			.substr($markup, $headStart+6);
+		return $markup;
+	}
+	protected function charsetAppendToHTML($html, $charset, $xhtml = false) {
+		// remove existing meta[type=content-type]
+		$html = preg_replace('@\s*<meta[^>]+http-equiv\\s*=\\s*(["|\'])Content-Type\\1([^>]+?)>@i', '', $html);
+		$meta = '<meta http-equiv="Content-Type" content="text/html;charset='
+			.$charset.'" '
+			.($xhtml ? '/' : '')
+			.'>';
+		if (strpos($html, '<head') === false) {
+			if (strpos($hltml, '<html') === false) {
+				return $meta.$html;
+			} else {
+				return preg_replace(
+					'@<html(.*?)(?(?<!\?)>)@s',
+					"<html\\1><head>{$meta}</head>",
+					$html
+				);
+			}
+		} else {
+			return preg_replace(
+				'@<head(.*?)(?(?<!\?)>)@s',
+				'<head\\1>'.$meta,
+				$html
+			);
+		}
+	}
+	protected function charsetAppendToXML($markup, $charset) {
+		$declaration = '<'.'?xml version="1.0" encoding="'.$charset.'"?'.'>';
+		return $declaration.$markup;
+	}
+	public static function isDocumentFragmentHTML($markup) {
+		return stripos($markup, '<html') === false && stripos($markup, '<!doctype') === false;
+	}
+	public static function isDocumentFragmentXML($markup) {
+		return stripos($markup, '<'.'?xml') === false;
+	}
+	public static function isDocumentFragmentXHTML($markup) {
+		return self::isDocumentFragmentHTML($markup);
+	}
+	public function importAttr($value) {
+		// TODO
+	}
+	/**
+	 *
+	 * @param $source
+	 * @param $target
+	 * @param $sourceCharset
+	 * @return array Array of imported nodes.
+	 */
+	public function import($source, $sourceCharset = null) {
+		// TODO charset conversions
+		$return = array();
+		if ($source instanceof DOMNODE && !($source instanceof DOMNODELIST))
+			$source = array($source);
+//		if (is_array($source)) {
+//			foreach($source as $node) {
+//				if (is_string($node)) {
+//					// string markup
+//					$fake = $this->documentFragmentCreate($node, $sourceCharset);
+//					if ($fake === false)
+//						throw new Exception("Error loading documentFragment markup");
+//					else
+//						$return = array_merge($return, 
+//							$this->import($fake->root->childNodes)
+//						);
+//				} else {
+//					$return[] = $this->document->importNode($node, true);
+//				}
+//			}
+//			return $return;
+//		} else {
+//			// string markup
+//			$fake = $this->documentFragmentCreate($source, $sourceCharset);
+//			if ($fake === false)
+//				throw new Exception("Error loading documentFragment markup");
+//			else
+//				return $this->import($fake->root->childNodes);
+//		}
+		if (is_array($source) || $source instanceof DOMNODELIST) {
+			// dom nodes
+			self::debug('Importing nodes to document');
+			foreach($source as $node)
+				$return[] = $this->document->importNode($node, true);
+		} else {
+			// string markup
+			$fake = $this->documentFragmentCreate($source, $sourceCharset);
+			if ($fake === false)
+				throw new Exception("Error loading documentFragment markup");
+			else
+				return $this->import($fake->root->childNodes);
+		}
+		return $return;
+	}
+	/**
+	 * Creates new document fragment.
+	 *
+	 * @param $source
+	 * @return DOMDocumentWrapper
+	 */
+	protected function documentFragmentCreate($source, $charset = null) {
+		$fake = new DOMDocumentWrapper();
+		$fake->contentType = $this->contentType;
+		$fake->isXML = $this->isXML;
+		$fake->isHTML = $this->isHTML;
+		$fake->isXHTML = $this->isXHTML;
+		$fake->root = $fake->document;
+		if (! $charset)
+			$charset = $this->charset;
+//	$fake->documentCreate($this->charset);
+		if ($source instanceof DOMNODE && !($source instanceof DOMNODELIST))
+			$source = array($source);
+		if (is_array($source) || $source instanceof DOMNODELIST) {
+			// dom nodes
+			// load fake document
+			if (! $this->documentFragmentLoadMarkup($fake, $charset))
+				return false;
+			$nodes = $fake->import($source);
+			foreach($nodes as $node)
+				$fake->root->appendChild($node);
+		} else {
+			// string markup
+			$this->documentFragmentLoadMarkup($fake, $charset, $source);
+		}
+		return $fake;
+	}
+	/**
+	 *
+	 * @param $document DOMDocumentWrapper
+	 * @param $markup
+	 * @return $document
+	 */
+	private function documentFragmentLoadMarkup($fragment, $charset, $markup = null) {
+		// TODO error handling
+		// TODO copy doctype
+		// tempolary turn off
+		$fragment->isDocumentFragment = false;
+		if ($fragment->isXML) {
+			if ($fragment->isXHTML) {
+				// add FAKE element to set default namespace
+				$fragment->loadMarkupXML('<?xml version="1.0" encoding="'.$charset.'"?>'
+					.'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" '
+					.'"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
+					.'<fake xmlns="http://www.w3.org/1999/xhtml">'.$markup.'</fake>');
+				$fragment->root = $fragment->document->firstChild->nextSibling;
+			} else {
+				$fragment->loadMarkupXML('<?xml version="1.0" encoding="'.$charset.'"?><fake>'.$markup.'</fake>');
+				$fragment->root = $fragment->document->firstChild;
+			}
+		} else {
+			$markup2 = phpQuery::$defaultDoctype.'<html><head><meta http-equiv="Content-Type" content="text/html;charset='
+				.$charset.'"></head>';
+			$noBody = strpos($markup, '<body') === false;
+			if ($noBody)
+				$markup2 .= '<body>';
+			$markup2 .= $markup;
+			if ($noBody)
+				$markup2 .= '</body>';
+			$markup2 .= '</html>';
+			$fragment->loadMarkupHTML($markup2);
+			// TODO resolv body tag merging issue
+			$fragment->root = $noBody
+				? $fragment->document->firstChild->nextSibling->firstChild->nextSibling
+				: $fragment->document->firstChild->nextSibling->firstChild->nextSibling;
+		}
+		if (! $fragment->root)
+			return false;
+		$fragment->isDocumentFragment = true;
+		return true;
+	}
+	protected function documentFragmentToMarkup($fragment) {
+		phpQuery::debug('documentFragmentToMarkup');
+		$tmp = $fragment->isDocumentFragment;
+		$fragment->isDocumentFragment = false;
+		$markup = $fragment->markup();
+		if ($fragment->isXML) {
+			$markup = substr($markup, 0, strrpos($markup, '</fake>'));
+			if ($fragment->isXHTML) {
+				$markup = substr($markup, strpos($markup, '<fake')+43);
+			} else {
+				$markup = substr($markup, strpos($markup, '<fake>')+6);
+			}
+		} else {
+				$markup = substr($markup, strpos($markup, '<body>')+6);
+				$markup = substr($markup, 0, strrpos($markup, '</body>'));
+		}
+		$fragment->isDocumentFragment = $tmp;
+		if (phpQuery::$debug)
+			phpQuery::debug('documentFragmentToMarkup: '.substr($markup, 0, 150));
+		return $markup;
+	}
+	/**
+	 * Return document markup, starting with optional $nodes as root.
+	 *
+	 * @param $nodes	DOMNode|DOMNodeList
+	 * @return string
+	 */
+	public function markup($nodes = null, $innerMarkup = false) {
+		if (isset($nodes) && count($nodes) == 1 && $nodes[0] instanceof DOMDOCUMENT)
+			$nodes = null;
+		if (isset($nodes)) {
+			$markup = '';
+			if (!is_array($nodes) && !($nodes instanceof DOMNODELIST) )
+				$nodes = array($nodes);
+			if ($this->isDocumentFragment && ! $innerMarkup)
+				foreach($nodes as $i => $node)
+					if ($node->isSameNode($this->root)) {
+					//	var_dump($node);
+						$nodes = array_slice($nodes, 0, $i)
+							+ phpQuery::DOMNodeListToArray($node->childNodes)
+							+ array_slice($nodes, $i+1);
+						}
+			if ($this->isXML && ! $innerMarkup) {
+				self::debug("Getting outerXML with charset '{$this->charset}'");
+				// we need outerXML, so we can benefit from
+				// $node param support in saveXML()
+				foreach($nodes as $node)
+					$markup .= $this->document->saveXML($node);
+			} else {
+				$loop = array();
+				if ($innerMarkup)
+					foreach($nodes as $node) {
+						if ($node->childNodes)
+							foreach($node->childNodes as $child)
+								$loop[] = $child;
+						else
+							$loop[] = $node;
+					}
+				else
+					$loop = $nodes;
+				self::debug("Getting markup, moving selected nodes (".count($loop).") to new DocumentFragment");
+				$fake = $this->documentFragmentCreate($loop);
+				$markup = $this->documentFragmentToMarkup($fake);
+			}
+			if ($this->isXHTML) {
+				self::debug("Fixing XHTML");
+				$markup = self::markupFixXHTML($markup);
+			}
+			self::debug("Markup: ".substr($markup, 0, 250));
+			return $markup;
+		} else {
+			if ($this->isDocumentFragment) {
+				// documentFragment, html only...
+				self::debug("Getting markup, DocumentFragment detected");
+//				return $this->markup(
+////					$this->document->getElementsByTagName('body')->item(0)
+//					$this->document->root, true
+//				);
+				$markup = $this->documentFragmentToMarkup($this);
+				// no need for markupFixXHTML, as it's done thought markup($nodes) method
+				return $markup;
+			} else {
+				self::debug("Getting markup (".($this->isXML?'XML':'HTML')."), final with charset '{$this->charset}'");
+				$markup = $this->isXML
+					? $this->document->saveXML()
+					: $this->document->saveHTML();
+				if ($this->isXHTML) {
+					self::debug("Fixing XHTML");
+					$markup = self::markupFixXHTML($markup);
+				}
+				self::debug("Markup: ".substr($markup, 0, 250));
+				return $markup;
+			}
+		}
+	}
+	protected static function markupFixXHTML($markup) {
+		$markup = self::expandEmptyTag('script', $markup);
+		$markup = self::expandEmptyTag('select', $markup);
+		$markup = self::expandEmptyTag('textarea', $markup);
+		return $markup;
+	}
+	public static function debug($text) {
+		phpQuery::debug($text);
+	}
+	/**
+	 * expandEmptyTag
+	 *
+	 * @param $tag
+	 * @param $xml
+	 * @return unknown_type
+	 * @author mjaque at ilkebenson dot com
+	 * @link http://php.net/manual/en/domdocument.savehtml.php#81256
+	 */
+	public static function expandEmptyTag($tag, $xml){
+        $indice = 0;
+        while ($indice< strlen($xml)){
+            $pos = strpos($xml, "<$tag ", $indice);
+            if ($pos){
+                $posCierre = strpos($xml, ">", $pos);
+                if ($xml[$posCierre-1] == "/"){
+                    $xml = substr_replace($xml, "></$tag>", $posCierre-1, 2);
+                }
+                $indice = $posCierre;
+            }
+            else break;
+        }
+        return $xml;
+	}
+}
+
+/**
+ * Event handling class.
+ *
+ * @author Tobiasz Cudnik
+ * @package phpQuery
+ * @static
+ */
+abstract class phpQueryEvents {
+	/**
+	 * Trigger a type of event on every matched element.
+	 *
+	 * @param DOMNode|phpQueryObject|string $document
+	 * @param unknown_type $type
+	 * @param unknown_type $data
+	 *
+	 * @TODO exclusive events (with !)
+	 * @TODO global events (test)
+	 * @TODO support more than event in $type (space-separated)
+	 */
+	public static function trigger($document, $type, $data = array(), $node = null) {
+		// trigger: function(type, data, elem, donative, extra) {
+		$documentID = phpQuery::getDocumentID($document);
+		$namespace = null;
+		if (strpos($type, '.') !== false)
+			list($name, $namespace) = explode('.', $type);
+		else
+			$name = $type;
+		if (! $node) {
+			if (self::issetGlobal($documentID, $type)) {
+				$pq = phpQuery::getDocument($documentID);
+				// TODO check add($pq->document)
+				$pq->find('*')->add($pq->document)
+					->trigger($type, $data);
+			}
+		} else {
+			if (isset($data[0]) && $data[0] instanceof DOMEvent) {
+				$event = $data[0];
+				$event->relatedTarget = $event->target;
+				$event->target = $node;
+				$data = array_slice($data, 1);
+			} else {
+				$event = new DOMEvent(array(
+					'type' => $type,
+					'target' => $node,
+					'timeStamp' => time(),
+				));
+			}
+			$i = 0;
+			while($node) {
+				// TODO whois
+				phpQuery::debug("Triggering ".($i?"bubbled ":'')."event '{$type}' on "
+					."node \n");//.phpQueryObject::whois($node)."\n");
+				$event->currentTarget = $node;
+				$eventNode = self::getNode($documentID, $node);
+				if (isset($eventNode->eventHandlers)) {
+					foreach($eventNode->eventHandlers as $eventType => $handlers) {
+						$eventNamespace = null;
+						if (strpos($type, '.') !== false)
+							list($eventName, $eventNamespace) = explode('.', $eventType);
+						else
+							$eventName = $eventType;
+						if ($name != $eventName)
+							continue;
+						if ($namespace && $eventNamespace && $namespace != $eventNamespace)
+							continue;
+						foreach($handlers as $handler) {
+							phpQuery::debug("Calling event handler\n");
+							$event->data = $handler['data']
+								? $handler['data']
+								: null;
+							$params = array_merge(array($event), $data);
+							$return = phpQuery::callbackRun($handler['callback'], $params);
+							if ($return === false) {
+								$event->bubbles = false;
+							}
+						}
+					}
+				}
+				// to bubble or not to bubble...
+				if (! $event->bubbles)
+					break;
+				$node = $node->parentNode;
+				$i++;
+			}
+		}
+	}
+	/**
+	 * Binds a handler to one or more events (like click) for each matched element.
+	 * Can also bind custom events.
+	 *
+	 * @param DOMNode|phpQueryObject|string $document
+	 * @param unknown_type $type
+	 * @param unknown_type $data Optional
+	 * @param unknown_type $callback
+	 *
+	 * @TODO support '!' (exclusive) events
+	 * @TODO support more than event in $type (space-separated)
+	 * @TODO support binding to global events
+	 */
+	public static function add($document, $node, $type, $data, $callback = null) {
+		phpQuery::debug("Binding '$type' event");
+		$documentID = phpQuery::getDocumentID($document);
+//		if (is_null($callback) && is_callable($data)) {
+//			$callback = $data;
+//			$data = null;
+//		}
+		$eventNode = self::getNode($documentID, $node);
+		if (! $eventNode)
+			$eventNode = self::setNode($documentID, $node);
+		if (!isset($eventNode->eventHandlers[$type]))
+			$eventNode->eventHandlers[$type] = array();
+		$eventNode->eventHandlers[$type][] = array(
+			'callback' => $callback,
+			'data' => $data,
+		);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param DOMNode|phpQueryObject|string $document
+	 * @param unknown_type $type
+	 * @param unknown_type $callback
+	 *
+	 * @TODO namespace events
+	 * @TODO support more than event in $type (space-separated)
+	 */
+	public static function remove($document, $node, $type = null, $callback = null) {
+		$documentID = phpQuery::getDocumentID($document);
+		$eventNode = self::getNode($documentID, $node);
+		if (is_object($eventNode) && isset($eventNode->eventHandlers[$type])) {
+			if ($callback) {
+				foreach($eventNode->eventHandlers[$type] as $k => $handler)
+					if ($handler['callback'] == $callback)
+						unset($eventNode->eventHandlers[$type][$k]);
+			} else {
+				unset($eventNode->eventHandlers[$type]);
+			}
+		}
+	}
+	protected static function getNode($documentID, $node) {
+		foreach(phpQuery::$documents[$documentID]->eventsNodes as $eventNode) {
+			if ($node->isSameNode($eventNode))
+				return $eventNode;
+		}
+	}
+	protected static function setNode($documentID, $node) {
+		phpQuery::$documents[$documentID]->eventsNodes[] = $node;
+		return phpQuery::$documents[$documentID]->eventsNodes[
+			count(phpQuery::$documents[$documentID]->eventsNodes)-1
+		];
+	}
+	protected static function issetGlobal($documentID, $type) {
+		return isset(phpQuery::$documents[$documentID])
+			? in_array($type, phpQuery::$documents[$documentID]->eventsGlobal)
+			: false;
+	}
+}
+
+
+interface ICallbackNamed {
+	function hasName();
+	function getName();
+}
+/**
+ * Callback class introduces currying-like pattern.
+ * 
+ * Example:
+ * function foo($param1, $param2, $param3) {
+ *   var_dump($param1, $param2, $param3);
+ * }
+ * $fooCurried = new Callback('foo', 
+ *   'param1 is now statically set', 
+ *   new CallbackParam, new CallbackParam
+ * );
+ * phpQuery::callbackRun($fooCurried,
+ * 	array('param2 value', 'param3 value'
+ * );
+ * 
+ * Callback class is supported in all phpQuery methods which accepts callbacks. 
+ *
+ * @link http://code.google.com/p/phpquery/wiki/Callbacks#Param_Structures
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * 
+ * @TODO??? return fake forwarding function created via create_function
+ * @TODO honor paramStructure
+ */
+class Callback
+	implements ICallbackNamed {
+	public $callback = null;
+	public $params = null;
+	protected $name;
+	public function __construct($callback, $param1 = null, $param2 = null, 
+			$param3 = null) {
+		$params = func_get_args();
+		$params = array_slice($params, 1);
+		if ($callback instanceof Callback) {
+			// TODO implement recurention
+		} else {
+			$this->callback = $callback;
+			$this->params = $params;
+		}
+	}
+	public function getName() {
+		return 'Callback: '.$this->name;
+	}
+	public function hasName() {
+		return isset($this->name) && $this->name;
+	}
+	public function setName($name) {
+		$this->name = $name;
+		return $this;
+	}
+	// TODO test me
+//	public function addParams() {
+//		$params = func_get_args();
+//		return new Callback($this->callback, $this->params+$params);
+//	}
+}
+/**
+ * Shorthand for new Callback(create_function(...), ...);
+ * 
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ */
+class CallbackBody extends Callback {
+	public function __construct($paramList, $code, $param1 = null, $param2 = null, 
+			$param3 = null) {
+		$params = func_get_args();
+		$params = array_slice($params, 2);
+		$this->callback = create_function($paramList, $code);
+		$this->params = $params;
+	}
+}
+/**
+ * Callback type which on execution returns reference passed during creation.
+ * 
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ */
+class CallbackReturnReference extends Callback
+	implements ICallbackNamed {
+	protected $reference;
+	public function __construct(&$reference, $name = null){
+		$this->reference =& $reference;
+		$this->callback = array($this, 'callback');
+	}
+	public function callback() {
+		return $this->reference;
+	}
+	public function getName() {
+		return 'Callback: '.$this->name;
+	}
+	public function hasName() {
+		return isset($this->name) && $this->name;
+	}
+}
+/**
+ * Callback type which on execution returns value passed during creation.
+ * 
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ */
+class CallbackReturnValue extends Callback
+	implements ICallbackNamed {
+	protected $value;
+	protected $name;
+	public function __construct($value, $name = null){
+		$this->value =& $value;
+		$this->name = $name;
+		$this->callback = array($this, 'callback');
+	}
+	public function callback() {
+		return $this->value;
+	}
+	public function __toString() {
+		return $this->getName();
+	}
+	public function getName() {
+		return 'Callback: '.$this->name;
+	}
+	public function hasName() {
+		return isset($this->name) && $this->name;
+	}
+}
+/**
+ * CallbackParameterToReference can be used when we don't really want a callback,
+ * only parameter passed to it. CallbackParameterToReference takes first 
+ * parameter's value and passes it to reference.
+ *
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ */
+class CallbackParameterToReference extends Callback {
+	/**
+	 * @param $reference
+	 * @TODO implement $paramIndex; 
+	 * param index choose which callback param will be passed to reference
+	 */
+	public function __construct(&$reference){
+		$this->callback =& $reference;
+	}
+}
+//class CallbackReference extends Callback {
+//	/**
+//	 *
+//	 * @param $reference
+//	 * @param $paramIndex
+//	 * @todo implement $paramIndex; param index choose which callback param will be passed to reference
+//	 */
+//	public function __construct(&$reference, $name = null){
+//		$this->callback =& $reference;
+//	}
+//}
+class CallbackParam {}
+
+/**
+ * Class representing phpQuery objects.
+ *
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ * @method phpQueryObject clone() clone()
+ * @method phpQueryObject empty() empty()
+ * @method phpQueryObject next() next($selector = null)
+ * @method phpQueryObject prev() prev($selector = null)
+ * @property Int $length
+ */
+class phpQueryObject
+	implements Iterator, Countable, ArrayAccess {
+	public $documentID = null;
+	/**
+	 * DOMDocument class.
+	 *
+	 * @var DOMDocument
+	 */
+	public $document = null;
+	public $charset = null;
+	/**
+	 *
+	 * @var DOMDocumentWrapper
+	 */
+	public $documentWrapper = null;
+	/**
+	 * XPath interface.
+	 *
+	 * @var DOMXPath
+	 */
+	public $xpath = null;
+	/**
+	 * Stack of selected elements.
+	 * @TODO refactor to ->nodes
+	 * @var array
+	 */
+	public $elements = array();
+	/**
+	 * @access private
+	 */
+	protected $elementsBackup = array();
+	/**
+	 * @access private
+	 */
+	protected $previous = null;
+	/**
+	 * @access private
+	 * @TODO deprecate
+	 */
+	protected $root = array();
+	/**
+	 * Indicated if doument is just a fragment (no <html> tag).
+	 *
+	 * Every document is realy a full document, so even documentFragments can
+	 * be queried against <html>, but getDocument(id)->htmlOuter() will return
+	 * only contents of <body>.
+	 *
+	 * @var bool
+	 */
+	public $documentFragment = true;
+	/**
+	 * Iterator interface helper
+	 * @access private
+	 */
+	protected $elementsInterator = array();
+	/**
+	 * Iterator interface helper
+	 * @access private
+	 */
+	protected $valid = false;
+	/**
+	 * Iterator interface helper
+	 * @access private
+	 */
+	protected $current = null;
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function __construct($documentID) {
+//		if ($documentID instanceof self)
+//			var_dump($documentID->getDocumentID());
+		$id = $documentID instanceof self
+			? $documentID->getDocumentID()
+			: $documentID;
+//		var_dump($id);
+		if (! isset(phpQuery::$documents[$id] )) {
+//			var_dump(phpQuery::$documents);
+			throw new Exception("Document with ID '{$id}' isn't loaded. Use phpQuery::newDocument(\$html) or phpQuery::newDocumentFile(\$file) first.");
+		}
+		$this->documentID = $id;
+		$this->documentWrapper =& phpQuery::$documents[$id];
+		$this->document =& $this->documentWrapper->document;
+		$this->xpath =& $this->documentWrapper->xpath;
+		$this->charset =& $this->documentWrapper->charset;
+		$this->documentFragment =& $this->documentWrapper->isDocumentFragment;
+		// TODO check $this->DOM->documentElement;
+//		$this->root = $this->document->documentElement;
+		$this->root =& $this->documentWrapper->root;
+//		$this->toRoot();
+		$this->elements = array($this->root);
+	}
+	/**
+	 *
+	 * @access private
+	 * @param $attr
+	 * @return unknown_type
+	 */
+	public function __get($attr) {
+		switch($attr) {
+			// FIXME doesnt work at all ?
+			case 'length':
+				return $this->size();
+			break;
+			default:
+				return $this->$attr;
+		}
+	}
+	/**
+	 * Saves actual object to $var by reference.
+	 * Useful when need to break chain.
+	 * @param phpQueryObject $var
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function toReference(&$var) {
+		return $var = $this;
+	}
+	public function documentFragment($state = null) {
+		if ($state) {
+			phpQuery::$documents[$this->getDocumentID()]['documentFragment'] = $state;
+			return $this;
+		}
+		return $this->documentFragment;
+	}
+	/**
+   * @access private
+   * @TODO documentWrapper
+	 */
+	protected function isRoot( $node) {
+//		return $node instanceof DOMDOCUMENT || $node->tagName == 'html';
+		return $node instanceof DOMDOCUMENT
+			|| ($node instanceof DOMELEMENT && $node->tagName == 'html')
+			|| $this->root->isSameNode($node);
+	}
+	/**
+   * @access private
+	 */
+	protected function stackIsRoot() {
+		return $this->size() == 1 && $this->isRoot($this->elements[0]);
+	}
+	/**
+	 * Enter description here...
+	 * NON JQUERY METHOD
+	 *
+	 * Watch out, it doesn't creates new instance, can be reverted with end().
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function toRoot() {
+		$this->elements = array($this->root);
+		return $this;
+//		return $this->newInstance(array($this->root));
+	}
+	/**
+	 * Saves object's DocumentID to $var by reference.
+	 * <code>
+	 * $myDocumentId;
+	 * phpQuery::newDocument('<div/>')
+	 *     ->getDocumentIDRef($myDocumentId)
+	 *     ->find('div')->...
+	 * </code>
+	 *
+	 * @param unknown_type $domId
+	 * @see phpQuery::newDocument
+	 * @see phpQuery::newDocumentFile
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function getDocumentIDRef(&$documentID) {
+		$documentID = $this->getDocumentID();
+		return $this;
+	}
+	/**
+	 * Returns object with stack set to document root.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function getDocument() {
+		return phpQuery::getDocument($this->getDocumentID());
+	}
+	/**
+	 *
+	 * @return DOMDocument
+	 */
+	public function getDOMDocument() {
+		return $this->document;
+	}
+	/**
+	 * Get object's Document ID.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function getDocumentID() {
+		return $this->documentID;
+	}
+	/**
+	 * Unloads whole document from memory.
+	 * CAUTION! None further operations will be possible on this document.
+	 * All objects refering to it will be useless.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function unloadDocument() {
+		phpQuery::unloadDocuments($this->getDocumentID());
+	}
+	public function isHTML() {
+		return $this->documentWrapper->isHTML;
+	}
+	public function isXHTML() {
+		return $this->documentWrapper->isXHTML;
+	}
+	public function isXML() {
+		return $this->documentWrapper->isXML;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @link http://docs.jquery.com/Ajax/serialize
+	 * @return string
+	 */
+	public function serialize() {
+		return phpQuery::param($this->serializeArray());
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @link http://docs.jquery.com/Ajax/serializeArray
+	 * @return array
+	 */
+	public function serializeArray($submit = null) {
+		$source = $this->filter('form, input, select, textarea')
+			->find('input, select, textarea')
+			->andSelf()
+			->not('form');
+		$return = array();
+//		$source->dumpDie();
+		foreach($source as $input) {
+			$input = phpQuery::pq($input);
+			if ($input->is('[disabled]'))
+				continue;
+			if (!$input->is('[name]'))
+				continue;
+			if ($input->is('[type=checkbox]') && !$input->is('[checked]'))
+				continue;
+			// jquery diff
+			if ($submit && $input->is('[type=submit]')) {
+				if ($submit instanceof DOMELEMENT && ! $input->elements[0]->isSameNode($submit))
+					continue;
+				else if (is_string($submit) && $input->attr('name') != $submit)
+					continue;
+			}
+			$return[] = array(
+				'name' => $input->attr('name'),
+				'value' => $input->val(),
+			);
+		}
+		return $return;
+	}
+	/**
+	 * @access private
+	 */
+	protected function debug($in) {
+		if (! phpQuery::$debug )
+			return;
+		print('<pre>');
+		print_r($in);
+		// file debug
+//		file_put_contents(dirname(__FILE__).'/phpQuery.log', print_r($in, true)."\n", FILE_APPEND);
+		// quite handy debug trace
+//		if ( is_array($in))
+//			print_r(array_slice(debug_backtrace(), 3));
+		print("</pre>\n");
+	}
+	/**
+	 * @access private
+	 */
+	protected function isRegexp($pattern) {
+		return in_array(
+			$pattern[ mb_strlen($pattern)-1 ],
+			array('^','*','$')
+		);
+	}
+	/**
+	 * Determines if $char is really a char.
+	 *
+	 * @param string $char
+	 * @return bool
+	 * @todo rewrite me to charcode range ! ;)
+	 * @access private
+	 */
+	protected function isChar($char) {
+		return extension_loaded('mbstring') && phpQuery::$mbstringSupport
+			? mb_eregi('\w', $char)
+			: preg_match('@\w@', $char);
+	}
+	/**
+	 * @access private
+	 */
+	protected function parseSelector($query) {
+		// clean spaces
+		// TODO include this inside parsing ?
+		$query = trim(
+			preg_replace('@\s+@', ' ',
+				preg_replace('@\s*(>|\\+|~)\s*@', '\\1', $query)
+			)
+		);
+		$queries = array(array());
+		if (! $query)
+			return $queries;
+		$return =& $queries[0];
+		$specialChars = array('>',' ');
+//		$specialCharsMapping = array('/' => '>');
+		$specialCharsMapping = array();
+		$strlen = mb_strlen($query);
+		$classChars = array('.', '-');
+		$pseudoChars = array('-');
+		$tagChars = array('*', '|', '-');
+		// split multibyte string
+		// http://code.google.com/p/phpquery/issues/detail?id=76
+		$_query = array();
+		for ($i=0; $i<$strlen; $i++)
+			$_query[] = mb_substr($query, $i, 1);
+		$query = $_query;
+		// it works, but i dont like it...
+		$i = 0;
+		while( $i < $strlen) {
+			$c = $query[$i];
+			$tmp = '';
+			// TAG
+			if ($this->isChar($c) || in_array($c, $tagChars)) {
+				while(isset($query[$i])
+					&& ($this->isChar($query[$i]) || in_array($query[$i], $tagChars))) {
+					$tmp .= $query[$i];
+					$i++;
+				}
+				$return[] = $tmp;
+			// IDs
+			} else if ( $c == '#') {
+				$i++;
+				while( isset($query[$i]) && ($this->isChar($query[$i]) || $query[$i] == '-')) {
+					$tmp .= $query[$i];
+					$i++;
+				}
+				$return[] = '#'.$tmp;
+			// SPECIAL CHARS
+			} else if (in_array($c, $specialChars)) {
+				$return[] = $c;
+				$i++;
+			// MAPPED SPECIAL MULTICHARS
+//			} else if ( $c.$query[$i+1] == '//') {
+//				$return[] = ' ';
+//				$i = $i+2;
+			// MAPPED SPECIAL CHARS
+			} else if ( isset($specialCharsMapping[$c])) {
+				$return[] = $specialCharsMapping[$c];
+				$i++;
+			// COMMA
+			} else if ( $c == ',') {
+				$queries[] = array();
+				$return =& $queries[ count($queries)-1 ];
+				$i++;
+				while( isset($query[$i]) && $query[$i] == ' ')
+					$i++;
+			// CLASSES
+			} else if ($c == '.') {
+				while( isset($query[$i]) && ($this->isChar($query[$i]) || in_array($query[$i], $classChars))) {
+					$tmp .= $query[$i];
+					$i++;
+				}
+				$return[] = $tmp;
+			// ~ General Sibling Selector
+			} else if ($c == '~') {
+				$spaceAllowed = true;
+				$tmp .= $query[$i++];
+				while( isset($query[$i])
+					&& ($this->isChar($query[$i])
+						|| in_array($query[$i], $classChars)
+						|| $query[$i] == '*'
+						|| ($query[$i] == ' ' && $spaceAllowed)
+					)) {
+					if ($query[$i] != ' ')
+						$spaceAllowed = false;
+					$tmp .= $query[$i];
+					$i++;
+				}
+				$return[] = $tmp;
+			// + Adjacent sibling selectors
+			} else if ($c == '+') {
+				$spaceAllowed = true;
+				$tmp .= $query[$i++];
+				while( isset($query[$i])
+					&& ($this->isChar($query[$i])
+						|| in_array($query[$i], $classChars)
+						|| $query[$i] == '*'
+						|| ($spaceAllowed && $query[$i] == ' ')
+					)) {
+					if ($query[$i] != ' ')
+						$spaceAllowed = false;
+					$tmp .= $query[$i];
+					$i++;
+				}
+				$return[] = $tmp;
+			// ATTRS
+			} else if ($c == '[') {
+				$stack = 1;
+				$tmp .= $c;
+				while( isset($query[++$i])) {
+					$tmp .= $query[$i];
+					if ( $query[$i] == '[') {
+						$stack++;
+					} else if ( $query[$i] == ']') {
+						$stack--;
+						if (! $stack )
+							break;
+					}
+				}
+				$return[] = $tmp;
+				$i++;
+			// PSEUDO CLASSES
+			} else if ($c == ':') {
+				$stack = 1;
+				$tmp .= $query[$i++];
+				while( isset($query[$i]) && ($this->isChar($query[$i]) || in_array($query[$i], $pseudoChars))) {
+					$tmp .= $query[$i];
+					$i++;
+				}
+				// with arguments ?
+				if ( isset($query[$i]) && $query[$i] == '(') {
+					$tmp .= $query[$i];
+					$stack = 1;
+					while( isset($query[++$i])) {
+						$tmp .= $query[$i];
+						if ( $query[$i] == '(') {
+							$stack++;
+						} else if ( $query[$i] == ')') {
+							$stack--;
+							if (! $stack )
+								break;
+						}
+					}
+					$return[] = $tmp;
+					$i++;
+				} else {
+					$return[] = $tmp;
+				}
+			} else {
+				$i++;
+			}
+		}
+		foreach($queries as $k => $q) {
+			if (isset($q[0])) {
+				if (isset($q[0][0]) && $q[0][0] == ':')
+					array_unshift($queries[$k], '*');
+				if ($q[0] != '>')
+					array_unshift($queries[$k], ' ');
+			}
+		}
+		return $queries;
+	}
+	/**
+	 * Return matched DOM nodes.
+	 *
+	 * @param int $index
+	 * @return array|DOMElement Single DOMElement or array of DOMElement.
+	 */
+	public function get($index = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		$return = isset($index)
+			? (isset($this->elements[$index]) ? $this->elements[$index] : null)
+			: $this->elements;
+		// pass thou callbacks
+		$args = func_get_args();
+		$args = array_slice($args, 1);
+		foreach($args as $callback) {
+			if (is_array($return))
+				foreach($return as $k => $v)
+					$return[$k] = phpQuery::callbackRun($callback, array($v));
+			else
+				$return = phpQuery::callbackRun($callback, array($return));
+		}
+		return $return;
+	}
+	/**
+	 * Return matched DOM nodes.
+	 * jQuery difference.
+	 *
+	 * @param int $index
+	 * @return array|string Returns string if $index != null
+	 * @todo implement callbacks
+	 * @todo return only arrays ?
+	 * @todo maybe other name...
+	 */
+	public function getString($index = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		if ($index)
+			$return = $this->eq($index)->text();
+		else {
+			$return = array();
+			for($i = 0; $i < $this->size(); $i++) {
+				$return[] = $this->eq($i)->text();
+			}
+		}
+		// pass thou callbacks
+		$args = func_get_args();
+		$args = array_slice($args, 1);
+		foreach($args as $callback) {
+			$return = phpQuery::callbackRun($callback, array($return));
+		}
+		return $return;
+	}
+	/**
+	 * Return matched DOM nodes.
+	 * jQuery difference.
+	 *
+	 * @param int $index
+	 * @return array|string Returns string if $index != null
+	 * @todo implement callbacks
+	 * @todo return only arrays ?
+	 * @todo maybe other name...
+	 */
+	public function getStrings($index = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		if ($index)
+			$return = $this->eq($index)->text();
+		else {
+			$return = array();
+			for($i = 0; $i < $this->size(); $i++) {
+				$return[] = $this->eq($i)->text();
+			}
+			// pass thou callbacks
+			$args = func_get_args();
+			$args = array_slice($args, 1);
+		}
+		foreach($args as $callback) {
+			if (is_array($return))
+				foreach($return as $k => $v)
+					$return[$k] = phpQuery::callbackRun($callback, array($v));
+			else
+				$return = phpQuery::callbackRun($callback, array($return));
+		}
+		return $return;
+	}
+	/**
+	 * Returns new instance of actual class.
+	 *
+	 * @param array $newStack Optional. Will replace old stack with new and move old one to history.c
+	 */
+	public function newInstance($newStack = null) {
+		$class = get_class($this);
+		// support inheritance by passing old object to overloaded constructor
+		$new = $class != 'phpQuery'
+			? new $class($this, $this->getDocumentID())
+			: new phpQueryObject($this->getDocumentID());
+		$new->previous = $this;
+		if (is_null($newStack)) {
+			$new->elements = $this->elements;
+			if ($this->elementsBackup)
+				$this->elements = $this->elementsBackup;
+		} else if (is_string($newStack)) {
+			$new->elements = phpQuery::pq($newStack, $this->getDocumentID())->stack();
+		} else {
+			$new->elements = $newStack;
+		}
+		return $new;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * In the future, when PHP will support XLS 2.0, then we would do that this way:
+	 * contains(tokenize(@class, '\s'), "something")
+	 * @param unknown_type $class
+	 * @param unknown_type $node
+	 * @return boolean
+	 * @access private
+	 */
+	protected function matchClasses($class, $node) {
+		// multi-class
+		if ( mb_strpos($class, '.', 1)) {
+			$classes = explode('.', substr($class, 1));
+			$classesCount = count( $classes );
+			$nodeClasses = explode(' ', $node->getAttribute('class') );
+			$nodeClassesCount = count( $nodeClasses );
+			if ( $classesCount > $nodeClassesCount )
+				return false;
+			$diff = count(
+				array_diff(
+					$classes,
+					$nodeClasses
+				)
+			);
+			if (! $diff )
+				return true;
+		// single-class
+		} else {
+			return in_array(
+				// strip leading dot from class name
+				substr($class, 1),
+				// get classes for element as array
+				explode(' ', $node->getAttribute('class') )
+			);
+		}
+	}
+	/**
+	 * @access private
+	 */
+	protected function runQuery($XQuery, $selector = null, $compare = null) {
+		if ($compare && ! method_exists($this, $compare))
+			return false;
+		$stack = array();
+		if (! $this->elements)
+			$this->debug('Stack empty, skipping...');
+//		var_dump($this->elements[0]->nodeType);
+		// element, document
+		foreach($this->stack(array(1, 9, 13)) as $k => $stackNode) {
+			$detachAfter = false;
+			// to work on detached nodes we need temporary place them somewhere
+			// thats because context xpath queries sucks ;]
+			$testNode = $stackNode;
+			while ($testNode) {
+				if (! $testNode->parentNode && ! $this->isRoot($testNode)) {
+					$this->root->appendChild($testNode);
+					$detachAfter = $testNode;
+					break;
+				}
+				$testNode = isset($testNode->parentNode)
+					? $testNode->parentNode
+					: null;
+			}
+			// XXX tmp ?
+			$xpath = $this->documentWrapper->isXHTML
+				? $this->getNodeXpath($stackNode, 'html')
+				: $this->getNodeXpath($stackNode);
+			// FIXME pseudoclasses-only query, support XML
+			$query = $XQuery == '//' && $xpath == '/html[1]'
+				? '//*'
+				: $xpath.$XQuery;
+			$this->debug("XPATH: {$query}");
+			// run query, get elements
+			$nodes = $this->xpath->query($query);
+			$this->debug("QUERY FETCHED");
+			if (! $nodes->length )
+				$this->debug('Nothing found');
+			$debug = array();
+			foreach($nodes as $node) {
+				$matched = false;
+				if ( $compare) {
+					phpQuery::$debug ?
+						$this->debug("Found: ".$this->whois( $node ).", comparing with {$compare}()")
+						: null;
+					$phpQueryDebug = phpQuery::$debug;
+					phpQuery::$debug = false;
+					// TODO ??? use phpQuery::callbackRun()
+					if (call_user_func_array(array($this, $compare), array($selector, $node)))
+						$matched = true;
+					phpQuery::$debug = $phpQueryDebug;
+				} else {
+					$matched = true;
+				}
+				if ( $matched) {
+					if (phpQuery::$debug)
+						$debug[] = $this->whois( $node );
+					$stack[] = $node;
+				}
+			}
+			if (phpQuery::$debug) {
+				$this->debug("Matched ".count($debug).": ".implode(', ', $debug));
+			}
+			if ($detachAfter)
+				$this->root->removeChild($detachAfter);
+		}
+		$this->elements = $stack;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function find($selectors, $context = null, $noHistory = false) {
+		if (!$noHistory)
+			// backup last stack /for end()/
+			$this->elementsBackup = $this->elements;
+		// allow to define context
+		// TODO combine code below with phpQuery::pq() context guessing code
+		//   as generic function
+		if ($context) {
+			if (! is_array($context) && $context instanceof DOMELEMENT)
+				$this->elements = array($context);
+			else if (is_array($context)) {
+				$this->elements = array();
+				foreach ($context as $c)
+					if ($c instanceof DOMELEMENT)
+						$this->elements[] = $c;
+			} else if ( $context instanceof self )
+				$this->elements = $context->elements;
+		}
+		$queries = $this->parseSelector($selectors);
+		$this->debug(array('FIND', $selectors, $queries));
+		$XQuery = '';
+		// remember stack state because of multi-queries
+		$oldStack = $this->elements;
+		// here we will be keeping found elements
+		$stack = array();
+		foreach($queries as $selector) {
+			$this->elements = $oldStack;
+			$delimiterBefore = false;
+			foreach($selector as $s) {
+				// TAG
+				$isTag = extension_loaded('mbstring') && phpQuery::$mbstringSupport
+					? mb_ereg_match('^[\w|\||-]+$', $s) || $s == '*'
+					: preg_match('@^[\w|\||-]+$@', $s) || $s == '*';
+				if ($isTag) {
+					if ($this->isXML()) {
+						// namespace support
+						if (mb_strpos($s, '|') !== false) {
+							$ns = $tag = null;
+							list($ns, $tag) = explode('|', $s);
+							$XQuery .= "$ns:$tag";
+						} else if ($s == '*') {
+							$XQuery .= "*";
+						} else {
+							$XQuery .= "*[local-name()='$s']";
+						}
+					} else {
+						$XQuery .= $s;
+					}
+				// ID
+				} else if ($s[0] == '#') {
+					if ($delimiterBefore)
+						$XQuery .= '*';
+					$XQuery .= "[@id='".substr($s, 1)."']";
+				// ATTRIBUTES
+				} else if ($s[0] == '[') {
+					if ($delimiterBefore)
+						$XQuery .= '*';
+					// strip side brackets
+					$attr = trim($s, '][');
+					$execute = false;
+					// attr with specifed value
+					if (mb_strpos($s, '=')) {
+						$value = null;
+						list($attr, $value) = explode('=', $attr);
+						$value = trim($value, "'\"");
+						if ($this->isRegexp($attr)) {
+							// cut regexp character
+							$attr = substr($attr, 0, -1);
+							$execute = true;
+							$XQuery .= "[@{$attr}]";
+						} else {
+							$XQuery .= "[@{$attr}='{$value}']";
+						}
+					// attr without specified value
+					} else {
+						$XQuery .= "[@{$attr}]";
+					}
+					if ($execute) {
+						$this->runQuery($XQuery, $s, 'is');
+						$XQuery = '';
+						if (! $this->length())
+							break;
+					}
+				// CLASSES
+				} else if ($s[0] == '.') {
+					// TODO use return $this->find("./self::*[contains(concat(\" \",@class,\" \"), \" $class \")]");
+					// thx wizDom ;)
+					if ($delimiterBefore)
+						$XQuery .= '*';
+					$XQuery .= '[@class]';
+					$this->runQuery($XQuery, $s, 'matchClasses');
+					$XQuery = '';
+					if (! $this->length() )
+						break;
+				// ~ General Sibling Selector
+				} else if ($s[0] == '~') {
+					$this->runQuery($XQuery);
+					$XQuery = '';
+					$this->elements = $this
+						->siblings(
+							substr($s, 1)
+						)->elements;
+					if (! $this->length() )
+						break;
+				// + Adjacent sibling selectors
+				} else if ($s[0] == '+') {
+					// TODO /following-sibling::
+					$this->runQuery($XQuery);
+					$XQuery = '';
+					$subSelector = substr($s, 1);
+					$subElements = $this->elements;
+					$this->elements = array();
+					foreach($subElements as $node) {
+						// search first DOMElement sibling
+						$test = $node->nextSibling;
+						while($test && ! ($test instanceof DOMELEMENT))
+							$test = $test->nextSibling;
+						if ($test && $this->is($subSelector, $test))
+							$this->elements[] = $test;
+					}
+					if (! $this->length() )
+						break;
+				// PSEUDO CLASSES
+				} else if ($s[0] == ':') {
+					// TODO optimization for :first :last
+					if ($XQuery) {
+						$this->runQuery($XQuery);
+						$XQuery = '';
+					}
+					if (! $this->length())
+						break;
+					$this->pseudoClasses($s);
+					if (! $this->length())
+						break;
+				// DIRECT DESCENDANDS
+				} else if ($s == '>') {
+					$XQuery .= '/';
+					$delimiterBefore = 2;
+				// ALL DESCENDANDS
+				} else if ($s == ' ') {
+					$XQuery .= '//';
+					$delimiterBefore = 2;
+				// ERRORS
+				} else {
+					phpQuery::debug("Unrecognized token '$s'");
+				}
+				$delimiterBefore = $delimiterBefore === 2;
+			}
+			// run query if any
+			if ($XQuery && $XQuery != '//') {
+				$this->runQuery($XQuery);
+				$XQuery = '';
+			}
+			foreach($this->elements as $node)
+				if (! $this->elementsContainsNode($node, $stack))
+					$stack[] = $node;
+		}
+		$this->elements = $stack;
+		return $this->newInstance();
+	}
+	/**
+	 * @todo create API for classes with pseudoselectors
+	 * @access private
+	 */
+	protected function pseudoClasses($class) {
+		// TODO clean args parsing ?
+		$class = ltrim($class, ':');
+		$haveArgs = mb_strpos($class, '(');
+		if ($haveArgs !== false) {
+			$args = substr($class, $haveArgs+1, -1);
+			$class = substr($class, 0, $haveArgs);
+		}
+		switch($class) {
+			case 'even':
+			case 'odd':
+				$stack = array();
+				foreach($this->elements as $i => $node) {
+					if ($class == 'even' && ($i%2) == 0)
+						$stack[] = $node;
+					else if ( $class == 'odd' && $i % 2 )
+						$stack[] = $node;
+				}
+				$this->elements = $stack;
+				break;
+			case 'eq':
+				$k = intval($args);
+				$this->elements = isset( $this->elements[$k] )
+					? array( $this->elements[$k] )
+					: array();
+				break;
+			case 'gt':
+				$this->elements = array_slice($this->elements, $args+1);
+				break;
+			case 'lt':
+				$this->elements = array_slice($this->elements, 0, $args+1);
+				break;
+			case 'first':
+				if (isset($this->elements[0]))
+					$this->elements = array($this->elements[0]);
+				break;
+			case 'last':
+				if ($this->elements)
+					$this->elements = array($this->elements[count($this->elements)-1]);
+				break;
+			/*case 'parent':
+				$stack = array();
+				foreach($this->elements as $node) {
+					if ( $node->childNodes->length )
+						$stack[] = $node;
+				}
+				$this->elements = $stack;
+				break;*/
+			case 'contains':
+				$text = trim($args, "\"'");
+				$stack = array();
+				foreach($this->elements as $node) {
+					if (mb_stripos($node->textContent, $text) === false)
+						continue;
+					$stack[] = $node;
+				}
+				$this->elements = $stack;
+				break;
+			case 'not':
+				$selector = self::unQuote($args);
+				$this->elements = $this->not($selector)->stack();
+				break;
+			case 'slice':
+				// TODO jQuery difference ?
+				$args = explode(',',
+					str_replace(', ', ',', trim($args, "\"'"))
+				);
+				$start = $args[0];
+				$end = isset($args[1])
+					? $args[1]
+					: null;
+				if ($end > 0)
+					$end = $end-$start;
+				$this->elements = array_slice($this->elements, $start, $end);
+				break;
+			case 'has':
+				$selector = trim($args, "\"'");
+				$stack = array();
+				foreach($this->stack(1) as $el) {
+					if ($this->find($selector, $el, true)->length)
+						$stack[] = $el;
+				}
+				$this->elements = $stack;
+				break;
+			case 'submit':
+			case 'reset':
+				$this->elements = phpQuery::merge(
+					$this->map(array($this, 'is'),
+						"input[type=$class]", new CallbackParam()
+					),
+					$this->map(array($this, 'is'),
+						"button[type=$class]", new CallbackParam()
+					)
+				);
+			break;
+//				$stack = array();
+//				foreach($this->elements as $node)
+//					if ($node->is('input[type=submit]') || $node->is('button[type=submit]'))
+//						$stack[] = $el;
+//				$this->elements = $stack;
+			case 'input':
+				$this->elements = $this->map(
+					array($this, 'is'),
+					'input', new CallbackParam()
+				)->elements;
+			break;
+			case 'password':
+			case 'checkbox':
+			case 'radio':
+			case 'hidden':
+			case 'image':
+			case 'file':
+				$this->elements = $this->map(
+					array($this, 'is'),
+					"input[type=$class]", new CallbackParam()
+				)->elements;
+			break;
+			case 'parent':
+				$this->elements = $this->map(
+					create_function('$node', '
+						return $node instanceof DOMELEMENT && $node->childNodes->length
+							? $node : null;')
+				)->elements;
+			break;
+			case 'empty':
+				$this->elements = $this->map(
+					create_function('$node', '
+						return $node instanceof DOMELEMENT && $node->childNodes->length
+							? null : $node;')
+				)->elements;
+			break;
+			case 'disabled':
+			case 'selected':
+			case 'checked':
+				$this->elements = $this->map(
+					array($this, 'is'),
+					"[$class]", new CallbackParam()
+				)->elements;
+			break;
+			case 'enabled':
+				$this->elements = $this->map(
+					create_function('$node', '
+						return pq($node)->not(":disabled") ? $node : null;')
+				)->elements;
+			break;
+			case 'header':
+				$this->elements = $this->map(
+					create_function('$node',
+						'$isHeader = isset($node->tagName) && in_array($node->tagName, array(
+							"h1", "h2", "h3", "h4", "h5", "h6", "h7"
+						));
+						return $isHeader
+							? $node
+							: null;')
+				)->elements;
+//				$this->elements = $this->map(
+//					create_function('$node', '$node = pq($node);
+//						return $node->is("h1")
+//							|| $node->is("h2")
+//							|| $node->is("h3")
+//							|| $node->is("h4")
+//							|| $node->is("h5")
+//							|| $node->is("h6")
+//							|| $node->is("h7")
+//							? $node
+//							: null;')
+//				)->elements;
+			break;
+			case 'only-child':
+				$this->elements = $this->map(
+					create_function('$node',
+						'return pq($node)->siblings()->size() == 0 ? $node : null;')
+				)->elements;
+			break;
+			case 'first-child':
+				$this->elements = $this->map(
+					create_function('$node', 'return pq($node)->prevAll()->size() == 0 ? $node : null;')
+				)->elements;
+			break;
+			case 'last-child':
+				$this->elements = $this->map(
+					create_function('$node', 'return pq($node)->nextAll()->size() == 0 ? $node : null;')
+				)->elements;
+			break;
+			case 'nth-child':
+				$param = trim($args, "\"'");
+				if (! $param)
+					break;
+					// nth-child(n+b) to nth-child(1n+b)
+				if ($param{0} == 'n')
+					$param = '1'.$param;
+				// :nth-child(index/even/odd/equation)
+				if ($param == 'even' || $param == 'odd')
+					$mapped = $this->map(
+						create_function('$node, $param',
+							'$index = pq($node)->prevAll()->size()+1;
+							if ($param == "even" && ($index%2) == 0)
+								return $node;
+							else if ($param == "odd" && $index%2 == 1)
+								return $node;
+							else
+								return null;'),
+						new CallbackParam(), $param
+					);
+				else if (mb_strlen($param) > 1 && $param{1} == 'n')
+					// an+b
+					$mapped = $this->map(
+						create_function('$node, $param',
+							'$prevs = pq($node)->prevAll()->size();
+							$index = 1+$prevs;
+							$b = mb_strlen($param) > 3
+								? $param{3}
+								: 0;
+							$a = $param{0};
+							if ($b && $param{2} == "-")
+								$b = -$b;
+							if ($a > 0) {
+								return ($index-$b)%$a == 0
+									? $node
+									: null;
+								phpQuery::debug($a."*".floor($index/$a)."+$b-1 == ".($a*floor($index/$a)+$b-1)." ?= $prevs");
+								return $a*floor($index/$a)+$b-1 == $prevs
+										? $node
+										: null;
+							} else if ($a == 0)
+								return $index == $b
+										? $node
+										: null;
+							else
+								// negative value
+								return $index <= $b
+										? $node
+										: null;
+//							if (! $b)
+//								return $index%$a == 0
+//									? $node
+//									: null;
+//							else
+//								return ($index-$b)%$a == 0
+//									? $node
+//									: null;
+							'),
+						new CallbackParam(), $param
+					);
+				else
+					// index
+					$mapped = $this->map(
+						create_function('$node, $index',
+							'$prevs = pq($node)->prevAll()->size();
+							if ($prevs && $prevs == $index-1)
+								return $node;
+							else if (! $prevs && $index == 1)
+								return $node;
+							else
+								return null;'),
+						new CallbackParam(), $param
+					);
+				$this->elements = $mapped->elements;
+			break;
+			default:
+				$this->debug("Unknown pseudoclass '{$class}', skipping...");
+		}
+	}
+	/**
+	 * @access private
+	 */
+	protected function __pseudoClassParam($paramsString) {
+		// TODO;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function is($selector, $nodes = null) {
+		phpQuery::debug(array("Is:", $selector));
+		if (! $selector)
+			return false;
+		$oldStack = $this->elements;
+		$returnArray = false;
+		if ($nodes && is_array($nodes)) {
+			$this->elements = $nodes;
+		} else if ($nodes)
+			$this->elements = array($nodes);
+		$this->filter($selector, true);
+		$stack = $this->elements;
+		$this->elements = $oldStack;
+		if ($nodes)
+			return $stack ? $stack : null;
+		return (bool)count($stack);
+	}
+	/**
+	 * Enter description here...
+	 * jQuery difference.
+	 *
+	 * Callback:
+	 * - $index int
+	 * - $node DOMNode
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @link http://docs.jquery.com/Traversing/filter
+	 */
+	public function filterCallback($callback, $_skipHistory = false) {
+		if (! $_skipHistory) {
+			$this->elementsBackup = $this->elements;
+			$this->debug("Filtering by callback");
+		}
+		$newStack = array();
+		foreach($this->elements as $index => $node) {
+			$result = phpQuery::callbackRun($callback, array($index, $node));
+			if (is_null($result) || (! is_null($result) && $result))
+				$newStack[] = $node;
+		}
+		$this->elements = $newStack;
+		return $_skipHistory
+			? $this
+			: $this->newInstance();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @link http://docs.jquery.com/Traversing/filter
+	 */
+	public function filter($selectors, $_skipHistory = false) {
+		if ($selectors instanceof Callback OR $selectors instanceof Closure)
+			return $this->filterCallback($selectors, $_skipHistory);
+		if (! $_skipHistory)
+			$this->elementsBackup = $this->elements;
+		$notSimpleSelector = array(' ', '>', '~', '+', '/');
+		if (! is_array($selectors))
+			$selectors = $this->parseSelector($selectors);
+		if (! $_skipHistory)
+			$this->debug(array("Filtering:", $selectors));
+		$finalStack = array();
+		foreach($selectors as $selector) {
+			$stack = array();
+			if (! $selector)
+				break;
+			// avoid first space or /
+			if (in_array($selector[0], $notSimpleSelector))
+				$selector = array_slice($selector, 1);
+			// PER NODE selector chunks
+			foreach($this->stack() as $node) {
+				$break = false;
+				foreach($selector as $s) {
+					if (!($node instanceof DOMELEMENT)) {
+						// all besides DOMElement
+						if ( $s[0] == '[') {
+							$attr = trim($s, '[]');
+							if ( mb_strpos($attr, '=')) {
+								list( $attr, $val ) = explode('=', $attr);
+								if ($attr == 'nodeType' && $node->nodeType != $val)
+									$break = true;
+							}
+						} else
+							$break = true;
+					} else {
+						// DOMElement only
+						// ID
+						if ( $s[0] == '#') {
+							if ( $node->getAttribute('id') != substr($s, 1) )
+								$break = true;
+						// CLASSES
+						} else if ( $s[0] == '.') {
+							if (! $this->matchClasses( $s, $node ) )
+								$break = true;
+						// ATTRS
+						} else if ( $s[0] == '[') {
+							// strip side brackets
+							$attr = trim($s, '[]');
+							if (mb_strpos($attr, '=')) {
+								list($attr, $val) = explode('=', $attr);
+								$val = self::unQuote($val);
+								if ($attr == 'nodeType') {
+									if ($val != $node->nodeType)
+										$break = true;
+								} else if ($this->isRegexp($attr)) {
+									$val = extension_loaded('mbstring') && phpQuery::$mbstringSupport
+										? quotemeta(trim($val, '"\''))
+										: preg_quote(trim($val, '"\''), '@');
+									// switch last character
+									switch( substr($attr, -1)) {
+										// quotemeta used insted of preg_quote
+										// http://code.google.com/p/phpquery/issues/detail?id=76
+										case '^':
+											$pattern = '^'.$val;
+											break;
+										case '*':
+											$pattern = '.*'.$val.'.*';
+											break;
+										case '$':
+											$pattern = '.*'.$val.'$';
+											break;
+									}
+									// cut last character
+									$attr = substr($attr, 0, -1);
+									$isMatch = extension_loaded('mbstring') && phpQuery::$mbstringSupport
+										? mb_ereg_match($pattern, $node->getAttribute($attr))
+										: preg_match("@{$pattern}@", $node->getAttribute($attr));
+									if (! $isMatch)
+										$break = true;
+								} else if ($node->getAttribute($attr) != $val)
+									$break = true;
+							} else if (! $node->hasAttribute($attr))
+								$break = true;
+						// PSEUDO CLASSES
+						} else if ( $s[0] == ':') {
+							// skip
+						// TAG
+						} else if (trim($s)) {
+							if ($s != '*') {
+								// TODO namespaces
+								if (isset($node->tagName)) {
+									if ($node->tagName != $s)
+										$break = true;
+								} else if ($s == 'html' && ! $this->isRoot($node))
+									$break = true;
+							}
+						// AVOID NON-SIMPLE SELECTORS
+						} else if (in_array($s, $notSimpleSelector)) {
+							$break = true;
+							$this->debug(array('Skipping non simple selector', $selector));
+						}
+					}
+					if ($break)
+						break;
+				}
+				// if element passed all chunks of selector - add it to new stack
+				if (! $break )
+					$stack[] = $node;
+			}
+			$tmpStack = $this->elements;
+			$this->elements = $stack;
+			// PER ALL NODES selector chunks
+			foreach($selector as $s)
+				// PSEUDO CLASSES
+				if ($s[0] == ':')
+					$this->pseudoClasses($s);
+			foreach($this->elements as $node)
+				// XXX it should be merged without duplicates
+				// but jQuery doesnt do that
+				$finalStack[] = $node;
+			$this->elements = $tmpStack;
+		}
+		$this->elements = $finalStack;
+		if ($_skipHistory) {
+			return $this;
+		} else {
+			$this->debug("Stack length after filter(): ".count($finalStack));
+			return $this->newInstance();
+		}
+	}
+	/**
+	 *
+	 * @param $value
+	 * @return unknown_type
+	 * @TODO implement in all methods using passed parameters
+	 */
+	protected static function unQuote($value) {
+		return $value[0] == '\'' || $value[0] == '"'
+			? substr($value, 1, -1)
+			: $value;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @link http://docs.jquery.com/Ajax/load
+	 * @return phpQuery|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo Support $selector
+	 */
+	public function load($url, $data = null, $callback = null) {
+		if ($data && ! is_array($data)) {
+			$callback = $data;
+			$data = null;
+		}
+		if (mb_strpos($url, ' ') !== false) {
+			$matches = null;
+			if (extension_loaded('mbstring') && phpQuery::$mbstringSupport)
+				mb_ereg('^([^ ]+) (.*)$', $url, $matches);
+			else
+				preg_match('^([^ ]+) (.*)$', $url, $matches);
+			$url = $matches[1];
+			$selector = $matches[2];
+			// FIXME this sucks, pass as callback param
+			$this->_loadSelector = $selector;
+		}
+		$ajax = array(
+			'url' => $url,
+			'type' => $data ? 'POST' : 'GET',
+			'data' => $data,
+			'complete' => $callback,
+			'success' => array($this, '__loadSuccess')
+		);
+		phpQuery::ajax($ajax);
+		return $this;
+	}
+	/**
+	 * @access private
+	 * @param $html
+	 * @return unknown_type
+	 */
+	public function __loadSuccess($html) {
+		if ($this->_loadSelector) {
+			$html = phpQuery::newDocument($html)->find($this->_loadSelector);
+			unset($this->_loadSelector);
+		}
+		foreach($this->stack(1) as $node) {
+			phpQuery::pq($node, $this->getDocumentID())
+				->markup($html);
+		}
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQuery|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo
+	 */
+	public function css() {
+		// TODO
+		return $this;
+	}
+	/**
+	 * @todo
+	 *
+	 */
+	public function show(){
+		// TODO
+		return $this;
+	}
+	/**
+	 * @todo
+	 *
+	 */
+	public function hide(){
+		// TODO
+		return $this;
+	}
+	/**
+	 * Trigger a type of event on every matched element.
+	 *
+	 * @param unknown_type $type
+	 * @param unknown_type $data
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @TODO support more than event in $type (space-separated)
+	 */
+	public function trigger($type, $data = array()) {
+		foreach($this->elements as $node)
+			phpQueryEvents::trigger($this->getDocumentID(), $type, $data, $node);
+		return $this;
+	}
+	/**
+	 * This particular method triggers all bound event handlers on an element (for a specific event type) WITHOUT executing the browsers default actions.
+	 *
+	 * @param unknown_type $type
+	 * @param unknown_type $data
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @TODO
+	 */
+	public function triggerHandler($type, $data = array()) {
+		// TODO;
+	}
+	/**
+	 * Binds a handler to one or more events (like click) for each matched element.
+	 * Can also bind custom events.
+	 *
+	 * @param unknown_type $type
+	 * @param unknown_type $data Optional
+	 * @param unknown_type $callback
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @TODO support '!' (exclusive) events
+	 * @TODO support more than event in $type (space-separated)
+	 */
+	public function bind($type, $data, $callback = null) {
+		// TODO check if $data is callable, not using is_callable
+		if (! isset($callback)) {
+			$callback = $data;
+			$data = null;
+		}
+		foreach($this->elements as $node)
+			phpQueryEvents::add($this->getDocumentID(), $node, $type, $data, $callback);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param unknown_type $type
+	 * @param unknown_type $callback
+	 * @return unknown
+	 * @TODO namespace events
+	 * @TODO support more than event in $type (space-separated)
+	 */
+	public function unbind($type = null, $callback = null) {
+		foreach($this->elements as $node)
+			phpQueryEvents::remove($this->getDocumentID(), $node, $type, $callback);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function change($callback = null) {
+		if ($callback)
+			return $this->bind('change', $callback);
+		return $this->trigger('change');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function submit($callback = null) {
+		if ($callback)
+			return $this->bind('submit', $callback);
+		return $this->trigger('submit');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function click($callback = null) {
+		if ($callback)
+			return $this->bind('click', $callback);
+		return $this->trigger('click');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapAllOld($wrapper) {
+		$wrapper = pq($wrapper)->_clone();
+		if (! $wrapper->length() || ! $this->length() )
+			return $this;
+		$wrapper->insertBefore($this->elements[0]);
+		$deepest = $wrapper->elements[0];
+		while($deepest->firstChild && $deepest->firstChild instanceof DOMELEMENT)
+			$deepest = $deepest->firstChild;
+		pq($deepest)->append($this);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * TODO testme...
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapAll($wrapper) {
+		if (! $this->length())
+			return $this;
+		return phpQuery::pq($wrapper, $this->getDocumentID())
+			->clone()
+			->insertBefore($this->get(0))
+			->map(array($this, '___wrapAllCallback'))
+			->append($this);
+	}
+  /**
+   *
+	 * @param $node
+	 * @return unknown_type
+	 * @access private
+   */
+	public function ___wrapAllCallback($node) {
+		$deepest = $node;
+		while($deepest->firstChild && $deepest->firstChild instanceof DOMELEMENT)
+			$deepest = $deepest->firstChild;
+		return $deepest;
+	}
+	/**
+	 * Enter description here...
+	 * NON JQUERY METHOD
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapAllPHP($codeBefore, $codeAfter) {
+		return $this
+			->slice(0, 1)
+				->beforePHP($codeBefore)
+			->end()
+			->slice(-1)
+				->afterPHP($codeAfter)
+			->end();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrap($wrapper) {
+		foreach($this->stack() as $node)
+			phpQuery::pq($node, $this->getDocumentID())->wrapAll($wrapper);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapPHP($codeBefore, $codeAfter) {
+		foreach($this->stack() as $node)
+			phpQuery::pq($node, $this->getDocumentID())->wrapAllPHP($codeBefore, $codeAfter);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapInner($wrapper) {
+		foreach($this->stack() as $node)
+			phpQuery::pq($node, $this->getDocumentID())->contents()->wrapAll($wrapper);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function wrapInnerPHP($codeBefore, $codeAfter) {
+		foreach($this->stack(1) as $node)
+			phpQuery::pq($node, $this->getDocumentID())->contents()
+				->wrapAllPHP($codeBefore, $codeAfter);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @testme Support for text nodes
+	 */
+	public function contents() {
+		$stack = array();
+		foreach($this->stack(1) as $el) {
+			// FIXME (fixed) http://code.google.com/p/phpquery/issues/detail?id=56
+//			if (! isset($el->childNodes))
+//				continue;
+			foreach($el->childNodes as $node) {
+				$stack[] = $node;
+			}
+		}
+		return $this->newInstance($stack);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * jQuery difference.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function contentsUnwrap() {
+		foreach($this->stack(1) as $node) {
+			if (! $node->parentNode )
+				continue;
+			$childNodes = array();
+			// any modification in DOM tree breaks childNodes iteration, so cache them first
+			foreach($node->childNodes as $chNode )
+				$childNodes[] = $chNode;
+			foreach($childNodes as $chNode )
+//				$node->parentNode->appendChild($chNode);
+				$node->parentNode->insertBefore($chNode, $node);
+			$node->parentNode->removeChild($node);
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * jQuery difference.
+	 */
+	public function switchWith($markup) {
+		$markup = pq($markup, $this->getDocumentID());
+		$content = null;
+		foreach($this->stack(1) as $node) {
+			pq($node)
+				->contents()->toReference($content)->end()
+				->replaceWith($markup->clone()->append($content));
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function eq($num) {
+		$oldStack = $this->elements;
+		$this->elementsBackup = $this->elements;
+		$this->elements = array();
+		if ( isset($oldStack[$num]) )
+			$this->elements[] = $oldStack[$num];
+		return $this->newInstance();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function size() {
+		return count($this->elements);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @deprecated Use length as attribute
+	 */
+	public function length() {
+		return $this->size();
+	}
+	public function count() {
+		return $this->size();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo $level
+	 */
+	public function end($level = 1) {
+//		$this->elements = array_pop( $this->history );
+//		return $this;
+//		$this->previous->DOM = $this->DOM;
+//		$this->previous->XPath = $this->XPath;
+		return $this->previous
+			? $this->previous
+			: $this;
+	}
+	/**
+	 * Enter description here...
+	 * Normal use ->clone() .
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @access private
+	 */
+	public function _clone() {
+		$newStack = array();
+		//pr(array('copy... ', $this->whois()));
+		//$this->dumpHistory('copy');
+		$this->elementsBackup = $this->elements;
+		foreach($this->elements as $node) {
+			$newStack[] = $node->cloneNode(true);
+		}
+		$this->elements = $newStack;
+		return $this->newInstance();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function replaceWithPHP($code) {
+		return $this->replaceWith(phpQuery::php($code));
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery $content
+	 * @link http://docs.jquery.com/Manipulation/replaceWith#content
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function replaceWith($content) {
+		return $this->after($content)->remove();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String $selector
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo this works ?
+	 */
+	public function replaceAll($selector) {
+		foreach(phpQuery::pq($selector, $this->getDocumentID()) as $node)
+			phpQuery::pq($node, $this->getDocumentID())
+				->after($this->_clone())
+				->remove();
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function remove($selector = null) {
+		$loop = $selector
+			? $this->filter($selector)->elements
+			: $this->elements;
+		foreach($loop as $node) {
+			if (! $node->parentNode )
+				continue;
+			if (isset($node->tagName))
+				$this->debug("Removing '{$node->tagName}'");
+			$node->parentNode->removeChild($node);
+			// Mutation event
+			$event = new DOMEvent(array(
+				'target' => $node,
+				'type' => 'DOMNodeRemoved'
+			));
+			phpQueryEvents::trigger($this->getDocumentID(),
+				$event->type, array($event), $node
+			);
+		}
+		return $this;
+	}
+	protected function markupEvents($newMarkup, $oldMarkup, $node) {
+		if ($node->tagName == 'textarea' && $newMarkup != $oldMarkup) {
+			$event = new DOMEvent(array(
+				'target' => $node,
+				'type' => 'change'
+			));
+			phpQueryEvents::trigger($this->getDocumentID(),
+				$event->type, array($event), $node
+			);
+		}
+	}
+	/**
+	 * jQuey difference
+	 *
+	 * @param $markup
+	 * @return unknown_type
+	 * @TODO trigger change event for textarea
+	 */
+	public function markup($markup = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		$args = func_get_args();
+		if ($this->documentWrapper->isXML)
+			return call_user_func_array(array($this, 'xml'), $args);
+		else
+			return call_user_func_array(array($this, 'html'), $args);
+	}
+	/**
+	 * jQuey difference
+	 *
+	 * @param $markup
+	 * @return unknown_type
+	 */
+	public function markupOuter($callback1 = null, $callback2 = null, $callback3 = null) {
+		$args = func_get_args();
+		if ($this->documentWrapper->isXML)
+			return call_user_func_array(array($this, 'xmlOuter'), $args);
+		else
+			return call_user_func_array(array($this, 'htmlOuter'), $args);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param unknown_type $html
+	 * @return string|phpQuery|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @TODO force html result
+	 */
+	public function html($html = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		if (isset($html)) {
+			// INSERT
+			$nodes = $this->documentWrapper->import($html);
+			$this->empty();
+			foreach($this->stack(1) as $alreadyAdded => $node) {
+				// for now, limit events for textarea
+				if (($this->isXHTML() || $this->isHTML()) && $node->tagName == 'textarea')
+					$oldHtml = pq($node, $this->getDocumentID())->markup();
+				foreach($nodes as $newNode) {
+					$node->appendChild($alreadyAdded
+						? $newNode->cloneNode(true)
+						: $newNode
+					);
+				}
+				// for now, limit events for textarea
+				if (($this->isXHTML() || $this->isHTML()) && $node->tagName == 'textarea')
+					$this->markupEvents($html, $oldHtml, $node);
+			}
+			return $this;
+		} else {
+			// FETCH
+			$return = $this->documentWrapper->markup($this->elements, true);
+			$args = func_get_args();
+			foreach(array_slice($args, 1) as $callback) {
+				$return = phpQuery::callbackRun($callback, array($return));
+			}
+			return $return;
+		}
+	}
+	/**
+	 * @TODO force xml result
+	 */
+	public function xml($xml = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		$args = func_get_args();
+		return call_user_func_array(array($this, 'html'), $args);
+	}
+	/**
+	 * Enter description here...
+	 * @TODO force html result
+	 *
+	 * @return String
+	 */
+	public function htmlOuter($callback1 = null, $callback2 = null, $callback3 = null) {
+		$markup = $this->documentWrapper->markup($this->elements);
+		// pass thou callbacks
+		$args = func_get_args();
+		foreach($args as $callback) {
+			$markup = phpQuery::callbackRun($callback, array($markup));
+		}
+		return $markup;
+	}
+	/**
+	 * @TODO force xml result
+	 */
+	public function xmlOuter($callback1 = null, $callback2 = null, $callback3 = null) {
+		$args = func_get_args();
+		return call_user_func_array(array($this, 'htmlOuter'), $args);
+	}
+	public function __toString() {
+		return $this->markupOuter();
+	}
+	/**
+	 * Just like html(), but returns markup with VALID (dangerous) PHP tags.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo support returning markup with PHP tags when called without param
+	 */
+	public function php($code = null) {
+		return $this->markupPHP($code);
+	}
+	/**
+	 * Enter description here...
+	 * 
+	 * @param $code
+	 * @return unknown_type
+	 */
+	public function markupPHP($code = null) {
+		return isset($code)
+			? $this->markup(phpQuery::php($code))
+			: phpQuery::markupToPHP($this->markup());
+	}
+	/**
+	 * Enter description here...
+	 * 
+	 * @param $code
+	 * @return unknown_type
+	 */
+	public function markupOuterPHP() {
+		return phpQuery::markupToPHP($this->markupOuter());
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function children($selector = null) {
+		$stack = array();
+		foreach($this->stack(1) as $node) {
+//			foreach($node->getElementsByTagName('*') as $newNode) {
+			foreach($node->childNodes as $newNode) {
+				if ($newNode->nodeType != 1)
+					continue;
+				if ($selector && ! $this->is($selector, $newNode))
+					continue;
+				if ($this->elementsContainsNode($newNode, $stack))
+					continue;
+				$stack[] = $newNode;
+			}
+		}
+		$this->elementsBackup = $this->elements;
+		$this->elements = $stack;
+		return $this->newInstance();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function ancestors($selector = null) {
+		return $this->children( $selector );
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function append( $content) {
+		return $this->insert($content, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function appendPHP( $content) {
+		return $this->insert("<php><!-- {$content} --></php>", 'append');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function appendTo( $seletor) {
+		return $this->insert($seletor, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function prepend( $content) {
+		return $this->insert($content, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @todo accept many arguments, which are joined, arrays maybe also
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function prependPHP( $content) {
+		return $this->insert("<php><!-- {$content} --></php>", 'prepend');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function prependTo( $seletor) {
+		return $this->insert($seletor, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function before($content) {
+		return $this->insert($content, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function beforePHP( $content) {
+		return $this->insert("<php><!-- {$content} --></php>", 'before');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param String|phpQuery
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function insertBefore( $seletor) {
+		return $this->insert($seletor, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function after( $content) {
+		return $this->insert($content, __FUNCTION__);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function afterPHP( $content) {
+		return $this->insert("<php><!-- {$content} --></php>", 'after');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function insertAfter( $seletor) {
+		return $this->insert($seletor, __FUNCTION__);
+	}
+	/**
+	 * Internal insert method. Don't use it.
+	 *
+	 * @param unknown_type $target
+	 * @param unknown_type $type
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @access private
+	 */
+	public function insert($target, $type) {
+		$this->debug("Inserting data with '{$type}'");
+		$to = false;
+		switch( $type) {
+			case 'appendTo':
+			case 'prependTo':
+			case 'insertBefore':
+			case 'insertAfter':
+				$to = true;
+		}
+		switch(gettype($target)) {
+			case 'string':
+				$insertFrom = $insertTo = array();
+				if ($to) {
+					// INSERT TO
+					$insertFrom = $this->elements;
+					if (phpQuery::isMarkup($target)) {
+						// $target is new markup, import it
+						$insertTo = $this->documentWrapper->import($target);
+					// insert into selected element
+					} else {
+						// $tagret is a selector
+						$thisStack = $this->elements;
+						$this->toRoot();
+						$insertTo = $this->find($target)->elements;
+						$this->elements = $thisStack;
+					}
+				} else {
+					// INSERT FROM
+					$insertTo = $this->elements;
+					$insertFrom = $this->documentWrapper->import($target);
+				}
+				break;
+			case 'object':
+				$insertFrom = $insertTo = array();
+				// phpQuery
+				if ($target instanceof self) {
+					if ($to) {
+						$insertTo = $target->elements;
+						if ($this->documentFragment && $this->stackIsRoot())
+							// get all body children
+//							$loop = $this->find('body > *')->elements;
+							// TODO test it, test it hard...
+//							$loop = $this->newInstance($this->root)->find('> *')->elements;
+							$loop = $this->root->childNodes;
+						else
+							$loop = $this->elements;
+						// import nodes if needed
+						$insertFrom = $this->getDocumentID() == $target->getDocumentID()
+							? $loop
+							: $target->documentWrapper->import($loop);
+					} else {
+						$insertTo = $this->elements;
+						if ( $target->documentFragment && $target->stackIsRoot() )
+							// get all body children
+//							$loop = $target->find('body > *')->elements;
+							$loop = $target->root->childNodes;
+						else
+							$loop = $target->elements;
+						// import nodes if needed
+						$insertFrom = $this->getDocumentID() == $target->getDocumentID()
+							? $loop
+							: $this->documentWrapper->import($loop);
+					}
+				// DOMNODE
+				} elseif ($target instanceof DOMNODE) {
+					// import node if needed
+//					if ( $target->ownerDocument != $this->DOM )
+//						$target = $this->DOM->importNode($target, true);
+					if ( $to) {
+						$insertTo = array($target);
+						if ($this->documentFragment && $this->stackIsRoot())
+							// get all body children
+							$loop = $this->root->childNodes;
+//							$loop = $this->find('body > *')->elements;
+						else
+							$loop = $this->elements;
+						foreach($loop as $fromNode)
+							// import nodes if needed
+							$insertFrom[] = ! $fromNode->ownerDocument->isSameNode($target->ownerDocument)
+								? $target->ownerDocument->importNode($fromNode, true)
+								: $fromNode;
+					} else {
+						// import node if needed
+						if (! $target->ownerDocument->isSameNode($this->document))
+							$target = $this->document->importNode($target, true);
+						$insertTo = $this->elements;
+						$insertFrom[] = $target;
+					}
+				}
+				break;
+		}
+		phpQuery::debug("From ".count($insertFrom)."; To ".count($insertTo)." nodes");
+		foreach($insertTo as $insertNumber => $toNode) {
+			// we need static relative elements in some cases
+			switch( $type) {
+				case 'prependTo':
+				case 'prepend':
+					$firstChild = $toNode->firstChild;
+					break;
+				case 'insertAfter':
+				case 'after':
+					$nextSibling = $toNode->nextSibling;
+					break;
+			}
+			foreach($insertFrom as $fromNode) {
+				// clone if inserted already before
+				$insert = $insertNumber
+					? $fromNode->cloneNode(true)
+					: $fromNode;
+				switch($type) {
+					case 'appendTo':
+					case 'append':
+//						$toNode->insertBefore(
+//							$fromNode,
+//							$toNode->lastChild->nextSibling
+//						);
+						$toNode->appendChild($insert);
+						$eventTarget = $insert;
+						break;
+					case 'prependTo':
+					case 'prepend':
+						$toNode->insertBefore(
+							$insert,
+							$firstChild
+						);
+						break;
+					case 'insertBefore':
+					case 'before':
+						if (! $toNode->parentNode)
+							throw new Exception("No parentNode, can't do {$type}()");
+						else
+							$toNode->parentNode->insertBefore(
+								$insert,
+								$toNode
+							);
+						break;
+					case 'insertAfter':
+					case 'after':
+						if (! $toNode->parentNode)
+							throw new Exception("No parentNode, can't do {$type}()");
+						else
+							$toNode->parentNode->insertBefore(
+								$insert,
+								$nextSibling
+							);
+						break;
+				}
+				// Mutation event
+				$event = new DOMEvent(array(
+					'target' => $insert,
+					'type' => 'DOMNodeInserted'
+				));
+				phpQueryEvents::trigger($this->getDocumentID(),
+					$event->type, array($event), $insert
+				);
+			}
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return Int
+	 */
+	public function index($subject) {
+		$index = -1;
+		$subject = $subject instanceof phpQueryObject
+			? $subject->elements[0]
+			: $subject;
+		foreach($this->newInstance() as $k => $node) {
+			if ($node->isSameNode($subject))
+				$index = $k;
+		}
+		return $index;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param unknown_type $start
+	 * @param unknown_type $end
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @testme
+	 */
+	public function slice($start, $end = null) {
+//		$last = count($this->elements)-1;
+//		$end = $end
+//			? min($end, $last)
+//			: $last;
+//		if ($start < 0)
+//			$start = $last+$start;
+//		if ($start > $last)
+//			return array();
+		if ($end > 0)
+			$end = $end-$start;
+		return $this->newInstance(
+			array_slice($this->elements, $start, $end)
+		);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function reverse() {
+		$this->elementsBackup = $this->elements;
+		$this->elements = array_reverse($this->elements);
+		return $this->newInstance();
+	}
+	/**
+	 * Return joined text content.
+	 * @return String
+	 */
+	public function text($text = null, $callback1 = null, $callback2 = null, $callback3 = null) {
+		if (isset($text))
+			return $this->html(htmlspecialchars($text));
+		$args = func_get_args();
+		$args = array_slice($args, 1);
+		$return = '';
+		foreach($this->elements as $node) {
+			$text = $node->textContent;
+			if (count($this->elements) > 1 && $text)
+				$text .= "\n";
+			foreach($args as $callback) {
+				$text = phpQuery::callbackRun($callback, array($text));
+			}
+			$return .= $text;
+		}
+		return $return;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function plugin($class, $file = null) {
+		phpQuery::plugin($class, $file);
+		return $this;
+	}
+	/**
+	 * Deprecated, use $pq->plugin() instead.
+	 *
+	 * @deprecated
+	 * @param $class
+	 * @param $file
+	 * @return unknown_type
+	 */
+	public static function extend($class, $file = null) {
+		return $this->plugin($class, $file);
+	}
+	/**
+	 *
+	 * @access private
+	 * @param $method
+	 * @param $args
+	 * @return unknown_type
+	 */
+	public function __call($method, $args) {
+		$aliasMethods = array('clone', 'empty');
+		if (isset(phpQuery::$extendMethods[$method])) {
+			array_unshift($args, $this);
+			return phpQuery::callbackRun(
+				phpQuery::$extendMethods[$method], $args
+			);
+		} else if (isset(phpQuery::$pluginsMethods[$method])) {
+			array_unshift($args, $this);
+			$class = phpQuery::$pluginsMethods[$method];
+			$realClass = "phpQueryObjectPlugin_$class";
+			$return = call_user_func_array(
+				array($realClass, $method),
+				$args
+			);
+			// XXX deprecate ?
+			return is_null($return)
+				? $this
+				: $return;
+		} else if (in_array($method, $aliasMethods)) {
+			return call_user_func_array(array($this, '_'.$method), $args);
+		} else
+			throw new Exception("Method '{$method}' doesnt exist");
+	}
+	/**
+	 * Safe rename of next().
+	 *
+	 * Use it ONLY when need to call next() on an iterated object (in same time).
+	 * Normaly there is no need to do such thing ;)
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @access private
+	 */
+	public function _next($selector = null) {
+		return $this->newInstance(
+			$this->getElementSiblings('nextSibling', $selector, true)
+		);
+	}
+	/**
+	 * Use prev() and next().
+	 *
+	 * @deprecated
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @access private
+	 */
+	public function _prev($selector = null) {
+		return $this->prev($selector);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function prev($selector = null) {
+		return $this->newInstance(
+			$this->getElementSiblings('previousSibling', $selector, true)
+		);
+	}
+	/**
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo
+	 */
+	public function prevAll($selector = null) {
+		return $this->newInstance(
+			$this->getElementSiblings('previousSibling', $selector)
+		);
+	}
+	/**
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo FIXME: returns source elements insted of next siblings
+	 */
+	public function nextAll($selector = null) {
+		return $this->newInstance(
+			$this->getElementSiblings('nextSibling', $selector)
+		);
+	}
+	/**
+	 * @access private
+	 */
+	protected function getElementSiblings($direction, $selector = null, $limitToOne = false) {
+		$stack = array();
+		$count = 0;
+		foreach($this->stack() as $node) {
+			$test = $node;
+			while( isset($test->{$direction}) && $test->{$direction}) {
+				$test = $test->{$direction};
+				if (! $test instanceof DOMELEMENT)
+					continue;
+				$stack[] = $test;
+				if ($limitToOne)
+					break;
+			}
+		}
+		if ($selector) {
+			$stackOld = $this->elements;
+			$this->elements = $stack;
+			$stack = $this->filter($selector, true)->stack();
+			$this->elements = $stackOld;
+		}
+		return $stack;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function siblings($selector = null) {
+		$stack = array();
+		$siblings = array_merge(
+			$this->getElementSiblings('previousSibling', $selector),
+			$this->getElementSiblings('nextSibling', $selector)
+		);
+		foreach($siblings as $node) {
+			if (! $this->elementsContainsNode($node, $stack))
+				$stack[] = $node;
+		}
+		return $this->newInstance($stack);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function not($selector = null) {
+		if (is_string($selector))
+			phpQuery::debug(array('not', $selector));
+		else
+			phpQuery::debug('not');
+		$stack = array();
+		if ($selector instanceof self || $selector instanceof DOMNODE) {
+			foreach($this->stack() as $node) {
+				if ($selector instanceof self) {
+					$matchFound = false;
+					foreach($selector->stack() as $notNode) {
+						if ($notNode->isSameNode($node))
+							$matchFound = true;
+					}
+					if (! $matchFound)
+						$stack[] = $node;
+				} else if ($selector instanceof DOMNODE) {
+					if (! $selector->isSameNode($node))
+						$stack[] = $node;
+				} else {
+					if (! $this->is($selector))
+						$stack[] = $node;
+				}
+			}
+		} else {
+			$orgStack = $this->stack();
+			$matched = $this->filter($selector, true)->stack();
+//			$matched = array();
+//			// simulate OR in filter() instead of AND 5y
+//			foreach($this->parseSelector($selector) as $s) {
+//				$matched = array_merge($matched,
+//					$this->filter(array($s))->stack()
+//				);
+//			}
+			foreach($orgStack as $node)
+				if (! $this->elementsContainsNode($node, $matched))
+					$stack[] = $node;
+		}
+		return $this->newInstance($stack);
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param string|phpQueryObject
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function add($selector = null) {
+		if (! $selector)
+			return $this;
+		$stack = array();
+		$this->elementsBackup = $this->elements;
+		$found = phpQuery::pq($selector, $this->getDocumentID());
+		$this->merge($found->elements);
+		return $this->newInstance();
+	}
+	/**
+	 * @access private
+	 */
+	protected function merge() {
+		foreach(func_get_args() as $nodes)
+			foreach($nodes as $newNode )
+				if (! $this->elementsContainsNode($newNode) )
+					$this->elements[] = $newNode;
+	}
+	/**
+	 * @access private
+	 * TODO refactor to stackContainsNode
+	 */
+	protected function elementsContainsNode($nodeToCheck, $elementsStack = null) {
+		$loop = ! is_null($elementsStack)
+			? $elementsStack
+			: $this->elements;
+		foreach($loop as $node) {
+			if ( $node->isSameNode( $nodeToCheck ) )
+				return true;
+		}
+		return false;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function parent($selector = null) {
+		$stack = array();
+		foreach($this->elements as $node )
+			if ( $node->parentNode && ! $this->elementsContainsNode($node->parentNode, $stack) )
+				$stack[] = $node->parentNode;
+		$this->elementsBackup = $this->elements;
+		$this->elements = $stack;
+		if ( $selector )
+			$this->filter($selector, true);
+		return $this->newInstance();
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function parents($selector = null) {
+		$stack = array();
+		if (! $this->elements )
+			$this->debug('parents() - stack empty');
+		foreach($this->elements as $node) {
+			$test = $node;
+			while( $test->parentNode) {
+				$test = $test->parentNode;
+				if ($this->isRoot($test))
+					break;
+				if (! $this->elementsContainsNode($test, $stack)) {
+					$stack[] = $test;
+					continue;
+				}
+			}
+		}
+		$this->elementsBackup = $this->elements;
+		$this->elements = $stack;
+		if ( $selector )
+			$this->filter($selector, true);
+		return $this->newInstance();
+	}
+	/**
+	 * Internal stack iterator.
+	 *
+	 * @access private
+	 */
+	public function stack($nodeTypes = null) {
+		if (!isset($nodeTypes))
+			return $this->elements;
+		if (!is_array($nodeTypes))
+			$nodeTypes = array($nodeTypes);
+		$return = array();
+		foreach($this->elements as $node) {
+			if (in_array($node->nodeType, $nodeTypes))
+				$return[] = $node;
+		}
+		return $return;
+	}
+	// TODO phpdoc; $oldAttr is result of hasAttribute, before any changes
+	protected function attrEvents($attr, $oldAttr, $oldValue, $node) {
+		// skip events for XML documents
+		if (! $this->isXHTML() && ! $this->isHTML())
+			return;
+		$event = null;
+		// identify
+		$isInputValue = $node->tagName == 'input'
+			&& (
+				in_array($node->getAttribute('type'),
+					array('text', 'password', 'hidden'))
+				|| !$node->getAttribute('type')
+				 );
+		$isRadio = $node->tagName == 'input'
+			&& $node->getAttribute('type') == 'radio';
+		$isCheckbox = $node->tagName == 'input'
+			&& $node->getAttribute('type') == 'checkbox';
+		$isOption = $node->tagName == 'option';
+		if ($isInputValue && $attr == 'value' && $oldValue != $node->getAttribute($attr)) {
+			$event = new DOMEvent(array(
+				'target' => $node,
+				'type' => 'change'
+			));
+		} else if (($isRadio || $isCheckbox) && $attr == 'checked' && (
+				// check
+				(! $oldAttr && $node->hasAttribute($attr))
+				// un-check
+				|| (! $node->hasAttribute($attr) && $oldAttr)
+			)) {
+			$event = new DOMEvent(array(
+				'target' => $node,
+				'type' => 'change'
+			));
+		} else if ($isOption && $node->parentNode && $attr == 'selected' && (
+				// select
+				(! $oldAttr && $node->hasAttribute($attr))
+				// un-select
+				|| (! $node->hasAttribute($attr) && $oldAttr)
+			)) {
+			$event = new DOMEvent(array(
+				'target' => $node->parentNode,
+				'type' => 'change'
+			));
+		}
+		if ($event) {
+			phpQueryEvents::trigger($this->getDocumentID(),
+				$event->type, array($event), $node
+			);
+		}
+	}
+	public function attr($attr = null, $value = null) {
+		foreach($this->stack(1) as $node) {
+			if (! is_null($value)) {
+				$loop = $attr == '*'
+					? $this->getNodeAttrs($node)
+					: array($attr);
+				foreach($loop as $a) {
+					$oldValue = $node->getAttribute($a);
+					$oldAttr = $node->hasAttribute($a);
+					// TODO raises an error when charset other than UTF-8
+					// while document's charset is also not UTF-8
+					@$node->setAttribute($a, $value);
+					$this->attrEvents($a, $oldAttr, $oldValue, $node);
+				}
+			} else if ($attr == '*') {
+				// jQuery difference
+				$return = array();
+				foreach($node->attributes as $n => $v)
+					$return[$n] = $v->value;
+				return $return;
+			} else
+				return $node->hasAttribute($attr)
+					? $node->getAttribute($attr)
+					: null;
+		}
+		return is_null($value)
+			? '' : $this;
+	}
+	/**
+	 * @access private
+	 */
+	protected function getNodeAttrs($node) {
+		$return = array();
+		foreach($node->attributes as $n => $o)
+			$return[] = $n;
+		return $return;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo check CDATA ???
+	 */
+	public function attrPHP($attr, $code) {
+		if (! is_null($code)) {
+			$value = '<'.'?php '.$code.' ?'.'>';
+			// TODO tempolary solution
+			// http://code.google.com/p/phpquery/issues/detail?id=17
+//			if (function_exists('mb_detect_encoding') && mb_detect_encoding($value) == 'ASCII')
+//				$value	= mb_convert_encoding($value, 'UTF-8', 'HTML-ENTITIES');
+		}
+		foreach($this->stack(1) as $node) {
+			if (! is_null($code)) {
+//				$attrNode = $this->DOM->createAttribute($attr);
+				$node->setAttribute($attr, $value);
+//				$attrNode->value = $value;
+//				$node->appendChild($attrNode);
+			} else if ( $attr == '*') {
+				// jQuery diff
+				$return = array();
+				foreach($node->attributes as $n => $v)
+					$return[$n] = $v->value;
+				return $return;
+			} else
+				return $node->getAttribute($attr);
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function removeAttr($attr) {
+		foreach($this->stack(1) as $node) {
+			$loop = $attr == '*'
+				? $this->getNodeAttrs($node)
+				: array($attr);
+			foreach($loop as $a) {
+				$oldValue = $node->getAttribute($a);
+				$node->removeAttribute($a);
+				$this->attrEvents($a, $oldValue, null, $node);
+			}
+		}
+		return $this;
+	}
+	/**
+	 * Return form element value.
+	 *
+	 * @return String Fields value.
+	 */
+	public function val($val = null) {
+		if (! isset($val)) {
+			if ($this->eq(0)->is('select')) {
+					$selected = $this->eq(0)->find('option[selected=selected]');
+					if ($selected->is('[value]'))
+						return $selected->attr('value');
+					else
+						return $selected->text();
+			} else if ($this->eq(0)->is('textarea'))
+					return $this->eq(0)->markup();
+				else
+					return $this->eq(0)->attr('value');
+		} else {
+			$_val = null;
+			foreach($this->stack(1) as $node) {
+				$node = pq($node, $this->getDocumentID());
+				if (is_array($val) && in_array($node->attr('type'), array('checkbox', 'radio'))) {
+					$isChecked = in_array($node->attr('value'), $val)
+							|| in_array($node->attr('name'), $val);
+					if ($isChecked)
+						$node->attr('checked', 'checked');
+					else
+						$node->removeAttr('checked');
+				} else if ($node->get(0)->tagName == 'select') {
+					if (! isset($_val)) {
+						$_val = array();
+						if (! is_array($val))
+							$_val = array((string)$val);
+						else
+							foreach($val as $v)
+								$_val[] = $v;
+					}
+					foreach($node['option']->stack(1) as $option) {
+						$option = pq($option, $this->getDocumentID());
+						$selected = false;
+						// XXX: workaround for string comparsion, see issue #96
+						// http://code.google.com/p/phpquery/issues/detail?id=96
+						$selected = is_null($option->attr('value'))
+							? in_array($option->markup(), $_val)
+							: in_array($option->attr('value'), $_val);
+//						$optionValue = $option->attr('value');
+//						$optionText = $option->text();
+//						$optionTextLenght = mb_strlen($optionText);
+//						foreach($_val as $v)
+//							if ($optionValue == $v)
+//								$selected = true;
+//							else if ($optionText == $v && $optionTextLenght == mb_strlen($v))
+//								$selected = true;
+						if ($selected)
+							$option->attr('selected', 'selected');
+						else
+							$option->removeAttr('selected');
+					}
+				} else if ($node->get(0)->tagName == 'textarea')
+					$node->markup($val);
+				else
+					$node->attr('value', $val);
+			}
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function andSelf() {
+		if ( $this->previous )
+			$this->elements = array_merge($this->elements, $this->previous->elements);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function addClass( $className) {
+		if (! $className)
+			return $this;
+		foreach($this->stack(1) as $node) {
+			if (! $this->is(".$className", $node))
+				$node->setAttribute(
+					'class',
+					trim($node->getAttribute('class').' '.$className)
+				);
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function addClassPHP( $className) {
+		foreach($this->stack(1) as $node) {
+				$classes = $node->getAttribute('class');
+				$newValue = $classes
+					? $classes.' <'.'?php '.$className.' ?'.'>'
+					: '<'.'?php '.$className.' ?'.'>';
+				$node->setAttribute('class', $newValue);
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param	string	$className
+	 * @return	bool
+	 */
+	public function hasClass($className) {
+		foreach($this->stack(1) as $node) {
+			if ( $this->is(".$className", $node))
+				return true;
+		}
+		return false;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function removeClass($className) {
+		foreach($this->stack(1) as $node) {
+			$classes = explode( ' ', $node->getAttribute('class'));
+			if ( in_array($className, $classes)) {
+				$classes = array_diff($classes, array($className));
+				if ( $classes )
+					$node->setAttribute('class', implode(' ', $classes));
+				else
+					$node->removeAttribute('class');
+			}
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function toggleClass($className) {
+		foreach($this->stack(1) as $node) {
+			if ( $this->is( $node, '.'.$className ))
+				$this->removeClass($className);
+			else
+				$this->addClass($className);
+		}
+		return $this;
+	}
+	/**
+	 * Proper name without underscore (just ->empty()) also works.
+	 *
+	 * Removes all child nodes from the set of matched elements.
+	 *
+	 * Example:
+	 * pq("p")._empty()
+	 *
+	 * HTML:
+	 * <p>Hello, <span>Person</span> <a href="#">and person</a></p>
+	 *
+	 * Result:
+	 * [ <p></p> ]
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @access private
+	 */
+	public function _empty() {
+		foreach($this->stack(1) as $node) {
+			// thx to 'dave at dgx dot cz'
+			$node->nodeValue = '';
+		}
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param array|string $callback Expects $node as first param, $index as second
+	 * @param array $scope External variables passed to callback. Use compact('varName1', 'varName2'...) and extract($scope)
+	 * @param array $arg1 Will ba passed as third and futher args to callback.
+	 * @param array $arg2 Will ba passed as fourth and futher args to callback, and so on...
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function each($callback, $param1 = null, $param2 = null, $param3 = null) {
+		$paramStructure = null;
+		if (func_num_args() > 1) {
+			$paramStructure = func_get_args();
+			$paramStructure = array_slice($paramStructure, 1);
+		}
+		foreach($this->elements as $v)
+			phpQuery::callbackRun($callback, array($v), $paramStructure);
+		return $this;
+	}
+	/**
+	 * Run callback on actual object.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function callback($callback, $param1 = null, $param2 = null, $param3 = null) {
+		$params = func_get_args();
+		$params[0] = $this;
+		phpQuery::callbackRun($callback, $params);
+		return $this;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @todo add $scope and $args as in each() ???
+	 */
+	public function map($callback, $param1 = null, $param2 = null, $param3 = null) {
+//		$stack = array();
+////		foreach($this->newInstance() as $node) {
+//		foreach($this->newInstance() as $node) {
+//			$result = call_user_func($callback, $node);
+//			if ($result)
+//				$stack[] = $result;
+//		}
+		$params = func_get_args();
+		array_unshift($params, $this->elements);
+		return $this->newInstance(
+			call_user_func_array(array('phpQuery', 'map'), $params)
+//			phpQuery::map($this->elements, $callback)
+		);
+	}
+	/**
+	 * Enter description here...
+	 * 
+	 * @param <type> $key
+	 * @param <type> $value
+	 */
+	public function data($key, $value = null) {
+		if (! isset($value)) {
+			// TODO? implement specific jQuery behavior od returning parent values
+			// is child which we look up doesn't exist
+			return phpQuery::data($this->get(0), $key, $value, $this->getDocumentID());
+		} else {
+			foreach($this as $node)
+				phpQuery::data($node, $key, $value, $this->getDocumentID());
+			return $this;
+		}
+	}
+	/**
+	 * Enter description here...
+	 * 
+	 * @param <type> $key
+	 */
+	public function removeData($key) {
+		foreach($this as $node)
+			phpQuery::removeData($node, $key, $this->getDocumentID());
+		return $this;
+	}
+	// INTERFACE IMPLEMENTATIONS
+
+	// ITERATOR INTERFACE
+	/**
+   * @access private
+	 */
+	public function rewind(){
+		$this->debug('iterating foreach');
+//		phpQuery::selectDocument($this->getDocumentID());
+		$this->elementsBackup = $this->elements;
+		$this->elementsInterator = $this->elements;
+		$this->valid = isset( $this->elements[0] )
+			? 1 : 0;
+// 		$this->elements = $this->valid
+// 			? array($this->elements[0])
+// 			: array();
+		$this->current = 0;
+	}
+	/**
+   * @access private
+	 */
+	public function current(){
+		return $this->elementsInterator[ $this->current ];
+	}
+	/**
+   * @access private
+	 */
+	public function key(){
+		return $this->current;
+	}
+	/**
+	 * Double-function method.
+	 *
+	 * First: main iterator interface method.
+	 * Second: Returning next sibling, alias for _next().
+	 *
+	 * Proper functionality is choosed automagicaly.
+	 *
+	 * @see phpQueryObject::_next()
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public function next($cssSelector = null){
+//		if ($cssSelector || $this->valid)
+//			return $this->_next($cssSelector);
+		$this->valid = isset( $this->elementsInterator[ $this->current+1 ] )
+			? true
+			: false;
+		if (! $this->valid && $this->elementsInterator) {
+			$this->elementsInterator = null;
+		} else if ($this->valid) {
+			$this->current++;
+		} else {
+			return $this->_next($cssSelector);
+		}
+	}
+	/**
+   * @access private
+	 */
+	public function valid(){
+		return $this->valid;
+	}
+	// ITERATOR INTERFACE END
+	// ARRAYACCESS INTERFACE
+	/**
+   * @access private
+	 */
+	public function offsetExists($offset) {
+		return $this->find($offset)->size() > 0;
+	}
+	/**
+   * @access private
+	 */
+	public function offsetGet($offset) {
+		return $this->find($offset);
+	}
+	/**
+   * @access private
+	 */
+	public function offsetSet($offset, $value) {
+//		$this->find($offset)->replaceWith($value);
+		$this->find($offset)->html($value);
+	}
+	/**
+   * @access private
+	 */
+	public function offsetUnset($offset) {
+		// empty
+		throw new Exception("Can't do unset, use array interface only for calling queries and replacing HTML.");
+	}
+	// ARRAYACCESS INTERFACE END
+	/**
+	 * Returns node's XPath.
+	 *
+	 * @param unknown_type $oneNode
+	 * @return string
+	 * @TODO use native getNodePath is avaible
+	 * @access private
+	 */
+	protected function getNodeXpath($oneNode = null, $namespace = null) {
+		$return = array();
+		$loop = $oneNode
+			? array($oneNode)
+			: $this->elements;
+//		if ($namespace)
+//			$namespace .= ':';
+		foreach($loop as $node) {
+			if ($node instanceof DOMDOCUMENT) {
+				$return[] = '';
+				continue;
+			}
+			$xpath = array();
+			while(! ($node instanceof DOMDOCUMENT)) {
+				$i = 1;
+				$sibling = $node;
+				while($sibling->previousSibling) {
+					$sibling = $sibling->previousSibling;
+					$isElement = $sibling instanceof DOMELEMENT;
+					if ($isElement && $sibling->tagName == $node->tagName)
+						$i++;
+				}
+				$xpath[] = $this->isXML()
+					? "*[local-name()='{$node->tagName}'][{$i}]"
+					: "{$node->tagName}[{$i}]";
+				$node = $node->parentNode;
+			}
+			$xpath = join('/', array_reverse($xpath));
+			$return[] = '/'.$xpath;
+		}
+		return $oneNode
+			? $return[0]
+			: $return;
+	}
+	// HELPERS
+	public function whois($oneNode = null) {
+		$return = array();
+		$loop = $oneNode
+			? array( $oneNode )
+			: $this->elements;
+		foreach($loop as $node) {
+			if (isset($node->tagName)) {
+				$tag = in_array($node->tagName, array('php', 'js'))
+					? strtoupper($node->tagName)
+					: $node->tagName;
+				$return[] = $tag
+					.($node->getAttribute('id')
+						? '#'.$node->getAttribute('id'):'')
+					.($node->getAttribute('class')
+						? '.'.join('.', split(' ', $node->getAttribute('class'))):'')
+					.($node->getAttribute('name')
+						? '[name="'.$node->getAttribute('name').'"]':'')
+					.($node->getAttribute('value') && strpos($node->getAttribute('value'), '<'.'?php') === false
+						? '[value="'.substr(str_replace("\n", '', $node->getAttribute('value')), 0, 15).'"]':'')
+					.($node->getAttribute('value') && strpos($node->getAttribute('value'), '<'.'?php') !== false
+						? '[value=PHP]':'')
+					.($node->getAttribute('selected')
+						? '[selected]':'')
+					.($node->getAttribute('checked')
+						? '[checked]':'')
+				;
+			} else if ($node instanceof DOMTEXT) {
+				if (trim($node->textContent))
+					$return[] = 'Text:'.substr(str_replace("\n", ' ', $node->textContent), 0, 15);
+			} else {
+
+			}
+		}
+		return $oneNode && isset($return[0])
+			? $return[0]
+			: $return;
+	}
+	/**
+	 * Dump htmlOuter and preserve chain. Usefull for debugging.
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 *
+	 */
+	public function dump() {
+		print 'DUMP #'.(phpQuery::$dumpCount++).' ';
+		$debug = phpQuery::$debug;
+		phpQuery::$debug = false;
+//		print __FILE__.':'.__LINE__."\n";
+		var_dump($this->htmlOuter());
+		return $this;
+	}
+	public function dumpWhois() {
+		print 'DUMP #'.(phpQuery::$dumpCount++).' ';
+		$debug = phpQuery::$debug;
+		phpQuery::$debug = false;
+//		print __FILE__.':'.__LINE__."\n";
+		var_dump('whois', $this->whois());
+		phpQuery::$debug = $debug;
+		return $this;
+	}
+	public function dumpLength() {
+		print 'DUMP #'.(phpQuery::$dumpCount++).' ';
+		$debug = phpQuery::$debug;
+		phpQuery::$debug = false;
+//		print __FILE__.':'.__LINE__."\n";
+		var_dump('length', $this->length());
+		phpQuery::$debug = $debug;
+		return $this;
+	}
+	public function dumpTree($html = true, $title = true) {
+		$output = $title
+			? 'DUMP #'.(phpQuery::$dumpCount++)." \n" : '';
+		$debug = phpQuery::$debug;
+		phpQuery::$debug = false;
+		foreach($this->stack() as $node)
+			$output .= $this->__dumpTree($node);
+		phpQuery::$debug = $debug;
+		print $html
+			? nl2br(str_replace(' ', '&nbsp;', $output))
+			: $output;
+		return $this;
+	}
+	private function __dumpTree($node, $intend = 0) {
+		$whois = $this->whois($node);
+		$return = '';
+		if ($whois)
+			$return .= str_repeat(' - ', $intend).$whois."\n";
+		if (isset($node->childNodes))
+			foreach($node->childNodes as $chNode)
+				$return .= $this->__dumpTree($chNode, $intend+1);
+		return $return;
+	}
+	/**
+	 * Dump htmlOuter and stop script execution. Usefull for debugging.
+	 *
+	 */
+	public function dumpDie() {
+		print __FILE__.':'.__LINE__;
+		var_dump($this->htmlOuter());
+		die();
+	}
+}
+
+
+// -- Multibyte Compatibility functions ---------------------------------------
+// http://svn.iphonewebdev.com/lace/lib/mb_compat.php
+
+/**
+ *  mb_internal_encoding()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_internal_encoding'))
+{
+	function mb_internal_encoding($enc) {return true; }
+}
+
+/**
+ *  mb_regex_encoding()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_regex_encoding'))
+{
+	function mb_regex_encoding($enc) {return true; }
+}
+
+/**
+ *  mb_strlen()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_strlen'))
+{
+	function mb_strlen($str)
+	{
+		return strlen($str);
+	}
+}
+
+/**
+ *  mb_strpos()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_strpos'))
+{
+	function mb_strpos($haystack, $needle, $offset=0)
+	{
+		return strpos($haystack, $needle, $offset);
+	}
+}
+/**
+ *  mb_stripos()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_stripos'))
+{
+	function mb_stripos($haystack, $needle, $offset=0)
+	{
+		return stripos($haystack, $needle, $offset);
+	}
+}
+
+/**
+ *  mb_substr()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_substr'))
+{
+	function mb_substr($str, $start, $length=0)
+	{
+		return substr($str, $start, $length);
+	}
+}
+
+/**
+ *  mb_substr_count()
+ *
+ *  Included for mbstring pseudo-compatability.
+ */
+if (!function_exists('mb_substr_count'))
+{
+	function mb_substr_count($haystack, $needle)
+	{
+		return substr_count($haystack, $needle);
+	}
+}
+
+
+/**
+ * Static namespace for phpQuery functions.
+ *
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ */
+abstract class phpQuery {
+	/**
+	 * XXX: Workaround for mbstring problems 
+	 * 
+	 * @var bool
+	 */
+	public static $mbstringSupport = true;
+	public static $debug = false;
+	public static $documents = array();
+	public static $defaultDocumentID = null;
+//	public static $defaultDoctype = 'html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"';
+	/**
+	 * Applies only to HTML.
+	 *
+	 * @var unknown_type
+	 */
+	public static $defaultDoctype = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+"http://www.w3.org/TR/html4/loose.dtd">';
+	public static $defaultCharset = 'UTF-8';
+	/**
+	 * Static namespace for plugins.
+	 *
+	 * @var object
+	 */
+	public static $plugins = array();
+	/**
+	 * List of loaded plugins.
+	 *
+	 * @var unknown_type
+	 */
+	public static $pluginsLoaded = array();
+	public static $pluginsMethods = array();
+	public static $pluginsStaticMethods = array();
+	public static $extendMethods = array();
+	/**
+	 * @TODO implement
+	 */
+	public static $extendStaticMethods = array();
+	/**
+	 * Hosts allowed for AJAX connections.
+	 * Dot '.' means $_SERVER['HTTP_HOST'] (if any).
+	 *
+	 * @var array
+	 */
+	public static $ajaxAllowedHosts = array(
+		'.'
+	);
+	/**
+	 * AJAX settings.
+	 *
+	 * @var array
+	 * XXX should it be static or not ?
+	 */
+	public static $ajaxSettings = array(
+		'url' => '',//TODO
+		'global' => true,
+		'type' => "GET",
+		'timeout' => null,
+		'contentType' => "application/x-www-form-urlencoded",
+		'processData' => true,
+//		'async' => true,
+		'data' => null,
+		'username' => null,
+		'password' => null,
+		'accepts' => array(
+			'xml' => "application/xml, text/xml",
+			'html' => "text/html",
+			'script' => "text/javascript, application/javascript",
+			'json' => "application/json, text/javascript",
+			'text' => "text/plain",
+			'_default' => "*/*"
+		)
+	);
+	public static $lastModified = null;
+	public static $active = 0;
+	public static $dumpCount = 0;
+	/**
+	 * Multi-purpose function.
+	 * Use pq() as shortcut.
+	 *
+	 * In below examples, $pq is any result of pq(); function.
+	 *
+	 * 1. Import markup into existing document (without any attaching):
+	 * - Import into selected document:
+	 *   pq('<div/>')				// DOESNT accept text nodes at beginning of input string !
+	 * - Import into document with ID from $pq->getDocumentID():
+	 *   pq('<div/>', $pq->getDocumentID())
+	 * - Import into same document as DOMNode belongs to:
+	 *   pq('<div/>', DOMNode)
+	 * - Import into document from phpQuery object:
+	 *   pq('<div/>', $pq)
+	 *
+	 * 2. Run query:
+	 * - Run query on last selected document:
+	 *   pq('div.myClass')
+	 * - Run query on document with ID from $pq->getDocumentID():
+	 *   pq('div.myClass', $pq->getDocumentID())
+	 * - Run query on same document as DOMNode belongs to and use node(s)as root for query:
+	 *   pq('div.myClass', DOMNode)
+	 * - Run query on document from phpQuery object
+	 *   and use object's stack as root node(s) for query:
+	 *   pq('div.myClass', $pq)
+	 *
+	 * @param string|DOMNode|DOMNodeList|array	$arg1	HTML markup, CSS Selector, DOMNode or array of DOMNodes
+	 * @param string|phpQueryObject|DOMNode	$context	DOM ID from $pq->getDocumentID(), phpQuery object (determines also query root) or DOMNode (determines also query root)
+	 *
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery|QueryTemplatesPhpQuery|false
+   * phpQuery object or false in case of error.
+	 */
+	public static function pq($arg1, $context = null) {
+		if ($arg1 instanceof DOMNODE && ! isset($context)) {
+			foreach(phpQuery::$documents as $documentWrapper) {
+				$compare = $arg1 instanceof DOMDocument
+					? $arg1 : $arg1->ownerDocument;
+				if ($documentWrapper->document->isSameNode($compare))
+					$context = $documentWrapper->id;
+			}
+		}
+		if (! $context) {
+			$domId = self::$defaultDocumentID;
+			if (! $domId)
+				throw new Exception("Can't use last created DOM, because there isn't any. Use phpQuery::newDocument() first.");
+//		} else if (is_object($context) && ($context instanceof PHPQUERY || is_subclass_of($context, 'phpQueryObject')))
+		} else if (is_object($context) && $context instanceof phpQueryObject)
+			$domId = $context->getDocumentID();
+		else if ($context instanceof DOMDOCUMENT) {
+			$domId = self::getDocumentID($context);
+			if (! $domId) {
+				//throw new Exception('Orphaned DOMDocument');
+				$domId = self::newDocument($context)->getDocumentID();
+			}
+		} else if ($context instanceof DOMNODE) {
+			$domId = self::getDocumentID($context);
+			if (! $domId) {
+				throw new Exception('Orphaned DOMNode');
+//				$domId = self::newDocument($context->ownerDocument);
+			}
+		} else
+			$domId = $context;
+		if ($arg1 instanceof phpQueryObject) {
+//		if (is_object($arg1) && (get_class($arg1) == 'phpQueryObject' || $arg1 instanceof PHPQUERY || is_subclass_of($arg1, 'phpQueryObject'))) {
+			/**
+			 * Return $arg1 or import $arg1 stack if document differs:
+			 * pq(pq('<div/>'))
+			 */
+			if ($arg1->getDocumentID() == $domId)
+				return $arg1;
+			$class = get_class($arg1);
+			// support inheritance by passing old object to overloaded constructor
+			$phpQuery = $class != 'phpQuery'
+				? new $class($arg1, $domId)
+				: new phpQueryObject($domId);
+			$phpQuery->elements = array();
+			foreach($arg1->elements as $node)
+				$phpQuery->elements[] = $phpQuery->document->importNode($node, true);
+			return $phpQuery;
+		} else if ($arg1 instanceof DOMNODE || (is_array($arg1) && isset($arg1[0]) && $arg1[0] instanceof DOMNODE)) {
+			/*
+			 * Wrap DOM nodes with phpQuery object, import into document when needed:
+			 * pq(array($domNode1, $domNode2))
+			 */
+			$phpQuery = new phpQueryObject($domId);
+			if (!($arg1 instanceof DOMNODELIST) && ! is_array($arg1))
+				$arg1 = array($arg1);
+			$phpQuery->elements = array();
+			foreach($arg1 as $node) {
+				$sameDocument = $node->ownerDocument instanceof DOMDOCUMENT
+					&& ! $node->ownerDocument->isSameNode($phpQuery->document);
+				$phpQuery->elements[] = $sameDocument
+					? $phpQuery->document->importNode($node, true)
+					: $node;
+			}
+			return $phpQuery;
+		} else if (self::isMarkup($arg1)) {
+			/**
+			 * Import HTML:
+			 * pq('<div/>')
+			 */
+			$phpQuery = new phpQueryObject($domId);
+			return $phpQuery->newInstance(
+				$phpQuery->documentWrapper->import($arg1)
+			);
+		} else {
+			/**
+			 * Run CSS query:
+			 * pq('div.myClass')
+			 */
+			$phpQuery = new phpQueryObject($domId);
+//			if ($context && ($context instanceof PHPQUERY || is_subclass_of($context, 'phpQueryObject')))
+			if ($context && $context instanceof phpQueryObject)
+				$phpQuery->elements = $context->elements;
+			else if ($context && $context instanceof DOMNODELIST) {
+				$phpQuery->elements = array();
+				foreach($context as $node)
+					$phpQuery->elements[] = $node;
+			} else if ($context && $context instanceof DOMNODE)
+				$phpQuery->elements = array($context);
+			return $phpQuery->find($arg1);
+		}
+	}
+	/**
+	 * Sets default document to $id. Document has to be loaded prior
+	 * to using this method.
+	 * $id can be retrived via getDocumentID() or getDocumentIDRef().
+	 *
+	 * @param unknown_type $id
+	 */
+	public static function selectDocument($id) {
+		$id = self::getDocumentID($id);
+		self::debug("Selecting document '$id' as default one");
+		self::$defaultDocumentID = self::getDocumentID($id);
+	}
+	/**
+	 * Returns document with id $id or last used as phpQueryObject.
+	 * $id can be retrived via getDocumentID() or getDocumentIDRef().
+	 * Chainable.
+	 *
+	 * @see phpQuery::selectDocument()
+	 * @param unknown_type $id
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function getDocument($id = null) {
+		if ($id)
+			phpQuery::selectDocument($id);
+		else
+			$id = phpQuery::$defaultDocumentID;
+		return new phpQueryObject($id);
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocument($markup = null, $contentType = null) {
+		if (! $markup)
+			$markup = '';
+		$documentID = phpQuery::createDocumentWrapper($markup, $contentType);
+		return new phpQueryObject($documentID);
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentHTML($markup = null, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocument($markup, "text/html{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentXML($markup = null, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocument($markup, "text/xml{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentXHTML($markup = null, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocument($markup, "application/xhtml+xml{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentPHP($markup = null, $contentType = "text/html") {
+		// TODO pass charset to phpToMarkup if possible (use DOMDocumentWrapper function)
+		$markup = phpQuery::phpToMarkup($markup, self::$defaultCharset);
+		return self::newDocument($markup, $contentType);
+	}
+	public static function phpToMarkup($php, $charset = 'utf-8') {
+		$regexes = array(
+			'@(<(?!\\?)(?:[^>]|\\?>)+\\w+\\s*=\\s*)(\')([^\']*)<'.'?php?(.*?)(?:\\?>)([^\']*)\'@s',
+			'@(<(?!\\?)(?:[^>]|\\?>)+\\w+\\s*=\\s*)(")([^"]*)<'.'?php?(.*?)(?:\\?>)([^"]*)"@s',
+		);
+		foreach($regexes as $regex)
+			while (preg_match($regex, $php, $matches)) {
+				$php = preg_replace_callback(
+					$regex,
+//					create_function('$m, $charset = "'.$charset.'"',
+//						'return $m[1].$m[2]
+//							.htmlspecialchars("<"."?php".$m[4]."?".">", ENT_QUOTES|ENT_NOQUOTES, $charset)
+//							.$m[5].$m[2];'
+//					),
+					array('phpQuery', '_phpToMarkupCallback'),
+					$php
+				);
+			}
+		$regex = '@(^|>[^<]*)+?(<\?php(.*?)(\?>))@s';
+//preg_match_all($regex, $php, $matches);
+//var_dump($matches);
+		$php = preg_replace($regex, '\\1<php><!-- \\3 --></php>', $php);
+		return $php;
+	}
+	public static function _phpToMarkupCallback($php, $charset = 'utf-8') {
+		return $m[1].$m[2]
+			.htmlspecialchars("<"."?php".$m[4]."?".">", ENT_QUOTES|ENT_NOQUOTES, $charset)
+			.$m[5].$m[2];
+	}
+	public static function _markupToPHPCallback($m) {
+		return "<"."?php ".htmlspecialchars_decode($m[1])." ?".">";
+	}
+	/**
+	 * Converts document markup containing PHP code generated by phpQuery::php()
+	 * into valid (executable) PHP code syntax.
+	 *
+	 * @param string|phpQueryObject $content
+	 * @return string PHP code.
+	 */
+	public static function markupToPHP($content) {
+		if ($content instanceof phpQueryObject)
+			$content = $content->markupOuter();
+		/* <php>...</php> to <?php...? > */
+		$content = preg_replace_callback(
+			'@<php>\s*<!--(.*?)-->\s*</php>@s',
+//			create_function('$m',
+//				'return "<'.'?php ".htmlspecialchars_decode($m[1])." ?'.'>";'
+//			),
+			array('phpQuery', '_markupToPHPCallback'),
+			$content
+		);
+		/* <node attr='< ?php ? >'> extra space added to save highlighters */
+		$regexes = array(
+			'@(<(?!\\?)(?:[^>]|\\?>)+\\w+\\s*=\\s*)(\')([^\']*)(?:&lt;|%3C)\\?(?:php)?(.*?)(?:\\?(?:&gt;|%3E))([^\']*)\'@s',
+			'@(<(?!\\?)(?:[^>]|\\?>)+\\w+\\s*=\\s*)(")([^"]*)(?:&lt;|%3C)\\?(?:php)?(.*?)(?:\\?(?:&gt;|%3E))([^"]*)"@s',
+		);
+		foreach($regexes as $regex)
+			while (preg_match($regex, $content))
+				$content = preg_replace_callback(
+					$regex,
+					create_function('$m',
+						'return $m[1].$m[2].$m[3]."<?php "
+							.str_replace(
+								array("%20", "%3E", "%09", "&#10;", "&#9;", "%7B", "%24", "%7D", "%22", "%5B", "%5D"),
+								array(" ", ">", "	", "\n", "	", "{", "$", "}", \'"\', "[", "]"),
+								htmlspecialchars_decode($m[4])
+							)
+							." ?>".$m[5].$m[2];'
+					),
+					$content
+				);
+		return $content;
+	}
+	/**
+	 * Creates new document from file $file.
+	 * Chainable.
+	 *
+	 * @param string $file URLs allowed. See File wrapper page at php.net for more supported sources.
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentFile($file, $contentType = null) {
+		$documentID = self::createDocumentWrapper(
+			file_get_contents($file), $contentType
+		);
+		return new phpQueryObject($documentID);
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentFileHTML($file, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocumentFile($file, "text/html{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentFileXML($file, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocumentFile($file, "text/xml{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentFileXHTML($file, $charset = null) {
+		$contentType = $charset
+			? ";charset=$charset"
+			: '';
+		return self::newDocumentFile($file, "application/xhtml+xml{$contentType}");
+	}
+	/**
+	 * Creates new document from markup.
+	 * Chainable.
+	 *
+	 * @param unknown_type $markup
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 */
+	public static function newDocumentFilePHP($file, $contentType = null) {
+		return self::newDocumentPHP(file_get_contents($file), $contentType);
+	}
+	/**
+	 * Reuses existing DOMDocument object.
+	 * Chainable.
+	 *
+	 * @param $document DOMDocument
+	 * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+	 * @TODO support DOMDocument
+	 */
+	public static function loadDocument($document) {
+		// TODO
+		die('TODO loadDocument');
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param unknown_type $html
+	 * @param unknown_type $domId
+	 * @return unknown New DOM ID
+	 * @todo support PHP tags in input
+	 * @todo support passing DOMDocument object from self::loadDocument
+	 */
+	protected static function createDocumentWrapper($html, $contentType = null, $documentID = null) {
+		if (function_exists('domxml_open_mem'))
+			throw new Exception("Old PHP4 DOM XML extension detected. phpQuery won't work until this extension is enabled.");
+//		$id = $documentID
+//			? $documentID
+//			: md5(microtime());
+		$document = null;
+		if ($html instanceof DOMDOCUMENT) {
+			if (self::getDocumentID($html)) {
+				// document already exists in phpQuery::$documents, make a copy
+				$document = clone $html;
+			} else {
+				// new document, add it to phpQuery::$documents
+				$wrapper = new DOMDocumentWrapper($html, $contentType, $documentID);
+			}
+		} else {
+			$wrapper = new DOMDocumentWrapper($html, $contentType, $documentID);
+		}
+//		$wrapper->id = $id;
+		// bind document
+		phpQuery::$documents[$wrapper->id] = $wrapper;
+		// remember last loaded document
+		phpQuery::selectDocument($wrapper->id);
+		return $wrapper->id;
+	}
+	/**
+	 * Extend class namespace.
+	 *
+	 * @param string|array $target
+	 * @param array $source
+	 * @TODO support string $source
+	 * @return unknown_type
+	 */
+	public static function extend($target, $source) {
+		switch($target) {
+			case 'phpQueryObject':
+				$targetRef = &self::$extendMethods;
+				$targetRef2 = &self::$pluginsMethods;
+				break;
+			case 'phpQuery':
+				$targetRef = &self::$extendStaticMethods;
+				$targetRef2 = &self::$pluginsStaticMethods;
+				break;
+			default:
+				throw new Exception("Unsupported \$target type");
+		}
+		if (is_string($source))
+			$source = array($source => $source);
+		foreach($source as $method => $callback) {
+			if (isset($targetRef[$method])) {
+//				throw new Exception
+				self::debug("Duplicate method '{$method}', can\'t extend '{$target}'");
+				continue;
+			}
+			if (isset($targetRef2[$method])) {
+//				throw new Exception
+				self::debug("Duplicate method '{$method}' from plugin '{$targetRef2[$method]}',"
+					." can\'t extend '{$target}'");
+				continue;
+			}
+			$targetRef[$method] = $callback;
+		}
+		return true;
+	}
+	/**
+	 * Extend phpQuery with $class from $file.
+	 *
+	 * @param string $class Extending class name. Real class name can be prepended phpQuery_.
+	 * @param string $file Filename to include. Defaults to "{$class}.php".
+	 */
+	public static function plugin($class, $file = null) {
+		// TODO $class checked agains phpQuery_$class
+//		if (strpos($class, 'phpQuery') === 0)
+//			$class = substr($class, 8);
+		if (in_array($class, self::$pluginsLoaded))
+			return true;
+		if (! $file)
+			$file = $class.'.php';
+		$objectClassExists = class_exists('phpQueryObjectPlugin_'.$class);
+		$staticClassExists = class_exists('phpQueryPlugin_'.$class);
+		if (! $objectClassExists && ! $staticClassExists)
+			require_once($file);
+		self::$pluginsLoaded[] = $class;
+		// static methods
+		if (class_exists('phpQueryPlugin_'.$class)) {
+			$realClass = 'phpQueryPlugin_'.$class;
+			$vars = get_class_vars($realClass);
+			$loop = isset($vars['phpQueryMethods'])
+				&& ! is_null($vars['phpQueryMethods'])
+				? $vars['phpQueryMethods']
+				: get_class_methods($realClass);
+			foreach($loop as $method) {
+				if ($method == '__initialize')
+					continue;
+				if (! is_callable(array($realClass, $method)))
+					continue;
+				if (isset(self::$pluginsStaticMethods[$method])) {
+					throw new Exception("Duplicate method '{$method}' from plugin '{$c}' conflicts with same method from plugin '".self::$pluginsStaticMethods[$method]."'");
+					return;
+				}
+				self::$pluginsStaticMethods[$method] = $class;
+			}
+			if (method_exists($realClass, '__initialize'))
+				call_user_func_array(array($realClass, '__initialize'), array());
+		}
+		// object methods
+		if (class_exists('phpQueryObjectPlugin_'.$class)) {
+			$realClass = 'phpQueryObjectPlugin_'.$class;
+			$vars = get_class_vars($realClass);
+			$loop = isset($vars['phpQueryMethods'])
+				&& ! is_null($vars['phpQueryMethods'])
+				? $vars['phpQueryMethods']
+				: get_class_methods($realClass);
+			foreach($loop as $method) {
+				if (! is_callable(array($realClass, $method)))
+					continue;
+				if (isset(self::$pluginsMethods[$method])) {
+					throw new Exception("Duplicate method '{$method}' from plugin '{$c}' conflicts with same method from plugin '".self::$pluginsMethods[$method]."'");
+					continue;
+				}
+				self::$pluginsMethods[$method] = $class;
+			}
+		}
+		return true;
+	}
+	/**
+	 * Unloades all or specified document from memory.
+	 *
+	 * @param mixed $documentID @see phpQuery::getDocumentID() for supported types.
+	 */
+	public static function unloadDocuments($id = null) {
+		if (isset($id)) {
+			if ($id = self::getDocumentID($id))
+				unset(phpQuery::$documents[$id]);
+		} else {
+			foreach(phpQuery::$documents as $k => $v) {
+				unset(phpQuery::$documents[$k]);
+			}
+		}
+	}
+	/**
+	 * Parses phpQuery object or HTML result against PHP tags and makes them active.
+	 *
+	 * @param phpQuery|string $content
+	 * @deprecated
+	 * @return string
+	 */
+	public static function unsafePHPTags($content) {
+		return self::markupToPHP($content);
+	}
+	public static function DOMNodeListToArray($DOMNodeList) {
+		$array = array();
+		if (! $DOMNodeList)
+			return $array;
+		foreach($DOMNodeList as $node)
+			$array[] = $node;
+		return $array;
+	}
+	/**
+	 * Checks if $input is HTML string, which has to start with '<'.
+	 *
+	 * @deprecated
+	 * @param String $input
+	 * @return Bool
+	 * @todo still used ?
+	 */
+	public static function isMarkup($input) {
+		return ! is_array($input) && substr(trim($input), 0, 1) == '<';
+	}
+	public static function debug($text) {
+		if (self::$debug)
+			print var_dump($text);
+	}
+	/**
+	 * Make an AJAX request.
+	 *
+	 * @param array See $options http://docs.jquery.com/Ajax/jQuery.ajax#toptions
+	 * Additional options are:
+	 * 'document' - document for global events, @see phpQuery::getDocumentID()
+	 * 'referer' - implemented
+	 * 'requested_with' - TODO; not implemented (X-Requested-With)
+	 * @return Zend_Http_Client
+	 * @link http://docs.jquery.com/Ajax/jQuery.ajax
+	 *
+	 * @TODO $options['cache']
+	 * @TODO $options['processData']
+	 * @TODO $options['xhr']
+	 * @TODO $options['data'] as string
+	 * @TODO XHR interface
+	 */
+	public static function ajax($options = array(), $xhr = null) {
+		$options = array_merge(
+			self::$ajaxSettings, $options
+		);
+		$documentID = isset($options['document'])
+			? self::getDocumentID($options['document'])
+			: null;
+		if ($xhr) {
+			// reuse existing XHR object, but clean it up
+			$client = $xhr;
+//			$client->setParameterPost(null);
+//			$client->setParameterGet(null);
+			$client->setAuth(false);
+			$client->setHeaders("If-Modified-Since", null);
+			$client->setHeaders("Referer", null);
+			$client->resetParameters();
+		} else {
+			// create new XHR object
+			require_once('Zend/Http/Client.php');
+			$client = new Zend_Http_Client();
+			$client->setCookieJar();
+		}
+		if (isset($options['timeout']))
+			$client->setConfig(array(
+				'timeout'      => $options['timeout'],
+			));
+//			'maxredirects' => 0,
+		foreach(self::$ajaxAllowedHosts as $k => $host)
+			if ($host == '.' && isset($_SERVER['HTTP_HOST']))
+				self::$ajaxAllowedHosts[$k] = $_SERVER['HTTP_HOST'];
+		$host = parse_url($options['url'], PHP_URL_HOST);
+		if (! in_array($host, self::$ajaxAllowedHosts)) {
+			throw new Exception("Request not permitted, host '$host' not present in "
+				."phpQuery::\$ajaxAllowedHosts");
+		}
+		// JSONP
+		$jsre = "/=\\?(&|$)/";
+		if (isset($options['dataType']) && $options['dataType'] == 'jsonp') {
+			$jsonpCallbackParam = $options['jsonp']
+				? $options['jsonp'] : 'callback';
+			if (strtolower($options['type']) == 'get') {
+				if (! preg_match($jsre, $options['url'])) {
+					$sep = strpos($options['url'], '?')
+						? '&' : '?';
+					$options['url'] .= "$sep$jsonpCallbackParam=?";
+				}
+			} else if ($options['data']) {
+				$jsonp = false;
+				foreach($options['data'] as $n => $v) {
+					if ($v == '?')
+						$jsonp = true;
+				}
+				if (! $jsonp) {
+					$options['data'][$jsonpCallbackParam] = '?';
+				}
+			}
+			$options['dataType'] = 'json';
+		}
+		if (isset($options['dataType']) && $options['dataType'] == 'json') {
+			$jsonpCallback = 'json_'.md5(microtime());
+			$jsonpData = $jsonpUrl = false;
+			if ($options['data']) {
+				foreach($options['data'] as $n => $v) {
+					if ($v == '?')
+						$jsonpData = $n;
+				}
+			}
+			if (preg_match($jsre, $options['url']))
+				$jsonpUrl = true;
+			if ($jsonpData !== false || $jsonpUrl) {
+				// remember callback name for httpData()
+				$options['_jsonp'] = $jsonpCallback;
+				if ($jsonpData !== false)
+					$options['data'][$jsonpData] = $jsonpCallback;
+				if ($jsonpUrl)
+					$options['url'] = preg_replace($jsre, "=$jsonpCallback\\1", $options['url']);
+			}
+		}
+		$client->setUri($options['url']);
+		$client->setMethod(strtoupper($options['type']));
+		if (isset($options['referer']) && $options['referer'])
+			$client->setHeaders('Referer', $options['referer']);
+		$client->setHeaders(array(
+//			'content-type' => $options['contentType'],
+			'User-Agent' => 'Mozilla/5.0 (X11; U; Linux x86; en-US; rv:1.9.0.5) Gecko'
+				 .'/2008122010 Firefox/3.0.5',
+	 		// TODO custom charset
+			'Accept-Charset' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
+// 	 		'Connection' => 'keep-alive',
+// 			'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
+	 		'Accept-Language' => 'en-us,en;q=0.5',
+		));
+		if ($options['username'])
+			$client->setAuth($options['username'], $options['password']);
+		if (isset($options['ifModified']) && $options['ifModified'])
+			$client->setHeaders("If-Modified-Since",
+				self::$lastModified
+					? self::$lastModified
+					: "Thu, 01 Jan 1970 00:00:00 GMT"
+			);
+		$client->setHeaders("Accept",
+			isset($options['dataType'])
+			&& isset(self::$ajaxSettings['accepts'][ $options['dataType'] ])
+				? self::$ajaxSettings['accepts'][ $options['dataType'] ].", */*"
+				: self::$ajaxSettings['accepts']['_default']
+		);
+		// TODO $options['processData']
+		if ($options['data'] instanceof phpQueryObject) {
+			$serialized = $options['data']->serializeArray($options['data']);
+			$options['data'] = array();
+			foreach($serialized as $r)
+				$options['data'][ $r['name'] ] = $r['value'];
+		}
+		if (strtolower($options['type']) == 'get') {
+			$client->setParameterGet($options['data']);
+		} else if (strtolower($options['type']) == 'post') {
+			$client->setEncType($options['contentType']);
+			$client->setParameterPost($options['data']);
+		}
+		if (self::$active == 0 && $options['global'])
+			phpQueryEvents::trigger($documentID, 'ajaxStart');
+		self::$active++;
+		// beforeSend callback
+		if (isset($options['beforeSend']) && $options['beforeSend'])
+			phpQuery::callbackRun($options['beforeSend'], array($client));
+		// ajaxSend event
+		if ($options['global'])
+			phpQueryEvents::trigger($documentID, 'ajaxSend', array($client, $options));
+		if (phpQuery::$debug) {
+			self::debug("{$options['type']}: {$options['url']}\n");
+			self::debug("Options: <pre>".var_export($options, true)."</pre>\n");
+//			if ($client->getCookieJar())
+//				self::debug("Cookies: <pre>".var_export($client->getCookieJar()->getMatchingCookies($options['url']), true)."</pre>\n");
+		}
+		// request
+		$response = $client->request();
+		if (phpQuery::$debug) {
+			self::debug('Status: '.$response->getStatus().' / '.$response->getMessage());
+			self::debug($client->getLastRequest());
+			self::debug($response->getHeaders());
+		}
+		if ($response->isSuccessful()) {
+			// XXX tempolary
+			self::$lastModified = $response->getHeader('Last-Modified');
+			$data = self::httpData($response->getBody(), $options['dataType'], $options);
+			if (isset($options['success']) && $options['success'])
+				phpQuery::callbackRun($options['success'], array($data, $response->getStatus(), $options));
+			if ($options['global'])
+				phpQueryEvents::trigger($documentID, 'ajaxSuccess', array($client, $options));
+		} else {
+			if (isset($options['error']) && $options['error'])
+				phpQuery::callbackRun($options['error'], array($client, $response->getStatus(), $response->getMessage()));
+			if ($options['global'])
+				phpQueryEvents::trigger($documentID, 'ajaxError', array($client, /*$response->getStatus(),*/$response->getMessage(), $options));
+		}
+		if (isset($options['complete']) && $options['complete'])
+			phpQuery::callbackRun($options['complete'], array($client, $response->getStatus()));
+		if ($options['global'])
+			phpQueryEvents::trigger($documentID, 'ajaxComplete', array($client, $options));
+		if ($options['global'] && ! --self::$active)
+			phpQueryEvents::trigger($documentID, 'ajaxStop');
+		return $client;
+//		if (is_null($domId))
+//			$domId = self::$defaultDocumentID ? self::$defaultDocumentID : false;
+//		return new phpQueryAjaxResponse($response, $domId);
+	}
+	protected static function httpData($data, $type, $options) {
+		if (isset($options['dataFilter']) && $options['dataFilter'])
+			$data = self::callbackRun($options['dataFilter'], array($data, $type));
+		if (is_string($data)) {
+			if ($type == "json") {
+				if (isset($options['_jsonp']) && $options['_jsonp']) {
+					$data = preg_replace('/^\s*\w+\((.*)\)\s*$/s', '$1', $data);
+				}
+				$data = self::parseJSON($data);
+			}
+		}
+		return $data;
+	}
+	/**
+	 * Enter description here...
+	 *
+	 * @param array|phpQuery $data
+	 *
+	 */
+	public static function param($data) {
+		return http_build_query($data, null, '&');
+	}
+	public static function get($url, $data = null, $callback = null, $type = null) {
+		if (!is_array($data)) {
+			$callback = $data;
+			$data = null;
+		}
+		// TODO some array_values on this shit
+		return phpQuery::ajax(array(
+			'type' => 'GET',
+			'url' => $url,
+			'data' => $data,
+			'success' => $callback,
+			'dataType' => $type,
+		));
+	}
+	public static function post($url, $data = null, $callback = null, $type = null) {
+		if (!is_array($data)) {
+			$callback = $data;
+			$data = null;
+		}
+		return phpQuery::ajax(array(
+			'type' => 'POST',
+			'url' => $url,
+			'data' => $data,
+			'success' => $callback,
+			'dataType' => $type,
+		));
+	}
+	public static function getJSON($url, $data = null, $callback = null) {
+		if (!is_array($data)) {
+			$callback = $data;
+			$data = null;
+		}
+		// TODO some array_values on this shit
+		return phpQuery::ajax(array(
+			'type' => 'GET',
+			'url' => $url,
+			'data' => $data,
+			'success' => $callback,
+			'dataType' => 'json',
+		));
+	}
+	public static function ajaxSetup($options) {
+		self::$ajaxSettings = array_merge(
+			self::$ajaxSettings,
+			$options
+		);
+	}
+	public static function ajaxAllowHost($host1, $host2 = null, $host3 = null) {
+		$loop = is_array($host1)
+			? $host1
+			: func_get_args();
+		foreach($loop as $host) {
+			if ($host && ! in_array($host, phpQuery::$ajaxAllowedHosts)) {
+				phpQuery::$ajaxAllowedHosts[] = $host;
+			}
+		}
+	}
+	public static function ajaxAllowURL($url1, $url2 = null, $url3 = null) {
+		$loop = is_array($url1)
+			? $url1
+			: func_get_args();
+		foreach($loop as $url)
+			phpQuery::ajaxAllowHost(parse_url($url, PHP_URL_HOST));
+	}
+	/**
+	 * Returns JSON representation of $data.
+	 *
+	 * @static
+	 * @param mixed $data
+	 * @return string
+	 */
+	public static function toJSON($data) {
+		if (function_exists('json_encode'))
+			return json_encode($data);
+		require_once('Zend/Json/Encoder.php');
+		return Zend_Json_Encoder::encode($data);
+	}
+	/**
+	 * Parses JSON into proper PHP type.
+	 *
+	 * @static
+	 * @param string $json
+	 * @return mixed
+	 */
+	public static function parseJSON($json) {
+		if (function_exists('json_decode')) {
+			$return = json_decode(trim($json), true);
+			// json_decode and UTF8 issues
+			if (isset($return))
+				return $return;
+		}
+		require_once('Zend/Json/Decoder.php');
+		return Zend_Json_Decoder::decode($json);
+	}
+	/**
+	 * Returns source's document ID.
+	 *
+	 * @param $source DOMNode|phpQueryObject
+	 * @return string
+	 */
+	public static function getDocumentID($source) {
+		if ($source instanceof DOMDOCUMENT) {
+			foreach(phpQuery::$documents as $id => $document) {
+				if ($source->isSameNode($document->document))
+					return $id;
+			}
+		} else if ($source instanceof DOMNODE) {
+			foreach(phpQuery::$documents as $id => $document) {
+				if ($source->ownerDocument->isSameNode($document->document))
+					return $id;
+			}
+		} else if ($source instanceof phpQueryObject)
+			return $source->getDocumentID();
+		else if (is_string($source) && isset(phpQuery::$documents[$source]))
+			return $source;
+	}
+	/**
+	 * Get DOMDocument object related to $source.
+	 * Returns null if such document doesn't exist.
+	 *
+	 * @param $source DOMNode|phpQueryObject|string
+	 * @return string
+	 */
+	public static function getDOMDocument($source) {
+		if ($source instanceof DOMDOCUMENT)
+			return $source;
+		$source = self::getDocumentID($source);
+		return $source
+			? self::$documents[$id]['document']
+			: null;
+	}
+
+	// UTILITIES
+	// http://docs.jquery.com/Utilities
+
+	/**
+	 *
+	 * @return unknown_type
+	 * @link http://docs.jquery.com/Utilities/jQuery.makeArray
+	 */
+	public static function makeArray($obj) {
+		$array = array();
+		if (is_object($object) && $object instanceof DOMNODELIST) {
+			foreach($object as $value)
+				$array[] = $value;
+		} else if (is_object($object) && ! ($object instanceof Iterator)) {
+			foreach(get_object_vars($object) as $name => $value)
+				$array[0][$name] = $value;
+		} else {
+			foreach($object as $name => $value)
+				$array[0][$name] = $value;
+		}
+		return $array;
+	}
+	public static function inArray($value, $array) {
+		return in_array($value, $array);
+	}
+	/**
+	 *
+	 * @param $object
+	 * @param $callback
+	 * @return unknown_type
+	 * @link http://docs.jquery.com/Utilities/jQuery.each
+	 */
+	public static function each($object, $callback, $param1 = null, $param2 = null, $param3 = null) {
+		$paramStructure = null;
+		if (func_num_args() > 2) {
+			$paramStructure = func_get_args();
+			$paramStructure = array_slice($paramStructure, 2);
+		}
+		if (is_object($object) && ! ($object instanceof Iterator)) {
+			foreach(get_object_vars($object) as $name => $value)
+				phpQuery::callbackRun($callback, array($name, $value), $paramStructure);
+		} else {
+			foreach($object as $name => $value)
+				phpQuery::callbackRun($callback, array($name, $value), $paramStructure);
+		}
+	}
+	/**
+	 *
+	 * @link http://docs.jquery.com/Utilities/jQuery.map
+	 */
+	public static function map($array, $callback, $param1 = null, $param2 = null, $param3 = null) {
+		$result = array();
+		$paramStructure = null;
+		if (func_num_args() > 2) {
+			$paramStructure = func_get_args();
+			$paramStructure = array_slice($paramStructure, 2);
+		}
+		foreach($array as $v) {
+			$vv = phpQuery::callbackRun($callback, array($v), $paramStructure);
+//			$callbackArgs = $args;
+//			foreach($args as $i => $arg) {
+//				$callbackArgs[$i] = $arg instanceof CallbackParam
+//					? $v
+//					: $arg;
+//			}
+//			$vv = call_user_func_array($callback, $callbackArgs);
+			if (is_array($vv))  {
+				foreach($vv as $vvv)
+					$result[] = $vvv;
+			} else if ($vv !== null) {
+				$result[] = $vv;
+			}
+		}
+		return $result;
+	}
+	/**
+	 *
+	 * @param $callback Callback
+	 * @param $params
+	 * @param $paramStructure
+	 * @return unknown_type
+	 */
+	public static function callbackRun($callback, $params = array(), $paramStructure = null) {
+		if (! $callback)
+			return;
+		if ($callback instanceof CallbackParameterToReference) {
+			// TODO support ParamStructure to select which $param push to reference
+			if (isset($params[0]))
+				$callback->callback = $params[0];
+			return true;
+		}
+		if ($callback instanceof Callback) {
+			$paramStructure = $callback->params;
+			$callback = $callback->callback;
+		}
+		if (! $paramStructure)
+			return call_user_func_array($callback, $params);
+		$p = 0;
+		foreach($paramStructure as $i => $v) {
+			$paramStructure[$i] = $v instanceof CallbackParam
+				? $params[$p++]
+				: $v;
+		}
+		return call_user_func_array($callback, $paramStructure);
+	}
+	/**
+	 * Merge 2 phpQuery objects.
+	 * @param array $one
+	 * @param array $two
+	 * @protected
+	 * @todo node lists, phpQueryObject
+	 */
+	public static function merge($one, $two) {
+		$elements = $one->elements;
+		foreach($two->elements as $node) {
+			$exists = false;
+			foreach($elements as $node2) {
+				if ($node2->isSameNode($node))
+					$exists = true;
+			}
+			if (! $exists)
+				$elements[] = $node;
+		}
+		return $elements;
+//		$one = $one->newInstance();
+//		$one->elements = $elements;
+//		return $one;
+	}
+	/**
+	 *
+	 * @param $array
+	 * @param $callback
+	 * @param $invert
+	 * @return unknown_type
+	 * @link http://docs.jquery.com/Utilities/jQuery.grep
+	 */
+	public static function grep($array, $callback, $invert = false) {
+		$result = array();
+		foreach($array as $k => $v) {
+			$r = call_user_func_array($callback, array($v, $k));
+			if ($r === !(bool)$invert)
+				$result[] = $v;
+		}
+		return $result;
+	}
+	public static function unique($array) {
+		return array_unique($array);
+	}
+	/**
+	 *
+	 * @param $function
+	 * @return unknown_type
+	 * @TODO there are problems with non-static methods, second parameter pass it
+	 * 	but doesnt verify is method is really callable
+	 */
+	public static function isFunction($function) {
+		return is_callable($function);
+	}
+	public static function trim($str) {
+		return trim($str);
+	}
+	/* PLUGINS NAMESPACE */
+	/**
+	 *
+	 * @param $url
+	 * @param $callback
+	 * @param $param1
+	 * @param $param2
+	 * @param $param3
+	 * @return phpQueryObject
+	 */
+	public static function browserGet($url, $callback, $param1 = null, $param2 = null, $param3 = null) {
+		if (self::plugin('WebBrowser')) {
+			$params = func_get_args();
+			return self::callbackRun(array(self::$plugins, 'browserGet'), $params);
+		} else {
+			self::debug('WebBrowser plugin not available...');
+		}
+	}
+	/**
+	 *
+	 * @param $url
+	 * @param $data
+	 * @param $callback
+	 * @param $param1
+	 * @param $param2
+	 * @param $param3
+	 * @return phpQueryObject
+	 */
+	public static function browserPost($url, $data, $callback, $param1 = null, $param2 = null, $param3 = null) {
+		if (self::plugin('WebBrowser')) {
+			$params = func_get_args();
+			return self::callbackRun(array(self::$plugins, 'browserPost'), $params);
+		} else {
+			self::debug('WebBrowser plugin not available...');
+		}
+	}
+	/**
+	 *
+	 * @param $ajaxSettings
+	 * @param $callback
+	 * @param $param1
+	 * @param $param2
+	 * @param $param3
+	 * @return phpQueryObject
+	 */
+	public static function browser($ajaxSettings, $callback, $param1 = null, $param2 = null, $param3 = null) {
+		if (self::plugin('WebBrowser')) {
+			$params = func_get_args();
+			return self::callbackRun(array(self::$plugins, 'browser'), $params);
+		} else {
+			self::debug('WebBrowser plugin not available...');
+		}
+	}
+	/**
+	 *
+	 * @param $code
+	 * @return string
+	 */
+	public static function php($code) {
+		return self::code('php', $code);
+	}
+	/**
+	 *
+	 * @param $type
+	 * @param $code
+	 * @return string
+	 */
+	public static function code($type, $code) {
+		return "<$type><!-- ".trim($code)." --></$type>";
+	}
+
+	public static function __callStatic($method, $params) {
+		return call_user_func_array(
+			array(phpQuery::$plugins, $method),
+			$params
+		);
+	}
+	protected static function dataSetupNode($node, $documentID) {
+		// search are return if alredy exists
+		foreach(phpQuery::$documents[$documentID]->dataNodes as $dataNode) {
+			if ($node->isSameNode($dataNode))
+				return $dataNode;
+		}
+		// if doesn't, add it
+		phpQuery::$documents[$documentID]->dataNodes[] = $node;
+		return $node;
+	}
+	protected static function dataRemoveNode($node, $documentID) {
+		// search are return if alredy exists
+		foreach(phpQuery::$documents[$documentID]->dataNodes as $k => $dataNode) {
+			if ($node->isSameNode($dataNode)) {
+				unset(self::$documents[$documentID]->dataNodes[$k]);
+				unset(self::$documents[$documentID]->data[ $dataNode->dataID ]);
+			}
+		}
+	}
+	public static function data($node, $name, $data, $documentID = null) {
+		if (! $documentID)
+			// TODO check if this works
+			$documentID = self::getDocumentID($node);
+		$document = phpQuery::$documents[$documentID];
+		$node = self::dataSetupNode($node, $documentID);
+		if (! isset($node->dataID))
+			$node->dataID = ++phpQuery::$documents[$documentID]->uuid;
+		$id = $node->dataID;
+		if (! isset($document->data[$id]))
+			$document->data[$id] = array();
+		if (! is_null($data))
+			$document->data[$id][$name] = $data;
+		if ($name) {
+			if (isset($document->data[$id][$name]))
+				return $document->data[$id][$name];
+		} else
+			return $id;
+	}
+	public static function removeData($node, $name, $documentID) {
+		if (! $documentID)
+			// TODO check if this works
+			$documentID = self::getDocumentID($node);
+		$document = phpQuery::$documents[$documentID];
+		$node = self::dataSetupNode($node, $documentID);
+		$id = $node->dataID;
+		if ($name) {
+			if (isset($document->data[$id][$name]))
+				unset($document->data[$id][$name]);
+			$name = null;
+			foreach($document->data[$id] as $name)
+				break;
+			if (! $name)
+				self::removeData($node, $name, $documentID);
+		} else {
+			self::dataRemoveNode($node, $documentID);
+		}
+	}
+}
+/**
+ * Plugins static namespace class.
+ *
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ * @todo move plugin methods here (as statics)
+ */
+class phpQueryPlugins {
+	public function __call($method, $args) {
+		if (isset(phpQuery::$extendStaticMethods[$method])) {
+			$return = call_user_func_array(
+				phpQuery::$extendStaticMethods[$method],
+				$args
+			);
+		} else if (isset(phpQuery::$pluginsStaticMethods[$method])) {
+			$class = phpQuery::$pluginsStaticMethods[$method];
+			$realClass = "phpQueryPlugin_$class";
+			$return = call_user_func_array(
+				array($realClass, $method),
+				$args
+			);
+			return isset($return)
+				? $return
+				: $this;
+		} else
+			throw new Exception("Method '{$method}' doesnt exist");
+	}
+}
+/**
+ * Shortcut to phpQuery::pq($arg1, $context)
+ * Chainable.
+ *
+ * @see phpQuery::pq()
+ * @return phpQueryObject|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
+ * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
+ * @package phpQuery
+ */
+function pq($arg1, $context = null) {
+	$args = func_get_args();
+	return call_user_func_array(
+		array('phpQuery', 'pq'),
+		$args
+	);
+}
+// add plugins dir and Zend framework to include path
+set_include_path(
+	get_include_path()
+		.PATH_SEPARATOR.dirname(__FILE__).'/phpQuery/'
+		.PATH_SEPARATOR.dirname(__FILE__).'/phpQuery/plugins/'
+);
+// why ? no __call nor __get for statics in php...
+// XXX __callStatic will be available in PHP 5.3
+phpQuery::$plugins = new phpQueryPlugins();
+// include bootstrap file (personal library config)
+if (file_exists(dirname(__FILE__).'/phpQuery/bootstrap.php'))
+	require_once dirname(__FILE__).'/phpQuery/bootstrap.php';

--- a/admin/partialdata/scraper.php
+++ b/admin/partialdata/scraper.php
@@ -1,6 +1,6 @@
 <?php
 date_default_timezone_set('Australia/Melbourne');
-
+$split = false;
 function format_bytes($size) {
     $units = array(' B', ' KB', ' MB', ' GB', ' TB');
     for ($i = 0; $size >= 1024 && $i < 4; $i++) $size /= 1024;
@@ -9,15 +9,20 @@
 
 $days = 4;
 if (isset($_REQUEST['days'])) $days = $_REQUEST['days'];
-$startDate = strtotime("18-Nov-2007");
+$startDate = strtotime("05-Jun-2008");
 if (isset($_REQUEST['startDate'])) $startDate = $_REQUEST['startDate'];
+
 function getFile($startDate, $days, $minVal, $maxVal) {
+global $split;
 	$endDate = strtotime(date("Y-m-d", $startDate)." +".$days." days");
 $file = date("dMY",$startDate).'to'.date("dMY",$endDate).'val'.$minVal.'to'.$maxVal.'.xls';
 echo "Fetching $file ($days days) ($minVal < value < $maxVal )... ";
 $url = "https://www.tenders.gov.au/?event=public.advancedsearch.CNSONRedirect&type=cnEvent&atmType=archived%2Cclosed%2Cpublished%2Cproposed&agencyUUID=&agencyStatus=-1&portfolioUUID=&keyword=&KeywordTypeSearch=AllWord&CNID=&dateType=Publish+Date&dateStart=".date("d-M-Y",$startDate)."&dateEnd=".date("d-M-Y",$endDate)."&supplierName=&supplierABN=&valueFrom=".$minVal."&valueTo=".$maxVal."&ATMID=&AgencyRefId=&consultancy=&download=Download+results";
 echo "<!-- $url -->";
 $current = file_get_contents($url);
+if (strpos($current,"There are no results that match your selection.")> 0 ) { 
+ echo "<font color=red>Empty file!</font><br>";
+}
 if (strpos($current,"Your search returned more than 1000 results.") === false) {
 	file_put_contents($file, $current);
 	echo "$file saved<br>";
@@ -26,24 +31,44 @@
 		echo '<a href="?startDate='.$endDate.'&days='.($days*2).'">Load next '.($days*2).' days </a><br>';
 	echo '<a href="?startDate='.$endDate.'&days='.$days.'&split=yes">Load next '.($days).' days with split</a><br>';
 	flush();
+if (!isset($_REQUEST['split']) && !$split) {
+echo "Success so fetching next $days... <br>";
+getFile($endDate, $days, "" , "");
+}
 	return true;
 } else  {
 	echo "<font color=red>Too many records!</font><br>";
 	echo '<a href="?startDate='.$startDate.'&days='.floor($days/2).'">Load '.($days/2).' days instead?</a><br>';
 		echo '<a href="?startDate='.$startDate.'&days='.$days.'&split=yes">Split instead?</a><br>';
 	flush();
+if (!isset($_REQUEST['split']) && !$split) {
+echo "Failure so splitting ... <br>";
+ doSplit($startDate, $days);
+}
 	return false;
 }
 }
+function doSplit($startDate, $days) {
+global $split;
+$split = true;
+set_time_limit(20);
+getFile($startDate, $days, 0, 12000);
+getFile($startDate, $days, 12000, 16000);
+ getFile($startDate, $days, 16000, 20000);
+ getFile($startDate, $days, 20000, 30000);
+ getFile($startDate, $days, 30000, 40000);
+// getFile($startDate, $days, 40000, 80000);
+ getFile($startDate, $days, 40000, 60000);
+ getFile($startDate, $days, 60000, 80000);
+// getFile($startDate, $days, 80000, 300000);
+ getFile($startDate, $days, 80000, 150000);
+ getFile($startDate, $days, 150000, 300000);
+ getFile($startDate, $days, 300000, 999999999);
+}
 if (isset($_REQUEST['split'])) {
-	getFile($startDate, $days, 0, 16000);
-	getFile($startDate, $days, 16000, 20000);
-getFile($startDate, $days, 20000, 30000);
-getFile($startDate, $days, 30000, 40000);
- getFile($startDate, $days, 40000, 80000);
- getFile($startDate, $days, 80000, 300000);
- getFile($startDate, $days, 300000, 999999999);
+	doSplit($startDate, $days);
 } else {
 	getFile($startDate, $days, "" , "");
 }
 ?>
+

--- /dev/null
+++ b/admin/partialdata/scrapesingle.php
@@ -1,1 +1,881 @@
-
+<?php
+include_once ("../../lib/common.inc.php");
+
+$cnid = 1234;
+// http://www.lastcraft.com/browser_documentation.php
+// http://code.google.com/p/phpquery/
+require('phpQuery-onefile.php');
+function dom_to_array($root) 
+{ 
+    $result = array(); 
+
+    if ($root->hasAttributes()) 
+    { 
+        $attrs = $root->attributes; 
+
+        foreach ($attrs as $i => $attr) 
+            $result[$attr->name] = $attr->value; 
+    } 
+
+    $children = $root->childNodes; 
+if ($root->childNodes) {
+    if ($children->length == 1) 
+    { 
+        $child = $children->item(0); 
+
+        if ($child->nodeType == XML_TEXT_NODE) 
+        { 
+            $result['_value'] = $child->nodeValue; 
+
+            if (count($result) == 1) 
+                return $result['_value']; 
+            else 
+                return $result; 
+        } 
+    } 
+
+    $group = array(); 
+
+    for($i = 0; $i < $children->length; $i++) 
+    { 
+        $child = $children->item($i); 
+
+        if (!isset($result[$child->nodeName])) 
+            $result[$child->nodeName] = dom_to_array($child); 
+        else 
+        { 
+            if (!isset($group[$child->nodeName])) 
+            { 
+                $tmp = $result[$child->nodeName]; 
+                $result[$child->nodeName] = array($tmp); 
+                $group[$child->nodeName] = 1; 
+            } 
+
+            $result[$child->nodeName][] = dom_to_array($child); 
+        } 
+    } 
+}
+
+    return $result; 
+} 
+
+$site = "https://www.tenders.gov.au/";
+//$cn = phpQuery::newDocument(file_get_contents("https://www.tenders.gov.au/?event=public.advancedsearch.keyword&keyword=CN".$cnid));
+$searchResult = phpQuery::newDocument('<table class="four-col">
+		<tbody><tr>
+			<th>CN ID</th>
+			
+			<td><a href="/?event=public.cn.view&amp;CNUUID=BB3B13EA-A700-39A5-F003088ACF798AF9">CN1234</a></td>
+			
+				<th>
+				</th><td>
+			
+		</td></tr>
+		<tr>
+			<th>Agency</th>
+			<td colspan="3">Department of Veterans Affairs</td>
+		</tr>
+		<tr>
+			<th>Publish Date</th>
+			<td colspan="3"> 18-Aug-2006 </td>
+		</tr>
+	
+		<tr>
+			<th>Category</th>
+			<td colspan="3">Computer services</td>
+		</tr>
+		
+		<tr>
+			<th>Contract Period</th>
+			<td colspan="3"> 1-Aug-2006  to 31-Jul-2007 </td>
+		</tr>
+		<tr>
+			<th>Contract Value (AUD)</th>
+			<td colspan="3"> $156,200.00 </td>
+		</tr>
+		
+		<tr>
+			<th>Supplier Name</th>
+			<td colspan="3">WIZARD INFORMATION SERVICES PTY LTD</td>
+		</tr>
+		<tr>
+			<th></th>
+			<td colspan="3">
+				<p>
+					<span class="last-updated"><strong>Last Updated:</strong> 18-Aug-2006 4:51 pm  (ACT Local time)</span>
+					
+					<strong><a href="/?event=public.cn.view&amp;CNUUID=BB3B13EA-A700-39A5-F003088ACF798AF9">Full Details</a></strong>
+					
+				</p>
+			</td>
+		</tr>
+	</tbody></table>');
+foreach(pq('a') as $a) {
+	if (strpos($a->getAttribute("href"),"public.cn.view") >0 ) echo  $a->getAttribute("href");
+	break;
+}
+$cn = phpQuery::newDocument('
+
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<html lang="en-AU">
+
+<head>
+
+	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+
+	<title>AusTender: Contract Notice View - CN1234</title>
+
+	
+
+	<meta name="language" content="en-AU">
+
+	<meta name="description" content="AusTender provides centralised publication of Australian Government business opportunities, annual procurement plans, multi-use lists and contracts awarded.">
+
+	<meta name="keywords" content="tenders, australian government tenders, austender, austenders, australian tenders, federal government tenders">
+
+
+
+	<link rel="stylesheet" type="text/css" href="/styles/styles_frontend_main.css" media="all">
+
+	<link rel="stylesheet" type="text/css" href="/styles/styles_frontend_print.css" media="print">
+
+	<link rel="stylesheet" type="text/css" href="/styles/styles_reports.css" media="all">
+
+	<link rel="stylesheet" href="/styles/calendar-atii.css" type="text/css" media="all">
+
+	<link rel="shortcut icon" href="/favicon.ico">
+
+	
+
+	
+
+</head>
+
+
+
+<body>
+
+
+
+<div id="header">
+
+	<a href="/"><img src="/images/header_logo.gif" alt="AusTender - The Australian Government Tender System"></a>
+
+</div>
+
+
+
+<form action="./" method="get" id="header-tools" onSubmit="return (this.keyword.value.length != 0)">
+
+	
+
+	<input
+
+		name="event"
+
+		id="form-event"
+
+		type="hidden"
+
+		value="public.advancedsearch.keyword"
+
+		>
+
+
+
+	<a href="/?event=public.home" id="home-link">Home</a>
+
+	<label class="hidden" for="search-text">Search</label>
+
+	<input type="text" value="" name="keyword" id="search-text">
+
+	<input type="submit" value="Search" id="search-submit">
+
+	<a href="?event=public.advancedsearch.home">Advanced Search</a>
+
+</form>
+
+
+
+<div id="left-col-wrapper">
+
+<div id="left-col"><div class="pad">
+
+	
+
+<form action="?event=public.login" method="post" enctype="multipart/form-data" id="login-form">
+
+	<label for="login-username">Username</label> (email)
+
+	<br>
+
+	<input type="text" name="pub-auth-username" id="login-username" value="">
+
+
+
+	<label for="login-password">Password</label>
+
+	<br>
+
+	<input type="password" name="pub-auth-password" id="login-password" value="">
+
+	<input type="Submit" value="Login" id="login-submit">
+
+
+
+	<p>
+
+		&raquo; <a href="?event=public.registereduser.forgotPassFormStep1">Forgotten password?</a>
+
+		<br>
+
+		&raquo; <a href="?event=public.registereduser.new">New user registration</a>
+
+	</p>
+
+
+
+</form> 
+
+			<h2>View</h2>
+
+		
+
+			<ul>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.atmproposed.list" title="Information about potential procurements prior to their release to the market">Pre-Release Notices</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.ATM.list" title="Business opportunities that are currently out to the market">Current ATMs</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.ATM.closed" title="Business opportunities that have closed in the last 30 days">Closed ATMs</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.CN.search" title="Notices of contracts awarded to suppliers">Contract Notices</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.SON.search" title="Notices of standing arrangements with suppliers, including panels and period contracts">Standing Offer Notices</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.MUL.list" title="Multi-Use Lists (MULs) currently open for applications for inclusion">Current Multi-Use Lists</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.MUL.closed" title="Multi-Use Lists (MULs) that have closed in the last 30 days">Closed Multi-Use Lists</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.APP.list" title="Agencies Planned Procurements for the latest financial year">Procurement Plans</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.reports.list" title="A list of standard reports on various types of procurement information">Reports</a>
+
+				</li>
+
+			
+
+			</ul>
+
+		
+
+			<h2>Info &amp; Links</h2>
+
+		
+
+			<ul>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.agency.list" title="A Link to Australian Government agency and department corporate addresses">Agency Addresses</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.relatedlink.list" title="Links to other procurement related websites, national and international">Related Links</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.help.list" title="A list of frequently asked questions and a link to download the AusTender Public User Guide">Help</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.contactus.show" title="Contact information for the AusTender Help Desk">Contact Us</a>
+
+				</li>
+
+			
+
+			</ul>
+
+		
+
+			<h2>Policies</h2>
+
+		
+
+			<ul>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.policydocs.list" title="Links to Australian Government procurement policy information">Policy Documents</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.document.list" title="Australian Government standard form contracts, templates and procurement related guidance">Procurement Document Library</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.termsOfUse" title="Conditions of use for both the AusTender website and ATM document distribution">Terms of Use</a>
+
+				</li>
+
+			
+
+					<li>
+
+				
+
+					<a href="?event=public.privacyStatement" title="The terms under which we manage information relating to and provided by AusTender Registered Users">Privacy Statement</a>
+
+				</li>
+
+			
+
+			</ul>
+
+		
+
+</div></div>
+
+
+
+</div>
+
+
+
+
+
+
+
+
+
+<div id="main-content"><div class="pad">
+
+	
+
+<ol id="bread-crumbs">
+
+	
+
+			<li class="first-item">
+
+				<a href="./?event=public.home">Home</a>
+
+			</li>
+
+		
+
+	<li> Contract Notice View - CN1234</li>
+
+</ol>
+
+
+
+
+
+	<h1> Contract Notice View - CN1234</h1>
+
+
+
+	
+
+		<div id="container">
+
+        
+
+
+
+<div class="content">
+
+
+
+	<div id="intro">
+
+		<span><p><span>AusTender holds Contract and Standing Offer Notices for the 07/08 financial year forward. For information related to previous years, please contact the AusTender Help Desk.</span></p><span><p><strong><span>Subcontractors:&nbsp; For Commonwealth contracts that started on or after 1 December 2008, agencies are required to provide the names of any associated subcontractors on request.&nbsp; Information&nbsp;on subcontractors&nbsp;can be&nbsp;sought&nbsp;</span><span>directly from the relevant agency through the&nbsp;Agency Contact listed in each Contract Notice.</span></strong></p></span></span> 
+
+	</div>
+
+
+
+</div>
+
+
+
+		</div>
+
+	<h2 class="highlight">IMU Contract Programmer: IMU-ICT040 (GAPS ID: 1611946)</h2>
+
+
+
+<table>
+
+	<tr>
+
+		<th>CN ID</th>
+
+		
+
+		<td>CN1234</td>
+
+		
+
+	</tr>
+
+	<tr>
+
+		<th>Agency</th>
+
+		<td>Department of Veterans Affairs</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Publish Date</th>
+
+		<td> 18-Aug-2006 </td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Category</th>
+
+		<td>Computer services</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Contract Period</th>
+
+		<td>
+
+			1-Aug-2006  to 31-Jul-2007 
+
+		</td>
+
+	</tr>	
+
+		<tr>
+
+			<th>Contract Value (AUD)</th>
+
+		<td>
+
+			$156,200.00 
+
+		</td>
+
+		</tr>
+
+	
+
+	<tr>
+
+		<th>Description</th>
+
+		<td>IMU Contract Programmer: IMU-ICT040 (GAPS ID: 1611946)</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Procurement Method</th>
+
+		<td>Open</td>
+
+	</tr>
+
+	
+
+
+
+	<tr>
+
+		<th>Confidentiality - Contract</th>
+
+		<td>
+
+			
+
+		</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Confidentiality - Outputs</th>
+
+		<td>
+
+			No 
+
+		</td>
+
+	</tr>
+
+	
+
+			<tr>
+
+				<th>Consultancy</th>
+
+				<td>No</td>
+
+			</tr>
+
+		
+
+
+
+</table>
+
+
+
+<h2>Supplier Details</h2>
+
+<table>
+
+	<tr>
+
+		<th>Name</th>
+
+		<td>
+
+			WIZARD INFORMATION SERVICES PTY LTD 
+
+		</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Postal Address</th>
+
+		<td>GPO Box 2700</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Town/City</th>
+
+		<td>CANBERRA CITY</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Postcode</th>
+
+		<td>2601</td>
+
+	</tr>
+
+	<tr>
+
+		<th>State/Territory</th>
+
+		<td>ACT</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Country</th>
+
+		<td>Australia</td>
+
+	</tr>
+
+	<tr>
+
+		<th>ABN</th>		
+
+		<td>
+
+			47 008 617 561 
+
+		</td>
+
+		
+
+	</tr>
+
+</table>
+
+
+
+
+
+
+
+<h2>Agency Details</h2>
+
+
+
+<table class="medium-th">
+
+	<tr>
+
+		<th>Contact Name/th>
+
+		<td>Monico, Raymond J</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Contact Phone</th>
+
+		<td>(02) 6289 6016</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Branch</th>
+
+		<td>Information Management Unit</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Division</th>
+
+		<td>National Office Compensation Division</td>
+
+	</tr>
+
+	
+
+	<tr>
+
+		<th>Office Postcode</th>
+
+		<td>2606</td>
+
+	</tr>
+
+	<tr>
+
+		<th>Agency Reference ID</th>
+
+		<td>107460</td>
+
+	</tr>
+
+</table> </div></div>
+
+
+
+
+
+
+
+</body>
+
+</html> ');
+	$datamapping0711 = array(
+		"Agency" => "agencyName",
+		"Parent CN ID" => "parentCN",
+		"CN ID" => "CNID",
+		"Publish Date" => "publishDate",
+		"Amendment Date" => "amendDate",
+		"Status" => "",
+		"StartDate" => "contractStart",
+		"EndDate" => "contractEnd",
+		"Contract Value (AUD)" => "value",
+		"Description" => "description",
+		"Agency Reference ID" => "agencyID",
+		"Category" => "category",
+		"Procurement Method" => "procurementMethod",
+		"ATM ID" => "atmID",
+		"SON ID" => "SONID",
+		"Confidentiality - Contract" => "confidentialityContract",
+		"Confidentiality - Contract Reason(s)" => "confidentialityContractReason",
+		"Confidentiality - Outputs" => "confidentialityOutputs",
+		"Confidentiality - Outputs Reason(s)" => "confidentialityOutputsReason",
+		"Consultancy" => "consultancy",
+		"Consultancy Reason(s)" => "consultancyReason",
+		"Amendment Reason" => "amendmentReason",
+		"Name" => "supplierName",
+		"Postal Address" => "supplierAddress",
+		"Town/City" => "supplierCity",
+		"Postcode" => "supplierPostcode",
+		"Country" => "supplierCountry",
+		"ABN Exempt" => "supplierABNExempt",
+		"ABN" => "supplierABN",
+		"Branch" => "contactBranch",
+		"Division" => "contactDivision",
+		"Office Postcode" => "contactPostcode"
+	);
+$cnFields = Array();
+foreach(pq('tr') as $tr) {
+	$tra = dom_to_array($tr);
+	$fieldName = trim(str_replace("/th>","",$tra['th']));
+	$fieldValue = trim(print_r($tra['td'],true));
+	if ($fieldName == "State/Territory" || $fieldName == "Contact Name" || $fieldName == "Contact Phone") {
+	    // do nothing
+	} else if ($fieldName == "Contract Period") {
+	    $contractPeriod = explode("to",$fieldValue);
+	    $cnFields["contractStart"] =  trim($contractPeriod[0]);
+		$cnFields["contractEnd"] =  trim($contractPeriod[1]);
+	} else {
+	    $fieldName = $datamapping0711[$fieldName];
+	if ($fieldName == "parentCN" || $fieldName == "CNID") {
+							$fieldValue = substr($fieldValue, 2); // take off the "CN" prefix
+							$fieldValue = str_replace("-A", "00", $fieldValue); // make amendments really big numbers
+	} elseif ($fieldName == "amendDate" || $fieldName == "publishDate" || $fieldName == "contractStart" || $fieldName == "contractEnd") {
+							$contractNoticeInsert[] = date('Y-m-d H:i:s', strtotime($fieldValue));
+						}
+echo $fieldName. " = " .$fieldValue."<br>\n";
+$cnFields[$fieldName] = $fieldValue;
+	}
+}
+$contractNoticeInsertQ = 'INSERT INTO contractnotice ("' . implode('" , "', array_keys($cnFields)) . '") VALUES ( ';
+		for($key = 0; $key < sizeof($cnFields); $key++) {
+			$contractNoticeInsertQ.= ($key == 0 ? "" : ", ") . "?";
+		}
+		$contractNoticeInsertQ.= ");";
+		echo $contractNoticeInsertQ;
+		//$contractNoticeInsertQ = $conn->prepare($contractNoticeInsertQ);
+		
+$contractNoticeUpdateQ = 'UPDATE contractnotice SET ';
+$count = 0;
+		foreach ($cnFields as $key => $f) {
+		    
+			$count++;
+			$contractNoticeUpdateQ.= $key."=? ".($count >= sizeof($cnFields) ? "" : ", ");
+		}
+		$contractNoticeUpdateQ.= " WHERE CNID=?;";
+		$cnFields[] = $cnFields["CNID"];
+		echo $contractNoticeUpdateQ;
+		$contractNoticeUpdateQ = $conn->prepare($contractNoticeUpdateQ);
+?>

--- a/admin/updateUNSPSC.php
+++ b/admin/updateUNSPSC.php
@@ -3,14 +3,17 @@
 

 include_once("../lib/common.inc.php");

 

-$unspscresult = mysql_query ("select * from UNSPSCcategories;");

-while ($row = mysql_fetch_assoc($unspscresult)) {

+$unspscresult= $conn->prepare('select * from "UNSPSCcategories";');

+$unspscresult->execute();

+foreach ($unspscresult->fetchAll() as $row) {

 	$unspsc[$row['Title']] = $row['UNSPSC'];

 	// some Australian spellings

 	$isiz = str_replace("iz","is",$row['Title']);

 	$unspsc[$isiz] = $row['UNSPSC'];

 	$defence = str_replace("efense","efence",$row['Title']);

 	$unspsc[$defence] = $row['UNSPSC'];

+		$armor = str_replace("rmored","rmoured",$row['Title']);

+	$unspsc[$armor] = $row['UNSPSC'];

 	$center = str_replace("enter","entre",$row['Title']);

 	$unspsc[$center] = $row['UNSPSC'];

 	// some divergence from standard

@@ -23,27 +26,25 @@
 	$unspsc[$noOilRigs] = $row['UNSPSC'];

 	

 }

-

-$query = "SELECT CNID,category,value

-FROM `contractnotice`

-WHERE `categoryUNSPSC` IS NULL OR `categoryUNSPSC` = 0";

-$emptycatresult = mysql_query ($query);

+$query = 'SELECT "CNID","category","value"

+FROM contractnotice

+WHERE "categoryUNSPSC" IS NULL OR "categoryUNSPSC" = 0';

+$emptycatresult = $conn->prepare($query);

 $missing = Array();

-if ($emptycatresult){

-	while ($record = mysql_fetch_assoc($emptycatresult)) {

+$emptycatresult->execute();

+	foreach ($emptycatresult->fetchAll() as $record) {

+		

 	if ($unspsc[$record['category']] == "") {

 		$missing[$record['category']]= $missing[$record['category']]+ $record['value'];

 //		echo "<br>\n Category not found for: \n";

 //		print_r($record);

 	} else {

-	$result = mysql_query("UPDATE contractnotice SET categoryUNSPSC = 

-'".mysql_real_escape_string($unspsc[$record['category']])."' where CNID = 

-'".mysql_real_escape_string($record['CNID'])."';");

+	$result = $conn->exec('UPDATE contractnotice SET "categoryUNSPSC" = 

+\''.$unspsc[$record['category']].'\' where "CNID" = '.$record['CNID'].';');

 	if ($result) echo $record['CNID']. " set to ". ($unspsc[$record['category']]) . " <br>\n";

-	else echo "error".mysql_error();

+	else echo "error".$conn->errorInfo();

 	}

 	} 

-} else echo "error".mysql_error();

 asort($missing,SORT_NUMERIC);

 print_r($missing);

 ?>